/
githubmirror
/
efivar
Обзор
Документация
Войти
/
githubmirror
/
efivar
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/linux-sata.c
245 строк
8 KB
Peter Jones
cleanup: make clangd stop complaining about fix_coverity.h
17 мар 2026, 23:20
17 мар 2026, 23:20
24a06ba
Код
Авторство
О чём код?
// SPDX-License-Identifier: LGPL-2.1-or-later /* * libefiboot - library for the manipulation of EFI boot variables * Copyright 2012-2019 Red Hat, Inc. */ #include "fix_coverity.h" // IWYU pragma: keep #include <dirent.h> #include <errno.h> #include <fcntl.h> #include <inttypes.h> #include <stdint.h> #include <unistd.h> #include "efiboot.h" /* * Support for SATA (and in some cases other ATA) devices * * /dev/sda as SATA looks like: * /sys/dev/block/8:0 -> ../../devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda * ^ ^ ^ ^ ^ ^ ^ ^ ^ * | | | | | | | | lun again * | | | | | | | target again * | | | | | | device again * | | | | | bus again * | | | | 64-bit lun * | | | 32-bit target * | | 32-bit device * | 32-bit scsi "bus" * ata print id * * This is not only highly repetitive, but most of it is always 0 anyway. * * /dev/sda1 looks like: * /sys/dev/block/8:1 -> ../../devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1 * * sda/device looks like: * device -> ../../../0:0:0:0 * * For all of these we're searching for a match for $PRINT_ID and then getting * the other info - if there's a port multiplier and if so what's the PMPN, * and what's the port number: * /sys/class/ata_device/dev$PRINT_ID.$PMPN.$DEVICE - values "print id", pmp id, and device number * /sys/class/ata_device/dev$PRINT_ID.$DEVICE - values are "print id" and device number * /sys/class/ata_port/ata$PRINT_ID/port_no - contains off-by-one port number) * */ static ssize_t sysfs_sata_get_port_info(uint32_t print_id, struct device *dev) { DIR *d; struct dirent *de; uint8_t *buf = NULL; int rc; d = sysfs_opendir("class/ata_device/"); if (!d) { efi_error("could not open /sys/class/ata_device/"); return -1; } while ((de = readdir(d)) != NULL) { uint32_t found_print_id; uint32_t found_pmp; uint32_t found_devno = 0; if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, "..")) continue; rc = sscanf(de->d_name, "dev%d.%d.%d", &found_print_id, &found_pmp, &found_devno); if (rc < 2 || rc > 3) { closedir(d); errno = EINVAL; return -1; } else if (found_print_id != print_id) { continue; } else if (rc == 3) { /* * the kernel doesn't ever tell us the SATA PMPN * sentinal value, it'll give us devM.N instead of * devM.N.O in that case instead. */ if (found_pmp > 0x7fff) { closedir(d); errno = EINVAL; return -1; } dev->sata_info.ata_devno = 0; dev->sata_info.ata_pmp = found_pmp; break; } else if (rc == 2) { dev->sata_info.ata_devno = 0; dev->sata_info.ata_pmp = 0xffff; break; } } closedir(d); rc = read_sysfs_file(&buf, "class/ata_port/ata%d/port_no", print_id); if (rc <= 0 || buf == NULL) return -1; rc = sscanf((char *)buf, "%d", &dev->sata_info.ata_port); if (rc != 1) return -1; /* * ata_port numbers are 1-indexed from libata in the kernel, but * they're 0-indexed in the spec. For maximal confusion. */ if (dev->sata_info.ata_port == 0) { errno = EINVAL; return -1; } else { dev->sata_info.ata_port -= 1; } return 0; } static ssize_t parse_sata(struct device *dev, const char *path, const char *root UNUSED) { const char *current = path; uint32_t print_id; uint32_t scsi_bus, tosser0; uint32_t scsi_device, tosser1; uint32_t scsi_target, tosser2; uint64_t scsi_lun, tosser3; int pos0 = -1, pos1 = -1; int rc; debug("entry"); if (is_pata(dev)) { debug("This is a PATA device; skipping."); return 0; } /* find the ata info: * ata1/host0/target0:0:0/0:0:0:0 * ^dev ^host x y z */ debug("searching for ata1/"); rc = sscanf(current, "%nata%"PRIu32"/%n", &pos0, &print_id, &pos1); debug("current:'%s' rc:%d pos0:%d pos1:%d\n", current, rc, pos0, pos1); dbgmk(" ", pos0, pos1); /* * If we don't find this one, it isn't an ata device, so return 0 not * error. Later errors mean it is an ata device, but we can't parse * it right, so they return -1. */ if (rc != 1) return 0; current += pos1; pos0 = pos1 = -1; debug("searching for host0/"); rc = sscanf(current, "%nhost%"PRIu32"/%n", &pos0, &scsi_bus, &pos1); debug("current:'%s' rc:%d pos0:%d pos1:%d\n", current, rc, pos0, pos1); dbgmk(" ", pos0, pos1); if (rc != 1) return -1; current += pos1; pos0 = pos1 = -1; debug("searching for target0:0:0:0/"); rc = sscanf(current, "%ntarget%"PRIu32":%"PRIu32":%"PRIu64"/%n", &pos0, &scsi_device, &scsi_target, &scsi_lun, &pos1); debug("current:'%s' rc:%d pos0:%d pos1:%d\n", current, rc, pos0, pos1); dbgmk(" ", pos0, pos1); if (rc != 3) return -1; current += pos1; pos0 = pos1 = -1; debug("searching for 0:0:0:0/"); rc = sscanf(current, "%n%"PRIu32":%"PRIu32":%"PRIu32":%"PRIu64"/%n", &pos0, &tosser0, &tosser1, &tosser2, &tosser3, &pos1); debug("current:'%s' rc:%d pos0:%d pos1:%d\n", current, rc, pos0, pos1); dbgmk(" ", pos0, pos1); if (rc != 4) return -1; current += pos1; rc = sysfs_sata_get_port_info(print_id, dev); if (rc < 0) return -1; dev->sata_info.scsi_bus = scsi_bus; dev->sata_info.scsi_device = scsi_device; dev->sata_info.scsi_target = scsi_target; dev->sata_info.scsi_lun = scsi_lun; if (dev->interface_type == unknown) dev->interface_type = sata; debug("current:'%s' sz:%zd\n", current, current - path); return current - path; } static ssize_t dp_create_sata(struct device *dev, uint8_t *buf, ssize_t size, ssize_t off) { ssize_t sz = -1; debug("entry buf:%p size:%zd off:%zd", buf, size, off); if (dev->interface_type == ata || dev->interface_type == atapi) { sz = efidp_make_atapi(buf + off, size ? size - off : 0, dev->sata_info.ata_port, dev->sata_info.ata_pmp, dev->sata_info.ata_devno); if (sz < 0) efi_error("efidp_make_atapi() failed"); } else if (dev->interface_type == sata) { sz = efidp_make_sata(buf + off, size ? size - off : 0, dev->sata_info.ata_port, dev->sata_info.ata_pmp, dev->sata_info.ata_devno); if (sz < 0) efi_error("efidp_make_sata() failed"); } else { return -EINVAL; } return sz; } enum interface_type sata_iftypes[] = { sata, unknown }; struct dev_probe HIDDEN sata_parser = { .name = "sata", .iftypes = sata_iftypes, .flags = DEV_PROVIDES_HD, .parse = parse_sata, .create = dp_create_sata, }; // vim:fenc=utf-8:tw=75:noet