09f019730f
- Add credentials.rs with CredentialStore, redacted Debug (session_token shows [REDACTED]) - Add nfs.rs with ESTALE retry using Fn closure, 5s health timeout - Add smb.rs with ENOTCONN retry handling, 5s health timeout - Add s3.rs/sftp.rs feature-gated stubs with security documentation - Add error variants: S3, Sftp, Timeout, Credential, NfsStaleHandle - Fix delta.rs unused imports Oracle fixes applied: - SMB retry_on_disconnect for ENOTCONN (errno 107) - session_token Debug shows [REDACTED] when Some, None otherwise - NFS/SMB health checks wrapped with tokio::time::timeout(5s) 102 tests pass, 0 warnings.
13 lines
474 B
Rust
13 lines
474 B
Rust
#![allow(dead_code)]
|
|
//! SFTP origin - feature-gated to avoid russh/deadpool dependencies
|
|
|
|
#[cfg(feature = "sftp")]
|
|
mod implementation {
|
|
// Full SFTP implementation with connection pooling
|
|
// Oracle fixes to implement:
|
|
// 1. Use deadpool connection pool, not Arc<Mutex<SftpSession>>
|
|
// 2. Verify SSH host keys against ~/.ssh/known_hosts
|
|
// 3. Wrap all operations with tokio::time::timeout(30s)
|
|
// 4. Cap open_read to actual file size, not u32::MAX
|
|
}
|