]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/udev/udev-builtin-net_id.c
udev: persistent naming - we cannot use virtio numbers as they are not stable
[thirdparty/systemd.git] / src / udev / udev-builtin-net_id.c
CommitLineData
a660c63c
KS
1/***
2 This file is part of systemd.
3
4 Copyright 2012 Kay Sievers <kay@vrfy.org>
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
d23965a6 20/*
ad37f393 21 * Predictable network interface device names based on:
472780d8
KS
22 * - firmware/bios-provided index numbers for on-board devices
23 * - firmware-provided pci-express hotplug slot index number
24 * - physical/geographical location of the hardware
25 * - the interface's MAC address
26 *
25da63b9
KS
27 * http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames
28 *
ad37f393 29 * Two character prefixes based on the type of interface:
0035597a 30 * en -- ethernet
e0d4a0ac 31 * sl -- serial line IP (slip)
0035597a
KS
32 * wl -- wlan
33 * ww -- wwan
d23965a6 34 *
ad37f393 35 * Type of names:
d4b687c9
KS
36 * b<number> -- BCMA bus core number
37 * ccw<name> -- CCW bus group name
1328f66a
KS
38 * o<index> -- on-board device index number
39 * s<slot>[f<function>][d<dev_id>] -- hotplug slot index number
40 * x<MAC> -- MAC address
214daa72
SM
41 * [P<domain>]p<bus>s<slot>[f<function>][d<dev_id>]
42 * -- PCI geographical location
43 * [P<domain>]p<bus>s<slot>[f<function>][u<port>][..][c<config>][i<interface>]
1328f66a 44 * -- USB port number chain
472780d8 45 *
ad37f393 46 * All multi-function PCI devices will carry the [f<function>] number in the
472780d8 47 * device name, including the function 0 device.
d23965a6 48 *
214daa72
SM
49 * When using PCI geography, The PCI domain is only prepended when it is not 0.
50 *
0d6ce923
KS
51 * For USB devices the full chain of port numbers of hubs is composed. If the
52 * name gets longer than the maximum number of 15 characters, the name is not
53 * exported.
54 * The usual USB configuration == 1 and interface == 0 values are suppressed.
ad37f393 55 *
decd634e 56 * PCI ethernet card with firmware index "1":
0035597a 57 * ID_NET_NAME_ONBOARD=eno1
f610d6de
KS
58 * ID_NET_NAME_ONBOARD_LABEL=Ethernet Port 1
59 *
ad37f393 60 * PCI ethernet card in hotplug slot with firmware index number:
f610d6de
KS
61 * /sys/devices/pci0000:00/0000:00:1c.3/0000:05:00.0/net/ens1
62 * ID_NET_NAME_MAC=enx000000000466
63 * ID_NET_NAME_PATH=enp5s0
de892aea 64 * ID_NET_NAME_SLOT=ens1
f610d6de 65 *
decd634e
KS
66 * PCI ethernet multi-function card with 2 ports:
67 * /sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0/net/enp2s0f0
68 * ID_NET_NAME_MAC=enx78e7d1ea46da
69 * ID_NET_NAME_PATH=enp2s0f0
70 * /sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.1/net/enp2s0f1
71 * ID_NET_NAME_MAC=enx78e7d1ea46dc
72 * ID_NET_NAME_PATH=enp2s0f1
73 *
f610d6de
KS
74 * PCI wlan card:
75 * /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlp3s0
76 * ID_NET_NAME_MAC=wlx0024d7e31130
77 * ID_NET_NAME_PATH=wlp3s0
78 *
79 * USB built-in 3G modem:
80 * /sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.6/net/wwp0s29u1u4i6
81 * ID_NET_NAME_MAC=wwx028037ec0200
82 * ID_NET_NAME_PATH=wwp0s29u1u4i6
83 *
84 * USB Android phone:
85 * /sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/net/enp0s29u1u2
86 * ID_NET_NAME_MAC=enxd626b3450fb5
87 * ID_NET_NAME_PATH=enp0s29u1u2
d23965a6
KS
88 */
89
a660c63c
KS
90#include <stdio.h>
91#include <stdlib.h>
92#include <stdarg.h>
93#include <unistd.h>
94#include <string.h>
95#include <errno.h>
02609440 96#include <net/if.h>
de892aea 97#include <linux/pci_regs.h>
a660c63c
KS
98
99#include "udev.h"
a5c32cff 100#include "fileio.h"
a660c63c 101
02609440
KS
102enum netname_type{
103 NET_UNDEF,
104 NET_PCI,
105 NET_USB,
984c4348 106 NET_BCMA,
e3d56334 107 NET_VIRTIO,
e0d4a0ac 108 NET_CCWGROUP,
02609440
KS
109};
110
111struct netnames {
112 enum netname_type type;
113
114 uint8_t mac[6];
115 bool mac_valid;
116
117 struct udev_device *pcidev;
118 char pci_slot[IFNAMSIZ];
119 char pci_path[IFNAMSIZ];
120 char pci_onboard[IFNAMSIZ];
121 const char *pci_onboard_label;
122
02609440 123 char usb_ports[IFNAMSIZ];
984c4348 124 char bcma_core[IFNAMSIZ];
d4b687c9 125 char ccw_group[IFNAMSIZ];
02609440
KS
126};
127
0035597a 128/* retrieve on-board index number and label from firmware */
02609440 129static int dev_pci_onboard(struct udev_device *dev, struct netnames *names) {
d23965a6 130 const char *index;
0035597a 131 int idx;
a660c63c 132
0035597a 133 /* ACPI _DSM -- device specific method for naming a PCI or PCI Express device */
02609440 134 index = udev_device_get_sysattr_value(names->pcidev, "acpi_index");
01d183dd
KS
135 /* SMBIOS type 41 -- Onboard Devices Extended Information */
136 if (!index)
02609440 137 index = udev_device_get_sysattr_value(names->pcidev, "index");
0035597a
KS
138 if (!index)
139 return -ENOENT;
140 idx = strtoul(index, NULL, 0);
141 if (idx <= 0)
142 return -EINVAL;
02609440 143 snprintf(names->pci_onboard, sizeof(names->pci_onboard), "o%d", idx);
d23965a6 144
02609440 145 names->pci_onboard_label = udev_device_get_sysattr_value(names->pcidev, "label");
0035597a
KS
146 return 0;
147}
d23965a6 148
137661d8 149/* read the 256 bytes PCI configuration space to check the multi-function bit */
1328f66a 150static bool is_pci_multifunction(struct udev_device *dev) {
de892aea 151 char filename[256];
3c123e08 152 FILE *f = NULL;
02609440 153 char config[64];
1328f66a 154 bool multi = false;
de892aea
KS
155
156 snprintf(filename, sizeof(filename), "%s/config", udev_device_get_syspath(dev));
157 f = fopen(filename, "re");
158 if (!f)
159 goto out;
160 if (fread(&config, sizeof(config), 1, f) != 1)
161 goto out;
162
163 /* bit 0-6 header type, bit 7 multi/single function device */
1328f66a
KS
164 if ((config[PCI_HEADER_TYPE] & 0x80) != 0)
165 multi = true;
de892aea 166out:
f168c273 167 if (f)
3c123e08 168 fclose(f);
1328f66a 169 return multi;
de892aea
KS
170}
171
02609440
KS
172static int dev_pci_slot(struct udev_device *dev, struct netnames *names) {
173 struct udev *udev = udev_device_get_udev(names->pcidev);
b5dd8148 174 unsigned domain, bus, slot, func, dev_id = 0;
1328f66a
KS
175 size_t l;
176 char *s;
177 const char *attr;
0035597a 178 struct udev_device *pci = NULL;
b5dd8148
ZJS
179 char slots[256], str[256];
180 _cleanup_closedir_ DIR *dir = NULL;
0035597a 181 struct dirent *dent;
b5dd8148 182 int hotplug_slot = 0, err = 0;
0035597a 183
b5dd8148 184 if (sscanf(udev_device_get_sysname(names->pcidev), "%x:%x:%x.%u", &domain, &bus, &slot, &func) != 4)
0035597a 185 return -ENOENT;
1328f66a
KS
186
187 /* kernel provided multi-device index */
188 attr = udev_device_get_sysattr_value(dev, "dev_id");
189 if (attr)
190 dev_id = strtol(attr, NULL, 16);
191
192 /* compose a name based on the raw kernel's PCI bus, slot numbers */
193 s = names->pci_path;
214daa72
SM
194 l = sizeof(names->pci_path);
195 if (domain > 0)
196 l = strpcpyf(&s, l, "P%d", domain);
197 l = strpcpyf(&s, l, "p%ds%d", bus, slot);
1328f66a 198 if (func > 0 || is_pci_multifunction(names->pcidev))
d5a89d7d 199 l = strpcpyf(&s, l, "f%d", func);
1328f66a 200 if (dev_id > 0)
d5a89d7d 201 l = strpcpyf(&s, l, "d%d", dev_id);
1328f66a
KS
202 if (l == 0)
203 names->pci_path[0] = '\0';
d23965a6 204
0035597a
KS
205 /* ACPI _SUN -- slot user number */
206 pci = udev_device_new_from_subsystem_sysname(udev, "subsystem", "pci");
207 if (!pci) {
208 err = -ENOENT;
209 goto out;
210 }
211 snprintf(slots, sizeof(slots), "%s/slots", udev_device_get_syspath(pci));
212 dir = opendir(slots);
213 if (!dir) {
214 err = -errno;
215 goto out;
d23965a6
KS
216 }
217
0035597a
KS
218 for (dent = readdir(dir); dent != NULL; dent = readdir(dir)) {
219 int i;
220 char *rest;
221 char *address;
222
223 if (dent->d_name[0] == '.')
224 continue;
225 i = strtol(dent->d_name, &rest, 10);
226 if (rest[0] != '\0')
227 continue;
228 if (i < 1)
229 continue;
230 snprintf(str, sizeof(str), "%s/%s/address", slots, dent->d_name);
231 if (read_one_line_file(str, &address) >= 0) {
232 /* match slot address with device by stripping the function */
641906e9 233 if (strneq(address, udev_device_get_sysname(names->pcidev), strlen(address)))
0035597a
KS
234 hotplug_slot = i;
235 free(address);
236 }
237
238 if (hotplug_slot > 0)
239 break;
240 }
d23965a6 241
0035597a 242 if (hotplug_slot > 0) {
1328f66a 243 s = names->pci_slot;
214daa72
SM
244 l = sizeof(names->pci_slot);
245 if (domain > 0)
246 l = strpcpyf(&s, l, "P%d", domain);
247 l = strpcpyf(&s, l, "s%d", hotplug_slot);
1328f66a 248 if (func > 0 || is_pci_multifunction(names->pcidev))
d5a89d7d 249 l = strpcpyf(&s, l, "f%d", func);
1328f66a 250 if (dev_id > 0)
d5a89d7d 251 l = strpcpyf(&s, l, "d%d", dev_id);
1328f66a
KS
252 if (l == 0)
253 names->pci_path[0] = '\0';
d23965a6 254 }
0035597a
KS
255out:
256 udev_device_unref(pci);
257 return err;
258}
259
02609440 260static int names_pci(struct udev_device *dev, struct netnames *names) {
5b8180d3 261 struct udev_device *parent;
0035597a 262
5b8180d3 263 parent = udev_device_get_parent(dev);
02609440
KS
264 if (!parent)
265 return -ENOENT;
266 /* check if our direct parent is a PCI device with no other bus in-between */
bb26309d 267 if (streq_ptr("pci", udev_device_get_subsystem(parent))) {
02609440
KS
268 names->type = NET_PCI;
269 names->pcidev = parent;
270 } else {
271 names->pcidev = udev_device_get_parent_with_subsystem_devtype(dev, "pci", NULL);
272 if (!names->pcidev)
273 return -ENOENT;
274 }
275 dev_pci_onboard(dev, names);
276 dev_pci_slot(dev, names);
277 return 0;
278}
279
280static int names_usb(struct udev_device *dev, struct netnames *names) {
984c4348 281 struct udev_device *usbdev;
02609440
KS
282 char name[256];
283 char *ports;
284 char *config;
285 char *interf;
286 size_t l;
287 char *s;
288
984c4348
KS
289 usbdev = udev_device_get_parent_with_subsystem_devtype(dev, "usb", "usb_interface");
290 if (!usbdev)
0035597a
KS
291 return -ENOENT;
292
02609440 293 /* get USB port number chain, configuration, interface */
984c4348 294 strscpy(name, sizeof(name), udev_device_get_sysname(usbdev));
02609440
KS
295 s = strchr(name, '-');
296 if (!s)
297 return -EINVAL;
298 ports = s+1;
299
300 s = strchr(ports, ':');
301 if (!s)
302 return -EINVAL;
303 s[0] = '\0';
304 config = s+1;
305
306 s = strchr(config, '.');
307 if (!s)
308 return -EINVAL;
309 s[0] = '\0';
310 interf = s+1;
311
312 /* prefix every port number in the chain with "u"*/
313 s = ports;
314 while ((s = strchr(s, '.')))
315 s[0] = 'u';
316 s = names->usb_ports;
d5a89d7d 317 l = strpcpyl(&s, sizeof(names->usb_ports), "u", ports, NULL);
02609440
KS
318
319 /* append USB config number, suppress the common config == 1 */
320 if (!streq(config, "1"))
d5a89d7d 321 l = strpcpyl(&s, sizeof(names->usb_ports), "c", config, NULL);
02609440
KS
322
323 /* append USB interface number, suppress the interface == 0 */
324 if (!streq(interf, "0"))
d5a89d7d 325 l = strpcpyl(&s, sizeof(names->usb_ports), "i", interf, NULL);
02609440
KS
326 if (l == 0)
327 return -ENAMETOOLONG;
328
329 names->type = NET_USB;
d23965a6
KS
330 return 0;
331}
332
984c4348
KS
333static int names_bcma(struct udev_device *dev, struct netnames *names) {
334 struct udev_device *bcmadev;
335 unsigned int core;
336
337 bcmadev = udev_device_get_parent_with_subsystem_devtype(dev, "bcma", NULL);
338 if (!bcmadev)
339 return -ENOENT;
340
f4ddacbd 341 /* bus num:core num */
b5dd8148 342 if (sscanf(udev_device_get_sysname(bcmadev), "bcma%*u:%u", &core) != 1)
984c4348 343 return -EINVAL;
f4ddacbd
KS
344 /* suppress the common core == 0 */
345 if (core > 0)
b5dd8148 346 snprintf(names->bcma_core, sizeof(names->bcma_core), "b%u", core);
f4ddacbd 347
984c4348
KS
348 names->type = NET_BCMA;
349 return 0;
350}
351
e0d4a0ac
HB
352static int names_ccw(struct udev_device *dev, struct netnames *names) {
353 struct udev_device *cdev;
354 const char *bus_id;
355 size_t bus_id_len;
356 int rc;
357
358 /* Retrieve the associated CCW device */
359 cdev = udev_device_get_parent(dev);
360 if (!cdev)
361 return -ENOENT;
362
363 /* Network devices are always grouped CCW devices */
364 if (!streq_ptr("ccwgroup", udev_device_get_subsystem(cdev)))
365 return -ENOENT;
366
367 /* Retrieve bus-ID of the grouped CCW device. The bus-ID uniquely
368 * identifies the network device on the Linux on System z channel
369 * subsystem. Note that the bus-ID contains lowercase characters.
370 */
371 bus_id = udev_device_get_sysname(cdev);
372 if (!bus_id)
373 return -ENOENT;
374
375 /* Check the length of the bus-ID. Rely on that the kernel provides
376 * a correct bus-ID; alternatively, improve this check and parse and
377 * verify each bus-ID part...
378 */
379 bus_id_len = strlen(bus_id);
380 if (!bus_id_len || bus_id_len < 8 || bus_id_len > 9)
381 return -EINVAL;
382
383 /* Store the CCW bus-ID for use as network device name */
d4b687c9
KS
384 rc = snprintf(names->ccw_group, sizeof(names->ccw_group), "ccw%s", bus_id);
385 if (rc >= 0 && rc < (int)sizeof(names->ccw_group))
e0d4a0ac
HB
386 names->type = NET_CCWGROUP;
387 return 0;
388}
389
02609440 390static int names_mac(struct udev_device *dev, struct netnames *names) {
d23965a6
KS
391 const char *s;
392 unsigned int i;
393 unsigned int a1, a2, a3, a4, a5, a6;
d23965a6
KS
394
395 /* check for NET_ADDR_PERM, skip random MAC addresses */
396 s = udev_device_get_sysattr_value(dev, "addr_assign_type");
397 if (!s)
398 return EXIT_FAILURE;
399 i = strtoul(s, NULL, 0);
400 if (i != 0)
401 return 0;
402
403 s = udev_device_get_sysattr_value(dev, "address");
404 if (!s)
405 return -ENOENT;
406 if (sscanf(s, "%x:%x:%x:%x:%x:%x", &a1, &a2, &a3, &a4, &a5, &a6) != 6)
407 return -EINVAL;
408
409 /* skip empty MAC addresses */
410 if (a1 + a2 + a3 + a4 + a5 + a6 == 0)
a660c63c
KS
411 return -EINVAL;
412
02609440
KS
413 names->mac[0] = a1;
414 names->mac[1] = a2;
415 names->mac[2] = a3;
416 names->mac[3] = a4;
417 names->mac[4] = a5;
418 names->mac[5] = a6;
419 names->mac_valid = true;
420 return 0;
421}
d23965a6 422
02609440
KS
423/* IEEE Organizationally Unique Identifier vendor string */
424static int ieee_oui(struct udev_device *dev, struct netnames *names, bool test) {
971e7fb6 425 char str[32];
02609440 426
971e7fb6 427 if (!names->mac_valid)
02609440
KS
428 return -ENOENT;
429 /* skip commonly misused 00:00:00 (Xerox) prefix */
430 if (memcmp(names->mac, "\0\0\0", 3) == 0)
431 return -EINVAL;
432 snprintf(str, sizeof(str), "OUI:%02X%02X%02X%02X%02X%02X",
433 names->mac[0], names->mac[1], names->mac[2],
434 names->mac[3], names->mac[4], names->mac[5]);
a4bbef09 435 udev_builtin_hwdb_lookup(dev, NULL, str, NULL, test);
02609440 436 return 0;
a660c63c
KS
437}
438
439static int builtin_net_id(struct udev_device *dev, int argc, char *argv[], bool test) {
d23965a6 440 const char *s;
72bc96f0 441 const char *p;
d23965a6
KS
442 unsigned int i;
443 const char *devtype;
444 const char *prefix = "en";
b92bea5d 445 struct netnames names = {};
02609440 446 int err;
d23965a6 447
e0d4a0ac 448 /* handle only ARPHRD_ETHER and ARPHRD_SLIP devices */
d23965a6
KS
449 s = udev_device_get_sysattr_value(dev, "type");
450 if (!s)
451 return EXIT_FAILURE;
452 i = strtoul(s, NULL, 0);
e0d4a0ac
HB
453 switch (i) {
454 case 1: /* ARPHRD_ETHER */
455 prefix = "en";
456 break;
457 case 256: /* ARPHRD_SLIP */
458 prefix = "sl";
459 break;
460 default:
d23965a6 461 return 0;
e0d4a0ac 462 }
d23965a6 463
72bc96f0
KS
464 /* skip stacked devices, like VLANs, ... */
465 s = udev_device_get_sysattr_value(dev, "ifindex");
466 if (!s)
467 return EXIT_FAILURE;
468 p = udev_device_get_sysattr_value(dev, "iflink");
469 if (!p)
470 return EXIT_FAILURE;
090be865 471 if (!streq(s, p))
72bc96f0
KS
472 return 0;
473
d23965a6
KS
474 devtype = udev_device_get_devtype(dev);
475 if (devtype) {
476 if (streq("wlan", devtype))
477 prefix = "wl";
478 else if (streq("wwan", devtype))
479 prefix = "ww";
480 }
481
02609440
KS
482 err = names_mac(dev, &names);
483 if (err >= 0 && names.mac_valid) {
484 char str[IFNAMSIZ];
485
486 snprintf(str, sizeof(str), "%sx%02x%02x%02x%02x%02x%02x", prefix,
487 names.mac[0], names.mac[1], names.mac[2],
488 names.mac[3], names.mac[4], names.mac[5]);
489 udev_builtin_add_property(dev, test, "ID_NET_NAME_MAC", str);
490
491 ieee_oui(dev, &names, test);
492 }
493
e0d4a0ac
HB
494 /* get path names for Linux on System z network devices */
495 err = names_ccw(dev, &names);
496 if (err >= 0 && names.type == NET_CCWGROUP) {
497 char str[IFNAMSIZ];
498
d4b687c9 499 if (snprintf(str, sizeof(str), "%s%s", prefix, names.ccw_group) < (int)sizeof(str))
e0d4a0ac
HB
500 udev_builtin_add_property(dev, test, "ID_NET_NAME_PATH", str);
501 goto out;
502 }
503
02609440
KS
504 /* get PCI based path names, we compose only PCI based paths */
505 err = names_pci(dev, &names);
506 if (err < 0)
507 goto out;
508
509 /* plain PCI device */
510 if (names.type == NET_PCI) {
511 char str[IFNAMSIZ];
512
513 if (names.pci_onboard[0])
514 if (snprintf(str, sizeof(str), "%s%s", prefix, names.pci_onboard) < (int)sizeof(str))
515 udev_builtin_add_property(dev, test, "ID_NET_NAME_ONBOARD", str);
516
517 if (names.pci_onboard_label)
518 if (snprintf(str, sizeof(str), "%s%s", prefix, names.pci_onboard_label) < (int)sizeof(str))
519 udev_builtin_add_property(dev, test, "ID_NET_LABEL_ONBOARD", str);
520
521 if (names.pci_path[0])
522 if (snprintf(str, sizeof(str), "%s%s", prefix, names.pci_path) < (int)sizeof(str))
523 udev_builtin_add_property(dev, test, "ID_NET_NAME_PATH", str);
524
525 if (names.pci_slot[0])
526 if (snprintf(str, sizeof(str), "%s%s", prefix, names.pci_slot) < (int)sizeof(str))
527 udev_builtin_add_property(dev, test, "ID_NET_NAME_SLOT", str);
528 goto out;
529 }
530
531 /* USB device */
532 err = names_usb(dev, &names);
533 if (err >= 0 && names.type == NET_USB) {
534 char str[IFNAMSIZ];
535
536 if (names.pci_path[0])
537 if (snprintf(str, sizeof(str), "%s%s%s", prefix, names.pci_path, names.usb_ports) < (int)sizeof(str))
538 udev_builtin_add_property(dev, test, "ID_NET_NAME_PATH", str);
539
540 if (names.pci_slot[0])
541 if (snprintf(str, sizeof(str), "%s%s%s", prefix, names.pci_slot, names.usb_ports) < (int)sizeof(str))
542 udev_builtin_add_property(dev, test, "ID_NET_NAME_SLOT", str);
984c4348
KS
543 goto out;
544 }
545
546 /* Broadcom bus */
547 err = names_bcma(dev, &names);
548 if (err >= 0 && names.type == NET_BCMA) {
549 char str[IFNAMSIZ];
550
551 if (names.pci_path[0])
552 if (snprintf(str, sizeof(str), "%s%s%s", prefix, names.pci_path, names.bcma_core) < (int)sizeof(str))
553 udev_builtin_add_property(dev, test, "ID_NET_NAME_PATH", str);
554
555 if (names.pci_slot[0])
556 if (snprintf(str, sizeof(str), "%s%s%s", prefix, names.pci_slot, names.bcma_core) < (int)sizeof(str))
557 udev_builtin_add_property(dev, test, "ID_NET_NAME_SLOT", str);
558 goto out;
02609440
KS
559 }
560out:
a660c63c
KS
561 return EXIT_SUCCESS;
562}
563
564const struct udev_builtin udev_builtin_net_id = {
565 .name = "net_id",
566 .cmd = builtin_net_id,
567 .help = "network device properties",
568};