如何得到mac地址
程序员文章站
2022-04-02 09:56:45
如何得到mac地址
在net driver中一般通过device_get_mac_address来从acpi或dts中拿到mac地址,如下例子所示:
static void h...
如何得到mac地址
在net driver中一般通过device_get_mac_address来从acpi或dts中拿到mac地址,如下例子所示:static void hns_init_mac_addr(struct net_device *ndev)
{
struct hns_nic_priv *priv = netdev_priv(ndev);
if (!device_get_mac_address(priv->dev, ndev->dev_addr, ETH_ALEN)) {
eth_hw_addr_random(ndev);
dev_warn(priv->dev, "No valid mac, use random mac %pM",
ndev->dev_addr);
}
}
void *device_get_mac_address(struct device *dev, char *addr, int alen)
{
char *res;
res = device_get_mac_addr(dev, "mac-address", addr, alen);
if (res)
return res;
res = device_get_mac_addr(dev, "local-mac-address", addr, alen);
if (res)
return res;
return device_get_mac_addr(dev, "address", addr, alen);
}
在device_get_mac_address 中一次检查mac-address/local-mac-address/address 这三个字串。
static void *device_get_mac_addr(struct device *dev,
const char *name, char *addr,
int alen)
{
int ret = device_property_read_u8_array(dev, name, addr, alen);
if (ret == 0 && alen == ETH_ALEN && is_valid_ether_addr(addr))
return addr;
return NULL;
}
在device_get_mac_addr 最终通过device_property_read_u8_array得到mac地址,这样函数是ACPI 和 DT 都可以使用的,前面的文章有分析过,会调用is_valid_ether_addr 检查mac地址是否合法其中有两种mac地址是非法的00:00:00:00:00:00 和 FF:FF:FF:FF:FF:FF
如果device_get_mac_address 返回failed的话,则调用eth_hw_addr_random 来随机得到一组mac值
static inline void eth_hw_addr_random(struct net_device *dev)
{
dev->addr_assign_type = NET_ADDR_RANDOM;
eth_random_addr(dev->dev_addr);
}
eth_hw_addr_random 调用eth_random_addr 得到随机值
static inline void eth_random_addr(u8 *addr)
{
get_random_bytes(addr, ETH_ALEN);
addr[0] &= 0xfe; /* clear multicast bit */
addr[0] |= 0x02; /* set local assignment bit (IEEE802) */
}
最终调用get_random_bytes 来得到随机数