]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - block/genhd.c
block: mark blk_account_io_completion static
[mirror_ubuntu-jammy-kernel.git] / block / genhd.c
CommitLineData
3dcf60bc 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * gendisk handling
4 */
5
1da177e4 6#include <linux/module.h>
3ad5cee5 7#include <linux/ctype.h>
1da177e4
LT
8#include <linux/fs.h>
9#include <linux/genhd.h>
b446b60e 10#include <linux/kdev_t.h>
1da177e4
LT
11#include <linux/kernel.h>
12#include <linux/blkdev.h>
66114cad 13#include <linux/backing-dev.h>
1da177e4
LT
14#include <linux/init.h>
15#include <linux/spinlock.h>
f500975a 16#include <linux/proc_fs.h>
1da177e4
LT
17#include <linux/seq_file.h>
18#include <linux/slab.h>
19#include <linux/kmod.h>
20#include <linux/kobj_map.h>
58383af6 21#include <linux/mutex.h>
bcce3de1 22#include <linux/idr.h>
77ea887e 23#include <linux/log2.h>
25e823c8 24#include <linux/pm_runtime.h>
99e6608c 25#include <linux/badblocks.h>
1da177e4 26
ff88972c
AB
27#include "blk.h"
28
edfaa7c3 29static DEFINE_MUTEX(block_class_lock);
31eb6186 30static struct kobject *block_depr;
1da177e4 31
bcce3de1 32/* for extended dynamic devt allocation, currently only one major is used */
ce23bba8 33#define NR_EXT_DEVT (1 << MINORBITS)
bcce3de1 34
2da78092 35/* For extended devt allocation. ext_devt_lock prevents look up
bcce3de1
TH
36 * results from going away underneath its user.
37 */
2da78092 38static DEFINE_SPINLOCK(ext_devt_lock);
bcce3de1
TH
39static DEFINE_IDR(ext_devt_idr);
40
edf8ff55 41static const struct device_type disk_type;
1826eadf 42
12c2bdb2
DB
43static void disk_check_events(struct disk_events *ev,
44 unsigned int *clearing_ptr);
9f53d2fe 45static void disk_alloc_events(struct gendisk *disk);
77ea887e
TH
46static void disk_add_events(struct gendisk *disk);
47static void disk_del_events(struct gendisk *disk);
48static void disk_release_events(struct gendisk *disk);
49
e598a72f
BS
50/*
51 * Set disk capacity and notify if the size is not currently
52 * zero and will not be set to zero
53 */
54void set_capacity_revalidate_and_notify(struct gendisk *disk, sector_t size,
55 bool revalidate)
56{
57 sector_t capacity = get_capacity(disk);
58
59 set_capacity(disk, size);
60
61 if (revalidate)
62 revalidate_disk(disk);
63
64 if (capacity != size && capacity != 0 && size != 0) {
65 char *envp[] = { "RESIZE=1", NULL };
66
67 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
68 }
69}
70
71EXPORT_SYMBOL_GPL(set_capacity_revalidate_and_notify);
72
5cbd28e3
CH
73/*
74 * Format the device name of the indicated disk into the supplied buffer and
75 * return a pointer to that same buffer for convenience.
76 */
77char *disk_name(struct gendisk *hd, int partno, char *buf)
78{
79 if (!partno)
80 snprintf(buf, BDEVNAME_SIZE, "%s", hd->disk_name);
81 else if (isdigit(hd->disk_name[strlen(hd->disk_name)-1]))
82 snprintf(buf, BDEVNAME_SIZE, "%sp%d", hd->disk_name, partno);
83 else
84 snprintf(buf, BDEVNAME_SIZE, "%s%d", hd->disk_name, partno);
85
86 return buf;
87}
88
89const char *bdevname(struct block_device *bdev, char *buf)
90{
91 return disk_name(bdev->bd_disk, bdev->bd_part->partno, buf);
92}
93EXPORT_SYMBOL(bdevname);
e598a72f 94
ea18e0f0
KK
95#ifdef CONFIG_SMP
96static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat)
97{
98 int cpu;
99
100 memset(stat, 0, sizeof(struct disk_stats));
101 for_each_possible_cpu(cpu) {
102 struct disk_stats *ptr = per_cpu_ptr(part->dkstats, cpu);
103 int group;
104
105 for (group = 0; group < NR_STAT_GROUPS; group++) {
106 stat->nsecs[group] += ptr->nsecs[group];
107 stat->sectors[group] += ptr->sectors[group];
108 stat->ios[group] += ptr->ios[group];
109 stat->merges[group] += ptr->merges[group];
110 }
111
112 stat->io_ticks += ptr->io_ticks;
ea18e0f0
KK
113 }
114}
115#else /* CONFIG_SMP */
116static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat)
117{
118 memcpy(stat, &part->dkstats, sizeof(struct disk_stats));
119}
120#endif /* CONFIG_SMP */
121
f299b7c7
JA
122void part_inc_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
123{
344e9ffc 124 if (queue_is_mq(q))
f299b7c7
JA
125 return;
126
1226b8dd 127 part_stat_local_inc(part, in_flight[rw]);
f299b7c7 128 if (part->partno)
1226b8dd 129 part_stat_local_inc(&part_to_disk(part)->part0, in_flight[rw]);
f299b7c7
JA
130}
131
132void part_dec_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
133{
344e9ffc 134 if (queue_is_mq(q))
f299b7c7
JA
135 return;
136
1226b8dd 137 part_stat_local_dec(part, in_flight[rw]);
f299b7c7 138 if (part->partno)
1226b8dd 139 part_stat_local_dec(&part_to_disk(part)->part0, in_flight[rw]);
f299b7c7
JA
140}
141
6005771c
CH
142static unsigned int part_in_flight(struct request_queue *q,
143 struct hd_struct *part)
f299b7c7 144{
1226b8dd 145 int cpu;
e016b782 146 unsigned int inflight;
1226b8dd 147
344e9ffc 148 if (queue_is_mq(q)) {
e016b782 149 return blk_mq_in_flight(q, part);
f299b7c7
JA
150 }
151
e016b782 152 inflight = 0;
1226b8dd 153 for_each_possible_cpu(cpu) {
e016b782
MP
154 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
155 part_stat_local_read_cpu(part, in_flight[1], cpu);
1226b8dd 156 }
e016b782
MP
157 if ((int)inflight < 0)
158 inflight = 0;
1226b8dd 159
e016b782 160 return inflight;
f299b7c7
JA
161}
162
6005771c
CH
163static void part_in_flight_rw(struct request_queue *q, struct hd_struct *part,
164 unsigned int inflight[2])
bf0ddaba 165{
1226b8dd
MP
166 int cpu;
167
344e9ffc 168 if (queue_is_mq(q)) {
bf0ddaba
OS
169 blk_mq_in_flight_rw(q, part, inflight);
170 return;
171 }
172
1226b8dd
MP
173 inflight[0] = 0;
174 inflight[1] = 0;
175 for_each_possible_cpu(cpu) {
176 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
177 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
178 }
179 if ((int)inflight[0] < 0)
180 inflight[0] = 0;
181 if ((int)inflight[1] < 0)
182 inflight[1] = 0;
bf0ddaba
OS
183}
184
807d4af2
CH
185struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
186{
187 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
188
189 if (unlikely(partno < 0 || partno >= ptbl->len))
190 return NULL;
191 return rcu_dereference(ptbl->part[partno]);
192}
193
e71bf0d0
TH
194/**
195 * disk_get_part - get partition
196 * @disk: disk to look partition from
197 * @partno: partition number
198 *
199 * Look for partition @partno from @disk. If found, increment
200 * reference count and return it.
201 *
202 * CONTEXT:
203 * Don't care.
204 *
205 * RETURNS:
206 * Pointer to the found partition on success, NULL if not found.
207 */
208struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
209{
807d4af2 210 struct hd_struct *part;
540eed56 211
e71bf0d0 212 rcu_read_lock();
807d4af2
CH
213 part = __disk_get_part(disk, partno);
214 if (part)
215 get_device(part_to_dev(part));
e71bf0d0
TH
216 rcu_read_unlock();
217
218 return part;
219}
e71bf0d0
TH
220
221/**
222 * disk_part_iter_init - initialize partition iterator
223 * @piter: iterator to initialize
224 * @disk: disk to iterate over
225 * @flags: DISK_PITER_* flags
226 *
227 * Initialize @piter so that it iterates over partitions of @disk.
228 *
229 * CONTEXT:
230 * Don't care.
231 */
232void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
233 unsigned int flags)
234{
540eed56
TH
235 struct disk_part_tbl *ptbl;
236
237 rcu_read_lock();
238 ptbl = rcu_dereference(disk->part_tbl);
239
e71bf0d0
TH
240 piter->disk = disk;
241 piter->part = NULL;
242
243 if (flags & DISK_PITER_REVERSE)
540eed56 244 piter->idx = ptbl->len - 1;
71982a40 245 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
e71bf0d0 246 piter->idx = 0;
b5d0b9df
TH
247 else
248 piter->idx = 1;
e71bf0d0
TH
249
250 piter->flags = flags;
540eed56
TH
251
252 rcu_read_unlock();
e71bf0d0
TH
253}
254EXPORT_SYMBOL_GPL(disk_part_iter_init);
255
256/**
257 * disk_part_iter_next - proceed iterator to the next partition and return it
258 * @piter: iterator of interest
259 *
260 * Proceed @piter to the next partition and return it.
261 *
262 * CONTEXT:
263 * Don't care.
264 */
265struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
266{
540eed56 267 struct disk_part_tbl *ptbl;
e71bf0d0
TH
268 int inc, end;
269
270 /* put the last partition */
271 disk_put_part(piter->part);
272 piter->part = NULL;
273
540eed56 274 /* get part_tbl */
e71bf0d0 275 rcu_read_lock();
540eed56 276 ptbl = rcu_dereference(piter->disk->part_tbl);
e71bf0d0
TH
277
278 /* determine iteration parameters */
279 if (piter->flags & DISK_PITER_REVERSE) {
280 inc = -1;
71982a40
TH
281 if (piter->flags & (DISK_PITER_INCL_PART0 |
282 DISK_PITER_INCL_EMPTY_PART0))
b5d0b9df
TH
283 end = -1;
284 else
285 end = 0;
e71bf0d0
TH
286 } else {
287 inc = 1;
540eed56 288 end = ptbl->len;
e71bf0d0
TH
289 }
290
291 /* iterate to the next partition */
292 for (; piter->idx != end; piter->idx += inc) {
293 struct hd_struct *part;
294
540eed56 295 part = rcu_dereference(ptbl->part[piter->idx]);
e71bf0d0
TH
296 if (!part)
297 continue;
c83f6bf9 298 if (!part_nr_sects_read(part) &&
71982a40
TH
299 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
300 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
301 piter->idx == 0))
e71bf0d0
TH
302 continue;
303
ed9e1982 304 get_device(part_to_dev(part));
e71bf0d0
TH
305 piter->part = part;
306 piter->idx += inc;
307 break;
308 }
309
310 rcu_read_unlock();
311
312 return piter->part;
313}
314EXPORT_SYMBOL_GPL(disk_part_iter_next);
315
316/**
317 * disk_part_iter_exit - finish up partition iteration
318 * @piter: iter of interest
319 *
320 * Called when iteration is over. Cleans up @piter.
321 *
322 * CONTEXT:
323 * Don't care.
324 */
325void disk_part_iter_exit(struct disk_part_iter *piter)
326{
327 disk_put_part(piter->part);
328 piter->part = NULL;
329}
330EXPORT_SYMBOL_GPL(disk_part_iter_exit);
331
a6f23657
JA
332static inline int sector_in_part(struct hd_struct *part, sector_t sector)
333{
334 return part->start_sect <= sector &&
c83f6bf9 335 sector < part->start_sect + part_nr_sects_read(part);
a6f23657
JA
336}
337
e71bf0d0
TH
338/**
339 * disk_map_sector_rcu - map sector to partition
340 * @disk: gendisk of interest
341 * @sector: sector to map
342 *
343 * Find out which partition @sector maps to on @disk. This is
344 * primarily used for stats accounting.
345 *
346 * CONTEXT:
b7d6c303 347 * RCU read locked. The returned partition pointer is always valid
27eb3af9
ML
348 * because its refcount is grabbed except for part0, which lifetime
349 * is same with the disk.
e71bf0d0
TH
350 *
351 * RETURNS:
074a7aca 352 * Found partition on success, part0 is returned if no partition matches
b7d6c303 353 * or the matched partition is being deleted.
e71bf0d0
TH
354 */
355struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
356{
540eed56 357 struct disk_part_tbl *ptbl;
a6f23657 358 struct hd_struct *part;
e71bf0d0
TH
359 int i;
360
540eed56
TH
361 ptbl = rcu_dereference(disk->part_tbl);
362
a6f23657 363 part = rcu_dereference(ptbl->last_lookup);
b7d6c303 364 if (part && sector_in_part(part, sector) && hd_struct_try_get(part))
a6f23657
JA
365 return part;
366
540eed56 367 for (i = 1; i < ptbl->len; i++) {
a6f23657 368 part = rcu_dereference(ptbl->part[i]);
e71bf0d0 369
a6f23657 370 if (part && sector_in_part(part, sector)) {
b7d6c303
ML
371 /*
372 * only live partition can be cached for lookup,
373 * so use-after-free on cached & deleting partition
374 * can be avoided
375 */
376 if (!hd_struct_try_get(part))
377 break;
a6f23657 378 rcu_assign_pointer(ptbl->last_lookup, part);
e71bf0d0 379 return part;
a6f23657 380 }
e71bf0d0 381 }
074a7aca 382 return &disk->part0;
e71bf0d0 383}
e71bf0d0 384
b53df2e7
SK
385/**
386 * disk_has_partitions
387 * @disk: gendisk of interest
388 *
389 * Walk through the partition table and check if valid partition exists.
390 *
391 * CONTEXT:
392 * Don't care.
393 *
394 * RETURNS:
395 * True if the gendisk has at least one valid non-zero size partition.
396 * Otherwise false.
397 */
398bool disk_has_partitions(struct gendisk *disk)
399{
400 struct disk_part_tbl *ptbl;
401 int i;
402 bool ret = false;
403
404 rcu_read_lock();
405 ptbl = rcu_dereference(disk->part_tbl);
406
407 /* Iterate partitions skipping the whole device at index 0 */
408 for (i = 1; i < ptbl->len; i++) {
409 if (rcu_dereference(ptbl->part[i])) {
410 ret = true;
411 break;
412 }
413 }
414
415 rcu_read_unlock();
416
417 return ret;
418}
419EXPORT_SYMBOL_GPL(disk_has_partitions);
420
1da177e4
LT
421/*
422 * Can be deleted altogether. Later.
423 *
424 */
133d55cd 425#define BLKDEV_MAJOR_HASH_SIZE 255
1da177e4
LT
426static struct blk_major_name {
427 struct blk_major_name *next;
428 int major;
429 char name[16];
68eef3b4 430} *major_names[BLKDEV_MAJOR_HASH_SIZE];
1da177e4
LT
431
432/* index in the above - for now: assume no multimajor ranges */
e61eb2e9 433static inline int major_to_index(unsigned major)
1da177e4 434{
68eef3b4 435 return major % BLKDEV_MAJOR_HASH_SIZE;
7170be5f
NH
436}
437
68eef3b4 438#ifdef CONFIG_PROC_FS
cf771cb5 439void blkdev_show(struct seq_file *seqf, off_t offset)
7170be5f 440{
68eef3b4 441 struct blk_major_name *dp;
7170be5f 442
133d55cd
LG
443 mutex_lock(&block_class_lock);
444 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
445 if (dp->major == offset)
cf771cb5 446 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
133d55cd 447 mutex_unlock(&block_class_lock);
1da177e4 448}
68eef3b4 449#endif /* CONFIG_PROC_FS */
1da177e4 450
9e8c0bcc
MN
451/**
452 * register_blkdev - register a new block device
453 *
f33ff110
SB
454 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
455 * @major = 0, try to allocate any unused major number.
9e8c0bcc
MN
456 * @name: the name of the new block device as a zero terminated string
457 *
458 * The @name must be unique within the system.
459 *
0e056eb5
MCC
460 * The return value depends on the @major input parameter:
461 *
f33ff110
SB
462 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
463 * then the function returns zero on success, or a negative error code
0e056eb5 464 * - if any unused major number was requested with @major = 0 parameter
9e8c0bcc 465 * then the return value is the allocated major number in range
f33ff110
SB
466 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
467 *
468 * See Documentation/admin-guide/devices.txt for the list of allocated
469 * major numbers.
9e8c0bcc 470 */
1da177e4
LT
471int register_blkdev(unsigned int major, const char *name)
472{
473 struct blk_major_name **n, *p;
474 int index, ret = 0;
475
edfaa7c3 476 mutex_lock(&block_class_lock);
1da177e4
LT
477
478 /* temporary */
479 if (major == 0) {
480 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
481 if (major_names[index] == NULL)
482 break;
483 }
484
485 if (index == 0) {
dfc76d11
KP
486 printk("%s: failed to get major for %s\n",
487 __func__, name);
1da177e4
LT
488 ret = -EBUSY;
489 goto out;
490 }
491 major = index;
492 ret = major;
493 }
494
133d55cd 495 if (major >= BLKDEV_MAJOR_MAX) {
dfc76d11
KP
496 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
497 __func__, major, BLKDEV_MAJOR_MAX-1, name);
133d55cd
LG
498
499 ret = -EINVAL;
500 goto out;
501 }
502
1da177e4
LT
503 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
504 if (p == NULL) {
505 ret = -ENOMEM;
506 goto out;
507 }
508
509 p->major = major;
510 strlcpy(p->name, name, sizeof(p->name));
511 p->next = NULL;
512 index = major_to_index(major);
513
514 for (n = &major_names[index]; *n; n = &(*n)->next) {
515 if ((*n)->major == major)
516 break;
517 }
518 if (!*n)
519 *n = p;
520 else
521 ret = -EBUSY;
522
523 if (ret < 0) {
f33ff110 524 printk("register_blkdev: cannot get major %u for %s\n",
1da177e4
LT
525 major, name);
526 kfree(p);
527 }
528out:
edfaa7c3 529 mutex_unlock(&block_class_lock);
1da177e4
LT
530 return ret;
531}
532
533EXPORT_SYMBOL(register_blkdev);
534
f4480240 535void unregister_blkdev(unsigned int major, const char *name)
1da177e4
LT
536{
537 struct blk_major_name **n;
538 struct blk_major_name *p = NULL;
539 int index = major_to_index(major);
1da177e4 540
edfaa7c3 541 mutex_lock(&block_class_lock);
1da177e4
LT
542 for (n = &major_names[index]; *n; n = &(*n)->next)
543 if ((*n)->major == major)
544 break;
294462a5
AM
545 if (!*n || strcmp((*n)->name, name)) {
546 WARN_ON(1);
294462a5 547 } else {
1da177e4
LT
548 p = *n;
549 *n = p->next;
550 }
edfaa7c3 551 mutex_unlock(&block_class_lock);
1da177e4 552 kfree(p);
1da177e4
LT
553}
554
555EXPORT_SYMBOL(unregister_blkdev);
556
557static struct kobj_map *bdev_map;
558
870d6656
TH
559/**
560 * blk_mangle_minor - scatter minor numbers apart
561 * @minor: minor number to mangle
562 *
563 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
564 * is enabled. Mangling twice gives the original value.
565 *
566 * RETURNS:
567 * Mangled value.
568 *
569 * CONTEXT:
570 * Don't care.
571 */
572static int blk_mangle_minor(int minor)
573{
574#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
575 int i;
576
577 for (i = 0; i < MINORBITS / 2; i++) {
578 int low = minor & (1 << i);
579 int high = minor & (1 << (MINORBITS - 1 - i));
580 int distance = MINORBITS - 1 - 2 * i;
581
582 minor ^= low | high; /* clear both bits */
583 low <<= distance; /* swap the positions */
584 high >>= distance;
585 minor |= low | high; /* and set */
586 }
587#endif
588 return minor;
589}
590
bcce3de1
TH
591/**
592 * blk_alloc_devt - allocate a dev_t for a partition
593 * @part: partition to allocate dev_t for
bcce3de1
TH
594 * @devt: out parameter for resulting dev_t
595 *
596 * Allocate a dev_t for block device.
597 *
598 * RETURNS:
599 * 0 on success, allocated dev_t is returned in *@devt. -errno on
600 * failure.
601 *
602 * CONTEXT:
603 * Might sleep.
604 */
605int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
606{
607 struct gendisk *disk = part_to_disk(part);
bab998d6 608 int idx;
bcce3de1
TH
609
610 /* in consecutive minor range? */
611 if (part->partno < disk->minors) {
612 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
613 return 0;
614 }
615
616 /* allocate ext devt */
2da78092
KB
617 idr_preload(GFP_KERNEL);
618
4d66e5e9 619 spin_lock_bh(&ext_devt_lock);
2da78092 620 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
4d66e5e9 621 spin_unlock_bh(&ext_devt_lock);
2da78092
KB
622
623 idr_preload_end();
bab998d6
TH
624 if (idx < 0)
625 return idx == -ENOSPC ? -EBUSY : idx;
bcce3de1 626
870d6656 627 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
bcce3de1
TH
628 return 0;
629}
630
631/**
632 * blk_free_devt - free a dev_t
633 * @devt: dev_t to free
634 *
635 * Free @devt which was allocated using blk_alloc_devt().
636 *
637 * CONTEXT:
638 * Might sleep.
639 */
640void blk_free_devt(dev_t devt)
641{
bcce3de1
TH
642 if (devt == MKDEV(0, 0))
643 return;
644
645 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
4d66e5e9 646 spin_lock_bh(&ext_devt_lock);
870d6656 647 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
4d66e5e9 648 spin_unlock_bh(&ext_devt_lock);
bcce3de1
TH
649 }
650}
651
33c826ef
BVA
652/*
653 * We invalidate devt by assigning NULL pointer for devt in idr.
6fcc44d1
YY
654 */
655void blk_invalidate_devt(dev_t devt)
656{
657 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
658 spin_lock_bh(&ext_devt_lock);
659 idr_replace(&ext_devt_idr, NULL, blk_mangle_minor(MINOR(devt)));
660 spin_unlock_bh(&ext_devt_lock);
661 }
662}
663
1f014290
TH
664static char *bdevt_str(dev_t devt, char *buf)
665{
666 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
667 char tbuf[BDEVT_SIZE];
668 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
669 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
670 } else
671 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
672
673 return buf;
674}
675
1da177e4
LT
676/*
677 * Register device numbers dev..(dev+range-1)
678 * range must be nonzero
679 * The hash chain is sorted on range, so that subranges can override.
680 */
edfaa7c3 681void blk_register_region(dev_t devt, unsigned long range, struct module *module,
1da177e4
LT
682 struct kobject *(*probe)(dev_t, int *, void *),
683 int (*lock)(dev_t, void *), void *data)
684{
edfaa7c3 685 kobj_map(bdev_map, devt, range, module, probe, lock, data);
1da177e4
LT
686}
687
688EXPORT_SYMBOL(blk_register_region);
689
edfaa7c3 690void blk_unregister_region(dev_t devt, unsigned long range)
1da177e4 691{
edfaa7c3 692 kobj_unmap(bdev_map, devt, range);
1da177e4
LT
693}
694
695EXPORT_SYMBOL(blk_unregister_region);
696
cf771cb5 697static struct kobject *exact_match(dev_t devt, int *partno, void *data)
1da177e4
LT
698{
699 struct gendisk *p = data;
edfaa7c3 700
ed9e1982 701 return &disk_to_dev(p)->kobj;
1da177e4
LT
702}
703
edfaa7c3 704static int exact_lock(dev_t devt, void *data)
1da177e4
LT
705{
706 struct gendisk *p = data;
707
3079c22e 708 if (!get_disk_and_module(p))
1da177e4
LT
709 return -1;
710 return 0;
711}
712
fef912bf
HR
713static void register_disk(struct device *parent, struct gendisk *disk,
714 const struct attribute_group **groups)
d2bf1b67
TH
715{
716 struct device *ddev = disk_to_dev(disk);
717 struct block_device *bdev;
718 struct disk_part_iter piter;
719 struct hd_struct *part;
720 int err;
721
e63a46be 722 ddev->parent = parent;
d2bf1b67 723
ffc8b308 724 dev_set_name(ddev, "%s", disk->disk_name);
d2bf1b67
TH
725
726 /* delay uevents, until we scanned partition table */
727 dev_set_uevent_suppress(ddev, 1);
728
fef912bf
HR
729 if (groups) {
730 WARN_ON(ddev->groups);
731 ddev->groups = groups;
732 }
d2bf1b67
TH
733 if (device_add(ddev))
734 return;
735 if (!sysfs_deprecated) {
736 err = sysfs_create_link(block_depr, &ddev->kobj,
737 kobject_name(&ddev->kobj));
738 if (err) {
739 device_del(ddev);
740 return;
741 }
742 }
25e823c8
ML
743
744 /*
745 * avoid probable deadlock caused by allocating memory with
746 * GFP_KERNEL in runtime_resume callback of its all ancestor
747 * devices
748 */
749 pm_runtime_set_memalloc_noio(ddev, true);
750
d2bf1b67
TH
751 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
752 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
753
8ddcd653
CH
754 if (disk->flags & GENHD_FL_HIDDEN) {
755 dev_set_uevent_suppress(ddev, 0);
756 return;
757 }
758
d2bf1b67 759 /* No minors to use for partitions */
d27769ec 760 if (!disk_part_scan_enabled(disk))
d2bf1b67
TH
761 goto exit;
762
763 /* No such device (e.g., media were just removed) */
764 if (!get_capacity(disk))
765 goto exit;
766
767 bdev = bdget_disk(disk, 0);
768 if (!bdev)
769 goto exit;
770
771 bdev->bd_invalidated = 1;
772 err = blkdev_get(bdev, FMODE_READ, NULL);
773 if (err < 0)
774 goto exit;
775 blkdev_put(bdev, FMODE_READ);
776
777exit:
778 /* announce disk after possible partitions are created */
779 dev_set_uevent_suppress(ddev, 0);
780 kobject_uevent(&ddev->kobj, KOBJ_ADD);
781
782 /* announce possible partitions */
783 disk_part_iter_init(&piter, disk, 0);
784 while ((part = disk_part_iter_next(&piter)))
785 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
786 disk_part_iter_exit(&piter);
8ddcd653 787
4d7c1d3f 788 if (disk->queue->backing_dev_info->dev) {
789 err = sysfs_create_link(&ddev->kobj,
790 &disk->queue->backing_dev_info->dev->kobj,
791 "bdi");
792 WARN_ON(err);
793 }
d2bf1b67
TH
794}
795
1da177e4 796/**
fa70d2e2 797 * __device_add_disk - add disk information to kernel list
e63a46be 798 * @parent: parent device for the disk
1da177e4 799 * @disk: per-device partitioning information
fef912bf 800 * @groups: Additional per-device sysfs groups
fa70d2e2 801 * @register_queue: register the queue if set to true
1da177e4
LT
802 *
803 * This function registers the partitioning information in @disk
804 * with the kernel.
3e1a7ff8
TH
805 *
806 * FIXME: error handling
1da177e4 807 */
fa70d2e2 808static void __device_add_disk(struct device *parent, struct gendisk *disk,
fef912bf 809 const struct attribute_group **groups,
fa70d2e2 810 bool register_queue)
1da177e4 811{
3e1a7ff8 812 dev_t devt;
6ffeea77 813 int retval;
cf0ca9fe 814
737eb78e
DLM
815 /*
816 * The disk queue should now be all set with enough information about
817 * the device for the elevator code to pick an adequate default
818 * elevator if one is needed, that is, for devices requesting queue
819 * registration.
820 */
821 if (register_queue)
822 elevator_init_mq(disk->queue);
823
3e1a7ff8
TH
824 /* minors == 0 indicates to use ext devt from part0 and should
825 * be accompanied with EXT_DEVT flag. Make sure all
826 * parameters make sense.
827 */
828 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
8ddcd653
CH
829 WARN_ON(!disk->minors &&
830 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
3e1a7ff8 831
1da177e4 832 disk->flags |= GENHD_FL_UP;
3e1a7ff8
TH
833
834 retval = blk_alloc_devt(&disk->part0, &devt);
835 if (retval) {
836 WARN_ON(1);
837 return;
838 }
3e1a7ff8
TH
839 disk->major = MAJOR(devt);
840 disk->first_minor = MINOR(devt);
841
9f53d2fe
SG
842 disk_alloc_events(disk);
843
8ddcd653
CH
844 if (disk->flags & GENHD_FL_HIDDEN) {
845 /*
846 * Don't let hidden disks show up in /proc/partitions,
847 * and don't bother scanning for partitions either.
848 */
849 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
850 disk->flags |= GENHD_FL_NO_PART_SCAN;
851 } else {
3c5d202b
CH
852 struct backing_dev_info *bdi = disk->queue->backing_dev_info;
853 struct device *dev = disk_to_dev(disk);
3a92168b 854 int ret;
855
8ddcd653 856 /* Register BDI before referencing it from bdev */
3c5d202b
CH
857 dev->devt = devt;
858 ret = bdi_register(bdi, "%u:%u", MAJOR(devt), MINOR(devt));
3a92168b 859 WARN_ON(ret);
3c5d202b 860 bdi_set_owner(bdi, dev);
8ddcd653
CH
861 blk_register_region(disk_devt(disk), disk->minors, NULL,
862 exact_match, exact_lock, disk);
863 }
fef912bf 864 register_disk(parent, disk, groups);
fa70d2e2
MS
865 if (register_queue)
866 blk_register_queue(disk);
cf0ca9fe 867
523e1d39
TH
868 /*
869 * Take an extra ref on queue which will be put on disk_release()
870 * so that it sticks around as long as @disk is there.
871 */
09ac46c4 872 WARN_ON_ONCE(!blk_get_queue(disk->queue));
523e1d39 873
77ea887e 874 disk_add_events(disk);
25520d55 875 blk_integrity_add(disk);
1da177e4 876}
fa70d2e2 877
fef912bf
HR
878void device_add_disk(struct device *parent, struct gendisk *disk,
879 const struct attribute_group **groups)
880
fa70d2e2 881{
fef912bf 882 __device_add_disk(parent, disk, groups, true);
fa70d2e2 883}
e63a46be 884EXPORT_SYMBOL(device_add_disk);
1da177e4 885
fa70d2e2
MS
886void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
887{
fef912bf 888 __device_add_disk(parent, disk, NULL, false);
fa70d2e2
MS
889}
890EXPORT_SYMBOL(device_add_disk_no_queue_reg);
891
02d33b67
CH
892static void invalidate_partition(struct gendisk *disk, int partno)
893{
894 struct block_device *bdev;
895
896 bdev = bdget_disk(disk, partno);
897 if (!bdev)
898 return;
899
900 fsync_bdev(bdev);
901 __invalidate_device(bdev, true);
9bc5c397
CH
902
903 /*
904 * Unhash the bdev inode for this device so that it gets evicted as soon
905 * as last inode reference is dropped.
906 */
907 remove_inode_hash(bdev->bd_inode);
02d33b67
CH
908 bdput(bdev);
909}
910
d2bf1b67 911void del_gendisk(struct gendisk *disk)
1da177e4 912{
d2bf1b67
TH
913 struct disk_part_iter piter;
914 struct hd_struct *part;
915
25520d55 916 blk_integrity_del(disk);
77ea887e
TH
917 disk_del_events(disk);
918
56c0908c
JK
919 /*
920 * Block lookups of the disk until all bdevs are unhashed and the
921 * disk is marked as dead (GENHD_FL_UP cleared).
922 */
923 down_write(&disk->lookup_sem);
d2bf1b67
TH
924 /* invalidate stuff */
925 disk_part_iter_init(&piter, disk,
926 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
927 while ((part = disk_part_iter_next(&piter))) {
928 invalidate_partition(disk, part->partno);
cddae808 929 delete_partition(disk, part);
d2bf1b67
TH
930 }
931 disk_part_iter_exit(&piter);
932
933 invalidate_partition(disk, 0);
d2bf1b67
TH
934 set_capacity(disk, 0);
935 disk->flags &= ~GENHD_FL_UP;
56c0908c 936 up_write(&disk->lookup_sem);
d2bf1b67 937
8ddcd653
CH
938 if (!(disk->flags & GENHD_FL_HIDDEN))
939 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
90f16fdd
JK
940 if (disk->queue) {
941 /*
942 * Unregister bdi before releasing device numbers (as they can
943 * get reused and we'd get clashes in sysfs).
944 */
bc8d062c
MS
945 if (!(disk->flags & GENHD_FL_HIDDEN))
946 bdi_unregister(disk->queue->backing_dev_info);
90f16fdd
JK
947 blk_unregister_queue(disk);
948 } else {
949 WARN_ON(1);
950 }
d2bf1b67 951
17eac099 952 if (!(disk->flags & GENHD_FL_HIDDEN))
8ddcd653 953 blk_unregister_region(disk_devt(disk), disk->minors);
6fcc44d1
YY
954 /*
955 * Remove gendisk pointer from idr so that it cannot be looked up
956 * while RCU period before freeing gendisk is running to prevent
957 * use-after-free issues. Note that the device number stays
958 * "in-use" until we really free the gendisk.
959 */
960 blk_invalidate_devt(disk_devt(disk));
d2bf1b67
TH
961
962 kobject_put(disk->part0.holder_dir);
963 kobject_put(disk->slave_dir);
d2bf1b67
TH
964
965 part_stat_set_all(&disk->part0, 0);
966 disk->part0.stamp = 0;
d2bf1b67
TH
967 if (!sysfs_deprecated)
968 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
25e823c8 969 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
d2bf1b67 970 device_del(disk_to_dev(disk));
1da177e4 971}
d2bf1b67 972EXPORT_SYMBOL(del_gendisk);
1da177e4 973
99e6608c
VV
974/* sysfs access to bad-blocks list. */
975static ssize_t disk_badblocks_show(struct device *dev,
976 struct device_attribute *attr,
977 char *page)
978{
979 struct gendisk *disk = dev_to_disk(dev);
980
981 if (!disk->bb)
982 return sprintf(page, "\n");
983
984 return badblocks_show(disk->bb, page, 0);
985}
986
987static ssize_t disk_badblocks_store(struct device *dev,
988 struct device_attribute *attr,
989 const char *page, size_t len)
990{
991 struct gendisk *disk = dev_to_disk(dev);
992
993 if (!disk->bb)
994 return -ENXIO;
995
996 return badblocks_store(disk->bb, page, len, 0);
997}
998
1da177e4
LT
999/**
1000 * get_gendisk - get partitioning information for a given device
710027a4 1001 * @devt: device to get partitioning information for
496aa8a9 1002 * @partno: returned partition index
1da177e4
LT
1003 *
1004 * This function gets the structure containing partitioning
710027a4 1005 * information for the given device @devt.
1da177e4 1006 */
cf771cb5 1007struct gendisk *get_gendisk(dev_t devt, int *partno)
1da177e4 1008{
bcce3de1
TH
1009 struct gendisk *disk = NULL;
1010
1011 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
1012 struct kobject *kobj;
1013
1014 kobj = kobj_lookup(bdev_map, devt, partno);
1015 if (kobj)
1016 disk = dev_to_disk(kobj_to_dev(kobj));
1017 } else {
1018 struct hd_struct *part;
1019
4d66e5e9 1020 spin_lock_bh(&ext_devt_lock);
870d6656 1021 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
3079c22e 1022 if (part && get_disk_and_module(part_to_disk(part))) {
bcce3de1
TH
1023 *partno = part->partno;
1024 disk = part_to_disk(part);
1025 }
4d66e5e9 1026 spin_unlock_bh(&ext_devt_lock);
bcce3de1 1027 }
edfaa7c3 1028
56c0908c
JK
1029 if (!disk)
1030 return NULL;
1031
1032 /*
1033 * Synchronize with del_gendisk() to not return disk that is being
1034 * destroyed.
1035 */
1036 down_read(&disk->lookup_sem);
1037 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
1038 !(disk->flags & GENHD_FL_UP))) {
1039 up_read(&disk->lookup_sem);
9df6c299 1040 put_disk_and_module(disk);
8ddcd653 1041 disk = NULL;
56c0908c
JK
1042 } else {
1043 up_read(&disk->lookup_sem);
8ddcd653 1044 }
bcce3de1 1045 return disk;
1da177e4
LT
1046}
1047
f331c029
TH
1048/**
1049 * bdget_disk - do bdget() by gendisk and partition number
1050 * @disk: gendisk of interest
1051 * @partno: partition number
1052 *
1053 * Find partition @partno from @disk, do bdget() on it.
1054 *
1055 * CONTEXT:
1056 * Don't care.
1057 *
1058 * RETURNS:
1059 * Resulting block_device on success, NULL on failure.
1060 */
aeb3d3a8 1061struct block_device *bdget_disk(struct gendisk *disk, int partno)
f331c029 1062{
548b10eb
TH
1063 struct hd_struct *part;
1064 struct block_device *bdev = NULL;
f331c029 1065
548b10eb 1066 part = disk_get_part(disk, partno);
2bbedcb4 1067 if (part)
548b10eb
TH
1068 bdev = bdget(part_devt(part));
1069 disk_put_part(part);
f331c029 1070
548b10eb 1071 return bdev;
f331c029
TH
1072}
1073EXPORT_SYMBOL(bdget_disk);
1074
5c6f35c5
GKH
1075/*
1076 * print a full list of all partitions - intended for places where the root
1077 * filesystem can't be mounted and thus to give the victim some idea of what
1078 * went wrong
1079 */
1080void __init printk_all_partitions(void)
1081{
def4e38d
TH
1082 struct class_dev_iter iter;
1083 struct device *dev;
1084
1085 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1086 while ((dev = class_dev_iter_next(&iter))) {
1087 struct gendisk *disk = dev_to_disk(dev);
e71bf0d0
TH
1088 struct disk_part_iter piter;
1089 struct hd_struct *part;
1f014290
TH
1090 char name_buf[BDEVNAME_SIZE];
1091 char devt_buf[BDEVT_SIZE];
def4e38d
TH
1092
1093 /*
1094 * Don't show empty devices or things that have been
25985edc 1095 * suppressed
def4e38d
TH
1096 */
1097 if (get_capacity(disk) == 0 ||
1098 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
1099 continue;
1100
1101 /*
1102 * Note, unlike /proc/partitions, I am showing the
1103 * numbers in hex - the same format as the root=
1104 * option takes.
1105 */
074a7aca
TH
1106 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
1107 while ((part = disk_part_iter_next(&piter))) {
1108 bool is_part0 = part == &disk->part0;
def4e38d 1109
b5af921e 1110 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
1f014290 1111 bdevt_str(part_devt(part), devt_buf),
c83f6bf9
VG
1112 (unsigned long long)part_nr_sects_read(part) >> 1
1113 , disk_name(disk, part->partno, name_buf),
1ad7e899 1114 part->info ? part->info->uuid : "");
074a7aca 1115 if (is_part0) {
52c44d93 1116 if (dev->parent && dev->parent->driver)
074a7aca 1117 printk(" driver: %s\n",
52c44d93 1118 dev->parent->driver->name);
074a7aca
TH
1119 else
1120 printk(" (driver?)\n");
1121 } else
1122 printk("\n");
1123 }
e71bf0d0 1124 disk_part_iter_exit(&piter);
def4e38d
TH
1125 }
1126 class_dev_iter_exit(&iter);
dd2a345f
DG
1127}
1128
1da177e4
LT
1129#ifdef CONFIG_PROC_FS
1130/* iterator */
def4e38d 1131static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
68c4d4a7 1132{
def4e38d
TH
1133 loff_t skip = *pos;
1134 struct class_dev_iter *iter;
1135 struct device *dev;
68c4d4a7 1136
aeb3d3a8 1137 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
def4e38d
TH
1138 if (!iter)
1139 return ERR_PTR(-ENOMEM);
1140
1141 seqf->private = iter;
1142 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
1143 do {
1144 dev = class_dev_iter_next(iter);
1145 if (!dev)
1146 return NULL;
1147 } while (skip--);
1148
1149 return dev_to_disk(dev);
68c4d4a7
GKH
1150}
1151
def4e38d 1152static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
1da177e4 1153{
edfaa7c3 1154 struct device *dev;
1da177e4 1155
def4e38d
TH
1156 (*pos)++;
1157 dev = class_dev_iter_next(seqf->private);
2ac3cee5 1158 if (dev)
68c4d4a7 1159 return dev_to_disk(dev);
2ac3cee5 1160
1da177e4
LT
1161 return NULL;
1162}
1163
def4e38d 1164static void disk_seqf_stop(struct seq_file *seqf, void *v)
27f30251 1165{
def4e38d 1166 struct class_dev_iter *iter = seqf->private;
27f30251 1167
def4e38d
TH
1168 /* stop is called even after start failed :-( */
1169 if (iter) {
1170 class_dev_iter_exit(iter);
1171 kfree(iter);
77da1605 1172 seqf->private = NULL;
5c0ef6d0 1173 }
1da177e4
LT
1174}
1175
def4e38d 1176static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
1da177e4 1177{
06768067 1178 void *p;
def4e38d
TH
1179
1180 p = disk_seqf_start(seqf, pos);
b9f985b6 1181 if (!IS_ERR_OR_NULL(p) && !*pos)
def4e38d
TH
1182 seq_puts(seqf, "major minor #blocks name\n\n");
1183 return p;
1da177e4
LT
1184}
1185
cf771cb5 1186static int show_partition(struct seq_file *seqf, void *v)
1da177e4
LT
1187{
1188 struct gendisk *sgp = v;
e71bf0d0
TH
1189 struct disk_part_iter piter;
1190 struct hd_struct *part;
1da177e4
LT
1191 char buf[BDEVNAME_SIZE];
1192
1da177e4 1193 /* Don't show non-partitionable removeable devices or empty devices */
d27769ec 1194 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
f331c029 1195 (sgp->flags & GENHD_FL_REMOVABLE)))
1da177e4
LT
1196 return 0;
1197 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1198 return 0;
1199
1200 /* show the full disk and all non-0 size partitions of it */
074a7aca 1201 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
e71bf0d0 1202 while ((part = disk_part_iter_next(&piter)))
1f014290 1203 seq_printf(seqf, "%4d %7d %10llu %s\n",
f331c029 1204 MAJOR(part_devt(part)), MINOR(part_devt(part)),
c83f6bf9 1205 (unsigned long long)part_nr_sects_read(part) >> 1,
f331c029 1206 disk_name(sgp, part->partno, buf));
e71bf0d0 1207 disk_part_iter_exit(&piter);
1da177e4
LT
1208
1209 return 0;
1210}
1211
f500975a 1212static const struct seq_operations partitions_op = {
def4e38d
TH
1213 .start = show_partition_start,
1214 .next = disk_seqf_next,
1215 .stop = disk_seqf_stop,
edfaa7c3 1216 .show = show_partition
1da177e4
LT
1217};
1218#endif
1219
1220
cf771cb5 1221static struct kobject *base_probe(dev_t devt, int *partno, void *data)
1da177e4 1222{
edfaa7c3 1223 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
1da177e4 1224 /* Make old-style 2.4 aliases work */
edfaa7c3 1225 request_module("block-major-%d", MAJOR(devt));
1da177e4
LT
1226 return NULL;
1227}
1228
1229static int __init genhd_device_init(void)
1230{
e105b8bf
DW
1231 int error;
1232
1233 block_class.dev_kobj = sysfs_dev_block_kobj;
1234 error = class_register(&block_class);
ee27a558
RM
1235 if (unlikely(error))
1236 return error;
edfaa7c3 1237 bdev_map = kobj_map_init(base_probe, &block_class_lock);
1da177e4 1238 blk_dev_init();
edfaa7c3 1239
561ec68e
ZY
1240 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1241
edfaa7c3 1242 /* create top-level block dir */
e52eec13
AK
1243 if (!sysfs_deprecated)
1244 block_depr = kobject_create_and_add("block", NULL);
830d3cfb 1245 return 0;
1da177e4
LT
1246}
1247
1248subsys_initcall(genhd_device_init);
1249
edfaa7c3
KS
1250static ssize_t disk_range_show(struct device *dev,
1251 struct device_attribute *attr, char *buf)
1da177e4 1252{
edfaa7c3 1253 struct gendisk *disk = dev_to_disk(dev);
1da177e4 1254
edfaa7c3 1255 return sprintf(buf, "%d\n", disk->minors);
1da177e4
LT
1256}
1257
1f014290
TH
1258static ssize_t disk_ext_range_show(struct device *dev,
1259 struct device_attribute *attr, char *buf)
1260{
1261 struct gendisk *disk = dev_to_disk(dev);
1262
b5d0b9df 1263 return sprintf(buf, "%d\n", disk_max_parts(disk));
1f014290
TH
1264}
1265
edfaa7c3
KS
1266static ssize_t disk_removable_show(struct device *dev,
1267 struct device_attribute *attr, char *buf)
a7fd6706 1268{
edfaa7c3 1269 struct gendisk *disk = dev_to_disk(dev);
a7fd6706 1270
edfaa7c3
KS
1271 return sprintf(buf, "%d\n",
1272 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
a7fd6706
KS
1273}
1274
8ddcd653
CH
1275static ssize_t disk_hidden_show(struct device *dev,
1276 struct device_attribute *attr, char *buf)
1277{
1278 struct gendisk *disk = dev_to_disk(dev);
1279
1280 return sprintf(buf, "%d\n",
1281 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1282}
1283
1c9ce527
KS
1284static ssize_t disk_ro_show(struct device *dev,
1285 struct device_attribute *attr, char *buf)
1286{
1287 struct gendisk *disk = dev_to_disk(dev);
1288
b7db9956 1289 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
1c9ce527
KS
1290}
1291
3ad5cee5
CH
1292ssize_t part_size_show(struct device *dev,
1293 struct device_attribute *attr, char *buf)
1294{
1295 struct hd_struct *p = dev_to_part(dev);
1296
1297 return sprintf(buf, "%llu\n",
1298 (unsigned long long)part_nr_sects_read(p));
1299}
1300
1301ssize_t part_stat_show(struct device *dev,
1302 struct device_attribute *attr, char *buf)
1303{
1304 struct hd_struct *p = dev_to_part(dev);
1305 struct request_queue *q = part_to_disk(p)->queue;
ea18e0f0 1306 struct disk_stats stat;
3ad5cee5
CH
1307 unsigned int inflight;
1308
ea18e0f0 1309 part_stat_read_all(p, &stat);
3ad5cee5 1310 inflight = part_in_flight(q, p);
ea18e0f0 1311
3ad5cee5
CH
1312 return sprintf(buf,
1313 "%8lu %8lu %8llu %8u "
1314 "%8lu %8lu %8llu %8u "
1315 "%8u %8u %8u "
1316 "%8lu %8lu %8llu %8u "
1317 "%8lu %8u"
1318 "\n",
ea18e0f0
KK
1319 stat.ios[STAT_READ],
1320 stat.merges[STAT_READ],
1321 (unsigned long long)stat.sectors[STAT_READ],
1322 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
1323 stat.ios[STAT_WRITE],
1324 stat.merges[STAT_WRITE],
1325 (unsigned long long)stat.sectors[STAT_WRITE],
1326 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
3ad5cee5 1327 inflight,
ea18e0f0 1328 jiffies_to_msecs(stat.io_ticks),
8cd5b8fc
KK
1329 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1330 stat.nsecs[STAT_WRITE] +
1331 stat.nsecs[STAT_DISCARD] +
1332 stat.nsecs[STAT_FLUSH],
1333 NSEC_PER_MSEC),
ea18e0f0
KK
1334 stat.ios[STAT_DISCARD],
1335 stat.merges[STAT_DISCARD],
1336 (unsigned long long)stat.sectors[STAT_DISCARD],
1337 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
1338 stat.ios[STAT_FLUSH],
1339 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
3ad5cee5
CH
1340}
1341
1342ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1343 char *buf)
1344{
1345 struct hd_struct *p = dev_to_part(dev);
1346 struct request_queue *q = part_to_disk(p)->queue;
1347 unsigned int inflight[2];
1348
1349 part_in_flight_rw(q, p, inflight);
1350 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1351}
1352
edfaa7c3
KS
1353static ssize_t disk_capability_show(struct device *dev,
1354 struct device_attribute *attr, char *buf)
86ce18d7 1355{
edfaa7c3
KS
1356 struct gendisk *disk = dev_to_disk(dev);
1357
1358 return sprintf(buf, "%x\n", disk->flags);
86ce18d7 1359}
edfaa7c3 1360
c72758f3
MP
1361static ssize_t disk_alignment_offset_show(struct device *dev,
1362 struct device_attribute *attr,
1363 char *buf)
1364{
1365 struct gendisk *disk = dev_to_disk(dev);
1366
1367 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1368}
1369
86b37281
MP
1370static ssize_t disk_discard_alignment_show(struct device *dev,
1371 struct device_attribute *attr,
1372 char *buf)
1373{
1374 struct gendisk *disk = dev_to_disk(dev);
1375
dd3d145d 1376 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
86b37281
MP
1377}
1378
5657a819
JP
1379static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1380static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1381static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1382static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1383static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1384static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1385static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1386static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1387static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1388static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1389static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1390static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
3ad5cee5 1391
c17bb495 1392#ifdef CONFIG_FAIL_MAKE_REQUEST
3ad5cee5
CH
1393ssize_t part_fail_show(struct device *dev,
1394 struct device_attribute *attr, char *buf)
1395{
1396 struct hd_struct *p = dev_to_part(dev);
1397
1398 return sprintf(buf, "%d\n", p->make_it_fail);
1399}
1400
1401ssize_t part_fail_store(struct device *dev,
1402 struct device_attribute *attr,
1403 const char *buf, size_t count)
1404{
1405 struct hd_struct *p = dev_to_part(dev);
1406 int i;
1407
1408 if (count > 0 && sscanf(buf, "%d", &i) > 0)
1409 p->make_it_fail = (i == 0) ? 0 : 1;
1410
1411 return count;
1412}
1413
edfaa7c3 1414static struct device_attribute dev_attr_fail =
5657a819 1415 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
3ad5cee5
CH
1416#endif /* CONFIG_FAIL_MAKE_REQUEST */
1417
581d4e28
JA
1418#ifdef CONFIG_FAIL_IO_TIMEOUT
1419static struct device_attribute dev_attr_fail_timeout =
5657a819 1420 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
581d4e28 1421#endif
edfaa7c3
KS
1422
1423static struct attribute *disk_attrs[] = {
1424 &dev_attr_range.attr,
1f014290 1425 &dev_attr_ext_range.attr,
edfaa7c3 1426 &dev_attr_removable.attr,
8ddcd653 1427 &dev_attr_hidden.attr,
1c9ce527 1428 &dev_attr_ro.attr,
edfaa7c3 1429 &dev_attr_size.attr,
c72758f3 1430 &dev_attr_alignment_offset.attr,
86b37281 1431 &dev_attr_discard_alignment.attr,
edfaa7c3
KS
1432 &dev_attr_capability.attr,
1433 &dev_attr_stat.attr,
316d315b 1434 &dev_attr_inflight.attr,
99e6608c 1435 &dev_attr_badblocks.attr,
edfaa7c3
KS
1436#ifdef CONFIG_FAIL_MAKE_REQUEST
1437 &dev_attr_fail.attr,
581d4e28
JA
1438#endif
1439#ifdef CONFIG_FAIL_IO_TIMEOUT
1440 &dev_attr_fail_timeout.attr,
edfaa7c3
KS
1441#endif
1442 NULL
1443};
1444
9438b3e0
DW
1445static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1446{
1447 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1448 struct gendisk *disk = dev_to_disk(dev);
1449
1450 if (a == &dev_attr_badblocks.attr && !disk->bb)
1451 return 0;
1452 return a->mode;
1453}
1454
edfaa7c3
KS
1455static struct attribute_group disk_attr_group = {
1456 .attrs = disk_attrs,
9438b3e0 1457 .is_visible = disk_visible,
edfaa7c3
KS
1458};
1459
a4dbd674 1460static const struct attribute_group *disk_attr_groups[] = {
edfaa7c3
KS
1461 &disk_attr_group,
1462 NULL
1da177e4
LT
1463};
1464
540eed56
TH
1465/**
1466 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1467 * @disk: disk to replace part_tbl for
1468 * @new_ptbl: new part_tbl to install
1469 *
1470 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1471 * original ptbl is freed using RCU callback.
1472 *
1473 * LOCKING:
6d2cf6f2 1474 * Matching bd_mutex locked or the caller is the only user of @disk.
540eed56
TH
1475 */
1476static void disk_replace_part_tbl(struct gendisk *disk,
1477 struct disk_part_tbl *new_ptbl)
1478{
6d2cf6f2
BVA
1479 struct disk_part_tbl *old_ptbl =
1480 rcu_dereference_protected(disk->part_tbl, 1);
540eed56
TH
1481
1482 rcu_assign_pointer(disk->part_tbl, new_ptbl);
a6f23657
JA
1483
1484 if (old_ptbl) {
1485 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
57bdfbf9 1486 kfree_rcu(old_ptbl, rcu_head);
a6f23657 1487 }
540eed56
TH
1488}
1489
1490/**
1491 * disk_expand_part_tbl - expand disk->part_tbl
1492 * @disk: disk to expand part_tbl for
1493 * @partno: expand such that this partno can fit in
1494 *
1495 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1496 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1497 *
1498 * LOCKING:
6d2cf6f2
BVA
1499 * Matching bd_mutex locked or the caller is the only user of @disk.
1500 * Might sleep.
540eed56
TH
1501 *
1502 * RETURNS:
1503 * 0 on success, -errno on failure.
1504 */
1505int disk_expand_part_tbl(struct gendisk *disk, int partno)
1506{
6d2cf6f2
BVA
1507 struct disk_part_tbl *old_ptbl =
1508 rcu_dereference_protected(disk->part_tbl, 1);
540eed56
TH
1509 struct disk_part_tbl *new_ptbl;
1510 int len = old_ptbl ? old_ptbl->len : 0;
5fabcb4c 1511 int i, target;
5fabcb4c
JA
1512
1513 /*
1514 * check for int overflow, since we can get here from blkpg_ioctl()
1515 * with a user passed 'partno'.
1516 */
1517 target = partno + 1;
1518 if (target < 0)
1519 return -EINVAL;
540eed56
TH
1520
1521 /* disk_max_parts() is zero during initialization, ignore if so */
1522 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1523 return -EINVAL;
1524
1525 if (target <= len)
1526 return 0;
1527
78b90a2c
GS
1528 new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL,
1529 disk->node_id);
540eed56
TH
1530 if (!new_ptbl)
1531 return -ENOMEM;
1532
540eed56
TH
1533 new_ptbl->len = target;
1534
1535 for (i = 0; i < len; i++)
1536 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1537
1538 disk_replace_part_tbl(disk, new_ptbl);
1539 return 0;
1540}
1541
edfaa7c3 1542static void disk_release(struct device *dev)
1da177e4 1543{
edfaa7c3
KS
1544 struct gendisk *disk = dev_to_disk(dev);
1545
2da78092 1546 blk_free_devt(dev->devt);
77ea887e 1547 disk_release_events(disk);
1da177e4 1548 kfree(disk->random);
540eed56 1549 disk_replace_part_tbl(disk, NULL);
b54e5ed8 1550 hd_free_part(&disk->part0);
523e1d39
TH
1551 if (disk->queue)
1552 blk_put_queue(disk->queue);
1da177e4
LT
1553 kfree(disk);
1554}
edfaa7c3
KS
1555struct class block_class = {
1556 .name = "block",
1da177e4
LT
1557};
1558
3c2670e6 1559static char *block_devnode(struct device *dev, umode_t *mode,
4e4098a3 1560 kuid_t *uid, kgid_t *gid)
b03f38b6
KS
1561{
1562 struct gendisk *disk = dev_to_disk(dev);
1563
348e114b
CH
1564 if (disk->fops->devnode)
1565 return disk->fops->devnode(disk, mode);
b03f38b6
KS
1566 return NULL;
1567}
1568
edf8ff55 1569static const struct device_type disk_type = {
edfaa7c3
KS
1570 .name = "disk",
1571 .groups = disk_attr_groups,
1572 .release = disk_release,
e454cea2 1573 .devnode = block_devnode,
1da177e4
LT
1574};
1575
a6e2ba88 1576#ifdef CONFIG_PROC_FS
cf771cb5
TH
1577/*
1578 * aggregate disk stat collector. Uses the same stats that the sysfs
1579 * entries do, above, but makes them available through one seq_file.
1580 *
1581 * The output looks suspiciously like /proc/partitions with a bunch of
1582 * extra fields.
1583 */
1584static int diskstats_show(struct seq_file *seqf, void *v)
1da177e4
LT
1585{
1586 struct gendisk *gp = v;
e71bf0d0
TH
1587 struct disk_part_iter piter;
1588 struct hd_struct *hd;
1da177e4 1589 char buf[BDEVNAME_SIZE];
e016b782 1590 unsigned int inflight;
ea18e0f0 1591 struct disk_stats stat;
1da177e4
LT
1592
1593 /*
ed9e1982 1594 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
cf771cb5 1595 seq_puts(seqf, "major minor name"
1da177e4
LT
1596 " rio rmerge rsect ruse wio wmerge "
1597 "wsect wuse running use aveq"
1598 "\n\n");
1599 */
9f5e4865 1600
71982a40 1601 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
e71bf0d0 1602 while ((hd = disk_part_iter_next(&piter))) {
ea18e0f0 1603 part_stat_read_all(hd, &stat);
e016b782 1604 inflight = part_in_flight(gp->queue, hd);
ea18e0f0 1605
bdca3c87
MC
1606 seq_printf(seqf, "%4d %7d %s "
1607 "%lu %lu %lu %u "
1608 "%lu %lu %lu %u "
1609 "%u %u %u "
b6866318
KK
1610 "%lu %lu %lu %u "
1611 "%lu %u"
1612 "\n",
f331c029
TH
1613 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1614 disk_name(gp, hd->partno, buf),
ea18e0f0
KK
1615 stat.ios[STAT_READ],
1616 stat.merges[STAT_READ],
1617 stat.sectors[STAT_READ],
1618 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1619 NSEC_PER_MSEC),
1620 stat.ios[STAT_WRITE],
1621 stat.merges[STAT_WRITE],
1622 stat.sectors[STAT_WRITE],
1623 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1624 NSEC_PER_MSEC),
e016b782 1625 inflight,
ea18e0f0 1626 jiffies_to_msecs(stat.io_ticks),
8cd5b8fc
KK
1627 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1628 stat.nsecs[STAT_WRITE] +
1629 stat.nsecs[STAT_DISCARD] +
1630 stat.nsecs[STAT_FLUSH],
1631 NSEC_PER_MSEC),
ea18e0f0
KK
1632 stat.ios[STAT_DISCARD],
1633 stat.merges[STAT_DISCARD],
1634 stat.sectors[STAT_DISCARD],
1635 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1636 NSEC_PER_MSEC),
1637 stat.ios[STAT_FLUSH],
1638 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1639 NSEC_PER_MSEC)
28f39d55 1640 );
1da177e4 1641 }
e71bf0d0 1642 disk_part_iter_exit(&piter);
9f5e4865 1643
1da177e4
LT
1644 return 0;
1645}
1646
31d85ab2 1647static const struct seq_operations diskstats_op = {
def4e38d
TH
1648 .start = disk_seqf_start,
1649 .next = disk_seqf_next,
1650 .stop = disk_seqf_stop,
1da177e4
LT
1651 .show = diskstats_show
1652};
f500975a
AD
1653
1654static int __init proc_genhd_init(void)
1655{
fddda2b7
CH
1656 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1657 proc_create_seq("partitions", 0, NULL, &partitions_op);
f500975a
AD
1658 return 0;
1659}
1660module_init(proc_genhd_init);
a6e2ba88 1661#endif /* CONFIG_PROC_FS */
1da177e4 1662
cf771cb5 1663dev_t blk_lookup_devt(const char *name, int partno)
a142be85 1664{
def4e38d
TH
1665 dev_t devt = MKDEV(0, 0);
1666 struct class_dev_iter iter;
1667 struct device *dev;
a142be85 1668
def4e38d
TH
1669 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1670 while ((dev = class_dev_iter_next(&iter))) {
a142be85 1671 struct gendisk *disk = dev_to_disk(dev);
548b10eb 1672 struct hd_struct *part;
a142be85 1673
3ada8b7e 1674 if (strcmp(dev_name(dev), name))
f331c029 1675 continue;
f331c029 1676
41b8c853
NB
1677 if (partno < disk->minors) {
1678 /* We need to return the right devno, even
1679 * if the partition doesn't exist yet.
1680 */
1681 devt = MKDEV(MAJOR(dev->devt),
1682 MINOR(dev->devt) + partno);
1683 break;
1684 }
548b10eb 1685 part = disk_get_part(disk, partno);
2bbedcb4 1686 if (part) {
f331c029 1687 devt = part_devt(part);
e71bf0d0 1688 disk_put_part(part);
548b10eb 1689 break;
def4e38d 1690 }
548b10eb 1691 disk_put_part(part);
5c0ef6d0 1692 }
def4e38d 1693 class_dev_iter_exit(&iter);
edfaa7c3
KS
1694 return devt;
1695}
edfaa7c3 1696
e319e1fb 1697struct gendisk *__alloc_disk_node(int minors, int node_id)
1946089a
CL
1698{
1699 struct gendisk *disk;
6d2cf6f2 1700 struct disk_part_tbl *ptbl;
1946089a 1701
de65b012
CH
1702 if (minors > DISK_MAX_PARTS) {
1703 printk(KERN_ERR
7fb52621 1704 "block: can't allocate more than %d partitions\n",
de65b012
CH
1705 DISK_MAX_PARTS);
1706 minors = DISK_MAX_PARTS;
1707 }
1946089a 1708
c1b511eb 1709 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
1da177e4 1710 if (disk) {
074a7aca 1711 if (!init_part_stats(&disk->part0)) {
1da177e4
LT
1712 kfree(disk);
1713 return NULL;
1714 }
56c0908c 1715 init_rwsem(&disk->lookup_sem);
bf91db18 1716 disk->node_id = node_id;
540eed56
TH
1717 if (disk_expand_part_tbl(disk, 0)) {
1718 free_part_stats(&disk->part0);
b5d0b9df
TH
1719 kfree(disk);
1720 return NULL;
1da177e4 1721 }
6d2cf6f2
BVA
1722 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1723 rcu_assign_pointer(ptbl->part[0], &disk->part0);
6c23a968 1724
c83f6bf9
VG
1725 /*
1726 * set_capacity() and get_capacity() currently don't use
1727 * seqcounter to read/update the part0->nr_sects. Still init
1728 * the counter as we can read the sectors in IO submission
1729 * patch using seqence counters.
1730 *
1731 * TODO: Ideally set_capacity() and get_capacity() should be
1732 * converted to make use of bd_mutex and sequence counters.
1733 */
07c4e1e8 1734 hd_sects_seq_init(&disk->part0);
6c71013e
ML
1735 if (hd_ref_init(&disk->part0)) {
1736 hd_free_part(&disk->part0);
1737 kfree(disk);
1738 return NULL;
1739 }
b5d0b9df 1740
1da177e4 1741 disk->minors = minors;
1da177e4 1742 rand_initialize_disk(disk);
ed9e1982
TH
1743 disk_to_dev(disk)->class = &block_class;
1744 disk_to_dev(disk)->type = &disk_type;
1745 device_initialize(disk_to_dev(disk));
1da177e4
LT
1746 }
1747 return disk;
1748}
e319e1fb 1749EXPORT_SYMBOL(__alloc_disk_node);
1da177e4 1750
3079c22e 1751struct kobject *get_disk_and_module(struct gendisk *disk)
1da177e4
LT
1752{
1753 struct module *owner;
1754 struct kobject *kobj;
1755
1756 if (!disk->fops)
1757 return NULL;
1758 owner = disk->fops->owner;
1759 if (owner && !try_module_get(owner))
1760 return NULL;
d01b2dcb 1761 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
1da177e4
LT
1762 if (kobj == NULL) {
1763 module_put(owner);
1764 return NULL;
1765 }
1766 return kobj;
1767
1768}
3079c22e 1769EXPORT_SYMBOL(get_disk_and_module);
1da177e4
LT
1770
1771void put_disk(struct gendisk *disk)
1772{
1773 if (disk)
ed9e1982 1774 kobject_put(&disk_to_dev(disk)->kobj);
1da177e4 1775}
1da177e4
LT
1776EXPORT_SYMBOL(put_disk);
1777
9df6c299
JK
1778/*
1779 * This is a counterpart of get_disk_and_module() and thus also of
1780 * get_gendisk().
1781 */
1782void put_disk_and_module(struct gendisk *disk)
1783{
1784 if (disk) {
1785 struct module *owner = disk->fops->owner;
1786
1787 put_disk(disk);
1788 module_put(owner);
1789 }
1790}
1791EXPORT_SYMBOL(put_disk_and_module);
1792
e3264a4d
HR
1793static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1794{
1795 char event[] = "DISK_RO=1";
1796 char *envp[] = { event, NULL };
1797
1798 if (!ro)
1799 event[8] = '0';
1800 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1801}
1802
1da177e4
LT
1803void set_device_ro(struct block_device *bdev, int flag)
1804{
b7db9956 1805 bdev->bd_part->policy = flag;
1da177e4
LT
1806}
1807
1808EXPORT_SYMBOL(set_device_ro);
1809
1810void set_disk_ro(struct gendisk *disk, int flag)
1811{
e71bf0d0
TH
1812 struct disk_part_iter piter;
1813 struct hd_struct *part;
1814
e3264a4d
HR
1815 if (disk->part0.policy != flag) {
1816 set_disk_ro_uevent(disk, flag);
1817 disk->part0.policy = flag;
1818 }
1819
1820 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
e71bf0d0
TH
1821 while ((part = disk_part_iter_next(&piter)))
1822 part->policy = flag;
1823 disk_part_iter_exit(&piter);
1da177e4
LT
1824}
1825
1826EXPORT_SYMBOL(set_disk_ro);
1827
1828int bdev_read_only(struct block_device *bdev)
1829{
1830 if (!bdev)
1831 return 0;
b7db9956 1832 return bdev->bd_part->policy;
1da177e4
LT
1833}
1834
1835EXPORT_SYMBOL(bdev_read_only);
1836
77ea887e
TH
1837/*
1838 * Disk events - monitor disk events like media change and eject request.
1839 */
1840struct disk_events {
1841 struct list_head node; /* all disk_event's */
1842 struct gendisk *disk; /* the associated disk */
1843 spinlock_t lock;
1844
fdd514e1 1845 struct mutex block_mutex; /* protects blocking */
77ea887e
TH
1846 int block; /* event blocking depth */
1847 unsigned int pending; /* events already sent out */
1848 unsigned int clearing; /* events being cleared */
1849
1850 long poll_msecs; /* interval, -1 for default */
1851 struct delayed_work dwork;
1852};
1853
1854static const char *disk_events_strs[] = {
1855 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1856 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1857};
1858
1859static char *disk_uevents[] = {
1860 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1861 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1862};
1863
1864/* list of all disk_events */
1865static DEFINE_MUTEX(disk_events_mutex);
1866static LIST_HEAD(disk_events);
1867
1868/* disable in-kernel polling by default */
1fe8f348 1869static unsigned long disk_events_dfl_poll_msecs;
77ea887e
TH
1870
1871static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1872{
1873 struct disk_events *ev = disk->ev;
1874 long intv_msecs = 0;
1875
1876 /*
1877 * If device-specific poll interval is set, always use it. If
673387a9 1878 * the default is being used, poll if the POLL flag is set.
77ea887e
TH
1879 */
1880 if (ev->poll_msecs >= 0)
1881 intv_msecs = ev->poll_msecs;
c92e2f04 1882 else if (disk->event_flags & DISK_EVENT_FLAG_POLL)
77ea887e
TH
1883 intv_msecs = disk_events_dfl_poll_msecs;
1884
1885 return msecs_to_jiffies(intv_msecs);
1886}
1887
c3af54af
TH
1888/**
1889 * disk_block_events - block and flush disk event checking
1890 * @disk: disk to block events for
1891 *
1892 * On return from this function, it is guaranteed that event checking
1893 * isn't in progress and won't happen until unblocked by
1894 * disk_unblock_events(). Events blocking is counted and the actual
1895 * unblocking happens after the matching number of unblocks are done.
1896 *
1897 * Note that this intentionally does not block event checking from
1898 * disk_clear_events().
1899 *
1900 * CONTEXT:
1901 * Might sleep.
1902 */
1903void disk_block_events(struct gendisk *disk)
77ea887e
TH
1904{
1905 struct disk_events *ev = disk->ev;
1906 unsigned long flags;
1907 bool cancel;
1908
c3af54af
TH
1909 if (!ev)
1910 return;
1911
fdd514e1
TH
1912 /*
1913 * Outer mutex ensures that the first blocker completes canceling
1914 * the event work before further blockers are allowed to finish.
1915 */
1916 mutex_lock(&ev->block_mutex);
1917
77ea887e
TH
1918 spin_lock_irqsave(&ev->lock, flags);
1919 cancel = !ev->block++;
1920 spin_unlock_irqrestore(&ev->lock, flags);
1921
c3af54af
TH
1922 if (cancel)
1923 cancel_delayed_work_sync(&disk->ev->dwork);
fdd514e1
TH
1924
1925 mutex_unlock(&ev->block_mutex);
77ea887e
TH
1926}
1927
1928static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1929{
1930 struct disk_events *ev = disk->ev;
1931 unsigned long intv;
1932 unsigned long flags;
1933
1934 spin_lock_irqsave(&ev->lock, flags);
1935
1936 if (WARN_ON_ONCE(ev->block <= 0))
1937 goto out_unlock;
1938
1939 if (--ev->block)
1940 goto out_unlock;
1941
77ea887e 1942 intv = disk_events_poll_jiffies(disk);
77ea887e 1943 if (check_now)
695588f9
VK
1944 queue_delayed_work(system_freezable_power_efficient_wq,
1945 &ev->dwork, 0);
77ea887e 1946 else if (intv)
695588f9
VK
1947 queue_delayed_work(system_freezable_power_efficient_wq,
1948 &ev->dwork, intv);
77ea887e
TH
1949out_unlock:
1950 spin_unlock_irqrestore(&ev->lock, flags);
1951}
1952
77ea887e
TH
1953/**
1954 * disk_unblock_events - unblock disk event checking
1955 * @disk: disk to unblock events for
1956 *
1957 * Undo disk_block_events(). When the block count reaches zero, it
1958 * starts events polling if configured.
1959 *
1960 * CONTEXT:
1961 * Don't care. Safe to call from irq context.
1962 */
1963void disk_unblock_events(struct gendisk *disk)
1964{
1965 if (disk->ev)
facc31dd 1966 __disk_unblock_events(disk, false);
77ea887e
TH
1967}
1968
1969/**
85ef06d1
TH
1970 * disk_flush_events - schedule immediate event checking and flushing
1971 * @disk: disk to check and flush events for
1972 * @mask: events to flush
77ea887e 1973 *
85ef06d1
TH
1974 * Schedule immediate event checking on @disk if not blocked. Events in
1975 * @mask are scheduled to be cleared from the driver. Note that this
1976 * doesn't clear the events from @disk->ev.
77ea887e
TH
1977 *
1978 * CONTEXT:
85ef06d1 1979 * If @mask is non-zero must be called with bdev->bd_mutex held.
77ea887e 1980 */
85ef06d1 1981void disk_flush_events(struct gendisk *disk, unsigned int mask)
77ea887e 1982{
a9dce2a3 1983 struct disk_events *ev = disk->ev;
a9dce2a3
TH
1984
1985 if (!ev)
1986 return;
1987
85ef06d1
TH
1988 spin_lock_irq(&ev->lock);
1989 ev->clearing |= mask;
41f63c53 1990 if (!ev->block)
695588f9
VK
1991 mod_delayed_work(system_freezable_power_efficient_wq,
1992 &ev->dwork, 0);
85ef06d1 1993 spin_unlock_irq(&ev->lock);
77ea887e 1994}
77ea887e
TH
1995
1996/**
1997 * disk_clear_events - synchronously check, clear and return pending events
1998 * @disk: disk to fetch and clear events from
da3dae54 1999 * @mask: mask of events to be fetched and cleared
77ea887e
TH
2000 *
2001 * Disk events are synchronously checked and pending events in @mask
2002 * are cleared and returned. This ignores the block count.
2003 *
2004 * CONTEXT:
2005 * Might sleep.
2006 */
2007unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
2008{
2009 const struct block_device_operations *bdops = disk->fops;
2010 struct disk_events *ev = disk->ev;
2011 unsigned int pending;
12c2bdb2 2012 unsigned int clearing = mask;
77ea887e
TH
2013
2014 if (!ev) {
2015 /* for drivers still using the old ->media_changed method */
2016 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
2017 bdops->media_changed && bdops->media_changed(disk))
2018 return DISK_EVENT_MEDIA_CHANGE;
2019 return 0;
2020 }
2021
12c2bdb2
DB
2022 disk_block_events(disk);
2023
2024 /*
2025 * store the union of mask and ev->clearing on the stack so that the
2026 * race with disk_flush_events does not cause ambiguity (ev->clearing
2027 * can still be modified even if events are blocked).
2028 */
77ea887e 2029 spin_lock_irq(&ev->lock);
12c2bdb2
DB
2030 clearing |= ev->clearing;
2031 ev->clearing = 0;
77ea887e
TH
2032 spin_unlock_irq(&ev->lock);
2033
12c2bdb2 2034 disk_check_events(ev, &clearing);
aea24a8b 2035 /*
12c2bdb2
DB
2036 * if ev->clearing is not 0, the disk_flush_events got called in the
2037 * middle of this function, so we want to run the workfn without delay.
aea24a8b 2038 */
12c2bdb2 2039 __disk_unblock_events(disk, ev->clearing ? true : false);
77ea887e
TH
2040
2041 /* then, fetch and clear pending events */
2042 spin_lock_irq(&ev->lock);
77ea887e
TH
2043 pending = ev->pending & mask;
2044 ev->pending &= ~mask;
2045 spin_unlock_irq(&ev->lock);
12c2bdb2 2046 WARN_ON_ONCE(clearing & mask);
77ea887e
TH
2047
2048 return pending;
2049}
2050
12c2bdb2
DB
2051/*
2052 * Separate this part out so that a different pointer for clearing_ptr can be
2053 * passed in for disk_clear_events.
2054 */
77ea887e
TH
2055static void disk_events_workfn(struct work_struct *work)
2056{
2057 struct delayed_work *dwork = to_delayed_work(work);
2058 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
12c2bdb2
DB
2059
2060 disk_check_events(ev, &ev->clearing);
2061}
2062
2063static void disk_check_events(struct disk_events *ev,
2064 unsigned int *clearing_ptr)
2065{
77ea887e
TH
2066 struct gendisk *disk = ev->disk;
2067 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
12c2bdb2 2068 unsigned int clearing = *clearing_ptr;
77ea887e
TH
2069 unsigned int events;
2070 unsigned long intv;
2071 int nr_events = 0, i;
2072
2073 /* check events */
2074 events = disk->fops->check_events(disk, clearing);
2075
2076 /* accumulate pending events and schedule next poll if necessary */
2077 spin_lock_irq(&ev->lock);
2078
2079 events &= ~ev->pending;
2080 ev->pending |= events;
12c2bdb2 2081 *clearing_ptr &= ~clearing;
77ea887e
TH
2082
2083 intv = disk_events_poll_jiffies(disk);
2084 if (!ev->block && intv)
695588f9
VK
2085 queue_delayed_work(system_freezable_power_efficient_wq,
2086 &ev->dwork, intv);
77ea887e
TH
2087
2088 spin_unlock_irq(&ev->lock);
2089
7c88a168
TH
2090 /*
2091 * Tell userland about new events. Only the events listed in
c92e2f04
MW
2092 * @disk->events are reported, and only if DISK_EVENT_FLAG_UEVENT
2093 * is set. Otherwise, events are processed internally but never
2094 * get reported to userland.
7c88a168 2095 */
77ea887e 2096 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
c92e2f04
MW
2097 if ((events & disk->events & (1 << i)) &&
2098 (disk->event_flags & DISK_EVENT_FLAG_UEVENT))
77ea887e
TH
2099 envp[nr_events++] = disk_uevents[i];
2100
2101 if (nr_events)
2102 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
2103}
2104
2105/*
2106 * A disk events enabled device has the following sysfs nodes under
2107 * its /sys/block/X/ directory.
2108 *
2109 * events : list of all supported events
2110 * events_async : list of events which can be detected w/o polling
673387a9 2111 * (always empty, only for backwards compatibility)
77ea887e
TH
2112 * events_poll_msecs : polling interval, 0: disable, -1: system default
2113 */
2114static ssize_t __disk_events_show(unsigned int events, char *buf)
2115{
2116 const char *delim = "";
2117 ssize_t pos = 0;
2118 int i;
2119
2120 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
2121 if (events & (1 << i)) {
2122 pos += sprintf(buf + pos, "%s%s",
2123 delim, disk_events_strs[i]);
2124 delim = " ";
2125 }
2126 if (pos)
2127 pos += sprintf(buf + pos, "\n");
2128 return pos;
2129}
2130
2131static ssize_t disk_events_show(struct device *dev,
2132 struct device_attribute *attr, char *buf)
2133{
2134 struct gendisk *disk = dev_to_disk(dev);
2135
c92e2f04
MW
2136 if (!(disk->event_flags & DISK_EVENT_FLAG_UEVENT))
2137 return 0;
2138
77ea887e
TH
2139 return __disk_events_show(disk->events, buf);
2140}
2141
2142static ssize_t disk_events_async_show(struct device *dev,
2143 struct device_attribute *attr, char *buf)
2144{
673387a9 2145 return 0;
77ea887e
TH
2146}
2147
2148static ssize_t disk_events_poll_msecs_show(struct device *dev,
2149 struct device_attribute *attr,
2150 char *buf)
2151{
2152 struct gendisk *disk = dev_to_disk(dev);
2153
cdf3e3de
MW
2154 if (!disk->ev)
2155 return sprintf(buf, "-1\n");
2156
77ea887e
TH
2157 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
2158}
2159
2160static ssize_t disk_events_poll_msecs_store(struct device *dev,
2161 struct device_attribute *attr,
2162 const char *buf, size_t count)
2163{
2164 struct gendisk *disk = dev_to_disk(dev);
2165 long intv;
2166
2167 if (!count || !sscanf(buf, "%ld", &intv))
2168 return -EINVAL;
2169
2170 if (intv < 0 && intv != -1)
2171 return -EINVAL;
2172
cdf3e3de
MW
2173 if (!disk->ev)
2174 return -ENODEV;
2175
c3af54af 2176 disk_block_events(disk);
77ea887e
TH
2177 disk->ev->poll_msecs = intv;
2178 __disk_unblock_events(disk, true);
2179
2180 return count;
2181}
2182
5657a819
JP
2183static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
2184static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
2185static const DEVICE_ATTR(events_poll_msecs, 0644,
77ea887e
TH
2186 disk_events_poll_msecs_show,
2187 disk_events_poll_msecs_store);
2188
2189static const struct attribute *disk_events_attrs[] = {
2190 &dev_attr_events.attr,
2191 &dev_attr_events_async.attr,
2192 &dev_attr_events_poll_msecs.attr,
2193 NULL,
2194};
2195
2196/*
2197 * The default polling interval can be specified by the kernel
2198 * parameter block.events_dfl_poll_msecs which defaults to 0
2199 * (disable). This can also be modified runtime by writing to
1624b0b2 2200 * /sys/module/block/parameters/events_dfl_poll_msecs.
77ea887e
TH
2201 */
2202static int disk_events_set_dfl_poll_msecs(const char *val,
2203 const struct kernel_param *kp)
2204{
2205 struct disk_events *ev;
2206 int ret;
2207
2208 ret = param_set_ulong(val, kp);
2209 if (ret < 0)
2210 return ret;
2211
2212 mutex_lock(&disk_events_mutex);
2213
2214 list_for_each_entry(ev, &disk_events, node)
85ef06d1 2215 disk_flush_events(ev->disk, 0);
77ea887e
TH
2216
2217 mutex_unlock(&disk_events_mutex);
2218
2219 return 0;
2220}
2221
2222static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
2223 .set = disk_events_set_dfl_poll_msecs,
2224 .get = param_get_ulong,
2225};
2226
2227#undef MODULE_PARAM_PREFIX
2228#define MODULE_PARAM_PREFIX "block."
2229
2230module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
2231 &disk_events_dfl_poll_msecs, 0644);
2232
2233/*
9f53d2fe 2234 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
77ea887e 2235 */
9f53d2fe 2236static void disk_alloc_events(struct gendisk *disk)
77ea887e
TH
2237{
2238 struct disk_events *ev;
2239
cdf3e3de 2240 if (!disk->fops->check_events || !disk->events)
77ea887e
TH
2241 return;
2242
2243 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
2244 if (!ev) {
2245 pr_warn("%s: failed to initialize events\n", disk->disk_name);
2246 return;
2247 }
2248
77ea887e
TH
2249 INIT_LIST_HEAD(&ev->node);
2250 ev->disk = disk;
2251 spin_lock_init(&ev->lock);
fdd514e1 2252 mutex_init(&ev->block_mutex);
77ea887e
TH
2253 ev->block = 1;
2254 ev->poll_msecs = -1;
2255 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
2256
9f53d2fe
SG
2257 disk->ev = ev;
2258}
2259
2260static void disk_add_events(struct gendisk *disk)
2261{
9f53d2fe
SG
2262 /* FIXME: error handling */
2263 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2264 pr_warn("%s: failed to create sysfs files for events\n",
2265 disk->disk_name);
2266
cdf3e3de
MW
2267 if (!disk->ev)
2268 return;
2269
77ea887e 2270 mutex_lock(&disk_events_mutex);
9f53d2fe 2271 list_add_tail(&disk->ev->node, &disk_events);
77ea887e
TH
2272 mutex_unlock(&disk_events_mutex);
2273
2274 /*
2275 * Block count is initialized to 1 and the following initial
2276 * unblock kicks it into action.
2277 */
2278 __disk_unblock_events(disk, true);
2279}
2280
2281static void disk_del_events(struct gendisk *disk)
2282{
cdf3e3de
MW
2283 if (disk->ev) {
2284 disk_block_events(disk);
77ea887e 2285
cdf3e3de
MW
2286 mutex_lock(&disk_events_mutex);
2287 list_del_init(&disk->ev->node);
2288 mutex_unlock(&disk_events_mutex);
2289 }
77ea887e
TH
2290
2291 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2292}
2293
2294static void disk_release_events(struct gendisk *disk)
2295{
2296 /* the block count should be 1 from disk_del_events() */
2297 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2298 kfree(disk->ev);
2299}