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