VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / block / genhd.c
1 /*
2  *  gendisk handling
3  */
4
5 #include <linux/config.h>
6 #include <linux/module.h>
7 #include <linux/fs.h>
8 #include <linux/genhd.h>
9 #include <linux/kernel.h>
10 #include <linux/blkdev.h>
11 #include <linux/init.h>
12 #include <linux/spinlock.h>
13 #include <linux/seq_file.h>
14 #include <linux/slab.h>
15 #include <linux/kmod.h>
16 #include <linux/kobj_map.h>
17
18 #define MAX_PROBE_HASH 255      /* random */
19
20 static struct subsystem block_subsys;
21
22 /*
23  * Can be deleted altogether. Later.
24  *
25  * Modified under both block_subsys.rwsem and major_names_lock.
26  */
27 static struct blk_major_name {
28         struct blk_major_name *next;
29         int major;
30         char name[16];
31 } *major_names[MAX_PROBE_HASH];
32
33 static spinlock_t major_names_lock = SPIN_LOCK_UNLOCKED;
34
35 /* index in the above - for now: assume no multimajor ranges */
36 static inline int major_to_index(int major)
37 {
38         return major % MAX_PROBE_HASH;
39 }
40
41 /* get block device names in somewhat random order */
42 int get_blkdev_list(char *p)
43 {
44         struct blk_major_name *n;
45         int i, len;
46
47         len = sprintf(p, "\nBlock devices:\n");
48
49         down_read(&block_subsys.rwsem);
50         for (i = 0; i < ARRAY_SIZE(major_names); i++) {
51                 for (n = major_names[i]; n; n = n->next)
52                         len += sprintf(p+len, "%3d %s\n",
53                                        n->major, n->name);
54         }
55         up_read(&block_subsys.rwsem);
56
57         return len;
58 }
59
60 int register_blkdev(unsigned int major, const char *name)
61 {
62         struct blk_major_name **n, *p;
63         int index, ret = 0;
64         unsigned long flags;
65
66         down_write(&block_subsys.rwsem);
67
68         /* temporary */
69         if (major == 0) {
70                 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
71                         if (major_names[index] == NULL)
72                                 break;
73                 }
74
75                 if (index == 0) {
76                         printk("register_blkdev: failed to get major for %s\n",
77                                name);
78                         ret = -EBUSY;
79                         goto out;
80                 }
81                 major = index;
82                 ret = major;
83         }
84
85         p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
86         if (p == NULL) {
87                 ret = -ENOMEM;
88                 goto out;
89         }
90
91         p->major = major;
92         strlcpy(p->name, name, sizeof(p->name));
93         p->next = NULL;
94         index = major_to_index(major);
95
96         spin_lock_irqsave(&major_names_lock, flags);
97         for (n = &major_names[index]; *n; n = &(*n)->next) {
98                 if ((*n)->major == major)
99                         break;
100         }
101         if (!*n)
102                 *n = p;
103         else
104                 ret = -EBUSY;
105         spin_unlock_irqrestore(&major_names_lock, flags);
106
107         if (ret < 0) {
108                 printk("register_blkdev: cannot get major %d for %s\n",
109                        major, name);
110                 kfree(p);
111         }
112 out:
113         up_write(&block_subsys.rwsem);
114         return ret;
115 }
116
117 EXPORT_SYMBOL(register_blkdev);
118
119 /* todo: make void - error printk here */
120 int unregister_blkdev(unsigned int major, const char *name)
121 {
122         struct blk_major_name **n;
123         struct blk_major_name *p = NULL;
124         int index = major_to_index(major);
125         unsigned long flags;
126         int ret = 0;
127
128         down_write(&block_subsys.rwsem);
129         spin_lock_irqsave(&major_names_lock, flags);
130         for (n = &major_names[index]; *n; n = &(*n)->next)
131                 if ((*n)->major == major)
132                         break;
133         if (!*n || strcmp((*n)->name, name))
134                 ret = -EINVAL;
135         else {
136                 p = *n;
137                 *n = p->next;
138         }
139         spin_unlock_irqrestore(&major_names_lock, flags);
140         up_write(&block_subsys.rwsem);
141         kfree(p);
142
143         return ret;
144 }
145
146 EXPORT_SYMBOL(unregister_blkdev);
147
148 static struct kobj_map *bdev_map;
149
150 /*
151  * Register device numbers dev..(dev+range-1)
152  * range must be nonzero
153  * The hash chain is sorted on range, so that subranges can override.
154  */
155 void blk_register_region(dev_t dev, unsigned long range, struct module *module,
156                          struct kobject *(*probe)(dev_t, int *, void *),
157                          int (*lock)(dev_t, void *), void *data)
158 {
159         kobj_map(bdev_map, dev, range, module, probe, lock, data);
160 }
161
162 EXPORT_SYMBOL(blk_register_region);
163
164 void blk_unregister_region(dev_t dev, unsigned long range)
165 {
166         kobj_unmap(bdev_map, dev, range);
167 }
168
169 EXPORT_SYMBOL(blk_unregister_region);
170
171 static struct kobject *exact_match(dev_t dev, int *part, void *data)
172 {
173         struct gendisk *p = data;
174         return &p->kobj;
175 }
176
177 static int exact_lock(dev_t dev, void *data)
178 {
179         struct gendisk *p = data;
180
181         if (!get_disk(p))
182                 return -1;
183         return 0;
184 }
185
186 /**
187  * add_disk - add partitioning information to kernel list
188  * @disk: per-device partitioning information
189  *
190  * This function registers the partitioning information in @disk
191  * with the kernel.
192  */
193 void add_disk(struct gendisk *disk)
194 {
195         disk->flags |= GENHD_FL_UP;
196         blk_register_region(MKDEV(disk->major, disk->first_minor),
197                             disk->minors, NULL, exact_match, exact_lock, disk);
198         register_disk(disk);
199         blk_register_queue(disk);
200 }
201
202 EXPORT_SYMBOL(add_disk);
203 EXPORT_SYMBOL(del_gendisk);     /* in partitions/check.c */
204
205 void unlink_gendisk(struct gendisk *disk)
206 {
207         blk_unregister_queue(disk);
208         blk_unregister_region(MKDEV(disk->major, disk->first_minor),
209                               disk->minors);
210 }
211
212 #define to_disk(obj) container_of(obj,struct gendisk,kobj)
213
214 /**
215  * get_gendisk - get partitioning information for a given device
216  * @dev: device to get partitioning information for
217  *
218  * This function gets the structure containing partitioning
219  * information for the given device @dev.
220  */
221 struct gendisk *get_gendisk(dev_t dev, int *part)
222 {
223         struct kobject *kobj = kobj_lookup(bdev_map, dev, part);
224         return  kobj ? to_disk(kobj) : NULL;
225 }
226
227 #ifdef CONFIG_PROC_FS
228 /* iterator */
229 static void *part_start(struct seq_file *part, loff_t *pos)
230 {
231         struct list_head *p;
232         loff_t l = *pos;
233
234         down_read(&block_subsys.rwsem);
235         list_for_each(p, &block_subsys.kset.list)
236                 if (!l--)
237                         return list_entry(p, struct gendisk, kobj.entry);
238         return NULL;
239 }
240
241 static void *part_next(struct seq_file *part, void *v, loff_t *pos)
242 {
243         struct list_head *p = ((struct gendisk *)v)->kobj.entry.next;
244         ++*pos;
245         return p==&block_subsys.kset.list ? NULL : 
246                 list_entry(p, struct gendisk, kobj.entry);
247 }
248
249 static void part_stop(struct seq_file *part, void *v)
250 {
251         up_read(&block_subsys.rwsem);
252 }
253
254 static int show_partition(struct seq_file *part, void *v)
255 {
256         struct gendisk *sgp = v;
257         int n;
258         char buf[BDEVNAME_SIZE];
259
260         if (&sgp->kobj.entry == block_subsys.kset.list.next)
261                 seq_puts(part, "major minor  #blocks  name\n\n");
262
263         /* Don't show non-partitionable removeable devices or empty devices */
264         if (!get_capacity(sgp) ||
265                         (sgp->minors == 1 && (sgp->flags & GENHD_FL_REMOVABLE)))
266                 return 0;
267         if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
268                 return 0;
269
270         /* show the full disk and all non-0 size partitions of it */
271         seq_printf(part, "%4d  %4d %10llu %s\n",
272                 sgp->major, sgp->first_minor,
273                 (unsigned long long)get_capacity(sgp) >> 1,
274                 disk_name(sgp, 0, buf));
275         for (n = 0; n < sgp->minors - 1; n++) {
276                 if (!sgp->part[n])
277                         continue;
278                 if (sgp->part[n]->nr_sects == 0)
279                         continue;
280                 seq_printf(part, "%4d  %4d %10llu %s\n",
281                         sgp->major, n + 1 + sgp->first_minor,
282                         (unsigned long long)sgp->part[n]->nr_sects >> 1 ,
283                         disk_name(sgp, n + 1, buf));
284         }
285
286         return 0;
287 }
288
289 struct seq_operations partitions_op = {
290         .start =part_start,
291         .next = part_next,
292         .stop = part_stop,
293         .show = show_partition
294 };
295 #endif
296
297
298 extern int blk_dev_init(void);
299
300 static struct kobject *base_probe(dev_t dev, int *part, void *data)
301 {
302         if (request_module("block-major-%d-%d", MAJOR(dev), MINOR(dev)) > 0)
303                 /* Make old-style 2.4 aliases work */
304                 request_module("block-major-%d", MAJOR(dev));
305         return NULL;
306 }
307
308 int __init device_init(void)
309 {
310         bdev_map = kobj_map_init(base_probe, &block_subsys);
311         blk_dev_init();
312         subsystem_register(&block_subsys);
313         return 0;
314 }
315
316 subsys_initcall(device_init);
317
318
319
320 /*
321  * kobject & sysfs bindings for block devices
322  */
323
324 struct disk_attribute {
325         struct attribute attr;
326         ssize_t (*show)(struct gendisk *, char *);
327 };
328
329 static ssize_t disk_attr_show(struct kobject *kobj, struct attribute *attr,
330                               char *page)
331 {
332         struct gendisk *disk = to_disk(kobj);
333         struct disk_attribute *disk_attr =
334                 container_of(attr,struct disk_attribute,attr);
335         ssize_t ret = 0;
336
337         if (disk_attr->show)
338                 ret = disk_attr->show(disk,page);
339         return ret;
340 }
341
342 static struct sysfs_ops disk_sysfs_ops = {
343         .show   = &disk_attr_show,
344 };
345
346 static ssize_t disk_dev_read(struct gendisk * disk, char *page)
347 {
348         dev_t base = MKDEV(disk->major, disk->first_minor); 
349         return print_dev_t(page, base);
350 }
351 static ssize_t disk_range_read(struct gendisk * disk, char *page)
352 {
353         return sprintf(page, "%d\n", disk->minors);
354 }
355 static ssize_t disk_removable_read(struct gendisk * disk, char *page)
356 {
357         return sprintf(page, "%d\n",
358                        (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
359
360 }
361 static ssize_t disk_size_read(struct gendisk * disk, char *page)
362 {
363         return sprintf(page, "%llu\n", (unsigned long long)get_capacity(disk));
364 }
365
366 static ssize_t disk_stats_read(struct gendisk * disk, char *page)
367 {
368         disk_round_stats(disk);
369         return sprintf(page,
370                 "%8u %8u %8llu %8u "
371                 "%8u %8u %8llu %8u "
372                 "%8u %8u %8u"
373                 "\n",
374                 disk_stat_read(disk, reads), disk_stat_read(disk, read_merges),
375                 (unsigned long long)disk_stat_read(disk, read_sectors),
376                 jiffies_to_msecs(disk_stat_read(disk, read_ticks)),
377                 disk_stat_read(disk, writes), 
378                 disk_stat_read(disk, write_merges),
379                 (unsigned long long)disk_stat_read(disk, write_sectors),
380                 jiffies_to_msecs(disk_stat_read(disk, write_ticks)),
381                 disk->in_flight,
382                 jiffies_to_msecs(disk_stat_read(disk, io_ticks)),
383                 jiffies_to_msecs(disk_stat_read(disk, time_in_queue)));
384 }
385 static struct disk_attribute disk_attr_dev = {
386         .attr = {.name = "dev", .mode = S_IRUGO },
387         .show   = disk_dev_read
388 };
389 static struct disk_attribute disk_attr_range = {
390         .attr = {.name = "range", .mode = S_IRUGO },
391         .show   = disk_range_read
392 };
393 static struct disk_attribute disk_attr_removable = {
394         .attr = {.name = "removable", .mode = S_IRUGO },
395         .show   = disk_removable_read
396 };
397 static struct disk_attribute disk_attr_size = {
398         .attr = {.name = "size", .mode = S_IRUGO },
399         .show   = disk_size_read
400 };
401 static struct disk_attribute disk_attr_stat = {
402         .attr = {.name = "stat", .mode = S_IRUGO },
403         .show   = disk_stats_read
404 };
405
406 static struct attribute * default_attrs[] = {
407         &disk_attr_dev.attr,
408         &disk_attr_range.attr,
409         &disk_attr_removable.attr,
410         &disk_attr_size.attr,
411         &disk_attr_stat.attr,
412         NULL,
413 };
414
415 static void disk_release(struct kobject * kobj)
416 {
417         struct gendisk *disk = to_disk(kobj);
418         kfree(disk->random);
419         kfree(disk->part);
420         free_disk_stats(disk);
421         kfree(disk);
422 }
423
424 static struct kobj_type ktype_block = {
425         .release        = disk_release,
426         .sysfs_ops      = &disk_sysfs_ops,
427         .default_attrs  = default_attrs,
428 };
429
430 extern struct kobj_type ktype_part;
431
432 static int block_hotplug_filter(struct kset *kset, struct kobject *kobj)
433 {
434         struct kobj_type *ktype = get_ktype(kobj);
435
436         return ((ktype == &ktype_block) || (ktype == &ktype_part));
437 }
438
439 static struct kset_hotplug_ops block_hotplug_ops = {
440         .filter = block_hotplug_filter,
441 };
442
443 /* declare block_subsys. */
444 static decl_subsys(block, &ktype_block, &block_hotplug_ops);
445
446
447 /*
448  * aggregate disk stat collector.  Uses the same stats that the sysfs
449  * entries do, above, but makes them available through one seq_file.
450  * Watching a few disks may be efficient through sysfs, but watching
451  * all of them will be more efficient through this interface.
452  *
453  * The output looks suspiciously like /proc/partitions with a bunch of
454  * extra fields.
455  */
456
457 /* iterator */
458 static void *diskstats_start(struct seq_file *part, loff_t *pos)
459 {
460         loff_t k = *pos;
461         struct list_head *p;
462
463         down_read(&block_subsys.rwsem);
464         list_for_each(p, &block_subsys.kset.list)
465                 if (!k--)
466                         return list_entry(p, struct gendisk, kobj.entry);
467         return NULL;
468 }
469
470 static void *diskstats_next(struct seq_file *part, void *v, loff_t *pos)
471 {
472         struct list_head *p = ((struct gendisk *)v)->kobj.entry.next;
473         ++*pos;
474         return p==&block_subsys.kset.list ? NULL :
475                 list_entry(p, struct gendisk, kobj.entry);
476 }
477
478 static void diskstats_stop(struct seq_file *part, void *v)
479 {
480         up_read(&block_subsys.rwsem);
481 }
482
483 static int diskstats_show(struct seq_file *s, void *v)
484 {
485         struct gendisk *gp = v;
486         char buf[BDEVNAME_SIZE];
487         int n = 0;
488
489         /*
490         if (&sgp->kobj.entry == block_subsys.kset.list.next)
491                 seq_puts(s,     "major minor name"
492                                 "     rio rmerge rsect ruse wio wmerge "
493                                 "wsect wuse running use aveq"
494                                 "\n\n");
495         */
496  
497         disk_round_stats(gp);
498         seq_printf(s, "%4d %4d %s %u %u %llu %u %u %u %llu %u %u %u %u\n",
499                 gp->major, n + gp->first_minor, disk_name(gp, n, buf),
500                 disk_stat_read(gp, reads), disk_stat_read(gp, read_merges),
501                 (unsigned long long)disk_stat_read(gp, read_sectors),
502                 jiffies_to_msecs(disk_stat_read(gp, read_ticks)),
503                 disk_stat_read(gp, writes), disk_stat_read(gp, write_merges),
504                 (unsigned long long)disk_stat_read(gp, write_sectors),
505                 jiffies_to_msecs(disk_stat_read(gp, write_ticks)),
506                 gp->in_flight,
507                 jiffies_to_msecs(disk_stat_read(gp, io_ticks)),
508                 jiffies_to_msecs(disk_stat_read(gp, time_in_queue)));
509
510         /* now show all non-0 size partitions of it */
511         for (n = 0; n < gp->minors - 1; n++) {
512                 struct hd_struct *hd = gp->part[n];
513
514                 if (hd && hd->nr_sects)
515                         seq_printf(s, "%4d %4d %s %u %u %u %u\n",
516                                 gp->major, n + gp->first_minor + 1,
517                                 disk_name(gp, n + 1, buf),
518                                 hd->reads, hd->read_sectors,
519                                 hd->writes, hd->write_sectors);
520         }
521  
522         return 0;
523 }
524
525 struct seq_operations diskstats_op = {
526         .start  = diskstats_start,
527         .next   = diskstats_next,
528         .stop   = diskstats_stop,
529         .show   = diskstats_show
530 };
531
532
533 struct gendisk *alloc_disk(int minors)
534 {
535         struct gendisk *disk = kmalloc(sizeof(struct gendisk), GFP_KERNEL);
536         if (disk) {
537                 memset(disk, 0, sizeof(struct gendisk));
538                 if (!init_disk_stats(disk)) {
539                         kfree(disk);
540                         return NULL;
541                 }
542                 if (minors > 1) {
543                         int size = (minors - 1) * sizeof(struct hd_struct *);
544                         disk->part = kmalloc(size, GFP_KERNEL);
545                         if (!disk->part) {
546                                 kfree(disk);
547                                 return NULL;
548                         }
549                         memset(disk->part, 0, size);
550                 }
551                 disk->minors = minors;
552                 kobj_set_kset_s(disk,block_subsys);
553                 kobject_init(&disk->kobj);
554                 rand_initialize_disk(disk);
555         }
556         return disk;
557 }
558
559 EXPORT_SYMBOL(alloc_disk);
560
561 struct kobject *get_disk(struct gendisk *disk)
562 {
563         struct module *owner;
564         struct kobject *kobj;
565
566         if (!disk->fops)
567                 return NULL;
568         owner = disk->fops->owner;
569         if (owner && !try_module_get(owner))
570                 return NULL;
571         kobj = kobject_get(&disk->kobj);
572         if (kobj == NULL) {
573                 module_put(owner);
574                 return NULL;
575         }
576         return kobj;
577
578 }
579
580 EXPORT_SYMBOL(get_disk);
581
582 void put_disk(struct gendisk *disk)
583 {
584         if (disk)
585                 kobject_put(&disk->kobj);
586 }
587
588 EXPORT_SYMBOL(put_disk);
589
590 void set_device_ro(struct block_device *bdev, int flag)
591 {
592         if (bdev->bd_contains != bdev)
593                 bdev->bd_part->policy = flag;
594         else
595                 bdev->bd_disk->policy = flag;
596 }
597
598 EXPORT_SYMBOL(set_device_ro);
599
600 void set_disk_ro(struct gendisk *disk, int flag)
601 {
602         int i;
603         disk->policy = flag;
604         for (i = 0; i < disk->minors - 1; i++)
605                 if (disk->part[i]) disk->part[i]->policy = flag;
606 }
607
608 EXPORT_SYMBOL(set_disk_ro);
609
610 int bdev_read_only(struct block_device *bdev)
611 {
612         if (!bdev)
613                 return 0;
614         else if (bdev->bd_contains != bdev)
615                 return bdev->bd_part->policy;
616         else
617                 return bdev->bd_disk->policy;
618 }
619
620 EXPORT_SYMBOL(bdev_read_only);
621
622 int invalidate_partition(struct gendisk *disk, int index)
623 {
624         int res = 0;
625         struct block_device *bdev = bdget_disk(disk, index);
626         if (bdev)
627                 res = __invalidate_device(bdev, 1);
628         bdput(bdev);
629         return res;
630 }
631
632 EXPORT_SYMBOL(invalidate_partition);