blob: 4e28a840bde0f250ca79dca7be9ddcd6b9bd70ce [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);
Kay Sieversedfaa7c2007-05-21 22:08:01 +020025struct kobject *block_depr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Tejun Heobcce3de2008-08-25 19:47:22 +090027/* for extended dynamic devt allocation, currently only one major is used */
28#define MAX_EXT_DEVT (1 << MINORBITS)
29
30/* For extended devt allocation. ext_devt_mutex prevents look up
31 * results from going away underneath its user.
32 */
33static DEFINE_MUTEX(ext_devt_mutex);
34static DEFINE_IDR(ext_devt_idr);
35
Adrian Bunk1826ead2008-03-04 11:23:46 +010036static struct device_type disk_type;
37
Tejun Heoe71bf0d2008-09-03 09:03:02 +020038/**
39 * disk_get_part - get partition
40 * @disk: disk to look partition from
41 * @partno: partition number
42 *
43 * Look for partition @partno from @disk. If found, increment
44 * reference count and return it.
45 *
46 * CONTEXT:
47 * Don't care.
48 *
49 * RETURNS:
50 * Pointer to the found partition on success, NULL if not found.
51 */
52struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
53{
Tejun Heo540eed52008-08-25 19:56:15 +090054 struct hd_struct *part = NULL;
55 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +020056
Tejun Heo540eed52008-08-25 19:56:15 +090057 if (unlikely(partno < 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +020058 return NULL;
Tejun Heo540eed52008-08-25 19:56:15 +090059
Tejun Heoe71bf0d2008-09-03 09:03:02 +020060 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +090061
62 ptbl = rcu_dereference(disk->part_tbl);
63 if (likely(partno < ptbl->len)) {
64 part = rcu_dereference(ptbl->part[partno]);
65 if (part)
66 get_device(part_to_dev(part));
67 }
68
Tejun Heoe71bf0d2008-09-03 09:03:02 +020069 rcu_read_unlock();
70
71 return part;
72}
73EXPORT_SYMBOL_GPL(disk_get_part);
74
75/**
76 * disk_part_iter_init - initialize partition iterator
77 * @piter: iterator to initialize
78 * @disk: disk to iterate over
79 * @flags: DISK_PITER_* flags
80 *
81 * Initialize @piter so that it iterates over partitions of @disk.
82 *
83 * CONTEXT:
84 * Don't care.
85 */
86void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
87 unsigned int flags)
88{
Tejun Heo540eed52008-08-25 19:56:15 +090089 struct disk_part_tbl *ptbl;
90
91 rcu_read_lock();
92 ptbl = rcu_dereference(disk->part_tbl);
93
Tejun Heoe71bf0d2008-09-03 09:03:02 +020094 piter->disk = disk;
95 piter->part = NULL;
96
97 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +090098 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +020099 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200100 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200101 else
102 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200103
104 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900105
106 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200107}
108EXPORT_SYMBOL_GPL(disk_part_iter_init);
109
110/**
111 * disk_part_iter_next - proceed iterator to the next partition and return it
112 * @piter: iterator of interest
113 *
114 * Proceed @piter to the next partition and return it.
115 *
116 * CONTEXT:
117 * Don't care.
118 */
119struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
120{
Tejun Heo540eed52008-08-25 19:56:15 +0900121 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200122 int inc, end;
123
124 /* put the last partition */
125 disk_put_part(piter->part);
126 piter->part = NULL;
127
Tejun Heo540eed52008-08-25 19:56:15 +0900128 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200129 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900130 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200131
132 /* determine iteration parameters */
133 if (piter->flags & DISK_PITER_REVERSE) {
134 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200135 if (piter->flags & (DISK_PITER_INCL_PART0 |
136 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200137 end = -1;
138 else
139 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200140 } else {
141 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900142 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200143 }
144
145 /* iterate to the next partition */
146 for (; piter->idx != end; piter->idx += inc) {
147 struct hd_struct *part;
148
Tejun Heo540eed52008-08-25 19:56:15 +0900149 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200150 if (!part)
151 continue;
Tejun Heo71982a42009-04-17 08:34:48 +0200152 if (!part->nr_sects &&
153 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
154 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
155 piter->idx == 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200156 continue;
157
Tejun Heoed9e1982008-08-25 19:56:05 +0900158 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200159 piter->part = part;
160 piter->idx += inc;
161 break;
162 }
163
164 rcu_read_unlock();
165
166 return piter->part;
167}
168EXPORT_SYMBOL_GPL(disk_part_iter_next);
169
170/**
171 * disk_part_iter_exit - finish up partition iteration
172 * @piter: iter of interest
173 *
174 * Called when iteration is over. Cleans up @piter.
175 *
176 * CONTEXT:
177 * Don't care.
178 */
179void disk_part_iter_exit(struct disk_part_iter *piter)
180{
181 disk_put_part(piter->part);
182 piter->part = NULL;
183}
184EXPORT_SYMBOL_GPL(disk_part_iter_exit);
185
Jens Axboea6f23652008-10-24 12:52:42 +0200186static inline int sector_in_part(struct hd_struct *part, sector_t sector)
187{
188 return part->start_sect <= sector &&
189 sector < part->start_sect + part->nr_sects;
190}
191
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200192/**
193 * disk_map_sector_rcu - map sector to partition
194 * @disk: gendisk of interest
195 * @sector: sector to map
196 *
197 * Find out which partition @sector maps to on @disk. This is
198 * primarily used for stats accounting.
199 *
200 * CONTEXT:
201 * RCU read locked. The returned partition pointer is valid only
202 * while preemption is disabled.
203 *
204 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900205 * Found partition on success, part0 is returned if no partition matches
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200206 */
207struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
208{
Tejun Heo540eed52008-08-25 19:56:15 +0900209 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200210 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200211 int i;
212
Tejun Heo540eed52008-08-25 19:56:15 +0900213 ptbl = rcu_dereference(disk->part_tbl);
214
Jens Axboea6f23652008-10-24 12:52:42 +0200215 part = rcu_dereference(ptbl->last_lookup);
216 if (part && sector_in_part(part, sector))
217 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200218
Jens Axboea6f23652008-10-24 12:52:42 +0200219 for (i = 1; i < ptbl->len; i++) {
220 part = rcu_dereference(ptbl->part[i]);
221
222 if (part && sector_in_part(part, sector)) {
223 rcu_assign_pointer(ptbl->last_lookup, part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200224 return part;
Jens Axboea6f23652008-10-24 12:52:42 +0200225 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200226 }
Tejun Heo074a7ac2008-08-25 19:56:14 +0900227 return &disk->part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200228}
229EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
232 * Can be deleted altogether. Later.
233 *
234 */
235static struct blk_major_name {
236 struct blk_major_name *next;
237 int major;
238 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800239} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241/* index in the above - for now: assume no multimajor ranges */
242static inline int major_to_index(int major)
243{
Joe Korty68eef3b2006-03-31 02:30:32 -0800244 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Joe Korty68eef3b2006-03-31 02:30:32 -0800247#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200248void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800249{
Joe Korty68eef3b2006-03-31 02:30:32 -0800250 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800251
Joe Korty68eef3b2006-03-31 02:30:32 -0800252 if (offset < BLKDEV_MAJOR_HASH_SIZE) {
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200253 mutex_lock(&block_class_lock);
Joe Korty68eef3b2006-03-31 02:30:32 -0800254 for (dp = major_names[offset]; dp; dp = dp->next)
Tejun Heocf771cb2008-09-03 09:01:09 +0200255 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200256 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
Joe Korty68eef3b2006-03-31 02:30:32 -0800259#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100261/**
262 * register_blkdev - register a new block device
263 *
264 * @major: the requested major device number [1..255]. If @major=0, try to
265 * allocate any unused major number.
266 * @name: the name of the new block device as a zero terminated string
267 *
268 * The @name must be unique within the system.
269 *
270 * The return value depends on the @major input parameter.
271 * - if a major device number was requested in range [1..255] then the
272 * function returns zero on success, or a negative error code
273 * - if any unused major number was requested with @major=0 parameter
274 * then the return value is the allocated major number in range
275 * [1..255] or a negative error code otherwise
276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277int register_blkdev(unsigned int major, const char *name)
278{
279 struct blk_major_name **n, *p;
280 int index, ret = 0;
281
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200282 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /* temporary */
285 if (major == 0) {
286 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
287 if (major_names[index] == NULL)
288 break;
289 }
290
291 if (index == 0) {
292 printk("register_blkdev: failed to get major for %s\n",
293 name);
294 ret = -EBUSY;
295 goto out;
296 }
297 major = index;
298 ret = major;
299 }
300
301 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
302 if (p == NULL) {
303 ret = -ENOMEM;
304 goto out;
305 }
306
307 p->major = major;
308 strlcpy(p->name, name, sizeof(p->name));
309 p->next = NULL;
310 index = major_to_index(major);
311
312 for (n = &major_names[index]; *n; n = &(*n)->next) {
313 if ((*n)->major == major)
314 break;
315 }
316 if (!*n)
317 *n = p;
318 else
319 ret = -EBUSY;
320
321 if (ret < 0) {
322 printk("register_blkdev: cannot get major %d for %s\n",
323 major, name);
324 kfree(p);
325 }
326out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200327 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return ret;
329}
330
331EXPORT_SYMBOL(register_blkdev);
332
Akinobu Mitaf4480242007-07-17 04:03:47 -0700333void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 struct blk_major_name **n;
336 struct blk_major_name *p = NULL;
337 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200339 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 for (n = &major_names[index]; *n; n = &(*n)->next)
341 if ((*n)->major == major)
342 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700343 if (!*n || strcmp((*n)->name, name)) {
344 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700345 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 p = *n;
347 *n = p->next;
348 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200349 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353EXPORT_SYMBOL(unregister_blkdev);
354
355static struct kobj_map *bdev_map;
356
Tejun Heobcce3de2008-08-25 19:47:22 +0900357/**
Tejun Heo870d6652008-08-25 19:47:25 +0900358 * blk_mangle_minor - scatter minor numbers apart
359 * @minor: minor number to mangle
360 *
361 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
362 * is enabled. Mangling twice gives the original value.
363 *
364 * RETURNS:
365 * Mangled value.
366 *
367 * CONTEXT:
368 * Don't care.
369 */
370static int blk_mangle_minor(int minor)
371{
372#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
373 int i;
374
375 for (i = 0; i < MINORBITS / 2; i++) {
376 int low = minor & (1 << i);
377 int high = minor & (1 << (MINORBITS - 1 - i));
378 int distance = MINORBITS - 1 - 2 * i;
379
380 minor ^= low | high; /* clear both bits */
381 low <<= distance; /* swap the positions */
382 high >>= distance;
383 minor |= low | high; /* and set */
384 }
385#endif
386 return minor;
387}
388
389/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900390 * blk_alloc_devt - allocate a dev_t for a partition
391 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900392 * @devt: out parameter for resulting dev_t
393 *
394 * Allocate a dev_t for block device.
395 *
396 * RETURNS:
397 * 0 on success, allocated dev_t is returned in *@devt. -errno on
398 * failure.
399 *
400 * CONTEXT:
401 * Might sleep.
402 */
403int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
404{
405 struct gendisk *disk = part_to_disk(part);
406 int idx, rc;
407
408 /* in consecutive minor range? */
409 if (part->partno < disk->minors) {
410 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
411 return 0;
412 }
413
414 /* allocate ext devt */
415 do {
416 if (!idr_pre_get(&ext_devt_idr, GFP_KERNEL))
417 return -ENOMEM;
418 rc = idr_get_new(&ext_devt_idr, part, &idx);
419 } while (rc == -EAGAIN);
420
421 if (rc)
422 return rc;
423
424 if (idx > MAX_EXT_DEVT) {
425 idr_remove(&ext_devt_idr, idx);
426 return -EBUSY;
427 }
428
Tejun Heo870d6652008-08-25 19:47:25 +0900429 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900430 return 0;
431}
432
433/**
434 * blk_free_devt - free a dev_t
435 * @devt: dev_t to free
436 *
437 * Free @devt which was allocated using blk_alloc_devt().
438 *
439 * CONTEXT:
440 * Might sleep.
441 */
442void blk_free_devt(dev_t devt)
443{
444 might_sleep();
445
446 if (devt == MKDEV(0, 0))
447 return;
448
449 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
450 mutex_lock(&ext_devt_mutex);
Tejun Heo870d6652008-08-25 19:47:25 +0900451 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Tejun Heobcce3de2008-08-25 19:47:22 +0900452 mutex_unlock(&ext_devt_mutex);
453 }
454}
455
Tejun Heo1f014292008-08-25 19:47:23 +0900456static char *bdevt_str(dev_t devt, char *buf)
457{
458 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
459 char tbuf[BDEVT_SIZE];
460 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
461 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
462 } else
463 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
464
465 return buf;
466}
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/*
469 * Register device numbers dev..(dev+range-1)
470 * range must be nonzero
471 * The hash chain is sorted on range, so that subranges can override.
472 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200473void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct kobject *(*probe)(dev_t, int *, void *),
475 int (*lock)(dev_t, void *), void *data)
476{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200477 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480EXPORT_SYMBOL(blk_register_region);
481
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200482void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200484 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
487EXPORT_SYMBOL(blk_unregister_region);
488
Tejun Heocf771cb2008-09-03 09:01:09 +0200489static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200492
Tejun Heoed9e1982008-08-25 19:56:05 +0900493 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200496static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct gendisk *p = data;
499
500 if (!get_disk(p))
501 return -1;
502 return 0;
503}
504
505/**
506 * add_disk - add partitioning information to kernel list
507 * @disk: per-device partitioning information
508 *
509 * This function registers the partitioning information in @disk
510 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900511 *
512 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 */
514void add_disk(struct gendisk *disk)
515{
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700516 struct backing_dev_info *bdi;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900517 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400518 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700519
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900520 /* minors == 0 indicates to use ext devt from part0 and should
521 * be accompanied with EXT_DEVT flag. Make sure all
522 * parameters make sense.
523 */
524 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
525 WARN_ON(!disk->minors && !(disk->flags & GENHD_FL_EXT_DEVT));
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900528
529 retval = blk_alloc_devt(&disk->part0, &devt);
530 if (retval) {
531 WARN_ON(1);
532 return;
533 }
534 disk_to_dev(disk)->devt = devt;
535
536 /* ->major and ->first_minor aren't supposed to be
537 * dereferenced from here on, but set them just in case.
538 */
539 disk->major = MAJOR(devt);
540 disk->first_minor = MINOR(devt);
541
Tejun Heof331c022008-09-03 09:01:48 +0200542 blk_register_region(disk_devt(disk), disk->minors, NULL,
543 exact_match, exact_lock, disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 register_disk(disk);
545 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700546
547 bdi = &disk->queue->backing_dev_info;
Tejun Heof331c022008-09-03 09:01:48 +0200548 bdi_register_dev(bdi, disk_devt(disk));
Tejun Heoed9e1982008-08-25 19:56:05 +0900549 retval = sysfs_create_link(&disk_to_dev(disk)->kobj, &bdi->dev->kobj,
550 "bdi");
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400551 WARN_ON(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554EXPORT_SYMBOL(add_disk);
555EXPORT_SYMBOL(del_gendisk); /* in partitions/check.c */
556
557void unlink_gendisk(struct gendisk *disk)
558{
Tejun Heoed9e1982008-08-25 19:56:05 +0900559 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700560 bdi_unregister(&disk->queue->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 blk_unregister_queue(disk);
Tejun Heof331c022008-09-03 09:01:48 +0200562 blk_unregister_region(disk_devt(disk), disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565/**
566 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200567 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200568 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 *
570 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200571 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200573struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Tejun Heobcce3de2008-08-25 19:47:22 +0900575 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200576
Tejun Heobcce3de2008-08-25 19:47:22 +0900577 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
578 struct kobject *kobj;
579
580 kobj = kobj_lookup(bdev_map, devt, partno);
581 if (kobj)
582 disk = dev_to_disk(kobj_to_dev(kobj));
583 } else {
584 struct hd_struct *part;
585
586 mutex_lock(&ext_devt_mutex);
Tejun Heo870d6652008-08-25 19:47:25 +0900587 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Tejun Heobcce3de2008-08-25 19:47:22 +0900588 if (part && get_disk(part_to_disk(part))) {
589 *partno = part->partno;
590 disk = part_to_disk(part);
591 }
592 mutex_unlock(&ext_devt_mutex);
593 }
594
595 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +0200597EXPORT_SYMBOL(get_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Tejun Heof331c022008-09-03 09:01:48 +0200599/**
600 * bdget_disk - do bdget() by gendisk and partition number
601 * @disk: gendisk of interest
602 * @partno: partition number
603 *
604 * Find partition @partno from @disk, do bdget() on it.
605 *
606 * CONTEXT:
607 * Don't care.
608 *
609 * RETURNS:
610 * Resulting block_device on success, NULL on failure.
611 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200612struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200613{
Tejun Heo548b10e2008-08-29 09:01:47 +0200614 struct hd_struct *part;
615 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200616
Tejun Heo548b10e2008-08-29 09:01:47 +0200617 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200618 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200619 bdev = bdget(part_devt(part));
620 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200621
Tejun Heo548b10e2008-08-29 09:01:47 +0200622 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200623}
624EXPORT_SYMBOL(bdget_disk);
625
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700626/*
627 * print a full list of all partitions - intended for places where the root
628 * filesystem can't be mounted and thus to give the victim some idea of what
629 * went wrong
630 */
631void __init printk_all_partitions(void)
632{
Tejun Heodef4e382008-09-03 08:57:12 +0200633 struct class_dev_iter iter;
634 struct device *dev;
635
636 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
637 while ((dev = class_dev_iter_next(&iter))) {
638 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200639 struct disk_part_iter piter;
640 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900641 char name_buf[BDEVNAME_SIZE];
642 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200643
644 /*
645 * Don't show empty devices or things that have been
646 * surpressed
647 */
648 if (get_capacity(disk) == 0 ||
649 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
650 continue;
651
652 /*
653 * Note, unlike /proc/partitions, I am showing the
654 * numbers in hex - the same format as the root=
655 * option takes.
656 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900657 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
658 while ((part = disk_part_iter_next(&piter))) {
659 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200660
Tejun Heo074a7ac2008-08-25 19:56:14 +0900661 printk("%s%s %10llu %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900662 bdevt_str(part_devt(part), devt_buf),
Tejun Heof331c022008-09-03 09:01:48 +0200663 (unsigned long long)part->nr_sects >> 1,
Tejun Heo1f014292008-08-25 19:47:23 +0900664 disk_name(disk, part->partno, name_buf));
Tejun Heo074a7ac2008-08-25 19:56:14 +0900665 if (is_part0) {
666 if (disk->driverfs_dev != NULL &&
667 disk->driverfs_dev->driver != NULL)
668 printk(" driver: %s\n",
669 disk->driverfs_dev->driver->name);
670 else
671 printk(" (driver?)\n");
672 } else
673 printk("\n");
674 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200675 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200676 }
677 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680#ifdef CONFIG_PROC_FS
681/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200682static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400683{
Tejun Heodef4e382008-09-03 08:57:12 +0200684 loff_t skip = *pos;
685 struct class_dev_iter *iter;
686 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400687
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200688 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +0200689 if (!iter)
690 return ERR_PTR(-ENOMEM);
691
692 seqf->private = iter;
693 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
694 do {
695 dev = class_dev_iter_next(iter);
696 if (!dev)
697 return NULL;
698 } while (skip--);
699
700 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400701}
702
Tejun Heodef4e382008-09-03 08:57:12 +0200703static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200705 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -0400706
Tejun Heodef4e382008-09-03 08:57:12 +0200707 (*pos)++;
708 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200709 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400710 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return NULL;
713}
714
Tejun Heodef4e382008-09-03 08:57:12 +0200715static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400716{
Tejun Heodef4e382008-09-03 08:57:12 +0200717 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400718
Tejun Heodef4e382008-09-03 08:57:12 +0200719 /* stop is called even after start failed :-( */
720 if (iter) {
721 class_dev_iter_exit(iter);
722 kfree(iter);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +0200723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Tejun Heodef4e382008-09-03 08:57:12 +0200726static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Tejun Heodef4e382008-09-03 08:57:12 +0200728 static void *p;
729
730 p = disk_seqf_start(seqf, pos);
Tejun Heo243294d2008-09-04 09:17:31 +0200731 if (!IS_ERR(p) && p && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +0200732 seq_puts(seqf, "major minor #blocks name\n\n");
733 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
Tejun Heocf771cb2008-09-03 09:01:09 +0200736static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200739 struct disk_part_iter piter;
740 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 char buf[BDEVNAME_SIZE];
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200744 if (!get_capacity(sgp) || (!disk_partitionable(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +0200745 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return 0;
747 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
748 return 0;
749
750 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900751 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200752 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +0900753 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +0200754 MAJOR(part_devt(part)), MINOR(part_devt(part)),
755 (unsigned long long)part->nr_sects >> 1,
756 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200757 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 return 0;
760}
761
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400762static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +0200763 .start = show_partition_start,
764 .next = disk_seqf_next,
765 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200766 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767};
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400768
769static int partitions_open(struct inode *inode, struct file *file)
770{
771 return seq_open(file, &partitions_op);
772}
773
774static const struct file_operations proc_partitions_operations = {
775 .open = partitions_open,
776 .read = seq_read,
777 .llseek = seq_lseek,
778 .release = seq_release,
779};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780#endif
781
782
Tejun Heocf771cb2008-09-03 09:01:09 +0200783static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200785 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200787 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return NULL;
789}
790
791static int __init genhd_device_init(void)
792{
Dan Williamse105b8b2008-04-21 10:51:07 -0700793 int error;
794
795 block_class.dev_kobj = sysfs_dev_block_kobj;
796 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -0700797 if (unlikely(error))
798 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200799 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200801
Zhang, Yanmin561ec682008-11-14 08:26:30 +0100802 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
803
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200804 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +0200805 if (!sysfs_deprecated)
806 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -0800807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810subsys_initcall(genhd_device_init);
811
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200812static ssize_t disk_range_show(struct device *dev,
813 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200815 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200817 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Tejun Heo1f014292008-08-25 19:47:23 +0900820static ssize_t disk_ext_range_show(struct device *dev,
821 struct device_attribute *attr, char *buf)
822{
823 struct gendisk *disk = dev_to_disk(dev);
824
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200825 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +0900826}
827
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200828static ssize_t disk_removable_show(struct device *dev,
829 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +0200830{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200831 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200832
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200833 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200835}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Kay Sievers1c9ce522008-06-13 09:41:00 +0200837static ssize_t disk_ro_show(struct device *dev,
838 struct device_attribute *attr, char *buf)
839{
840 struct gendisk *disk = dev_to_disk(dev);
841
Tejun Heob7db9952008-08-25 19:56:10 +0900842 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +0200843}
844
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200845static ssize_t disk_capability_show(struct device *dev,
846 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -0700847{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200848 struct gendisk *disk = dev_to_disk(dev);
849
850 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -0700851}
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200852
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400853static ssize_t disk_alignment_offset_show(struct device *dev,
854 struct device_attribute *attr,
855 char *buf)
856{
857 struct gendisk *disk = dev_to_disk(dev);
858
859 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
860}
861
Martin K. Petersen86b37282009-11-10 11:50:21 +0100862static ssize_t disk_discard_alignment_show(struct device *dev,
863 struct device_attribute *attr,
864 char *buf)
865{
866 struct gendisk *disk = dev_to_disk(dev);
867
Martin K. Petersendd3d1452010-01-11 03:21:48 -0500868 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +0100869}
870
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200871static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
Tejun Heo1f014292008-08-25 19:47:23 +0900872static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200873static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
Kay Sievers1c9ce522008-06-13 09:41:00 +0200874static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
Tejun Heoe5610522008-08-25 19:56:09 +0900875static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400876static DEVICE_ATTR(alignment_offset, S_IRUGO, disk_alignment_offset_show, NULL);
Martin K. Petersen86b37282009-11-10 11:50:21 +0100877static DEVICE_ATTR(discard_alignment, S_IRUGO, disk_discard_alignment_show,
878 NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200879static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900880static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200881static DEVICE_ATTR(inflight, S_IRUGO, part_inflight_show, NULL);
Akinobu Mitac17bb492006-12-08 02:39:46 -0800882#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200883static struct device_attribute dev_attr_fail =
Tejun Heoeddb2e22008-08-25 19:56:13 +0900884 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -0800885#endif
Jens Axboe581d4e22008-09-14 05:56:33 -0700886#ifdef CONFIG_FAIL_IO_TIMEOUT
887static struct device_attribute dev_attr_fail_timeout =
888 __ATTR(io-timeout-fail, S_IRUGO|S_IWUSR, part_timeout_show,
889 part_timeout_store);
890#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200891
892static struct attribute *disk_attrs[] = {
893 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +0900894 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200895 &dev_attr_removable.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +0200896 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200897 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400898 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +0100899 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200900 &dev_attr_capability.attr,
901 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200902 &dev_attr_inflight.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200903#ifdef CONFIG_FAIL_MAKE_REQUEST
904 &dev_attr_fail.attr,
905#endif
Jens Axboe581d4e22008-09-14 05:56:33 -0700906#ifdef CONFIG_FAIL_IO_TIMEOUT
907 &dev_attr_fail_timeout.attr,
908#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200909 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910};
911
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200912static struct attribute_group disk_attr_group = {
913 .attrs = disk_attrs,
914};
915
David Brownella4dbd672009-06-24 10:06:31 -0700916static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200917 &disk_attr_group,
918 NULL
919};
920
Tejun Heo540eed52008-08-25 19:56:15 +0900921static void disk_free_ptbl_rcu_cb(struct rcu_head *head)
922{
923 struct disk_part_tbl *ptbl =
924 container_of(head, struct disk_part_tbl, rcu_head);
925
926 kfree(ptbl);
927}
928
929/**
930 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
931 * @disk: disk to replace part_tbl for
932 * @new_ptbl: new part_tbl to install
933 *
934 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
935 * original ptbl is freed using RCU callback.
936 *
937 * LOCKING:
938 * Matching bd_mutx locked.
939 */
940static void disk_replace_part_tbl(struct gendisk *disk,
941 struct disk_part_tbl *new_ptbl)
942{
943 struct disk_part_tbl *old_ptbl = disk->part_tbl;
944
945 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +0200946
947 if (old_ptbl) {
948 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Tejun Heo540eed52008-08-25 19:56:15 +0900949 call_rcu(&old_ptbl->rcu_head, disk_free_ptbl_rcu_cb);
Jens Axboea6f23652008-10-24 12:52:42 +0200950 }
Tejun Heo540eed52008-08-25 19:56:15 +0900951}
952
953/**
954 * disk_expand_part_tbl - expand disk->part_tbl
955 * @disk: disk to expand part_tbl for
956 * @partno: expand such that this partno can fit in
957 *
958 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
959 * uses RCU to allow unlocked dereferencing for stats and other stuff.
960 *
961 * LOCKING:
962 * Matching bd_mutex locked, might sleep.
963 *
964 * RETURNS:
965 * 0 on success, -errno on failure.
966 */
967int disk_expand_part_tbl(struct gendisk *disk, int partno)
968{
969 struct disk_part_tbl *old_ptbl = disk->part_tbl;
970 struct disk_part_tbl *new_ptbl;
971 int len = old_ptbl ? old_ptbl->len : 0;
972 int target = partno + 1;
973 size_t size;
974 int i;
975
976 /* disk_max_parts() is zero during initialization, ignore if so */
977 if (disk_max_parts(disk) && target > disk_max_parts(disk))
978 return -EINVAL;
979
980 if (target <= len)
981 return 0;
982
983 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
984 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
985 if (!new_ptbl)
986 return -ENOMEM;
987
Tejun Heo540eed52008-08-25 19:56:15 +0900988 new_ptbl->len = target;
989
990 for (i = 0; i < len; i++)
991 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
992
993 disk_replace_part_tbl(disk, new_ptbl);
994 return 0;
995}
996
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200997static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200999 struct gendisk *disk = dev_to_disk(dev);
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001002 disk_replace_part_tbl(disk, NULL);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001003 free_part_stats(&disk->part0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 kfree(disk);
1005}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001006struct class block_class = {
1007 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008};
1009
Kay Sieverse454cea2009-09-18 23:01:12 +02001010static char *block_devnode(struct device *dev, mode_t *mode)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001011{
1012 struct gendisk *disk = dev_to_disk(dev);
1013
Kay Sieverse454cea2009-09-18 23:01:12 +02001014 if (disk->devnode)
1015 return disk->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001016 return NULL;
1017}
1018
Adrian Bunk1826ead2008-03-04 11:23:46 +01001019static struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001020 .name = "disk",
1021 .groups = disk_attr_groups,
1022 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001023 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024};
1025
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001026#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001027/*
1028 * aggregate disk stat collector. Uses the same stats that the sysfs
1029 * entries do, above, but makes them available through one seq_file.
1030 *
1031 * The output looks suspiciously like /proc/partitions with a bunch of
1032 * extra fields.
1033 */
1034static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
1036 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001037 struct disk_part_iter piter;
1038 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 char buf[BDEVNAME_SIZE];
Tejun Heoc9959052008-08-25 19:47:21 +09001040 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001043 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001044 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 " rio rmerge rsect ruse wio wmerge "
1046 "wsect wuse running use aveq"
1047 "\n\n");
1048 */
1049
Tejun Heo71982a42009-04-17 08:34:48 +02001050 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001051 while ((hd = disk_part_iter_next(&piter))) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001052 cpu = part_stat_lock();
Tejun Heoc9959052008-08-25 19:47:21 +09001053 part_round_stats(cpu, hd);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001054 part_stat_unlock();
Tejun Heo1f014292008-08-25 19:47:23 +09001055 seq_printf(seqf, "%4d %7d %s %lu %lu %llu "
Jerome Marchand28f39d52008-02-08 11:04:56 +01001056 "%u %lu %lu %llu %u %u %u %u\n",
Tejun Heof331c022008-09-03 09:01:48 +02001057 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1058 disk_name(gp, hd->partno, buf),
Jerome Marchand28f39d52008-02-08 11:04:56 +01001059 part_stat_read(hd, ios[0]),
1060 part_stat_read(hd, merges[0]),
1061 (unsigned long long)part_stat_read(hd, sectors[0]),
1062 jiffies_to_msecs(part_stat_read(hd, ticks[0])),
1063 part_stat_read(hd, ios[1]),
1064 part_stat_read(hd, merges[1]),
1065 (unsigned long long)part_stat_read(hd, sectors[1]),
1066 jiffies_to_msecs(part_stat_read(hd, ticks[1])),
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001067 part_in_flight(hd),
Jerome Marchand28f39d52008-02-08 11:04:56 +01001068 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1069 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1070 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001072 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 return 0;
1075}
1076
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001077static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001078 .start = disk_seqf_start,
1079 .next = disk_seqf_next,
1080 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 .show = diskstats_show
1082};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001083
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001084static int diskstats_open(struct inode *inode, struct file *file)
1085{
1086 return seq_open(file, &diskstats_op);
1087}
1088
1089static const struct file_operations proc_diskstats_operations = {
1090 .open = diskstats_open,
1091 .read = seq_read,
1092 .llseek = seq_lseek,
1093 .release = seq_release,
1094};
1095
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001096static int __init proc_genhd_init(void)
1097{
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001098 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001099 proc_create("partitions", 0, NULL, &proc_partitions_operations);
1100 return 0;
1101}
1102module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001103#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001105static void media_change_notify_thread(struct work_struct *work)
1106{
1107 struct gendisk *gd = container_of(work, struct gendisk, async_notify);
1108 char event[] = "MEDIA_CHANGE=1";
1109 char *envp[] = { event, NULL };
1110
1111 /*
1112 * set enviroment vars to indicate which event this is for
1113 * so that user space will know to go check the media status.
1114 */
Tejun Heoed9e1982008-08-25 19:56:05 +09001115 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001116 put_device(gd->driverfs_dev);
1117}
1118
Adrian Bunk1826ead2008-03-04 11:23:46 +01001119#if 0
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001120void genhd_media_change_notify(struct gendisk *disk)
1121{
1122 get_device(disk->driverfs_dev);
1123 schedule_work(&disk->async_notify);
1124}
1125EXPORT_SYMBOL_GPL(genhd_media_change_notify);
Adrian Bunk1826ead2008-03-04 11:23:46 +01001126#endif /* 0 */
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001127
Tejun Heocf771cb2008-09-03 09:01:09 +02001128dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001129{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001130 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001131 struct class_dev_iter iter;
1132 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001133
Tejun Heodef4e382008-09-03 08:57:12 +02001134 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1135 while ((dev = class_dev_iter_next(&iter))) {
1136 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001137 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001138
Kay Sievers3ada8b72009-01-06 10:44:43 -08001139 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001140 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001141
Neil Brown41b8c852009-02-18 10:33:59 +01001142 if (partno < disk->minors) {
1143 /* We need to return the right devno, even
1144 * if the partition doesn't exist yet.
1145 */
1146 devt = MKDEV(MAJOR(dev->devt),
1147 MINOR(dev->devt) + partno);
1148 break;
1149 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001150 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001151 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001152 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001153 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001154 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001155 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001156 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001157 }
Tejun Heodef4e382008-09-03 08:57:12 +02001158 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001159 return devt;
1160}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001161EXPORT_SYMBOL(blk_lookup_devt);
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163struct gendisk *alloc_disk(int minors)
1164{
Christoph Lameter19460892005-06-23 00:08:19 -07001165 return alloc_disk_node(minors, -1);
1166}
Tejun Heo689d6fa2008-08-25 19:56:16 +09001167EXPORT_SYMBOL(alloc_disk);
Christoph Lameter19460892005-06-23 00:08:19 -07001168
1169struct gendisk *alloc_disk_node(int minors, int node_id)
1170{
1171 struct gendisk *disk;
1172
Christoph Lameter94f60302007-07-17 04:03:29 -07001173 disk = kmalloc_node(sizeof(struct gendisk),
1174 GFP_KERNEL | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001176 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 kfree(disk);
1178 return NULL;
1179 }
Cheng Renquanbf91db12008-11-20 08:37:37 +01001180 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001181 if (disk_expand_part_tbl(disk, 0)) {
1182 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001183 kfree(disk);
1184 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
Tejun Heo540eed52008-08-25 19:56:15 +09001186 disk->part_tbl->part[0] = &disk->part0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001190 disk_to_dev(disk)->class = &block_class;
1191 disk_to_dev(disk)->type = &disk_type;
1192 device_initialize(disk_to_dev(disk));
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -07001193 INIT_WORK(&disk->async_notify,
1194 media_change_notify_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196 return disk;
1197}
Christoph Lameter19460892005-06-23 00:08:19 -07001198EXPORT_SYMBOL(alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200struct kobject *get_disk(struct gendisk *disk)
1201{
1202 struct module *owner;
1203 struct kobject *kobj;
1204
1205 if (!disk->fops)
1206 return NULL;
1207 owner = disk->fops->owner;
1208 if (owner && !try_module_get(owner))
1209 return NULL;
Tejun Heoed9e1982008-08-25 19:56:05 +09001210 kobj = kobject_get(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (kobj == NULL) {
1212 module_put(owner);
1213 return NULL;
1214 }
1215 return kobj;
1216
1217}
1218
1219EXPORT_SYMBOL(get_disk);
1220
1221void put_disk(struct gendisk *disk)
1222{
1223 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001224 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
1227EXPORT_SYMBOL(put_disk);
1228
Hannes Reineckee3264a42009-07-28 09:13:13 +02001229static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1230{
1231 char event[] = "DISK_RO=1";
1232 char *envp[] = { event, NULL };
1233
1234 if (!ro)
1235 event[8] = '0';
1236 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1237}
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239void set_device_ro(struct block_device *bdev, int flag)
1240{
Tejun Heob7db9952008-08-25 19:56:10 +09001241 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
1244EXPORT_SYMBOL(set_device_ro);
1245
1246void set_disk_ro(struct gendisk *disk, int flag)
1247{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001248 struct disk_part_iter piter;
1249 struct hd_struct *part;
1250
Hannes Reineckee3264a42009-07-28 09:13:13 +02001251 if (disk->part0.policy != flag) {
1252 set_disk_ro_uevent(disk, flag);
1253 disk->part0.policy = flag;
1254 }
1255
1256 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001257 while ((part = disk_part_iter_next(&piter)))
1258 part->policy = flag;
1259 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
1262EXPORT_SYMBOL(set_disk_ro);
1263
1264int bdev_read_only(struct block_device *bdev)
1265{
1266 if (!bdev)
1267 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001268 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
1271EXPORT_SYMBOL(bdev_read_only);
1272
Tejun Heocf771cb2008-09-03 09:01:09 +02001273int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001276 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001278 fsync_bdev(bdev);
1279 res = __invalidate_device(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 bdput(bdev);
1281 }
1282 return res;
1283}
1284
1285EXPORT_SYMBOL(invalidate_partition);