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