Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 1 | #include <linux/kernel.h> |
| 2 | #include <linux/mm.h> |
| 3 | #include <linux/slab.h> |
| 4 | #include <linux/uaccess.h> |
| 5 | #include <linux/ktime.h> |
| 6 | #include <linux/debugfs.h> |
John Hubbard | b9dcfdf | 2020-12-14 19:05:08 -0800 | [diff] [blame] | 7 | #include "gup_test.h" |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 8 | |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 9 | static void put_back_pages(unsigned int cmd, struct page **pages, |
John Hubbard | f4f9bda | 2020-12-14 19:05:21 -0800 | [diff] [blame] | 10 | unsigned long nr_pages, unsigned int gup_test_flags) |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 11 | { |
| 12 | unsigned long i; |
| 13 | |
| 14 | switch (cmd) { |
| 15 | case GUP_FAST_BENCHMARK: |
John Hubbard | a9bed1e | 2020-12-14 19:05:17 -0800 | [diff] [blame] | 16 | case GUP_BASIC_TEST: |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 17 | for (i = 0; i < nr_pages; i++) |
| 18 | put_page(pages[i]); |
| 19 | break; |
| 20 | |
| 21 | case PIN_FAST_BENCHMARK: |
John Hubbard | a9bed1e | 2020-12-14 19:05:17 -0800 | [diff] [blame] | 22 | case PIN_BASIC_TEST: |
Barry Song | 657d4f7 | 2020-10-13 16:51:54 -0700 | [diff] [blame] | 23 | case PIN_LONGTERM_BENCHMARK: |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 24 | unpin_user_pages(pages, nr_pages); |
| 25 | break; |
John Hubbard | f4f9bda | 2020-12-14 19:05:21 -0800 | [diff] [blame] | 26 | case DUMP_USER_PAGES_TEST: |
| 27 | if (gup_test_flags & GUP_TEST_FLAG_DUMP_PAGES_USE_PIN) { |
| 28 | unpin_user_pages(pages, nr_pages); |
| 29 | } else { |
| 30 | for (i = 0; i < nr_pages; i++) |
| 31 | put_page(pages[i]); |
| 32 | |
| 33 | } |
| 34 | break; |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 35 | } |
| 36 | } |
| 37 | |
| 38 | static void verify_dma_pinned(unsigned int cmd, struct page **pages, |
| 39 | unsigned long nr_pages) |
| 40 | { |
| 41 | unsigned long i; |
| 42 | struct page *page; |
| 43 | |
| 44 | switch (cmd) { |
| 45 | case PIN_FAST_BENCHMARK: |
John Hubbard | a9bed1e | 2020-12-14 19:05:17 -0800 | [diff] [blame] | 46 | case PIN_BASIC_TEST: |
Barry Song | 657d4f7 | 2020-10-13 16:51:54 -0700 | [diff] [blame] | 47 | case PIN_LONGTERM_BENCHMARK: |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 48 | for (i = 0; i < nr_pages; i++) { |
| 49 | page = pages[i]; |
| 50 | if (WARN(!page_maybe_dma_pinned(page), |
| 51 | "pages[%lu] is NOT dma-pinned\n", i)) { |
| 52 | |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 53 | dump_page(page, "gup_test failure"); |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 54 | break; |
Pavel Tatashin | e44605a | 2021-05-04 18:39:27 -0700 | [diff] [blame] | 55 | } else if (cmd == PIN_LONGTERM_BENCHMARK && |
| 56 | WARN(!is_pinnable_page(page), |
| 57 | "pages[%lu] is NOT pinnable but pinned\n", |
| 58 | i)) { |
| 59 | dump_page(page, "gup_test failure"); |
| 60 | break; |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 61 | } |
| 62 | } |
| 63 | break; |
| 64 | } |
| 65 | } |
| 66 | |
John Hubbard | f4f9bda | 2020-12-14 19:05:21 -0800 | [diff] [blame] | 67 | static void dump_pages_test(struct gup_test *gup, struct page **pages, |
| 68 | unsigned long nr_pages) |
| 69 | { |
| 70 | unsigned int index_to_dump; |
| 71 | unsigned int i; |
| 72 | |
| 73 | /* |
| 74 | * Zero out any user-supplied page index that is out of range. Remember: |
| 75 | * .which_pages[] contains a 1-based set of page indices. |
| 76 | */ |
| 77 | for (i = 0; i < GUP_TEST_MAX_PAGES_TO_DUMP; i++) { |
| 78 | if (gup->which_pages[i] > nr_pages) { |
| 79 | pr_warn("ZEROING due to out of range: .which_pages[%u]: %u\n", |
| 80 | i, gup->which_pages[i]); |
| 81 | gup->which_pages[i] = 0; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | for (i = 0; i < GUP_TEST_MAX_PAGES_TO_DUMP; i++) { |
| 86 | index_to_dump = gup->which_pages[i]; |
| 87 | |
| 88 | if (index_to_dump) { |
| 89 | index_to_dump--; // Decode from 1-based, to 0-based |
| 90 | pr_info("---- page #%u, starting from user virt addr: 0x%llx\n", |
| 91 | index_to_dump, gup->addr); |
| 92 | dump_page(pages[index_to_dump], |
| 93 | "gup_test: dump_pages() test"); |
| 94 | } |
| 95 | } |
| 96 | } |
| 97 | |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 98 | static int __gup_test_ioctl(unsigned int cmd, |
| 99 | struct gup_test *gup) |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 100 | { |
| 101 | ktime_t start_time, end_time; |
YueHaibing | 5189686 | 2018-10-05 15:51:44 -0700 | [diff] [blame] | 102 | unsigned long i, nr_pages, addr, next; |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 103 | long nr; |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 104 | struct page **pages; |
Navid Emamdoost | a7c46c0 | 2020-01-04 13:00:12 -0800 | [diff] [blame] | 105 | int ret = 0; |
Jann Horn | f396459 | 2020-10-17 16:14:12 -0700 | [diff] [blame] | 106 | bool needs_mmap_lock = |
| 107 | cmd != GUP_FAST_BENCHMARK && cmd != PIN_FAST_BENCHMARK; |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 108 | |
Dan Carpenter | 4b408c7 | 2018-10-30 15:04:32 -0700 | [diff] [blame] | 109 | if (gup->size > ULONG_MAX) |
| 110 | return -EINVAL; |
| 111 | |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 112 | nr_pages = gup->size / PAGE_SIZE; |
Kees Cook | 778e1cd | 2018-06-12 14:04:48 -0700 | [diff] [blame] | 113 | pages = kvcalloc(nr_pages, sizeof(void *), GFP_KERNEL); |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 114 | if (!pages) |
| 115 | return -ENOMEM; |
| 116 | |
Jann Horn | f396459 | 2020-10-17 16:14:12 -0700 | [diff] [blame] | 117 | if (needs_mmap_lock && mmap_read_lock_killable(current->mm)) { |
| 118 | ret = -EINTR; |
| 119 | goto free_pages; |
| 120 | } |
| 121 | |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 122 | i = 0; |
| 123 | nr = gup->nr_pages_per_call; |
| 124 | start_time = ktime_get(); |
| 125 | for (addr = gup->addr; addr < gup->addr + gup->size; addr = next) { |
| 126 | if (nr != gup->nr_pages_per_call) |
| 127 | break; |
| 128 | |
| 129 | next = addr + nr * PAGE_SIZE; |
| 130 | if (next > gup->addr + gup->size) { |
| 131 | next = gup->addr + gup->size; |
| 132 | nr = (next - addr) / PAGE_SIZE; |
| 133 | } |
| 134 | |
Keith Busch | 714a3a1 | 2018-10-26 15:09:56 -0700 | [diff] [blame] | 135 | switch (cmd) { |
| 136 | case GUP_FAST_BENCHMARK: |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 137 | nr = get_user_pages_fast(addr, nr, gup->gup_flags, |
Keith Busch | 714a3a1 | 2018-10-26 15:09:56 -0700 | [diff] [blame] | 138 | pages + i); |
| 139 | break; |
John Hubbard | a9bed1e | 2020-12-14 19:05:17 -0800 | [diff] [blame] | 140 | case GUP_BASIC_TEST: |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 141 | nr = get_user_pages(addr, nr, gup->gup_flags, pages + i, |
Keith Busch | 714a3a1 | 2018-10-26 15:09:56 -0700 | [diff] [blame] | 142 | NULL); |
| 143 | break; |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 144 | case PIN_FAST_BENCHMARK: |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 145 | nr = pin_user_pages_fast(addr, nr, gup->gup_flags, |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 146 | pages + i); |
| 147 | break; |
John Hubbard | a9bed1e | 2020-12-14 19:05:17 -0800 | [diff] [blame] | 148 | case PIN_BASIC_TEST: |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 149 | nr = pin_user_pages(addr, nr, gup->gup_flags, pages + i, |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 150 | NULL); |
| 151 | break; |
Barry Song | 657d4f7 | 2020-10-13 16:51:54 -0700 | [diff] [blame] | 152 | case PIN_LONGTERM_BENCHMARK: |
| 153 | nr = pin_user_pages(addr, nr, |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 154 | gup->gup_flags | FOLL_LONGTERM, |
Barry Song | 657d4f7 | 2020-10-13 16:51:54 -0700 | [diff] [blame] | 155 | pages + i, NULL); |
| 156 | break; |
John Hubbard | f4f9bda | 2020-12-14 19:05:21 -0800 | [diff] [blame] | 157 | case DUMP_USER_PAGES_TEST: |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 158 | if (gup->test_flags & GUP_TEST_FLAG_DUMP_PAGES_USE_PIN) |
| 159 | nr = pin_user_pages(addr, nr, gup->gup_flags, |
John Hubbard | f4f9bda | 2020-12-14 19:05:21 -0800 | [diff] [blame] | 160 | pages + i, NULL); |
| 161 | else |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 162 | nr = get_user_pages(addr, nr, gup->gup_flags, |
John Hubbard | f4f9bda | 2020-12-14 19:05:21 -0800 | [diff] [blame] | 163 | pages + i, NULL); |
| 164 | break; |
Keith Busch | 714a3a1 | 2018-10-26 15:09:56 -0700 | [diff] [blame] | 165 | default: |
Navid Emamdoost | a7c46c0 | 2020-01-04 13:00:12 -0800 | [diff] [blame] | 166 | ret = -EINVAL; |
Jann Horn | f396459 | 2020-10-17 16:14:12 -0700 | [diff] [blame] | 167 | goto unlock; |
Keith Busch | 714a3a1 | 2018-10-26 15:09:56 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Michael S. Tsirkin | 09e35a4 | 2018-04-13 15:35:16 -0700 | [diff] [blame] | 170 | if (nr <= 0) |
| 171 | break; |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 172 | i += nr; |
| 173 | } |
| 174 | end_time = ktime_get(); |
| 175 | |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 176 | /* Shifting the meaning of nr_pages: now it is actual number pinned: */ |
| 177 | nr_pages = i; |
| 178 | |
Keith Busch | 26db3d0 | 2018-10-26 15:09:52 -0700 | [diff] [blame] | 179 | gup->get_delta_usec = ktime_us_delta(end_time, start_time); |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 180 | gup->size = addr - gup->addr; |
| 181 | |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 182 | /* |
| 183 | * Take an un-benchmark-timed moment to verify DMA pinned |
| 184 | * state: print a warning if any non-dma-pinned pages are found: |
| 185 | */ |
| 186 | verify_dma_pinned(cmd, pages, nr_pages); |
| 187 | |
John Hubbard | f4f9bda | 2020-12-14 19:05:21 -0800 | [diff] [blame] | 188 | if (cmd == DUMP_USER_PAGES_TEST) |
| 189 | dump_pages_test(gup, pages, nr_pages); |
| 190 | |
Keith Busch | 26db3d0 | 2018-10-26 15:09:52 -0700 | [diff] [blame] | 191 | start_time = ktime_get(); |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 192 | |
Pavel Tatashin | 79dbf13 | 2021-05-04 18:39:23 -0700 | [diff] [blame] | 193 | put_back_pages(cmd, pages, nr_pages, gup->test_flags); |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 194 | |
Keith Busch | 26db3d0 | 2018-10-26 15:09:52 -0700 | [diff] [blame] | 195 | end_time = ktime_get(); |
| 196 | gup->put_delta_usec = ktime_us_delta(end_time, start_time); |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 197 | |
Jann Horn | f396459 | 2020-10-17 16:14:12 -0700 | [diff] [blame] | 198 | unlock: |
| 199 | if (needs_mmap_lock) |
| 200 | mmap_read_unlock(current->mm); |
| 201 | free_pages: |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 202 | kvfree(pages); |
Navid Emamdoost | a7c46c0 | 2020-01-04 13:00:12 -0800 | [diff] [blame] | 203 | return ret; |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 204 | } |
| 205 | |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 206 | static long gup_test_ioctl(struct file *filep, unsigned int cmd, |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 207 | unsigned long arg) |
| 208 | { |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 209 | struct gup_test gup; |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 210 | int ret; |
| 211 | |
Keith Busch | 714a3a1 | 2018-10-26 15:09:56 -0700 | [diff] [blame] | 212 | switch (cmd) { |
| 213 | case GUP_FAST_BENCHMARK: |
John Hubbard | 41c45d3 | 2020-04-01 21:05:41 -0700 | [diff] [blame] | 214 | case PIN_FAST_BENCHMARK: |
Barry Song | 657d4f7 | 2020-10-13 16:51:54 -0700 | [diff] [blame] | 215 | case PIN_LONGTERM_BENCHMARK: |
John Hubbard | a9bed1e | 2020-12-14 19:05:17 -0800 | [diff] [blame] | 216 | case GUP_BASIC_TEST: |
| 217 | case PIN_BASIC_TEST: |
John Hubbard | f4f9bda | 2020-12-14 19:05:21 -0800 | [diff] [blame] | 218 | case DUMP_USER_PAGES_TEST: |
Keith Busch | 714a3a1 | 2018-10-26 15:09:56 -0700 | [diff] [blame] | 219 | break; |
| 220 | default: |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 221 | return -EINVAL; |
Keith Busch | 714a3a1 | 2018-10-26 15:09:56 -0700 | [diff] [blame] | 222 | } |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 223 | |
| 224 | if (copy_from_user(&gup, (void __user *)arg, sizeof(gup))) |
| 225 | return -EFAULT; |
| 226 | |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 227 | ret = __gup_test_ioctl(cmd, &gup); |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 228 | if (ret) |
| 229 | return ret; |
| 230 | |
| 231 | if (copy_to_user((void __user *)arg, &gup, sizeof(gup))) |
| 232 | return -EFAULT; |
| 233 | |
| 234 | return 0; |
| 235 | } |
| 236 | |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 237 | static const struct file_operations gup_test_fops = { |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 238 | .open = nonseekable_open, |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 239 | .unlocked_ioctl = gup_test_ioctl, |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 240 | }; |
| 241 | |
Barry Song | afaa788 | 2020-12-14 19:05:34 -0800 | [diff] [blame] | 242 | static int __init gup_test_init(void) |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 243 | { |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 244 | debugfs_create_file_unsafe("gup_test", 0600, NULL, NULL, |
| 245 | &gup_test_fops); |
Kirill A. Shutemov | 64c349f | 2017-11-17 15:31:22 -0800 | [diff] [blame] | 246 | |
| 247 | return 0; |
| 248 | } |
| 249 | |
John Hubbard | 9c84f22 | 2020-12-14 19:05:05 -0800 | [diff] [blame] | 250 | late_initcall(gup_test_init); |