MAC address from interface on OS X (C)

后端 未结 1 758
轻奢々
轻奢々 2020-12-19 06:48

This might be a stupid question and I apologize if it\'s already been addressed here, but I\'ve searched quite a bit without much luck. I\'m trying to get my interface\'s ha

相关标签:
1条回答
  • 2020-12-19 07:40

    This little program will work without changes on OSX.

    Code : (credits to Alecs King from freebsd list)

    #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;
    }
    

    You should, however, change int len; to size_t len;

    0 讨论(0)
提交回复
热议问题