vbd.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /******************************************************************************
  2. * blkback/vbd.c
  3. *
  4. * Routines for managing virtual block devices (VBDs).
  5. *
  6. * Copyright (c) 2003-2005, Keir Fraser & Steve Hand
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License version 2
  10. * as published by the Free Software Foundation; or, when distributed
  11. * separately from the Linux kernel or incorporated into other
  12. * software packages, subject to the following license:
  13. *
  14. * Permission is hereby granted, free of charge, to any person obtaining a copy
  15. * of this source file (the "Software"), to deal in the Software without
  16. * restriction, including without limitation the rights to use, copy, modify,
  17. * merge, publish, distribute, sublicense, and/or sell copies of the Software,
  18. * and to permit persons to whom the Software is furnished to do so, subject to
  19. * the following conditions:
  20. *
  21. * The above copyright notice and this permission notice shall be included in
  22. * all copies or substantial portions of the Software.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  25. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  26. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  27. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  28. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  29. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  30. * IN THE SOFTWARE.
  31. */
  32. #include "common.h"
  33. #define vbd_sz(_v) ((_v)->bdev->bd_part ? \
  34. (_v)->bdev->bd_part->nr_sects : get_capacity((_v)->bdev->bd_disk))
  35. unsigned long long vbd_size(struct vbd *vbd)
  36. {
  37. return vbd_sz(vbd);
  38. }
  39. unsigned int vbd_info(struct vbd *vbd)
  40. {
  41. return vbd->type | (vbd->readonly?VDISK_READONLY:0);
  42. }
  43. unsigned long vbd_secsize(struct vbd *vbd)
  44. {
  45. return bdev_logical_block_size(vbd->bdev);
  46. }
  47. int vbd_create(blkif_t *blkif, blkif_vdev_t handle, unsigned major,
  48. unsigned minor, int readonly, int cdrom)
  49. {
  50. struct vbd *vbd;
  51. struct block_device *bdev;
  52. vbd = &blkif->vbd;
  53. vbd->handle = handle;
  54. vbd->readonly = readonly;
  55. vbd->type = 0;
  56. vbd->pdevice = MKDEV(major, minor);
  57. bdev = open_by_devnum(vbd->pdevice,
  58. vbd->readonly ? FMODE_READ : FMODE_WRITE);
  59. if (IS_ERR(bdev)) {
  60. DPRINTK("vbd_creat: device %08x could not be opened.\n",
  61. vbd->pdevice);
  62. return -ENOENT;
  63. }
  64. vbd->bdev = bdev;
  65. vbd->size = vbd_size(vbd);
  66. if (vbd->bdev->bd_disk == NULL) {
  67. DPRINTK("vbd_creat: device %08x doesn't exist.\n",
  68. vbd->pdevice);
  69. vbd_free(vbd);
  70. return -ENOENT;
  71. }
  72. if (vbd->bdev->bd_disk->flags & GENHD_FL_CD || cdrom)
  73. vbd->type |= VDISK_CDROM;
  74. if (vbd->bdev->bd_disk->flags & GENHD_FL_REMOVABLE)
  75. vbd->type |= VDISK_REMOVABLE;
  76. DPRINTK("Successful creation of handle=%04x (dom=%u)\n",
  77. handle, blkif->domid);
  78. return 0;
  79. }
  80. void vbd_free(struct vbd *vbd)
  81. {
  82. if (vbd->bdev)
  83. blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
  84. vbd->bdev = NULL;
  85. }
  86. int vbd_translate(struct phys_req *req, blkif_t *blkif, int operation)
  87. {
  88. struct vbd *vbd = &blkif->vbd;
  89. int rc = -EACCES;
  90. if ((operation != READ) && vbd->readonly)
  91. goto out;
  92. if (unlikely((req->sector_number + req->nr_sects) > vbd_sz(vbd)))
  93. goto out;
  94. req->dev = vbd->pdevice;
  95. req->bdev = vbd->bdev;
  96. rc = 0;
  97. out:
  98. return rc;
  99. }
  100. void vbd_resize(blkif_t *blkif)
  101. {
  102. struct vbd *vbd = &blkif->vbd;
  103. struct xenbus_transaction xbt;
  104. int err;
  105. struct xenbus_device *dev = blkif->be->dev;
  106. unsigned long long new_size = vbd_size(vbd);
  107. printk(KERN_INFO "VBD Resize: new size %Lu\n", new_size);
  108. vbd->size = new_size;
  109. again:
  110. err = xenbus_transaction_start(&xbt);
  111. if (err) {
  112. printk(KERN_WARNING "Error starting transaction");
  113. return;
  114. }
  115. err = xenbus_printf(xbt, dev->nodename, "sectors", "%Lu",
  116. vbd_size(vbd));
  117. if (err) {
  118. printk(KERN_WARNING "Error writing new size");
  119. goto abort;
  120. }
  121. /*
  122. * Write the current state; we will use this to synchronize
  123. * the front-end. If the current state is "connected" the
  124. * front-end will get the new size information online.
  125. */
  126. err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
  127. if (err) {
  128. printk(KERN_WARNING "Error writing the state");
  129. goto abort;
  130. }
  131. err = xenbus_transaction_end(xbt, 0);
  132. if (err == -EAGAIN)
  133. goto again;
  134. if (err)
  135. printk(KERN_WARNING "Error ending transaction");
  136. abort:
  137. xenbus_transaction_end(xbt, 1);
  138. }