xref: /openbmc/linux/arch/um/drivers/ubd_kern.c (revision ecc23d0a422a3118fcf6e4f0a46e17a6c2047b02)
1  // SPDX-License-Identifier: GPL-2.0
2  /*
3   * Copyright (C) 2018 Cambridge Greys Ltd
4   * Copyright (C) 2015-2016 Anton Ivanov (aivanov@brocade.com)
5   * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
6   */
7  
8  /* 2001-09-28...2002-04-17
9   * Partition stuff by James_McMechan@hotmail.com
10   * old style ubd by setting UBD_SHIFT to 0
11   * 2002-09-27...2002-10-18 massive tinkering for 2.5
12   * partitions have changed in 2.5
13   * 2003-01-29 more tinkering for 2.5.59-1
14   * This should now address the sysfs problems and has
15   * the symlink for devfs to allow for booting with
16   * the common /dev/ubd/discX/... names rather than
17   * only /dev/ubdN/discN this version also has lots of
18   * clean ups preparing for ubd-many.
19   * James McMechan
20   */
21  
22  #define UBD_SHIFT 4
23  
24  #include <linux/module.h>
25  #include <linux/init.h>
26  #include <linux/blkdev.h>
27  #include <linux/blk-mq.h>
28  #include <linux/ata.h>
29  #include <linux/hdreg.h>
30  #include <linux/major.h>
31  #include <linux/cdrom.h>
32  #include <linux/proc_fs.h>
33  #include <linux/seq_file.h>
34  #include <linux/ctype.h>
35  #include <linux/slab.h>
36  #include <linux/vmalloc.h>
37  #include <linux/platform_device.h>
38  #include <linux/scatterlist.h>
39  #include <asm/tlbflush.h>
40  #include <kern_util.h>
41  #include "mconsole_kern.h"
42  #include <init.h>
43  #include <irq_kern.h>
44  #include "ubd.h"
45  #include <os.h>
46  #include "cow.h"
47  
48  /* Max request size is determined by sector mask - 32K */
49  #define UBD_MAX_REQUEST (8 * sizeof(long))
50  
51  struct io_desc {
52  	char *buffer;
53  	unsigned long length;
54  	unsigned long sector_mask;
55  	unsigned long long cow_offset;
56  	unsigned long bitmap_words[2];
57  };
58  
59  struct io_thread_req {
60  	struct request *req;
61  	int fds[2];
62  	unsigned long offsets[2];
63  	unsigned long long offset;
64  	int sectorsize;
65  	int error;
66  
67  	int desc_cnt;
68  	/* io_desc has to be the last element of the struct */
69  	struct io_desc io_desc[];
70  };
71  
72  
73  static struct io_thread_req * (*irq_req_buffer)[];
74  static struct io_thread_req *irq_remainder;
75  static int irq_remainder_size;
76  
77  static struct io_thread_req * (*io_req_buffer)[];
78  static struct io_thread_req *io_remainder;
79  static int io_remainder_size;
80  
81  
82  
ubd_test_bit(__u64 bit,unsigned char * data)83  static inline int ubd_test_bit(__u64 bit, unsigned char *data)
84  {
85  	__u64 n;
86  	int bits, off;
87  
88  	bits = sizeof(data[0]) * 8;
89  	n = bit / bits;
90  	off = bit % bits;
91  	return (data[n] & (1 << off)) != 0;
92  }
93  
ubd_set_bit(__u64 bit,unsigned char * data)94  static inline void ubd_set_bit(__u64 bit, unsigned char *data)
95  {
96  	__u64 n;
97  	int bits, off;
98  
99  	bits = sizeof(data[0]) * 8;
100  	n = bit / bits;
101  	off = bit % bits;
102  	data[n] |= (1 << off);
103  }
104  /*End stuff from ubd_user.h*/
105  
106  #define DRIVER_NAME "uml-blkdev"
107  
108  static DEFINE_MUTEX(ubd_lock);
109  static DEFINE_MUTEX(ubd_mutex); /* replaces BKL, might not be needed */
110  
111  static int ubd_open(struct gendisk *disk, blk_mode_t mode);
112  static void ubd_release(struct gendisk *disk);
113  static int ubd_ioctl(struct block_device *bdev, blk_mode_t mode,
114  		     unsigned int cmd, unsigned long arg);
115  static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo);
116  
117  #define MAX_DEV (16)
118  
119  static const struct block_device_operations ubd_blops = {
120          .owner		= THIS_MODULE,
121          .open		= ubd_open,
122          .release	= ubd_release,
123          .ioctl		= ubd_ioctl,
124          .compat_ioctl	= blkdev_compat_ptr_ioctl,
125  	.getgeo		= ubd_getgeo,
126  };
127  
128  /* Protected by ubd_lock */
129  static struct gendisk *ubd_gendisk[MAX_DEV];
130  
131  #ifdef CONFIG_BLK_DEV_UBD_SYNC
132  #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 1, .c = 0, \
133  					 .cl = 1 })
134  #else
135  #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 0, .c = 0, \
136  					 .cl = 1 })
137  #endif
138  static struct openflags global_openflags = OPEN_FLAGS;
139  
140  struct cow {
141  	/* backing file name */
142  	char *file;
143  	/* backing file fd */
144  	int fd;
145  	unsigned long *bitmap;
146  	unsigned long bitmap_len;
147  	int bitmap_offset;
148  	int data_offset;
149  };
150  
151  #define MAX_SG 64
152  
153  struct ubd {
154  	/* name (and fd, below) of the file opened for writing, either the
155  	 * backing or the cow file. */
156  	char *file;
157  	char *serial;
158  	int count;
159  	int fd;
160  	__u64 size;
161  	struct openflags boot_openflags;
162  	struct openflags openflags;
163  	unsigned shared:1;
164  	unsigned no_cow:1;
165  	unsigned no_trim:1;
166  	struct cow cow;
167  	struct platform_device pdev;
168  	struct request_queue *queue;
169  	struct blk_mq_tag_set tag_set;
170  	spinlock_t lock;
171  };
172  
173  #define DEFAULT_COW { \
174  	.file =			NULL, \
175  	.fd =			-1,	\
176  	.bitmap =		NULL, \
177  	.bitmap_offset =	0, \
178  	.data_offset =		0, \
179  }
180  
181  #define DEFAULT_UBD { \
182  	.file = 		NULL, \
183  	.serial =		NULL, \
184  	.count =		0, \
185  	.fd =			-1, \
186  	.size =			-1, \
187  	.boot_openflags =	OPEN_FLAGS, \
188  	.openflags =		OPEN_FLAGS, \
189  	.no_cow =               0, \
190  	.no_trim =		0, \
191  	.shared =		0, \
192  	.cow =			DEFAULT_COW, \
193  	.lock =			__SPIN_LOCK_UNLOCKED(ubd_devs.lock), \
194  }
195  
196  /* Protected by ubd_lock */
197  static struct ubd ubd_devs[MAX_DEV] = { [0 ... MAX_DEV - 1] = DEFAULT_UBD };
198  
199  static blk_status_t ubd_queue_rq(struct blk_mq_hw_ctx *hctx,
200  				 const struct blk_mq_queue_data *bd);
201  
fake_ide_setup(char * str)202  static int fake_ide_setup(char *str)
203  {
204  	pr_warn("The fake_ide option has been removed\n");
205  	return 1;
206  }
207  __setup("fake_ide", fake_ide_setup);
208  
209  __uml_help(fake_ide_setup,
210  "fake_ide\n"
211  "    Obsolete stub.\n\n"
212  );
213  
parse_unit(char ** ptr)214  static int parse_unit(char **ptr)
215  {
216  	char *str = *ptr, *end;
217  	int n = -1;
218  
219  	if(isdigit(*str)) {
220  		n = simple_strtoul(str, &end, 0);
221  		if(end == str)
222  			return -1;
223  		*ptr = end;
224  	}
225  	else if (('a' <= *str) && (*str <= 'z')) {
226  		n = *str - 'a';
227  		str++;
228  		*ptr = str;
229  	}
230  	return n;
231  }
232  
233  /* If *index_out == -1 at exit, the passed option was a general one;
234   * otherwise, the str pointer is used (and owned) inside ubd_devs array, so it
235   * should not be freed on exit.
236   */
ubd_setup_common(char * str,int * index_out,char ** error_out)237  static int ubd_setup_common(char *str, int *index_out, char **error_out)
238  {
239  	struct ubd *ubd_dev;
240  	struct openflags flags = global_openflags;
241  	char *file, *backing_file, *serial;
242  	int n, err = 0, i;
243  
244  	if(index_out) *index_out = -1;
245  	n = *str;
246  	if(n == '='){
247  		str++;
248  		if(!strcmp(str, "sync")){
249  			global_openflags = of_sync(global_openflags);
250  			return err;
251  		}
252  
253  		pr_warn("fake major not supported any more\n");
254  		return 0;
255  	}
256  
257  	n = parse_unit(&str);
258  	if(n < 0){
259  		*error_out = "Couldn't parse device number";
260  		return -EINVAL;
261  	}
262  	if(n >= MAX_DEV){
263  		*error_out = "Device number out of range";
264  		return 1;
265  	}
266  
267  	err = -EBUSY;
268  	mutex_lock(&ubd_lock);
269  
270  	ubd_dev = &ubd_devs[n];
271  	if(ubd_dev->file != NULL){
272  		*error_out = "Device is already configured";
273  		goto out;
274  	}
275  
276  	if (index_out)
277  		*index_out = n;
278  
279  	err = -EINVAL;
280  	for (i = 0; i < sizeof("rscdt="); i++) {
281  		switch (*str) {
282  		case 'r':
283  			flags.w = 0;
284  			break;
285  		case 's':
286  			flags.s = 1;
287  			break;
288  		case 'd':
289  			ubd_dev->no_cow = 1;
290  			break;
291  		case 'c':
292  			ubd_dev->shared = 1;
293  			break;
294  		case 't':
295  			ubd_dev->no_trim = 1;
296  			break;
297  		case '=':
298  			str++;
299  			goto break_loop;
300  		default:
301  			*error_out = "Expected '=' or flag letter "
302  				"(r, s, c, t or d)";
303  			goto out;
304  		}
305  		str++;
306  	}
307  
308  	if (*str == '=')
309  		*error_out = "Too many flags specified";
310  	else
311  		*error_out = "Missing '='";
312  	goto out;
313  
314  break_loop:
315  	file = strsep(&str, ",:");
316  	if (*file == '\0')
317  		file = NULL;
318  
319  	backing_file = strsep(&str, ",:");
320  	if (backing_file && *backing_file == '\0')
321  		backing_file = NULL;
322  
323  	serial = strsep(&str, ",:");
324  	if (serial && *serial == '\0')
325  		serial = NULL;
326  
327  	if (backing_file && ubd_dev->no_cow) {
328  		*error_out = "Can't specify both 'd' and a cow file";
329  		goto out;
330  	}
331  
332  	err = 0;
333  	ubd_dev->file = file;
334  	ubd_dev->cow.file = backing_file;
335  	ubd_dev->serial = serial;
336  	ubd_dev->boot_openflags = flags;
337  out:
338  	mutex_unlock(&ubd_lock);
339  	return err;
340  }
341  
ubd_setup(char * str)342  static int ubd_setup(char *str)
343  {
344  	char *error;
345  	int err;
346  
347  	err = ubd_setup_common(str, NULL, &error);
348  	if(err)
349  		printk(KERN_ERR "Failed to initialize device with \"%s\" : "
350  		       "%s\n", str, error);
351  	return 1;
352  }
353  
354  __setup("ubd", ubd_setup);
355  __uml_help(ubd_setup,
356  "ubd<n><flags>=<filename>[(:|,)<filename2>][(:|,)<serial>]\n"
357  "    This is used to associate a device with a file in the underlying\n"
358  "    filesystem. When specifying two filenames, the first one is the\n"
359  "    COW name and the second is the backing file name. As separator you can\n"
360  "    use either a ':' or a ',': the first one allows writing things like;\n"
361  "	ubd0=~/Uml/root_cow:~/Uml/root_backing_file\n"
362  "    while with a ',' the shell would not expand the 2nd '~'.\n"
363  "    When using only one filename, UML will detect whether to treat it like\n"
364  "    a COW file or a backing file. To override this detection, add the 'd'\n"
365  "    flag:\n"
366  "	ubd0d=BackingFile\n"
367  "    Usually, there is a filesystem in the file, but \n"
368  "    that's not required. Swap devices containing swap files can be\n"
369  "    specified like this. Also, a file which doesn't contain a\n"
370  "    filesystem can have its contents read in the virtual \n"
371  "    machine by running 'dd' on the device. <n> must be in the range\n"
372  "    0 to 7. Appending an 'r' to the number will cause that device\n"
373  "    to be mounted read-only. For example ubd1r=./ext_fs. Appending\n"
374  "    an 's' will cause data to be written to disk on the host immediately.\n"
375  "    'c' will cause the device to be treated as being shared between multiple\n"
376  "    UMLs and file locking will be turned off - this is appropriate for a\n"
377  "    cluster filesystem and inappropriate at almost all other times.\n\n"
378  "    't' will disable trim/discard support on the device (enabled by default).\n\n"
379  "    An optional device serial number can be exposed using the serial parameter\n"
380  "    on the cmdline which is exposed as a sysfs entry. This is particularly\n"
381  "    useful when a unique number should be given to the device. Note when\n"
382  "    specifying a label, the filename2 must be also presented. It can be\n"
383  "    an empty string, in which case the backing file is not used:\n"
384  "       ubd0=File,,Serial\n"
385  );
386  
udb_setup(char * str)387  static int udb_setup(char *str)
388  {
389  	printk("udb%s specified on command line is almost certainly a ubd -> "
390  	       "udb TYPO\n", str);
391  	return 1;
392  }
393  
394  __setup("udb", udb_setup);
395  __uml_help(udb_setup,
396  "udb\n"
397  "    This option is here solely to catch ubd -> udb typos, which can be\n"
398  "    to impossible to catch visually unless you specifically look for\n"
399  "    them.  The only result of any option starting with 'udb' is an error\n"
400  "    in the boot output.\n\n"
401  );
402  
403  /* Only changed by ubd_init, which is an initcall. */
404  static int thread_fd = -1;
405  
406  /* Function to read several request pointers at a time
407  * handling fractional reads if (and as) needed
408  */
409  
bulk_req_safe_read(int fd,struct io_thread_req * (* request_buffer)[],struct io_thread_req ** remainder,int * remainder_size,int max_recs)410  static int bulk_req_safe_read(
411  	int fd,
412  	struct io_thread_req * (*request_buffer)[],
413  	struct io_thread_req **remainder,
414  	int *remainder_size,
415  	int max_recs
416  	)
417  {
418  	int n = 0;
419  	int res = 0;
420  
421  	if (*remainder_size > 0) {
422  		memmove(
423  			(char *) request_buffer,
424  			(char *) remainder, *remainder_size
425  		);
426  		n = *remainder_size;
427  	}
428  
429  	res = os_read_file(
430  			fd,
431  			((char *) request_buffer) + *remainder_size,
432  			sizeof(struct io_thread_req *)*max_recs
433  				- *remainder_size
434  		);
435  	if (res > 0) {
436  		n += res;
437  		if ((n % sizeof(struct io_thread_req *)) > 0) {
438  			/*
439  			* Read somehow returned not a multiple of dword
440  			* theoretically possible, but never observed in the
441  			* wild, so read routine must be able to handle it
442  			*/
443  			*remainder_size = n % sizeof(struct io_thread_req *);
444  			WARN(*remainder_size > 0, "UBD IPC read returned a partial result");
445  			memmove(
446  				remainder,
447  				((char *) request_buffer) +
448  					(n/sizeof(struct io_thread_req *))*sizeof(struct io_thread_req *),
449  				*remainder_size
450  			);
451  			n = n - *remainder_size;
452  		}
453  	} else {
454  		n = res;
455  	}
456  	return n;
457  }
458  
ubd_end_request(struct io_thread_req * io_req)459  static void ubd_end_request(struct io_thread_req *io_req)
460  {
461  	if (io_req->error == BLK_STS_NOTSUPP) {
462  		if (req_op(io_req->req) == REQ_OP_DISCARD)
463  			blk_queue_max_discard_sectors(io_req->req->q, 0);
464  		else if (req_op(io_req->req) == REQ_OP_WRITE_ZEROES)
465  			blk_queue_max_write_zeroes_sectors(io_req->req->q, 0);
466  	}
467  	blk_mq_end_request(io_req->req, io_req->error);
468  	kfree(io_req);
469  }
470  
ubd_intr(int irq,void * dev)471  static irqreturn_t ubd_intr(int irq, void *dev)
472  {
473  	int len, i;
474  
475  	while ((len = bulk_req_safe_read(thread_fd, irq_req_buffer,
476  			&irq_remainder, &irq_remainder_size,
477  			UBD_REQ_BUFFER_SIZE)) >= 0) {
478  		for (i = 0; i < len / sizeof(struct io_thread_req *); i++)
479  			ubd_end_request((*irq_req_buffer)[i]);
480  	}
481  
482  	if (len < 0 && len != -EAGAIN)
483  		pr_err("spurious interrupt in %s, err = %d\n", __func__, len);
484  	return IRQ_HANDLED;
485  }
486  
487  /* Only changed by ubd_init, which is an initcall. */
488  static int io_pid = -1;
489  
kill_io_thread(void)490  static void kill_io_thread(void)
491  {
492  	if(io_pid != -1)
493  		os_kill_process(io_pid, 1);
494  }
495  
496  __uml_exitcall(kill_io_thread);
497  
ubd_file_size(struct ubd * ubd_dev,__u64 * size_out)498  static inline int ubd_file_size(struct ubd *ubd_dev, __u64 *size_out)
499  {
500  	char *file;
501  	int fd;
502  	int err;
503  
504  	__u32 version;
505  	__u32 align;
506  	char *backing_file;
507  	time64_t mtime;
508  	unsigned long long size;
509  	int sector_size;
510  	int bitmap_offset;
511  
512  	if (ubd_dev->file && ubd_dev->cow.file) {
513  		file = ubd_dev->cow.file;
514  
515  		goto out;
516  	}
517  
518  	fd = os_open_file(ubd_dev->file, of_read(OPENFLAGS()), 0);
519  	if (fd < 0)
520  		return fd;
521  
522  	err = read_cow_header(file_reader, &fd, &version, &backing_file, \
523  		&mtime, &size, &sector_size, &align, &bitmap_offset);
524  	os_close_file(fd);
525  
526  	if(err == -EINVAL)
527  		file = ubd_dev->file;
528  	else
529  		file = backing_file;
530  
531  out:
532  	return os_file_size(file, size_out);
533  }
534  
read_cow_bitmap(int fd,void * buf,int offset,int len)535  static int read_cow_bitmap(int fd, void *buf, int offset, int len)
536  {
537  	int err;
538  
539  	err = os_pread_file(fd, buf, len, offset);
540  	if (err < 0)
541  		return err;
542  
543  	return 0;
544  }
545  
backing_file_mismatch(char * file,__u64 size,time64_t mtime)546  static int backing_file_mismatch(char *file, __u64 size, time64_t mtime)
547  {
548  	time64_t modtime;
549  	unsigned long long actual;
550  	int err;
551  
552  	err = os_file_modtime(file, &modtime);
553  	if (err < 0) {
554  		printk(KERN_ERR "Failed to get modification time of backing "
555  		       "file \"%s\", err = %d\n", file, -err);
556  		return err;
557  	}
558  
559  	err = os_file_size(file, &actual);
560  	if (err < 0) {
561  		printk(KERN_ERR "Failed to get size of backing file \"%s\", "
562  		       "err = %d\n", file, -err);
563  		return err;
564  	}
565  
566  	if (actual != size) {
567  		/*__u64 can be a long on AMD64 and with %lu GCC complains; so
568  		 * the typecast.*/
569  		printk(KERN_ERR "Size mismatch (%llu vs %llu) of COW header "
570  		       "vs backing file\n", (unsigned long long) size, actual);
571  		return -EINVAL;
572  	}
573  	if (modtime != mtime) {
574  		printk(KERN_ERR "mtime mismatch (%lld vs %lld) of COW header vs "
575  		       "backing file\n", mtime, modtime);
576  		return -EINVAL;
577  	}
578  	return 0;
579  }
580  
path_requires_switch(char * from_cmdline,char * from_cow,char * cow)581  static int path_requires_switch(char *from_cmdline, char *from_cow, char *cow)
582  {
583  	struct uml_stat buf1, buf2;
584  	int err;
585  
586  	if (from_cmdline == NULL)
587  		return 0;
588  	if (!strcmp(from_cmdline, from_cow))
589  		return 0;
590  
591  	err = os_stat_file(from_cmdline, &buf1);
592  	if (err < 0) {
593  		printk(KERN_ERR "Couldn't stat '%s', err = %d\n", from_cmdline,
594  		       -err);
595  		return 0;
596  	}
597  	err = os_stat_file(from_cow, &buf2);
598  	if (err < 0) {
599  		printk(KERN_ERR "Couldn't stat '%s', err = %d\n", from_cow,
600  		       -err);
601  		return 1;
602  	}
603  	if ((buf1.ust_dev == buf2.ust_dev) && (buf1.ust_ino == buf2.ust_ino))
604  		return 0;
605  
606  	printk(KERN_ERR "Backing file mismatch - \"%s\" requested, "
607  	       "\"%s\" specified in COW header of \"%s\"\n",
608  	       from_cmdline, from_cow, cow);
609  	return 1;
610  }
611  
open_ubd_file(char * file,struct openflags * openflags,int shared,char ** backing_file_out,int * bitmap_offset_out,unsigned long * bitmap_len_out,int * data_offset_out,int * create_cow_out)612  static int open_ubd_file(char *file, struct openflags *openflags, int shared,
613  		  char **backing_file_out, int *bitmap_offset_out,
614  		  unsigned long *bitmap_len_out, int *data_offset_out,
615  		  int *create_cow_out)
616  {
617  	time64_t mtime;
618  	unsigned long long size;
619  	__u32 version, align;
620  	char *backing_file;
621  	int fd, err, sectorsize, asked_switch, mode = 0644;
622  
623  	fd = os_open_file(file, *openflags, mode);
624  	if (fd < 0) {
625  		if ((fd == -ENOENT) && (create_cow_out != NULL))
626  			*create_cow_out = 1;
627  		if (!openflags->w ||
628  		    ((fd != -EROFS) && (fd != -EACCES)))
629  			return fd;
630  		openflags->w = 0;
631  		fd = os_open_file(file, *openflags, mode);
632  		if (fd < 0)
633  			return fd;
634  	}
635  
636  	if (shared)
637  		printk(KERN_INFO "Not locking \"%s\" on the host\n", file);
638  	else {
639  		err = os_lock_file(fd, openflags->w);
640  		if (err < 0) {
641  			printk(KERN_ERR "Failed to lock '%s', err = %d\n",
642  			       file, -err);
643  			goto out_close;
644  		}
645  	}
646  
647  	/* Successful return case! */
648  	if (backing_file_out == NULL)
649  		return fd;
650  
651  	err = read_cow_header(file_reader, &fd, &version, &backing_file, &mtime,
652  			      &size, &sectorsize, &align, bitmap_offset_out);
653  	if (err && (*backing_file_out != NULL)) {
654  		printk(KERN_ERR "Failed to read COW header from COW file "
655  		       "\"%s\", errno = %d\n", file, -err);
656  		goto out_close;
657  	}
658  	if (err)
659  		return fd;
660  
661  	asked_switch = path_requires_switch(*backing_file_out, backing_file,
662  					    file);
663  
664  	/* Allow switching only if no mismatch. */
665  	if (asked_switch && !backing_file_mismatch(*backing_file_out, size,
666  						   mtime)) {
667  		printk(KERN_ERR "Switching backing file to '%s'\n",
668  		       *backing_file_out);
669  		err = write_cow_header(file, fd, *backing_file_out,
670  				       sectorsize, align, &size);
671  		if (err) {
672  			printk(KERN_ERR "Switch failed, errno = %d\n", -err);
673  			goto out_close;
674  		}
675  	} else {
676  		*backing_file_out = backing_file;
677  		err = backing_file_mismatch(*backing_file_out, size, mtime);
678  		if (err)
679  			goto out_close;
680  	}
681  
682  	cow_sizes(version, size, sectorsize, align, *bitmap_offset_out,
683  		  bitmap_len_out, data_offset_out);
684  
685  	return fd;
686   out_close:
687  	os_close_file(fd);
688  	return err;
689  }
690  
create_cow_file(char * cow_file,char * backing_file,struct openflags flags,int sectorsize,int alignment,int * bitmap_offset_out,unsigned long * bitmap_len_out,int * data_offset_out)691  static int create_cow_file(char *cow_file, char *backing_file,
692  		    struct openflags flags,
693  		    int sectorsize, int alignment, int *bitmap_offset_out,
694  		    unsigned long *bitmap_len_out, int *data_offset_out)
695  {
696  	int err, fd;
697  
698  	flags.c = 1;
699  	fd = open_ubd_file(cow_file, &flags, 0, NULL, NULL, NULL, NULL, NULL);
700  	if (fd < 0) {
701  		err = fd;
702  		printk(KERN_ERR "Open of COW file '%s' failed, errno = %d\n",
703  		       cow_file, -err);
704  		goto out;
705  	}
706  
707  	err = init_cow_file(fd, cow_file, backing_file, sectorsize, alignment,
708  			    bitmap_offset_out, bitmap_len_out,
709  			    data_offset_out);
710  	if (!err)
711  		return fd;
712  	os_close_file(fd);
713   out:
714  	return err;
715  }
716  
ubd_close_dev(struct ubd * ubd_dev)717  static void ubd_close_dev(struct ubd *ubd_dev)
718  {
719  	os_close_file(ubd_dev->fd);
720  	if(ubd_dev->cow.file == NULL)
721  		return;
722  
723  	os_close_file(ubd_dev->cow.fd);
724  	vfree(ubd_dev->cow.bitmap);
725  	ubd_dev->cow.bitmap = NULL;
726  }
727  
ubd_open_dev(struct ubd * ubd_dev)728  static int ubd_open_dev(struct ubd *ubd_dev)
729  {
730  	struct openflags flags;
731  	char **back_ptr;
732  	int err, create_cow, *create_ptr;
733  	int fd;
734  
735  	ubd_dev->openflags = ubd_dev->boot_openflags;
736  	create_cow = 0;
737  	create_ptr = (ubd_dev->cow.file != NULL) ? &create_cow : NULL;
738  	back_ptr = ubd_dev->no_cow ? NULL : &ubd_dev->cow.file;
739  
740  	fd = open_ubd_file(ubd_dev->file, &ubd_dev->openflags, ubd_dev->shared,
741  				back_ptr, &ubd_dev->cow.bitmap_offset,
742  				&ubd_dev->cow.bitmap_len, &ubd_dev->cow.data_offset,
743  				create_ptr);
744  
745  	if((fd == -ENOENT) && create_cow){
746  		fd = create_cow_file(ubd_dev->file, ubd_dev->cow.file,
747  					  ubd_dev->openflags, SECTOR_SIZE, PAGE_SIZE,
748  					  &ubd_dev->cow.bitmap_offset,
749  					  &ubd_dev->cow.bitmap_len,
750  					  &ubd_dev->cow.data_offset);
751  		if(fd >= 0){
752  			printk(KERN_INFO "Creating \"%s\" as COW file for "
753  			       "\"%s\"\n", ubd_dev->file, ubd_dev->cow.file);
754  		}
755  	}
756  
757  	if(fd < 0){
758  		printk("Failed to open '%s', errno = %d\n", ubd_dev->file,
759  		       -fd);
760  		return fd;
761  	}
762  	ubd_dev->fd = fd;
763  
764  	if(ubd_dev->cow.file != NULL){
765  		blk_queue_max_hw_sectors(ubd_dev->queue, 8 * sizeof(long));
766  
767  		err = -ENOMEM;
768  		ubd_dev->cow.bitmap = vmalloc(ubd_dev->cow.bitmap_len);
769  		if(ubd_dev->cow.bitmap == NULL){
770  			printk(KERN_ERR "Failed to vmalloc COW bitmap\n");
771  			goto error;
772  		}
773  		flush_tlb_kernel_vm();
774  
775  		err = read_cow_bitmap(ubd_dev->fd, ubd_dev->cow.bitmap,
776  				      ubd_dev->cow.bitmap_offset,
777  				      ubd_dev->cow.bitmap_len);
778  		if(err < 0)
779  			goto error;
780  
781  		flags = ubd_dev->openflags;
782  		flags.w = 0;
783  		err = open_ubd_file(ubd_dev->cow.file, &flags, ubd_dev->shared, NULL,
784  				    NULL, NULL, NULL, NULL);
785  		if(err < 0) goto error;
786  		ubd_dev->cow.fd = err;
787  	}
788  	if (ubd_dev->no_trim == 0) {
789  		ubd_dev->queue->limits.discard_granularity = SECTOR_SIZE;
790  		blk_queue_max_discard_sectors(ubd_dev->queue, UBD_MAX_REQUEST);
791  		blk_queue_max_write_zeroes_sectors(ubd_dev->queue, UBD_MAX_REQUEST);
792  	}
793  	blk_queue_flag_set(QUEUE_FLAG_NONROT, ubd_dev->queue);
794  	return 0;
795   error:
796  	os_close_file(ubd_dev->fd);
797  	return err;
798  }
799  
ubd_device_release(struct device * dev)800  static void ubd_device_release(struct device *dev)
801  {
802  	struct ubd *ubd_dev = container_of(dev, struct ubd, pdev.dev);
803  
804  	blk_mq_free_tag_set(&ubd_dev->tag_set);
805  	*ubd_dev = ((struct ubd) DEFAULT_UBD);
806  }
807  
serial_show(struct device * dev,struct device_attribute * attr,char * buf)808  static ssize_t serial_show(struct device *dev,
809  			   struct device_attribute *attr, char *buf)
810  {
811  	struct gendisk *disk = dev_to_disk(dev);
812  	struct ubd *ubd_dev = disk->private_data;
813  
814  	if (!ubd_dev)
815  		return 0;
816  
817  	return sprintf(buf, "%s", ubd_dev->serial);
818  }
819  
820  static DEVICE_ATTR_RO(serial);
821  
822  static struct attribute *ubd_attrs[] = {
823  	&dev_attr_serial.attr,
824  	NULL,
825  };
826  
ubd_attrs_are_visible(struct kobject * kobj,struct attribute * a,int n)827  static umode_t ubd_attrs_are_visible(struct kobject *kobj,
828  				     struct attribute *a, int n)
829  {
830  	return a->mode;
831  }
832  
833  static const struct attribute_group ubd_attr_group = {
834  	.attrs = ubd_attrs,
835  	.is_visible = ubd_attrs_are_visible,
836  };
837  
838  static const struct attribute_group *ubd_attr_groups[] = {
839  	&ubd_attr_group,
840  	NULL,
841  };
842  
ubd_disk_register(int major,u64 size,int unit,struct gendisk * disk)843  static int ubd_disk_register(int major, u64 size, int unit,
844  			     struct gendisk *disk)
845  {
846  	disk->major = major;
847  	disk->first_minor = unit << UBD_SHIFT;
848  	disk->minors = 1 << UBD_SHIFT;
849  	disk->fops = &ubd_blops;
850  	set_capacity(disk, size / 512);
851  	sprintf(disk->disk_name, "ubd%c", 'a' + unit);
852  
853  	ubd_devs[unit].pdev.id   = unit;
854  	ubd_devs[unit].pdev.name = DRIVER_NAME;
855  	ubd_devs[unit].pdev.dev.release = ubd_device_release;
856  	dev_set_drvdata(&ubd_devs[unit].pdev.dev, &ubd_devs[unit]);
857  	platform_device_register(&ubd_devs[unit].pdev);
858  
859  	disk->private_data = &ubd_devs[unit];
860  	disk->queue = ubd_devs[unit].queue;
861  	return device_add_disk(&ubd_devs[unit].pdev.dev, disk, ubd_attr_groups);
862  }
863  
864  #define ROUND_BLOCK(n) ((n + (SECTOR_SIZE - 1)) & (-SECTOR_SIZE))
865  
866  static const struct blk_mq_ops ubd_mq_ops = {
867  	.queue_rq = ubd_queue_rq,
868  };
869  
ubd_add(int n,char ** error_out)870  static int ubd_add(int n, char **error_out)
871  {
872  	struct ubd *ubd_dev = &ubd_devs[n];
873  	struct gendisk *disk;
874  	int err = 0;
875  
876  	if(ubd_dev->file == NULL)
877  		goto out;
878  
879  	err = ubd_file_size(ubd_dev, &ubd_dev->size);
880  	if(err < 0){
881  		*error_out = "Couldn't determine size of device's file";
882  		goto out;
883  	}
884  
885  	ubd_dev->size = ROUND_BLOCK(ubd_dev->size);
886  
887  	ubd_dev->tag_set.ops = &ubd_mq_ops;
888  	ubd_dev->tag_set.queue_depth = 64;
889  	ubd_dev->tag_set.numa_node = NUMA_NO_NODE;
890  	ubd_dev->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
891  	ubd_dev->tag_set.driver_data = ubd_dev;
892  	ubd_dev->tag_set.nr_hw_queues = 1;
893  
894  	err = blk_mq_alloc_tag_set(&ubd_dev->tag_set);
895  	if (err)
896  		goto out;
897  
898  	disk = blk_mq_alloc_disk(&ubd_dev->tag_set, ubd_dev);
899  	if (IS_ERR(disk)) {
900  		err = PTR_ERR(disk);
901  		goto out_cleanup_tags;
902  	}
903  	ubd_dev->queue = disk->queue;
904  
905  	blk_queue_write_cache(ubd_dev->queue, true, false);
906  	blk_queue_max_segments(ubd_dev->queue, MAX_SG);
907  	blk_queue_segment_boundary(ubd_dev->queue, PAGE_SIZE - 1);
908  	err = ubd_disk_register(UBD_MAJOR, ubd_dev->size, n, disk);
909  	if (err)
910  		goto out_cleanup_disk;
911  
912  	ubd_gendisk[n] = disk;
913  	return 0;
914  
915  out_cleanup_disk:
916  	put_disk(disk);
917  out_cleanup_tags:
918  	blk_mq_free_tag_set(&ubd_dev->tag_set);
919  out:
920  	return err;
921  }
922  
ubd_config(char * str,char ** error_out)923  static int ubd_config(char *str, char **error_out)
924  {
925  	int n, ret;
926  
927  	/* This string is possibly broken up and stored, so it's only
928  	 * freed if ubd_setup_common fails, or if only general options
929  	 * were set.
930  	 */
931  	str = kstrdup(str, GFP_KERNEL);
932  	if (str == NULL) {
933  		*error_out = "Failed to allocate memory";
934  		return -ENOMEM;
935  	}
936  
937  	ret = ubd_setup_common(str, &n, error_out);
938  	if (ret)
939  		goto err_free;
940  
941  	if (n == -1) {
942  		ret = 0;
943  		goto err_free;
944  	}
945  
946  	mutex_lock(&ubd_lock);
947  	ret = ubd_add(n, error_out);
948  	if (ret)
949  		ubd_devs[n].file = NULL;
950  	mutex_unlock(&ubd_lock);
951  
952  out:
953  	return ret;
954  
955  err_free:
956  	kfree(str);
957  	goto out;
958  }
959  
ubd_get_config(char * name,char * str,int size,char ** error_out)960  static int ubd_get_config(char *name, char *str, int size, char **error_out)
961  {
962  	struct ubd *ubd_dev;
963  	int n, len = 0;
964  
965  	n = parse_unit(&name);
966  	if((n >= MAX_DEV) || (n < 0)){
967  		*error_out = "ubd_get_config : device number out of range";
968  		return -1;
969  	}
970  
971  	ubd_dev = &ubd_devs[n];
972  	mutex_lock(&ubd_lock);
973  
974  	if(ubd_dev->file == NULL){
975  		CONFIG_CHUNK(str, size, len, "", 1);
976  		goto out;
977  	}
978  
979  	CONFIG_CHUNK(str, size, len, ubd_dev->file, 0);
980  
981  	if(ubd_dev->cow.file != NULL){
982  		CONFIG_CHUNK(str, size, len, ",", 0);
983  		CONFIG_CHUNK(str, size, len, ubd_dev->cow.file, 1);
984  	}
985  	else CONFIG_CHUNK(str, size, len, "", 1);
986  
987   out:
988  	mutex_unlock(&ubd_lock);
989  	return len;
990  }
991  
ubd_id(char ** str,int * start_out,int * end_out)992  static int ubd_id(char **str, int *start_out, int *end_out)
993  {
994  	int n;
995  
996  	n = parse_unit(str);
997  	*start_out = 0;
998  	*end_out = MAX_DEV - 1;
999  	return n;
1000  }
1001  
ubd_remove(int n,char ** error_out)1002  static int ubd_remove(int n, char **error_out)
1003  {
1004  	struct gendisk *disk = ubd_gendisk[n];
1005  	struct ubd *ubd_dev;
1006  	int err = -ENODEV;
1007  
1008  	mutex_lock(&ubd_lock);
1009  
1010  	ubd_dev = &ubd_devs[n];
1011  
1012  	if(ubd_dev->file == NULL)
1013  		goto out;
1014  
1015  	/* you cannot remove a open disk */
1016  	err = -EBUSY;
1017  	if(ubd_dev->count > 0)
1018  		goto out;
1019  
1020  	ubd_gendisk[n] = NULL;
1021  	if(disk != NULL){
1022  		del_gendisk(disk);
1023  		put_disk(disk);
1024  	}
1025  
1026  	err = 0;
1027  	platform_device_unregister(&ubd_dev->pdev);
1028  out:
1029  	mutex_unlock(&ubd_lock);
1030  	return err;
1031  }
1032  
1033  /* All these are called by mconsole in process context and without
1034   * ubd-specific locks.  The structure itself is const except for .list.
1035   */
1036  static struct mc_device ubd_mc = {
1037  	.list		= LIST_HEAD_INIT(ubd_mc.list),
1038  	.name		= "ubd",
1039  	.config		= ubd_config,
1040  	.get_config	= ubd_get_config,
1041  	.id		= ubd_id,
1042  	.remove		= ubd_remove,
1043  };
1044  
ubd_mc_init(void)1045  static int __init ubd_mc_init(void)
1046  {
1047  	mconsole_register_dev(&ubd_mc);
1048  	return 0;
1049  }
1050  
1051  __initcall(ubd_mc_init);
1052  
ubd0_init(void)1053  static int __init ubd0_init(void)
1054  {
1055  	struct ubd *ubd_dev = &ubd_devs[0];
1056  
1057  	mutex_lock(&ubd_lock);
1058  	if(ubd_dev->file == NULL)
1059  		ubd_dev->file = "root_fs";
1060  	mutex_unlock(&ubd_lock);
1061  
1062  	return 0;
1063  }
1064  
1065  __initcall(ubd0_init);
1066  
1067  /* Used in ubd_init, which is an initcall */
1068  static struct platform_driver ubd_driver = {
1069  	.driver = {
1070  		.name  = DRIVER_NAME,
1071  	},
1072  };
1073  
ubd_init(void)1074  static int __init ubd_init(void)
1075  {
1076  	char *error;
1077  	int i, err;
1078  
1079  	if (register_blkdev(UBD_MAJOR, "ubd"))
1080  		return -1;
1081  
1082  	irq_req_buffer = kmalloc_array(UBD_REQ_BUFFER_SIZE,
1083  				       sizeof(struct io_thread_req *),
1084  				       GFP_KERNEL
1085  		);
1086  	irq_remainder = 0;
1087  
1088  	if (irq_req_buffer == NULL) {
1089  		printk(KERN_ERR "Failed to initialize ubd buffering\n");
1090  		return -ENOMEM;
1091  	}
1092  	io_req_buffer = kmalloc_array(UBD_REQ_BUFFER_SIZE,
1093  				      sizeof(struct io_thread_req *),
1094  				      GFP_KERNEL
1095  		);
1096  
1097  	io_remainder = 0;
1098  
1099  	if (io_req_buffer == NULL) {
1100  		printk(KERN_ERR "Failed to initialize ubd buffering\n");
1101  		return -ENOMEM;
1102  	}
1103  	platform_driver_register(&ubd_driver);
1104  	mutex_lock(&ubd_lock);
1105  	for (i = 0; i < MAX_DEV; i++){
1106  		err = ubd_add(i, &error);
1107  		if(err)
1108  			printk(KERN_ERR "Failed to initialize ubd device %d :"
1109  			       "%s\n", i, error);
1110  	}
1111  	mutex_unlock(&ubd_lock);
1112  	return 0;
1113  }
1114  
1115  late_initcall(ubd_init);
1116  
ubd_driver_init(void)1117  static int __init ubd_driver_init(void){
1118  	unsigned long stack;
1119  	int err;
1120  
1121  	/* Set by CONFIG_BLK_DEV_UBD_SYNC or ubd=sync.*/
1122  	if(global_openflags.s){
1123  		printk(KERN_INFO "ubd: Synchronous mode\n");
1124  		/* Letting ubd=sync be like using ubd#s= instead of ubd#= is
1125  		 * enough. So use anyway the io thread. */
1126  	}
1127  	stack = alloc_stack(0, 0);
1128  	io_pid = start_io_thread(stack + PAGE_SIZE, &thread_fd);
1129  	if(io_pid < 0){
1130  		printk(KERN_ERR
1131  		       "ubd : Failed to start I/O thread (errno = %d) - "
1132  		       "falling back to synchronous I/O\n", -io_pid);
1133  		io_pid = -1;
1134  		return 0;
1135  	}
1136  	err = um_request_irq(UBD_IRQ, thread_fd, IRQ_READ, ubd_intr,
1137  			     0, "ubd", ubd_devs);
1138  	if(err < 0)
1139  		printk(KERN_ERR "um_request_irq failed - errno = %d\n", -err);
1140  	return 0;
1141  }
1142  
1143  device_initcall(ubd_driver_init);
1144  
ubd_open(struct gendisk * disk,blk_mode_t mode)1145  static int ubd_open(struct gendisk *disk, blk_mode_t mode)
1146  {
1147  	struct ubd *ubd_dev = disk->private_data;
1148  	int err = 0;
1149  
1150  	mutex_lock(&ubd_mutex);
1151  	if(ubd_dev->count == 0){
1152  		err = ubd_open_dev(ubd_dev);
1153  		if(err){
1154  			printk(KERN_ERR "%s: Can't open \"%s\": errno = %d\n",
1155  			       disk->disk_name, ubd_dev->file, -err);
1156  			goto out;
1157  		}
1158  	}
1159  	ubd_dev->count++;
1160  	set_disk_ro(disk, !ubd_dev->openflags.w);
1161  out:
1162  	mutex_unlock(&ubd_mutex);
1163  	return err;
1164  }
1165  
ubd_release(struct gendisk * disk)1166  static void ubd_release(struct gendisk *disk)
1167  {
1168  	struct ubd *ubd_dev = disk->private_data;
1169  
1170  	mutex_lock(&ubd_mutex);
1171  	if(--ubd_dev->count == 0)
1172  		ubd_close_dev(ubd_dev);
1173  	mutex_unlock(&ubd_mutex);
1174  }
1175  
cowify_bitmap(__u64 io_offset,int length,unsigned long * cow_mask,__u64 * cow_offset,unsigned long * bitmap,__u64 bitmap_offset,unsigned long * bitmap_words,__u64 bitmap_len)1176  static void cowify_bitmap(__u64 io_offset, int length, unsigned long *cow_mask,
1177  			  __u64 *cow_offset, unsigned long *bitmap,
1178  			  __u64 bitmap_offset, unsigned long *bitmap_words,
1179  			  __u64 bitmap_len)
1180  {
1181  	__u64 sector = io_offset >> SECTOR_SHIFT;
1182  	int i, update_bitmap = 0;
1183  
1184  	for (i = 0; i < length >> SECTOR_SHIFT; i++) {
1185  		if(cow_mask != NULL)
1186  			ubd_set_bit(i, (unsigned char *) cow_mask);
1187  		if(ubd_test_bit(sector + i, (unsigned char *) bitmap))
1188  			continue;
1189  
1190  		update_bitmap = 1;
1191  		ubd_set_bit(sector + i, (unsigned char *) bitmap);
1192  	}
1193  
1194  	if(!update_bitmap)
1195  		return;
1196  
1197  	*cow_offset = sector / (sizeof(unsigned long) * 8);
1198  
1199  	/* This takes care of the case where we're exactly at the end of the
1200  	 * device, and *cow_offset + 1 is off the end.  So, just back it up
1201  	 * by one word.  Thanks to Lynn Kerby for the fix and James McMechan
1202  	 * for the original diagnosis.
1203  	 */
1204  	if (*cow_offset == (DIV_ROUND_UP(bitmap_len,
1205  					 sizeof(unsigned long)) - 1))
1206  		(*cow_offset)--;
1207  
1208  	bitmap_words[0] = bitmap[*cow_offset];
1209  	bitmap_words[1] = bitmap[*cow_offset + 1];
1210  
1211  	*cow_offset *= sizeof(unsigned long);
1212  	*cow_offset += bitmap_offset;
1213  }
1214  
cowify_req(struct io_thread_req * req,struct io_desc * segment,unsigned long offset,unsigned long * bitmap,__u64 bitmap_offset,__u64 bitmap_len)1215  static void cowify_req(struct io_thread_req *req, struct io_desc *segment,
1216  		       unsigned long offset, unsigned long *bitmap,
1217  		       __u64 bitmap_offset, __u64 bitmap_len)
1218  {
1219  	__u64 sector = offset >> SECTOR_SHIFT;
1220  	int i;
1221  
1222  	if (segment->length > (sizeof(segment->sector_mask) * 8) << SECTOR_SHIFT)
1223  		panic("Operation too long");
1224  
1225  	if (req_op(req->req) == REQ_OP_READ) {
1226  		for (i = 0; i < segment->length >> SECTOR_SHIFT; i++) {
1227  			if(ubd_test_bit(sector + i, (unsigned char *) bitmap))
1228  				ubd_set_bit(i, (unsigned char *)
1229  					    &segment->sector_mask);
1230  		}
1231  	} else {
1232  		cowify_bitmap(offset, segment->length, &segment->sector_mask,
1233  			      &segment->cow_offset, bitmap, bitmap_offset,
1234  			      segment->bitmap_words, bitmap_len);
1235  	}
1236  }
1237  
ubd_map_req(struct ubd * dev,struct io_thread_req * io_req,struct request * req)1238  static void ubd_map_req(struct ubd *dev, struct io_thread_req *io_req,
1239  			struct request *req)
1240  {
1241  	struct bio_vec bvec;
1242  	struct req_iterator iter;
1243  	int i = 0;
1244  	unsigned long byte_offset = io_req->offset;
1245  	enum req_op op = req_op(req);
1246  
1247  	if (op == REQ_OP_WRITE_ZEROES || op == REQ_OP_DISCARD) {
1248  		io_req->io_desc[0].buffer = NULL;
1249  		io_req->io_desc[0].length = blk_rq_bytes(req);
1250  	} else {
1251  		rq_for_each_segment(bvec, req, iter) {
1252  			BUG_ON(i >= io_req->desc_cnt);
1253  
1254  			io_req->io_desc[i].buffer = bvec_virt(&bvec);
1255  			io_req->io_desc[i].length = bvec.bv_len;
1256  			i++;
1257  		}
1258  	}
1259  
1260  	if (dev->cow.file) {
1261  		for (i = 0; i < io_req->desc_cnt; i++) {
1262  			cowify_req(io_req, &io_req->io_desc[i], byte_offset,
1263  				   dev->cow.bitmap, dev->cow.bitmap_offset,
1264  				   dev->cow.bitmap_len);
1265  			byte_offset += io_req->io_desc[i].length;
1266  		}
1267  
1268  	}
1269  }
1270  
ubd_alloc_req(struct ubd * dev,struct request * req,int desc_cnt)1271  static struct io_thread_req *ubd_alloc_req(struct ubd *dev, struct request *req,
1272  					   int desc_cnt)
1273  {
1274  	struct io_thread_req *io_req;
1275  	int i;
1276  
1277  	io_req = kmalloc(sizeof(*io_req) +
1278  			 (desc_cnt * sizeof(struct io_desc)),
1279  			 GFP_ATOMIC);
1280  	if (!io_req)
1281  		return NULL;
1282  
1283  	io_req->req = req;
1284  	if (dev->cow.file)
1285  		io_req->fds[0] = dev->cow.fd;
1286  	else
1287  		io_req->fds[0] = dev->fd;
1288  	io_req->error = 0;
1289  	io_req->sectorsize = SECTOR_SIZE;
1290  	io_req->fds[1] = dev->fd;
1291  	io_req->offset = (u64) blk_rq_pos(req) << SECTOR_SHIFT;
1292  	io_req->offsets[0] = 0;
1293  	io_req->offsets[1] = dev->cow.data_offset;
1294  
1295  	for (i = 0 ; i < desc_cnt; i++) {
1296  		io_req->io_desc[i].sector_mask = 0;
1297  		io_req->io_desc[i].cow_offset = -1;
1298  	}
1299  
1300  	return io_req;
1301  }
1302  
ubd_submit_request(struct ubd * dev,struct request * req)1303  static int ubd_submit_request(struct ubd *dev, struct request *req)
1304  {
1305  	int segs = 0;
1306  	struct io_thread_req *io_req;
1307  	int ret;
1308  	enum req_op op = req_op(req);
1309  
1310  	if (op == REQ_OP_FLUSH)
1311  		segs = 0;
1312  	else if (op == REQ_OP_WRITE_ZEROES || op == REQ_OP_DISCARD)
1313  		segs = 1;
1314  	else
1315  		segs = blk_rq_nr_phys_segments(req);
1316  
1317  	io_req = ubd_alloc_req(dev, req, segs);
1318  	if (!io_req)
1319  		return -ENOMEM;
1320  
1321  	io_req->desc_cnt = segs;
1322  	if (segs)
1323  		ubd_map_req(dev, io_req, req);
1324  
1325  	ret = os_write_file(thread_fd, &io_req, sizeof(io_req));
1326  	if (ret != sizeof(io_req)) {
1327  		if (ret != -EAGAIN)
1328  			pr_err("write to io thread failed: %d\n", -ret);
1329  		kfree(io_req);
1330  	}
1331  	return ret;
1332  }
1333  
ubd_queue_rq(struct blk_mq_hw_ctx * hctx,const struct blk_mq_queue_data * bd)1334  static blk_status_t ubd_queue_rq(struct blk_mq_hw_ctx *hctx,
1335  				 const struct blk_mq_queue_data *bd)
1336  {
1337  	struct ubd *ubd_dev = hctx->queue->queuedata;
1338  	struct request *req = bd->rq;
1339  	int ret = 0, res = BLK_STS_OK;
1340  
1341  	blk_mq_start_request(req);
1342  
1343  	spin_lock_irq(&ubd_dev->lock);
1344  
1345  	switch (req_op(req)) {
1346  	case REQ_OP_FLUSH:
1347  	case REQ_OP_READ:
1348  	case REQ_OP_WRITE:
1349  	case REQ_OP_DISCARD:
1350  	case REQ_OP_WRITE_ZEROES:
1351  		ret = ubd_submit_request(ubd_dev, req);
1352  		break;
1353  	default:
1354  		WARN_ON_ONCE(1);
1355  		res = BLK_STS_NOTSUPP;
1356  	}
1357  
1358  	spin_unlock_irq(&ubd_dev->lock);
1359  
1360  	if (ret < 0) {
1361  		if (ret == -ENOMEM)
1362  			res = BLK_STS_RESOURCE;
1363  		else
1364  			res = BLK_STS_DEV_RESOURCE;
1365  	}
1366  
1367  	return res;
1368  }
1369  
ubd_getgeo(struct block_device * bdev,struct hd_geometry * geo)1370  static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1371  {
1372  	struct ubd *ubd_dev = bdev->bd_disk->private_data;
1373  
1374  	geo->heads = 128;
1375  	geo->sectors = 32;
1376  	geo->cylinders = ubd_dev->size / (128 * 32 * 512);
1377  	return 0;
1378  }
1379  
ubd_ioctl(struct block_device * bdev,blk_mode_t mode,unsigned int cmd,unsigned long arg)1380  static int ubd_ioctl(struct block_device *bdev, blk_mode_t mode,
1381  		     unsigned int cmd, unsigned long arg)
1382  {
1383  	struct ubd *ubd_dev = bdev->bd_disk->private_data;
1384  	u16 ubd_id[ATA_ID_WORDS];
1385  
1386  	switch (cmd) {
1387  		struct cdrom_volctrl volume;
1388  	case HDIO_GET_IDENTITY:
1389  		memset(&ubd_id, 0, ATA_ID_WORDS * 2);
1390  		ubd_id[ATA_ID_CYLS]	= ubd_dev->size / (128 * 32 * 512);
1391  		ubd_id[ATA_ID_HEADS]	= 128;
1392  		ubd_id[ATA_ID_SECTORS]	= 32;
1393  		if(copy_to_user((char __user *) arg, (char *) &ubd_id,
1394  				 sizeof(ubd_id)))
1395  			return -EFAULT;
1396  		return 0;
1397  
1398  	case CDROMVOLREAD:
1399  		if(copy_from_user(&volume, (char __user *) arg, sizeof(volume)))
1400  			return -EFAULT;
1401  		volume.channel0 = 255;
1402  		volume.channel1 = 255;
1403  		volume.channel2 = 255;
1404  		volume.channel3 = 255;
1405  		if(copy_to_user((char __user *) arg, &volume, sizeof(volume)))
1406  			return -EFAULT;
1407  		return 0;
1408  	}
1409  	return -EINVAL;
1410  }
1411  
map_error(int error_code)1412  static int map_error(int error_code)
1413  {
1414  	switch (error_code) {
1415  	case 0:
1416  		return BLK_STS_OK;
1417  	case ENOSYS:
1418  	case EOPNOTSUPP:
1419  		return BLK_STS_NOTSUPP;
1420  	case ENOSPC:
1421  		return BLK_STS_NOSPC;
1422  	}
1423  	return BLK_STS_IOERR;
1424  }
1425  
1426  /*
1427   * Everything from here onwards *IS NOT PART OF THE KERNEL*
1428   *
1429   * The following functions are part of UML hypervisor code.
1430   * All functions from here onwards are executed as a helper
1431   * thread and are not allowed to execute any kernel functions.
1432   *
1433   * Any communication must occur strictly via shared memory and IPC.
1434   *
1435   * Do not add printks, locks, kernel memory operations, etc - it
1436   * will result in unpredictable behaviour and/or crashes.
1437   */
1438  
update_bitmap(struct io_thread_req * req,struct io_desc * segment)1439  static int update_bitmap(struct io_thread_req *req, struct io_desc *segment)
1440  {
1441  	int n;
1442  
1443  	if (segment->cow_offset == -1)
1444  		return map_error(0);
1445  
1446  	n = os_pwrite_file(req->fds[1], &segment->bitmap_words,
1447  			  sizeof(segment->bitmap_words), segment->cow_offset);
1448  	if (n != sizeof(segment->bitmap_words))
1449  		return map_error(-n);
1450  
1451  	return map_error(0);
1452  }
1453  
do_io(struct io_thread_req * req,struct io_desc * desc)1454  static void do_io(struct io_thread_req *req, struct io_desc *desc)
1455  {
1456  	char *buf = NULL;
1457  	unsigned long len;
1458  	int n, nsectors, start, end, bit;
1459  	__u64 off;
1460  
1461  	/* FLUSH is really a special case, we cannot "case" it with others */
1462  
1463  	if (req_op(req->req) == REQ_OP_FLUSH) {
1464  		/* fds[0] is always either the rw image or our cow file */
1465  		req->error = map_error(-os_sync_file(req->fds[0]));
1466  		return;
1467  	}
1468  
1469  	nsectors = desc->length / req->sectorsize;
1470  	start = 0;
1471  	do {
1472  		bit = ubd_test_bit(start, (unsigned char *) &desc->sector_mask);
1473  		end = start;
1474  		while((end < nsectors) &&
1475  		      (ubd_test_bit(end, (unsigned char *) &desc->sector_mask) == bit))
1476  			end++;
1477  
1478  		off = req->offset + req->offsets[bit] +
1479  			start * req->sectorsize;
1480  		len = (end - start) * req->sectorsize;
1481  		if (desc->buffer != NULL)
1482  			buf = &desc->buffer[start * req->sectorsize];
1483  
1484  		switch (req_op(req->req)) {
1485  		case REQ_OP_READ:
1486  			n = 0;
1487  			do {
1488  				buf = &buf[n];
1489  				len -= n;
1490  				n = os_pread_file(req->fds[bit], buf, len, off);
1491  				if (n < 0) {
1492  					req->error = map_error(-n);
1493  					return;
1494  				}
1495  			} while((n < len) && (n != 0));
1496  			if (n < len) memset(&buf[n], 0, len - n);
1497  			break;
1498  		case REQ_OP_WRITE:
1499  			n = os_pwrite_file(req->fds[bit], buf, len, off);
1500  			if(n != len){
1501  				req->error = map_error(-n);
1502  				return;
1503  			}
1504  			break;
1505  		case REQ_OP_DISCARD:
1506  			n = os_falloc_punch(req->fds[bit], off, len);
1507  			if (n) {
1508  				req->error = map_error(-n);
1509  				return;
1510  			}
1511  			break;
1512  		case REQ_OP_WRITE_ZEROES:
1513  			n = os_falloc_zeroes(req->fds[bit], off, len);
1514  			if (n) {
1515  				req->error = map_error(-n);
1516  				return;
1517  			}
1518  			break;
1519  		default:
1520  			WARN_ON_ONCE(1);
1521  			req->error = BLK_STS_NOTSUPP;
1522  			return;
1523  		}
1524  
1525  		start = end;
1526  	} while(start < nsectors);
1527  
1528  	req->offset += len;
1529  	req->error = update_bitmap(req, desc);
1530  }
1531  
1532  /* Changed in start_io_thread, which is serialized by being called only
1533   * from ubd_init, which is an initcall.
1534   */
1535  int kernel_fd = -1;
1536  
1537  /* Only changed by the io thread. XXX: currently unused. */
1538  static int io_count;
1539  
io_thread(void * arg)1540  int io_thread(void *arg)
1541  {
1542  	int n, count, written, res;
1543  
1544  	os_fix_helper_signals();
1545  
1546  	while(1){
1547  		n = bulk_req_safe_read(
1548  			kernel_fd,
1549  			io_req_buffer,
1550  			&io_remainder,
1551  			&io_remainder_size,
1552  			UBD_REQ_BUFFER_SIZE
1553  		);
1554  		if (n <= 0) {
1555  			if (n == -EAGAIN)
1556  				ubd_read_poll(-1);
1557  
1558  			continue;
1559  		}
1560  
1561  		for (count = 0; count < n/sizeof(struct io_thread_req *); count++) {
1562  			struct io_thread_req *req = (*io_req_buffer)[count];
1563  			int i;
1564  
1565  			io_count++;
1566  			for (i = 0; !req->error && i < req->desc_cnt; i++)
1567  				do_io(req, &(req->io_desc[i]));
1568  
1569  		}
1570  
1571  		written = 0;
1572  
1573  		do {
1574  			res = os_write_file(kernel_fd,
1575  					    ((char *) io_req_buffer) + written,
1576  					    n - written);
1577  			if (res >= 0) {
1578  				written += res;
1579  			}
1580  			if (written < n) {
1581  				ubd_write_poll(-1);
1582  			}
1583  		} while (written < n);
1584  	}
1585  
1586  	return 0;
1587  }
1588