@@ -32,18 +32,32 @@ use test_rpc::ServiceClient;
32
32
fn set_bridge_interface_mtu (
33
33
max_packet_size : u16 ,
34
34
) -> anyhow:: Result < scopeguard:: ScopeGuard < ( ) , impl FnOnce ( ( ) ) > > {
35
- use anyhow:: Context ;
35
+ use anyhow:: { bail , Context } ;
36
36
use test_rpc:: net:: unix;
37
37
let bridge_iface: String = crate :: vm:: network:: macos:: find_vm_bridge ( )
38
38
. context ( "Failed to get bridge interface name" ) ?;
39
39
40
40
let previous_mtu = unix:: get_mtu ( & bridge_iface)
41
41
. 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)
43
56
. with_context ( || format ! ( "Failed to set MTU for bridge interface '{bridge_iface}'" ) ) ?;
44
57
45
58
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}'" ) ) ;
47
61
} ) )
48
62
}
49
63
0 commit comments