blob: f0eda37c063d5c06591fe829088e840a69a47899 [file] [log] [blame]
#include <inttypes.h>
#include <net/ethernet.h>
#include <stdio.h>
#define ETH_STRLEN (ETH_ALEN * 3)
#define HEX_OUT "%02" PRIx8
#define ETH_OUT \
HEX_OUT ":" HEX_OUT ":" HEX_OUT ":" HEX_OUT ":" HEX_OUT ":" HEX_OUT
#define HEX_IN "%2" SCNx8
#define ETH_IN HEX_IN ":" HEX_IN ":" HEX_IN ":" HEX_IN ":" HEX_IN ":" HEX_IN
int to_ether_addr(const char* str, struct ether_addr* ret)
{
char sentinel;
return sscanf(str, ETH_IN "%c", &ret->ether_addr_octet[0],
&ret->ether_addr_octet[1], &ret->ether_addr_octet[2],
&ret->ether_addr_octet[3], &ret->ether_addr_octet[4],
&ret->ether_addr_octet[5], &sentinel) != ETH_ALEN;
}
void from_ether_addr(const struct ether_addr* addr, char* ret)
{
sprintf(ret, ETH_OUT, addr->ether_addr_octet[0], addr->ether_addr_octet[1],
addr->ether_addr_octet[2], addr->ether_addr_octet[3],
addr->ether_addr_octet[4], addr->ether_addr_octet[5]);
}
int main(int argc, char* argv[])
{
if (argc < 1)
{
return 1;
}
if (argc != 2)
{
fprintf(stderr, "Usage: %s <mac address>\n", argv[0]);
return 1;
}
struct ether_addr addr;
if (to_ether_addr(argv[1], &addr) != 0)
{
fprintf(stderr, "Invalid MAC Address: %s\n", argv[1]);
return 2;
}
char str[ETH_STRLEN];
from_ether_addr(&addr, str);
printf("%s\n", str);
return 0;
}