这可能是一个愚蠢的问题,如果这里已经解决了,我深表歉意,但我已经搜索了很多,但运气不佳。我正在尝试在 C 中获取接口的硬件地址,并且正在使用 OS X (x86-64)。我知道如何获取它ifconfig
,但我希望我的程序能够为任何计算机自动获取它,至少是 OS X 计算机。我发现另一个发布此链接的线程几乎可以满足我的要求(进行了一些修改),但我无法在其中创建iokit
函数链接ld
(我的编译器是gcc
)。我尝试将标志添加到-lIOKit
命令行,但仍然遇到相同的链接错误。这是我的代码的链接:header和source。-framework IOKit
gcc
问问题
4594 次
1 回答
7
这个小程序无需更改即可在 OSX 上运行。
代码:(来自 freebsd 列表的 Alecs King 的学分)
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int mib[6], len;
char *buf;
unsigned char *ptr;
struct if_msghdr *ifm;
struct sockaddr_dl *sdl;
if (argc != 2) {
fprintf(stderr, "Usage: getmac <interface>\n");
return 1;
}
mib[0] = CTL_NET;
mib[1] = AF_ROUTE;
mib[2] = 0;
mib[3] = AF_LINK;
mib[4] = NET_RT_IFLIST;
if ((mib[5] = if_nametoindex(argv[1])) == 0) {
perror("if_nametoindex error");
exit(2);
}
if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) {
perror("sysctl 1 error");
exit(3);
}
if ((buf = malloc(len)) == NULL) {
perror("malloc error");
exit(4);
}
if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) {
perror("sysctl 2 error");
exit(5);
}
ifm = (struct if_msghdr *)buf;
sdl = (struct sockaddr_dl *)(ifm + 1);
ptr = (unsigned char *)LLADDR(sdl);
printf("%02x:%02x:%02x:%02x:%02x:%02x\n", *ptr, *(ptr+1), *(ptr+2),
*(ptr+3), *(ptr+4), *(ptr+5));
return 0;
}
但是,您应该更改int len;
为size_t len;
于 2012-05-15T03:27:43.517 回答