Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 2 | /* |
Christoph Hellwig | 387048b | 2020-03-24 08:25:30 +0100 | [diff] [blame] | 3 | * Copyright (C) 1991-1998 Linus Torvalds |
| 4 | * Re-organised Feb 1998 Russell King |
Christoph Hellwig | 7b51e70 | 2020-12-10 08:55:44 +0100 | [diff] [blame] | 5 | * Copyright (C) 2020 Christoph Hellwig |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 6 | */ |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 7 | #include <linux/fs.h> |
| 8 | #include <linux/slab.h> |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 9 | #include <linux/ctype.h> |
| 10 | #include <linux/genhd.h> |
Christoph Hellwig | 387048b | 2020-03-24 08:25:30 +0100 | [diff] [blame] | 11 | #include <linux/vmalloc.h> |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 12 | #include <linux/blktrace_api.h> |
Christoph Hellwig | 74cc979c | 2020-03-24 08:25:19 +0100 | [diff] [blame] | 13 | #include <linux/raid/detect.h> |
Christoph Hellwig | 387048b | 2020-03-24 08:25:30 +0100 | [diff] [blame] | 14 | #include "check.h" |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 15 | |
Christoph Hellwig | 387048b | 2020-03-24 08:25:30 +0100 | [diff] [blame] | 16 | static int (*check_part[])(struct parsed_partitions *) = { |
| 17 | /* |
| 18 | * Probe partition formats with tables at disk address 0 |
| 19 | * that also have an ADFS boot block at 0xdc0. |
| 20 | */ |
| 21 | #ifdef CONFIG_ACORN_PARTITION_ICS |
| 22 | adfspart_check_ICS, |
| 23 | #endif |
| 24 | #ifdef CONFIG_ACORN_PARTITION_POWERTEC |
| 25 | adfspart_check_POWERTEC, |
| 26 | #endif |
| 27 | #ifdef CONFIG_ACORN_PARTITION_EESOX |
| 28 | adfspart_check_EESOX, |
| 29 | #endif |
| 30 | |
| 31 | /* |
| 32 | * Now move on to formats that only have partition info at |
| 33 | * disk address 0xdc0. Since these may also have stale |
| 34 | * PC/BIOS partition tables, they need to come before |
| 35 | * the msdos entry. |
| 36 | */ |
| 37 | #ifdef CONFIG_ACORN_PARTITION_CUMANA |
| 38 | adfspart_check_CUMANA, |
| 39 | #endif |
| 40 | #ifdef CONFIG_ACORN_PARTITION_ADFS |
| 41 | adfspart_check_ADFS, |
| 42 | #endif |
| 43 | |
| 44 | #ifdef CONFIG_CMDLINE_PARTITION |
| 45 | cmdline_partition, |
| 46 | #endif |
| 47 | #ifdef CONFIG_EFI_PARTITION |
| 48 | efi_partition, /* this must come before msdos */ |
| 49 | #endif |
| 50 | #ifdef CONFIG_SGI_PARTITION |
| 51 | sgi_partition, |
| 52 | #endif |
| 53 | #ifdef CONFIG_LDM_PARTITION |
| 54 | ldm_partition, /* this must come before msdos */ |
| 55 | #endif |
| 56 | #ifdef CONFIG_MSDOS_PARTITION |
| 57 | msdos_partition, |
| 58 | #endif |
| 59 | #ifdef CONFIG_OSF_PARTITION |
| 60 | osf_partition, |
| 61 | #endif |
| 62 | #ifdef CONFIG_SUN_PARTITION |
| 63 | sun_partition, |
| 64 | #endif |
| 65 | #ifdef CONFIG_AMIGA_PARTITION |
| 66 | amiga_partition, |
| 67 | #endif |
| 68 | #ifdef CONFIG_ATARI_PARTITION |
| 69 | atari_partition, |
| 70 | #endif |
| 71 | #ifdef CONFIG_MAC_PARTITION |
| 72 | mac_partition, |
| 73 | #endif |
| 74 | #ifdef CONFIG_ULTRIX_PARTITION |
| 75 | ultrix_partition, |
| 76 | #endif |
| 77 | #ifdef CONFIG_IBM_PARTITION |
| 78 | ibm_partition, |
| 79 | #endif |
| 80 | #ifdef CONFIG_KARMA_PARTITION |
| 81 | karma_partition, |
| 82 | #endif |
| 83 | #ifdef CONFIG_SYSV68_PARTITION |
| 84 | sysv68_partition, |
| 85 | #endif |
| 86 | NULL |
| 87 | }; |
| 88 | |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 89 | static void bdev_set_nr_sectors(struct block_device *bdev, sector_t sectors) |
| 90 | { |
Damien Le Moal | 0f47227 | 2021-03-01 12:04:02 +0900 | [diff] [blame] | 91 | spin_lock(&bdev->bd_size_lock); |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 92 | i_size_write(bdev->bd_inode, (loff_t)sectors << SECTOR_SHIFT); |
Damien Le Moal | 0f47227 | 2021-03-01 12:04:02 +0900 | [diff] [blame] | 93 | spin_unlock(&bdev->bd_size_lock); |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 94 | } |
| 95 | |
Christoph Hellwig | 387048b | 2020-03-24 08:25:30 +0100 | [diff] [blame] | 96 | static struct parsed_partitions *allocate_partitions(struct gendisk *hd) |
| 97 | { |
| 98 | struct parsed_partitions *state; |
| 99 | int nr; |
| 100 | |
| 101 | state = kzalloc(sizeof(*state), GFP_KERNEL); |
| 102 | if (!state) |
| 103 | return NULL; |
| 104 | |
| 105 | nr = disk_max_parts(hd); |
| 106 | state->parts = vzalloc(array_size(nr, sizeof(state->parts[0]))); |
| 107 | if (!state->parts) { |
| 108 | kfree(state); |
| 109 | return NULL; |
| 110 | } |
| 111 | |
| 112 | state->limit = nr; |
| 113 | |
| 114 | return state; |
| 115 | } |
| 116 | |
| 117 | static void free_partitions(struct parsed_partitions *state) |
| 118 | { |
| 119 | vfree(state->parts); |
| 120 | kfree(state); |
| 121 | } |
| 122 | |
| 123 | static struct parsed_partitions *check_partition(struct gendisk *hd, |
| 124 | struct block_device *bdev) |
| 125 | { |
| 126 | struct parsed_partitions *state; |
| 127 | int i, res, err; |
| 128 | |
| 129 | state = allocate_partitions(hd); |
| 130 | if (!state) |
| 131 | return NULL; |
| 132 | state->pp_buf = (char *)__get_free_page(GFP_KERNEL); |
| 133 | if (!state->pp_buf) { |
| 134 | free_partitions(state); |
| 135 | return NULL; |
| 136 | } |
| 137 | state->pp_buf[0] = '\0'; |
| 138 | |
| 139 | state->bdev = bdev; |
| 140 | disk_name(hd, 0, state->name); |
| 141 | snprintf(state->pp_buf, PAGE_SIZE, " %s:", state->name); |
| 142 | if (isdigit(state->name[strlen(state->name)-1])) |
| 143 | sprintf(state->name, "p"); |
| 144 | |
| 145 | i = res = err = 0; |
| 146 | while (!res && check_part[i]) { |
| 147 | memset(state->parts, 0, state->limit * sizeof(state->parts[0])); |
| 148 | res = check_part[i++](state); |
| 149 | if (res < 0) { |
| 150 | /* |
| 151 | * We have hit an I/O error which we don't report now. |
| 152 | * But record it, and let the others do their job. |
| 153 | */ |
| 154 | err = res; |
| 155 | res = 0; |
| 156 | } |
| 157 | |
| 158 | } |
| 159 | if (res > 0) { |
| 160 | printk(KERN_INFO "%s", state->pp_buf); |
| 161 | |
| 162 | free_page((unsigned long)state->pp_buf); |
| 163 | return state; |
| 164 | } |
| 165 | if (state->access_beyond_eod) |
| 166 | err = -ENOSPC; |
| 167 | /* |
| 168 | * The partition is unrecognized. So report I/O errors if there were any |
| 169 | */ |
| 170 | if (err) |
| 171 | res = err; |
| 172 | if (res) { |
| 173 | strlcat(state->pp_buf, |
| 174 | " unable to read partition table\n", PAGE_SIZE); |
| 175 | printk(KERN_INFO "%s", state->pp_buf); |
| 176 | } |
| 177 | |
| 178 | free_page((unsigned long)state->pp_buf); |
| 179 | free_partitions(state); |
| 180 | return ERR_PTR(res); |
| 181 | } |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 182 | |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 183 | static ssize_t part_partition_show(struct device *dev, |
| 184 | struct device_attribute *attr, char *buf) |
| 185 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 186 | return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_partno); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | static ssize_t part_start_show(struct device *dev, |
| 190 | struct device_attribute *attr, char *buf) |
| 191 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 192 | return sprintf(buf, "%llu\n", dev_to_bdev(dev)->bd_start_sect); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 193 | } |
| 194 | |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 195 | static ssize_t part_ro_show(struct device *dev, |
| 196 | struct device_attribute *attr, char *buf) |
| 197 | { |
Christoph Hellwig | 52f019d | 2021-01-09 11:42:51 +0100 | [diff] [blame] | 198 | return sprintf(buf, "%d\n", bdev_read_only(dev_to_bdev(dev))); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | static ssize_t part_alignment_offset_show(struct device *dev, |
| 202 | struct device_attribute *attr, char *buf) |
| 203 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 204 | struct block_device *bdev = dev_to_bdev(dev); |
Christoph Hellwig | 7b8917f | 2020-08-31 20:02:33 +0200 | [diff] [blame] | 205 | |
| 206 | return sprintf(buf, "%u\n", |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 207 | queue_limit_alignment_offset(&bdev->bd_disk->queue->limits, |
| 208 | bdev->bd_start_sect)); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | static ssize_t part_discard_alignment_show(struct device *dev, |
| 212 | struct device_attribute *attr, char *buf) |
| 213 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 214 | struct block_device *bdev = dev_to_bdev(dev); |
Christoph Hellwig | 7cf34d9 | 2020-08-31 20:02:34 +0200 | [diff] [blame] | 215 | |
| 216 | return sprintf(buf, "%u\n", |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 217 | queue_limit_discard_alignment(&bdev->bd_disk->queue->limits, |
| 218 | bdev->bd_start_sect)); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 219 | } |
| 220 | |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 221 | static DEVICE_ATTR(partition, 0444, part_partition_show, NULL); |
| 222 | static DEVICE_ATTR(start, 0444, part_start_show, NULL); |
| 223 | static DEVICE_ATTR(size, 0444, part_size_show, NULL); |
| 224 | static DEVICE_ATTR(ro, 0444, part_ro_show, NULL); |
| 225 | static DEVICE_ATTR(alignment_offset, 0444, part_alignment_offset_show, NULL); |
| 226 | static DEVICE_ATTR(discard_alignment, 0444, part_discard_alignment_show, NULL); |
| 227 | static DEVICE_ATTR(stat, 0444, part_stat_show, NULL); |
| 228 | static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 229 | #ifdef CONFIG_FAIL_MAKE_REQUEST |
| 230 | static struct device_attribute dev_attr_fail = |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 231 | __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 232 | #endif |
| 233 | |
| 234 | static struct attribute *part_attrs[] = { |
| 235 | &dev_attr_partition.attr, |
| 236 | &dev_attr_start.attr, |
| 237 | &dev_attr_size.attr, |
| 238 | &dev_attr_ro.attr, |
| 239 | &dev_attr_alignment_offset.attr, |
| 240 | &dev_attr_discard_alignment.attr, |
| 241 | &dev_attr_stat.attr, |
| 242 | &dev_attr_inflight.attr, |
| 243 | #ifdef CONFIG_FAIL_MAKE_REQUEST |
| 244 | &dev_attr_fail.attr, |
| 245 | #endif |
| 246 | NULL |
| 247 | }; |
| 248 | |
| 249 | static struct attribute_group part_attr_group = { |
| 250 | .attrs = part_attrs, |
| 251 | }; |
| 252 | |
| 253 | static const struct attribute_group *part_attr_groups[] = { |
| 254 | &part_attr_group, |
| 255 | #ifdef CONFIG_BLK_DEV_IO_TRACE |
| 256 | &blk_trace_attr_group, |
| 257 | #endif |
| 258 | NULL |
| 259 | }; |
| 260 | |
| 261 | static void part_release(struct device *dev) |
| 262 | { |
Christoph Hellwig | 7c3f828 | 2021-05-21 07:50:51 +0200 | [diff] [blame^] | 263 | if (MAJOR(dev->devt) == BLOCK_EXT_MAJOR) |
| 264 | blk_free_ext_minor(MINOR(dev->devt)); |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 265 | bdput(dev_to_bdev(dev)); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 266 | } |
| 267 | |
San Mehat | 0d9c51a | 2016-03-15 14:53:26 -0700 | [diff] [blame] | 268 | static int part_uevent(struct device *dev, struct kobj_uevent_env *env) |
| 269 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 270 | struct block_device *part = dev_to_bdev(dev); |
San Mehat | 0d9c51a | 2016-03-15 14:53:26 -0700 | [diff] [blame] | 271 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 272 | add_uevent_var(env, "PARTN=%u", part->bd_partno); |
| 273 | if (part->bd_meta_info && part->bd_meta_info->volname[0]) |
| 274 | add_uevent_var(env, "PARTNAME=%s", part->bd_meta_info->volname); |
San Mehat | 0d9c51a | 2016-03-15 14:53:26 -0700 | [diff] [blame] | 275 | return 0; |
| 276 | } |
| 277 | |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 278 | struct device_type part_type = { |
| 279 | .name = "partition", |
| 280 | .groups = part_attr_groups, |
| 281 | .release = part_release, |
San Mehat | 0d9c51a | 2016-03-15 14:53:26 -0700 | [diff] [blame] | 282 | .uevent = part_uevent, |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 283 | }; |
| 284 | |
Bart Van Assche | 6d2cf6f | 2017-08-17 16:23:06 -0700 | [diff] [blame] | 285 | /* |
| 286 | * Must be called either with bd_mutex held, before a disk can be opened or |
| 287 | * after all disk users are gone. |
| 288 | */ |
Christoph Hellwig | d3c4a43 | 2021-04-06 08:22:55 +0200 | [diff] [blame] | 289 | static void delete_partition(struct block_device *part) |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 290 | { |
Christoph Hellwig | 473338b | 2021-04-06 08:22:54 +0200 | [diff] [blame] | 291 | fsync_bdev(part); |
| 292 | __invalidate_device(part, true); |
| 293 | |
Christoph Hellwig | a33df75 | 2021-01-24 11:02:41 +0100 | [diff] [blame] | 294 | xa_erase(&part->bd_disk->part_tbl, part->bd_partno); |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 295 | kobject_put(part->bd_holder_dir); |
| 296 | device_del(&part->bd_device); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 297 | |
Yufen Yu | 6fcc44d | 2019-04-02 20:06:34 +0800 | [diff] [blame] | 298 | /* |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 299 | * Remove the block device from the inode hash, so that it cannot be |
| 300 | * looked up any more even when openers still hold references. |
Yufen Yu | 6fcc44d | 2019-04-02 20:06:34 +0800 | [diff] [blame] | 301 | */ |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 302 | remove_inode_hash(part->bd_inode); |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 303 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 304 | put_device(&part->bd_device); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | static ssize_t whole_disk_show(struct device *dev, |
| 308 | struct device_attribute *attr, char *buf) |
| 309 | { |
| 310 | return 0; |
| 311 | } |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 312 | static DEVICE_ATTR(whole_disk, 0444, whole_disk_show, NULL); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 313 | |
Bart Van Assche | 6d2cf6f | 2017-08-17 16:23:06 -0700 | [diff] [blame] | 314 | /* |
| 315 | * Must be called either with bd_mutex held, before a disk can be opened or |
| 316 | * after all disk users are gone. |
| 317 | */ |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 318 | static struct block_device *add_partition(struct gendisk *disk, int partno, |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 319 | sector_t start, sector_t len, int flags, |
| 320 | struct partition_meta_info *info) |
| 321 | { |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 322 | dev_t devt = MKDEV(0, 0); |
| 323 | struct device *ddev = disk_to_dev(disk); |
| 324 | struct device *pdev; |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 325 | struct block_device *bdev; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 326 | const char *dname; |
| 327 | int err; |
| 328 | |
Christoph Hellwig | b720530 | 2020-01-26 14:05:43 +0100 | [diff] [blame] | 329 | /* |
Ming Lei | e82fc78 | 2021-03-27 15:13:09 +0800 | [diff] [blame] | 330 | * disk_max_parts() won't be zero, either GENHD_FL_EXT_DEVT is set |
| 331 | * or 'minors' is passed to alloc_disk(). |
| 332 | */ |
| 333 | if (partno >= disk_max_parts(disk)) |
| 334 | return ERR_PTR(-EINVAL); |
| 335 | |
| 336 | /* |
Christoph Hellwig | b720530 | 2020-01-26 14:05:43 +0100 | [diff] [blame] | 337 | * Partitions are not supported on zoned block devices that are used as |
| 338 | * such. |
| 339 | */ |
| 340 | switch (disk->queue->limits.zoned) { |
| 341 | case BLK_ZONED_HM: |
| 342 | pr_warn("%s: partitions not supported on host managed zoned block device\n", |
| 343 | disk->disk_name); |
| 344 | return ERR_PTR(-ENXIO); |
| 345 | case BLK_ZONED_HA: |
| 346 | pr_info("%s: disabling host aware zoned block device support due to partitions\n", |
| 347 | disk->disk_name); |
Damien Le Moal | eafc63a | 2021-01-28 13:47:29 +0900 | [diff] [blame] | 348 | blk_queue_set_zoned(disk, BLK_ZONED_NONE); |
Christoph Hellwig | b720530 | 2020-01-26 14:05:43 +0100 | [diff] [blame] | 349 | break; |
| 350 | case BLK_ZONED_NONE: |
| 351 | break; |
| 352 | } |
| 353 | |
Christoph Hellwig | a33df75 | 2021-01-24 11:02:41 +0100 | [diff] [blame] | 354 | if (xa_load(&disk->part_tbl, partno)) |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 355 | return ERR_PTR(-EBUSY); |
| 356 | |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 357 | bdev = bdev_alloc(disk, partno); |
| 358 | if (!bdev) |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 359 | return ERR_PTR(-ENOMEM); |
Vivek Goyal | c83f6bf | 2012-08-01 12:24:18 +0200 | [diff] [blame] | 360 | |
Christoph Hellwig | 29ff57c | 2020-11-24 09:34:24 +0100 | [diff] [blame] | 361 | bdev->bd_start_sect = start; |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 362 | bdev_set_nr_sectors(bdev, len); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 363 | |
| 364 | if (info) { |
Christoph Hellwig | 231926d | 2020-11-24 12:01:45 +0100 | [diff] [blame] | 365 | err = -ENOMEM; |
| 366 | bdev->bd_meta_info = kmemdup(info, sizeof(*info), GFP_KERNEL); |
| 367 | if (!bdev->bd_meta_info) |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 368 | goto out_bdput; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 369 | } |
| 370 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 371 | pdev = &bdev->bd_device; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 372 | dname = dev_name(ddev); |
| 373 | if (isdigit(dname[strlen(dname) - 1])) |
| 374 | dev_set_name(pdev, "%sp%d", dname, partno); |
| 375 | else |
| 376 | dev_set_name(pdev, "%s%d", dname, partno); |
| 377 | |
| 378 | device_initialize(pdev); |
| 379 | pdev->class = &block_class; |
| 380 | pdev->type = &part_type; |
| 381 | pdev->parent = ddev; |
| 382 | |
Christoph Hellwig | 7c3f828 | 2021-05-21 07:50:51 +0200 | [diff] [blame^] | 383 | /* in consecutive minor range? */ |
| 384 | if (bdev->bd_partno < disk->minors) { |
| 385 | devt = MKDEV(disk->major, disk->first_minor + bdev->bd_partno); |
| 386 | } else { |
| 387 | err = blk_alloc_ext_minor(); |
| 388 | if (err < 0) |
| 389 | goto out_put; |
| 390 | devt = MKDEV(BLOCK_EXT_MAJOR, err); |
| 391 | } |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 392 | pdev->devt = devt; |
| 393 | |
| 394 | /* delay uevent until 'holders' subdir is created */ |
| 395 | dev_set_uevent_suppress(pdev, 1); |
| 396 | err = device_add(pdev); |
| 397 | if (err) |
| 398 | goto out_put; |
| 399 | |
| 400 | err = -ENOMEM; |
Christoph Hellwig | 1bdd5ae | 2020-11-23 19:00:13 +0100 | [diff] [blame] | 401 | bdev->bd_holder_dir = kobject_create_and_add("holders", &pdev->kobj); |
| 402 | if (!bdev->bd_holder_dir) |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 403 | goto out_del; |
| 404 | |
| 405 | dev_set_uevent_suppress(pdev, 0); |
| 406 | if (flags & ADDPART_FLAG_WHOLEDISK) { |
| 407 | err = device_create_file(pdev, &dev_attr_whole_disk); |
| 408 | if (err) |
| 409 | goto out_del; |
| 410 | } |
| 411 | |
| 412 | /* everything is up and running, commence */ |
Christoph Hellwig | a33df75 | 2021-01-24 11:02:41 +0100 | [diff] [blame] | 413 | err = xa_insert(&disk->part_tbl, partno, bdev, GFP_KERNEL); |
| 414 | if (err) |
| 415 | goto out_del; |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 416 | bdev_add(bdev, devt); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 417 | |
| 418 | /* suppress uevent if the disk suppresses it */ |
| 419 | if (!dev_get_uevent_suppress(ddev)) |
| 420 | kobject_uevent(&pdev->kobj, KOBJ_ADD); |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 421 | return bdev; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 422 | |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 423 | out_bdput: |
| 424 | bdput(bdev); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 425 | return ERR_PTR(err); |
| 426 | out_del: |
Christoph Hellwig | 1bdd5ae | 2020-11-23 19:00:13 +0100 | [diff] [blame] | 427 | kobject_put(bdev->bd_holder_dir); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 428 | device_del(pdev); |
| 429 | out_put: |
| 430 | put_device(pdev); |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 431 | return ERR_PTR(err); |
| 432 | } |
| 433 | |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 434 | static bool partition_overlaps(struct gendisk *disk, sector_t start, |
| 435 | sector_t length, int skip_partno) |
| 436 | { |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 437 | struct block_device *part; |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 438 | bool overlap = false; |
Christoph Hellwig | e306912 | 2021-04-06 08:22:58 +0200 | [diff] [blame] | 439 | unsigned long idx; |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 440 | |
Christoph Hellwig | e306912 | 2021-04-06 08:22:58 +0200 | [diff] [blame] | 441 | rcu_read_lock(); |
| 442 | xa_for_each_start(&disk->part_tbl, idx, part, 1) { |
| 443 | if (part->bd_partno != skip_partno && |
| 444 | start < part->bd_start_sect + bdev_nr_sectors(part) && |
| 445 | start + length > part->bd_start_sect) { |
| 446 | overlap = true; |
| 447 | break; |
| 448 | } |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 449 | } |
Christoph Hellwig | e306912 | 2021-04-06 08:22:58 +0200 | [diff] [blame] | 450 | rcu_read_unlock(); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 451 | |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 452 | return overlap; |
| 453 | } |
| 454 | |
| 455 | int bdev_add_partition(struct block_device *bdev, int partno, |
| 456 | sector_t start, sector_t length) |
| 457 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 458 | struct block_device *part; |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 459 | |
| 460 | mutex_lock(&bdev->bd_mutex); |
| 461 | if (partition_overlaps(bdev->bd_disk, start, length, -1)) { |
| 462 | mutex_unlock(&bdev->bd_mutex); |
| 463 | return -EBUSY; |
| 464 | } |
| 465 | |
| 466 | part = add_partition(bdev->bd_disk, partno, start, length, |
| 467 | ADDPART_FLAG_NONE, NULL); |
| 468 | mutex_unlock(&bdev->bd_mutex); |
| 469 | return PTR_ERR_OR_ZERO(part); |
| 470 | } |
| 471 | |
| 472 | int bdev_del_partition(struct block_device *bdev, int partno) |
| 473 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 474 | struct block_device *part; |
Christoph Hellwig | 08fc1ab | 2020-09-01 11:59:41 +0200 | [diff] [blame] | 475 | int ret; |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 476 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 477 | part = bdget_disk(bdev->bd_disk, partno); |
| 478 | if (!part) |
Christoph Hellwig | 88ce2a5 | 2020-09-08 16:15:06 +0200 | [diff] [blame] | 479 | return -ENXIO; |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 480 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 481 | mutex_lock(&part->bd_mutex); |
Christoph Hellwig | 08fc1ab | 2020-09-01 11:59:41 +0200 | [diff] [blame] | 482 | mutex_lock_nested(&bdev->bd_mutex, 1); |
| 483 | |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 484 | ret = -EBUSY; |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 485 | if (part->bd_openers) |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 486 | goto out_unlock; |
| 487 | |
Christoph Hellwig | 8328eb2 | 2020-08-31 20:02:38 +0200 | [diff] [blame] | 488 | delete_partition(part); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 489 | ret = 0; |
| 490 | out_unlock: |
Christoph Hellwig | 08fc1ab | 2020-09-01 11:59:41 +0200 | [diff] [blame] | 491 | mutex_unlock(&bdev->bd_mutex); |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 492 | mutex_unlock(&part->bd_mutex); |
| 493 | bdput(part); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 494 | return ret; |
| 495 | } |
| 496 | |
| 497 | int bdev_resize_partition(struct block_device *bdev, int partno, |
| 498 | sector_t start, sector_t length) |
| 499 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 500 | struct block_device *part; |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 501 | int ret = 0; |
| 502 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 503 | part = bdget_disk(bdev->bd_disk, partno); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 504 | if (!part) |
| 505 | return -ENXIO; |
| 506 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 507 | mutex_lock(&part->bd_mutex); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 508 | mutex_lock_nested(&bdev->bd_mutex, 1); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 509 | ret = -EINVAL; |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 510 | if (start != part->bd_start_sect) |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 511 | goto out_unlock; |
| 512 | |
| 513 | ret = -EBUSY; |
| 514 | if (partition_overlaps(bdev->bd_disk, start, length, partno)) |
| 515 | goto out_unlock; |
| 516 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 517 | bdev_set_nr_sectors(part, length); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 518 | |
| 519 | ret = 0; |
| 520 | out_unlock: |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 521 | mutex_unlock(&part->bd_mutex); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 522 | mutex_unlock(&bdev->bd_mutex); |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 523 | bdput(part); |
Christoph Hellwig | fa9156a | 2020-04-14 09:28:53 +0200 | [diff] [blame] | 524 | return ret; |
| 525 | } |
| 526 | |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 527 | static bool disk_unlock_native_capacity(struct gendisk *disk) |
| 528 | { |
| 529 | const struct block_device_operations *bdops = disk->fops; |
| 530 | |
| 531 | if (bdops->unlock_native_capacity && |
| 532 | !(disk->flags & GENHD_FL_NATIVE_CAPACITY)) { |
| 533 | printk(KERN_CONT "enabling native capacity\n"); |
| 534 | bdops->unlock_native_capacity(disk); |
| 535 | disk->flags |= GENHD_FL_NATIVE_CAPACITY; |
| 536 | return true; |
| 537 | } else { |
| 538 | printk(KERN_CONT "truncated\n"); |
| 539 | return false; |
| 540 | } |
| 541 | } |
| 542 | |
Christoph Hellwig | d3c4a43 | 2021-04-06 08:22:55 +0200 | [diff] [blame] | 543 | void blk_drop_partitions(struct gendisk *disk) |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 544 | { |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 545 | struct block_device *part; |
Christoph Hellwig | 6c4541a8 | 2021-04-06 08:22:57 +0200 | [diff] [blame] | 546 | unsigned long idx; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 547 | |
Christoph Hellwig | c76f48e | 2021-04-06 08:22:56 +0200 | [diff] [blame] | 548 | lockdep_assert_held(&disk->part0->bd_mutex); |
Christoph Hellwig | e669c1d | 2020-04-14 09:28:59 +0200 | [diff] [blame] | 549 | |
Christoph Hellwig | 6c4541a8 | 2021-04-06 08:22:57 +0200 | [diff] [blame] | 550 | xa_for_each_start(&disk->part_tbl, idx, part, 1) { |
| 551 | if (!bdgrab(part)) |
| 552 | continue; |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 553 | delete_partition(part); |
Christoph Hellwig | 6c4541a8 | 2021-04-06 08:22:57 +0200 | [diff] [blame] | 554 | bdput(part); |
| 555 | } |
Jun'ichi Nomura | fe316bf | 2012-03-02 10:38:33 +0100 | [diff] [blame] | 556 | } |
| 557 | |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 558 | static bool blk_add_partition(struct gendisk *disk, struct block_device *bdev, |
| 559 | struct parsed_partitions *state, int p) |
Jun'ichi Nomura | fe316bf | 2012-03-02 10:38:33 +0100 | [diff] [blame] | 560 | { |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 561 | sector_t size = state->parts[p].size; |
| 562 | sector_t from = state->parts[p].from; |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 563 | struct block_device *part; |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 564 | |
| 565 | if (!size) |
| 566 | return true; |
| 567 | |
| 568 | if (from >= get_capacity(disk)) { |
| 569 | printk(KERN_WARNING |
| 570 | "%s: p%d start %llu is beyond EOD, ", |
| 571 | disk->disk_name, p, (unsigned long long) from); |
| 572 | if (disk_unlock_native_capacity(disk)) |
| 573 | return false; |
| 574 | return true; |
Jun'ichi Nomura | fe316bf | 2012-03-02 10:38:33 +0100 | [diff] [blame] | 575 | } |
| 576 | |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 577 | if (from + size > get_capacity(disk)) { |
| 578 | printk(KERN_WARNING |
| 579 | "%s: p%d size %llu extends beyond EOD, ", |
| 580 | disk->disk_name, p, (unsigned long long) size); |
Jun'ichi Nomura | fe316bf | 2012-03-02 10:38:33 +0100 | [diff] [blame] | 581 | |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 582 | if (disk_unlock_native_capacity(disk)) |
| 583 | return false; |
| 584 | |
| 585 | /* |
| 586 | * We can not ignore partitions of broken tables created by for |
| 587 | * example camera firmware, but we limit them to the end of the |
| 588 | * disk to avoid creating invalid block devices. |
| 589 | */ |
| 590 | size = get_capacity(disk) - from; |
| 591 | } |
| 592 | |
| 593 | part = add_partition(disk, p, from, size, state->parts[p].flags, |
| 594 | &state->parts[p].info); |
Christoph Hellwig | b720530 | 2020-01-26 14:05:43 +0100 | [diff] [blame] | 595 | if (IS_ERR(part) && PTR_ERR(part) != -ENXIO) { |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 596 | printk(KERN_ERR " %s: p%d could not be added: %ld\n", |
| 597 | disk->disk_name, p, -PTR_ERR(part)); |
| 598 | return true; |
| 599 | } |
| 600 | |
Christoph Hellwig | 74cc979c | 2020-03-24 08:25:19 +0100 | [diff] [blame] | 601 | if (IS_BUILTIN(CONFIG_BLK_DEV_MD) && |
| 602 | (state->parts[p].flags & ADDPART_FLAG_RAID)) |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 603 | md_autodetect_dev(part->bd_dev); |
Christoph Hellwig | 74cc979c | 2020-03-24 08:25:19 +0100 | [diff] [blame] | 604 | |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 605 | return true; |
| 606 | } |
| 607 | |
Christoph Hellwig | a1548b6 | 2019-11-14 15:34:34 +0100 | [diff] [blame] | 608 | int blk_add_partitions(struct gendisk *disk, struct block_device *bdev) |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 609 | { |
| 610 | struct parsed_partitions *state; |
Christoph Hellwig | a33df75 | 2021-01-24 11:02:41 +0100 | [diff] [blame] | 611 | int ret = -EAGAIN, p; |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 612 | |
Christoph Hellwig | 142fe8f | 2019-11-14 15:34:35 +0100 | [diff] [blame] | 613 | if (!disk_part_scan_enabled(disk)) |
| 614 | return 0; |
| 615 | |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 616 | state = check_partition(disk, bdev); |
| 617 | if (!state) |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 618 | return 0; |
| 619 | if (IS_ERR(state)) { |
| 620 | /* |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 621 | * I/O error reading the partition table. If we tried to read |
| 622 | * beyond EOD, retry after unlocking the native capacity. |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 623 | */ |
| 624 | if (PTR_ERR(state) == -ENOSPC) { |
| 625 | printk(KERN_WARNING "%s: partition table beyond EOD, ", |
| 626 | disk->disk_name); |
| 627 | if (disk_unlock_native_capacity(disk)) |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 628 | return -EAGAIN; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 629 | } |
| 630 | return -EIO; |
| 631 | } |
Damien Le Moal | 5eac3eb | 2019-11-11 11:39:25 +0900 | [diff] [blame] | 632 | |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 633 | /* |
Christoph Hellwig | b720530 | 2020-01-26 14:05:43 +0100 | [diff] [blame] | 634 | * Partitions are not supported on host managed zoned block devices. |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 635 | */ |
Christoph Hellwig | b720530 | 2020-01-26 14:05:43 +0100 | [diff] [blame] | 636 | if (disk->queue->limits.zoned == BLK_ZONED_HM) { |
| 637 | pr_warn("%s: ignoring partition table on host managed zoned block device\n", |
Damien Le Moal | 5eac3eb | 2019-11-11 11:39:25 +0900 | [diff] [blame] | 638 | disk->disk_name); |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 639 | ret = 0; |
| 640 | goto out_free_state; |
Damien Le Moal | 5eac3eb | 2019-11-11 11:39:25 +0900 | [diff] [blame] | 641 | } |
| 642 | |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 643 | /* |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 644 | * If we read beyond EOD, try unlocking native capacity even if the |
| 645 | * partition table was successfully read as we could be missing some |
| 646 | * partitions. |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 647 | */ |
| 648 | if (state->access_beyond_eod) { |
| 649 | printk(KERN_WARNING |
| 650 | "%s: partition table partially beyond EOD, ", |
| 651 | disk->disk_name); |
| 652 | if (disk_unlock_native_capacity(disk)) |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 653 | goto out_free_state; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | /* tell userspace that the media / partition table may have changed */ |
| 657 | kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE); |
| 658 | |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 659 | for (p = 1; p < state->limit; p++) |
| 660 | if (!blk_add_partition(disk, bdev, state, p)) |
| 661 | goto out_free_state; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 662 | |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 663 | ret = 0; |
| 664 | out_free_state: |
Ming Lei | ac2e532 | 2013-02-27 17:05:19 -0800 | [diff] [blame] | 665 | free_partitions(state); |
Christoph Hellwig | f902b02 | 2019-11-14 15:34:32 +0100 | [diff] [blame] | 666 | return ret; |
Jun'ichi Nomura | fe316bf | 2012-03-02 10:38:33 +0100 | [diff] [blame] | 667 | } |
| 668 | |
Christoph Hellwig | 1a9fba3 | 2020-03-24 08:25:18 +0100 | [diff] [blame] | 669 | void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p) |
Dan Williams | d1a5f2b4 | 2016-01-28 20:25:31 -0800 | [diff] [blame] | 670 | { |
Christoph Hellwig | 1a9fba3 | 2020-03-24 08:25:18 +0100 | [diff] [blame] | 671 | struct address_space *mapping = state->bdev->bd_inode->i_mapping; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 672 | struct page *page; |
| 673 | |
Christoph Hellwig | 1a9fba3 | 2020-03-24 08:25:18 +0100 | [diff] [blame] | 674 | if (n >= get_capacity(state->bdev->bd_disk)) { |
| 675 | state->access_beyond_eod = true; |
| 676 | return NULL; |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 677 | } |
Christoph Hellwig | 1a9fba3 | 2020-03-24 08:25:18 +0100 | [diff] [blame] | 678 | |
| 679 | page = read_mapping_page(mapping, |
| 680 | (pgoff_t)(n >> (PAGE_SHIFT - 9)), NULL); |
| 681 | if (IS_ERR(page)) |
| 682 | goto out; |
| 683 | if (PageError(page)) |
| 684 | goto out_put_page; |
| 685 | |
| 686 | p->v = page; |
| 687 | return (unsigned char *)page_address(page) + |
| 688 | ((n & ((1 << (PAGE_SHIFT - 9)) - 1)) << SECTOR_SHIFT); |
| 689 | out_put_page: |
| 690 | put_page(page); |
| 691 | out: |
Al Viro | 94ea415 | 2011-09-16 00:45:36 -0400 | [diff] [blame] | 692 | p->v = NULL; |
| 693 | return NULL; |
| 694 | } |