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