blob: 334b72ef1d73f36a9ac25d3e59fa762703ae2ff2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Al Viro94ea4152011-09-16 00:45:36 -04002/*
Christoph Hellwig387048b2020-03-24 08:25:30 +01003 * Copyright (C) 1991-1998 Linus Torvalds
4 * Re-organised Feb 1998 Russell King
Christoph Hellwig7b51e702020-12-10 08:55:44 +01005 * Copyright (C) 2020 Christoph Hellwig
Al Viro94ea4152011-09-16 00:45:36 -04006 */
Al Viro94ea4152011-09-16 00:45:36 -04007#include <linux/fs.h>
Christoph Hellwigb81e0c22021-09-20 14:33:25 +02008#include <linux/major.h>
Al Viro94ea4152011-09-16 00:45:36 -04009#include <linux/slab.h>
Al Viro94ea4152011-09-16 00:45:36 -040010#include <linux/ctype.h>
11#include <linux/genhd.h>
Christoph Hellwig387048b2020-03-24 08:25:30 +010012#include <linux/vmalloc.h>
Al Viro94ea4152011-09-16 00:45:36 -040013#include <linux/blktrace_api.h>
Christoph Hellwig74cc979c2020-03-24 08:25:19 +010014#include <linux/raid/detect.h>
Christoph Hellwig387048b2020-03-24 08:25:30 +010015#include "check.h"
Al Viro94ea4152011-09-16 00:45:36 -040016
Christoph Hellwig387048b2020-03-24 08:25:30 +010017static int (*check_part[])(struct parsed_partitions *) = {
18 /*
19 * Probe partition formats with tables at disk address 0
20 * that also have an ADFS boot block at 0xdc0.
21 */
22#ifdef CONFIG_ACORN_PARTITION_ICS
23 adfspart_check_ICS,
24#endif
25#ifdef CONFIG_ACORN_PARTITION_POWERTEC
26 adfspart_check_POWERTEC,
27#endif
28#ifdef CONFIG_ACORN_PARTITION_EESOX
29 adfspart_check_EESOX,
30#endif
31
32 /*
33 * Now move on to formats that only have partition info at
34 * disk address 0xdc0. Since these may also have stale
35 * PC/BIOS partition tables, they need to come before
36 * the msdos entry.
37 */
38#ifdef CONFIG_ACORN_PARTITION_CUMANA
39 adfspart_check_CUMANA,
40#endif
41#ifdef CONFIG_ACORN_PARTITION_ADFS
42 adfspart_check_ADFS,
43#endif
44
45#ifdef CONFIG_CMDLINE_PARTITION
46 cmdline_partition,
47#endif
48#ifdef CONFIG_EFI_PARTITION
49 efi_partition, /* this must come before msdos */
50#endif
51#ifdef CONFIG_SGI_PARTITION
52 sgi_partition,
53#endif
54#ifdef CONFIG_LDM_PARTITION
55 ldm_partition, /* this must come before msdos */
56#endif
57#ifdef CONFIG_MSDOS_PARTITION
58 msdos_partition,
59#endif
60#ifdef CONFIG_OSF_PARTITION
61 osf_partition,
62#endif
63#ifdef CONFIG_SUN_PARTITION
64 sun_partition,
65#endif
66#ifdef CONFIG_AMIGA_PARTITION
67 amiga_partition,
68#endif
69#ifdef CONFIG_ATARI_PARTITION
70 atari_partition,
71#endif
72#ifdef CONFIG_MAC_PARTITION
73 mac_partition,
74#endif
75#ifdef CONFIG_ULTRIX_PARTITION
76 ultrix_partition,
77#endif
78#ifdef CONFIG_IBM_PARTITION
79 ibm_partition,
80#endif
81#ifdef CONFIG_KARMA_PARTITION
82 karma_partition,
83#endif
84#ifdef CONFIG_SYSV68_PARTITION
85 sysv68_partition,
86#endif
87 NULL
88};
89
Christoph Hellwiga7824832020-11-26 18:43:37 +010090static void bdev_set_nr_sectors(struct block_device *bdev, sector_t sectors)
91{
Damien Le Moal0f472272021-03-01 12:04:02 +090092 spin_lock(&bdev->bd_size_lock);
Christoph Hellwiga7824832020-11-26 18:43:37 +010093 i_size_write(bdev->bd_inode, (loff_t)sectors << SECTOR_SHIFT);
Jens Axboef09313c2021-10-18 11:39:45 -060094 bdev->bd_nr_sectors = sectors;
Damien Le Moal0f472272021-03-01 12:04:02 +090095 spin_unlock(&bdev->bd_size_lock);
Christoph Hellwiga7824832020-11-26 18:43:37 +010096}
97
Christoph Hellwig387048b2020-03-24 08:25:30 +010098static struct parsed_partitions *allocate_partitions(struct gendisk *hd)
99{
100 struct parsed_partitions *state;
101 int nr;
102
103 state = kzalloc(sizeof(*state), GFP_KERNEL);
104 if (!state)
105 return NULL;
106
107 nr = disk_max_parts(hd);
108 state->parts = vzalloc(array_size(nr, sizeof(state->parts[0])));
109 if (!state->parts) {
110 kfree(state);
111 return NULL;
112 }
113
114 state->limit = nr;
115
116 return state;
117}
118
119static void free_partitions(struct parsed_partitions *state)
120{
121 vfree(state->parts);
122 kfree(state);
123}
124
Christoph Hellwig03842642021-06-24 14:32:40 +0200125static struct parsed_partitions *check_partition(struct gendisk *hd)
Christoph Hellwig387048b2020-03-24 08:25:30 +0100126{
127 struct parsed_partitions *state;
128 int i, res, err;
129
130 state = allocate_partitions(hd);
131 if (!state)
132 return NULL;
133 state->pp_buf = (char *)__get_free_page(GFP_KERNEL);
134 if (!state->pp_buf) {
135 free_partitions(state);
136 return NULL;
137 }
138 state->pp_buf[0] = '\0';
139
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200140 state->disk = hd;
Christoph Hellwig1d703542021-07-27 08:25:17 +0200141 snprintf(state->name, BDEVNAME_SIZE, "%s", hd->disk_name);
Christoph Hellwig387048b2020-03-24 08:25:30 +0100142 snprintf(state->pp_buf, PAGE_SIZE, " %s:", state->name);
143 if (isdigit(state->name[strlen(state->name)-1]))
144 sprintf(state->name, "p");
145
146 i = res = err = 0;
147 while (!res && check_part[i]) {
148 memset(state->parts, 0, state->limit * sizeof(state->parts[0]));
149 res = check_part[i++](state);
150 if (res < 0) {
151 /*
152 * We have hit an I/O error which we don't report now.
153 * But record it, and let the others do their job.
154 */
155 err = res;
156 res = 0;
157 }
158
159 }
160 if (res > 0) {
161 printk(KERN_INFO "%s", state->pp_buf);
162
163 free_page((unsigned long)state->pp_buf);
164 return state;
165 }
166 if (state->access_beyond_eod)
167 err = -ENOSPC;
168 /*
169 * The partition is unrecognized. So report I/O errors if there were any
170 */
171 if (err)
172 res = err;
173 if (res) {
174 strlcat(state->pp_buf,
175 " unable to read partition table\n", PAGE_SIZE);
176 printk(KERN_INFO "%s", state->pp_buf);
177 }
178
179 free_page((unsigned long)state->pp_buf);
180 free_partitions(state);
181 return ERR_PTR(res);
182}
Al Viro94ea4152011-09-16 00:45:36 -0400183
Al Viro94ea4152011-09-16 00:45:36 -0400184static ssize_t part_partition_show(struct device *dev,
185 struct device_attribute *attr, char *buf)
186{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100187 return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_partno);
Al Viro94ea4152011-09-16 00:45:36 -0400188}
189
190static ssize_t part_start_show(struct device *dev,
191 struct device_attribute *attr, char *buf)
192{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100193 return sprintf(buf, "%llu\n", dev_to_bdev(dev)->bd_start_sect);
Al Viro94ea4152011-09-16 00:45:36 -0400194}
195
Al Viro94ea4152011-09-16 00:45:36 -0400196static ssize_t part_ro_show(struct device *dev,
197 struct device_attribute *attr, char *buf)
198{
Christoph Hellwig52f019d2021-01-09 11:42:51 +0100199 return sprintf(buf, "%d\n", bdev_read_only(dev_to_bdev(dev)));
Al Viro94ea4152011-09-16 00:45:36 -0400200}
201
202static ssize_t part_alignment_offset_show(struct device *dev,
203 struct device_attribute *attr, char *buf)
204{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100205 struct block_device *bdev = dev_to_bdev(dev);
Christoph Hellwig7b8917f2020-08-31 20:02:33 +0200206
207 return sprintf(buf, "%u\n",
Pavel Begunkoved6cdde2021-10-14 15:03:30 +0100208 queue_limit_alignment_offset(&bdev_get_queue(bdev)->limits,
Christoph Hellwig0d021292020-11-27 16:43:51 +0100209 bdev->bd_start_sect));
Al Viro94ea4152011-09-16 00:45:36 -0400210}
211
212static ssize_t part_discard_alignment_show(struct device *dev,
213 struct device_attribute *attr, char *buf)
214{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100215 struct block_device *bdev = dev_to_bdev(dev);
Christoph Hellwig7cf34d92020-08-31 20:02:34 +0200216
217 return sprintf(buf, "%u\n",
Pavel Begunkoved6cdde2021-10-14 15:03:30 +0100218 queue_limit_discard_alignment(&bdev_get_queue(bdev)->limits,
Christoph Hellwig0d021292020-11-27 16:43:51 +0100219 bdev->bd_start_sect));
Al Viro94ea4152011-09-16 00:45:36 -0400220}
221
Joe Perches5657a812018-05-24 13:38:59 -0600222static DEVICE_ATTR(partition, 0444, part_partition_show, NULL);
223static DEVICE_ATTR(start, 0444, part_start_show, NULL);
224static DEVICE_ATTR(size, 0444, part_size_show, NULL);
225static DEVICE_ATTR(ro, 0444, part_ro_show, NULL);
226static DEVICE_ATTR(alignment_offset, 0444, part_alignment_offset_show, NULL);
227static DEVICE_ATTR(discard_alignment, 0444, part_discard_alignment_show, NULL);
228static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
229static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
Al Viro94ea4152011-09-16 00:45:36 -0400230#ifdef CONFIG_FAIL_MAKE_REQUEST
231static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -0600232 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Al Viro94ea4152011-09-16 00:45:36 -0400233#endif
234
235static struct attribute *part_attrs[] = {
236 &dev_attr_partition.attr,
237 &dev_attr_start.attr,
238 &dev_attr_size.attr,
239 &dev_attr_ro.attr,
240 &dev_attr_alignment_offset.attr,
241 &dev_attr_discard_alignment.attr,
242 &dev_attr_stat.attr,
243 &dev_attr_inflight.attr,
244#ifdef CONFIG_FAIL_MAKE_REQUEST
245 &dev_attr_fail.attr,
246#endif
247 NULL
248};
249
250static struct attribute_group part_attr_group = {
251 .attrs = part_attrs,
252};
253
254static const struct attribute_group *part_attr_groups[] = {
255 &part_attr_group,
256#ifdef CONFIG_BLK_DEV_IO_TRACE
257 &blk_trace_attr_group,
258#endif
259 NULL
260};
261
262static void part_release(struct device *dev)
263{
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200264 put_disk(dev_to_bdev(dev)->bd_disk);
Christoph Hellwig2f4731d2021-07-22 09:54:02 +0200265 iput(dev_to_bdev(dev)->bd_inode);
Al Viro94ea4152011-09-16 00:45:36 -0400266}
267
San Mehat0d9c51a2016-03-15 14:53:26 -0700268static int part_uevent(struct device *dev, struct kobj_uevent_env *env)
269{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100270 struct block_device *part = dev_to_bdev(dev);
San Mehat0d9c51a2016-03-15 14:53:26 -0700271
Christoph Hellwig0d021292020-11-27 16:43:51 +0100272 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 Mehat0d9c51a2016-03-15 14:53:26 -0700275 return 0;
276}
277
Al Viro94ea4152011-09-16 00:45:36 -0400278struct device_type part_type = {
279 .name = "partition",
280 .groups = part_attr_groups,
281 .release = part_release,
San Mehat0d9c51a2016-03-15 14:53:26 -0700282 .uevent = part_uevent,
Al Viro94ea4152011-09-16 00:45:36 -0400283};
284
Christoph Hellwigd3c4a432021-04-06 08:22:55 +0200285static void delete_partition(struct block_device *part)
Al Viro94ea4152011-09-16 00:45:36 -0400286{
Christoph Hellwiga45e43c2021-07-22 09:53:55 +0200287 lockdep_assert_held(&part->bd_disk->open_mutex);
288
Christoph Hellwig473338b2021-04-06 08:22:54 +0200289 fsync_bdev(part);
290 __invalidate_device(part, true);
291
Christoph Hellwiga33df752021-01-24 11:02:41 +0100292 xa_erase(&part->bd_disk->part_tbl, part->bd_partno);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100293 kobject_put(part->bd_holder_dir);
294 device_del(&part->bd_device);
Al Viro94ea4152011-09-16 00:45:36 -0400295
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800296 /*
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100297 * Remove the block device from the inode hash, so that it cannot be
298 * looked up any more even when openers still hold references.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800299 */
Christoph Hellwig0d021292020-11-27 16:43:51 +0100300 remove_inode_hash(part->bd_inode);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100301
Christoph Hellwig0d021292020-11-27 16:43:51 +0100302 put_device(&part->bd_device);
Al Viro94ea4152011-09-16 00:45:36 -0400303}
304
305static ssize_t whole_disk_show(struct device *dev,
306 struct device_attribute *attr, char *buf)
307{
308 return 0;
309}
Joe Perches5657a812018-05-24 13:38:59 -0600310static DEVICE_ATTR(whole_disk, 0444, whole_disk_show, NULL);
Al Viro94ea4152011-09-16 00:45:36 -0400311
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -0700312/*
Christoph Hellwiga8698702021-05-25 08:12:56 +0200313 * Must be called either with open_mutex held, before a disk can be opened or
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -0700314 * after all disk users are gone.
315 */
Christoph Hellwig0d021292020-11-27 16:43:51 +0100316static struct block_device *add_partition(struct gendisk *disk, int partno,
Al Viro94ea4152011-09-16 00:45:36 -0400317 sector_t start, sector_t len, int flags,
318 struct partition_meta_info *info)
319{
Al Viro94ea4152011-09-16 00:45:36 -0400320 dev_t devt = MKDEV(0, 0);
321 struct device *ddev = disk_to_dev(disk);
322 struct device *pdev;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100323 struct block_device *bdev;
Al Viro94ea4152011-09-16 00:45:36 -0400324 const char *dname;
325 int err;
326
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200327 lockdep_assert_held(&disk->open_mutex);
328
Ming Leie82fc782021-03-27 15:13:09 +0800329 if (partno >= disk_max_parts(disk))
330 return ERR_PTR(-EINVAL);
331
332 /*
Christoph Hellwigb7205302020-01-26 14:05:43 +0100333 * Partitions are not supported on zoned block devices that are used as
334 * such.
335 */
336 switch (disk->queue->limits.zoned) {
337 case BLK_ZONED_HM:
338 pr_warn("%s: partitions not supported on host managed zoned block device\n",
339 disk->disk_name);
340 return ERR_PTR(-ENXIO);
341 case BLK_ZONED_HA:
342 pr_info("%s: disabling host aware zoned block device support due to partitions\n",
343 disk->disk_name);
Damien Le Moaleafc63a2021-01-28 13:47:29 +0900344 blk_queue_set_zoned(disk, BLK_ZONED_NONE);
Christoph Hellwigb7205302020-01-26 14:05:43 +0100345 break;
346 case BLK_ZONED_NONE:
347 break;
348 }
349
Christoph Hellwiga33df752021-01-24 11:02:41 +0100350 if (xa_load(&disk->part_tbl, partno))
Al Viro94ea4152011-09-16 00:45:36 -0400351 return ERR_PTR(-EBUSY);
352
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200353 /* ensure we always have a reference to the whole disk */
354 get_device(disk_to_dev(disk));
355
356 err = -ENOMEM;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100357 bdev = bdev_alloc(disk, partno);
358 if (!bdev)
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200359 goto out_put_disk;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200360
Christoph Hellwig29ff57c2020-11-24 09:34:24 +0100361 bdev->bd_start_sect = start;
Christoph Hellwiga7824832020-11-26 18:43:37 +0100362 bdev_set_nr_sectors(bdev, len);
Al Viro94ea4152011-09-16 00:45:36 -0400363
Christoph Hellwig0d021292020-11-27 16:43:51 +0100364 pdev = &bdev->bd_device;
Al Viro94ea4152011-09-16 00:45:36 -0400365 dname = dev_name(ddev);
366 if (isdigit(dname[strlen(dname) - 1]))
367 dev_set_name(pdev, "%sp%d", dname, partno);
368 else
369 dev_set_name(pdev, "%s%d", dname, partno);
370
371 device_initialize(pdev);
372 pdev->class = &block_class;
373 pdev->type = &part_type;
374 pdev->parent = ddev;
375
Christoph Hellwig7c3f8282021-05-21 07:50:51 +0200376 /* in consecutive minor range? */
377 if (bdev->bd_partno < disk->minors) {
378 devt = MKDEV(disk->major, disk->first_minor + bdev->bd_partno);
379 } else {
380 err = blk_alloc_ext_minor();
381 if (err < 0)
382 goto out_put;
383 devt = MKDEV(BLOCK_EXT_MAJOR, err);
384 }
Al Viro94ea4152011-09-16 00:45:36 -0400385 pdev->devt = devt;
386
Christoph Hellwig0468c532021-07-22 09:53:57 +0200387 if (info) {
388 err = -ENOMEM;
389 bdev->bd_meta_info = kmemdup(info, sizeof(*info), GFP_KERNEL);
390 if (!bdev->bd_meta_info)
391 goto out_put;
392 }
393
Al Viro94ea4152011-09-16 00:45:36 -0400394 /* 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 Hellwig1bdd5ae2020-11-23 19:00:13 +0100401 bdev->bd_holder_dir = kobject_create_and_add("holders", &pdev->kobj);
402 if (!bdev->bd_holder_dir)
Al Viro94ea4152011-09-16 00:45:36 -0400403 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 Hellwiga33df752021-01-24 11:02:41 +0100413 err = xa_insert(&disk->part_tbl, partno, bdev, GFP_KERNEL);
414 if (err)
415 goto out_del;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100416 bdev_add(bdev, devt);
Al Viro94ea4152011-09-16 00:45:36 -0400417
418 /* suppress uevent if the disk suppresses it */
419 if (!dev_get_uevent_suppress(ddev))
420 kobject_uevent(&pdev->kobj, KOBJ_ADD);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100421 return bdev;
Al Viro94ea4152011-09-16 00:45:36 -0400422
Al Viro94ea4152011-09-16 00:45:36 -0400423out_del:
Christoph Hellwig1bdd5ae2020-11-23 19:00:13 +0100424 kobject_put(bdev->bd_holder_dir);
Al Viro94ea4152011-09-16 00:45:36 -0400425 device_del(pdev);
426out_put:
427 put_device(pdev);
Zqiang9fbfabf2021-10-18 18:34:22 +0800428 return ERR_PTR(err);
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200429out_put_disk:
430 put_disk(disk);
Al Viro94ea4152011-09-16 00:45:36 -0400431 return ERR_PTR(err);
432}
433
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200434static bool partition_overlaps(struct gendisk *disk, sector_t start,
435 sector_t length, int skip_partno)
436{
Christoph Hellwigad1eaa52020-11-24 09:52:59 +0100437 struct block_device *part;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200438 bool overlap = false;
Christoph Hellwige3069122021-04-06 08:22:58 +0200439 unsigned long idx;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200440
Christoph Hellwige3069122021-04-06 08:22:58 +0200441 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 Hellwigfa9156a2020-04-14 09:28:53 +0200449 }
Christoph Hellwige3069122021-04-06 08:22:58 +0200450 rcu_read_unlock();
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200451
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200452 return overlap;
453}
454
Christoph Hellwig7f6be372021-08-10 17:45:10 +0200455int bdev_add_partition(struct gendisk *disk, int partno, sector_t start,
456 sector_t length)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200457{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100458 struct block_device *part;
Yufen Yub5cfbd32021-06-10 10:32:41 +0800459 int ret;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200460
Yufen Yub5cfbd32021-06-10 10:32:41 +0800461 mutex_lock(&disk->open_mutex);
Christoph Hellwig50b4aec2021-08-09 08:40:28 +0200462 if (!disk_live(disk)) {
Yufen Yub5cfbd32021-06-10 10:32:41 +0800463 ret = -ENXIO;
464 goto out;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200465 }
466
Yufen Yub5cfbd32021-06-10 10:32:41 +0800467 if (partition_overlaps(disk, start, length, -1)) {
468 ret = -EBUSY;
469 goto out;
470 }
471
472 part = add_partition(disk, partno, start, length,
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200473 ADDPART_FLAG_NONE, NULL);
Yufen Yub5cfbd32021-06-10 10:32:41 +0800474 ret = PTR_ERR_OR_ZERO(part);
475out:
476 mutex_unlock(&disk->open_mutex);
477 return ret;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200478}
479
Christoph Hellwig926fbb12021-08-10 17:45:11 +0200480int bdev_del_partition(struct gendisk *disk, int partno)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200481{
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200482 struct block_device *part = NULL;
483 int ret = -ENXIO;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200484
Christoph Hellwig926fbb12021-08-10 17:45:11 +0200485 mutex_lock(&disk->open_mutex);
486 part = xa_load(&disk->part_tbl, partno);
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200487 if (!part)
488 goto out_unlock;
Christoph Hellwig08fc1ab2020-09-01 11:59:41 +0200489
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200490 ret = -EBUSY;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100491 if (part->bd_openers)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200492 goto out_unlock;
493
Christoph Hellwig8328eb22020-08-31 20:02:38 +0200494 delete_partition(part);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200495 ret = 0;
496out_unlock:
Christoph Hellwig926fbb12021-08-10 17:45:11 +0200497 mutex_unlock(&disk->open_mutex);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200498 return ret;
499}
500
Christoph Hellwig3d2e7982021-08-10 17:45:12 +0200501int bdev_resize_partition(struct gendisk *disk, int partno, sector_t start,
502 sector_t length)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200503{
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200504 struct block_device *part = NULL;
505 int ret = -ENXIO;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200506
Christoph Hellwig3d2e7982021-08-10 17:45:12 +0200507 mutex_lock(&disk->open_mutex);
508 part = xa_load(&disk->part_tbl, partno);
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200509 if (!part)
510 goto out_unlock;
511
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200512 ret = -EINVAL;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100513 if (start != part->bd_start_sect)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200514 goto out_unlock;
515
516 ret = -EBUSY;
Christoph Hellwig3d2e7982021-08-10 17:45:12 +0200517 if (partition_overlaps(disk, start, length, partno))
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200518 goto out_unlock;
519
Christoph Hellwig0d021292020-11-27 16:43:51 +0100520 bdev_set_nr_sectors(part, length);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200521
522 ret = 0;
523out_unlock:
Christoph Hellwig3d2e7982021-08-10 17:45:12 +0200524 mutex_unlock(&disk->open_mutex);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200525 return ret;
526}
527
Al Viro94ea4152011-09-16 00:45:36 -0400528static bool disk_unlock_native_capacity(struct gendisk *disk)
529{
530 const struct block_device_operations *bdops = disk->fops;
531
532 if (bdops->unlock_native_capacity &&
533 !(disk->flags & GENHD_FL_NATIVE_CAPACITY)) {
534 printk(KERN_CONT "enabling native capacity\n");
535 bdops->unlock_native_capacity(disk);
536 disk->flags |= GENHD_FL_NATIVE_CAPACITY;
537 return true;
538 } else {
539 printk(KERN_CONT "truncated\n");
540 return false;
541 }
542}
543
Christoph Hellwigd3c4a432021-04-06 08:22:55 +0200544void blk_drop_partitions(struct gendisk *disk)
Al Viro94ea4152011-09-16 00:45:36 -0400545{
Christoph Hellwigad1eaa52020-11-24 09:52:59 +0100546 struct block_device *part;
Christoph Hellwig6c4541a82021-04-06 08:22:57 +0200547 unsigned long idx;
Al Viro94ea4152011-09-16 00:45:36 -0400548
Christoph Hellwiga8698702021-05-25 08:12:56 +0200549 lockdep_assert_held(&disk->open_mutex);
Christoph Hellwige669c1d2020-04-14 09:28:59 +0200550
Christoph Hellwig63c38d82021-07-01 10:16:38 +0200551 xa_for_each_start(&disk->part_tbl, idx, part, 1)
Christoph Hellwig0d021292020-11-27 16:43:51 +0100552 delete_partition(part);
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100553}
554
Christoph Hellwig03842642021-06-24 14:32:40 +0200555static bool blk_add_partition(struct gendisk *disk,
Christoph Hellwigf902b022019-11-14 15:34:32 +0100556 struct parsed_partitions *state, int p)
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100557{
Christoph Hellwigf902b022019-11-14 15:34:32 +0100558 sector_t size = state->parts[p].size;
559 sector_t from = state->parts[p].from;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100560 struct block_device *part;
Christoph Hellwigf902b022019-11-14 15:34:32 +0100561
562 if (!size)
563 return true;
564
565 if (from >= get_capacity(disk)) {
566 printk(KERN_WARNING
567 "%s: p%d start %llu is beyond EOD, ",
568 disk->disk_name, p, (unsigned long long) from);
569 if (disk_unlock_native_capacity(disk))
570 return false;
571 return true;
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100572 }
573
Christoph Hellwigf902b022019-11-14 15:34:32 +0100574 if (from + size > get_capacity(disk)) {
575 printk(KERN_WARNING
576 "%s: p%d size %llu extends beyond EOD, ",
577 disk->disk_name, p, (unsigned long long) size);
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100578
Christoph Hellwigf902b022019-11-14 15:34:32 +0100579 if (disk_unlock_native_capacity(disk))
580 return false;
581
582 /*
583 * We can not ignore partitions of broken tables created by for
584 * example camera firmware, but we limit them to the end of the
585 * disk to avoid creating invalid block devices.
586 */
587 size = get_capacity(disk) - from;
588 }
589
590 part = add_partition(disk, p, from, size, state->parts[p].flags,
591 &state->parts[p].info);
Christoph Hellwigb7205302020-01-26 14:05:43 +0100592 if (IS_ERR(part) && PTR_ERR(part) != -ENXIO) {
Christoph Hellwigf902b022019-11-14 15:34:32 +0100593 printk(KERN_ERR " %s: p%d could not be added: %ld\n",
594 disk->disk_name, p, -PTR_ERR(part));
595 return true;
596 }
597
Christoph Hellwig74cc979c2020-03-24 08:25:19 +0100598 if (IS_BUILTIN(CONFIG_BLK_DEV_MD) &&
599 (state->parts[p].flags & ADDPART_FLAG_RAID))
Christoph Hellwig0d021292020-11-27 16:43:51 +0100600 md_autodetect_dev(part->bd_dev);
Christoph Hellwig74cc979c2020-03-24 08:25:19 +0100601
Christoph Hellwigf902b022019-11-14 15:34:32 +0100602 return true;
603}
604
Christoph Hellwig03842642021-06-24 14:32:40 +0200605static int blk_add_partitions(struct gendisk *disk)
Christoph Hellwigf902b022019-11-14 15:34:32 +0100606{
607 struct parsed_partitions *state;
Christoph Hellwiga33df752021-01-24 11:02:41 +0100608 int ret = -EAGAIN, p;
Christoph Hellwigf902b022019-11-14 15:34:32 +0100609
Christoph Hellwig142fe8f2019-11-14 15:34:35 +0100610 if (!disk_part_scan_enabled(disk))
611 return 0;
612
Christoph Hellwig03842642021-06-24 14:32:40 +0200613 state = check_partition(disk);
Christoph Hellwigf902b022019-11-14 15:34:32 +0100614 if (!state)
Al Viro94ea4152011-09-16 00:45:36 -0400615 return 0;
616 if (IS_ERR(state)) {
617 /*
Christoph Hellwigf902b022019-11-14 15:34:32 +0100618 * I/O error reading the partition table. If we tried to read
619 * beyond EOD, retry after unlocking the native capacity.
Al Viro94ea4152011-09-16 00:45:36 -0400620 */
621 if (PTR_ERR(state) == -ENOSPC) {
622 printk(KERN_WARNING "%s: partition table beyond EOD, ",
623 disk->disk_name);
624 if (disk_unlock_native_capacity(disk))
Christoph Hellwigf902b022019-11-14 15:34:32 +0100625 return -EAGAIN;
Al Viro94ea4152011-09-16 00:45:36 -0400626 }
627 return -EIO;
628 }
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900629
Christoph Hellwigf902b022019-11-14 15:34:32 +0100630 /*
Christoph Hellwigb7205302020-01-26 14:05:43 +0100631 * Partitions are not supported on host managed zoned block devices.
Christoph Hellwigf902b022019-11-14 15:34:32 +0100632 */
Christoph Hellwigb7205302020-01-26 14:05:43 +0100633 if (disk->queue->limits.zoned == BLK_ZONED_HM) {
634 pr_warn("%s: ignoring partition table on host managed zoned block device\n",
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900635 disk->disk_name);
Christoph Hellwigf902b022019-11-14 15:34:32 +0100636 ret = 0;
637 goto out_free_state;
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900638 }
639
Al Viro94ea4152011-09-16 00:45:36 -0400640 /*
Christoph Hellwigf902b022019-11-14 15:34:32 +0100641 * If we read beyond EOD, try unlocking native capacity even if the
642 * partition table was successfully read as we could be missing some
643 * partitions.
Al Viro94ea4152011-09-16 00:45:36 -0400644 */
645 if (state->access_beyond_eod) {
646 printk(KERN_WARNING
647 "%s: partition table partially beyond EOD, ",
648 disk->disk_name);
649 if (disk_unlock_native_capacity(disk))
Christoph Hellwigf902b022019-11-14 15:34:32 +0100650 goto out_free_state;
Al Viro94ea4152011-09-16 00:45:36 -0400651 }
652
653 /* tell userspace that the media / partition table may have changed */
654 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
655
Christoph Hellwigf902b022019-11-14 15:34:32 +0100656 for (p = 1; p < state->limit; p++)
Christoph Hellwig03842642021-06-24 14:32:40 +0200657 if (!blk_add_partition(disk, state, p))
Christoph Hellwigf902b022019-11-14 15:34:32 +0100658 goto out_free_state;
Al Viro94ea4152011-09-16 00:45:36 -0400659
Christoph Hellwigf902b022019-11-14 15:34:32 +0100660 ret = 0;
661out_free_state:
Ming Leiac2e5322013-02-27 17:05:19 -0800662 free_partitions(state);
Christoph Hellwigf902b022019-11-14 15:34:32 +0100663 return ret;
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100664}
665
Christoph Hellwig03842642021-06-24 14:32:40 +0200666int bdev_disk_changed(struct gendisk *disk, bool invalidate)
Christoph Hellwig630161c2021-06-24 14:32:39 +0200667{
Christoph Hellwig630161c2021-06-24 14:32:39 +0200668 int ret = 0;
669
670 lockdep_assert_held(&disk->open_mutex);
671
Christoph Hellwig50b4aec2021-08-09 08:40:28 +0200672 if (!disk_live(disk))
Christoph Hellwig630161c2021-06-24 14:32:39 +0200673 return -ENXIO;
674
675rescan:
676 if (disk->open_partitions)
677 return -EBUSY;
Christoph Hellwig03842642021-06-24 14:32:40 +0200678 sync_blockdev(disk->part0);
679 invalidate_bdev(disk->part0);
Christoph Hellwig630161c2021-06-24 14:32:39 +0200680 blk_drop_partitions(disk);
681
682 clear_bit(GD_NEED_PART_SCAN, &disk->state);
683
684 /*
685 * Historically we only set the capacity to zero for devices that
686 * support partitions (independ of actually having partitions created).
687 * Doing that is rather inconsistent, but changing it broke legacy
688 * udisks polling for legacy ide-cdrom devices. Use the crude check
689 * below to get the sane behavior for most device while not breaking
690 * userspace for this particular setup.
691 */
692 if (invalidate) {
693 if (disk_part_scan_enabled(disk) ||
694 !(disk->flags & GENHD_FL_REMOVABLE))
695 set_capacity(disk, 0);
696 }
697
698 if (get_capacity(disk)) {
Christoph Hellwig03842642021-06-24 14:32:40 +0200699 ret = blk_add_partitions(disk);
Christoph Hellwig630161c2021-06-24 14:32:39 +0200700 if (ret == -EAGAIN)
701 goto rescan;
702 } else if (invalidate) {
703 /*
704 * Tell userspace that the media / partition table may have
705 * changed.
706 */
707 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
708 }
709
710 return ret;
711}
712/*
713 * Only exported for loop and dasd for historic reasons. Don't use in new
714 * code!
715 */
716EXPORT_SYMBOL_GPL(bdev_disk_changed);
717
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100718void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p)
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800719{
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200720 struct address_space *mapping = state->disk->part0->bd_inode->i_mapping;
Al Viro94ea4152011-09-16 00:45:36 -0400721 struct page *page;
722
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200723 if (n >= get_capacity(state->disk)) {
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100724 state->access_beyond_eod = true;
725 return NULL;
Al Viro94ea4152011-09-16 00:45:36 -0400726 }
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100727
728 page = read_mapping_page(mapping,
729 (pgoff_t)(n >> (PAGE_SHIFT - 9)), NULL);
730 if (IS_ERR(page))
731 goto out;
732 if (PageError(page))
733 goto out_put_page;
734
735 p->v = page;
736 return (unsigned char *)page_address(page) +
737 ((n & ((1 << (PAGE_SHIFT - 9)) - 1)) << SECTOR_SHIFT);
738out_put_page:
739 put_page(page);
740out:
Al Viro94ea4152011-09-16 00:45:36 -0400741 p->v = NULL;
742 return NULL;
743}