7f5ee7401f
Precondition for the merge-join in backend_consistency (step 6 / option A of docs/plan/derived-blobs.md), landed separately because it is independently useful and carries the risk. Two contract changes on BlobStorageBackend::list_blob_hashes: 1. Entries MUST be in ascending hash order. Every shipped backend already did this — local sorts within each shard and walks 00..ff, and since the shard IS the hash prefix that is globally sorted; S3 and Azure list lexicographically by key and blobs/<xx>/<hash> sorts identically to <hash>. It was accidental, and a future backend enumerating in any other order would have silently made the merge-join emit bogus blob_missing_from_backend findings at data_loss severity. 2. The cursor is the last hash returned, not an opaque backend token. This is what lets a caller resume from a checkpoint it already holds — the merge-join keeps one cursor for both the DB walk and the backend walk instead of a compound one, which in turn means blobs_consistency's existing cursor format survives and no paused run is stranded. Local already derived its position from a hash; it now emits the bare hash instead of "<shard>/<hash>", and still accepts both legacy forms so a run paused across this deploy resumes. The bare-shard form works through the same path unchanged, since "3f" sorts before every 64-char hash beginning "3f". S3 moves from continuation_token to StartAfter, which supports this natively. One non-obvious case handled: a page can contain only non-canonical keys (.tmp spool files, .corrupt sidecars), which are filtered into `unknowns`, leaving `blobs` empty — a naive blobs.last() would return no cursor and silently end enumeration while is_truncated said otherwise, making an audit job under-report. It now falls back to the last key seen; StartAfter is a string comparison, so a non-hash resume point is fine. "Cursor is a hash" constrains what callers may synthesise, not what backends may return. Azure is unaffected — it does not implement list_blob_hashes (TODO, inherits the NotSupported default). Adds the first test for enumeration at all: ordering across shards with deliberately out-of-order inserts, complete paged traversal, and resume from a caller-synthesised cursor. NOT verified against real S3 — no bucket available here. The local path is covered by the new test; the StartAfter change is reasoned from the API contract and needs exercising against a real bucket before it is relied on. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
662 lines
24 KiB
Rust
662 lines
24 KiB
Rust
//! S3-Compatible Blob Backend — stores blobs in any S3-compatible object store.
|
|
//!
|
|
//! Supports AWS S3, Backblaze B2, Cloudflare R2, MinIO, DigitalOcean Spaces,
|
|
//! Wasabi, and any other service that implements the S3 API.
|
|
|
|
use aws_sdk_s3::primitives::ByteStream;
|
|
use bytes::Bytes;
|
|
use std::path::{Path, PathBuf};
|
|
use std::pin::Pin;
|
|
use tokio::fs;
|
|
use tokio_util::io::ReaderStream;
|
|
|
|
use crate::application::ports::blob_storage_ports::{
|
|
BlobStorageBackend, BlobStream, StorageHealthStatus,
|
|
};
|
|
use crate::common::config::S3StorageConfig;
|
|
use crate::domain::errors::{DomainError, ErrorKind};
|
|
|
|
/// S3-compatible blob storage backend.
|
|
///
|
|
/// Blobs are stored as objects with key `{2-char-prefix}/{hash}.blob`,
|
|
/// mirroring the local filesystem layout for consistency.
|
|
pub struct S3BlobBackend {
|
|
client: aws_sdk_s3::Client,
|
|
bucket: String,
|
|
}
|
|
|
|
impl S3BlobBackend {
|
|
/// Build a new S3 backend from configuration.
|
|
///
|
|
/// Supports custom endpoints for non-AWS providers (Backblaze B2,
|
|
/// MinIO, Cloudflare R2, etc.).
|
|
pub fn new(config: &S3StorageConfig) -> Self {
|
|
let credentials = aws_sdk_s3::config::Credentials::new(
|
|
&config.access_key,
|
|
&config.secret_key,
|
|
None,
|
|
None,
|
|
"oxicloud",
|
|
);
|
|
|
|
let mut builder = aws_sdk_s3::config::Builder::new()
|
|
.region(aws_sdk_s3::config::Region::new(config.region.clone()))
|
|
.credentials_provider(credentials)
|
|
.behavior_version_latest();
|
|
|
|
if let Some(ref endpoint) = config.endpoint_url {
|
|
builder = builder.endpoint_url(endpoint);
|
|
}
|
|
|
|
if config.force_path_style {
|
|
builder = builder.force_path_style(true);
|
|
}
|
|
|
|
let client = aws_sdk_s3::Client::from_conf(builder.build());
|
|
|
|
Self {
|
|
client,
|
|
bucket: config.bucket.clone(),
|
|
}
|
|
}
|
|
|
|
/// Compute the S3 object key for a given hash.
|
|
fn object_key(hash: &str) -> String {
|
|
let prefix = &hash[0..2];
|
|
format!("{}/{}.blob", prefix, hash)
|
|
}
|
|
}
|
|
|
|
impl BlobStorageBackend for S3BlobBackend {
|
|
fn initialize(
|
|
&self,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<(), DomainError>> + Send + '_>> {
|
|
Box::pin(async move {
|
|
// Verify bucket exists and is accessible
|
|
self.client
|
|
.head_bucket()
|
|
.bucket(&self.bucket)
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::internal_error(
|
|
"S3",
|
|
format!("Cannot access bucket '{}': {}", self.bucket, e),
|
|
)
|
|
})?;
|
|
|
|
tracing::info!("S3 blob backend initialized: bucket={}", self.bucket);
|
|
Ok(())
|
|
})
|
|
}
|
|
|
|
fn put_blob(
|
|
&self,
|
|
hash: &str,
|
|
source_path: &Path,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<u64, DomainError>> + Send + '_>> {
|
|
let hash = hash.to_owned();
|
|
let source_path = source_path.to_owned();
|
|
Box::pin(async move {
|
|
let key = Self::object_key(&hash);
|
|
|
|
// Check if object already exists (idempotent)
|
|
let exists = self
|
|
.client
|
|
.head_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.send()
|
|
.await
|
|
.is_ok();
|
|
|
|
if exists {
|
|
// Blob already in S3 — remove local source and return size
|
|
let file_size = fs::metadata(&source_path)
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::internal_error(
|
|
"S3",
|
|
format!("Failed to stat source file: {}", e),
|
|
)
|
|
})?
|
|
.len();
|
|
let _ = fs::remove_file(&source_path).await;
|
|
return Ok(file_size);
|
|
}
|
|
|
|
// Upload from local file
|
|
let body = ByteStream::from_path(&source_path).await.map_err(|e| {
|
|
DomainError::internal_error("S3", format!("Failed to read source file: {}", e))
|
|
})?;
|
|
|
|
let file_size = fs::metadata(&source_path)
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::internal_error("S3", format!("Failed to stat source file: {}", e))
|
|
})?
|
|
.len();
|
|
|
|
self.client
|
|
.put_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.body(body)
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::internal_error(
|
|
"S3",
|
|
format!("Failed to upload blob {}: {}", hash, e),
|
|
)
|
|
})?;
|
|
|
|
// Clean up local source after successful upload
|
|
let _ = fs::remove_file(&source_path).await;
|
|
|
|
Ok(file_size)
|
|
})
|
|
}
|
|
|
|
fn put_blob_from_bytes(
|
|
&self,
|
|
hash: &str,
|
|
data: Bytes,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<u64, DomainError>> + Send + '_>> {
|
|
let hash = hash.to_owned();
|
|
Box::pin(async move {
|
|
let key = Self::object_key(&hash);
|
|
let size = data.len() as u64;
|
|
|
|
// Idempotent: skip if already exists
|
|
if self
|
|
.client
|
|
.head_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.send()
|
|
.await
|
|
.is_ok()
|
|
{
|
|
return Ok(size);
|
|
}
|
|
|
|
let body = ByteStream::from(data);
|
|
self.client
|
|
.put_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.body(body)
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::internal_error(
|
|
"S3",
|
|
format!("Failed to upload blob {}: {}", hash, e),
|
|
)
|
|
})?;
|
|
|
|
Ok(size)
|
|
})
|
|
}
|
|
|
|
/// Dedup settle path: PUT unconditionally. Keys are content-addressed
|
|
/// (BLAKE3), so a re-PUT writes identical bytes — overwrite-safe
|
|
/// idempotency without the HEAD probe `put_blob_from_bytes` pays. The
|
|
/// dedup layer already filtered out chunks the database knows about,
|
|
/// so the probe was a pure extra round-trip on every NEW chunk of
|
|
/// every upload (2 RTTs -> 1, benches/S3-PUT.md).
|
|
///
|
|
/// Shares the body with `put_blob_from_bytes_replace` below —
|
|
/// S3 PUT is durable on return, so "unsynced" and "replace"
|
|
/// collapse to the same semantics here (unlike Local, where
|
|
/// `_replace` needs tempfile-rename + fsync).
|
|
fn put_blob_from_bytes_unsynced(
|
|
&self,
|
|
hash: &str,
|
|
data: Bytes,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<u64, DomainError>> + Send + '_>> {
|
|
let hash = hash.to_owned();
|
|
Box::pin(async move {
|
|
let key = Self::object_key(&hash);
|
|
let size = data.len() as u64;
|
|
self.client
|
|
.put_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.body(ByteStream::from(data))
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::internal_error(
|
|
"S3",
|
|
format!("Failed to upload blob {}: {}", hash, e),
|
|
)
|
|
})?;
|
|
Ok(size)
|
|
})
|
|
}
|
|
|
|
/// Atomic overwrite path used by `backend_rotate` and
|
|
/// `backend_migration` when re-writing an already-present blob
|
|
/// under a new head key/format. Trait default delegates to
|
|
/// `put_blob_from_bytes` which HEAD-probes and silently skips —
|
|
/// exactly wrong for the rotate/migrate use case (the whole
|
|
/// point is to replace the existing bytes). Override delegates
|
|
/// to the same unconditional PUT as `put_blob_from_bytes_unsynced`
|
|
/// — S3's PUT is durable on return, no separate sync barrier
|
|
/// needed.
|
|
fn put_blob_from_bytes_replace(
|
|
&self,
|
|
hash: &str,
|
|
data: Bytes,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<u64, DomainError>> + Send + '_>> {
|
|
self.put_blob_from_bytes_unsynced(hash, data)
|
|
}
|
|
|
|
fn get_blob_stream(
|
|
&self,
|
|
hash: &str,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<BlobStream, DomainError>> + Send + '_>>
|
|
{
|
|
let hash = hash.to_owned();
|
|
Box::pin(async move {
|
|
let key = Self::object_key(&hash);
|
|
|
|
let output = self
|
|
.client
|
|
.get_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::new(
|
|
ErrorKind::NotFound,
|
|
"S3",
|
|
format!("Failed to get blob {}: {}", hash, e),
|
|
)
|
|
})?;
|
|
|
|
// Convert S3 ByteStream into a Stream<Item = Result<Bytes, io::Error>>
|
|
// via AsyncRead adapter
|
|
let reader = output.body.into_async_read();
|
|
Ok(Box::pin(ReaderStream::with_capacity(reader, 256 * 1024)) as BlobStream)
|
|
})
|
|
}
|
|
|
|
fn get_blob_range_stream(
|
|
&self,
|
|
hash: &str,
|
|
start: u64,
|
|
end: Option<u64>,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<BlobStream, DomainError>> + Send + '_>>
|
|
{
|
|
let hash = hash.to_owned();
|
|
Box::pin(async move {
|
|
let key = Self::object_key(&hash);
|
|
|
|
let range = match end {
|
|
Some(end_pos) => format!("bytes={}-{}", start, end_pos.saturating_sub(1)),
|
|
None => format!("bytes={}-", start),
|
|
};
|
|
|
|
let output = self
|
|
.client
|
|
.get_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.range(range)
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::new(
|
|
ErrorKind::NotFound,
|
|
"S3",
|
|
format!("Failed to get blob range {}: {}", hash, e),
|
|
)
|
|
})?;
|
|
|
|
let reader = output.body.into_async_read();
|
|
Ok(Box::pin(ReaderStream::with_capacity(reader, 256 * 1024)) as BlobStream)
|
|
})
|
|
}
|
|
|
|
fn delete_blob(
|
|
&self,
|
|
hash: &str,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<(), DomainError>> + Send + '_>> {
|
|
let hash = hash.to_owned();
|
|
Box::pin(async move {
|
|
let key = Self::object_key(&hash);
|
|
|
|
// S3 DeleteObject is already idempotent (returns 204 even if not found)
|
|
self.client
|
|
.delete_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::internal_error(
|
|
"S3",
|
|
format!("Failed to delete blob {}: {}", hash, e),
|
|
)
|
|
})?;
|
|
|
|
Ok(())
|
|
})
|
|
}
|
|
|
|
fn blob_exists(
|
|
&self,
|
|
hash: &str,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<bool, DomainError>> + Send + '_>> {
|
|
let hash = hash.to_owned();
|
|
Box::pin(async move {
|
|
let key = Self::object_key(&hash);
|
|
|
|
match self
|
|
.client
|
|
.head_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.send()
|
|
.await
|
|
{
|
|
Ok(_) => Ok(true),
|
|
Err(e) => {
|
|
// Check if it's a 404 (not found) vs an actual error
|
|
let service_err = e.into_service_error();
|
|
if service_err.is_not_found() {
|
|
Ok(false)
|
|
} else {
|
|
Err(DomainError::internal_error(
|
|
"S3",
|
|
format!("Failed to check blob {}: {}", hash, service_err),
|
|
))
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
fn blob_size(
|
|
&self,
|
|
hash: &str,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<u64, DomainError>> + Send + '_>> {
|
|
let hash = hash.to_owned();
|
|
Box::pin(async move {
|
|
let key = Self::object_key(&hash);
|
|
|
|
let output = self
|
|
.client
|
|
.head_object()
|
|
.bucket(&self.bucket)
|
|
.key(&key)
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::new(
|
|
ErrorKind::NotFound,
|
|
"S3",
|
|
format!("Failed to stat blob {}: {}", hash, e),
|
|
)
|
|
})?;
|
|
|
|
Ok(output.content_length().unwrap_or(0) as u64)
|
|
})
|
|
}
|
|
|
|
fn health_check(
|
|
&self,
|
|
) -> Pin<
|
|
Box<dyn std::future::Future<Output = Result<StorageHealthStatus, DomainError>> + Send + '_>,
|
|
> {
|
|
Box::pin(async move {
|
|
match self.client.head_bucket().bucket(&self.bucket).send().await {
|
|
Ok(_) => Ok(StorageHealthStatus {
|
|
connected: true,
|
|
backend_type: "s3".to_string(),
|
|
message: format!("S3 bucket '{}' is accessible", self.bucket),
|
|
available_bytes: None,
|
|
}),
|
|
Err(e) => {
|
|
// The AWS SDK's `Display` impl on `SdkError` says
|
|
// just "service error" for anything the service
|
|
// returned. The real cause — signature mismatch,
|
|
// 301 redirect (wrong region), 403 (missing IAM),
|
|
// hostname unresolvable — lives on the wrapped
|
|
// `ServiceError` / `DispatchFailure` / raw response.
|
|
// Peel it apart so the admin UI + audit stream see
|
|
// the actionable message, not the tautology.
|
|
let detail = format_s3_error(&e);
|
|
tracing::warn!(
|
|
target: "audit",
|
|
event = "storage.s3.health_check_failed",
|
|
bucket = %self.bucket,
|
|
error = %detail,
|
|
error_debug = ?e,
|
|
"S3 health check on `{}` failed",
|
|
self.bucket,
|
|
);
|
|
Ok(StorageHealthStatus {
|
|
connected: false,
|
|
backend_type: "s3".to_string(),
|
|
message: format!("S3 bucket '{}' is not accessible: {detail}", self.bucket),
|
|
available_bytes: None,
|
|
})
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
fn backend_type(&self) -> &'static str {
|
|
"s3"
|
|
}
|
|
|
|
/// Remote object store: overlap chunk GETs to hide per-request latency.
|
|
fn read_prefetch(&self) -> usize {
|
|
8
|
|
}
|
|
|
|
fn local_blob_path(&self, _hash: &str) -> Option<PathBuf> {
|
|
None // Remote backend — no local path
|
|
}
|
|
|
|
/// Enumerate blobs via S3 `ListObjectsV2`. Cursor is the S3
|
|
/// continuation token verbatim (opaque). Filter: keys must
|
|
/// match `<xx>/<64-hex>.blob` — matches how `blob_key` writes
|
|
/// them — so any future non-blob namespace living in the same
|
|
/// bucket (e.g. `thumbnails/<hash>.jpg`) is skipped
|
|
/// automatically. No prefix passed to S3 so we get everything
|
|
/// in one paginated scan; the client-side filter enforces
|
|
/// correctness.
|
|
fn list_blob_hashes(
|
|
&self,
|
|
cursor: Option<String>,
|
|
limit: usize,
|
|
) -> Pin<
|
|
Box<
|
|
dyn std::future::Future<
|
|
Output = Result<
|
|
crate::application::ports::blob_storage_ports::BlobListPage,
|
|
DomainError,
|
|
>,
|
|
> + Send
|
|
+ '_,
|
|
>,
|
|
> {
|
|
use crate::application::ports::blob_storage_ports::{
|
|
BackendBlobEntry, BackendUnknownEntry, BlobListPage,
|
|
};
|
|
|
|
Box::pin(async move {
|
|
let mut req = self
|
|
.client
|
|
.list_objects_v2()
|
|
.bucket(&self.bucket)
|
|
.max_keys(limit.min(1000) as i32);
|
|
// Resume after a HASH, not a continuation token (port contract).
|
|
// ListObjectsV2 supports this natively via StartAfter, and it is
|
|
// what lets a caller resume the backend side of a merge-join from
|
|
// a checkpoint it holds — a continuation token would force a
|
|
// re-enumeration from the start on every resume.
|
|
if let Some(c) = cursor {
|
|
req = req.start_after(Self::object_key(&c));
|
|
}
|
|
|
|
let resp = req.send().await.map_err(|e| {
|
|
DomainError::new(
|
|
ErrorKind::InternalError,
|
|
"Blob",
|
|
format!("S3 ListObjectsV2 failed: {e}"),
|
|
)
|
|
})?;
|
|
|
|
let objects = resp.contents.unwrap_or_default();
|
|
let mut blobs: Vec<BackendBlobEntry> = Vec::with_capacity(objects.len());
|
|
let mut unknowns: Vec<BackendUnknownEntry> = Vec::new();
|
|
// Last key of the page regardless of classification — the resume
|
|
// fallback for an all-unknowns page (see next_cursor below).
|
|
let mut last_key: Option<String> = None;
|
|
|
|
for obj in objects {
|
|
let Some(key) = obj.key else { continue };
|
|
let mtime = obj.last_modified.and_then(|ts| {
|
|
let secs = ts.secs();
|
|
let nsecs = ts.subsec_nanos();
|
|
chrono::DateTime::<chrono::Utc>::from_timestamp(secs, nsecs)
|
|
});
|
|
|
|
// Canonical S3 key shape: `<xx>/<64-hex>.blob`.
|
|
// Anything else is a sidecar or foreign namespace
|
|
// (e.g. future `thumbnails/<hash>.jpg` if Ed adds
|
|
// that) — surface as an unknown so operators know
|
|
// it's there. Recovery framework can decide per-
|
|
// pattern how to act.
|
|
let is_canonical = key.split_once('/').and_then(|(prefix, rest)| {
|
|
if prefix.len() != 2 || !prefix.chars().all(|c| c.is_ascii_hexdigit()) {
|
|
return None;
|
|
}
|
|
rest.strip_suffix(".blob")
|
|
.filter(|stem| {
|
|
stem.len() == 64 && stem.chars().all(|c| c.is_ascii_hexdigit())
|
|
})
|
|
.map(|s| s.to_string())
|
|
});
|
|
|
|
match is_canonical {
|
|
Some(hash) => {
|
|
last_key = Some(hash.clone());
|
|
blobs.push(BackendBlobEntry { hash, mtime })
|
|
}
|
|
None => {
|
|
last_key = Some(key.clone());
|
|
unknowns.push(BackendUnknownEntry { path: key, mtime })
|
|
}
|
|
}
|
|
}
|
|
|
|
// Resume point: the last hash of this page, not the continuation
|
|
// token — see the StartAfter note above.
|
|
//
|
|
// `blobs.last()` alone is NOT sufficient. A page can legitimately
|
|
// contain only non-canonical keys (`.tmp` spool files, `.corrupt`
|
|
// sidecars), which are filtered into `unknowns`; `blobs` is then
|
|
// empty and a naive `blobs.last()` yields None, silently ending
|
|
// enumeration while `is_truncated` says otherwise. A consistency
|
|
// sweep would under-report rather than fail — the worst shape of
|
|
// bug for an audit job.
|
|
//
|
|
// So fall back to the last KEY seen. StartAfter is a plain string
|
|
// comparison, so any key works as a resume point; it need not be
|
|
// a hash. The port contract's "cursor is a hash" is what CALLERS
|
|
// may synthesise, not a restriction on what backends may return.
|
|
let next_cursor = if resp.is_truncated.unwrap_or(false) {
|
|
match blobs.last() {
|
|
Some(entry) => Some(entry.hash.clone()),
|
|
None => last_key.map(|k| {
|
|
// Strip the `blobs/<xx>/` prefix: object_key() re-adds
|
|
// it when this comes back as a cursor.
|
|
k.rsplit('/').next().unwrap_or(&k).to_string()
|
|
}),
|
|
}
|
|
} else {
|
|
None
|
|
};
|
|
Ok(BlobListPage {
|
|
blobs,
|
|
unknowns,
|
|
next_cursor,
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
/// Extract an actionable error string from an aws-sdk-s3 error.
|
|
///
|
|
/// `SdkError::Display` renders literally `"service error"` when the
|
|
/// service returned a structured error, which is worse than useless
|
|
/// in the admin UI. This helper walks the error chain and produces:
|
|
///
|
|
/// - `NotFound` — bucket doesn't exist (or the credentials can't see it).
|
|
/// - `<code>: <message>` — the S3-specific error code + message the
|
|
/// service returned (e.g. `InvalidAccessKeyId: The AWS Access Key
|
|
/// Id you provided does not exist`, `SignatureDoesNotMatch: The
|
|
/// request signature we calculated does not match the signature`,
|
|
/// `PermanentRedirect: The bucket you are attempting to access must
|
|
/// be addressed using the specified endpoint`).
|
|
/// - `network error: <cause>` — DNS / TLS / TCP dispatch failure.
|
|
/// - `timeout` — request timed out.
|
|
/// - `unknown SDK error: <debug>` — anything else, with the full
|
|
/// `Debug` output so the operator + audit stream see the real cause
|
|
/// instead of `"service error"`.
|
|
fn format_s3_error<E>(err: &aws_sdk_s3::error::SdkError<E>) -> String
|
|
where
|
|
E: aws_sdk_s3::error::ProvideErrorMetadata + std::fmt::Debug,
|
|
{
|
|
use aws_sdk_s3::error::SdkError;
|
|
|
|
match err {
|
|
SdkError::ServiceError(svc) => {
|
|
let inner = svc.err();
|
|
let meta = inner.meta();
|
|
let code = meta.code().unwrap_or("<no-code>");
|
|
let msg = meta.message().unwrap_or("");
|
|
// A 404 for HeadBucket surfaces as `NotFound` on the
|
|
// typed error — normalise the string so callers filter
|
|
// on it easily.
|
|
if code.eq_ignore_ascii_case("NotFound") || code == "404" {
|
|
return "NotFound (bucket doesn't exist or no permission to see it)".to_string();
|
|
}
|
|
if msg.is_empty() {
|
|
format!("{code} (HTTP {})", svc.raw().status().as_u16())
|
|
} else {
|
|
format!("{code}: {msg}")
|
|
}
|
|
}
|
|
SdkError::DispatchFailure(d) => {
|
|
// DNS / TLS / connection refused / TCP reset land here.
|
|
if d.is_io() {
|
|
format!("network I/O error: {:?}", d.as_connector_error())
|
|
} else if d.is_timeout() {
|
|
"network timeout during dispatch".to_string()
|
|
} else if d.is_user() {
|
|
format!("client-side dispatch failure: {d:?}")
|
|
} else {
|
|
format!("dispatch failure: {d:?}")
|
|
}
|
|
}
|
|
SdkError::TimeoutError(_) => "timeout".to_string(),
|
|
SdkError::ResponseError(r) => {
|
|
format!(
|
|
"malformed response (HTTP {}): {r:?}",
|
|
r.raw().status().as_u16()
|
|
)
|
|
}
|
|
SdkError::ConstructionFailure(c) => format!("request construction failed: {c:?}"),
|
|
_ => format!("unknown SDK error: {err:?}"),
|
|
}
|
|
}
|