vbd.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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_hardsect_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. if (vbd->bdev->bd_disk == NULL) {
  66. DPRINTK("vbd_creat: device %08x doesn't exist.\n",
  67. vbd->pdevice);
  68. vbd_free(vbd);
  69. return -ENOENT;
  70. }
  71. if (vbd->bdev->bd_disk->flags & GENHD_FL_CD || cdrom)
  72. vbd->type |= VDISK_CDROM;
  73. if (vbd->bdev->bd_disk->flags & GENHD_FL_REMOVABLE)
  74. vbd->type |= VDISK_REMOVABLE;
  75. DPRINTK("Successful creation of handle=%04x (dom=%u)\n",
  76. handle, blkif->domid);
  77. return 0;
  78. }
  79. void vbd_free(struct vbd *vbd)
  80. {
  81. if (vbd->bdev)
  82. blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
  83. vbd->bdev = NULL;
  84. }
  85. int vbd_translate(struct phys_req *req, blkif_t *blkif, int operation)
  86. {
  87. struct vbd *vbd = &blkif->vbd;
  88. int rc = -EACCES;
  89. if ((operation != READ) && vbd->readonly)
  90. goto out;
  91. if (unlikely((req->sector_number + req->nr_sects) > vbd_sz(vbd)))
  92. goto out;
  93. req->dev = vbd->pdevice;
  94. req->bdev = vbd->bdev;
  95. rc = 0;
  96. out:
  97. return rc;
  98. }