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