From 472780d8b1ec3f3f4ff78eb21a013136e5aa1cfe Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Sun, 2 Dec 2012 02:00:57 +0100 Subject: [PATCH] udev: hwdb - fix OUI lookup --- src/udev/udev-builtin-net_id.c | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/src/udev/udev-builtin-net_id.c b/src/udev/udev-builtin-net_id.c index bc6ca212d..fd84e6e24 100644 --- a/src/udev/udev-builtin-net_id.c +++ b/src/udev/udev-builtin-net_id.c @@ -18,18 +18,27 @@ ***/ /* - * prefixes: + * predictable network interface device names based on: + * - firmware/bios-provided index numbers for on-board devices + * - firmware-provided pci-express hotplug slot index number + * - physical/geographical location of the hardware + * - the interface's MAC address + * + * two character prefixes based on the type of interface: * en -- ethernet * wl -- wlan * ww -- wwan * - * types: - * o -- on-board device index - * s[f] -- hotplug slot number + * type of names: + * o -- on-board device index number + * s[f] -- hotplug slot index number * x -- MAC address - * ps[f] -- PCI/physical location + * ps[f] -- PCI geographical location + * + * All multi-function devices will carry the [f] number in the + * device name, including the function 0 device. * - * example: + * examples: * ID_NET_NAME_ONBOARD=eno1 * ID_NET_NAME_SLOT=ens1 * ID_NET_NAME_SLOT=ens2f0 @@ -82,6 +91,7 @@ static int dev_pci_onboard(struct udev_device *dev, struct udev_device *parent, return 0; } +/* read the 256 bytes PCI configuration space to check for multi-function */ static bool is_pci_singlefunction(struct udev_device *dev) { char filename[256]; FILE *f; @@ -215,8 +225,10 @@ static int dev_mac(struct udev_device *dev, const char *prefix, bool test) { return -EINVAL; /* add IEEE Organizationally Unique Identifier */ - snprintf(str, sizeof(str), "OUI:%X%X%X", a1, a2, a3); - udev_builtin_hwdb_lookup(dev, str, test); + if (a1 + a2 + a3 > 0) { + snprintf(str, sizeof(str), "OUI:%02X%02X%02X", a1, a2, a3); + udev_builtin_hwdb_lookup(dev, str, test); + } snprintf(str, sizeof(str), "%sx%02x%02x%02x%02x%02x%02x", prefix, a1, a2, a3, a4, a5, a6); return udev_builtin_add_property(dev, test, "ID_NET_NAME_MAC", str); -- 2.30.2