Skip to content

Commit d1c97f9

Browse files
author
Sebastian Holmin
committed
Use sudo ifconfig instead of libc to set mtu
1 parent cad2c0d commit d1c97f9

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

test/test-manager/src/tests/tunnel_state.rs

+17-3
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,32 @@ use test_rpc::ServiceClient;
3232
fn set_bridge_interface_mtu(
3333
max_packet_size: u16,
3434
) -> anyhow::Result<scopeguard::ScopeGuard<(), impl FnOnce(())>> {
35-
use anyhow::Context;
35+
use anyhow::{bail, Context};
3636
use test_rpc::net::unix;
3737
let bridge_iface: String = crate::vm::network::macos::find_vm_bridge()
3838
.context("Failed to get bridge interface name")?;
3939

4040
let previous_mtu = unix::get_mtu(&bridge_iface)
4141
.with_context(|| format!("Failed to get MTU for bridge interface '{bridge_iface}'"))?;
42-
unix::set_mtu(&bridge_iface, max_packet_size)
42+
43+
let set_mtu_fn = move |mtu: u16, interface: &str| {
44+
let mut cmd = std::process::Command::new("/usr/bin/sudo");
45+
cmd.args(["/usr/sbin/ifconfig", interface, "mtu", &format!("{mtu}")]);
46+
let output = cmd.output().context("Failed to execute ifconfig")?;
47+
if !output.status.success() {
48+
bail!(
49+
"ifconfig failed with status: {}",
50+
output.status.code().unwrap()
51+
);
52+
}
53+
Ok(())
54+
};
55+
set_mtu_fn(max_packet_size, &bridge_iface)
4356
.with_context(|| format!("Failed to set MTU for bridge interface '{bridge_iface}'"))?;
4457

4558
Ok(scopeguard::guard((), move |()| {
46-
unix::set_mtu(&bridge_iface, previous_mtu).expect("Failed to set MTU on bridge interface");
59+
set_mtu_fn(previous_mtu, &bridge_iface)
60+
.unwrap_or_else(|_| panic!("Failed to set MTU for bridge interface '{bridge_iface}'"));
4761
}))
4862
}
4963

0 commit comments

Comments
 (0)