Skip to content

Commit 5d7d9f4

Browse files
pronebirddlon
authored andcommitted
Bump nix
1 parent c0e908e commit 5d7d9f4

File tree

4 files changed

+26
-25
lines changed

4 files changed

+26
-25
lines changed

Cargo.lock

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

talpid-routing/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ netlink-packet-route = { version = "0.13", features = ["rich_nlas"] }
2828
netlink-sys = "0.8.3"
2929

3030
[target.'cfg(target_os = "macos")'.dependencies]
31-
# TODO: The PF socket type isn't released yet
32-
nix = { git = "https://github.com/nix-rust/nix", rev = "b13b7d18e0d2f4a8c05e41576c7ebf26d6dbfb28", features = ["socket"] }
31+
nix = { version = "0.28", features = ["socket", "fs", "net"] }
3332
libc = "0.2"
3433
bitflags = "2"
3534
system-configuration = "0.5.1"

talpid-routing/src/unix/macos/interface.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ fn is_active_interface(interface_name: &str, family: Family) -> io::Result<bool>
307307
if let Some(addr) = addr.address {
308308
// Check if family matches; ignore if link-local address
309309
match family {
310-
Family::V4 => matches!(addr.as_sockaddr_in(), Some(addr_in) if is_routable_v4(&Ipv4Addr::from(addr_in.ip()))),
310+
Family::V4 => matches!(addr.as_sockaddr_in(), Some(addr_in) if is_routable_v4(&addr_in.ip())),
311311
Family::V6 => {
312312
matches!(addr.as_sockaddr_in6(), Some(addr_in) if is_routable_v6(&addr_in.ip()))
313313
}

talpid-routing/src/unix/macos/routing_socket.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use std::{
22
collections::VecDeque,
33
mem::size_of,
4-
os::unix::prelude::{FromRawFd, RawFd},
54
pin::Pin,
65
task::{ready, Context, Poll},
76
time::Duration,
@@ -14,6 +13,7 @@ use nix::{
1413
use std::{
1514
fs::File,
1615
io::{self, Read, Write},
16+
os::fd::{AsRawFd, RawFd},
1717
};
1818

1919
use super::data::{rt_msghdr_short, MessageType, RouteMessage};
@@ -139,9 +139,11 @@ struct RoutingSocketInner {
139139
impl RoutingSocketInner {
140140
fn new() -> io::Result<Self> {
141141
let fd = socket(AddressFamily::Route, SockType::Raw, SockFlag::empty(), None)?;
142-
let _ = fcntl::fcntl(fd, fcntl::FcntlArg::F_SETFL(fcntl::OFlag::O_NONBLOCK))?;
143-
// SAFETY: File handle is valid here
144-
let socket = unsafe { File::from_raw_fd(fd) };
142+
let _ = fcntl::fcntl(
143+
fd.as_raw_fd(),
144+
fcntl::FcntlArg::F_SETFL(fcntl::OFlag::O_NONBLOCK),
145+
)?;
146+
let socket = File::from(fd);
145147
Ok(Self {
146148
socket: AsyncFd::new(socket)?,
147149
})
@@ -158,7 +160,7 @@ impl RoutingSocketInner {
158160
}
159161
}
160162

161-
impl std::os::unix::prelude::AsRawFd for RoutingSocketInner {
163+
impl AsRawFd for RoutingSocketInner {
162164
fn as_raw_fd(&self) -> RawFd {
163165
self.socket.as_raw_fd()
164166
}

0 commit comments

Comments
 (0)