Skip to content

Commit 3c57574

Browse files
Serock3dlon
authored andcommitted
Add set_mtu for linux
1 parent 948aa31 commit 3c57574

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

talpid-wireguard/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ mod connectivity_check;
5151
mod logging;
5252
mod ping_monitor;
5353
mod stats;
54+
#[cfg(target_os = "linux")]
55+
mod unix;
5456
#[cfg(wireguard_go)]
5557
mod wireguard_go;
5658
#[cfg(target_os = "linux")]

talpid-wireguard/src/unix.rs

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
use std::{io, os::fd::AsRawFd};
2+
3+
use socket2::Domain;
4+
use talpid_types::ErrorExt;
5+
6+
pub fn set_mtu(interface_name: &str, mtu: u16) -> Result<(), io::Error> {
7+
debug_assert_ne!(
8+
interface_name, "eth0",
9+
"Should be name of mullvad tunnel interface, e.g. 'wg0-mullvad'"
10+
);
11+
12+
let sock = socket2::Socket::new(
13+
Domain::IPV4,
14+
socket2::Type::STREAM,
15+
Some(socket2::Protocol::TCP),
16+
)?;
17+
18+
let mut ifr: libc::ifreq = unsafe { std::mem::zeroed() };
19+
if interface_name.len() >= ifr.ifr_name.len() {
20+
return Err(io::Error::new(
21+
io::ErrorKind::InvalidInput,
22+
"Interface name too long",
23+
));
24+
}
25+
26+
unsafe {
27+
std::ptr::copy_nonoverlapping(
28+
interface_name.as_ptr() as *const i8,
29+
&mut ifr.ifr_name as *mut _,
30+
interface_name.len(),
31+
)
32+
};
33+
ifr.ifr_ifru.ifru_mtu = mtu as i32;
34+
35+
if unsafe { libc::ioctl(sock.as_raw_fd(), libc::SIOCSIFMTU, &ifr) } < 0 {
36+
let e = std::io::Error::last_os_error();
37+
log::error!("{}", e.display_chain_with_msg("SIOCSIFMTU failed"));
38+
return Err(e);
39+
}
40+
Ok(())
41+
}

0 commit comments

Comments
 (0)