Skip to content

Commit c007c19

Browse files
committed
Add safety comment for unsafe blocks
1 parent f3bd910 commit c007c19

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test-runner/src/net.rs

+4
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ pub fn get_interface_mtu(interface_name: &str) -> Result<u16, test_rpc::Error> {
263263
panic!("Interface '{interface_name}' name too long")
264264
}
265265

266+
// SAFETY: interface_name is shorter than ifr.ifr_name
266267
unsafe {
267268
std::ptr::copy_nonoverlapping(
268269
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> {
272273
};
273274

274275
// TODO: define SIOCGIFMTU for macos
276+
// SAFETY: SIOCGIFMTU expects an ifreq, and the socket is valid
275277
if unsafe { libc::ioctl(sock.as_raw_fd(), libc::SIOCGIFMTU, &mut ifr) } < 0 {
276278
let e = std::io::Error::last_os_error();
277279

278280
log::error!("{}", e);
279281
return Err(test_rpc::Error::Io(e.to_string()));
280282
}
283+
284+
// SAFETY: ifru_mtu is set since SIOGCIFMTU succeeded
281285
Ok(unsafe { ifr.ifr_ifru.ifru_mtu }
282286
.try_into()
283287
.expect("MTU should fit in u16"))

0 commit comments

Comments
 (0)