2 * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
6 /* 2001-09-28...2002-04-17
7 * Partition stuff by James_McMechan@hotmail.com
8 * old style ubd by setting UBD_SHIFT to 0
9 * 2002-09-27...2002-10-18 massive tinkering for 2.5
10 * partitions have changed in 2.5
11 * 2003-01-29 more tinkering for 2.5.59-1
12 * This should now address the sysfs problems and has
13 * the symlink for devfs to allow for booting with
14 * the common /dev/ubd/discX/... names rather than
15 * only /dev/ubdN/discN this version also has lots of
16 * clean ups preparing for ubd-many.
22 #include "linux/kernel.h"
23 #include "linux/module.h"
24 #include "linux/blkdev.h"
25 #include "linux/ata.h"
26 #include "linux/hdreg.h"
27 #include "linux/init.h"
28 #include "linux/cdrom.h"
29 #include "linux/proc_fs.h"
30 #include "linux/ctype.h"
31 #include "linux/capability.h"
33 #include "linux/vmalloc.h"
34 #include "linux/blkpg.h"
35 #include "linux/genhd.h"
36 #include "linux/spinlock.h"
37 #include "linux/platform_device.h"
38 #include "linux/scatterlist.h"
39 #include "asm/segment.h"
40 #include "asm/uaccess.h"
42 #include "asm/types.h"
43 #include "asm/tlbflush.h"
45 #include "kern_util.h"
47 #include "mconsole_kern.h"
57 enum ubd_req
{ UBD_READ
, UBD_WRITE
};
59 struct io_thread_req
{
63 unsigned long offsets
[2];
64 unsigned long long offset
;
68 unsigned long sector_mask
;
69 unsigned long long cow_offset
;
70 unsigned long bitmap_words
[2];
74 static inline int ubd_test_bit(__u64 bit
, unsigned char *data
)
79 bits
= sizeof(data
[0]) * 8;
82 return (data
[n
] & (1 << off
)) != 0;
85 static inline void ubd_set_bit(__u64 bit
, unsigned char *data
)
90 bits
= sizeof(data
[0]) * 8;
93 data
[n
] |= (1 << off
);
95 /*End stuff from ubd_user.h*/
97 #define DRIVER_NAME "uml-blkdev"
99 static DEFINE_MUTEX(ubd_lock
);
101 static int ubd_open(struct block_device
*bdev
, fmode_t mode
);
102 static int ubd_release(struct gendisk
*disk
, fmode_t mode
);
103 static int ubd_ioctl(struct block_device
*bdev
, fmode_t mode
,
104 unsigned int cmd
, unsigned long arg
);
105 static int ubd_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
);
109 static struct block_device_operations ubd_blops
= {
110 .owner
= THIS_MODULE
,
112 .release
= ubd_release
,
114 .getgeo
= ubd_getgeo
,
117 /* Protected by ubd_lock */
118 static int fake_major
= UBD_MAJOR
;
119 static struct gendisk
*ubd_gendisk
[MAX_DEV
];
120 static struct gendisk
*fake_gendisk
[MAX_DEV
];
122 #ifdef CONFIG_BLK_DEV_UBD_SYNC
123 #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 1, .c = 0, \
126 #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 0, .c = 0, \
129 static struct openflags global_openflags
= OPEN_FLAGS
;
132 /* backing file name */
134 /* backing file fd */
136 unsigned long *bitmap
;
137 unsigned long bitmap_len
;
145 struct list_head restart
;
146 /* name (and fd, below) of the file opened for writing, either the
147 * backing or the cow file. */
152 struct openflags boot_openflags
;
153 struct openflags openflags
;
157 struct platform_device pdev
;
158 struct request_queue
*queue
;
160 struct scatterlist sg
[MAX_SG
];
161 struct request
*request
;
162 int start_sg
, end_sg
;
165 #define DEFAULT_COW { \
169 .bitmap_offset = 0, \
173 #define DEFAULT_UBD { \
178 .boot_openflags = OPEN_FLAGS, \
179 .openflags = OPEN_FLAGS, \
182 .cow = DEFAULT_COW, \
183 .lock = SPIN_LOCK_UNLOCKED, \
189 /* Protected by ubd_lock */
190 static struct ubd ubd_devs
[MAX_DEV
] = { [0 ... MAX_DEV
- 1] = DEFAULT_UBD
};
192 /* Only changed by fake_ide_setup which is a setup */
193 static int fake_ide
= 0;
194 static struct proc_dir_entry
*proc_ide_root
= NULL
;
195 static struct proc_dir_entry
*proc_ide
= NULL
;
197 static void make_proc_ide(void)
199 proc_ide_root
= proc_mkdir("ide", NULL
);
200 proc_ide
= proc_mkdir("ide0", proc_ide_root
);
203 static int proc_ide_read_media(char *page
, char **start
, off_t off
, int count
,
204 int *eof
, void *data
)
208 strcpy(page
, "disk\n");
209 len
= strlen("disk\n");
213 if (len
<= 0) return 0;
220 static void make_ide_entries(const char *dev_name
)
222 struct proc_dir_entry
*dir
, *ent
;
225 if(proc_ide_root
== NULL
) make_proc_ide();
227 dir
= proc_mkdir(dev_name
, proc_ide
);
230 ent
= create_proc_entry("media", S_IFREG
|S_IRUGO
, dir
);
233 ent
->read_proc
= proc_ide_read_media
;
234 ent
->write_proc
= NULL
;
235 snprintf(name
, sizeof(name
), "ide0/%s", dev_name
);
236 proc_symlink(dev_name
, proc_ide_root
, name
);
239 static int fake_ide_setup(char *str
)
245 __setup("fake_ide", fake_ide_setup
);
247 __uml_help(fake_ide_setup
,
249 " Create ide0 entries that map onto ubd devices.\n\n"
252 static int parse_unit(char **ptr
)
254 char *str
= *ptr
, *end
;
258 n
= simple_strtoul(str
, &end
, 0);
263 else if (('a' <= *str
) && (*str
<= 'z')) {
271 /* If *index_out == -1 at exit, the passed option was a general one;
272 * otherwise, the str pointer is used (and owned) inside ubd_devs array, so it
273 * should not be freed on exit.
275 static int ubd_setup_common(char *str
, int *index_out
, char **error_out
)
278 struct openflags flags
= global_openflags
;
282 if(index_out
) *index_out
= -1;
289 if(!strcmp(str
, "sync")){
290 global_openflags
= of_sync(global_openflags
);
295 major
= simple_strtoul(str
, &end
, 0);
296 if((*end
!= '\0') || (end
== str
)){
297 *error_out
= "Didn't parse major number";
301 mutex_lock(&ubd_lock
);
302 if (fake_major
!= UBD_MAJOR
) {
303 *error_out
= "Can't assign a fake major twice";
309 printk(KERN_INFO
"Setting extra ubd major number to %d\n",
313 mutex_unlock(&ubd_lock
);
317 n
= parse_unit(&str
);
319 *error_out
= "Couldn't parse device number";
323 *error_out
= "Device number out of range";
328 mutex_lock(&ubd_lock
);
330 ubd_dev
= &ubd_devs
[n
];
331 if(ubd_dev
->file
!= NULL
){
332 *error_out
= "Device is already configured";
340 for (i
= 0; i
< sizeof("rscd="); i
++) {
358 *error_out
= "Expected '=' or flag letter "
366 *error_out
= "Too many flags specified";
368 *error_out
= "Missing '='";
372 backing_file
= strchr(str
, ',');
374 if (backing_file
== NULL
)
375 backing_file
= strchr(str
, ':');
377 if(backing_file
!= NULL
){
379 *error_out
= "Can't specify both 'd' and a cow file";
383 *backing_file
= '\0';
389 ubd_dev
->cow
.file
= backing_file
;
390 ubd_dev
->boot_openflags
= flags
;
392 mutex_unlock(&ubd_lock
);
396 static int ubd_setup(char *str
)
401 err
= ubd_setup_common(str
, NULL
, &error
);
403 printk(KERN_ERR
"Failed to initialize device with \"%s\" : "
408 __setup("ubd", ubd_setup
);
409 __uml_help(ubd_setup
,
410 "ubd<n><flags>=<filename>[(:|,)<filename2>]\n"
411 " This is used to associate a device with a file in the underlying\n"
412 " filesystem. When specifying two filenames, the first one is the\n"
413 " COW name and the second is the backing file name. As separator you can\n"
414 " use either a ':' or a ',': the first one allows writing things like;\n"
415 " ubd0=~/Uml/root_cow:~/Uml/root_backing_file\n"
416 " while with a ',' the shell would not expand the 2nd '~'.\n"
417 " When using only one filename, UML will detect whether to treat it like\n"
418 " a COW file or a backing file. To override this detection, add the 'd'\n"
420 " ubd0d=BackingFile\n"
421 " Usually, there is a filesystem in the file, but \n"
422 " that's not required. Swap devices containing swap files can be\n"
423 " specified like this. Also, a file which doesn't contain a\n"
424 " filesystem can have its contents read in the virtual \n"
425 " machine by running 'dd' on the device. <n> must be in the range\n"
426 " 0 to 7. Appending an 'r' to the number will cause that device\n"
427 " to be mounted read-only. For example ubd1r=./ext_fs. Appending\n"
428 " an 's' will cause data to be written to disk on the host immediately.\n"
429 " 'c' will cause the device to be treated as being shared between multiple\n"
430 " UMLs and file locking will be turned off - this is appropriate for a\n"
431 " cluster filesystem and inappropriate at almost all other times.\n\n"
434 static int udb_setup(char *str
)
436 printk("udb%s specified on command line is almost certainly a ubd -> "
441 __setup("udb", udb_setup
);
442 __uml_help(udb_setup
,
444 " This option is here solely to catch ubd -> udb typos, which can be\n"
445 " to impossible to catch visually unless you specifically look for\n"
446 " them. The only result of any option starting with 'udb' is an error\n"
447 " in the boot output.\n\n"
450 static void do_ubd_request(struct request_queue
* q
);
452 /* Only changed by ubd_init, which is an initcall. */
453 static int thread_fd
= -1;
455 static void ubd_end_request(struct request
*req
, int bytes
, int error
)
457 blk_end_request(req
, error
, bytes
);
460 /* Callable only from interrupt context - otherwise you need to do
461 * spin_lock_irq()/spin_lock_irqsave() */
462 static inline void ubd_finish(struct request
*req
, int bytes
)
465 ubd_end_request(req
, 0, -EIO
);
468 ubd_end_request(req
, bytes
, 0);
471 static LIST_HEAD(restart
);
473 /* XXX - move this inside ubd_intr. */
474 /* Called without dev->lock held, and only in interrupt context. */
475 static void ubd_handler(void)
477 struct io_thread_req
*req
;
480 struct list_head
*list
, *next_ele
;
485 n
= os_read_file(thread_fd
, &req
,
486 sizeof(struct io_thread_req
*));
487 if(n
!= sizeof(req
)){
490 printk(KERN_ERR
"spurious interrupt in ubd_handler, "
496 rq
->nr_sectors
-= req
->length
>> 9;
497 if(rq
->nr_sectors
== 0)
498 ubd_finish(rq
, rq
->hard_nr_sectors
<< 9);
501 reactivate_fd(thread_fd
, UBD_IRQ
);
503 list_for_each_safe(list
, next_ele
, &restart
){
504 ubd
= container_of(list
, struct ubd
, restart
);
505 list_del_init(&ubd
->restart
);
506 spin_lock_irqsave(&ubd
->lock
, flags
);
507 do_ubd_request(ubd
->queue
);
508 spin_unlock_irqrestore(&ubd
->lock
, flags
);
512 static irqreturn_t
ubd_intr(int irq
, void *dev
)
518 /* Only changed by ubd_init, which is an initcall. */
519 static int io_pid
= -1;
521 static void kill_io_thread(void)
524 os_kill_process(io_pid
, 1);
527 __uml_exitcall(kill_io_thread
);
529 static inline int ubd_file_size(struct ubd
*ubd_dev
, __u64
*size_out
)
533 file
= ubd_dev
->cow
.file
? ubd_dev
->cow
.file
: ubd_dev
->file
;
534 return os_file_size(file
, size_out
);
537 static int read_cow_bitmap(int fd
, void *buf
, int offset
, int len
)
541 err
= os_seek_file(fd
, offset
);
545 err
= os_read_file(fd
, buf
, len
);
552 static int backing_file_mismatch(char *file
, __u64 size
, time_t mtime
)
554 unsigned long modtime
;
555 unsigned long long actual
;
558 err
= os_file_modtime(file
, &modtime
);
560 printk(KERN_ERR
"Failed to get modification time of backing "
561 "file \"%s\", err = %d\n", file
, -err
);
565 err
= os_file_size(file
, &actual
);
567 printk(KERN_ERR
"Failed to get size of backing file \"%s\", "
568 "err = %d\n", file
, -err
);
572 if (actual
!= size
) {
573 /*__u64 can be a long on AMD64 and with %lu GCC complains; so
575 printk(KERN_ERR
"Size mismatch (%llu vs %llu) of COW header "
576 "vs backing file\n", (unsigned long long) size
, actual
);
579 if (modtime
!= mtime
) {
580 printk(KERN_ERR
"mtime mismatch (%ld vs %ld) of COW header vs "
581 "backing file\n", mtime
, modtime
);
587 static int path_requires_switch(char *from_cmdline
, char *from_cow
, char *cow
)
589 struct uml_stat buf1
, buf2
;
592 if (from_cmdline
== NULL
)
594 if (!strcmp(from_cmdline
, from_cow
))
597 err
= os_stat_file(from_cmdline
, &buf1
);
599 printk(KERN_ERR
"Couldn't stat '%s', err = %d\n", from_cmdline
,
603 err
= os_stat_file(from_cow
, &buf2
);
605 printk(KERN_ERR
"Couldn't stat '%s', err = %d\n", from_cow
,
609 if ((buf1
.ust_dev
== buf2
.ust_dev
) && (buf1
.ust_ino
== buf2
.ust_ino
))
612 printk(KERN_ERR
"Backing file mismatch - \"%s\" requested, "
613 "\"%s\" specified in COW header of \"%s\"\n",
614 from_cmdline
, from_cow
, cow
);
618 static int open_ubd_file(char *file
, struct openflags
*openflags
, int shared
,
619 char **backing_file_out
, int *bitmap_offset_out
,
620 unsigned long *bitmap_len_out
, int *data_offset_out
,
624 unsigned long long size
;
625 __u32 version
, align
;
627 int fd
, err
, sectorsize
, asked_switch
, mode
= 0644;
629 fd
= os_open_file(file
, *openflags
, mode
);
631 if ((fd
== -ENOENT
) && (create_cow_out
!= NULL
))
634 ((fd
!= -EROFS
) && (fd
!= -EACCES
)))
637 fd
= os_open_file(file
, *openflags
, mode
);
643 printk(KERN_INFO
"Not locking \"%s\" on the host\n", file
);
645 err
= os_lock_file(fd
, openflags
->w
);
647 printk(KERN_ERR
"Failed to lock '%s', err = %d\n",
653 /* Successful return case! */
654 if (backing_file_out
== NULL
)
657 err
= read_cow_header(file_reader
, &fd
, &version
, &backing_file
, &mtime
,
658 &size
, §orsize
, &align
, bitmap_offset_out
);
659 if (err
&& (*backing_file_out
!= NULL
)) {
660 printk(KERN_ERR
"Failed to read COW header from COW file "
661 "\"%s\", errno = %d\n", file
, -err
);
667 asked_switch
= path_requires_switch(*backing_file_out
, backing_file
,
670 /* Allow switching only if no mismatch. */
671 if (asked_switch
&& !backing_file_mismatch(*backing_file_out
, size
,
673 printk(KERN_ERR
"Switching backing file to '%s'\n",
675 err
= write_cow_header(file
, fd
, *backing_file_out
,
676 sectorsize
, align
, &size
);
678 printk(KERN_ERR
"Switch failed, errno = %d\n", -err
);
682 *backing_file_out
= backing_file
;
683 err
= backing_file_mismatch(*backing_file_out
, size
, mtime
);
688 cow_sizes(version
, size
, sectorsize
, align
, *bitmap_offset_out
,
689 bitmap_len_out
, data_offset_out
);
697 static int create_cow_file(char *cow_file
, char *backing_file
,
698 struct openflags flags
,
699 int sectorsize
, int alignment
, int *bitmap_offset_out
,
700 unsigned long *bitmap_len_out
, int *data_offset_out
)
705 fd
= open_ubd_file(cow_file
, &flags
, 0, NULL
, NULL
, NULL
, NULL
, NULL
);
708 printk(KERN_ERR
"Open of COW file '%s' failed, errno = %d\n",
713 err
= init_cow_file(fd
, cow_file
, backing_file
, sectorsize
, alignment
,
714 bitmap_offset_out
, bitmap_len_out
,
723 static void ubd_close_dev(struct ubd
*ubd_dev
)
725 os_close_file(ubd_dev
->fd
);
726 if(ubd_dev
->cow
.file
== NULL
)
729 os_close_file(ubd_dev
->cow
.fd
);
730 vfree(ubd_dev
->cow
.bitmap
);
731 ubd_dev
->cow
.bitmap
= NULL
;
734 static int ubd_open_dev(struct ubd
*ubd_dev
)
736 struct openflags flags
;
738 int err
, create_cow
, *create_ptr
;
741 ubd_dev
->openflags
= ubd_dev
->boot_openflags
;
743 create_ptr
= (ubd_dev
->cow
.file
!= NULL
) ? &create_cow
: NULL
;
744 back_ptr
= ubd_dev
->no_cow
? NULL
: &ubd_dev
->cow
.file
;
746 fd
= open_ubd_file(ubd_dev
->file
, &ubd_dev
->openflags
, ubd_dev
->shared
,
747 back_ptr
, &ubd_dev
->cow
.bitmap_offset
,
748 &ubd_dev
->cow
.bitmap_len
, &ubd_dev
->cow
.data_offset
,
751 if((fd
== -ENOENT
) && create_cow
){
752 fd
= create_cow_file(ubd_dev
->file
, ubd_dev
->cow
.file
,
753 ubd_dev
->openflags
, 1 << 9, PAGE_SIZE
,
754 &ubd_dev
->cow
.bitmap_offset
,
755 &ubd_dev
->cow
.bitmap_len
,
756 &ubd_dev
->cow
.data_offset
);
758 printk(KERN_INFO
"Creating \"%s\" as COW file for "
759 "\"%s\"\n", ubd_dev
->file
, ubd_dev
->cow
.file
);
764 printk("Failed to open '%s', errno = %d\n", ubd_dev
->file
,
770 if(ubd_dev
->cow
.file
!= NULL
){
771 blk_queue_max_sectors(ubd_dev
->queue
, 8 * sizeof(long));
774 ubd_dev
->cow
.bitmap
= vmalloc(ubd_dev
->cow
.bitmap_len
);
775 if(ubd_dev
->cow
.bitmap
== NULL
){
776 printk(KERN_ERR
"Failed to vmalloc COW bitmap\n");
779 flush_tlb_kernel_vm();
781 err
= read_cow_bitmap(ubd_dev
->fd
, ubd_dev
->cow
.bitmap
,
782 ubd_dev
->cow
.bitmap_offset
,
783 ubd_dev
->cow
.bitmap_len
);
787 flags
= ubd_dev
->openflags
;
789 err
= open_ubd_file(ubd_dev
->cow
.file
, &flags
, ubd_dev
->shared
, NULL
,
790 NULL
, NULL
, NULL
, NULL
);
791 if(err
< 0) goto error
;
792 ubd_dev
->cow
.fd
= err
;
796 os_close_file(ubd_dev
->fd
);
800 static void ubd_device_release(struct device
*dev
)
802 struct ubd
*ubd_dev
= dev
->driver_data
;
804 blk_cleanup_queue(ubd_dev
->queue
);
805 *ubd_dev
= ((struct ubd
) DEFAULT_UBD
);
808 static int ubd_disk_register(int major
, u64 size
, int unit
,
809 struct gendisk
**disk_out
)
811 struct gendisk
*disk
;
813 disk
= alloc_disk(1 << UBD_SHIFT
);
818 disk
->first_minor
= unit
<< UBD_SHIFT
;
819 disk
->fops
= &ubd_blops
;
820 set_capacity(disk
, size
/ 512);
821 if (major
== UBD_MAJOR
)
822 sprintf(disk
->disk_name
, "ubd%c", 'a' + unit
);
824 sprintf(disk
->disk_name
, "ubd_fake%d", unit
);
826 /* sysfs register (not for ide fake devices) */
827 if (major
== UBD_MAJOR
) {
828 ubd_devs
[unit
].pdev
.id
= unit
;
829 ubd_devs
[unit
].pdev
.name
= DRIVER_NAME
;
830 ubd_devs
[unit
].pdev
.dev
.release
= ubd_device_release
;
831 ubd_devs
[unit
].pdev
.dev
.driver_data
= &ubd_devs
[unit
];
832 platform_device_register(&ubd_devs
[unit
].pdev
);
833 disk
->driverfs_dev
= &ubd_devs
[unit
].pdev
.dev
;
836 disk
->private_data
= &ubd_devs
[unit
];
837 disk
->queue
= ubd_devs
[unit
].queue
;
844 #define ROUND_BLOCK(n) ((n + ((1 << 9) - 1)) & (-1 << 9))
846 static int ubd_add(int n
, char **error_out
)
848 struct ubd
*ubd_dev
= &ubd_devs
[n
];
851 if(ubd_dev
->file
== NULL
)
854 err
= ubd_file_size(ubd_dev
, &ubd_dev
->size
);
856 *error_out
= "Couldn't determine size of device's file";
860 ubd_dev
->size
= ROUND_BLOCK(ubd_dev
->size
);
862 INIT_LIST_HEAD(&ubd_dev
->restart
);
863 sg_init_table(ubd_dev
->sg
, MAX_SG
);
866 ubd_dev
->queue
= blk_init_queue(do_ubd_request
, &ubd_dev
->lock
);
867 if (ubd_dev
->queue
== NULL
) {
868 *error_out
= "Failed to initialize device queue";
871 ubd_dev
->queue
->queuedata
= ubd_dev
;
873 blk_queue_max_hw_segments(ubd_dev
->queue
, MAX_SG
);
874 err
= ubd_disk_register(UBD_MAJOR
, ubd_dev
->size
, n
, &ubd_gendisk
[n
]);
876 *error_out
= "Failed to register device";
880 if (fake_major
!= UBD_MAJOR
)
881 ubd_disk_register(fake_major
, ubd_dev
->size
, n
,
885 * Perhaps this should also be under the "if (fake_major)" above
886 * using the fake_disk->disk_name
889 make_ide_entries(ubd_gendisk
[n
]->disk_name
);
896 blk_cleanup_queue(ubd_dev
->queue
);
900 static int ubd_config(char *str
, char **error_out
)
904 /* This string is possibly broken up and stored, so it's only
905 * freed if ubd_setup_common fails, or if only general options
908 str
= kstrdup(str
, GFP_KERNEL
);
910 *error_out
= "Failed to allocate memory";
914 ret
= ubd_setup_common(str
, &n
, error_out
);
923 mutex_lock(&ubd_lock
);
924 ret
= ubd_add(n
, error_out
);
926 ubd_devs
[n
].file
= NULL
;
927 mutex_unlock(&ubd_lock
);
937 static int ubd_get_config(char *name
, char *str
, int size
, char **error_out
)
942 n
= parse_unit(&name
);
943 if((n
>= MAX_DEV
) || (n
< 0)){
944 *error_out
= "ubd_get_config : device number out of range";
948 ubd_dev
= &ubd_devs
[n
];
949 mutex_lock(&ubd_lock
);
951 if(ubd_dev
->file
== NULL
){
952 CONFIG_CHUNK(str
, size
, len
, "", 1);
956 CONFIG_CHUNK(str
, size
, len
, ubd_dev
->file
, 0);
958 if(ubd_dev
->cow
.file
!= NULL
){
959 CONFIG_CHUNK(str
, size
, len
, ",", 0);
960 CONFIG_CHUNK(str
, size
, len
, ubd_dev
->cow
.file
, 1);
962 else CONFIG_CHUNK(str
, size
, len
, "", 1);
965 mutex_unlock(&ubd_lock
);
969 static int ubd_id(char **str
, int *start_out
, int *end_out
)
975 *end_out
= MAX_DEV
- 1;
979 static int ubd_remove(int n
, char **error_out
)
981 struct gendisk
*disk
= ubd_gendisk
[n
];
985 mutex_lock(&ubd_lock
);
987 ubd_dev
= &ubd_devs
[n
];
989 if(ubd_dev
->file
== NULL
)
992 /* you cannot remove a open disk */
994 if(ubd_dev
->count
> 0)
997 ubd_gendisk
[n
] = NULL
;
1003 if(fake_gendisk
[n
] != NULL
){
1004 del_gendisk(fake_gendisk
[n
]);
1005 put_disk(fake_gendisk
[n
]);
1006 fake_gendisk
[n
] = NULL
;
1010 platform_device_unregister(&ubd_dev
->pdev
);
1012 mutex_unlock(&ubd_lock
);
1016 /* All these are called by mconsole in process context and without
1017 * ubd-specific locks. The structure itself is const except for .list.
1019 static struct mc_device ubd_mc
= {
1020 .list
= LIST_HEAD_INIT(ubd_mc
.list
),
1022 .config
= ubd_config
,
1023 .get_config
= ubd_get_config
,
1025 .remove
= ubd_remove
,
1028 static int __init
ubd_mc_init(void)
1030 mconsole_register_dev(&ubd_mc
);
1034 __initcall(ubd_mc_init
);
1036 static int __init
ubd0_init(void)
1038 struct ubd
*ubd_dev
= &ubd_devs
[0];
1040 mutex_lock(&ubd_lock
);
1041 if(ubd_dev
->file
== NULL
)
1042 ubd_dev
->file
= "root_fs";
1043 mutex_unlock(&ubd_lock
);
1048 __initcall(ubd0_init
);
1050 /* Used in ubd_init, which is an initcall */
1051 static struct platform_driver ubd_driver
= {
1053 .name
= DRIVER_NAME
,
1057 static int __init
ubd_init(void)
1062 if (register_blkdev(UBD_MAJOR
, "ubd"))
1065 if (fake_major
!= UBD_MAJOR
) {
1066 char name
[sizeof("ubd_nnn\0")];
1068 snprintf(name
, sizeof(name
), "ubd_%d", fake_major
);
1069 if (register_blkdev(fake_major
, "ubd"))
1072 platform_driver_register(&ubd_driver
);
1073 mutex_lock(&ubd_lock
);
1074 for (i
= 0; i
< MAX_DEV
; i
++){
1075 err
= ubd_add(i
, &error
);
1077 printk(KERN_ERR
"Failed to initialize ubd device %d :"
1080 mutex_unlock(&ubd_lock
);
1084 late_initcall(ubd_init
);
1086 static int __init
ubd_driver_init(void){
1087 unsigned long stack
;
1090 /* Set by CONFIG_BLK_DEV_UBD_SYNC or ubd=sync.*/
1091 if(global_openflags
.s
){
1092 printk(KERN_INFO
"ubd: Synchronous mode\n");
1093 /* Letting ubd=sync be like using ubd#s= instead of ubd#= is
1094 * enough. So use anyway the io thread. */
1096 stack
= alloc_stack(0, 0);
1097 io_pid
= start_io_thread(stack
+ PAGE_SIZE
- sizeof(void *),
1101 "ubd : Failed to start I/O thread (errno = %d) - "
1102 "falling back to synchronous I/O\n", -io_pid
);
1106 err
= um_request_irq(UBD_IRQ
, thread_fd
, IRQ_READ
, ubd_intr
,
1107 IRQF_DISABLED
, "ubd", ubd_devs
);
1109 printk(KERN_ERR
"um_request_irq failed - errno = %d\n", -err
);
1113 device_initcall(ubd_driver_init
);
1115 static int ubd_open(struct block_device
*bdev
, fmode_t mode
)
1117 struct gendisk
*disk
= bdev
->bd_disk
;
1118 struct ubd
*ubd_dev
= disk
->private_data
;
1121 if(ubd_dev
->count
== 0){
1122 err
= ubd_open_dev(ubd_dev
);
1124 printk(KERN_ERR
"%s: Can't open \"%s\": errno = %d\n",
1125 disk
->disk_name
, ubd_dev
->file
, -err
);
1130 set_disk_ro(disk
, !ubd_dev
->openflags
.w
);
1132 /* This should no more be needed. And it didn't work anyway to exclude
1133 * read-write remounting of filesystems.*/
1134 /*if((mode & FMODE_WRITE) && !ubd_dev->openflags.w){
1135 if(--ubd_dev->count == 0) ubd_close_dev(ubd_dev);
1142 static int ubd_release(struct gendisk
*disk
, fmode_t mode
)
1144 struct ubd
*ubd_dev
= disk
->private_data
;
1146 if(--ubd_dev
->count
== 0)
1147 ubd_close_dev(ubd_dev
);
1151 static void cowify_bitmap(__u64 io_offset
, int length
, unsigned long *cow_mask
,
1152 __u64
*cow_offset
, unsigned long *bitmap
,
1153 __u64 bitmap_offset
, unsigned long *bitmap_words
,
1156 __u64 sector
= io_offset
>> 9;
1157 int i
, update_bitmap
= 0;
1159 for(i
= 0; i
< length
>> 9; i
++){
1160 if(cow_mask
!= NULL
)
1161 ubd_set_bit(i
, (unsigned char *) cow_mask
);
1162 if(ubd_test_bit(sector
+ i
, (unsigned char *) bitmap
))
1166 ubd_set_bit(sector
+ i
, (unsigned char *) bitmap
);
1172 *cow_offset
= sector
/ (sizeof(unsigned long) * 8);
1174 /* This takes care of the case where we're exactly at the end of the
1175 * device, and *cow_offset + 1 is off the end. So, just back it up
1176 * by one word. Thanks to Lynn Kerby for the fix and James McMechan
1177 * for the original diagnosis.
1179 if (*cow_offset
== (DIV_ROUND_UP(bitmap_len
,
1180 sizeof(unsigned long)) - 1))
1183 bitmap_words
[0] = bitmap
[*cow_offset
];
1184 bitmap_words
[1] = bitmap
[*cow_offset
+ 1];
1186 *cow_offset
*= sizeof(unsigned long);
1187 *cow_offset
+= bitmap_offset
;
1190 static void cowify_req(struct io_thread_req
*req
, unsigned long *bitmap
,
1191 __u64 bitmap_offset
, __u64 bitmap_len
)
1193 __u64 sector
= req
->offset
>> 9;
1196 if(req
->length
> (sizeof(req
->sector_mask
) * 8) << 9)
1197 panic("Operation too long");
1199 if(req
->op
== UBD_READ
) {
1200 for(i
= 0; i
< req
->length
>> 9; i
++){
1201 if(ubd_test_bit(sector
+ i
, (unsigned char *) bitmap
))
1202 ubd_set_bit(i
, (unsigned char *)
1206 else cowify_bitmap(req
->offset
, req
->length
, &req
->sector_mask
,
1207 &req
->cow_offset
, bitmap
, bitmap_offset
,
1208 req
->bitmap_words
, bitmap_len
);
1211 /* Called with dev->lock held */
1212 static void prepare_request(struct request
*req
, struct io_thread_req
*io_req
,
1213 unsigned long long offset
, int page_offset
,
1214 int len
, struct page
*page
)
1216 struct gendisk
*disk
= req
->rq_disk
;
1217 struct ubd
*ubd_dev
= disk
->private_data
;
1220 io_req
->fds
[0] = (ubd_dev
->cow
.file
!= NULL
) ? ubd_dev
->cow
.fd
:
1222 io_req
->fds
[1] = ubd_dev
->fd
;
1223 io_req
->cow_offset
= -1;
1224 io_req
->offset
= offset
;
1225 io_req
->length
= len
;
1227 io_req
->sector_mask
= 0;
1229 io_req
->op
= (rq_data_dir(req
) == READ
) ? UBD_READ
: UBD_WRITE
;
1230 io_req
->offsets
[0] = 0;
1231 io_req
->offsets
[1] = ubd_dev
->cow
.data_offset
;
1232 io_req
->buffer
= page_address(page
) + page_offset
;
1233 io_req
->sectorsize
= 1 << 9;
1235 if(ubd_dev
->cow
.file
!= NULL
)
1236 cowify_req(io_req
, ubd_dev
->cow
.bitmap
,
1237 ubd_dev
->cow
.bitmap_offset
, ubd_dev
->cow
.bitmap_len
);
1241 /* Called with dev->lock held */
1242 static void do_ubd_request(struct request_queue
*q
)
1244 struct io_thread_req
*io_req
;
1245 struct request
*req
;
1246 int n
, last_sectors
;
1249 struct ubd
*dev
= q
->queuedata
;
1250 if(dev
->end_sg
== 0){
1251 struct request
*req
= elv_next_request(q
);
1256 blkdev_dequeue_request(req
);
1258 dev
->end_sg
= blk_rq_map_sg(q
, req
, dev
->sg
);
1263 while(dev
->start_sg
< dev
->end_sg
){
1264 struct scatterlist
*sg
= &dev
->sg
[dev
->start_sg
];
1266 req
->sector
+= last_sectors
;
1267 io_req
= kmalloc(sizeof(struct io_thread_req
),
1270 if(list_empty(&dev
->restart
))
1271 list_add(&dev
->restart
, &restart
);
1274 prepare_request(req
, io_req
,
1275 (unsigned long long) req
->sector
<< 9,
1276 sg
->offset
, sg
->length
, sg_page(sg
));
1278 last_sectors
= sg
->length
>> 9;
1279 n
= os_write_file(thread_fd
, &io_req
,
1280 sizeof(struct io_thread_req
*));
1281 if(n
!= sizeof(struct io_thread_req
*)){
1283 printk("write to io thread failed, "
1284 "errno = %d\n", -n
);
1285 else if(list_empty(&dev
->restart
))
1286 list_add(&dev
->restart
, &restart
);
1294 dev
->request
= NULL
;
1298 static int ubd_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
)
1300 struct ubd
*ubd_dev
= bdev
->bd_disk
->private_data
;
1304 geo
->cylinders
= ubd_dev
->size
/ (128 * 32 * 512);
1308 static int ubd_ioctl(struct block_device
*bdev
, fmode_t mode
,
1309 unsigned int cmd
, unsigned long arg
)
1311 struct ubd
*ubd_dev
= bdev
->bd_disk
->private_data
;
1312 u16 ubd_id
[ATA_ID_WORDS
];
1315 struct cdrom_volctrl volume
;
1316 case HDIO_GET_IDENTITY
:
1317 memset(&ubd_id
, 0, ATA_ID_WORDS
* 2);
1318 ubd_id
[ATA_ID_CYLS
] = ubd_dev
->size
/ (128 * 32 * 512);
1319 ubd_id
[ATA_ID_HEADS
] = 128;
1320 ubd_id
[ATA_ID_SECTORS
] = 32;
1321 if(copy_to_user((char __user
*) arg
, (char *) &ubd_id
,
1327 if(copy_from_user(&volume
, (char __user
*) arg
, sizeof(volume
)))
1329 volume
.channel0
= 255;
1330 volume
.channel1
= 255;
1331 volume
.channel2
= 255;
1332 volume
.channel3
= 255;
1333 if(copy_to_user((char __user
*) arg
, &volume
, sizeof(volume
)))
1340 static int update_bitmap(struct io_thread_req
*req
)
1344 if(req
->cow_offset
== -1)
1347 n
= os_seek_file(req
->fds
[1], req
->cow_offset
);
1349 printk("do_io - bitmap lseek failed : err = %d\n", -n
);
1353 n
= os_write_file(req
->fds
[1], &req
->bitmap_words
,
1354 sizeof(req
->bitmap_words
));
1355 if(n
!= sizeof(req
->bitmap_words
)){
1356 printk("do_io - bitmap update failed, err = %d fd = %d\n", -n
,
1364 static void do_io(struct io_thread_req
*req
)
1368 int n
, nsectors
, start
, end
, bit
;
1372 nsectors
= req
->length
/ req
->sectorsize
;
1375 bit
= ubd_test_bit(start
, (unsigned char *) &req
->sector_mask
);
1377 while((end
< nsectors
) &&
1378 (ubd_test_bit(end
, (unsigned char *)
1379 &req
->sector_mask
) == bit
))
1382 off
= req
->offset
+ req
->offsets
[bit
] +
1383 start
* req
->sectorsize
;
1384 len
= (end
- start
) * req
->sectorsize
;
1385 buf
= &req
->buffer
[start
* req
->sectorsize
];
1387 err
= os_seek_file(req
->fds
[bit
], off
);
1389 printk("do_io - lseek failed : err = %d\n", -err
);
1393 if(req
->op
== UBD_READ
){
1398 n
= os_read_file(req
->fds
[bit
], buf
, len
);
1400 printk("do_io - read failed, err = %d "
1401 "fd = %d\n", -n
, req
->fds
[bit
]);
1405 } while((n
< len
) && (n
!= 0));
1406 if (n
< len
) memset(&buf
[n
], 0, len
- n
);
1408 n
= os_write_file(req
->fds
[bit
], buf
, len
);
1410 printk("do_io - write failed err = %d "
1411 "fd = %d\n", -n
, req
->fds
[bit
]);
1418 } while(start
< nsectors
);
1420 req
->error
= update_bitmap(req
);
1423 /* Changed in start_io_thread, which is serialized by being called only
1424 * from ubd_init, which is an initcall.
1428 /* Only changed by the io thread. XXX: currently unused. */
1429 static int io_count
= 0;
1431 int io_thread(void *arg
)
1433 struct io_thread_req
*req
;
1436 ignore_sigwinch_sig();
1438 n
= os_read_file(kernel_fd
, &req
,
1439 sizeof(struct io_thread_req
*));
1440 if(n
!= sizeof(struct io_thread_req
*)){
1442 printk("io_thread - read failed, fd = %d, "
1443 "err = %d\n", kernel_fd
, -n
);
1445 printk("io_thread - short read, fd = %d, "
1446 "length = %d\n", kernel_fd
, n
);
1452 n
= os_write_file(kernel_fd
, &req
,
1453 sizeof(struct io_thread_req
*));
1454 if(n
!= sizeof(struct io_thread_req
*))
1455 printk("io_thread - write failed, fd = %d, err = %d\n",