Crates.io | tun-rs |
lib.rs | tun-rs |
version | 1.4.7 |
source | src |
created_at | 2024-08-30 12:09:09.729115 |
updated_at | 2024-11-22 09:57:09.821718 |
description | A cross-platform infrastructure of Tun/Tap device creation and handling. |
homepage | |
repository | https://github.com/xmh0511/tun-rs |
max_upload_size | |
id | 1357614 |
size | 417,209 |
This crate allows the creation and usage of Tun/Tap interfaces(supporting both Ipv4 and ipv6), the aim is to make this cross-platform.
First, add the following to your Cargo.toml
:
[dependencies]
tun_rs = "1"
If you want to use the TUN interface with asynchronous runtimes, you need to enable the async
(aliased as async_tokio
), or async_std
feature:
[dependencies]
# tokio
tun_rs = { version = "1", features = ["async"] }
# async-std
tun_rs = { version = "1", features = ["async_std"] }
The following example creates and configures a TUN interface and reads packets from it synchronously.
fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>> {
let mut config = tun_rs::Configuration::default();
config
.address_with_prefix((10, 0, 0, 9), 24u8)
//.destination((10, 0, 0, 1))
.up();
let dev = tun_rs::create(&config)?;
// let shared = Arc::new(dev);
dev.add_address_v6(
"CDCD:910A:2222:5498:8475:1111:3900:2024"
.parse::<IpAddr>()
.unwrap(),
64
)?;
//dev_t.remove_network_address(vec![(ip,prefix)])?;
let mut buf = [0; 4096];
loop {
let amount = dev.recv(&mut buf)?;
println!("{:?}", &buf[0..amount]);
}
}
An example of asynchronously reading packets from an interface
#[tokio::main]
async fn main(mut quit: Receiver<()>) -> Result<(), BoxError> {
let mut config = tun_rs::Configuration::default();
config
.address_with_prefix((10, 0, 0, 9), 24)
.mtu(tun_rs::DEFAULT_MTU)
.up();
let dev = Arc::new(tun_rs::create_as_async(&config)?);
// ignore the head 4bytes packet information for calling `recv` and `send` on macOS
#[cfg(target_os="macos")]
dev.set_ignore_packet_info(true);
let mut buf = vec![0; 1500];
loop {
let len = dev.recv(&mut buf).await?;
println!("pkt: {:?}", &buf[..len]);
//dev.send(buf).await?;
}
Ok(())
}
Windows
Linux
macOS
FreeBSD
Android
iOS
You will need the tun-rs
module to be loaded and root is required to create
interfaces.
tun-rs
will automatically set up a route according to the provided configuration, which does a similar thing like this:
sudo route -n add -net 10.0.0.0/24 10.0.0.1
You can pass the file descriptor of the TUN device to tun-rs
to create the interface.
Here is an example to create the TUN device on iOS and pass the fd
to tun-rs
:
// Swift
class PacketTunnelProvider: NEPacketTunnelProvider {
override func startTunnel(options: [String : NSObject]?, completionHandler: @escaping (Error?) -> Void) {
let tunnelNetworkSettings = createTunnelSettings() // Configure TUN address, DNS, mtu, routing...
setTunnelNetworkSettings(tunnelNetworkSettings) { [weak self] error in
// The tunnel of this tunFd is contains `Packet Information` prifix.
let tunFd = self?.packetFlow.value(forKeyPath: "socket.fileDescriptor") as! Int32
DispatchQueue.global(qos: .default).async {
start_tun(tunFd)
}
completionHandler(nil)
}
}
}
#[no_mangle]
pub extern "C" fn start_tun(fd: std::os::raw::c_int) {
let mut rt = tokio::runtime::Runtime::new().unwrap();
rt.block_on(async {
// This is safe if the provided fd is valid
let tun = unsafe{tun_rs::AsyncDevice::from_raw_fd(fd)};
let mut buf = [0u8;1500];
while let Ok(packet) = tun.recv(& mut buf).await {
...
}
});
}
You need to copy the wintun.dll file which matches your architecture to the same directory as your executable and run your program as administrator.
You need to manually install tap-windows that matches your architecture when using tap network interface.