udev-builtin-net_id.c revision 137661d87525a3c339afd2804e577532d58d3fbc
/***
This file is part of systemd.
Copyright 2012 Kay Sievers <kay@vrfy.org>
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
/*
* 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
*
* type of names:
* o<index> -- on-board device index number
* s<slot>[f<function>] -- hotplug slot index number
* x<MAC> -- MAC address
* p<bus>s<slot>[f<function>] -- PCI geographical location
*
* All multi-function devices will carry the [f<function>] number in the
* device name, including the function 0 device.
*
* examples:
* ID_NET_NAME_ONBOARD=eno1
* ID_NET_NAME_SLOT=ens1
* ID_NET_NAME_SLOT=ens2f0
* ID_NET_NAME_SLOT=ens2f1
* ID_NET_NAME_MAC=enxf0def180d479
* ID_NET_NAME_PATH=enp0s25
* ID_NET_NAME_PATH=enp19s3f0
* ID_NET_NAME_PATH=enp19s3f1
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <linux/pci_regs.h>
#include "udev.h"
/* retrieve on-board index number and label from firmware */
static int dev_pci_onboard(struct udev_device *dev, struct udev_device *parent, const char *prefix, bool test) {
const char *index;
int idx;
const char *label;
char s[16];
int err;
/* ACPI _DSM -- device specific method for naming a PCI or PCI Express device */
/* SMBIOS type 41 -- Onboard Devices Extended Information */
if (!index)
if (!index)
return -ENOENT;
if (idx <= 0)
return -EINVAL;
if (err < 0)
return err;
if (label) {
if (err < 0)
return err;
}
return 0;
}
/* read the 256 bytes PCI configuration space to check the multi-function bit */
char filename[256];
FILE *f;
char config[256];
bool single = false;
if (!f)
goto out;
goto out;
single = true;
out:
fclose(f);
return single;
}
static int dev_pci_slot(struct udev_device *dev, struct udev_device *parent, const char *prefix, bool test) {
unsigned int bus;
unsigned int slot;
unsigned int func;
char slots[256];
char str[256];
int hotplug_slot = 0;
int err = 0;
/* compose a name based on the raw kernel's PCI bus, slot numbers */
return -ENOENT;
else
if (err < 0)
return err;
/* ACPI _SUN -- slot user number */
if (!pci) {
goto out;
}
if (!dir) {
goto out;
}
int i;
char *rest;
char *address;
continue;
if (rest[0] != '\0')
continue;
if (i < 1)
continue;
/* match slot address with device by stripping the function */
hotplug_slot = i;
}
if (hotplug_slot > 0)
break;
}
if (hotplug_slot > 0) {
else
}
out:
return err;
}
struct udev_device *parent;
/* skip other buses than direct PCI parents */
return -ENOENT;
return 0;
}
const char *s;
unsigned int i;
char str[16];
/* check for NET_ADDR_PERM, skip random MAC addresses */
if (!s)
return EXIT_FAILURE;
if (i != 0)
return 0;
if (!s)
return -ENOENT;
return -EINVAL;
/* skip empty MAC addresses */
return -EINVAL;
/*
* IEEE Organizationally Unique Identifier vendor string
* skip commonly misused 00:00:00 (Xerox) prefix
*/
}
}
const char *s;
unsigned int i;
const char *devtype;
const char *prefix = "en";
/* handle only ARPHRD_ETHER devices */
if (!s)
return EXIT_FAILURE;
if (i != 1)
return 0;
if (devtype) {
prefix = "wl";
prefix = "ww";
}
return EXIT_SUCCESS;
}
const struct udev_builtin udev_builtin_net_id = {
.name = "net_id",
.cmd = builtin_net_id,
.help = "network device properties",
};