blob: c2a1635922b1c39390a971da6a1047929fbb9592 [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;
Christoph Hellwig1ebe2e52021-11-22 14:06:22 +0100101 int nr = DISK_MAX_PARTS;
Christoph Hellwig387048b2020-03-24 08:25:30 +0100102
103 state = kzalloc(sizeof(*state), GFP_KERNEL);
104 if (!state)
105 return NULL;
106
Christoph Hellwig387048b2020-03-24 08:25:30 +0100107 state->parts = vzalloc(array_size(nr, sizeof(state->parts[0])));
108 if (!state->parts) {
109 kfree(state);
110 return NULL;
111 }
112
113 state->limit = nr;
114
115 return state;
116}
117
118static void free_partitions(struct parsed_partitions *state)
119{
120 vfree(state->parts);
121 kfree(state);
122}
123
Christoph Hellwig03842642021-06-24 14:32:40 +0200124static struct parsed_partitions *check_partition(struct gendisk *hd)
Christoph Hellwig387048b2020-03-24 08:25:30 +0100125{
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
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200139 state->disk = hd;
Christoph Hellwig1d703542021-07-27 08:25:17 +0200140 snprintf(state->name, BDEVNAME_SIZE, "%s", hd->disk_name);
Christoph Hellwig387048b2020-03-24 08:25:30 +0100141 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 Viro94ea4152011-09-16 00:45:36 -0400182
Al Viro94ea4152011-09-16 00:45:36 -0400183static ssize_t part_partition_show(struct device *dev,
184 struct device_attribute *attr, char *buf)
185{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100186 return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_partno);
Al Viro94ea4152011-09-16 00:45:36 -0400187}
188
189static ssize_t part_start_show(struct device *dev,
190 struct device_attribute *attr, char *buf)
191{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100192 return sprintf(buf, "%llu\n", dev_to_bdev(dev)->bd_start_sect);
Al Viro94ea4152011-09-16 00:45:36 -0400193}
194
Al Viro94ea4152011-09-16 00:45:36 -0400195static ssize_t part_ro_show(struct device *dev,
196 struct device_attribute *attr, char *buf)
197{
Christoph Hellwig52f019d2021-01-09 11:42:51 +0100198 return sprintf(buf, "%d\n", bdev_read_only(dev_to_bdev(dev)));
Al Viro94ea4152011-09-16 00:45:36 -0400199}
200
201static ssize_t part_alignment_offset_show(struct device *dev,
202 struct device_attribute *attr, char *buf)
203{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100204 struct block_device *bdev = dev_to_bdev(dev);
Christoph Hellwig7b8917f2020-08-31 20:02:33 +0200205
206 return sprintf(buf, "%u\n",
Pavel Begunkoved6cdde2021-10-14 15:03:30 +0100207 queue_limit_alignment_offset(&bdev_get_queue(bdev)->limits,
Christoph Hellwig0d021292020-11-27 16:43:51 +0100208 bdev->bd_start_sect));
Al Viro94ea4152011-09-16 00:45:36 -0400209}
210
211static ssize_t part_discard_alignment_show(struct device *dev,
212 struct device_attribute *attr, char *buf)
213{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100214 struct block_device *bdev = dev_to_bdev(dev);
Christoph Hellwig7cf34d92020-08-31 20:02:34 +0200215
216 return sprintf(buf, "%u\n",
Pavel Begunkoved6cdde2021-10-14 15:03:30 +0100217 queue_limit_discard_alignment(&bdev_get_queue(bdev)->limits,
Christoph Hellwig0d021292020-11-27 16:43:51 +0100218 bdev->bd_start_sect));
Al Viro94ea4152011-09-16 00:45:36 -0400219}
220
Joe Perches5657a812018-05-24 13:38:59 -0600221static DEVICE_ATTR(partition, 0444, part_partition_show, NULL);
222static DEVICE_ATTR(start, 0444, part_start_show, NULL);
223static DEVICE_ATTR(size, 0444, part_size_show, NULL);
224static DEVICE_ATTR(ro, 0444, part_ro_show, NULL);
225static DEVICE_ATTR(alignment_offset, 0444, part_alignment_offset_show, NULL);
226static DEVICE_ATTR(discard_alignment, 0444, part_discard_alignment_show, NULL);
227static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
228static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
Al Viro94ea4152011-09-16 00:45:36 -0400229#ifdef CONFIG_FAIL_MAKE_REQUEST
230static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -0600231 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Al Viro94ea4152011-09-16 00:45:36 -0400232#endif
233
234static 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
249static struct attribute_group part_attr_group = {
250 .attrs = part_attrs,
251};
252
253static 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
261static void part_release(struct device *dev)
262{
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200263 put_disk(dev_to_bdev(dev)->bd_disk);
Christoph Hellwig2f4731d2021-07-22 09:54:02 +0200264 iput(dev_to_bdev(dev)->bd_inode);
Al Viro94ea4152011-09-16 00:45:36 -0400265}
266
San Mehat0d9c51a2016-03-15 14:53:26 -0700267static int part_uevent(struct device *dev, struct kobj_uevent_env *env)
268{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100269 struct block_device *part = dev_to_bdev(dev);
San Mehat0d9c51a2016-03-15 14:53:26 -0700270
Christoph Hellwig0d021292020-11-27 16:43:51 +0100271 add_uevent_var(env, "PARTN=%u", part->bd_partno);
272 if (part->bd_meta_info && part->bd_meta_info->volname[0])
273 add_uevent_var(env, "PARTNAME=%s", part->bd_meta_info->volname);
San Mehat0d9c51a2016-03-15 14:53:26 -0700274 return 0;
275}
276
Al Viro94ea4152011-09-16 00:45:36 -0400277struct device_type part_type = {
278 .name = "partition",
279 .groups = part_attr_groups,
280 .release = part_release,
San Mehat0d9c51a2016-03-15 14:53:26 -0700281 .uevent = part_uevent,
Al Viro94ea4152011-09-16 00:45:36 -0400282};
283
Christoph Hellwigd3c4a432021-04-06 08:22:55 +0200284static void delete_partition(struct block_device *part)
Al Viro94ea4152011-09-16 00:45:36 -0400285{
Christoph Hellwiga45e43c2021-07-22 09:53:55 +0200286 lockdep_assert_held(&part->bd_disk->open_mutex);
287
Christoph Hellwig473338b2021-04-06 08:22:54 +0200288 fsync_bdev(part);
289 __invalidate_device(part, true);
290
Christoph Hellwiga33df752021-01-24 11:02:41 +0100291 xa_erase(&part->bd_disk->part_tbl, part->bd_partno);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100292 kobject_put(part->bd_holder_dir);
293 device_del(&part->bd_device);
Al Viro94ea4152011-09-16 00:45:36 -0400294
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800295 /*
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100296 * Remove the block device from the inode hash, so that it cannot be
297 * looked up any more even when openers still hold references.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800298 */
Christoph Hellwig0d021292020-11-27 16:43:51 +0100299 remove_inode_hash(part->bd_inode);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100300
Christoph Hellwig0d021292020-11-27 16:43:51 +0100301 put_device(&part->bd_device);
Al Viro94ea4152011-09-16 00:45:36 -0400302}
303
304static ssize_t whole_disk_show(struct device *dev,
305 struct device_attribute *attr, char *buf)
306{
307 return 0;
308}
Joe Perches5657a812018-05-24 13:38:59 -0600309static DEVICE_ATTR(whole_disk, 0444, whole_disk_show, NULL);
Al Viro94ea4152011-09-16 00:45:36 -0400310
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -0700311/*
Christoph Hellwiga8698702021-05-25 08:12:56 +0200312 * Must be called either with open_mutex held, before a disk can be opened or
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -0700313 * after all disk users are gone.
314 */
Christoph Hellwig0d021292020-11-27 16:43:51 +0100315static struct block_device *add_partition(struct gendisk *disk, int partno,
Al Viro94ea4152011-09-16 00:45:36 -0400316 sector_t start, sector_t len, int flags,
317 struct partition_meta_info *info)
318{
Al Viro94ea4152011-09-16 00:45:36 -0400319 dev_t devt = MKDEV(0, 0);
320 struct device *ddev = disk_to_dev(disk);
321 struct device *pdev;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100322 struct block_device *bdev;
Al Viro94ea4152011-09-16 00:45:36 -0400323 const char *dname;
324 int err;
325
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200326 lockdep_assert_held(&disk->open_mutex);
327
Christoph Hellwig1ebe2e52021-11-22 14:06:22 +0100328 if (partno >= DISK_MAX_PARTS)
Ming Leie82fc782021-03-27 15:13:09 +0800329 return ERR_PTR(-EINVAL);
330
331 /*
Christoph Hellwigb7205302020-01-26 14:05:43 +0100332 * Partitions are not supported on zoned block devices that are used as
333 * such.
334 */
335 switch (disk->queue->limits.zoned) {
336 case BLK_ZONED_HM:
337 pr_warn("%s: partitions not supported on host managed zoned block device\n",
338 disk->disk_name);
339 return ERR_PTR(-ENXIO);
340 case BLK_ZONED_HA:
341 pr_info("%s: disabling host aware zoned block device support due to partitions\n",
342 disk->disk_name);
Damien Le Moaleafc63a2021-01-28 13:47:29 +0900343 blk_queue_set_zoned(disk, BLK_ZONED_NONE);
Christoph Hellwigb7205302020-01-26 14:05:43 +0100344 break;
345 case BLK_ZONED_NONE:
346 break;
347 }
348
Christoph Hellwiga33df752021-01-24 11:02:41 +0100349 if (xa_load(&disk->part_tbl, partno))
Al Viro94ea4152011-09-16 00:45:36 -0400350 return ERR_PTR(-EBUSY);
351
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200352 /* ensure we always have a reference to the whole disk */
353 get_device(disk_to_dev(disk));
354
355 err = -ENOMEM;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100356 bdev = bdev_alloc(disk, partno);
357 if (!bdev)
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200358 goto out_put_disk;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200359
Christoph Hellwig29ff57c2020-11-24 09:34:24 +0100360 bdev->bd_start_sect = start;
Christoph Hellwiga7824832020-11-26 18:43:37 +0100361 bdev_set_nr_sectors(bdev, len);
Al Viro94ea4152011-09-16 00:45:36 -0400362
Christoph Hellwig0d021292020-11-27 16:43:51 +0100363 pdev = &bdev->bd_device;
Al Viro94ea4152011-09-16 00:45:36 -0400364 dname = dev_name(ddev);
365 if (isdigit(dname[strlen(dname) - 1]))
366 dev_set_name(pdev, "%sp%d", dname, partno);
367 else
368 dev_set_name(pdev, "%s%d", dname, partno);
369
370 device_initialize(pdev);
371 pdev->class = &block_class;
372 pdev->type = &part_type;
373 pdev->parent = ddev;
374
Christoph Hellwig7c3f8282021-05-21 07:50:51 +0200375 /* in consecutive minor range? */
376 if (bdev->bd_partno < disk->minors) {
377 devt = MKDEV(disk->major, disk->first_minor + bdev->bd_partno);
378 } else {
379 err = blk_alloc_ext_minor();
380 if (err < 0)
381 goto out_put;
382 devt = MKDEV(BLOCK_EXT_MAJOR, err);
383 }
Al Viro94ea4152011-09-16 00:45:36 -0400384 pdev->devt = devt;
385
Christoph Hellwig0468c532021-07-22 09:53:57 +0200386 if (info) {
387 err = -ENOMEM;
388 bdev->bd_meta_info = kmemdup(info, sizeof(*info), GFP_KERNEL);
389 if (!bdev->bd_meta_info)
390 goto out_put;
391 }
392
Al Viro94ea4152011-09-16 00:45:36 -0400393 /* delay uevent until 'holders' subdir is created */
394 dev_set_uevent_suppress(pdev, 1);
395 err = device_add(pdev);
396 if (err)
397 goto out_put;
398
399 err = -ENOMEM;
Christoph Hellwig1bdd5ae2020-11-23 19:00:13 +0100400 bdev->bd_holder_dir = kobject_create_and_add("holders", &pdev->kobj);
401 if (!bdev->bd_holder_dir)
Al Viro94ea4152011-09-16 00:45:36 -0400402 goto out_del;
403
404 dev_set_uevent_suppress(pdev, 0);
405 if (flags & ADDPART_FLAG_WHOLEDISK) {
406 err = device_create_file(pdev, &dev_attr_whole_disk);
407 if (err)
408 goto out_del;
409 }
410
411 /* everything is up and running, commence */
Christoph Hellwiga33df752021-01-24 11:02:41 +0100412 err = xa_insert(&disk->part_tbl, partno, bdev, GFP_KERNEL);
413 if (err)
414 goto out_del;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100415 bdev_add(bdev, devt);
Al Viro94ea4152011-09-16 00:45:36 -0400416
417 /* suppress uevent if the disk suppresses it */
418 if (!dev_get_uevent_suppress(ddev))
419 kobject_uevent(&pdev->kobj, KOBJ_ADD);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100420 return bdev;
Al Viro94ea4152011-09-16 00:45:36 -0400421
Al Viro94ea4152011-09-16 00:45:36 -0400422out_del:
Christoph Hellwig1bdd5ae2020-11-23 19:00:13 +0100423 kobject_put(bdev->bd_holder_dir);
Al Viro94ea4152011-09-16 00:45:36 -0400424 device_del(pdev);
425out_put:
426 put_device(pdev);
Zqiang9fbfabf2021-10-18 18:34:22 +0800427 return ERR_PTR(err);
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200428out_put_disk:
429 put_disk(disk);
Al Viro94ea4152011-09-16 00:45:36 -0400430 return ERR_PTR(err);
431}
432
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200433static bool partition_overlaps(struct gendisk *disk, sector_t start,
434 sector_t length, int skip_partno)
435{
Christoph Hellwigad1eaa52020-11-24 09:52:59 +0100436 struct block_device *part;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200437 bool overlap = false;
Christoph Hellwige3069122021-04-06 08:22:58 +0200438 unsigned long idx;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200439
Christoph Hellwige3069122021-04-06 08:22:58 +0200440 rcu_read_lock();
441 xa_for_each_start(&disk->part_tbl, idx, part, 1) {
442 if (part->bd_partno != skip_partno &&
443 start < part->bd_start_sect + bdev_nr_sectors(part) &&
444 start + length > part->bd_start_sect) {
445 overlap = true;
446 break;
447 }
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200448 }
Christoph Hellwige3069122021-04-06 08:22:58 +0200449 rcu_read_unlock();
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200450
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200451 return overlap;
452}
453
Christoph Hellwig7f6be372021-08-10 17:45:10 +0200454int bdev_add_partition(struct gendisk *disk, int partno, sector_t start,
455 sector_t length)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200456{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100457 struct block_device *part;
Yufen Yub5cfbd32021-06-10 10:32:41 +0800458 int ret;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200459
Yufen Yub5cfbd32021-06-10 10:32:41 +0800460 mutex_lock(&disk->open_mutex);
Christoph Hellwig50b4aec2021-08-09 08:40:28 +0200461 if (!disk_live(disk)) {
Yufen Yub5cfbd32021-06-10 10:32:41 +0800462 ret = -ENXIO;
463 goto out;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200464 }
465
Yufen Yub5cfbd32021-06-10 10:32:41 +0800466 if (partition_overlaps(disk, start, length, -1)) {
467 ret = -EBUSY;
468 goto out;
469 }
470
471 part = add_partition(disk, partno, start, length,
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200472 ADDPART_FLAG_NONE, NULL);
Yufen Yub5cfbd32021-06-10 10:32:41 +0800473 ret = PTR_ERR_OR_ZERO(part);
474out:
475 mutex_unlock(&disk->open_mutex);
476 return ret;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200477}
478
Christoph Hellwig926fbb12021-08-10 17:45:11 +0200479int bdev_del_partition(struct gendisk *disk, int partno)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200480{
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200481 struct block_device *part = NULL;
482 int ret = -ENXIO;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200483
Christoph Hellwig926fbb12021-08-10 17:45:11 +0200484 mutex_lock(&disk->open_mutex);
485 part = xa_load(&disk->part_tbl, partno);
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200486 if (!part)
487 goto out_unlock;
Christoph Hellwig08fc1ab2020-09-01 11:59:41 +0200488
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200489 ret = -EBUSY;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100490 if (part->bd_openers)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200491 goto out_unlock;
492
Christoph Hellwig8328eb22020-08-31 20:02:38 +0200493 delete_partition(part);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200494 ret = 0;
495out_unlock:
Christoph Hellwig926fbb12021-08-10 17:45:11 +0200496 mutex_unlock(&disk->open_mutex);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200497 return ret;
498}
499
Christoph Hellwig3d2e7982021-08-10 17:45:12 +0200500int bdev_resize_partition(struct gendisk *disk, int partno, sector_t start,
501 sector_t length)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200502{
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200503 struct block_device *part = NULL;
504 int ret = -ENXIO;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200505
Christoph Hellwig3d2e7982021-08-10 17:45:12 +0200506 mutex_lock(&disk->open_mutex);
507 part = xa_load(&disk->part_tbl, partno);
Christoph Hellwig0e0ccde2021-05-25 08:13:01 +0200508 if (!part)
509 goto out_unlock;
510
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200511 ret = -EINVAL;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100512 if (start != part->bd_start_sect)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200513 goto out_unlock;
514
515 ret = -EBUSY;
Christoph Hellwig3d2e7982021-08-10 17:45:12 +0200516 if (partition_overlaps(disk, start, length, partno))
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200517 goto out_unlock;
518
Christoph Hellwig0d021292020-11-27 16:43:51 +0100519 bdev_set_nr_sectors(part, length);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200520
521 ret = 0;
522out_unlock:
Christoph Hellwig3d2e7982021-08-10 17:45:12 +0200523 mutex_unlock(&disk->open_mutex);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200524 return ret;
525}
526
Al Viro94ea4152011-09-16 00:45:36 -0400527static bool disk_unlock_native_capacity(struct gendisk *disk)
528{
Christoph Hellwig86416912021-11-22 14:06:12 +0100529 if (!disk->fops->unlock_native_capacity ||
530 test_and_set_bit(GD_NATIVE_CAPACITY, &disk->state)) {
Al Viro94ea4152011-09-16 00:45:36 -0400531 printk(KERN_CONT "truncated\n");
532 return false;
533 }
Christoph Hellwig86416912021-11-22 14:06:12 +0100534
535 printk(KERN_CONT "enabling native capacity\n");
536 disk->fops->unlock_native_capacity(disk);
537 return true;
Al Viro94ea4152011-09-16 00:45:36 -0400538}
539
Christoph Hellwigd3c4a432021-04-06 08:22:55 +0200540void blk_drop_partitions(struct gendisk *disk)
Al Viro94ea4152011-09-16 00:45:36 -0400541{
Christoph Hellwigad1eaa52020-11-24 09:52:59 +0100542 struct block_device *part;
Christoph Hellwig6c4541a82021-04-06 08:22:57 +0200543 unsigned long idx;
Al Viro94ea4152011-09-16 00:45:36 -0400544
Christoph Hellwiga8698702021-05-25 08:12:56 +0200545 lockdep_assert_held(&disk->open_mutex);
Christoph Hellwige669c1d2020-04-14 09:28:59 +0200546
Christoph Hellwig63c38d82021-07-01 10:16:38 +0200547 xa_for_each_start(&disk->part_tbl, idx, part, 1)
Christoph Hellwig0d021292020-11-27 16:43:51 +0100548 delete_partition(part);
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100549}
550
Christoph Hellwig03842642021-06-24 14:32:40 +0200551static bool blk_add_partition(struct gendisk *disk,
Christoph Hellwigf902b022019-11-14 15:34:32 +0100552 struct parsed_partitions *state, int p)
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100553{
Christoph Hellwigf902b022019-11-14 15:34:32 +0100554 sector_t size = state->parts[p].size;
555 sector_t from = state->parts[p].from;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100556 struct block_device *part;
Christoph Hellwigf902b022019-11-14 15:34:32 +0100557
558 if (!size)
559 return true;
560
561 if (from >= get_capacity(disk)) {
562 printk(KERN_WARNING
563 "%s: p%d start %llu is beyond EOD, ",
564 disk->disk_name, p, (unsigned long long) from);
565 if (disk_unlock_native_capacity(disk))
566 return false;
567 return true;
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100568 }
569
Christoph Hellwigf902b022019-11-14 15:34:32 +0100570 if (from + size > get_capacity(disk)) {
571 printk(KERN_WARNING
572 "%s: p%d size %llu extends beyond EOD, ",
573 disk->disk_name, p, (unsigned long long) size);
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100574
Christoph Hellwigf902b022019-11-14 15:34:32 +0100575 if (disk_unlock_native_capacity(disk))
576 return false;
577
578 /*
579 * We can not ignore partitions of broken tables created by for
580 * example camera firmware, but we limit them to the end of the
581 * disk to avoid creating invalid block devices.
582 */
583 size = get_capacity(disk) - from;
584 }
585
586 part = add_partition(disk, p, from, size, state->parts[p].flags,
587 &state->parts[p].info);
Christoph Hellwigb7205302020-01-26 14:05:43 +0100588 if (IS_ERR(part) && PTR_ERR(part) != -ENXIO) {
Christoph Hellwigf902b022019-11-14 15:34:32 +0100589 printk(KERN_ERR " %s: p%d could not be added: %ld\n",
590 disk->disk_name, p, -PTR_ERR(part));
591 return true;
592 }
593
Christoph Hellwig74cc979c2020-03-24 08:25:19 +0100594 if (IS_BUILTIN(CONFIG_BLK_DEV_MD) &&
595 (state->parts[p].flags & ADDPART_FLAG_RAID))
Christoph Hellwig0d021292020-11-27 16:43:51 +0100596 md_autodetect_dev(part->bd_dev);
Christoph Hellwig74cc979c2020-03-24 08:25:19 +0100597
Christoph Hellwigf902b022019-11-14 15:34:32 +0100598 return true;
599}
600
Christoph Hellwig03842642021-06-24 14:32:40 +0200601static int blk_add_partitions(struct gendisk *disk)
Christoph Hellwigf902b022019-11-14 15:34:32 +0100602{
603 struct parsed_partitions *state;
Christoph Hellwiga33df752021-01-24 11:02:41 +0100604 int ret = -EAGAIN, p;
Christoph Hellwigf902b022019-11-14 15:34:32 +0100605
Christoph Hellwig1ebe2e52021-11-22 14:06:22 +0100606 if (disk->flags & GENHD_FL_NO_PART)
Christoph Hellwig142fe8f2019-11-14 15:34:35 +0100607 return 0;
608
Christoph Hellwig03842642021-06-24 14:32:40 +0200609 state = check_partition(disk);
Christoph Hellwigf902b022019-11-14 15:34:32 +0100610 if (!state)
Al Viro94ea4152011-09-16 00:45:36 -0400611 return 0;
612 if (IS_ERR(state)) {
613 /*
Christoph Hellwigf902b022019-11-14 15:34:32 +0100614 * I/O error reading the partition table. If we tried to read
615 * beyond EOD, retry after unlocking the native capacity.
Al Viro94ea4152011-09-16 00:45:36 -0400616 */
617 if (PTR_ERR(state) == -ENOSPC) {
618 printk(KERN_WARNING "%s: partition table beyond EOD, ",
619 disk->disk_name);
620 if (disk_unlock_native_capacity(disk))
Christoph Hellwigf902b022019-11-14 15:34:32 +0100621 return -EAGAIN;
Al Viro94ea4152011-09-16 00:45:36 -0400622 }
623 return -EIO;
624 }
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900625
Christoph Hellwigf902b022019-11-14 15:34:32 +0100626 /*
Christoph Hellwigb7205302020-01-26 14:05:43 +0100627 * Partitions are not supported on host managed zoned block devices.
Christoph Hellwigf902b022019-11-14 15:34:32 +0100628 */
Christoph Hellwigb7205302020-01-26 14:05:43 +0100629 if (disk->queue->limits.zoned == BLK_ZONED_HM) {
630 pr_warn("%s: ignoring partition table on host managed zoned block device\n",
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900631 disk->disk_name);
Christoph Hellwigf902b022019-11-14 15:34:32 +0100632 ret = 0;
633 goto out_free_state;
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900634 }
635
Al Viro94ea4152011-09-16 00:45:36 -0400636 /*
Christoph Hellwigf902b022019-11-14 15:34:32 +0100637 * If we read beyond EOD, try unlocking native capacity even if the
638 * partition table was successfully read as we could be missing some
639 * partitions.
Al Viro94ea4152011-09-16 00:45:36 -0400640 */
641 if (state->access_beyond_eod) {
642 printk(KERN_WARNING
643 "%s: partition table partially beyond EOD, ",
644 disk->disk_name);
645 if (disk_unlock_native_capacity(disk))
Christoph Hellwigf902b022019-11-14 15:34:32 +0100646 goto out_free_state;
Al Viro94ea4152011-09-16 00:45:36 -0400647 }
648
649 /* tell userspace that the media / partition table may have changed */
650 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
651
Christoph Hellwigf902b022019-11-14 15:34:32 +0100652 for (p = 1; p < state->limit; p++)
Christoph Hellwig03842642021-06-24 14:32:40 +0200653 if (!blk_add_partition(disk, state, p))
Christoph Hellwigf902b022019-11-14 15:34:32 +0100654 goto out_free_state;
Al Viro94ea4152011-09-16 00:45:36 -0400655
Christoph Hellwigf902b022019-11-14 15:34:32 +0100656 ret = 0;
657out_free_state:
Ming Leiac2e5322013-02-27 17:05:19 -0800658 free_partitions(state);
Christoph Hellwigf902b022019-11-14 15:34:32 +0100659 return ret;
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100660}
661
Christoph Hellwig03842642021-06-24 14:32:40 +0200662int bdev_disk_changed(struct gendisk *disk, bool invalidate)
Christoph Hellwig630161c2021-06-24 14:32:39 +0200663{
Christoph Hellwig630161c2021-06-24 14:32:39 +0200664 int ret = 0;
665
666 lockdep_assert_held(&disk->open_mutex);
667
Christoph Hellwig50b4aec2021-08-09 08:40:28 +0200668 if (!disk_live(disk))
Christoph Hellwig630161c2021-06-24 14:32:39 +0200669 return -ENXIO;
670
671rescan:
672 if (disk->open_partitions)
673 return -EBUSY;
Christoph Hellwig03842642021-06-24 14:32:40 +0200674 sync_blockdev(disk->part0);
675 invalidate_bdev(disk->part0);
Christoph Hellwig630161c2021-06-24 14:32:39 +0200676 blk_drop_partitions(disk);
677
678 clear_bit(GD_NEED_PART_SCAN, &disk->state);
679
680 /*
681 * Historically we only set the capacity to zero for devices that
682 * support partitions (independ of actually having partitions created).
683 * Doing that is rather inconsistent, but changing it broke legacy
684 * udisks polling for legacy ide-cdrom devices. Use the crude check
685 * below to get the sane behavior for most device while not breaking
686 * userspace for this particular setup.
687 */
688 if (invalidate) {
Christoph Hellwig1ebe2e52021-11-22 14:06:22 +0100689 if (!(disk->flags & GENHD_FL_NO_PART) ||
Christoph Hellwig630161c2021-06-24 14:32:39 +0200690 !(disk->flags & GENHD_FL_REMOVABLE))
691 set_capacity(disk, 0);
692 }
693
694 if (get_capacity(disk)) {
Christoph Hellwig03842642021-06-24 14:32:40 +0200695 ret = blk_add_partitions(disk);
Christoph Hellwig630161c2021-06-24 14:32:39 +0200696 if (ret == -EAGAIN)
697 goto rescan;
698 } else if (invalidate) {
699 /*
700 * Tell userspace that the media / partition table may have
701 * changed.
702 */
703 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
704 }
705
706 return ret;
707}
708/*
709 * Only exported for loop and dasd for historic reasons. Don't use in new
710 * code!
711 */
712EXPORT_SYMBOL_GPL(bdev_disk_changed);
713
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100714void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p)
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800715{
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200716 struct address_space *mapping = state->disk->part0->bd_inode->i_mapping;
Al Viro94ea4152011-09-16 00:45:36 -0400717 struct page *page;
718
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200719 if (n >= get_capacity(state->disk)) {
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100720 state->access_beyond_eod = true;
721 return NULL;
Al Viro94ea4152011-09-16 00:45:36 -0400722 }
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100723
724 page = read_mapping_page(mapping,
725 (pgoff_t)(n >> (PAGE_SHIFT - 9)), NULL);
726 if (IS_ERR(page))
727 goto out;
728 if (PageError(page))
729 goto out_put_page;
730
731 p->v = page;
732 return (unsigned char *)page_address(page) +
733 ((n & ((1 << (PAGE_SHIFT - 9)) - 1)) << SECTOR_SHIFT);
734out_put_page:
735 put_page(page);
736out:
Al Viro94ea4152011-09-16 00:45:36 -0400737 p->v = NULL;
738 return NULL;
739}