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/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>
30 #include "blk-rq-qos.h"
32 static struct kobject *block_depr;
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.
49 static atomic64_t diskseq;
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);
55 void set_capacity(struct gendisk *disk, sector_t sectors)
57 struct block_device *bdev = disk->part0;
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);
64 EXPORT_SYMBOL(set_capacity);
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.
70 bool set_capacity_and_notify(struct gendisk *disk, sector_t size)
72 sector_t capacity = get_capacity(disk);
73 char *envp[] = { "RESIZE=1", NULL };
75 set_capacity(disk, size);
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.
82 if (size == capacity ||
84 (disk->flags & GENHD_FL_HIDDEN))
87 pr_info("%s: detected capacity change from %lld to %lld\n",
88 disk->disk_name, capacity, size);
91 * Historically we did not send a uevent for changes to/from an empty
94 if (!capacity || !size)
96 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
99 EXPORT_SYMBOL_GPL(set_capacity_and_notify);
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.
105 * Note: do not use this in new code, use the %pg specifier to sprintf and
108 const char *bdevname(struct block_device *bdev, char *buf)
110 struct gendisk *hd = bdev->bd_disk;
111 int partno = bdev->bd_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);
118 snprintf(buf, BDEVNAME_SIZE, "%s%d", hd->disk_name, partno);
122 EXPORT_SYMBOL(bdevname);
124 static void part_stat_read_all(struct block_device *part,
125 struct disk_stats *stat)
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);
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];
141 stat->io_ticks += ptr->io_ticks;
145 static unsigned int part_in_flight(struct block_device *part)
147 unsigned int inflight = 0;
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);
154 if ((int)inflight < 0)
160 static void part_in_flight_rw(struct block_device *part,
161 unsigned int inflight[2])
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);
171 if ((int)inflight[0] < 0)
173 if ((int)inflight[1] < 0)
178 * Can be deleted altogether. Later.
181 #define BLKDEV_MAJOR_HASH_SIZE 255
182 static struct blk_major_name {
183 struct blk_major_name *next;
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);
191 /* index in the above - for now: assume no multimajor ranges */
192 static inline int major_to_index(unsigned major)
194 return major % BLKDEV_MAJOR_HASH_SIZE;
197 #ifdef CONFIG_PROC_FS
198 void blkdev_show(struct seq_file *seqf, off_t offset)
200 struct blk_major_name *dp;
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);
208 #endif /* CONFIG_PROC_FS */
211 * __register_blkdev - register a new block device
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.
221 * The @name must be unique within the system.
223 * The return value depends on the @major input parameter:
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
231 * See Documentation/admin-guide/devices.txt for the list of allocated
234 * Use register_blkdev instead for any new code.
236 int __register_blkdev(unsigned int major, const char *name,
237 void (*probe)(dev_t devt))
239 struct blk_major_name **n, *p;
242 mutex_lock(&major_names_lock);
246 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
247 if (major_names[index] == NULL)
252 printk("%s: failed to get major for %s\n",
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);
269 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
277 strlcpy(p->name, name, sizeof(p->name));
279 index = major_to_index(major);
281 spin_lock(&major_names_spinlock);
282 for (n = &major_names[index]; *n; n = &(*n)->next) {
283 if ((*n)->major == major)
290 spin_unlock(&major_names_spinlock);
293 printk("register_blkdev: cannot get major %u for %s\n",
298 mutex_unlock(&major_names_lock);
301 EXPORT_SYMBOL(__register_blkdev);
303 void unregister_blkdev(unsigned int major, const char *name)
305 struct blk_major_name **n;
306 struct blk_major_name *p = NULL;
307 int index = major_to_index(major);
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)
314 if (!*n || strcmp((*n)->name, name)) {
320 spin_unlock(&major_names_spinlock);
321 mutex_unlock(&major_names_lock);
325 EXPORT_SYMBOL(unregister_blkdev);
327 int blk_alloc_ext_minor(void)
331 idx = ida_alloc_range(&ext_devt_ida, 0, NR_EXT_DEVT, GFP_KERNEL);
337 void blk_free_ext_minor(unsigned int minor)
339 ida_free(&ext_devt_ida, minor);
342 static char *bdevt_str(dev_t devt, char *buf)
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);
349 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
354 void disk_uevent(struct gendisk *disk, enum kobject_action action)
356 struct block_device *part;
360 xa_for_each(&disk->part_tbl, idx, part) {
361 if (bdev_is_partition(part) && !bdev_nr_sectors(part))
363 if (!kobject_get_unless_zero(&part->bd_device.kobj))
367 kobject_uevent(bdev_kobj(part), action);
368 put_device(&part->bd_device);
373 EXPORT_SYMBOL_GPL(disk_uevent);
375 static void disk_scan_partitions(struct gendisk *disk)
377 struct block_device *bdev;
379 if (!get_capacity(disk) || !disk_part_scan_enabled(disk))
382 set_bit(GD_NEED_PART_SCAN, &disk->state);
383 bdev = blkdev_get_by_dev(disk_devt(disk), FMODE_READ, NULL);
385 blkdev_put(bdev, FMODE_READ);
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
394 * This function registers the partitioning information in @disk
397 int __must_check device_add_disk(struct device *parent, struct gendisk *disk,
398 const struct attribute_group **groups)
401 struct device *ddev = disk_to_dev(disk);
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
410 elevator_init_mq(disk->queue);
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
416 * Otherwise just allocate the device numbers for both the whole device
417 * and all partitions from the extended dev_t space.
420 if (WARN_ON(!disk->minors))
423 if (disk->minors > DISK_MAX_PARTS) {
424 pr_err("block: can't allocate more than %d partitions\n",
426 disk->minors = DISK_MAX_PARTS;
429 if (WARN_ON(disk->minors))
432 ret = blk_alloc_ext_minor();
435 disk->major = BLOCK_EXT_MAJOR;
436 disk->first_minor = ret;
437 disk->flags |= GENHD_FL_EXT_DEVT;
440 ret = disk_alloc_events(disk);
442 goto out_free_ext_minor;
444 /* delay uevents, until we scanned partition table */
445 dev_set_uevent_suppress(ddev, 1);
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);
454 goto out_disk_release_events;
455 if (!sysfs_deprecated) {
456 ret = sysfs_create_link(block_depr, &ddev->kobj,
457 kobject_name(&ddev->kobj));
463 * avoid probable deadlock caused by allocating memory with
464 * GFP_KERNEL in runtime_resume callback of its all ancestor
467 pm_runtime_set_memalloc_noio(ddev, true);
469 ret = blk_integrity_add(disk);
471 goto out_del_block_link;
473 disk->part0->bd_holder_dir =
474 kobject_create_and_add("holders", &ddev->kobj);
475 if (!disk->part0->bd_holder_dir) {
477 goto out_del_integrity;
479 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
480 if (!disk->slave_dir) {
482 goto out_put_holder_dir;
485 ret = bd_register_pending_holders(disk);
487 goto out_put_slave_dir;
489 ret = blk_register_queue(disk);
491 goto out_put_slave_dir;
493 if (disk->flags & GENHD_FL_HIDDEN) {
495 * Don't let hidden disks show up in /proc/partitions,
496 * and don't bother scanning for partitions either.
498 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
499 disk->flags |= GENHD_FL_NO_PART_SCAN;
501 ret = bdi_register(disk->bdi, "%u:%u",
502 disk->major, disk->first_minor);
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");
509 goto out_unregister_bdi;
511 bdev_add(disk->part0, ddev->devt);
512 disk_scan_partitions(disk);
515 * Announce the disk and partitions after all partitions are
516 * created. (for hidden disks uevents remain suppressed forever)
518 dev_set_uevent_suppress(ddev, 0);
519 disk_uevent(disk, KOBJ_ADD);
522 disk_update_readahead(disk);
523 disk_add_events(disk);
527 if (!(disk->flags & GENHD_FL_HIDDEN))
528 bdi_unregister(disk->bdi);
529 out_unregister_queue:
530 blk_unregister_queue(disk);
532 kobject_put(disk->slave_dir);
534 kobject_put(disk->part0->bd_holder_dir);
536 blk_integrity_del(disk);
538 if (!sysfs_deprecated)
539 sysfs_remove_link(block_depr, dev_name(ddev));
542 out_disk_release_events:
543 disk_release_events(disk);
545 if (disk->major == BLOCK_EXT_MAJOR)
546 blk_free_ext_minor(disk->first_minor);
549 EXPORT_SYMBOL(device_add_disk);
552 * del_gendisk - remove the gendisk
553 * @disk: the struct gendisk to remove
555 * Removes the gendisk and all its associated resources. This deletes the
556 * partitions associated with the gendisk, and unregisters the associated
559 * This is the counter to the respective __device_add_disk() call.
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.
565 * Drivers exist which depend on the release of the gendisk to be synchronous,
566 * it should not be deferred.
570 void del_gendisk(struct gendisk *disk)
572 struct request_queue *q = disk->queue;
576 if (WARN_ON_ONCE(!disk_live(disk) && !(disk->flags & GENHD_FL_HIDDEN)))
579 blk_integrity_del(disk);
580 disk_del_events(disk);
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);
587 fsync_bdev(disk->part0);
588 __invalidate_device(disk->part0, true);
593 set_bit(GD_DEAD, &disk->state);
594 set_capacity(disk, 0);
597 * Prevent new I/O from crossing bio_queue_enter().
599 blk_queue_start_drain(q);
601 if (!(disk->flags & GENHD_FL_HIDDEN)) {
602 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
605 * Unregister bdi before releasing device numbers (as they can
606 * get reused and we'd get clashes in sysfs).
608 bdi_unregister(disk->bdi);
611 blk_unregister_queue(disk);
613 kobject_put(disk->part0->bd_holder_dir);
614 kobject_put(disk->slave_dir);
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));
623 blk_mq_freeze_queue_wait(q);
627 blk_flush_integrity();
629 * Allow using passthrough request again after the queue is torn down.
631 blk_queue_flag_clear(QUEUE_FLAG_INIT_DONE, q);
632 __blk_mq_unfreeze_queue(q, true);
635 EXPORT_SYMBOL(del_gendisk);
638 * invalidate_disk - invalidate the disk
639 * @disk: the struct gendisk to invalidate
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.
647 void invalidate_disk(struct gendisk *disk)
649 struct block_device *bdev = disk->part0;
651 invalidate_bdev(bdev);
652 bdev->bd_inode->i_mapping->wb_err = 0;
653 set_capacity(disk, 0);
655 EXPORT_SYMBOL(invalidate_disk);
657 /* sysfs access to bad-blocks list. */
658 static ssize_t disk_badblocks_show(struct device *dev,
659 struct device_attribute *attr,
662 struct gendisk *disk = dev_to_disk(dev);
665 return sprintf(page, "\n");
667 return badblocks_show(disk->bb, page, 0);
670 static ssize_t disk_badblocks_store(struct device *dev,
671 struct device_attribute *attr,
672 const char *page, size_t len)
674 struct gendisk *disk = dev_to_disk(dev);
679 return badblocks_store(disk->bb, page, len, 0);
682 void blk_request_module(dev_t devt)
684 unsigned int major = MAJOR(devt);
685 struct blk_major_name **n;
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) {
691 mutex_unlock(&major_names_lock);
695 mutex_unlock(&major_names_lock);
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));
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
707 void __init printk_all_partitions(void)
709 struct class_dev_iter iter;
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];
720 * Don't show empty devices or things that have been
723 if (get_capacity(disk) == 0 ||
724 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
728 * Note, unlike /proc/partitions, I am showing the numbers in
729 * hex - the same format as the root= option takes.
732 xa_for_each(&disk->part_tbl, idx, part) {
733 if (!bdev_nr_sectors(part))
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,
740 part->bd_meta_info->uuid : "");
741 if (bdev_is_partition(part))
743 else if (dev->parent && dev->parent->driver)
744 printk(" driver: %s\n",
745 dev->parent->driver->name);
747 printk(" (driver?)\n");
751 class_dev_iter_exit(&iter);
754 #ifdef CONFIG_PROC_FS
756 static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
759 struct class_dev_iter *iter;
762 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
764 return ERR_PTR(-ENOMEM);
766 seqf->private = iter;
767 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
769 dev = class_dev_iter_next(iter);
774 return dev_to_disk(dev);
777 static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
782 dev = class_dev_iter_next(seqf->private);
784 return dev_to_disk(dev);
789 static void disk_seqf_stop(struct seq_file *seqf, void *v)
791 struct class_dev_iter *iter = seqf->private;
793 /* stop is called even after start failed :-( */
795 class_dev_iter_exit(iter);
797 seqf->private = NULL;
801 static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
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");
811 static int show_partition(struct seq_file *seqf, void *v)
813 struct gendisk *sgp = v;
814 struct block_device *part;
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)))
821 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
825 xa_for_each(&sgp->part_tbl, idx, part) {
826 if (!bdev_nr_sectors(part))
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);
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
844 static int __init genhd_device_init(void)
848 block_class.dev_kobj = sysfs_dev_block_kobj;
849 error = class_register(&block_class);
854 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
856 /* create top-level block dir */
857 if (!sysfs_deprecated)
858 block_depr = kobject_create_and_add("block", NULL);
862 subsys_initcall(genhd_device_init);
864 static ssize_t disk_range_show(struct device *dev,
865 struct device_attribute *attr, char *buf)
867 struct gendisk *disk = dev_to_disk(dev);
869 return sprintf(buf, "%d\n", disk->minors);
872 static ssize_t disk_ext_range_show(struct device *dev,
873 struct device_attribute *attr, char *buf)
875 struct gendisk *disk = dev_to_disk(dev);
877 return sprintf(buf, "%d\n", disk_max_parts(disk));
880 static ssize_t disk_removable_show(struct device *dev,
881 struct device_attribute *attr, char *buf)
883 struct gendisk *disk = dev_to_disk(dev);
885 return sprintf(buf, "%d\n",
886 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
889 static ssize_t disk_hidden_show(struct device *dev,
890 struct device_attribute *attr, char *buf)
892 struct gendisk *disk = dev_to_disk(dev);
894 return sprintf(buf, "%d\n",
895 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
898 static ssize_t disk_ro_show(struct device *dev,
899 struct device_attribute *attr, char *buf)
901 struct gendisk *disk = dev_to_disk(dev);
903 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
906 ssize_t part_size_show(struct device *dev,
907 struct device_attribute *attr, char *buf)
909 return sprintf(buf, "%llu\n", bdev_nr_sectors(dev_to_bdev(dev)));
912 ssize_t part_stat_show(struct device *dev,
913 struct device_attribute *attr, char *buf)
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;
920 part_stat_read_all(bdev, &stat);
922 inflight = blk_mq_in_flight(q, bdev);
924 inflight = part_in_flight(bdev);
927 "%8lu %8lu %8llu %8u "
928 "%8lu %8lu %8llu %8u "
930 "%8lu %8lu %8llu %8u "
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),
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],
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));
956 ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
959 struct block_device *bdev = dev_to_bdev(dev);
960 struct request_queue *q = bdev_get_queue(bdev);
961 unsigned int inflight[2];
964 blk_mq_in_flight_rw(q, bdev, inflight);
966 part_in_flight_rw(bdev, inflight);
968 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
971 static ssize_t disk_capability_show(struct device *dev,
972 struct device_attribute *attr, char *buf)
974 struct gendisk *disk = dev_to_disk(dev);
976 return sprintf(buf, "%x\n", disk->flags);
979 static ssize_t disk_alignment_offset_show(struct device *dev,
980 struct device_attribute *attr,
983 struct gendisk *disk = dev_to_disk(dev);
985 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
988 static ssize_t disk_discard_alignment_show(struct device *dev,
989 struct device_attribute *attr,
992 struct gendisk *disk = dev_to_disk(dev);
994 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
997 static ssize_t diskseq_show(struct device *dev,
998 struct device_attribute *attr, char *buf)
1000 struct gendisk *disk = dev_to_disk(dev);
1002 return sprintf(buf, "%llu\n", disk->diskseq);
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);
1019 #ifdef CONFIG_FAIL_MAKE_REQUEST
1020 ssize_t part_fail_show(struct device *dev,
1021 struct device_attribute *attr, char *buf)
1023 return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_make_it_fail);
1026 ssize_t part_fail_store(struct device *dev,
1027 struct device_attribute *attr,
1028 const char *buf, size_t count)
1032 if (count > 0 && sscanf(buf, "%d", &i) > 0)
1033 dev_to_bdev(dev)->bd_make_it_fail = i;
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 */
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);
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,
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,
1067 #ifdef CONFIG_FAIL_IO_TIMEOUT
1068 &dev_attr_fail_timeout.attr,
1073 static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1075 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1076 struct gendisk *disk = dev_to_disk(dev);
1078 if (a == &dev_attr_badblocks.attr && !disk->bb)
1083 static struct attribute_group disk_attr_group = {
1084 .attrs = disk_attrs,
1085 .is_visible = disk_visible,
1088 static const struct attribute_group *disk_attr_groups[] = {
1094 * disk_release - releases all allocated resources of the gendisk
1095 * @dev: the device representing this disk
1097 * This function releases all allocated resources of the gendisk.
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.
1105 * Context: can sleep
1107 static void disk_release(struct device *dev)
1109 struct gendisk *disk = dev_to_disk(dev);
1112 WARN_ON_ONCE(disk_live(disk));
1114 blk_mq_cancel_work_sync(disk->queue);
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 */
1124 static int block_uevent(struct device *dev, struct kobj_uevent_env *env)
1126 struct gendisk *disk = dev_to_disk(dev);
1128 return add_uevent_var(env, "DISKSEQ=%llu", disk->diskseq);
1131 struct class block_class = {
1133 .dev_uevent = block_uevent,
1136 static char *block_devnode(struct device *dev, umode_t *mode,
1137 kuid_t *uid, kgid_t *gid)
1139 struct gendisk *disk = dev_to_disk(dev);
1141 if (disk->fops->devnode)
1142 return disk->fops->devnode(disk, mode);
1146 const struct device_type disk_type = {
1148 .groups = disk_attr_groups,
1149 .release = disk_release,
1150 .devnode = block_devnode,
1153 #ifdef CONFIG_PROC_FS
1155 * aggregate disk stat collector. Uses the same stats that the sysfs
1156 * entries do, above, but makes them available through one seq_file.
1158 * The output looks suspiciously like /proc/partitions with a bunch of
1161 static int diskstats_show(struct seq_file *seqf, void *v)
1163 struct gendisk *gp = v;
1164 struct block_device *hd;
1165 unsigned int inflight;
1166 struct disk_stats stat;
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"
1178 xa_for_each(&gp->part_tbl, idx, hd) {
1179 if (bdev_is_partition(hd) && !bdev_nr_sectors(hd))
1181 part_stat_read_all(hd, &stat);
1182 if (queue_is_mq(gp->queue))
1183 inflight = blk_mq_in_flight(gp->queue, hd);
1185 inflight = part_in_flight(hd);
1187 seq_printf(seqf, "%4d %7d %pg "
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],
1200 stat.ios[STAT_WRITE],
1201 stat.merges[STAT_WRITE],
1202 stat.sectors[STAT_WRITE],
1203 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
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],
1212 stat.ios[STAT_DISCARD],
1213 stat.merges[STAT_DISCARD],
1214 stat.sectors[STAT_DISCARD],
1215 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1217 stat.ios[STAT_FLUSH],
1218 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
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
1234 static int __init proc_genhd_init(void)
1236 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1237 proc_create_seq("partitions", 0, NULL, &partitions_op);
1240 module_init(proc_genhd_init);
1241 #endif /* CONFIG_PROC_FS */
1243 dev_t part_devt(struct gendisk *disk, u8 partno)
1245 struct block_device *part;
1249 part = xa_load(&disk->part_tbl, partno);
1251 devt = part->bd_dev;
1257 dev_t blk_lookup_devt(const char *name, int partno)
1259 dev_t devt = MKDEV(0, 0);
1260 struct class_dev_iter iter;
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);
1267 if (strcmp(dev_name(dev), name))
1270 if (partno < disk->minors) {
1271 /* We need to return the right devno, even
1272 * if the partition doesn't exist yet.
1274 devt = MKDEV(MAJOR(dev->devt),
1275 MINOR(dev->devt) + partno);
1277 devt = part_devt(disk, partno);
1282 class_dev_iter_exit(&iter);
1286 struct gendisk *__alloc_disk_node(struct request_queue *q, int node_id,
1287 struct lock_class_key *lkclass)
1289 struct gendisk *disk;
1291 if (!blk_get_queue(q))
1294 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
1298 disk->bdi = bdi_alloc(node_id);
1302 /* bdev_alloc() might need the queue, set before the first call */
1305 disk->part0 = bdev_alloc(disk, 0);
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;
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));
1321 lockdep_init_map(&disk->lockdep_map, "(bio completion)", lkclass, 0);
1322 #ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
1323 INIT_LIST_HEAD(&disk->slave_bdevs);
1327 out_destroy_part_tbl:
1328 xa_destroy(&disk->part_tbl);
1329 disk->part0->bd_disk = NULL;
1330 iput(disk->part0->bd_inode);
1339 EXPORT_SYMBOL(__alloc_disk_node);
1341 struct gendisk *__blk_alloc_disk(int node, struct lock_class_key *lkclass)
1343 struct request_queue *q;
1344 struct gendisk *disk;
1346 q = blk_alloc_queue(node);
1350 disk = __alloc_disk_node(q, node, lkclass);
1352 blk_cleanup_queue(q);
1357 EXPORT_SYMBOL(__blk_alloc_disk);
1360 * put_disk - decrements the gendisk refcount
1361 * @disk: the struct gendisk to decrement the refcount for
1363 * This decrements the refcount for the struct gendisk. When this reaches 0
1364 * we'll have disk_release() called.
1366 * Context: Any context, but the last reference must not be dropped from
1369 void put_disk(struct gendisk *disk)
1372 put_device(disk_to_dev(disk));
1374 EXPORT_SYMBOL(put_disk);
1377 * blk_cleanup_disk - shutdown a gendisk allocated by blk_alloc_disk
1378 * @disk: gendisk to shutdown
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.
1383 * Context: can sleep
1385 void blk_cleanup_disk(struct gendisk *disk)
1387 blk_cleanup_queue(disk->queue);
1390 EXPORT_SYMBOL(blk_cleanup_disk);
1392 static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1394 char event[] = "DISK_RO=1";
1395 char *envp[] = { event, NULL };
1399 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
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
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.
1411 void set_disk_ro(struct gendisk *disk, bool read_only)
1414 if (test_and_set_bit(GD_READ_ONLY, &disk->state))
1417 if (!test_and_clear_bit(GD_READ_ONLY, &disk->state))
1420 set_disk_ro_uevent(disk, read_only);
1422 EXPORT_SYMBOL(set_disk_ro);
1424 void inc_diskseq(struct gendisk *disk)
1426 disk->diskseq = atomic64_inc_return(&diskseq);