patch-2_6_7-vs1_9_1_12
[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 = 0;
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_size_read(struct gendisk * disk, char *page)
356 {
357         return sprintf(page, "%llu\n", (unsigned long long)get_capacity(disk));
358 }
359
360 static ssize_t disk_stats_read(struct gendisk * disk, char *page)
361 {
362         disk_round_stats(disk);
363         return sprintf(page,
364                 "%8u %8u %8llu %8u "
365                 "%8u %8u %8llu %8u "
366                 "%8u %8u %8u"
367                 "\n",
368                 disk_stat_read(disk, reads), disk_stat_read(disk, read_merges),
369                 (unsigned long long)disk_stat_read(disk, read_sectors),
370                 jiffies_to_msecs(disk_stat_read(disk, read_ticks)),
371                 disk_stat_read(disk, writes), 
372                 disk_stat_read(disk, write_merges),
373                 (unsigned long long)disk_stat_read(disk, write_sectors),
374                 jiffies_to_msecs(disk_stat_read(disk, write_ticks)),
375                 disk->in_flight,
376                 jiffies_to_msecs(disk_stat_read(disk, io_ticks)),
377                 jiffies_to_msecs(disk_stat_read(disk, time_in_queue)));
378 }
379 static struct disk_attribute disk_attr_dev = {
380         .attr = {.name = "dev", .mode = S_IRUGO },
381         .show   = disk_dev_read
382 };
383 static struct disk_attribute disk_attr_range = {
384         .attr = {.name = "range", .mode = S_IRUGO },
385         .show   = disk_range_read
386 };
387 static struct disk_attribute disk_attr_size = {
388         .attr = {.name = "size", .mode = S_IRUGO },
389         .show   = disk_size_read
390 };
391 static struct disk_attribute disk_attr_stat = {
392         .attr = {.name = "stat", .mode = S_IRUGO },
393         .show   = disk_stats_read
394 };
395
396 static struct attribute * default_attrs[] = {
397         &disk_attr_dev.attr,
398         &disk_attr_range.attr,
399         &disk_attr_size.attr,
400         &disk_attr_stat.attr,
401         NULL,
402 };
403
404 static void disk_release(struct kobject * kobj)
405 {
406         struct gendisk *disk = to_disk(kobj);
407         kfree(disk->random);
408         kfree(disk->part);
409         free_disk_stats(disk);
410         kfree(disk);
411 }
412
413 static struct kobj_type ktype_block = {
414         .release        = disk_release,
415         .sysfs_ops      = &disk_sysfs_ops,
416         .default_attrs  = default_attrs,
417 };
418
419 extern struct kobj_type ktype_part;
420
421 static int block_hotplug_filter(struct kset *kset, struct kobject *kobj)
422 {
423         struct kobj_type *ktype = get_ktype(kobj);
424
425         return ((ktype == &ktype_block) || (ktype == &ktype_part));
426 }
427
428 static struct kset_hotplug_ops block_hotplug_ops = {
429         .filter = block_hotplug_filter,
430 };
431
432 /* declare block_subsys. */
433 static decl_subsys(block, &ktype_block, &block_hotplug_ops);
434
435
436 /*
437  * aggregate disk stat collector.  Uses the same stats that the sysfs
438  * entries do, above, but makes them available through one seq_file.
439  * Watching a few disks may be efficient through sysfs, but watching
440  * all of them will be more efficient through this interface.
441  *
442  * The output looks suspiciously like /proc/partitions with a bunch of
443  * extra fields.
444  */
445
446 /* iterator */
447 static void *diskstats_start(struct seq_file *part, loff_t *pos)
448 {
449         loff_t k = *pos;
450         struct list_head *p;
451
452         down_read(&block_subsys.rwsem);
453         list_for_each(p, &block_subsys.kset.list)
454                 if (!k--)
455                         return list_entry(p, struct gendisk, kobj.entry);
456         return NULL;
457 }
458
459 static void *diskstats_next(struct seq_file *part, void *v, loff_t *pos)
460 {
461         struct list_head *p = ((struct gendisk *)v)->kobj.entry.next;
462         ++*pos;
463         return p==&block_subsys.kset.list ? NULL :
464                 list_entry(p, struct gendisk, kobj.entry);
465 }
466
467 static void diskstats_stop(struct seq_file *part, void *v)
468 {
469         up_read(&block_subsys.rwsem);
470 }
471
472 static int diskstats_show(struct seq_file *s, void *v)
473 {
474         struct gendisk *gp = v;
475         char buf[BDEVNAME_SIZE];
476         int n = 0;
477
478         /*
479         if (&sgp->kobj.entry == block_subsys.kset.list.next)
480                 seq_puts(s,     "major minor name"
481                                 "     rio rmerge rsect ruse wio wmerge "
482                                 "wsect wuse running use aveq"
483                                 "\n\n");
484         */
485  
486         disk_round_stats(gp);
487         seq_printf(s, "%4d %4d %s %u %u %llu %u %u %u %llu %u %u %u %u\n",
488                 gp->major, n + gp->first_minor, disk_name(gp, n, buf),
489                 disk_stat_read(gp, reads), disk_stat_read(gp, read_merges),
490                 (unsigned long long)disk_stat_read(gp, read_sectors),
491                 jiffies_to_msecs(disk_stat_read(gp, read_ticks)),
492                 disk_stat_read(gp, writes), disk_stat_read(gp, write_merges),
493                 (unsigned long long)disk_stat_read(gp, write_sectors),
494                 jiffies_to_msecs(disk_stat_read(gp, write_ticks)),
495                 gp->in_flight,
496                 jiffies_to_msecs(disk_stat_read(gp, io_ticks)),
497                 jiffies_to_msecs(disk_stat_read(gp, time_in_queue)));
498
499         /* now show all non-0 size partitions of it */
500         for (n = 0; n < gp->minors - 1; n++) {
501                 struct hd_struct *hd = gp->part[n];
502
503                 if (hd && hd->nr_sects)
504                         seq_printf(s, "%4d %4d %s %u %u %u %u\n",
505                                 gp->major, n + gp->first_minor + 1,
506                                 disk_name(gp, n + 1, buf),
507                                 hd->reads, hd->read_sectors,
508                                 hd->writes, hd->write_sectors);
509         }
510  
511         return 0;
512 }
513
514 struct seq_operations diskstats_op = {
515         .start  = diskstats_start,
516         .next   = diskstats_next,
517         .stop   = diskstats_stop,
518         .show   = diskstats_show
519 };
520
521
522 struct gendisk *alloc_disk(int minors)
523 {
524         struct gendisk *disk = kmalloc(sizeof(struct gendisk), GFP_KERNEL);
525         if (disk) {
526                 memset(disk, 0, sizeof(struct gendisk));
527                 if (!init_disk_stats(disk)) {
528                         kfree(disk);
529                         return NULL;
530                 }
531                 if (minors > 1) {
532                         int size = (minors - 1) * sizeof(struct hd_struct *);
533                         disk->part = kmalloc(size, GFP_KERNEL);
534                         if (!disk->part) {
535                                 kfree(disk);
536                                 return NULL;
537                         }
538                         memset(disk->part, 0, size);
539                 }
540                 disk->minors = minors;
541                 kobj_set_kset_s(disk,block_subsys);
542                 kobject_init(&disk->kobj);
543                 rand_initialize_disk(disk);
544         }
545         return disk;
546 }
547
548 EXPORT_SYMBOL(alloc_disk);
549
550 struct kobject *get_disk(struct gendisk *disk)
551 {
552         struct module *owner;
553         struct kobject *kobj;
554
555         if (!disk->fops)
556                 return NULL;
557         owner = disk->fops->owner;
558         if (owner && !try_module_get(owner))
559                 return NULL;
560         kobj = kobject_get(&disk->kobj);
561         if (kobj == NULL) {
562                 module_put(owner);
563                 return NULL;
564         }
565         return kobj;
566
567 }
568
569 EXPORT_SYMBOL(get_disk);
570
571 void put_disk(struct gendisk *disk)
572 {
573         if (disk)
574                 kobject_put(&disk->kobj);
575 }
576
577 EXPORT_SYMBOL(put_disk);
578
579 void set_device_ro(struct block_device *bdev, int flag)
580 {
581         if (bdev->bd_contains != bdev)
582                 bdev->bd_part->policy = flag;
583         else
584                 bdev->bd_disk->policy = flag;
585 }
586
587 EXPORT_SYMBOL(set_device_ro);
588
589 void set_disk_ro(struct gendisk *disk, int flag)
590 {
591         int i;
592         disk->policy = flag;
593         for (i = 0; i < disk->minors - 1; i++)
594                 if (disk->part[i]) disk->part[i]->policy = flag;
595 }
596
597 EXPORT_SYMBOL(set_disk_ro);
598
599 int bdev_read_only(struct block_device *bdev)
600 {
601         if (!bdev)
602                 return 0;
603         else if (bdev->bd_contains != bdev)
604                 return bdev->bd_part->policy;
605         else
606                 return bdev->bd_disk->policy;
607 }
608
609 EXPORT_SYMBOL(bdev_read_only);
610
611 int invalidate_partition(struct gendisk *disk, int index)
612 {
613         int res = 0;
614         struct block_device *bdev = bdget_disk(disk, index);
615         if (bdev)
616                 res = __invalidate_device(bdev, 1);
617         bdput(bdev);
618         return res;
619 }
620
621 EXPORT_SYMBOL(invalidate_partition);