interface.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /******************************************************************************
  2. * Block-device interface management.
  3. *
  4. * Copyright (c) 2004, Keir Fraser
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License version 2
  8. * as published by the Free Software Foundation; or, when distributed
  9. * separately from the Linux kernel or incorporated into other
  10. * software packages, subject to the following license:
  11. *
  12. * Permission is hereby granted, free of charge, to any person obtaining a copy
  13. * of this source file (the "Software"), to deal in the Software without
  14. * restriction, including without limitation the rights to use, copy, modify,
  15. * merge, publish, distribute, sublicense, and/or sell copies of the Software,
  16. * and to permit persons to whom the Software is furnished to do so, subject to
  17. * the following conditions:
  18. *
  19. * The above copyright notice and this permission notice shall be included in
  20. * all copies or substantial portions of the Software.
  21. *
  22. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  23. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  24. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  25. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  26. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  27. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  28. * IN THE SOFTWARE.
  29. */
  30. #include "common.h"
  31. #include <xen/events.h>
  32. #include <xen/grant_table.h>
  33. #include <linux/kthread.h>
  34. static struct kmem_cache *blkif_cachep;
  35. blkif_t *blkif_alloc(domid_t domid)
  36. {
  37. blkif_t *blkif;
  38. blkif = kmem_cache_alloc(blkif_cachep, GFP_KERNEL);
  39. if (!blkif)
  40. return ERR_PTR(-ENOMEM);
  41. memset(blkif, 0, sizeof(*blkif));
  42. blkif->domid = domid;
  43. spin_lock_init(&blkif->blk_ring_lock);
  44. atomic_set(&blkif->refcnt, 1);
  45. init_waitqueue_head(&blkif->wq);
  46. blkif->st_print = jiffies;
  47. init_waitqueue_head(&blkif->waiting_to_free);
  48. return blkif;
  49. }
  50. static int map_frontend_page(blkif_t *blkif, unsigned long shared_page)
  51. {
  52. struct gnttab_map_grant_ref op;
  53. gnttab_set_map_op(&op, (unsigned long)blkif->blk_ring_area->addr,
  54. GNTMAP_host_map, shared_page, blkif->domid);
  55. if (HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, &op, 1))
  56. BUG();
  57. if (op.status) {
  58. DPRINTK(" Grant table operation failure !\n");
  59. return op.status;
  60. }
  61. blkif->shmem_ref = shared_page;
  62. blkif->shmem_handle = op.handle;
  63. return 0;
  64. }
  65. static void unmap_frontend_page(blkif_t *blkif)
  66. {
  67. struct gnttab_unmap_grant_ref op;
  68. gnttab_set_unmap_op(&op, (unsigned long)blkif->blk_ring_area->addr,
  69. GNTMAP_host_map, blkif->shmem_handle);
  70. if (HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, &op, 1))
  71. BUG();
  72. }
  73. int blkif_map(blkif_t *blkif, unsigned long shared_page, unsigned int evtchn)
  74. {
  75. int err;
  76. /* Already connected through? */
  77. if (blkif->irq)
  78. return 0;
  79. if ( (blkif->blk_ring_area = alloc_vm_area(PAGE_SIZE)) == NULL )
  80. return -ENOMEM;
  81. err = map_frontend_page(blkif, shared_page);
  82. if (err) {
  83. free_vm_area(blkif->blk_ring_area);
  84. return err;
  85. }
  86. switch (blkif->blk_protocol) {
  87. case BLKIF_PROTOCOL_NATIVE:
  88. {
  89. struct blkif_sring *sring;
  90. sring = (struct blkif_sring *)blkif->blk_ring_area->addr;
  91. BACK_RING_INIT(&blkif->blk_rings.native, sring, PAGE_SIZE);
  92. break;
  93. }
  94. case BLKIF_PROTOCOL_X86_32:
  95. {
  96. struct blkif_x86_32_sring *sring_x86_32;
  97. sring_x86_32 = (struct blkif_x86_32_sring *)blkif->blk_ring_area->addr;
  98. BACK_RING_INIT(&blkif->blk_rings.x86_32, sring_x86_32, PAGE_SIZE);
  99. break;
  100. }
  101. case BLKIF_PROTOCOL_X86_64:
  102. {
  103. struct blkif_x86_64_sring *sring_x86_64;
  104. sring_x86_64 = (struct blkif_x86_64_sring *)blkif->blk_ring_area->addr;
  105. BACK_RING_INIT(&blkif->blk_rings.x86_64, sring_x86_64, PAGE_SIZE);
  106. break;
  107. }
  108. default:
  109. BUG();
  110. }
  111. err = bind_interdomain_evtchn_to_irqhandler(
  112. blkif->domid, evtchn, blkif_be_int, 0, "blkif-backend", blkif);
  113. if (err < 0)
  114. {
  115. unmap_frontend_page(blkif);
  116. free_vm_area(blkif->blk_ring_area);
  117. blkif->blk_rings.common.sring = NULL;
  118. return err;
  119. }
  120. blkif->irq = err;
  121. return 0;
  122. }
  123. void blkif_disconnect(blkif_t *blkif)
  124. {
  125. if (blkif->xenblkd) {
  126. kthread_stop(blkif->xenblkd);
  127. blkif->xenblkd = NULL;
  128. }
  129. atomic_dec(&blkif->refcnt);
  130. wait_event(blkif->waiting_to_free, atomic_read(&blkif->refcnt) == 0);
  131. atomic_inc(&blkif->refcnt);
  132. if (blkif->irq) {
  133. unbind_from_irqhandler(blkif->irq, blkif);
  134. blkif->irq = 0;
  135. }
  136. if (blkif->blk_rings.common.sring) {
  137. unmap_frontend_page(blkif);
  138. free_vm_area(blkif->blk_ring_area);
  139. blkif->blk_rings.common.sring = NULL;
  140. }
  141. }
  142. void blkif_free(blkif_t *blkif)
  143. {
  144. if (!atomic_dec_and_test(&blkif->refcnt))
  145. BUG();
  146. kmem_cache_free(blkif_cachep, blkif);
  147. }
  148. int __init blkif_interface_init(void)
  149. {
  150. blkif_cachep = kmem_cache_create("blkif_cache", sizeof(blkif_t),
  151. 0, 0, NULL);
  152. if (!blkif_cachep)
  153. return -ENOMEM;
  154. return 0;
  155. }