#smb #samba #smb2 #smb3 #network-protocol

sys pavao

Rust client library for SMB 2/3 based on libsmbclient

8 releases

0.2.6 Apr 11, 2024
0.2.5 Feb 13, 2024
0.2.4 Jan 28, 2024
0.2.3 May 16, 2023
0.1.2 May 26, 2022

#809 in Network programming

Download history 71/week @ 2024-01-02 127/week @ 2024-01-09 135/week @ 2024-01-16 144/week @ 2024-01-23 163/week @ 2024-01-30 152/week @ 2024-02-06 180/week @ 2024-02-13 182/week @ 2024-02-20 216/week @ 2024-02-27 204/week @ 2024-03-05 173/week @ 2024-03-12 103/week @ 2024-03-19 106/week @ 2024-03-26 280/week @ 2024-04-02 267/week @ 2024-04-09 150/week @ 2024-04-16

826 downloads per month
Used in 4 crates (3 directly)

GPL-3.0 license

97KB
2.5K SLoC

Pavão

pavao logo

~ A Rust client library for SMB ~

Get started · Crates.io · Documentation

Developed by @veeso

Current version: 0.2.6 (11/04/2024)

License-GPLv3 Repo stars Downloads counter Latest version Ko-fi

Linux CI MacOS CI Coveralls Docs



About Pavão 🦚

Pavão (/pɐ.ˈvɐ̃w̃/) is a Rust client library for SMB version 2 and 3 which exposes type-safe functions to interact with the C libsmbclient.

Pavão |> Pavé |> Animal Crossing |> Carnival |> Rio De Janeiro |> Samba |> SMB

SMB Rust client for Windows

SMB is natively supported on Windows by the fs module. If you're looking on how to use SMB on Windows with Rust, please check out this article https://blog.veeso.dev/blog/en/how-to-access-an-smb-share-with-rust-on-windows/ or consider adopting remotefs-smb.


Get started 🏁

Add pavao to your Cargo.toml 🦀

pavao = "0.2"

Install pavao C dependencies on your system 🖥️

MacOS 🍎

Install samba with brew:

brew install samba

Debian based systems 🐧

Install libsmbclient with apt:

apt install -y libsmbclient-dev libsmbclient

⚠️ libsmbclient-dev is required only on the machine where you build the application

RedHat based systems 🐧

Install libsmbclient with dnf:

dnf install libsmbclient-devel libsmbclient

⚠️ libsmbclient-devel is required only on the machine where you build the application

Build from sources 📁

Install libsmbclient building from sources:

wget -O samba.tar.gz https://github.com/samba-team/samba/archive/refs/tags/samba-4.16.1.tar.gz
mkdir -p samba/
tar  xzvf samba.tar.gz -C samba/ --strip-components=1
rm samba.tar.gz
cd samba/
./configure
make
make install
cd ..
rm -rf samba/

Create a pavao application

use pavao::{SmbClient, SmbCredentials, SmbOptions, SmbOpenOptions};

// Initialize a new client
let client = SmbClient::new(
    SmbCredentials::default()
        .server(server)
        .share(share)
        .password(password)
        .username(username)
        .workgroup(workgroup),
    SmbOptions::default().one_share_per_server(true),
)
.unwrap();
// do anything you want here with client
let mut file = client.open_with("/abc/test.txt", SmbOpenOptions::default().read(true)).unwrap();
// read file...
drop(file);
// disconnect from server
drop(client);

Run examples

Two examples are provided along with this repository and can be found under the examples/ directory.

The tree example can be used to get a fs tree of the smb share and can be run with:

cargo run --example tree -- -u <username> -w <workspace> -s <share> -P <password> smb://<hostname>

while the transfer example shows how to write a file to the remote host and can be run with:

cargo run --example transfer -- -i <file_on_local> -o <file_to_write> -u <username> -w <workspace> -s <share> -P <password> smb://<hostname>

Documentation 📚

The developer documentation can be found on Rust Docs at https://docs.rs/pavao


Support the developer ☕

If you like Pavão and you're grateful for the work I've done, please consider a little donation 🥳

You can make a donation with one of these platforms:

ko-fi PayPal


Contributing and issues 🤝🏻

Contributions, bug reports, new features and questions are welcome! 😉 If you have any question or concern, or you want to suggest a new feature, or you want just want to improve pavao, feel free to open an issue or a PR.

Please follow our contributing guidelines


Changelog ⏳

View Pavão's changelog HERE


License 📃

Pavão is licensed under the GPLv3 license.

You can read the entire license HERE

Dependencies

~0.4–1MB
~22K SLoC