ipath_user_pages.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Copyright (c) 2006 QLogic, Inc. All rights reserved.
  3. * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
  4. *
  5. * This software is available to you under a choice of one of two
  6. * licenses. You may choose to be licensed under the terms of the GNU
  7. * General Public License (GPL) Version 2, available from the file
  8. * COPYING in the main directory of this source tree, or the
  9. * OpenIB.org BSD license below:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * - Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials
  22. * provided with the distribution.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  28. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  29. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  30. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  31. * SOFTWARE.
  32. */
  33. #include <linux/mm.h>
  34. #include <linux/device.h>
  35. #include "ipath_kernel.h"
  36. static void __ipath_release_user_pages(struct page **p, size_t num_pages,
  37. int dirty)
  38. {
  39. size_t i;
  40. for (i = 0; i < num_pages; i++) {
  41. ipath_cdbg(MM, "%lu/%lu put_page %p\n", (unsigned long) i,
  42. (unsigned long) num_pages, p[i]);
  43. if (dirty)
  44. set_page_dirty_lock(p[i]);
  45. put_page(p[i]);
  46. }
  47. }
  48. /* call with current->mm->mmap_sem held */
  49. static int __get_user_pages(unsigned long start_page, size_t num_pages,
  50. struct page **p, struct vm_area_struct **vma)
  51. {
  52. unsigned long lock_limit;
  53. size_t got;
  54. int ret;
  55. lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur >>
  56. PAGE_SHIFT;
  57. if (num_pages > lock_limit) {
  58. ret = -ENOMEM;
  59. goto bail;
  60. }
  61. ipath_cdbg(VERBOSE, "pin %lx pages from vaddr %lx\n",
  62. (unsigned long) num_pages, start_page);
  63. for (got = 0; got < num_pages; got += ret) {
  64. ret = get_user_pages(current, current->mm,
  65. start_page + got * PAGE_SIZE,
  66. num_pages - got, 1, 1,
  67. p + got, vma);
  68. if (ret < 0)
  69. goto bail_release;
  70. }
  71. current->mm->locked_vm += num_pages;
  72. ret = 0;
  73. goto bail;
  74. bail_release:
  75. __ipath_release_user_pages(p, got, 0);
  76. bail:
  77. return ret;
  78. }
  79. /**
  80. * ipath_get_user_pages - lock user pages into memory
  81. * @start_page: the start page
  82. * @num_pages: the number of pages
  83. * @p: the output page structures
  84. *
  85. * This function takes a given start page (page aligned user virtual
  86. * address) and pins it and the following specified number of pages. For
  87. * now, num_pages is always 1, but that will probably change at some point
  88. * (because caller is doing expected sends on a single virtually contiguous
  89. * buffer, so we can do all pages at once).
  90. */
  91. int ipath_get_user_pages(unsigned long start_page, size_t num_pages,
  92. struct page **p)
  93. {
  94. int ret;
  95. down_write(&current->mm->mmap_sem);
  96. ret = __get_user_pages(start_page, num_pages, p, NULL);
  97. up_write(&current->mm->mmap_sem);
  98. return ret;
  99. }
  100. /**
  101. * ipath_get_user_pages_nocopy - lock a single page for I/O and mark shared
  102. * @start_page: the page to lock
  103. * @p: the output page structure
  104. *
  105. * This is similar to ipath_get_user_pages, but it's always one page, and we
  106. * mark the page as locked for I/O, and shared. This is used for the user
  107. * process page that contains the destination address for the rcvhdrq tail
  108. * update, so we need to have the vma. If we don't do this, the page can be
  109. * taken away from us on fork, even if the child never touches it, and then
  110. * the user process never sees the tail register updates.
  111. */
  112. int ipath_get_user_pages_nocopy(unsigned long page, struct page **p)
  113. {
  114. struct vm_area_struct *vma;
  115. int ret;
  116. down_write(&current->mm->mmap_sem);
  117. ret = __get_user_pages(page, 1, p, &vma);
  118. up_write(&current->mm->mmap_sem);
  119. return ret;
  120. }
  121. void ipath_release_user_pages(struct page **p, size_t num_pages)
  122. {
  123. down_write(&current->mm->mmap_sem);
  124. __ipath_release_user_pages(p, num_pages, 1);
  125. current->mm->locked_vm -= num_pages;
  126. up_write(&current->mm->mmap_sem);
  127. }
  128. struct ipath_user_pages_work {
  129. struct work_struct work;
  130. struct mm_struct *mm;
  131. unsigned long num_pages;
  132. };
  133. static void user_pages_account(void *ptr)
  134. {
  135. struct ipath_user_pages_work *work = ptr;
  136. down_write(&work->mm->mmap_sem);
  137. work->mm->locked_vm -= work->num_pages;
  138. up_write(&work->mm->mmap_sem);
  139. mmput(work->mm);
  140. kfree(work);
  141. }
  142. void ipath_release_user_pages_on_close(struct page **p, size_t num_pages)
  143. {
  144. struct ipath_user_pages_work *work;
  145. struct mm_struct *mm;
  146. __ipath_release_user_pages(p, num_pages, 1);
  147. mm = get_task_mm(current);
  148. if (!mm)
  149. goto bail;
  150. work = kmalloc(sizeof(*work), GFP_KERNEL);
  151. if (!work)
  152. goto bail_mm;
  153. goto bail;
  154. INIT_WORK(&work->work, user_pages_account, work);
  155. work->mm = mm;
  156. work->num_pages = num_pages;
  157. bail_mm:
  158. mmput(mm);
  159. bail:
  160. return;
  161. }