/
githubmirror
/
efivar
Обзор
Документация
Войти
/
githubmirror
/
efivar
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
37
src/linux-pci.c
162 строки
6 KB
Peter Jones
Fix another buggy fake acpi pci root driver
10 сен 2018, 22:02
10 сен 2018, 22:02
da30e9f
Код
Авторство
О чём код?
/* * libefiboot - library for the manipulation of EFI boot variables * Copyright 2012-2018 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it 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. * * This library 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 this library; if not, see * <http://www.gnu.org/licenses/>. * */ #include "fix_coverity.h" #include <errno.h> #include <fcntl.h> #include <inttypes.h> #include <stdint.h> #include <unistd.h> #include "efiboot.h" /* * support for PCI root hub and devices * * various devices /sys/dev/block/$major:$minor start with: * maj:min -> ../../devices/pci$PCIROOT/$PCI_DEVICES/$BLOCKDEV_STUFF/block/$DISK/$PART * i.e.: pci0000:00/0000:00:1d.0/0000:05:00.0/ * ^ root hub ^device ^device * * for network devices, we also get: * /sys/class/net/$IFACE -> ../../devices/$PCI_DEVICES/net/$IFACE * * In both cases our "current" pointer should be at $PCI_DEVICES. * */ static ssize_t parse_pci(struct device *dev, const char *current, const char *root) { int rc; int pos; const char *devpart = current; char *spaces; pos = strlen(current); spaces = alloca(pos+1); memset(spaces, ' ', pos+1); spaces[pos] = '\0'; pos = 0; debug("entry"); /* find the pci domain/bus/device/function: * 0000:00:01.0/0000:01:00.0/ * ^d ^b ^d ^f (of the last one in the series) */ while (*devpart) { uint16_t domain; uint8_t bus, device, function; struct pci_dev_info *pci_dev; unsigned int i = dev->n_pci_devs; struct stat statbuf; debug("devpart is \"%s\"", devpart); pos = 0; debug("searching for 0000:00:00.0/"); rc = sscanf(devpart, "%hx:%hhx:%hhx.%hhx/%n", &domain, &bus, &device, &function, &pos); debug("current:\"%s\" rc:%d pos:%d", devpart, rc, pos); arrow(LOG_DEBUG, spaces, 9, pos, rc, 3); if (rc != 4) break; devpart += pos; debug("found pci domain %04hx:%02hhx:%02hhx.%02hhx", domain, bus, device, function); pci_dev = realloc(dev->pci_dev, sizeof(*pci_dev) * (i + 1)); if (!pci_dev) { efi_error("realloc(%p, %zd * (%d + 1)) failed", dev->pci_dev, sizeof(*pci_dev), i); return -1; } dev->pci_dev = pci_dev; dev->pci_dev[i].pci_domain = domain; dev->pci_dev[i].pci_bus = bus; dev->pci_dev[i].pci_device = device; dev->pci_dev[i].pci_function = function; char *tmp = strndup(root, devpart-root+1); char *linkbuf = NULL; if (!tmp) { efi_error("could not allocate memory"); return -1; } tmp[devpart - root] = '\0'; rc = sysfs_stat(&statbuf, "class/block/%s/driver", tmp); if (rc < 0 && errno == ENOENT) { debug("No driver link for /sys/class/block/%s", tmp); debug("Assuming this is just a buggy platform core driver"); dev->pci_dev[i].driverlink = NULL; } else { rc = sysfs_readlink(&linkbuf, "class/block/%s/driver", tmp); if (rc < 0 || !linkbuf) { efi_error("Could not find driver for pci device %s", tmp); free(tmp); return -1; } else { dev->pci_dev[i].driverlink = strdup(linkbuf); debug("driver:%s\n", linkbuf); } } free(tmp); dev->n_pci_devs += 1; } debug("next:\"%s\"", devpart); return devpart - current; } static ssize_t dp_create_pci(struct device *dev, uint8_t *buf, ssize_t size, ssize_t off) { ssize_t sz = 0, new = 0; debug("entry buf:%p size:%zd off:%zd", buf, size, off); debug("creating PCI device path nodes"); for (unsigned int i = 0; i < dev->n_pci_devs; i++) { debug("creating PCI device path node %u", i); new = efidp_make_pci(buf + off, size ? size - off : 0, dev->pci_dev[i].pci_device, dev->pci_dev[i].pci_function); if (new < 0) { efi_error("efidp_make_pci() failed"); return new; } sz += new; off += new; } debug("returning %zd", sz); return sz; } enum interface_type pci_iftypes[] = { pci, unknown }; struct dev_probe HIDDEN pci_parser = { .name = "pci", .iftypes = pci_iftypes, .parse = parse_pci, .create = dp_create_pci, };