From 44206c8a75c2362e00abd895a4a0c3b861ad6e2c Mon Sep 17 00:00:00 2001 From: pdw <> Date: Tue, 3 May 2005 20:14:53 +0000 Subject: [PATCH] Patch to get hardware address on FreeBSD and OpenBSD from Nicolas Bernard Here is a patch which uses sysctl to get the hardware address. I tried it on FreeBSD 5.3 and OpenBSD 3.5. Note that I don't know how this code work on an non-ethernet interface (tried on some pseudo-interface and get an all-0 address, but...). I left the code in the get_addrs_ioctl fct despite the fact it uses sysctl because it was simpler. Oh yes, I used gotos, I found them more readable in this case than deeply imbricated ifs. --- addrs_ioctl.c | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/addrs_ioctl.c b/addrs_ioctl.c index ad7c631..ff1a06a 100644 --- a/addrs_ioctl.c +++ b/addrs_ioctl.c @@ -18,6 +18,12 @@ #include #include +#if defined __FreeBSD__ || defined __OpenBSD__ +#include +#include +#include +#endif + #include "iftop.h" /* @@ -64,8 +70,42 @@ get_addrs_ioctl(char *interface, char if_hw_addr[], struct in_addr *if_ip_addr) memcpy(if_hw_addr, ifr.ifr_hwaddr.sa_data, 6); got_hw_addr = 1; } +#else +#if defined __FreeBSD__ || defined __OpenBSD__ + { + int sysctlparam[6] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST, 0}; + int needed = 0; + char *buf = NULL; + struct if_msghdr *msghdr = NULL; + sysctlparam[5] = if_nametoindex(interface); + if (sysctlparam[5] == 0) { + fprintf(stderr, "Error getting hardware address for interface: %s\n", interface); + goto ENDHWADDR; + } + if (sysctl(sysctlparam, 6, NULL, &needed, NULL, 0) < 0) { + fprintf(stderr, "Error getting hardware address for interface: %s\n", interface); + goto ENDHWADDR; + } + if ((buf = malloc(needed)) == NULL) { + fprintf(stderr, "Error getting hardware address for interface: %s\n", interface); + goto ENDHWADDR; + } + if (sysctl(sysctlparam, 6, buf, &needed, NULL, 0) < 0) { + fprintf(stderr, "Error getting hardware address for interface: %s\n", interface); + free(buf); + goto ENDHWADDR; + } + msghdr = (struct if_msghdr *) buf; + memcpy(if_hw_addr, LLADDR((struct sockaddr_dl *)(buf + sizeof(struct if_msghdr) - sizeof(struct if_data) + sizeof(struct if_data))), 6); + free(buf); + got_hw_addr = 1; + + ENDHWADDR: + 1; /* compiler whines if there is a label at the end of a block...*/ + } #else fprintf(stderr, "Cannot obtain hardware address on this platform\n"); +#endif #endif /* Get the IP address of the interface */