1 // SPDX-License-Identifier: GPL-2.0
5 * Portions Copyright (C) 2020 Christoph Hellwig
8 #include <linux/module.h>
9 #include <linux/ctype.h>
11 #include <linux/kdev_t.h>
12 #include <linux/kernel.h>
13 #include <linux/blkdev.h>
14 #include <linux/backing-dev.h>
15 #include <linux/init.h>
16 #include <linux/spinlock.h>
17 #include <linux/proc_fs.h>
18 #include <linux/seq_file.h>
19 #include <linux/slab.h>
20 #include <linux/kmod.h>
21 #include <linux/major.h>
22 #include <linux/mutex.h>
23 #include <linux/idr.h>
24 #include <linux/log2.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/badblocks.h>
27 #include <linux/part_stat.h>
28 #include "blk-throttle.h"
31 #include "blk-mq-sched.h"
32 #include "blk-rq-qos.h"
33 #include "blk-cgroup.h"
35 static struct kobject *block_depr;
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.
52 static atomic64_t diskseq;
54 /* for extended dynamic devt allocation, currently only one major is used */
55 #define NR_EXT_DEVT (1 << MINORBITS)
56 static DEFINE_IDA(ext_devt_ida);
58 void set_capacity(struct gendisk *disk, sector_t sectors)
60 bdev_set_nr_sectors(disk->part0, sectors);
62 EXPORT_SYMBOL(set_capacity);
65 * Set disk capacity and notify if the size is not currently zero and will not
66 * be set to zero. Returns true if a uevent was sent, otherwise false.
68 bool set_capacity_and_notify(struct gendisk *disk, sector_t size)
70 sector_t capacity = get_capacity(disk);
71 char *envp[] = { "RESIZE=1", NULL };
73 set_capacity(disk, size);
76 * Only print a message and send a uevent if the gendisk is user visible
77 * and alive. This avoids spamming the log and udev when setting the
78 * initial capacity during probing.
80 if (size == capacity ||
82 (disk->flags & GENHD_FL_HIDDEN))
85 pr_info("%s: detected capacity change from %lld to %lld\n",
86 disk->disk_name, capacity, size);
89 * Historically we did not send a uevent for changes to/from an empty
92 if (!capacity || !size)
94 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
97 EXPORT_SYMBOL_GPL(set_capacity_and_notify);
99 static void part_stat_read_all(struct block_device *part,
100 struct disk_stats *stat)
104 memset(stat, 0, sizeof(struct disk_stats));
105 for_each_possible_cpu(cpu) {
106 struct disk_stats *ptr = per_cpu_ptr(part->bd_stats, cpu);
109 for (group = 0; group < NR_STAT_GROUPS; group++) {
110 stat->nsecs[group] += ptr->nsecs[group];
111 stat->sectors[group] += ptr->sectors[group];
112 stat->ios[group] += ptr->ios[group];
113 stat->merges[group] += ptr->merges[group];
116 stat->io_ticks += ptr->io_ticks;
120 static unsigned int part_in_flight(struct block_device *part)
122 unsigned int inflight = 0;
125 for_each_possible_cpu(cpu) {
126 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
127 part_stat_local_read_cpu(part, in_flight[1], cpu);
129 if ((int)inflight < 0)
135 static void part_in_flight_rw(struct block_device *part,
136 unsigned int inflight[2])
142 for_each_possible_cpu(cpu) {
143 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
144 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
146 if ((int)inflight[0] < 0)
148 if ((int)inflight[1] < 0)
153 * Can be deleted altogether. Later.
156 #define BLKDEV_MAJOR_HASH_SIZE 255
157 static struct blk_major_name {
158 struct blk_major_name *next;
161 #ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
162 void (*probe)(dev_t devt);
164 } *major_names[BLKDEV_MAJOR_HASH_SIZE];
165 static DEFINE_MUTEX(major_names_lock);
166 static DEFINE_SPINLOCK(major_names_spinlock);
168 /* index in the above - for now: assume no multimajor ranges */
169 static inline int major_to_index(unsigned major)
171 return major % BLKDEV_MAJOR_HASH_SIZE;
174 #ifdef CONFIG_PROC_FS
175 void blkdev_show(struct seq_file *seqf, off_t offset)
177 struct blk_major_name *dp;
179 spin_lock(&major_names_spinlock);
180 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
181 if (dp->major == offset)
182 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
183 spin_unlock(&major_names_spinlock);
185 #endif /* CONFIG_PROC_FS */
188 * __register_blkdev - register a new block device
190 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
191 * @major = 0, try to allocate any unused major number.
192 * @name: the name of the new block device as a zero terminated string
193 * @probe: pre-devtmpfs / pre-udev callback used to create disks when their
194 * pre-created device node is accessed. When a probe call uses
195 * add_disk() and it fails the driver must cleanup resources. This
196 * interface may soon be removed.
198 * The @name must be unique within the system.
200 * The return value depends on the @major input parameter:
202 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
203 * then the function returns zero on success, or a negative error code
204 * - if any unused major number was requested with @major = 0 parameter
205 * then the return value is the allocated major number in range
206 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
208 * See Documentation/admin-guide/devices.txt for the list of allocated
211 * Use register_blkdev instead for any new code.
213 int __register_blkdev(unsigned int major, const char *name,
214 void (*probe)(dev_t devt))
216 struct blk_major_name **n, *p;
219 mutex_lock(&major_names_lock);
223 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
224 if (major_names[index] == NULL)
229 printk("%s: failed to get major for %s\n",
238 if (major >= BLKDEV_MAJOR_MAX) {
239 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
240 __func__, major, BLKDEV_MAJOR_MAX-1, name);
246 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
253 #ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
256 strlcpy(p->name, name, sizeof(p->name));
258 index = major_to_index(major);
260 spin_lock(&major_names_spinlock);
261 for (n = &major_names[index]; *n; n = &(*n)->next) {
262 if ((*n)->major == major)
269 spin_unlock(&major_names_spinlock);
272 printk("register_blkdev: cannot get major %u for %s\n",
277 mutex_unlock(&major_names_lock);
280 EXPORT_SYMBOL(__register_blkdev);
282 void unregister_blkdev(unsigned int major, const char *name)
284 struct blk_major_name **n;
285 struct blk_major_name *p = NULL;
286 int index = major_to_index(major);
288 mutex_lock(&major_names_lock);
289 spin_lock(&major_names_spinlock);
290 for (n = &major_names[index]; *n; n = &(*n)->next)
291 if ((*n)->major == major)
293 if (!*n || strcmp((*n)->name, name)) {
299 spin_unlock(&major_names_spinlock);
300 mutex_unlock(&major_names_lock);
304 EXPORT_SYMBOL(unregister_blkdev);
306 int blk_alloc_ext_minor(void)
310 idx = ida_alloc_range(&ext_devt_ida, 0, NR_EXT_DEVT - 1, GFP_KERNEL);
316 void blk_free_ext_minor(unsigned int minor)
318 ida_free(&ext_devt_ida, minor);
321 static char *bdevt_str(dev_t devt, char *buf)
323 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
324 char tbuf[BDEVT_SIZE];
325 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
326 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
328 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
333 void disk_uevent(struct gendisk *disk, enum kobject_action action)
335 struct block_device *part;
339 xa_for_each(&disk->part_tbl, idx, part) {
340 if (bdev_is_partition(part) && !bdev_nr_sectors(part))
342 if (!kobject_get_unless_zero(&part->bd_device.kobj))
346 kobject_uevent(bdev_kobj(part), action);
347 put_device(&part->bd_device);
352 EXPORT_SYMBOL_GPL(disk_uevent);
354 int disk_scan_partitions(struct gendisk *disk, fmode_t mode)
356 struct block_device *bdev;
359 if (disk->flags & (GENHD_FL_NO_PART | GENHD_FL_HIDDEN))
361 if (test_bit(GD_SUPPRESS_PART_SCAN, &disk->state))
363 if (disk->open_partitions)
367 * If the device is opened exclusively by current thread already, it's
368 * safe to scan partitons, otherwise, use bd_prepare_to_claim() to
369 * synchronize with other exclusive openers and other partition
372 if (!(mode & FMODE_EXCL)) {
373 ret = bd_prepare_to_claim(disk->part0, disk_scan_partitions);
378 set_bit(GD_NEED_PART_SCAN, &disk->state);
379 bdev = blkdev_get_by_dev(disk_devt(disk), mode & ~FMODE_EXCL, NULL);
383 blkdev_put(bdev, mode & ~FMODE_EXCL);
386 * If blkdev_get_by_dev() failed early, GD_NEED_PART_SCAN is still set,
387 * and this will cause that re-assemble partitioned raid device will
388 * creat partition for underlying disk.
390 clear_bit(GD_NEED_PART_SCAN, &disk->state);
391 if (!(mode & FMODE_EXCL))
392 bd_abort_claiming(disk->part0, disk_scan_partitions);
397 * device_add_disk - add disk information to kernel list
398 * @parent: parent device for the disk
399 * @disk: per-device partitioning information
400 * @groups: Additional per-device sysfs groups
402 * This function registers the partitioning information in @disk
405 int __must_check device_add_disk(struct device *parent, struct gendisk *disk,
406 const struct attribute_group **groups)
409 struct device *ddev = disk_to_dev(disk);
412 /* Only makes sense for bio-based to set ->poll_bio */
413 if (queue_is_mq(disk->queue) && disk->fops->poll_bio)
417 * The disk queue should now be all set with enough information about
418 * the device for the elevator code to pick an adequate default
419 * elevator if one is needed, that is, for devices requesting queue
422 elevator_init_mq(disk->queue);
424 /* Mark bdev as having a submit_bio, if needed */
425 disk->part0->bd_has_submit_bio = disk->fops->submit_bio != NULL;
428 * If the driver provides an explicit major number it also must provide
429 * the number of minors numbers supported, and those will be used to
431 * Otherwise just allocate the device numbers for both the whole device
432 * and all partitions from the extended dev_t space.
436 if (WARN_ON(!disk->minors))
437 goto out_exit_elevator;
439 if (disk->minors > DISK_MAX_PARTS) {
440 pr_err("block: can't allocate more than %d partitions\n",
442 disk->minors = DISK_MAX_PARTS;
444 if (disk->first_minor + disk->minors > MINORMASK + 1)
445 goto out_exit_elevator;
447 if (WARN_ON(disk->minors))
448 goto out_exit_elevator;
450 ret = blk_alloc_ext_minor();
452 goto out_exit_elevator;
453 disk->major = BLOCK_EXT_MAJOR;
454 disk->first_minor = ret;
457 /* delay uevents, until we scanned partition table */
458 dev_set_uevent_suppress(ddev, 1);
460 ddev->parent = parent;
461 ddev->groups = groups;
462 dev_set_name(ddev, "%s", disk->disk_name);
463 if (!(disk->flags & GENHD_FL_HIDDEN))
464 ddev->devt = MKDEV(disk->major, disk->first_minor);
465 ret = device_add(ddev);
467 goto out_free_ext_minor;
469 ret = disk_alloc_events(disk);
473 ret = sysfs_create_link(block_depr, &ddev->kobj,
474 kobject_name(&ddev->kobj));
479 * avoid probable deadlock caused by allocating memory with
480 * GFP_KERNEL in runtime_resume callback of its all ancestor
483 pm_runtime_set_memalloc_noio(ddev, true);
485 disk->part0->bd_holder_dir =
486 kobject_create_and_add("holders", &ddev->kobj);
487 if (!disk->part0->bd_holder_dir) {
489 goto out_del_block_link;
491 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
492 if (!disk->slave_dir) {
494 goto out_put_holder_dir;
497 ret = blk_register_queue(disk);
499 goto out_put_slave_dir;
501 if (!(disk->flags & GENHD_FL_HIDDEN)) {
502 ret = bdi_register(disk->bdi, "%u:%u",
503 disk->major, disk->first_minor);
505 goto out_unregister_queue;
506 bdi_set_owner(disk->bdi, ddev);
507 ret = sysfs_create_link(&ddev->kobj,
508 &disk->bdi->dev->kobj, "bdi");
510 goto out_unregister_bdi;
512 /* Make sure the first partition scan will be proceed */
513 if (get_capacity(disk) && !(disk->flags & GENHD_FL_NO_PART) &&
514 !test_bit(GD_SUPPRESS_PART_SCAN, &disk->state))
515 set_bit(GD_NEED_PART_SCAN, &disk->state);
517 bdev_add(disk->part0, ddev->devt);
518 if (get_capacity(disk))
519 disk_scan_partitions(disk, FMODE_READ);
522 * Announce the disk and partitions after all partitions are
523 * created. (for hidden disks uevents remain suppressed forever)
525 dev_set_uevent_suppress(ddev, 0);
526 disk_uevent(disk, KOBJ_ADD);
529 * Even if the block_device for a hidden gendisk is not
530 * registered, it needs to have a valid bd_dev so that the
531 * freeing of the dynamic major works.
533 disk->part0->bd_dev = MKDEV(disk->major, disk->first_minor);
536 disk_update_readahead(disk);
537 disk_add_events(disk);
538 set_bit(GD_ADDED, &disk->state);
542 if (!(disk->flags & GENHD_FL_HIDDEN))
543 bdi_unregister(disk->bdi);
544 out_unregister_queue:
545 blk_unregister_queue(disk);
546 rq_qos_exit(disk->queue);
548 kobject_put(disk->slave_dir);
549 disk->slave_dir = NULL;
551 kobject_put(disk->part0->bd_holder_dir);
553 sysfs_remove_link(block_depr, dev_name(ddev));
557 if (disk->major == BLOCK_EXT_MAJOR)
558 blk_free_ext_minor(disk->first_minor);
560 if (disk->queue->elevator)
561 elevator_exit(disk->queue);
564 EXPORT_SYMBOL(device_add_disk);
567 * blk_mark_disk_dead - mark a disk as dead
568 * @disk: disk to mark as dead
570 * Mark as disk as dead (e.g. surprise removed) and don't accept any new I/O
573 void blk_mark_disk_dead(struct gendisk *disk)
575 set_bit(GD_DEAD, &disk->state);
576 blk_queue_start_drain(disk->queue);
579 * Stop buffered writers from dirtying pages that can't be written out.
581 set_capacity_and_notify(disk, 0);
583 EXPORT_SYMBOL_GPL(blk_mark_disk_dead);
586 * del_gendisk - remove the gendisk
587 * @disk: the struct gendisk to remove
589 * Removes the gendisk and all its associated resources. This deletes the
590 * partitions associated with the gendisk, and unregisters the associated
593 * This is the counter to the respective __device_add_disk() call.
595 * The final removal of the struct gendisk happens when its refcount reaches 0
596 * with put_disk(), which should be called after del_gendisk(), if
597 * __device_add_disk() was used.
599 * Drivers exist which depend on the release of the gendisk to be synchronous,
600 * it should not be deferred.
604 void del_gendisk(struct gendisk *disk)
606 struct request_queue *q = disk->queue;
610 if (WARN_ON_ONCE(!disk_live(disk) && !(disk->flags & GENHD_FL_HIDDEN)))
613 disk_del_events(disk);
615 mutex_lock(&disk->open_mutex);
616 remove_inode_hash(disk->part0->bd_inode);
617 blk_drop_partitions(disk);
618 mutex_unlock(&disk->open_mutex);
620 fsync_bdev(disk->part0);
621 __invalidate_device(disk->part0, true);
626 set_bit(GD_DEAD, &disk->state);
627 if (test_bit(GD_OWNS_QUEUE, &disk->state))
628 blk_queue_flag_set(QUEUE_FLAG_DYING, q);
629 set_capacity(disk, 0);
632 * Prevent new I/O from crossing bio_queue_enter().
634 blk_queue_start_drain(q);
636 if (!(disk->flags & GENHD_FL_HIDDEN)) {
637 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
640 * Unregister bdi before releasing device numbers (as they can
641 * get reused and we'd get clashes in sysfs).
643 bdi_unregister(disk->bdi);
646 blk_unregister_queue(disk);
648 kobject_put(disk->part0->bd_holder_dir);
649 kobject_put(disk->slave_dir);
650 disk->slave_dir = NULL;
652 part_stat_set_all(disk->part0, 0);
653 disk->part0->bd_stamp = 0;
654 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
655 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
656 device_del(disk_to_dev(disk));
658 blk_mq_freeze_queue_wait(q);
660 blk_throtl_cancel_bios(disk);
663 blk_flush_integrity();
666 blk_mq_cancel_work_sync(q);
668 blk_mq_quiesce_queue(q);
670 mutex_lock(&q->sysfs_lock);
672 mutex_unlock(&q->sysfs_lock);
675 blk_mq_unquiesce_queue(q);
678 * If the disk does not own the queue, allow using passthrough requests
679 * again. Else leave the queue frozen to fail all I/O.
681 if (!test_bit(GD_OWNS_QUEUE, &disk->state)) {
682 blk_queue_flag_clear(QUEUE_FLAG_INIT_DONE, q);
683 __blk_mq_unfreeze_queue(q, true);
686 blk_mq_exit_queue(q);
689 EXPORT_SYMBOL(del_gendisk);
692 * invalidate_disk - invalidate the disk
693 * @disk: the struct gendisk to invalidate
695 * A helper to invalidates the disk. It will clean the disk's associated
696 * buffer/page caches and reset its internal states so that the disk
697 * can be reused by the drivers.
701 void invalidate_disk(struct gendisk *disk)
703 struct block_device *bdev = disk->part0;
705 invalidate_bdev(bdev);
706 bdev->bd_inode->i_mapping->wb_err = 0;
707 set_capacity(disk, 0);
709 EXPORT_SYMBOL(invalidate_disk);
711 /* sysfs access to bad-blocks list. */
712 static ssize_t disk_badblocks_show(struct device *dev,
713 struct device_attribute *attr,
716 struct gendisk *disk = dev_to_disk(dev);
719 return sprintf(page, "\n");
721 return badblocks_show(disk->bb, page, 0);
724 static ssize_t disk_badblocks_store(struct device *dev,
725 struct device_attribute *attr,
726 const char *page, size_t len)
728 struct gendisk *disk = dev_to_disk(dev);
733 return badblocks_store(disk->bb, page, len, 0);
736 #ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
737 void blk_request_module(dev_t devt)
739 unsigned int major = MAJOR(devt);
740 struct blk_major_name **n;
742 mutex_lock(&major_names_lock);
743 for (n = &major_names[major_to_index(major)]; *n; n = &(*n)->next) {
744 if ((*n)->major == major && (*n)->probe) {
746 mutex_unlock(&major_names_lock);
750 mutex_unlock(&major_names_lock);
752 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
753 /* Make old-style 2.4 aliases work */
754 request_module("block-major-%d", MAJOR(devt));
756 #endif /* CONFIG_BLOCK_LEGACY_AUTOLOAD */
759 * print a full list of all partitions - intended for places where the root
760 * filesystem can't be mounted and thus to give the victim some idea of what
763 void __init printk_all_partitions(void)
765 struct class_dev_iter iter;
768 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
769 while ((dev = class_dev_iter_next(&iter))) {
770 struct gendisk *disk = dev_to_disk(dev);
771 struct block_device *part;
772 char devt_buf[BDEVT_SIZE];
776 * Don't show empty devices or things that have been
779 if (get_capacity(disk) == 0 || (disk->flags & GENHD_FL_HIDDEN))
783 * Note, unlike /proc/partitions, I am showing the numbers in
784 * hex - the same format as the root= option takes.
787 xa_for_each(&disk->part_tbl, idx, part) {
788 if (!bdev_nr_sectors(part))
790 printk("%s%s %10llu %pg %s",
791 bdev_is_partition(part) ? " " : "",
792 bdevt_str(part->bd_dev, devt_buf),
793 bdev_nr_sectors(part) >> 1, part,
795 part->bd_meta_info->uuid : "");
796 if (bdev_is_partition(part))
798 else if (dev->parent && dev->parent->driver)
799 printk(" driver: %s\n",
800 dev->parent->driver->name);
802 printk(" (driver?)\n");
806 class_dev_iter_exit(&iter);
809 #ifdef CONFIG_PROC_FS
811 static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
814 struct class_dev_iter *iter;
817 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
819 return ERR_PTR(-ENOMEM);
821 seqf->private = iter;
822 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
824 dev = class_dev_iter_next(iter);
829 return dev_to_disk(dev);
832 static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
837 dev = class_dev_iter_next(seqf->private);
839 return dev_to_disk(dev);
844 static void disk_seqf_stop(struct seq_file *seqf, void *v)
846 struct class_dev_iter *iter = seqf->private;
848 /* stop is called even after start failed :-( */
850 class_dev_iter_exit(iter);
852 seqf->private = NULL;
856 static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
860 p = disk_seqf_start(seqf, pos);
861 if (!IS_ERR_OR_NULL(p) && !*pos)
862 seq_puts(seqf, "major minor #blocks name\n\n");
866 static int show_partition(struct seq_file *seqf, void *v)
868 struct gendisk *sgp = v;
869 struct block_device *part;
872 if (!get_capacity(sgp) || (sgp->flags & GENHD_FL_HIDDEN))
876 xa_for_each(&sgp->part_tbl, idx, part) {
877 if (!bdev_nr_sectors(part))
879 seq_printf(seqf, "%4d %7d %10llu %pg\n",
880 MAJOR(part->bd_dev), MINOR(part->bd_dev),
881 bdev_nr_sectors(part) >> 1, part);
887 static const struct seq_operations partitions_op = {
888 .start = show_partition_start,
889 .next = disk_seqf_next,
890 .stop = disk_seqf_stop,
891 .show = show_partition
895 static int __init genhd_device_init(void)
899 error = class_register(&block_class);
904 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
906 /* create top-level block dir */
907 block_depr = kobject_create_and_add("block", NULL);
911 subsys_initcall(genhd_device_init);
913 static ssize_t disk_range_show(struct device *dev,
914 struct device_attribute *attr, char *buf)
916 struct gendisk *disk = dev_to_disk(dev);
918 return sprintf(buf, "%d\n", disk->minors);
921 static ssize_t disk_ext_range_show(struct device *dev,
922 struct device_attribute *attr, char *buf)
924 struct gendisk *disk = dev_to_disk(dev);
926 return sprintf(buf, "%d\n",
927 (disk->flags & GENHD_FL_NO_PART) ? 1 : DISK_MAX_PARTS);
930 static ssize_t disk_removable_show(struct device *dev,
931 struct device_attribute *attr, char *buf)
933 struct gendisk *disk = dev_to_disk(dev);
935 return sprintf(buf, "%d\n",
936 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
939 static ssize_t disk_hidden_show(struct device *dev,
940 struct device_attribute *attr, char *buf)
942 struct gendisk *disk = dev_to_disk(dev);
944 return sprintf(buf, "%d\n",
945 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
948 static ssize_t disk_ro_show(struct device *dev,
949 struct device_attribute *attr, char *buf)
951 struct gendisk *disk = dev_to_disk(dev);
953 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
956 ssize_t part_size_show(struct device *dev,
957 struct device_attribute *attr, char *buf)
959 return sprintf(buf, "%llu\n", bdev_nr_sectors(dev_to_bdev(dev)));
962 ssize_t part_stat_show(struct device *dev,
963 struct device_attribute *attr, char *buf)
965 struct block_device *bdev = dev_to_bdev(dev);
966 struct request_queue *q = bdev_get_queue(bdev);
967 struct disk_stats stat;
968 unsigned int inflight;
971 inflight = blk_mq_in_flight(q, bdev);
973 inflight = part_in_flight(bdev);
977 update_io_ticks(bdev, jiffies, true);
980 part_stat_read_all(bdev, &stat);
982 "%8lu %8lu %8llu %8u "
983 "%8lu %8lu %8llu %8u "
985 "%8lu %8lu %8llu %8u "
989 stat.merges[STAT_READ],
990 (unsigned long long)stat.sectors[STAT_READ],
991 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
992 stat.ios[STAT_WRITE],
993 stat.merges[STAT_WRITE],
994 (unsigned long long)stat.sectors[STAT_WRITE],
995 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
997 jiffies_to_msecs(stat.io_ticks),
998 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
999 stat.nsecs[STAT_WRITE] +
1000 stat.nsecs[STAT_DISCARD] +
1001 stat.nsecs[STAT_FLUSH],
1003 stat.ios[STAT_DISCARD],
1004 stat.merges[STAT_DISCARD],
1005 (unsigned long long)stat.sectors[STAT_DISCARD],
1006 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
1007 stat.ios[STAT_FLUSH],
1008 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
1011 ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1014 struct block_device *bdev = dev_to_bdev(dev);
1015 struct request_queue *q = bdev_get_queue(bdev);
1016 unsigned int inflight[2];
1019 blk_mq_in_flight_rw(q, bdev, inflight);
1021 part_in_flight_rw(bdev, inflight);
1023 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1026 static ssize_t disk_capability_show(struct device *dev,
1027 struct device_attribute *attr, char *buf)
1029 dev_warn_once(dev, "the capability attribute has been deprecated.\n");
1030 return sprintf(buf, "0\n");
1033 static ssize_t disk_alignment_offset_show(struct device *dev,
1034 struct device_attribute *attr,
1037 struct gendisk *disk = dev_to_disk(dev);
1039 return sprintf(buf, "%d\n", bdev_alignment_offset(disk->part0));
1042 static ssize_t disk_discard_alignment_show(struct device *dev,
1043 struct device_attribute *attr,
1046 struct gendisk *disk = dev_to_disk(dev);
1048 return sprintf(buf, "%d\n", bdev_alignment_offset(disk->part0));
1051 static ssize_t diskseq_show(struct device *dev,
1052 struct device_attribute *attr, char *buf)
1054 struct gendisk *disk = dev_to_disk(dev);
1056 return sprintf(buf, "%llu\n", disk->diskseq);
1059 static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1060 static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1061 static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1062 static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1063 static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1064 static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1065 static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1066 static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1067 static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1068 static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1069 static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1070 static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
1071 static DEVICE_ATTR(diskseq, 0444, diskseq_show, NULL);
1073 #ifdef CONFIG_FAIL_MAKE_REQUEST
1074 ssize_t part_fail_show(struct device *dev,
1075 struct device_attribute *attr, char *buf)
1077 return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_make_it_fail);
1080 ssize_t part_fail_store(struct device *dev,
1081 struct device_attribute *attr,
1082 const char *buf, size_t count)
1086 if (count > 0 && sscanf(buf, "%d", &i) > 0)
1087 dev_to_bdev(dev)->bd_make_it_fail = i;
1092 static struct device_attribute dev_attr_fail =
1093 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
1094 #endif /* CONFIG_FAIL_MAKE_REQUEST */
1096 #ifdef CONFIG_FAIL_IO_TIMEOUT
1097 static struct device_attribute dev_attr_fail_timeout =
1098 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
1101 static struct attribute *disk_attrs[] = {
1102 &dev_attr_range.attr,
1103 &dev_attr_ext_range.attr,
1104 &dev_attr_removable.attr,
1105 &dev_attr_hidden.attr,
1107 &dev_attr_size.attr,
1108 &dev_attr_alignment_offset.attr,
1109 &dev_attr_discard_alignment.attr,
1110 &dev_attr_capability.attr,
1111 &dev_attr_stat.attr,
1112 &dev_attr_inflight.attr,
1113 &dev_attr_badblocks.attr,
1114 &dev_attr_events.attr,
1115 &dev_attr_events_async.attr,
1116 &dev_attr_events_poll_msecs.attr,
1117 &dev_attr_diskseq.attr,
1118 #ifdef CONFIG_FAIL_MAKE_REQUEST
1119 &dev_attr_fail.attr,
1121 #ifdef CONFIG_FAIL_IO_TIMEOUT
1122 &dev_attr_fail_timeout.attr,
1127 static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1129 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1130 struct gendisk *disk = dev_to_disk(dev);
1132 if (a == &dev_attr_badblocks.attr && !disk->bb)
1137 static struct attribute_group disk_attr_group = {
1138 .attrs = disk_attrs,
1139 .is_visible = disk_visible,
1142 static const struct attribute_group *disk_attr_groups[] = {
1144 #ifdef CONFIG_BLK_DEV_IO_TRACE
1145 &blk_trace_attr_group,
1147 #ifdef CONFIG_BLK_DEV_INTEGRITY
1148 &blk_integrity_attr_group,
1154 * disk_release - releases all allocated resources of the gendisk
1155 * @dev: the device representing this disk
1157 * This function releases all allocated resources of the gendisk.
1159 * Drivers which used __device_add_disk() have a gendisk with a request_queue
1160 * assigned. Since the request_queue sits on top of the gendisk for these
1161 * drivers we also call blk_put_queue() for them, and we expect the
1162 * request_queue refcount to reach 0 at this point, and so the request_queue
1163 * will also be freed prior to the disk.
1165 * Context: can sleep
1167 static void disk_release(struct device *dev)
1169 struct gendisk *disk = dev_to_disk(dev);
1172 WARN_ON_ONCE(disk_live(disk));
1175 * To undo the all initialization from blk_mq_init_allocated_queue in
1176 * case of a probe failure where add_disk is never called we have to
1177 * call blk_mq_exit_queue here. We can't do this for the more common
1178 * teardown case (yet) as the tagset can be gone by the time the disk
1179 * is released once it was added.
1181 if (queue_is_mq(disk->queue) &&
1182 test_bit(GD_OWNS_QUEUE, &disk->state) &&
1183 !test_bit(GD_ADDED, &disk->state))
1184 blk_mq_exit_queue(disk->queue);
1186 blkcg_exit_disk(disk);
1188 bioset_exit(&disk->bio_split);
1190 disk_release_events(disk);
1191 kfree(disk->random);
1192 disk_free_zone_bitmaps(disk);
1193 xa_destroy(&disk->part_tbl);
1195 disk->queue->disk = NULL;
1196 blk_put_queue(disk->queue);
1198 if (test_bit(GD_ADDED, &disk->state) && disk->fops->free_disk)
1199 disk->fops->free_disk(disk);
1201 iput(disk->part0->bd_inode); /* frees the disk */
1204 static int block_uevent(const struct device *dev, struct kobj_uevent_env *env)
1206 const struct gendisk *disk = dev_to_disk(dev);
1208 return add_uevent_var(env, "DISKSEQ=%llu", disk->diskseq);
1211 struct class block_class = {
1213 .dev_uevent = block_uevent,
1216 static char *block_devnode(const struct device *dev, umode_t *mode,
1217 kuid_t *uid, kgid_t *gid)
1219 struct gendisk *disk = dev_to_disk(dev);
1221 if (disk->fops->devnode)
1222 return disk->fops->devnode(disk, mode);
1226 const struct device_type disk_type = {
1228 .groups = disk_attr_groups,
1229 .release = disk_release,
1230 .devnode = block_devnode,
1233 #ifdef CONFIG_PROC_FS
1235 * aggregate disk stat collector. Uses the same stats that the sysfs
1236 * entries do, above, but makes them available through one seq_file.
1238 * The output looks suspiciously like /proc/partitions with a bunch of
1241 static int diskstats_show(struct seq_file *seqf, void *v)
1243 struct gendisk *gp = v;
1244 struct block_device *hd;
1245 unsigned int inflight;
1246 struct disk_stats stat;
1250 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
1251 seq_puts(seqf, "major minor name"
1252 " rio rmerge rsect ruse wio wmerge "
1253 "wsect wuse running use aveq"
1258 xa_for_each(&gp->part_tbl, idx, hd) {
1259 if (bdev_is_partition(hd) && !bdev_nr_sectors(hd))
1261 if (queue_is_mq(gp->queue))
1262 inflight = blk_mq_in_flight(gp->queue, hd);
1264 inflight = part_in_flight(hd);
1268 update_io_ticks(hd, jiffies, true);
1271 part_stat_read_all(hd, &stat);
1272 seq_printf(seqf, "%4d %7d %pg "
1279 MAJOR(hd->bd_dev), MINOR(hd->bd_dev), hd,
1280 stat.ios[STAT_READ],
1281 stat.merges[STAT_READ],
1282 stat.sectors[STAT_READ],
1283 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1285 stat.ios[STAT_WRITE],
1286 stat.merges[STAT_WRITE],
1287 stat.sectors[STAT_WRITE],
1288 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1291 jiffies_to_msecs(stat.io_ticks),
1292 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1293 stat.nsecs[STAT_WRITE] +
1294 stat.nsecs[STAT_DISCARD] +
1295 stat.nsecs[STAT_FLUSH],
1297 stat.ios[STAT_DISCARD],
1298 stat.merges[STAT_DISCARD],
1299 stat.sectors[STAT_DISCARD],
1300 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1302 stat.ios[STAT_FLUSH],
1303 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1312 static const struct seq_operations diskstats_op = {
1313 .start = disk_seqf_start,
1314 .next = disk_seqf_next,
1315 .stop = disk_seqf_stop,
1316 .show = diskstats_show
1319 static int __init proc_genhd_init(void)
1321 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1322 proc_create_seq("partitions", 0, NULL, &partitions_op);
1325 module_init(proc_genhd_init);
1326 #endif /* CONFIG_PROC_FS */
1328 dev_t part_devt(struct gendisk *disk, u8 partno)
1330 struct block_device *part;
1334 part = xa_load(&disk->part_tbl, partno);
1336 devt = part->bd_dev;
1342 dev_t blk_lookup_devt(const char *name, int partno)
1344 dev_t devt = MKDEV(0, 0);
1345 struct class_dev_iter iter;
1348 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1349 while ((dev = class_dev_iter_next(&iter))) {
1350 struct gendisk *disk = dev_to_disk(dev);
1352 if (strcmp(dev_name(dev), name))
1355 if (partno < disk->minors) {
1356 /* We need to return the right devno, even
1357 * if the partition doesn't exist yet.
1359 devt = MKDEV(MAJOR(dev->devt),
1360 MINOR(dev->devt) + partno);
1362 devt = part_devt(disk, partno);
1367 class_dev_iter_exit(&iter);
1371 struct gendisk *__alloc_disk_node(struct request_queue *q, int node_id,
1372 struct lock_class_key *lkclass)
1374 struct gendisk *disk;
1376 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
1380 if (bioset_init(&disk->bio_split, BIO_POOL_SIZE, 0, 0))
1383 disk->bdi = bdi_alloc(node_id);
1385 goto out_free_bioset;
1387 /* bdev_alloc() might need the queue, set before the first call */
1390 disk->part0 = bdev_alloc(disk, 0);
1394 disk->node_id = node_id;
1395 mutex_init(&disk->open_mutex);
1396 xa_init(&disk->part_tbl);
1397 if (xa_insert(&disk->part_tbl, 0, disk->part0, GFP_KERNEL))
1398 goto out_destroy_part_tbl;
1400 if (blkcg_init_disk(disk))
1401 goto out_erase_part0;
1403 rand_initialize_disk(disk);
1404 disk_to_dev(disk)->class = &block_class;
1405 disk_to_dev(disk)->type = &disk_type;
1406 device_initialize(disk_to_dev(disk));
1409 lockdep_init_map(&disk->lockdep_map, "(bio completion)", lkclass, 0);
1410 #ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
1411 INIT_LIST_HEAD(&disk->slave_bdevs);
1416 xa_erase(&disk->part_tbl, 0);
1417 out_destroy_part_tbl:
1418 xa_destroy(&disk->part_tbl);
1419 disk->part0->bd_disk = NULL;
1420 iput(disk->part0->bd_inode);
1424 bioset_exit(&disk->bio_split);
1430 struct gendisk *__blk_alloc_disk(int node, struct lock_class_key *lkclass)
1432 struct request_queue *q;
1433 struct gendisk *disk;
1435 q = blk_alloc_queue(node);
1439 disk = __alloc_disk_node(q, node, lkclass);
1444 set_bit(GD_OWNS_QUEUE, &disk->state);
1447 EXPORT_SYMBOL(__blk_alloc_disk);
1450 * put_disk - decrements the gendisk refcount
1451 * @disk: the struct gendisk to decrement the refcount for
1453 * This decrements the refcount for the struct gendisk. When this reaches 0
1454 * we'll have disk_release() called.
1456 * Note: for blk-mq disk put_disk must be called before freeing the tag_set
1457 * when handling probe errors (that is before add_disk() is called).
1459 * Context: Any context, but the last reference must not be dropped from
1462 void put_disk(struct gendisk *disk)
1465 put_device(disk_to_dev(disk));
1467 EXPORT_SYMBOL(put_disk);
1469 static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1471 char event[] = "DISK_RO=1";
1472 char *envp[] = { event, NULL };
1476 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1480 * set_disk_ro - set a gendisk read-only
1481 * @disk: gendisk to operate on
1482 * @read_only: %true to set the disk read-only, %false set the disk read/write
1484 * This function is used to indicate whether a given disk device should have its
1485 * read-only flag set. set_disk_ro() is typically used by device drivers to
1486 * indicate whether the underlying physical device is write-protected.
1488 void set_disk_ro(struct gendisk *disk, bool read_only)
1491 if (test_and_set_bit(GD_READ_ONLY, &disk->state))
1494 if (!test_and_clear_bit(GD_READ_ONLY, &disk->state))
1497 set_disk_ro_uevent(disk, read_only);
1499 EXPORT_SYMBOL(set_disk_ro);
1501 void inc_diskseq(struct gendisk *disk)
1503 disk->diskseq = atomic64_inc_return(&diskseq);