Как из C программы узнать MAC-адрес машини на которой она запущена?
>Как из C программы узнать MAC-адрес машини на которой она запущена?Для Линуха я в свое время делал так:
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <net/route.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>#define MAX_NUM_IFREQ 512
#include <string>
#include <iostream>using namespace std;
int getmac(string name, unsigned char * mac_id);
int getmac(string name, unsigned char * mac_id)
{
struct ifconf Ifc;
struct ifreq IfcBuf[MAX_NUM_IFREQ];
struct ifreq *pIfr;
int num_ifreq;
int i;
int fd;
struct sockaddr_in addrtmp;Ifc.ifc_len = sizeof(IfcBuf);
Ifc.ifc_buf = (char *) IfcBuf;if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
{
perror("getmac::socket(): ");
return 0;
}if ( ioctl(fd, SIOCGIFCONF, &Ifc) < 0)
{
perror("getmac::ioctl SIOCGIFCONF: ");
close(fd);
return 0;
}
num_ifreq = Ifc.ifc_len / sizeof(struct ifreq);
for ( pIfr = Ifc.ifc_req, i = 0 ; i < num_ifreq; pIfr++, i++ )
{
// Нас интересуют только инет-интерфейсы
if (pIfr->ifr_addr.sa_family != AF_INET) continue;
// Нас интересует только интерфейс с именем name
if (name!=pIfr->ifr_name) continue;if ( ioctl(fd,SIOCGIFHWADDR, pIfr) < 0)
{
perror("getmac::Skip ioctl SIOCGIFHWADDR, error: ");
close(fd);
return 0;
}
memcpy(mac_id,(unsigned char *)&(pIfr->ifr_hwaddr.sa_data),sizeof(struct sockaddr));
close(fd);
return 1;
}
close(fd);
return 0;
}int main(int argc, char ** argv)
{
unsigned char mac[6] = {0};
if (!getmac("eth0", mac))
cerr << "Cannot get mac address for eth0!" << endl;
else
{
cout << "All is OK!" << endl;
printf("MAC = %02X:%02X:%02X:%02X:%02X:%02X\n", \
mac[0],mac[1],mac[2],mac[3],mac[4],mac[5]);
}
return 0;
}Думаю, общий смысл понятен, модифицировать под свои нужды не составит труда...
Спасибо, большое!:)
>>Как из C программы узнать MAC-адрес машини на которой она запущена?
>
>Для Линуха я в свое время делал так:
>
>#include <sys/param.h>
>#include <sys/socket.h>
>#include <sys/ioctl.h>
>#include <net/if.h>
>#include <net/route.h>
>#include <netinet/in.h>
>#include <arpa/inet.h>
>#include <netdb.h>
>
>#include <unistd.h>
>#include <stdio.h>
>#include <errno.h>
>#include <stdlib.h>
>#include <string.h>
>
>#define MAX_NUM_IFREQ 512
>
>#include <string>
>#include <iostream>
>
>using namespace std;
>
>int getmac(string name, unsigned char * mac_id);
>
>int getmac(string name, unsigned char * mac_id)
>{
> struct ifconf
>Ifc;
> struct ifreq
> IfcBuf[MAX_NUM_IFREQ];
> struct ifreq
> *pIfr;
> int num_ifreq;
> int i;
> int fd;
> struct sockaddr_in addrtmp;
>
> Ifc.ifc_len = sizeof(IfcBuf);
> Ifc.ifc_buf = (char *) IfcBuf;
>
> if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
>
> {
> perror("getmac::socket(): ");
> return 0;
> }
>
> if ( ioctl(fd, SIOCGIFCONF, &Ifc) < 0)
> {
> perror("getmac::ioctl SIOCGIFCONF: ");
> close(fd);
> return 0;
> }
> num_ifreq = Ifc.ifc_len / sizeof(struct ifreq);
> for ( pIfr = Ifc.ifc_req, i = 0
>; i < num_ifreq; pIfr++, i++ )
> {
> // Нас интересуют только инет-интерфейсы
> if (pIfr->ifr_addr.sa_family != AF_INET) continue;
> // Нас интересует только интерфейс с именем
>name
> if (name!=pIfr->ifr_name) continue;
>
> if ( ioctl(fd,SIOCGIFHWADDR, pIfr) < 0)
> {
> perror("getmac::Skip ioctl SIOCGIFHWADDR, error: ");
> close(fd);
> return 0;
> }
> memcpy(mac_id,(unsigned char *)&(pIfr->ifr_hwaddr.sa_data),sizeof(struct sockaddr));
> close(fd);
> return 1;
> }
> close(fd);
> return 0;
>}
>
>int main(int argc, char ** argv)
>{
> unsigned char mac[6] = {0};
> if (!getmac("eth0", mac))
> cerr << "Cannot get mac address for eth0!" << endl;
>
> else
> {
> cout << "All is OK!" << endl;
> printf("MAC = %02X:%02X:%02X:%02X:%02X:%02X\n", \
> mac[0],mac[1],mac[2],mac[3],mac[4],mac[5]);
> }
> return 0;
>}
>
>Думаю, общий смысл понятен, модифицировать под свои нужды не составит труда...