|
@@ -1,8 +1,10 @@
|
|
|
use std::io;
|
|
|
+use std::mem;
|
|
|
use std::os::unix::io::{AsRawFd, RawFd};
|
|
|
|
|
|
use libc;
|
|
|
|
|
|
+use crate::wire::ETHERNET_HEADER_LEN;
|
|
|
use super::{ifreq, ifreq_for};
|
|
|
|
|
|
/// set interface
|
|
@@ -14,9 +16,19 @@ const BIOCGBLEN: libc::c_ulong = 0x40044266;
|
|
|
/// set immediate/nonblocking read
|
|
|
#[cfg(any(target_os = "macos", target_os = "openbsd"))]
|
|
|
const BIOCIMMEDIATE: libc::c_ulong = 0x80044270;
|
|
|
-// TODO: check if this is same for OSes other than macos
|
|
|
+/// set bpf_hdr struct size
|
|
|
+#[cfg(target_os = "macos")]
|
|
|
+const SIZEOF_BPF_HDR: usize = 18;
|
|
|
+/// set bpf_hdr struct size
|
|
|
+#[cfg(target_os = "openbsd")]
|
|
|
+const SIZEOF_BPF_HDR: usize = 24;
|
|
|
+/// The actual header length may be larger than the bpf_hdr struct due to aligning
|
|
|
+/// see https://github.com/openbsd/src/blob/37ecb4d066e5566411cc16b362d3960c93b1d0be/sys/net/bpf.c#L1649
|
|
|
+/// and https://github.com/apple/darwin-xnu/blob/8f02f2a044b9bb1ad951987ef5bab20ec9486310/bsd/net/bpf.c#L3580
|
|
|
#[cfg(any(target_os = "macos", target_os = "openbsd"))]
|
|
|
-const BPF_HDRLEN: usize = 18;
|
|
|
+const BPF_HDRLEN: usize = (((SIZEOF_BPF_HDR + ETHERNET_HEADER_LEN) + mem::align_of::<u32>() - 1)
|
|
|
+ & !(mem::align_of::<u32>() - 1))
|
|
|
+ - ETHERNET_HEADER_LEN;
|
|
|
|
|
|
macro_rules! try_ioctl {
|
|
|
($fd:expr,$cmd:expr,$req:expr) => {
|
|
@@ -145,3 +157,20 @@ impl Drop for BpfDevice {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+#[cfg(test)]
|
|
|
+mod test {
|
|
|
+ use super::*;
|
|
|
+
|
|
|
+ #[test]
|
|
|
+ #[cfg(target_os = "macos")]
|
|
|
+ fn test_aligned_bpf_hdr_len() {
|
|
|
+ assert_eq!(18, BPF_HDRLEN);
|
|
|
+ }
|
|
|
+
|
|
|
+ #[test]
|
|
|
+ #[cfg(target_os = "openbsd")]
|
|
|
+ fn test_aligned_bpf_hdr_len() {
|
|
|
+ assert_eq!(26, BPF_HDRLEN);
|
|
|
+ }
|
|
|
+}
|