summaryrefslogtreecommitdiff
path: root/addrs_ioctl.c
diff options
context:
space:
mode:
authorpdw <>2005-05-03 20:14:53 +0000
committerpdw <>2005-05-03 20:14:53 +0000
commit44206c8a75c2362e00abd895a4a0c3b861ad6e2c (patch)
treeace2ba4911806bc547fde69ba271a05eaba6e5af /addrs_ioctl.c
parent65726d562a2b2b42d68e1b76733f51d20945b964 (diff)
downloadiftop-44206c8a75c2362e00abd895a4a0c3b861ad6e2c.zip
Patch to get hardware address on FreeBSD and OpenBSD from Nicolas Bernard
<n.bernard@worldonline.fr> 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.
Diffstat (limited to 'addrs_ioctl.c')
-rw-r--r--addrs_ioctl.c40
1 files changed, 40 insertions, 0 deletions
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 <net/if.h>
#include <netinet/in.h>
+#if defined __FreeBSD__ || defined __OpenBSD__
+#include <sys/param.h>
+#include <sys/sysctl.h>
+#include <net/if_dl.h>
+#endif
+
#include "iftop.h"
/*
@@ -65,8 +71,42 @@ get_addrs_ioctl(char *interface, char if_hw_addr[], struct in_addr *if_ip_addr)
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 */
#ifdef SIOCGIFADDR