blob: a9ec910974c1934675b887d2fc8c2d0703579b01 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * gendisk handling
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/module.h>
6#include <linux/fs.h>
7#include <linux/genhd.h>
Andrew Mortonb446b602007-02-20 13:57:48 -08008#include <linux/kdev_t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/blkdev.h>
11#include <linux/init.h>
12#include <linux/spinlock.h>
Alexey Dobriyanf5009752008-10-04 23:53:21 +040013#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/seq_file.h>
15#include <linux/slab.h>
16#include <linux/kmod.h>
17#include <linux/kobj_map.h>
Christoph Hellwig2ef41632005-05-05 16:15:59 -070018#include <linux/buffer_head.h>
Jes Sorensen58383af2006-02-06 14:12:43 -080019#include <linux/mutex.h>
Tejun Heobcce3de2008-08-25 19:47:22 +090020#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Adrian Bunkff889722008-03-04 11:23:45 +010022#include "blk.h"
23
Kay Sieversedfaa7c2007-05-21 22:08:01 +020024static DEFINE_MUTEX(block_class_lock);
25#ifndef CONFIG_SYSFS_DEPRECATED
26struct kobject *block_depr;
27#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Tejun Heobcce3de2008-08-25 19:47:22 +090029/* for extended dynamic devt allocation, currently only one major is used */
30#define MAX_EXT_DEVT (1 << MINORBITS)
31
32/* For extended devt allocation. ext_devt_mutex prevents look up
33 * results from going away underneath its user.
34 */
35static DEFINE_MUTEX(ext_devt_mutex);
36static DEFINE_IDR(ext_devt_idr);
37
Adrian Bunk1826ead2008-03-04 11:23:46 +010038static struct device_type disk_type;
39
Tejun Heoe71bf0d2008-09-03 09:03:02 +020040/**
41 * disk_get_part - get partition
42 * @disk: disk to look partition from
43 * @partno: partition number
44 *
45 * Look for partition @partno from @disk. If found, increment
46 * reference count and return it.
47 *
48 * CONTEXT:
49 * Don't care.
50 *
51 * RETURNS:
52 * Pointer to the found partition on success, NULL if not found.
53 */
54struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
55{
Tejun Heo540eed52008-08-25 19:56:15 +090056 struct hd_struct *part = NULL;
57 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +020058
Tejun Heo540eed52008-08-25 19:56:15 +090059 if (unlikely(partno < 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +020060 return NULL;
Tejun Heo540eed52008-08-25 19:56:15 +090061
Tejun Heoe71bf0d2008-09-03 09:03:02 +020062 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +090063
64 ptbl = rcu_dereference(disk->part_tbl);
65 if (likely(partno < ptbl->len)) {
66 part = rcu_dereference(ptbl->part[partno]);
67 if (part)
68 get_device(part_to_dev(part));
69 }
70
Tejun Heoe71bf0d2008-09-03 09:03:02 +020071 rcu_read_unlock();
72
73 return part;
74}
75EXPORT_SYMBOL_GPL(disk_get_part);
76
77/**
78 * disk_part_iter_init - initialize partition iterator
79 * @piter: iterator to initialize
80 * @disk: disk to iterate over
81 * @flags: DISK_PITER_* flags
82 *
83 * Initialize @piter so that it iterates over partitions of @disk.
84 *
85 * CONTEXT:
86 * Don't care.
87 */
88void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
89 unsigned int flags)
90{
Tejun Heo540eed52008-08-25 19:56:15 +090091 struct disk_part_tbl *ptbl;
92
93 rcu_read_lock();
94 ptbl = rcu_dereference(disk->part_tbl);
95
Tejun Heoe71bf0d2008-09-03 09:03:02 +020096 piter->disk = disk;
97 piter->part = NULL;
98
99 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900100 piter->idx = ptbl->len - 1;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200101 else if (flags & DISK_PITER_INCL_PART0)
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200102 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200103 else
104 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200105
106 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900107
108 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200109}
110EXPORT_SYMBOL_GPL(disk_part_iter_init);
111
112/**
113 * disk_part_iter_next - proceed iterator to the next partition and return it
114 * @piter: iterator of interest
115 *
116 * Proceed @piter to the next partition and return it.
117 *
118 * CONTEXT:
119 * Don't care.
120 */
121struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
122{
Tejun Heo540eed52008-08-25 19:56:15 +0900123 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200124 int inc, end;
125
126 /* put the last partition */
127 disk_put_part(piter->part);
128 piter->part = NULL;
129
Tejun Heo540eed52008-08-25 19:56:15 +0900130 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200131 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900132 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200133
134 /* determine iteration parameters */
135 if (piter->flags & DISK_PITER_REVERSE) {
136 inc = -1;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200137 if (piter->flags & DISK_PITER_INCL_PART0)
138 end = -1;
139 else
140 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200141 } else {
142 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900143 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200144 }
145
146 /* iterate to the next partition */
147 for (; piter->idx != end; piter->idx += inc) {
148 struct hd_struct *part;
149
Tejun Heo540eed52008-08-25 19:56:15 +0900150 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200151 if (!part)
152 continue;
153 if (!(piter->flags & DISK_PITER_INCL_EMPTY) && !part->nr_sects)
154 continue;
155
Tejun Heoed9e1982008-08-25 19:56:05 +0900156 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200157 piter->part = part;
158 piter->idx += inc;
159 break;
160 }
161
162 rcu_read_unlock();
163
164 return piter->part;
165}
166EXPORT_SYMBOL_GPL(disk_part_iter_next);
167
168/**
169 * disk_part_iter_exit - finish up partition iteration
170 * @piter: iter of interest
171 *
172 * Called when iteration is over. Cleans up @piter.
173 *
174 * CONTEXT:
175 * Don't care.
176 */
177void disk_part_iter_exit(struct disk_part_iter *piter)
178{
179 disk_put_part(piter->part);
180 piter->part = NULL;
181}
182EXPORT_SYMBOL_GPL(disk_part_iter_exit);
183
Jens Axboea6f23652008-10-24 12:52:42 +0200184static inline int sector_in_part(struct hd_struct *part, sector_t sector)
185{
186 return part->start_sect <= sector &&
187 sector < part->start_sect + part->nr_sects;
188}
189
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200190/**
191 * disk_map_sector_rcu - map sector to partition
192 * @disk: gendisk of interest
193 * @sector: sector to map
194 *
195 * Find out which partition @sector maps to on @disk. This is
196 * primarily used for stats accounting.
197 *
198 * CONTEXT:
199 * RCU read locked. The returned partition pointer is valid only
200 * while preemption is disabled.
201 *
202 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900203 * Found partition on success, part0 is returned if no partition matches
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200204 */
205struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
206{
Tejun Heo540eed52008-08-25 19:56:15 +0900207 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200208 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200209 int i;
210
Tejun Heo540eed52008-08-25 19:56:15 +0900211 ptbl = rcu_dereference(disk->part_tbl);
212
Jens Axboea6f23652008-10-24 12:52:42 +0200213 part = rcu_dereference(ptbl->last_lookup);
214 if (part && sector_in_part(part, sector))
215 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200216
Jens Axboea6f23652008-10-24 12:52:42 +0200217 for (i = 1; i < ptbl->len; i++) {
218 part = rcu_dereference(ptbl->part[i]);
219
220 if (part && sector_in_part(part, sector)) {
221 rcu_assign_pointer(ptbl->last_lookup, part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200222 return part;
Jens Axboea6f23652008-10-24 12:52:42 +0200223 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200224 }
Tejun Heo074a7ac2008-08-25 19:56:14 +0900225 return &disk->part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200226}
227EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*
230 * Can be deleted altogether. Later.
231 *
232 */
233static struct blk_major_name {
234 struct blk_major_name *next;
235 int major;
236 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800237} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239/* index in the above - for now: assume no multimajor ranges */
240static inline int major_to_index(int major)
241{
Joe Korty68eef3b2006-03-31 02:30:32 -0800242 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Joe Korty68eef3b2006-03-31 02:30:32 -0800245#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200246void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800247{
Joe Korty68eef3b2006-03-31 02:30:32 -0800248 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800249
Joe Korty68eef3b2006-03-31 02:30:32 -0800250 if (offset < BLKDEV_MAJOR_HASH_SIZE) {
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200251 mutex_lock(&block_class_lock);
Joe Korty68eef3b2006-03-31 02:30:32 -0800252 for (dp = major_names[offset]; dp; dp = dp->next)
Tejun Heocf771cb2008-09-03 09:01:09 +0200253 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200254 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
Joe Korty68eef3b2006-03-31 02:30:32 -0800257#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100259/**
260 * register_blkdev - register a new block device
261 *
262 * @major: the requested major device number [1..255]. If @major=0, try to
263 * allocate any unused major number.
264 * @name: the name of the new block device as a zero terminated string
265 *
266 * The @name must be unique within the system.
267 *
268 * The return value depends on the @major input parameter.
269 * - if a major device number was requested in range [1..255] then the
270 * function returns zero on success, or a negative error code
271 * - if any unused major number was requested with @major=0 parameter
272 * then the return value is the allocated major number in range
273 * [1..255] or a negative error code otherwise
274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275int register_blkdev(unsigned int major, const char *name)
276{
277 struct blk_major_name **n, *p;
278 int index, ret = 0;
279
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200280 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* temporary */
283 if (major == 0) {
284 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
285 if (major_names[index] == NULL)
286 break;
287 }
288
289 if (index == 0) {
290 printk("register_blkdev: failed to get major for %s\n",
291 name);
292 ret = -EBUSY;
293 goto out;
294 }
295 major = index;
296 ret = major;
297 }
298
299 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
300 if (p == NULL) {
301 ret = -ENOMEM;
302 goto out;
303 }
304
305 p->major = major;
306 strlcpy(p->name, name, sizeof(p->name));
307 p->next = NULL;
308 index = major_to_index(major);
309
310 for (n = &major_names[index]; *n; n = &(*n)->next) {
311 if ((*n)->major == major)
312 break;
313 }
314 if (!*n)
315 *n = p;
316 else
317 ret = -EBUSY;
318
319 if (ret < 0) {
320 printk("register_blkdev: cannot get major %d for %s\n",
321 major, name);
322 kfree(p);
323 }
324out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200325 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return ret;
327}
328
329EXPORT_SYMBOL(register_blkdev);
330
Akinobu Mitaf4480242007-07-17 04:03:47 -0700331void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 struct blk_major_name **n;
334 struct blk_major_name *p = NULL;
335 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200337 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 for (n = &major_names[index]; *n; n = &(*n)->next)
339 if ((*n)->major == major)
340 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700341 if (!*n || strcmp((*n)->name, name)) {
342 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700343 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 p = *n;
345 *n = p->next;
346 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200347 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351EXPORT_SYMBOL(unregister_blkdev);
352
353static struct kobj_map *bdev_map;
354
Tejun Heobcce3de2008-08-25 19:47:22 +0900355/**
Tejun Heo870d6652008-08-25 19:47:25 +0900356 * blk_mangle_minor - scatter minor numbers apart
357 * @minor: minor number to mangle
358 *
359 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
360 * is enabled. Mangling twice gives the original value.
361 *
362 * RETURNS:
363 * Mangled value.
364 *
365 * CONTEXT:
366 * Don't care.
367 */
368static int blk_mangle_minor(int minor)
369{
370#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
371 int i;
372
373 for (i = 0; i < MINORBITS / 2; i++) {
374 int low = minor & (1 << i);
375 int high = minor & (1 << (MINORBITS - 1 - i));
376 int distance = MINORBITS - 1 - 2 * i;
377
378 minor ^= low | high; /* clear both bits */
379 low <<= distance; /* swap the positions */
380 high >>= distance;
381 minor |= low | high; /* and set */
382 }
383#endif
384 return minor;
385}
386
387/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900388 * blk_alloc_devt - allocate a dev_t for a partition
389 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900390 * @devt: out parameter for resulting dev_t
391 *
392 * Allocate a dev_t for block device.
393 *
394 * RETURNS:
395 * 0 on success, allocated dev_t is returned in *@devt. -errno on
396 * failure.
397 *
398 * CONTEXT:
399 * Might sleep.
400 */
401int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
402{
403 struct gendisk *disk = part_to_disk(part);
404 int idx, rc;
405
406 /* in consecutive minor range? */
407 if (part->partno < disk->minors) {
408 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
409 return 0;
410 }
411
412 /* allocate ext devt */
413 do {
414 if (!idr_pre_get(&ext_devt_idr, GFP_KERNEL))
415 return -ENOMEM;
416 rc = idr_get_new(&ext_devt_idr, part, &idx);
417 } while (rc == -EAGAIN);
418
419 if (rc)
420 return rc;
421
422 if (idx > MAX_EXT_DEVT) {
423 idr_remove(&ext_devt_idr, idx);
424 return -EBUSY;
425 }
426
Tejun Heo870d6652008-08-25 19:47:25 +0900427 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900428 return 0;
429}
430
431/**
432 * blk_free_devt - free a dev_t
433 * @devt: dev_t to free
434 *
435 * Free @devt which was allocated using blk_alloc_devt().
436 *
437 * CONTEXT:
438 * Might sleep.
439 */
440void blk_free_devt(dev_t devt)
441{
442 might_sleep();
443
444 if (devt == MKDEV(0, 0))
445 return;
446
447 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
448 mutex_lock(&ext_devt_mutex);
Tejun Heo870d6652008-08-25 19:47:25 +0900449 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Tejun Heobcce3de2008-08-25 19:47:22 +0900450 mutex_unlock(&ext_devt_mutex);
451 }
452}
453
Tejun Heo1f014292008-08-25 19:47:23 +0900454static char *bdevt_str(dev_t devt, char *buf)
455{
456 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
457 char tbuf[BDEVT_SIZE];
458 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
459 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
460 } else
461 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
462
463 return buf;
464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/*
467 * Register device numbers dev..(dev+range-1)
468 * range must be nonzero
469 * The hash chain is sorted on range, so that subranges can override.
470 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200471void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 struct kobject *(*probe)(dev_t, int *, void *),
473 int (*lock)(dev_t, void *), void *data)
474{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200475 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478EXPORT_SYMBOL(blk_register_region);
479
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200480void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200482 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485EXPORT_SYMBOL(blk_unregister_region);
486
Tejun Heocf771cb2008-09-03 09:01:09 +0200487static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200490
Tejun Heoed9e1982008-08-25 19:56:05 +0900491 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200494static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 struct gendisk *p = data;
497
498 if (!get_disk(p))
499 return -1;
500 return 0;
501}
502
503/**
504 * add_disk - add partitioning information to kernel list
505 * @disk: per-device partitioning information
506 *
507 * This function registers the partitioning information in @disk
508 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900509 *
510 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 */
512void add_disk(struct gendisk *disk)
513{
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700514 struct backing_dev_info *bdi;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900515 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400516 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700517
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900518 /* minors == 0 indicates to use ext devt from part0 and should
519 * be accompanied with EXT_DEVT flag. Make sure all
520 * parameters make sense.
521 */
522 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
523 WARN_ON(!disk->minors && !(disk->flags & GENHD_FL_EXT_DEVT));
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900526
527 retval = blk_alloc_devt(&disk->part0, &devt);
528 if (retval) {
529 WARN_ON(1);
530 return;
531 }
532 disk_to_dev(disk)->devt = devt;
533
534 /* ->major and ->first_minor aren't supposed to be
535 * dereferenced from here on, but set them just in case.
536 */
537 disk->major = MAJOR(devt);
538 disk->first_minor = MINOR(devt);
539
Tejun Heof331c022008-09-03 09:01:48 +0200540 blk_register_region(disk_devt(disk), disk->minors, NULL,
541 exact_match, exact_lock, disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 register_disk(disk);
543 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700544
545 bdi = &disk->queue->backing_dev_info;
Tejun Heof331c022008-09-03 09:01:48 +0200546 bdi_register_dev(bdi, disk_devt(disk));
Tejun Heoed9e1982008-08-25 19:56:05 +0900547 retval = sysfs_create_link(&disk_to_dev(disk)->kobj, &bdi->dev->kobj,
548 "bdi");
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400549 WARN_ON(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
552EXPORT_SYMBOL(add_disk);
553EXPORT_SYMBOL(del_gendisk); /* in partitions/check.c */
554
555void unlink_gendisk(struct gendisk *disk)
556{
Tejun Heoed9e1982008-08-25 19:56:05 +0900557 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700558 bdi_unregister(&disk->queue->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 blk_unregister_queue(disk);
Tejun Heof331c022008-09-03 09:01:48 +0200560 blk_unregister_region(disk_devt(disk), disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563/**
564 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200565 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200566 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 *
568 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200569 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200571struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Tejun Heobcce3de2008-08-25 19:47:22 +0900573 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200574
Tejun Heobcce3de2008-08-25 19:47:22 +0900575 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
576 struct kobject *kobj;
577
578 kobj = kobj_lookup(bdev_map, devt, partno);
579 if (kobj)
580 disk = dev_to_disk(kobj_to_dev(kobj));
581 } else {
582 struct hd_struct *part;
583
584 mutex_lock(&ext_devt_mutex);
Tejun Heo870d6652008-08-25 19:47:25 +0900585 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Tejun Heobcce3de2008-08-25 19:47:22 +0900586 if (part && get_disk(part_to_disk(part))) {
587 *partno = part->partno;
588 disk = part_to_disk(part);
589 }
590 mutex_unlock(&ext_devt_mutex);
591 }
592
593 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Tejun Heof331c022008-09-03 09:01:48 +0200596/**
597 * bdget_disk - do bdget() by gendisk and partition number
598 * @disk: gendisk of interest
599 * @partno: partition number
600 *
601 * Find partition @partno from @disk, do bdget() on it.
602 *
603 * CONTEXT:
604 * Don't care.
605 *
606 * RETURNS:
607 * Resulting block_device on success, NULL on failure.
608 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200609struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200610{
Tejun Heo548b10e2008-08-29 09:01:47 +0200611 struct hd_struct *part;
612 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200613
Tejun Heo548b10e2008-08-29 09:01:47 +0200614 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200615 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200616 bdev = bdget(part_devt(part));
617 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200618
Tejun Heo548b10e2008-08-29 09:01:47 +0200619 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200620}
621EXPORT_SYMBOL(bdget_disk);
622
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700623/*
624 * print a full list of all partitions - intended for places where the root
625 * filesystem can't be mounted and thus to give the victim some idea of what
626 * went wrong
627 */
628void __init printk_all_partitions(void)
629{
Tejun Heodef4e382008-09-03 08:57:12 +0200630 struct class_dev_iter iter;
631 struct device *dev;
632
633 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
634 while ((dev = class_dev_iter_next(&iter))) {
635 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200636 struct disk_part_iter piter;
637 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900638 char name_buf[BDEVNAME_SIZE];
639 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200640
641 /*
642 * Don't show empty devices or things that have been
643 * surpressed
644 */
645 if (get_capacity(disk) == 0 ||
646 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
647 continue;
648
649 /*
650 * Note, unlike /proc/partitions, I am showing the
651 * numbers in hex - the same format as the root=
652 * option takes.
653 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900654 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
655 while ((part = disk_part_iter_next(&piter))) {
656 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200657
Tejun Heo074a7ac2008-08-25 19:56:14 +0900658 printk("%s%s %10llu %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900659 bdevt_str(part_devt(part), devt_buf),
Tejun Heof331c022008-09-03 09:01:48 +0200660 (unsigned long long)part->nr_sects >> 1,
Tejun Heo1f014292008-08-25 19:47:23 +0900661 disk_name(disk, part->partno, name_buf));
Tejun Heo074a7ac2008-08-25 19:56:14 +0900662 if (is_part0) {
663 if (disk->driverfs_dev != NULL &&
664 disk->driverfs_dev->driver != NULL)
665 printk(" driver: %s\n",
666 disk->driverfs_dev->driver->name);
667 else
668 printk(" (driver?)\n");
669 } else
670 printk("\n");
671 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200672 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200673 }
674 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700675}
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677#ifdef CONFIG_PROC_FS
678/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200679static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400680{
Tejun Heodef4e382008-09-03 08:57:12 +0200681 loff_t skip = *pos;
682 struct class_dev_iter *iter;
683 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400684
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200685 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +0200686 if (!iter)
687 return ERR_PTR(-ENOMEM);
688
689 seqf->private = iter;
690 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
691 do {
692 dev = class_dev_iter_next(iter);
693 if (!dev)
694 return NULL;
695 } while (skip--);
696
697 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400698}
699
Tejun Heodef4e382008-09-03 08:57:12 +0200700static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200702 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -0400703
Tejun Heodef4e382008-09-03 08:57:12 +0200704 (*pos)++;
705 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200706 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400707 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return NULL;
710}
711
Tejun Heodef4e382008-09-03 08:57:12 +0200712static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400713{
Tejun Heodef4e382008-09-03 08:57:12 +0200714 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400715
Tejun Heodef4e382008-09-03 08:57:12 +0200716 /* stop is called even after start failed :-( */
717 if (iter) {
718 class_dev_iter_exit(iter);
719 kfree(iter);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +0200720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Tejun Heodef4e382008-09-03 08:57:12 +0200723static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Tejun Heodef4e382008-09-03 08:57:12 +0200725 static void *p;
726
727 p = disk_seqf_start(seqf, pos);
Tejun Heo243294d2008-09-04 09:17:31 +0200728 if (!IS_ERR(p) && p && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +0200729 seq_puts(seqf, "major minor #blocks name\n\n");
730 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Tejun Heocf771cb2008-09-03 09:01:09 +0200733static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200736 struct disk_part_iter piter;
737 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 char buf[BDEVNAME_SIZE];
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200741 if (!get_capacity(sgp) || (!disk_partitionable(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +0200742 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return 0;
744 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
745 return 0;
746
747 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900748 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200749 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +0900750 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +0200751 MAJOR(part_devt(part)), MINOR(part_devt(part)),
752 (unsigned long long)part->nr_sects >> 1,
753 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200754 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 return 0;
757}
758
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400759static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +0200760 .start = show_partition_start,
761 .next = disk_seqf_next,
762 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200763 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764};
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400765
766static int partitions_open(struct inode *inode, struct file *file)
767{
768 return seq_open(file, &partitions_op);
769}
770
771static const struct file_operations proc_partitions_operations = {
772 .open = partitions_open,
773 .read = seq_read,
774 .llseek = seq_lseek,
775 .release = seq_release,
776};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777#endif
778
779
Tejun Heocf771cb2008-09-03 09:01:09 +0200780static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200782 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200784 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return NULL;
786}
787
788static int __init genhd_device_init(void)
789{
Dan Williamse105b8b2008-04-21 10:51:07 -0700790 int error;
791
792 block_class.dev_kobj = sysfs_dev_block_kobj;
793 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -0700794 if (unlikely(error))
795 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200796 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200798
Zhang, Yanmin561ec682008-11-14 08:26:30 +0100799 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
800
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200801#ifndef CONFIG_SYSFS_DEPRECATED
802 /* create top-level block dir */
803 block_depr = kobject_create_and_add("block", NULL);
804#endif
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -0800805 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808subsys_initcall(genhd_device_init);
809
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200810static ssize_t disk_range_show(struct device *dev,
811 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200813 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200815 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Tejun Heo1f014292008-08-25 19:47:23 +0900818static ssize_t disk_ext_range_show(struct device *dev,
819 struct device_attribute *attr, char *buf)
820{
821 struct gendisk *disk = dev_to_disk(dev);
822
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200823 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +0900824}
825
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200826static ssize_t disk_removable_show(struct device *dev,
827 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +0200828{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200829 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200830
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200831 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200833}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Kay Sievers1c9ce522008-06-13 09:41:00 +0200835static ssize_t disk_ro_show(struct device *dev,
836 struct device_attribute *attr, char *buf)
837{
838 struct gendisk *disk = dev_to_disk(dev);
839
Tejun Heob7db9952008-08-25 19:56:10 +0900840 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +0200841}
842
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200843static ssize_t disk_capability_show(struct device *dev,
844 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -0700845{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200846 struct gendisk *disk = dev_to_disk(dev);
847
848 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -0700849}
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200850
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200851static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
Tejun Heo1f014292008-08-25 19:47:23 +0900852static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200853static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
Kay Sievers1c9ce522008-06-13 09:41:00 +0200854static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
Tejun Heoe5610522008-08-25 19:56:09 +0900855static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200856static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900857static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
Akinobu Mitac17bb492006-12-08 02:39:46 -0800858#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200859static struct device_attribute dev_attr_fail =
Tejun Heoeddb2e22008-08-25 19:56:13 +0900860 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -0800861#endif
Jens Axboe581d4e22008-09-14 05:56:33 -0700862#ifdef CONFIG_FAIL_IO_TIMEOUT
863static struct device_attribute dev_attr_fail_timeout =
864 __ATTR(io-timeout-fail, S_IRUGO|S_IWUSR, part_timeout_show,
865 part_timeout_store);
866#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200867
868static struct attribute *disk_attrs[] = {
869 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +0900870 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200871 &dev_attr_removable.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +0200872 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200873 &dev_attr_size.attr,
874 &dev_attr_capability.attr,
875 &dev_attr_stat.attr,
876#ifdef CONFIG_FAIL_MAKE_REQUEST
877 &dev_attr_fail.attr,
878#endif
Jens Axboe581d4e22008-09-14 05:56:33 -0700879#ifdef CONFIG_FAIL_IO_TIMEOUT
880 &dev_attr_fail_timeout.attr,
881#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200882 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883};
884
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200885static struct attribute_group disk_attr_group = {
886 .attrs = disk_attrs,
887};
888
889static struct attribute_group *disk_attr_groups[] = {
890 &disk_attr_group,
891 NULL
892};
893
Tejun Heo540eed52008-08-25 19:56:15 +0900894static void disk_free_ptbl_rcu_cb(struct rcu_head *head)
895{
896 struct disk_part_tbl *ptbl =
897 container_of(head, struct disk_part_tbl, rcu_head);
898
899 kfree(ptbl);
900}
901
902/**
903 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
904 * @disk: disk to replace part_tbl for
905 * @new_ptbl: new part_tbl to install
906 *
907 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
908 * original ptbl is freed using RCU callback.
909 *
910 * LOCKING:
911 * Matching bd_mutx locked.
912 */
913static void disk_replace_part_tbl(struct gendisk *disk,
914 struct disk_part_tbl *new_ptbl)
915{
916 struct disk_part_tbl *old_ptbl = disk->part_tbl;
917
918 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +0200919
920 if (old_ptbl) {
921 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Tejun Heo540eed52008-08-25 19:56:15 +0900922 call_rcu(&old_ptbl->rcu_head, disk_free_ptbl_rcu_cb);
Jens Axboea6f23652008-10-24 12:52:42 +0200923 }
Tejun Heo540eed52008-08-25 19:56:15 +0900924}
925
926/**
927 * disk_expand_part_tbl - expand disk->part_tbl
928 * @disk: disk to expand part_tbl for
929 * @partno: expand such that this partno can fit in
930 *
931 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
932 * uses RCU to allow unlocked dereferencing for stats and other stuff.
933 *
934 * LOCKING:
935 * Matching bd_mutex locked, might sleep.
936 *
937 * RETURNS:
938 * 0 on success, -errno on failure.
939 */
940int disk_expand_part_tbl(struct gendisk *disk, int partno)
941{
942 struct disk_part_tbl *old_ptbl = disk->part_tbl;
943 struct disk_part_tbl *new_ptbl;
944 int len = old_ptbl ? old_ptbl->len : 0;
945 int target = partno + 1;
946 size_t size;
947 int i;
948
949 /* disk_max_parts() is zero during initialization, ignore if so */
950 if (disk_max_parts(disk) && target > disk_max_parts(disk))
951 return -EINVAL;
952
953 if (target <= len)
954 return 0;
955
956 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
957 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
958 if (!new_ptbl)
959 return -ENOMEM;
960
961 INIT_RCU_HEAD(&new_ptbl->rcu_head);
962 new_ptbl->len = target;
963
964 for (i = 0; i < len; i++)
965 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
966
967 disk_replace_part_tbl(disk, new_ptbl);
968 return 0;
969}
970
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200971static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200973 struct gendisk *disk = dev_to_disk(dev);
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +0900976 disk_replace_part_tbl(disk, NULL);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900977 free_part_stats(&disk->part0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 kfree(disk);
979}
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200980struct class block_class = {
981 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982};
983
Adrian Bunk1826ead2008-03-04 11:23:46 +0100984static struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200985 .name = "disk",
986 .groups = disk_attr_groups,
987 .release = disk_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988};
989
Randy Dunlapa6e2ba82008-05-23 09:44:11 -0700990#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200991/*
992 * aggregate disk stat collector. Uses the same stats that the sysfs
993 * entries do, above, but makes them available through one seq_file.
994 *
995 * The output looks suspiciously like /proc/partitions with a bunch of
996 * extra fields.
997 */
998static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001001 struct disk_part_iter piter;
1002 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 char buf[BDEVNAME_SIZE];
Tejun Heoc9959052008-08-25 19:47:21 +09001004 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001007 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001008 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 " rio rmerge rsect ruse wio wmerge "
1010 "wsect wuse running use aveq"
1011 "\n\n");
1012 */
1013
Tejun Heo074a7ac2008-08-25 19:56:14 +09001014 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001015 while ((hd = disk_part_iter_next(&piter))) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001016 cpu = part_stat_lock();
Tejun Heoc9959052008-08-25 19:47:21 +09001017 part_round_stats(cpu, hd);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001018 part_stat_unlock();
Tejun Heo1f014292008-08-25 19:47:23 +09001019 seq_printf(seqf, "%4d %7d %s %lu %lu %llu "
Jerome Marchand28f39d52008-02-08 11:04:56 +01001020 "%u %lu %lu %llu %u %u %u %u\n",
Tejun Heof331c022008-09-03 09:01:48 +02001021 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1022 disk_name(gp, hd->partno, buf),
Jerome Marchand28f39d52008-02-08 11:04:56 +01001023 part_stat_read(hd, ios[0]),
1024 part_stat_read(hd, merges[0]),
1025 (unsigned long long)part_stat_read(hd, sectors[0]),
1026 jiffies_to_msecs(part_stat_read(hd, ticks[0])),
1027 part_stat_read(hd, ios[1]),
1028 part_stat_read(hd, merges[1]),
1029 (unsigned long long)part_stat_read(hd, sectors[1]),
1030 jiffies_to_msecs(part_stat_read(hd, ticks[1])),
1031 hd->in_flight,
1032 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1033 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1034 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001036 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 return 0;
1039}
1040
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001041static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001042 .start = disk_seqf_start,
1043 .next = disk_seqf_next,
1044 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 .show = diskstats_show
1046};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001047
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001048static int diskstats_open(struct inode *inode, struct file *file)
1049{
1050 return seq_open(file, &diskstats_op);
1051}
1052
1053static const struct file_operations proc_diskstats_operations = {
1054 .open = diskstats_open,
1055 .read = seq_read,
1056 .llseek = seq_lseek,
1057 .release = seq_release,
1058};
1059
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001060static int __init proc_genhd_init(void)
1061{
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001062 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001063 proc_create("partitions", 0, NULL, &proc_partitions_operations);
1064 return 0;
1065}
1066module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001067#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001069static void media_change_notify_thread(struct work_struct *work)
1070{
1071 struct gendisk *gd = container_of(work, struct gendisk, async_notify);
1072 char event[] = "MEDIA_CHANGE=1";
1073 char *envp[] = { event, NULL };
1074
1075 /*
1076 * set enviroment vars to indicate which event this is for
1077 * so that user space will know to go check the media status.
1078 */
Tejun Heoed9e1982008-08-25 19:56:05 +09001079 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001080 put_device(gd->driverfs_dev);
1081}
1082
Adrian Bunk1826ead2008-03-04 11:23:46 +01001083#if 0
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001084void genhd_media_change_notify(struct gendisk *disk)
1085{
1086 get_device(disk->driverfs_dev);
1087 schedule_work(&disk->async_notify);
1088}
1089EXPORT_SYMBOL_GPL(genhd_media_change_notify);
Adrian Bunk1826ead2008-03-04 11:23:46 +01001090#endif /* 0 */
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001091
Tejun Heocf771cb2008-09-03 09:01:09 +02001092dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001093{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001094 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001095 struct class_dev_iter iter;
1096 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001097
Tejun Heodef4e382008-09-03 08:57:12 +02001098 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1099 while ((dev = class_dev_iter_next(&iter))) {
1100 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001101 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001102
Kay Sievers3ada8b72009-01-06 10:44:43 -08001103 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001104 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001105
Neil Brown41b8c852009-02-18 10:33:59 +01001106 if (partno < disk->minors) {
1107 /* We need to return the right devno, even
1108 * if the partition doesn't exist yet.
1109 */
1110 devt = MKDEV(MAJOR(dev->devt),
1111 MINOR(dev->devt) + partno);
1112 break;
1113 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001114 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001115 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001116 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001117 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001118 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001119 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001120 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001121 }
Tejun Heodef4e382008-09-03 08:57:12 +02001122 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001123 return devt;
1124}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001125EXPORT_SYMBOL(blk_lookup_devt);
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127struct gendisk *alloc_disk(int minors)
1128{
Christoph Lameter19460892005-06-23 00:08:19 -07001129 return alloc_disk_node(minors, -1);
1130}
Tejun Heo689d6fa2008-08-25 19:56:16 +09001131EXPORT_SYMBOL(alloc_disk);
Christoph Lameter19460892005-06-23 00:08:19 -07001132
1133struct gendisk *alloc_disk_node(int minors, int node_id)
1134{
1135 struct gendisk *disk;
1136
Christoph Lameter94f60302007-07-17 04:03:29 -07001137 disk = kmalloc_node(sizeof(struct gendisk),
1138 GFP_KERNEL | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001140 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 kfree(disk);
1142 return NULL;
1143 }
Cheng Renquanbf91db12008-11-20 08:37:37 +01001144 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001145 if (disk_expand_part_tbl(disk, 0)) {
1146 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001147 kfree(disk);
1148 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
Tejun Heo540eed52008-08-25 19:56:15 +09001150 disk->part_tbl->part[0] = &disk->part0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001154 disk_to_dev(disk)->class = &block_class;
1155 disk_to_dev(disk)->type = &disk_type;
1156 device_initialize(disk_to_dev(disk));
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001157 INIT_WORK(&disk->async_notify,
1158 media_change_notify_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160 return disk;
1161}
Christoph Lameter19460892005-06-23 00:08:19 -07001162EXPORT_SYMBOL(alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164struct kobject *get_disk(struct gendisk *disk)
1165{
1166 struct module *owner;
1167 struct kobject *kobj;
1168
1169 if (!disk->fops)
1170 return NULL;
1171 owner = disk->fops->owner;
1172 if (owner && !try_module_get(owner))
1173 return NULL;
Tejun Heoed9e1982008-08-25 19:56:05 +09001174 kobj = kobject_get(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (kobj == NULL) {
1176 module_put(owner);
1177 return NULL;
1178 }
1179 return kobj;
1180
1181}
1182
1183EXPORT_SYMBOL(get_disk);
1184
1185void put_disk(struct gendisk *disk)
1186{
1187 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001188 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
1191EXPORT_SYMBOL(put_disk);
1192
1193void set_device_ro(struct block_device *bdev, int flag)
1194{
Tejun Heob7db9952008-08-25 19:56:10 +09001195 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
1198EXPORT_SYMBOL(set_device_ro);
1199
1200void set_disk_ro(struct gendisk *disk, int flag)
1201{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001202 struct disk_part_iter piter;
1203 struct hd_struct *part;
1204
Tejun Heob7db9952008-08-25 19:56:10 +09001205 disk_part_iter_init(&piter, disk,
1206 DISK_PITER_INCL_EMPTY | DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001207 while ((part = disk_part_iter_next(&piter)))
1208 part->policy = flag;
1209 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
1212EXPORT_SYMBOL(set_disk_ro);
1213
1214int bdev_read_only(struct block_device *bdev)
1215{
1216 if (!bdev)
1217 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001218 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
1221EXPORT_SYMBOL(bdev_read_only);
1222
Tejun Heocf771cb2008-09-03 09:01:09 +02001223int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001226 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001228 fsync_bdev(bdev);
1229 res = __invalidate_device(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 bdput(bdev);
1231 }
1232 return res;
1233}
1234
1235EXPORT_SYMBOL(invalidate_partition);