| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 2000 Jeff Dike (jdike@karaya.com) | 
|  | 3 | * Licensed under the GPL | 
|  | 4 | */ | 
|  | 5 |  | 
|  | 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. | 
|  | 17 | * James McMechan | 
|  | 18 | */ | 
|  | 19 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define UBD_SHIFT 4 | 
|  | 21 |  | 
| Jeff Dike | e16f535 | 2007-06-08 13:46:54 -0700 | [diff] [blame] | 22 | #include "linux/kernel.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "linux/module.h" | 
|  | 24 | #include "linux/blkdev.h" | 
| Bartlomiej Zolnierkiewicz | 73855e1 | 2009-04-01 21:42:21 +0200 | [diff] [blame] | 25 | #include "linux/ata.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "linux/hdreg.h" | 
|  | 27 | #include "linux/init.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "linux/cdrom.h" | 
|  | 29 | #include "linux/proc_fs.h" | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 30 | #include "linux/seq_file.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "linux/ctype.h" | 
|  | 32 | #include "linux/capability.h" | 
|  | 33 | #include "linux/mm.h" | 
|  | 34 | #include "linux/vmalloc.h" | 
|  | 35 | #include "linux/blkpg.h" | 
|  | 36 | #include "linux/genhd.h" | 
|  | 37 | #include "linux/spinlock.h" | 
| Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 38 | #include "linux/platform_device.h" | 
| WANG Cong | 23464ff | 2007-10-24 13:07:11 +0200 | [diff] [blame] | 39 | #include "linux/scatterlist.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include "asm/segment.h" | 
|  | 41 | #include "asm/uaccess.h" | 
|  | 42 | #include "asm/irq.h" | 
|  | 43 | #include "asm/types.h" | 
|  | 44 | #include "asm/tlbflush.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include "mem_user.h" | 
|  | 46 | #include "kern_util.h" | 
|  | 47 | #include "kern.h" | 
|  | 48 | #include "mconsole_kern.h" | 
|  | 49 | #include "init.h" | 
|  | 50 | #include "irq_user.h" | 
|  | 51 | #include "irq_kern.h" | 
|  | 52 | #include "ubd_user.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include "os.h" | 
|  | 54 | #include "mem.h" | 
|  | 55 | #include "mem_kern.h" | 
|  | 56 | #include "cow.h" | 
|  | 57 |  | 
| Jeff Dike | 7b9014c | 2005-05-20 13:59:11 -0700 | [diff] [blame] | 58 | enum ubd_req { UBD_READ, UBD_WRITE }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 |  | 
|  | 60 | struct io_thread_req { | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 61 | struct request *req; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 62 | enum ubd_req op; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | int fds[2]; | 
|  | 64 | unsigned long offsets[2]; | 
|  | 65 | unsigned long long offset; | 
|  | 66 | unsigned long length; | 
|  | 67 | char *buffer; | 
|  | 68 | int sectorsize; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 69 | unsigned long sector_mask; | 
|  | 70 | unsigned long long cow_offset; | 
|  | 71 | unsigned long bitmap_words[2]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | int error; | 
|  | 73 | }; | 
|  | 74 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 75 | static inline int ubd_test_bit(__u64 bit, unsigned char *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { | 
|  | 77 | __u64 n; | 
|  | 78 | int bits, off; | 
|  | 79 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 80 | bits = sizeof(data[0]) * 8; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | n = bit / bits; | 
|  | 82 | off = bit % bits; | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 83 | return (data[n] & (1 << off)) != 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } | 
|  | 85 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 86 | static inline void ubd_set_bit(__u64 bit, unsigned char *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { | 
|  | 88 | __u64 n; | 
|  | 89 | int bits, off; | 
|  | 90 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 91 | bits = sizeof(data[0]) * 8; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | n = bit / bits; | 
|  | 93 | off = bit % bits; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 94 | data[n] |= (1 << off); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } | 
|  | 96 | /*End stuff from ubd_user.h*/ | 
|  | 97 |  | 
|  | 98 | #define DRIVER_NAME "uml-blkdev" | 
|  | 99 |  | 
| Paolo 'Blaisorblade' Giarrusso | d7fb2c3 | 2006-10-30 22:07:07 -0800 | [diff] [blame] | 100 | static DEFINE_MUTEX(ubd_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 |  | 
| Al Viro | a625c99 | 2008-03-02 09:16:26 -0500 | [diff] [blame] | 102 | static int ubd_open(struct block_device *bdev, fmode_t mode); | 
|  | 103 | static int ubd_release(struct gendisk *disk, fmode_t mode); | 
|  | 104 | static int ubd_ioctl(struct block_device *bdev, fmode_t mode, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | unsigned int cmd, unsigned long arg); | 
| Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 106 | static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 |  | 
| Paolo 'Blaisorblade' Giarrusso | 97d88ac | 2006-10-30 22:07:03 -0800 | [diff] [blame] | 108 | #define MAX_DEV (16) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 |  | 
| Alexey Dobriyan | 83d5cde | 2009-09-21 17:01:13 -0700 | [diff] [blame] | 110 | static const struct block_device_operations ubd_blops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | .owner		= THIS_MODULE, | 
| Al Viro | a625c99 | 2008-03-02 09:16:26 -0500 | [diff] [blame] | 112 | .open		= ubd_open, | 
|  | 113 | .release	= ubd_release, | 
|  | 114 | .ioctl		= ubd_ioctl, | 
| Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 115 | .getgeo		= ubd_getgeo, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | }; | 
|  | 117 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | /* Protected by ubd_lock */ | 
| Christoph Hellwig | 792dd4f | 2009-03-31 15:23:39 -0700 | [diff] [blame] | 119 | static int fake_major = UBD_MAJOR; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | static struct gendisk *ubd_gendisk[MAX_DEV]; | 
|  | 121 | static struct gendisk *fake_gendisk[MAX_DEV]; | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 122 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | #ifdef CONFIG_BLK_DEV_UBD_SYNC | 
|  | 124 | #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 1, .c = 0, \ | 
|  | 125 | .cl = 1 }) | 
|  | 126 | #else | 
|  | 127 | #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 0, .c = 0, \ | 
|  | 128 | .cl = 1 }) | 
|  | 129 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | static struct openflags global_openflags = OPEN_FLAGS; | 
|  | 131 |  | 
|  | 132 | struct cow { | 
| Paolo 'Blaisorblade' Giarrusso | 2a9d32f | 2006-10-30 22:07:04 -0800 | [diff] [blame] | 133 | /* backing file name */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | char *file; | 
| Paolo 'Blaisorblade' Giarrusso | 2a9d32f | 2006-10-30 22:07:04 -0800 | [diff] [blame] | 135 | /* backing file fd */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | int fd; | 
|  | 137 | unsigned long *bitmap; | 
|  | 138 | unsigned long bitmap_len; | 
|  | 139 | int bitmap_offset; | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 140 | int data_offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | }; | 
|  | 142 |  | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 143 | #define MAX_SG 64 | 
|  | 144 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | struct ubd { | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 146 | struct list_head restart; | 
| Paolo 'Blaisorblade' Giarrusso | 2a9d32f | 2006-10-30 22:07:04 -0800 | [diff] [blame] | 147 | /* name (and fd, below) of the file opened for writing, either the | 
|  | 148 | * backing or the cow file. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | char *file; | 
|  | 150 | int count; | 
|  | 151 | int fd; | 
|  | 152 | __u64 size; | 
|  | 153 | struct openflags boot_openflags; | 
|  | 154 | struct openflags openflags; | 
| Paolo 'Blaisorblade' Giarrusso | 84e945e | 2006-10-30 22:07:10 -0800 | [diff] [blame] | 155 | unsigned shared:1; | 
|  | 156 | unsigned no_cow:1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | struct cow cow; | 
|  | 158 | struct platform_device pdev; | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 159 | struct request_queue *queue; | 
|  | 160 | spinlock_t lock; | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 161 | struct scatterlist sg[MAX_SG]; | 
|  | 162 | struct request *request; | 
|  | 163 | int start_sg, end_sg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | }; | 
|  | 165 |  | 
|  | 166 | #define DEFAULT_COW { \ | 
|  | 167 | .file =			NULL, \ | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 168 | .fd =			-1,	\ | 
|  | 169 | .bitmap =		NULL, \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | .bitmap_offset =	0, \ | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 171 | .data_offset =		0, \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } | 
|  | 173 |  | 
|  | 174 | #define DEFAULT_UBD { \ | 
|  | 175 | .file = 		NULL, \ | 
|  | 176 | .count =		0, \ | 
|  | 177 | .fd =			-1, \ | 
|  | 178 | .size =			-1, \ | 
|  | 179 | .boot_openflags =	OPEN_FLAGS, \ | 
|  | 180 | .openflags =		OPEN_FLAGS, \ | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 181 | .no_cow =               0, \ | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 182 | .shared =		0, \ | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 183 | .cow =			DEFAULT_COW, \ | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 184 | .lock =			SPIN_LOCK_UNLOCKED,	\ | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 185 | .request =		NULL, \ | 
|  | 186 | .start_sg =		0, \ | 
|  | 187 | .end_sg =		0, \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } | 
|  | 189 |  | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 190 | /* Protected by ubd_lock */ | 
| WANG Cong | 5dc62b1 | 2008-04-28 02:13:58 -0700 | [diff] [blame] | 191 | static struct ubd ubd_devs[MAX_DEV] = { [0 ... MAX_DEV - 1] = DEFAULT_UBD }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | /* Only changed by fake_ide_setup which is a setup */ | 
|  | 194 | static int fake_ide = 0; | 
|  | 195 | static struct proc_dir_entry *proc_ide_root = NULL; | 
|  | 196 | static struct proc_dir_entry *proc_ide = NULL; | 
|  | 197 |  | 
|  | 198 | static void make_proc_ide(void) | 
|  | 199 | { | 
|  | 200 | proc_ide_root = proc_mkdir("ide", NULL); | 
|  | 201 | proc_ide = proc_mkdir("ide0", proc_ide_root); | 
|  | 202 | } | 
|  | 203 |  | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 204 | static int fake_ide_media_proc_show(struct seq_file *m, void *v) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 206 | seq_puts(m, "disk\n"); | 
|  | 207 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } | 
|  | 209 |  | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 210 | static int fake_ide_media_proc_open(struct inode *inode, struct file *file) | 
|  | 211 | { | 
|  | 212 | return single_open(file, fake_ide_media_proc_show, NULL); | 
|  | 213 | } | 
|  | 214 |  | 
|  | 215 | static const struct file_operations fake_ide_media_proc_fops = { | 
|  | 216 | .owner		= THIS_MODULE, | 
|  | 217 | .open		= fake_ide_media_proc_open, | 
|  | 218 | .read		= seq_read, | 
|  | 219 | .llseek		= seq_lseek, | 
|  | 220 | .release	= single_release, | 
|  | 221 | }; | 
|  | 222 |  | 
| WANG Cong | c0a9290 | 2008-02-04 22:30:41 -0800 | [diff] [blame] | 223 | static void make_ide_entries(const char *dev_name) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { | 
|  | 225 | struct proc_dir_entry *dir, *ent; | 
|  | 226 | char name[64]; | 
|  | 227 |  | 
|  | 228 | if(proc_ide_root == NULL) make_proc_ide(); | 
|  | 229 |  | 
|  | 230 | dir = proc_mkdir(dev_name, proc_ide); | 
|  | 231 | if(!dir) return; | 
|  | 232 |  | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 233 | ent = proc_create("media", S_IRUGO, dir, &fake_ide_media_proc_fops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | if(!ent) return; | 
| WANG Cong | c0a9290 | 2008-02-04 22:30:41 -0800 | [diff] [blame] | 235 | snprintf(name, sizeof(name), "ide0/%s", dev_name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | proc_symlink(dev_name, proc_ide_root, name); | 
|  | 237 | } | 
|  | 238 |  | 
|  | 239 | static int fake_ide_setup(char *str) | 
|  | 240 | { | 
|  | 241 | fake_ide = 1; | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 242 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } | 
|  | 244 |  | 
|  | 245 | __setup("fake_ide", fake_ide_setup); | 
|  | 246 |  | 
|  | 247 | __uml_help(fake_ide_setup, | 
|  | 248 | "fake_ide\n" | 
|  | 249 | "    Create ide0 entries that map onto ubd devices.\n\n" | 
|  | 250 | ); | 
|  | 251 |  | 
|  | 252 | static int parse_unit(char **ptr) | 
|  | 253 | { | 
|  | 254 | char *str = *ptr, *end; | 
|  | 255 | int n = -1; | 
|  | 256 |  | 
|  | 257 | if(isdigit(*str)) { | 
|  | 258 | n = simple_strtoul(str, &end, 0); | 
|  | 259 | if(end == str) | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 260 | return -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | *ptr = end; | 
|  | 262 | } | 
| Paolo 'Blaisorblade' Giarrusso | 97d88ac | 2006-10-30 22:07:03 -0800 | [diff] [blame] | 263 | else if (('a' <= *str) && (*str <= 'z')) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | n = *str - 'a'; | 
|  | 265 | str++; | 
|  | 266 | *ptr = str; | 
|  | 267 | } | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 268 | return n; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } | 
|  | 270 |  | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 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. | 
|  | 274 | */ | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 275 | static int ubd_setup_common(char *str, int *index_out, char **error_out) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 277 | struct ubd *ubd_dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | struct openflags flags = global_openflags; | 
|  | 279 | char *backing_file; | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 280 | int n, err = 0, i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 |  | 
|  | 282 | if(index_out) *index_out = -1; | 
|  | 283 | n = *str; | 
|  | 284 | if(n == '='){ | 
|  | 285 | char *end; | 
|  | 286 | int major; | 
|  | 287 |  | 
|  | 288 | str++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | if(!strcmp(str, "sync")){ | 
|  | 290 | global_openflags = of_sync(global_openflags); | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 291 | goto out1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } | 
|  | 293 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 294 | err = -EINVAL; | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 295 | major = simple_strtoul(str, &end, 0); | 
|  | 296 | if((*end != '\0') || (end == str)){ | 
|  | 297 | *error_out = "Didn't parse major number"; | 
|  | 298 | goto out1; | 
|  | 299 | } | 
|  | 300 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 301 | mutex_lock(&ubd_lock); | 
| Christoph Hellwig | 792dd4f | 2009-03-31 15:23:39 -0700 | [diff] [blame] | 302 | if (fake_major != UBD_MAJOR) { | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 303 | *error_out = "Can't assign a fake major twice"; | 
|  | 304 | goto out1; | 
|  | 305 | } | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 306 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 307 | fake_major = major; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 |  | 
|  | 309 | printk(KERN_INFO "Setting extra ubd major number to %d\n", | 
|  | 310 | major); | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 311 | err = 0; | 
|  | 312 | out1: | 
|  | 313 | mutex_unlock(&ubd_lock); | 
|  | 314 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } | 
|  | 316 |  | 
|  | 317 | n = parse_unit(&str); | 
|  | 318 | if(n < 0){ | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 319 | *error_out = "Couldn't parse device number"; | 
|  | 320 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } | 
|  | 322 | if(n >= MAX_DEV){ | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 323 | *error_out = "Device number out of range"; | 
|  | 324 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } | 
|  | 326 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 327 | err = -EBUSY; | 
| Paolo 'Blaisorblade' Giarrusso | d7fb2c3 | 2006-10-30 22:07:07 -0800 | [diff] [blame] | 328 | mutex_lock(&ubd_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 330 | ubd_dev = &ubd_devs[n]; | 
|  | 331 | if(ubd_dev->file != NULL){ | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 332 | *error_out = "Device is already configured"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | goto out; | 
|  | 334 | } | 
|  | 335 |  | 
|  | 336 | if (index_out) | 
|  | 337 | *index_out = n; | 
|  | 338 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 339 | err = -EINVAL; | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 340 | for (i = 0; i < sizeof("rscd="); i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | switch (*str) { | 
|  | 342 | case 'r': | 
|  | 343 | flags.w = 0; | 
|  | 344 | break; | 
|  | 345 | case 's': | 
|  | 346 | flags.s = 1; | 
|  | 347 | break; | 
|  | 348 | case 'd': | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 349 | ubd_dev->no_cow = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | break; | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 351 | case 'c': | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 352 | ubd_dev->shared = 1; | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 353 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | case '=': | 
|  | 355 | str++; | 
|  | 356 | goto break_loop; | 
|  | 357 | default: | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 358 | *error_out = "Expected '=' or flag letter " | 
|  | 359 | "(r, s, c, or d)"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | goto out; | 
|  | 361 | } | 
|  | 362 | str++; | 
|  | 363 | } | 
|  | 364 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 365 | if (*str == '=') | 
|  | 366 | *error_out = "Too many flags specified"; | 
|  | 367 | else | 
|  | 368 | *error_out = "Missing '='"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | goto out; | 
|  | 370 |  | 
|  | 371 | break_loop: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | backing_file = strchr(str, ','); | 
|  | 373 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 374 | if (backing_file == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | backing_file = strchr(str, ':'); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 377 | if(backing_file != NULL){ | 
|  | 378 | if(ubd_dev->no_cow){ | 
|  | 379 | *error_out = "Can't specify both 'd' and a cow file"; | 
|  | 380 | goto out; | 
|  | 381 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | else { | 
|  | 383 | *backing_file = '\0'; | 
|  | 384 | backing_file++; | 
|  | 385 | } | 
|  | 386 | } | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 387 | err = 0; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 388 | ubd_dev->file = str; | 
|  | 389 | ubd_dev->cow.file = backing_file; | 
|  | 390 | ubd_dev->boot_openflags = flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | out: | 
| Paolo 'Blaisorblade' Giarrusso | d7fb2c3 | 2006-10-30 22:07:07 -0800 | [diff] [blame] | 392 | mutex_unlock(&ubd_lock); | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 393 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } | 
|  | 395 |  | 
|  | 396 | static int ubd_setup(char *str) | 
|  | 397 | { | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 398 | char *error; | 
|  | 399 | int err; | 
|  | 400 |  | 
|  | 401 | err = ubd_setup_common(str, NULL, &error); | 
|  | 402 | if(err) | 
|  | 403 | printk(KERN_ERR "Failed to initialize device with \"%s\" : " | 
|  | 404 | "%s\n", str, error); | 
|  | 405 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | } | 
|  | 407 |  | 
|  | 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" | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 417 | "    When using only one filename, UML will detect whether to treat it like\n" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | "    a COW file or a backing file. To override this detection, add the 'd'\n" | 
|  | 419 | "    flag:\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" | 
| Jeff Dike | 20ede45 | 2008-02-04 22:30:37 -0800 | [diff] [blame] | 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" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | ); | 
|  | 433 |  | 
| Jeff Dike | 8299ca5 | 2008-02-04 22:30:48 -0800 | [diff] [blame] | 434 | static int udb_setup(char *str) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { | 
|  | 436 | printk("udb%s specified on command line is almost certainly a ubd -> " | 
|  | 437 | "udb TYPO\n", str); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 438 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | } | 
|  | 440 |  | 
|  | 441 | __setup("udb", udb_setup); | 
|  | 442 | __uml_help(udb_setup, | 
|  | 443 | "udb\n" | 
| Jeff Dike | 0894e27 | 2005-05-28 15:51:55 -0700 | [diff] [blame] | 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" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | "    in the boot output.\n\n" | 
|  | 448 | ); | 
|  | 449 |  | 
| Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 450 | static void do_ubd_request(struct request_queue * q); | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 451 |  | 
|  | 452 | /* Only changed by ubd_init, which is an initcall. */ | 
| WANG Cong | 5dc62b1 | 2008-04-28 02:13:58 -0700 | [diff] [blame] | 453 | static int thread_fd = -1; | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 454 | static LIST_HEAD(restart); | 
|  | 455 |  | 
| Paolo 'Blaisorblade' Giarrusso | 2fe30a3 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 456 | /* XXX - move this inside ubd_intr. */ | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 457 | /* Called without dev->lock held, and only in interrupt context. */ | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 458 | static void ubd_handler(void) | 
|  | 459 | { | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 460 | struct io_thread_req *req; | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 461 | struct ubd *ubd; | 
|  | 462 | struct list_head *list, *next_ele; | 
|  | 463 | unsigned long flags; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 464 | int n; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 |  | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 466 | while(1){ | 
| Jeff Dike | a6ea4cc | 2007-05-06 14:51:43 -0700 | [diff] [blame] | 467 | n = os_read_file(thread_fd, &req, | 
|  | 468 | sizeof(struct io_thread_req *)); | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 469 | if(n != sizeof(req)){ | 
|  | 470 | if(n == -EAGAIN) | 
|  | 471 | break; | 
|  | 472 | printk(KERN_ERR "spurious interrupt in ubd_handler, " | 
|  | 473 | "err = %d\n", -n); | 
|  | 474 | return; | 
|  | 475 | } | 
|  | 476 |  | 
| Tejun Heo | 4d6c84d | 2009-04-28 13:06:09 +0900 | [diff] [blame] | 477 | blk_end_request(req->req, 0, req->length); | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 478 | kfree(req); | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 479 | } | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 480 | reactivate_fd(thread_fd, UBD_IRQ); | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 481 |  | 
|  | 482 | list_for_each_safe(list, next_ele, &restart){ | 
|  | 483 | ubd = container_of(list, struct ubd, restart); | 
|  | 484 | list_del_init(&ubd->restart); | 
|  | 485 | spin_lock_irqsave(&ubd->lock, flags); | 
|  | 486 | do_ubd_request(ubd->queue); | 
|  | 487 | spin_unlock_irqrestore(&ubd->lock, flags); | 
|  | 488 | } | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 489 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 |  | 
| Al Viro | 7bea96f | 2006-10-08 22:49:34 +0100 | [diff] [blame] | 491 | static irqreturn_t ubd_intr(int irq, void *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 493 | ubd_handler(); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 494 | return IRQ_HANDLED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | } | 
|  | 496 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 497 | /* Only changed by ubd_init, which is an initcall. */ | 
|  | 498 | static int io_pid = -1; | 
|  | 499 |  | 
| WANG Cong | 5dc62b1 | 2008-04-28 02:13:58 -0700 | [diff] [blame] | 500 | static void kill_io_thread(void) | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 501 | { | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 502 | if(io_pid != -1) | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 503 | os_kill_process(io_pid, 1); | 
|  | 504 | } | 
|  | 505 |  | 
|  | 506 | __uml_exitcall(kill_io_thread); | 
|  | 507 |  | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 508 | static inline int ubd_file_size(struct ubd *ubd_dev, __u64 *size_out) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | { | 
|  | 510 | char *file; | 
|  | 511 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 512 | file = ubd_dev->cow.file ? ubd_dev->cow.file : ubd_dev->file; | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 513 | return os_file_size(file, size_out); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | } | 
|  | 515 |  | 
| WANG Cong | 5dc62b1 | 2008-04-28 02:13:58 -0700 | [diff] [blame] | 516 | static int read_cow_bitmap(int fd, void *buf, int offset, int len) | 
|  | 517 | { | 
|  | 518 | int err; | 
|  | 519 |  | 
|  | 520 | err = os_seek_file(fd, offset); | 
|  | 521 | if (err < 0) | 
|  | 522 | return err; | 
|  | 523 |  | 
|  | 524 | err = os_read_file(fd, buf, len); | 
|  | 525 | if (err < 0) | 
|  | 526 | return err; | 
|  | 527 |  | 
|  | 528 | return 0; | 
|  | 529 | } | 
|  | 530 |  | 
|  | 531 | static int backing_file_mismatch(char *file, __u64 size, time_t mtime) | 
|  | 532 | { | 
|  | 533 | unsigned long modtime; | 
|  | 534 | unsigned long long actual; | 
|  | 535 | int err; | 
|  | 536 |  | 
|  | 537 | err = os_file_modtime(file, &modtime); | 
|  | 538 | if (err < 0) { | 
|  | 539 | printk(KERN_ERR "Failed to get modification time of backing " | 
|  | 540 | "file \"%s\", err = %d\n", file, -err); | 
|  | 541 | return err; | 
|  | 542 | } | 
|  | 543 |  | 
|  | 544 | err = os_file_size(file, &actual); | 
|  | 545 | if (err < 0) { | 
|  | 546 | printk(KERN_ERR "Failed to get size of backing file \"%s\", " | 
|  | 547 | "err = %d\n", file, -err); | 
|  | 548 | return err; | 
|  | 549 | } | 
|  | 550 |  | 
|  | 551 | if (actual != size) { | 
|  | 552 | /*__u64 can be a long on AMD64 and with %lu GCC complains; so | 
|  | 553 | * the typecast.*/ | 
|  | 554 | printk(KERN_ERR "Size mismatch (%llu vs %llu) of COW header " | 
|  | 555 | "vs backing file\n", (unsigned long long) size, actual); | 
|  | 556 | return -EINVAL; | 
|  | 557 | } | 
|  | 558 | if (modtime != mtime) { | 
|  | 559 | printk(KERN_ERR "mtime mismatch (%ld vs %ld) of COW header vs " | 
|  | 560 | "backing file\n", mtime, modtime); | 
|  | 561 | return -EINVAL; | 
|  | 562 | } | 
|  | 563 | return 0; | 
|  | 564 | } | 
|  | 565 |  | 
|  | 566 | static int path_requires_switch(char *from_cmdline, char *from_cow, char *cow) | 
|  | 567 | { | 
|  | 568 | struct uml_stat buf1, buf2; | 
|  | 569 | int err; | 
|  | 570 |  | 
|  | 571 | if (from_cmdline == NULL) | 
|  | 572 | return 0; | 
|  | 573 | if (!strcmp(from_cmdline, from_cow)) | 
|  | 574 | return 0; | 
|  | 575 |  | 
|  | 576 | err = os_stat_file(from_cmdline, &buf1); | 
|  | 577 | if (err < 0) { | 
|  | 578 | printk(KERN_ERR "Couldn't stat '%s', err = %d\n", from_cmdline, | 
|  | 579 | -err); | 
|  | 580 | return 0; | 
|  | 581 | } | 
|  | 582 | err = os_stat_file(from_cow, &buf2); | 
|  | 583 | if (err < 0) { | 
|  | 584 | printk(KERN_ERR "Couldn't stat '%s', err = %d\n", from_cow, | 
|  | 585 | -err); | 
|  | 586 | return 1; | 
|  | 587 | } | 
|  | 588 | if ((buf1.ust_dev == buf2.ust_dev) && (buf1.ust_ino == buf2.ust_ino)) | 
|  | 589 | return 0; | 
|  | 590 |  | 
|  | 591 | printk(KERN_ERR "Backing file mismatch - \"%s\" requested, " | 
|  | 592 | "\"%s\" specified in COW header of \"%s\"\n", | 
|  | 593 | from_cmdline, from_cow, cow); | 
|  | 594 | return 1; | 
|  | 595 | } | 
|  | 596 |  | 
|  | 597 | static int open_ubd_file(char *file, struct openflags *openflags, int shared, | 
|  | 598 | char **backing_file_out, int *bitmap_offset_out, | 
|  | 599 | unsigned long *bitmap_len_out, int *data_offset_out, | 
|  | 600 | int *create_cow_out) | 
|  | 601 | { | 
|  | 602 | time_t mtime; | 
|  | 603 | unsigned long long size; | 
|  | 604 | __u32 version, align; | 
|  | 605 | char *backing_file; | 
|  | 606 | int fd, err, sectorsize, asked_switch, mode = 0644; | 
|  | 607 |  | 
|  | 608 | fd = os_open_file(file, *openflags, mode); | 
|  | 609 | if (fd < 0) { | 
|  | 610 | if ((fd == -ENOENT) && (create_cow_out != NULL)) | 
|  | 611 | *create_cow_out = 1; | 
|  | 612 | if (!openflags->w || | 
|  | 613 | ((fd != -EROFS) && (fd != -EACCES))) | 
|  | 614 | return fd; | 
|  | 615 | openflags->w = 0; | 
|  | 616 | fd = os_open_file(file, *openflags, mode); | 
|  | 617 | if (fd < 0) | 
|  | 618 | return fd; | 
|  | 619 | } | 
|  | 620 |  | 
|  | 621 | if (shared) | 
|  | 622 | printk(KERN_INFO "Not locking \"%s\" on the host\n", file); | 
|  | 623 | else { | 
|  | 624 | err = os_lock_file(fd, openflags->w); | 
|  | 625 | if (err < 0) { | 
|  | 626 | printk(KERN_ERR "Failed to lock '%s', err = %d\n", | 
|  | 627 | file, -err); | 
|  | 628 | goto out_close; | 
|  | 629 | } | 
|  | 630 | } | 
|  | 631 |  | 
|  | 632 | /* Successful return case! */ | 
|  | 633 | if (backing_file_out == NULL) | 
|  | 634 | return fd; | 
|  | 635 |  | 
|  | 636 | err = read_cow_header(file_reader, &fd, &version, &backing_file, &mtime, | 
|  | 637 | &size, §orsize, &align, bitmap_offset_out); | 
|  | 638 | if (err && (*backing_file_out != NULL)) { | 
|  | 639 | printk(KERN_ERR "Failed to read COW header from COW file " | 
|  | 640 | "\"%s\", errno = %d\n", file, -err); | 
|  | 641 | goto out_close; | 
|  | 642 | } | 
|  | 643 | if (err) | 
|  | 644 | return fd; | 
|  | 645 |  | 
|  | 646 | asked_switch = path_requires_switch(*backing_file_out, backing_file, | 
|  | 647 | file); | 
|  | 648 |  | 
|  | 649 | /* Allow switching only if no mismatch. */ | 
|  | 650 | if (asked_switch && !backing_file_mismatch(*backing_file_out, size, | 
|  | 651 | mtime)) { | 
|  | 652 | printk(KERN_ERR "Switching backing file to '%s'\n", | 
|  | 653 | *backing_file_out); | 
|  | 654 | err = write_cow_header(file, fd, *backing_file_out, | 
|  | 655 | sectorsize, align, &size); | 
|  | 656 | if (err) { | 
|  | 657 | printk(KERN_ERR "Switch failed, errno = %d\n", -err); | 
|  | 658 | goto out_close; | 
|  | 659 | } | 
|  | 660 | } else { | 
|  | 661 | *backing_file_out = backing_file; | 
|  | 662 | err = backing_file_mismatch(*backing_file_out, size, mtime); | 
|  | 663 | if (err) | 
|  | 664 | goto out_close; | 
|  | 665 | } | 
|  | 666 |  | 
|  | 667 | cow_sizes(version, size, sectorsize, align, *bitmap_offset_out, | 
|  | 668 | bitmap_len_out, data_offset_out); | 
|  | 669 |  | 
|  | 670 | return fd; | 
|  | 671 | out_close: | 
|  | 672 | os_close_file(fd); | 
|  | 673 | return err; | 
|  | 674 | } | 
|  | 675 |  | 
|  | 676 | static int create_cow_file(char *cow_file, char *backing_file, | 
|  | 677 | struct openflags flags, | 
|  | 678 | int sectorsize, int alignment, int *bitmap_offset_out, | 
|  | 679 | unsigned long *bitmap_len_out, int *data_offset_out) | 
|  | 680 | { | 
|  | 681 | int err, fd; | 
|  | 682 |  | 
|  | 683 | flags.c = 1; | 
|  | 684 | fd = open_ubd_file(cow_file, &flags, 0, NULL, NULL, NULL, NULL, NULL); | 
|  | 685 | if (fd < 0) { | 
|  | 686 | err = fd; | 
|  | 687 | printk(KERN_ERR "Open of COW file '%s' failed, errno = %d\n", | 
|  | 688 | cow_file, -err); | 
|  | 689 | goto out; | 
|  | 690 | } | 
|  | 691 |  | 
|  | 692 | err = init_cow_file(fd, cow_file, backing_file, sectorsize, alignment, | 
|  | 693 | bitmap_offset_out, bitmap_len_out, | 
|  | 694 | data_offset_out); | 
|  | 695 | if (!err) | 
|  | 696 | return fd; | 
|  | 697 | os_close_file(fd); | 
|  | 698 | out: | 
|  | 699 | return err; | 
|  | 700 | } | 
|  | 701 |  | 
| Paolo 'Blaisorblade' Giarrusso | 5f75a4f | 2006-10-30 22:07:06 -0800 | [diff] [blame] | 702 | static void ubd_close_dev(struct ubd *ubd_dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | { | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 704 | os_close_file(ubd_dev->fd); | 
|  | 705 | if(ubd_dev->cow.file == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | return; | 
|  | 707 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 708 | os_close_file(ubd_dev->cow.fd); | 
|  | 709 | vfree(ubd_dev->cow.bitmap); | 
|  | 710 | ubd_dev->cow.bitmap = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } | 
|  | 712 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 713 | static int ubd_open_dev(struct ubd *ubd_dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | { | 
|  | 715 | struct openflags flags; | 
|  | 716 | char **back_ptr; | 
|  | 717 | int err, create_cow, *create_ptr; | 
| Paolo 'Blaisorblade' Giarrusso | 0bf16bf | 2006-10-30 22:07:11 -0800 | [diff] [blame] | 718 | int fd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 720 | ubd_dev->openflags = ubd_dev->boot_openflags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | create_cow = 0; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 722 | create_ptr = (ubd_dev->cow.file != NULL) ? &create_cow : NULL; | 
|  | 723 | back_ptr = ubd_dev->no_cow ? NULL : &ubd_dev->cow.file; | 
| Paolo 'Blaisorblade' Giarrusso | 0bf16bf | 2006-10-30 22:07:11 -0800 | [diff] [blame] | 724 |  | 
|  | 725 | fd = open_ubd_file(ubd_dev->file, &ubd_dev->openflags, ubd_dev->shared, | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 726 | back_ptr, &ubd_dev->cow.bitmap_offset, | 
|  | 727 | &ubd_dev->cow.bitmap_len, &ubd_dev->cow.data_offset, | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 728 | create_ptr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 |  | 
| Paolo 'Blaisorblade' Giarrusso | 0bf16bf | 2006-10-30 22:07:11 -0800 | [diff] [blame] | 730 | if((fd == -ENOENT) && create_cow){ | 
|  | 731 | fd = create_cow_file(ubd_dev->file, ubd_dev->cow.file, | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 732 | ubd_dev->openflags, 1 << 9, PAGE_SIZE, | 
|  | 733 | &ubd_dev->cow.bitmap_offset, | 
|  | 734 | &ubd_dev->cow.bitmap_len, | 
|  | 735 | &ubd_dev->cow.data_offset); | 
| Paolo 'Blaisorblade' Giarrusso | 0bf16bf | 2006-10-30 22:07:11 -0800 | [diff] [blame] | 736 | if(fd >= 0){ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | printk(KERN_INFO "Creating \"%s\" as COW file for " | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 738 | "\"%s\"\n", ubd_dev->file, ubd_dev->cow.file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | } | 
|  | 740 | } | 
|  | 741 |  | 
| Paolo 'Blaisorblade' Giarrusso | 0bf16bf | 2006-10-30 22:07:11 -0800 | [diff] [blame] | 742 | if(fd < 0){ | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 743 | printk("Failed to open '%s', errno = %d\n", ubd_dev->file, | 
| Paolo 'Blaisorblade' Giarrusso | 0bf16bf | 2006-10-30 22:07:11 -0800 | [diff] [blame] | 744 | -fd); | 
|  | 745 | return fd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | } | 
| Paolo 'Blaisorblade' Giarrusso | 0bf16bf | 2006-10-30 22:07:11 -0800 | [diff] [blame] | 747 | ubd_dev->fd = fd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 749 | if(ubd_dev->cow.file != NULL){ | 
| Martin K. Petersen | 086fa5f | 2010-02-26 00:20:38 -0500 | [diff] [blame] | 750 | blk_queue_max_hw_sectors(ubd_dev->queue, 8 * sizeof(long)); | 
| Jeff Dike | f4768ff | 2007-08-22 14:01:53 -0700 | [diff] [blame] | 751 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | err = -ENOMEM; | 
| Jesper Juhl | da2486b | 2007-10-16 01:27:19 -0700 | [diff] [blame] | 753 | ubd_dev->cow.bitmap = vmalloc(ubd_dev->cow.bitmap_len); | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 754 | if(ubd_dev->cow.bitmap == NULL){ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | printk(KERN_ERR "Failed to vmalloc COW bitmap\n"); | 
|  | 756 | goto error; | 
|  | 757 | } | 
|  | 758 | flush_tlb_kernel_vm(); | 
|  | 759 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 760 | err = read_cow_bitmap(ubd_dev->fd, ubd_dev->cow.bitmap, | 
|  | 761 | ubd_dev->cow.bitmap_offset, | 
|  | 762 | ubd_dev->cow.bitmap_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | if(err < 0) | 
|  | 764 | goto error; | 
|  | 765 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 766 | flags = ubd_dev->openflags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | flags.w = 0; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 768 | err = open_ubd_file(ubd_dev->cow.file, &flags, ubd_dev->shared, NULL, | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 769 | NULL, NULL, NULL, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | if(err < 0) goto error; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 771 | ubd_dev->cow.fd = err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 773 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | error: | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 775 | os_close_file(ubd_dev->fd); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 776 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | } | 
|  | 778 |  | 
| Jeff Dike | 2e3f525 | 2007-05-06 14:51:29 -0700 | [diff] [blame] | 779 | static void ubd_device_release(struct device *dev) | 
|  | 780 | { | 
| Greg Kroah-Hartman | 8691b97 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 781 | struct ubd *ubd_dev = dev_get_drvdata(dev); | 
| Jeff Dike | 2e3f525 | 2007-05-06 14:51:29 -0700 | [diff] [blame] | 782 |  | 
|  | 783 | blk_cleanup_queue(ubd_dev->queue); | 
|  | 784 | *ubd_dev = ((struct ubd) DEFAULT_UBD); | 
|  | 785 | } | 
|  | 786 |  | 
| Paolo 'Blaisorblade' Giarrusso | 5f75a4f | 2006-10-30 22:07:06 -0800 | [diff] [blame] | 787 | static int ubd_disk_register(int major, u64 size, int unit, | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 788 | struct gendisk **disk_out) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | { | 
|  | 790 | struct gendisk *disk; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 |  | 
|  | 792 | disk = alloc_disk(1 << UBD_SHIFT); | 
|  | 793 | if(disk == NULL) | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 794 | return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 |  | 
|  | 796 | disk->major = major; | 
|  | 797 | disk->first_minor = unit << UBD_SHIFT; | 
|  | 798 | disk->fops = &ubd_blops; | 
|  | 799 | set_capacity(disk, size / 512); | 
| Christoph Hellwig | 792dd4f | 2009-03-31 15:23:39 -0700 | [diff] [blame] | 800 | if (major == UBD_MAJOR) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | sprintf(disk->disk_name, "ubd%c", 'a' + unit); | 
| Greg Kroah-Hartman | ce7b0f4 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 802 | else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | sprintf(disk->disk_name, "ubd_fake%d", unit); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 |  | 
|  | 805 | /* sysfs register (not for ide fake devices) */ | 
| Christoph Hellwig | 792dd4f | 2009-03-31 15:23:39 -0700 | [diff] [blame] | 806 | if (major == UBD_MAJOR) { | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 807 | ubd_devs[unit].pdev.id   = unit; | 
|  | 808 | ubd_devs[unit].pdev.name = DRIVER_NAME; | 
| Jeff Dike | 2e3f525 | 2007-05-06 14:51:29 -0700 | [diff] [blame] | 809 | ubd_devs[unit].pdev.dev.release = ubd_device_release; | 
| Greg Kroah-Hartman | 8691b97 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 810 | dev_set_drvdata(&ubd_devs[unit].pdev.dev, &ubd_devs[unit]); | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 811 | platform_device_register(&ubd_devs[unit].pdev); | 
|  | 812 | disk->driverfs_dev = &ubd_devs[unit].pdev.dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | } | 
|  | 814 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 815 | disk->private_data = &ubd_devs[unit]; | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 816 | disk->queue = ubd_devs[unit].queue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | add_disk(disk); | 
|  | 818 |  | 
|  | 819 | *disk_out = disk; | 
|  | 820 | return 0; | 
|  | 821 | } | 
|  | 822 |  | 
|  | 823 | #define ROUND_BLOCK(n) ((n + ((1 << 9) - 1)) & (-1 << 9)) | 
|  | 824 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 825 | static int ubd_add(int n, char **error_out) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | { | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 827 | struct ubd *ubd_dev = &ubd_devs[n]; | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 828 | int err = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 830 | if(ubd_dev->file == NULL) | 
| Jeff Dike | ec7cf78 | 2005-09-03 15:57:29 -0700 | [diff] [blame] | 831 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 833 | err = ubd_file_size(ubd_dev, &ubd_dev->size); | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 834 | if(err < 0){ | 
|  | 835 | *error_out = "Couldn't determine size of device's file"; | 
| Jeff Dike | 80c1374 | 2006-09-29 01:58:51 -0700 | [diff] [blame] | 836 | goto out; | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 837 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 839 | ubd_dev->size = ROUND_BLOCK(ubd_dev->size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 |  | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 841 | INIT_LIST_HEAD(&ubd_dev->restart); | 
| WANG Cong | 4f40c05 | 2007-11-05 14:50:59 -0800 | [diff] [blame] | 842 | sg_init_table(ubd_dev->sg, MAX_SG); | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 843 |  | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 844 | err = -ENOMEM; | 
|  | 845 | ubd_dev->queue = blk_init_queue(do_ubd_request, &ubd_dev->lock); | 
|  | 846 | if (ubd_dev->queue == NULL) { | 
|  | 847 | *error_out = "Failed to initialize device queue"; | 
| Jeff Dike | 80c1374 | 2006-09-29 01:58:51 -0700 | [diff] [blame] | 848 | goto out; | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 849 | } | 
|  | 850 | ubd_dev->queue->queuedata = ubd_dev; | 
|  | 851 |  | 
| Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 852 | blk_queue_max_segments(ubd_dev->queue, MAX_SG); | 
| Christoph Hellwig | 792dd4f | 2009-03-31 15:23:39 -0700 | [diff] [blame] | 853 | err = ubd_disk_register(UBD_MAJOR, ubd_dev->size, n, &ubd_gendisk[n]); | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 854 | if(err){ | 
|  | 855 | *error_out = "Failed to register device"; | 
|  | 856 | goto out_cleanup; | 
|  | 857 | } | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 858 |  | 
| Christoph Hellwig | 792dd4f | 2009-03-31 15:23:39 -0700 | [diff] [blame] | 859 | if (fake_major != UBD_MAJOR) | 
| Paolo 'Blaisorblade' Giarrusso | 5f75a4f | 2006-10-30 22:07:06 -0800 | [diff] [blame] | 860 | ubd_disk_register(fake_major, ubd_dev->size, n, | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 861 | &fake_gendisk[n]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 |  | 
| Jeff Dike | 83380cc | 2008-02-04 22:31:18 -0800 | [diff] [blame] | 863 | /* | 
|  | 864 | * Perhaps this should also be under the "if (fake_major)" above | 
|  | 865 | * using the fake_disk->disk_name | 
|  | 866 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | if (fake_ide) | 
|  | 868 | make_ide_entries(ubd_gendisk[n]->disk_name); | 
|  | 869 |  | 
| Jeff Dike | ec7cf78 | 2005-09-03 15:57:29 -0700 | [diff] [blame] | 870 | err = 0; | 
| Jeff Dike | ec7cf78 | 2005-09-03 15:57:29 -0700 | [diff] [blame] | 871 | out: | 
|  | 872 | return err; | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 873 |  | 
|  | 874 | out_cleanup: | 
|  | 875 | blk_cleanup_queue(ubd_dev->queue); | 
|  | 876 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | } | 
|  | 878 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 879 | static int ubd_config(char *str, char **error_out) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | { | 
| Paolo 'Blaisorblade' Giarrusso | e7f6552 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 881 | int n, ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 883 | /* This string is possibly broken up and stored, so it's only | 
|  | 884 | * freed if ubd_setup_common fails, or if only general options | 
|  | 885 | * were set. | 
|  | 886 | */ | 
| Jeff Dike | 970d6e3 | 2006-01-06 00:18:48 -0800 | [diff] [blame] | 887 | str = kstrdup(str, GFP_KERNEL); | 
| Paolo 'Blaisorblade' Giarrusso | e7f6552 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 888 | if (str == NULL) { | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 889 | *error_out = "Failed to allocate memory"; | 
|  | 890 | return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | } | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 892 |  | 
|  | 893 | ret = ubd_setup_common(str, &n, error_out); | 
|  | 894 | if (ret) | 
| Paolo 'Blaisorblade' Giarrusso | e7f6552 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 895 | goto err_free; | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 896 |  | 
| Paolo 'Blaisorblade' Giarrusso | e7f6552 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 897 | if (n == -1) { | 
|  | 898 | ret = 0; | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 899 | goto err_free; | 
| Paolo 'Blaisorblade' Giarrusso | e7f6552 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 900 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 |  | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 902 | mutex_lock(&ubd_lock); | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 903 | ret = ubd_add(n, error_out); | 
| Paolo 'Blaisorblade' Giarrusso | e7f6552 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 904 | if (ret) | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 905 | ubd_devs[n].file = NULL; | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 906 | mutex_unlock(&ubd_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 |  | 
| Paolo 'Blaisorblade' Giarrusso | e7f6552 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 908 | out: | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 909 | return ret; | 
| Paolo 'Blaisorblade' Giarrusso | e7f6552 | 2006-10-30 22:07:09 -0800 | [diff] [blame] | 910 |  | 
|  | 911 | err_free: | 
|  | 912 | kfree(str); | 
|  | 913 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | } | 
|  | 915 |  | 
|  | 916 | static int ubd_get_config(char *name, char *str, int size, char **error_out) | 
|  | 917 | { | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 918 | struct ubd *ubd_dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | int n, len = 0; | 
|  | 920 |  | 
|  | 921 | n = parse_unit(&name); | 
|  | 922 | if((n >= MAX_DEV) || (n < 0)){ | 
|  | 923 | *error_out = "ubd_get_config : device number out of range"; | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 924 | return -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | } | 
|  | 926 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 927 | ubd_dev = &ubd_devs[n]; | 
| Paolo 'Blaisorblade' Giarrusso | d7fb2c3 | 2006-10-30 22:07:07 -0800 | [diff] [blame] | 928 | mutex_lock(&ubd_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 930 | if(ubd_dev->file == NULL){ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | CONFIG_CHUNK(str, size, len, "", 1); | 
|  | 932 | goto out; | 
|  | 933 | } | 
|  | 934 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 935 | CONFIG_CHUNK(str, size, len, ubd_dev->file, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 937 | if(ubd_dev->cow.file != NULL){ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | CONFIG_CHUNK(str, size, len, ",", 0); | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 939 | CONFIG_CHUNK(str, size, len, ubd_dev->cow.file, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | } | 
|  | 941 | else CONFIG_CHUNK(str, size, len, "", 1); | 
|  | 942 |  | 
|  | 943 | out: | 
| Paolo 'Blaisorblade' Giarrusso | d7fb2c3 | 2006-10-30 22:07:07 -0800 | [diff] [blame] | 944 | mutex_unlock(&ubd_lock); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 945 | return len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | } | 
|  | 947 |  | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 948 | static int ubd_id(char **str, int *start_out, int *end_out) | 
|  | 949 | { | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 950 | int n; | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 951 |  | 
|  | 952 | n = parse_unit(str); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 953 | *start_out = 0; | 
|  | 954 | *end_out = MAX_DEV - 1; | 
|  | 955 | return n; | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 956 | } | 
|  | 957 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 958 | static int ubd_remove(int n, char **error_out) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | { | 
| Jeff Dike | 2e3f525 | 2007-05-06 14:51:29 -0700 | [diff] [blame] | 960 | struct gendisk *disk = ubd_gendisk[n]; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 961 | struct ubd *ubd_dev; | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 962 | int err = -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 |  | 
| Paolo 'Blaisorblade' Giarrusso | d7fb2c3 | 2006-10-30 22:07:07 -0800 | [diff] [blame] | 964 | mutex_lock(&ubd_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 966 | ubd_dev = &ubd_devs[n]; | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 967 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 968 | if(ubd_dev->file == NULL) | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 969 | goto out; | 
|  | 970 |  | 
|  | 971 | /* you cannot remove a open disk */ | 
|  | 972 | err = -EBUSY; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 973 | if(ubd_dev->count > 0) | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 974 | goto out; | 
|  | 975 |  | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 976 | ubd_gendisk[n] = NULL; | 
| Jeff Dike | b47d2de | 2007-05-06 14:51:01 -0700 | [diff] [blame] | 977 | if(disk != NULL){ | 
|  | 978 | del_gendisk(disk); | 
|  | 979 | put_disk(disk); | 
|  | 980 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 |  | 
|  | 982 | if(fake_gendisk[n] != NULL){ | 
|  | 983 | del_gendisk(fake_gendisk[n]); | 
|  | 984 | put_disk(fake_gendisk[n]); | 
|  | 985 | fake_gendisk[n] = NULL; | 
|  | 986 | } | 
|  | 987 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | err = 0; | 
| Jeff Dike | 2e3f525 | 2007-05-06 14:51:29 -0700 | [diff] [blame] | 989 | platform_device_unregister(&ubd_dev->pdev); | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 990 | out: | 
| Paolo 'Blaisorblade' Giarrusso | d7fb2c3 | 2006-10-30 22:07:07 -0800 | [diff] [blame] | 991 | mutex_unlock(&ubd_lock); | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 992 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | } | 
|  | 994 |  | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 995 | /* All these are called by mconsole in process context and without | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 996 | * ubd-specific locks.  The structure itself is const except for .list. | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 997 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | static struct mc_device ubd_mc = { | 
| Jeff Dike | 84f48d4 | 2007-02-10 01:44:01 -0800 | [diff] [blame] | 999 | .list		= LIST_HEAD_INIT(ubd_mc.list), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | .name		= "ubd", | 
|  | 1001 | .config		= ubd_config, | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1002 | .get_config	= ubd_get_config, | 
| Jeff Dike | 29d56cf | 2005-06-25 14:55:25 -0700 | [diff] [blame] | 1003 | .id		= ubd_id, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | .remove		= ubd_remove, | 
|  | 1005 | }; | 
|  | 1006 |  | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 1007 | static int __init ubd_mc_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | { | 
|  | 1009 | mconsole_register_dev(&ubd_mc); | 
|  | 1010 | return 0; | 
|  | 1011 | } | 
|  | 1012 |  | 
|  | 1013 | __initcall(ubd_mc_init); | 
|  | 1014 |  | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 1015 | static int __init ubd0_init(void) | 
|  | 1016 | { | 
|  | 1017 | struct ubd *ubd_dev = &ubd_devs[0]; | 
|  | 1018 |  | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 1019 | mutex_lock(&ubd_lock); | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 1020 | if(ubd_dev->file == NULL) | 
|  | 1021 | ubd_dev->file = "root_fs"; | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 1022 | mutex_unlock(&ubd_lock); | 
|  | 1023 |  | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1024 | return 0; | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 1025 | } | 
|  | 1026 |  | 
|  | 1027 | __initcall(ubd0_init); | 
|  | 1028 |  | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 1029 | /* Used in ubd_init, which is an initcall */ | 
| Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1030 | static struct platform_driver ubd_driver = { | 
|  | 1031 | .driver = { | 
|  | 1032 | .name  = DRIVER_NAME, | 
|  | 1033 | }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | }; | 
|  | 1035 |  | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 1036 | static int __init ubd_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | { | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 1038 | char *error; | 
|  | 1039 | int i, err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 |  | 
| Christoph Hellwig | 792dd4f | 2009-03-31 15:23:39 -0700 | [diff] [blame] | 1041 | if (register_blkdev(UBD_MAJOR, "ubd")) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | return -1; | 
|  | 1043 |  | 
| Christoph Hellwig | 792dd4f | 2009-03-31 15:23:39 -0700 | [diff] [blame] | 1044 | if (fake_major != UBD_MAJOR) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | char name[sizeof("ubd_nnn\0")]; | 
|  | 1046 |  | 
|  | 1047 | snprintf(name, sizeof(name), "ubd_%d", fake_major); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | if (register_blkdev(fake_major, "ubd")) | 
|  | 1049 | return -1; | 
|  | 1050 | } | 
| Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1051 | platform_driver_register(&ubd_driver); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1052 | mutex_lock(&ubd_lock); | 
| Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 1053 | for (i = 0; i < MAX_DEV; i++){ | 
|  | 1054 | err = ubd_add(i, &error); | 
|  | 1055 | if(err) | 
|  | 1056 | printk(KERN_ERR "Failed to initialize ubd device %d :" | 
|  | 1057 | "%s\n", i, error); | 
|  | 1058 | } | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1059 | mutex_unlock(&ubd_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | return 0; | 
|  | 1061 | } | 
|  | 1062 |  | 
|  | 1063 | late_initcall(ubd_init); | 
|  | 1064 |  | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 1065 | static int __init ubd_driver_init(void){ | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1066 | unsigned long stack; | 
|  | 1067 | int err; | 
|  | 1068 |  | 
|  | 1069 | /* Set by CONFIG_BLK_DEV_UBD_SYNC or ubd=sync.*/ | 
|  | 1070 | if(global_openflags.s){ | 
|  | 1071 | printk(KERN_INFO "ubd: Synchronous mode\n"); | 
|  | 1072 | /* Letting ubd=sync be like using ubd#s= instead of ubd#= is | 
|  | 1073 | * enough. So use anyway the io thread. */ | 
|  | 1074 | } | 
|  | 1075 | stack = alloc_stack(0, 0); | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 1076 | io_pid = start_io_thread(stack + PAGE_SIZE - sizeof(void *), | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1077 | &thread_fd); | 
|  | 1078 | if(io_pid < 0){ | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 1079 | printk(KERN_ERR | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1080 | "ubd : Failed to start I/O thread (errno = %d) - " | 
|  | 1081 | "falling back to synchronous I/O\n", -io_pid); | 
|  | 1082 | io_pid = -1; | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1083 | return 0; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1084 | } | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 1085 | err = um_request_irq(UBD_IRQ, thread_fd, IRQ_READ, ubd_intr, | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1086 | IRQF_DISABLED, "ubd", ubd_devs); | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1087 | if(err != 0) | 
|  | 1088 | printk(KERN_ERR "um_request_irq failed - errno = %d\n", -err); | 
| Jeff Dike | f4c57a7 | 2006-03-31 02:30:10 -0800 | [diff] [blame] | 1089 | return 0; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1090 | } | 
|  | 1091 |  | 
|  | 1092 | device_initcall(ubd_driver_init); | 
|  | 1093 |  | 
| Al Viro | a625c99 | 2008-03-02 09:16:26 -0500 | [diff] [blame] | 1094 | static int ubd_open(struct block_device *bdev, fmode_t mode) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | { | 
| Al Viro | a625c99 | 2008-03-02 09:16:26 -0500 | [diff] [blame] | 1096 | struct gendisk *disk = bdev->bd_disk; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1097 | struct ubd *ubd_dev = disk->private_data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | int err = 0; | 
|  | 1099 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1100 | if(ubd_dev->count == 0){ | 
|  | 1101 | err = ubd_open_dev(ubd_dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | if(err){ | 
|  | 1103 | printk(KERN_ERR "%s: Can't open \"%s\": errno = %d\n", | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1104 | disk->disk_name, ubd_dev->file, -err); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | goto out; | 
|  | 1106 | } | 
|  | 1107 | } | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1108 | ubd_dev->count++; | 
|  | 1109 | set_disk_ro(disk, !ubd_dev->openflags.w); | 
| Paolo 'Blaisorblade' Giarrusso | 2c49be9 | 2005-05-01 08:58:57 -0700 | [diff] [blame] | 1110 |  | 
|  | 1111 | /* This should no more be needed. And it didn't work anyway to exclude | 
|  | 1112 | * read-write remounting of filesystems.*/ | 
| Al Viro | a625c99 | 2008-03-02 09:16:26 -0500 | [diff] [blame] | 1113 | /*if((mode & FMODE_WRITE) && !ubd_dev->openflags.w){ | 
| Paolo 'Blaisorblade' Giarrusso | 5f75a4f | 2006-10-30 22:07:06 -0800 | [diff] [blame] | 1114 | if(--ubd_dev->count == 0) ubd_close_dev(ubd_dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | err = -EROFS; | 
| Paolo 'Blaisorblade' Giarrusso | 2c49be9 | 2005-05-01 08:58:57 -0700 | [diff] [blame] | 1116 | }*/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | out: | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1118 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | } | 
|  | 1120 |  | 
| Al Viro | a625c99 | 2008-03-02 09:16:26 -0500 | [diff] [blame] | 1121 | static int ubd_release(struct gendisk *disk, fmode_t mode) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | { | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1123 | struct ubd *ubd_dev = disk->private_data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1125 | if(--ubd_dev->count == 0) | 
| Paolo 'Blaisorblade' Giarrusso | 5f75a4f | 2006-10-30 22:07:06 -0800 | [diff] [blame] | 1126 | ubd_close_dev(ubd_dev); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1127 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | } | 
|  | 1129 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1130 | static void cowify_bitmap(__u64 io_offset, int length, unsigned long *cow_mask, | 
|  | 1131 | __u64 *cow_offset, unsigned long *bitmap, | 
|  | 1132 | __u64 bitmap_offset, unsigned long *bitmap_words, | 
|  | 1133 | __u64 bitmap_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | { | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1135 | __u64 sector = io_offset >> 9; | 
|  | 1136 | int i, update_bitmap = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1138 | for(i = 0; i < length >> 9; i++){ | 
|  | 1139 | if(cow_mask != NULL) | 
|  | 1140 | ubd_set_bit(i, (unsigned char *) cow_mask); | 
|  | 1141 | if(ubd_test_bit(sector + i, (unsigned char *) bitmap)) | 
|  | 1142 | continue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1144 | update_bitmap = 1; | 
|  | 1145 | ubd_set_bit(sector + i, (unsigned char *) bitmap); | 
|  | 1146 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1148 | if(!update_bitmap) | 
|  | 1149 | return; | 
|  | 1150 |  | 
|  | 1151 | *cow_offset = sector / (sizeof(unsigned long) * 8); | 
|  | 1152 |  | 
|  | 1153 | /* This takes care of the case where we're exactly at the end of the | 
|  | 1154 | * device, and *cow_offset + 1 is off the end.  So, just back it up | 
|  | 1155 | * by one word.  Thanks to Lynn Kerby for the fix and James McMechan | 
|  | 1156 | * for the original diagnosis. | 
|  | 1157 | */ | 
| Jiri Olsa | 6d07424 | 2008-05-12 14:01:56 -0700 | [diff] [blame] | 1158 | if (*cow_offset == (DIV_ROUND_UP(bitmap_len, | 
|  | 1159 | sizeof(unsigned long)) - 1)) | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1160 | (*cow_offset)--; | 
|  | 1161 |  | 
|  | 1162 | bitmap_words[0] = bitmap[*cow_offset]; | 
|  | 1163 | bitmap_words[1] = bitmap[*cow_offset + 1]; | 
|  | 1164 |  | 
|  | 1165 | *cow_offset *= sizeof(unsigned long); | 
|  | 1166 | *cow_offset += bitmap_offset; | 
|  | 1167 | } | 
|  | 1168 |  | 
|  | 1169 | static void cowify_req(struct io_thread_req *req, unsigned long *bitmap, | 
|  | 1170 | __u64 bitmap_offset, __u64 bitmap_len) | 
|  | 1171 | { | 
|  | 1172 | __u64 sector = req->offset >> 9; | 
|  | 1173 | int i; | 
|  | 1174 |  | 
|  | 1175 | if(req->length > (sizeof(req->sector_mask) * 8) << 9) | 
|  | 1176 | panic("Operation too long"); | 
|  | 1177 |  | 
|  | 1178 | if(req->op == UBD_READ) { | 
|  | 1179 | for(i = 0; i < req->length >> 9; i++){ | 
|  | 1180 | if(ubd_test_bit(sector + i, (unsigned char *) bitmap)) | 
| Jeff Dike | 6c29256c | 2006-03-27 01:14:37 -0800 | [diff] [blame] | 1181 | ubd_set_bit(i, (unsigned char *) | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1182 | &req->sector_mask); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1183 | } | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1184 | } | 
|  | 1185 | else cowify_bitmap(req->offset, req->length, &req->sector_mask, | 
|  | 1186 | &req->cow_offset, bitmap, bitmap_offset, | 
|  | 1187 | req->bitmap_words, bitmap_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | } | 
|  | 1189 |  | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 1190 | /* Called with dev->lock held */ | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1191 | static void prepare_request(struct request *req, struct io_thread_req *io_req, | 
|  | 1192 | unsigned long long offset, int page_offset, | 
|  | 1193 | int len, struct page *page) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | { | 
|  | 1195 | struct gendisk *disk = req->rq_disk; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1196 | struct ubd *ubd_dev = disk->private_data; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1197 |  | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 1198 | io_req->req = req; | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1199 | io_req->fds[0] = (ubd_dev->cow.file != NULL) ? ubd_dev->cow.fd : | 
|  | 1200 | ubd_dev->fd; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1201 | io_req->fds[1] = ubd_dev->fd; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1202 | io_req->cow_offset = -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | io_req->offset = offset; | 
|  | 1204 | io_req->length = len; | 
|  | 1205 | io_req->error = 0; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1206 | io_req->sector_mask = 0; | 
|  | 1207 |  | 
|  | 1208 | io_req->op = (rq_data_dir(req) == READ) ? UBD_READ : UBD_WRITE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | io_req->offsets[0] = 0; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1210 | io_req->offsets[1] = ubd_dev->cow.data_offset; | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1211 | io_req->buffer = page_address(page) + page_offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | io_req->sectorsize = 1 << 9; | 
|  | 1213 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1214 | if(ubd_dev->cow.file != NULL) | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1215 | cowify_req(io_req, ubd_dev->cow.bitmap, | 
|  | 1216 | ubd_dev->cow.bitmap_offset, ubd_dev->cow.bitmap_len); | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1217 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | } | 
|  | 1219 |  | 
| Jeff Dike | 62f96cb | 2007-02-10 01:44:16 -0800 | [diff] [blame] | 1220 | /* Called with dev->lock held */ | 
| Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1221 | static void do_ubd_request(struct request_queue *q) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | { | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 1223 | struct io_thread_req *io_req; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | struct request *req; | 
| Tejun Heo | f81f2f7 | 2009-04-28 13:06:10 +0900 | [diff] [blame] | 1225 | sector_t sector; | 
|  | 1226 | int n; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 |  | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1228 | while(1){ | 
| Jeff Dike | 2a9529a | 2007-03-29 01:20:27 -0700 | [diff] [blame] | 1229 | struct ubd *dev = q->queuedata; | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1230 | if(dev->end_sg == 0){ | 
| Tejun Heo | 9934c8c | 2009-05-08 11:54:16 +0900 | [diff] [blame] | 1231 | struct request *req = blk_fetch_request(q); | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1232 | if(req == NULL) | 
|  | 1233 | return; | 
|  | 1234 |  | 
|  | 1235 | dev->request = req; | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1236 | dev->start_sg = 0; | 
|  | 1237 | dev->end_sg = blk_rq_map_sg(q, req, dev->sg); | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1238 | } | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1239 |  | 
|  | 1240 | req = dev->request; | 
| Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 1241 | sector = blk_rq_pos(req); | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1242 | while(dev->start_sg < dev->end_sg){ | 
|  | 1243 | struct scatterlist *sg = &dev->sg[dev->start_sg]; | 
|  | 1244 |  | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 1245 | io_req = kmalloc(sizeof(struct io_thread_req), | 
| Peter Zijlstra | 990c558 | 2007-05-06 14:51:38 -0700 | [diff] [blame] | 1246 | GFP_ATOMIC); | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 1247 | if(io_req == NULL){ | 
|  | 1248 | if(list_empty(&dev->restart)) | 
|  | 1249 | list_add(&dev->restart, &restart); | 
|  | 1250 | return; | 
|  | 1251 | } | 
|  | 1252 | prepare_request(req, io_req, | 
| Tejun Heo | f81f2f7 | 2009-04-28 13:06:10 +0900 | [diff] [blame] | 1253 | (unsigned long long)sector << 9, | 
| Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 1254 | sg->offset, sg->length, sg_page(sg)); | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1255 |  | 
| Tejun Heo | f81f2f7 | 2009-04-28 13:06:10 +0900 | [diff] [blame] | 1256 | sector += sg->length >> 9; | 
| Jeff Dike | a6ea4cc | 2007-05-06 14:51:43 -0700 | [diff] [blame] | 1257 | n = os_write_file(thread_fd, &io_req, | 
|  | 1258 | sizeof(struct io_thread_req *)); | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 1259 | if(n != sizeof(struct io_thread_req *)){ | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1260 | if(n != -EAGAIN) | 
|  | 1261 | printk("write to io thread failed, " | 
|  | 1262 | "errno = %d\n", -n); | 
|  | 1263 | else if(list_empty(&dev->restart)) | 
|  | 1264 | list_add(&dev->restart, &restart); | 
| Miklos Szeredi | 12429bf | 2007-11-28 16:21:52 -0800 | [diff] [blame] | 1265 | kfree(io_req); | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1266 | return; | 
|  | 1267 | } | 
|  | 1268 |  | 
| Jeff Dike | a0044bd | 2007-05-06 14:51:36 -0700 | [diff] [blame] | 1269 | dev->start_sg++; | 
|  | 1270 | } | 
|  | 1271 | dev->end_sg = 0; | 
|  | 1272 | dev->request = NULL; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1273 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | } | 
|  | 1275 |  | 
| Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 1276 | static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo) | 
|  | 1277 | { | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1278 | struct ubd *ubd_dev = bdev->bd_disk->private_data; | 
| Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 1279 |  | 
|  | 1280 | geo->heads = 128; | 
|  | 1281 | geo->sectors = 32; | 
| Paolo 'Blaisorblade' Giarrusso | 7d314e3 | 2006-10-30 22:07:05 -0800 | [diff] [blame] | 1282 | geo->cylinders = ubd_dev->size / (128 * 32 * 512); | 
| Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 1283 | return 0; | 
|  | 1284 | } | 
|  | 1285 |  | 
| Al Viro | a625c99 | 2008-03-02 09:16:26 -0500 | [diff] [blame] | 1286 | static int ubd_ioctl(struct block_device *bdev, fmode_t mode, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | unsigned int cmd, unsigned long arg) | 
|  | 1288 | { | 
| Al Viro | a625c99 | 2008-03-02 09:16:26 -0500 | [diff] [blame] | 1289 | struct ubd *ubd_dev = bdev->bd_disk->private_data; | 
| Bartlomiej Zolnierkiewicz | 73855e1 | 2009-04-01 21:42:21 +0200 | [diff] [blame] | 1290 | u16 ubd_id[ATA_ID_WORDS]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 |  | 
|  | 1292 | switch (cmd) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | struct cdrom_volctrl volume; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | case HDIO_GET_IDENTITY: | 
| Bartlomiej Zolnierkiewicz | 73855e1 | 2009-04-01 21:42:21 +0200 | [diff] [blame] | 1295 | memset(&ubd_id, 0, ATA_ID_WORDS * 2); | 
|  | 1296 | ubd_id[ATA_ID_CYLS]	= ubd_dev->size / (128 * 32 * 512); | 
|  | 1297 | ubd_id[ATA_ID_HEADS]	= 128; | 
|  | 1298 | ubd_id[ATA_ID_SECTORS]	= 32; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | if(copy_to_user((char __user *) arg, (char *) &ubd_id, | 
|  | 1300 | sizeof(ubd_id))) | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1301 | return -EFAULT; | 
|  | 1302 | return 0; | 
| Jeff Dike | b8831a1 | 2007-02-10 01:44:17 -0800 | [diff] [blame] | 1303 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | case CDROMVOLREAD: | 
|  | 1305 | if(copy_from_user(&volume, (char __user *) arg, sizeof(volume))) | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1306 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | volume.channel0 = 255; | 
|  | 1308 | volume.channel1 = 255; | 
|  | 1309 | volume.channel2 = 255; | 
|  | 1310 | volume.channel3 = 255; | 
|  | 1311 | if(copy_to_user((char __user *) arg, &volume, sizeof(volume))) | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1312 | return -EFAULT; | 
|  | 1313 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | } | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1315 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | } | 
|  | 1317 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1318 | static int update_bitmap(struct io_thread_req *req) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | { | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1320 | int n; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1322 | if(req->cow_offset == -1) | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1323 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 |  | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1325 | n = os_seek_file(req->fds[1], req->cow_offset); | 
|  | 1326 | if(n < 0){ | 
|  | 1327 | printk("do_io - bitmap lseek failed : err = %d\n", -n); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1328 | return 1; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1329 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 |  | 
| Jeff Dike | a6ea4cc | 2007-05-06 14:51:43 -0700 | [diff] [blame] | 1331 | n = os_write_file(req->fds[1], &req->bitmap_words, | 
|  | 1332 | sizeof(req->bitmap_words)); | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1333 | if(n != sizeof(req->bitmap_words)){ | 
|  | 1334 | printk("do_io - bitmap update failed, err = %d fd = %d\n", -n, | 
|  | 1335 | req->fds[1]); | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1336 | return 1; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1337 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 |  | 
| Jeff Dike | dc764e5 | 2007-05-06 14:51:41 -0700 | [diff] [blame] | 1339 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | } | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1341 |  | 
| WANG Cong | 5dc62b1 | 2008-04-28 02:13:58 -0700 | [diff] [blame] | 1342 | static void do_io(struct io_thread_req *req) | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1343 | { | 
|  | 1344 | char *buf; | 
|  | 1345 | unsigned long len; | 
|  | 1346 | int n, nsectors, start, end, bit; | 
|  | 1347 | int err; | 
|  | 1348 | __u64 off; | 
|  | 1349 |  | 
|  | 1350 | nsectors = req->length / req->sectorsize; | 
|  | 1351 | start = 0; | 
|  | 1352 | do { | 
|  | 1353 | bit = ubd_test_bit(start, (unsigned char *) &req->sector_mask); | 
|  | 1354 | end = start; | 
|  | 1355 | while((end < nsectors) && | 
|  | 1356 | (ubd_test_bit(end, (unsigned char *) | 
|  | 1357 | &req->sector_mask) == bit)) | 
|  | 1358 | end++; | 
|  | 1359 |  | 
|  | 1360 | off = req->offset + req->offsets[bit] + | 
|  | 1361 | start * req->sectorsize; | 
|  | 1362 | len = (end - start) * req->sectorsize; | 
|  | 1363 | buf = &req->buffer[start * req->sectorsize]; | 
|  | 1364 |  | 
|  | 1365 | err = os_seek_file(req->fds[bit], off); | 
|  | 1366 | if(err < 0){ | 
|  | 1367 | printk("do_io - lseek failed : err = %d\n", -err); | 
|  | 1368 | req->error = 1; | 
|  | 1369 | return; | 
|  | 1370 | } | 
|  | 1371 | if(req->op == UBD_READ){ | 
|  | 1372 | n = 0; | 
|  | 1373 | do { | 
|  | 1374 | buf = &buf[n]; | 
|  | 1375 | len -= n; | 
| Jeff Dike | a6ea4cc | 2007-05-06 14:51:43 -0700 | [diff] [blame] | 1376 | n = os_read_file(req->fds[bit], buf, len); | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1377 | if (n < 0) { | 
|  | 1378 | printk("do_io - read failed, err = %d " | 
|  | 1379 | "fd = %d\n", -n, req->fds[bit]); | 
|  | 1380 | req->error = 1; | 
|  | 1381 | return; | 
|  | 1382 | } | 
|  | 1383 | } while((n < len) && (n != 0)); | 
|  | 1384 | if (n < len) memset(&buf[n], 0, len - n); | 
|  | 1385 | } else { | 
| Jeff Dike | a6ea4cc | 2007-05-06 14:51:43 -0700 | [diff] [blame] | 1386 | n = os_write_file(req->fds[bit], buf, len); | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1387 | if(n != len){ | 
|  | 1388 | printk("do_io - write failed err = %d " | 
|  | 1389 | "fd = %d\n", -n, req->fds[bit]); | 
|  | 1390 | req->error = 1; | 
|  | 1391 | return; | 
|  | 1392 | } | 
|  | 1393 | } | 
|  | 1394 |  | 
|  | 1395 | start = end; | 
|  | 1396 | } while(start < nsectors); | 
|  | 1397 |  | 
|  | 1398 | req->error = update_bitmap(req); | 
|  | 1399 | } | 
|  | 1400 |  | 
|  | 1401 | /* Changed in start_io_thread, which is serialized by being called only | 
|  | 1402 | * from ubd_init, which is an initcall. | 
|  | 1403 | */ | 
|  | 1404 | int kernel_fd = -1; | 
|  | 1405 |  | 
| Paolo 'Blaisorblade' Giarrusso | d8d7c28 | 2006-10-30 22:07:12 -0800 | [diff] [blame] | 1406 | /* Only changed by the io thread. XXX: currently unused. */ | 
|  | 1407 | static int io_count = 0; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1408 |  | 
|  | 1409 | int io_thread(void *arg) | 
|  | 1410 | { | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 1411 | struct io_thread_req *req; | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1412 | int n; | 
|  | 1413 |  | 
|  | 1414 | ignore_sigwinch_sig(); | 
|  | 1415 | while(1){ | 
| Jeff Dike | a6ea4cc | 2007-05-06 14:51:43 -0700 | [diff] [blame] | 1416 | n = os_read_file(kernel_fd, &req, | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 1417 | sizeof(struct io_thread_req *)); | 
|  | 1418 | if(n != sizeof(struct io_thread_req *)){ | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1419 | if(n < 0) | 
|  | 1420 | printk("io_thread - read failed, fd = %d, " | 
|  | 1421 | "err = %d\n", kernel_fd, -n); | 
|  | 1422 | else { | 
|  | 1423 | printk("io_thread - short read, fd = %d, " | 
|  | 1424 | "length = %d\n", kernel_fd, n); | 
|  | 1425 | } | 
|  | 1426 | continue; | 
|  | 1427 | } | 
|  | 1428 | io_count++; | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 1429 | do_io(req); | 
| Jeff Dike | a6ea4cc | 2007-05-06 14:51:43 -0700 | [diff] [blame] | 1430 | n = os_write_file(kernel_fd, &req, | 
| Jeff Dike | 2adcec2 | 2007-05-06 14:51:37 -0700 | [diff] [blame] | 1431 | sizeof(struct io_thread_req *)); | 
|  | 1432 | if(n != sizeof(struct io_thread_req *)) | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1433 | printk("io_thread - write failed, fd = %d, err = %d\n", | 
|  | 1434 | kernel_fd, -n); | 
|  | 1435 | } | 
| Jeff Dike | 91acb21 | 2005-10-10 23:10:32 -0400 | [diff] [blame] | 1436 |  | 
| Jeff Dike | 1b57e9c | 2006-01-06 00:18:49 -0800 | [diff] [blame] | 1437 | return 0; | 
|  | 1438 | } |