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