chiark / gitweb /
udev: don't call fclose on NULL in is_pci_multifunction
[elogind.git] / src / udev / udev-builtin-net_id.c
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
20 /*
21  * Predictable network interface device names based on:
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  *
27  * Two character prefixes based on the type of interface:
28  *   en -- ethernet
29  *   wl -- wlan
30  *   ww -- wwan
31  *
32  * Type of names:
33  *   o<index>                              -- on-board device index number
34  *   s<slot>[f<function>][d<dev_id>]       -- hotplug slot index number
35  *   x<MAC>                                -- MAC address
36  *   p<bus>s<slot>[f<function>][d<dev_id>] -- PCI geographical location
37  *   p<bus>s<slot>[f<function>][u<port>][..][c<config>][i<interface>]
38  *                                         -- USB port number chain
39  *
40  * All multi-function PCI devices will carry the [f<function>] number in the
41  * device name, including the function 0 device.
42  *
43  * For USB devices the full chain of port numbers of hubs is composed. If the
44  * name gets longer than the maximum number of 15 characters, the name is not
45  * exported.
46  * The usual USB configuration == 1 and interface == 0 values are suppressed.
47  *
48  * PCI ethernet card with firmware index "1":
49  *   ID_NET_NAME_ONBOARD=eno1
50  *   ID_NET_NAME_ONBOARD_LABEL=Ethernet Port 1
51  *
52  * PCI ethernet card in hotplug slot with firmware index number:
53  *   /sys/devices/pci0000:00/0000:00:1c.3/0000:05:00.0/net/ens1
54  *   ID_NET_NAME_MAC=enx000000000466
55  *   ID_NET_NAME_PATH=enp5s0
56  *   ID_NET_NAME_SLOT=ens1
57  *
58  * PCI ethernet multi-function card with 2 ports:
59  *   /sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0/net/enp2s0f0
60  *   ID_NET_NAME_MAC=enx78e7d1ea46da
61  *   ID_NET_NAME_PATH=enp2s0f0
62  *   /sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.1/net/enp2s0f1
63  *   ID_NET_NAME_MAC=enx78e7d1ea46dc
64  *   ID_NET_NAME_PATH=enp2s0f1
65  *
66  * PCI wlan card:
67  *   /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlp3s0
68  *   ID_NET_NAME_MAC=wlx0024d7e31130
69  *   ID_NET_NAME_PATH=wlp3s0
70  *
71  * USB built-in 3G modem:
72  *   /sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.6/net/wwp0s29u1u4i6
73  *   ID_NET_NAME_MAC=wwx028037ec0200
74  *   ID_NET_NAME_PATH=wwp0s29u1u4i6
75  *
76  * USB Android phone:
77  *   /sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/net/enp0s29u1u2
78  *   ID_NET_NAME_MAC=enxd626b3450fb5
79  *   ID_NET_NAME_PATH=enp0s29u1u2
80  */
81
82 #include <stdio.h>
83 #include <stdlib.h>
84 #include <stdarg.h>
85 #include <unistd.h>
86 #include <string.h>
87 #include <errno.h>
88 #include <net/if.h>
89 #include <linux/pci_regs.h>
90
91 #include "udev.h"
92
93 enum netname_type{
94         NET_UNDEF,
95         NET_PCI,
96         NET_USB,
97 };
98
99 struct netnames {
100         enum netname_type type;
101
102         uint8_t mac[6];
103         bool mac_valid;
104
105         struct udev_device *pcidev;
106         char pci_slot[IFNAMSIZ];
107         char pci_path[IFNAMSIZ];
108         char pci_onboard[IFNAMSIZ];
109         const char *pci_onboard_label;
110
111         struct udev_device *usbdev;
112         char usb_ports[IFNAMSIZ];
113 };
114
115 /* retrieve on-board index number and label from firmware */
116 static int dev_pci_onboard(struct udev_device *dev, struct netnames *names) {
117         const char *index;
118         int idx;
119
120         /* ACPI _DSM  -- device specific method for naming a PCI or PCI Express device */
121         index = udev_device_get_sysattr_value(names->pcidev, "acpi_index");
122         /* SMBIOS type 41 -- Onboard Devices Extended Information */
123         if (!index)
124                 index = udev_device_get_sysattr_value(names->pcidev, "index");
125         if (!index)
126                 return -ENOENT;
127         idx = strtoul(index, NULL, 0);
128         if (idx <= 0)
129                 return -EINVAL;
130         snprintf(names->pci_onboard, sizeof(names->pci_onboard), "o%d", idx);
131
132         names->pci_onboard_label = udev_device_get_sysattr_value(names->pcidev, "label");
133         return 0;
134 }
135
136 /* read the 256 bytes PCI configuration space to check the multi-function bit */
137 static bool is_pci_multifunction(struct udev_device *dev) {
138         char filename[256];
139         FILE *f = NULL;
140         char config[64];
141         bool multi = false;
142
143         snprintf(filename, sizeof(filename), "%s/config", udev_device_get_syspath(dev));
144         f = fopen(filename, "re");
145         if (!f)
146                 goto out;
147         if (fread(&config, sizeof(config), 1, f) != 1)
148                 goto out;
149
150         /* bit 0-6 header type, bit 7 multi/single function device */
151         if ((config[PCI_HEADER_TYPE] & 0x80) != 0)
152                 multi = true;
153 out:
154         if(f)
155                 fclose(f);
156         return multi;
157 }
158
159 static int dev_pci_slot(struct udev_device *dev, struct netnames *names) {
160         struct udev *udev = udev_device_get_udev(names->pcidev);
161         unsigned int bus;
162         unsigned int slot;
163         unsigned int func;
164         unsigned int dev_id = 0;
165         size_t l;
166         char *s;
167         const char *attr;
168         struct udev_device *pci = NULL;
169         char slots[256];
170         DIR *dir;
171         struct dirent *dent;
172         char str[256];
173         int hotplug_slot = 0;
174         int err = 0;
175
176         if (sscanf(udev_device_get_sysname(names->pcidev), "0000:%x:%x.%d", &bus, &slot, &func) != 3)
177                 return -ENOENT;
178
179         /* kernel provided multi-device index */
180         attr = udev_device_get_sysattr_value(dev, "dev_id");
181         if (attr)
182                 dev_id = strtol(attr, NULL, 16);
183
184         /* compose a name based on the raw kernel's PCI bus, slot numbers */
185         s = names->pci_path;
186         l = util_strpcpyf(&s, sizeof(names->pci_path), "p%ds%d", bus, slot);
187         if (func > 0 || is_pci_multifunction(names->pcidev))
188                 l = util_strpcpyf(&s, l, "f%d", func);
189         if (dev_id > 0)
190                 l = util_strpcpyf(&s, l, "d%d", dev_id);
191         if (l == 0)
192                 names->pci_path[0] = '\0';
193
194         /* ACPI _SUN  -- slot user number */
195         pci = udev_device_new_from_subsystem_sysname(udev, "subsystem", "pci");
196         if (!pci) {
197                 err = -ENOENT;
198                 goto out;
199         }
200         snprintf(slots, sizeof(slots), "%s/slots", udev_device_get_syspath(pci));
201         dir = opendir(slots);
202         if (!dir) {
203                 err = -errno;
204                 goto out;
205         }
206
207         for (dent = readdir(dir); dent != NULL; dent = readdir(dir)) {
208                 int i;
209                 char *rest;
210                 char *address;
211
212                 if (dent->d_name[0] == '.')
213                         continue;
214                 i = strtol(dent->d_name, &rest, 10);
215                 if (rest[0] != '\0')
216                         continue;
217                 if (i < 1)
218                         continue;
219                 snprintf(str, sizeof(str), "%s/%s/address", slots, dent->d_name);
220                 if (read_one_line_file(str, &address) >= 0) {
221                         /* match slot address with device by stripping the function */
222                         if (strncmp(address, udev_device_get_sysname(names->pcidev), strlen(address)) == 0)
223                                 hotplug_slot = i;
224                         free(address);
225                 }
226
227                 if (hotplug_slot > 0)
228                         break;
229         }
230         closedir(dir);
231
232         if (hotplug_slot > 0) {
233                 s = names->pci_slot;
234                 l = util_strpcpyf(&s, sizeof(names->pci_slot), "s%d", hotplug_slot);
235                 if (func > 0 || is_pci_multifunction(names->pcidev))
236                         l = util_strpcpyf(&s, l, "f%d", func);
237                 if (dev_id > 0)
238                         l = util_strpcpyf(&s, l, "d%d", dev_id);
239                 if (l == 0)
240                         names->pci_path[0] = '\0';
241         }
242 out:
243         udev_device_unref(pci);
244         return err;
245 }
246
247 static int names_pci(struct udev_device *dev, struct netnames *names) {
248         struct udev_device *parent;
249
250         parent = udev_device_get_parent(dev);
251         if (!parent)
252                 return -ENOENT;
253         /* check if our direct parent is a PCI device with no other bus in-between */
254         if (streq("pci", udev_device_get_subsystem(parent))) {
255                 names->type = NET_PCI;
256                 names->pcidev = parent;
257         } else {
258                 names->pcidev = udev_device_get_parent_with_subsystem_devtype(dev, "pci", NULL);
259                 if (!names->pcidev)
260                         return -ENOENT;
261         }
262         dev_pci_onboard(dev, names);
263         dev_pci_slot(dev, names);
264         return 0;
265 }
266
267 static int names_usb(struct udev_device *dev, struct netnames *names) {
268         char name[256];
269         char *ports;
270         char *config;
271         char *interf;
272         size_t l;
273         char *s;
274
275         names->usbdev = udev_device_get_parent_with_subsystem_devtype(dev, "usb", "usb_interface");
276         if (!names->usbdev)
277                 return -ENOENT;
278
279         /* get USB port number chain, configuration, interface */
280         util_strscpy(name, sizeof(name), udev_device_get_sysname(names->usbdev));
281         s = strchr(name, '-');
282         if (!s)
283                 return -EINVAL;
284         ports = s+1;
285
286         s = strchr(ports, ':');
287         if (!s)
288                 return -EINVAL;
289         s[0] = '\0';
290         config = s+1;
291
292         s = strchr(config, '.');
293         if (!s)
294                 return -EINVAL;
295         s[0] = '\0';
296         interf = s+1;
297
298         /* prefix every port number in the chain with "u"*/
299         s = ports;
300         while ((s = strchr(s, '.')))
301                 s[0] = 'u';
302         s = names->usb_ports;
303         l = util_strpcpyl(&s, sizeof(names->usb_ports), "u", ports, NULL);
304
305         /* append USB config number, suppress the common config == 1 */
306         if (!streq(config, "1"))
307                 l = util_strpcpyl(&s, sizeof(names->usb_ports), "c", config, NULL);
308
309         /* append USB interface number, suppress the interface == 0 */
310         if (!streq(interf, "0"))
311                 l = util_strpcpyl(&s, sizeof(names->usb_ports), "i", interf, NULL);
312         if (l == 0)
313                 return -ENAMETOOLONG;
314
315         names->type = NET_USB;
316         return 0;
317 }
318
319 static int names_mac(struct udev_device *dev, struct netnames *names) {
320         const char *s;
321         unsigned int i;
322         unsigned int a1, a2, a3, a4, a5, a6;
323
324         /* check for NET_ADDR_PERM, skip random MAC addresses */
325         s = udev_device_get_sysattr_value(dev, "addr_assign_type");
326         if (!s)
327                 return EXIT_FAILURE;
328         i = strtoul(s, NULL, 0);
329         if (i != 0)
330                 return 0;
331
332         s = udev_device_get_sysattr_value(dev, "address");
333         if (!s)
334                 return -ENOENT;
335         if (sscanf(s, "%x:%x:%x:%x:%x:%x", &a1, &a2, &a3, &a4, &a5, &a6) != 6)
336                 return -EINVAL;
337
338         /* skip empty MAC addresses */
339         if (a1 + a2 + a3 + a4 + a5 + a6 == 0)
340                 return -EINVAL;
341
342         names->mac[0] = a1;
343         names->mac[1] = a2;
344         names->mac[2] = a3;
345         names->mac[3] = a4;
346         names->mac[4] = a5;
347         names->mac[5] = a6;
348         names->mac_valid = true;
349         return 0;
350 }
351
352 /* IEEE Organizationally Unique Identifier vendor string */
353 static int ieee_oui(struct udev_device *dev, struct netnames *names, bool test) {
354         char str[32];
355
356         if (!names->mac_valid)
357                 return -ENOENT;
358         /* skip commonly misused 00:00:00 (Xerox) prefix */
359         if (memcmp(names->mac, "\0\0\0", 3) == 0)
360                 return -EINVAL;
361         snprintf(str, sizeof(str), "OUI:%02X%02X%02X%02X%02X%02X",
362                  names->mac[0], names->mac[1], names->mac[2],
363                  names->mac[3], names->mac[4], names->mac[5]);
364         udev_builtin_hwdb_lookup(dev, str, test);
365         return 0;
366 }
367
368 static int builtin_net_id(struct udev_device *dev, int argc, char *argv[], bool test) {
369         const char *s;
370         const char *p;
371         unsigned int i;
372         const char *devtype;
373         const char *prefix = "en";
374         struct netnames names;
375         int err;
376
377         /* handle only ARPHRD_ETHER devices */
378         s = udev_device_get_sysattr_value(dev, "type");
379         if (!s)
380                 return EXIT_FAILURE;
381         i = strtoul(s, NULL, 0);
382         if (i != 1)
383                 return 0;
384
385         /* skip stacked devices, like VLANs, ... */
386         s = udev_device_get_sysattr_value(dev, "ifindex");
387         if (!s)
388                 return EXIT_FAILURE;
389         p = udev_device_get_sysattr_value(dev, "iflink");
390         if (!p)
391                 return EXIT_FAILURE;
392         if (strcmp(s, p) != 0)
393                 return 0;
394
395         devtype = udev_device_get_devtype(dev);
396         if (devtype) {
397                 if (streq("wlan", devtype))
398                         prefix = "wl";
399                 else if (streq("wwan", devtype))
400                         prefix = "ww";
401         }
402
403         zero(names);
404         err = names_mac(dev, &names);
405         if (err >= 0 && names.mac_valid) {
406                 char str[IFNAMSIZ];
407
408                 snprintf(str, sizeof(str), "%sx%02x%02x%02x%02x%02x%02x", prefix,
409                          names.mac[0], names.mac[1], names.mac[2],
410                          names.mac[3], names.mac[4], names.mac[5]);
411                 udev_builtin_add_property(dev, test, "ID_NET_NAME_MAC", str);
412
413                 ieee_oui(dev, &names, test);
414         }
415
416         /* get PCI based path names, we compose only PCI based paths */
417         err = names_pci(dev, &names);
418         if (err < 0)
419                 goto out;
420
421         /* plain PCI device */
422         if (names.type == NET_PCI) {
423                 char str[IFNAMSIZ];
424
425                 if (names.pci_onboard[0])
426                         if (snprintf(str, sizeof(str), "%s%s", prefix, names.pci_onboard) < (int)sizeof(str))
427                                 udev_builtin_add_property(dev, test, "ID_NET_NAME_ONBOARD", str);
428
429                 if (names.pci_onboard_label)
430                         if (snprintf(str, sizeof(str), "%s%s", prefix, names.pci_onboard_label) < (int)sizeof(str))
431                                 udev_builtin_add_property(dev, test, "ID_NET_LABEL_ONBOARD", str);
432
433                 if (names.pci_path[0])
434                         if (snprintf(str, sizeof(str), "%s%s", prefix, names.pci_path) < (int)sizeof(str))
435                                 udev_builtin_add_property(dev, test, "ID_NET_NAME_PATH", str);
436
437                 if (names.pci_slot[0])
438                         if (snprintf(str, sizeof(str), "%s%s", prefix, names.pci_slot) < (int)sizeof(str))
439                                 udev_builtin_add_property(dev, test, "ID_NET_NAME_SLOT", str);
440                 goto out;
441         }
442
443         /* USB device */
444         err = names_usb(dev, &names);
445         if (err >= 0 && names.type == NET_USB) {
446                 char str[IFNAMSIZ];
447
448                 if (names.pci_path[0])
449                         if (snprintf(str, sizeof(str), "%s%s%s", prefix, names.pci_path, names.usb_ports) < (int)sizeof(str))
450                                 udev_builtin_add_property(dev, test, "ID_NET_NAME_PATH", str);
451
452                 if (names.pci_slot[0])
453                         if (snprintf(str, sizeof(str), "%s%s%s", prefix, names.pci_slot, names.usb_ports) < (int)sizeof(str))
454                                 udev_builtin_add_property(dev, test, "ID_NET_NAME_SLOT", str);
455         }
456 out:
457         return EXIT_SUCCESS;
458 }
459
460 const struct udev_builtin udev_builtin_net_id = {
461         .name = "net_id",
462         .cmd = builtin_net_id,
463         .help = "network device properties",
464 };