xenbus.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  1. /* Xenbus code for blkif backend
  2. Copyright (C) 2005 Rusty Russell <rusty@rustcorp.com.au>
  3. Copyright (C) 2005 XenSource Ltd
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. */
  13. #include <stdarg.h>
  14. #include <linux/module.h>
  15. #include <linux/kthread.h>
  16. #include <xen/events.h>
  17. #include <xen/grant_table.h>
  18. #include "common.h"
  19. struct backend_info {
  20. struct xenbus_device *dev;
  21. struct xen_blkif *blkif;
  22. struct xenbus_watch backend_watch;
  23. unsigned major;
  24. unsigned minor;
  25. char *mode;
  26. };
  27. static struct kmem_cache *xen_blkif_cachep;
  28. static void connect(struct backend_info *);
  29. static int connect_ring(struct backend_info *);
  30. static void backend_changed(struct xenbus_watch *, const char **,
  31. unsigned int);
  32. struct xenbus_device *xen_blkbk_xenbus(struct backend_info *be)
  33. {
  34. return be->dev;
  35. }
  36. static int blkback_name(struct xen_blkif *blkif, char *buf)
  37. {
  38. char *devpath, *devname;
  39. struct xenbus_device *dev = blkif->be->dev;
  40. devpath = xenbus_read(XBT_NIL, dev->nodename, "dev", NULL);
  41. if (IS_ERR(devpath))
  42. return PTR_ERR(devpath);
  43. devname = strstr(devpath, "/dev/");
  44. if (devname != NULL)
  45. devname += strlen("/dev/");
  46. else
  47. devname = devpath;
  48. snprintf(buf, TASK_COMM_LEN, "blkback.%d.%s", blkif->domid, devname);
  49. kfree(devpath);
  50. return 0;
  51. }
  52. static void xen_update_blkif_status(struct xen_blkif *blkif)
  53. {
  54. int err;
  55. char name[TASK_COMM_LEN];
  56. /* Not ready to connect? */
  57. if (!blkif->irq || !blkif->vbd.bdev)
  58. return;
  59. /* Already connected? */
  60. if (blkif->be->dev->state == XenbusStateConnected)
  61. return;
  62. /* Attempt to connect: exit if we fail to. */
  63. connect(blkif->be);
  64. if (blkif->be->dev->state != XenbusStateConnected)
  65. return;
  66. err = blkback_name(blkif, name);
  67. if (err) {
  68. xenbus_dev_error(blkif->be->dev, err, "get blkback dev name");
  69. return;
  70. }
  71. err = filemap_write_and_wait(blkif->vbd.bdev->bd_inode->i_mapping);
  72. if (err) {
  73. xenbus_dev_error(blkif->be->dev, err, "block flush");
  74. return;
  75. }
  76. invalidate_inode_pages2(blkif->vbd.bdev->bd_inode->i_mapping);
  77. blkif->xenblkd = kthread_run(xen_blkif_schedule, blkif, name);
  78. if (IS_ERR(blkif->xenblkd)) {
  79. err = PTR_ERR(blkif->xenblkd);
  80. blkif->xenblkd = NULL;
  81. xenbus_dev_error(blkif->be->dev, err, "start xenblkd");
  82. }
  83. }
  84. static struct xen_blkif *xen_blkif_alloc(domid_t domid)
  85. {
  86. struct xen_blkif *blkif;
  87. blkif = kmem_cache_alloc(xen_blkif_cachep, GFP_KERNEL);
  88. if (!blkif)
  89. return ERR_PTR(-ENOMEM);
  90. memset(blkif, 0, sizeof(*blkif));
  91. blkif->domid = domid;
  92. spin_lock_init(&blkif->blk_ring_lock);
  93. atomic_set(&blkif->refcnt, 1);
  94. init_waitqueue_head(&blkif->wq);
  95. init_completion(&blkif->drain_complete);
  96. atomic_set(&blkif->drain, 0);
  97. blkif->st_print = jiffies;
  98. init_waitqueue_head(&blkif->waiting_to_free);
  99. init_waitqueue_head(&blkif->shutdown_wq);
  100. return blkif;
  101. }
  102. static int xen_blkif_map(struct xen_blkif *blkif, unsigned long shared_page,
  103. unsigned int evtchn)
  104. {
  105. int err;
  106. /* Already connected through? */
  107. if (blkif->irq)
  108. return 0;
  109. err = xenbus_map_ring_valloc(blkif->be->dev, shared_page, &blkif->blk_ring);
  110. if (err < 0)
  111. return err;
  112. switch (blkif->blk_protocol) {
  113. case BLKIF_PROTOCOL_NATIVE:
  114. {
  115. struct blkif_sring *sring;
  116. sring = (struct blkif_sring *)blkif->blk_ring;
  117. BACK_RING_INIT(&blkif->blk_rings.native, sring, PAGE_SIZE);
  118. break;
  119. }
  120. case BLKIF_PROTOCOL_X86_32:
  121. {
  122. struct blkif_x86_32_sring *sring_x86_32;
  123. sring_x86_32 = (struct blkif_x86_32_sring *)blkif->blk_ring;
  124. BACK_RING_INIT(&blkif->blk_rings.x86_32, sring_x86_32, PAGE_SIZE);
  125. break;
  126. }
  127. case BLKIF_PROTOCOL_X86_64:
  128. {
  129. struct blkif_x86_64_sring *sring_x86_64;
  130. sring_x86_64 = (struct blkif_x86_64_sring *)blkif->blk_ring;
  131. BACK_RING_INIT(&blkif->blk_rings.x86_64, sring_x86_64, PAGE_SIZE);
  132. break;
  133. }
  134. default:
  135. BUG();
  136. }
  137. err = bind_interdomain_evtchn_to_irqhandler(blkif->domid, evtchn,
  138. xen_blkif_be_int, 0,
  139. "blkif-backend", blkif);
  140. if (err < 0) {
  141. xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
  142. blkif->blk_rings.common.sring = NULL;
  143. return err;
  144. }
  145. blkif->irq = err;
  146. return 0;
  147. }
  148. static void xen_blkif_disconnect(struct xen_blkif *blkif)
  149. {
  150. if (blkif->xenblkd) {
  151. kthread_stop(blkif->xenblkd);
  152. wake_up(&blkif->shutdown_wq);
  153. blkif->xenblkd = NULL;
  154. }
  155. atomic_dec(&blkif->refcnt);
  156. wait_event(blkif->waiting_to_free, atomic_read(&blkif->refcnt) == 0);
  157. atomic_inc(&blkif->refcnt);
  158. if (blkif->irq) {
  159. unbind_from_irqhandler(blkif->irq, blkif);
  160. blkif->irq = 0;
  161. }
  162. if (blkif->blk_rings.common.sring) {
  163. xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
  164. blkif->blk_rings.common.sring = NULL;
  165. }
  166. }
  167. void xen_blkif_free(struct xen_blkif *blkif)
  168. {
  169. if (!atomic_dec_and_test(&blkif->refcnt))
  170. BUG();
  171. kmem_cache_free(xen_blkif_cachep, blkif);
  172. }
  173. int __init xen_blkif_interface_init(void)
  174. {
  175. xen_blkif_cachep = kmem_cache_create("blkif_cache",
  176. sizeof(struct xen_blkif),
  177. 0, 0, NULL);
  178. if (!xen_blkif_cachep)
  179. return -ENOMEM;
  180. return 0;
  181. }
  182. /*
  183. * sysfs interface for VBD I/O requests
  184. */
  185. #define VBD_SHOW(name, format, args...) \
  186. static ssize_t show_##name(struct device *_dev, \
  187. struct device_attribute *attr, \
  188. char *buf) \
  189. { \
  190. struct xenbus_device *dev = to_xenbus_device(_dev); \
  191. struct backend_info *be = dev_get_drvdata(&dev->dev); \
  192. \
  193. return sprintf(buf, format, ##args); \
  194. } \
  195. static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
  196. VBD_SHOW(oo_req, "%d\n", be->blkif->st_oo_req);
  197. VBD_SHOW(rd_req, "%d\n", be->blkif->st_rd_req);
  198. VBD_SHOW(wr_req, "%d\n", be->blkif->st_wr_req);
  199. VBD_SHOW(f_req, "%d\n", be->blkif->st_f_req);
  200. VBD_SHOW(ds_req, "%d\n", be->blkif->st_ds_req);
  201. VBD_SHOW(rd_sect, "%d\n", be->blkif->st_rd_sect);
  202. VBD_SHOW(wr_sect, "%d\n", be->blkif->st_wr_sect);
  203. static struct attribute *xen_vbdstat_attrs[] = {
  204. &dev_attr_oo_req.attr,
  205. &dev_attr_rd_req.attr,
  206. &dev_attr_wr_req.attr,
  207. &dev_attr_f_req.attr,
  208. &dev_attr_ds_req.attr,
  209. &dev_attr_rd_sect.attr,
  210. &dev_attr_wr_sect.attr,
  211. NULL
  212. };
  213. static struct attribute_group xen_vbdstat_group = {
  214. .name = "statistics",
  215. .attrs = xen_vbdstat_attrs,
  216. };
  217. VBD_SHOW(physical_device, "%x:%x\n", be->major, be->minor);
  218. VBD_SHOW(mode, "%s\n", be->mode);
  219. int xenvbd_sysfs_addif(struct xenbus_device *dev)
  220. {
  221. int error;
  222. error = device_create_file(&dev->dev, &dev_attr_physical_device);
  223. if (error)
  224. goto fail1;
  225. error = device_create_file(&dev->dev, &dev_attr_mode);
  226. if (error)
  227. goto fail2;
  228. error = sysfs_create_group(&dev->dev.kobj, &xen_vbdstat_group);
  229. if (error)
  230. goto fail3;
  231. return 0;
  232. fail3: sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
  233. fail2: device_remove_file(&dev->dev, &dev_attr_mode);
  234. fail1: device_remove_file(&dev->dev, &dev_attr_physical_device);
  235. return error;
  236. }
  237. void xenvbd_sysfs_delif(struct xenbus_device *dev)
  238. {
  239. sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
  240. device_remove_file(&dev->dev, &dev_attr_mode);
  241. device_remove_file(&dev->dev, &dev_attr_physical_device);
  242. }
  243. static void xen_vbd_free(struct xen_vbd *vbd)
  244. {
  245. if (vbd->bdev)
  246. blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
  247. vbd->bdev = NULL;
  248. }
  249. static int xen_vbd_create(struct xen_blkif *blkif, blkif_vdev_t handle,
  250. unsigned major, unsigned minor, int readonly,
  251. int cdrom)
  252. {
  253. struct xen_vbd *vbd;
  254. struct block_device *bdev;
  255. struct request_queue *q;
  256. vbd = &blkif->vbd;
  257. vbd->handle = handle;
  258. vbd->readonly = readonly;
  259. vbd->type = 0;
  260. vbd->pdevice = MKDEV(major, minor);
  261. bdev = blkdev_get_by_dev(vbd->pdevice, vbd->readonly ?
  262. FMODE_READ : FMODE_WRITE, NULL);
  263. if (IS_ERR(bdev)) {
  264. DPRINTK("xen_vbd_create: device %08x could not be opened.\n",
  265. vbd->pdevice);
  266. return -ENOENT;
  267. }
  268. vbd->bdev = bdev;
  269. if (vbd->bdev->bd_disk == NULL) {
  270. DPRINTK("xen_vbd_create: device %08x doesn't exist.\n",
  271. vbd->pdevice);
  272. xen_vbd_free(vbd);
  273. return -ENOENT;
  274. }
  275. vbd->size = vbd_sz(vbd);
  276. if (vbd->bdev->bd_disk->flags & GENHD_FL_CD || cdrom)
  277. vbd->type |= VDISK_CDROM;
  278. if (vbd->bdev->bd_disk->flags & GENHD_FL_REMOVABLE)
  279. vbd->type |= VDISK_REMOVABLE;
  280. q = bdev_get_queue(bdev);
  281. if (q && q->flush_flags)
  282. vbd->flush_support = true;
  283. if (q && blk_queue_secdiscard(q))
  284. vbd->discard_secure = true;
  285. DPRINTK("Successful creation of handle=%04x (dom=%u)\n",
  286. handle, blkif->domid);
  287. return 0;
  288. }
  289. static int xen_blkbk_remove(struct xenbus_device *dev)
  290. {
  291. struct backend_info *be = dev_get_drvdata(&dev->dev);
  292. DPRINTK("");
  293. if (be->major || be->minor)
  294. xenvbd_sysfs_delif(dev);
  295. if (be->backend_watch.node) {
  296. unregister_xenbus_watch(&be->backend_watch);
  297. kfree(be->backend_watch.node);
  298. be->backend_watch.node = NULL;
  299. }
  300. if (be->blkif) {
  301. xen_blkif_disconnect(be->blkif);
  302. xen_vbd_free(&be->blkif->vbd);
  303. xen_blkif_free(be->blkif);
  304. be->blkif = NULL;
  305. }
  306. kfree(be->mode);
  307. kfree(be);
  308. dev_set_drvdata(&dev->dev, NULL);
  309. return 0;
  310. }
  311. int xen_blkbk_flush_diskcache(struct xenbus_transaction xbt,
  312. struct backend_info *be, int state)
  313. {
  314. struct xenbus_device *dev = be->dev;
  315. int err;
  316. err = xenbus_printf(xbt, dev->nodename, "feature-flush-cache",
  317. "%d", state);
  318. if (err)
  319. dev_warn(&dev->dev, "writing feature-flush-cache (%d)", err);
  320. return err;
  321. }
  322. static void xen_blkbk_discard(struct xenbus_transaction xbt, struct backend_info *be)
  323. {
  324. struct xenbus_device *dev = be->dev;
  325. struct xen_blkif *blkif = be->blkif;
  326. int err;
  327. int state = 0;
  328. struct block_device *bdev = be->blkif->vbd.bdev;
  329. struct request_queue *q = bdev_get_queue(bdev);
  330. if (blk_queue_discard(q)) {
  331. err = xenbus_printf(xbt, dev->nodename,
  332. "discard-granularity", "%u",
  333. q->limits.discard_granularity);
  334. if (err) {
  335. dev_warn(&dev->dev, "writing discard-granularity (%d)", err);
  336. return;
  337. }
  338. err = xenbus_printf(xbt, dev->nodename,
  339. "discard-alignment", "%u",
  340. q->limits.discard_alignment);
  341. if (err) {
  342. dev_warn(&dev->dev, "writing discard-alignment (%d)", err);
  343. return;
  344. }
  345. state = 1;
  346. /* Optional. */
  347. err = xenbus_printf(xbt, dev->nodename,
  348. "discard-secure", "%d",
  349. blkif->vbd.discard_secure);
  350. if (err) {
  351. dev_warn(&dev->dev, "writing discard-secure (%d)", err);
  352. return;
  353. }
  354. }
  355. err = xenbus_printf(xbt, dev->nodename, "feature-discard",
  356. "%d", state);
  357. if (err)
  358. dev_warn(&dev->dev, "writing feature-discard (%d)", err);
  359. }
  360. int xen_blkbk_barrier(struct xenbus_transaction xbt,
  361. struct backend_info *be, int state)
  362. {
  363. struct xenbus_device *dev = be->dev;
  364. int err;
  365. err = xenbus_printf(xbt, dev->nodename, "feature-barrier",
  366. "%d", state);
  367. if (err)
  368. dev_warn(&dev->dev, "writing feature-barrier (%d)", err);
  369. return err;
  370. }
  371. /*
  372. * Entry point to this code when a new device is created. Allocate the basic
  373. * structures, and watch the store waiting for the hotplug scripts to tell us
  374. * the device's physical major and minor numbers. Switch to InitWait.
  375. */
  376. static int xen_blkbk_probe(struct xenbus_device *dev,
  377. const struct xenbus_device_id *id)
  378. {
  379. int err;
  380. struct backend_info *be = kzalloc(sizeof(struct backend_info),
  381. GFP_KERNEL);
  382. if (!be) {
  383. xenbus_dev_fatal(dev, -ENOMEM,
  384. "allocating backend structure");
  385. return -ENOMEM;
  386. }
  387. be->dev = dev;
  388. dev_set_drvdata(&dev->dev, be);
  389. be->blkif = xen_blkif_alloc(dev->otherend_id);
  390. if (IS_ERR(be->blkif)) {
  391. err = PTR_ERR(be->blkif);
  392. be->blkif = NULL;
  393. xenbus_dev_fatal(dev, err, "creating block interface");
  394. goto fail;
  395. }
  396. /* setup back pointer */
  397. be->blkif->be = be;
  398. err = xenbus_watch_pathfmt(dev, &be->backend_watch, backend_changed,
  399. "%s/%s", dev->nodename, "physical-device");
  400. if (err)
  401. goto fail;
  402. err = xenbus_switch_state(dev, XenbusStateInitWait);
  403. if (err)
  404. goto fail;
  405. return 0;
  406. fail:
  407. DPRINTK("failed");
  408. xen_blkbk_remove(dev);
  409. return err;
  410. }
  411. /*
  412. * Callback received when the hotplug scripts have placed the physical-device
  413. * node. Read it and the mode node, and create a vbd. If the frontend is
  414. * ready, connect.
  415. */
  416. static void backend_changed(struct xenbus_watch *watch,
  417. const char **vec, unsigned int len)
  418. {
  419. int err;
  420. unsigned major;
  421. unsigned minor;
  422. struct backend_info *be
  423. = container_of(watch, struct backend_info, backend_watch);
  424. struct xenbus_device *dev = be->dev;
  425. int cdrom = 0;
  426. unsigned long handle;
  427. char *device_type;
  428. DPRINTK("");
  429. err = xenbus_scanf(XBT_NIL, dev->nodename, "physical-device", "%x:%x",
  430. &major, &minor);
  431. if (XENBUS_EXIST_ERR(err)) {
  432. /*
  433. * Since this watch will fire once immediately after it is
  434. * registered, we expect this. Ignore it, and wait for the
  435. * hotplug scripts.
  436. */
  437. return;
  438. }
  439. if (err != 2) {
  440. xenbus_dev_fatal(dev, err, "reading physical-device");
  441. return;
  442. }
  443. if (be->major | be->minor) {
  444. if (be->major != major || be->minor != minor)
  445. pr_warn(DRV_PFX "changing physical device (from %x:%x to %x:%x) not supported.\n",
  446. be->major, be->minor, major, minor);
  447. return;
  448. }
  449. be->mode = xenbus_read(XBT_NIL, dev->nodename, "mode", NULL);
  450. if (IS_ERR(be->mode)) {
  451. err = PTR_ERR(be->mode);
  452. be->mode = NULL;
  453. xenbus_dev_fatal(dev, err, "reading mode");
  454. return;
  455. }
  456. device_type = xenbus_read(XBT_NIL, dev->otherend, "device-type", NULL);
  457. if (!IS_ERR(device_type)) {
  458. cdrom = strcmp(device_type, "cdrom") == 0;
  459. kfree(device_type);
  460. }
  461. /* Front end dir is a number, which is used as the handle. */
  462. err = strict_strtoul(strrchr(dev->otherend, '/') + 1, 0, &handle);
  463. if (err)
  464. return;
  465. be->major = major;
  466. be->minor = minor;
  467. err = xen_vbd_create(be->blkif, handle, major, minor,
  468. !strchr(be->mode, 'w'), cdrom);
  469. if (err)
  470. xenbus_dev_fatal(dev, err, "creating vbd structure");
  471. else {
  472. err = xenvbd_sysfs_addif(dev);
  473. if (err) {
  474. xen_vbd_free(&be->blkif->vbd);
  475. xenbus_dev_fatal(dev, err, "creating sysfs entries");
  476. }
  477. }
  478. if (err) {
  479. kfree(be->mode);
  480. be->mode = NULL;
  481. be->major = 0;
  482. be->minor = 0;
  483. } else {
  484. /* We're potentially connected now */
  485. xen_update_blkif_status(be->blkif);
  486. }
  487. }
  488. /*
  489. * Callback received when the frontend's state changes.
  490. */
  491. static void frontend_changed(struct xenbus_device *dev,
  492. enum xenbus_state frontend_state)
  493. {
  494. struct backend_info *be = dev_get_drvdata(&dev->dev);
  495. int err;
  496. DPRINTK("%s", xenbus_strstate(frontend_state));
  497. switch (frontend_state) {
  498. case XenbusStateInitialising:
  499. if (dev->state == XenbusStateClosed) {
  500. pr_info(DRV_PFX "%s: prepare for reconnect\n",
  501. dev->nodename);
  502. xenbus_switch_state(dev, XenbusStateInitWait);
  503. }
  504. break;
  505. case XenbusStateInitialised:
  506. case XenbusStateConnected:
  507. /*
  508. * Ensure we connect even when two watches fire in
  509. * close succession and we miss the intermediate value
  510. * of frontend_state.
  511. */
  512. if (dev->state == XenbusStateConnected)
  513. break;
  514. /*
  515. * Enforce precondition before potential leak point.
  516. * xen_blkif_disconnect() is idempotent.
  517. */
  518. xen_blkif_disconnect(be->blkif);
  519. err = connect_ring(be);
  520. if (err)
  521. break;
  522. xen_update_blkif_status(be->blkif);
  523. break;
  524. case XenbusStateClosing:
  525. xenbus_switch_state(dev, XenbusStateClosing);
  526. break;
  527. case XenbusStateClosed:
  528. xen_blkif_disconnect(be->blkif);
  529. xenbus_switch_state(dev, XenbusStateClosed);
  530. if (xenbus_dev_is_online(dev))
  531. break;
  532. /* fall through if not online */
  533. case XenbusStateUnknown:
  534. /* implies xen_blkif_disconnect() via xen_blkbk_remove() */
  535. device_unregister(&dev->dev);
  536. break;
  537. default:
  538. xenbus_dev_fatal(dev, -EINVAL, "saw state %d at frontend",
  539. frontend_state);
  540. break;
  541. }
  542. }
  543. /* ** Connection ** */
  544. /*
  545. * Write the physical details regarding the block device to the store, and
  546. * switch to Connected state.
  547. */
  548. static void connect(struct backend_info *be)
  549. {
  550. struct xenbus_transaction xbt;
  551. int err;
  552. struct xenbus_device *dev = be->dev;
  553. DPRINTK("%s", dev->otherend);
  554. /* Supply the information about the device the frontend needs */
  555. again:
  556. err = xenbus_transaction_start(&xbt);
  557. if (err) {
  558. xenbus_dev_fatal(dev, err, "starting transaction");
  559. return;
  560. }
  561. /* If we can't advertise it is OK. */
  562. xen_blkbk_flush_diskcache(xbt, be, be->blkif->vbd.flush_support);
  563. xen_blkbk_discard(xbt, be);
  564. xen_blkbk_barrier(xbt, be, be->blkif->vbd.flush_support);
  565. err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
  566. (unsigned long long)vbd_sz(&be->blkif->vbd));
  567. if (err) {
  568. xenbus_dev_fatal(dev, err, "writing %s/sectors",
  569. dev->nodename);
  570. goto abort;
  571. }
  572. /* FIXME: use a typename instead */
  573. err = xenbus_printf(xbt, dev->nodename, "info", "%u",
  574. be->blkif->vbd.type |
  575. (be->blkif->vbd.readonly ? VDISK_READONLY : 0));
  576. if (err) {
  577. xenbus_dev_fatal(dev, err, "writing %s/info",
  578. dev->nodename);
  579. goto abort;
  580. }
  581. err = xenbus_printf(xbt, dev->nodename, "sector-size", "%lu",
  582. (unsigned long)
  583. bdev_logical_block_size(be->blkif->vbd.bdev));
  584. if (err) {
  585. xenbus_dev_fatal(dev, err, "writing %s/sector-size",
  586. dev->nodename);
  587. goto abort;
  588. }
  589. err = xenbus_transaction_end(xbt, 0);
  590. if (err == -EAGAIN)
  591. goto again;
  592. if (err)
  593. xenbus_dev_fatal(dev, err, "ending transaction");
  594. err = xenbus_switch_state(dev, XenbusStateConnected);
  595. if (err)
  596. xenbus_dev_fatal(dev, err, "%s: switching to Connected state",
  597. dev->nodename);
  598. return;
  599. abort:
  600. xenbus_transaction_end(xbt, 1);
  601. }
  602. static int connect_ring(struct backend_info *be)
  603. {
  604. struct xenbus_device *dev = be->dev;
  605. unsigned long ring_ref;
  606. unsigned int evtchn;
  607. char protocol[64] = "";
  608. int err;
  609. DPRINTK("%s", dev->otherend);
  610. err = xenbus_gather(XBT_NIL, dev->otherend, "ring-ref", "%lu",
  611. &ring_ref, "event-channel", "%u", &evtchn, NULL);
  612. if (err) {
  613. xenbus_dev_fatal(dev, err,
  614. "reading %s/ring-ref and event-channel",
  615. dev->otherend);
  616. return err;
  617. }
  618. be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
  619. err = xenbus_gather(XBT_NIL, dev->otherend, "protocol",
  620. "%63s", protocol, NULL);
  621. if (err)
  622. strcpy(protocol, "unspecified, assuming native");
  623. else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_NATIVE))
  624. be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
  625. else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_32))
  626. be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_32;
  627. else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_64))
  628. be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_64;
  629. else {
  630. xenbus_dev_fatal(dev, err, "unknown fe protocol %s", protocol);
  631. return -1;
  632. }
  633. pr_info(DRV_PFX "ring-ref %ld, event-channel %d, protocol %d (%s)\n",
  634. ring_ref, evtchn, be->blkif->blk_protocol, protocol);
  635. /* Map the shared frame, irq etc. */
  636. err = xen_blkif_map(be->blkif, ring_ref, evtchn);
  637. if (err) {
  638. xenbus_dev_fatal(dev, err, "mapping ring-ref %lu port %u",
  639. ring_ref, evtchn);
  640. return err;
  641. }
  642. return 0;
  643. }
  644. /* ** Driver Registration ** */
  645. static const struct xenbus_device_id xen_blkbk_ids[] = {
  646. { "vbd" },
  647. { "" }
  648. };
  649. static DEFINE_XENBUS_DRIVER(xen_blkbk, ,
  650. .probe = xen_blkbk_probe,
  651. .remove = xen_blkbk_remove,
  652. .otherend_changed = frontend_changed
  653. );
  654. int xen_blkif_xenbus_init(void)
  655. {
  656. return xenbus_register_backend(&xen_blkbk_driver);
  657. }