blob: 51c6a748df4921947659abb114fc189f2508fa95 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/partitions/check.c
3 *
4 * Code extracted from drivers/block/genhd.c
5 * Copyright (C) 1991-1998 Linus Torvalds
6 * Re-organised Feb 1998 Russell King
7 *
8 * We now have independent partition support from the
9 * block drivers, which allows all the partition code to
10 * be grouped in one location, and it to be mostly self
11 * contained.
12 *
13 * Added needed MAJORS for new pairs, {hdi,hdj}, {hdk,hdl}
14 */
15
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/fs.h>
19#include <linux/kmod.h>
20#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "check.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "acorn.h"
25#include "amiga.h"
26#include "atari.h"
27#include "ldm.h"
28#include "mac.h"
29#include "msdos.h"
30#include "osf.h"
31#include "sgi.h"
32#include "sun.h"
33#include "ibm.h"
34#include "ultrix.h"
35#include "efi.h"
Bob Copeland0e6e1db2006-01-16 22:14:20 -080036#include "karma.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#ifdef CONFIG_BLK_DEV_MD
39extern void md_autodetect_dev(dev_t dev);
40#endif
41
42int warn_no_part = 1; /*This is ugly: should make genhd removable media aware*/
43
44static int (*check_part[])(struct parsed_partitions *, struct block_device *) = {
45 /*
46 * Probe partition formats with tables at disk address 0
47 * that also have an ADFS boot block at 0xdc0.
48 */
49#ifdef CONFIG_ACORN_PARTITION_ICS
50 adfspart_check_ICS,
51#endif
52#ifdef CONFIG_ACORN_PARTITION_POWERTEC
53 adfspart_check_POWERTEC,
54#endif
55#ifdef CONFIG_ACORN_PARTITION_EESOX
56 adfspart_check_EESOX,
57#endif
58
59 /*
60 * Now move on to formats that only have partition info at
61 * disk address 0xdc0. Since these may also have stale
62 * PC/BIOS partition tables, they need to come before
63 * the msdos entry.
64 */
65#ifdef CONFIG_ACORN_PARTITION_CUMANA
66 adfspart_check_CUMANA,
67#endif
68#ifdef CONFIG_ACORN_PARTITION_ADFS
69 adfspart_check_ADFS,
70#endif
71
72#ifdef CONFIG_EFI_PARTITION
73 efi_partition, /* this must come before msdos */
74#endif
75#ifdef CONFIG_SGI_PARTITION
76 sgi_partition,
77#endif
78#ifdef CONFIG_LDM_PARTITION
79 ldm_partition, /* this must come before msdos */
80#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#ifdef CONFIG_MSDOS_PARTITION
82 msdos_partition,
83#endif
84#ifdef CONFIG_OSF_PARTITION
85 osf_partition,
86#endif
87#ifdef CONFIG_SUN_PARTITION
88 sun_partition,
89#endif
90#ifdef CONFIG_AMIGA_PARTITION
91 amiga_partition,
92#endif
93#ifdef CONFIG_ATARI_PARTITION
94 atari_partition,
95#endif
96#ifdef CONFIG_MAC_PARTITION
97 mac_partition,
98#endif
99#ifdef CONFIG_ULTRIX_PARTITION
100 ultrix_partition,
101#endif
102#ifdef CONFIG_IBM_PARTITION
103 ibm_partition,
104#endif
Bob Copeland0e6e1db2006-01-16 22:14:20 -0800105#ifdef CONFIG_KARMA_PARTITION
106 karma_partition,
107#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 NULL
109};
110
111/*
112 * disk_name() is used by partition check code and the genhd driver.
113 * It formats the devicename of the indicated disk into
114 * the supplied buffer (of size at least 32), and returns
115 * a pointer to that same buffer (for convenience).
116 */
117
118char *disk_name(struct gendisk *hd, int part, char *buf)
119{
120 if (!part)
121 snprintf(buf, BDEVNAME_SIZE, "%s", hd->disk_name);
122 else if (isdigit(hd->disk_name[strlen(hd->disk_name)-1]))
123 snprintf(buf, BDEVNAME_SIZE, "%sp%d", hd->disk_name, part);
124 else
125 snprintf(buf, BDEVNAME_SIZE, "%s%d", hd->disk_name, part);
126
127 return buf;
128}
129
130const char *bdevname(struct block_device *bdev, char *buf)
131{
132 int part = MINOR(bdev->bd_dev) - bdev->bd_disk->first_minor;
133 return disk_name(bdev->bd_disk, part, buf);
134}
135
136EXPORT_SYMBOL(bdevname);
137
138/*
139 * There's very little reason to use this, you should really
140 * have a struct block_device just about everywhere and use
141 * bdevname() instead.
142 */
143const char *__bdevname(dev_t dev, char *buffer)
144{
145 scnprintf(buffer, BDEVNAME_SIZE, "unknown-block(%u,%u)",
146 MAJOR(dev), MINOR(dev));
147 return buffer;
148}
149
150EXPORT_SYMBOL(__bdevname);
151
152static struct parsed_partitions *
153check_partition(struct gendisk *hd, struct block_device *bdev)
154{
155 struct parsed_partitions *state;
156 int i, res;
157
158 state = kmalloc(sizeof(struct parsed_partitions), GFP_KERNEL);
159 if (!state)
160 return NULL;
161
Greg Kroah-Hartmana2964182005-06-20 21:15:16 -0700162 disk_name(hd, 0, state->name);
163 printk(KERN_INFO " %s:", state->name);
164 if (isdigit(state->name[strlen(state->name)-1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 sprintf(state->name, "p");
Greg Kroah-Hartmana2964182005-06-20 21:15:16 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 state->limit = hd->minors;
168 i = res = 0;
169 while (!res && check_part[i]) {
170 memset(&state->parts, 0, sizeof(state->parts));
171 res = check_part[i++](state, bdev);
172 }
173 if (res > 0)
174 return state;
175 if (!res)
176 printk(" unknown partition table\n");
177 else if (warn_no_part)
178 printk(" unable to read partition table\n");
179 kfree(state);
180 return NULL;
181}
182
183/*
184 * sysfs bindings for partitions
185 */
186
187struct part_attribute {
188 struct attribute attr;
189 ssize_t (*show)(struct hd_struct *,char *);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200190 ssize_t (*store)(struct hd_struct *,const char *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191};
192
193static ssize_t
194part_attr_show(struct kobject * kobj, struct attribute * attr, char * page)
195{
196 struct hd_struct * p = container_of(kobj,struct hd_struct,kobj);
197 struct part_attribute * part_attr = container_of(attr,struct part_attribute,attr);
198 ssize_t ret = 0;
199 if (part_attr->show)
Kay Sieversa7fd6702005-10-01 14:49:43 +0200200 ret = part_attr->show(p, page);
201 return ret;
202}
203static ssize_t
204part_attr_store(struct kobject * kobj, struct attribute * attr,
205 const char *page, size_t count)
206{
207 struct hd_struct * p = container_of(kobj,struct hd_struct,kobj);
208 struct part_attribute * part_attr = container_of(attr,struct part_attribute,attr);
209 ssize_t ret = 0;
210
211 if (part_attr->store)
212 ret = part_attr->store(p, page, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return ret;
214}
215
216static struct sysfs_ops part_sysfs_ops = {
217 .show = part_attr_show,
Kay Sieversa7fd6702005-10-01 14:49:43 +0200218 .store = part_attr_store,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
Kay Sieversa7fd6702005-10-01 14:49:43 +0200221static ssize_t part_uevent_store(struct hd_struct * p,
222 const char *page, size_t count)
223{
Kay Sievers312c0042005-11-16 09:00:00 +0100224 kobject_uevent(&p->kobj, KOBJ_ADD);
Kay Sieversa7fd6702005-10-01 14:49:43 +0200225 return count;
226}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227static ssize_t part_dev_read(struct hd_struct * p, char *page)
228{
229 struct gendisk *disk = container_of(p->kobj.parent,struct gendisk,kobj);
230 dev_t dev = MKDEV(disk->major, disk->first_minor + p->partno);
231 return print_dev_t(page, dev);
232}
233static ssize_t part_start_read(struct hd_struct * p, char *page)
234{
235 return sprintf(page, "%llu\n",(unsigned long long)p->start_sect);
236}
237static ssize_t part_size_read(struct hd_struct * p, char *page)
238{
239 return sprintf(page, "%llu\n",(unsigned long long)p->nr_sects);
240}
241static ssize_t part_stat_read(struct hd_struct * p, char *page)
242{
243 return sprintf(page, "%8u %8llu %8u %8llu\n",
Jens Axboea3623572005-11-01 09:26:16 +0100244 p->ios[0], (unsigned long long)p->sectors[0],
245 p->ios[1], (unsigned long long)p->sectors[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
Kay Sieversa7fd6702005-10-01 14:49:43 +0200247static struct part_attribute part_attr_uevent = {
248 .attr = {.name = "uevent", .mode = S_IWUSR },
249 .store = part_uevent_store
250};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251static struct part_attribute part_attr_dev = {
252 .attr = {.name = "dev", .mode = S_IRUGO },
253 .show = part_dev_read
254};
255static struct part_attribute part_attr_start = {
256 .attr = {.name = "start", .mode = S_IRUGO },
257 .show = part_start_read
258};
259static struct part_attribute part_attr_size = {
260 .attr = {.name = "size", .mode = S_IRUGO },
261 .show = part_size_read
262};
263static struct part_attribute part_attr_stat = {
264 .attr = {.name = "stat", .mode = S_IRUGO },
265 .show = part_stat_read
266};
267
268static struct attribute * default_attrs[] = {
Kay Sieversa7fd6702005-10-01 14:49:43 +0200269 &part_attr_uevent.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 &part_attr_dev.attr,
271 &part_attr_start.attr,
272 &part_attr_size.attr,
273 &part_attr_stat.attr,
274 NULL,
275};
276
277extern struct subsystem block_subsys;
278
279static void part_release(struct kobject *kobj)
280{
281 struct hd_struct * p = container_of(kobj,struct hd_struct,kobj);
282 kfree(p);
283}
284
285struct kobj_type ktype_part = {
286 .release = part_release,
287 .default_attrs = default_attrs,
288 .sysfs_ops = &part_sysfs_ops,
289};
290
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800291static inline void partition_sysfs_add_subdir(struct hd_struct *p)
292{
293 struct kobject *k;
294
295 k = kobject_get(&p->kobj);
296 p->holder_dir = kobject_add_dir(k, "holders");
297 kobject_put(k);
298}
299
300static inline void disk_sysfs_add_subdirs(struct gendisk *disk)
301{
302 struct kobject *k;
303
304 k = kobject_get(&disk->kobj);
305 disk->holder_dir = kobject_add_dir(k, "holders");
306 disk->slave_dir = kobject_add_dir(k, "slaves");
307 kobject_put(k);
308}
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310void delete_partition(struct gendisk *disk, int part)
311{
312 struct hd_struct *p = disk->part[part-1];
313 if (!p)
314 return;
315 if (!p->nr_sects)
316 return;
317 disk->part[part-1] = NULL;
318 p->start_sect = 0;
319 p->nr_sects = 0;
Jens Axboea3623572005-11-01 09:26:16 +0100320 p->ios[0] = p->ios[1] = 0;
321 p->sectors[0] = p->sectors[1] = 0;
Kay Sieversb9d9c822006-06-15 15:31:56 +0200322 sysfs_remove_link(&p->kobj, "subsystem");
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800323 if (p->holder_dir)
324 kobject_unregister(p->holder_dir);
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100325 kobject_uevent(&p->kobj, KOBJ_REMOVE);
326 kobject_del(&p->kobj);
327 kobject_put(&p->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330void add_partition(struct gendisk *disk, int part, sector_t start, sector_t len)
331{
332 struct hd_struct *p;
333
334 p = kmalloc(sizeof(*p), GFP_KERNEL);
335 if (!p)
336 return;
337
338 memset(p, 0, sizeof(*p));
339 p->start_sect = start;
340 p->nr_sects = len;
341 p->partno = part;
Peter Oberparleiter25e206b2006-07-10 04:44:00 -0700342 p->policy = disk->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (isdigit(disk->kobj.name[strlen(disk->kobj.name)-1]))
345 snprintf(p->kobj.name,KOBJ_NAME_LEN,"%sp%d",disk->kobj.name,part);
346 else
347 snprintf(p->kobj.name,KOBJ_NAME_LEN,"%s%d",disk->kobj.name,part);
348 p->kobj.parent = &disk->kobj;
349 p->kobj.ktype = &ktype_part;
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100350 kobject_init(&p->kobj);
351 kobject_add(&p->kobj);
352 if (!disk->part_uevent_suppress)
353 kobject_uevent(&p->kobj, KOBJ_ADD);
Kay Sieversb9d9c822006-06-15 15:31:56 +0200354 sysfs_create_link(&p->kobj, &block_subsys.kset.kobj, "subsystem");
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800355 partition_sysfs_add_subdir(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 disk->part[part-1] = p;
357}
358
Greg Kroah-Hartman8218ef82005-12-13 15:17:34 -0800359static char *make_block_name(struct gendisk *disk)
360{
361 char *name;
362 static char *block_str = "block:";
363 int size;
Stephen Rothwell2436f032006-04-10 00:17:20 -0700364 char *s;
Greg Kroah-Hartman8218ef82005-12-13 15:17:34 -0800365
366 size = strlen(block_str) + strlen(disk->disk_name) + 1;
367 name = kmalloc(size, GFP_KERNEL);
368 if (!name)
369 return NULL;
370 strcpy(name, block_str);
371 strcat(name, disk->disk_name);
Stephen Rothwell2436f032006-04-10 00:17:20 -0700372 /* ewww... some of these buggers have / in name... */
373 s = strchr(name, '/');
374 if (s)
375 *s = '!';
Greg Kroah-Hartman8218ef82005-12-13 15:17:34 -0800376 return name;
377}
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379static void disk_sysfs_symlinks(struct gendisk *disk)
380{
381 struct device *target = get_device(disk->driverfs_dev);
382 if (target) {
Greg Kroah-Hartman8218ef82005-12-13 15:17:34 -0800383 char *disk_name = make_block_name(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 sysfs_create_link(&disk->kobj,&target->kobj,"device");
Greg Kroah-Hartman8218ef82005-12-13 15:17:34 -0800385 if (disk_name) {
386 sysfs_create_link(&target->kobj,&disk->kobj,disk_name);
387 kfree(disk_name);
388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200390 sysfs_create_link(&disk->kobj, &block_subsys.kset.kobj, "subsystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393/* Not exported, helper to add_disk(). */
394void register_disk(struct gendisk *disk)
395{
396 struct block_device *bdev;
397 char *s;
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100398 int i;
399 struct hd_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 int err;
401
402 strlcpy(disk->kobj.name,disk->disk_name,KOBJ_NAME_LEN);
403 /* ewww... some of these buggers have / in name... */
404 s = strchr(disk->kobj.name, '/');
405 if (s)
406 *s = '!';
407 if ((err = kobject_add(&disk->kobj)))
408 return;
409 disk_sysfs_symlinks(disk);
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800410 disk_sysfs_add_subdirs(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* No minors to use for partitions */
Greg Kroah-Hartmana2964182005-06-20 21:15:16 -0700413 if (disk->minors == 1)
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100414 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /* No such device (e.g., media were just removed) */
417 if (!get_capacity(disk))
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100418 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 bdev = bdget_disk(disk, 0);
421 if (!bdev)
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100422 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100424 /* scan partition table, but suppress uevents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 bdev->bd_invalidated = 1;
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100426 disk->part_uevent_suppress = 1;
427 err = blkdev_get(bdev, FMODE_READ, 0);
428 disk->part_uevent_suppress = 0;
429 if (err < 0)
430 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 blkdev_put(bdev);
Kay Sieversd4d7e5d2006-03-24 20:45:35 +0100432
433exit:
434 /* announce disk after possible partitions are already created */
435 kobject_uevent(&disk->kobj, KOBJ_ADD);
436
437 /* announce possible partitions */
438 for (i = 1; i < disk->minors; i++) {
439 p = disk->part[i-1];
440 if (!p || !p->nr_sects)
441 continue;
442 kobject_uevent(&p->kobj, KOBJ_ADD);
443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446int rescan_partitions(struct gendisk *disk, struct block_device *bdev)
447{
448 struct parsed_partitions *state;
449 int p, res;
450
451 if (bdev->bd_part_count)
452 return -EBUSY;
453 res = invalidate_partition(disk, 0);
454 if (res)
455 return res;
456 bdev->bd_invalidated = 0;
457 for (p = 1; p < disk->minors; p++)
458 delete_partition(disk, p);
459 if (disk->fops->revalidate_disk)
460 disk->fops->revalidate_disk(disk);
461 if (!get_capacity(disk) || !(state = check_partition(disk, bdev)))
462 return 0;
463 for (p = 1; p < state->limit; p++) {
464 sector_t size = state->parts[p].size;
465 sector_t from = state->parts[p].from;
466 if (!size)
467 continue;
Mike Miller98bd34e2006-06-23 02:06:07 -0700468 if (from + size > get_capacity(disk)) {
469 printk(" %s: p%d exceeds device capacity\n",
470 disk->disk_name, p);
471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 add_partition(disk, p, from, size);
473#ifdef CONFIG_BLK_DEV_MD
474 if (state->parts[p].flags)
475 md_autodetect_dev(bdev->bd_dev+p);
476#endif
477 }
478 kfree(state);
479 return 0;
480}
481
482unsigned char *read_dev_sector(struct block_device *bdev, sector_t n, Sector *p)
483{
484 struct address_space *mapping = bdev->bd_inode->i_mapping;
485 struct page *page;
486
Pekka Enberg090d2b12006-06-23 02:05:08 -0700487 page = read_mapping_page(mapping, (pgoff_t)(n >> (PAGE_CACHE_SHIFT-9)),
488 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (!IS_ERR(page)) {
490 wait_on_page_locked(page);
491 if (!PageUptodate(page))
492 goto fail;
493 if (PageError(page))
494 goto fail;
495 p->v = page;
496 return (unsigned char *)page_address(page) + ((n & ((1 << (PAGE_CACHE_SHIFT - 9)) - 1)) << 9);
497fail:
498 page_cache_release(page);
499 }
500 p->v = NULL;
501 return NULL;
502}
503
504EXPORT_SYMBOL(read_dev_sector);
505
506void del_gendisk(struct gendisk *disk)
507{
508 int p;
509
510 /* invalidate stuff */
511 for (p = disk->minors - 1; p > 0; p--) {
512 invalidate_partition(disk, p);
513 delete_partition(disk, p);
514 }
515 invalidate_partition(disk, 0);
516 disk->capacity = 0;
517 disk->flags &= ~GENHD_FL_UP;
518 unlink_gendisk(disk);
519 disk_stat_set_all(disk, 0);
Chen, Kenneth W20e5c812005-10-13 21:48:42 +0200520 disk->stamp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvalds032ebf22006-05-12 18:42:09 -0700522 kobject_uevent(&disk->kobj, KOBJ_REMOVE);
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800523 if (disk->holder_dir)
524 kobject_unregister(disk->holder_dir);
525 if (disk->slave_dir)
526 kobject_unregister(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (disk->driverfs_dev) {
Greg Kroah-Hartman8218ef82005-12-13 15:17:34 -0800528 char *disk_name = make_block_name(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 sysfs_remove_link(&disk->kobj, "device");
Greg Kroah-Hartman8218ef82005-12-13 15:17:34 -0800530 if (disk_name) {
531 sysfs_remove_link(&disk->driverfs_dev->kobj, disk_name);
532 kfree(disk_name);
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 put_device(disk->driverfs_dev);
Linus Torvalds032ebf22006-05-12 18:42:09 -0700535 disk->driverfs_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
Kay Sieversb9d9c822006-06-15 15:31:56 +0200537 sysfs_remove_link(&disk->kobj, "subsystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 kobject_del(&disk->kobj);
539}