blob: 536f7c5bb0b6d2548add3a9319aa3d5ebb85f0c8 [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>
8#include <linux/slab.h>
Al Viro94ea4152011-09-16 00:45:36 -04009#include <linux/ctype.h>
10#include <linux/genhd.h>
Christoph Hellwig387048b2020-03-24 08:25:30 +010011#include <linux/vmalloc.h>
Al Viro94ea4152011-09-16 00:45:36 -040012#include <linux/blktrace_api.h>
Christoph Hellwig74cc979c2020-03-24 08:25:19 +010013#include <linux/raid/detect.h>
Christoph Hellwig387048b2020-03-24 08:25:30 +010014#include "check.h"
Al Viro94ea4152011-09-16 00:45:36 -040015
Christoph Hellwig387048b2020-03-24 08:25:30 +010016static 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 Hellwiga7824832020-11-26 18:43:37 +010089static void bdev_set_nr_sectors(struct block_device *bdev, sector_t sectors)
90{
Damien Le Moal0f472272021-03-01 12:04:02 +090091 spin_lock(&bdev->bd_size_lock);
Christoph Hellwiga7824832020-11-26 18:43:37 +010092 i_size_write(bdev->bd_inode, (loff_t)sectors << SECTOR_SHIFT);
Damien Le Moal0f472272021-03-01 12:04:02 +090093 spin_unlock(&bdev->bd_size_lock);
Christoph Hellwiga7824832020-11-26 18:43:37 +010094}
95
Christoph Hellwig387048b2020-03-24 08:25:30 +010096static 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
117static void free_partitions(struct parsed_partitions *state)
118{
119 vfree(state->parts);
120 kfree(state);
121}
122
123static 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 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",
Christoph Hellwig0d021292020-11-27 16:43:51 +0100207 queue_limit_alignment_offset(&bdev->bd_disk->queue->limits,
208 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",
Christoph Hellwig0d021292020-11-27 16:43:51 +0100217 queue_limit_discard_alignment(&bdev->bd_disk->queue->limits,
218 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{
Keith Busch2da78092014-08-26 09:05:36 -0600263 blk_free_devt(dev->devt);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100264 bdput(dev_to_bdev(dev));
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
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -0700284/*
285 * Must be called either with bd_mutex held, before a disk can be opened or
286 * after all disk users are gone.
287 */
Christoph Hellwigd3c4a432021-04-06 08:22:55 +0200288static void delete_partition(struct block_device *part)
Al Viro94ea4152011-09-16 00:45:36 -0400289{
Christoph Hellwig473338b2021-04-06 08:22:54 +0200290 fsync_bdev(part);
291 __invalidate_device(part, true);
292
Christoph Hellwiga33df752021-01-24 11:02:41 +0100293 xa_erase(&part->bd_disk->part_tbl, part->bd_partno);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100294 kobject_put(part->bd_holder_dir);
295 device_del(&part->bd_device);
Al Viro94ea4152011-09-16 00:45:36 -0400296
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800297 /*
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100298 * Remove the block device from the inode hash, so that it cannot be
299 * looked up any more even when openers still hold references.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800300 */
Christoph Hellwig0d021292020-11-27 16:43:51 +0100301 remove_inode_hash(part->bd_inode);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100302
Christoph Hellwig0d021292020-11-27 16:43:51 +0100303 put_device(&part->bd_device);
Al Viro94ea4152011-09-16 00:45:36 -0400304}
305
306static ssize_t whole_disk_show(struct device *dev,
307 struct device_attribute *attr, char *buf)
308{
309 return 0;
310}
Joe Perches5657a812018-05-24 13:38:59 -0600311static DEVICE_ATTR(whole_disk, 0444, whole_disk_show, NULL);
Al Viro94ea4152011-09-16 00:45:36 -0400312
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -0700313/*
314 * Must be called either with bd_mutex held, before a disk can be opened or
315 * after all disk users are gone.
316 */
Christoph Hellwig0d021292020-11-27 16:43:51 +0100317static struct block_device *add_partition(struct gendisk *disk, int partno,
Al Viro94ea4152011-09-16 00:45:36 -0400318 sector_t start, sector_t len, int flags,
319 struct partition_meta_info *info)
320{
Al Viro94ea4152011-09-16 00:45:36 -0400321 dev_t devt = MKDEV(0, 0);
322 struct device *ddev = disk_to_dev(disk);
323 struct device *pdev;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100324 struct block_device *bdev;
Al Viro94ea4152011-09-16 00:45:36 -0400325 const char *dname;
326 int err;
327
Christoph Hellwigb7205302020-01-26 14:05:43 +0100328 /*
329 * Partitions are not supported on zoned block devices that are used as
330 * such.
331 */
332 switch (disk->queue->limits.zoned) {
333 case BLK_ZONED_HM:
334 pr_warn("%s: partitions not supported on host managed zoned block device\n",
335 disk->disk_name);
336 return ERR_PTR(-ENXIO);
337 case BLK_ZONED_HA:
338 pr_info("%s: disabling host aware zoned block device support due to partitions\n",
339 disk->disk_name);
Damien Le Moaleafc63a2021-01-28 13:47:29 +0900340 blk_queue_set_zoned(disk, BLK_ZONED_NONE);
Christoph Hellwigb7205302020-01-26 14:05:43 +0100341 break;
342 case BLK_ZONED_NONE:
343 break;
344 }
345
Christoph Hellwiga33df752021-01-24 11:02:41 +0100346 if (xa_load(&disk->part_tbl, partno))
Al Viro94ea4152011-09-16 00:45:36 -0400347 return ERR_PTR(-EBUSY);
348
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100349 bdev = bdev_alloc(disk, partno);
350 if (!bdev)
Christoph Hellwigcb8432d2020-11-26 18:47:17 +0100351 return ERR_PTR(-ENOMEM);
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200352
Christoph Hellwig29ff57c2020-11-24 09:34:24 +0100353 bdev->bd_start_sect = start;
Christoph Hellwiga7824832020-11-26 18:43:37 +0100354 bdev_set_nr_sectors(bdev, len);
Al Viro94ea4152011-09-16 00:45:36 -0400355
356 if (info) {
Christoph Hellwig231926d2020-11-24 12:01:45 +0100357 err = -ENOMEM;
358 bdev->bd_meta_info = kmemdup(info, sizeof(*info), GFP_KERNEL);
359 if (!bdev->bd_meta_info)
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100360 goto out_bdput;
Al Viro94ea4152011-09-16 00:45:36 -0400361 }
362
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 Hellwig9fc995a2020-11-24 09:17:46 +0100375 err = blk_alloc_devt(bdev, &devt);
Al Viro94ea4152011-09-16 00:45:36 -0400376 if (err)
Dinghao Liuef49d402021-01-17 16:50:17 +0800377 goto out_put;
Al Viro94ea4152011-09-16 00:45:36 -0400378 pdev->devt = devt;
379
380 /* delay uevent until 'holders' subdir is created */
381 dev_set_uevent_suppress(pdev, 1);
382 err = device_add(pdev);
383 if (err)
384 goto out_put;
385
386 err = -ENOMEM;
Christoph Hellwig1bdd5ae2020-11-23 19:00:13 +0100387 bdev->bd_holder_dir = kobject_create_and_add("holders", &pdev->kobj);
388 if (!bdev->bd_holder_dir)
Al Viro94ea4152011-09-16 00:45:36 -0400389 goto out_del;
390
391 dev_set_uevent_suppress(pdev, 0);
392 if (flags & ADDPART_FLAG_WHOLEDISK) {
393 err = device_create_file(pdev, &dev_attr_whole_disk);
394 if (err)
395 goto out_del;
396 }
397
398 /* everything is up and running, commence */
Christoph Hellwiga33df752021-01-24 11:02:41 +0100399 err = xa_insert(&disk->part_tbl, partno, bdev, GFP_KERNEL);
400 if (err)
401 goto out_del;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100402 bdev_add(bdev, devt);
Al Viro94ea4152011-09-16 00:45:36 -0400403
404 /* suppress uevent if the disk suppresses it */
405 if (!dev_get_uevent_suppress(ddev))
406 kobject_uevent(&pdev->kobj, KOBJ_ADD);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100407 return bdev;
Al Viro94ea4152011-09-16 00:45:36 -0400408
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100409out_bdput:
410 bdput(bdev);
Al Viro94ea4152011-09-16 00:45:36 -0400411 return ERR_PTR(err);
412out_del:
Christoph Hellwig1bdd5ae2020-11-23 19:00:13 +0100413 kobject_put(bdev->bd_holder_dir);
Al Viro94ea4152011-09-16 00:45:36 -0400414 device_del(pdev);
415out_put:
416 put_device(pdev);
Al Viro94ea4152011-09-16 00:45:36 -0400417 return ERR_PTR(err);
418}
419
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200420static bool partition_overlaps(struct gendisk *disk, sector_t start,
421 sector_t length, int skip_partno)
422{
423 struct disk_part_iter piter;
Christoph Hellwigad1eaa52020-11-24 09:52:59 +0100424 struct block_device *part;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200425 bool overlap = false;
426
427 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
428 while ((part = disk_part_iter_next(&piter))) {
Christoph Hellwigad1eaa52020-11-24 09:52:59 +0100429 if (part->bd_partno == skip_partno ||
430 start >= part->bd_start_sect + bdev_nr_sectors(part) ||
431 start + length <= part->bd_start_sect)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200432 continue;
433 overlap = true;
434 break;
435 }
436
437 disk_part_iter_exit(&piter);
438 return overlap;
439}
440
441int bdev_add_partition(struct block_device *bdev, int partno,
442 sector_t start, sector_t length)
443{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100444 struct block_device *part;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200445
446 mutex_lock(&bdev->bd_mutex);
447 if (partition_overlaps(bdev->bd_disk, start, length, -1)) {
448 mutex_unlock(&bdev->bd_mutex);
449 return -EBUSY;
450 }
451
452 part = add_partition(bdev->bd_disk, partno, start, length,
453 ADDPART_FLAG_NONE, NULL);
454 mutex_unlock(&bdev->bd_mutex);
455 return PTR_ERR_OR_ZERO(part);
456}
457
458int bdev_del_partition(struct block_device *bdev, int partno)
459{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100460 struct block_device *part;
Christoph Hellwig08fc1ab2020-09-01 11:59:41 +0200461 int ret;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200462
Christoph Hellwig0d021292020-11-27 16:43:51 +0100463 part = bdget_disk(bdev->bd_disk, partno);
464 if (!part)
Christoph Hellwig88ce2a52020-09-08 16:15:06 +0200465 return -ENXIO;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200466
Christoph Hellwig0d021292020-11-27 16:43:51 +0100467 mutex_lock(&part->bd_mutex);
Christoph Hellwig08fc1ab2020-09-01 11:59:41 +0200468 mutex_lock_nested(&bdev->bd_mutex, 1);
469
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200470 ret = -EBUSY;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100471 if (part->bd_openers)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200472 goto out_unlock;
473
Christoph Hellwig8328eb22020-08-31 20:02:38 +0200474 delete_partition(part);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200475 ret = 0;
476out_unlock:
Christoph Hellwig08fc1ab2020-09-01 11:59:41 +0200477 mutex_unlock(&bdev->bd_mutex);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100478 mutex_unlock(&part->bd_mutex);
479 bdput(part);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200480 return ret;
481}
482
483int bdev_resize_partition(struct block_device *bdev, int partno,
484 sector_t start, sector_t length)
485{
Christoph Hellwig0d021292020-11-27 16:43:51 +0100486 struct block_device *part;
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200487 int ret = 0;
488
Christoph Hellwig0d021292020-11-27 16:43:51 +0100489 part = bdget_disk(bdev->bd_disk, partno);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200490 if (!part)
491 return -ENXIO;
492
Christoph Hellwig0d021292020-11-27 16:43:51 +0100493 mutex_lock(&part->bd_mutex);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200494 mutex_lock_nested(&bdev->bd_mutex, 1);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200495 ret = -EINVAL;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100496 if (start != part->bd_start_sect)
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200497 goto out_unlock;
498
499 ret = -EBUSY;
500 if (partition_overlaps(bdev->bd_disk, start, length, partno))
501 goto out_unlock;
502
Christoph Hellwig0d021292020-11-27 16:43:51 +0100503 bdev_set_nr_sectors(part, length);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200504
505 ret = 0;
506out_unlock:
Christoph Hellwig0d021292020-11-27 16:43:51 +0100507 mutex_unlock(&part->bd_mutex);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200508 mutex_unlock(&bdev->bd_mutex);
Christoph Hellwig0d021292020-11-27 16:43:51 +0100509 bdput(part);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200510 return ret;
511}
512
Al Viro94ea4152011-09-16 00:45:36 -0400513static bool disk_unlock_native_capacity(struct gendisk *disk)
514{
515 const struct block_device_operations *bdops = disk->fops;
516
517 if (bdops->unlock_native_capacity &&
518 !(disk->flags & GENHD_FL_NATIVE_CAPACITY)) {
519 printk(KERN_CONT "enabling native capacity\n");
520 bdops->unlock_native_capacity(disk);
521 disk->flags |= GENHD_FL_NATIVE_CAPACITY;
522 return true;
523 } else {
524 printk(KERN_CONT "truncated\n");
525 return false;
526 }
527}
528
Christoph Hellwigd3c4a432021-04-06 08:22:55 +0200529void blk_drop_partitions(struct gendisk *disk)
Al Viro94ea4152011-09-16 00:45:36 -0400530{
Al Viro94ea4152011-09-16 00:45:36 -0400531 struct disk_part_iter piter;
Christoph Hellwigad1eaa52020-11-24 09:52:59 +0100532 struct block_device *part;
Al Viro94ea4152011-09-16 00:45:36 -0400533
Christoph Hellwigd3c4a432021-04-06 08:22:55 +0200534 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Al Viro94ea4152011-09-16 00:45:36 -0400535 while ((part = disk_part_iter_next(&piter)))
Christoph Hellwig0d021292020-11-27 16:43:51 +0100536 delete_partition(part);
Al Viro94ea4152011-09-16 00:45:36 -0400537 disk_part_iter_exit(&piter);
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100538}
539
Christoph Hellwigf902b022019-11-14 15:34:32 +0100540static bool blk_add_partition(struct gendisk *disk, struct block_device *bdev,
541 struct parsed_partitions *state, int p)
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100542{
Christoph Hellwigf902b022019-11-14 15:34:32 +0100543 sector_t size = state->parts[p].size;
544 sector_t from = state->parts[p].from;
Christoph Hellwig0d021292020-11-27 16:43:51 +0100545 struct block_device *part;
Christoph Hellwigf902b022019-11-14 15:34:32 +0100546
547 if (!size)
548 return true;
549
550 if (from >= get_capacity(disk)) {
551 printk(KERN_WARNING
552 "%s: p%d start %llu is beyond EOD, ",
553 disk->disk_name, p, (unsigned long long) from);
554 if (disk_unlock_native_capacity(disk))
555 return false;
556 return true;
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100557 }
558
Christoph Hellwigf902b022019-11-14 15:34:32 +0100559 if (from + size > get_capacity(disk)) {
560 printk(KERN_WARNING
561 "%s: p%d size %llu extends beyond EOD, ",
562 disk->disk_name, p, (unsigned long long) size);
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100563
Christoph Hellwigf902b022019-11-14 15:34:32 +0100564 if (disk_unlock_native_capacity(disk))
565 return false;
566
567 /*
568 * We can not ignore partitions of broken tables created by for
569 * example camera firmware, but we limit them to the end of the
570 * disk to avoid creating invalid block devices.
571 */
572 size = get_capacity(disk) - from;
573 }
574
575 part = add_partition(disk, p, from, size, state->parts[p].flags,
576 &state->parts[p].info);
Christoph Hellwigb7205302020-01-26 14:05:43 +0100577 if (IS_ERR(part) && PTR_ERR(part) != -ENXIO) {
Christoph Hellwigf902b022019-11-14 15:34:32 +0100578 printk(KERN_ERR " %s: p%d could not be added: %ld\n",
579 disk->disk_name, p, -PTR_ERR(part));
580 return true;
581 }
582
Christoph Hellwig74cc979c2020-03-24 08:25:19 +0100583 if (IS_BUILTIN(CONFIG_BLK_DEV_MD) &&
584 (state->parts[p].flags & ADDPART_FLAG_RAID))
Christoph Hellwig0d021292020-11-27 16:43:51 +0100585 md_autodetect_dev(part->bd_dev);
Christoph Hellwig74cc979c2020-03-24 08:25:19 +0100586
Christoph Hellwigf902b022019-11-14 15:34:32 +0100587 return true;
588}
589
Christoph Hellwiga1548b62019-11-14 15:34:34 +0100590int blk_add_partitions(struct gendisk *disk, struct block_device *bdev)
Christoph Hellwigf902b022019-11-14 15:34:32 +0100591{
592 struct parsed_partitions *state;
Christoph Hellwiga33df752021-01-24 11:02:41 +0100593 int ret = -EAGAIN, p;
Christoph Hellwigf902b022019-11-14 15:34:32 +0100594
Christoph Hellwig142fe8f2019-11-14 15:34:35 +0100595 if (!disk_part_scan_enabled(disk))
596 return 0;
597
Christoph Hellwigf902b022019-11-14 15:34:32 +0100598 state = check_partition(disk, bdev);
599 if (!state)
Al Viro94ea4152011-09-16 00:45:36 -0400600 return 0;
601 if (IS_ERR(state)) {
602 /*
Christoph Hellwigf902b022019-11-14 15:34:32 +0100603 * I/O error reading the partition table. If we tried to read
604 * beyond EOD, retry after unlocking the native capacity.
Al Viro94ea4152011-09-16 00:45:36 -0400605 */
606 if (PTR_ERR(state) == -ENOSPC) {
607 printk(KERN_WARNING "%s: partition table beyond EOD, ",
608 disk->disk_name);
609 if (disk_unlock_native_capacity(disk))
Christoph Hellwigf902b022019-11-14 15:34:32 +0100610 return -EAGAIN;
Al Viro94ea4152011-09-16 00:45:36 -0400611 }
612 return -EIO;
613 }
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900614
Christoph Hellwigf902b022019-11-14 15:34:32 +0100615 /*
Christoph Hellwigb7205302020-01-26 14:05:43 +0100616 * Partitions are not supported on host managed zoned block devices.
Christoph Hellwigf902b022019-11-14 15:34:32 +0100617 */
Christoph Hellwigb7205302020-01-26 14:05:43 +0100618 if (disk->queue->limits.zoned == BLK_ZONED_HM) {
619 pr_warn("%s: ignoring partition table on host managed zoned block device\n",
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900620 disk->disk_name);
Christoph Hellwigf902b022019-11-14 15:34:32 +0100621 ret = 0;
622 goto out_free_state;
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900623 }
624
Al Viro94ea4152011-09-16 00:45:36 -0400625 /*
Christoph Hellwigf902b022019-11-14 15:34:32 +0100626 * If we read beyond EOD, try unlocking native capacity even if the
627 * partition table was successfully read as we could be missing some
628 * partitions.
Al Viro94ea4152011-09-16 00:45:36 -0400629 */
630 if (state->access_beyond_eod) {
631 printk(KERN_WARNING
632 "%s: partition table partially beyond EOD, ",
633 disk->disk_name);
634 if (disk_unlock_native_capacity(disk))
Christoph Hellwigf902b022019-11-14 15:34:32 +0100635 goto out_free_state;
Al Viro94ea4152011-09-16 00:45:36 -0400636 }
637
638 /* tell userspace that the media / partition table may have changed */
639 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
640
Christoph Hellwigf902b022019-11-14 15:34:32 +0100641 for (p = 1; p < state->limit; p++)
642 if (!blk_add_partition(disk, bdev, state, p))
643 goto out_free_state;
Al Viro94ea4152011-09-16 00:45:36 -0400644
Christoph Hellwigf902b022019-11-14 15:34:32 +0100645 ret = 0;
646out_free_state:
Ming Leiac2e5322013-02-27 17:05:19 -0800647 free_partitions(state);
Christoph Hellwigf902b022019-11-14 15:34:32 +0100648 return ret;
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +0100649}
650
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100651void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p)
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800652{
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100653 struct address_space *mapping = state->bdev->bd_inode->i_mapping;
Al Viro94ea4152011-09-16 00:45:36 -0400654 struct page *page;
655
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100656 if (n >= get_capacity(state->bdev->bd_disk)) {
657 state->access_beyond_eod = true;
658 return NULL;
Al Viro94ea4152011-09-16 00:45:36 -0400659 }
Christoph Hellwig1a9fba32020-03-24 08:25:18 +0100660
661 page = read_mapping_page(mapping,
662 (pgoff_t)(n >> (PAGE_SHIFT - 9)), NULL);
663 if (IS_ERR(page))
664 goto out;
665 if (PageError(page))
666 goto out_put_page;
667
668 p->v = page;
669 return (unsigned char *)page_address(page) +
670 ((n & ((1 << (PAGE_SHIFT - 9)) - 1)) << SECTOR_SHIFT);
671out_put_page:
672 put_page(page);
673out:
Al Viro94ea4152011-09-16 00:45:36 -0400674 p->v = NULL;
675 return NULL;
676}