grant-table.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /******************************************************************************
  2. * grant_table.c
  3. * x86 specific part
  4. *
  5. * Granting foreign access to our memory reservation.
  6. *
  7. * Copyright (c) 2005-2006, Christopher Clark
  8. * Copyright (c) 2004-2005, K A Fraser
  9. * Copyright (c) 2008 Isaku Yamahata <yamahata at valinux co jp>
  10. * VA Linux Systems Japan. Split out x86 specific part.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License version 2
  14. * as published by the Free Software Foundation; or, when distributed
  15. * separately from the Linux kernel or incorporated into other
  16. * software packages, subject to the following license:
  17. *
  18. * Permission is hereby granted, free of charge, to any person obtaining a copy
  19. * of this source file (the "Software"), to deal in the Software without
  20. * restriction, including without limitation the rights to use, copy, modify,
  21. * merge, publish, distribute, sublicense, and/or sell copies of the Software,
  22. * and to permit persons to whom the Software is furnished to do so, subject to
  23. * the following conditions:
  24. *
  25. * The above copyright notice and this permission notice shall be included in
  26. * all copies or substantial portions of the Software.
  27. *
  28. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  29. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  30. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  31. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  32. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  33. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  34. * IN THE SOFTWARE.
  35. */
  36. #include <linux/sched.h>
  37. #include <linux/mm.h>
  38. #include <linux/slab.h>
  39. #include <linux/vmalloc.h>
  40. #include <xen/interface/xen.h>
  41. #include <xen/page.h>
  42. #include <xen/grant_table.h>
  43. #include <xen/xen.h>
  44. #include <asm/pgtable.h>
  45. static struct gnttab_vm_area {
  46. struct vm_struct *area;
  47. pte_t **ptes;
  48. } gnttab_shared_vm_area, gnttab_status_vm_area;
  49. int arch_gnttab_map_shared(unsigned long *frames, unsigned long nr_gframes,
  50. unsigned long max_nr_gframes,
  51. void **__shared)
  52. {
  53. void *shared = *__shared;
  54. unsigned long addr;
  55. unsigned long i;
  56. if (shared == NULL)
  57. *__shared = shared = gnttab_shared_vm_area.area->addr;
  58. addr = (unsigned long)shared;
  59. for (i = 0; i < nr_gframes; i++) {
  60. set_pte_at(&init_mm, addr, gnttab_shared_vm_area.ptes[i],
  61. mfn_pte(frames[i], PAGE_KERNEL));
  62. addr += PAGE_SIZE;
  63. }
  64. return 0;
  65. }
  66. int arch_gnttab_map_status(uint64_t *frames, unsigned long nr_gframes,
  67. unsigned long max_nr_gframes,
  68. grant_status_t **__shared)
  69. {
  70. grant_status_t *shared = *__shared;
  71. unsigned long addr;
  72. unsigned long i;
  73. if (shared == NULL)
  74. *__shared = shared = gnttab_status_vm_area.area->addr;
  75. addr = (unsigned long)shared;
  76. for (i = 0; i < nr_gframes; i++) {
  77. set_pte_at(&init_mm, addr, gnttab_status_vm_area.ptes[i],
  78. mfn_pte(frames[i], PAGE_KERNEL));
  79. addr += PAGE_SIZE;
  80. }
  81. return 0;
  82. }
  83. void arch_gnttab_unmap(void *shared, unsigned long nr_gframes)
  84. {
  85. pte_t **ptes;
  86. unsigned long addr;
  87. unsigned long i;
  88. if (shared == gnttab_status_vm_area.area->addr)
  89. ptes = gnttab_status_vm_area.ptes;
  90. else
  91. ptes = gnttab_shared_vm_area.ptes;
  92. addr = (unsigned long)shared;
  93. for (i = 0; i < nr_gframes; i++) {
  94. set_pte_at(&init_mm, addr, ptes[i], __pte(0));
  95. addr += PAGE_SIZE;
  96. }
  97. }
  98. static int arch_gnttab_valloc(struct gnttab_vm_area *area, unsigned nr_frames)
  99. {
  100. area->ptes = kmalloc(sizeof(pte_t *) * nr_frames, GFP_KERNEL);
  101. if (area->ptes == NULL)
  102. return -ENOMEM;
  103. area->area = alloc_vm_area(PAGE_SIZE * nr_frames, area->ptes);
  104. if (area->area == NULL) {
  105. kfree(area->ptes);
  106. return -ENOMEM;
  107. }
  108. return 0;
  109. }
  110. static void arch_gnttab_vfree(struct gnttab_vm_area *area)
  111. {
  112. free_vm_area(area->area);
  113. kfree(area->ptes);
  114. }
  115. int arch_gnttab_init(unsigned long nr_shared, unsigned long nr_status)
  116. {
  117. int ret;
  118. if (!xen_pv_domain())
  119. return 0;
  120. ret = arch_gnttab_valloc(&gnttab_shared_vm_area, nr_shared);
  121. if (ret < 0)
  122. return ret;
  123. /*
  124. * Always allocate the space for the status frames in case
  125. * we're migrated to a host with V2 support.
  126. */
  127. ret = arch_gnttab_valloc(&gnttab_status_vm_area, nr_status);
  128. if (ret < 0)
  129. goto err;
  130. return 0;
  131. err:
  132. arch_gnttab_vfree(&gnttab_shared_vm_area);
  133. return -ENOMEM;
  134. }
  135. #ifdef CONFIG_XEN_PVH
  136. #include <xen/balloon.h>
  137. #include <xen/events.h>
  138. #include <linux/slab.h>
  139. static int __init xlated_setup_gnttab_pages(void)
  140. {
  141. struct page **pages;
  142. xen_pfn_t *pfns;
  143. int rc;
  144. unsigned int i;
  145. unsigned long nr_grant_frames = gnttab_max_grant_frames();
  146. BUG_ON(nr_grant_frames == 0);
  147. pages = kcalloc(nr_grant_frames, sizeof(pages[0]), GFP_KERNEL);
  148. if (!pages)
  149. return -ENOMEM;
  150. pfns = kcalloc(nr_grant_frames, sizeof(pfns[0]), GFP_KERNEL);
  151. if (!pfns) {
  152. kfree(pages);
  153. return -ENOMEM;
  154. }
  155. rc = alloc_xenballooned_pages(nr_grant_frames, pages, 0 /* lowmem */);
  156. if (rc) {
  157. pr_warn("%s Couldn't balloon alloc %ld pfns rc:%d\n", __func__,
  158. nr_grant_frames, rc);
  159. kfree(pages);
  160. kfree(pfns);
  161. return rc;
  162. }
  163. for (i = 0; i < nr_grant_frames; i++)
  164. pfns[i] = page_to_pfn(pages[i]);
  165. rc = arch_gnttab_map_shared(pfns, nr_grant_frames, nr_grant_frames,
  166. &xen_auto_xlat_grant_frames.vaddr);
  167. if (rc) {
  168. pr_warn("%s Couldn't map %ld pfns rc:%d\n", __func__,
  169. nr_grant_frames, rc);
  170. free_xenballooned_pages(nr_grant_frames, pages);
  171. kfree(pages);
  172. kfree(pfns);
  173. return rc;
  174. }
  175. kfree(pages);
  176. xen_auto_xlat_grant_frames.pfn = pfns;
  177. xen_auto_xlat_grant_frames.count = nr_grant_frames;
  178. return 0;
  179. }
  180. static int __init xen_pvh_gnttab_setup(void)
  181. {
  182. if (!xen_pvh_domain())
  183. return -ENODEV;
  184. return xlated_setup_gnttab_pages();
  185. }
  186. /* Call it _before_ __gnttab_init as we need to initialize the
  187. * xen_auto_xlat_grant_frames first. */
  188. core_initcall(xen_pvh_gnttab_setup);
  189. #endif