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