ubd_kern.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460
  1. /*
  2. * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. /* 2001-09-28...2002-04-17
  6. * Partition stuff by James_McMechan@hotmail.com
  7. * old style ubd by setting UBD_SHIFT to 0
  8. * 2002-09-27...2002-10-18 massive tinkering for 2.5
  9. * partitions have changed in 2.5
  10. * 2003-01-29 more tinkering for 2.5.59-1
  11. * This should now address the sysfs problems and has
  12. * the symlink for devfs to allow for booting with
  13. * the common /dev/ubd/discX/... names rather than
  14. * only /dev/ubdN/discN this version also has lots of
  15. * clean ups preparing for ubd-many.
  16. * James McMechan
  17. */
  18. #define UBD_SHIFT 4
  19. #include <linux/module.h>
  20. #include <linux/init.h>
  21. #include <linux/blkdev.h>
  22. #include <linux/ata.h>
  23. #include <linux/hdreg.h>
  24. #include <linux/cdrom.h>
  25. #include <linux/proc_fs.h>
  26. #include <linux/seq_file.h>
  27. #include <linux/ctype.h>
  28. #include <linux/slab.h>
  29. #include <linux/vmalloc.h>
  30. #include <linux/platform_device.h>
  31. #include <linux/scatterlist.h>
  32. #include <asm/tlbflush.h>
  33. #include "kern_util.h"
  34. #include "mconsole_kern.h"
  35. #include "init.h"
  36. #include "irq_kern.h"
  37. #include "ubd.h"
  38. #include "os.h"
  39. #include "cow.h"
  40. enum ubd_req { UBD_READ, UBD_WRITE };
  41. struct io_thread_req {
  42. struct request *req;
  43. enum ubd_req op;
  44. int fds[2];
  45. unsigned long offsets[2];
  46. unsigned long long offset;
  47. unsigned long length;
  48. char *buffer;
  49. int sectorsize;
  50. unsigned long sector_mask;
  51. unsigned long long cow_offset;
  52. unsigned long bitmap_words[2];
  53. int error;
  54. };
  55. static inline int ubd_test_bit(__u64 bit, unsigned char *data)
  56. {
  57. __u64 n;
  58. int bits, off;
  59. bits = sizeof(data[0]) * 8;
  60. n = bit / bits;
  61. off = bit % bits;
  62. return (data[n] & (1 << off)) != 0;
  63. }
  64. static inline void ubd_set_bit(__u64 bit, unsigned char *data)
  65. {
  66. __u64 n;
  67. int bits, off;
  68. bits = sizeof(data[0]) * 8;
  69. n = bit / bits;
  70. off = bit % bits;
  71. data[n] |= (1 << off);
  72. }
  73. /*End stuff from ubd_user.h*/
  74. #define DRIVER_NAME "uml-blkdev"
  75. static DEFINE_MUTEX(ubd_lock);
  76. static DEFINE_MUTEX(ubd_mutex); /* replaces BKL, might not be needed */
  77. static int ubd_open(struct block_device *bdev, fmode_t mode);
  78. static int ubd_release(struct gendisk *disk, fmode_t mode);
  79. static int ubd_ioctl(struct block_device *bdev, fmode_t mode,
  80. unsigned int cmd, unsigned long arg);
  81. static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo);
  82. #define MAX_DEV (16)
  83. static const struct block_device_operations ubd_blops = {
  84. .owner = THIS_MODULE,
  85. .open = ubd_open,
  86. .release = ubd_release,
  87. .ioctl = ubd_ioctl,
  88. .getgeo = ubd_getgeo,
  89. };
  90. /* Protected by ubd_lock */
  91. static int fake_major = UBD_MAJOR;
  92. static struct gendisk *ubd_gendisk[MAX_DEV];
  93. static struct gendisk *fake_gendisk[MAX_DEV];
  94. #ifdef CONFIG_BLK_DEV_UBD_SYNC
  95. #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 1, .c = 0, \
  96. .cl = 1 })
  97. #else
  98. #define OPEN_FLAGS ((struct openflags) { .r = 1, .w = 1, .s = 0, .c = 0, \
  99. .cl = 1 })
  100. #endif
  101. static struct openflags global_openflags = OPEN_FLAGS;
  102. struct cow {
  103. /* backing file name */
  104. char *file;
  105. /* backing file fd */
  106. int fd;
  107. unsigned long *bitmap;
  108. unsigned long bitmap_len;
  109. int bitmap_offset;
  110. int data_offset;
  111. };
  112. #define MAX_SG 64
  113. struct ubd {
  114. struct list_head restart;
  115. /* name (and fd, below) of the file opened for writing, either the
  116. * backing or the cow file. */
  117. char *file;
  118. int count;
  119. int fd;
  120. __u64 size;
  121. struct openflags boot_openflags;
  122. struct openflags openflags;
  123. unsigned shared:1;
  124. unsigned no_cow:1;
  125. struct cow cow;
  126. struct platform_device pdev;
  127. struct request_queue *queue;
  128. spinlock_t lock;
  129. struct scatterlist sg[MAX_SG];
  130. struct request *request;
  131. int start_sg, end_sg;
  132. sector_t rq_pos;
  133. };
  134. #define DEFAULT_COW { \
  135. .file = NULL, \
  136. .fd = -1, \
  137. .bitmap = NULL, \
  138. .bitmap_offset = 0, \
  139. .data_offset = 0, \
  140. }
  141. #define DEFAULT_UBD { \
  142. .file = NULL, \
  143. .count = 0, \
  144. .fd = -1, \
  145. .size = -1, \
  146. .boot_openflags = OPEN_FLAGS, \
  147. .openflags = OPEN_FLAGS, \
  148. .no_cow = 0, \
  149. .shared = 0, \
  150. .cow = DEFAULT_COW, \
  151. .lock = __SPIN_LOCK_UNLOCKED(ubd_devs.lock), \
  152. .request = NULL, \
  153. .start_sg = 0, \
  154. .end_sg = 0, \
  155. .rq_pos = 0, \
  156. }
  157. /* Protected by ubd_lock */
  158. static struct ubd ubd_devs[MAX_DEV] = { [0 ... MAX_DEV - 1] = DEFAULT_UBD };
  159. /* Only changed by fake_ide_setup which is a setup */
  160. static int fake_ide = 0;
  161. static struct proc_dir_entry *proc_ide_root = NULL;
  162. static struct proc_dir_entry *proc_ide = NULL;
  163. static void make_proc_ide(void)
  164. {
  165. proc_ide_root = proc_mkdir("ide", NULL);
  166. proc_ide = proc_mkdir("ide0", proc_ide_root);
  167. }
  168. static int fake_ide_media_proc_show(struct seq_file *m, void *v)
  169. {
  170. seq_puts(m, "disk\n");
  171. return 0;
  172. }
  173. static int fake_ide_media_proc_open(struct inode *inode, struct file *file)
  174. {
  175. return single_open(file, fake_ide_media_proc_show, NULL);
  176. }
  177. static const struct file_operations fake_ide_media_proc_fops = {
  178. .owner = THIS_MODULE,
  179. .open = fake_ide_media_proc_open,
  180. .read = seq_read,
  181. .llseek = seq_lseek,
  182. .release = single_release,
  183. };
  184. static void make_ide_entries(const char *dev_name)
  185. {
  186. struct proc_dir_entry *dir, *ent;
  187. char name[64];
  188. if(proc_ide_root == NULL) make_proc_ide();
  189. dir = proc_mkdir(dev_name, proc_ide);
  190. if(!dir) return;
  191. ent = proc_create("media", S_IRUGO, dir, &fake_ide_media_proc_fops);
  192. if(!ent) return;
  193. snprintf(name, sizeof(name), "ide0/%s", dev_name);
  194. proc_symlink(dev_name, proc_ide_root, name);
  195. }
  196. static int fake_ide_setup(char *str)
  197. {
  198. fake_ide = 1;
  199. return 1;
  200. }
  201. __setup("fake_ide", fake_ide_setup);
  202. __uml_help(fake_ide_setup,
  203. "fake_ide\n"
  204. " Create ide0 entries that map onto ubd devices.\n\n"
  205. );
  206. static int parse_unit(char **ptr)
  207. {
  208. char *str = *ptr, *end;
  209. int n = -1;
  210. if(isdigit(*str)) {
  211. n = simple_strtoul(str, &end, 0);
  212. if(end == str)
  213. return -1;
  214. *ptr = end;
  215. }
  216. else if (('a' <= *str) && (*str <= 'z')) {
  217. n = *str - 'a';
  218. str++;
  219. *ptr = str;
  220. }
  221. return n;
  222. }
  223. /* If *index_out == -1 at exit, the passed option was a general one;
  224. * otherwise, the str pointer is used (and owned) inside ubd_devs array, so it
  225. * should not be freed on exit.
  226. */
  227. static int ubd_setup_common(char *str, int *index_out, char **error_out)
  228. {
  229. struct ubd *ubd_dev;
  230. struct openflags flags = global_openflags;
  231. char *backing_file;
  232. int n, err = 0, i;
  233. if(index_out) *index_out = -1;
  234. n = *str;
  235. if(n == '='){
  236. char *end;
  237. int major;
  238. str++;
  239. if(!strcmp(str, "sync")){
  240. global_openflags = of_sync(global_openflags);
  241. goto out1;
  242. }
  243. err = -EINVAL;
  244. major = simple_strtoul(str, &end, 0);
  245. if((*end != '\0') || (end == str)){
  246. *error_out = "Didn't parse major number";
  247. goto out1;
  248. }
  249. mutex_lock(&ubd_lock);
  250. if (fake_major != UBD_MAJOR) {
  251. *error_out = "Can't assign a fake major twice";
  252. goto out1;
  253. }
  254. fake_major = major;
  255. printk(KERN_INFO "Setting extra ubd major number to %d\n",
  256. major);
  257. err = 0;
  258. out1:
  259. mutex_unlock(&ubd_lock);
  260. return err;
  261. }
  262. n = parse_unit(&str);
  263. if(n < 0){
  264. *error_out = "Couldn't parse device number";
  265. return -EINVAL;
  266. }
  267. if(n >= MAX_DEV){
  268. *error_out = "Device number out of range";
  269. return 1;
  270. }
  271. err = -EBUSY;
  272. mutex_lock(&ubd_lock);
  273. ubd_dev = &ubd_devs[n];
  274. if(ubd_dev->file != NULL){
  275. *error_out = "Device is already configured";
  276. goto out;
  277. }
  278. if (index_out)
  279. *index_out = n;
  280. err = -EINVAL;
  281. for (i = 0; i < sizeof("rscd="); i++) {
  282. switch (*str) {
  283. case 'r':
  284. flags.w = 0;
  285. break;
  286. case 's':
  287. flags.s = 1;
  288. break;
  289. case 'd':
  290. ubd_dev->no_cow = 1;
  291. break;
  292. case 'c':
  293. ubd_dev->shared = 1;
  294. break;
  295. case '=':
  296. str++;
  297. goto break_loop;
  298. default:
  299. *error_out = "Expected '=' or flag letter "
  300. "(r, s, c, or d)";
  301. goto out;
  302. }
  303. str++;
  304. }
  305. if (*str == '=')
  306. *error_out = "Too many flags specified";
  307. else
  308. *error_out = "Missing '='";
  309. goto out;
  310. break_loop:
  311. backing_file = strchr(str, ',');
  312. if (backing_file == NULL)
  313. backing_file = strchr(str, ':');
  314. if(backing_file != NULL){
  315. if(ubd_dev->no_cow){
  316. *error_out = "Can't specify both 'd' and a cow file";
  317. goto out;
  318. }
  319. else {
  320. *backing_file = '\0';
  321. backing_file++;
  322. }
  323. }
  324. err = 0;
  325. ubd_dev->file = str;
  326. ubd_dev->cow.file = backing_file;
  327. ubd_dev->boot_openflags = flags;
  328. out:
  329. mutex_unlock(&ubd_lock);
  330. return err;
  331. }
  332. static int ubd_setup(char *str)
  333. {
  334. char *error;
  335. int err;
  336. err = ubd_setup_common(str, NULL, &error);
  337. if(err)
  338. printk(KERN_ERR "Failed to initialize device with \"%s\" : "
  339. "%s\n", str, error);
  340. return 1;
  341. }
  342. __setup("ubd", ubd_setup);
  343. __uml_help(ubd_setup,
  344. "ubd<n><flags>=<filename>[(:|,)<filename2>]\n"
  345. " This is used to associate a device with a file in the underlying\n"
  346. " filesystem. When specifying two filenames, the first one is the\n"
  347. " COW name and the second is the backing file name. As separator you can\n"
  348. " use either a ':' or a ',': the first one allows writing things like;\n"
  349. " ubd0=~/Uml/root_cow:~/Uml/root_backing_file\n"
  350. " while with a ',' the shell would not expand the 2nd '~'.\n"
  351. " When using only one filename, UML will detect whether to treat it like\n"
  352. " a COW file or a backing file. To override this detection, add the 'd'\n"
  353. " flag:\n"
  354. " ubd0d=BackingFile\n"
  355. " Usually, there is a filesystem in the file, but \n"
  356. " that's not required. Swap devices containing swap files can be\n"
  357. " specified like this. Also, a file which doesn't contain a\n"
  358. " filesystem can have its contents read in the virtual \n"
  359. " machine by running 'dd' on the device. <n> must be in the range\n"
  360. " 0 to 7. Appending an 'r' to the number will cause that device\n"
  361. " to be mounted read-only. For example ubd1r=./ext_fs. Appending\n"
  362. " an 's' will cause data to be written to disk on the host immediately.\n"
  363. " 'c' will cause the device to be treated as being shared between multiple\n"
  364. " UMLs and file locking will be turned off - this is appropriate for a\n"
  365. " cluster filesystem and inappropriate at almost all other times.\n\n"
  366. );
  367. static int udb_setup(char *str)
  368. {
  369. printk("udb%s specified on command line is almost certainly a ubd -> "
  370. "udb TYPO\n", str);
  371. return 1;
  372. }
  373. __setup("udb", udb_setup);
  374. __uml_help(udb_setup,
  375. "udb\n"
  376. " This option is here solely to catch ubd -> udb typos, which can be\n"
  377. " to impossible to catch visually unless you specifically look for\n"
  378. " them. The only result of any option starting with 'udb' is an error\n"
  379. " in the boot output.\n\n"
  380. );
  381. static void do_ubd_request(struct request_queue * q);
  382. /* Only changed by ubd_init, which is an initcall. */
  383. static int thread_fd = -1;
  384. static LIST_HEAD(restart);
  385. /* XXX - move this inside ubd_intr. */
  386. /* Called without dev->lock held, and only in interrupt context. */
  387. static void ubd_handler(void)
  388. {
  389. struct io_thread_req *req;
  390. struct ubd *ubd;
  391. struct list_head *list, *next_ele;
  392. unsigned long flags;
  393. int n;
  394. while(1){
  395. n = os_read_file(thread_fd, &req,
  396. sizeof(struct io_thread_req *));
  397. if(n != sizeof(req)){
  398. if(n == -EAGAIN)
  399. break;
  400. printk(KERN_ERR "spurious interrupt in ubd_handler, "
  401. "err = %d\n", -n);
  402. return;
  403. }
  404. blk_end_request(req->req, 0, req->length);
  405. kfree(req);
  406. }
  407. reactivate_fd(thread_fd, UBD_IRQ);
  408. list_for_each_safe(list, next_ele, &restart){
  409. ubd = container_of(list, struct ubd, restart);
  410. list_del_init(&ubd->restart);
  411. spin_lock_irqsave(&ubd->lock, flags);
  412. do_ubd_request(ubd->queue);
  413. spin_unlock_irqrestore(&ubd->lock, flags);
  414. }
  415. }
  416. static irqreturn_t ubd_intr(int irq, void *dev)
  417. {
  418. ubd_handler();
  419. return IRQ_HANDLED;
  420. }
  421. /* Only changed by ubd_init, which is an initcall. */
  422. static int io_pid = -1;
  423. static void kill_io_thread(void)
  424. {
  425. if(io_pid != -1)
  426. os_kill_process(io_pid, 1);
  427. }
  428. __uml_exitcall(kill_io_thread);
  429. static inline int ubd_file_size(struct ubd *ubd_dev, __u64 *size_out)
  430. {
  431. char *file;
  432. int fd;
  433. int err;
  434. __u32 version;
  435. __u32 align;
  436. char *backing_file;
  437. time_t mtime;
  438. unsigned long long size;
  439. int sector_size;
  440. int bitmap_offset;
  441. if (ubd_dev->file && ubd_dev->cow.file) {
  442. file = ubd_dev->cow.file;
  443. goto out;
  444. }
  445. fd = os_open_file(ubd_dev->file, global_openflags, 0);
  446. if (fd < 0)
  447. return fd;
  448. err = read_cow_header(file_reader, &fd, &version, &backing_file, \
  449. &mtime, &size, &sector_size, &align, &bitmap_offset);
  450. os_close_file(fd);
  451. if(err == -EINVAL)
  452. file = ubd_dev->file;
  453. else
  454. file = backing_file;
  455. out:
  456. return os_file_size(file, size_out);
  457. }
  458. static int read_cow_bitmap(int fd, void *buf, int offset, int len)
  459. {
  460. int err;
  461. err = os_seek_file(fd, offset);
  462. if (err < 0)
  463. return err;
  464. err = os_read_file(fd, buf, len);
  465. if (err < 0)
  466. return err;
  467. return 0;
  468. }
  469. static int backing_file_mismatch(char *file, __u64 size, time_t mtime)
  470. {
  471. unsigned long modtime;
  472. unsigned long long actual;
  473. int err;
  474. err = os_file_modtime(file, &modtime);
  475. if (err < 0) {
  476. printk(KERN_ERR "Failed to get modification time of backing "
  477. "file \"%s\", err = %d\n", file, -err);
  478. return err;
  479. }
  480. err = os_file_size(file, &actual);
  481. if (err < 0) {
  482. printk(KERN_ERR "Failed to get size of backing file \"%s\", "
  483. "err = %d\n", file, -err);
  484. return err;
  485. }
  486. if (actual != size) {
  487. /*__u64 can be a long on AMD64 and with %lu GCC complains; so
  488. * the typecast.*/
  489. printk(KERN_ERR "Size mismatch (%llu vs %llu) of COW header "
  490. "vs backing file\n", (unsigned long long) size, actual);
  491. return -EINVAL;
  492. }
  493. if (modtime != mtime) {
  494. printk(KERN_ERR "mtime mismatch (%ld vs %ld) of COW header vs "
  495. "backing file\n", mtime, modtime);
  496. return -EINVAL;
  497. }
  498. return 0;
  499. }
  500. static int path_requires_switch(char *from_cmdline, char *from_cow, char *cow)
  501. {
  502. struct uml_stat buf1, buf2;
  503. int err;
  504. if (from_cmdline == NULL)
  505. return 0;
  506. if (!strcmp(from_cmdline, from_cow))
  507. return 0;
  508. err = os_stat_file(from_cmdline, &buf1);
  509. if (err < 0) {
  510. printk(KERN_ERR "Couldn't stat '%s', err = %d\n", from_cmdline,
  511. -err);
  512. return 0;
  513. }
  514. err = os_stat_file(from_cow, &buf2);
  515. if (err < 0) {
  516. printk(KERN_ERR "Couldn't stat '%s', err = %d\n", from_cow,
  517. -err);
  518. return 1;
  519. }
  520. if ((buf1.ust_dev == buf2.ust_dev) && (buf1.ust_ino == buf2.ust_ino))
  521. return 0;
  522. printk(KERN_ERR "Backing file mismatch - \"%s\" requested, "
  523. "\"%s\" specified in COW header of \"%s\"\n",
  524. from_cmdline, from_cow, cow);
  525. return 1;
  526. }
  527. static int open_ubd_file(char *file, struct openflags *openflags, int shared,
  528. char **backing_file_out, int *bitmap_offset_out,
  529. unsigned long *bitmap_len_out, int *data_offset_out,
  530. int *create_cow_out)
  531. {
  532. time_t mtime;
  533. unsigned long long size;
  534. __u32 version, align;
  535. char *backing_file;
  536. int fd, err, sectorsize, asked_switch, mode = 0644;
  537. fd = os_open_file(file, *openflags, mode);
  538. if (fd < 0) {
  539. if ((fd == -ENOENT) && (create_cow_out != NULL))
  540. *create_cow_out = 1;
  541. if (!openflags->w ||
  542. ((fd != -EROFS) && (fd != -EACCES)))
  543. return fd;
  544. openflags->w = 0;
  545. fd = os_open_file(file, *openflags, mode);
  546. if (fd < 0)
  547. return fd;
  548. }
  549. if (shared)
  550. printk(KERN_INFO "Not locking \"%s\" on the host\n", file);
  551. else {
  552. err = os_lock_file(fd, openflags->w);
  553. if (err < 0) {
  554. printk(KERN_ERR "Failed to lock '%s', err = %d\n",
  555. file, -err);
  556. goto out_close;
  557. }
  558. }
  559. /* Successful return case! */
  560. if (backing_file_out == NULL)
  561. return fd;
  562. err = read_cow_header(file_reader, &fd, &version, &backing_file, &mtime,
  563. &size, &sectorsize, &align, bitmap_offset_out);
  564. if (err && (*backing_file_out != NULL)) {
  565. printk(KERN_ERR "Failed to read COW header from COW file "
  566. "\"%s\", errno = %d\n", file, -err);
  567. goto out_close;
  568. }
  569. if (err)
  570. return fd;
  571. asked_switch = path_requires_switch(*backing_file_out, backing_file,
  572. file);
  573. /* Allow switching only if no mismatch. */
  574. if (asked_switch && !backing_file_mismatch(*backing_file_out, size,
  575. mtime)) {
  576. printk(KERN_ERR "Switching backing file to '%s'\n",
  577. *backing_file_out);
  578. err = write_cow_header(file, fd, *backing_file_out,
  579. sectorsize, align, &size);
  580. if (err) {
  581. printk(KERN_ERR "Switch failed, errno = %d\n", -err);
  582. goto out_close;
  583. }
  584. } else {
  585. *backing_file_out = backing_file;
  586. err = backing_file_mismatch(*backing_file_out, size, mtime);
  587. if (err)
  588. goto out_close;
  589. }
  590. cow_sizes(version, size, sectorsize, align, *bitmap_offset_out,
  591. bitmap_len_out, data_offset_out);
  592. return fd;
  593. out_close:
  594. os_close_file(fd);
  595. return err;
  596. }
  597. static int create_cow_file(char *cow_file, char *backing_file,
  598. struct openflags flags,
  599. int sectorsize, int alignment, int *bitmap_offset_out,
  600. unsigned long *bitmap_len_out, int *data_offset_out)
  601. {
  602. int err, fd;
  603. flags.c = 1;
  604. fd = open_ubd_file(cow_file, &flags, 0, NULL, NULL, NULL, NULL, NULL);
  605. if (fd < 0) {
  606. err = fd;
  607. printk(KERN_ERR "Open of COW file '%s' failed, errno = %d\n",
  608. cow_file, -err);
  609. goto out;
  610. }
  611. err = init_cow_file(fd, cow_file, backing_file, sectorsize, alignment,
  612. bitmap_offset_out, bitmap_len_out,
  613. data_offset_out);
  614. if (!err)
  615. return fd;
  616. os_close_file(fd);
  617. out:
  618. return err;
  619. }
  620. static void ubd_close_dev(struct ubd *ubd_dev)
  621. {
  622. os_close_file(ubd_dev->fd);
  623. if(ubd_dev->cow.file == NULL)
  624. return;
  625. os_close_file(ubd_dev->cow.fd);
  626. vfree(ubd_dev->cow.bitmap);
  627. ubd_dev->cow.bitmap = NULL;
  628. }
  629. static int ubd_open_dev(struct ubd *ubd_dev)
  630. {
  631. struct openflags flags;
  632. char **back_ptr;
  633. int err, create_cow, *create_ptr;
  634. int fd;
  635. ubd_dev->openflags = ubd_dev->boot_openflags;
  636. create_cow = 0;
  637. create_ptr = (ubd_dev->cow.file != NULL) ? &create_cow : NULL;
  638. back_ptr = ubd_dev->no_cow ? NULL : &ubd_dev->cow.file;
  639. fd = open_ubd_file(ubd_dev->file, &ubd_dev->openflags, ubd_dev->shared,
  640. back_ptr, &ubd_dev->cow.bitmap_offset,
  641. &ubd_dev->cow.bitmap_len, &ubd_dev->cow.data_offset,
  642. create_ptr);
  643. if((fd == -ENOENT) && create_cow){
  644. fd = create_cow_file(ubd_dev->file, ubd_dev->cow.file,
  645. ubd_dev->openflags, 1 << 9, PAGE_SIZE,
  646. &ubd_dev->cow.bitmap_offset,
  647. &ubd_dev->cow.bitmap_len,
  648. &ubd_dev->cow.data_offset);
  649. if(fd >= 0){
  650. printk(KERN_INFO "Creating \"%s\" as COW file for "
  651. "\"%s\"\n", ubd_dev->file, ubd_dev->cow.file);
  652. }
  653. }
  654. if(fd < 0){
  655. printk("Failed to open '%s', errno = %d\n", ubd_dev->file,
  656. -fd);
  657. return fd;
  658. }
  659. ubd_dev->fd = fd;
  660. if(ubd_dev->cow.file != NULL){
  661. blk_queue_max_hw_sectors(ubd_dev->queue, 8 * sizeof(long));
  662. err = -ENOMEM;
  663. ubd_dev->cow.bitmap = vmalloc(ubd_dev->cow.bitmap_len);
  664. if(ubd_dev->cow.bitmap == NULL){
  665. printk(KERN_ERR "Failed to vmalloc COW bitmap\n");
  666. goto error;
  667. }
  668. flush_tlb_kernel_vm();
  669. err = read_cow_bitmap(ubd_dev->fd, ubd_dev->cow.bitmap,
  670. ubd_dev->cow.bitmap_offset,
  671. ubd_dev->cow.bitmap_len);
  672. if(err < 0)
  673. goto error;
  674. flags = ubd_dev->openflags;
  675. flags.w = 0;
  676. err = open_ubd_file(ubd_dev->cow.file, &flags, ubd_dev->shared, NULL,
  677. NULL, NULL, NULL, NULL);
  678. if(err < 0) goto error;
  679. ubd_dev->cow.fd = err;
  680. }
  681. return 0;
  682. error:
  683. os_close_file(ubd_dev->fd);
  684. return err;
  685. }
  686. static void ubd_device_release(struct device *dev)
  687. {
  688. struct ubd *ubd_dev = dev_get_drvdata(dev);
  689. blk_cleanup_queue(ubd_dev->queue);
  690. *ubd_dev = ((struct ubd) DEFAULT_UBD);
  691. }
  692. static int ubd_disk_register(int major, u64 size, int unit,
  693. struct gendisk **disk_out)
  694. {
  695. struct gendisk *disk;
  696. disk = alloc_disk(1 << UBD_SHIFT);
  697. if(disk == NULL)
  698. return -ENOMEM;
  699. disk->major = major;
  700. disk->first_minor = unit << UBD_SHIFT;
  701. disk->fops = &ubd_blops;
  702. set_capacity(disk, size / 512);
  703. if (major == UBD_MAJOR)
  704. sprintf(disk->disk_name, "ubd%c", 'a' + unit);
  705. else
  706. sprintf(disk->disk_name, "ubd_fake%d", unit);
  707. /* sysfs register (not for ide fake devices) */
  708. if (major == UBD_MAJOR) {
  709. ubd_devs[unit].pdev.id = unit;
  710. ubd_devs[unit].pdev.name = DRIVER_NAME;
  711. ubd_devs[unit].pdev.dev.release = ubd_device_release;
  712. dev_set_drvdata(&ubd_devs[unit].pdev.dev, &ubd_devs[unit]);
  713. platform_device_register(&ubd_devs[unit].pdev);
  714. disk->driverfs_dev = &ubd_devs[unit].pdev.dev;
  715. }
  716. disk->private_data = &ubd_devs[unit];
  717. disk->queue = ubd_devs[unit].queue;
  718. add_disk(disk);
  719. *disk_out = disk;
  720. return 0;
  721. }
  722. #define ROUND_BLOCK(n) ((n + ((1 << 9) - 1)) & (-1 << 9))
  723. static int ubd_add(int n, char **error_out)
  724. {
  725. struct ubd *ubd_dev = &ubd_devs[n];
  726. int err = 0;
  727. if(ubd_dev->file == NULL)
  728. goto out;
  729. err = ubd_file_size(ubd_dev, &ubd_dev->size);
  730. if(err < 0){
  731. *error_out = "Couldn't determine size of device's file";
  732. goto out;
  733. }
  734. ubd_dev->size = ROUND_BLOCK(ubd_dev->size);
  735. INIT_LIST_HEAD(&ubd_dev->restart);
  736. sg_init_table(ubd_dev->sg, MAX_SG);
  737. err = -ENOMEM;
  738. ubd_dev->queue = blk_init_queue(do_ubd_request, &ubd_dev->lock);
  739. if (ubd_dev->queue == NULL) {
  740. *error_out = "Failed to initialize device queue";
  741. goto out;
  742. }
  743. ubd_dev->queue->queuedata = ubd_dev;
  744. blk_queue_max_segments(ubd_dev->queue, MAX_SG);
  745. err = ubd_disk_register(UBD_MAJOR, ubd_dev->size, n, &ubd_gendisk[n]);
  746. if(err){
  747. *error_out = "Failed to register device";
  748. goto out_cleanup;
  749. }
  750. if (fake_major != UBD_MAJOR)
  751. ubd_disk_register(fake_major, ubd_dev->size, n,
  752. &fake_gendisk[n]);
  753. /*
  754. * Perhaps this should also be under the "if (fake_major)" above
  755. * using the fake_disk->disk_name
  756. */
  757. if (fake_ide)
  758. make_ide_entries(ubd_gendisk[n]->disk_name);
  759. err = 0;
  760. out:
  761. return err;
  762. out_cleanup:
  763. blk_cleanup_queue(ubd_dev->queue);
  764. goto out;
  765. }
  766. static int ubd_config(char *str, char **error_out)
  767. {
  768. int n, ret;
  769. /* This string is possibly broken up and stored, so it's only
  770. * freed if ubd_setup_common fails, or if only general options
  771. * were set.
  772. */
  773. str = kstrdup(str, GFP_KERNEL);
  774. if (str == NULL) {
  775. *error_out = "Failed to allocate memory";
  776. return -ENOMEM;
  777. }
  778. ret = ubd_setup_common(str, &n, error_out);
  779. if (ret)
  780. goto err_free;
  781. if (n == -1) {
  782. ret = 0;
  783. goto err_free;
  784. }
  785. mutex_lock(&ubd_lock);
  786. ret = ubd_add(n, error_out);
  787. if (ret)
  788. ubd_devs[n].file = NULL;
  789. mutex_unlock(&ubd_lock);
  790. out:
  791. return ret;
  792. err_free:
  793. kfree(str);
  794. goto out;
  795. }
  796. static int ubd_get_config(char *name, char *str, int size, char **error_out)
  797. {
  798. struct ubd *ubd_dev;
  799. int n, len = 0;
  800. n = parse_unit(&name);
  801. if((n >= MAX_DEV) || (n < 0)){
  802. *error_out = "ubd_get_config : device number out of range";
  803. return -1;
  804. }
  805. ubd_dev = &ubd_devs[n];
  806. mutex_lock(&ubd_lock);
  807. if(ubd_dev->file == NULL){
  808. CONFIG_CHUNK(str, size, len, "", 1);
  809. goto out;
  810. }
  811. CONFIG_CHUNK(str, size, len, ubd_dev->file, 0);
  812. if(ubd_dev->cow.file != NULL){
  813. CONFIG_CHUNK(str, size, len, ",", 0);
  814. CONFIG_CHUNK(str, size, len, ubd_dev->cow.file, 1);
  815. }
  816. else CONFIG_CHUNK(str, size, len, "", 1);
  817. out:
  818. mutex_unlock(&ubd_lock);
  819. return len;
  820. }
  821. static int ubd_id(char **str, int *start_out, int *end_out)
  822. {
  823. int n;
  824. n = parse_unit(str);
  825. *start_out = 0;
  826. *end_out = MAX_DEV - 1;
  827. return n;
  828. }
  829. static int ubd_remove(int n, char **error_out)
  830. {
  831. struct gendisk *disk = ubd_gendisk[n];
  832. struct ubd *ubd_dev;
  833. int err = -ENODEV;
  834. mutex_lock(&ubd_lock);
  835. ubd_dev = &ubd_devs[n];
  836. if(ubd_dev->file == NULL)
  837. goto out;
  838. /* you cannot remove a open disk */
  839. err = -EBUSY;
  840. if(ubd_dev->count > 0)
  841. goto out;
  842. ubd_gendisk[n] = NULL;
  843. if(disk != NULL){
  844. del_gendisk(disk);
  845. put_disk(disk);
  846. }
  847. if(fake_gendisk[n] != NULL){
  848. del_gendisk(fake_gendisk[n]);
  849. put_disk(fake_gendisk[n]);
  850. fake_gendisk[n] = NULL;
  851. }
  852. err = 0;
  853. platform_device_unregister(&ubd_dev->pdev);
  854. out:
  855. mutex_unlock(&ubd_lock);
  856. return err;
  857. }
  858. /* All these are called by mconsole in process context and without
  859. * ubd-specific locks. The structure itself is const except for .list.
  860. */
  861. static struct mc_device ubd_mc = {
  862. .list = LIST_HEAD_INIT(ubd_mc.list),
  863. .name = "ubd",
  864. .config = ubd_config,
  865. .get_config = ubd_get_config,
  866. .id = ubd_id,
  867. .remove = ubd_remove,
  868. };
  869. static int __init ubd_mc_init(void)
  870. {
  871. mconsole_register_dev(&ubd_mc);
  872. return 0;
  873. }
  874. __initcall(ubd_mc_init);
  875. static int __init ubd0_init(void)
  876. {
  877. struct ubd *ubd_dev = &ubd_devs[0];
  878. mutex_lock(&ubd_lock);
  879. if(ubd_dev->file == NULL)
  880. ubd_dev->file = "root_fs";
  881. mutex_unlock(&ubd_lock);
  882. return 0;
  883. }
  884. __initcall(ubd0_init);
  885. /* Used in ubd_init, which is an initcall */
  886. static struct platform_driver ubd_driver = {
  887. .driver = {
  888. .name = DRIVER_NAME,
  889. },
  890. };
  891. static int __init ubd_init(void)
  892. {
  893. char *error;
  894. int i, err;
  895. if (register_blkdev(UBD_MAJOR, "ubd"))
  896. return -1;
  897. if (fake_major != UBD_MAJOR) {
  898. char name[sizeof("ubd_nnn\0")];
  899. snprintf(name, sizeof(name), "ubd_%d", fake_major);
  900. if (register_blkdev(fake_major, "ubd"))
  901. return -1;
  902. }
  903. platform_driver_register(&ubd_driver);
  904. mutex_lock(&ubd_lock);
  905. for (i = 0; i < MAX_DEV; i++){
  906. err = ubd_add(i, &error);
  907. if(err)
  908. printk(KERN_ERR "Failed to initialize ubd device %d :"
  909. "%s\n", i, error);
  910. }
  911. mutex_unlock(&ubd_lock);
  912. return 0;
  913. }
  914. late_initcall(ubd_init);
  915. static int __init ubd_driver_init(void){
  916. unsigned long stack;
  917. int err;
  918. /* Set by CONFIG_BLK_DEV_UBD_SYNC or ubd=sync.*/
  919. if(global_openflags.s){
  920. printk(KERN_INFO "ubd: Synchronous mode\n");
  921. /* Letting ubd=sync be like using ubd#s= instead of ubd#= is
  922. * enough. So use anyway the io thread. */
  923. }
  924. stack = alloc_stack(0, 0);
  925. io_pid = start_io_thread(stack + PAGE_SIZE - sizeof(void *),
  926. &thread_fd);
  927. if(io_pid < 0){
  928. printk(KERN_ERR
  929. "ubd : Failed to start I/O thread (errno = %d) - "
  930. "falling back to synchronous I/O\n", -io_pid);
  931. io_pid = -1;
  932. return 0;
  933. }
  934. err = um_request_irq(UBD_IRQ, thread_fd, IRQ_READ, ubd_intr,
  935. 0, "ubd", ubd_devs);
  936. if(err != 0)
  937. printk(KERN_ERR "um_request_irq failed - errno = %d\n", -err);
  938. return 0;
  939. }
  940. device_initcall(ubd_driver_init);
  941. static int ubd_open(struct block_device *bdev, fmode_t mode)
  942. {
  943. struct gendisk *disk = bdev->bd_disk;
  944. struct ubd *ubd_dev = disk->private_data;
  945. int err = 0;
  946. mutex_lock(&ubd_mutex);
  947. if(ubd_dev->count == 0){
  948. err = ubd_open_dev(ubd_dev);
  949. if(err){
  950. printk(KERN_ERR "%s: Can't open \"%s\": errno = %d\n",
  951. disk->disk_name, ubd_dev->file, -err);
  952. goto out;
  953. }
  954. }
  955. ubd_dev->count++;
  956. set_disk_ro(disk, !ubd_dev->openflags.w);
  957. /* This should no more be needed. And it didn't work anyway to exclude
  958. * read-write remounting of filesystems.*/
  959. /*if((mode & FMODE_WRITE) && !ubd_dev->openflags.w){
  960. if(--ubd_dev->count == 0) ubd_close_dev(ubd_dev);
  961. err = -EROFS;
  962. }*/
  963. out:
  964. mutex_unlock(&ubd_mutex);
  965. return err;
  966. }
  967. static int ubd_release(struct gendisk *disk, fmode_t mode)
  968. {
  969. struct ubd *ubd_dev = disk->private_data;
  970. mutex_lock(&ubd_mutex);
  971. if(--ubd_dev->count == 0)
  972. ubd_close_dev(ubd_dev);
  973. mutex_unlock(&ubd_mutex);
  974. return 0;
  975. }
  976. static void cowify_bitmap(__u64 io_offset, int length, unsigned long *cow_mask,
  977. __u64 *cow_offset, unsigned long *bitmap,
  978. __u64 bitmap_offset, unsigned long *bitmap_words,
  979. __u64 bitmap_len)
  980. {
  981. __u64 sector = io_offset >> 9;
  982. int i, update_bitmap = 0;
  983. for(i = 0; i < length >> 9; i++){
  984. if(cow_mask != NULL)
  985. ubd_set_bit(i, (unsigned char *) cow_mask);
  986. if(ubd_test_bit(sector + i, (unsigned char *) bitmap))
  987. continue;
  988. update_bitmap = 1;
  989. ubd_set_bit(sector + i, (unsigned char *) bitmap);
  990. }
  991. if(!update_bitmap)
  992. return;
  993. *cow_offset = sector / (sizeof(unsigned long) * 8);
  994. /* This takes care of the case where we're exactly at the end of the
  995. * device, and *cow_offset + 1 is off the end. So, just back it up
  996. * by one word. Thanks to Lynn Kerby for the fix and James McMechan
  997. * for the original diagnosis.
  998. */
  999. if (*cow_offset == (DIV_ROUND_UP(bitmap_len,
  1000. sizeof(unsigned long)) - 1))
  1001. (*cow_offset)--;
  1002. bitmap_words[0] = bitmap[*cow_offset];
  1003. bitmap_words[1] = bitmap[*cow_offset + 1];
  1004. *cow_offset *= sizeof(unsigned long);
  1005. *cow_offset += bitmap_offset;
  1006. }
  1007. static void cowify_req(struct io_thread_req *req, unsigned long *bitmap,
  1008. __u64 bitmap_offset, __u64 bitmap_len)
  1009. {
  1010. __u64 sector = req->offset >> 9;
  1011. int i;
  1012. if(req->length > (sizeof(req->sector_mask) * 8) << 9)
  1013. panic("Operation too long");
  1014. if(req->op == UBD_READ) {
  1015. for(i = 0; i < req->length >> 9; i++){
  1016. if(ubd_test_bit(sector + i, (unsigned char *) bitmap))
  1017. ubd_set_bit(i, (unsigned char *)
  1018. &req->sector_mask);
  1019. }
  1020. }
  1021. else cowify_bitmap(req->offset, req->length, &req->sector_mask,
  1022. &req->cow_offset, bitmap, bitmap_offset,
  1023. req->bitmap_words, bitmap_len);
  1024. }
  1025. /* Called with dev->lock held */
  1026. static void prepare_request(struct request *req, struct io_thread_req *io_req,
  1027. unsigned long long offset, int page_offset,
  1028. int len, struct page *page)
  1029. {
  1030. struct gendisk *disk = req->rq_disk;
  1031. struct ubd *ubd_dev = disk->private_data;
  1032. io_req->req = req;
  1033. io_req->fds[0] = (ubd_dev->cow.file != NULL) ? ubd_dev->cow.fd :
  1034. ubd_dev->fd;
  1035. io_req->fds[1] = ubd_dev->fd;
  1036. io_req->cow_offset = -1;
  1037. io_req->offset = offset;
  1038. io_req->length = len;
  1039. io_req->error = 0;
  1040. io_req->sector_mask = 0;
  1041. io_req->op = (rq_data_dir(req) == READ) ? UBD_READ : UBD_WRITE;
  1042. io_req->offsets[0] = 0;
  1043. io_req->offsets[1] = ubd_dev->cow.data_offset;
  1044. io_req->buffer = page_address(page) + page_offset;
  1045. io_req->sectorsize = 1 << 9;
  1046. if(ubd_dev->cow.file != NULL)
  1047. cowify_req(io_req, ubd_dev->cow.bitmap,
  1048. ubd_dev->cow.bitmap_offset, ubd_dev->cow.bitmap_len);
  1049. }
  1050. /* Called with dev->lock held */
  1051. static void do_ubd_request(struct request_queue *q)
  1052. {
  1053. struct io_thread_req *io_req;
  1054. struct request *req;
  1055. int n;
  1056. while(1){
  1057. struct ubd *dev = q->queuedata;
  1058. if(dev->end_sg == 0){
  1059. struct request *req = blk_fetch_request(q);
  1060. if(req == NULL)
  1061. return;
  1062. dev->request = req;
  1063. dev->rq_pos = blk_rq_pos(req);
  1064. dev->start_sg = 0;
  1065. dev->end_sg = blk_rq_map_sg(q, req, dev->sg);
  1066. }
  1067. req = dev->request;
  1068. while(dev->start_sg < dev->end_sg){
  1069. struct scatterlist *sg = &dev->sg[dev->start_sg];
  1070. io_req = kmalloc(sizeof(struct io_thread_req),
  1071. GFP_ATOMIC);
  1072. if(io_req == NULL){
  1073. if(list_empty(&dev->restart))
  1074. list_add(&dev->restart, &restart);
  1075. return;
  1076. }
  1077. prepare_request(req, io_req,
  1078. (unsigned long long)dev->rq_pos << 9,
  1079. sg->offset, sg->length, sg_page(sg));
  1080. n = os_write_file(thread_fd, &io_req,
  1081. sizeof(struct io_thread_req *));
  1082. if(n != sizeof(struct io_thread_req *)){
  1083. if(n != -EAGAIN)
  1084. printk("write to io thread failed, "
  1085. "errno = %d\n", -n);
  1086. else if(list_empty(&dev->restart))
  1087. list_add(&dev->restart, &restart);
  1088. kfree(io_req);
  1089. return;
  1090. }
  1091. dev->rq_pos += sg->length >> 9;
  1092. dev->start_sg++;
  1093. }
  1094. dev->end_sg = 0;
  1095. dev->request = NULL;
  1096. }
  1097. }
  1098. static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
  1099. {
  1100. struct ubd *ubd_dev = bdev->bd_disk->private_data;
  1101. geo->heads = 128;
  1102. geo->sectors = 32;
  1103. geo->cylinders = ubd_dev->size / (128 * 32 * 512);
  1104. return 0;
  1105. }
  1106. static int ubd_ioctl(struct block_device *bdev, fmode_t mode,
  1107. unsigned int cmd, unsigned long arg)
  1108. {
  1109. struct ubd *ubd_dev = bdev->bd_disk->private_data;
  1110. u16 ubd_id[ATA_ID_WORDS];
  1111. switch (cmd) {
  1112. struct cdrom_volctrl volume;
  1113. case HDIO_GET_IDENTITY:
  1114. memset(&ubd_id, 0, ATA_ID_WORDS * 2);
  1115. ubd_id[ATA_ID_CYLS] = ubd_dev->size / (128 * 32 * 512);
  1116. ubd_id[ATA_ID_HEADS] = 128;
  1117. ubd_id[ATA_ID_SECTORS] = 32;
  1118. if(copy_to_user((char __user *) arg, (char *) &ubd_id,
  1119. sizeof(ubd_id)))
  1120. return -EFAULT;
  1121. return 0;
  1122. case CDROMVOLREAD:
  1123. if(copy_from_user(&volume, (char __user *) arg, sizeof(volume)))
  1124. return -EFAULT;
  1125. volume.channel0 = 255;
  1126. volume.channel1 = 255;
  1127. volume.channel2 = 255;
  1128. volume.channel3 = 255;
  1129. if(copy_to_user((char __user *) arg, &volume, sizeof(volume)))
  1130. return -EFAULT;
  1131. return 0;
  1132. }
  1133. return -EINVAL;
  1134. }
  1135. static int update_bitmap(struct io_thread_req *req)
  1136. {
  1137. int n;
  1138. if(req->cow_offset == -1)
  1139. return 0;
  1140. n = os_seek_file(req->fds[1], req->cow_offset);
  1141. if(n < 0){
  1142. printk("do_io - bitmap lseek failed : err = %d\n", -n);
  1143. return 1;
  1144. }
  1145. n = os_write_file(req->fds[1], &req->bitmap_words,
  1146. sizeof(req->bitmap_words));
  1147. if(n != sizeof(req->bitmap_words)){
  1148. printk("do_io - bitmap update failed, err = %d fd = %d\n", -n,
  1149. req->fds[1]);
  1150. return 1;
  1151. }
  1152. return 0;
  1153. }
  1154. static void do_io(struct io_thread_req *req)
  1155. {
  1156. char *buf;
  1157. unsigned long len;
  1158. int n, nsectors, start, end, bit;
  1159. int err;
  1160. __u64 off;
  1161. nsectors = req->length / req->sectorsize;
  1162. start = 0;
  1163. do {
  1164. bit = ubd_test_bit(start, (unsigned char *) &req->sector_mask);
  1165. end = start;
  1166. while((end < nsectors) &&
  1167. (ubd_test_bit(end, (unsigned char *)
  1168. &req->sector_mask) == bit))
  1169. end++;
  1170. off = req->offset + req->offsets[bit] +
  1171. start * req->sectorsize;
  1172. len = (end - start) * req->sectorsize;
  1173. buf = &req->buffer[start * req->sectorsize];
  1174. err = os_seek_file(req->fds[bit], off);
  1175. if(err < 0){
  1176. printk("do_io - lseek failed : err = %d\n", -err);
  1177. req->error = 1;
  1178. return;
  1179. }
  1180. if(req->op == UBD_READ){
  1181. n = 0;
  1182. do {
  1183. buf = &buf[n];
  1184. len -= n;
  1185. n = os_read_file(req->fds[bit], buf, len);
  1186. if (n < 0) {
  1187. printk("do_io - read failed, err = %d "
  1188. "fd = %d\n", -n, req->fds[bit]);
  1189. req->error = 1;
  1190. return;
  1191. }
  1192. } while((n < len) && (n != 0));
  1193. if (n < len) memset(&buf[n], 0, len - n);
  1194. } else {
  1195. n = os_write_file(req->fds[bit], buf, len);
  1196. if(n != len){
  1197. printk("do_io - write failed err = %d "
  1198. "fd = %d\n", -n, req->fds[bit]);
  1199. req->error = 1;
  1200. return;
  1201. }
  1202. }
  1203. start = end;
  1204. } while(start < nsectors);
  1205. req->error = update_bitmap(req);
  1206. }
  1207. /* Changed in start_io_thread, which is serialized by being called only
  1208. * from ubd_init, which is an initcall.
  1209. */
  1210. int kernel_fd = -1;
  1211. /* Only changed by the io thread. XXX: currently unused. */
  1212. static int io_count = 0;
  1213. int io_thread(void *arg)
  1214. {
  1215. struct io_thread_req *req;
  1216. int n;
  1217. ignore_sigwinch_sig();
  1218. while(1){
  1219. n = os_read_file(kernel_fd, &req,
  1220. sizeof(struct io_thread_req *));
  1221. if(n != sizeof(struct io_thread_req *)){
  1222. if(n < 0)
  1223. printk("io_thread - read failed, fd = %d, "
  1224. "err = %d\n", kernel_fd, -n);
  1225. else {
  1226. printk("io_thread - short read, fd = %d, "
  1227. "length = %d\n", kernel_fd, n);
  1228. }
  1229. continue;
  1230. }
  1231. io_count++;
  1232. do_io(req);
  1233. n = os_write_file(kernel_fd, &req,
  1234. sizeof(struct io_thread_req *));
  1235. if(n != sizeof(struct io_thread_req *))
  1236. printk("io_thread - write failed, fd = %d, err = %d\n",
  1237. kernel_fd, -n);
  1238. }
  1239. return 0;
  1240. }