mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-05 12:57:42 +00:00
b2a376c2d2
* fix(admin): bound IAM import archive expansion MAX_IAM_IMPORT_SIZE caps the compressed upload at 10 MB, but every member of the archive was then read with read_to_end into an unbounded Vec. Deflate ratios well above 100:1 are easy to construct, so a small authorized upload could expand without limit across the seven members ImportIam reads. Add a shared expansion budget (MAX_IAM_IMPORT_EXPANDED_SIZE, 10x the compressed cap) drawn down by every member, and route all seven reads through one helper that reads a byte past the remaining budget to detect overrun. Sharing the budget bounds the archive as a whole rather than letting each member spend the full limit independently. Covers R03-CAN-024 through R03-CAN-030 plus R04-CAN-077 (backlog #1471) — one fix rather than seven, since all seven call sites were byte-identical. * fix(kms): confine local key paths and refuse silent key replacement Local KMS key identifiers arrive from request input — the `name` tag on CreateKey, the `keyId` body field or query parameter on DeleteKey — and were joined onto `key_dir` with no validation. An identifier such as `../../tmp/evil` escaped the configured directory, making key creation a constrained arbitrary-file write and `DeleteKey` with `force_immediate` a cross-directory delete. Validate in `master_key_path` and make it fallible, so every filesystem path in this backend inherits the guard: decode_stored_key, load_master_key, save_master_key, create_key and delete_key all derive their paths there. The rule is containment rather than a character allowlist, so identifiers already in use keep resolving; only separators, NUL, absolute paths and non-single-component forms are refused. Note `.` and `..` are contained rather than refused — the `.key` suffix turns them into the ordinary filenames `..key` and `...key`. Separately, `LocalKmsBackend::create_key` had no existence check, while the sibling `KmsClient::create_key` has always had one. Since `save_master_key` renames over its destination, creating a key under an existing name silently replaced its material and destroyed the ability to decrypt everything wrapped under it — and the backend path is the one the admin API uses. It now returns KeyAlreadyExists, matching StaticKmsBackend. Covers R03-CAN-072, R03-CAN-073 and R07-CAN-103 (backlog #1475). R03-CAN-073 needed no separate change: delete_key routes both its load and its remove_file through master_key_path. * fix(swift): bound SLO manifest reads to the 2 MiB manifest limit The three Swift SLO handlers that load a stored manifest (handle_slo_get, handle_slo_get_manifest, handle_slo_delete) read the `<object>.slo-manifest` object to EOF with AsyncReadExt::read_to_end. That key is predictable and writable through the ordinary object PUT path, so a tenant can replace the manifest with an arbitrarily large object and then make the server allocate its full size on every SLO GET, multipart-manifest=get, or multipart-manifest=delete request - a memory amplification bounded only by the stored object size (CWE-400 / CWE-770). The 2 MiB manifest limit that handle_slo_put enforces was not applied on the read side. Introduce MAX_SLO_MANIFEST_SIZE (the existing 2 MiB PUT limit, now a named constant) and a shared read_manifest_bytes helper that reads through a `take(limit + 1)` and rejects anything larger, so an oversized manifest is refused instead of being buffered first. All three call sites go through the helper. handle_slo_put now checks the size before parsing the JSON. Regression tests: test_read_manifest_bytes_rejects_oversized_manifest and test_read_manifest_bytes_stops_reading_oversized_manifest (which asserts the reader is not consumed past the limit), plus a boundary test that a manifest at exactly 2 MiB is still accepted. * fix(protocols): authorize every object in FTPS/WebDAV recursive deletes The FTPS and WebDAV gateways authorized only the container before a recursive delete and then destroyed everything inside it without a further check: - FTPS RMD (and DELE on a bucket path ending in '/') cleared s3:DeleteBucket, then delete_bucket_recursively listed the bucket and deleted every object. - WebDAV DELETE on a bucket did the same via its own delete_bucket_recursively. - WebDAV DELETE on a directory cleared s3:DeleteObject for the directory marker key ("dir/") only, then listed that prefix and deleted every child under it. A principal holding s3:DeleteBucket (or s3:DeleteObject on a single marker key) could therefore erase objects it had no s3:DeleteObject permission for, and the operation reported success. Deletion stays recursive - that is the expected behaviour for these protocols - but each object now clears s3:DeleteObject on its own key before it is removed, and the enumeration clears s3:ListBucket. A denial aborts the whole operation with access denied rather than being skipped, so the caller can never be told the delete succeeded while objects were left behind or removed without authorization. The test double gained shared-state cloning, delete_object/delete_bucket call logs, and list/delete queue helpers so the regression tests can observe that nothing is deleted once a deny lands. * fix(server,ecstore): bound TLS handshakes and remote volume RPC waits Three call sites let an unauthenticated client or a misbehaving peer hold server resources with no deadline. TLS listener (R03-CAN-035): process_connection awaited `acceptor.accept(socket)` with no bound. A client that opens a TCP connection and never finishes the handshake parks a Tokio task and a socket forever, and the connection cap (RUSTFS_API_MAX_CONNECTIONS) is unlimited by default, so nothing else sheds it. The handshake now runs under accept_tls_with_deadline(), reusing the existing HTTP/1 header-read budget — the established slow-client bound for the pre-request phase — and the expiry is recorded through the same log/metric path as a handshake error, under a new TIMEOUT failure kind. Remote disk RPCs (R03-CAN-049, R03-CAN-050): list_volumes and delete_volume passed Duration::ZERO, which execute_with_timeout treats as "no deadline", so a peer that accepts the request and never answers stalls the coordinator (and, for delete_volume, the bucket-deletion workflow). Both now pass get_max_timeout_duration(), matching every sibling method in the file. Regression tests: a silent TLS peer must be shed by the handshake deadline; list_volumes/delete_volume against a peer that completes the TCP connect and then goes silent must fail with DiskError::Timeout instead of hanging. * fix(security): stop leaking signed headers and bound OIDC/KMS credentials Three independent hygiene fixes found by the security review. R03-CAN-018 (crates/signer): try_get_canonical_headers and get_signed_headers logged the complete header map at DEBUG before signing. Runtime callers pass session credentials and SSE-C key material through these headers, so anyone able to raise the log level (or read DEBUG logs) recovered X-Amz-Security-Token and SSE-C keys verbatim. The statements were debugging leftovers with no operational value and are deleted rather than redacted. R03-CAN-014 (crates/iam): the OIDC HTTP adapter buffered provider responses with an unbounded Response::bytes(), so a configured, compromised or attacker-pointed IdP endpoint could stream an arbitrarily large or endless body into memory (the ValidateOidcConfig admin handler lets a ServerInfo caller choose the endpoint). Responses are now read incrementally and fail closed past MAX_OIDC_RESPONSE_SIZE, and the already SSRF-hardened client builder gains request and connect timeouts so a stalled provider cannot pin the calling task indefinitely. R07-CAN-105 (helm): the Vault KMS token was serialized into the chart ConfigMap, exposing it to every subject allowed to get ConfigMaps in the namespace. It now renders into a dedicated Secret that the Deployment and StatefulSet consume via envFrom; the Secret is separate from the main credentials Secret so it also works when secret.existingSecret is set. Regression tests: - rustfs-signer: signing_never_logs_signed_header_material - rustfs-iam: oidc_response_body_past_the_limit_is_rejected, oidc_response_body_at_the_limit_is_accepted - scripts/test_helm_templates.sh: KMS token must never render in plaintext * fix(webdav): enforce body limit, request timeout and connection cap The configured WebDAV maximum body size was enforced from Content-Length, so a chunked request declared no length and bypassed it entirely. The configured request timeout was never applied to the connection at all, and the accept loop spawned a task per connection with no bound, so an unauthenticated client could hold resources indefinitely and in unbounded number. Enforce the limit on bytes actually read rather than the declared length, apply the configured timeout to the request, and bound accepted connections with a new RUSTFS_WEBDAV_MAX_CONNECTIONS (default 1024) surfaced in the config report. Covers R03-CAN-051, R03-CAN-052, R03-CAN-067, R04-CAN-089, R05-CAN-094 and R05-CAN-097 (backlog #1471, #1474). * fix(security): stop STS credentials from crossing the parent trust boundary Two related credential-boundary holes let a short-lived STS credential act with the full, unrestricted authority of the long-term user it was minted from. AddUser (R03-CAN-021, CWE-269/863): should_check_deny_only relaxes the admin policy check to deny-only when a Console/STS session targets the IAM user it represents. Nothing then stopped that session from calling AddUser with its own parent's access key, so the handler wrote an attacker-chosen secret key and status over the parent's stored Credentials via create_user -> save_user_identity. A session that expires in minutes became permanent control of the account. AddUser now rejects any temp or service-account requester whose resolved parent equals the target access key, resolving the parent the same way should_check_deny_only does (parent_user field, else the JWT `parent` claim, since some stores persist the parent only in the token). FTPS/SFTP/WebDAV password auth (R04-CAN-086, CWE-287/862): these protocols looked the access key up with check_key, which falls back to the STS account cache, and then compared only the stored secret. An STS access key plus secret therefore authenticated with no session token presented and no session-policy claims applied - the holder got the parent's full permissions. Password authentication now rejects temporary credentials before the secret comparison. The discriminator is is_temp() && !is_service_account(), the same one IamCache::update_user_with_claims uses to route an identity into the STS cache, so service accounts - which resolve policy from stored IAM state rather than a client-presented token - keep working over these protocols. Regression tests cover both predicates and pin the guards to their call sites so neither can be dropped without a test failure.
1024 lines
35 KiB
Rust
1024 lines
35 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Static Large Objects (SLO) support for Swift API
|
|
//!
|
|
//! SLO provides manifest-based multi-part file uploads with validation.
|
|
//! Large files (>5GB) are split into segments, and a manifest defines
|
|
//! how segments are assembled on download.
|
|
|
|
use super::storage_api::large_object::HTTPRangeSpec;
|
|
use super::{SwiftError, object};
|
|
use axum::http::{HeaderMap, Response, StatusCode};
|
|
use rustfs_credentials::Credentials;
|
|
use s3s::Body;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::collections::HashMap;
|
|
use std::io::Cursor;
|
|
|
|
/// Maximum accepted size of an SLO manifest document
|
|
const MAX_SLO_MANIFEST_SIZE: usize = 2 * 1024 * 1024;
|
|
|
|
/// SLO manifest segment descriptor
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct SLOSegment {
|
|
/// Segment path: "/container/object"
|
|
pub path: String,
|
|
|
|
/// Segment size in bytes (must match actual)
|
|
#[serde(rename = "size_bytes")]
|
|
pub size_bytes: u64,
|
|
|
|
/// MD5 ETag of segment (must match actual)
|
|
pub etag: String,
|
|
|
|
/// Optional: byte range within segment
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub range: Option<String>,
|
|
}
|
|
|
|
/// SLO manifest document
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct SLOManifest {
|
|
/// List of segments in assembly order
|
|
#[serde(default)]
|
|
pub segments: Vec<SLOSegment>,
|
|
|
|
/// Manifest creation timestamp
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub created_at: Option<String>,
|
|
}
|
|
|
|
impl SLOManifest {
|
|
/// Parse manifest from JSON body
|
|
pub fn from_json(data: &[u8]) -> Result<Self, SwiftError> {
|
|
serde_json::from_slice(data).map_err(|e| SwiftError::BadRequest(format!("Invalid SLO manifest: {}", e)))
|
|
}
|
|
|
|
/// Calculate total assembled size
|
|
pub fn total_size(&self) -> u64 {
|
|
self.segments.iter().map(|s| s.size_bytes).sum()
|
|
}
|
|
|
|
/// Calculate SLO ETag: "{MD5(concat_etags)}-{count}"
|
|
pub fn calculate_etag(&self) -> String {
|
|
// Concatenate all ETags
|
|
let mut etag_concat = String::new();
|
|
for seg in &self.segments {
|
|
// Remove quotes from etag if present
|
|
let etag = seg.etag.trim_matches('"');
|
|
etag_concat.push_str(etag);
|
|
}
|
|
|
|
// Calculate MD5 hash
|
|
let hash = md5::compute(etag_concat.as_bytes());
|
|
format!("\"{:x}-{}\"", hash, self.segments.len())
|
|
}
|
|
|
|
/// Validate manifest against actual segments
|
|
pub async fn validate(&self, account: &str, credentials: &Credentials) -> Result<(), SwiftError> {
|
|
if self.segments.is_empty() {
|
|
return Err(SwiftError::BadRequest("SLO manifest must contain at least one segment".to_string()));
|
|
}
|
|
|
|
for segment in &self.segments {
|
|
// Parse path: "/container/object"
|
|
let (container, object_name) = parse_segment_path(&segment.path)?;
|
|
|
|
// HEAD segment to get actual ETag and size
|
|
let info = object::head_object(account, &container, &object_name, credentials).await?;
|
|
|
|
// Validate ETag match (remove quotes for comparison)
|
|
let expected_etag = segment.etag.trim_matches('"');
|
|
let actual_etag = info.etag.as_deref().unwrap_or("").trim_matches('"');
|
|
|
|
if actual_etag != expected_etag {
|
|
return Err(SwiftError::Conflict(format!(
|
|
"Segment {} ETag mismatch: expected {}, got {}",
|
|
segment.path, expected_etag, actual_etag
|
|
)));
|
|
}
|
|
|
|
// Validate size match
|
|
if info.size != segment.size_bytes as i64 {
|
|
return Err(SwiftError::Conflict(format!(
|
|
"Segment {} size mismatch: expected {}, got {}",
|
|
segment.path, segment.size_bytes, info.size
|
|
)));
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
/// Parse segment path "/container/object" into (container, object)
|
|
fn parse_segment_path(path: &str) -> Result<(String, String), SwiftError> {
|
|
let path = path.trim_start_matches('/');
|
|
let parts: Vec<&str> = path.splitn(2, '/').collect();
|
|
|
|
if parts.len() != 2 {
|
|
return Err(SwiftError::BadRequest(format!("Invalid segment path: {}", path)));
|
|
}
|
|
|
|
Ok((parts[0].to_string(), parts[1].to_string()))
|
|
}
|
|
|
|
/// Check if object is an SLO by querying metadata
|
|
pub async fn is_slo_object(
|
|
account: &str,
|
|
container: &str,
|
|
object: &str,
|
|
credentials: &Option<Credentials>,
|
|
) -> Result<bool, SwiftError> {
|
|
// Require credentials
|
|
let creds = credentials
|
|
.as_ref()
|
|
.ok_or_else(|| SwiftError::Unauthorized("Credentials required".to_string()))?;
|
|
|
|
let info = object::head_object(account, container, object, creds).await?;
|
|
Ok(info.user_defined.get("x-swift-slo").map(|v| v == "true").unwrap_or(false))
|
|
}
|
|
|
|
/// Generate transaction ID for response headers
|
|
fn generate_trans_id() -> String {
|
|
format!("tx{}", uuid::Uuid::new_v4().as_simple())
|
|
}
|
|
|
|
/// Calculate which segments and byte ranges to fetch for a given range request
|
|
fn calculate_segments_for_range(
|
|
manifest: &SLOManifest,
|
|
start: u64,
|
|
end: u64,
|
|
) -> Result<Vec<(usize, u64, u64, SLOSegment)>, SwiftError> {
|
|
let mut result = Vec::new();
|
|
let mut current_offset = 0u64;
|
|
|
|
for (idx, segment) in manifest.segments.iter().enumerate() {
|
|
// Empty segments contribute no bytes; skip them so the `size_bytes - 1`
|
|
// arithmetic below cannot underflow.
|
|
if segment.size_bytes == 0 {
|
|
continue;
|
|
}
|
|
|
|
let segment_start = current_offset;
|
|
let segment_end = current_offset + segment.size_bytes - 1;
|
|
|
|
// Check if this segment overlaps with requested range
|
|
if segment_end >= start && segment_start <= end {
|
|
// Calculate byte range within this segment
|
|
let byte_start = start.saturating_sub(segment_start);
|
|
|
|
let byte_end = if end < segment_end {
|
|
end - segment_start
|
|
} else {
|
|
segment.size_bytes - 1
|
|
};
|
|
|
|
result.push((idx, byte_start, byte_end, segment.clone()));
|
|
}
|
|
|
|
current_offset += segment.size_bytes;
|
|
|
|
// Stop if we've passed the requested range
|
|
if current_offset > end {
|
|
break;
|
|
}
|
|
}
|
|
|
|
Ok(result)
|
|
}
|
|
|
|
/// Parse Range header (e.g., "bytes=0-1023")
|
|
fn parse_range_header(range_str: &str, total_size: u64) -> Result<(u64, u64), SwiftError> {
|
|
if !range_str.starts_with("bytes=") {
|
|
return Err(SwiftError::BadRequest("Invalid Range header format".to_string()));
|
|
}
|
|
|
|
// A range can never be satisfied against an empty aggregate. Guard here so the
|
|
// `total_size - 1` arithmetic below cannot underflow (which would wrap to a bogus
|
|
// Content-Range in release builds and panic in debug builds).
|
|
if total_size == 0 {
|
|
return Err(SwiftError::BadRequest("Cannot satisfy Range request on empty object".to_string()));
|
|
}
|
|
|
|
let range_part = &range_str[6..];
|
|
let parts: Vec<&str> = range_part.split('-').collect();
|
|
|
|
if parts.len() != 2 {
|
|
return Err(SwiftError::BadRequest("Invalid Range header format".to_string()));
|
|
}
|
|
|
|
let (start, end) = if parts[0].is_empty() {
|
|
// Suffix range (last N bytes): bytes=-500
|
|
let suffix: u64 = parts[1]
|
|
.parse()
|
|
.map_err(|_| SwiftError::BadRequest("Invalid Range header".to_string()))?;
|
|
if suffix >= total_size {
|
|
(0, total_size - 1)
|
|
} else {
|
|
(total_size - suffix, total_size - 1)
|
|
}
|
|
} else {
|
|
// Regular range: bytes=0-999 or bytes=0-
|
|
let start = parts[0]
|
|
.parse()
|
|
.map_err(|_| SwiftError::BadRequest("Invalid Range header".to_string()))?;
|
|
|
|
let end = if parts[1].is_empty() {
|
|
total_size - 1
|
|
} else {
|
|
let parsed: u64 = parts[1]
|
|
.parse()
|
|
.map_err(|_| SwiftError::BadRequest("Invalid Range header".to_string()))?;
|
|
std::cmp::min(parsed, total_size - 1)
|
|
};
|
|
|
|
(start, end)
|
|
};
|
|
|
|
if start > end {
|
|
return Err(SwiftError::BadRequest("Invalid Range: start > end".to_string()));
|
|
}
|
|
|
|
Ok((start, end))
|
|
}
|
|
|
|
/// Handle PUT /v1/{account}/{container}/{object}?multipart-manifest=put
|
|
pub async fn handle_slo_put(
|
|
account: &str,
|
|
container: &str,
|
|
object: &str,
|
|
body: Body,
|
|
headers: &HeaderMap,
|
|
credentials: &Option<Credentials>,
|
|
) -> Result<Response<Body>, SwiftError> {
|
|
use http_body_util::BodyExt;
|
|
|
|
// Require credentials
|
|
let creds = credentials
|
|
.as_ref()
|
|
.ok_or_else(|| SwiftError::Unauthorized("Credentials required for SLO operations".to_string()))?;
|
|
|
|
// 1. Read manifest JSON from body
|
|
let manifest_bytes = body
|
|
.collect()
|
|
.await
|
|
.map_err(|e| SwiftError::BadRequest(format!("Failed to read manifest: {}", e)))?
|
|
.to_bytes();
|
|
|
|
// 2. Validate manifest size (2MB limit)
|
|
if manifest_bytes.len() > MAX_SLO_MANIFEST_SIZE {
|
|
return Err(SwiftError::BadRequest("Manifest exceeds 2MB".to_string()));
|
|
}
|
|
|
|
// 3. Parse manifest
|
|
let manifest = SLOManifest::from_json(&manifest_bytes)?;
|
|
|
|
// 4. Validate segments exist and match ETags/sizes
|
|
manifest.validate(account, creds).await?;
|
|
|
|
// 5. Store manifest as S3 object with metadata marker
|
|
let mut metadata = HashMap::new();
|
|
metadata.insert("x-swift-slo".to_string(), "true".to_string());
|
|
metadata.insert("x-slo-etag".to_string(), manifest.calculate_etag().trim_matches('"').to_string());
|
|
metadata.insert("x-slo-size".to_string(), manifest.total_size().to_string());
|
|
|
|
// Extract custom headers (X-Object-Meta-*)
|
|
for (key, value) in headers {
|
|
if key.as_str().starts_with("x-object-meta-")
|
|
&& let Ok(v) = value.to_str()
|
|
{
|
|
metadata.insert(key.to_string(), v.to_string());
|
|
}
|
|
}
|
|
|
|
// Store manifest JSON as object content with special key
|
|
let manifest_key = format!("{}.slo-manifest", object);
|
|
object::put_object_with_metadata(
|
|
account,
|
|
container,
|
|
&manifest_key,
|
|
credentials,
|
|
Cursor::new(manifest_bytes.to_vec()),
|
|
&metadata,
|
|
)
|
|
.await?;
|
|
|
|
// 6. Create zero-byte marker object at original path
|
|
object::put_object_with_metadata(account, container, object, credentials, Cursor::new(Vec::new()), &metadata).await?;
|
|
|
|
// 7. Return response
|
|
let trans_id = generate_trans_id();
|
|
Response::builder()
|
|
.status(StatusCode::CREATED)
|
|
.header("etag", manifest.calculate_etag())
|
|
.header("x-trans-id", &trans_id)
|
|
.header("x-openstack-request-id", trans_id)
|
|
.body(Body::empty())
|
|
.map_err(|e| SwiftError::InternalServerError(format!("Failed to build response: {}", e)))
|
|
}
|
|
|
|
/// Read a stored SLO manifest without buffering more than [`MAX_SLO_MANIFEST_SIZE`].
|
|
///
|
|
/// The manifest lives at a caller-predictable `<object>.slo-manifest` key, so its content
|
|
/// is attacker-controlled: the read must be bounded rather than sized by the stored object.
|
|
async fn read_manifest_bytes<R>(reader: R) -> Result<Vec<u8>, SwiftError>
|
|
where
|
|
R: tokio::io::AsyncRead + Unpin,
|
|
{
|
|
use tokio::io::AsyncReadExt;
|
|
|
|
let mut manifest_bytes = Vec::new();
|
|
reader
|
|
.take(MAX_SLO_MANIFEST_SIZE as u64 + 1)
|
|
.read_to_end(&mut manifest_bytes)
|
|
.await
|
|
.map_err(|e| SwiftError::InternalServerError(format!("Failed to read manifest: {}", e)))?;
|
|
|
|
if manifest_bytes.len() > MAX_SLO_MANIFEST_SIZE {
|
|
return Err(SwiftError::BadRequest("Manifest exceeds 2MB".to_string()));
|
|
}
|
|
|
|
Ok(manifest_bytes)
|
|
}
|
|
|
|
/// Handle GET /v1/{account}/{container}/{object} for SLO
|
|
pub async fn handle_slo_get(
|
|
account: &str,
|
|
container: &str,
|
|
object: &str,
|
|
headers: &HeaderMap,
|
|
credentials: &Option<Credentials>,
|
|
) -> Result<Response<Body>, SwiftError> {
|
|
// Require credentials
|
|
let creds = credentials
|
|
.as_ref()
|
|
.ok_or_else(|| SwiftError::Unauthorized("Credentials required for SLO operations".to_string()))?;
|
|
|
|
// 1. Load manifest
|
|
let manifest_key = format!("{}.slo-manifest", object);
|
|
let manifest_reader = object::get_object(account, container, &manifest_key, creds, None).await?;
|
|
|
|
let manifest_bytes = read_manifest_bytes(manifest_reader.stream).await?;
|
|
|
|
let manifest = SLOManifest::from_json(&manifest_bytes)?;
|
|
|
|
// 2. Parse Range header if present
|
|
let range = headers
|
|
.get("range")
|
|
.and_then(|v| v.to_str().ok())
|
|
.and_then(|r| parse_range_header(r, manifest.total_size()).ok());
|
|
|
|
// 3. Create streaming body for segments
|
|
let segment_stream = create_slo_stream(account, &manifest, credentials, range).await?;
|
|
|
|
// 4. Build response
|
|
let trans_id = generate_trans_id();
|
|
let mut response = Response::builder()
|
|
.header("x-static-large-object", "true")
|
|
.header("etag", manifest.calculate_etag())
|
|
.header("x-trans-id", &trans_id)
|
|
.header("x-openstack-request-id", &trans_id);
|
|
|
|
if let Some((start, end)) = range {
|
|
let length = end - start + 1;
|
|
response = response
|
|
.status(StatusCode::PARTIAL_CONTENT)
|
|
.header("content-range", format!("bytes {}-{}/{}", start, end, manifest.total_size()))
|
|
.header("content-length", length.to_string());
|
|
} else {
|
|
response = response
|
|
.status(StatusCode::OK)
|
|
.header("content-length", manifest.total_size().to_string());
|
|
}
|
|
|
|
// Convert stream to Body
|
|
let axum_body = axum::body::Body::from_stream(segment_stream);
|
|
let body = Body::http_body_unsync(axum_body);
|
|
|
|
response
|
|
.body(body)
|
|
.map_err(|e| SwiftError::InternalServerError(format!("Failed to build response: {}", e)))
|
|
}
|
|
|
|
/// Create streaming body that chains segment readers without buffering
|
|
async fn create_slo_stream(
|
|
account: &str,
|
|
manifest: &SLOManifest,
|
|
credentials: &Option<Credentials>,
|
|
range: Option<(u64, u64)>,
|
|
) -> Result<std::pin::Pin<Box<dyn futures::Stream<Item = Result<bytes::Bytes, std::io::Error>> + Send>>, SwiftError> {
|
|
use futures::stream::{self, StreamExt, TryStreamExt};
|
|
|
|
// Require credentials
|
|
let creds = credentials
|
|
.as_ref()
|
|
.ok_or_else(|| SwiftError::Unauthorized("Credentials required".to_string()))?
|
|
.clone();
|
|
|
|
// Determine which segments to fetch based on range
|
|
let segments_to_fetch = if let Some((start, end)) = range {
|
|
calculate_segments_for_range(manifest, start, end)?
|
|
} else {
|
|
// All segments, full range
|
|
manifest
|
|
.segments
|
|
.iter()
|
|
.enumerate()
|
|
// Skip empty segments so `s.size_bytes - 1` cannot underflow; they carry no bytes.
|
|
.filter(|(_, s)| s.size_bytes > 0)
|
|
.map(|(i, s)| (i, 0, s.size_bytes - 1, s.clone()))
|
|
.collect()
|
|
};
|
|
|
|
let account = account.to_string();
|
|
|
|
// Create stream that fetches and streams segments on-demand
|
|
let stream = stream::iter(segments_to_fetch)
|
|
.then(move |(_seg_idx, byte_start, byte_end, segment)| {
|
|
let account = account.clone();
|
|
let creds = creds.clone();
|
|
|
|
async move {
|
|
let (container, object_name) = parse_segment_path(&segment.path)
|
|
.map_err(|e| std::io::Error::new(std::io::ErrorKind::InvalidInput, e.to_string()))?;
|
|
|
|
// Fetch segment with range
|
|
let range_spec = if byte_start > 0 || byte_end < segment.size_bytes - 1 {
|
|
Some(HTTPRangeSpec {
|
|
is_suffix_length: false,
|
|
start: byte_start as i64,
|
|
end: byte_end as i64,
|
|
})
|
|
} else {
|
|
None
|
|
};
|
|
|
|
let reader = object::get_object(&account, &container, &object_name, &creds, range_spec)
|
|
.await
|
|
.map_err(|e| std::io::Error::other(e.to_string()))?;
|
|
|
|
// Convert AsyncRead to Stream using ReaderStream
|
|
Ok::<_, std::io::Error>(tokio_util::io::ReaderStream::new(reader.stream))
|
|
}
|
|
})
|
|
.try_flatten();
|
|
|
|
Ok(Box::pin(stream))
|
|
}
|
|
|
|
/// Handle GET /v1/{account}/{container}/{object}?multipart-manifest=get (return manifest JSON)
|
|
pub async fn handle_slo_get_manifest(
|
|
account: &str,
|
|
container: &str,
|
|
object: &str,
|
|
credentials: &Option<Credentials>,
|
|
) -> Result<Response<Body>, SwiftError> {
|
|
// Require credentials
|
|
let creds = credentials
|
|
.as_ref()
|
|
.ok_or_else(|| SwiftError::Unauthorized("Credentials required for SLO operations".to_string()))?;
|
|
|
|
// Load and return the manifest JSON directly
|
|
let manifest_key = format!("{}.slo-manifest", object);
|
|
let manifest_reader = object::get_object(account, container, &manifest_key, creds, None).await?;
|
|
|
|
let manifest_bytes = read_manifest_bytes(manifest_reader.stream).await?;
|
|
|
|
let trans_id = generate_trans_id();
|
|
Response::builder()
|
|
.status(StatusCode::OK)
|
|
.header("content-type", "application/json; charset=utf-8")
|
|
.header("content-length", manifest_bytes.len().to_string())
|
|
.header("x-trans-id", &trans_id)
|
|
.header("x-openstack-request-id", trans_id)
|
|
.body(Body::from(manifest_bytes))
|
|
.map_err(|e| SwiftError::InternalServerError(format!("Failed to build response: {}", e)))
|
|
}
|
|
|
|
/// Handle DELETE ?multipart-manifest=delete (remove manifest + all segments)
|
|
pub async fn handle_slo_delete(
|
|
account: &str,
|
|
container: &str,
|
|
object: &str,
|
|
credentials: &Option<Credentials>,
|
|
) -> Result<Response<Body>, SwiftError> {
|
|
// Require credentials for delete operations
|
|
let creds = credentials
|
|
.as_ref()
|
|
.ok_or_else(|| SwiftError::Unauthorized("Credentials required for SLO delete".to_string()))?;
|
|
|
|
// 1. Load manifest
|
|
let manifest_key = format!("{}.slo-manifest", object);
|
|
let manifest_reader = object::get_object(account, container, &manifest_key, creds, None).await?;
|
|
|
|
let manifest_bytes = read_manifest_bytes(manifest_reader.stream).await?;
|
|
|
|
let manifest = SLOManifest::from_json(&manifest_bytes)?;
|
|
|
|
// 2. Delete all segments
|
|
for segment in &manifest.segments {
|
|
let (seg_container, seg_object) = parse_segment_path(&segment.path)?;
|
|
// Ignore errors if segment doesn't exist (idempotent delete)
|
|
let _ = object::delete_object(account, &seg_container, &seg_object, creds).await;
|
|
}
|
|
|
|
// 3. Delete manifest object
|
|
object::delete_object(account, container, &manifest_key, creds).await?;
|
|
|
|
// 4. Delete marker object
|
|
object::delete_object(account, container, object, creds).await?;
|
|
|
|
let trans_id = generate_trans_id();
|
|
Response::builder()
|
|
.status(StatusCode::NO_CONTENT)
|
|
.header("x-trans-id", &trans_id)
|
|
.header("x-openstack-request-id", trans_id)
|
|
.body(Body::empty())
|
|
.map_err(|e| SwiftError::InternalServerError(format!("Failed to build response: {}", e)))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_parse_segment_path() {
|
|
let (container, object) = parse_segment_path("/mycontainer/myobject").unwrap();
|
|
assert_eq!(container, "mycontainer");
|
|
assert_eq!(object, "myobject");
|
|
|
|
let (container, object) = parse_segment_path("mycontainer/path/to/object").unwrap();
|
|
assert_eq!(container, "mycontainer");
|
|
assert_eq!(object, "path/to/object");
|
|
|
|
assert!(parse_segment_path("invalid").is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn test_slo_manifest_total_size() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![
|
|
SLOSegment {
|
|
path: "/container/seg1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "abc123".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/container/seg2".to_string(),
|
|
size_bytes: 2000,
|
|
etag: "def456".to_string(),
|
|
range: None,
|
|
},
|
|
],
|
|
created_at: None,
|
|
};
|
|
|
|
assert_eq!(manifest.total_size(), 3000);
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_etag() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![SLOSegment {
|
|
path: "/container/seg1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "abc123".to_string(),
|
|
range: None,
|
|
}],
|
|
created_at: None,
|
|
};
|
|
|
|
let etag = manifest.calculate_etag();
|
|
assert!(etag.starts_with('"'));
|
|
assert!(etag.ends_with("-1\""));
|
|
}
|
|
|
|
#[test]
|
|
fn test_parse_range_header() {
|
|
assert_eq!(parse_range_header("bytes=0-999", 10000).unwrap(), (0, 999));
|
|
assert_eq!(parse_range_header("bytes=1000-1999", 10000).unwrap(), (1000, 1999));
|
|
assert_eq!(parse_range_header("bytes=0-", 10000).unwrap(), (0, 9999));
|
|
assert_eq!(parse_range_header("bytes=-500", 10000).unwrap(), (9500, 9999));
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_segments_for_range() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![
|
|
SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e1".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s2".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e2".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s3".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e3".to_string(),
|
|
range: None,
|
|
},
|
|
],
|
|
created_at: None,
|
|
};
|
|
|
|
// Request bytes 500-1500 (spans seg1 and seg2)
|
|
let segments = calculate_segments_for_range(&manifest, 500, 1500).unwrap();
|
|
assert_eq!(segments.len(), 2);
|
|
assert_eq!(segments[0].1, 500); // Start at byte 500 of seg1
|
|
assert_eq!(segments[0].2, 999); // End at byte 999 of seg1
|
|
assert_eq!(segments[1].1, 0); // Start at byte 0 of seg2
|
|
assert_eq!(segments[1].2, 500); // End at byte 500 of seg2
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_segments_for_range_single_segment() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![
|
|
SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e1".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s2".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e2".to_string(),
|
|
range: None,
|
|
},
|
|
],
|
|
created_at: None,
|
|
};
|
|
|
|
// Request bytes within first segment only
|
|
let segments = calculate_segments_for_range(&manifest, 100, 500).unwrap();
|
|
assert_eq!(segments.len(), 1);
|
|
assert_eq!(segments[0].0, 0); // Segment index
|
|
assert_eq!(segments[0].1, 100); // Start byte
|
|
assert_eq!(segments[0].2, 500); // End byte
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_segments_for_range_full_segment() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e1".to_string(),
|
|
range: None,
|
|
}],
|
|
created_at: None,
|
|
};
|
|
|
|
// Request entire segment
|
|
let segments = calculate_segments_for_range(&manifest, 0, 999).unwrap();
|
|
assert_eq!(segments.len(), 1);
|
|
assert_eq!(segments[0].1, 0);
|
|
assert_eq!(segments[0].2, 999);
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_segments_for_range_last_segment() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![
|
|
SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e1".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s2".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e2".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s3".to_string(),
|
|
size_bytes: 500,
|
|
etag: "e3".to_string(),
|
|
range: None,
|
|
},
|
|
],
|
|
created_at: None,
|
|
};
|
|
|
|
// Request bytes from last segment only
|
|
let segments = calculate_segments_for_range(&manifest, 2100, 2400).unwrap();
|
|
assert_eq!(segments.len(), 1);
|
|
assert_eq!(segments[0].0, 2); // Third segment
|
|
assert_eq!(segments[0].1, 100); // Start at byte 100 of seg3
|
|
assert_eq!(segments[0].2, 400); // End at byte 400 of seg3
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_segments_for_range_zero_byte_segment() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![
|
|
SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e1".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s2".to_string(),
|
|
size_bytes: 0, // empty segment
|
|
etag: "e2".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s3".to_string(),
|
|
size_bytes: 500,
|
|
etag: "e3".to_string(),
|
|
range: None,
|
|
},
|
|
],
|
|
created_at: None,
|
|
};
|
|
|
|
// Must not panic / underflow on the zero-byte segment.
|
|
let segments = calculate_segments_for_range(&manifest, 500, 1200).unwrap();
|
|
|
|
// The empty segment carries no bytes and is skipped.
|
|
assert_eq!(segments.len(), 2);
|
|
assert_eq!(segments[0].0, 0);
|
|
assert_eq!(segments[0].1, 500);
|
|
assert_eq!(segments[0].2, 999);
|
|
assert_eq!(segments[1].0, 2);
|
|
assert_eq!(segments[1].1, 0);
|
|
assert_eq!(segments[1].2, 200);
|
|
}
|
|
|
|
#[test]
|
|
fn test_parse_range_header_empty_aggregate() {
|
|
// An all-empty manifest has total_size == 0; a range request against it must
|
|
// return a clean error rather than underflowing `total_size - 1`.
|
|
assert!(parse_range_header("bytes=0-99", 0).is_err());
|
|
assert!(parse_range_header("bytes=-1", 0).is_err());
|
|
assert!(parse_range_header("bytes=0-", 0).is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_segments_for_range_all_segments() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![
|
|
SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e1".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s2".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "e2".to_string(),
|
|
range: None,
|
|
},
|
|
],
|
|
created_at: None,
|
|
};
|
|
|
|
// Request entire object
|
|
let segments = calculate_segments_for_range(&manifest, 0, 1999).unwrap();
|
|
assert_eq!(segments.len(), 2);
|
|
assert_eq!(segments[0].1, 0);
|
|
assert_eq!(segments[0].2, 999);
|
|
assert_eq!(segments[1].1, 0);
|
|
assert_eq!(segments[1].2, 999);
|
|
}
|
|
|
|
#[test]
|
|
fn test_parse_range_header_invalid() {
|
|
// Missing bytes= prefix
|
|
assert!(parse_range_header("0-999", 10000).is_err());
|
|
|
|
// Invalid format
|
|
assert!(parse_range_header("bytes=abc-def", 10000).is_err());
|
|
|
|
// Start > end (should fail after parsing)
|
|
let result = parse_range_header("bytes=1000-500", 10000);
|
|
assert!(result.is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn test_parse_range_header_edge_cases() {
|
|
// Range extends beyond file size (should clamp to file size)
|
|
assert_eq!(parse_range_header("bytes=0-99999", 10000).unwrap(), (0, 9999));
|
|
|
|
// Suffix larger than file (should return entire file)
|
|
assert_eq!(parse_range_header("bytes=-99999", 10000).unwrap(), (0, 9999));
|
|
|
|
// Zero byte range
|
|
assert_eq!(parse_range_header("bytes=0-0", 10000).unwrap(), (0, 0));
|
|
}
|
|
|
|
#[test]
|
|
fn test_slo_manifest_from_json() {
|
|
// Swift API format: array wrapped with segments key or direct array
|
|
// Testing with serde default (empty segments array if missing)
|
|
let json = r#"{
|
|
"segments": [
|
|
{
|
|
"path": "/container/segment1",
|
|
"size_bytes": 1048576,
|
|
"etag": "abc123"
|
|
},
|
|
{
|
|
"path": "/container/segment2",
|
|
"size_bytes": 524288,
|
|
"etag": "def456"
|
|
}
|
|
]
|
|
}"#;
|
|
|
|
let manifest = SLOManifest::from_json(json.as_bytes()).unwrap();
|
|
assert_eq!(manifest.segments.len(), 2);
|
|
assert_eq!(manifest.segments[0].path, "/container/segment1");
|
|
assert_eq!(manifest.segments[0].size_bytes, 1048576);
|
|
assert_eq!(manifest.segments[1].etag, "def456");
|
|
}
|
|
|
|
#[test]
|
|
fn test_slo_manifest_from_json_with_range() {
|
|
let json = r#"{
|
|
"segments": [
|
|
{
|
|
"path": "/container/segment1",
|
|
"size_bytes": 1000,
|
|
"etag": "abc123",
|
|
"range": "0-499"
|
|
}
|
|
]
|
|
}"#;
|
|
|
|
let manifest = SLOManifest::from_json(json.as_bytes()).unwrap();
|
|
assert_eq!(manifest.segments.len(), 1);
|
|
assert_eq!(manifest.segments[0].range, Some("0-499".to_string()));
|
|
}
|
|
|
|
#[test]
|
|
fn test_slo_manifest_from_json_invalid() {
|
|
// Invalid: not an object or missing segments
|
|
let json = r#"null"#;
|
|
assert!(SLOManifest::from_json(json.as_bytes()).is_err());
|
|
|
|
// Invalid: segments is not an array
|
|
let json = r#"{"segments": "not-an-array"}"#;
|
|
assert!(SLOManifest::from_json(json.as_bytes()).is_err());
|
|
|
|
// Invalid: missing required fields in segment
|
|
let json = r#"{"segments": [{"path": "missing_required_fields"}]}"#;
|
|
assert!(SLOManifest::from_json(json.as_bytes()).is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_etag_multiple_segments() {
|
|
let manifest = SLOManifest {
|
|
segments: vec![
|
|
SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "\"abc123\"".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s2".to_string(),
|
|
size_bytes: 2000,
|
|
etag: "\"def456\"".to_string(),
|
|
range: None,
|
|
},
|
|
SLOSegment {
|
|
path: "/c/s3".to_string(),
|
|
size_bytes: 1500,
|
|
etag: "\"ghi789\"".to_string(),
|
|
range: None,
|
|
},
|
|
],
|
|
created_at: None,
|
|
};
|
|
|
|
let etag = manifest.calculate_etag();
|
|
assert!(etag.starts_with('"'));
|
|
assert!(etag.ends_with("-3\""));
|
|
assert!(etag.contains('-'));
|
|
|
|
// Verify format is MD5-count
|
|
let parts: Vec<&str> = etag.trim_matches('"').split('-').collect();
|
|
assert_eq!(parts.len(), 2);
|
|
assert_eq!(parts[1], "3");
|
|
}
|
|
|
|
#[test]
|
|
fn test_calculate_etag_strips_quotes() {
|
|
let manifest1 = SLOManifest {
|
|
segments: vec![SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "\"abc123\"".to_string(),
|
|
range: None,
|
|
}],
|
|
created_at: None,
|
|
};
|
|
|
|
let manifest2 = SLOManifest {
|
|
segments: vec![SLOSegment {
|
|
path: "/c/s1".to_string(),
|
|
size_bytes: 1000,
|
|
etag: "abc123".to_string(),
|
|
range: None,
|
|
}],
|
|
created_at: None,
|
|
};
|
|
|
|
// Both should produce the same ETag (quotes are stripped)
|
|
assert_eq!(manifest1.calculate_etag(), manifest2.calculate_etag());
|
|
}
|
|
|
|
#[test]
|
|
fn test_parse_segment_path_edge_cases() {
|
|
// Leading slash
|
|
let (container, object) = parse_segment_path("/container/object").unwrap();
|
|
assert_eq!(container, "container");
|
|
assert_eq!(object, "object");
|
|
|
|
// No leading slash
|
|
let (container, object) = parse_segment_path("container/object").unwrap();
|
|
assert_eq!(container, "container");
|
|
assert_eq!(object, "object");
|
|
|
|
// Multiple slashes in object path
|
|
let (container, object) = parse_segment_path("/container/path/to/object").unwrap();
|
|
assert_eq!(container, "container");
|
|
assert_eq!(object, "path/to/object");
|
|
|
|
// Missing slash (invalid)
|
|
assert!(parse_segment_path("no-slash").is_err());
|
|
|
|
// Empty path
|
|
assert!(parse_segment_path("").is_err());
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn test_read_manifest_bytes_accepts_manifest_at_size_limit() {
|
|
let source = std::io::Cursor::new(vec![b'x'; MAX_SLO_MANIFEST_SIZE]);
|
|
let bytes = read_manifest_bytes(source).await.expect("manifest at the limit is accepted");
|
|
assert_eq!(bytes.len(), MAX_SLO_MANIFEST_SIZE);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn test_read_manifest_bytes_rejects_oversized_manifest() {
|
|
let source = std::io::Cursor::new(vec![b'x'; MAX_SLO_MANIFEST_SIZE + 1]);
|
|
let result = read_manifest_bytes(source).await.map(|bytes| bytes.len());
|
|
assert!(
|
|
matches!(result, Err(SwiftError::BadRequest(_))),
|
|
"manifest above the limit must be rejected, got {:?}",
|
|
result
|
|
);
|
|
}
|
|
|
|
/// A stored manifest is attacker-controlled, so the read must stop at the limit
|
|
/// instead of buffering the whole object.
|
|
#[tokio::test]
|
|
async fn test_read_manifest_bytes_stops_reading_oversized_manifest() {
|
|
use tokio::io::AsyncReadExt;
|
|
|
|
let total = 32 * 1024 * 1024u64;
|
|
let mut source = tokio::io::repeat(b'x').take(total);
|
|
|
|
let result = read_manifest_bytes(&mut source).await.map(|bytes| bytes.len());
|
|
assert!(
|
|
matches!(result, Err(SwiftError::BadRequest(_))),
|
|
"oversized manifest must be rejected, got {:?}",
|
|
result
|
|
);
|
|
|
|
let consumed = total - source.limit();
|
|
assert!(
|
|
consumed <= MAX_SLO_MANIFEST_SIZE as u64 + 1,
|
|
"read {} bytes, expected at most {}",
|
|
consumed,
|
|
MAX_SLO_MANIFEST_SIZE + 1
|
|
);
|
|
}
|
|
}
|