1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#[cfg(target_os = "linux")]
use crate::linux::interface::Interface;
#[cfg(target_os = "linux")]
use crate::linux::params::Params;
use crate::result::Result;
use async_std::fs::File;
use async_std::fs::OpenOptions;
#[cfg(target_os = "linux")]
use async_std::os::unix::io::{AsRawFd, FromRawFd};
use std::net::Ipv4Addr;
use std::ops::{Deref, DerefMut};
pub struct Tun {
file: File,
iface: Interface,
}
impl Tun {
#[cfg(target_os = "linux")]
async fn alloc(params: Params) -> Result<(File, Interface)> {
let file = OpenOptions::new()
.read(true)
.write(true)
.open("/dev/net/tun")
.await?;
let iface = Interface::new(
file.as_raw_fd(),
params.name.as_deref().unwrap_or_default(),
params.flags,
)?;
if let Some(mtu) = params.mtu {
iface.mtu(Some(mtu))?;
}
if let Some(owner) = params.owner {
iface.owner(owner)?;
}
if let Some(group) = params.group {
iface.group(group)?;
}
if let Some(address) = params.address {
iface.address(Some(address))?;
}
if let Some(dst) = params.destination {
iface.destination(Some(dst))?;
}
if params.persist {
iface.persist()?;
}
if params.up {
iface.flags(Some(libc::IFF_UP as i16 | libc::IFF_RUNNING as i16))?;
}
Ok((file, iface))
}
#[cfg(not(any(target_os = "linux")))]
async fn alloc(params: Params) -> Result<Self> {
unimplemented!()
}
pub(crate) async fn new(params: Params) -> Result<Self> {
let (file, iface) = Self::alloc(params).await?;
Ok(Self { file, iface })
}
pub fn name(&self) -> &str {
self.iface.name()
}
pub fn mtu(&self) -> Result<i32> {
self.iface.mtu(None)
}
pub fn address(&self) -> Result<Ipv4Addr> {
self.iface.address(None)
}
pub fn destination(&self) -> Result<Ipv4Addr> {
self.iface.destination(None)
}
pub fn flags(&self) -> Result<i16> {
self.iface.flags(None)
}
}
impl Clone for Tun {
#[cfg(target_os = "linux")]
fn clone(&self) -> Self {
Self {
file: unsafe { File::from_raw_fd(self.file.as_raw_fd()) },
iface: self.iface.clone(),
}
}
#[cfg(not(any(target_os = "linux")))]
fn clone(&self) -> Self {
unimplemented!()
}
}
impl Deref for Tun {
type Target = File;
fn deref(&self) -> &Self::Target {
&self.file
}
}
impl DerefMut for Tun {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.file
}
}