block: fix __blkdev_get and add_disk race condition
[pandora-kernel.git] / block / genhd.c
1 /*
2  *  gendisk handling
3  */
4
5 #include <linux/module.h>
6 #include <linux/fs.h>
7 #include <linux/genhd.h>
8 #include <linux/kdev_t.h>
9 #include <linux/kernel.h>
10 #include <linux/blkdev.h>
11 #include <linux/init.h>
12 #include <linux/spinlock.h>
13 #include <linux/proc_fs.h>
14 #include <linux/seq_file.h>
15 #include <linux/slab.h>
16 #include <linux/kmod.h>
17 #include <linux/kobj_map.h>
18 #include <linux/buffer_head.h>
19 #include <linux/mutex.h>
20 #include <linux/idr.h>
21 #include <linux/log2.h>
22
23 #include "blk.h"
24
25 static DEFINE_MUTEX(block_class_lock);
26 struct kobject *block_depr;
27
28 /* for extended dynamic devt allocation, currently only one major is used */
29 #define MAX_EXT_DEVT            (1 << MINORBITS)
30
31 /* For extended devt allocation.  ext_devt_mutex prevents look up
32  * results from going away underneath its user.
33  */
34 static DEFINE_MUTEX(ext_devt_mutex);
35 static DEFINE_IDR(ext_devt_idr);
36
37 static struct device_type disk_type;
38
39 static void disk_alloc_events(struct gendisk *disk);
40 static void disk_add_events(struct gendisk *disk);
41 static void disk_del_events(struct gendisk *disk);
42 static void disk_release_events(struct gendisk *disk);
43
44 /**
45  * disk_get_part - get partition
46  * @disk: disk to look partition from
47  * @partno: partition number
48  *
49  * Look for partition @partno from @disk.  If found, increment
50  * reference count and return it.
51  *
52  * CONTEXT:
53  * Don't care.
54  *
55  * RETURNS:
56  * Pointer to the found partition on success, NULL if not found.
57  */
58 struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
59 {
60         struct hd_struct *part = NULL;
61         struct disk_part_tbl *ptbl;
62
63         if (unlikely(partno < 0))
64                 return NULL;
65
66         rcu_read_lock();
67
68         ptbl = rcu_dereference(disk->part_tbl);
69         if (likely(partno < ptbl->len)) {
70                 part = rcu_dereference(ptbl->part[partno]);
71                 if (part)
72                         get_device(part_to_dev(part));
73         }
74
75         rcu_read_unlock();
76
77         return part;
78 }
79 EXPORT_SYMBOL_GPL(disk_get_part);
80
81 /**
82  * disk_part_iter_init - initialize partition iterator
83  * @piter: iterator to initialize
84  * @disk: disk to iterate over
85  * @flags: DISK_PITER_* flags
86  *
87  * Initialize @piter so that it iterates over partitions of @disk.
88  *
89  * CONTEXT:
90  * Don't care.
91  */
92 void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
93                           unsigned int flags)
94 {
95         struct disk_part_tbl *ptbl;
96
97         rcu_read_lock();
98         ptbl = rcu_dereference(disk->part_tbl);
99
100         piter->disk = disk;
101         piter->part = NULL;
102
103         if (flags & DISK_PITER_REVERSE)
104                 piter->idx = ptbl->len - 1;
105         else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
106                 piter->idx = 0;
107         else
108                 piter->idx = 1;
109
110         piter->flags = flags;
111
112         rcu_read_unlock();
113 }
114 EXPORT_SYMBOL_GPL(disk_part_iter_init);
115
116 /**
117  * disk_part_iter_next - proceed iterator to the next partition and return it
118  * @piter: iterator of interest
119  *
120  * Proceed @piter to the next partition and return it.
121  *
122  * CONTEXT:
123  * Don't care.
124  */
125 struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
126 {
127         struct disk_part_tbl *ptbl;
128         int inc, end;
129
130         /* put the last partition */
131         disk_put_part(piter->part);
132         piter->part = NULL;
133
134         /* get part_tbl */
135         rcu_read_lock();
136         ptbl = rcu_dereference(piter->disk->part_tbl);
137
138         /* determine iteration parameters */
139         if (piter->flags & DISK_PITER_REVERSE) {
140                 inc = -1;
141                 if (piter->flags & (DISK_PITER_INCL_PART0 |
142                                     DISK_PITER_INCL_EMPTY_PART0))
143                         end = -1;
144                 else
145                         end = 0;
146         } else {
147                 inc = 1;
148                 end = ptbl->len;
149         }
150
151         /* iterate to the next partition */
152         for (; piter->idx != end; piter->idx += inc) {
153                 struct hd_struct *part;
154
155                 part = rcu_dereference(ptbl->part[piter->idx]);
156                 if (!part)
157                         continue;
158                 if (!part->nr_sects &&
159                     !(piter->flags & DISK_PITER_INCL_EMPTY) &&
160                     !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
161                       piter->idx == 0))
162                         continue;
163
164                 get_device(part_to_dev(part));
165                 piter->part = part;
166                 piter->idx += inc;
167                 break;
168         }
169
170         rcu_read_unlock();
171
172         return piter->part;
173 }
174 EXPORT_SYMBOL_GPL(disk_part_iter_next);
175
176 /**
177  * disk_part_iter_exit - finish up partition iteration
178  * @piter: iter of interest
179  *
180  * Called when iteration is over.  Cleans up @piter.
181  *
182  * CONTEXT:
183  * Don't care.
184  */
185 void disk_part_iter_exit(struct disk_part_iter *piter)
186 {
187         disk_put_part(piter->part);
188         piter->part = NULL;
189 }
190 EXPORT_SYMBOL_GPL(disk_part_iter_exit);
191
192 static inline int sector_in_part(struct hd_struct *part, sector_t sector)
193 {
194         return part->start_sect <= sector &&
195                 sector < part->start_sect + part->nr_sects;
196 }
197
198 /**
199  * disk_map_sector_rcu - map sector to partition
200  * @disk: gendisk of interest
201  * @sector: sector to map
202  *
203  * Find out which partition @sector maps to on @disk.  This is
204  * primarily used for stats accounting.
205  *
206  * CONTEXT:
207  * RCU read locked.  The returned partition pointer is valid only
208  * while preemption is disabled.
209  *
210  * RETURNS:
211  * Found partition on success, part0 is returned if no partition matches
212  */
213 struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
214 {
215         struct disk_part_tbl *ptbl;
216         struct hd_struct *part;
217         int i;
218
219         ptbl = rcu_dereference(disk->part_tbl);
220
221         part = rcu_dereference(ptbl->last_lookup);
222         if (part && sector_in_part(part, sector))
223                 return part;
224
225         for (i = 1; i < ptbl->len; i++) {
226                 part = rcu_dereference(ptbl->part[i]);
227
228                 if (part && sector_in_part(part, sector)) {
229                         rcu_assign_pointer(ptbl->last_lookup, part);
230                         return part;
231                 }
232         }
233         return &disk->part0;
234 }
235 EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
236
237 /*
238  * Can be deleted altogether. Later.
239  *
240  */
241 static struct blk_major_name {
242         struct blk_major_name *next;
243         int major;
244         char name[16];
245 } *major_names[BLKDEV_MAJOR_HASH_SIZE];
246
247 /* index in the above - for now: assume no multimajor ranges */
248 static inline int major_to_index(unsigned major)
249 {
250         return major % BLKDEV_MAJOR_HASH_SIZE;
251 }
252
253 #ifdef CONFIG_PROC_FS
254 void blkdev_show(struct seq_file *seqf, off_t offset)
255 {
256         struct blk_major_name *dp;
257
258         if (offset < BLKDEV_MAJOR_HASH_SIZE) {
259                 mutex_lock(&block_class_lock);
260                 for (dp = major_names[offset]; dp; dp = dp->next)
261                         seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
262                 mutex_unlock(&block_class_lock);
263         }
264 }
265 #endif /* CONFIG_PROC_FS */
266
267 /**
268  * register_blkdev - register a new block device
269  *
270  * @major: the requested major device number [1..255]. If @major=0, try to
271  *         allocate any unused major number.
272  * @name: the name of the new block device as a zero terminated string
273  *
274  * The @name must be unique within the system.
275  *
276  * The return value depends on the @major input parameter.
277  *  - if a major device number was requested in range [1..255] then the
278  *    function returns zero on success, or a negative error code
279  *  - if any unused major number was requested with @major=0 parameter
280  *    then the return value is the allocated major number in range
281  *    [1..255] or a negative error code otherwise
282  */
283 int register_blkdev(unsigned int major, const char *name)
284 {
285         struct blk_major_name **n, *p;
286         int index, ret = 0;
287
288         mutex_lock(&block_class_lock);
289
290         /* temporary */
291         if (major == 0) {
292                 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
293                         if (major_names[index] == NULL)
294                                 break;
295                 }
296
297                 if (index == 0) {
298                         printk("register_blkdev: failed to get major for %s\n",
299                                name);
300                         ret = -EBUSY;
301                         goto out;
302                 }
303                 major = index;
304                 ret = major;
305         }
306
307         p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
308         if (p == NULL) {
309                 ret = -ENOMEM;
310                 goto out;
311         }
312
313         p->major = major;
314         strlcpy(p->name, name, sizeof(p->name));
315         p->next = NULL;
316         index = major_to_index(major);
317
318         for (n = &major_names[index]; *n; n = &(*n)->next) {
319                 if ((*n)->major == major)
320                         break;
321         }
322         if (!*n)
323                 *n = p;
324         else
325                 ret = -EBUSY;
326
327         if (ret < 0) {
328                 printk("register_blkdev: cannot get major %d for %s\n",
329                        major, name);
330                 kfree(p);
331         }
332 out:
333         mutex_unlock(&block_class_lock);
334         return ret;
335 }
336
337 EXPORT_SYMBOL(register_blkdev);
338
339 void unregister_blkdev(unsigned int major, const char *name)
340 {
341         struct blk_major_name **n;
342         struct blk_major_name *p = NULL;
343         int index = major_to_index(major);
344
345         mutex_lock(&block_class_lock);
346         for (n = &major_names[index]; *n; n = &(*n)->next)
347                 if ((*n)->major == major)
348                         break;
349         if (!*n || strcmp((*n)->name, name)) {
350                 WARN_ON(1);
351         } else {
352                 p = *n;
353                 *n = p->next;
354         }
355         mutex_unlock(&block_class_lock);
356         kfree(p);
357 }
358
359 EXPORT_SYMBOL(unregister_blkdev);
360
361 static struct kobj_map *bdev_map;
362
363 /**
364  * blk_mangle_minor - scatter minor numbers apart
365  * @minor: minor number to mangle
366  *
367  * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
368  * is enabled.  Mangling twice gives the original value.
369  *
370  * RETURNS:
371  * Mangled value.
372  *
373  * CONTEXT:
374  * Don't care.
375  */
376 static int blk_mangle_minor(int minor)
377 {
378 #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
379         int i;
380
381         for (i = 0; i < MINORBITS / 2; i++) {
382                 int low = minor & (1 << i);
383                 int high = minor & (1 << (MINORBITS - 1 - i));
384                 int distance = MINORBITS - 1 - 2 * i;
385
386                 minor ^= low | high;    /* clear both bits */
387                 low <<= distance;       /* swap the positions */
388                 high >>= distance;
389                 minor |= low | high;    /* and set */
390         }
391 #endif
392         return minor;
393 }
394
395 /**
396  * blk_alloc_devt - allocate a dev_t for a partition
397  * @part: partition to allocate dev_t for
398  * @devt: out parameter for resulting dev_t
399  *
400  * Allocate a dev_t for block device.
401  *
402  * RETURNS:
403  * 0 on success, allocated dev_t is returned in *@devt.  -errno on
404  * failure.
405  *
406  * CONTEXT:
407  * Might sleep.
408  */
409 int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
410 {
411         struct gendisk *disk = part_to_disk(part);
412         int idx, rc;
413
414         /* in consecutive minor range? */
415         if (part->partno < disk->minors) {
416                 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
417                 return 0;
418         }
419
420         /* allocate ext devt */
421         do {
422                 if (!idr_pre_get(&ext_devt_idr, GFP_KERNEL))
423                         return -ENOMEM;
424                 rc = idr_get_new(&ext_devt_idr, part, &idx);
425         } while (rc == -EAGAIN);
426
427         if (rc)
428                 return rc;
429
430         if (idx > MAX_EXT_DEVT) {
431                 idr_remove(&ext_devt_idr, idx);
432                 return -EBUSY;
433         }
434
435         *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
436         return 0;
437 }
438
439 /**
440  * blk_free_devt - free a dev_t
441  * @devt: dev_t to free
442  *
443  * Free @devt which was allocated using blk_alloc_devt().
444  *
445  * CONTEXT:
446  * Might sleep.
447  */
448 void blk_free_devt(dev_t devt)
449 {
450         might_sleep();
451
452         if (devt == MKDEV(0, 0))
453                 return;
454
455         if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
456                 mutex_lock(&ext_devt_mutex);
457                 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
458                 mutex_unlock(&ext_devt_mutex);
459         }
460 }
461
462 static char *bdevt_str(dev_t devt, char *buf)
463 {
464         if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
465                 char tbuf[BDEVT_SIZE];
466                 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
467                 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
468         } else
469                 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
470
471         return buf;
472 }
473
474 /*
475  * Register device numbers dev..(dev+range-1)
476  * range must be nonzero
477  * The hash chain is sorted on range, so that subranges can override.
478  */
479 void blk_register_region(dev_t devt, unsigned long range, struct module *module,
480                          struct kobject *(*probe)(dev_t, int *, void *),
481                          int (*lock)(dev_t, void *), void *data)
482 {
483         kobj_map(bdev_map, devt, range, module, probe, lock, data);
484 }
485
486 EXPORT_SYMBOL(blk_register_region);
487
488 void blk_unregister_region(dev_t devt, unsigned long range)
489 {
490         kobj_unmap(bdev_map, devt, range);
491 }
492
493 EXPORT_SYMBOL(blk_unregister_region);
494
495 static struct kobject *exact_match(dev_t devt, int *partno, void *data)
496 {
497         struct gendisk *p = data;
498
499         return &disk_to_dev(p)->kobj;
500 }
501
502 static int exact_lock(dev_t devt, void *data)
503 {
504         struct gendisk *p = data;
505
506         if (!get_disk(p))
507                 return -1;
508         return 0;
509 }
510
511 void register_disk(struct gendisk *disk)
512 {
513         struct device *ddev = disk_to_dev(disk);
514         struct block_device *bdev;
515         struct disk_part_iter piter;
516         struct hd_struct *part;
517         int err;
518
519         ddev->parent = disk->driverfs_dev;
520
521         dev_set_name(ddev, disk->disk_name);
522
523         /* delay uevents, until we scanned partition table */
524         dev_set_uevent_suppress(ddev, 1);
525
526         if (device_add(ddev))
527                 return;
528         if (!sysfs_deprecated) {
529                 err = sysfs_create_link(block_depr, &ddev->kobj,
530                                         kobject_name(&ddev->kobj));
531                 if (err) {
532                         device_del(ddev);
533                         return;
534                 }
535         }
536         disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
537         disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
538
539         /* No minors to use for partitions */
540         if (!disk_part_scan_enabled(disk))
541                 goto exit;
542
543         /* No such device (e.g., media were just removed) */
544         if (!get_capacity(disk))
545                 goto exit;
546
547         bdev = bdget_disk(disk, 0);
548         if (!bdev)
549                 goto exit;
550
551         bdev->bd_invalidated = 1;
552         err = blkdev_get(bdev, FMODE_READ, NULL);
553         if (err < 0)
554                 goto exit;
555         blkdev_put(bdev, FMODE_READ);
556
557 exit:
558         /* announce disk after possible partitions are created */
559         dev_set_uevent_suppress(ddev, 0);
560         kobject_uevent(&ddev->kobj, KOBJ_ADD);
561
562         /* announce possible partitions */
563         disk_part_iter_init(&piter, disk, 0);
564         while ((part = disk_part_iter_next(&piter)))
565                 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
566         disk_part_iter_exit(&piter);
567 }
568
569 /**
570  * add_disk - add partitioning information to kernel list
571  * @disk: per-device partitioning information
572  *
573  * This function registers the partitioning information in @disk
574  * with the kernel.
575  *
576  * FIXME: error handling
577  */
578 void add_disk(struct gendisk *disk)
579 {
580         struct backing_dev_info *bdi;
581         dev_t devt;
582         int retval;
583
584         /* minors == 0 indicates to use ext devt from part0 and should
585          * be accompanied with EXT_DEVT flag.  Make sure all
586          * parameters make sense.
587          */
588         WARN_ON(disk->minors && !(disk->major || disk->first_minor));
589         WARN_ON(!disk->minors && !(disk->flags & GENHD_FL_EXT_DEVT));
590
591         disk->flags |= GENHD_FL_UP;
592
593         retval = blk_alloc_devt(&disk->part0, &devt);
594         if (retval) {
595                 WARN_ON(1);
596                 return;
597         }
598         disk_to_dev(disk)->devt = devt;
599
600         /* ->major and ->first_minor aren't supposed to be
601          * dereferenced from here on, but set them just in case.
602          */
603         disk->major = MAJOR(devt);
604         disk->first_minor = MINOR(devt);
605
606         disk_alloc_events(disk);
607
608         /* Register BDI before referencing it from bdev */
609         bdi = &disk->queue->backing_dev_info;
610         bdi_register_dev(bdi, disk_devt(disk));
611
612         blk_register_region(disk_devt(disk), disk->minors, NULL,
613                             exact_match, exact_lock, disk);
614         register_disk(disk);
615         blk_register_queue(disk);
616
617         /*
618          * Take an extra ref on queue which will be put on disk_release()
619          * so that it sticks around as long as @disk is there.
620          */
621         WARN_ON_ONCE(blk_get_queue(disk->queue));
622
623         retval = sysfs_create_link(&disk_to_dev(disk)->kobj, &bdi->dev->kobj,
624                                    "bdi");
625         WARN_ON(retval);
626
627         disk_add_events(disk);
628 }
629 EXPORT_SYMBOL(add_disk);
630
631 void del_gendisk(struct gendisk *disk)
632 {
633         struct disk_part_iter piter;
634         struct hd_struct *part;
635
636         disk_del_events(disk);
637
638         /* invalidate stuff */
639         disk_part_iter_init(&piter, disk,
640                              DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
641         while ((part = disk_part_iter_next(&piter))) {
642                 invalidate_partition(disk, part->partno);
643                 delete_partition(disk, part->partno);
644         }
645         disk_part_iter_exit(&piter);
646
647         invalidate_partition(disk, 0);
648         blk_free_devt(disk_to_dev(disk)->devt);
649         set_capacity(disk, 0);
650         disk->flags &= ~GENHD_FL_UP;
651
652         sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
653         bdi_unregister(&disk->queue->backing_dev_info);
654         blk_unregister_queue(disk);
655         blk_unregister_region(disk_devt(disk), disk->minors);
656
657         part_stat_set_all(&disk->part0, 0);
658         disk->part0.stamp = 0;
659
660         kobject_put(disk->part0.holder_dir);
661         kobject_put(disk->slave_dir);
662         disk->driverfs_dev = NULL;
663         if (!sysfs_deprecated)
664                 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
665         device_del(disk_to_dev(disk));
666 }
667 EXPORT_SYMBOL(del_gendisk);
668
669 /**
670  * get_gendisk - get partitioning information for a given device
671  * @devt: device to get partitioning information for
672  * @partno: returned partition index
673  *
674  * This function gets the structure containing partitioning
675  * information for the given device @devt.
676  */
677 struct gendisk *get_gendisk(dev_t devt, int *partno)
678 {
679         struct gendisk *disk = NULL;
680
681         if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
682                 struct kobject *kobj;
683
684                 kobj = kobj_lookup(bdev_map, devt, partno);
685                 if (kobj)
686                         disk = dev_to_disk(kobj_to_dev(kobj));
687         } else {
688                 struct hd_struct *part;
689
690                 mutex_lock(&ext_devt_mutex);
691                 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
692                 if (part && get_disk(part_to_disk(part))) {
693                         *partno = part->partno;
694                         disk = part_to_disk(part);
695                 }
696                 mutex_unlock(&ext_devt_mutex);
697         }
698
699         return disk;
700 }
701 EXPORT_SYMBOL(get_gendisk);
702
703 /**
704  * bdget_disk - do bdget() by gendisk and partition number
705  * @disk: gendisk of interest
706  * @partno: partition number
707  *
708  * Find partition @partno from @disk, do bdget() on it.
709  *
710  * CONTEXT:
711  * Don't care.
712  *
713  * RETURNS:
714  * Resulting block_device on success, NULL on failure.
715  */
716 struct block_device *bdget_disk(struct gendisk *disk, int partno)
717 {
718         struct hd_struct *part;
719         struct block_device *bdev = NULL;
720
721         part = disk_get_part(disk, partno);
722         if (part)
723                 bdev = bdget(part_devt(part));
724         disk_put_part(part);
725
726         return bdev;
727 }
728 EXPORT_SYMBOL(bdget_disk);
729
730 /*
731  * print a full list of all partitions - intended for places where the root
732  * filesystem can't be mounted and thus to give the victim some idea of what
733  * went wrong
734  */
735 void __init printk_all_partitions(void)
736 {
737         struct class_dev_iter iter;
738         struct device *dev;
739
740         class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
741         while ((dev = class_dev_iter_next(&iter))) {
742                 struct gendisk *disk = dev_to_disk(dev);
743                 struct disk_part_iter piter;
744                 struct hd_struct *part;
745                 char name_buf[BDEVNAME_SIZE];
746                 char devt_buf[BDEVT_SIZE];
747                 u8 uuid[PARTITION_META_INFO_UUIDLTH * 2 + 1];
748
749                 /*
750                  * Don't show empty devices or things that have been
751                  * suppressed
752                  */
753                 if (get_capacity(disk) == 0 ||
754                     (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
755                         continue;
756
757                 /*
758                  * Note, unlike /proc/partitions, I am showing the
759                  * numbers in hex - the same format as the root=
760                  * option takes.
761                  */
762                 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
763                 while ((part = disk_part_iter_next(&piter))) {
764                         bool is_part0 = part == &disk->part0;
765
766                         uuid[0] = 0;
767                         if (part->info)
768                                 part_unpack_uuid(part->info->uuid, uuid);
769
770                         printk("%s%s %10llu %s %s", is_part0 ? "" : "  ",
771                                bdevt_str(part_devt(part), devt_buf),
772                                (unsigned long long)part->nr_sects >> 1,
773                                disk_name(disk, part->partno, name_buf), uuid);
774                         if (is_part0) {
775                                 if (disk->driverfs_dev != NULL &&
776                                     disk->driverfs_dev->driver != NULL)
777                                         printk(" driver: %s\n",
778                                               disk->driverfs_dev->driver->name);
779                                 else
780                                         printk(" (driver?)\n");
781                         } else
782                                 printk("\n");
783                 }
784                 disk_part_iter_exit(&piter);
785         }
786         class_dev_iter_exit(&iter);
787 }
788
789 #ifdef CONFIG_PROC_FS
790 /* iterator */
791 static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
792 {
793         loff_t skip = *pos;
794         struct class_dev_iter *iter;
795         struct device *dev;
796
797         iter = kmalloc(sizeof(*iter), GFP_KERNEL);
798         if (!iter)
799                 return ERR_PTR(-ENOMEM);
800
801         seqf->private = iter;
802         class_dev_iter_init(iter, &block_class, NULL, &disk_type);
803         do {
804                 dev = class_dev_iter_next(iter);
805                 if (!dev)
806                         return NULL;
807         } while (skip--);
808
809         return dev_to_disk(dev);
810 }
811
812 static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
813 {
814         struct device *dev;
815
816         (*pos)++;
817         dev = class_dev_iter_next(seqf->private);
818         if (dev)
819                 return dev_to_disk(dev);
820
821         return NULL;
822 }
823
824 static void disk_seqf_stop(struct seq_file *seqf, void *v)
825 {
826         struct class_dev_iter *iter = seqf->private;
827
828         /* stop is called even after start failed :-( */
829         if (iter) {
830                 class_dev_iter_exit(iter);
831                 kfree(iter);
832         }
833 }
834
835 static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
836 {
837         static void *p;
838
839         p = disk_seqf_start(seqf, pos);
840         if (!IS_ERR_OR_NULL(p) && !*pos)
841                 seq_puts(seqf, "major minor  #blocks  name\n\n");
842         return p;
843 }
844
845 static int show_partition(struct seq_file *seqf, void *v)
846 {
847         struct gendisk *sgp = v;
848         struct disk_part_iter piter;
849         struct hd_struct *part;
850         char buf[BDEVNAME_SIZE];
851
852         /* Don't show non-partitionable removeable devices or empty devices */
853         if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
854                                    (sgp->flags & GENHD_FL_REMOVABLE)))
855                 return 0;
856         if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
857                 return 0;
858
859         /* show the full disk and all non-0 size partitions of it */
860         disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
861         while ((part = disk_part_iter_next(&piter)))
862                 seq_printf(seqf, "%4d  %7d %10llu %s\n",
863                            MAJOR(part_devt(part)), MINOR(part_devt(part)),
864                            (unsigned long long)part->nr_sects >> 1,
865                            disk_name(sgp, part->partno, buf));
866         disk_part_iter_exit(&piter);
867
868         return 0;
869 }
870
871 static const struct seq_operations partitions_op = {
872         .start  = show_partition_start,
873         .next   = disk_seqf_next,
874         .stop   = disk_seqf_stop,
875         .show   = show_partition
876 };
877
878 static int partitions_open(struct inode *inode, struct file *file)
879 {
880         return seq_open(file, &partitions_op);
881 }
882
883 static const struct file_operations proc_partitions_operations = {
884         .open           = partitions_open,
885         .read           = seq_read,
886         .llseek         = seq_lseek,
887         .release        = seq_release,
888 };
889 #endif
890
891
892 static struct kobject *base_probe(dev_t devt, int *partno, void *data)
893 {
894         if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
895                 /* Make old-style 2.4 aliases work */
896                 request_module("block-major-%d", MAJOR(devt));
897         return NULL;
898 }
899
900 static int __init genhd_device_init(void)
901 {
902         int error;
903
904         block_class.dev_kobj = sysfs_dev_block_kobj;
905         error = class_register(&block_class);
906         if (unlikely(error))
907                 return error;
908         bdev_map = kobj_map_init(base_probe, &block_class_lock);
909         blk_dev_init();
910
911         register_blkdev(BLOCK_EXT_MAJOR, "blkext");
912
913         /* create top-level block dir */
914         if (!sysfs_deprecated)
915                 block_depr = kobject_create_and_add("block", NULL);
916         return 0;
917 }
918
919 subsys_initcall(genhd_device_init);
920
921 static ssize_t disk_range_show(struct device *dev,
922                                struct device_attribute *attr, char *buf)
923 {
924         struct gendisk *disk = dev_to_disk(dev);
925
926         return sprintf(buf, "%d\n", disk->minors);
927 }
928
929 static ssize_t disk_ext_range_show(struct device *dev,
930                                    struct device_attribute *attr, char *buf)
931 {
932         struct gendisk *disk = dev_to_disk(dev);
933
934         return sprintf(buf, "%d\n", disk_max_parts(disk));
935 }
936
937 static ssize_t disk_removable_show(struct device *dev,
938                                    struct device_attribute *attr, char *buf)
939 {
940         struct gendisk *disk = dev_to_disk(dev);
941
942         return sprintf(buf, "%d\n",
943                        (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
944 }
945
946 static ssize_t disk_ro_show(struct device *dev,
947                                    struct device_attribute *attr, char *buf)
948 {
949         struct gendisk *disk = dev_to_disk(dev);
950
951         return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
952 }
953
954 static ssize_t disk_capability_show(struct device *dev,
955                                     struct device_attribute *attr, char *buf)
956 {
957         struct gendisk *disk = dev_to_disk(dev);
958
959         return sprintf(buf, "%x\n", disk->flags);
960 }
961
962 static ssize_t disk_alignment_offset_show(struct device *dev,
963                                           struct device_attribute *attr,
964                                           char *buf)
965 {
966         struct gendisk *disk = dev_to_disk(dev);
967
968         return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
969 }
970
971 static ssize_t disk_discard_alignment_show(struct device *dev,
972                                            struct device_attribute *attr,
973                                            char *buf)
974 {
975         struct gendisk *disk = dev_to_disk(dev);
976
977         return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
978 }
979
980 static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
981 static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
982 static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
983 static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
984 static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
985 static DEVICE_ATTR(alignment_offset, S_IRUGO, disk_alignment_offset_show, NULL);
986 static DEVICE_ATTR(discard_alignment, S_IRUGO, disk_discard_alignment_show,
987                    NULL);
988 static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
989 static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
990 static DEVICE_ATTR(inflight, S_IRUGO, part_inflight_show, NULL);
991 #ifdef CONFIG_FAIL_MAKE_REQUEST
992 static struct device_attribute dev_attr_fail =
993         __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
994 #endif
995 #ifdef CONFIG_FAIL_IO_TIMEOUT
996 static struct device_attribute dev_attr_fail_timeout =
997         __ATTR(io-timeout-fail,  S_IRUGO|S_IWUSR, part_timeout_show,
998                 part_timeout_store);
999 #endif
1000
1001 static struct attribute *disk_attrs[] = {
1002         &dev_attr_range.attr,
1003         &dev_attr_ext_range.attr,
1004         &dev_attr_removable.attr,
1005         &dev_attr_ro.attr,
1006         &dev_attr_size.attr,
1007         &dev_attr_alignment_offset.attr,
1008         &dev_attr_discard_alignment.attr,
1009         &dev_attr_capability.attr,
1010         &dev_attr_stat.attr,
1011         &dev_attr_inflight.attr,
1012 #ifdef CONFIG_FAIL_MAKE_REQUEST
1013         &dev_attr_fail.attr,
1014 #endif
1015 #ifdef CONFIG_FAIL_IO_TIMEOUT
1016         &dev_attr_fail_timeout.attr,
1017 #endif
1018         NULL
1019 };
1020
1021 static struct attribute_group disk_attr_group = {
1022         .attrs = disk_attrs,
1023 };
1024
1025 static const struct attribute_group *disk_attr_groups[] = {
1026         &disk_attr_group,
1027         NULL
1028 };
1029
1030 /**
1031  * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1032  * @disk: disk to replace part_tbl for
1033  * @new_ptbl: new part_tbl to install
1034  *
1035  * Replace disk->part_tbl with @new_ptbl in RCU-safe way.  The
1036  * original ptbl is freed using RCU callback.
1037  *
1038  * LOCKING:
1039  * Matching bd_mutx locked.
1040  */
1041 static void disk_replace_part_tbl(struct gendisk *disk,
1042                                   struct disk_part_tbl *new_ptbl)
1043 {
1044         struct disk_part_tbl *old_ptbl = disk->part_tbl;
1045
1046         rcu_assign_pointer(disk->part_tbl, new_ptbl);
1047
1048         if (old_ptbl) {
1049                 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
1050                 kfree_rcu(old_ptbl, rcu_head);
1051         }
1052 }
1053
1054 /**
1055  * disk_expand_part_tbl - expand disk->part_tbl
1056  * @disk: disk to expand part_tbl for
1057  * @partno: expand such that this partno can fit in
1058  *
1059  * Expand disk->part_tbl such that @partno can fit in.  disk->part_tbl
1060  * uses RCU to allow unlocked dereferencing for stats and other stuff.
1061  *
1062  * LOCKING:
1063  * Matching bd_mutex locked, might sleep.
1064  *
1065  * RETURNS:
1066  * 0 on success, -errno on failure.
1067  */
1068 int disk_expand_part_tbl(struct gendisk *disk, int partno)
1069 {
1070         struct disk_part_tbl *old_ptbl = disk->part_tbl;
1071         struct disk_part_tbl *new_ptbl;
1072         int len = old_ptbl ? old_ptbl->len : 0;
1073         int target = partno + 1;
1074         size_t size;
1075         int i;
1076
1077         /* disk_max_parts() is zero during initialization, ignore if so */
1078         if (disk_max_parts(disk) && target > disk_max_parts(disk))
1079                 return -EINVAL;
1080
1081         if (target <= len)
1082                 return 0;
1083
1084         size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
1085         new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
1086         if (!new_ptbl)
1087                 return -ENOMEM;
1088
1089         new_ptbl->len = target;
1090
1091         for (i = 0; i < len; i++)
1092                 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1093
1094         disk_replace_part_tbl(disk, new_ptbl);
1095         return 0;
1096 }
1097
1098 static void disk_release(struct device *dev)
1099 {
1100         struct gendisk *disk = dev_to_disk(dev);
1101
1102         disk_release_events(disk);
1103         kfree(disk->random);
1104         disk_replace_part_tbl(disk, NULL);
1105         free_part_stats(&disk->part0);
1106         free_part_info(&disk->part0);
1107         if (disk->queue)
1108                 blk_put_queue(disk->queue);
1109         kfree(disk);
1110 }
1111 struct class block_class = {
1112         .name           = "block",
1113 };
1114
1115 static char *block_devnode(struct device *dev, mode_t *mode)
1116 {
1117         struct gendisk *disk = dev_to_disk(dev);
1118
1119         if (disk->devnode)
1120                 return disk->devnode(disk, mode);
1121         return NULL;
1122 }
1123
1124 static struct device_type disk_type = {
1125         .name           = "disk",
1126         .groups         = disk_attr_groups,
1127         .release        = disk_release,
1128         .devnode        = block_devnode,
1129 };
1130
1131 #ifdef CONFIG_PROC_FS
1132 /*
1133  * aggregate disk stat collector.  Uses the same stats that the sysfs
1134  * entries do, above, but makes them available through one seq_file.
1135  *
1136  * The output looks suspiciously like /proc/partitions with a bunch of
1137  * extra fields.
1138  */
1139 static int diskstats_show(struct seq_file *seqf, void *v)
1140 {
1141         struct gendisk *gp = v;
1142         struct disk_part_iter piter;
1143         struct hd_struct *hd;
1144         char buf[BDEVNAME_SIZE];
1145         int cpu;
1146
1147         /*
1148         if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
1149                 seq_puts(seqf,  "major minor name"
1150                                 "     rio rmerge rsect ruse wio wmerge "
1151                                 "wsect wuse running use aveq"
1152                                 "\n\n");
1153         */
1154
1155         disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
1156         while ((hd = disk_part_iter_next(&piter))) {
1157                 cpu = part_stat_lock();
1158                 part_round_stats(cpu, hd);
1159                 part_stat_unlock();
1160                 seq_printf(seqf, "%4d %7d %s %lu %lu %lu "
1161                            "%u %lu %lu %lu %u %u %u %u\n",
1162                            MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1163                            disk_name(gp, hd->partno, buf),
1164                            part_stat_read(hd, ios[READ]),
1165                            part_stat_read(hd, merges[READ]),
1166                            part_stat_read(hd, sectors[READ]),
1167                            jiffies_to_msecs(part_stat_read(hd, ticks[READ])),
1168                            part_stat_read(hd, ios[WRITE]),
1169                            part_stat_read(hd, merges[WRITE]),
1170                            part_stat_read(hd, sectors[WRITE]),
1171                            jiffies_to_msecs(part_stat_read(hd, ticks[WRITE])),
1172                            part_in_flight(hd),
1173                            jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1174                            jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1175                         );
1176         }
1177         disk_part_iter_exit(&piter);
1178
1179         return 0;
1180 }
1181
1182 static const struct seq_operations diskstats_op = {
1183         .start  = disk_seqf_start,
1184         .next   = disk_seqf_next,
1185         .stop   = disk_seqf_stop,
1186         .show   = diskstats_show
1187 };
1188
1189 static int diskstats_open(struct inode *inode, struct file *file)
1190 {
1191         return seq_open(file, &diskstats_op);
1192 }
1193
1194 static const struct file_operations proc_diskstats_operations = {
1195         .open           = diskstats_open,
1196         .read           = seq_read,
1197         .llseek         = seq_lseek,
1198         .release        = seq_release,
1199 };
1200
1201 static int __init proc_genhd_init(void)
1202 {
1203         proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
1204         proc_create("partitions", 0, NULL, &proc_partitions_operations);
1205         return 0;
1206 }
1207 module_init(proc_genhd_init);
1208 #endif /* CONFIG_PROC_FS */
1209
1210 dev_t blk_lookup_devt(const char *name, int partno)
1211 {
1212         dev_t devt = MKDEV(0, 0);
1213         struct class_dev_iter iter;
1214         struct device *dev;
1215
1216         class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1217         while ((dev = class_dev_iter_next(&iter))) {
1218                 struct gendisk *disk = dev_to_disk(dev);
1219                 struct hd_struct *part;
1220
1221                 if (strcmp(dev_name(dev), name))
1222                         continue;
1223
1224                 if (partno < disk->minors) {
1225                         /* We need to return the right devno, even
1226                          * if the partition doesn't exist yet.
1227                          */
1228                         devt = MKDEV(MAJOR(dev->devt),
1229                                      MINOR(dev->devt) + partno);
1230                         break;
1231                 }
1232                 part = disk_get_part(disk, partno);
1233                 if (part) {
1234                         devt = part_devt(part);
1235                         disk_put_part(part);
1236                         break;
1237                 }
1238                 disk_put_part(part);
1239         }
1240         class_dev_iter_exit(&iter);
1241         return devt;
1242 }
1243 EXPORT_SYMBOL(blk_lookup_devt);
1244
1245 struct gendisk *alloc_disk(int minors)
1246 {
1247         return alloc_disk_node(minors, -1);
1248 }
1249 EXPORT_SYMBOL(alloc_disk);
1250
1251 struct gendisk *alloc_disk_node(int minors, int node_id)
1252 {
1253         struct gendisk *disk;
1254
1255         disk = kmalloc_node(sizeof(struct gendisk),
1256                                 GFP_KERNEL | __GFP_ZERO, node_id);
1257         if (disk) {
1258                 if (!init_part_stats(&disk->part0)) {
1259                         kfree(disk);
1260                         return NULL;
1261                 }
1262                 disk->node_id = node_id;
1263                 if (disk_expand_part_tbl(disk, 0)) {
1264                         free_part_stats(&disk->part0);
1265                         kfree(disk);
1266                         return NULL;
1267                 }
1268                 disk->part_tbl->part[0] = &disk->part0;
1269
1270                 hd_ref_init(&disk->part0);
1271
1272                 disk->minors = minors;
1273                 rand_initialize_disk(disk);
1274                 disk_to_dev(disk)->class = &block_class;
1275                 disk_to_dev(disk)->type = &disk_type;
1276                 device_initialize(disk_to_dev(disk));
1277         }
1278         return disk;
1279 }
1280 EXPORT_SYMBOL(alloc_disk_node);
1281
1282 struct kobject *get_disk(struct gendisk *disk)
1283 {
1284         struct module *owner;
1285         struct kobject *kobj;
1286
1287         if (!disk->fops)
1288                 return NULL;
1289         owner = disk->fops->owner;
1290         if (owner && !try_module_get(owner))
1291                 return NULL;
1292         kobj = kobject_get(&disk_to_dev(disk)->kobj);
1293         if (kobj == NULL) {
1294                 module_put(owner);
1295                 return NULL;
1296         }
1297         return kobj;
1298
1299 }
1300
1301 EXPORT_SYMBOL(get_disk);
1302
1303 void put_disk(struct gendisk *disk)
1304 {
1305         if (disk)
1306                 kobject_put(&disk_to_dev(disk)->kobj);
1307 }
1308
1309 EXPORT_SYMBOL(put_disk);
1310
1311 static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1312 {
1313         char event[] = "DISK_RO=1";
1314         char *envp[] = { event, NULL };
1315
1316         if (!ro)
1317                 event[8] = '0';
1318         kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1319 }
1320
1321 void set_device_ro(struct block_device *bdev, int flag)
1322 {
1323         bdev->bd_part->policy = flag;
1324 }
1325
1326 EXPORT_SYMBOL(set_device_ro);
1327
1328 void set_disk_ro(struct gendisk *disk, int flag)
1329 {
1330         struct disk_part_iter piter;
1331         struct hd_struct *part;
1332
1333         if (disk->part0.policy != flag) {
1334                 set_disk_ro_uevent(disk, flag);
1335                 disk->part0.policy = flag;
1336         }
1337
1338         disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
1339         while ((part = disk_part_iter_next(&piter)))
1340                 part->policy = flag;
1341         disk_part_iter_exit(&piter);
1342 }
1343
1344 EXPORT_SYMBOL(set_disk_ro);
1345
1346 int bdev_read_only(struct block_device *bdev)
1347 {
1348         if (!bdev)
1349                 return 0;
1350         return bdev->bd_part->policy;
1351 }
1352
1353 EXPORT_SYMBOL(bdev_read_only);
1354
1355 int invalidate_partition(struct gendisk *disk, int partno)
1356 {
1357         int res = 0;
1358         struct block_device *bdev = bdget_disk(disk, partno);
1359         if (bdev) {
1360                 fsync_bdev(bdev);
1361                 res = __invalidate_device(bdev, true);
1362                 bdput(bdev);
1363         }
1364         return res;
1365 }
1366
1367 EXPORT_SYMBOL(invalidate_partition);
1368
1369 /*
1370  * Disk events - monitor disk events like media change and eject request.
1371  */
1372 struct disk_events {
1373         struct list_head        node;           /* all disk_event's */
1374         struct gendisk          *disk;          /* the associated disk */
1375         spinlock_t              lock;
1376
1377         struct mutex            block_mutex;    /* protects blocking */
1378         int                     block;          /* event blocking depth */
1379         unsigned int            pending;        /* events already sent out */
1380         unsigned int            clearing;       /* events being cleared */
1381
1382         long                    poll_msecs;     /* interval, -1 for default */
1383         struct delayed_work     dwork;
1384 };
1385
1386 static const char *disk_events_strs[] = {
1387         [ilog2(DISK_EVENT_MEDIA_CHANGE)]        = "media_change",
1388         [ilog2(DISK_EVENT_EJECT_REQUEST)]       = "eject_request",
1389 };
1390
1391 static char *disk_uevents[] = {
1392         [ilog2(DISK_EVENT_MEDIA_CHANGE)]        = "DISK_MEDIA_CHANGE=1",
1393         [ilog2(DISK_EVENT_EJECT_REQUEST)]       = "DISK_EJECT_REQUEST=1",
1394 };
1395
1396 /* list of all disk_events */
1397 static DEFINE_MUTEX(disk_events_mutex);
1398 static LIST_HEAD(disk_events);
1399
1400 /* disable in-kernel polling by default */
1401 static unsigned long disk_events_dfl_poll_msecs = 0;
1402
1403 static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1404 {
1405         struct disk_events *ev = disk->ev;
1406         long intv_msecs = 0;
1407
1408         /*
1409          * If device-specific poll interval is set, always use it.  If
1410          * the default is being used, poll iff there are events which
1411          * can't be monitored asynchronously.
1412          */
1413         if (ev->poll_msecs >= 0)
1414                 intv_msecs = ev->poll_msecs;
1415         else if (disk->events & ~disk->async_events)
1416                 intv_msecs = disk_events_dfl_poll_msecs;
1417
1418         return msecs_to_jiffies(intv_msecs);
1419 }
1420
1421 /**
1422  * disk_block_events - block and flush disk event checking
1423  * @disk: disk to block events for
1424  *
1425  * On return from this function, it is guaranteed that event checking
1426  * isn't in progress and won't happen until unblocked by
1427  * disk_unblock_events().  Events blocking is counted and the actual
1428  * unblocking happens after the matching number of unblocks are done.
1429  *
1430  * Note that this intentionally does not block event checking from
1431  * disk_clear_events().
1432  *
1433  * CONTEXT:
1434  * Might sleep.
1435  */
1436 void disk_block_events(struct gendisk *disk)
1437 {
1438         struct disk_events *ev = disk->ev;
1439         unsigned long flags;
1440         bool cancel;
1441
1442         if (!ev)
1443                 return;
1444
1445         /*
1446          * Outer mutex ensures that the first blocker completes canceling
1447          * the event work before further blockers are allowed to finish.
1448          */
1449         mutex_lock(&ev->block_mutex);
1450
1451         spin_lock_irqsave(&ev->lock, flags);
1452         cancel = !ev->block++;
1453         spin_unlock_irqrestore(&ev->lock, flags);
1454
1455         if (cancel)
1456                 cancel_delayed_work_sync(&disk->ev->dwork);
1457
1458         mutex_unlock(&ev->block_mutex);
1459 }
1460
1461 static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1462 {
1463         struct disk_events *ev = disk->ev;
1464         unsigned long intv;
1465         unsigned long flags;
1466
1467         spin_lock_irqsave(&ev->lock, flags);
1468
1469         if (WARN_ON_ONCE(ev->block <= 0))
1470                 goto out_unlock;
1471
1472         if (--ev->block)
1473                 goto out_unlock;
1474
1475         /*
1476          * Not exactly a latency critical operation, set poll timer
1477          * slack to 25% and kick event check.
1478          */
1479         intv = disk_events_poll_jiffies(disk);
1480         set_timer_slack(&ev->dwork.timer, intv / 4);
1481         if (check_now)
1482                 queue_delayed_work(system_nrt_wq, &ev->dwork, 0);
1483         else if (intv)
1484                 queue_delayed_work(system_nrt_wq, &ev->dwork, intv);
1485 out_unlock:
1486         spin_unlock_irqrestore(&ev->lock, flags);
1487 }
1488
1489 /**
1490  * disk_unblock_events - unblock disk event checking
1491  * @disk: disk to unblock events for
1492  *
1493  * Undo disk_block_events().  When the block count reaches zero, it
1494  * starts events polling if configured.
1495  *
1496  * CONTEXT:
1497  * Don't care.  Safe to call from irq context.
1498  */
1499 void disk_unblock_events(struct gendisk *disk)
1500 {
1501         if (disk->ev)
1502                 __disk_unblock_events(disk, false);
1503 }
1504
1505 /**
1506  * disk_flush_events - schedule immediate event checking and flushing
1507  * @disk: disk to check and flush events for
1508  * @mask: events to flush
1509  *
1510  * Schedule immediate event checking on @disk if not blocked.  Events in
1511  * @mask are scheduled to be cleared from the driver.  Note that this
1512  * doesn't clear the events from @disk->ev.
1513  *
1514  * CONTEXT:
1515  * If @mask is non-zero must be called with bdev->bd_mutex held.
1516  */
1517 void disk_flush_events(struct gendisk *disk, unsigned int mask)
1518 {
1519         struct disk_events *ev = disk->ev;
1520
1521         if (!ev)
1522                 return;
1523
1524         spin_lock_irq(&ev->lock);
1525         ev->clearing |= mask;
1526         if (!ev->block) {
1527                 cancel_delayed_work(&ev->dwork);
1528                 queue_delayed_work(system_nrt_wq, &ev->dwork, 0);
1529         }
1530         spin_unlock_irq(&ev->lock);
1531 }
1532
1533 /**
1534  * disk_clear_events - synchronously check, clear and return pending events
1535  * @disk: disk to fetch and clear events from
1536  * @mask: mask of events to be fetched and clearted
1537  *
1538  * Disk events are synchronously checked and pending events in @mask
1539  * are cleared and returned.  This ignores the block count.
1540  *
1541  * CONTEXT:
1542  * Might sleep.
1543  */
1544 unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1545 {
1546         const struct block_device_operations *bdops = disk->fops;
1547         struct disk_events *ev = disk->ev;
1548         unsigned int pending;
1549
1550         if (!ev) {
1551                 /* for drivers still using the old ->media_changed method */
1552                 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1553                     bdops->media_changed && bdops->media_changed(disk))
1554                         return DISK_EVENT_MEDIA_CHANGE;
1555                 return 0;
1556         }
1557
1558         /* tell the workfn about the events being cleared */
1559         spin_lock_irq(&ev->lock);
1560         ev->clearing |= mask;
1561         spin_unlock_irq(&ev->lock);
1562
1563         /* uncondtionally schedule event check and wait for it to finish */
1564         disk_block_events(disk);
1565         queue_delayed_work(system_nrt_wq, &ev->dwork, 0);
1566         flush_delayed_work(&ev->dwork);
1567         __disk_unblock_events(disk, false);
1568
1569         /* then, fetch and clear pending events */
1570         spin_lock_irq(&ev->lock);
1571         WARN_ON_ONCE(ev->clearing & mask);      /* cleared by workfn */
1572         pending = ev->pending & mask;
1573         ev->pending &= ~mask;
1574         spin_unlock_irq(&ev->lock);
1575
1576         return pending;
1577 }
1578
1579 static void disk_events_workfn(struct work_struct *work)
1580 {
1581         struct delayed_work *dwork = to_delayed_work(work);
1582         struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
1583         struct gendisk *disk = ev->disk;
1584         char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
1585         unsigned int clearing = ev->clearing;
1586         unsigned int events;
1587         unsigned long intv;
1588         int nr_events = 0, i;
1589
1590         /* check events */
1591         events = disk->fops->check_events(disk, clearing);
1592
1593         /* accumulate pending events and schedule next poll if necessary */
1594         spin_lock_irq(&ev->lock);
1595
1596         events &= ~ev->pending;
1597         ev->pending |= events;
1598         ev->clearing &= ~clearing;
1599
1600         intv = disk_events_poll_jiffies(disk);
1601         if (!ev->block && intv)
1602                 queue_delayed_work(system_nrt_wq, &ev->dwork, intv);
1603
1604         spin_unlock_irq(&ev->lock);
1605
1606         /*
1607          * Tell userland about new events.  Only the events listed in
1608          * @disk->events are reported.  Unlisted events are processed the
1609          * same internally but never get reported to userland.
1610          */
1611         for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
1612                 if (events & disk->events & (1 << i))
1613                         envp[nr_events++] = disk_uevents[i];
1614
1615         if (nr_events)
1616                 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
1617 }
1618
1619 /*
1620  * A disk events enabled device has the following sysfs nodes under
1621  * its /sys/block/X/ directory.
1622  *
1623  * events               : list of all supported events
1624  * events_async         : list of events which can be detected w/o polling
1625  * events_poll_msecs    : polling interval, 0: disable, -1: system default
1626  */
1627 static ssize_t __disk_events_show(unsigned int events, char *buf)
1628 {
1629         const char *delim = "";
1630         ssize_t pos = 0;
1631         int i;
1632
1633         for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
1634                 if (events & (1 << i)) {
1635                         pos += sprintf(buf + pos, "%s%s",
1636                                        delim, disk_events_strs[i]);
1637                         delim = " ";
1638                 }
1639         if (pos)
1640                 pos += sprintf(buf + pos, "\n");
1641         return pos;
1642 }
1643
1644 static ssize_t disk_events_show(struct device *dev,
1645                                 struct device_attribute *attr, char *buf)
1646 {
1647         struct gendisk *disk = dev_to_disk(dev);
1648
1649         return __disk_events_show(disk->events, buf);
1650 }
1651
1652 static ssize_t disk_events_async_show(struct device *dev,
1653                                       struct device_attribute *attr, char *buf)
1654 {
1655         struct gendisk *disk = dev_to_disk(dev);
1656
1657         return __disk_events_show(disk->async_events, buf);
1658 }
1659
1660 static ssize_t disk_events_poll_msecs_show(struct device *dev,
1661                                            struct device_attribute *attr,
1662                                            char *buf)
1663 {
1664         struct gendisk *disk = dev_to_disk(dev);
1665
1666         return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
1667 }
1668
1669 static ssize_t disk_events_poll_msecs_store(struct device *dev,
1670                                             struct device_attribute *attr,
1671                                             const char *buf, size_t count)
1672 {
1673         struct gendisk *disk = dev_to_disk(dev);
1674         long intv;
1675
1676         if (!count || !sscanf(buf, "%ld", &intv))
1677                 return -EINVAL;
1678
1679         if (intv < 0 && intv != -1)
1680                 return -EINVAL;
1681
1682         disk_block_events(disk);
1683         disk->ev->poll_msecs = intv;
1684         __disk_unblock_events(disk, true);
1685
1686         return count;
1687 }
1688
1689 static const DEVICE_ATTR(events, S_IRUGO, disk_events_show, NULL);
1690 static const DEVICE_ATTR(events_async, S_IRUGO, disk_events_async_show, NULL);
1691 static const DEVICE_ATTR(events_poll_msecs, S_IRUGO|S_IWUSR,
1692                          disk_events_poll_msecs_show,
1693                          disk_events_poll_msecs_store);
1694
1695 static const struct attribute *disk_events_attrs[] = {
1696         &dev_attr_events.attr,
1697         &dev_attr_events_async.attr,
1698         &dev_attr_events_poll_msecs.attr,
1699         NULL,
1700 };
1701
1702 /*
1703  * The default polling interval can be specified by the kernel
1704  * parameter block.events_dfl_poll_msecs which defaults to 0
1705  * (disable).  This can also be modified runtime by writing to
1706  * /sys/module/block/events_dfl_poll_msecs.
1707  */
1708 static int disk_events_set_dfl_poll_msecs(const char *val,
1709                                           const struct kernel_param *kp)
1710 {
1711         struct disk_events *ev;
1712         int ret;
1713
1714         ret = param_set_ulong(val, kp);
1715         if (ret < 0)
1716                 return ret;
1717
1718         mutex_lock(&disk_events_mutex);
1719
1720         list_for_each_entry(ev, &disk_events, node)
1721                 disk_flush_events(ev->disk, 0);
1722
1723         mutex_unlock(&disk_events_mutex);
1724
1725         return 0;
1726 }
1727
1728 static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
1729         .set    = disk_events_set_dfl_poll_msecs,
1730         .get    = param_get_ulong,
1731 };
1732
1733 #undef MODULE_PARAM_PREFIX
1734 #define MODULE_PARAM_PREFIX     "block."
1735
1736 module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
1737                 &disk_events_dfl_poll_msecs, 0644);
1738
1739 /*
1740  * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
1741  */
1742 static void disk_alloc_events(struct gendisk *disk)
1743 {
1744         struct disk_events *ev;
1745
1746         if (!disk->fops->check_events)
1747                 return;
1748
1749         ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1750         if (!ev) {
1751                 pr_warn("%s: failed to initialize events\n", disk->disk_name);
1752                 return;
1753         }
1754
1755         INIT_LIST_HEAD(&ev->node);
1756         ev->disk = disk;
1757         spin_lock_init(&ev->lock);
1758         mutex_init(&ev->block_mutex);
1759         ev->block = 1;
1760         ev->poll_msecs = -1;
1761         INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
1762
1763         disk->ev = ev;
1764 }
1765
1766 static void disk_add_events(struct gendisk *disk)
1767 {
1768         if (!disk->ev)
1769                 return;
1770
1771         /* FIXME: error handling */
1772         if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
1773                 pr_warn("%s: failed to create sysfs files for events\n",
1774                         disk->disk_name);
1775
1776         mutex_lock(&disk_events_mutex);
1777         list_add_tail(&disk->ev->node, &disk_events);
1778         mutex_unlock(&disk_events_mutex);
1779
1780         /*
1781          * Block count is initialized to 1 and the following initial
1782          * unblock kicks it into action.
1783          */
1784         __disk_unblock_events(disk, true);
1785 }
1786
1787 static void disk_del_events(struct gendisk *disk)
1788 {
1789         if (!disk->ev)
1790                 return;
1791
1792         disk_block_events(disk);
1793
1794         mutex_lock(&disk_events_mutex);
1795         list_del_init(&disk->ev->node);
1796         mutex_unlock(&disk_events_mutex);
1797
1798         sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
1799 }
1800
1801 static void disk_release_events(struct gendisk *disk)
1802 {
1803         /* the block count should be 1 from disk_del_events() */
1804         WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
1805         kfree(disk->ev);
1806 }