udev-builtin-net_id.c revision 0035597a30d120f70df2dd7da3d6128fb8ba6051
/***
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/>.
***/
/*
* prefixes:
* en -- ethernet
* wl -- wlan
* ww -- wwan
*
* types:
* o<index> -- on-board device index
* s<slot>f<function> -- hotplug slot number
* x<MAC> -- MAC address
*
* example:
* ID_NET_NAME_ONBOARD=eno1
* ID_NET_NAME_SLOT=ens1f0
* ID_NET_NAME_MAC=enxf0def180d479
* ID_NET_NAME_PATH=enp19s0f0
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include "udev.h"
/* retrieve on-board index number and label from firmware */
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;
}
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;
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) {
}
out:
return err;
}
struct udev_device *d;
/* skip other buses than direct PCI parents */
d = udev_device_get_parent(dev);
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;
/* add IEEE Organizationally Unique Identifier */
}
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",
};