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