common.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * This program is free software; you can redistribute it and/or
  3. * modify it under the terms of the GNU General Public License version 2
  4. * as published by the Free Software Foundation; or, when distributed
  5. * separately from the Linux kernel or incorporated into other
  6. * software packages, subject to the following license:
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this source file (the "Software"), to deal in the Software without
  10. * restriction, including without limitation the rights to use, copy, modify,
  11. * merge, publish, distribute, sublicense, and/or sell copies of the Software,
  12. * and to permit persons to whom the Software is furnished to do so, subject to
  13. * the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  23. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  24. * IN THE SOFTWARE.
  25. */
  26. #ifndef __BLKIF__BACKEND__COMMON_H__
  27. #define __BLKIF__BACKEND__COMMON_H__
  28. #include <linux/version.h>
  29. #include <linux/module.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/slab.h>
  32. #include <linux/blkdev.h>
  33. #include <linux/vmalloc.h>
  34. #include <linux/wait.h>
  35. #include <asm/io.h>
  36. #include <asm/setup.h>
  37. #include <asm/pgalloc.h>
  38. #include <asm/hypervisor.h>
  39. #include <xen/blkif.h>
  40. #include <xen/grant_table.h>
  41. #include <xen/xenbus.h>
  42. #define DPRINTK(_f, _a...) \
  43. pr_debug("(file=%s, line=%d) " _f, \
  44. __FILE__ , __LINE__ , ## _a )
  45. struct vbd {
  46. blkif_vdev_t handle; /* what the domain refers to this vbd as */
  47. unsigned char readonly; /* Non-zero -> read-only */
  48. unsigned char type; /* VDISK_xxx */
  49. u32 pdevice; /* phys device that this vbd maps to */
  50. struct block_device *bdev;
  51. sector_t size; /* Cached size parameter */
  52. };
  53. struct backend_info;
  54. typedef struct blkif_st {
  55. /* Unique identifier for this interface. */
  56. domid_t domid;
  57. unsigned int handle;
  58. /* Physical parameters of the comms window. */
  59. unsigned int irq;
  60. /* Comms information. */
  61. enum blkif_protocol blk_protocol;
  62. union blkif_back_rings blk_rings;
  63. struct vm_struct *blk_ring_area;
  64. /* The VBD attached to this interface. */
  65. struct vbd vbd;
  66. /* Back pointer to the backend_info. */
  67. struct backend_info *be;
  68. /* Private fields. */
  69. spinlock_t blk_ring_lock;
  70. atomic_t refcnt;
  71. wait_queue_head_t wq;
  72. /* One thread per one blkif. */
  73. struct task_struct *xenblkd;
  74. unsigned int waiting_reqs;
  75. struct request_queue *plug;
  76. /* statistics */
  77. unsigned long st_print;
  78. int st_rd_req;
  79. int st_wr_req;
  80. int st_oo_req;
  81. int st_br_req;
  82. int st_rd_sect;
  83. int st_wr_sect;
  84. wait_queue_head_t waiting_to_free;
  85. grant_handle_t shmem_handle;
  86. grant_ref_t shmem_ref;
  87. } blkif_t;
  88. blkif_t *blkif_alloc(domid_t domid);
  89. void blkif_disconnect(blkif_t *blkif);
  90. void blkif_free(blkif_t *blkif);
  91. int blkif_map(blkif_t *blkif, unsigned long shared_page, unsigned int evtchn);
  92. void vbd_resize(blkif_t *blkif);
  93. #define blkif_get(_b) (atomic_inc(&(_b)->refcnt))
  94. #define blkif_put(_b) \
  95. do { \
  96. if (atomic_dec_and_test(&(_b)->refcnt)) \
  97. wake_up(&(_b)->waiting_to_free);\
  98. } while (0)
  99. /* Create a vbd. */
  100. int vbd_create(blkif_t *blkif, blkif_vdev_t vdevice, unsigned major,
  101. unsigned minor, int readonly, int cdrom);
  102. void vbd_free(struct vbd *vbd);
  103. unsigned long long vbd_size(struct vbd *vbd);
  104. unsigned int vbd_info(struct vbd *vbd);
  105. unsigned long vbd_secsize(struct vbd *vbd);
  106. struct phys_req {
  107. unsigned short dev;
  108. unsigned short nr_sects;
  109. struct block_device *bdev;
  110. blkif_sector_t sector_number;
  111. };
  112. int vbd_translate(struct phys_req *req, blkif_t *blkif, int operation);
  113. int blkif_interface_init(void);
  114. int blkif_xenbus_init(void);
  115. irqreturn_t blkif_be_int(int irq, void *dev_id);
  116. int blkif_schedule(void *arg);
  117. int blkback_barrier(struct xenbus_transaction xbt,
  118. struct backend_info *be, int state);
  119. struct xenbus_device *blkback_xenbus(struct backend_info *be);
  120. #endif /* __BLKIF__BACKEND__COMMON_H__ */