X-Git-Url: https://code.octet-stream.net/netwatcher/blobdiff_plain/487dfaa43e0370e63157dc302d55543cff2949cf..f5cae732095b884b50921e13827ef6d7375c7c3b:/src/watch_linux.rs?ds=sidebyside diff --git a/src/watch_linux.rs b/src/watch_linux.rs index c38be37..e49d629 100644 --- a/src/watch_linux.rs +++ b/src/watch_linux.rs @@ -1,5 +1,6 @@ use std::os::fd::AsRawFd; use std::os::fd::OwnedFd; +use std::sync::mpsc; use nix::libc::poll; use nix::libc::pollfd; @@ -24,28 +25,40 @@ const RTMGRP_IPV6_IFADDR: u32 = 0x20; const RTMGRP_LINK: u32 = 0x01; pub(crate) struct WatchHandle { - // Dropping will close the fd which will be detected by poll - _pipefd: OwnedFd, + // Close on drop, which will be detected by poll in background thread + pipefd: Option, + + // Detect when thread has completed + complete: Option>, +} + +impl Drop for WatchHandle { + fn drop(&mut self) { + drop(self.pipefd.take()); + let _ = self.complete.take().unwrap().recv(); + } } pub(crate) fn watch_interfaces( callback: F, ) -> Result { - let pipefd = start_watcher_thread(callback)?; - Ok(WatchHandle { _pipefd: pipefd }) + let (pipefd, complete) = start_watcher_thread(callback)?; + Ok(WatchHandle { + pipefd: Some(pipefd), + complete: Some(complete), + }) } fn start_watcher_thread( mut callback: F, -) -> Result { +) -> Result<(OwnedFd, mpsc::Receiver<()>), Error> { let sockfd = socket( AddressFamily::Netlink, SockType::Raw, - SockFlag::empty(), + SockFlag::SOCK_NONBLOCK, Some(SockProtocol::NetlinkRoute), ) .map_err(|e| Error::CreateSocket(e.to_string()))?; - sockfd.set_nonblocking(true); let sa_nl = NetlinkAddr::new( 0, (RTMGRP_LINK | RTMGRP_IPV4_IFADDR | RTMGRP_IPV6_IFADDR) as u32, @@ -71,6 +84,8 @@ fn start_watcher_thread( // looks like we're going to have trouble listing interfaces. handle_update(crate::list::list_interfaces()?); + let (complete_tx, complete_rx) = mpsc::channel(); + std::thread::spawn(move || { let mut buf = [0u8; 4096]; @@ -104,7 +119,9 @@ fn start_watcher_thread( break; } } + + drop(complete_tx); }); - Ok(pipe_wr) + Ok((pipe_wr, complete_rx)) }