Christoph Hellwig | 3dcf60b | 2019-04-30 14:42:43 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * gendisk handling |
Christoph Hellwig | 7b51e70 | 2020-12-10 08:55:44 +0100 | [diff] [blame] | 4 | * |
| 5 | * Portions Copyright (C) 2020 Christoph Hellwig |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/module.h> |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 9 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/fs.h> |
| 11 | #include <linux/genhd.h> |
Andrew Morton | b446b60 | 2007-02-20 13:57:48 -0800 | [diff] [blame] | 12 | #include <linux/kdev_t.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/kernel.h> |
| 14 | #include <linux/blkdev.h> |
Tejun Heo | 66114ca | 2015-05-22 17:13:32 -0400 | [diff] [blame] | 15 | #include <linux/backing-dev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/init.h> |
| 17 | #include <linux/spinlock.h> |
Alexey Dobriyan | f500975 | 2008-10-04 23:53:21 +0400 | [diff] [blame] | 18 | #include <linux/proc_fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/seq_file.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/kmod.h> |
Jes Sorensen | 58383af | 2006-02-06 14:12:43 -0800 | [diff] [blame] | 22 | #include <linux/mutex.h> |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 23 | #include <linux/idr.h> |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 24 | #include <linux/log2.h> |
Ming Lei | 25e823c | 2013-02-22 16:34:13 -0800 | [diff] [blame] | 25 | #include <linux/pm_runtime.h> |
Vishal Verma | 99e6608 | 2016-01-09 08:36:51 -0800 | [diff] [blame] | 26 | #include <linux/badblocks.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Adrian Bunk | ff88972 | 2008-03-04 11:23:45 +0100 | [diff] [blame] | 28 | #include "blk.h" |
| 29 | |
Christoph Hellwig | 31eb618 | 2020-03-25 16:48:35 +0100 | [diff] [blame] | 30 | static struct kobject *block_depr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 32 | DECLARE_RWSEM(bdev_lookup_sem); |
Christoph Hellwig | 62b508f | 2020-10-29 15:58:25 +0100 | [diff] [blame] | 33 | |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 34 | /* for extended dynamic devt allocation, currently only one major is used */ |
Tejun Heo | ce23bba | 2013-02-27 17:03:56 -0800 | [diff] [blame] | 35 | #define NR_EXT_DEVT (1 << MINORBITS) |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 36 | static DEFINE_IDA(ext_devt_ida); |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 37 | |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 38 | static void disk_check_events(struct disk_events *ev, |
| 39 | unsigned int *clearing_ptr); |
Stanislaw Gruszka | 9f53d2fe | 2012-03-02 10:43:28 +0100 | [diff] [blame] | 40 | static void disk_alloc_events(struct gendisk *disk); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 41 | static void disk_add_events(struct gendisk *disk); |
| 42 | static void disk_del_events(struct gendisk *disk); |
| 43 | static void disk_release_events(struct gendisk *disk); |
| 44 | |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 45 | void set_capacity(struct gendisk *disk, sector_t sectors) |
| 46 | { |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 47 | struct block_device *bdev = disk->part0; |
Damien Le Moal | 0fe3772 | 2021-01-28 15:36:19 +0900 | [diff] [blame] | 48 | unsigned long flags; |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 49 | |
Damien Le Moal | 0fe3772 | 2021-01-28 15:36:19 +0900 | [diff] [blame] | 50 | spin_lock_irqsave(&bdev->bd_size_lock, flags); |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 51 | i_size_write(bdev->bd_inode, (loff_t)sectors << SECTOR_SHIFT); |
Damien Le Moal | 0fe3772 | 2021-01-28 15:36:19 +0900 | [diff] [blame] | 52 | spin_unlock_irqrestore(&bdev->bd_size_lock, flags); |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 53 | } |
| 54 | EXPORT_SYMBOL(set_capacity); |
| 55 | |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 56 | /* |
Christoph Hellwig | 449f4ec | 2020-11-16 15:56:56 +0100 | [diff] [blame] | 57 | * Set disk capacity and notify if the size is not currently zero and will not |
| 58 | * be set to zero. Returns true if a uevent was sent, otherwise false. |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 59 | */ |
Christoph Hellwig | 449f4ec | 2020-11-16 15:56:56 +0100 | [diff] [blame] | 60 | bool set_capacity_and_notify(struct gendisk *disk, sector_t size) |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 61 | { |
| 62 | sector_t capacity = get_capacity(disk); |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 63 | char *envp[] = { "RESIZE=1", NULL }; |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 64 | |
| 65 | set_capacity(disk, size); |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 66 | |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 67 | /* |
| 68 | * Only print a message and send a uevent if the gendisk is user visible |
| 69 | * and alive. This avoids spamming the log and udev when setting the |
| 70 | * initial capacity during probing. |
| 71 | */ |
| 72 | if (size == capacity || |
| 73 | (disk->flags & (GENHD_FL_UP | GENHD_FL_HIDDEN)) != GENHD_FL_UP) |
| 74 | return false; |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 75 | |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 76 | pr_info("%s: detected capacity change from %lld to %lld\n", |
| 77 | disk->disk_name, size, capacity); |
Christoph Hellwig | 7e890c3 | 2020-11-12 17:50:04 +0100 | [diff] [blame] | 78 | |
Christoph Hellwig | a782483 | 2020-11-26 18:43:37 +0100 | [diff] [blame] | 79 | /* |
| 80 | * Historically we did not send a uevent for changes to/from an empty |
| 81 | * device. |
| 82 | */ |
| 83 | if (!capacity || !size) |
| 84 | return false; |
| 85 | kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp); |
| 86 | return true; |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 87 | } |
Christoph Hellwig | 449f4ec | 2020-11-16 15:56:56 +0100 | [diff] [blame] | 88 | EXPORT_SYMBOL_GPL(set_capacity_and_notify); |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 89 | |
Christoph Hellwig | 5cbd28e | 2020-03-24 08:25:12 +0100 | [diff] [blame] | 90 | /* |
| 91 | * Format the device name of the indicated disk into the supplied buffer and |
| 92 | * return a pointer to that same buffer for convenience. |
| 93 | */ |
| 94 | char *disk_name(struct gendisk *hd, int partno, char *buf) |
| 95 | { |
| 96 | if (!partno) |
| 97 | snprintf(buf, BDEVNAME_SIZE, "%s", hd->disk_name); |
| 98 | else if (isdigit(hd->disk_name[strlen(hd->disk_name)-1])) |
| 99 | snprintf(buf, BDEVNAME_SIZE, "%sp%d", hd->disk_name, partno); |
| 100 | else |
| 101 | snprintf(buf, BDEVNAME_SIZE, "%s%d", hd->disk_name, partno); |
| 102 | |
| 103 | return buf; |
| 104 | } |
| 105 | |
| 106 | const char *bdevname(struct block_device *bdev, char *buf) |
| 107 | { |
Christoph Hellwig | 8a63a86 | 2020-09-03 07:41:03 +0200 | [diff] [blame] | 108 | return disk_name(bdev->bd_disk, bdev->bd_partno, buf); |
Christoph Hellwig | 5cbd28e | 2020-03-24 08:25:12 +0100 | [diff] [blame] | 109 | } |
| 110 | EXPORT_SYMBOL(bdevname); |
Balbir Singh | e598a72 | 2020-03-13 05:30:05 +0000 | [diff] [blame] | 111 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 112 | static void part_stat_read_all(struct block_device *part, |
| 113 | struct disk_stats *stat) |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 114 | { |
| 115 | int cpu; |
| 116 | |
| 117 | memset(stat, 0, sizeof(struct disk_stats)); |
| 118 | for_each_possible_cpu(cpu) { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 119 | struct disk_stats *ptr = per_cpu_ptr(part->bd_stats, cpu); |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 120 | int group; |
| 121 | |
| 122 | for (group = 0; group < NR_STAT_GROUPS; group++) { |
| 123 | stat->nsecs[group] += ptr->nsecs[group]; |
| 124 | stat->sectors[group] += ptr->sectors[group]; |
| 125 | stat->ios[group] += ptr->ios[group]; |
| 126 | stat->merges[group] += ptr->merges[group]; |
| 127 | } |
| 128 | |
| 129 | stat->io_ticks += ptr->io_ticks; |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 130 | } |
| 131 | } |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 132 | |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 133 | static unsigned int part_in_flight(struct block_device *part) |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 134 | { |
Christoph Hellwig | b2f609e | 2020-05-13 12:49:33 +0200 | [diff] [blame] | 135 | unsigned int inflight = 0; |
Mikulas Patocka | 1226b8d | 2018-12-06 11:41:20 -0500 | [diff] [blame] | 136 | int cpu; |
| 137 | |
Mikulas Patocka | 1226b8d | 2018-12-06 11:41:20 -0500 | [diff] [blame] | 138 | for_each_possible_cpu(cpu) { |
Mikulas Patocka | e016b78 | 2018-12-06 11:41:21 -0500 | [diff] [blame] | 139 | inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) + |
| 140 | part_stat_local_read_cpu(part, in_flight[1], cpu); |
Mikulas Patocka | 1226b8d | 2018-12-06 11:41:20 -0500 | [diff] [blame] | 141 | } |
Mikulas Patocka | e016b78 | 2018-12-06 11:41:21 -0500 | [diff] [blame] | 142 | if ((int)inflight < 0) |
| 143 | inflight = 0; |
Mikulas Patocka | 1226b8d | 2018-12-06 11:41:20 -0500 | [diff] [blame] | 144 | |
Mikulas Patocka | e016b78 | 2018-12-06 11:41:21 -0500 | [diff] [blame] | 145 | return inflight; |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 146 | } |
| 147 | |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 148 | static void part_in_flight_rw(struct block_device *part, |
| 149 | unsigned int inflight[2]) |
Omar Sandoval | bf0ddab | 2018-04-26 00:21:59 -0700 | [diff] [blame] | 150 | { |
Mikulas Patocka | 1226b8d | 2018-12-06 11:41:20 -0500 | [diff] [blame] | 151 | int cpu; |
| 152 | |
Mikulas Patocka | 1226b8d | 2018-12-06 11:41:20 -0500 | [diff] [blame] | 153 | inflight[0] = 0; |
| 154 | inflight[1] = 0; |
| 155 | for_each_possible_cpu(cpu) { |
| 156 | inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu); |
| 157 | inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu); |
| 158 | } |
| 159 | if ((int)inflight[0] < 0) |
| 160 | inflight[0] = 0; |
| 161 | if ((int)inflight[1] < 0) |
| 162 | inflight[1] = 0; |
Omar Sandoval | bf0ddab | 2018-04-26 00:21:59 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 165 | struct block_device *__disk_get_part(struct gendisk *disk, int partno) |
Christoph Hellwig | 807d4af | 2017-08-23 19:10:30 +0200 | [diff] [blame] | 166 | { |
| 167 | struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl); |
| 168 | |
| 169 | if (unlikely(partno < 0 || partno >= ptbl->len)) |
| 170 | return NULL; |
| 171 | return rcu_dereference(ptbl->part[partno]); |
| 172 | } |
| 173 | |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 174 | /** |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 175 | * disk_part_iter_init - initialize partition iterator |
| 176 | * @piter: iterator to initialize |
| 177 | * @disk: disk to iterate over |
| 178 | * @flags: DISK_PITER_* flags |
| 179 | * |
| 180 | * Initialize @piter so that it iterates over partitions of @disk. |
| 181 | * |
| 182 | * CONTEXT: |
| 183 | * Don't care. |
| 184 | */ |
| 185 | void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk, |
| 186 | unsigned int flags) |
| 187 | { |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 188 | struct disk_part_tbl *ptbl; |
| 189 | |
| 190 | rcu_read_lock(); |
| 191 | ptbl = rcu_dereference(disk->part_tbl); |
| 192 | |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 193 | piter->disk = disk; |
| 194 | piter->part = NULL; |
| 195 | |
| 196 | if (flags & DISK_PITER_REVERSE) |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 197 | piter->idx = ptbl->len - 1; |
Tejun Heo | 71982a4 | 2009-04-17 08:34:48 +0200 | [diff] [blame] | 198 | else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0)) |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 199 | piter->idx = 0; |
Tejun Heo | b5d0b9d | 2008-09-03 09:06:42 +0200 | [diff] [blame] | 200 | else |
| 201 | piter->idx = 1; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 202 | |
| 203 | piter->flags = flags; |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 204 | |
| 205 | rcu_read_unlock(); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 206 | } |
| 207 | EXPORT_SYMBOL_GPL(disk_part_iter_init); |
| 208 | |
| 209 | /** |
| 210 | * disk_part_iter_next - proceed iterator to the next partition and return it |
| 211 | * @piter: iterator of interest |
| 212 | * |
| 213 | * Proceed @piter to the next partition and return it. |
| 214 | * |
| 215 | * CONTEXT: |
| 216 | * Don't care. |
| 217 | */ |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 218 | struct block_device *disk_part_iter_next(struct disk_part_iter *piter) |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 219 | { |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 220 | struct disk_part_tbl *ptbl; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 221 | int inc, end; |
| 222 | |
| 223 | /* put the last partition */ |
Christoph Hellwig | e79319a | 2020-11-10 06:48:53 +0100 | [diff] [blame] | 224 | disk_part_iter_exit(piter); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 225 | |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 226 | /* get part_tbl */ |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 227 | rcu_read_lock(); |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 228 | ptbl = rcu_dereference(piter->disk->part_tbl); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 229 | |
| 230 | /* determine iteration parameters */ |
| 231 | if (piter->flags & DISK_PITER_REVERSE) { |
| 232 | inc = -1; |
Tejun Heo | 71982a4 | 2009-04-17 08:34:48 +0200 | [diff] [blame] | 233 | if (piter->flags & (DISK_PITER_INCL_PART0 | |
| 234 | DISK_PITER_INCL_EMPTY_PART0)) |
Tejun Heo | b5d0b9d | 2008-09-03 09:06:42 +0200 | [diff] [blame] | 235 | end = -1; |
| 236 | else |
| 237 | end = 0; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 238 | } else { |
| 239 | inc = 1; |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 240 | end = ptbl->len; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | /* iterate to the next partition */ |
| 244 | for (; piter->idx != end; piter->idx += inc) { |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 245 | struct block_device *part; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 246 | |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 247 | part = rcu_dereference(ptbl->part[piter->idx]); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 248 | if (!part) |
| 249 | continue; |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 250 | piter->part = bdgrab(part); |
| 251 | if (!piter->part) |
| 252 | continue; |
Ming Lei | aebf5db | 2020-12-21 12:33:35 +0800 | [diff] [blame] | 253 | if (!bdev_nr_sectors(part) && |
| 254 | !(piter->flags & DISK_PITER_INCL_EMPTY) && |
| 255 | !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 && |
| 256 | piter->idx == 0)) { |
| 257 | bdput(piter->part); |
| 258 | piter->part = NULL; |
| 259 | continue; |
| 260 | } |
| 261 | |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 262 | piter->idx += inc; |
| 263 | break; |
| 264 | } |
| 265 | |
| 266 | rcu_read_unlock(); |
| 267 | |
| 268 | return piter->part; |
| 269 | } |
| 270 | EXPORT_SYMBOL_GPL(disk_part_iter_next); |
| 271 | |
| 272 | /** |
| 273 | * disk_part_iter_exit - finish up partition iteration |
| 274 | * @piter: iter of interest |
| 275 | * |
| 276 | * Called when iteration is over. Cleans up @piter. |
| 277 | * |
| 278 | * CONTEXT: |
| 279 | * Don't care. |
| 280 | */ |
| 281 | void disk_part_iter_exit(struct disk_part_iter *piter) |
| 282 | { |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 283 | if (piter->part) |
| 284 | bdput(piter->part); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 285 | piter->part = NULL; |
| 286 | } |
| 287 | EXPORT_SYMBOL_GPL(disk_part_iter_exit); |
| 288 | |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 289 | static inline int sector_in_part(struct block_device *part, sector_t sector) |
Jens Axboe | a6f2365 | 2008-10-24 12:52:42 +0200 | [diff] [blame] | 290 | { |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 291 | return part->bd_start_sect <= sector && |
| 292 | sector < part->bd_start_sect + bdev_nr_sectors(part); |
Jens Axboe | a6f2365 | 2008-10-24 12:52:42 +0200 | [diff] [blame] | 293 | } |
| 294 | |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 295 | /** |
| 296 | * disk_map_sector_rcu - map sector to partition |
| 297 | * @disk: gendisk of interest |
| 298 | * @sector: sector to map |
| 299 | * |
| 300 | * Find out which partition @sector maps to on @disk. This is |
| 301 | * primarily used for stats accounting. |
| 302 | * |
| 303 | * CONTEXT: |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 304 | * RCU read locked. |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 305 | * |
| 306 | * RETURNS: |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 307 | * Found partition on success, part0 is returned if no partition matches |
Ming Lei | b7d6c30 | 2020-05-08 16:17:55 +0800 | [diff] [blame] | 308 | * or the matched partition is being deleted. |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 309 | */ |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 310 | struct block_device *disk_map_sector_rcu(struct gendisk *disk, sector_t sector) |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 311 | { |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 312 | struct disk_part_tbl *ptbl; |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 313 | struct block_device *part; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 314 | int i; |
| 315 | |
Konstantin Khlebnikov | 8ab1d40 | 2020-05-27 07:24:17 +0200 | [diff] [blame] | 316 | rcu_read_lock(); |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 317 | ptbl = rcu_dereference(disk->part_tbl); |
| 318 | |
Jens Axboe | a6f2365 | 2008-10-24 12:52:42 +0200 | [diff] [blame] | 319 | part = rcu_dereference(ptbl->last_lookup); |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 320 | if (part && sector_in_part(part, sector)) |
Konstantin Khlebnikov | 8ab1d40 | 2020-05-27 07:24:17 +0200 | [diff] [blame] | 321 | goto out_unlock; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 322 | |
Jens Axboe | a6f2365 | 2008-10-24 12:52:42 +0200 | [diff] [blame] | 323 | for (i = 1; i < ptbl->len; i++) { |
| 324 | part = rcu_dereference(ptbl->part[i]); |
Jens Axboe | a6f2365 | 2008-10-24 12:52:42 +0200 | [diff] [blame] | 325 | if (part && sector_in_part(part, sector)) { |
| 326 | rcu_assign_pointer(ptbl->last_lookup, part); |
Konstantin Khlebnikov | 8ab1d40 | 2020-05-27 07:24:17 +0200 | [diff] [blame] | 327 | goto out_unlock; |
Jens Axboe | a6f2365 | 2008-10-24 12:52:42 +0200 | [diff] [blame] | 328 | } |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 329 | } |
Konstantin Khlebnikov | 8ab1d40 | 2020-05-27 07:24:17 +0200 | [diff] [blame] | 330 | |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 331 | part = disk->part0; |
Konstantin Khlebnikov | 8ab1d40 | 2020-05-27 07:24:17 +0200 | [diff] [blame] | 332 | out_unlock: |
| 333 | rcu_read_unlock(); |
| 334 | return part; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 335 | } |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 336 | |
Shin'ichiro Kawasaki | b53df2e | 2020-02-21 10:37:08 +0900 | [diff] [blame] | 337 | /** |
| 338 | * disk_has_partitions |
| 339 | * @disk: gendisk of interest |
| 340 | * |
| 341 | * Walk through the partition table and check if valid partition exists. |
| 342 | * |
| 343 | * CONTEXT: |
| 344 | * Don't care. |
| 345 | * |
| 346 | * RETURNS: |
| 347 | * True if the gendisk has at least one valid non-zero size partition. |
| 348 | * Otherwise false. |
| 349 | */ |
| 350 | bool disk_has_partitions(struct gendisk *disk) |
| 351 | { |
| 352 | struct disk_part_tbl *ptbl; |
| 353 | int i; |
| 354 | bool ret = false; |
| 355 | |
| 356 | rcu_read_lock(); |
| 357 | ptbl = rcu_dereference(disk->part_tbl); |
| 358 | |
| 359 | /* Iterate partitions skipping the whole device at index 0 */ |
| 360 | for (i = 1; i < ptbl->len; i++) { |
| 361 | if (rcu_dereference(ptbl->part[i])) { |
| 362 | ret = true; |
| 363 | break; |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | rcu_read_unlock(); |
| 368 | |
| 369 | return ret; |
| 370 | } |
| 371 | EXPORT_SYMBOL_GPL(disk_has_partitions); |
| 372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | /* |
| 374 | * Can be deleted altogether. Later. |
| 375 | * |
| 376 | */ |
Logan Gunthorpe | 133d55c | 2017-06-16 17:48:21 -0600 | [diff] [blame] | 377 | #define BLKDEV_MAJOR_HASH_SIZE 255 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | static struct blk_major_name { |
| 379 | struct blk_major_name *next; |
| 380 | int major; |
| 381 | char name[16]; |
Christoph Hellwig | a160c61 | 2020-10-29 15:58:28 +0100 | [diff] [blame] | 382 | void (*probe)(dev_t devt); |
Joe Korty | 68eef3b | 2006-03-31 02:30:32 -0800 | [diff] [blame] | 383 | } *major_names[BLKDEV_MAJOR_HASH_SIZE]; |
Christoph Hellwig | e49fbbb | 2020-10-29 15:58:26 +0100 | [diff] [blame] | 384 | static DEFINE_MUTEX(major_names_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
| 386 | /* index in the above - for now: assume no multimajor ranges */ |
Yang Zhang | e61eb2e | 2010-12-17 09:00:18 +0100 | [diff] [blame] | 387 | static inline int major_to_index(unsigned major) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { |
Joe Korty | 68eef3b | 2006-03-31 02:30:32 -0800 | [diff] [blame] | 389 | return major % BLKDEV_MAJOR_HASH_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | } |
| 391 | |
Joe Korty | 68eef3b | 2006-03-31 02:30:32 -0800 | [diff] [blame] | 392 | #ifdef CONFIG_PROC_FS |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 393 | void blkdev_show(struct seq_file *seqf, off_t offset) |
Neil Horman | 7170be5 | 2006-01-14 13:20:38 -0800 | [diff] [blame] | 394 | { |
Joe Korty | 68eef3b | 2006-03-31 02:30:32 -0800 | [diff] [blame] | 395 | struct blk_major_name *dp; |
Neil Horman | 7170be5 | 2006-01-14 13:20:38 -0800 | [diff] [blame] | 396 | |
Christoph Hellwig | e49fbbb | 2020-10-29 15:58:26 +0100 | [diff] [blame] | 397 | mutex_lock(&major_names_lock); |
Logan Gunthorpe | 133d55c | 2017-06-16 17:48:21 -0600 | [diff] [blame] | 398 | for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next) |
| 399 | if (dp->major == offset) |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 400 | seq_printf(seqf, "%3d %s\n", dp->major, dp->name); |
Christoph Hellwig | e49fbbb | 2020-10-29 15:58:26 +0100 | [diff] [blame] | 401 | mutex_unlock(&major_names_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } |
Joe Korty | 68eef3b | 2006-03-31 02:30:32 -0800 | [diff] [blame] | 403 | #endif /* CONFIG_PROC_FS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
Márton Németh | 9e8c0bc | 2009-02-20 08:12:51 +0100 | [diff] [blame] | 405 | /** |
Christoph Hellwig | e2b6b30 | 2020-11-14 18:08:21 +0100 | [diff] [blame] | 406 | * __register_blkdev - register a new block device |
Márton Németh | 9e8c0bc | 2009-02-20 08:12:51 +0100 | [diff] [blame] | 407 | * |
Srivatsa S. Bhat | f33ff11 | 2018-02-05 18:25:27 -0800 | [diff] [blame] | 408 | * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If |
| 409 | * @major = 0, try to allocate any unused major number. |
Márton Németh | 9e8c0bc | 2009-02-20 08:12:51 +0100 | [diff] [blame] | 410 | * @name: the name of the new block device as a zero terminated string |
Christoph Hellwig | e2b6b30 | 2020-11-14 18:08:21 +0100 | [diff] [blame] | 411 | * @probe: allback that is called on access to any minor number of @major |
Márton Németh | 9e8c0bc | 2009-02-20 08:12:51 +0100 | [diff] [blame] | 412 | * |
| 413 | * The @name must be unique within the system. |
| 414 | * |
mchehab@s-opensource.com | 0e056eb | 2017-03-30 17:11:36 -0300 | [diff] [blame] | 415 | * The return value depends on the @major input parameter: |
| 416 | * |
Srivatsa S. Bhat | f33ff11 | 2018-02-05 18:25:27 -0800 | [diff] [blame] | 417 | * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1] |
| 418 | * then the function returns zero on success, or a negative error code |
mchehab@s-opensource.com | 0e056eb | 2017-03-30 17:11:36 -0300 | [diff] [blame] | 419 | * - if any unused major number was requested with @major = 0 parameter |
Márton Németh | 9e8c0bc | 2009-02-20 08:12:51 +0100 | [diff] [blame] | 420 | * then the return value is the allocated major number in range |
Srivatsa S. Bhat | f33ff11 | 2018-02-05 18:25:27 -0800 | [diff] [blame] | 421 | * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise |
| 422 | * |
| 423 | * See Documentation/admin-guide/devices.txt for the list of allocated |
| 424 | * major numbers. |
Christoph Hellwig | e2b6b30 | 2020-11-14 18:08:21 +0100 | [diff] [blame] | 425 | * |
| 426 | * Use register_blkdev instead for any new code. |
Márton Németh | 9e8c0bc | 2009-02-20 08:12:51 +0100 | [diff] [blame] | 427 | */ |
Christoph Hellwig | a160c61 | 2020-10-29 15:58:28 +0100 | [diff] [blame] | 428 | int __register_blkdev(unsigned int major, const char *name, |
| 429 | void (*probe)(dev_t devt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
| 431 | struct blk_major_name **n, *p; |
| 432 | int index, ret = 0; |
| 433 | |
Christoph Hellwig | e49fbbb | 2020-10-29 15:58:26 +0100 | [diff] [blame] | 434 | mutex_lock(&major_names_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
| 436 | /* temporary */ |
| 437 | if (major == 0) { |
| 438 | for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) { |
| 439 | if (major_names[index] == NULL) |
| 440 | break; |
| 441 | } |
| 442 | |
| 443 | if (index == 0) { |
Keyur Patel | dfc76d1 | 2019-02-17 10:21:56 -0500 | [diff] [blame] | 444 | printk("%s: failed to get major for %s\n", |
| 445 | __func__, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | ret = -EBUSY; |
| 447 | goto out; |
| 448 | } |
| 449 | major = index; |
| 450 | ret = major; |
| 451 | } |
| 452 | |
Logan Gunthorpe | 133d55c | 2017-06-16 17:48:21 -0600 | [diff] [blame] | 453 | if (major >= BLKDEV_MAJOR_MAX) { |
Keyur Patel | dfc76d1 | 2019-02-17 10:21:56 -0500 | [diff] [blame] | 454 | pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n", |
| 455 | __func__, major, BLKDEV_MAJOR_MAX-1, name); |
Logan Gunthorpe | 133d55c | 2017-06-16 17:48:21 -0600 | [diff] [blame] | 456 | |
| 457 | ret = -EINVAL; |
| 458 | goto out; |
| 459 | } |
| 460 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL); |
| 462 | if (p == NULL) { |
| 463 | ret = -ENOMEM; |
| 464 | goto out; |
| 465 | } |
| 466 | |
| 467 | p->major = major; |
Christoph Hellwig | a160c61 | 2020-10-29 15:58:28 +0100 | [diff] [blame] | 468 | p->probe = probe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | strlcpy(p->name, name, sizeof(p->name)); |
| 470 | p->next = NULL; |
| 471 | index = major_to_index(major); |
| 472 | |
| 473 | for (n = &major_names[index]; *n; n = &(*n)->next) { |
| 474 | if ((*n)->major == major) |
| 475 | break; |
| 476 | } |
| 477 | if (!*n) |
| 478 | *n = p; |
| 479 | else |
| 480 | ret = -EBUSY; |
| 481 | |
| 482 | if (ret < 0) { |
Srivatsa S. Bhat | f33ff11 | 2018-02-05 18:25:27 -0800 | [diff] [blame] | 483 | printk("register_blkdev: cannot get major %u for %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | major, name); |
| 485 | kfree(p); |
| 486 | } |
| 487 | out: |
Christoph Hellwig | e49fbbb | 2020-10-29 15:58:26 +0100 | [diff] [blame] | 488 | mutex_unlock(&major_names_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | return ret; |
| 490 | } |
Christoph Hellwig | a160c61 | 2020-10-29 15:58:28 +0100 | [diff] [blame] | 491 | EXPORT_SYMBOL(__register_blkdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
Akinobu Mita | f448024 | 2007-07-17 04:03:47 -0700 | [diff] [blame] | 493 | void unregister_blkdev(unsigned int major, const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | { |
| 495 | struct blk_major_name **n; |
| 496 | struct blk_major_name *p = NULL; |
| 497 | int index = major_to_index(major); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Christoph Hellwig | e49fbbb | 2020-10-29 15:58:26 +0100 | [diff] [blame] | 499 | mutex_lock(&major_names_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | for (n = &major_names[index]; *n; n = &(*n)->next) |
| 501 | if ((*n)->major == major) |
| 502 | break; |
Akinobu Mita | 294462a | 2007-07-17 04:03:45 -0700 | [diff] [blame] | 503 | if (!*n || strcmp((*n)->name, name)) { |
| 504 | WARN_ON(1); |
Akinobu Mita | 294462a | 2007-07-17 04:03:45 -0700 | [diff] [blame] | 505 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | p = *n; |
| 507 | *n = p->next; |
| 508 | } |
Christoph Hellwig | e49fbbb | 2020-10-29 15:58:26 +0100 | [diff] [blame] | 509 | mutex_unlock(&major_names_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | kfree(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | EXPORT_SYMBOL(unregister_blkdev); |
| 514 | |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 515 | /** |
Tejun Heo | 870d665 | 2008-08-25 19:47:25 +0900 | [diff] [blame] | 516 | * blk_mangle_minor - scatter minor numbers apart |
| 517 | * @minor: minor number to mangle |
| 518 | * |
| 519 | * Scatter consecutively allocated @minor number apart if MANGLE_DEVT |
| 520 | * is enabled. Mangling twice gives the original value. |
| 521 | * |
| 522 | * RETURNS: |
| 523 | * Mangled value. |
| 524 | * |
| 525 | * CONTEXT: |
| 526 | * Don't care. |
| 527 | */ |
| 528 | static int blk_mangle_minor(int minor) |
| 529 | { |
| 530 | #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT |
| 531 | int i; |
| 532 | |
| 533 | for (i = 0; i < MINORBITS / 2; i++) { |
| 534 | int low = minor & (1 << i); |
| 535 | int high = minor & (1 << (MINORBITS - 1 - i)); |
| 536 | int distance = MINORBITS - 1 - 2 * i; |
| 537 | |
| 538 | minor ^= low | high; /* clear both bits */ |
| 539 | low <<= distance; /* swap the positions */ |
| 540 | high >>= distance; |
| 541 | minor |= low | high; /* and set */ |
| 542 | } |
| 543 | #endif |
| 544 | return minor; |
| 545 | } |
| 546 | |
| 547 | /** |
Christoph Hellwig | 9fc995a | 2020-11-24 09:17:46 +0100 | [diff] [blame] | 548 | * blk_alloc_devt - allocate a dev_t for a block device |
| 549 | * @bdev: block device to allocate dev_t for |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 550 | * @devt: out parameter for resulting dev_t |
| 551 | * |
| 552 | * Allocate a dev_t for block device. |
| 553 | * |
| 554 | * RETURNS: |
| 555 | * 0 on success, allocated dev_t is returned in *@devt. -errno on |
| 556 | * failure. |
| 557 | * |
| 558 | * CONTEXT: |
| 559 | * Might sleep. |
| 560 | */ |
Christoph Hellwig | 9fc995a | 2020-11-24 09:17:46 +0100 | [diff] [blame] | 561 | int blk_alloc_devt(struct block_device *bdev, dev_t *devt) |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 562 | { |
Christoph Hellwig | 9fc995a | 2020-11-24 09:17:46 +0100 | [diff] [blame] | 563 | struct gendisk *disk = bdev->bd_disk; |
Tejun Heo | bab998d | 2013-02-27 17:03:57 -0800 | [diff] [blame] | 564 | int idx; |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 565 | |
| 566 | /* in consecutive minor range? */ |
Christoph Hellwig | 9fc995a | 2020-11-24 09:17:46 +0100 | [diff] [blame] | 567 | if (bdev->bd_partno < disk->minors) { |
| 568 | *devt = MKDEV(disk->major, disk->first_minor + bdev->bd_partno); |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 569 | return 0; |
| 570 | } |
| 571 | |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 572 | idx = ida_alloc_range(&ext_devt_ida, 0, NR_EXT_DEVT, GFP_KERNEL); |
Tejun Heo | bab998d | 2013-02-27 17:03:57 -0800 | [diff] [blame] | 573 | if (idx < 0) |
| 574 | return idx == -ENOSPC ? -EBUSY : idx; |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 575 | |
Tejun Heo | 870d665 | 2008-08-25 19:47:25 +0900 | [diff] [blame] | 576 | *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx)); |
Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 577 | return 0; |
| 578 | } |
| 579 | |
| 580 | /** |
| 581 | * blk_free_devt - free a dev_t |
| 582 | * @devt: dev_t to free |
| 583 | * |
| 584 | * Free @devt which was allocated using blk_alloc_devt(). |
| 585 | * |
| 586 | * CONTEXT: |
| 587 | * Might sleep. |
| 588 | */ |
| 589 | void blk_free_devt(dev_t devt) |
| 590 | { |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 591 | if (MAJOR(devt) == BLOCK_EXT_MAJOR) |
| 592 | ida_free(&ext_devt_ida, blk_mangle_minor(MINOR(devt))); |
Yufen Yu | 6fcc44d | 2019-04-02 20:06:34 +0800 | [diff] [blame] | 593 | } |
| 594 | |
Tejun Heo | 1f01429 | 2008-08-25 19:47:23 +0900 | [diff] [blame] | 595 | static char *bdevt_str(dev_t devt, char *buf) |
| 596 | { |
| 597 | if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) { |
| 598 | char tbuf[BDEVT_SIZE]; |
| 599 | snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt)); |
| 600 | snprintf(buf, BDEVT_SIZE, "%-9s", tbuf); |
| 601 | } else |
| 602 | snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt)); |
| 603 | |
| 604 | return buf; |
| 605 | } |
| 606 | |
Christoph Hellwig | 9301fe7 | 2020-09-21 09:19:46 +0200 | [diff] [blame] | 607 | static void disk_scan_partitions(struct gendisk *disk) |
| 608 | { |
| 609 | struct block_device *bdev; |
| 610 | |
| 611 | if (!get_capacity(disk) || !disk_part_scan_enabled(disk)) |
| 612 | return; |
| 613 | |
| 614 | set_bit(GD_NEED_PART_SCAN, &disk->state); |
| 615 | bdev = blkdev_get_by_dev(disk_devt(disk), FMODE_READ, NULL); |
| 616 | if (!IS_ERR(bdev)) |
| 617 | blkdev_put(bdev, FMODE_READ); |
| 618 | } |
| 619 | |
Hannes Reinecke | fef912b | 2018-09-28 08:17:19 +0200 | [diff] [blame] | 620 | static void register_disk(struct device *parent, struct gendisk *disk, |
| 621 | const struct attribute_group **groups) |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 622 | { |
| 623 | struct device *ddev = disk_to_dev(disk); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 624 | struct disk_part_iter piter; |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 625 | struct block_device *part; |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 626 | int err; |
| 627 | |
Dan Williams | e63a46b | 2016-06-15 18:17:27 -0700 | [diff] [blame] | 628 | ddev->parent = parent; |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 629 | |
Kees Cook | ffc8b30 | 2013-07-03 15:01:14 -0700 | [diff] [blame] | 630 | dev_set_name(ddev, "%s", disk->disk_name); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 631 | |
| 632 | /* delay uevents, until we scanned partition table */ |
| 633 | dev_set_uevent_suppress(ddev, 1); |
| 634 | |
Hannes Reinecke | fef912b | 2018-09-28 08:17:19 +0200 | [diff] [blame] | 635 | if (groups) { |
| 636 | WARN_ON(ddev->groups); |
| 637 | ddev->groups = groups; |
| 638 | } |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 639 | if (device_add(ddev)) |
| 640 | return; |
| 641 | if (!sysfs_deprecated) { |
| 642 | err = sysfs_create_link(block_depr, &ddev->kobj, |
| 643 | kobject_name(&ddev->kobj)); |
| 644 | if (err) { |
| 645 | device_del(ddev); |
| 646 | return; |
| 647 | } |
| 648 | } |
Ming Lei | 25e823c | 2013-02-22 16:34:13 -0800 | [diff] [blame] | 649 | |
| 650 | /* |
| 651 | * avoid probable deadlock caused by allocating memory with |
| 652 | * GFP_KERNEL in runtime_resume callback of its all ancestor |
| 653 | * devices |
| 654 | */ |
| 655 | pm_runtime_set_memalloc_noio(ddev, true); |
| 656 | |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 657 | disk->part0->bd_holder_dir = |
| 658 | kobject_create_and_add("holders", &ddev->kobj); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 659 | disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj); |
| 660 | |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 661 | if (disk->flags & GENHD_FL_HIDDEN) { |
| 662 | dev_set_uevent_suppress(ddev, 0); |
| 663 | return; |
| 664 | } |
| 665 | |
Christoph Hellwig | 9301fe7 | 2020-09-21 09:19:46 +0200 | [diff] [blame] | 666 | disk_scan_partitions(disk); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 667 | |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 668 | /* announce disk after possible partitions are created */ |
| 669 | dev_set_uevent_suppress(ddev, 0); |
| 670 | kobject_uevent(&ddev->kobj, KOBJ_ADD); |
| 671 | |
| 672 | /* announce possible partitions */ |
| 673 | disk_part_iter_init(&piter, disk, 0); |
| 674 | while ((part = disk_part_iter_next(&piter))) |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 675 | kobject_uevent(bdev_kobj(part), KOBJ_ADD); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 676 | disk_part_iter_exit(&piter); |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 677 | |
zhengbin | 4d7c1d3 | 2019-02-20 21:27:05 +0800 | [diff] [blame] | 678 | if (disk->queue->backing_dev_info->dev) { |
| 679 | err = sysfs_create_link(&ddev->kobj, |
| 680 | &disk->queue->backing_dev_info->dev->kobj, |
| 681 | "bdi"); |
| 682 | WARN_ON(err); |
| 683 | } |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 684 | } |
| 685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | /** |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 687 | * __device_add_disk - add disk information to kernel list |
Dan Williams | e63a46b | 2016-06-15 18:17:27 -0700 | [diff] [blame] | 688 | * @parent: parent device for the disk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | * @disk: per-device partitioning information |
Hannes Reinecke | fef912b | 2018-09-28 08:17:19 +0200 | [diff] [blame] | 690 | * @groups: Additional per-device sysfs groups |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 691 | * @register_queue: register the queue if set to true |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | * |
| 693 | * This function registers the partitioning information in @disk |
| 694 | * with the kernel. |
Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 695 | * |
| 696 | * FIXME: error handling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | */ |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 698 | static void __device_add_disk(struct device *parent, struct gendisk *disk, |
Hannes Reinecke | fef912b | 2018-09-28 08:17:19 +0200 | [diff] [blame] | 699 | const struct attribute_group **groups, |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 700 | bool register_queue) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | { |
Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 702 | dev_t devt; |
Greg Kroah-Hartman | 6ffeea7 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 703 | int retval; |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 704 | |
Damien Le Moal | 737eb78 | 2019-09-05 18:51:33 +0900 | [diff] [blame] | 705 | /* |
| 706 | * The disk queue should now be all set with enough information about |
| 707 | * the device for the elevator code to pick an adequate default |
| 708 | * elevator if one is needed, that is, for devices requesting queue |
| 709 | * registration. |
| 710 | */ |
| 711 | if (register_queue) |
| 712 | elevator_init_mq(disk->queue); |
| 713 | |
Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 714 | /* minors == 0 indicates to use ext devt from part0 and should |
| 715 | * be accompanied with EXT_DEVT flag. Make sure all |
| 716 | * parameters make sense. |
| 717 | */ |
| 718 | WARN_ON(disk->minors && !(disk->major || disk->first_minor)); |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 719 | WARN_ON(!disk->minors && |
| 720 | !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN))); |
Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 721 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | disk->flags |= GENHD_FL_UP; |
Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 723 | |
Christoph Hellwig | 9fc995a | 2020-11-24 09:17:46 +0100 | [diff] [blame] | 724 | retval = blk_alloc_devt(disk->part0, &devt); |
Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 725 | if (retval) { |
| 726 | WARN_ON(1); |
| 727 | return; |
| 728 | } |
Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 729 | disk->major = MAJOR(devt); |
| 730 | disk->first_minor = MINOR(devt); |
| 731 | |
Stanislaw Gruszka | 9f53d2fe | 2012-03-02 10:43:28 +0100 | [diff] [blame] | 732 | disk_alloc_events(disk); |
| 733 | |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 734 | if (disk->flags & GENHD_FL_HIDDEN) { |
| 735 | /* |
| 736 | * Don't let hidden disks show up in /proc/partitions, |
| 737 | * and don't bother scanning for partitions either. |
| 738 | */ |
| 739 | disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO; |
| 740 | disk->flags |= GENHD_FL_NO_PART_SCAN; |
| 741 | } else { |
Christoph Hellwig | 3c5d202 | 2020-05-04 14:47:59 +0200 | [diff] [blame] | 742 | struct backing_dev_info *bdi = disk->queue->backing_dev_info; |
| 743 | struct device *dev = disk_to_dev(disk); |
weiping zhang | 3a92168 | 2017-10-31 18:38:59 +0800 | [diff] [blame] | 744 | int ret; |
| 745 | |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 746 | /* Register BDI before referencing it from bdev */ |
Christoph Hellwig | 3c5d202 | 2020-05-04 14:47:59 +0200 | [diff] [blame] | 747 | dev->devt = devt; |
| 748 | ret = bdi_register(bdi, "%u:%u", MAJOR(devt), MINOR(devt)); |
weiping zhang | 3a92168 | 2017-10-31 18:38:59 +0800 | [diff] [blame] | 749 | WARN_ON(ret); |
Christoph Hellwig | 3c5d202 | 2020-05-04 14:47:59 +0200 | [diff] [blame] | 750 | bdi_set_owner(bdi, dev); |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 751 | bdev_add(disk->part0, devt); |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 752 | } |
Hannes Reinecke | fef912b | 2018-09-28 08:17:19 +0200 | [diff] [blame] | 753 | register_disk(parent, disk, groups); |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 754 | if (register_queue) |
| 755 | blk_register_queue(disk); |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 756 | |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 757 | /* |
| 758 | * Take an extra ref on queue which will be put on disk_release() |
| 759 | * so that it sticks around as long as @disk is there. |
| 760 | */ |
Tejun Heo | 09ac46c | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 761 | WARN_ON_ONCE(!blk_get_queue(disk->queue)); |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 762 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 763 | disk_add_events(disk); |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 764 | blk_integrity_add(disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | } |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 766 | |
Hannes Reinecke | fef912b | 2018-09-28 08:17:19 +0200 | [diff] [blame] | 767 | void device_add_disk(struct device *parent, struct gendisk *disk, |
| 768 | const struct attribute_group **groups) |
| 769 | |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 770 | { |
Hannes Reinecke | fef912b | 2018-09-28 08:17:19 +0200 | [diff] [blame] | 771 | __device_add_disk(parent, disk, groups, true); |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 772 | } |
Dan Williams | e63a46b | 2016-06-15 18:17:27 -0700 | [diff] [blame] | 773 | EXPORT_SYMBOL(device_add_disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 775 | void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk) |
| 776 | { |
Hannes Reinecke | fef912b | 2018-09-28 08:17:19 +0200 | [diff] [blame] | 777 | __device_add_disk(parent, disk, NULL, false); |
Mike Snitzer | fa70d2e | 2018-01-08 22:01:13 -0500 | [diff] [blame] | 778 | } |
| 779 | EXPORT_SYMBOL(device_add_disk_no_queue_reg); |
| 780 | |
Christoph Hellwig | 71773cf | 2020-11-24 09:20:37 +0100 | [diff] [blame] | 781 | static void invalidate_partition(struct block_device *bdev) |
Christoph Hellwig | 02d33b6 | 2020-04-14 09:29:01 +0200 | [diff] [blame] | 782 | { |
Christoph Hellwig | 02d33b6 | 2020-04-14 09:29:01 +0200 | [diff] [blame] | 783 | fsync_bdev(bdev); |
| 784 | __invalidate_device(bdev, true); |
Christoph Hellwig | 9bc5c39 | 2020-04-14 09:29:02 +0200 | [diff] [blame] | 785 | |
| 786 | /* |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 787 | * Unhash the bdev inode for this device so that it can't be looked |
| 788 | * up any more even if openers still hold references to it. |
Christoph Hellwig | 9bc5c39 | 2020-04-14 09:29:02 +0200 | [diff] [blame] | 789 | */ |
| 790 | remove_inode_hash(bdev->bd_inode); |
Christoph Hellwig | 02d33b6 | 2020-04-14 09:29:01 +0200 | [diff] [blame] | 791 | } |
| 792 | |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 793 | /** |
| 794 | * del_gendisk - remove the gendisk |
| 795 | * @disk: the struct gendisk to remove |
| 796 | * |
| 797 | * Removes the gendisk and all its associated resources. This deletes the |
| 798 | * partitions associated with the gendisk, and unregisters the associated |
| 799 | * request_queue. |
| 800 | * |
| 801 | * This is the counter to the respective __device_add_disk() call. |
| 802 | * |
| 803 | * The final removal of the struct gendisk happens when its refcount reaches 0 |
| 804 | * with put_disk(), which should be called after del_gendisk(), if |
| 805 | * __device_add_disk() was used. |
Luis Chamberlain | e8c7d14 | 2020-06-19 20:47:25 +0000 | [diff] [blame] | 806 | * |
| 807 | * Drivers exist which depend on the release of the gendisk to be synchronous, |
| 808 | * it should not be deferred. |
| 809 | * |
| 810 | * Context: can sleep |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 811 | */ |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 812 | void del_gendisk(struct gendisk *disk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | { |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 814 | struct disk_part_iter piter; |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 815 | struct block_device *part; |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 816 | |
Luis Chamberlain | e8c7d14 | 2020-06-19 20:47:25 +0000 | [diff] [blame] | 817 | might_sleep(); |
| 818 | |
Christoph Hellwig | 6b3ba97 | 2020-10-29 15:58:24 +0100 | [diff] [blame] | 819 | if (WARN_ON_ONCE(!disk->queue)) |
| 820 | return; |
| 821 | |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 822 | blk_integrity_del(disk); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 823 | disk_del_events(disk); |
| 824 | |
Jan Kara | 56c0908 | 2018-02-26 13:01:41 +0100 | [diff] [blame] | 825 | /* |
| 826 | * Block lookups of the disk until all bdevs are unhashed and the |
| 827 | * disk is marked as dead (GENHD_FL_UP cleared). |
| 828 | */ |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 829 | down_write(&bdev_lookup_sem); |
| 830 | |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 831 | /* invalidate stuff */ |
| 832 | disk_part_iter_init(&piter, disk, |
| 833 | DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE); |
| 834 | while ((part = disk_part_iter_next(&piter))) { |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 835 | invalidate_partition(part); |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 836 | delete_partition(part); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 837 | } |
| 838 | disk_part_iter_exit(&piter); |
| 839 | |
Christoph Hellwig | 71773cf | 2020-11-24 09:20:37 +0100 | [diff] [blame] | 840 | invalidate_partition(disk->part0); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 841 | set_capacity(disk, 0); |
| 842 | disk->flags &= ~GENHD_FL_UP; |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 843 | up_write(&bdev_lookup_sem); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 844 | |
Christoph Hellwig | 6b3ba97 | 2020-10-29 15:58:24 +0100 | [diff] [blame] | 845 | if (!(disk->flags & GENHD_FL_HIDDEN)) { |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 846 | sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi"); |
Christoph Hellwig | 6b3ba97 | 2020-10-29 15:58:24 +0100 | [diff] [blame] | 847 | |
Jan Kara | 90f16fd | 2017-03-08 17:48:33 +0100 | [diff] [blame] | 848 | /* |
| 849 | * Unregister bdi before releasing device numbers (as they can |
| 850 | * get reused and we'd get clashes in sysfs). |
| 851 | */ |
Christoph Hellwig | 6b3ba97 | 2020-10-29 15:58:24 +0100 | [diff] [blame] | 852 | bdi_unregister(disk->queue->backing_dev_info); |
Jan Kara | 90f16fd | 2017-03-08 17:48:33 +0100 | [diff] [blame] | 853 | } |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 854 | |
Christoph Hellwig | 6b3ba97 | 2020-10-29 15:58:24 +0100 | [diff] [blame] | 855 | blk_unregister_queue(disk); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 856 | |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 857 | kobject_put(disk->part0->bd_holder_dir); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 858 | kobject_put(disk->slave_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 860 | part_stat_set_all(disk->part0, 0); |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 861 | disk->part0->bd_stamp = 0; |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 862 | if (!sysfs_deprecated) |
| 863 | sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk))); |
Ming Lei | 25e823c | 2013-02-22 16:34:13 -0800 | [diff] [blame] | 864 | pm_runtime_set_memalloc_noio(disk_to_dev(disk), false); |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 865 | device_del(disk_to_dev(disk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } |
Tejun Heo | d2bf1b6 | 2010-12-08 20:57:36 +0100 | [diff] [blame] | 867 | EXPORT_SYMBOL(del_gendisk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
Vishal Verma | 99e6608 | 2016-01-09 08:36:51 -0800 | [diff] [blame] | 869 | /* sysfs access to bad-blocks list. */ |
| 870 | static ssize_t disk_badblocks_show(struct device *dev, |
| 871 | struct device_attribute *attr, |
| 872 | char *page) |
| 873 | { |
| 874 | struct gendisk *disk = dev_to_disk(dev); |
| 875 | |
| 876 | if (!disk->bb) |
| 877 | return sprintf(page, "\n"); |
| 878 | |
| 879 | return badblocks_show(disk->bb, page, 0); |
| 880 | } |
| 881 | |
| 882 | static ssize_t disk_badblocks_store(struct device *dev, |
| 883 | struct device_attribute *attr, |
| 884 | const char *page, size_t len) |
| 885 | { |
| 886 | struct gendisk *disk = dev_to_disk(dev); |
| 887 | |
| 888 | if (!disk->bb) |
| 889 | return -ENXIO; |
| 890 | |
| 891 | return badblocks_store(disk->bb, page, len, 0); |
| 892 | } |
| 893 | |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 894 | void blk_request_module(dev_t devt) |
Christoph Hellwig | bd8eff3 | 2020-10-29 15:58:27 +0100 | [diff] [blame] | 895 | { |
Christoph Hellwig | a160c61 | 2020-10-29 15:58:28 +0100 | [diff] [blame] | 896 | unsigned int major = MAJOR(devt); |
| 897 | struct blk_major_name **n; |
| 898 | |
| 899 | mutex_lock(&major_names_lock); |
| 900 | for (n = &major_names[major_to_index(major)]; *n; n = &(*n)->next) { |
| 901 | if ((*n)->major == major && (*n)->probe) { |
| 902 | (*n)->probe(devt); |
| 903 | mutex_unlock(&major_names_lock); |
| 904 | return; |
| 905 | } |
| 906 | } |
| 907 | mutex_unlock(&major_names_lock); |
| 908 | |
Christoph Hellwig | bd8eff3 | 2020-10-29 15:58:27 +0100 | [diff] [blame] | 909 | if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0) |
| 910 | /* Make old-style 2.4 aliases work */ |
| 911 | request_module("block-major-%d", MAJOR(devt)); |
| 912 | } |
| 913 | |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 914 | /** |
| 915 | * bdget_disk - do bdget() by gendisk and partition number |
| 916 | * @disk: gendisk of interest |
| 917 | * @partno: partition number |
| 918 | * |
| 919 | * Find partition @partno from @disk, do bdget() on it. |
| 920 | * |
| 921 | * CONTEXT: |
| 922 | * Don't care. |
| 923 | * |
| 924 | * RETURNS: |
| 925 | * Resulting block_device on success, NULL on failure. |
| 926 | */ |
Harvey Harrison | aeb3d3a | 2008-08-28 09:27:42 +0200 | [diff] [blame] | 927 | struct block_device *bdget_disk(struct gendisk *disk, int partno) |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 928 | { |
Tejun Heo | 548b10e | 2008-08-29 09:01:47 +0200 | [diff] [blame] | 929 | struct block_device *bdev = NULL; |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 930 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 931 | rcu_read_lock(); |
| 932 | bdev = __disk_get_part(disk, partno); |
| 933 | if (bdev && !bdgrab(bdev)) |
| 934 | bdev = NULL; |
| 935 | rcu_read_unlock(); |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 936 | |
Tejun Heo | 548b10e | 2008-08-29 09:01:47 +0200 | [diff] [blame] | 937 | return bdev; |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 938 | } |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 939 | |
Dave Gilbert | dd2a345 | 2007-05-09 02:33:24 -0700 | [diff] [blame] | 940 | /* |
| 941 | * print a full list of all partitions - intended for places where the root |
| 942 | * filesystem can't be mounted and thus to give the victim some idea of what |
| 943 | * went wrong |
| 944 | */ |
| 945 | void __init printk_all_partitions(void) |
| 946 | { |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 947 | struct class_dev_iter iter; |
| 948 | struct device *dev; |
| 949 | |
| 950 | class_dev_iter_init(&iter, &block_class, NULL, &disk_type); |
| 951 | while ((dev = class_dev_iter_next(&iter))) { |
| 952 | struct gendisk *disk = dev_to_disk(dev); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 953 | struct disk_part_iter piter; |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 954 | struct block_device *part; |
Tejun Heo | 1f01429 | 2008-08-25 19:47:23 +0900 | [diff] [blame] | 955 | char name_buf[BDEVNAME_SIZE]; |
| 956 | char devt_buf[BDEVT_SIZE]; |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 957 | |
| 958 | /* |
| 959 | * Don't show empty devices or things that have been |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 960 | * suppressed |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 961 | */ |
| 962 | if (get_capacity(disk) == 0 || |
| 963 | (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)) |
| 964 | continue; |
| 965 | |
| 966 | /* |
| 967 | * Note, unlike /proc/partitions, I am showing the |
| 968 | * numbers in hex - the same format as the root= |
| 969 | * option takes. |
| 970 | */ |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 971 | disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0); |
| 972 | while ((part = disk_part_iter_next(&piter))) { |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 973 | bool is_part0 = part == disk->part0; |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 974 | |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 975 | printk("%s%s %10llu %s %s", is_part0 ? "" : " ", |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 976 | bdevt_str(part->bd_dev, devt_buf), |
| 977 | bdev_nr_sectors(part) >> 1, |
| 978 | disk_name(disk, part->bd_partno, name_buf), |
| 979 | part->bd_meta_info ? |
| 980 | part->bd_meta_info->uuid : ""); |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 981 | if (is_part0) { |
Dan Williams | 52c44d9 | 2016-06-15 19:43:07 -0700 | [diff] [blame] | 982 | if (dev->parent && dev->parent->driver) |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 983 | printk(" driver: %s\n", |
Dan Williams | 52c44d9 | 2016-06-15 19:43:07 -0700 | [diff] [blame] | 984 | dev->parent->driver->name); |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 985 | else |
| 986 | printk(" (driver?)\n"); |
| 987 | } else |
| 988 | printk("\n"); |
| 989 | } |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 990 | disk_part_iter_exit(&piter); |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 991 | } |
| 992 | class_dev_iter_exit(&iter); |
Dave Gilbert | dd2a345 | 2007-05-09 02:33:24 -0700 | [diff] [blame] | 993 | } |
| 994 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | #ifdef CONFIG_PROC_FS |
| 996 | /* iterator */ |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 997 | static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos) |
Greg Kroah-Hartman | 68c4d4a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 998 | { |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 999 | loff_t skip = *pos; |
| 1000 | struct class_dev_iter *iter; |
| 1001 | struct device *dev; |
Greg Kroah-Hartman | 68c4d4a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 1002 | |
Harvey Harrison | aeb3d3a | 2008-08-28 09:27:42 +0200 | [diff] [blame] | 1003 | iter = kmalloc(sizeof(*iter), GFP_KERNEL); |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1004 | if (!iter) |
| 1005 | return ERR_PTR(-ENOMEM); |
| 1006 | |
| 1007 | seqf->private = iter; |
| 1008 | class_dev_iter_init(iter, &block_class, NULL, &disk_type); |
| 1009 | do { |
| 1010 | dev = class_dev_iter_next(iter); |
| 1011 | if (!dev) |
| 1012 | return NULL; |
| 1013 | } while (skip--); |
| 1014 | |
| 1015 | return dev_to_disk(dev); |
Greg Kroah-Hartman | 68c4d4a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 1016 | } |
| 1017 | |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1018 | static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1020 | struct device *dev; |
Greg Kroah-Hartman | 66c64af | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 1021 | |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1022 | (*pos)++; |
| 1023 | dev = class_dev_iter_next(seqf->private); |
Tejun Heo | 2ac3cee | 2008-09-03 08:53:37 +0200 | [diff] [blame] | 1024 | if (dev) |
Greg Kroah-Hartman | 68c4d4a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 1025 | return dev_to_disk(dev); |
Tejun Heo | 2ac3cee | 2008-09-03 08:53:37 +0200 | [diff] [blame] | 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | return NULL; |
| 1028 | } |
| 1029 | |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1030 | static void disk_seqf_stop(struct seq_file *seqf, void *v) |
Greg Kroah-Hartman | 27f3025 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 1031 | { |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1032 | struct class_dev_iter *iter = seqf->private; |
Greg Kroah-Hartman | 27f3025 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 1033 | |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1034 | /* stop is called even after start failed :-( */ |
| 1035 | if (iter) { |
| 1036 | class_dev_iter_exit(iter); |
| 1037 | kfree(iter); |
Vegard Nossum | 77da160 | 2016-07-29 10:40:31 +0200 | [diff] [blame] | 1038 | seqf->private = NULL; |
Kay Sievers | 5c0ef6d | 2008-08-16 14:30:30 +0200 | [diff] [blame] | 1039 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1042 | static void *show_partition_start(struct seq_file *seqf, loff_t *pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | { |
Jianpeng Ma | 0676806 | 2012-08-03 10:42:00 +0200 | [diff] [blame] | 1044 | void *p; |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1045 | |
| 1046 | p = disk_seqf_start(seqf, pos); |
Yang Zhang | b9f985b | 2010-12-17 08:58:36 +0100 | [diff] [blame] | 1047 | if (!IS_ERR_OR_NULL(p) && !*pos) |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1048 | seq_puts(seqf, "major minor #blocks name\n\n"); |
| 1049 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | } |
| 1051 | |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 1052 | static int show_partition(struct seq_file *seqf, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | { |
| 1054 | struct gendisk *sgp = v; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1055 | struct disk_part_iter piter; |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 1056 | struct block_device *part; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | char buf[BDEVNAME_SIZE]; |
| 1058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | /* Don't show non-partitionable removeable devices or empty devices */ |
Tejun Heo | d27769e | 2011-08-23 20:01:04 +0200 | [diff] [blame] | 1060 | if (!get_capacity(sgp) || (!disk_max_parts(sgp) && |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 1061 | (sgp->flags & GENHD_FL_REMOVABLE))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | return 0; |
| 1063 | if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO) |
| 1064 | return 0; |
| 1065 | |
| 1066 | /* show the full disk and all non-0 size partitions of it */ |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 1067 | disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1068 | while ((part = disk_part_iter_next(&piter))) |
Tejun Heo | 1f01429 | 2008-08-25 19:47:23 +0900 | [diff] [blame] | 1069 | seq_printf(seqf, "%4d %7d %10llu %s\n", |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 1070 | MAJOR(part->bd_dev), MINOR(part->bd_dev), |
| 1071 | bdev_nr_sectors(part) >> 1, |
| 1072 | disk_name(sgp, part->bd_partno, buf)); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1073 | disk_part_iter_exit(&piter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
| 1075 | return 0; |
| 1076 | } |
| 1077 | |
Alexey Dobriyan | f500975 | 2008-10-04 23:53:21 +0400 | [diff] [blame] | 1078 | static const struct seq_operations partitions_op = { |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1079 | .start = show_partition_start, |
| 1080 | .next = disk_seqf_next, |
| 1081 | .stop = disk_seqf_stop, |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1082 | .show = show_partition |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | }; |
| 1084 | #endif |
| 1085 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | static int __init genhd_device_init(void) |
| 1087 | { |
Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 1088 | int error; |
| 1089 | |
| 1090 | block_class.dev_kobj = sysfs_dev_block_kobj; |
| 1091 | error = class_register(&block_class); |
Roland McGrath | ee27a55 | 2008-03-11 17:13:15 -0700 | [diff] [blame] | 1092 | if (unlikely(error)) |
| 1093 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | blk_dev_init(); |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1095 | |
Zhang, Yanmin | 561ec68 | 2008-11-14 08:26:30 +0100 | [diff] [blame] | 1096 | register_blkdev(BLOCK_EXT_MAJOR, "blkext"); |
| 1097 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1098 | /* create top-level block dir */ |
Andi Kleen | e52eec1 | 2010-09-08 16:54:17 +0200 | [diff] [blame] | 1099 | if (!sysfs_deprecated) |
| 1100 | block_depr = kobject_create_and_add("block", NULL); |
Greg Kroah-Hartman | 830d3cf | 2007-11-06 10:36:58 -0800 | [diff] [blame] | 1101 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | } |
| 1103 | |
| 1104 | subsys_initcall(genhd_device_init); |
| 1105 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1106 | static ssize_t disk_range_show(struct device *dev, |
| 1107 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1109 | struct gendisk *disk = dev_to_disk(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1111 | return sprintf(buf, "%d\n", disk->minors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
Tejun Heo | 1f01429 | 2008-08-25 19:47:23 +0900 | [diff] [blame] | 1114 | static ssize_t disk_ext_range_show(struct device *dev, |
| 1115 | struct device_attribute *attr, char *buf) |
| 1116 | { |
| 1117 | struct gendisk *disk = dev_to_disk(dev); |
| 1118 | |
Tejun Heo | b5d0b9d | 2008-09-03 09:06:42 +0200 | [diff] [blame] | 1119 | return sprintf(buf, "%d\n", disk_max_parts(disk)); |
Tejun Heo | 1f01429 | 2008-08-25 19:47:23 +0900 | [diff] [blame] | 1120 | } |
| 1121 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1122 | static ssize_t disk_removable_show(struct device *dev, |
| 1123 | struct device_attribute *attr, char *buf) |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 1124 | { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1125 | struct gendisk *disk = dev_to_disk(dev); |
Kay Sievers | a7fd670 | 2005-10-01 14:49:43 +0200 | [diff] [blame] | 1126 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1127 | return sprintf(buf, "%d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0)); |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1129 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 1131 | static ssize_t disk_hidden_show(struct device *dev, |
| 1132 | struct device_attribute *attr, char *buf) |
| 1133 | { |
| 1134 | struct gendisk *disk = dev_to_disk(dev); |
| 1135 | |
| 1136 | return sprintf(buf, "%d\n", |
| 1137 | (disk->flags & GENHD_FL_HIDDEN ? 1 : 0)); |
| 1138 | } |
| 1139 | |
Kay Sievers | 1c9ce52 | 2008-06-13 09:41:00 +0200 | [diff] [blame] | 1140 | static ssize_t disk_ro_show(struct device *dev, |
| 1141 | struct device_attribute *attr, char *buf) |
| 1142 | { |
| 1143 | struct gendisk *disk = dev_to_disk(dev); |
| 1144 | |
Tejun Heo | b7db995 | 2008-08-25 19:56:10 +0900 | [diff] [blame] | 1145 | return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0); |
Kay Sievers | 1c9ce52 | 2008-06-13 09:41:00 +0200 | [diff] [blame] | 1146 | } |
| 1147 | |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1148 | ssize_t part_size_show(struct device *dev, |
| 1149 | struct device_attribute *attr, char *buf) |
| 1150 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1151 | return sprintf(buf, "%llu\n", bdev_nr_sectors(dev_to_bdev(dev))); |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1152 | } |
| 1153 | |
| 1154 | ssize_t part_stat_show(struct device *dev, |
| 1155 | struct device_attribute *attr, char *buf) |
| 1156 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1157 | struct block_device *bdev = dev_to_bdev(dev); |
| 1158 | struct request_queue *q = bdev->bd_disk->queue; |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1159 | struct disk_stats stat; |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1160 | unsigned int inflight; |
| 1161 | |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1162 | part_stat_read_all(bdev, &stat); |
Christoph Hellwig | b2f609e | 2020-05-13 12:49:33 +0200 | [diff] [blame] | 1163 | if (queue_is_mq(q)) |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1164 | inflight = blk_mq_in_flight(q, bdev); |
Christoph Hellwig | b2f609e | 2020-05-13 12:49:33 +0200 | [diff] [blame] | 1165 | else |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1166 | inflight = part_in_flight(bdev); |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1167 | |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1168 | return sprintf(buf, |
| 1169 | "%8lu %8lu %8llu %8u " |
| 1170 | "%8lu %8lu %8llu %8u " |
| 1171 | "%8u %8u %8u " |
| 1172 | "%8lu %8lu %8llu %8u " |
| 1173 | "%8lu %8u" |
| 1174 | "\n", |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1175 | stat.ios[STAT_READ], |
| 1176 | stat.merges[STAT_READ], |
| 1177 | (unsigned long long)stat.sectors[STAT_READ], |
| 1178 | (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC), |
| 1179 | stat.ios[STAT_WRITE], |
| 1180 | stat.merges[STAT_WRITE], |
| 1181 | (unsigned long long)stat.sectors[STAT_WRITE], |
| 1182 | (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC), |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1183 | inflight, |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1184 | jiffies_to_msecs(stat.io_ticks), |
Konstantin Khlebnikov | 8cd5b8f | 2020-03-25 16:07:08 +0300 | [diff] [blame] | 1185 | (unsigned int)div_u64(stat.nsecs[STAT_READ] + |
| 1186 | stat.nsecs[STAT_WRITE] + |
| 1187 | stat.nsecs[STAT_DISCARD] + |
| 1188 | stat.nsecs[STAT_FLUSH], |
| 1189 | NSEC_PER_MSEC), |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1190 | stat.ios[STAT_DISCARD], |
| 1191 | stat.merges[STAT_DISCARD], |
| 1192 | (unsigned long long)stat.sectors[STAT_DISCARD], |
| 1193 | (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC), |
| 1194 | stat.ios[STAT_FLUSH], |
| 1195 | (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC)); |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1196 | } |
| 1197 | |
| 1198 | ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr, |
| 1199 | char *buf) |
| 1200 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1201 | struct block_device *bdev = dev_to_bdev(dev); |
| 1202 | struct request_queue *q = bdev->bd_disk->queue; |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1203 | unsigned int inflight[2]; |
| 1204 | |
Christoph Hellwig | b2f609e | 2020-05-13 12:49:33 +0200 | [diff] [blame] | 1205 | if (queue_is_mq(q)) |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1206 | blk_mq_in_flight_rw(q, bdev, inflight); |
Christoph Hellwig | b2f609e | 2020-05-13 12:49:33 +0200 | [diff] [blame] | 1207 | else |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1208 | part_in_flight_rw(bdev, inflight); |
Christoph Hellwig | b2f609e | 2020-05-13 12:49:33 +0200 | [diff] [blame] | 1209 | |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1210 | return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]); |
| 1211 | } |
| 1212 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1213 | static ssize_t disk_capability_show(struct device *dev, |
| 1214 | struct device_attribute *attr, char *buf) |
Kristen Carlson Accardi | 86ce18d | 2007-05-23 13:57:38 -0700 | [diff] [blame] | 1215 | { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1216 | struct gendisk *disk = dev_to_disk(dev); |
| 1217 | |
| 1218 | return sprintf(buf, "%x\n", disk->flags); |
Kristen Carlson Accardi | 86ce18d | 2007-05-23 13:57:38 -0700 | [diff] [blame] | 1219 | } |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1220 | |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1221 | static ssize_t disk_alignment_offset_show(struct device *dev, |
| 1222 | struct device_attribute *attr, |
| 1223 | char *buf) |
| 1224 | { |
| 1225 | struct gendisk *disk = dev_to_disk(dev); |
| 1226 | |
| 1227 | return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue)); |
| 1228 | } |
| 1229 | |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 1230 | static ssize_t disk_discard_alignment_show(struct device *dev, |
| 1231 | struct device_attribute *attr, |
| 1232 | char *buf) |
| 1233 | { |
| 1234 | struct gendisk *disk = dev_to_disk(dev); |
| 1235 | |
Martin K. Petersen | dd3d145 | 2010-01-11 03:21:48 -0500 | [diff] [blame] | 1236 | return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue)); |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 1237 | } |
| 1238 | |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 1239 | static DEVICE_ATTR(range, 0444, disk_range_show, NULL); |
| 1240 | static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL); |
| 1241 | static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL); |
| 1242 | static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL); |
| 1243 | static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL); |
| 1244 | static DEVICE_ATTR(size, 0444, part_size_show, NULL); |
| 1245 | static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL); |
| 1246 | static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL); |
| 1247 | static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL); |
| 1248 | static DEVICE_ATTR(stat, 0444, part_stat_show, NULL); |
| 1249 | static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL); |
| 1250 | static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store); |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1251 | |
Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 1252 | #ifdef CONFIG_FAIL_MAKE_REQUEST |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1253 | ssize_t part_fail_show(struct device *dev, |
| 1254 | struct device_attribute *attr, char *buf) |
| 1255 | { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1256 | return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_make_it_fail); |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1257 | } |
| 1258 | |
| 1259 | ssize_t part_fail_store(struct device *dev, |
| 1260 | struct device_attribute *attr, |
| 1261 | const char *buf, size_t count) |
| 1262 | { |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1263 | int i; |
| 1264 | |
| 1265 | if (count > 0 && sscanf(buf, "%d", &i) > 0) |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1266 | dev_to_bdev(dev)->bd_make_it_fail = i; |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1267 | |
| 1268 | return count; |
| 1269 | } |
| 1270 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1271 | static struct device_attribute dev_attr_fail = |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 1272 | __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store); |
Christoph Hellwig | 3ad5cee | 2020-03-24 08:25:13 +0100 | [diff] [blame] | 1273 | #endif /* CONFIG_FAIL_MAKE_REQUEST */ |
| 1274 | |
Jens Axboe | 581d4e2 | 2008-09-14 05:56:33 -0700 | [diff] [blame] | 1275 | #ifdef CONFIG_FAIL_IO_TIMEOUT |
| 1276 | static struct device_attribute dev_attr_fail_timeout = |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 1277 | __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store); |
Jens Axboe | 581d4e2 | 2008-09-14 05:56:33 -0700 | [diff] [blame] | 1278 | #endif |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1279 | |
| 1280 | static struct attribute *disk_attrs[] = { |
| 1281 | &dev_attr_range.attr, |
Tejun Heo | 1f01429 | 2008-08-25 19:47:23 +0900 | [diff] [blame] | 1282 | &dev_attr_ext_range.attr, |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1283 | &dev_attr_removable.attr, |
Christoph Hellwig | 8ddcd65 | 2017-11-02 21:29:53 +0300 | [diff] [blame] | 1284 | &dev_attr_hidden.attr, |
Kay Sievers | 1c9ce52 | 2008-06-13 09:41:00 +0200 | [diff] [blame] | 1285 | &dev_attr_ro.attr, |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1286 | &dev_attr_size.attr, |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1287 | &dev_attr_alignment_offset.attr, |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 1288 | &dev_attr_discard_alignment.attr, |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1289 | &dev_attr_capability.attr, |
| 1290 | &dev_attr_stat.attr, |
Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 1291 | &dev_attr_inflight.attr, |
Vishal Verma | 99e6608 | 2016-01-09 08:36:51 -0800 | [diff] [blame] | 1292 | &dev_attr_badblocks.attr, |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1293 | #ifdef CONFIG_FAIL_MAKE_REQUEST |
| 1294 | &dev_attr_fail.attr, |
| 1295 | #endif |
Jens Axboe | 581d4e2 | 2008-09-14 05:56:33 -0700 | [diff] [blame] | 1296 | #ifdef CONFIG_FAIL_IO_TIMEOUT |
| 1297 | &dev_attr_fail_timeout.attr, |
| 1298 | #endif |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1299 | NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | }; |
| 1301 | |
Dan Williams | 9438b3e0 | 2017-04-27 14:46:26 -0700 | [diff] [blame] | 1302 | static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n) |
| 1303 | { |
| 1304 | struct device *dev = container_of(kobj, typeof(*dev), kobj); |
| 1305 | struct gendisk *disk = dev_to_disk(dev); |
| 1306 | |
| 1307 | if (a == &dev_attr_badblocks.attr && !disk->bb) |
| 1308 | return 0; |
| 1309 | return a->mode; |
| 1310 | } |
| 1311 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1312 | static struct attribute_group disk_attr_group = { |
| 1313 | .attrs = disk_attrs, |
Dan Williams | 9438b3e0 | 2017-04-27 14:46:26 -0700 | [diff] [blame] | 1314 | .is_visible = disk_visible, |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1315 | }; |
| 1316 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 1317 | static const struct attribute_group *disk_attr_groups[] = { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1318 | &disk_attr_group, |
| 1319 | NULL |
| 1320 | }; |
| 1321 | |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1322 | /** |
| 1323 | * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way |
| 1324 | * @disk: disk to replace part_tbl for |
| 1325 | * @new_ptbl: new part_tbl to install |
| 1326 | * |
| 1327 | * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The |
| 1328 | * original ptbl is freed using RCU callback. |
| 1329 | * |
| 1330 | * LOCKING: |
Bart Van Assche | 6d2cf6f | 2017-08-17 16:23:06 -0700 | [diff] [blame] | 1331 | * Matching bd_mutex locked or the caller is the only user of @disk. |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1332 | */ |
| 1333 | static void disk_replace_part_tbl(struct gendisk *disk, |
| 1334 | struct disk_part_tbl *new_ptbl) |
| 1335 | { |
Bart Van Assche | 6d2cf6f | 2017-08-17 16:23:06 -0700 | [diff] [blame] | 1336 | struct disk_part_tbl *old_ptbl = |
| 1337 | rcu_dereference_protected(disk->part_tbl, 1); |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1338 | |
| 1339 | rcu_assign_pointer(disk->part_tbl, new_ptbl); |
Jens Axboe | a6f2365 | 2008-10-24 12:52:42 +0200 | [diff] [blame] | 1340 | |
| 1341 | if (old_ptbl) { |
| 1342 | rcu_assign_pointer(old_ptbl->last_lookup, NULL); |
Lai Jiangshan | 57bdfbf | 2011-03-18 11:42:58 +0800 | [diff] [blame] | 1343 | kfree_rcu(old_ptbl, rcu_head); |
Jens Axboe | a6f2365 | 2008-10-24 12:52:42 +0200 | [diff] [blame] | 1344 | } |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1345 | } |
| 1346 | |
| 1347 | /** |
| 1348 | * disk_expand_part_tbl - expand disk->part_tbl |
| 1349 | * @disk: disk to expand part_tbl for |
| 1350 | * @partno: expand such that this partno can fit in |
| 1351 | * |
| 1352 | * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl |
| 1353 | * uses RCU to allow unlocked dereferencing for stats and other stuff. |
| 1354 | * |
| 1355 | * LOCKING: |
Bart Van Assche | 6d2cf6f | 2017-08-17 16:23:06 -0700 | [diff] [blame] | 1356 | * Matching bd_mutex locked or the caller is the only user of @disk. |
| 1357 | * Might sleep. |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1358 | * |
| 1359 | * RETURNS: |
| 1360 | * 0 on success, -errno on failure. |
| 1361 | */ |
| 1362 | int disk_expand_part_tbl(struct gendisk *disk, int partno) |
| 1363 | { |
Bart Van Assche | 6d2cf6f | 2017-08-17 16:23:06 -0700 | [diff] [blame] | 1364 | struct disk_part_tbl *old_ptbl = |
| 1365 | rcu_dereference_protected(disk->part_tbl, 1); |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1366 | struct disk_part_tbl *new_ptbl; |
| 1367 | int len = old_ptbl ? old_ptbl->len : 0; |
Jens Axboe | 5fabcb4 | 2014-11-19 13:06:22 -0700 | [diff] [blame] | 1368 | int i, target; |
Jens Axboe | 5fabcb4 | 2014-11-19 13:06:22 -0700 | [diff] [blame] | 1369 | |
| 1370 | /* |
| 1371 | * check for int overflow, since we can get here from blkpg_ioctl() |
| 1372 | * with a user passed 'partno'. |
| 1373 | */ |
| 1374 | target = partno + 1; |
| 1375 | if (target < 0) |
| 1376 | return -EINVAL; |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1377 | |
| 1378 | /* disk_max_parts() is zero during initialization, ignore if so */ |
| 1379 | if (disk_max_parts(disk) && target > disk_max_parts(disk)) |
| 1380 | return -EINVAL; |
| 1381 | |
| 1382 | if (target <= len) |
| 1383 | return 0; |
| 1384 | |
Gustavo A. R. Silva | 78b90a2 | 2019-05-31 13:47:54 -0500 | [diff] [blame] | 1385 | new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL, |
| 1386 | disk->node_id); |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1387 | if (!new_ptbl) |
| 1388 | return -ENOMEM; |
| 1389 | |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1390 | new_ptbl->len = target; |
| 1391 | |
| 1392 | for (i = 0; i < len; i++) |
| 1393 | rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]); |
| 1394 | |
| 1395 | disk_replace_part_tbl(disk, new_ptbl); |
| 1396 | return 0; |
| 1397 | } |
| 1398 | |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 1399 | /** |
| 1400 | * disk_release - releases all allocated resources of the gendisk |
| 1401 | * @dev: the device representing this disk |
| 1402 | * |
| 1403 | * This function releases all allocated resources of the gendisk. |
| 1404 | * |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 1405 | * Drivers which used __device_add_disk() have a gendisk with a request_queue |
| 1406 | * assigned. Since the request_queue sits on top of the gendisk for these |
| 1407 | * drivers we also call blk_put_queue() for them, and we expect the |
| 1408 | * request_queue refcount to reach 0 at this point, and so the request_queue |
| 1409 | * will also be freed prior to the disk. |
Luis Chamberlain | e8c7d14 | 2020-06-19 20:47:25 +0000 | [diff] [blame] | 1410 | * |
| 1411 | * Context: can sleep |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 1412 | */ |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1413 | static void disk_release(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1415 | struct gendisk *disk = dev_to_disk(dev); |
| 1416 | |
Luis Chamberlain | e8c7d14 | 2020-06-19 20:47:25 +0000 | [diff] [blame] | 1417 | might_sleep(); |
| 1418 | |
Keith Busch | 2da7809 | 2014-08-26 09:05:36 -0600 | [diff] [blame] | 1419 | blk_free_devt(dev->devt); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1420 | disk_release_events(disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | kfree(disk->random); |
Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 1422 | disk_replace_part_tbl(disk, NULL); |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 1423 | bdput(disk->part0); |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 1424 | if (disk->queue) |
| 1425 | blk_put_queue(disk->queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | kfree(disk); |
| 1427 | } |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1428 | struct class block_class = { |
| 1429 | .name = "block", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | }; |
| 1431 | |
Kay Sievers | 3c2670e | 2013-04-06 09:56:00 -0700 | [diff] [blame] | 1432 | static char *block_devnode(struct device *dev, umode_t *mode, |
Greg Kroah-Hartman | 4e4098a | 2013-04-11 11:43:29 -0700 | [diff] [blame] | 1433 | kuid_t *uid, kgid_t *gid) |
Kay Sievers | b03f38b | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1434 | { |
| 1435 | struct gendisk *disk = dev_to_disk(dev); |
| 1436 | |
Christoph Hellwig | 348e114 | 2020-03-27 09:07:17 +0100 | [diff] [blame] | 1437 | if (disk->fops->devnode) |
| 1438 | return disk->fops->devnode(disk, mode); |
Kay Sievers | b03f38b | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 1439 | return NULL; |
| 1440 | } |
| 1441 | |
Boris Burkov | ef45fe4 | 2020-06-01 13:12:05 -0700 | [diff] [blame] | 1442 | const struct device_type disk_type = { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1443 | .name = "disk", |
| 1444 | .groups = disk_attr_groups, |
| 1445 | .release = disk_release, |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 1446 | .devnode = block_devnode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1447 | }; |
| 1448 | |
Randy Dunlap | a6e2ba8 | 2008-05-23 09:44:11 -0700 | [diff] [blame] | 1449 | #ifdef CONFIG_PROC_FS |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 1450 | /* |
| 1451 | * aggregate disk stat collector. Uses the same stats that the sysfs |
| 1452 | * entries do, above, but makes them available through one seq_file. |
| 1453 | * |
| 1454 | * The output looks suspiciously like /proc/partitions with a bunch of |
| 1455 | * extra fields. |
| 1456 | */ |
| 1457 | static int diskstats_show(struct seq_file *seqf, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | { |
| 1459 | struct gendisk *gp = v; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1460 | struct disk_part_iter piter; |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 1461 | struct block_device *hd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | char buf[BDEVNAME_SIZE]; |
Mikulas Patocka | e016b78 | 2018-12-06 11:41:21 -0500 | [diff] [blame] | 1463 | unsigned int inflight; |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1464 | struct disk_stats stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | |
| 1466 | /* |
Tejun Heo | ed9e198 | 2008-08-25 19:56:05 +0900 | [diff] [blame] | 1467 | if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next) |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 1468 | seq_puts(seqf, "major minor name" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | " rio rmerge rsect ruse wio wmerge " |
| 1470 | "wsect wuse running use aveq" |
| 1471 | "\n\n"); |
| 1472 | */ |
Wanlong Gao | 9f5e486 | 2011-06-13 10:45:43 +0200 | [diff] [blame] | 1473 | |
Tejun Heo | 71982a4 | 2009-04-17 08:34:48 +0200 | [diff] [blame] | 1474 | disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1475 | while ((hd = disk_part_iter_next(&piter))) { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1476 | part_stat_read_all(hd, &stat); |
Christoph Hellwig | b2f609e | 2020-05-13 12:49:33 +0200 | [diff] [blame] | 1477 | if (queue_is_mq(gp->queue)) |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 1478 | inflight = blk_mq_in_flight(gp->queue, hd); |
Christoph Hellwig | b2f609e | 2020-05-13 12:49:33 +0200 | [diff] [blame] | 1479 | else |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 1480 | inflight = part_in_flight(hd); |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1481 | |
Michael Callahan | bdca3c8 | 2018-07-18 04:47:40 -0700 | [diff] [blame] | 1482 | seq_printf(seqf, "%4d %7d %s " |
| 1483 | "%lu %lu %lu %u " |
| 1484 | "%lu %lu %lu %u " |
| 1485 | "%u %u %u " |
Konstantin Khlebnikov | b686631 | 2019-11-21 13:40:26 +0300 | [diff] [blame] | 1486 | "%lu %lu %lu %u " |
| 1487 | "%lu %u" |
| 1488 | "\n", |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 1489 | MAJOR(hd->bd_dev), MINOR(hd->bd_dev), |
| 1490 | disk_name(gp, hd->bd_partno, buf), |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1491 | stat.ios[STAT_READ], |
| 1492 | stat.merges[STAT_READ], |
| 1493 | stat.sectors[STAT_READ], |
| 1494 | (unsigned int)div_u64(stat.nsecs[STAT_READ], |
| 1495 | NSEC_PER_MSEC), |
| 1496 | stat.ios[STAT_WRITE], |
| 1497 | stat.merges[STAT_WRITE], |
| 1498 | stat.sectors[STAT_WRITE], |
| 1499 | (unsigned int)div_u64(stat.nsecs[STAT_WRITE], |
| 1500 | NSEC_PER_MSEC), |
Mikulas Patocka | e016b78 | 2018-12-06 11:41:21 -0500 | [diff] [blame] | 1501 | inflight, |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1502 | jiffies_to_msecs(stat.io_ticks), |
Konstantin Khlebnikov | 8cd5b8f | 2020-03-25 16:07:08 +0300 | [diff] [blame] | 1503 | (unsigned int)div_u64(stat.nsecs[STAT_READ] + |
| 1504 | stat.nsecs[STAT_WRITE] + |
| 1505 | stat.nsecs[STAT_DISCARD] + |
| 1506 | stat.nsecs[STAT_FLUSH], |
| 1507 | NSEC_PER_MSEC), |
Konstantin Khlebnikov | ea18e0f | 2020-03-25 16:07:06 +0300 | [diff] [blame] | 1508 | stat.ios[STAT_DISCARD], |
| 1509 | stat.merges[STAT_DISCARD], |
| 1510 | stat.sectors[STAT_DISCARD], |
| 1511 | (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], |
| 1512 | NSEC_PER_MSEC), |
| 1513 | stat.ios[STAT_FLUSH], |
| 1514 | (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], |
| 1515 | NSEC_PER_MSEC) |
Jerome Marchand | 28f39d5 | 2008-02-08 11:04:56 +0100 | [diff] [blame] | 1516 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | } |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1518 | disk_part_iter_exit(&piter); |
Wanlong Gao | 9f5e486 | 2011-06-13 10:45:43 +0200 | [diff] [blame] | 1519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | return 0; |
| 1521 | } |
| 1522 | |
Alexey Dobriyan | 31d85ab | 2008-10-06 12:55:38 +0400 | [diff] [blame] | 1523 | static const struct seq_operations diskstats_op = { |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1524 | .start = disk_seqf_start, |
| 1525 | .next = disk_seqf_next, |
| 1526 | .stop = disk_seqf_stop, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | .show = diskstats_show |
| 1528 | }; |
Alexey Dobriyan | f500975 | 2008-10-04 23:53:21 +0400 | [diff] [blame] | 1529 | |
| 1530 | static int __init proc_genhd_init(void) |
| 1531 | { |
Christoph Hellwig | fddda2b | 2018-04-13 19:44:18 +0200 | [diff] [blame] | 1532 | proc_create_seq("diskstats", 0, NULL, &diskstats_op); |
| 1533 | proc_create_seq("partitions", 0, NULL, &partitions_op); |
Alexey Dobriyan | f500975 | 2008-10-04 23:53:21 +0400 | [diff] [blame] | 1534 | return 0; |
| 1535 | } |
| 1536 | module_init(proc_genhd_init); |
Randy Dunlap | a6e2ba8 | 2008-05-23 09:44:11 -0700 | [diff] [blame] | 1537 | #endif /* CONFIG_PROC_FS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 1539 | dev_t blk_lookup_devt(const char *name, int partno) |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1540 | { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1541 | dev_t devt = MKDEV(0, 0); |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1542 | struct class_dev_iter iter; |
| 1543 | struct device *dev; |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1544 | |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1545 | class_dev_iter_init(&iter, &block_class, NULL, &disk_type); |
| 1546 | while ((dev = class_dev_iter_next(&iter))) { |
| 1547 | struct gendisk *disk = dev_to_disk(dev); |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1548 | struct block_device *part; |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1549 | |
Kay Sievers | 3ada8b7 | 2009-01-06 10:44:43 -0800 | [diff] [blame] | 1550 | if (strcmp(dev_name(dev), name)) |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 1551 | continue; |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 1552 | |
Neil Brown | 41b8c85 | 2009-02-18 10:33:59 +0100 | [diff] [blame] | 1553 | if (partno < disk->minors) { |
| 1554 | /* We need to return the right devno, even |
| 1555 | * if the partition doesn't exist yet. |
| 1556 | */ |
| 1557 | devt = MKDEV(MAJOR(dev->devt), |
| 1558 | MINOR(dev->devt) + partno); |
| 1559 | break; |
| 1560 | } |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1561 | part = bdget_disk(disk, partno); |
Tejun Heo | 2bbedcb | 2008-08-29 11:41:51 +0200 | [diff] [blame] | 1562 | if (part) { |
Christoph Hellwig | 0d02129 | 2020-11-27 16:43:51 +0100 | [diff] [blame] | 1563 | devt = part->bd_dev; |
| 1564 | bdput(part); |
Tejun Heo | 548b10e | 2008-08-29 09:01:47 +0200 | [diff] [blame] | 1565 | break; |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1566 | } |
Kay Sievers | 5c0ef6d | 2008-08-16 14:30:30 +0200 | [diff] [blame] | 1567 | } |
Tejun Heo | def4e38 | 2008-09-03 08:57:12 +0200 | [diff] [blame] | 1568 | class_dev_iter_exit(&iter); |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1569 | return devt; |
| 1570 | } |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1571 | |
Byungchul Park | e319e1f | 2017-10-25 17:56:05 +0900 | [diff] [blame] | 1572 | struct gendisk *__alloc_disk_node(int minors, int node_id) |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1573 | { |
| 1574 | struct gendisk *disk; |
Bart Van Assche | 6d2cf6f | 2017-08-17 16:23:06 -0700 | [diff] [blame] | 1575 | struct disk_part_tbl *ptbl; |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1576 | |
Christoph Hellwig | de65b01 | 2017-08-23 19:10:29 +0200 | [diff] [blame] | 1577 | if (minors > DISK_MAX_PARTS) { |
| 1578 | printk(KERN_ERR |
Randy Dunlap | 7fb5262 | 2017-11-18 17:43:38 -0800 | [diff] [blame] | 1579 | "block: can't allocate more than %d partitions\n", |
Christoph Hellwig | de65b01 | 2017-08-23 19:10:29 +0200 | [diff] [blame] | 1580 | DISK_MAX_PARTS); |
| 1581 | minors = DISK_MAX_PARTS; |
| 1582 | } |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1583 | |
Joe Perches | c1b511e | 2013-08-29 15:21:42 -0700 | [diff] [blame] | 1584 | disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id); |
Christoph Hellwig | f93af2a | 2020-08-31 20:02:37 +0200 | [diff] [blame] | 1585 | if (!disk) |
| 1586 | return NULL; |
Jens Axboe | 6c23a96 | 2011-01-07 08:43:37 +0100 | [diff] [blame] | 1587 | |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 1588 | disk->part0 = bdev_alloc(disk, 0); |
| 1589 | if (!disk->part0) |
Christoph Hellwig | f93af2a | 2020-08-31 20:02:37 +0200 | [diff] [blame] | 1590 | goto out_free_disk; |
Tejun Heo | b5d0b9d | 2008-09-03 09:06:42 +0200 | [diff] [blame] | 1591 | |
Christoph Hellwig | f93af2a | 2020-08-31 20:02:37 +0200 | [diff] [blame] | 1592 | disk->node_id = node_id; |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 1593 | if (disk_expand_part_tbl(disk, 0)) |
Christoph Hellwig | 15e3d2c | 2020-11-24 09:34:00 +0100 | [diff] [blame] | 1594 | goto out_bdput; |
Christoph Hellwig | f93af2a | 2020-08-31 20:02:37 +0200 | [diff] [blame] | 1595 | |
| 1596 | ptbl = rcu_dereference_protected(disk->part_tbl, 1); |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 1597 | rcu_assign_pointer(ptbl->part[0], disk->part0); |
Christoph Hellwig | f93af2a | 2020-08-31 20:02:37 +0200 | [diff] [blame] | 1598 | |
| 1599 | disk->minors = minors; |
| 1600 | rand_initialize_disk(disk); |
| 1601 | disk_to_dev(disk)->class = &block_class; |
| 1602 | disk_to_dev(disk)->type = &disk_type; |
| 1603 | device_initialize(disk_to_dev(disk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | return disk; |
Christoph Hellwig | f93af2a | 2020-08-31 20:02:37 +0200 | [diff] [blame] | 1605 | |
Christoph Hellwig | 22ae8ce | 2020-11-26 09:23:26 +0100 | [diff] [blame] | 1606 | out_bdput: |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 1607 | bdput(disk->part0); |
Christoph Hellwig | f93af2a | 2020-08-31 20:02:37 +0200 | [diff] [blame] | 1608 | out_free_disk: |
| 1609 | kfree(disk); |
| 1610 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | } |
Byungchul Park | e319e1f | 2017-10-25 17:56:05 +0900 | [diff] [blame] | 1612 | EXPORT_SYMBOL(__alloc_disk_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 1614 | /** |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 1615 | * put_disk - decrements the gendisk refcount |
Randy Dunlap | 0d20dcc | 2020-07-30 18:42:30 -0700 | [diff] [blame] | 1616 | * @disk: the struct gendisk to decrement the refcount for |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 1617 | * |
| 1618 | * This decrements the refcount for the struct gendisk. When this reaches 0 |
| 1619 | * we'll have disk_release() called. |
Luis Chamberlain | e8c7d14 | 2020-06-19 20:47:25 +0000 | [diff] [blame] | 1620 | * |
| 1621 | * Context: Any context, but the last reference must not be dropped from |
| 1622 | * atomic context. |
Luis Chamberlain | b5bd357 | 2020-06-19 20:47:23 +0000 | [diff] [blame] | 1623 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | void put_disk(struct gendisk *disk) |
| 1625 | { |
| 1626 | if (disk) |
Christoph Hellwig | efdc41c | 2020-11-10 07:25:37 +0100 | [diff] [blame] | 1627 | put_device(disk_to_dev(disk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | EXPORT_SYMBOL(put_disk); |
| 1630 | |
Hannes Reinecke | e3264a4 | 2009-07-28 09:13:13 +0200 | [diff] [blame] | 1631 | static void set_disk_ro_uevent(struct gendisk *gd, int ro) |
| 1632 | { |
| 1633 | char event[] = "DISK_RO=1"; |
| 1634 | char *envp[] = { event, NULL }; |
| 1635 | |
| 1636 | if (!ro) |
| 1637 | event[8] = '0'; |
| 1638 | kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp); |
| 1639 | } |
| 1640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | void set_disk_ro(struct gendisk *disk, int flag) |
| 1642 | { |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1643 | struct disk_part_iter piter; |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 1644 | struct block_device *part; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1645 | |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 1646 | if (disk->part0->bd_read_only != flag) { |
Hannes Reinecke | e3264a4 | 2009-07-28 09:13:13 +0200 | [diff] [blame] | 1647 | set_disk_ro_uevent(disk, flag); |
Christoph Hellwig | cb8432d | 2020-11-26 18:47:17 +0100 | [diff] [blame] | 1648 | disk->part0->bd_read_only = flag; |
Hannes Reinecke | e3264a4 | 2009-07-28 09:13:13 +0200 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1652 | while ((part = disk_part_iter_next(&piter))) |
Christoph Hellwig | ad1eaa5 | 2020-11-24 09:52:59 +0100 | [diff] [blame] | 1653 | part->bd_read_only = flag; |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1654 | disk_part_iter_exit(&piter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | } |
| 1656 | |
| 1657 | EXPORT_SYMBOL(set_disk_ro); |
| 1658 | |
| 1659 | int bdev_read_only(struct block_device *bdev) |
| 1660 | { |
| 1661 | if (!bdev) |
| 1662 | return 0; |
Christoph Hellwig | 83950d3 | 2020-11-23 16:36:02 +0100 | [diff] [blame] | 1663 | return bdev->bd_read_only; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | } |
| 1665 | |
| 1666 | EXPORT_SYMBOL(bdev_read_only); |
| 1667 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1668 | /* |
| 1669 | * Disk events - monitor disk events like media change and eject request. |
| 1670 | */ |
| 1671 | struct disk_events { |
| 1672 | struct list_head node; /* all disk_event's */ |
| 1673 | struct gendisk *disk; /* the associated disk */ |
| 1674 | spinlock_t lock; |
| 1675 | |
Tejun Heo | fdd514e | 2011-06-09 20:43:59 +0200 | [diff] [blame] | 1676 | struct mutex block_mutex; /* protects blocking */ |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1677 | int block; /* event blocking depth */ |
| 1678 | unsigned int pending; /* events already sent out */ |
| 1679 | unsigned int clearing; /* events being cleared */ |
| 1680 | |
| 1681 | long poll_msecs; /* interval, -1 for default */ |
| 1682 | struct delayed_work dwork; |
| 1683 | }; |
| 1684 | |
| 1685 | static const char *disk_events_strs[] = { |
| 1686 | [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change", |
| 1687 | [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request", |
| 1688 | }; |
| 1689 | |
| 1690 | static char *disk_uevents[] = { |
| 1691 | [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1", |
| 1692 | [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1", |
| 1693 | }; |
| 1694 | |
| 1695 | /* list of all disk_events */ |
| 1696 | static DEFINE_MUTEX(disk_events_mutex); |
| 1697 | static LIST_HEAD(disk_events); |
| 1698 | |
| 1699 | /* disable in-kernel polling by default */ |
Wei Tang | 1fe8f34 | 2015-11-24 09:58:46 +0800 | [diff] [blame] | 1700 | static unsigned long disk_events_dfl_poll_msecs; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1701 | |
| 1702 | static unsigned long disk_events_poll_jiffies(struct gendisk *disk) |
| 1703 | { |
| 1704 | struct disk_events *ev = disk->ev; |
| 1705 | long intv_msecs = 0; |
| 1706 | |
| 1707 | /* |
| 1708 | * If device-specific poll interval is set, always use it. If |
Martin Wilck | 673387a | 2019-03-27 14:51:01 +0100 | [diff] [blame] | 1709 | * the default is being used, poll if the POLL flag is set. |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1710 | */ |
| 1711 | if (ev->poll_msecs >= 0) |
| 1712 | intv_msecs = ev->poll_msecs; |
Martin Wilck | c92e2f0 | 2019-03-27 14:51:02 +0100 | [diff] [blame] | 1713 | else if (disk->event_flags & DISK_EVENT_FLAG_POLL) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1714 | intv_msecs = disk_events_dfl_poll_msecs; |
| 1715 | |
| 1716 | return msecs_to_jiffies(intv_msecs); |
| 1717 | } |
| 1718 | |
Tejun Heo | c3af54a | 2011-06-09 20:43:55 +0200 | [diff] [blame] | 1719 | /** |
| 1720 | * disk_block_events - block and flush disk event checking |
| 1721 | * @disk: disk to block events for |
| 1722 | * |
| 1723 | * On return from this function, it is guaranteed that event checking |
| 1724 | * isn't in progress and won't happen until unblocked by |
| 1725 | * disk_unblock_events(). Events blocking is counted and the actual |
| 1726 | * unblocking happens after the matching number of unblocks are done. |
| 1727 | * |
| 1728 | * Note that this intentionally does not block event checking from |
| 1729 | * disk_clear_events(). |
| 1730 | * |
| 1731 | * CONTEXT: |
| 1732 | * Might sleep. |
| 1733 | */ |
| 1734 | void disk_block_events(struct gendisk *disk) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1735 | { |
| 1736 | struct disk_events *ev = disk->ev; |
| 1737 | unsigned long flags; |
| 1738 | bool cancel; |
| 1739 | |
Tejun Heo | c3af54a | 2011-06-09 20:43:55 +0200 | [diff] [blame] | 1740 | if (!ev) |
| 1741 | return; |
| 1742 | |
Tejun Heo | fdd514e | 2011-06-09 20:43:59 +0200 | [diff] [blame] | 1743 | /* |
| 1744 | * Outer mutex ensures that the first blocker completes canceling |
| 1745 | * the event work before further blockers are allowed to finish. |
| 1746 | */ |
| 1747 | mutex_lock(&ev->block_mutex); |
| 1748 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1749 | spin_lock_irqsave(&ev->lock, flags); |
| 1750 | cancel = !ev->block++; |
| 1751 | spin_unlock_irqrestore(&ev->lock, flags); |
| 1752 | |
Tejun Heo | c3af54a | 2011-06-09 20:43:55 +0200 | [diff] [blame] | 1753 | if (cancel) |
| 1754 | cancel_delayed_work_sync(&disk->ev->dwork); |
Tejun Heo | fdd514e | 2011-06-09 20:43:59 +0200 | [diff] [blame] | 1755 | |
| 1756 | mutex_unlock(&ev->block_mutex); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1757 | } |
| 1758 | |
| 1759 | static void __disk_unblock_events(struct gendisk *disk, bool check_now) |
| 1760 | { |
| 1761 | struct disk_events *ev = disk->ev; |
| 1762 | unsigned long intv; |
| 1763 | unsigned long flags; |
| 1764 | |
| 1765 | spin_lock_irqsave(&ev->lock, flags); |
| 1766 | |
| 1767 | if (WARN_ON_ONCE(ev->block <= 0)) |
| 1768 | goto out_unlock; |
| 1769 | |
| 1770 | if (--ev->block) |
| 1771 | goto out_unlock; |
| 1772 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1773 | intv = disk_events_poll_jiffies(disk); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1774 | if (check_now) |
Viresh Kumar | 695588f | 2013-04-24 17:12:56 +0530 | [diff] [blame] | 1775 | queue_delayed_work(system_freezable_power_efficient_wq, |
| 1776 | &ev->dwork, 0); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1777 | else if (intv) |
Viresh Kumar | 695588f | 2013-04-24 17:12:56 +0530 | [diff] [blame] | 1778 | queue_delayed_work(system_freezable_power_efficient_wq, |
| 1779 | &ev->dwork, intv); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1780 | out_unlock: |
| 1781 | spin_unlock_irqrestore(&ev->lock, flags); |
| 1782 | } |
| 1783 | |
| 1784 | /** |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1785 | * disk_unblock_events - unblock disk event checking |
| 1786 | * @disk: disk to unblock events for |
| 1787 | * |
| 1788 | * Undo disk_block_events(). When the block count reaches zero, it |
| 1789 | * starts events polling if configured. |
| 1790 | * |
| 1791 | * CONTEXT: |
| 1792 | * Don't care. Safe to call from irq context. |
| 1793 | */ |
| 1794 | void disk_unblock_events(struct gendisk *disk) |
| 1795 | { |
| 1796 | if (disk->ev) |
Tejun Heo | facc31d | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1797 | __disk_unblock_events(disk, false); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1798 | } |
| 1799 | |
| 1800 | /** |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1801 | * disk_flush_events - schedule immediate event checking and flushing |
| 1802 | * @disk: disk to check and flush events for |
| 1803 | * @mask: events to flush |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1804 | * |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1805 | * Schedule immediate event checking on @disk if not blocked. Events in |
| 1806 | * @mask are scheduled to be cleared from the driver. Note that this |
| 1807 | * doesn't clear the events from @disk->ev. |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1808 | * |
| 1809 | * CONTEXT: |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1810 | * If @mask is non-zero must be called with bdev->bd_mutex held. |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1811 | */ |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1812 | void disk_flush_events(struct gendisk *disk, unsigned int mask) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1813 | { |
Tejun Heo | a9dce2a | 2011-06-09 20:43:54 +0200 | [diff] [blame] | 1814 | struct disk_events *ev = disk->ev; |
Tejun Heo | a9dce2a | 2011-06-09 20:43:54 +0200 | [diff] [blame] | 1815 | |
| 1816 | if (!ev) |
| 1817 | return; |
| 1818 | |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1819 | spin_lock_irq(&ev->lock); |
| 1820 | ev->clearing |= mask; |
Tejun Heo | 41f63c5 | 2012-08-03 10:30:47 -0700 | [diff] [blame] | 1821 | if (!ev->block) |
Viresh Kumar | 695588f | 2013-04-24 17:12:56 +0530 | [diff] [blame] | 1822 | mod_delayed_work(system_freezable_power_efficient_wq, |
| 1823 | &ev->dwork, 0); |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1824 | spin_unlock_irq(&ev->lock); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1825 | } |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1826 | |
| 1827 | /** |
| 1828 | * disk_clear_events - synchronously check, clear and return pending events |
| 1829 | * @disk: disk to fetch and clear events from |
Masanari Iida | da3dae5 | 2014-09-09 01:27:23 +0900 | [diff] [blame] | 1830 | * @mask: mask of events to be fetched and cleared |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1831 | * |
| 1832 | * Disk events are synchronously checked and pending events in @mask |
| 1833 | * are cleared and returned. This ignores the block count. |
| 1834 | * |
| 1835 | * CONTEXT: |
| 1836 | * Might sleep. |
| 1837 | */ |
Christoph Hellwig | 95f6f3a | 2020-09-08 16:53:29 +0200 | [diff] [blame] | 1838 | static unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1839 | { |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1840 | struct disk_events *ev = disk->ev; |
| 1841 | unsigned int pending; |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1842 | unsigned int clearing = mask; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1843 | |
Christoph Hellwig | a564e23 | 2020-07-08 14:25:41 +0200 | [diff] [blame] | 1844 | if (!ev) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1845 | return 0; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1846 | |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1847 | disk_block_events(disk); |
| 1848 | |
| 1849 | /* |
| 1850 | * store the union of mask and ev->clearing on the stack so that the |
| 1851 | * race with disk_flush_events does not cause ambiguity (ev->clearing |
| 1852 | * can still be modified even if events are blocked). |
| 1853 | */ |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1854 | spin_lock_irq(&ev->lock); |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1855 | clearing |= ev->clearing; |
| 1856 | ev->clearing = 0; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1857 | spin_unlock_irq(&ev->lock); |
| 1858 | |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1859 | disk_check_events(ev, &clearing); |
Derek Basehore | aea24a8 | 2012-12-18 12:27:18 -0800 | [diff] [blame] | 1860 | /* |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1861 | * if ev->clearing is not 0, the disk_flush_events got called in the |
| 1862 | * middle of this function, so we want to run the workfn without delay. |
Derek Basehore | aea24a8 | 2012-12-18 12:27:18 -0800 | [diff] [blame] | 1863 | */ |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1864 | __disk_unblock_events(disk, ev->clearing ? true : false); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1865 | |
| 1866 | /* then, fetch and clear pending events */ |
| 1867 | spin_lock_irq(&ev->lock); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1868 | pending = ev->pending & mask; |
| 1869 | ev->pending &= ~mask; |
| 1870 | spin_unlock_irq(&ev->lock); |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1871 | WARN_ON_ONCE(clearing & mask); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1872 | |
| 1873 | return pending; |
| 1874 | } |
| 1875 | |
Christoph Hellwig | 95f6f3a | 2020-09-08 16:53:29 +0200 | [diff] [blame] | 1876 | /** |
| 1877 | * bdev_check_media_change - check if a removable media has been changed |
| 1878 | * @bdev: block device to check |
| 1879 | * |
| 1880 | * Check whether a removable media has been changed, and attempt to free all |
| 1881 | * dentries and inodes and invalidates all block device page cache entries in |
| 1882 | * that case. |
| 1883 | * |
| 1884 | * Returns %true if the block device changed, or %false if not. |
| 1885 | */ |
| 1886 | bool bdev_check_media_change(struct block_device *bdev) |
| 1887 | { |
| 1888 | unsigned int events; |
| 1889 | |
| 1890 | events = disk_clear_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE | |
| 1891 | DISK_EVENT_EJECT_REQUEST); |
| 1892 | if (!(events & DISK_EVENT_MEDIA_CHANGE)) |
| 1893 | return false; |
| 1894 | |
| 1895 | if (__invalidate_device(bdev, true)) |
| 1896 | pr_warn("VFS: busy inodes on changed media %s\n", |
| 1897 | bdev->bd_disk->disk_name); |
Christoph Hellwig | 38430f0 | 2020-09-21 09:19:45 +0200 | [diff] [blame] | 1898 | set_bit(GD_NEED_PART_SCAN, &bdev->bd_disk->state); |
Christoph Hellwig | 95f6f3a | 2020-09-08 16:53:29 +0200 | [diff] [blame] | 1899 | return true; |
| 1900 | } |
| 1901 | EXPORT_SYMBOL(bdev_check_media_change); |
| 1902 | |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1903 | /* |
| 1904 | * Separate this part out so that a different pointer for clearing_ptr can be |
| 1905 | * passed in for disk_clear_events. |
| 1906 | */ |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1907 | static void disk_events_workfn(struct work_struct *work) |
| 1908 | { |
| 1909 | struct delayed_work *dwork = to_delayed_work(work); |
| 1910 | struct disk_events *ev = container_of(dwork, struct disk_events, dwork); |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1911 | |
| 1912 | disk_check_events(ev, &ev->clearing); |
| 1913 | } |
| 1914 | |
| 1915 | static void disk_check_events(struct disk_events *ev, |
| 1916 | unsigned int *clearing_ptr) |
| 1917 | { |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1918 | struct gendisk *disk = ev->disk; |
| 1919 | char *envp[ARRAY_SIZE(disk_uevents) + 1] = { }; |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1920 | unsigned int clearing = *clearing_ptr; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1921 | unsigned int events; |
| 1922 | unsigned long intv; |
| 1923 | int nr_events = 0, i; |
| 1924 | |
| 1925 | /* check events */ |
| 1926 | events = disk->fops->check_events(disk, clearing); |
| 1927 | |
| 1928 | /* accumulate pending events and schedule next poll if necessary */ |
| 1929 | spin_lock_irq(&ev->lock); |
| 1930 | |
| 1931 | events &= ~ev->pending; |
| 1932 | ev->pending |= events; |
Derek Basehore | 12c2bdb | 2012-12-18 12:27:20 -0800 | [diff] [blame] | 1933 | *clearing_ptr &= ~clearing; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1934 | |
| 1935 | intv = disk_events_poll_jiffies(disk); |
| 1936 | if (!ev->block && intv) |
Viresh Kumar | 695588f | 2013-04-24 17:12:56 +0530 | [diff] [blame] | 1937 | queue_delayed_work(system_freezable_power_efficient_wq, |
| 1938 | &ev->dwork, intv); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1939 | |
| 1940 | spin_unlock_irq(&ev->lock); |
| 1941 | |
Tejun Heo | 7c88a16 | 2011-04-21 19:43:58 +0200 | [diff] [blame] | 1942 | /* |
| 1943 | * Tell userland about new events. Only the events listed in |
Martin Wilck | c92e2f0 | 2019-03-27 14:51:02 +0100 | [diff] [blame] | 1944 | * @disk->events are reported, and only if DISK_EVENT_FLAG_UEVENT |
| 1945 | * is set. Otherwise, events are processed internally but never |
| 1946 | * get reported to userland. |
Tejun Heo | 7c88a16 | 2011-04-21 19:43:58 +0200 | [diff] [blame] | 1947 | */ |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1948 | for (i = 0; i < ARRAY_SIZE(disk_uevents); i++) |
Martin Wilck | c92e2f0 | 2019-03-27 14:51:02 +0100 | [diff] [blame] | 1949 | if ((events & disk->events & (1 << i)) && |
| 1950 | (disk->event_flags & DISK_EVENT_FLAG_UEVENT)) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1951 | envp[nr_events++] = disk_uevents[i]; |
| 1952 | |
| 1953 | if (nr_events) |
| 1954 | kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp); |
| 1955 | } |
| 1956 | |
| 1957 | /* |
| 1958 | * A disk events enabled device has the following sysfs nodes under |
| 1959 | * its /sys/block/X/ directory. |
| 1960 | * |
| 1961 | * events : list of all supported events |
| 1962 | * events_async : list of events which can be detected w/o polling |
Martin Wilck | 673387a | 2019-03-27 14:51:01 +0100 | [diff] [blame] | 1963 | * (always empty, only for backwards compatibility) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1964 | * events_poll_msecs : polling interval, 0: disable, -1: system default |
| 1965 | */ |
| 1966 | static ssize_t __disk_events_show(unsigned int events, char *buf) |
| 1967 | { |
| 1968 | const char *delim = ""; |
| 1969 | ssize_t pos = 0; |
| 1970 | int i; |
| 1971 | |
| 1972 | for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++) |
| 1973 | if (events & (1 << i)) { |
| 1974 | pos += sprintf(buf + pos, "%s%s", |
| 1975 | delim, disk_events_strs[i]); |
| 1976 | delim = " "; |
| 1977 | } |
| 1978 | if (pos) |
| 1979 | pos += sprintf(buf + pos, "\n"); |
| 1980 | return pos; |
| 1981 | } |
| 1982 | |
| 1983 | static ssize_t disk_events_show(struct device *dev, |
| 1984 | struct device_attribute *attr, char *buf) |
| 1985 | { |
| 1986 | struct gendisk *disk = dev_to_disk(dev); |
| 1987 | |
Martin Wilck | c92e2f0 | 2019-03-27 14:51:02 +0100 | [diff] [blame] | 1988 | if (!(disk->event_flags & DISK_EVENT_FLAG_UEVENT)) |
| 1989 | return 0; |
| 1990 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1991 | return __disk_events_show(disk->events, buf); |
| 1992 | } |
| 1993 | |
| 1994 | static ssize_t disk_events_async_show(struct device *dev, |
| 1995 | struct device_attribute *attr, char *buf) |
| 1996 | { |
Martin Wilck | 673387a | 2019-03-27 14:51:01 +0100 | [diff] [blame] | 1997 | return 0; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1998 | } |
| 1999 | |
| 2000 | static ssize_t disk_events_poll_msecs_show(struct device *dev, |
| 2001 | struct device_attribute *attr, |
| 2002 | char *buf) |
| 2003 | { |
| 2004 | struct gendisk *disk = dev_to_disk(dev); |
| 2005 | |
Martin Wilck | cdf3e3d | 2019-03-27 14:51:05 +0100 | [diff] [blame] | 2006 | if (!disk->ev) |
| 2007 | return sprintf(buf, "-1\n"); |
| 2008 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2009 | return sprintf(buf, "%ld\n", disk->ev->poll_msecs); |
| 2010 | } |
| 2011 | |
| 2012 | static ssize_t disk_events_poll_msecs_store(struct device *dev, |
| 2013 | struct device_attribute *attr, |
| 2014 | const char *buf, size_t count) |
| 2015 | { |
| 2016 | struct gendisk *disk = dev_to_disk(dev); |
| 2017 | long intv; |
| 2018 | |
| 2019 | if (!count || !sscanf(buf, "%ld", &intv)) |
| 2020 | return -EINVAL; |
| 2021 | |
| 2022 | if (intv < 0 && intv != -1) |
| 2023 | return -EINVAL; |
| 2024 | |
Martin Wilck | cdf3e3d | 2019-03-27 14:51:05 +0100 | [diff] [blame] | 2025 | if (!disk->ev) |
| 2026 | return -ENODEV; |
| 2027 | |
Tejun Heo | c3af54a | 2011-06-09 20:43:55 +0200 | [diff] [blame] | 2028 | disk_block_events(disk); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2029 | disk->ev->poll_msecs = intv; |
| 2030 | __disk_unblock_events(disk, true); |
| 2031 | |
| 2032 | return count; |
| 2033 | } |
| 2034 | |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 2035 | static const DEVICE_ATTR(events, 0444, disk_events_show, NULL); |
| 2036 | static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL); |
| 2037 | static const DEVICE_ATTR(events_poll_msecs, 0644, |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2038 | disk_events_poll_msecs_show, |
| 2039 | disk_events_poll_msecs_store); |
| 2040 | |
| 2041 | static const struct attribute *disk_events_attrs[] = { |
| 2042 | &dev_attr_events.attr, |
| 2043 | &dev_attr_events_async.attr, |
| 2044 | &dev_attr_events_poll_msecs.attr, |
| 2045 | NULL, |
| 2046 | }; |
| 2047 | |
| 2048 | /* |
| 2049 | * The default polling interval can be specified by the kernel |
| 2050 | * parameter block.events_dfl_poll_msecs which defaults to 0 |
| 2051 | * (disable). This can also be modified runtime by writing to |
Akinobu Mita | 1624b0b | 2019-07-16 21:59:35 +0900 | [diff] [blame] | 2052 | * /sys/module/block/parameters/events_dfl_poll_msecs. |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2053 | */ |
| 2054 | static int disk_events_set_dfl_poll_msecs(const char *val, |
| 2055 | const struct kernel_param *kp) |
| 2056 | { |
| 2057 | struct disk_events *ev; |
| 2058 | int ret; |
| 2059 | |
| 2060 | ret = param_set_ulong(val, kp); |
| 2061 | if (ret < 0) |
| 2062 | return ret; |
| 2063 | |
| 2064 | mutex_lock(&disk_events_mutex); |
| 2065 | |
| 2066 | list_for_each_entry(ev, &disk_events, node) |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 2067 | disk_flush_events(ev->disk, 0); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2068 | |
| 2069 | mutex_unlock(&disk_events_mutex); |
| 2070 | |
| 2071 | return 0; |
| 2072 | } |
| 2073 | |
| 2074 | static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = { |
| 2075 | .set = disk_events_set_dfl_poll_msecs, |
| 2076 | .get = param_get_ulong, |
| 2077 | }; |
| 2078 | |
| 2079 | #undef MODULE_PARAM_PREFIX |
| 2080 | #define MODULE_PARAM_PREFIX "block." |
| 2081 | |
| 2082 | module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops, |
| 2083 | &disk_events_dfl_poll_msecs, 0644); |
| 2084 | |
| 2085 | /* |
Stanislaw Gruszka | 9f53d2fe | 2012-03-02 10:43:28 +0100 | [diff] [blame] | 2086 | * disk_{alloc|add|del|release}_events - initialize and destroy disk_events. |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2087 | */ |
Stanislaw Gruszka | 9f53d2fe | 2012-03-02 10:43:28 +0100 | [diff] [blame] | 2088 | static void disk_alloc_events(struct gendisk *disk) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2089 | { |
| 2090 | struct disk_events *ev; |
| 2091 | |
Martin Wilck | cdf3e3d | 2019-03-27 14:51:05 +0100 | [diff] [blame] | 2092 | if (!disk->fops->check_events || !disk->events) |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2093 | return; |
| 2094 | |
| 2095 | ev = kzalloc(sizeof(*ev), GFP_KERNEL); |
| 2096 | if (!ev) { |
| 2097 | pr_warn("%s: failed to initialize events\n", disk->disk_name); |
| 2098 | return; |
| 2099 | } |
| 2100 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2101 | INIT_LIST_HEAD(&ev->node); |
| 2102 | ev->disk = disk; |
| 2103 | spin_lock_init(&ev->lock); |
Tejun Heo | fdd514e | 2011-06-09 20:43:59 +0200 | [diff] [blame] | 2104 | mutex_init(&ev->block_mutex); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2105 | ev->block = 1; |
| 2106 | ev->poll_msecs = -1; |
| 2107 | INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn); |
| 2108 | |
Stanislaw Gruszka | 9f53d2fe | 2012-03-02 10:43:28 +0100 | [diff] [blame] | 2109 | disk->ev = ev; |
| 2110 | } |
| 2111 | |
| 2112 | static void disk_add_events(struct gendisk *disk) |
| 2113 | { |
Stanislaw Gruszka | 9f53d2fe | 2012-03-02 10:43:28 +0100 | [diff] [blame] | 2114 | /* FIXME: error handling */ |
| 2115 | if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0) |
| 2116 | pr_warn("%s: failed to create sysfs files for events\n", |
| 2117 | disk->disk_name); |
| 2118 | |
Martin Wilck | cdf3e3d | 2019-03-27 14:51:05 +0100 | [diff] [blame] | 2119 | if (!disk->ev) |
| 2120 | return; |
| 2121 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2122 | mutex_lock(&disk_events_mutex); |
Stanislaw Gruszka | 9f53d2fe | 2012-03-02 10:43:28 +0100 | [diff] [blame] | 2123 | list_add_tail(&disk->ev->node, &disk_events); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2124 | mutex_unlock(&disk_events_mutex); |
| 2125 | |
| 2126 | /* |
| 2127 | * Block count is initialized to 1 and the following initial |
| 2128 | * unblock kicks it into action. |
| 2129 | */ |
| 2130 | __disk_unblock_events(disk, true); |
| 2131 | } |
| 2132 | |
| 2133 | static void disk_del_events(struct gendisk *disk) |
| 2134 | { |
Martin Wilck | cdf3e3d | 2019-03-27 14:51:05 +0100 | [diff] [blame] | 2135 | if (disk->ev) { |
| 2136 | disk_block_events(disk); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2137 | |
Martin Wilck | cdf3e3d | 2019-03-27 14:51:05 +0100 | [diff] [blame] | 2138 | mutex_lock(&disk_events_mutex); |
| 2139 | list_del_init(&disk->ev->node); |
| 2140 | mutex_unlock(&disk_events_mutex); |
| 2141 | } |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 2142 | |
| 2143 | sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs); |
| 2144 | } |
| 2145 | |
| 2146 | static void disk_release_events(struct gendisk *disk) |
| 2147 | { |
| 2148 | /* the block count should be 1 from disk_del_events() */ |
| 2149 | WARN_ON_ONCE(disk->ev && disk->ev->block != 1); |
| 2150 | kfree(disk->ev); |
| 2151 | } |