File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,7 @@ pub fn get_interface_mtu(interface_name: &str) -> Result<u16, test_rpc::Error> {
263
263
panic ! ( "Interface '{interface_name}' name too long" )
264
264
}
265
265
266
+ // SAFETY: interface_name is shorter than ifr.ifr_name
266
267
unsafe {
267
268
std:: ptr:: copy_nonoverlapping (
268
269
interface_name. as_ptr ( ) as * const libc:: c_char ,
@@ -272,12 +273,15 @@ pub fn get_interface_mtu(interface_name: &str) -> Result<u16, test_rpc::Error> {
272
273
} ;
273
274
274
275
// TODO: define SIOCGIFMTU for macos
276
+ // SAFETY: SIOCGIFMTU expects an ifreq, and the socket is valid
275
277
if unsafe { libc:: ioctl ( sock. as_raw_fd ( ) , libc:: SIOCGIFMTU , & mut ifr) } < 0 {
276
278
let e = std:: io:: Error :: last_os_error ( ) ;
277
279
278
280
log:: error!( "{}" , e) ;
279
281
return Err ( test_rpc:: Error :: Io ( e. to_string ( ) ) ) ;
280
282
}
283
+
284
+ // SAFETY: ifru_mtu is set since SIOGCIFMTU succeeded
281
285
Ok ( unsafe { ifr. ifr_ifru . ifru_mtu }
282
286
. try_into ( )
283
287
. expect ( "MTU should fit in u16" ) )
You can’t perform that action at this time.
0 commit comments