]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - block/genhd.c
block: replace @ext_minors with GENHD_FL_EXT_DEVT
[thirdparty/kernel/stable.git] / block / genhd.c
CommitLineData
1da177e4
LT
1/*
2 * gendisk handling
3 */
4
1da177e4
LT
5#include <linux/module.h>
6#include <linux/fs.h>
7#include <linux/genhd.h>
b446b60e 8#include <linux/kdev_t.h>
1da177e4
LT
9#include <linux/kernel.h>
10#include <linux/blkdev.h>
11#include <linux/init.h>
12#include <linux/spinlock.h>
13#include <linux/seq_file.h>
14#include <linux/slab.h>
15#include <linux/kmod.h>
16#include <linux/kobj_map.h>
2ef41634 17#include <linux/buffer_head.h>
58383af6 18#include <linux/mutex.h>
bcce3de1 19#include <linux/idr.h>
1da177e4 20
ff88972c
AB
21#include "blk.h"
22
edfaa7c3
KS
23static DEFINE_MUTEX(block_class_lock);
24#ifndef CONFIG_SYSFS_DEPRECATED
25struct kobject *block_depr;
26#endif
1da177e4 27
bcce3de1
TH
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 */
34static DEFINE_MUTEX(ext_devt_mutex);
35static DEFINE_IDR(ext_devt_idr);
36
1826eadf
AB
37static struct device_type disk_type;
38
e71bf0d0
TH
39/**
40 * disk_get_part - get partition
41 * @disk: disk to look partition from
42 * @partno: partition number
43 *
44 * Look for partition @partno from @disk. If found, increment
45 * reference count and return it.
46 *
47 * CONTEXT:
48 * Don't care.
49 *
50 * RETURNS:
51 * Pointer to the found partition on success, NULL if not found.
52 */
53struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
54{
540eed56
TH
55 struct hd_struct *part = NULL;
56 struct disk_part_tbl *ptbl;
e71bf0d0 57
540eed56 58 if (unlikely(partno < 0))
e71bf0d0 59 return NULL;
540eed56 60
e71bf0d0 61 rcu_read_lock();
540eed56
TH
62
63 ptbl = rcu_dereference(disk->part_tbl);
64 if (likely(partno < ptbl->len)) {
65 part = rcu_dereference(ptbl->part[partno]);
66 if (part)
67 get_device(part_to_dev(part));
68 }
69
e71bf0d0
TH
70 rcu_read_unlock();
71
72 return part;
73}
74EXPORT_SYMBOL_GPL(disk_get_part);
75
76/**
77 * disk_part_iter_init - initialize partition iterator
78 * @piter: iterator to initialize
79 * @disk: disk to iterate over
80 * @flags: DISK_PITER_* flags
81 *
82 * Initialize @piter so that it iterates over partitions of @disk.
83 *
84 * CONTEXT:
85 * Don't care.
86 */
87void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
88 unsigned int flags)
89{
540eed56
TH
90 struct disk_part_tbl *ptbl;
91
92 rcu_read_lock();
93 ptbl = rcu_dereference(disk->part_tbl);
94
e71bf0d0
TH
95 piter->disk = disk;
96 piter->part = NULL;
97
98 if (flags & DISK_PITER_REVERSE)
540eed56 99 piter->idx = ptbl->len - 1;
b5d0b9df 100 else if (flags & DISK_PITER_INCL_PART0)
e71bf0d0 101 piter->idx = 0;
b5d0b9df
TH
102 else
103 piter->idx = 1;
e71bf0d0
TH
104
105 piter->flags = flags;
540eed56
TH
106
107 rcu_read_unlock();
e71bf0d0
TH
108}
109EXPORT_SYMBOL_GPL(disk_part_iter_init);
110
111/**
112 * disk_part_iter_next - proceed iterator to the next partition and return it
113 * @piter: iterator of interest
114 *
115 * Proceed @piter to the next partition and return it.
116 *
117 * CONTEXT:
118 * Don't care.
119 */
120struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
121{
540eed56 122 struct disk_part_tbl *ptbl;
e71bf0d0
TH
123 int inc, end;
124
125 /* put the last partition */
126 disk_put_part(piter->part);
127 piter->part = NULL;
128
540eed56 129 /* get part_tbl */
e71bf0d0 130 rcu_read_lock();
540eed56 131 ptbl = rcu_dereference(piter->disk->part_tbl);
e71bf0d0
TH
132
133 /* determine iteration parameters */
134 if (piter->flags & DISK_PITER_REVERSE) {
135 inc = -1;
b5d0b9df
TH
136 if (piter->flags & DISK_PITER_INCL_PART0)
137 end = -1;
138 else
139 end = 0;
e71bf0d0
TH
140 } else {
141 inc = 1;
540eed56 142 end = ptbl->len;
e71bf0d0
TH
143 }
144
145 /* iterate to the next partition */
146 for (; piter->idx != end; piter->idx += inc) {
147 struct hd_struct *part;
148
540eed56 149 part = rcu_dereference(ptbl->part[piter->idx]);
e71bf0d0
TH
150 if (!part)
151 continue;
152 if (!(piter->flags & DISK_PITER_INCL_EMPTY) && !part->nr_sects)
153 continue;
154
ed9e1982 155 get_device(part_to_dev(part));
e71bf0d0
TH
156 piter->part = part;
157 piter->idx += inc;
158 break;
159 }
160
161 rcu_read_unlock();
162
163 return piter->part;
164}
165EXPORT_SYMBOL_GPL(disk_part_iter_next);
166
167/**
168 * disk_part_iter_exit - finish up partition iteration
169 * @piter: iter of interest
170 *
171 * Called when iteration is over. Cleans up @piter.
172 *
173 * CONTEXT:
174 * Don't care.
175 */
176void disk_part_iter_exit(struct disk_part_iter *piter)
177{
178 disk_put_part(piter->part);
179 piter->part = NULL;
180}
181EXPORT_SYMBOL_GPL(disk_part_iter_exit);
182
183/**
184 * disk_map_sector_rcu - map sector to partition
185 * @disk: gendisk of interest
186 * @sector: sector to map
187 *
188 * Find out which partition @sector maps to on @disk. This is
189 * primarily used for stats accounting.
190 *
191 * CONTEXT:
192 * RCU read locked. The returned partition pointer is valid only
193 * while preemption is disabled.
194 *
195 * RETURNS:
074a7aca 196 * Found partition on success, part0 is returned if no partition matches
e71bf0d0
TH
197 */
198struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
199{
540eed56 200 struct disk_part_tbl *ptbl;
e71bf0d0
TH
201 int i;
202
540eed56
TH
203 ptbl = rcu_dereference(disk->part_tbl);
204
205 for (i = 1; i < ptbl->len; i++) {
206 struct hd_struct *part = rcu_dereference(ptbl->part[i]);
e71bf0d0
TH
207
208 if (part && part->start_sect <= sector &&
209 sector < part->start_sect + part->nr_sects)
210 return part;
211 }
074a7aca 212 return &disk->part0;
e71bf0d0
TH
213}
214EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
215
1da177e4
LT
216/*
217 * Can be deleted altogether. Later.
218 *
219 */
220static struct blk_major_name {
221 struct blk_major_name *next;
222 int major;
223 char name[16];
68eef3b4 224} *major_names[BLKDEV_MAJOR_HASH_SIZE];
1da177e4
LT
225
226/* index in the above - for now: assume no multimajor ranges */
227static inline int major_to_index(int major)
228{
68eef3b4 229 return major % BLKDEV_MAJOR_HASH_SIZE;
7170be5f
NH
230}
231
68eef3b4 232#ifdef CONFIG_PROC_FS
cf771cb5 233void blkdev_show(struct seq_file *seqf, off_t offset)
7170be5f 234{
68eef3b4 235 struct blk_major_name *dp;
7170be5f 236
68eef3b4 237 if (offset < BLKDEV_MAJOR_HASH_SIZE) {
edfaa7c3 238 mutex_lock(&block_class_lock);
68eef3b4 239 for (dp = major_names[offset]; dp; dp = dp->next)
cf771cb5 240 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
edfaa7c3 241 mutex_unlock(&block_class_lock);
1da177e4 242 }
1da177e4 243}
68eef3b4 244#endif /* CONFIG_PROC_FS */
1da177e4
LT
245
246int register_blkdev(unsigned int major, const char *name)
247{
248 struct blk_major_name **n, *p;
249 int index, ret = 0;
250
edfaa7c3 251 mutex_lock(&block_class_lock);
1da177e4
LT
252
253 /* temporary */
254 if (major == 0) {
255 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
256 if (major_names[index] == NULL)
257 break;
258 }
259
260 if (index == 0) {
261 printk("register_blkdev: failed to get major for %s\n",
262 name);
263 ret = -EBUSY;
264 goto out;
265 }
266 major = index;
267 ret = major;
268 }
269
270 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
271 if (p == NULL) {
272 ret = -ENOMEM;
273 goto out;
274 }
275
276 p->major = major;
277 strlcpy(p->name, name, sizeof(p->name));
278 p->next = NULL;
279 index = major_to_index(major);
280
281 for (n = &major_names[index]; *n; n = &(*n)->next) {
282 if ((*n)->major == major)
283 break;
284 }
285 if (!*n)
286 *n = p;
287 else
288 ret = -EBUSY;
289
290 if (ret < 0) {
291 printk("register_blkdev: cannot get major %d for %s\n",
292 major, name);
293 kfree(p);
294 }
295out:
edfaa7c3 296 mutex_unlock(&block_class_lock);
1da177e4
LT
297 return ret;
298}
299
300EXPORT_SYMBOL(register_blkdev);
301
f4480240 302void unregister_blkdev(unsigned int major, const char *name)
1da177e4
LT
303{
304 struct blk_major_name **n;
305 struct blk_major_name *p = NULL;
306 int index = major_to_index(major);
1da177e4 307
edfaa7c3 308 mutex_lock(&block_class_lock);
1da177e4
LT
309 for (n = &major_names[index]; *n; n = &(*n)->next)
310 if ((*n)->major == major)
311 break;
294462a5
AM
312 if (!*n || strcmp((*n)->name, name)) {
313 WARN_ON(1);
294462a5 314 } else {
1da177e4
LT
315 p = *n;
316 *n = p->next;
317 }
edfaa7c3 318 mutex_unlock(&block_class_lock);
1da177e4 319 kfree(p);
1da177e4
LT
320}
321
322EXPORT_SYMBOL(unregister_blkdev);
323
324static struct kobj_map *bdev_map;
325
870d6656
TH
326/**
327 * blk_mangle_minor - scatter minor numbers apart
328 * @minor: minor number to mangle
329 *
330 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
331 * is enabled. Mangling twice gives the original value.
332 *
333 * RETURNS:
334 * Mangled value.
335 *
336 * CONTEXT:
337 * Don't care.
338 */
339static int blk_mangle_minor(int minor)
340{
341#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
342 int i;
343
344 for (i = 0; i < MINORBITS / 2; i++) {
345 int low = minor & (1 << i);
346 int high = minor & (1 << (MINORBITS - 1 - i));
347 int distance = MINORBITS - 1 - 2 * i;
348
349 minor ^= low | high; /* clear both bits */
350 low <<= distance; /* swap the positions */
351 high >>= distance;
352 minor |= low | high; /* and set */
353 }
354#endif
355 return minor;
356}
357
bcce3de1
TH
358/**
359 * blk_alloc_devt - allocate a dev_t for a partition
360 * @part: partition to allocate dev_t for
361 * @gfp_mask: memory allocation flag
362 * @devt: out parameter for resulting dev_t
363 *
364 * Allocate a dev_t for block device.
365 *
366 * RETURNS:
367 * 0 on success, allocated dev_t is returned in *@devt. -errno on
368 * failure.
369 *
370 * CONTEXT:
371 * Might sleep.
372 */
373int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
374{
375 struct gendisk *disk = part_to_disk(part);
376 int idx, rc;
377
378 /* in consecutive minor range? */
379 if (part->partno < disk->minors) {
380 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
381 return 0;
382 }
383
384 /* allocate ext devt */
385 do {
386 if (!idr_pre_get(&ext_devt_idr, GFP_KERNEL))
387 return -ENOMEM;
388 rc = idr_get_new(&ext_devt_idr, part, &idx);
389 } while (rc == -EAGAIN);
390
391 if (rc)
392 return rc;
393
394 if (idx > MAX_EXT_DEVT) {
395 idr_remove(&ext_devt_idr, idx);
396 return -EBUSY;
397 }
398
870d6656 399 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
bcce3de1
TH
400 return 0;
401}
402
403/**
404 * blk_free_devt - free a dev_t
405 * @devt: dev_t to free
406 *
407 * Free @devt which was allocated using blk_alloc_devt().
408 *
409 * CONTEXT:
410 * Might sleep.
411 */
412void blk_free_devt(dev_t devt)
413{
414 might_sleep();
415
416 if (devt == MKDEV(0, 0))
417 return;
418
419 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
420 mutex_lock(&ext_devt_mutex);
870d6656 421 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
bcce3de1
TH
422 mutex_unlock(&ext_devt_mutex);
423 }
424}
425
1f014290
TH
426static char *bdevt_str(dev_t devt, char *buf)
427{
428 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
429 char tbuf[BDEVT_SIZE];
430 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
431 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
432 } else
433 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
434
435 return buf;
436}
437
1da177e4
LT
438/*
439 * Register device numbers dev..(dev+range-1)
440 * range must be nonzero
441 * The hash chain is sorted on range, so that subranges can override.
442 */
edfaa7c3 443void blk_register_region(dev_t devt, unsigned long range, struct module *module,
1da177e4
LT
444 struct kobject *(*probe)(dev_t, int *, void *),
445 int (*lock)(dev_t, void *), void *data)
446{
edfaa7c3 447 kobj_map(bdev_map, devt, range, module, probe, lock, data);
1da177e4
LT
448}
449
450EXPORT_SYMBOL(blk_register_region);
451
edfaa7c3 452void blk_unregister_region(dev_t devt, unsigned long range)
1da177e4 453{
edfaa7c3 454 kobj_unmap(bdev_map, devt, range);
1da177e4
LT
455}
456
457EXPORT_SYMBOL(blk_unregister_region);
458
cf771cb5 459static struct kobject *exact_match(dev_t devt, int *partno, void *data)
1da177e4
LT
460{
461 struct gendisk *p = data;
edfaa7c3 462
ed9e1982 463 return &disk_to_dev(p)->kobj;
1da177e4
LT
464}
465
edfaa7c3 466static int exact_lock(dev_t devt, void *data)
1da177e4
LT
467{
468 struct gendisk *p = data;
469
470 if (!get_disk(p))
471 return -1;
472 return 0;
473}
474
475/**
476 * add_disk - add partitioning information to kernel list
477 * @disk: per-device partitioning information
478 *
479 * This function registers the partitioning information in @disk
480 * with the kernel.
481 */
482void add_disk(struct gendisk *disk)
483{
cf0ca9fe 484 struct backing_dev_info *bdi;
6ffeea77 485 int retval;
cf0ca9fe 486
1da177e4 487 disk->flags |= GENHD_FL_UP;
ed9e1982 488 disk_to_dev(disk)->devt = MKDEV(disk->major, disk->first_minor);
f331c029
TH
489 blk_register_region(disk_devt(disk), disk->minors, NULL,
490 exact_match, exact_lock, disk);
1da177e4
LT
491 register_disk(disk);
492 blk_register_queue(disk);
cf0ca9fe
PZ
493
494 bdi = &disk->queue->backing_dev_info;
f331c029 495 bdi_register_dev(bdi, disk_devt(disk));
ed9e1982
TH
496 retval = sysfs_create_link(&disk_to_dev(disk)->kobj, &bdi->dev->kobj,
497 "bdi");
6ffeea77 498 WARN_ON(retval);
1da177e4
LT
499}
500
501EXPORT_SYMBOL(add_disk);
502EXPORT_SYMBOL(del_gendisk); /* in partitions/check.c */
503
504void unlink_gendisk(struct gendisk *disk)
505{
ed9e1982 506 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
cf0ca9fe 507 bdi_unregister(&disk->queue->backing_dev_info);
1da177e4 508 blk_unregister_queue(disk);
f331c029 509 blk_unregister_region(disk_devt(disk), disk->minors);
1da177e4
LT
510}
511
1da177e4
LT
512/**
513 * get_gendisk - get partitioning information for a given device
710027a4
RD
514 * @devt: device to get partitioning information for
515 * @part: returned partition index
1da177e4
LT
516 *
517 * This function gets the structure containing partitioning
710027a4 518 * information for the given device @devt.
1da177e4 519 */
cf771cb5 520struct gendisk *get_gendisk(dev_t devt, int *partno)
1da177e4 521{
bcce3de1
TH
522 struct gendisk *disk = NULL;
523
524 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
525 struct kobject *kobj;
526
527 kobj = kobj_lookup(bdev_map, devt, partno);
528 if (kobj)
529 disk = dev_to_disk(kobj_to_dev(kobj));
530 } else {
531 struct hd_struct *part;
532
533 mutex_lock(&ext_devt_mutex);
870d6656 534 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
bcce3de1
TH
535 if (part && get_disk(part_to_disk(part))) {
536 *partno = part->partno;
537 disk = part_to_disk(part);
538 }
539 mutex_unlock(&ext_devt_mutex);
540 }
edfaa7c3 541
bcce3de1 542 return disk;
1da177e4
LT
543}
544
f331c029
TH
545/**
546 * bdget_disk - do bdget() by gendisk and partition number
547 * @disk: gendisk of interest
548 * @partno: partition number
549 *
550 * Find partition @partno from @disk, do bdget() on it.
551 *
552 * CONTEXT:
553 * Don't care.
554 *
555 * RETURNS:
556 * Resulting block_device on success, NULL on failure.
557 */
558extern struct block_device *bdget_disk(struct gendisk *disk, int partno)
559{
548b10eb
TH
560 struct hd_struct *part;
561 struct block_device *bdev = NULL;
f331c029 562
548b10eb
TH
563 part = disk_get_part(disk, partno);
564 if (part && (part->nr_sects || partno == 0))
565 bdev = bdget(part_devt(part));
566 disk_put_part(part);
f331c029 567
548b10eb 568 return bdev;
f331c029
TH
569}
570EXPORT_SYMBOL(bdget_disk);
571
5c6f35c5
GKH
572/*
573 * print a full list of all partitions - intended for places where the root
574 * filesystem can't be mounted and thus to give the victim some idea of what
575 * went wrong
576 */
577void __init printk_all_partitions(void)
578{
def4e38d
TH
579 struct class_dev_iter iter;
580 struct device *dev;
581
582 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
583 while ((dev = class_dev_iter_next(&iter))) {
584 struct gendisk *disk = dev_to_disk(dev);
e71bf0d0
TH
585 struct disk_part_iter piter;
586 struct hd_struct *part;
1f014290
TH
587 char name_buf[BDEVNAME_SIZE];
588 char devt_buf[BDEVT_SIZE];
def4e38d
TH
589
590 /*
591 * Don't show empty devices or things that have been
592 * surpressed
593 */
594 if (get_capacity(disk) == 0 ||
595 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
596 continue;
597
598 /*
599 * Note, unlike /proc/partitions, I am showing the
600 * numbers in hex - the same format as the root=
601 * option takes.
602 */
074a7aca
TH
603 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
604 while ((part = disk_part_iter_next(&piter))) {
605 bool is_part0 = part == &disk->part0;
def4e38d 606
074a7aca 607 printk("%s%s %10llu %s", is_part0 ? "" : " ",
1f014290 608 bdevt_str(part_devt(part), devt_buf),
f331c029 609 (unsigned long long)part->nr_sects >> 1,
1f014290 610 disk_name(disk, part->partno, name_buf));
074a7aca
TH
611 if (is_part0) {
612 if (disk->driverfs_dev != NULL &&
613 disk->driverfs_dev->driver != NULL)
614 printk(" driver: %s\n",
615 disk->driverfs_dev->driver->name);
616 else
617 printk(" (driver?)\n");
618 } else
619 printk("\n");
620 }
e71bf0d0 621 disk_part_iter_exit(&piter);
def4e38d
TH
622 }
623 class_dev_iter_exit(&iter);
dd2a345f
DG
624}
625
1da177e4
LT
626#ifdef CONFIG_PROC_FS
627/* iterator */
def4e38d 628static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
68c4d4a7 629{
def4e38d
TH
630 loff_t skip = *pos;
631 struct class_dev_iter *iter;
632 struct device *dev;
68c4d4a7 633
def4e38d
TH
634 iter = kmalloc(GFP_KERNEL, sizeof(*iter));
635 if (!iter)
636 return ERR_PTR(-ENOMEM);
637
638 seqf->private = iter;
639 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
640 do {
641 dev = class_dev_iter_next(iter);
642 if (!dev)
643 return NULL;
644 } while (skip--);
645
646 return dev_to_disk(dev);
68c4d4a7
GKH
647}
648
def4e38d 649static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
1da177e4 650{
edfaa7c3 651 struct device *dev;
1da177e4 652
def4e38d
TH
653 (*pos)++;
654 dev = class_dev_iter_next(seqf->private);
2ac3cee5 655 if (dev)
68c4d4a7 656 return dev_to_disk(dev);
2ac3cee5 657
1da177e4
LT
658 return NULL;
659}
660
def4e38d 661static void disk_seqf_stop(struct seq_file *seqf, void *v)
27f30251 662{
def4e38d 663 struct class_dev_iter *iter = seqf->private;
27f30251 664
def4e38d
TH
665 /* stop is called even after start failed :-( */
666 if (iter) {
667 class_dev_iter_exit(iter);
668 kfree(iter);
5c0ef6d0 669 }
1da177e4
LT
670}
671
def4e38d 672static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
1da177e4 673{
def4e38d
TH
674 static void *p;
675
676 p = disk_seqf_start(seqf, pos);
677 if (!IS_ERR(p) && p)
678 seq_puts(seqf, "major minor #blocks name\n\n");
679 return p;
1da177e4
LT
680}
681
cf771cb5 682static int show_partition(struct seq_file *seqf, void *v)
1da177e4
LT
683{
684 struct gendisk *sgp = v;
e71bf0d0
TH
685 struct disk_part_iter piter;
686 struct hd_struct *part;
1da177e4
LT
687 char buf[BDEVNAME_SIZE];
688
1da177e4 689 /* Don't show non-partitionable removeable devices or empty devices */
b5d0b9df 690 if (!get_capacity(sgp) || (!disk_partitionable(sgp) &&
f331c029 691 (sgp->flags & GENHD_FL_REMOVABLE)))
1da177e4
LT
692 return 0;
693 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
694 return 0;
695
696 /* show the full disk and all non-0 size partitions of it */
074a7aca 697 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
e71bf0d0 698 while ((part = disk_part_iter_next(&piter)))
1f014290 699 seq_printf(seqf, "%4d %7d %10llu %s\n",
f331c029
TH
700 MAJOR(part_devt(part)), MINOR(part_devt(part)),
701 (unsigned long long)part->nr_sects >> 1,
702 disk_name(sgp, part->partno, buf));
e71bf0d0 703 disk_part_iter_exit(&piter);
1da177e4
LT
704
705 return 0;
706}
707
12f32bb3 708const struct seq_operations partitions_op = {
def4e38d
TH
709 .start = show_partition_start,
710 .next = disk_seqf_next,
711 .stop = disk_seqf_stop,
edfaa7c3 712 .show = show_partition
1da177e4
LT
713};
714#endif
715
716
cf771cb5 717static struct kobject *base_probe(dev_t devt, int *partno, void *data)
1da177e4 718{
edfaa7c3 719 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
1da177e4 720 /* Make old-style 2.4 aliases work */
edfaa7c3 721 request_module("block-major-%d", MAJOR(devt));
1da177e4
LT
722 return NULL;
723}
724
725static int __init genhd_device_init(void)
726{
e105b8bf
DW
727 int error;
728
729 block_class.dev_kobj = sysfs_dev_block_kobj;
730 error = class_register(&block_class);
ee27a558
RM
731 if (unlikely(error))
732 return error;
edfaa7c3 733 bdev_map = kobj_map_init(base_probe, &block_class_lock);
1da177e4 734 blk_dev_init();
edfaa7c3
KS
735
736#ifndef CONFIG_SYSFS_DEPRECATED
737 /* create top-level block dir */
738 block_depr = kobject_create_and_add("block", NULL);
739#endif
830d3cfb 740 return 0;
1da177e4
LT
741}
742
743subsys_initcall(genhd_device_init);
744
edfaa7c3
KS
745static ssize_t disk_range_show(struct device *dev,
746 struct device_attribute *attr, char *buf)
1da177e4 747{
edfaa7c3 748 struct gendisk *disk = dev_to_disk(dev);
1da177e4 749
edfaa7c3 750 return sprintf(buf, "%d\n", disk->minors);
1da177e4
LT
751}
752
1f014290
TH
753static ssize_t disk_ext_range_show(struct device *dev,
754 struct device_attribute *attr, char *buf)
755{
756 struct gendisk *disk = dev_to_disk(dev);
757
b5d0b9df 758 return sprintf(buf, "%d\n", disk_max_parts(disk));
1f014290
TH
759}
760
edfaa7c3
KS
761static ssize_t disk_removable_show(struct device *dev,
762 struct device_attribute *attr, char *buf)
a7fd6706 763{
edfaa7c3 764 struct gendisk *disk = dev_to_disk(dev);
a7fd6706 765
edfaa7c3
KS
766 return sprintf(buf, "%d\n",
767 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
a7fd6706
KS
768}
769
1c9ce527
KS
770static ssize_t disk_ro_show(struct device *dev,
771 struct device_attribute *attr, char *buf)
772{
773 struct gendisk *disk = dev_to_disk(dev);
774
b7db9956 775 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
1c9ce527
KS
776}
777
edfaa7c3
KS
778static ssize_t disk_capability_show(struct device *dev,
779 struct device_attribute *attr, char *buf)
86ce18d7 780{
edfaa7c3
KS
781 struct gendisk *disk = dev_to_disk(dev);
782
783 return sprintf(buf, "%x\n", disk->flags);
86ce18d7 784}
edfaa7c3 785
edfaa7c3 786static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
1f014290 787static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
edfaa7c3 788static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
1c9ce527 789static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
e5610521 790static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
edfaa7c3 791static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
074a7aca 792static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
c17bb495 793#ifdef CONFIG_FAIL_MAKE_REQUEST
edfaa7c3 794static struct device_attribute dev_attr_fail =
eddb2e26 795 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
c17bb495 796#endif
edfaa7c3
KS
797
798static struct attribute *disk_attrs[] = {
799 &dev_attr_range.attr,
1f014290 800 &dev_attr_ext_range.attr,
edfaa7c3 801 &dev_attr_removable.attr,
1c9ce527 802 &dev_attr_ro.attr,
edfaa7c3
KS
803 &dev_attr_size.attr,
804 &dev_attr_capability.attr,
805 &dev_attr_stat.attr,
806#ifdef CONFIG_FAIL_MAKE_REQUEST
807 &dev_attr_fail.attr,
808#endif
809 NULL
810};
811
812static struct attribute_group disk_attr_group = {
813 .attrs = disk_attrs,
814};
815
816static struct attribute_group *disk_attr_groups[] = {
817 &disk_attr_group,
818 NULL
1da177e4
LT
819};
820
540eed56
TH
821static void disk_free_ptbl_rcu_cb(struct rcu_head *head)
822{
823 struct disk_part_tbl *ptbl =
824 container_of(head, struct disk_part_tbl, rcu_head);
825
826 kfree(ptbl);
827}
828
829/**
830 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
831 * @disk: disk to replace part_tbl for
832 * @new_ptbl: new part_tbl to install
833 *
834 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
835 * original ptbl is freed using RCU callback.
836 *
837 * LOCKING:
838 * Matching bd_mutx locked.
839 */
840static void disk_replace_part_tbl(struct gendisk *disk,
841 struct disk_part_tbl *new_ptbl)
842{
843 struct disk_part_tbl *old_ptbl = disk->part_tbl;
844
845 rcu_assign_pointer(disk->part_tbl, new_ptbl);
846 if (old_ptbl)
847 call_rcu(&old_ptbl->rcu_head, disk_free_ptbl_rcu_cb);
848}
849
850/**
851 * disk_expand_part_tbl - expand disk->part_tbl
852 * @disk: disk to expand part_tbl for
853 * @partno: expand such that this partno can fit in
854 *
855 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
856 * uses RCU to allow unlocked dereferencing for stats and other stuff.
857 *
858 * LOCKING:
859 * Matching bd_mutex locked, might sleep.
860 *
861 * RETURNS:
862 * 0 on success, -errno on failure.
863 */
864int disk_expand_part_tbl(struct gendisk *disk, int partno)
865{
866 struct disk_part_tbl *old_ptbl = disk->part_tbl;
867 struct disk_part_tbl *new_ptbl;
868 int len = old_ptbl ? old_ptbl->len : 0;
869 int target = partno + 1;
870 size_t size;
871 int i;
872
873 /* disk_max_parts() is zero during initialization, ignore if so */
874 if (disk_max_parts(disk) && target > disk_max_parts(disk))
875 return -EINVAL;
876
877 if (target <= len)
878 return 0;
879
880 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
881 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
882 if (!new_ptbl)
883 return -ENOMEM;
884
885 INIT_RCU_HEAD(&new_ptbl->rcu_head);
886 new_ptbl->len = target;
887
888 for (i = 0; i < len; i++)
889 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
890
891 disk_replace_part_tbl(disk, new_ptbl);
892 return 0;
893}
894
edfaa7c3 895static void disk_release(struct device *dev)
1da177e4 896{
edfaa7c3
KS
897 struct gendisk *disk = dev_to_disk(dev);
898
1da177e4 899 kfree(disk->random);
540eed56 900 disk_replace_part_tbl(disk, NULL);
074a7aca 901 free_part_stats(&disk->part0);
1da177e4
LT
902 kfree(disk);
903}
edfaa7c3
KS
904struct class block_class = {
905 .name = "block",
1da177e4
LT
906};
907
1826eadf 908static struct device_type disk_type = {
edfaa7c3
KS
909 .name = "disk",
910 .groups = disk_attr_groups,
911 .release = disk_release,
1da177e4
LT
912};
913
a6e2ba88 914#ifdef CONFIG_PROC_FS
cf771cb5
TH
915/*
916 * aggregate disk stat collector. Uses the same stats that the sysfs
917 * entries do, above, but makes them available through one seq_file.
918 *
919 * The output looks suspiciously like /proc/partitions with a bunch of
920 * extra fields.
921 */
922static int diskstats_show(struct seq_file *seqf, void *v)
1da177e4
LT
923{
924 struct gendisk *gp = v;
e71bf0d0
TH
925 struct disk_part_iter piter;
926 struct hd_struct *hd;
1da177e4 927 char buf[BDEVNAME_SIZE];
c9959059 928 int cpu;
1da177e4
LT
929
930 /*
ed9e1982 931 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
cf771cb5 932 seq_puts(seqf, "major minor name"
1da177e4
LT
933 " rio rmerge rsect ruse wio wmerge "
934 "wsect wuse running use aveq"
935 "\n\n");
936 */
937
074a7aca 938 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_PART0);
e71bf0d0 939 while ((hd = disk_part_iter_next(&piter))) {
074a7aca 940 cpu = part_stat_lock();
c9959059 941 part_round_stats(cpu, hd);
074a7aca 942 part_stat_unlock();
1f014290 943 seq_printf(seqf, "%4d %7d %s %lu %lu %llu "
28f39d55 944 "%u %lu %lu %llu %u %u %u %u\n",
f331c029
TH
945 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
946 disk_name(gp, hd->partno, buf),
28f39d55
JM
947 part_stat_read(hd, ios[0]),
948 part_stat_read(hd, merges[0]),
949 (unsigned long long)part_stat_read(hd, sectors[0]),
950 jiffies_to_msecs(part_stat_read(hd, ticks[0])),
951 part_stat_read(hd, ios[1]),
952 part_stat_read(hd, merges[1]),
953 (unsigned long long)part_stat_read(hd, sectors[1]),
954 jiffies_to_msecs(part_stat_read(hd, ticks[1])),
955 hd->in_flight,
956 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
957 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
958 );
1da177e4 959 }
e71bf0d0 960 disk_part_iter_exit(&piter);
1da177e4
LT
961
962 return 0;
963}
964
12f32bb3 965const struct seq_operations diskstats_op = {
def4e38d
TH
966 .start = disk_seqf_start,
967 .next = disk_seqf_next,
968 .stop = disk_seqf_stop,
1da177e4
LT
969 .show = diskstats_show
970};
a6e2ba88 971#endif /* CONFIG_PROC_FS */
1da177e4 972
8ce7ad7b
KCA
973static void media_change_notify_thread(struct work_struct *work)
974{
975 struct gendisk *gd = container_of(work, struct gendisk, async_notify);
976 char event[] = "MEDIA_CHANGE=1";
977 char *envp[] = { event, NULL };
978
979 /*
980 * set enviroment vars to indicate which event this is for
981 * so that user space will know to go check the media status.
982 */
ed9e1982 983 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
8ce7ad7b
KCA
984 put_device(gd->driverfs_dev);
985}
986
1826eadf 987#if 0
8ce7ad7b
KCA
988void genhd_media_change_notify(struct gendisk *disk)
989{
990 get_device(disk->driverfs_dev);
991 schedule_work(&disk->async_notify);
992}
993EXPORT_SYMBOL_GPL(genhd_media_change_notify);
1826eadf 994#endif /* 0 */
8ce7ad7b 995
cf771cb5 996dev_t blk_lookup_devt(const char *name, int partno)
a142be85 997{
def4e38d
TH
998 dev_t devt = MKDEV(0, 0);
999 struct class_dev_iter iter;
1000 struct device *dev;
a142be85 1001
def4e38d
TH
1002 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1003 while ((dev = class_dev_iter_next(&iter))) {
a142be85 1004 struct gendisk *disk = dev_to_disk(dev);
548b10eb 1005 struct hd_struct *part;
a142be85 1006
f331c029
TH
1007 if (strcmp(dev->bus_id, name))
1008 continue;
f331c029 1009
548b10eb
TH
1010 part = disk_get_part(disk, partno);
1011 if (part && (part->nr_sects || partno == 0)) {
f331c029 1012 devt = part_devt(part);
e71bf0d0 1013 disk_put_part(part);
548b10eb 1014 break;
def4e38d 1015 }
548b10eb 1016 disk_put_part(part);
5c0ef6d0 1017 }
def4e38d 1018 class_dev_iter_exit(&iter);
edfaa7c3
KS
1019 return devt;
1020}
edfaa7c3
KS
1021EXPORT_SYMBOL(blk_lookup_devt);
1022
1da177e4
LT
1023struct gendisk *alloc_disk(int minors)
1024{
1946089a
CL
1025 return alloc_disk_node(minors, -1);
1026}
689d6fac 1027EXPORT_SYMBOL(alloc_disk);
1946089a
CL
1028
1029struct gendisk *alloc_disk_node(int minors, int node_id)
1030{
1031 struct gendisk *disk;
1032
94f6030c
CL
1033 disk = kmalloc_node(sizeof(struct gendisk),
1034 GFP_KERNEL | __GFP_ZERO, node_id);
1da177e4 1035 if (disk) {
074a7aca 1036 if (!init_part_stats(&disk->part0)) {
1da177e4
LT
1037 kfree(disk);
1038 return NULL;
1039 }
540eed56
TH
1040 if (disk_expand_part_tbl(disk, 0)) {
1041 free_part_stats(&disk->part0);
b5d0b9df
TH
1042 kfree(disk);
1043 return NULL;
1da177e4 1044 }
540eed56 1045 disk->part_tbl->part[0] = &disk->part0;
b5d0b9df 1046
1da177e4 1047 disk->minors = minors;
1da177e4 1048 rand_initialize_disk(disk);
ed9e1982
TH
1049 disk_to_dev(disk)->class = &block_class;
1050 disk_to_dev(disk)->type = &disk_type;
1051 device_initialize(disk_to_dev(disk));
8ce7ad7b
KCA
1052 INIT_WORK(&disk->async_notify,
1053 media_change_notify_thread);
540eed56 1054 disk->node_id = node_id;
1da177e4
LT
1055 }
1056 return disk;
1057}
1946089a 1058EXPORT_SYMBOL(alloc_disk_node);
1da177e4
LT
1059
1060struct kobject *get_disk(struct gendisk *disk)
1061{
1062 struct module *owner;
1063 struct kobject *kobj;
1064
1065 if (!disk->fops)
1066 return NULL;
1067 owner = disk->fops->owner;
1068 if (owner && !try_module_get(owner))
1069 return NULL;
ed9e1982 1070 kobj = kobject_get(&disk_to_dev(disk)->kobj);
1da177e4
LT
1071 if (kobj == NULL) {
1072 module_put(owner);
1073 return NULL;
1074 }
1075 return kobj;
1076
1077}
1078
1079EXPORT_SYMBOL(get_disk);
1080
1081void put_disk(struct gendisk *disk)
1082{
1083 if (disk)
ed9e1982 1084 kobject_put(&disk_to_dev(disk)->kobj);
1da177e4
LT
1085}
1086
1087EXPORT_SYMBOL(put_disk);
1088
1089void set_device_ro(struct block_device *bdev, int flag)
1090{
b7db9956 1091 bdev->bd_part->policy = flag;
1da177e4
LT
1092}
1093
1094EXPORT_SYMBOL(set_device_ro);
1095
1096void set_disk_ro(struct gendisk *disk, int flag)
1097{
e71bf0d0
TH
1098 struct disk_part_iter piter;
1099 struct hd_struct *part;
1100
b7db9956
TH
1101 disk_part_iter_init(&piter, disk,
1102 DISK_PITER_INCL_EMPTY | DISK_PITER_INCL_PART0);
e71bf0d0
TH
1103 while ((part = disk_part_iter_next(&piter)))
1104 part->policy = flag;
1105 disk_part_iter_exit(&piter);
1da177e4
LT
1106}
1107
1108EXPORT_SYMBOL(set_disk_ro);
1109
1110int bdev_read_only(struct block_device *bdev)
1111{
1112 if (!bdev)
1113 return 0;
b7db9956 1114 return bdev->bd_part->policy;
1da177e4
LT
1115}
1116
1117EXPORT_SYMBOL(bdev_read_only);
1118
cf771cb5 1119int invalidate_partition(struct gendisk *disk, int partno)
1da177e4
LT
1120{
1121 int res = 0;
cf771cb5 1122 struct block_device *bdev = bdget_disk(disk, partno);
1da177e4 1123 if (bdev) {
2ef41634
CH
1124 fsync_bdev(bdev);
1125 res = __invalidate_device(bdev);
1da177e4
LT
1126 bdput(bdev);
1127 }
1128 return res;
1129}
1130
1131EXPORT_SYMBOL(invalidate_partition);