X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fdevmapper.c;h=c1a5492b98a6550da0de04f30be4c4df952f4c0c;hp=e2ef0b59c279c294355ec28ff6045f150981495e;hb=03eba1d68dbf7ffc9690d73f957c33b8f492e627;hpb=5acb43464206348b7cced9508852fdd2989aea58 diff --git a/discover/devmapper.c b/discover/devmapper.c index e2ef0b5..c1a5492 100644 --- a/discover/devmapper.c +++ b/discover/devmapper.c @@ -4,6 +4,10 @@ #include #include +#include +#include +#include + #include "libdevmapper.h" #include "devmapper.h" #include "platform.h" @@ -11,34 +15,98 @@ #define MERGE_INTERVAL_US 200000 struct target { - long unsigned int start_sector; - long unsigned int end_sector; - char *ttype; - char *params; + uint64_t start_sector; + uint64_t end_sector; + char *ttype; + char *params; }; -/* Return the number of sectors on a block device. Zero represents an error */ -static unsigned int get_block_sectors(struct discover_device *device) +static unsigned long read_param_uint(struct discover_device *device, + const char *param) { + unsigned long value = 0; const char *tmp; - long unsigned int sectors; - tmp = discover_device_get_param(device, "ID_PART_ENTRY_SIZE"); + tmp = discover_device_get_param(device, param); if (!tmp) { - pb_debug("Could not retrieve ID_PART_ENTRY_SIZE for %s\n", + pb_debug("Could not retrieve parameter '%s' for %s\n", + param, device->device_path); + errno = EINVAL; + } else { + errno = 0; + value = strtoul(tmp, NULL, 0); + } + + /* Return errno and result directly */ + return value; +} + +/* Return the number of sectors on a block device. Zero represents an error */ +static uint64_t get_block_sectors(struct discover_device *device) +{ + unsigned long major, minor, sectors = 0; + char *attr, *buf = NULL; + struct stat sb; + int fd = -1; + ssize_t sz; + + sectors = read_param_uint(device, "ID_PART_ENTRY_SIZE"); + if (!errno) + return (uint64_t)sectors; + else + pb_debug("Error reading sector count for %s: %m\n", device->device_path); + + /* Either the udev property is missing or we failed to parse it. + * Instead try to directly read the size attribute out of sysfs */ + major = read_param_uint(device, "MAJOR"); + if (errno) { + pb_debug("Error reading %s major number\n", device->device_path); + return 0; + } + minor = read_param_uint(device, "MINOR"); + if (errno) { + pb_debug("Error reading %s minor number\n", device->device_path); return 0; } - errno = 0; - sectors = strtoul(tmp, NULL, 0); + attr = talloc_asprintf(device, "/sys/dev/block/%lu:%lu/size", + major, minor); + if (stat(attr, &sb)) { + pb_debug("Failed to stat %s, %m\n", attr); + goto out; + } + + fd = open(attr, O_RDONLY); + if (fd < 0) { + pb_debug("Failed to open sysfs attribute for %s\n", + device->device_path); + goto out; + } + + buf = talloc_array(device, char, sb.st_size); + if (!buf) { + pb_debug("Failed to allocate space for attr\n"); + goto out; + } + + sz = read(fd, buf, sb.st_size); + if (sz <= 0) { + pb_debug("Failed to read sysfs attr: %m\n"); + goto out; + } + + sectors = strtoul(buf, NULL, 0); if (errno) { - pb_debug("Error reading sector count for %s: %s\n", - device->device_path, strerror(errno)); + pb_debug("Failed to read sectors from sysfs: %m\n"); sectors = 0; } - return sectors; +out: + close(fd); + talloc_free(buf); + talloc_free(attr); + return (uint64_t)sectors; } /* @@ -60,7 +128,7 @@ static inline int set_cookie(struct dm_task *task, uint32_t *cookie) static bool snapshot_merge_complete(const char *dm_name) { - long long unsigned int sectors, meta_sectors; + uint64_t sectors, meta_sectors; char *params = NULL, *target_type = NULL; uint64_t start, length; struct dm_task *task; @@ -97,14 +165,16 @@ static bool snapshot_merge_complete(const char *dm_name) /* Merge is complete when metadata sectors are the only sectors * allocated - see Documentation/device-mapper/snapshot.txt */ - n = sscanf(params, "%llu/%*u %llu", §ors, &meta_sectors); + n = sscanf(params, "%" SCNu64 "/%*u %" SCNu64, + §ors, &meta_sectors); if (n != 2) { pb_log("%s unexpected status: '%s'\n", dm_name, params); goto out; } result = sectors == meta_sectors; - pb_debug("%s merging; %llu sectors, %llu metadata sectors\n", + pb_debug("%s merging; %" PRIu64 " sectors, %" PRIu64 + " metadata sectors\n", dm_name, sectors, meta_sectors); out: