]> code.octet-stream.net Git - netwatcher/commitdiff
Groundwork for watching interface changes on Linux
authorThomas Karpiniec <tom.karpiniec@outlook.com>
Sat, 8 Jun 2024 15:59:24 +0000 (01:59 +1000)
committerThomas Karpiniec <tom.karpiniec@outlook.com>
Sat, 8 Jun 2024 15:59:24 +0000 (01:59 +1000)
src/list_unix.rs
src/watch_linux.rs

index a6b2bd3bec616d4237f86801e92b96c13cbcee47..45ffc6361769578945558a28b6a736463a2b77ce 100644 (file)
@@ -1,11 +1,9 @@
 use std::fmt::Write;
 use std::{collections::HashMap, net::IpAddr};
 
 use std::fmt::Write;
 use std::{collections::HashMap, net::IpAddr};
 
-use block2::Block;
-use nix::libc::c_long;
 use nix::{ifaddrs::getifaddrs, net::if_::if_nametoindex};
 
 use nix::{ifaddrs::getifaddrs, net::if_::if_nametoindex};
 
-use crate::{Error, IfIndex, Interface};
+use crate::{Error, Interface, List};
 
 struct CandidateInterface {
     name: String,
 
 struct CandidateInterface {
     name: String,
@@ -14,7 +12,7 @@ struct CandidateInterface {
     ips: Vec<IpAddr>,
 }
 
     ips: Vec<IpAddr>,
 }
 
-pub(crate) fn list_interfaces() -> Result<HashMap<IfIndex, Interface>, Error> {
+pub(crate) fn list_interfaces() -> Result<List, Error> {
     let addrs = getifaddrs().map_err(|_| Error::Internal)?;
     let mut candidates = HashMap::new();
 
     let addrs = getifaddrs().map_err(|_| Error::Internal)?;
     let mut candidates = HashMap::new();
 
@@ -59,7 +57,7 @@ pub(crate) fn list_interfaces() -> Result<HashMap<IfIndex, Interface>, Error> {
             })
         })
         .collect();
             })
         })
         .collect();
-    Ok(ifs)
+    Ok(List(ifs))
 }
 
 fn format_mac(bytes: &[u8]) -> Result<String, Error> {
 }
 
 fn format_mac(bytes: &[u8]) -> Result<String, Error> {
index a987919360fc789c79a3478e19da048d9c47c963..4e4049b8856ba87dece34d25677f1116c49ae7a5 100644 (file)
@@ -1,13 +1,57 @@
+use std::os::fd::AsRawFd;
+use std::os::fd::OwnedFd;
+
+use nix::libc::nlmsghdr;
+use nix::libc::RTMGRP_IPV4_IFADDR;
+use nix::libc::RTMGRP_IPV6_IFADDR;
+use nix::libc::RTMGRP_LINK;
+use nix::sys::socket::bind;
+use nix::sys::socket::recv;
+use nix::sys::socket::socket;
+use nix::sys::socket::AddressFamily;
+use nix::sys::socket::MsgFlags;
+use nix::sys::socket::NetlinkAddr;
+use nix::sys::socket::SockFlag;
+use nix::sys::socket::SockProtocol;
+use nix::sys::socket::SockType;
+
 use crate::Error;
 use crate::Update;
 
 use crate::Error;
 use crate::Update;
 
-pub(crate) struct WatchHandle;
+pub(crate) struct WatchHandle {
+    // PROBLEM: close() doesn't cancel recv() for a netlink socket
+    sockfd: OwnedFd,
+}
 
 pub(crate) fn watch_interfaces<F: FnMut(Update) + 'static>(
     callback: F,
 ) -> Result<WatchHandle, Error> {
 
 pub(crate) fn watch_interfaces<F: FnMut(Update) + 'static>(
     callback: F,
 ) -> Result<WatchHandle, Error> {
-    // stop current worker thread
-    // post this into a thread that will use it
-    drop(callback);
-    Ok(WatchHandle)
+    let sockfd = start_watcher_thread(callback)?;
+    Ok(WatchHandle { sockfd })
+}
+
+fn start_watcher_thread<F: FnMut(Update) + 'static>(callback: F) -> Result<OwnedFd, Error> {
+    let sockfd = socket(AddressFamily::Netlink, SockType::Raw, SockFlag::empty(), Some(SockProtocol::NetlinkRoute))
+        .map_err(|_| Error::Internal)?; // TODO: proper errors
+    let sa_nl = NetlinkAddr::new(0, (RTMGRP_LINK | RTMGRP_IPV4_IFADDR | RTMGRP_IPV6_IFADDR) as u32);
+    bind(sockfd.as_raw_fd(), &sa_nl).map_err(|_| Error::Internal)?; // TODO: proper errors
+    let fd = sockfd.as_raw_fd();
+    println!("netlink socket on fd {}", fd);
+
+    std::thread::spawn(move || {
+        println!("watch thread running");
+        let mut buf = [0u8; 4096];
+        // recvmsg?
+        while let Ok(n) = recv(fd, &mut buf, MsgFlags::empty()) {
+            println!("something on the netlink socket: {} bytes", n);
+            let nlmsg_ptr = &buf as *const _ as *const nlmsghdr;
+            let nlmsg = unsafe { &*nlmsg_ptr };
+            // Right conventionally there's some trick here involving macros NLMSG_OK
+            // I can presumably do this using NetlinkGeneric too
+            // It's unclear whether this is worse or not - need to know what those macros do
+        }
+        println!("netlink recv thread terminating");
+    });
+    
+    Ok(sockfd)
 }
 }