Merge tag 'x86_cache_for_6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[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
0f77b29a 359int disk_scan_partitions(struct gendisk *disk, fmode_t mode)
9301fe73
CH
360{
361 struct block_device *bdev;
e5cfefa9 362 int ret = 0;
9301fe73 363
9f18db57 364 if (disk->flags & (GENHD_FL_NO_PART | GENHD_FL_HIDDEN))
e16e506c 365 return -EINVAL;
b9684a71
CH
366 if (test_bit(GD_SUPPRESS_PART_SCAN, &disk->state))
367 return -EINVAL;
e16e506c
CH
368 if (disk->open_partitions)
369 return -EBUSY;
9301fe73 370
e5cfefa9
YK
371 /*
372 * If the device is opened exclusively by current thread already, it's
373 * safe to scan partitons, otherwise, use bd_prepare_to_claim() to
374 * synchronize with other exclusive openers and other partition
375 * scanners.
376 */
377 if (!(mode & FMODE_EXCL)) {
378 ret = bd_prepare_to_claim(disk->part0, disk_scan_partitions);
379 if (ret)
380 return ret;
381 }
382
3723091e 383 set_bit(GD_NEED_PART_SCAN, &disk->state);
e5cfefa9 384 bdev = blkdev_get_by_dev(disk_devt(disk), mode & ~FMODE_EXCL, NULL);
e16e506c 385 if (IS_ERR(bdev))
e5cfefa9
YK
386 ret = PTR_ERR(bdev);
387 else
428913bc 388 blkdev_put(bdev, mode & ~FMODE_EXCL);
e5cfefa9 389
3723091e
YK
390 /*
391 * If blkdev_get_by_dev() failed early, GD_NEED_PART_SCAN is still set,
392 * and this will cause that re-assemble partitioned raid device will
393 * creat partition for underlying disk.
394 */
395 clear_bit(GD_NEED_PART_SCAN, &disk->state);
e5cfefa9
YK
396 if (!(mode & FMODE_EXCL))
397 bd_abort_claiming(disk->part0, disk_scan_partitions);
398 return ret;
9301fe73
CH
399}
400
1da177e4 401/**
d1254a87 402 * device_add_disk - add disk information to kernel list
e63a46be 403 * @parent: parent device for the disk
1da177e4 404 * @disk: per-device partitioning information
fef912bf 405 * @groups: Additional per-device sysfs groups
1da177e4
LT
406 *
407 * This function registers the partitioning information in @disk
408 * with the kernel.
409 */
278167fd
LC
410int __must_check device_add_disk(struct device *parent, struct gendisk *disk,
411 const struct attribute_group **groups)
d1254a87 412
1da177e4 413{
52b85909 414 struct device *ddev = disk_to_dev(disk);
7c3f828b 415 int ret;
cf0ca9fe 416
69fe0f29
ML
417 /* Only makes sense for bio-based to set ->poll_bio */
418 if (queue_is_mq(disk->queue) && disk->fops->poll_bio)
419 return -EINVAL;
420
737eb78e
DLM
421 /*
422 * The disk queue should now be all set with enough information about
423 * the device for the elevator code to pick an adequate default
424 * elevator if one is needed, that is, for devices requesting queue
425 * registration.
426 */
d1254a87 427 elevator_init_mq(disk->queue);
737eb78e 428
9f4107b0
JA
429 /* Mark bdev as having a submit_bio, if needed */
430 disk->part0->bd_has_submit_bio = disk->fops->submit_bio != NULL;
431
7c3f828b
CH
432 /*
433 * If the driver provides an explicit major number it also must provide
434 * the number of minors numbers supported, and those will be used to
435 * setup the gendisk.
436 * Otherwise just allocate the device numbers for both the whole device
437 * and all partitions from the extended dev_t space.
3e1a7ff8 438 */
02341a08 439 ret = -EINVAL;
7c3f828b 440 if (disk->major) {
83cbce95 441 if (WARN_ON(!disk->minors))
02341a08 442 goto out_exit_elevator;
2e3c73fa
CH
443
444 if (disk->minors > DISK_MAX_PARTS) {
445 pr_err("block: can't allocate more than %d partitions\n",
446 DISK_MAX_PARTS);
447 disk->minors = DISK_MAX_PARTS;
448 }
e338924b 449 if (disk->first_minor + disk->minors > MINORMASK + 1)
02341a08 450 goto out_exit_elevator;
7c3f828b 451 } else {
83cbce95 452 if (WARN_ON(disk->minors))
02341a08 453 goto out_exit_elevator;
3e1a7ff8 454
7c3f828b 455 ret = blk_alloc_ext_minor();
83cbce95 456 if (ret < 0)
02341a08 457 goto out_exit_elevator;
7c3f828b 458 disk->major = BLOCK_EXT_MAJOR;
539711d7 459 disk->first_minor = ret;
3e1a7ff8 460 }
7c3f828b 461
52b85909
CH
462 /* delay uevents, until we scanned partition table */
463 dev_set_uevent_suppress(ddev, 1);
464
465 ddev->parent = parent;
466 ddev->groups = groups;
467 dev_set_name(ddev, "%s", disk->disk_name);
8235b5c1
CH
468 if (!(disk->flags & GENHD_FL_HIDDEN))
469 ddev->devt = MKDEV(disk->major, disk->first_minor);
83cbce95
LC
470 ret = device_add(ddev);
471 if (ret)
99d8690a
CH
472 goto out_free_ext_minor;
473
474 ret = disk_alloc_events(disk);
475 if (ret)
476 goto out_device_del;
477
721da5ce
GKH
478 ret = sysfs_create_link(block_depr, &ddev->kobj,
479 kobject_name(&ddev->kobj));
480 if (ret)
481 goto out_device_del;
52b85909
CH
482
483 /*
484 * avoid probable deadlock caused by allocating memory with
485 * GFP_KERNEL in runtime_resume callback of its all ancestor
486 * devices
487 */
488 pm_runtime_set_memalloc_noio(ddev, true);
489
178fa7d4
CH
490 ret = blk_integrity_add(disk);
491 if (ret)
b6553bef 492 goto out_del_block_link;
178fa7d4 493
52b85909
CH
494 disk->part0->bd_holder_dir =
495 kobject_create_and_add("holders", &ddev->kobj);
fe7d064f
LC
496 if (!disk->part0->bd_holder_dir) {
497 ret = -ENOMEM;
83cbce95 498 goto out_del_integrity;
fe7d064f 499 }
52b85909 500 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
fe7d064f
LC
501 if (!disk->slave_dir) {
502 ret = -ENOMEM;
83cbce95 503 goto out_put_holder_dir;
fe7d064f 504 }
52b85909 505
83cbce95
LC
506 ret = blk_register_queue(disk);
507 if (ret)
508 goto out_put_slave_dir;
75f4dca5 509
9f18db57 510 if (!(disk->flags & GENHD_FL_HIDDEN)) {
8235b5c1
CH
511 ret = bdi_register(disk->bdi, "%u:%u",
512 disk->major, disk->first_minor);
83cbce95
LC
513 if (ret)
514 goto out_unregister_queue;
8235b5c1 515 bdi_set_owner(disk->bdi, ddev);
83cbce95
LC
516 ret = sysfs_create_link(&ddev->kobj,
517 &disk->bdi->dev->kobj, "bdi");
518 if (ret)
519 goto out_unregister_bdi;
8235b5c1 520
e5cfefa9
YK
521 /* Make sure the first partition scan will be proceed */
522 if (get_capacity(disk) && !(disk->flags & GENHD_FL_NO_PART) &&
523 !test_bit(GD_SUPPRESS_PART_SCAN, &disk->state))
524 set_bit(GD_NEED_PART_SCAN, &disk->state);
525
9d5ee676 526 bdev_add(disk->part0, ddev->devt);
e16e506c 527 if (get_capacity(disk))
0f77b29a 528 disk_scan_partitions(disk, FMODE_READ);
52b85909
CH
529
530 /*
531 * Announce the disk and partitions after all partitions are
8235b5c1 532 * created. (for hidden disks uevents remain suppressed forever)
52b85909
CH
533 */
534 dev_set_uevent_suppress(ddev, 0);
535 disk_uevent(disk, KOBJ_ADD);
a0a6314a
CH
536 } else {
537 /*
538 * Even if the block_device for a hidden gendisk is not
539 * registered, it needs to have a valid bd_dev so that the
540 * freeing of the dynamic major works.
541 */
542 disk->part0->bd_dev = MKDEV(disk->major, disk->first_minor);
52b85909
CH
543 }
544
75f4dca5 545 disk_update_readahead(disk);
77ea887e 546 disk_add_events(disk);
76792055 547 set_bit(GD_ADDED, &disk->state);
83cbce95
LC
548 return 0;
549
550out_unregister_bdi:
551 if (!(disk->flags & GENHD_FL_HIDDEN))
552 bdi_unregister(disk->bdi);
553out_unregister_queue:
554 blk_unregister_queue(disk);
fa81cbaf 555 rq_qos_exit(disk->queue);
83cbce95
LC
556out_put_slave_dir:
557 kobject_put(disk->slave_dir);
d90db3b1 558 disk->slave_dir = NULL;
83cbce95
LC
559out_put_holder_dir:
560 kobject_put(disk->part0->bd_holder_dir);
561out_del_integrity:
562 blk_integrity_del(disk);
563out_del_block_link:
721da5ce 564 sysfs_remove_link(block_depr, dev_name(ddev));
83cbce95
LC
565out_device_del:
566 device_del(ddev);
83cbce95
LC
567out_free_ext_minor:
568 if (disk->major == BLOCK_EXT_MAJOR)
569 blk_free_ext_minor(disk->first_minor);
02341a08
YK
570out_exit_elevator:
571 if (disk->queue->elevator)
572 elevator_exit(disk->queue);
278167fd 573 return ret;
1da177e4 574}
e63a46be 575EXPORT_SYMBOL(device_add_disk);
1da177e4 576
7a5428dc
CH
577/**
578 * blk_mark_disk_dead - mark a disk as dead
579 * @disk: disk to mark as dead
580 *
581 * Mark as disk as dead (e.g. surprise removed) and don't accept any new I/O
582 * to this disk.
583 */
584void blk_mark_disk_dead(struct gendisk *disk)
585{
586 set_bit(GD_DEAD, &disk->state);
587 blk_queue_start_drain(disk->queue);
71b26083
CH
588
589 /*
590 * Stop buffered writers from dirtying pages that can't be written out.
591 */
592 set_capacity_and_notify(disk, 0);
7a5428dc
CH
593}
594EXPORT_SYMBOL_GPL(blk_mark_disk_dead);
595
b5bd357c
LC
596/**
597 * del_gendisk - remove the gendisk
598 * @disk: the struct gendisk to remove
599 *
600 * Removes the gendisk and all its associated resources. This deletes the
601 * partitions associated with the gendisk, and unregisters the associated
602 * request_queue.
603 *
604 * This is the counter to the respective __device_add_disk() call.
605 *
606 * The final removal of the struct gendisk happens when its refcount reaches 0
607 * with put_disk(), which should be called after del_gendisk(), if
608 * __device_add_disk() was used.
e8c7d14a
LC
609 *
610 * Drivers exist which depend on the release of the gendisk to be synchronous,
611 * it should not be deferred.
612 *
613 * Context: can sleep
b5bd357c 614 */
d2bf1b67 615void del_gendisk(struct gendisk *disk)
1da177e4 616{
8e141f9e
CH
617 struct request_queue *q = disk->queue;
618
e8c7d14a
LC
619 might_sleep();
620
9f286992 621 if (WARN_ON_ONCE(!disk_live(disk) && !(disk->flags & GENHD_FL_HIDDEN)))
6b3ba976
CH
622 return;
623
25520d55 624 blk_integrity_del(disk);
77ea887e
TH
625 disk_del_events(disk);
626
a8698707 627 mutex_lock(&disk->open_mutex);
d7a66574 628 remove_inode_hash(disk->part0->bd_inode);
d3c4a43d 629 blk_drop_partitions(disk);
a8698707 630 mutex_unlock(&disk->open_mutex);
c76f48eb 631
45611837
CH
632 fsync_bdev(disk->part0);
633 __invalidate_device(disk->part0, true);
634
8e141f9e
CH
635 /*
636 * Fail any new I/O.
637 */
638 set_bit(GD_DEAD, &disk->state);
6f8191fd
CH
639 if (test_bit(GD_OWNS_QUEUE, &disk->state))
640 blk_queue_flag_set(QUEUE_FLAG_DYING, q);
d2bf1b67 641 set_capacity(disk, 0);
d2bf1b67 642
8e141f9e
CH
643 /*
644 * Prevent new I/O from crossing bio_queue_enter().
645 */
646 blk_queue_start_drain(q);
8e141f9e 647
6b3ba976 648 if (!(disk->flags & GENHD_FL_HIDDEN)) {
8ddcd653 649 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
6b3ba976 650
90f16fdd
JK
651 /*
652 * Unregister bdi before releasing device numbers (as they can
653 * get reused and we'd get clashes in sysfs).
654 */
edb0872f 655 bdi_unregister(disk->bdi);
90f16fdd 656 }
d2bf1b67 657
6b3ba976 658 blk_unregister_queue(disk);
d2bf1b67 659
cb8432d6 660 kobject_put(disk->part0->bd_holder_dir);
d2bf1b67 661 kobject_put(disk->slave_dir);
d90db3b1 662 disk->slave_dir = NULL;
d2bf1b67 663
8446fe92 664 part_stat_set_all(disk->part0, 0);
cb8432d6 665 disk->part0->bd_stamp = 0;
721da5ce 666 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
25e823c8 667 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
d2bf1b67 668 device_del(disk_to_dev(disk));
d308ae0d 669
4c66a326
CH
670 blk_mq_freeze_queue_wait(q);
671
cad9266a 672 blk_throtl_cancel_bios(disk);
8f9e7b65 673
d308ae0d
ML
674 blk_sync_queue(q);
675 blk_flush_integrity();
219cf43c
JC
676
677 if (queue_is_mq(q))
678 blk_mq_cancel_work_sync(q);
50e34d78
CH
679
680 blk_mq_quiesce_queue(q);
681 if (q->elevator) {
682 mutex_lock(&q->sysfs_lock);
683 elevator_exit(q);
684 mutex_unlock(&q->sysfs_lock);
685 }
686 rq_qos_exit(q);
687 blk_mq_unquiesce_queue(q);
688
d308ae0d 689 /*
6f8191fd
CH
690 * If the disk does not own the queue, allow using passthrough requests
691 * again. Else leave the queue frozen to fail all I/O.
d308ae0d 692 */
6f8191fd
CH
693 if (!test_bit(GD_OWNS_QUEUE, &disk->state)) {
694 blk_queue_flag_clear(QUEUE_FLAG_INIT_DONE, q);
695 __blk_mq_unfreeze_queue(q, true);
696 } else {
697 if (queue_is_mq(q))
698 blk_mq_exit_queue(q);
699 }
1da177e4 700}
d2bf1b67 701EXPORT_SYMBOL(del_gendisk);
1da177e4 702
f059a1d2
XY
703/**
704 * invalidate_disk - invalidate the disk
705 * @disk: the struct gendisk to invalidate
706 *
707 * A helper to invalidates the disk. It will clean the disk's associated
708 * buffer/page caches and reset its internal states so that the disk
709 * can be reused by the drivers.
710 *
711 * Context: can sleep
712 */
713void invalidate_disk(struct gendisk *disk)
714{
715 struct block_device *bdev = disk->part0;
716
717 invalidate_bdev(bdev);
718 bdev->bd_inode->i_mapping->wb_err = 0;
719 set_capacity(disk, 0);
720}
721EXPORT_SYMBOL(invalidate_disk);
722
99e6608c
VV
723/* sysfs access to bad-blocks list. */
724static ssize_t disk_badblocks_show(struct device *dev,
725 struct device_attribute *attr,
726 char *page)
727{
728 struct gendisk *disk = dev_to_disk(dev);
729
730 if (!disk->bb)
731 return sprintf(page, "\n");
732
733 return badblocks_show(disk->bb, page, 0);
734}
735
736static ssize_t disk_badblocks_store(struct device *dev,
737 struct device_attribute *attr,
738 const char *page, size_t len)
739{
740 struct gendisk *disk = dev_to_disk(dev);
741
742 if (!disk->bb)
743 return -ENXIO;
744
745 return badblocks_store(disk->bb, page, len, 0);
746}
747
fbdee71b 748#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
22ae8ce8 749void blk_request_module(dev_t devt)
bd8eff3b 750{
a160c615
CH
751 unsigned int major = MAJOR(devt);
752 struct blk_major_name **n;
753
754 mutex_lock(&major_names_lock);
755 for (n = &major_names[major_to_index(major)]; *n; n = &(*n)->next) {
756 if ((*n)->major == major && (*n)->probe) {
757 (*n)->probe(devt);
758 mutex_unlock(&major_names_lock);
759 return;
760 }
761 }
762 mutex_unlock(&major_names_lock);
763
bd8eff3b
CH
764 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
765 /* Make old-style 2.4 aliases work */
766 request_module("block-major-%d", MAJOR(devt));
767}
fbdee71b 768#endif /* CONFIG_BLOCK_LEGACY_AUTOLOAD */
bd8eff3b 769
5c6f35c5
GKH
770/*
771 * print a full list of all partitions - intended for places where the root
772 * filesystem can't be mounted and thus to give the victim some idea of what
773 * went wrong
774 */
775void __init printk_all_partitions(void)
776{
def4e38d
TH
777 struct class_dev_iter iter;
778 struct device *dev;
779
780 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
781 while ((dev = class_dev_iter_next(&iter))) {
782 struct gendisk *disk = dev_to_disk(dev);
ad1eaa53 783 struct block_device *part;
1f014290 784 char devt_buf[BDEVT_SIZE];
e559f58d 785 unsigned long idx;
def4e38d
TH
786
787 /*
788 * Don't show empty devices or things that have been
25985edc 789 * suppressed
def4e38d 790 */
3b5149ac 791 if (get_capacity(disk) == 0 || (disk->flags & GENHD_FL_HIDDEN))
def4e38d
TH
792 continue;
793
794 /*
e559f58d
CH
795 * Note, unlike /proc/partitions, I am showing the numbers in
796 * hex - the same format as the root= option takes.
def4e38d 797 */
e559f58d
CH
798 rcu_read_lock();
799 xa_for_each(&disk->part_tbl, idx, part) {
800 if (!bdev_nr_sectors(part))
801 continue;
a9e7bc3d 802 printk("%s%s %10llu %pg %s",
e559f58d 803 bdev_is_partition(part) ? " " : "",
ad1eaa53 804 bdevt_str(part->bd_dev, devt_buf),
a9e7bc3d 805 bdev_nr_sectors(part) >> 1, part,
ad1eaa53
CH
806 part->bd_meta_info ?
807 part->bd_meta_info->uuid : "");
e559f58d 808 if (bdev_is_partition(part))
074a7aca 809 printk("\n");
e559f58d
CH
810 else if (dev->parent && dev->parent->driver)
811 printk(" driver: %s\n",
812 dev->parent->driver->name);
813 else
814 printk(" (driver?)\n");
074a7aca 815 }
e559f58d 816 rcu_read_unlock();
def4e38d
TH
817 }
818 class_dev_iter_exit(&iter);
dd2a345f
DG
819}
820
1da177e4
LT
821#ifdef CONFIG_PROC_FS
822/* iterator */
def4e38d 823static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
68c4d4a7 824{
def4e38d
TH
825 loff_t skip = *pos;
826 struct class_dev_iter *iter;
827 struct device *dev;
68c4d4a7 828
aeb3d3a8 829 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
def4e38d
TH
830 if (!iter)
831 return ERR_PTR(-ENOMEM);
832
833 seqf->private = iter;
834 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
835 do {
836 dev = class_dev_iter_next(iter);
837 if (!dev)
838 return NULL;
839 } while (skip--);
840
841 return dev_to_disk(dev);
68c4d4a7
GKH
842}
843
def4e38d 844static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
1da177e4 845{
edfaa7c3 846 struct device *dev;
1da177e4 847
def4e38d
TH
848 (*pos)++;
849 dev = class_dev_iter_next(seqf->private);
2ac3cee5 850 if (dev)
68c4d4a7 851 return dev_to_disk(dev);
2ac3cee5 852
1da177e4
LT
853 return NULL;
854}
855
def4e38d 856static void disk_seqf_stop(struct seq_file *seqf, void *v)
27f30251 857{
def4e38d 858 struct class_dev_iter *iter = seqf->private;
27f30251 859
def4e38d
TH
860 /* stop is called even after start failed :-( */
861 if (iter) {
862 class_dev_iter_exit(iter);
863 kfree(iter);
77da1605 864 seqf->private = NULL;
5c0ef6d0 865 }
1da177e4
LT
866}
867
def4e38d 868static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
1da177e4 869{
06768067 870 void *p;
def4e38d
TH
871
872 p = disk_seqf_start(seqf, pos);
b9f985b6 873 if (!IS_ERR_OR_NULL(p) && !*pos)
def4e38d
TH
874 seq_puts(seqf, "major minor #blocks name\n\n");
875 return p;
1da177e4
LT
876}
877
cf771cb5 878static int show_partition(struct seq_file *seqf, void *v)
1da177e4
LT
879{
880 struct gendisk *sgp = v;
ad1eaa53 881 struct block_device *part;
ecc75a98 882 unsigned long idx;
1da177e4 883
3b5149ac 884 if (!get_capacity(sgp) || (sgp->flags & GENHD_FL_HIDDEN))
1da177e4
LT
885 return 0;
886
ecc75a98
CH
887 rcu_read_lock();
888 xa_for_each(&sgp->part_tbl, idx, part) {
889 if (!bdev_nr_sectors(part))
890 continue;
a291bb43 891 seq_printf(seqf, "%4d %7d %10llu %pg\n",
ad1eaa53 892 MAJOR(part->bd_dev), MINOR(part->bd_dev),
a291bb43 893 bdev_nr_sectors(part) >> 1, part);
ecc75a98
CH
894 }
895 rcu_read_unlock();
1da177e4
LT
896 return 0;
897}
898
f500975a 899static const struct seq_operations partitions_op = {
def4e38d
TH
900 .start = show_partition_start,
901 .next = disk_seqf_next,
902 .stop = disk_seqf_stop,
edfaa7c3 903 .show = show_partition
1da177e4
LT
904};
905#endif
906
1da177e4
LT
907static int __init genhd_device_init(void)
908{
e105b8bf
DW
909 int error;
910
e105b8bf 911 error = class_register(&block_class);
ee27a558
RM
912 if (unlikely(error))
913 return error;
1da177e4 914 blk_dev_init();
edfaa7c3 915
561ec68e
ZY
916 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
917
edfaa7c3 918 /* create top-level block dir */
721da5ce 919 block_depr = kobject_create_and_add("block", NULL);
830d3cfb 920 return 0;
1da177e4
LT
921}
922
923subsys_initcall(genhd_device_init);
924
edfaa7c3
KS
925static ssize_t disk_range_show(struct device *dev,
926 struct device_attribute *attr, char *buf)
1da177e4 927{
edfaa7c3 928 struct gendisk *disk = dev_to_disk(dev);
1da177e4 929
edfaa7c3 930 return sprintf(buf, "%d\n", disk->minors);
1da177e4
LT
931}
932
1f014290
TH
933static ssize_t disk_ext_range_show(struct device *dev,
934 struct device_attribute *attr, char *buf)
935{
936 struct gendisk *disk = dev_to_disk(dev);
937
1ebe2e5f
CH
938 return sprintf(buf, "%d\n",
939 (disk->flags & GENHD_FL_NO_PART) ? 1 : DISK_MAX_PARTS);
1f014290
TH
940}
941
edfaa7c3
KS
942static ssize_t disk_removable_show(struct device *dev,
943 struct device_attribute *attr, char *buf)
a7fd6706 944{
edfaa7c3 945 struct gendisk *disk = dev_to_disk(dev);
a7fd6706 946
edfaa7c3
KS
947 return sprintf(buf, "%d\n",
948 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
a7fd6706
KS
949}
950
8ddcd653
CH
951static ssize_t disk_hidden_show(struct device *dev,
952 struct device_attribute *attr, char *buf)
953{
954 struct gendisk *disk = dev_to_disk(dev);
955
956 return sprintf(buf, "%d\n",
957 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
958}
959
1c9ce527
KS
960static ssize_t disk_ro_show(struct device *dev,
961 struct device_attribute *attr, char *buf)
962{
963 struct gendisk *disk = dev_to_disk(dev);
964
b7db9956 965 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
1c9ce527
KS
966}
967
3ad5cee5
CH
968ssize_t part_size_show(struct device *dev,
969 struct device_attribute *attr, char *buf)
970{
0d02129e 971 return sprintf(buf, "%llu\n", bdev_nr_sectors(dev_to_bdev(dev)));
3ad5cee5
CH
972}
973
974ssize_t part_stat_show(struct device *dev,
975 struct device_attribute *attr, char *buf)
976{
0d02129e 977 struct block_device *bdev = dev_to_bdev(dev);
ed6cddef 978 struct request_queue *q = bdev_get_queue(bdev);
ea18e0f0 979 struct disk_stats stat;
3ad5cee5
CH
980 unsigned int inflight;
981
b2f609e1 982 if (queue_is_mq(q))
0d02129e 983 inflight = blk_mq_in_flight(q, bdev);
b2f609e1 984 else
0d02129e 985 inflight = part_in_flight(bdev);
ea18e0f0 986
86d73312
ZW
987 if (inflight) {
988 part_stat_lock();
989 update_io_ticks(bdev, jiffies, true);
990 part_stat_unlock();
991 }
992 part_stat_read_all(bdev, &stat);
3ad5cee5
CH
993 return sprintf(buf,
994 "%8lu %8lu %8llu %8u "
995 "%8lu %8lu %8llu %8u "
996 "%8u %8u %8u "
997 "%8lu %8lu %8llu %8u "
998 "%8lu %8u"
999 "\n",
ea18e0f0
KK
1000 stat.ios[STAT_READ],
1001 stat.merges[STAT_READ],
1002 (unsigned long long)stat.sectors[STAT_READ],
1003 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
1004 stat.ios[STAT_WRITE],
1005 stat.merges[STAT_WRITE],
1006 (unsigned long long)stat.sectors[STAT_WRITE],
1007 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
3ad5cee5 1008 inflight,
ea18e0f0 1009 jiffies_to_msecs(stat.io_ticks),
8cd5b8fc
KK
1010 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1011 stat.nsecs[STAT_WRITE] +
1012 stat.nsecs[STAT_DISCARD] +
1013 stat.nsecs[STAT_FLUSH],
1014 NSEC_PER_MSEC),
ea18e0f0
KK
1015 stat.ios[STAT_DISCARD],
1016 stat.merges[STAT_DISCARD],
1017 (unsigned long long)stat.sectors[STAT_DISCARD],
1018 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
1019 stat.ios[STAT_FLUSH],
1020 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
3ad5cee5
CH
1021}
1022
1023ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1024 char *buf)
1025{
0d02129e 1026 struct block_device *bdev = dev_to_bdev(dev);
ed6cddef 1027 struct request_queue *q = bdev_get_queue(bdev);
3ad5cee5
CH
1028 unsigned int inflight[2];
1029
b2f609e1 1030 if (queue_is_mq(q))
0d02129e 1031 blk_mq_in_flight_rw(q, bdev, inflight);
b2f609e1 1032 else
0d02129e 1033 part_in_flight_rw(bdev, inflight);
b2f609e1 1034
3ad5cee5
CH
1035 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1036}
1037
edfaa7c3
KS
1038static ssize_t disk_capability_show(struct device *dev,
1039 struct device_attribute *attr, char *buf)
86ce18d7 1040{
e81cd5a9
CH
1041 dev_warn_once(dev, "the capability attribute has been deprecated.\n");
1042 return sprintf(buf, "0\n");
86ce18d7 1043}
edfaa7c3 1044
c72758f3
MP
1045static ssize_t disk_alignment_offset_show(struct device *dev,
1046 struct device_attribute *attr,
1047 char *buf)
1048{
1049 struct gendisk *disk = dev_to_disk(dev);
1050
640f2a23 1051 return sprintf(buf, "%d\n", bdev_alignment_offset(disk->part0));
c72758f3
MP
1052}
1053
86b37281
MP
1054static ssize_t disk_discard_alignment_show(struct device *dev,
1055 struct device_attribute *attr,
1056 char *buf)
1057{
1058 struct gendisk *disk = dev_to_disk(dev);
1059
4e1462ff 1060 return sprintf(buf, "%d\n", bdev_alignment_offset(disk->part0));
86b37281
MP
1061}
1062
13927b31
MC
1063static ssize_t diskseq_show(struct device *dev,
1064 struct device_attribute *attr, char *buf)
1065{
1066 struct gendisk *disk = dev_to_disk(dev);
1067
1068 return sprintf(buf, "%llu\n", disk->diskseq);
1069}
1070
5657a819
JP
1071static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1072static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1073static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1074static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1075static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1076static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1077static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1078static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1079static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1080static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1081static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1082static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
13927b31 1083static DEVICE_ATTR(diskseq, 0444, diskseq_show, NULL);
3ad5cee5 1084
c17bb495 1085#ifdef CONFIG_FAIL_MAKE_REQUEST
3ad5cee5
CH
1086ssize_t part_fail_show(struct device *dev,
1087 struct device_attribute *attr, char *buf)
1088{
0d02129e 1089 return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_make_it_fail);
3ad5cee5
CH
1090}
1091
1092ssize_t part_fail_store(struct device *dev,
1093 struct device_attribute *attr,
1094 const char *buf, size_t count)
1095{
3ad5cee5
CH
1096 int i;
1097
1098 if (count > 0 && sscanf(buf, "%d", &i) > 0)
0d02129e 1099 dev_to_bdev(dev)->bd_make_it_fail = i;
3ad5cee5
CH
1100
1101 return count;
1102}
1103
edfaa7c3 1104static struct device_attribute dev_attr_fail =
5657a819 1105 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
3ad5cee5
CH
1106#endif /* CONFIG_FAIL_MAKE_REQUEST */
1107
581d4e28
JA
1108#ifdef CONFIG_FAIL_IO_TIMEOUT
1109static struct device_attribute dev_attr_fail_timeout =
5657a819 1110 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
581d4e28 1111#endif
edfaa7c3
KS
1112
1113static struct attribute *disk_attrs[] = {
1114 &dev_attr_range.attr,
1f014290 1115 &dev_attr_ext_range.attr,
edfaa7c3 1116 &dev_attr_removable.attr,
8ddcd653 1117 &dev_attr_hidden.attr,
1c9ce527 1118 &dev_attr_ro.attr,
edfaa7c3 1119 &dev_attr_size.attr,
c72758f3 1120 &dev_attr_alignment_offset.attr,
86b37281 1121 &dev_attr_discard_alignment.attr,
edfaa7c3
KS
1122 &dev_attr_capability.attr,
1123 &dev_attr_stat.attr,
316d315b 1124 &dev_attr_inflight.attr,
99e6608c 1125 &dev_attr_badblocks.attr,
2bc8cda5
CH
1126 &dev_attr_events.attr,
1127 &dev_attr_events_async.attr,
1128 &dev_attr_events_poll_msecs.attr,
13927b31 1129 &dev_attr_diskseq.attr,
edfaa7c3
KS
1130#ifdef CONFIG_FAIL_MAKE_REQUEST
1131 &dev_attr_fail.attr,
581d4e28
JA
1132#endif
1133#ifdef CONFIG_FAIL_IO_TIMEOUT
1134 &dev_attr_fail_timeout.attr,
edfaa7c3
KS
1135#endif
1136 NULL
1137};
1138
9438b3e0
DW
1139static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1140{
1141 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1142 struct gendisk *disk = dev_to_disk(dev);
1143
1144 if (a == &dev_attr_badblocks.attr && !disk->bb)
1145 return 0;
1146 return a->mode;
1147}
1148
edfaa7c3
KS
1149static struct attribute_group disk_attr_group = {
1150 .attrs = disk_attrs,
9438b3e0 1151 .is_visible = disk_visible,
edfaa7c3
KS
1152};
1153
a4dbd674 1154static const struct attribute_group *disk_attr_groups[] = {
edfaa7c3 1155 &disk_attr_group,
cc5c516d
CH
1156#ifdef CONFIG_BLK_DEV_IO_TRACE
1157 &blk_trace_attr_group,
1158#endif
edfaa7c3 1159 NULL
1da177e4
LT
1160};
1161
b5bd357c
LC
1162/**
1163 * disk_release - releases all allocated resources of the gendisk
1164 * @dev: the device representing this disk
1165 *
1166 * This function releases all allocated resources of the gendisk.
1167 *
b5bd357c
LC
1168 * Drivers which used __device_add_disk() have a gendisk with a request_queue
1169 * assigned. Since the request_queue sits on top of the gendisk for these
1170 * drivers we also call blk_put_queue() for them, and we expect the
1171 * request_queue refcount to reach 0 at this point, and so the request_queue
1172 * will also be freed prior to the disk.
e8c7d14a
LC
1173 *
1174 * Context: can sleep
b5bd357c 1175 */
edfaa7c3 1176static void disk_release(struct device *dev)
1da177e4 1177{
edfaa7c3
KS
1178 struct gendisk *disk = dev_to_disk(dev);
1179
e8c7d14a 1180 might_sleep();
a2041761 1181 WARN_ON_ONCE(disk_live(disk));
e8c7d14a 1182
c5db2cfc
CH
1183 /*
1184 * To undo the all initialization from blk_mq_init_allocated_queue in
1185 * case of a probe failure where add_disk is never called we have to
1186 * call blk_mq_exit_queue here. We can't do this for the more common
1187 * teardown case (yet) as the tagset can be gone by the time the disk
1188 * is released once it was added.
1189 */
1190 if (queue_is_mq(disk->queue) &&
1191 test_bit(GD_OWNS_QUEUE, &disk->state) &&
1192 !test_bit(GD_ADDED, &disk->state))
1193 blk_mq_exit_queue(disk->queue);
1194
b6553bef
CH
1195 blkcg_exit_disk(disk);
1196
46754bd0 1197 bioset_exit(&disk->bio_split);
2a19b28f 1198
77ea887e 1199 disk_release_events(disk);
1da177e4 1200 kfree(disk->random);
5d400665 1201 disk_free_zone_bitmaps(disk);
a33df75c 1202 xa_destroy(&disk->part_tbl);
1059699f 1203
d152c682 1204 disk->queue->disk = NULL;
61a35cfc 1205 blk_put_queue(disk->queue);
76792055
CH
1206
1207 if (test_bit(GD_ADDED, &disk->state) && disk->fops->free_disk)
1208 disk->fops->free_disk(disk);
1209
2f4731dc 1210 iput(disk->part0->bd_inode); /* frees the disk */
1da177e4 1211}
87eb7107 1212
23680f0b 1213static int block_uevent(const struct device *dev, struct kobj_uevent_env *env)
87eb7107 1214{
23680f0b 1215 const struct gendisk *disk = dev_to_disk(dev);
87eb7107
MC
1216
1217 return add_uevent_var(env, "DISKSEQ=%llu", disk->diskseq);
1218}
1219
edfaa7c3
KS
1220struct class block_class = {
1221 .name = "block",
87eb7107 1222 .dev_uevent = block_uevent,
1da177e4
LT
1223};
1224
a9b12f8b 1225static char *block_devnode(const struct device *dev, umode_t *mode,
050a4f34
JA
1226 kuid_t *uid, kgid_t *gid)
1227{
1228 struct gendisk *disk = dev_to_disk(dev);
1229
1230 if (disk->fops->devnode)
1231 return disk->fops->devnode(disk, mode);
1232 return NULL;
1233}
1234
ef45fe47 1235const struct device_type disk_type = {
edfaa7c3
KS
1236 .name = "disk",
1237 .groups = disk_attr_groups,
1238 .release = disk_release,
050a4f34 1239 .devnode = block_devnode,
1da177e4
LT
1240};
1241
a6e2ba88 1242#ifdef CONFIG_PROC_FS
cf771cb5
TH
1243/*
1244 * aggregate disk stat collector. Uses the same stats that the sysfs
1245 * entries do, above, but makes them available through one seq_file.
1246 *
1247 * The output looks suspiciously like /proc/partitions with a bunch of
1248 * extra fields.
1249 */
1250static int diskstats_show(struct seq_file *seqf, void *v)
1da177e4
LT
1251{
1252 struct gendisk *gp = v;
ad1eaa53 1253 struct block_device *hd;
e016b782 1254 unsigned int inflight;
ea18e0f0 1255 struct disk_stats stat;
7fae67cc 1256 unsigned long idx;
1da177e4
LT
1257
1258 /*
ed9e1982 1259 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
cf771cb5 1260 seq_puts(seqf, "major minor name"
1da177e4
LT
1261 " rio rmerge rsect ruse wio wmerge "
1262 "wsect wuse running use aveq"
1263 "\n\n");
1264 */
9f5e4865 1265
7fae67cc
CH
1266 rcu_read_lock();
1267 xa_for_each(&gp->part_tbl, idx, hd) {
1268 if (bdev_is_partition(hd) && !bdev_nr_sectors(hd))
1269 continue;
b2f609e1 1270 if (queue_is_mq(gp->queue))
ad1eaa53 1271 inflight = blk_mq_in_flight(gp->queue, hd);
b2f609e1 1272 else
ad1eaa53 1273 inflight = part_in_flight(hd);
ea18e0f0 1274
86d73312
ZW
1275 if (inflight) {
1276 part_stat_lock();
1277 update_io_ticks(hd, jiffies, true);
1278 part_stat_unlock();
1279 }
1280 part_stat_read_all(hd, &stat);
26e2d7a3 1281 seq_printf(seqf, "%4d %7d %pg "
bdca3c87
MC
1282 "%lu %lu %lu %u "
1283 "%lu %lu %lu %u "
1284 "%u %u %u "
b6866318
KK
1285 "%lu %lu %lu %u "
1286 "%lu %u"
1287 "\n",
26e2d7a3 1288 MAJOR(hd->bd_dev), MINOR(hd->bd_dev), hd,
ea18e0f0
KK
1289 stat.ios[STAT_READ],
1290 stat.merges[STAT_READ],
1291 stat.sectors[STAT_READ],
1292 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1293 NSEC_PER_MSEC),
1294 stat.ios[STAT_WRITE],
1295 stat.merges[STAT_WRITE],
1296 stat.sectors[STAT_WRITE],
1297 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1298 NSEC_PER_MSEC),
e016b782 1299 inflight,
ea18e0f0 1300 jiffies_to_msecs(stat.io_ticks),
8cd5b8fc
KK
1301 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1302 stat.nsecs[STAT_WRITE] +
1303 stat.nsecs[STAT_DISCARD] +
1304 stat.nsecs[STAT_FLUSH],
1305 NSEC_PER_MSEC),
ea18e0f0
KK
1306 stat.ios[STAT_DISCARD],
1307 stat.merges[STAT_DISCARD],
1308 stat.sectors[STAT_DISCARD],
1309 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1310 NSEC_PER_MSEC),
1311 stat.ios[STAT_FLUSH],
1312 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1313 NSEC_PER_MSEC)
28f39d55 1314 );
1da177e4 1315 }
7fae67cc 1316 rcu_read_unlock();
9f5e4865 1317
1da177e4
LT
1318 return 0;
1319}
1320
31d85ab2 1321static const struct seq_operations diskstats_op = {
def4e38d
TH
1322 .start = disk_seqf_start,
1323 .next = disk_seqf_next,
1324 .stop = disk_seqf_stop,
1da177e4
LT
1325 .show = diskstats_show
1326};
f500975a
AD
1327
1328static int __init proc_genhd_init(void)
1329{
fddda2b7
CH
1330 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1331 proc_create_seq("partitions", 0, NULL, &partitions_op);
f500975a
AD
1332 return 0;
1333}
1334module_init(proc_genhd_init);
a6e2ba88 1335#endif /* CONFIG_PROC_FS */
1da177e4 1336
c97d93c3
CH
1337dev_t part_devt(struct gendisk *disk, u8 partno)
1338{
0e0ccdec 1339 struct block_device *part;
c97d93c3
CH
1340 dev_t devt = 0;
1341
0e0ccdec
CH
1342 rcu_read_lock();
1343 part = xa_load(&disk->part_tbl, partno);
1344 if (part)
c97d93c3 1345 devt = part->bd_dev;
0e0ccdec 1346 rcu_read_unlock();
c97d93c3
CH
1347
1348 return devt;
1349}
1350
cf771cb5 1351dev_t blk_lookup_devt(const char *name, int partno)
a142be85 1352{
def4e38d
TH
1353 dev_t devt = MKDEV(0, 0);
1354 struct class_dev_iter iter;
1355 struct device *dev;
a142be85 1356
def4e38d
TH
1357 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1358 while ((dev = class_dev_iter_next(&iter))) {
a142be85 1359 struct gendisk *disk = dev_to_disk(dev);
a142be85 1360
3ada8b7e 1361 if (strcmp(dev_name(dev), name))
f331c029 1362 continue;
f331c029 1363
41b8c853
NB
1364 if (partno < disk->minors) {
1365 /* We need to return the right devno, even
1366 * if the partition doesn't exist yet.
1367 */
1368 devt = MKDEV(MAJOR(dev->devt),
1369 MINOR(dev->devt) + partno);
c97d93c3
CH
1370 } else {
1371 devt = part_devt(disk, partno);
1372 if (devt)
1373 break;
def4e38d 1374 }
5c0ef6d0 1375 }
def4e38d 1376 class_dev_iter_exit(&iter);
edfaa7c3
KS
1377 return devt;
1378}
edfaa7c3 1379
4a1fa41d
CH
1380struct gendisk *__alloc_disk_node(struct request_queue *q, int node_id,
1381 struct lock_class_key *lkclass)
1946089a
CL
1382{
1383 struct gendisk *disk;
1384
c1b511eb 1385 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
f93af2a4 1386 if (!disk)
aa0c680c 1387 return NULL;
6c23a968 1388
46754bd0
CH
1389 if (bioset_init(&disk->bio_split, BIO_POOL_SIZE, 0, 0))
1390 goto out_free_disk;
1391
edb0872f
CH
1392 disk->bdi = bdi_alloc(node_id);
1393 if (!disk->bdi)
46754bd0 1394 goto out_free_bioset;
edb0872f 1395
17220ca5
PB
1396 /* bdev_alloc() might need the queue, set before the first call */
1397 disk->queue = q;
1398
cb8432d6
CH
1399 disk->part0 = bdev_alloc(disk, 0);
1400 if (!disk->part0)
edb0872f 1401 goto out_free_bdi;
22ae8ce8 1402
f93af2a4 1403 disk->node_id = node_id;
a8698707 1404 mutex_init(&disk->open_mutex);
a33df75c
CH
1405 xa_init(&disk->part_tbl);
1406 if (xa_insert(&disk->part_tbl, 0, disk->part0, GFP_KERNEL))
1407 goto out_destroy_part_tbl;
f93af2a4 1408
b6553bef
CH
1409 if (blkcg_init_disk(disk))
1410 goto out_erase_part0;
1411
f93af2a4
CH
1412 rand_initialize_disk(disk);
1413 disk_to_dev(disk)->class = &block_class;
1414 disk_to_dev(disk)->type = &disk_type;
1415 device_initialize(disk_to_dev(disk));
cf179948 1416 inc_diskseq(disk);
d152c682 1417 q->disk = disk;
4dcc4874 1418 lockdep_init_map(&disk->lockdep_map, "(bio completion)", lkclass, 0);
0dbcfe24
CH
1419#ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
1420 INIT_LIST_HEAD(&disk->slave_bdevs);
1421#endif
1da177e4 1422 return disk;
f93af2a4 1423
b6553bef
CH
1424out_erase_part0:
1425 xa_erase(&disk->part_tbl, 0);
a33df75c
CH
1426out_destroy_part_tbl:
1427 xa_destroy(&disk->part_tbl);
06cc978d 1428 disk->part0->bd_disk = NULL;
2f4731dc 1429 iput(disk->part0->bd_inode);
edb0872f
CH
1430out_free_bdi:
1431 bdi_put(disk->bdi);
46754bd0
CH
1432out_free_bioset:
1433 bioset_exit(&disk->bio_split);
f93af2a4
CH
1434out_free_disk:
1435 kfree(disk);
1436 return NULL;
1da177e4 1437}
1da177e4 1438
4dcc4874 1439struct gendisk *__blk_alloc_disk(int node, struct lock_class_key *lkclass)
f525464a
CH
1440{
1441 struct request_queue *q;
1442 struct gendisk *disk;
1443
80bd4a7a 1444 q = blk_alloc_queue(node);
f525464a
CH
1445 if (!q)
1446 return NULL;
1447
4a1fa41d 1448 disk = __alloc_disk_node(q, node, lkclass);
f525464a 1449 if (!disk) {
6f8191fd 1450 blk_put_queue(q);
f525464a
CH
1451 return NULL;
1452 }
6f8191fd 1453 set_bit(GD_OWNS_QUEUE, &disk->state);
f525464a
CH
1454 return disk;
1455}
1456EXPORT_SYMBOL(__blk_alloc_disk);
1457
b5bd357c
LC
1458/**
1459 * put_disk - decrements the gendisk refcount
0d20dcc2 1460 * @disk: the struct gendisk to decrement the refcount for
b5bd357c
LC
1461 *
1462 * This decrements the refcount for the struct gendisk. When this reaches 0
1463 * we'll have disk_release() called.
e8c7d14a 1464 *
c5db2cfc
CH
1465 * Note: for blk-mq disk put_disk must be called before freeing the tag_set
1466 * when handling probe errors (that is before add_disk() is called).
1467 *
e8c7d14a
LC
1468 * Context: Any context, but the last reference must not be dropped from
1469 * atomic context.
b5bd357c 1470 */
1da177e4
LT
1471void put_disk(struct gendisk *disk)
1472{
1473 if (disk)
efdc41c8 1474 put_device(disk_to_dev(disk));
1da177e4 1475}
1da177e4
LT
1476EXPORT_SYMBOL(put_disk);
1477
e3264a4d
HR
1478static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1479{
1480 char event[] = "DISK_RO=1";
1481 char *envp[] = { event, NULL };
1482
1483 if (!ro)
1484 event[8] = '0';
1485 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1486}
1487
52f019d4
CH
1488/**
1489 * set_disk_ro - set a gendisk read-only
1490 * @disk: gendisk to operate on
7f31bee3 1491 * @read_only: %true to set the disk read-only, %false set the disk read/write
52f019d4
CH
1492 *
1493 * This function is used to indicate whether a given disk device should have its
1494 * read-only flag set. set_disk_ro() is typically used by device drivers to
1495 * indicate whether the underlying physical device is write-protected.
1496 */
1497void set_disk_ro(struct gendisk *disk, bool read_only)
1da177e4 1498{
52f019d4
CH
1499 if (read_only) {
1500 if (test_and_set_bit(GD_READ_ONLY, &disk->state))
1501 return;
1502 } else {
1503 if (!test_and_clear_bit(GD_READ_ONLY, &disk->state))
1504 return;
e3264a4d 1505 }
52f019d4 1506 set_disk_ro_uevent(disk, read_only);
1da177e4 1507}
1da177e4
LT
1508EXPORT_SYMBOL(set_disk_ro);
1509
cf179948
MC
1510void inc_diskseq(struct gendisk *disk)
1511{
1512 disk->diskseq = atomic64_inc_return(&diskseq);
1513}