Skip to content

Commit 095b5be

Browse files
bors[bot]jeandudey
andauthored
Merge #1233
1233: Add SO_BINDTODEVICE sockopt r=asomers a=jeandudey This is available only on Linux as far I know, [socket(7)](https://linux.die.net/man/7/socket) has some information about the `SO_BINDTODEVICE` sockopt. In simple words it binds a socket to an specific network device (specified as an string like "wlo1", "eth0", etc.), to only process packets from that device. Note: this is untested (for now, i'll test it today), but should work out of the box. Co-authored-by: Jean Pierre Dudey <[email protected]>
2 parents a937988 + 1686f6d commit 095b5be

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2727
(#[1208](https://github.com/nix-rust/nix/pull/1208))
2828
- Added support for `SCM_CREDS` messages (`UnixCredentials`) on FreeBSD/DragonFly
2929
(#[1216](https://github.com/nix-rust/nix/pull/1216))
30+
- Added `BindToDevice` socket option (sockopt) on Linux
31+
(#[1233](https://github.com/nix-rust/nix/pull/1233))
3032

3133
### Changed
3234
- Changed `fallocate` return type from `c_int` to `()` (#[1201](https://github.com/nix-rust/nix/pull/1201))

src/sys/socket/sockopt.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,8 @@ sockopt_impl!(SetOnly, SndBufForce, libc::SOL_SOCKET, libc::SO_SNDBUFFORCE, usiz
260260
sockopt_impl!(GetOnly, SockType, libc::SOL_SOCKET, libc::SO_TYPE, super::SockType);
261261
sockopt_impl!(GetOnly, AcceptConn, libc::SOL_SOCKET, libc::SO_ACCEPTCONN, bool);
262262
#[cfg(any(target_os = "android", target_os = "linux"))]
263+
sockopt_impl!(Both, BindToDevice, libc::SOL_SOCKET, libc::SO_BINDTODEVICE, OsString<[u8; libc::IFNAMSIZ]>);
264+
#[cfg(any(target_os = "android", target_os = "linux"))]
263265
sockopt_impl!(GetOnly, OriginalDst, libc::SOL_IP, libc::SO_ORIGINAL_DST, libc::sockaddr_in);
264266
sockopt_impl!(Both, ReceiveTimestamp, libc::SOL_SOCKET, libc::SO_TIMESTAMP, bool);
265267
#[cfg(any(target_os = "android", target_os = "linux"))]

test/sys/test_sockopt.rs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,19 @@ fn test_tcp_congestion() {
5151
val
5252
);
5353
}
54+
55+
#[test]
56+
#[cfg(any(target_os = "android", target_os = "linux"))]
57+
fn test_bindtodevice() {
58+
skip_if_not_root!("test_bindtodevice");
59+
60+
let fd = socket(AddressFamily::Inet, SockType::Stream, SockFlag::empty(), None).unwrap();
61+
62+
let val = getsockopt(fd, sockopt::BindToDevice).unwrap();
63+
setsockopt(fd, sockopt::BindToDevice, &val).unwrap();
64+
65+
assert_eq!(
66+
getsockopt(fd, sockopt::BindToDevice).unwrap(),
67+
val
68+
);
69+
}

0 commit comments

Comments
 (0)