File tree 2 files changed +43
-0
lines changed
2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ mod connectivity_check;
51
51
mod logging;
52
52
mod ping_monitor;
53
53
mod stats;
54
+ #[ cfg( target_os = "linux" ) ]
55
+ mod unix;
54
56
#[ cfg( wireguard_go) ]
55
57
mod wireguard_go;
56
58
#[ cfg( target_os = "linux" ) ]
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments