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