~ A super FTP/FTPS client library for Rust ~
Developed by veeso
SuppaFTP is a feature-rich FTP/FTPS client library for Rust, supporting both synchronous and asynchronous programming. It aims to be a complete, reliable and well-tested implementation of the FTP protocol for Rust developers.
- π FTPS support with your choice of TLS backend: native-tls or rustls
- π First-class sync and async APIs, with tokio and smol as async backends
- β¬οΈ Stream-based transfers (e.g.
put_with_stream,retr) for fine-grained control over data connections βοΈ Both passive and active transfer modes- π Wide command coverage, including
ABOR,APPE,REST,EPSVandEPRT - π Built-in parser for the LIST command output (POSIX and DOS formats) into structured
Fileobjects - π Helpers such as
get_welcome_msgto access server greetings - π¦ Pure Rust with no mandatory C bindings (when using rustls)
- π Implements RFC 2428 and RFC 2389
- π Robust error handling and an extensive test suite with code coverage
To get started, first add suppaftp to your dependencies:
suppaftp = "^8"These are all the possible features, by family
- Sync FTP:
native-tls: enable FTPS support using native-tls as backend for TLSnative-tls-vendored: enable vendored FTPS support using native-tlsrustls-aws-lc-rs: enable FTPS support using rustls with aws-lc-rs as TLS backend.rustls-ring: enable FTPS support using rustls with ring as TLS backend.
- Async FTP:
- Smol:
smol: enable async client using smol as async backendsmol-async-native-tls: enable FTPS support using async-native-tlssmol-async-native-tls-vendored: enable vendored FTPS support using async-native-tlssmol-rustls-aws-lc-rs: enable FTPS support using rustls with aws-lc-rs as TLS backend.smol-rustls-ring: enable FTPS support using rustls with ring as TLS backend.
- Tokio:
tokio: enable async client using tokio as async backendtokio-async-native-tls: enable FTPS support using async-native-tlstokio-async-native-tls-vendored: enable vendored FTPS support using async-native-tlstokio-rustls-aws-lc-rs: enable FTPS support using rustls with aws-lc-rs as TLS backend.tokio-rustls-ring: enable FTPS support using rustls with ring as TLS backend.
- Smol:
- Misc:
deprecated: enable deprecated FTP/FTPS methodsno-log: disable logging
In more details:
If you want to enable support for FTPS, you must enable the native-tls or one of the rustls features in your
cargo dependencies, based on the TLS provider you prefer.
suppaftp = { version = "^8", features = ["native-tls"] }
# or
suppaftp = { version = "^8", features = ["rustls-aws-lc-rs"] }Note
π‘ If you don't know what to choose, native-tls should be preferred for compatibility reasons.
β If you want to link libssl statically, enable feature native-tls-vendored
If you want to enable async support, you must enable either smol feature, to
use smol or tokio feature, to use tokio
as backend, in your cargo dependencies.
suppaftp = { version = "^8", features = ["tokio"] }Caution
-ring) feature
-ring) feature
β To link libssl statically with smol, enable feature smol-async-native-tls-vendored
β To link libssl statically with tokio, enable feature tokio-async-native-tls-vendored
If you want to enable deprecated methods of FTPS, please enable the deprecated feature in your cargo dependencies.
This feature enables these methods:
connect_secure_implicit(): used to connect via implicit FTPS
By default, the library will log if there is any log crate consumer on the user implementation.
Logging can be if preferred, disabled via the no-log feature.
use std::io::Cursor;
use std::str;
use suppaftp::FtpStream;
fn main() {
// Create a connection to an FTP server and authenticate to it.
let mut ftp_stream = FtpStream::connect("127.0.0.1:21").unwrap();
let _ = ftp_stream.login("username", "password").unwrap();
// Get the current directory that the client will be reading from and writing to.
println!("Current directory: {}", ftp_stream.pwd().unwrap());
// Change into a new directory, relative to the one we are currently in.
let _ = ftp_stream.cwd("test_data").unwrap();
// Retrieve (GET) a file from the FTP server in the current working directory.
let data = ftp_stream.retr_as_buffer("ftpext-charter.txt").unwrap();
println!(
"Read file with contents\n{}\n",
str::from_utf8(&data.into_inner()).unwrap()
);
// Store (PUT) a file from the client to the current working directory of the server.
let mut reader = Cursor::new("Hello from the Rust \"ftp\" crate!".as_bytes());
let _ = ftp_stream.put_file("greeting.txt", &mut reader);
println!("Successfully wrote greeting.txt");
// Terminate the connection to the server.
let _ = ftp_stream.quit();
}use suppaftp::native_tls::TlsConnector;
use suppaftp::{NativeTlsConnector, NativeTlsFtpStream};
fn main() {
let ftp_stream = NativeTlsFtpStream::connect("test.rebex.net:21").unwrap();
// Switch to the secure mode
let mut ftp_stream = ftp_stream
.into_secure(
NativeTlsConnector::from(TlsConnector::new().unwrap()),
"test.rebex.net",
)
.unwrap();
ftp_stream.login("demo", "password").unwrap();
// Do other secret stuff
assert!(ftp_stream.quit().is_ok());
}You can also find and run this example in the suppaftp/examples/ directory (
cargo run --example rustls --features rustls).
use std::sync::Arc;
use suppaftp::rustls::ClientConfig;
use suppaftp::{RustlsConnector, RustlsFtpStream, rustls};
fn main() {
let root_store =
rustls::RootCertStore::from_iter(webpki_roots::TLS_SERVER_ROOTS.iter().cloned());
let config = ClientConfig::builder()
.with_root_certificates(root_store)
.with_no_client_auth();
// Create a connection to an FTP server and authenticate to it.
let mut ftp_stream = RustlsFtpStream::connect("test.rebex.net:21")
.unwrap()
.into_secure(RustlsConnector::from(Arc::new(config)), "test.rebex.net")
.unwrap();
// Terminate the connection to the server.
let _ = ftp_stream.quit();
}use suppaftp::async_native_tls::TlsConnector;
use suppaftp::{AsyncNativeTlsConnector, AsyncNativeTlsFtpStream};
#[tokio::main]
async fn main() {
let ftp_stream = AsyncNativeTlsFtpStream::connect("test.rebex.net:21")
.await
.unwrap();
// Switch to the secure mode
let mut ftp_stream = ftp_stream
.into_secure(
AsyncNativeTlsConnector::from(TlsConnector::new()),
"test.rebex.net",
)
.await
.unwrap();
ftp_stream.login("demo", "password").await.unwrap();
// Do other secret stuff
assert!(ftp_stream.quit().await.is_ok());
}SuppaFTP comes also with a built-in command-line FTP client. This CLI application provides all the commands to interact
with a remote FTP server and supports FTPS too. You can also use it as a reference to implement your project. You can
find it in the crates/suppaftp-cli/ directory.
You can simply install as any other rust application via Cargo:
cargo install suppaftp-cli
suppaftp --versionLicensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
If you want to contribute to this project, please read the Contributing guide first π.