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.
20 #define MAJOR_NR UBD_MAJOR
23 #include "linux/module.h"
24 #include "linux/blkdev.h"
25 #include "linux/hdreg.h"
26 #include "linux/init.h"
27 #include "linux/cdrom.h"
28 #include "linux/proc_fs.h"
29 #include "linux/ctype.h"
30 #include "linux/capability.h"
32 #include "linux/vmalloc.h"
33 #include "linux/blkpg.h"
34 #include "linux/genhd.h"
35 #include "linux/spinlock.h"
36 #include "linux/platform_device.h"
37 #include "asm/segment.h"
38 #include "asm/uaccess.h"
40 #include "asm/types.h"
41 #include "asm/tlbflush.h"
42 #include "user_util.h"
44 #include "kern_util.h"
46 #include "mconsole_kern.h"
56 enum ubd_req { UBD_READ, UBD_WRITE };
58 struct io_thread_req {
62 unsigned long offsets[2];
63 unsigned long long offset;
67 unsigned long sector_mask;
68 unsigned long long cow_offset;
69 unsigned long bitmap_words[2];
73 extern int open_ubd_file(char *file, struct openflags *openflags, int shared,
74 char **backing_file_out, int *bitmap_offset_out,
75 unsigned long *bitmap_len_out, int *data_offset_out,
77 extern int create_cow_file(char *cow_file, char *backing_file,
78 struct openflags flags, int sectorsize,
79 int alignment, int *bitmap_offset_out,
80 unsigned long *bitmap_len_out,
81 int *data_offset_out);
82 extern int read_cow_bitmap(int fd, void *buf, int offset, int len);
83 extern void do_io(struct io_thread_req *req);
85 static inline int ubd_test_bit(__u64 bit, unsigned char *data)
90 bits = sizeof(data[0]) * 8;
93 return((data[n] & (1 << off)) != 0);
96 static inline void ubd_set_bit(__u64 bit, unsigned char *data)
101 bits = sizeof(data[0]) * 8;
104 data[n] |= (1 << off);
106 /*End stuff from ubd_user.h*/
108 #define DRIVER_NAME "uml-blkdev"
110 static DEFINE_MUTEX(ubd_lock);
112 static int ubd_open(struct inode * inode, struct file * filp);
113 static int ubd_release(struct inode * inode, struct file * file);
114 static int ubd_ioctl(struct inode * inode, struct file * file,
115 unsigned int cmd, unsigned long arg);
116 static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo);
120 static struct block_device_operations ubd_blops = {
121 .owner = THIS_MODULE,
123 .release = ubd_release,
125 .getgeo = ubd_getgeo,
128 /* Protected by ubd_lock */
129 static int fake_major = MAJOR_NR;
130 static struct gendisk *ubd_gendisk[MAX_DEV];
131 static struct gendisk *fake_gendisk[MAX_DEV];
133 #ifdef CONFIG_BLK_DEV_UBD_SYNC
134 #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 1, .c = 0, \
137 #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 0, .c = 0, \
140 static struct openflags global_openflags = OPEN_FLAGS;
143 /* backing file name */
145 /* backing file fd */
147 unsigned long *bitmap;
148 unsigned long bitmap_len;
154 /* name (and fd, below) of the file opened for writing, either the
155 * backing or the cow file. */
160 struct openflags boot_openflags;
161 struct openflags openflags;
165 struct platform_device pdev;
166 struct request_queue *queue;
171 #define DEFAULT_COW { \
175 .bitmap_offset = 0, \
179 #define DEFAULT_UBD { \
184 .boot_openflags = OPEN_FLAGS, \
185 .openflags = OPEN_FLAGS, \
188 .cow = DEFAULT_COW, \
189 .lock = SPIN_LOCK_UNLOCKED, \
193 /* Protected by ubd_lock */
194 struct ubd ubd_devs[MAX_DEV] = { [ 0 ... MAX_DEV - 1 ] = DEFAULT_UBD };
196 /* Only changed by fake_ide_setup which is a setup */
197 static int fake_ide = 0;
198 static struct proc_dir_entry *proc_ide_root = NULL;
199 static struct proc_dir_entry *proc_ide = NULL;
201 static void make_proc_ide(void)
203 proc_ide_root = proc_mkdir("ide", NULL);
204 proc_ide = proc_mkdir("ide0", proc_ide_root);
207 static int proc_ide_read_media(char *page, char **start, off_t off, int count,
208 int *eof, void *data)
212 strcpy(page, "disk\n");
213 len = strlen("disk\n");
217 if (len <= 0) return 0;
224 static void make_ide_entries(char *dev_name)
226 struct proc_dir_entry *dir, *ent;
229 if(proc_ide_root == NULL) make_proc_ide();
231 dir = proc_mkdir(dev_name, proc_ide);
234 ent = create_proc_entry("media", S_IFREG|S_IRUGO, dir);
237 ent->read_proc = proc_ide_read_media;
238 ent->write_proc = NULL;
239 sprintf(name,"ide0/%s", dev_name);
240 proc_symlink(dev_name, proc_ide_root, name);
243 static int fake_ide_setup(char *str)
249 __setup("fake_ide", fake_ide_setup);
251 __uml_help(fake_ide_setup,
253 " Create ide0 entries that map onto ubd devices.\n\n"
256 static int parse_unit(char **ptr)
258 char *str = *ptr, *end;
262 n = simple_strtoul(str, &end, 0);
267 else if (('a' <= *str) && (*str <= 'z')) {
275 /* If *index_out == -1 at exit, the passed option was a general one;
276 * otherwise, the str pointer is used (and owned) inside ubd_devs array, so it
277 * should not be freed on exit.
279 static int ubd_setup_common(char *str, int *index_out, char **error_out)
282 struct openflags flags = global_openflags;
286 if(index_out) *index_out = -1;
293 if(!strcmp(str, "sync")){
294 global_openflags = of_sync(global_openflags);
299 major = simple_strtoul(str, &end, 0);
300 if((*end != '\0') || (end == str)){
301 *error_out = "Didn't parse major number";
305 mutex_lock(&ubd_lock);
306 if(fake_major != MAJOR_NR){
307 *error_out = "Can't assign a fake major twice";
313 printk(KERN_INFO "Setting extra ubd major number to %d\n",
317 mutex_unlock(&ubd_lock);
321 n = parse_unit(&str);
323 *error_out = "Couldn't parse device number";
327 *error_out = "Device number out of range";
332 mutex_lock(&ubd_lock);
334 ubd_dev = &ubd_devs[n];
335 if(ubd_dev->file != NULL){
336 *error_out = "Device is already configured";
344 for (i = 0; i < sizeof("rscd="); i++) {
362 *error_out = "Expected '=' or flag letter "
370 *error_out = "Too many flags specified";
372 *error_out = "Missing '='";
376 backing_file = strchr(str, ',');
378 if (backing_file == NULL)
379 backing_file = strchr(str, ':');
381 if(backing_file != NULL){
383 *error_out = "Can't specify both 'd' and a cow file";
387 *backing_file = '\0';
393 ubd_dev->cow.file = backing_file;
394 ubd_dev->boot_openflags = flags;
396 mutex_unlock(&ubd_lock);
400 static int ubd_setup(char *str)
405 err = ubd_setup_common(str, NULL, &error);
407 printk(KERN_ERR "Failed to initialize device with \"%s\" : "
412 __setup("ubd", ubd_setup);
413 __uml_help(ubd_setup,
414 "ubd<n><flags>=<filename>[(:|,)<filename2>]\n"
415 " This is used to associate a device with a file in the underlying\n"
416 " filesystem. When specifying two filenames, the first one is the\n"
417 " COW name and the second is the backing file name. As separator you can\n"
418 " use either a ':' or a ',': the first one allows writing things like;\n"
419 " ubd0=~/Uml/root_cow:~/Uml/root_backing_file\n"
420 " while with a ',' the shell would not expand the 2nd '~'.\n"
421 " When using only one filename, UML will detect whether to treat it like\n"
422 " a COW file or a backing file. To override this detection, add the 'd'\n"
424 " ubd0d=BackingFile\n"
425 " Usually, there is a filesystem in the file, but \n"
426 " that's not required. Swap devices containing swap files can be\n"
427 " specified like this. Also, a file which doesn't contain a\n"
428 " filesystem can have its contents read in the virtual \n"
429 " machine by running 'dd' on the device. <n> must be in the range\n"
430 " 0 to 7. Appending an 'r' to the number will cause that device\n"
431 " to be mounted read-only. For example ubd1r=./ext_fs. Appending\n"
432 " an 's' will cause data to be written to disk on the host immediately.\n\n"
435 static int udb_setup(char *str)
437 printk("udb%s specified on command line is almost certainly a ubd -> "
442 __setup("udb", udb_setup);
443 __uml_help(udb_setup,
445 " This option is here solely to catch ubd -> udb typos, which can be\n"
446 " to impossible to catch visually unless you specifically look for\n"
447 " them. The only result of any option starting with 'udb' is an error\n"
448 " in the boot output.\n\n"
451 static int fakehd_set = 0;
452 static int fakehd(char *str)
454 printk(KERN_INFO "fakehd : Changing ubd name to \"hd\".\n");
459 __setup("fakehd", fakehd);
462 " Change the ubd device name to \"hd\".\n\n"
465 static void do_ubd_request(request_queue_t * q);
467 /* Only changed by ubd_init, which is an initcall. */
470 /* call ubd_finish if you need to serialize */
471 static void __ubd_finish(struct request *req, int error)
479 nsect = req->current_nr_sectors;
480 req->sector += nsect;
481 req->buffer += nsect << 9;
483 req->nr_sectors -= nsect;
484 req->current_nr_sectors = 0;
488 /* Callable only from interrupt context - otherwise you need to do
489 * spin_lock_irq()/spin_lock_irqsave() */
490 static inline void ubd_finish(struct request *req, int error)
492 struct ubd *dev = req->rq_disk->private_data;
494 spin_lock(&dev->lock);
495 __ubd_finish(req, error);
496 spin_unlock(&dev->lock);
499 /* XXX - move this inside ubd_intr. */
500 /* Called without dev->lock held, and only in interrupt context. */
501 static void ubd_handler(void)
503 struct io_thread_req req;
508 n = os_read_file(thread_fd, &req, sizeof(req));
509 if(n != sizeof(req)){
510 printk(KERN_ERR "Pid %d - spurious interrupt in ubd_handler, "
511 "err = %d\n", os_getpid(), -n);
516 dev = rq->rq_disk->private_data;
519 ubd_finish(rq, req.error);
520 reactivate_fd(thread_fd, UBD_IRQ);
521 spin_lock(&dev->lock);
522 do_ubd_request(dev->queue);
523 spin_unlock(&dev->lock);
526 static irqreturn_t ubd_intr(int irq, void *dev)
532 /* Only changed by ubd_init, which is an initcall. */
533 static int io_pid = -1;
535 void kill_io_thread(void)
538 os_kill_process(io_pid, 1);
541 __uml_exitcall(kill_io_thread);
543 static inline int ubd_file_size(struct ubd *ubd_dev, __u64 *size_out)
547 file = ubd_dev->cow.file ? ubd_dev->cow.file : ubd_dev->file;
548 return(os_file_size(file, size_out));
551 static void ubd_close_dev(struct ubd *ubd_dev)
553 os_close_file(ubd_dev->fd);
554 if(ubd_dev->cow.file == NULL)
557 os_close_file(ubd_dev->cow.fd);
558 vfree(ubd_dev->cow.bitmap);
559 ubd_dev->cow.bitmap = NULL;
562 static int ubd_open_dev(struct ubd *ubd_dev)
564 struct openflags flags;
566 int err, create_cow, *create_ptr;
569 ubd_dev->openflags = ubd_dev->boot_openflags;
571 create_ptr = (ubd_dev->cow.file != NULL) ? &create_cow : NULL;
572 back_ptr = ubd_dev->no_cow ? NULL : &ubd_dev->cow.file;
574 fd = open_ubd_file(ubd_dev->file, &ubd_dev->openflags, ubd_dev->shared,
575 back_ptr, &ubd_dev->cow.bitmap_offset,
576 &ubd_dev->cow.bitmap_len, &ubd_dev->cow.data_offset,
579 if((fd == -ENOENT) && create_cow){
580 fd = create_cow_file(ubd_dev->file, ubd_dev->cow.file,
581 ubd_dev->openflags, 1 << 9, PAGE_SIZE,
582 &ubd_dev->cow.bitmap_offset,
583 &ubd_dev->cow.bitmap_len,
584 &ubd_dev->cow.data_offset);
586 printk(KERN_INFO "Creating \"%s\" as COW file for "
587 "\"%s\"\n", ubd_dev->file, ubd_dev->cow.file);
592 printk("Failed to open '%s', errno = %d\n", ubd_dev->file,
598 if(ubd_dev->cow.file != NULL){
600 ubd_dev->cow.bitmap = (void *) vmalloc(ubd_dev->cow.bitmap_len);
601 if(ubd_dev->cow.bitmap == NULL){
602 printk(KERN_ERR "Failed to vmalloc COW bitmap\n");
605 flush_tlb_kernel_vm();
607 err = read_cow_bitmap(ubd_dev->fd, ubd_dev->cow.bitmap,
608 ubd_dev->cow.bitmap_offset,
609 ubd_dev->cow.bitmap_len);
613 flags = ubd_dev->openflags;
615 err = open_ubd_file(ubd_dev->cow.file, &flags, ubd_dev->shared, NULL,
616 NULL, NULL, NULL, NULL);
617 if(err < 0) goto error;
618 ubd_dev->cow.fd = err;
622 os_close_file(ubd_dev->fd);
626 static int ubd_disk_register(int major, u64 size, int unit,
627 struct gendisk **disk_out)
629 struct gendisk *disk;
631 disk = alloc_disk(1 << UBD_SHIFT);
636 disk->first_minor = unit << UBD_SHIFT;
637 disk->fops = &ubd_blops;
638 set_capacity(disk, size / 512);
639 if(major == MAJOR_NR)
640 sprintf(disk->disk_name, "ubd%c", 'a' + unit);
642 sprintf(disk->disk_name, "ubd_fake%d", unit);
644 /* sysfs register (not for ide fake devices) */
645 if (major == MAJOR_NR) {
646 ubd_devs[unit].pdev.id = unit;
647 ubd_devs[unit].pdev.name = DRIVER_NAME;
648 platform_device_register(&ubd_devs[unit].pdev);
649 disk->driverfs_dev = &ubd_devs[unit].pdev.dev;
652 disk->private_data = &ubd_devs[unit];
653 disk->queue = ubd_devs[unit].queue;
660 #define ROUND_BLOCK(n) ((n + ((1 << 9) - 1)) & (-1 << 9))
662 static int ubd_add(int n, char **error_out)
664 struct ubd *ubd_dev = &ubd_devs[n];
667 if(ubd_dev->file == NULL)
670 err = ubd_file_size(ubd_dev, &ubd_dev->size);
672 *error_out = "Couldn't determine size of device's file";
676 ubd_dev->size = ROUND_BLOCK(ubd_dev->size);
679 ubd_dev->queue = blk_init_queue(do_ubd_request, &ubd_dev->lock);
680 if (ubd_dev->queue == NULL) {
681 *error_out = "Failed to initialize device queue";
684 ubd_dev->queue->queuedata = ubd_dev;
686 err = ubd_disk_register(MAJOR_NR, ubd_dev->size, n, &ubd_gendisk[n]);
688 *error_out = "Failed to register device";
692 if(fake_major != MAJOR_NR)
693 ubd_disk_register(fake_major, ubd_dev->size, n,
696 /* perhaps this should also be under the "if (fake_major)" above */
697 /* using the fake_disk->disk_name and also the fakehd_set name */
699 make_ide_entries(ubd_gendisk[n]->disk_name);
706 blk_cleanup_queue(ubd_dev->queue);
710 static int ubd_config(char *str, char **error_out)
714 /* This string is possibly broken up and stored, so it's only
715 * freed if ubd_setup_common fails, or if only general options
718 str = kstrdup(str, GFP_KERNEL);
720 *error_out = "Failed to allocate memory";
724 ret = ubd_setup_common(str, &n, error_out);
733 mutex_lock(&ubd_lock);
734 ret = ubd_add(n, error_out);
736 ubd_devs[n].file = NULL;
737 mutex_unlock(&ubd_lock);
747 static int ubd_get_config(char *name, char *str, int size, char **error_out)
752 n = parse_unit(&name);
753 if((n >= MAX_DEV) || (n < 0)){
754 *error_out = "ubd_get_config : device number out of range";
758 ubd_dev = &ubd_devs[n];
759 mutex_lock(&ubd_lock);
761 if(ubd_dev->file == NULL){
762 CONFIG_CHUNK(str, size, len, "", 1);
766 CONFIG_CHUNK(str, size, len, ubd_dev->file, 0);
768 if(ubd_dev->cow.file != NULL){
769 CONFIG_CHUNK(str, size, len, ",", 0);
770 CONFIG_CHUNK(str, size, len, ubd_dev->cow.file, 1);
772 else CONFIG_CHUNK(str, size, len, "", 1);
775 mutex_unlock(&ubd_lock);
779 static int ubd_id(char **str, int *start_out, int *end_out)
785 *end_out = MAX_DEV - 1;
789 static int ubd_remove(int n, char **error_out)
794 mutex_lock(&ubd_lock);
796 if(ubd_gendisk[n] == NULL)
799 ubd_dev = &ubd_devs[n];
801 if(ubd_dev->file == NULL)
804 /* you cannot remove a open disk */
806 if(ubd_dev->count > 0)
809 del_gendisk(ubd_gendisk[n]);
810 put_disk(ubd_gendisk[n]);
811 ubd_gendisk[n] = NULL;
813 if(fake_gendisk[n] != NULL){
814 del_gendisk(fake_gendisk[n]);
815 put_disk(fake_gendisk[n]);
816 fake_gendisk[n] = NULL;
819 blk_cleanup_queue(ubd_dev->queue);
820 platform_device_unregister(&ubd_dev->pdev);
821 *ubd_dev = ((struct ubd) DEFAULT_UBD);
824 mutex_unlock(&ubd_lock);
828 /* All these are called by mconsole in process context and without
829 * ubd-specific locks. The structure itself is const except for .list.
831 static struct mc_device ubd_mc = {
832 .list = LIST_HEAD_INIT(ubd_mc.list),
834 .config = ubd_config,
835 .get_config = ubd_get_config,
837 .remove = ubd_remove,
840 static int __init ubd_mc_init(void)
842 mconsole_register_dev(&ubd_mc);
846 __initcall(ubd_mc_init);
848 static int __init ubd0_init(void)
850 struct ubd *ubd_dev = &ubd_devs[0];
852 mutex_lock(&ubd_lock);
853 if(ubd_dev->file == NULL)
854 ubd_dev->file = "root_fs";
855 mutex_unlock(&ubd_lock);
860 __initcall(ubd0_init);
862 /* Used in ubd_init, which is an initcall */
863 static struct platform_driver ubd_driver = {
869 static int __init ubd_init(void)
874 if (register_blkdev(MAJOR_NR, "ubd"))
877 if (fake_major != MAJOR_NR) {
878 char name[sizeof("ubd_nnn\0")];
880 snprintf(name, sizeof(name), "ubd_%d", fake_major);
881 if (register_blkdev(fake_major, "ubd"))
884 platform_driver_register(&ubd_driver);
885 mutex_lock(&ubd_lock);
886 for (i = 0; i < MAX_DEV; i++){
887 err = ubd_add(i, &error);
889 printk(KERN_ERR "Failed to initialize ubd device %d :"
892 mutex_unlock(&ubd_lock);
896 late_initcall(ubd_init);
898 static int __init ubd_driver_init(void){
902 /* Set by CONFIG_BLK_DEV_UBD_SYNC or ubd=sync.*/
903 if(global_openflags.s){
904 printk(KERN_INFO "ubd: Synchronous mode\n");
905 /* Letting ubd=sync be like using ubd#s= instead of ubd#= is
906 * enough. So use anyway the io thread. */
908 stack = alloc_stack(0, 0);
909 io_pid = start_io_thread(stack + PAGE_SIZE - sizeof(void *),
913 "ubd : Failed to start I/O thread (errno = %d) - "
914 "falling back to synchronous I/O\n", -io_pid);
918 err = um_request_irq(UBD_IRQ, thread_fd, IRQ_READ, ubd_intr,
919 IRQF_DISABLED, "ubd", ubd_devs);
921 printk(KERN_ERR "um_request_irq failed - errno = %d\n", -err);
925 device_initcall(ubd_driver_init);
927 static int ubd_open(struct inode *inode, struct file *filp)
929 struct gendisk *disk = inode->i_bdev->bd_disk;
930 struct ubd *ubd_dev = disk->private_data;
933 if(ubd_dev->count == 0){
934 err = ubd_open_dev(ubd_dev);
936 printk(KERN_ERR "%s: Can't open \"%s\": errno = %d\n",
937 disk->disk_name, ubd_dev->file, -err);
942 set_disk_ro(disk, !ubd_dev->openflags.w);
944 /* This should no more be needed. And it didn't work anyway to exclude
945 * read-write remounting of filesystems.*/
946 /*if((filp->f_mode & FMODE_WRITE) && !ubd_dev->openflags.w){
947 if(--ubd_dev->count == 0) ubd_close_dev(ubd_dev);
954 static int ubd_release(struct inode * inode, struct file * file)
956 struct gendisk *disk = inode->i_bdev->bd_disk;
957 struct ubd *ubd_dev = disk->private_data;
959 if(--ubd_dev->count == 0)
960 ubd_close_dev(ubd_dev);
964 static void cowify_bitmap(__u64 io_offset, int length, unsigned long *cow_mask,
965 __u64 *cow_offset, unsigned long *bitmap,
966 __u64 bitmap_offset, unsigned long *bitmap_words,
969 __u64 sector = io_offset >> 9;
970 int i, update_bitmap = 0;
972 for(i = 0; i < length >> 9; i++){
974 ubd_set_bit(i, (unsigned char *) cow_mask);
975 if(ubd_test_bit(sector + i, (unsigned char *) bitmap))
979 ubd_set_bit(sector + i, (unsigned char *) bitmap);
985 *cow_offset = sector / (sizeof(unsigned long) * 8);
987 /* This takes care of the case where we're exactly at the end of the
988 * device, and *cow_offset + 1 is off the end. So, just back it up
989 * by one word. Thanks to Lynn Kerby for the fix and James McMechan
990 * for the original diagnosis.
992 if(*cow_offset == ((bitmap_len + sizeof(unsigned long) - 1) /
993 sizeof(unsigned long) - 1))
996 bitmap_words[0] = bitmap[*cow_offset];
997 bitmap_words[1] = bitmap[*cow_offset + 1];
999 *cow_offset *= sizeof(unsigned long);
1000 *cow_offset += bitmap_offset;
1003 static void cowify_req(struct io_thread_req *req, unsigned long *bitmap,
1004 __u64 bitmap_offset, __u64 bitmap_len)
1006 __u64 sector = req->offset >> 9;
1009 if(req->length > (sizeof(req->sector_mask) * 8) << 9)
1010 panic("Operation too long");
1012 if(req->op == UBD_READ) {
1013 for(i = 0; i < req->length >> 9; i++){
1014 if(ubd_test_bit(sector + i, (unsigned char *) bitmap))
1015 ubd_set_bit(i, (unsigned char *)
1019 else cowify_bitmap(req->offset, req->length, &req->sector_mask,
1020 &req->cow_offset, bitmap, bitmap_offset,
1021 req->bitmap_words, bitmap_len);
1024 /* Called with dev->lock held */
1025 static int prepare_request(struct request *req, struct io_thread_req *io_req)
1027 struct gendisk *disk = req->rq_disk;
1028 struct ubd *ubd_dev = disk->private_data;
1032 /* This should be impossible now */
1033 if((rq_data_dir(req) == WRITE) && !ubd_dev->openflags.w){
1034 printk("Write attempted on readonly ubd device %s\n",
1036 end_request(req, 0);
1040 offset = ((__u64) req->sector) << 9;
1041 len = req->current_nr_sectors << 9;
1044 io_req->fds[0] = (ubd_dev->cow.file != NULL) ? ubd_dev->cow.fd : ubd_dev->fd;
1045 io_req->fds[1] = ubd_dev->fd;
1046 io_req->cow_offset = -1;
1047 io_req->offset = offset;
1048 io_req->length = len;
1050 io_req->sector_mask = 0;
1052 io_req->op = (rq_data_dir(req) == READ) ? UBD_READ : UBD_WRITE;
1053 io_req->offsets[0] = 0;
1054 io_req->offsets[1] = ubd_dev->cow.data_offset;
1055 io_req->buffer = req->buffer;
1056 io_req->sectorsize = 1 << 9;
1058 if(ubd_dev->cow.file != NULL)
1059 cowify_req(io_req, ubd_dev->cow.bitmap, ubd_dev->cow.bitmap_offset,
1060 ubd_dev->cow.bitmap_len);
1065 /* Called with dev->lock held */
1066 static void do_ubd_request(request_queue_t *q)
1068 struct io_thread_req io_req;
1069 struct request *req;
1072 if(thread_fd == -1){
1073 while((req = elv_next_request(q)) != NULL){
1074 err = prepare_request(req, &io_req);
1077 __ubd_finish(req, io_req.error);
1082 struct ubd *dev = q->queuedata;
1083 if(dev->active || (req = elv_next_request(q)) == NULL)
1085 err = prepare_request(req, &io_req);
1088 n = os_write_file(thread_fd, (char *) &io_req,
1090 if(n != sizeof(io_req))
1091 printk("write to io thread failed, "
1092 "errno = %d\n", -n);
1097 static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1099 struct ubd *ubd_dev = bdev->bd_disk->private_data;
1103 geo->cylinders = ubd_dev->size / (128 * 32 * 512);
1107 static int ubd_ioctl(struct inode * inode, struct file * file,
1108 unsigned int cmd, unsigned long arg)
1110 struct ubd *ubd_dev = inode->i_bdev->bd_disk->private_data;
1111 struct hd_driveid ubd_id = {
1118 struct cdrom_volctrl volume;
1119 case HDIO_GET_IDENTITY:
1120 ubd_id.cyls = ubd_dev->size / (128 * 32 * 512);
1121 if(copy_to_user((char __user *) arg, (char *) &ubd_id,
1127 if(copy_from_user(&volume, (char __user *) arg, sizeof(volume)))
1129 volume.channel0 = 255;
1130 volume.channel1 = 255;
1131 volume.channel2 = 255;
1132 volume.channel3 = 255;
1133 if(copy_to_user((char __user *) arg, &volume, sizeof(volume)))
1140 static int path_requires_switch(char *from_cmdline, char *from_cow, char *cow)
1142 struct uml_stat buf1, buf2;
1145 if(from_cmdline == NULL)
1147 if(!strcmp(from_cmdline, from_cow))
1150 err = os_stat_file(from_cmdline, &buf1);
1152 printk("Couldn't stat '%s', err = %d\n", from_cmdline, -err);
1155 err = os_stat_file(from_cow, &buf2);
1157 printk("Couldn't stat '%s', err = %d\n", from_cow, -err);
1160 if((buf1.ust_dev == buf2.ust_dev) && (buf1.ust_ino == buf2.ust_ino))
1163 printk("Backing file mismatch - \"%s\" requested,\n"
1164 "\"%s\" specified in COW header of \"%s\"\n",
1165 from_cmdline, from_cow, cow);
1169 static int backing_file_mismatch(char *file, __u64 size, time_t mtime)
1171 unsigned long modtime;
1172 unsigned long long actual;
1175 err = os_file_modtime(file, &modtime);
1177 printk("Failed to get modification time of backing file "
1178 "\"%s\", err = %d\n", file, -err);
1182 err = os_file_size(file, &actual);
1184 printk("Failed to get size of backing file \"%s\", "
1185 "err = %d\n", file, -err);
1190 /*__u64 can be a long on AMD64 and with %lu GCC complains; so
1192 printk("Size mismatch (%llu vs %llu) of COW header vs backing "
1193 "file\n", (unsigned long long) size, actual);
1196 if(modtime != mtime){
1197 printk("mtime mismatch (%ld vs %ld) of COW header vs backing "
1198 "file\n", mtime, modtime);
1204 int read_cow_bitmap(int fd, void *buf, int offset, int len)
1208 err = os_seek_file(fd, offset);
1212 err = os_read_file(fd, buf, len);
1219 int open_ubd_file(char *file, struct openflags *openflags, int shared,
1220 char **backing_file_out, int *bitmap_offset_out,
1221 unsigned long *bitmap_len_out, int *data_offset_out,
1222 int *create_cow_out)
1225 unsigned long long size;
1226 __u32 version, align;
1228 int fd, err, sectorsize, asked_switch, mode = 0644;
1230 fd = os_open_file(file, *openflags, mode);
1232 if ((fd == -ENOENT) && (create_cow_out != NULL))
1233 *create_cow_out = 1;
1234 if (!openflags->w ||
1235 ((fd != -EROFS) && (fd != -EACCES)))
1238 fd = os_open_file(file, *openflags, mode);
1244 printk("Not locking \"%s\" on the host\n", file);
1246 err = os_lock_file(fd, openflags->w);
1248 printk("Failed to lock '%s', err = %d\n", file, -err);
1253 /* Successful return case! */
1254 if(backing_file_out == NULL)
1257 err = read_cow_header(file_reader, &fd, &version, &backing_file, &mtime,
1258 &size, §orsize, &align, bitmap_offset_out);
1259 if(err && (*backing_file_out != NULL)){
1260 printk("Failed to read COW header from COW file \"%s\", "
1261 "errno = %d\n", file, -err);
1267 asked_switch = path_requires_switch(*backing_file_out, backing_file, file);
1269 /* Allow switching only if no mismatch. */
1270 if (asked_switch && !backing_file_mismatch(*backing_file_out, size, mtime)) {
1271 printk("Switching backing file to '%s'\n", *backing_file_out);
1272 err = write_cow_header(file, fd, *backing_file_out,
1273 sectorsize, align, &size);
1275 printk("Switch failed, errno = %d\n", -err);
1279 *backing_file_out = backing_file;
1280 err = backing_file_mismatch(*backing_file_out, size, mtime);
1285 cow_sizes(version, size, sectorsize, align, *bitmap_offset_out,
1286 bitmap_len_out, data_offset_out);
1294 int create_cow_file(char *cow_file, char *backing_file, struct openflags flags,
1295 int sectorsize, int alignment, int *bitmap_offset_out,
1296 unsigned long *bitmap_len_out, int *data_offset_out)
1301 fd = open_ubd_file(cow_file, &flags, 0, NULL, NULL, NULL, NULL, NULL);
1304 printk("Open of COW file '%s' failed, errno = %d\n", cow_file,
1309 err = init_cow_file(fd, cow_file, backing_file, sectorsize, alignment,
1310 bitmap_offset_out, bitmap_len_out,
1319 static int update_bitmap(struct io_thread_req *req)
1323 if(req->cow_offset == -1)
1326 n = os_seek_file(req->fds[1], req->cow_offset);
1328 printk("do_io - bitmap lseek failed : err = %d\n", -n);
1332 n = os_write_file(req->fds[1], &req->bitmap_words,
1333 sizeof(req->bitmap_words));
1334 if(n != sizeof(req->bitmap_words)){
1335 printk("do_io - bitmap update failed, err = %d fd = %d\n", -n,
1343 void do_io(struct io_thread_req *req)
1347 int n, nsectors, start, end, bit;
1351 nsectors = req->length / req->sectorsize;
1354 bit = ubd_test_bit(start, (unsigned char *) &req->sector_mask);
1356 while((end < nsectors) &&
1357 (ubd_test_bit(end, (unsigned char *)
1358 &req->sector_mask) == bit))
1361 off = req->offset + req->offsets[bit] +
1362 start * req->sectorsize;
1363 len = (end - start) * req->sectorsize;
1364 buf = &req->buffer[start * req->sectorsize];
1366 err = os_seek_file(req->fds[bit], off);
1368 printk("do_io - lseek failed : err = %d\n", -err);
1372 if(req->op == UBD_READ){
1377 n = os_read_file(req->fds[bit], buf, len);
1379 printk("do_io - read failed, err = %d "
1380 "fd = %d\n", -n, req->fds[bit]);
1384 } while((n < len) && (n != 0));
1385 if (n < len) memset(&buf[n], 0, len - n);
1387 n = os_write_file(req->fds[bit], buf, len);
1389 printk("do_io - write failed err = %d "
1390 "fd = %d\n", -n, req->fds[bit]);
1397 } while(start < nsectors);
1399 req->error = update_bitmap(req);
1402 /* Changed in start_io_thread, which is serialized by being called only
1403 * from ubd_init, which is an initcall.
1407 /* Only changed by the io thread. XXX: currently unused. */
1408 static int io_count = 0;
1410 int io_thread(void *arg)
1412 struct io_thread_req req;
1415 ignore_sigwinch_sig();
1417 n = os_read_file(kernel_fd, &req, sizeof(req));
1418 if(n != sizeof(req)){
1420 printk("io_thread - read failed, fd = %d, "
1421 "err = %d\n", kernel_fd, -n);
1423 printk("io_thread - short read, fd = %d, "
1424 "length = %d\n", kernel_fd, n);
1430 n = os_write_file(kernel_fd, &req, sizeof(req));
1431 if(n != sizeof(req))
1432 printk("io_thread - write failed, fd = %d, err = %d\n",