Merge tag 'driver-core-6.2-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / block / genhd.c
CommitLineData
3dcf60bc 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * gendisk handling
7b51e703
CH
4 *
5 * Portions Copyright (C) 2020 Christoph Hellwig
1da177e4
LT
6 */
7
1da177e4 8#include <linux/module.h>
3ad5cee5 9#include <linux/ctype.h>
1da177e4 10#include <linux/fs.h>
b446b60e 11#include <linux/kdev_t.h>
1da177e4
LT
12#include <linux/kernel.h>
13#include <linux/blkdev.h>
66114cad 14#include <linux/backing-dev.h>
1da177e4
LT
15#include <linux/init.h>
16#include <linux/spinlock.h>
f500975a 17#include <linux/proc_fs.h>
1da177e4
LT
18#include <linux/seq_file.h>
19#include <linux/slab.h>
20#include <linux/kmod.h>
b81e0c23 21#include <linux/major.h>
58383af6 22#include <linux/mutex.h>
bcce3de1 23#include <linux/idr.h>
77ea887e 24#include <linux/log2.h>
25e823c8 25#include <linux/pm_runtime.h>
99e6608c 26#include <linux/badblocks.h>
82d981d4 27#include <linux/part_stat.h>
8f9e7b65 28#include "blk-throttle.h"
1da177e4 29
ff88972c 30#include "blk.h"
2aa7745b 31#include "blk-mq-sched.h"
8e141f9e 32#include "blk-rq-qos.h"
1059699f 33#include "blk-cgroup.h"
ff88972c 34
31eb6186 35static struct kobject *block_depr;
1da177e4 36
cf179948
MC
37/*
38 * Unique, monotonically increasing sequential number associated with block
39 * devices instances (i.e. incremented each time a device is attached).
40 * Associating uevents with block devices in userspace is difficult and racy:
41 * the uevent netlink socket is lossy, and on slow and overloaded systems has
42 * a very high latency.
43 * Block devices do not have exclusive owners in userspace, any process can set
44 * one up (e.g. loop devices). Moreover, device names can be reused (e.g. loop0
45 * can be reused again and again).
46 * A userspace process setting up a block device and watching for its events
47 * cannot thus reliably tell whether an event relates to the device it just set
48 * up or another earlier instance with the same name.
49 * This sequential number allows userspace processes to solve this problem, and
50 * uniquely associate an uevent to the lifetime to a device.
51 */
52static atomic64_t diskseq;
53
bcce3de1 54/* for extended dynamic devt allocation, currently only one major is used */
ce23bba8 55#define NR_EXT_DEVT (1 << MINORBITS)
22ae8ce8 56static DEFINE_IDA(ext_devt_ida);
bcce3de1 57
a782483c
CH
58void set_capacity(struct gendisk *disk, sector_t sectors)
59{
cb8432d6 60 struct block_device *bdev = disk->part0;
a782483c 61
0f472277 62 spin_lock(&bdev->bd_size_lock);
a782483c 63 i_size_write(bdev->bd_inode, (loff_t)sectors << SECTOR_SHIFT);
f09313c5 64 bdev->bd_nr_sectors = sectors;
0f472277 65 spin_unlock(&bdev->bd_size_lock);
a782483c
CH
66}
67EXPORT_SYMBOL(set_capacity);
68
e598a72f 69/*
449f4ec9
CH
70 * Set disk capacity and notify if the size is not currently zero and will not
71 * be set to zero. Returns true if a uevent was sent, otherwise false.
e598a72f 72 */
449f4ec9 73bool set_capacity_and_notify(struct gendisk *disk, sector_t size)
e598a72f
BS
74{
75 sector_t capacity = get_capacity(disk);
a782483c 76 char *envp[] = { "RESIZE=1", NULL };
e598a72f
BS
77
78 set_capacity(disk, size);
e598a72f 79
a782483c
CH
80 /*
81 * Only print a message and send a uevent if the gendisk is user visible
82 * and alive. This avoids spamming the log and udev when setting the
83 * initial capacity during probing.
84 */
85 if (size == capacity ||
50b4aecf
CH
86 !disk_live(disk) ||
87 (disk->flags & GENHD_FL_HIDDEN))
a782483c 88 return false;
e598a72f 89
a782483c 90 pr_info("%s: detected capacity change from %lld to %lld\n",
452c0bf8 91 disk->disk_name, capacity, size);
7e890c37 92
a782483c
CH
93 /*
94 * Historically we did not send a uevent for changes to/from an empty
95 * device.
96 */
97 if (!capacity || !size)
98 return false;
99 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
100 return true;
e598a72f 101}
449f4ec9 102EXPORT_SYMBOL_GPL(set_capacity_and_notify);
e598a72f 103
0d02129e
CH
104static void part_stat_read_all(struct block_device *part,
105 struct disk_stats *stat)
ea18e0f0
KK
106{
107 int cpu;
108
109 memset(stat, 0, sizeof(struct disk_stats));
110 for_each_possible_cpu(cpu) {
0d02129e 111 struct disk_stats *ptr = per_cpu_ptr(part->bd_stats, cpu);
ea18e0f0
KK
112 int group;
113
114 for (group = 0; group < NR_STAT_GROUPS; group++) {
115 stat->nsecs[group] += ptr->nsecs[group];
116 stat->sectors[group] += ptr->sectors[group];
117 stat->ios[group] += ptr->ios[group];
118 stat->merges[group] += ptr->merges[group];
119 }
120
121 stat->io_ticks += ptr->io_ticks;
ea18e0f0
KK
122 }
123}
ea18e0f0 124
8446fe92 125static unsigned int part_in_flight(struct block_device *part)
f299b7c7 126{
b2f609e1 127 unsigned int inflight = 0;
1226b8dd 128 int cpu;
f299b7c7 129
1226b8dd 130 for_each_possible_cpu(cpu) {
e016b782
MP
131 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
132 part_stat_local_read_cpu(part, in_flight[1], cpu);
1226b8dd 133 }
e016b782
MP
134 if ((int)inflight < 0)
135 inflight = 0;
1226b8dd 136
e016b782 137 return inflight;
f299b7c7
JA
138}
139
8446fe92
CH
140static void part_in_flight_rw(struct block_device *part,
141 unsigned int inflight[2])
bf0ddaba 142{
1226b8dd
MP
143 int cpu;
144
1226b8dd
MP
145 inflight[0] = 0;
146 inflight[1] = 0;
147 for_each_possible_cpu(cpu) {
148 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
149 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
150 }
151 if ((int)inflight[0] < 0)
152 inflight[0] = 0;
153 if ((int)inflight[1] < 0)
154 inflight[1] = 0;
bf0ddaba
OS
155}
156
1da177e4
LT
157/*
158 * Can be deleted altogether. Later.
159 *
160 */
133d55cd 161#define BLKDEV_MAJOR_HASH_SIZE 255
1da177e4
LT
162static struct blk_major_name {
163 struct blk_major_name *next;
164 int major;
165 char name[16];
fbdee71b 166#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
a160c615 167 void (*probe)(dev_t devt);
fbdee71b 168#endif
68eef3b4 169} *major_names[BLKDEV_MAJOR_HASH_SIZE];
e49fbbbf 170static DEFINE_MUTEX(major_names_lock);
dfbb3409 171static DEFINE_SPINLOCK(major_names_spinlock);
1da177e4
LT
172
173/* index in the above - for now: assume no multimajor ranges */
e61eb2e9 174static inline int major_to_index(unsigned major)
1da177e4 175{
68eef3b4 176 return major % BLKDEV_MAJOR_HASH_SIZE;
7170be5f
NH
177}
178
68eef3b4 179#ifdef CONFIG_PROC_FS
cf771cb5 180void blkdev_show(struct seq_file *seqf, off_t offset)
7170be5f 181{
68eef3b4 182 struct blk_major_name *dp;
7170be5f 183
dfbb3409 184 spin_lock(&major_names_spinlock);
133d55cd
LG
185 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
186 if (dp->major == offset)
cf771cb5 187 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
dfbb3409 188 spin_unlock(&major_names_spinlock);
1da177e4 189}
68eef3b4 190#endif /* CONFIG_PROC_FS */
1da177e4 191
9e8c0bcc 192/**
e2b6b301 193 * __register_blkdev - register a new block device
9e8c0bcc 194 *
f33ff110
SB
195 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
196 * @major = 0, try to allocate any unused major number.
9e8c0bcc 197 * @name: the name of the new block device as a zero terminated string
26e06f5b
LC
198 * @probe: pre-devtmpfs / pre-udev callback used to create disks when their
199 * pre-created device node is accessed. When a probe call uses
200 * add_disk() and it fails the driver must cleanup resources. This
201 * interface may soon be removed.
9e8c0bcc
MN
202 *
203 * The @name must be unique within the system.
204 *
0e056eb5 205 * The return value depends on the @major input parameter:
206 *
f33ff110
SB
207 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
208 * then the function returns zero on success, or a negative error code
0e056eb5 209 * - if any unused major number was requested with @major = 0 parameter
9e8c0bcc 210 * then the return value is the allocated major number in range
f33ff110
SB
211 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
212 *
213 * See Documentation/admin-guide/devices.txt for the list of allocated
214 * major numbers.
e2b6b301
CH
215 *
216 * Use register_blkdev instead for any new code.
9e8c0bcc 217 */
a160c615
CH
218int __register_blkdev(unsigned int major, const char *name,
219 void (*probe)(dev_t devt))
1da177e4
LT
220{
221 struct blk_major_name **n, *p;
222 int index, ret = 0;
223
e49fbbbf 224 mutex_lock(&major_names_lock);
1da177e4
LT
225
226 /* temporary */
227 if (major == 0) {
228 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
229 if (major_names[index] == NULL)
230 break;
231 }
232
233 if (index == 0) {
dfc76d11
KP
234 printk("%s: failed to get major for %s\n",
235 __func__, name);
1da177e4
LT
236 ret = -EBUSY;
237 goto out;
238 }
239 major = index;
240 ret = major;
241 }
242
133d55cd 243 if (major >= BLKDEV_MAJOR_MAX) {
dfc76d11
KP
244 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
245 __func__, major, BLKDEV_MAJOR_MAX-1, name);
133d55cd
LG
246
247 ret = -EINVAL;
248 goto out;
249 }
250
1da177e4
LT
251 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
252 if (p == NULL) {
253 ret = -ENOMEM;
254 goto out;
255 }
256
257 p->major = major;
fbdee71b 258#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
a160c615 259 p->probe = probe;
fbdee71b 260#endif
1da177e4
LT
261 strlcpy(p->name, name, sizeof(p->name));
262 p->next = NULL;
263 index = major_to_index(major);
264
dfbb3409 265 spin_lock(&major_names_spinlock);
1da177e4
LT
266 for (n = &major_names[index]; *n; n = &(*n)->next) {
267 if ((*n)->major == major)
268 break;
269 }
270 if (!*n)
271 *n = p;
272 else
273 ret = -EBUSY;
dfbb3409 274 spin_unlock(&major_names_spinlock);
1da177e4
LT
275
276 if (ret < 0) {
f33ff110 277 printk("register_blkdev: cannot get major %u for %s\n",
1da177e4
LT
278 major, name);
279 kfree(p);
280 }
281out:
e49fbbbf 282 mutex_unlock(&major_names_lock);
1da177e4
LT
283 return ret;
284}
a160c615 285EXPORT_SYMBOL(__register_blkdev);
1da177e4 286
f4480240 287void unregister_blkdev(unsigned int major, const char *name)
1da177e4
LT
288{
289 struct blk_major_name **n;
290 struct blk_major_name *p = NULL;
291 int index = major_to_index(major);
1da177e4 292
e49fbbbf 293 mutex_lock(&major_names_lock);
dfbb3409 294 spin_lock(&major_names_spinlock);
1da177e4
LT
295 for (n = &major_names[index]; *n; n = &(*n)->next)
296 if ((*n)->major == major)
297 break;
294462a5
AM
298 if (!*n || strcmp((*n)->name, name)) {
299 WARN_ON(1);
294462a5 300 } else {
1da177e4
LT
301 p = *n;
302 *n = p->next;
303 }
dfbb3409 304 spin_unlock(&major_names_spinlock);
e49fbbbf 305 mutex_unlock(&major_names_lock);
1da177e4 306 kfree(p);
1da177e4
LT
307}
308
309EXPORT_SYMBOL(unregister_blkdev);
310
7c3f828b 311int blk_alloc_ext_minor(void)
bcce3de1 312{
bab998d6 313 int idx;
bcce3de1 314
d1868328 315 idx = ida_alloc_range(&ext_devt_ida, 0, NR_EXT_DEVT - 1, GFP_KERNEL);
c4b2b7d1
CH
316 if (idx == -ENOSPC)
317 return -EBUSY;
318 return idx;
bcce3de1
TH
319}
320
7c3f828b 321void blk_free_ext_minor(unsigned int minor)
bcce3de1 322{
c4b2b7d1 323 ida_free(&ext_devt_ida, minor);
6fcc44d1
YY
324}
325
1f014290
TH
326static char *bdevt_str(dev_t devt, char *buf)
327{
328 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
329 char tbuf[BDEVT_SIZE];
330 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
331 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
332 } else
333 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
334
335 return buf;
336}
337
bc359d03
CH
338void disk_uevent(struct gendisk *disk, enum kobject_action action)
339{
bc359d03 340 struct block_device *part;
3212135a 341 unsigned long idx;
bc359d03 342
3212135a
CH
343 rcu_read_lock();
344 xa_for_each(&disk->part_tbl, idx, part) {
345 if (bdev_is_partition(part) && !bdev_nr_sectors(part))
346 continue;
498dcc13 347 if (!kobject_get_unless_zero(&part->bd_device.kobj))
3212135a
CH
348 continue;
349
350 rcu_read_unlock();
bc359d03 351 kobject_uevent(bdev_kobj(part), action);
498dcc13 352 put_device(&part->bd_device);
3212135a
CH
353 rcu_read_lock();
354 }
355 rcu_read_unlock();
bc359d03
CH
356}
357EXPORT_SYMBOL_GPL(disk_uevent);
358
36369f46 359int disk_scan_partitions(struct gendisk *disk, fmode_t mode, void *owner)
9301fe73
CH
360{
361 struct block_device *bdev;
362
9f18db57 363 if (disk->flags & (GENHD_FL_NO_PART | GENHD_FL_HIDDEN))
e16e506c 364 return -EINVAL;
b9684a71
CH
365 if (test_bit(GD_SUPPRESS_PART_SCAN, &disk->state))
366 return -EINVAL;
e16e506c
CH
367 if (disk->open_partitions)
368 return -EBUSY;
36369f46
JK
369 /* Someone else has bdev exclusively open? */
370 if (disk->part0->bd_holder && disk->part0->bd_holder != owner)
371 return -EBUSY;
9301fe73
CH
372
373 set_bit(GD_NEED_PART_SCAN, &disk->state);
e16e506c
CH
374 bdev = blkdev_get_by_dev(disk_devt(disk), mode, NULL);
375 if (IS_ERR(bdev))
376 return PTR_ERR(bdev);
377 blkdev_put(bdev, mode);
378 return 0;
9301fe73
CH
379}
380
1da177e4 381/**
d1254a87 382 * device_add_disk - add disk information to kernel list
e63a46be 383 * @parent: parent device for the disk
1da177e4 384 * @disk: per-device partitioning information
fef912bf 385 * @groups: Additional per-device sysfs groups
1da177e4
LT
386 *
387 * This function registers the partitioning information in @disk
388 * with the kernel.
389 */
278167fd
LC
390int __must_check device_add_disk(struct device *parent, struct gendisk *disk,
391 const struct attribute_group **groups)
d1254a87 392
1da177e4 393{
52b85909 394 struct device *ddev = disk_to_dev(disk);
7c3f828b 395 int ret;
cf0ca9fe 396
69fe0f29
ML
397 /* Only makes sense for bio-based to set ->poll_bio */
398 if (queue_is_mq(disk->queue) && disk->fops->poll_bio)
399 return -EINVAL;
400
737eb78e
DLM
401 /*
402 * The disk queue should now be all set with enough information about
403 * the device for the elevator code to pick an adequate default
404 * elevator if one is needed, that is, for devices requesting queue
405 * registration.
406 */
d1254a87 407 elevator_init_mq(disk->queue);
737eb78e 408
7c3f828b
CH
409 /*
410 * If the driver provides an explicit major number it also must provide
411 * the number of minors numbers supported, and those will be used to
412 * setup the gendisk.
413 * Otherwise just allocate the device numbers for both the whole device
414 * and all partitions from the extended dev_t space.
3e1a7ff8 415 */
02341a08 416 ret = -EINVAL;
7c3f828b 417 if (disk->major) {
83cbce95 418 if (WARN_ON(!disk->minors))
02341a08 419 goto out_exit_elevator;
2e3c73fa
CH
420
421 if (disk->minors > DISK_MAX_PARTS) {
422 pr_err("block: can't allocate more than %d partitions\n",
423 DISK_MAX_PARTS);
424 disk->minors = DISK_MAX_PARTS;
425 }
e338924b 426 if (disk->first_minor + disk->minors > MINORMASK + 1)
02341a08 427 goto out_exit_elevator;
7c3f828b 428 } else {
83cbce95 429 if (WARN_ON(disk->minors))
02341a08 430 goto out_exit_elevator;
3e1a7ff8 431
7c3f828b 432 ret = blk_alloc_ext_minor();
83cbce95 433 if (ret < 0)
02341a08 434 goto out_exit_elevator;
7c3f828b 435 disk->major = BLOCK_EXT_MAJOR;
539711d7 436 disk->first_minor = ret;
3e1a7ff8 437 }
7c3f828b 438
52b85909
CH
439 /* delay uevents, until we scanned partition table */
440 dev_set_uevent_suppress(ddev, 1);
441
442 ddev->parent = parent;
443 ddev->groups = groups;
444 dev_set_name(ddev, "%s", disk->disk_name);
8235b5c1
CH
445 if (!(disk->flags & GENHD_FL_HIDDEN))
446 ddev->devt = MKDEV(disk->major, disk->first_minor);
83cbce95
LC
447 ret = device_add(ddev);
448 if (ret)
99d8690a
CH
449 goto out_free_ext_minor;
450
451 ret = disk_alloc_events(disk);
452 if (ret)
453 goto out_device_del;
454
52b85909
CH
455 if (!sysfs_deprecated) {
456 ret = sysfs_create_link(block_depr, &ddev->kobj,
457 kobject_name(&ddev->kobj));
83cbce95
LC
458 if (ret)
459 goto out_device_del;
52b85909
CH
460 }
461
462 /*
463 * avoid probable deadlock caused by allocating memory with
464 * GFP_KERNEL in runtime_resume callback of its all ancestor
465 * devices
466 */
467 pm_runtime_set_memalloc_noio(ddev, true);
468
83cbce95
LC
469 ret = blk_integrity_add(disk);
470 if (ret)
471 goto out_del_block_link;
bab53f6b 472
52b85909
CH
473 disk->part0->bd_holder_dir =
474 kobject_create_and_add("holders", &ddev->kobj);
fe7d064f
LC
475 if (!disk->part0->bd_holder_dir) {
476 ret = -ENOMEM;
83cbce95 477 goto out_del_integrity;
fe7d064f 478 }
52b85909 479 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
fe7d064f
LC
480 if (!disk->slave_dir) {
481 ret = -ENOMEM;
83cbce95 482 goto out_put_holder_dir;
fe7d064f 483 }
52b85909 484
83cbce95
LC
485 ret = blk_register_queue(disk);
486 if (ret)
487 goto out_put_slave_dir;
75f4dca5 488
9f18db57 489 if (!(disk->flags & GENHD_FL_HIDDEN)) {
8235b5c1
CH
490 ret = bdi_register(disk->bdi, "%u:%u",
491 disk->major, disk->first_minor);
83cbce95
LC
492 if (ret)
493 goto out_unregister_queue;
8235b5c1 494 bdi_set_owner(disk->bdi, ddev);
83cbce95
LC
495 ret = sysfs_create_link(&ddev->kobj,
496 &disk->bdi->dev->kobj, "bdi");
497 if (ret)
498 goto out_unregister_bdi;
8235b5c1 499
9d5ee676 500 bdev_add(disk->part0, ddev->devt);
e16e506c 501 if (get_capacity(disk))
36369f46 502 disk_scan_partitions(disk, FMODE_READ, NULL);
52b85909
CH
503
504 /*
505 * Announce the disk and partitions after all partitions are
8235b5c1 506 * created. (for hidden disks uevents remain suppressed forever)
52b85909
CH
507 */
508 dev_set_uevent_suppress(ddev, 0);
509 disk_uevent(disk, KOBJ_ADD);
a0a6314a
CH
510 } else {
511 /*
512 * Even if the block_device for a hidden gendisk is not
513 * registered, it needs to have a valid bd_dev so that the
514 * freeing of the dynamic major works.
515 */
516 disk->part0->bd_dev = MKDEV(disk->major, disk->first_minor);
52b85909
CH
517 }
518
75f4dca5 519 disk_update_readahead(disk);
77ea887e 520 disk_add_events(disk);
76792055 521 set_bit(GD_ADDED, &disk->state);
83cbce95
LC
522 return 0;
523
524out_unregister_bdi:
525 if (!(disk->flags & GENHD_FL_HIDDEN))
526 bdi_unregister(disk->bdi);
527out_unregister_queue:
528 blk_unregister_queue(disk);
fa81cbaf 529 rq_qos_exit(disk->queue);
83cbce95
LC
530out_put_slave_dir:
531 kobject_put(disk->slave_dir);
d90db3b1 532 disk->slave_dir = NULL;
83cbce95
LC
533out_put_holder_dir:
534 kobject_put(disk->part0->bd_holder_dir);
535out_del_integrity:
536 blk_integrity_del(disk);
537out_del_block_link:
538 if (!sysfs_deprecated)
539 sysfs_remove_link(block_depr, dev_name(ddev));
540out_device_del:
541 device_del(ddev);
83cbce95
LC
542out_free_ext_minor:
543 if (disk->major == BLOCK_EXT_MAJOR)
544 blk_free_ext_minor(disk->first_minor);
02341a08
YK
545out_exit_elevator:
546 if (disk->queue->elevator)
547 elevator_exit(disk->queue);
278167fd 548 return ret;
1da177e4 549}
e63a46be 550EXPORT_SYMBOL(device_add_disk);
1da177e4 551
7a5428dc
CH
552/**
553 * blk_mark_disk_dead - mark a disk as dead
554 * @disk: disk to mark as dead
555 *
556 * Mark as disk as dead (e.g. surprise removed) and don't accept any new I/O
557 * to this disk.
558 */
559void blk_mark_disk_dead(struct gendisk *disk)
560{
561 set_bit(GD_DEAD, &disk->state);
562 blk_queue_start_drain(disk->queue);
71b26083
CH
563
564 /*
565 * Stop buffered writers from dirtying pages that can't be written out.
566 */
567 set_capacity_and_notify(disk, 0);
7a5428dc
CH
568}
569EXPORT_SYMBOL_GPL(blk_mark_disk_dead);
570
b5bd357c
LC
571/**
572 * del_gendisk - remove the gendisk
573 * @disk: the struct gendisk to remove
574 *
575 * Removes the gendisk and all its associated resources. This deletes the
576 * partitions associated with the gendisk, and unregisters the associated
577 * request_queue.
578 *
579 * This is the counter to the respective __device_add_disk() call.
580 *
581 * The final removal of the struct gendisk happens when its refcount reaches 0
582 * with put_disk(), which should be called after del_gendisk(), if
583 * __device_add_disk() was used.
e8c7d14a
LC
584 *
585 * Drivers exist which depend on the release of the gendisk to be synchronous,
586 * it should not be deferred.
587 *
588 * Context: can sleep
b5bd357c 589 */
d2bf1b67 590void del_gendisk(struct gendisk *disk)
1da177e4 591{
8e141f9e
CH
592 struct request_queue *q = disk->queue;
593
e8c7d14a
LC
594 might_sleep();
595
9f286992 596 if (WARN_ON_ONCE(!disk_live(disk) && !(disk->flags & GENHD_FL_HIDDEN)))
6b3ba976
CH
597 return;
598
25520d55 599 blk_integrity_del(disk);
77ea887e
TH
600 disk_del_events(disk);
601
a8698707 602 mutex_lock(&disk->open_mutex);
d7a66574 603 remove_inode_hash(disk->part0->bd_inode);
d3c4a43d 604 blk_drop_partitions(disk);
a8698707 605 mutex_unlock(&disk->open_mutex);
c76f48eb 606
45611837
CH
607 fsync_bdev(disk->part0);
608 __invalidate_device(disk->part0, true);
609
8e141f9e
CH
610 /*
611 * Fail any new I/O.
612 */
613 set_bit(GD_DEAD, &disk->state);
6f8191fd
CH
614 if (test_bit(GD_OWNS_QUEUE, &disk->state))
615 blk_queue_flag_set(QUEUE_FLAG_DYING, q);
d2bf1b67 616 set_capacity(disk, 0);
d2bf1b67 617
8e141f9e
CH
618 /*
619 * Prevent new I/O from crossing bio_queue_enter().
620 */
621 blk_queue_start_drain(q);
8e141f9e 622
6b3ba976 623 if (!(disk->flags & GENHD_FL_HIDDEN)) {
8ddcd653 624 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
6b3ba976 625
90f16fdd
JK
626 /*
627 * Unregister bdi before releasing device numbers (as they can
628 * get reused and we'd get clashes in sysfs).
629 */
edb0872f 630 bdi_unregister(disk->bdi);
90f16fdd 631 }
d2bf1b67 632
6b3ba976 633 blk_unregister_queue(disk);
d2bf1b67 634
cb8432d6 635 kobject_put(disk->part0->bd_holder_dir);
d2bf1b67 636 kobject_put(disk->slave_dir);
d90db3b1 637 disk->slave_dir = NULL;
d2bf1b67 638
8446fe92 639 part_stat_set_all(disk->part0, 0);
cb8432d6 640 disk->part0->bd_stamp = 0;
d2bf1b67
TH
641 if (!sysfs_deprecated)
642 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
25e823c8 643 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
d2bf1b67 644 device_del(disk_to_dev(disk));
d308ae0d 645
4c66a326
CH
646 blk_mq_freeze_queue_wait(q);
647
cad9266a 648 blk_throtl_cancel_bios(disk);
8f9e7b65 649
d308ae0d
ML
650 blk_sync_queue(q);
651 blk_flush_integrity();
219cf43c
JC
652
653 if (queue_is_mq(q))
654 blk_mq_cancel_work_sync(q);
50e34d78
CH
655
656 blk_mq_quiesce_queue(q);
657 if (q->elevator) {
658 mutex_lock(&q->sysfs_lock);
659 elevator_exit(q);
660 mutex_unlock(&q->sysfs_lock);
661 }
662 rq_qos_exit(q);
663 blk_mq_unquiesce_queue(q);
664
d308ae0d 665 /*
6f8191fd
CH
666 * If the disk does not own the queue, allow using passthrough requests
667 * again. Else leave the queue frozen to fail all I/O.
d308ae0d 668 */
6f8191fd
CH
669 if (!test_bit(GD_OWNS_QUEUE, &disk->state)) {
670 blk_queue_flag_clear(QUEUE_FLAG_INIT_DONE, q);
671 __blk_mq_unfreeze_queue(q, true);
672 } else {
673 if (queue_is_mq(q))
674 blk_mq_exit_queue(q);
675 }
1da177e4 676}
d2bf1b67 677EXPORT_SYMBOL(del_gendisk);
1da177e4 678
f059a1d2
XY
679/**
680 * invalidate_disk - invalidate the disk
681 * @disk: the struct gendisk to invalidate
682 *
683 * A helper to invalidates the disk. It will clean the disk's associated
684 * buffer/page caches and reset its internal states so that the disk
685 * can be reused by the drivers.
686 *
687 * Context: can sleep
688 */
689void invalidate_disk(struct gendisk *disk)
690{
691 struct block_device *bdev = disk->part0;
692
693 invalidate_bdev(bdev);
694 bdev->bd_inode->i_mapping->wb_err = 0;
695 set_capacity(disk, 0);
696}
697EXPORT_SYMBOL(invalidate_disk);
698
99e6608c
VV
699/* sysfs access to bad-blocks list. */
700static ssize_t disk_badblocks_show(struct device *dev,
701 struct device_attribute *attr,
702 char *page)
703{
704 struct gendisk *disk = dev_to_disk(dev);
705
706 if (!disk->bb)
707 return sprintf(page, "\n");
708
709 return badblocks_show(disk->bb, page, 0);
710}
711
712static ssize_t disk_badblocks_store(struct device *dev,
713 struct device_attribute *attr,
714 const char *page, size_t len)
715{
716 struct gendisk *disk = dev_to_disk(dev);
717
718 if (!disk->bb)
719 return -ENXIO;
720
721 return badblocks_store(disk->bb, page, len, 0);
722}
723
fbdee71b 724#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
22ae8ce8 725void blk_request_module(dev_t devt)
bd8eff3b 726{
a160c615
CH
727 unsigned int major = MAJOR(devt);
728 struct blk_major_name **n;
729
730 mutex_lock(&major_names_lock);
731 for (n = &major_names[major_to_index(major)]; *n; n = &(*n)->next) {
732 if ((*n)->major == major && (*n)->probe) {
733 (*n)->probe(devt);
734 mutex_unlock(&major_names_lock);
735 return;
736 }
737 }
738 mutex_unlock(&major_names_lock);
739
bd8eff3b
CH
740 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
741 /* Make old-style 2.4 aliases work */
742 request_module("block-major-%d", MAJOR(devt));
743}
fbdee71b 744#endif /* CONFIG_BLOCK_LEGACY_AUTOLOAD */
bd8eff3b 745
5c6f35c5
GKH
746/*
747 * print a full list of all partitions - intended for places where the root
748 * filesystem can't be mounted and thus to give the victim some idea of what
749 * went wrong
750 */
751void __init printk_all_partitions(void)
752{
def4e38d
TH
753 struct class_dev_iter iter;
754 struct device *dev;
755
756 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
757 while ((dev = class_dev_iter_next(&iter))) {
758 struct gendisk *disk = dev_to_disk(dev);
ad1eaa53 759 struct block_device *part;
1f014290 760 char devt_buf[BDEVT_SIZE];
e559f58d 761 unsigned long idx;
def4e38d
TH
762
763 /*
764 * Don't show empty devices or things that have been
25985edc 765 * suppressed
def4e38d 766 */
3b5149ac 767 if (get_capacity(disk) == 0 || (disk->flags & GENHD_FL_HIDDEN))
def4e38d
TH
768 continue;
769
770 /*
e559f58d
CH
771 * Note, unlike /proc/partitions, I am showing the numbers in
772 * hex - the same format as the root= option takes.
def4e38d 773 */
e559f58d
CH
774 rcu_read_lock();
775 xa_for_each(&disk->part_tbl, idx, part) {
776 if (!bdev_nr_sectors(part))
777 continue;
a9e7bc3d 778 printk("%s%s %10llu %pg %s",
e559f58d 779 bdev_is_partition(part) ? " " : "",
ad1eaa53 780 bdevt_str(part->bd_dev, devt_buf),
a9e7bc3d 781 bdev_nr_sectors(part) >> 1, part,
ad1eaa53
CH
782 part->bd_meta_info ?
783 part->bd_meta_info->uuid : "");
e559f58d 784 if (bdev_is_partition(part))
074a7aca 785 printk("\n");
e559f58d
CH
786 else if (dev->parent && dev->parent->driver)
787 printk(" driver: %s\n",
788 dev->parent->driver->name);
789 else
790 printk(" (driver?)\n");
074a7aca 791 }
e559f58d 792 rcu_read_unlock();
def4e38d
TH
793 }
794 class_dev_iter_exit(&iter);
dd2a345f
DG
795}
796
1da177e4
LT
797#ifdef CONFIG_PROC_FS
798/* iterator */
def4e38d 799static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
68c4d4a7 800{
def4e38d
TH
801 loff_t skip = *pos;
802 struct class_dev_iter *iter;
803 struct device *dev;
68c4d4a7 804
aeb3d3a8 805 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
def4e38d
TH
806 if (!iter)
807 return ERR_PTR(-ENOMEM);
808
809 seqf->private = iter;
810 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
811 do {
812 dev = class_dev_iter_next(iter);
813 if (!dev)
814 return NULL;
815 } while (skip--);
816
817 return dev_to_disk(dev);
68c4d4a7
GKH
818}
819
def4e38d 820static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
1da177e4 821{
edfaa7c3 822 struct device *dev;
1da177e4 823
def4e38d
TH
824 (*pos)++;
825 dev = class_dev_iter_next(seqf->private);
2ac3cee5 826 if (dev)
68c4d4a7 827 return dev_to_disk(dev);
2ac3cee5 828
1da177e4
LT
829 return NULL;
830}
831
def4e38d 832static void disk_seqf_stop(struct seq_file *seqf, void *v)
27f30251 833{
def4e38d 834 struct class_dev_iter *iter = seqf->private;
27f30251 835
def4e38d
TH
836 /* stop is called even after start failed :-( */
837 if (iter) {
838 class_dev_iter_exit(iter);
839 kfree(iter);
77da1605 840 seqf->private = NULL;
5c0ef6d0 841 }
1da177e4
LT
842}
843
def4e38d 844static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
1da177e4 845{
06768067 846 void *p;
def4e38d
TH
847
848 p = disk_seqf_start(seqf, pos);
b9f985b6 849 if (!IS_ERR_OR_NULL(p) && !*pos)
def4e38d
TH
850 seq_puts(seqf, "major minor #blocks name\n\n");
851 return p;
1da177e4
LT
852}
853
cf771cb5 854static int show_partition(struct seq_file *seqf, void *v)
1da177e4
LT
855{
856 struct gendisk *sgp = v;
ad1eaa53 857 struct block_device *part;
ecc75a98 858 unsigned long idx;
1da177e4 859
3b5149ac 860 if (!get_capacity(sgp) || (sgp->flags & GENHD_FL_HIDDEN))
1da177e4
LT
861 return 0;
862
ecc75a98
CH
863 rcu_read_lock();
864 xa_for_each(&sgp->part_tbl, idx, part) {
865 if (!bdev_nr_sectors(part))
866 continue;
a291bb43 867 seq_printf(seqf, "%4d %7d %10llu %pg\n",
ad1eaa53 868 MAJOR(part->bd_dev), MINOR(part->bd_dev),
a291bb43 869 bdev_nr_sectors(part) >> 1, part);
ecc75a98
CH
870 }
871 rcu_read_unlock();
1da177e4
LT
872 return 0;
873}
874
f500975a 875static const struct seq_operations partitions_op = {
def4e38d
TH
876 .start = show_partition_start,
877 .next = disk_seqf_next,
878 .stop = disk_seqf_stop,
edfaa7c3 879 .show = show_partition
1da177e4
LT
880};
881#endif
882
1da177e4
LT
883static int __init genhd_device_init(void)
884{
e105b8bf
DW
885 int error;
886
887 block_class.dev_kobj = sysfs_dev_block_kobj;
888 error = class_register(&block_class);
ee27a558
RM
889 if (unlikely(error))
890 return error;
1da177e4 891 blk_dev_init();
edfaa7c3 892
561ec68e
ZY
893 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
894
edfaa7c3 895 /* create top-level block dir */
e52eec13
AK
896 if (!sysfs_deprecated)
897 block_depr = kobject_create_and_add("block", NULL);
830d3cfb 898 return 0;
1da177e4
LT
899}
900
901subsys_initcall(genhd_device_init);
902
edfaa7c3
KS
903static ssize_t disk_range_show(struct device *dev,
904 struct device_attribute *attr, char *buf)
1da177e4 905{
edfaa7c3 906 struct gendisk *disk = dev_to_disk(dev);
1da177e4 907
edfaa7c3 908 return sprintf(buf, "%d\n", disk->minors);
1da177e4
LT
909}
910
1f014290
TH
911static ssize_t disk_ext_range_show(struct device *dev,
912 struct device_attribute *attr, char *buf)
913{
914 struct gendisk *disk = dev_to_disk(dev);
915
1ebe2e5f
CH
916 return sprintf(buf, "%d\n",
917 (disk->flags & GENHD_FL_NO_PART) ? 1 : DISK_MAX_PARTS);
1f014290
TH
918}
919
edfaa7c3
KS
920static ssize_t disk_removable_show(struct device *dev,
921 struct device_attribute *attr, char *buf)
a7fd6706 922{
edfaa7c3 923 struct gendisk *disk = dev_to_disk(dev);
a7fd6706 924
edfaa7c3
KS
925 return sprintf(buf, "%d\n",
926 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
a7fd6706
KS
927}
928
8ddcd653
CH
929static ssize_t disk_hidden_show(struct device *dev,
930 struct device_attribute *attr, char *buf)
931{
932 struct gendisk *disk = dev_to_disk(dev);
933
934 return sprintf(buf, "%d\n",
935 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
936}
937
1c9ce527
KS
938static ssize_t disk_ro_show(struct device *dev,
939 struct device_attribute *attr, char *buf)
940{
941 struct gendisk *disk = dev_to_disk(dev);
942
b7db9956 943 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
1c9ce527
KS
944}
945
3ad5cee5
CH
946ssize_t part_size_show(struct device *dev,
947 struct device_attribute *attr, char *buf)
948{
0d02129e 949 return sprintf(buf, "%llu\n", bdev_nr_sectors(dev_to_bdev(dev)));
3ad5cee5
CH
950}
951
952ssize_t part_stat_show(struct device *dev,
953 struct device_attribute *attr, char *buf)
954{
0d02129e 955 struct block_device *bdev = dev_to_bdev(dev);
ed6cddef 956 struct request_queue *q = bdev_get_queue(bdev);
ea18e0f0 957 struct disk_stats stat;
3ad5cee5
CH
958 unsigned int inflight;
959
b2f609e1 960 if (queue_is_mq(q))
0d02129e 961 inflight = blk_mq_in_flight(q, bdev);
b2f609e1 962 else
0d02129e 963 inflight = part_in_flight(bdev);
ea18e0f0 964
86d73312
ZW
965 if (inflight) {
966 part_stat_lock();
967 update_io_ticks(bdev, jiffies, true);
968 part_stat_unlock();
969 }
970 part_stat_read_all(bdev, &stat);
3ad5cee5
CH
971 return sprintf(buf,
972 "%8lu %8lu %8llu %8u "
973 "%8lu %8lu %8llu %8u "
974 "%8u %8u %8u "
975 "%8lu %8lu %8llu %8u "
976 "%8lu %8u"
977 "\n",
ea18e0f0
KK
978 stat.ios[STAT_READ],
979 stat.merges[STAT_READ],
980 (unsigned long long)stat.sectors[STAT_READ],
981 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
982 stat.ios[STAT_WRITE],
983 stat.merges[STAT_WRITE],
984 (unsigned long long)stat.sectors[STAT_WRITE],
985 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
3ad5cee5 986 inflight,
ea18e0f0 987 jiffies_to_msecs(stat.io_ticks),
8cd5b8fc
KK
988 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
989 stat.nsecs[STAT_WRITE] +
990 stat.nsecs[STAT_DISCARD] +
991 stat.nsecs[STAT_FLUSH],
992 NSEC_PER_MSEC),
ea18e0f0
KK
993 stat.ios[STAT_DISCARD],
994 stat.merges[STAT_DISCARD],
995 (unsigned long long)stat.sectors[STAT_DISCARD],
996 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
997 stat.ios[STAT_FLUSH],
998 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
3ad5cee5
CH
999}
1000
1001ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1002 char *buf)
1003{
0d02129e 1004 struct block_device *bdev = dev_to_bdev(dev);
ed6cddef 1005 struct request_queue *q = bdev_get_queue(bdev);
3ad5cee5
CH
1006 unsigned int inflight[2];
1007
b2f609e1 1008 if (queue_is_mq(q))
0d02129e 1009 blk_mq_in_flight_rw(q, bdev, inflight);
b2f609e1 1010 else
0d02129e 1011 part_in_flight_rw(bdev, inflight);
b2f609e1 1012
3ad5cee5
CH
1013 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1014}
1015
edfaa7c3
KS
1016static ssize_t disk_capability_show(struct device *dev,
1017 struct device_attribute *attr, char *buf)
86ce18d7 1018{
edfaa7c3
KS
1019 struct gendisk *disk = dev_to_disk(dev);
1020
1021 return sprintf(buf, "%x\n", disk->flags);
86ce18d7 1022}
edfaa7c3 1023
c72758f3
MP
1024static ssize_t disk_alignment_offset_show(struct device *dev,
1025 struct device_attribute *attr,
1026 char *buf)
1027{
1028 struct gendisk *disk = dev_to_disk(dev);
1029
640f2a23 1030 return sprintf(buf, "%d\n", bdev_alignment_offset(disk->part0));
c72758f3
MP
1031}
1032
86b37281
MP
1033static ssize_t disk_discard_alignment_show(struct device *dev,
1034 struct device_attribute *attr,
1035 char *buf)
1036{
1037 struct gendisk *disk = dev_to_disk(dev);
1038
4e1462ff 1039 return sprintf(buf, "%d\n", bdev_alignment_offset(disk->part0));
86b37281
MP
1040}
1041
13927b31
MC
1042static ssize_t diskseq_show(struct device *dev,
1043 struct device_attribute *attr, char *buf)
1044{
1045 struct gendisk *disk = dev_to_disk(dev);
1046
1047 return sprintf(buf, "%llu\n", disk->diskseq);
1048}
1049
5657a819
JP
1050static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1051static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1052static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1053static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1054static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1055static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1056static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1057static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1058static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1059static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1060static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1061static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
13927b31 1062static DEVICE_ATTR(diskseq, 0444, diskseq_show, NULL);
3ad5cee5 1063
c17bb495 1064#ifdef CONFIG_FAIL_MAKE_REQUEST
3ad5cee5
CH
1065ssize_t part_fail_show(struct device *dev,
1066 struct device_attribute *attr, char *buf)
1067{
0d02129e 1068 return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_make_it_fail);
3ad5cee5
CH
1069}
1070
1071ssize_t part_fail_store(struct device *dev,
1072 struct device_attribute *attr,
1073 const char *buf, size_t count)
1074{
3ad5cee5
CH
1075 int i;
1076
1077 if (count > 0 && sscanf(buf, "%d", &i) > 0)
0d02129e 1078 dev_to_bdev(dev)->bd_make_it_fail = i;
3ad5cee5
CH
1079
1080 return count;
1081}
1082
edfaa7c3 1083static struct device_attribute dev_attr_fail =
5657a819 1084 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
3ad5cee5
CH
1085#endif /* CONFIG_FAIL_MAKE_REQUEST */
1086
581d4e28
JA
1087#ifdef CONFIG_FAIL_IO_TIMEOUT
1088static struct device_attribute dev_attr_fail_timeout =
5657a819 1089 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
581d4e28 1090#endif
edfaa7c3
KS
1091
1092static struct attribute *disk_attrs[] = {
1093 &dev_attr_range.attr,
1f014290 1094 &dev_attr_ext_range.attr,
edfaa7c3 1095 &dev_attr_removable.attr,
8ddcd653 1096 &dev_attr_hidden.attr,
1c9ce527 1097 &dev_attr_ro.attr,
edfaa7c3 1098 &dev_attr_size.attr,
c72758f3 1099 &dev_attr_alignment_offset.attr,
86b37281 1100 &dev_attr_discard_alignment.attr,
edfaa7c3
KS
1101 &dev_attr_capability.attr,
1102 &dev_attr_stat.attr,
316d315b 1103 &dev_attr_inflight.attr,
99e6608c 1104 &dev_attr_badblocks.attr,
2bc8cda5
CH
1105 &dev_attr_events.attr,
1106 &dev_attr_events_async.attr,
1107 &dev_attr_events_poll_msecs.attr,
13927b31 1108 &dev_attr_diskseq.attr,
edfaa7c3
KS
1109#ifdef CONFIG_FAIL_MAKE_REQUEST
1110 &dev_attr_fail.attr,
581d4e28
JA
1111#endif
1112#ifdef CONFIG_FAIL_IO_TIMEOUT
1113 &dev_attr_fail_timeout.attr,
edfaa7c3
KS
1114#endif
1115 NULL
1116};
1117
9438b3e0
DW
1118static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1119{
1120 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1121 struct gendisk *disk = dev_to_disk(dev);
1122
1123 if (a == &dev_attr_badblocks.attr && !disk->bb)
1124 return 0;
1125 return a->mode;
1126}
1127
edfaa7c3
KS
1128static struct attribute_group disk_attr_group = {
1129 .attrs = disk_attrs,
9438b3e0 1130 .is_visible = disk_visible,
edfaa7c3
KS
1131};
1132
a4dbd674 1133static const struct attribute_group *disk_attr_groups[] = {
edfaa7c3 1134 &disk_attr_group,
cc5c516d
CH
1135#ifdef CONFIG_BLK_DEV_IO_TRACE
1136 &blk_trace_attr_group,
1137#endif
edfaa7c3 1138 NULL
1da177e4
LT
1139};
1140
b5bd357c
LC
1141/**
1142 * disk_release - releases all allocated resources of the gendisk
1143 * @dev: the device representing this disk
1144 *
1145 * This function releases all allocated resources of the gendisk.
1146 *
b5bd357c
LC
1147 * Drivers which used __device_add_disk() have a gendisk with a request_queue
1148 * assigned. Since the request_queue sits on top of the gendisk for these
1149 * drivers we also call blk_put_queue() for them, and we expect the
1150 * request_queue refcount to reach 0 at this point, and so the request_queue
1151 * will also be freed prior to the disk.
e8c7d14a
LC
1152 *
1153 * Context: can sleep
b5bd357c 1154 */
edfaa7c3 1155static void disk_release(struct device *dev)
1da177e4 1156{
edfaa7c3
KS
1157 struct gendisk *disk = dev_to_disk(dev);
1158
e8c7d14a 1159 might_sleep();
a2041761 1160 WARN_ON_ONCE(disk_live(disk));
e8c7d14a 1161
c5db2cfc
CH
1162 /*
1163 * To undo the all initialization from blk_mq_init_allocated_queue in
1164 * case of a probe failure where add_disk is never called we have to
1165 * call blk_mq_exit_queue here. We can't do this for the more common
1166 * teardown case (yet) as the tagset can be gone by the time the disk
1167 * is released once it was added.
1168 */
1169 if (queue_is_mq(disk->queue) &&
1170 test_bit(GD_OWNS_QUEUE, &disk->state) &&
1171 !test_bit(GD_ADDED, &disk->state))
1172 blk_mq_exit_queue(disk->queue);
1173
9823538f
CH
1174 blkcg_exit_disk(disk);
1175
46754bd0 1176 bioset_exit(&disk->bio_split);
2a19b28f 1177
77ea887e 1178 disk_release_events(disk);
1da177e4 1179 kfree(disk->random);
5d400665 1180 disk_free_zone_bitmaps(disk);
a33df75c 1181 xa_destroy(&disk->part_tbl);
1059699f 1182
d152c682 1183 disk->queue->disk = NULL;
61a35cfc 1184 blk_put_queue(disk->queue);
76792055
CH
1185
1186 if (test_bit(GD_ADDED, &disk->state) && disk->fops->free_disk)
1187 disk->fops->free_disk(disk);
1188
2f4731dc 1189 iput(disk->part0->bd_inode); /* frees the disk */
1da177e4 1190}
87eb7107 1191
23680f0b 1192static int block_uevent(const struct device *dev, struct kobj_uevent_env *env)
87eb7107 1193{
23680f0b 1194 const struct gendisk *disk = dev_to_disk(dev);
87eb7107
MC
1195
1196 return add_uevent_var(env, "DISKSEQ=%llu", disk->diskseq);
1197}
1198
edfaa7c3
KS
1199struct class block_class = {
1200 .name = "block",
87eb7107 1201 .dev_uevent = block_uevent,
1da177e4
LT
1202};
1203
050a4f34
JA
1204static char *block_devnode(struct device *dev, umode_t *mode,
1205 kuid_t *uid, kgid_t *gid)
1206{
1207 struct gendisk *disk = dev_to_disk(dev);
1208
1209 if (disk->fops->devnode)
1210 return disk->fops->devnode(disk, mode);
1211 return NULL;
1212}
1213
ef45fe47 1214const struct device_type disk_type = {
edfaa7c3
KS
1215 .name = "disk",
1216 .groups = disk_attr_groups,
1217 .release = disk_release,
050a4f34 1218 .devnode = block_devnode,
1da177e4
LT
1219};
1220
a6e2ba88 1221#ifdef CONFIG_PROC_FS
cf771cb5
TH
1222/*
1223 * aggregate disk stat collector. Uses the same stats that the sysfs
1224 * entries do, above, but makes them available through one seq_file.
1225 *
1226 * The output looks suspiciously like /proc/partitions with a bunch of
1227 * extra fields.
1228 */
1229static int diskstats_show(struct seq_file *seqf, void *v)
1da177e4
LT
1230{
1231 struct gendisk *gp = v;
ad1eaa53 1232 struct block_device *hd;
e016b782 1233 unsigned int inflight;
ea18e0f0 1234 struct disk_stats stat;
7fae67cc 1235 unsigned long idx;
1da177e4
LT
1236
1237 /*
ed9e1982 1238 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
cf771cb5 1239 seq_puts(seqf, "major minor name"
1da177e4
LT
1240 " rio rmerge rsect ruse wio wmerge "
1241 "wsect wuse running use aveq"
1242 "\n\n");
1243 */
9f5e4865 1244
7fae67cc
CH
1245 rcu_read_lock();
1246 xa_for_each(&gp->part_tbl, idx, hd) {
1247 if (bdev_is_partition(hd) && !bdev_nr_sectors(hd))
1248 continue;
b2f609e1 1249 if (queue_is_mq(gp->queue))
ad1eaa53 1250 inflight = blk_mq_in_flight(gp->queue, hd);
b2f609e1 1251 else
ad1eaa53 1252 inflight = part_in_flight(hd);
ea18e0f0 1253
86d73312
ZW
1254 if (inflight) {
1255 part_stat_lock();
1256 update_io_ticks(hd, jiffies, true);
1257 part_stat_unlock();
1258 }
1259 part_stat_read_all(hd, &stat);
26e2d7a3 1260 seq_printf(seqf, "%4d %7d %pg "
bdca3c87
MC
1261 "%lu %lu %lu %u "
1262 "%lu %lu %lu %u "
1263 "%u %u %u "
b6866318
KK
1264 "%lu %lu %lu %u "
1265 "%lu %u"
1266 "\n",
26e2d7a3 1267 MAJOR(hd->bd_dev), MINOR(hd->bd_dev), hd,
ea18e0f0
KK
1268 stat.ios[STAT_READ],
1269 stat.merges[STAT_READ],
1270 stat.sectors[STAT_READ],
1271 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1272 NSEC_PER_MSEC),
1273 stat.ios[STAT_WRITE],
1274 stat.merges[STAT_WRITE],
1275 stat.sectors[STAT_WRITE],
1276 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1277 NSEC_PER_MSEC),
e016b782 1278 inflight,
ea18e0f0 1279 jiffies_to_msecs(stat.io_ticks),
8cd5b8fc
KK
1280 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1281 stat.nsecs[STAT_WRITE] +
1282 stat.nsecs[STAT_DISCARD] +
1283 stat.nsecs[STAT_FLUSH],
1284 NSEC_PER_MSEC),
ea18e0f0
KK
1285 stat.ios[STAT_DISCARD],
1286 stat.merges[STAT_DISCARD],
1287 stat.sectors[STAT_DISCARD],
1288 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1289 NSEC_PER_MSEC),
1290 stat.ios[STAT_FLUSH],
1291 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1292 NSEC_PER_MSEC)
28f39d55 1293 );
1da177e4 1294 }
7fae67cc 1295 rcu_read_unlock();
9f5e4865 1296
1da177e4
LT
1297 return 0;
1298}
1299
31d85ab2 1300static const struct seq_operations diskstats_op = {
def4e38d
TH
1301 .start = disk_seqf_start,
1302 .next = disk_seqf_next,
1303 .stop = disk_seqf_stop,
1da177e4
LT
1304 .show = diskstats_show
1305};
f500975a
AD
1306
1307static int __init proc_genhd_init(void)
1308{
fddda2b7
CH
1309 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1310 proc_create_seq("partitions", 0, NULL, &partitions_op);
f500975a
AD
1311 return 0;
1312}
1313module_init(proc_genhd_init);
a6e2ba88 1314#endif /* CONFIG_PROC_FS */
1da177e4 1315
c97d93c3
CH
1316dev_t part_devt(struct gendisk *disk, u8 partno)
1317{
0e0ccdec 1318 struct block_device *part;
c97d93c3
CH
1319 dev_t devt = 0;
1320
0e0ccdec
CH
1321 rcu_read_lock();
1322 part = xa_load(&disk->part_tbl, partno);
1323 if (part)
c97d93c3 1324 devt = part->bd_dev;
0e0ccdec 1325 rcu_read_unlock();
c97d93c3
CH
1326
1327 return devt;
1328}
1329
cf771cb5 1330dev_t blk_lookup_devt(const char *name, int partno)
a142be85 1331{
def4e38d
TH
1332 dev_t devt = MKDEV(0, 0);
1333 struct class_dev_iter iter;
1334 struct device *dev;
a142be85 1335
def4e38d
TH
1336 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1337 while ((dev = class_dev_iter_next(&iter))) {
a142be85 1338 struct gendisk *disk = dev_to_disk(dev);
a142be85 1339
3ada8b7e 1340 if (strcmp(dev_name(dev), name))
f331c029 1341 continue;
f331c029 1342
41b8c853
NB
1343 if (partno < disk->minors) {
1344 /* We need to return the right devno, even
1345 * if the partition doesn't exist yet.
1346 */
1347 devt = MKDEV(MAJOR(dev->devt),
1348 MINOR(dev->devt) + partno);
c97d93c3
CH
1349 } else {
1350 devt = part_devt(disk, partno);
1351 if (devt)
1352 break;
def4e38d 1353 }
5c0ef6d0 1354 }
def4e38d 1355 class_dev_iter_exit(&iter);
edfaa7c3
KS
1356 return devt;
1357}
edfaa7c3 1358
4a1fa41d
CH
1359struct gendisk *__alloc_disk_node(struct request_queue *q, int node_id,
1360 struct lock_class_key *lkclass)
1946089a
CL
1361{
1362 struct gendisk *disk;
1363
c1b511eb 1364 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
f93af2a4 1365 if (!disk)
aa0c680c 1366 return NULL;
6c23a968 1367
46754bd0
CH
1368 if (bioset_init(&disk->bio_split, BIO_POOL_SIZE, 0, 0))
1369 goto out_free_disk;
1370
edb0872f
CH
1371 disk->bdi = bdi_alloc(node_id);
1372 if (!disk->bdi)
46754bd0 1373 goto out_free_bioset;
edb0872f 1374
17220ca5
PB
1375 /* bdev_alloc() might need the queue, set before the first call */
1376 disk->queue = q;
1377
cb8432d6
CH
1378 disk->part0 = bdev_alloc(disk, 0);
1379 if (!disk->part0)
edb0872f 1380 goto out_free_bdi;
22ae8ce8 1381
f93af2a4 1382 disk->node_id = node_id;
a8698707 1383 mutex_init(&disk->open_mutex);
a33df75c
CH
1384 xa_init(&disk->part_tbl);
1385 if (xa_insert(&disk->part_tbl, 0, disk->part0, GFP_KERNEL))
1386 goto out_destroy_part_tbl;
f93af2a4 1387
9823538f 1388 if (blkcg_init_disk(disk))
1059699f
ML
1389 goto out_erase_part0;
1390
f93af2a4
CH
1391 rand_initialize_disk(disk);
1392 disk_to_dev(disk)->class = &block_class;
1393 disk_to_dev(disk)->type = &disk_type;
1394 device_initialize(disk_to_dev(disk));
cf179948 1395 inc_diskseq(disk);
d152c682 1396 q->disk = disk;
4dcc4874 1397 lockdep_init_map(&disk->lockdep_map, "(bio completion)", lkclass, 0);
0dbcfe24
CH
1398#ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
1399 INIT_LIST_HEAD(&disk->slave_bdevs);
1400#endif
1da177e4 1401 return disk;
f93af2a4 1402
1059699f
ML
1403out_erase_part0:
1404 xa_erase(&disk->part_tbl, 0);
a33df75c
CH
1405out_destroy_part_tbl:
1406 xa_destroy(&disk->part_tbl);
06cc978d 1407 disk->part0->bd_disk = NULL;
2f4731dc 1408 iput(disk->part0->bd_inode);
edb0872f
CH
1409out_free_bdi:
1410 bdi_put(disk->bdi);
46754bd0
CH
1411out_free_bioset:
1412 bioset_exit(&disk->bio_split);
f93af2a4
CH
1413out_free_disk:
1414 kfree(disk);
1415 return NULL;
1da177e4 1416}
1da177e4 1417
4dcc4874 1418struct gendisk *__blk_alloc_disk(int node, struct lock_class_key *lkclass)
f525464a
CH
1419{
1420 struct request_queue *q;
1421 struct gendisk *disk;
1422
80bd4a7a 1423 q = blk_alloc_queue(node);
f525464a
CH
1424 if (!q)
1425 return NULL;
1426
4a1fa41d 1427 disk = __alloc_disk_node(q, node, lkclass);
f525464a 1428 if (!disk) {
6f8191fd 1429 blk_put_queue(q);
f525464a
CH
1430 return NULL;
1431 }
6f8191fd 1432 set_bit(GD_OWNS_QUEUE, &disk->state);
f525464a
CH
1433 return disk;
1434}
1435EXPORT_SYMBOL(__blk_alloc_disk);
1436
b5bd357c
LC
1437/**
1438 * put_disk - decrements the gendisk refcount
0d20dcc2 1439 * @disk: the struct gendisk to decrement the refcount for
b5bd357c
LC
1440 *
1441 * This decrements the refcount for the struct gendisk. When this reaches 0
1442 * we'll have disk_release() called.
e8c7d14a 1443 *
c5db2cfc
CH
1444 * Note: for blk-mq disk put_disk must be called before freeing the tag_set
1445 * when handling probe errors (that is before add_disk() is called).
1446 *
e8c7d14a
LC
1447 * Context: Any context, but the last reference must not be dropped from
1448 * atomic context.
b5bd357c 1449 */
1da177e4
LT
1450void put_disk(struct gendisk *disk)
1451{
1452 if (disk)
efdc41c8 1453 put_device(disk_to_dev(disk));
1da177e4 1454}
1da177e4
LT
1455EXPORT_SYMBOL(put_disk);
1456
e3264a4d
HR
1457static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1458{
1459 char event[] = "DISK_RO=1";
1460 char *envp[] = { event, NULL };
1461
1462 if (!ro)
1463 event[8] = '0';
1464 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1465}
1466
52f019d4
CH
1467/**
1468 * set_disk_ro - set a gendisk read-only
1469 * @disk: gendisk to operate on
7f31bee3 1470 * @read_only: %true to set the disk read-only, %false set the disk read/write
52f019d4
CH
1471 *
1472 * This function is used to indicate whether a given disk device should have its
1473 * read-only flag set. set_disk_ro() is typically used by device drivers to
1474 * indicate whether the underlying physical device is write-protected.
1475 */
1476void set_disk_ro(struct gendisk *disk, bool read_only)
1da177e4 1477{
52f019d4
CH
1478 if (read_only) {
1479 if (test_and_set_bit(GD_READ_ONLY, &disk->state))
1480 return;
1481 } else {
1482 if (!test_and_clear_bit(GD_READ_ONLY, &disk->state))
1483 return;
e3264a4d 1484 }
52f019d4 1485 set_disk_ro_uevent(disk, read_only);
1da177e4 1486}
1da177e4
LT
1487EXPORT_SYMBOL(set_disk_ro);
1488
cf179948
MC
1489void inc_diskseq(struct gendisk *disk)
1490{
1491 disk->diskseq = atomic64_inc_return(&diskseq);
1492}