block: constify partition prober array
[linux-block.git] / block / partitions / core.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
94ea4158 2/*
387048bf
CH
3 * Copyright (C) 1991-1998 Linus Torvalds
4 * Re-organised Feb 1998 Russell King
7b51e703 5 * Copyright (C) 2020 Christoph Hellwig
94ea4158 6 */
94ea4158 7#include <linux/fs.h>
b81e0c23 8#include <linux/major.h>
94ea4158 9#include <linux/slab.h>
94ea4158 10#include <linux/ctype.h>
387048bf 11#include <linux/vmalloc.h>
74cc979c 12#include <linux/raid/detect.h>
387048bf
CH
13#include "check.h"
14
539050f9 15static int (*const check_part[])(struct parsed_partitions *) = {
387048bf
CH
16 /*
17 * Probe partition formats with tables at disk address 0
18 * that also have an ADFS boot block at 0xdc0.
19 */
20#ifdef CONFIG_ACORN_PARTITION_ICS
21 adfspart_check_ICS,
22#endif
23#ifdef CONFIG_ACORN_PARTITION_POWERTEC
24 adfspart_check_POWERTEC,
25#endif
26#ifdef CONFIG_ACORN_PARTITION_EESOX
27 adfspart_check_EESOX,
28#endif
29
30 /*
31 * Now move on to formats that only have partition info at
32 * disk address 0xdc0. Since these may also have stale
33 * PC/BIOS partition tables, they need to come before
34 * the msdos entry.
35 */
36#ifdef CONFIG_ACORN_PARTITION_CUMANA
37 adfspart_check_CUMANA,
38#endif
39#ifdef CONFIG_ACORN_PARTITION_ADFS
40 adfspart_check_ADFS,
41#endif
42
43#ifdef CONFIG_CMDLINE_PARTITION
44 cmdline_partition,
45#endif
46#ifdef CONFIG_EFI_PARTITION
47 efi_partition, /* this must come before msdos */
48#endif
49#ifdef CONFIG_SGI_PARTITION
50 sgi_partition,
51#endif
52#ifdef CONFIG_LDM_PARTITION
53 ldm_partition, /* this must come before msdos */
54#endif
55#ifdef CONFIG_MSDOS_PARTITION
56 msdos_partition,
57#endif
58#ifdef CONFIG_OSF_PARTITION
59 osf_partition,
60#endif
61#ifdef CONFIG_SUN_PARTITION
62 sun_partition,
63#endif
64#ifdef CONFIG_AMIGA_PARTITION
65 amiga_partition,
66#endif
67#ifdef CONFIG_ATARI_PARTITION
68 atari_partition,
69#endif
70#ifdef CONFIG_MAC_PARTITION
71 mac_partition,
72#endif
73#ifdef CONFIG_ULTRIX_PARTITION
74 ultrix_partition,
75#endif
76#ifdef CONFIG_IBM_PARTITION
77 ibm_partition,
78#endif
79#ifdef CONFIG_KARMA_PARTITION
80 karma_partition,
81#endif
82#ifdef CONFIG_SYSV68_PARTITION
83 sysv68_partition,
84#endif
85 NULL
86};
87
88static struct parsed_partitions *allocate_partitions(struct gendisk *hd)
89{
90 struct parsed_partitions *state;
1ebe2e5f 91 int nr = DISK_MAX_PARTS;
387048bf
CH
92
93 state = kzalloc(sizeof(*state), GFP_KERNEL);
94 if (!state)
95 return NULL;
96
387048bf
CH
97 state->parts = vzalloc(array_size(nr, sizeof(state->parts[0])));
98 if (!state->parts) {
99 kfree(state);
100 return NULL;
101 }
102
103 state->limit = nr;
104
105 return state;
106}
107
108static void free_partitions(struct parsed_partitions *state)
109{
110 vfree(state->parts);
111 kfree(state);
112}
113
0384264e 114static struct parsed_partitions *check_partition(struct gendisk *hd)
387048bf
CH
115{
116 struct parsed_partitions *state;
117 int i, res, err;
118
119 state = allocate_partitions(hd);
120 if (!state)
121 return NULL;
122 state->pp_buf = (char *)__get_free_page(GFP_KERNEL);
123 if (!state->pp_buf) {
124 free_partitions(state);
125 return NULL;
126 }
127 state->pp_buf[0] = '\0';
128
a08aa9bc 129 state->disk = hd;
1d703547 130 snprintf(state->name, BDEVNAME_SIZE, "%s", hd->disk_name);
387048bf
CH
131 snprintf(state->pp_buf, PAGE_SIZE, " %s:", state->name);
132 if (isdigit(state->name[strlen(state->name)-1]))
133 sprintf(state->name, "p");
134
135 i = res = err = 0;
136 while (!res && check_part[i]) {
137 memset(state->parts, 0, state->limit * sizeof(state->parts[0]));
138 res = check_part[i++](state);
139 if (res < 0) {
140 /*
141 * We have hit an I/O error which we don't report now.
142 * But record it, and let the others do their job.
143 */
144 err = res;
145 res = 0;
146 }
147
148 }
149 if (res > 0) {
150 printk(KERN_INFO "%s", state->pp_buf);
151
152 free_page((unsigned long)state->pp_buf);
153 return state;
154 }
155 if (state->access_beyond_eod)
156 err = -ENOSPC;
157 /*
158 * The partition is unrecognized. So report I/O errors if there were any
159 */
160 if (err)
161 res = err;
162 if (res) {
163 strlcat(state->pp_buf,
164 " unable to read partition table\n", PAGE_SIZE);
165 printk(KERN_INFO "%s", state->pp_buf);
166 }
94ea4158 167
387048bf
CH
168 free_page((unsigned long)state->pp_buf);
169 free_partitions(state);
170 return ERR_PTR(res);
171}
94ea4158 172
94ea4158
AV
173static ssize_t part_partition_show(struct device *dev,
174 struct device_attribute *attr, char *buf)
175{
0d02129e 176 return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_partno);
94ea4158
AV
177}
178
179static ssize_t part_start_show(struct device *dev,
180 struct device_attribute *attr, char *buf)
181{
0d02129e 182 return sprintf(buf, "%llu\n", dev_to_bdev(dev)->bd_start_sect);
94ea4158
AV
183}
184
94ea4158
AV
185static ssize_t part_ro_show(struct device *dev,
186 struct device_attribute *attr, char *buf)
187{
52f019d4 188 return sprintf(buf, "%d\n", bdev_read_only(dev_to_bdev(dev)));
94ea4158
AV
189}
190
191static ssize_t part_alignment_offset_show(struct device *dev,
192 struct device_attribute *attr, char *buf)
193{
64dcc7c2 194 return sprintf(buf, "%u\n", bdev_alignment_offset(dev_to_bdev(dev)));
94ea4158
AV
195}
196
197static ssize_t part_discard_alignment_show(struct device *dev,
198 struct device_attribute *attr, char *buf)
199{
f0f975a4 200 return sprintf(buf, "%u\n", bdev_discard_alignment(dev_to_bdev(dev)));
94ea4158
AV
201}
202
5657a819
JP
203static DEVICE_ATTR(partition, 0444, part_partition_show, NULL);
204static DEVICE_ATTR(start, 0444, part_start_show, NULL);
205static DEVICE_ATTR(size, 0444, part_size_show, NULL);
206static DEVICE_ATTR(ro, 0444, part_ro_show, NULL);
207static DEVICE_ATTR(alignment_offset, 0444, part_alignment_offset_show, NULL);
208static DEVICE_ATTR(discard_alignment, 0444, part_discard_alignment_show, NULL);
209static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
210static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
94ea4158
AV
211#ifdef CONFIG_FAIL_MAKE_REQUEST
212static struct device_attribute dev_attr_fail =
5657a819 213 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
94ea4158
AV
214#endif
215
216static struct attribute *part_attrs[] = {
217 &dev_attr_partition.attr,
218 &dev_attr_start.attr,
219 &dev_attr_size.attr,
220 &dev_attr_ro.attr,
221 &dev_attr_alignment_offset.attr,
222 &dev_attr_discard_alignment.attr,
223 &dev_attr_stat.attr,
224 &dev_attr_inflight.attr,
225#ifdef CONFIG_FAIL_MAKE_REQUEST
226 &dev_attr_fail.attr,
227#endif
228 NULL
229};
230
231static struct attribute_group part_attr_group = {
232 .attrs = part_attrs,
233};
234
235static const struct attribute_group *part_attr_groups[] = {
236 &part_attr_group,
237#ifdef CONFIG_BLK_DEV_IO_TRACE
238 &blk_trace_attr_group,
239#endif
240 NULL
241};
242
243static void part_release(struct device *dev)
244{
9d3b8813 245 put_disk(dev_to_bdev(dev)->bd_disk);
2f4731dc 246 iput(dev_to_bdev(dev)->bd_inode);
94ea4158
AV
247}
248
162736b0 249static int part_uevent(const struct device *dev, struct kobj_uevent_env *env)
0d9c51a6 250{
162736b0 251 const struct block_device *part = dev_to_bdev(dev);
0d9c51a6 252
0d02129e
CH
253 add_uevent_var(env, "PARTN=%u", part->bd_partno);
254 if (part->bd_meta_info && part->bd_meta_info->volname[0])
255 add_uevent_var(env, "PARTNAME=%s", part->bd_meta_info->volname);
0d9c51a6
SM
256 return 0;
257}
258
94ea4158
AV
259struct device_type part_type = {
260 .name = "partition",
261 .groups = part_attr_groups,
262 .release = part_release,
0d9c51a6 263 .uevent = part_uevent,
94ea4158
AV
264};
265
d3c4a43d 266static void delete_partition(struct block_device *part)
94ea4158 267{
a45e43ca
CH
268 lockdep_assert_held(&part->bd_disk->open_mutex);
269
473338be
CH
270 fsync_bdev(part);
271 __invalidate_device(part, true);
272
a33df75c 273 xa_erase(&part->bd_disk->part_tbl, part->bd_partno);
0d02129e
CH
274 kobject_put(part->bd_holder_dir);
275 device_del(&part->bd_device);
94ea4158 276
6fcc44d1 277 /*
22ae8ce8
CH
278 * Remove the block device from the inode hash, so that it cannot be
279 * looked up any more even when openers still hold references.
6fcc44d1 280 */
0d02129e 281 remove_inode_hash(part->bd_inode);
22ae8ce8 282
0d02129e 283 put_device(&part->bd_device);
94ea4158
AV
284}
285
286static ssize_t whole_disk_show(struct device *dev,
287 struct device_attribute *attr, char *buf)
288{
289 return 0;
290}
5657a819 291static DEVICE_ATTR(whole_disk, 0444, whole_disk_show, NULL);
94ea4158 292
6d2cf6f2 293/*
a8698707 294 * Must be called either with open_mutex held, before a disk can be opened or
6d2cf6f2
BVA
295 * after all disk users are gone.
296 */
0d02129e 297static struct block_device *add_partition(struct gendisk *disk, int partno,
94ea4158
AV
298 sector_t start, sector_t len, int flags,
299 struct partition_meta_info *info)
300{
94ea4158
AV
301 dev_t devt = MKDEV(0, 0);
302 struct device *ddev = disk_to_dev(disk);
303 struct device *pdev;
22ae8ce8 304 struct block_device *bdev;
94ea4158
AV
305 const char *dname;
306 int err;
307
0e0ccdec
CH
308 lockdep_assert_held(&disk->open_mutex);
309
1ebe2e5f 310 if (partno >= DISK_MAX_PARTS)
e82fc785
ML
311 return ERR_PTR(-EINVAL);
312
b7205307
CH
313 /*
314 * Partitions are not supported on zoned block devices that are used as
315 * such.
316 */
317 switch (disk->queue->limits.zoned) {
318 case BLK_ZONED_HM:
319 pr_warn("%s: partitions not supported on host managed zoned block device\n",
320 disk->disk_name);
321 return ERR_PTR(-ENXIO);
322 case BLK_ZONED_HA:
323 pr_info("%s: disabling host aware zoned block device support due to partitions\n",
324 disk->disk_name);
6b2bd274 325 disk_set_zoned(disk, BLK_ZONED_NONE);
b7205307
CH
326 break;
327 case BLK_ZONED_NONE:
328 break;
329 }
330
a33df75c 331 if (xa_load(&disk->part_tbl, partno))
94ea4158
AV
332 return ERR_PTR(-EBUSY);
333
9d3b8813
CH
334 /* ensure we always have a reference to the whole disk */
335 get_device(disk_to_dev(disk));
336
337 err = -ENOMEM;
22ae8ce8
CH
338 bdev = bdev_alloc(disk, partno);
339 if (!bdev)
9d3b8813 340 goto out_put_disk;
c83f6bf9 341
29ff57c6 342 bdev->bd_start_sect = start;
a782483c 343 bdev_set_nr_sectors(bdev, len);
94ea4158 344
0d02129e 345 pdev = &bdev->bd_device;
94ea4158
AV
346 dname = dev_name(ddev);
347 if (isdigit(dname[strlen(dname) - 1]))
348 dev_set_name(pdev, "%sp%d", dname, partno);
349 else
350 dev_set_name(pdev, "%s%d", dname, partno);
351
352 device_initialize(pdev);
353 pdev->class = &block_class;
354 pdev->type = &part_type;
355 pdev->parent = ddev;
356
7c3f828b
CH
357 /* in consecutive minor range? */
358 if (bdev->bd_partno < disk->minors) {
359 devt = MKDEV(disk->major, disk->first_minor + bdev->bd_partno);
360 } else {
361 err = blk_alloc_ext_minor();
362 if (err < 0)
363 goto out_put;
364 devt = MKDEV(BLOCK_EXT_MAJOR, err);
365 }
94ea4158
AV
366 pdev->devt = devt;
367
0468c532
CH
368 if (info) {
369 err = -ENOMEM;
370 bdev->bd_meta_info = kmemdup(info, sizeof(*info), GFP_KERNEL);
371 if (!bdev->bd_meta_info)
372 goto out_put;
373 }
374
94ea4158
AV
375 /* delay uevent until 'holders' subdir is created */
376 dev_set_uevent_suppress(pdev, 1);
377 err = device_add(pdev);
378 if (err)
379 goto out_put;
380
381 err = -ENOMEM;
1bdd5ae0
CH
382 bdev->bd_holder_dir = kobject_create_and_add("holders", &pdev->kobj);
383 if (!bdev->bd_holder_dir)
94ea4158
AV
384 goto out_del;
385
386 dev_set_uevent_suppress(pdev, 0);
387 if (flags & ADDPART_FLAG_WHOLEDISK) {
388 err = device_create_file(pdev, &dev_attr_whole_disk);
389 if (err)
390 goto out_del;
391 }
392
393 /* everything is up and running, commence */
a33df75c
CH
394 err = xa_insert(&disk->part_tbl, partno, bdev, GFP_KERNEL);
395 if (err)
396 goto out_del;
22ae8ce8 397 bdev_add(bdev, devt);
94ea4158
AV
398
399 /* suppress uevent if the disk suppresses it */
400 if (!dev_get_uevent_suppress(ddev))
401 kobject_uevent(&pdev->kobj, KOBJ_ADD);
0d02129e 402 return bdev;
94ea4158 403
94ea4158 404out_del:
1bdd5ae0 405 kobject_put(bdev->bd_holder_dir);
94ea4158
AV
406 device_del(pdev);
407out_put:
408 put_device(pdev);
9fbfabfd 409 return ERR_PTR(err);
9d3b8813
CH
410out_put_disk:
411 put_disk(disk);
94ea4158
AV
412 return ERR_PTR(err);
413}
414
fa9156ae
CH
415static bool partition_overlaps(struct gendisk *disk, sector_t start,
416 sector_t length, int skip_partno)
417{
ad1eaa53 418 struct block_device *part;
fa9156ae 419 bool overlap = false;
e3069123
CH
420 unsigned long idx;
421
422 rcu_read_lock();
423 xa_for_each_start(&disk->part_tbl, idx, part, 1) {
424 if (part->bd_partno != skip_partno &&
425 start < part->bd_start_sect + bdev_nr_sectors(part) &&
426 start + length > part->bd_start_sect) {
427 overlap = true;
428 break;
429 }
fa9156ae 430 }
e3069123 431 rcu_read_unlock();
fa9156ae 432
fa9156ae
CH
433 return overlap;
434}
435
7f6be376
CH
436int bdev_add_partition(struct gendisk *disk, int partno, sector_t start,
437 sector_t length)
fa9156ae 438{
0d02129e 439 struct block_device *part;
b5cfbd35 440 int ret;
fa9156ae 441
b5cfbd35 442 mutex_lock(&disk->open_mutex);
50b4aecf 443 if (!disk_live(disk)) {
b5cfbd35
YY
444 ret = -ENXIO;
445 goto out;
446 }
447
448 if (partition_overlaps(disk, start, length, -1)) {
449 ret = -EBUSY;
450 goto out;
fa9156ae
CH
451 }
452
b5cfbd35 453 part = add_partition(disk, partno, start, length,
fa9156ae 454 ADDPART_FLAG_NONE, NULL);
b5cfbd35
YY
455 ret = PTR_ERR_OR_ZERO(part);
456out:
457 mutex_unlock(&disk->open_mutex);
458 return ret;
fa9156ae
CH
459}
460
926fbb16 461int bdev_del_partition(struct gendisk *disk, int partno)
fa9156ae 462{
0e0ccdec
CH
463 struct block_device *part = NULL;
464 int ret = -ENXIO;
fa9156ae 465
926fbb16
CH
466 mutex_lock(&disk->open_mutex);
467 part = xa_load(&disk->part_tbl, partno);
0e0ccdec
CH
468 if (!part)
469 goto out_unlock;
08fc1ab6 470
fa9156ae 471 ret = -EBUSY;
9acf381f 472 if (atomic_read(&part->bd_openers))
fa9156ae
CH
473 goto out_unlock;
474
8328eb28 475 delete_partition(part);
fa9156ae
CH
476 ret = 0;
477out_unlock:
926fbb16 478 mutex_unlock(&disk->open_mutex);
fa9156ae
CH
479 return ret;
480}
481
3d2e7989
CH
482int bdev_resize_partition(struct gendisk *disk, int partno, sector_t start,
483 sector_t length)
fa9156ae 484{
0e0ccdec
CH
485 struct block_device *part = NULL;
486 int ret = -ENXIO;
fa9156ae 487
3d2e7989
CH
488 mutex_lock(&disk->open_mutex);
489 part = xa_load(&disk->part_tbl, partno);
fa9156ae 490 if (!part)
0e0ccdec 491 goto out_unlock;
fa9156ae 492
fa9156ae 493 ret = -EINVAL;
0d02129e 494 if (start != part->bd_start_sect)
fa9156ae
CH
495 goto out_unlock;
496
497 ret = -EBUSY;
3d2e7989 498 if (partition_overlaps(disk, start, length, partno))
fa9156ae
CH
499 goto out_unlock;
500
0d02129e 501 bdev_set_nr_sectors(part, length);
fa9156ae
CH
502
503 ret = 0;
504out_unlock:
3d2e7989 505 mutex_unlock(&disk->open_mutex);
fa9156ae
CH
506 return ret;
507}
508
94ea4158
AV
509static bool disk_unlock_native_capacity(struct gendisk *disk)
510{
86416916
CH
511 if (!disk->fops->unlock_native_capacity ||
512 test_and_set_bit(GD_NATIVE_CAPACITY, &disk->state)) {
94ea4158
AV
513 printk(KERN_CONT "truncated\n");
514 return false;
515 }
86416916
CH
516
517 printk(KERN_CONT "enabling native capacity\n");
518 disk->fops->unlock_native_capacity(disk);
519 return true;
94ea4158
AV
520}
521
d3c4a43d 522void blk_drop_partitions(struct gendisk *disk)
94ea4158 523{
ad1eaa53 524 struct block_device *part;
6c4541a8 525 unsigned long idx;
94ea4158 526
a8698707 527 lockdep_assert_held(&disk->open_mutex);
e669c1da 528
63c38d85 529 xa_for_each_start(&disk->part_tbl, idx, part, 1)
0d02129e 530 delete_partition(part);
fe316bf2
JN
531}
532
0384264e 533static bool blk_add_partition(struct gendisk *disk,
f902b026 534 struct parsed_partitions *state, int p)
fe316bf2 535{
f902b026
CH
536 sector_t size = state->parts[p].size;
537 sector_t from = state->parts[p].from;
0d02129e 538 struct block_device *part;
f902b026
CH
539
540 if (!size)
541 return true;
542
543 if (from >= get_capacity(disk)) {
544 printk(KERN_WARNING
545 "%s: p%d start %llu is beyond EOD, ",
546 disk->disk_name, p, (unsigned long long) from);
547 if (disk_unlock_native_capacity(disk))
548 return false;
549 return true;
fe316bf2
JN
550 }
551
f902b026
CH
552 if (from + size > get_capacity(disk)) {
553 printk(KERN_WARNING
554 "%s: p%d size %llu extends beyond EOD, ",
555 disk->disk_name, p, (unsigned long long) size);
fe316bf2 556
f902b026
CH
557 if (disk_unlock_native_capacity(disk))
558 return false;
559
560 /*
561 * We can not ignore partitions of broken tables created by for
562 * example camera firmware, but we limit them to the end of the
563 * disk to avoid creating invalid block devices.
564 */
565 size = get_capacity(disk) - from;
566 }
567
568 part = add_partition(disk, p, from, size, state->parts[p].flags,
569 &state->parts[p].info);
b7205307 570 if (IS_ERR(part) && PTR_ERR(part) != -ENXIO) {
f902b026
CH
571 printk(KERN_ERR " %s: p%d could not be added: %ld\n",
572 disk->disk_name, p, -PTR_ERR(part));
573 return true;
574 }
575
74cc979c
CH
576 if (IS_BUILTIN(CONFIG_BLK_DEV_MD) &&
577 (state->parts[p].flags & ADDPART_FLAG_RAID))
0d02129e 578 md_autodetect_dev(part->bd_dev);
74cc979c 579
f902b026
CH
580 return true;
581}
582
0384264e 583static int blk_add_partitions(struct gendisk *disk)
f902b026
CH
584{
585 struct parsed_partitions *state;
a33df75c 586 int ret = -EAGAIN, p;
fe316bf2 587
1ebe2e5f 588 if (disk->flags & GENHD_FL_NO_PART)
142fe8f4
CH
589 return 0;
590
748008e1
ML
591 if (test_bit(GD_SUPPRESS_PART_SCAN, &disk->state))
592 return 0;
593
0384264e 594 state = check_partition(disk);
f902b026 595 if (!state)
94ea4158
AV
596 return 0;
597 if (IS_ERR(state)) {
598 /*
f902b026
CH
599 * I/O error reading the partition table. If we tried to read
600 * beyond EOD, retry after unlocking the native capacity.
94ea4158
AV
601 */
602 if (PTR_ERR(state) == -ENOSPC) {
603 printk(KERN_WARNING "%s: partition table beyond EOD, ",
604 disk->disk_name);
605 if (disk_unlock_native_capacity(disk))
f902b026 606 return -EAGAIN;
94ea4158
AV
607 }
608 return -EIO;
609 }
5eac3eb3 610
f902b026 611 /*
b7205307 612 * Partitions are not supported on host managed zoned block devices.
f902b026 613 */
b7205307
CH
614 if (disk->queue->limits.zoned == BLK_ZONED_HM) {
615 pr_warn("%s: ignoring partition table on host managed zoned block device\n",
5eac3eb3 616 disk->disk_name);
f902b026
CH
617 ret = 0;
618 goto out_free_state;
5eac3eb3
DLM
619 }
620
94ea4158 621 /*
f902b026
CH
622 * If we read beyond EOD, try unlocking native capacity even if the
623 * partition table was successfully read as we could be missing some
624 * partitions.
94ea4158
AV
625 */
626 if (state->access_beyond_eod) {
627 printk(KERN_WARNING
628 "%s: partition table partially beyond EOD, ",
629 disk->disk_name);
630 if (disk_unlock_native_capacity(disk))
f902b026 631 goto out_free_state;
94ea4158
AV
632 }
633
634 /* tell userspace that the media / partition table may have changed */
635 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
636
f902b026 637 for (p = 1; p < state->limit; p++)
0384264e 638 if (!blk_add_partition(disk, state, p))
f902b026 639 goto out_free_state;
94ea4158 640
f902b026
CH
641 ret = 0;
642out_free_state:
ac2e5327 643 free_partitions(state);
f902b026 644 return ret;
fe316bf2
JN
645}
646
0384264e 647int bdev_disk_changed(struct gendisk *disk, bool invalidate)
630161cf 648{
630161cf
CH
649 int ret = 0;
650
651 lockdep_assert_held(&disk->open_mutex);
652
50b4aecf 653 if (!disk_live(disk))
630161cf
CH
654 return -ENXIO;
655
656rescan:
657 if (disk->open_partitions)
658 return -EBUSY;
0384264e
CH
659 sync_blockdev(disk->part0);
660 invalidate_bdev(disk->part0);
630161cf
CH
661 blk_drop_partitions(disk);
662
663 clear_bit(GD_NEED_PART_SCAN, &disk->state);
664
665 /*
666 * Historically we only set the capacity to zero for devices that
667 * support partitions (independ of actually having partitions created).
668 * Doing that is rather inconsistent, but changing it broke legacy
669 * udisks polling for legacy ide-cdrom devices. Use the crude check
670 * below to get the sane behavior for most device while not breaking
671 * userspace for this particular setup.
672 */
673 if (invalidate) {
1ebe2e5f 674 if (!(disk->flags & GENHD_FL_NO_PART) ||
630161cf
CH
675 !(disk->flags & GENHD_FL_REMOVABLE))
676 set_capacity(disk, 0);
677 }
678
679 if (get_capacity(disk)) {
0384264e 680 ret = blk_add_partitions(disk);
630161cf
CH
681 if (ret == -EAGAIN)
682 goto rescan;
683 } else if (invalidate) {
684 /*
685 * Tell userspace that the media / partition table may have
686 * changed.
687 */
688 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
689 }
690
691 return ret;
692}
693/*
694 * Only exported for loop and dasd for historic reasons. Don't use in new
695 * code!
696 */
697EXPORT_SYMBOL_GPL(bdev_disk_changed);
698
1a9fba3a 699void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p)
d1a5f2b4 700{
a08aa9bc 701 struct address_space *mapping = state->disk->part0->bd_inode->i_mapping;
4fdc08d4 702 struct folio *folio;
94ea4158 703
a08aa9bc 704 if (n >= get_capacity(state->disk)) {
1a9fba3a 705 state->access_beyond_eod = true;
98d8ba69 706 goto out;
94ea4158 707 }
1a9fba3a 708
4fdc08d4
MWO
709 folio = read_mapping_folio(mapping, n >> PAGE_SECTORS_SHIFT, NULL);
710 if (IS_ERR(folio))
1a9fba3a 711 goto out;
1a9fba3a 712
4fdc08d4
MWO
713 p->v = folio;
714 return folio_address(folio) + offset_in_folio(folio, n * SECTOR_SIZE);
1a9fba3a 715out:
94ea4158
AV
716 p->v = NULL;
717 return NULL;
718}