1 #include <linux/kernel.h>
3 #include <linux/slab.h>
4 #include <linux/uaccess.h>
5 #include <linux/ktime.h>
6 #include <linux/debugfs.h>
7 #include <linux/highmem.h>
10 static void put_back_pages(unsigned int cmd, struct page **pages,
11 unsigned long nr_pages, unsigned int gup_test_flags)
16 case GUP_FAST_BENCHMARK:
18 for (i = 0; i < nr_pages; i++)
22 case PIN_FAST_BENCHMARK:
24 case PIN_LONGTERM_BENCHMARK:
25 unpin_user_pages(pages, nr_pages);
27 case DUMP_USER_PAGES_TEST:
28 if (gup_test_flags & GUP_TEST_FLAG_DUMP_PAGES_USE_PIN) {
29 unpin_user_pages(pages, nr_pages);
31 for (i = 0; i < nr_pages; i++)
39 static void verify_dma_pinned(unsigned int cmd, struct page **pages,
40 unsigned long nr_pages)
46 case PIN_FAST_BENCHMARK:
48 case PIN_LONGTERM_BENCHMARK:
49 for (i = 0; i < nr_pages; i++) {
51 if (WARN(!page_maybe_dma_pinned(page),
52 "pages[%lu] is NOT dma-pinned\n", i)) {
54 dump_page(page, "gup_test failure");
56 } else if (cmd == PIN_LONGTERM_BENCHMARK &&
57 WARN(!is_longterm_pinnable_page(page),
58 "pages[%lu] is NOT pinnable but pinned\n",
60 dump_page(page, "gup_test failure");
68 static void dump_pages_test(struct gup_test *gup, struct page **pages,
69 unsigned long nr_pages)
71 unsigned int index_to_dump;
75 * Zero out any user-supplied page index that is out of range. Remember:
76 * .which_pages[] contains a 1-based set of page indices.
78 for (i = 0; i < GUP_TEST_MAX_PAGES_TO_DUMP; i++) {
79 if (gup->which_pages[i] > nr_pages) {
80 pr_warn("ZEROING due to out of range: .which_pages[%u]: %u\n",
81 i, gup->which_pages[i]);
82 gup->which_pages[i] = 0;
86 for (i = 0; i < GUP_TEST_MAX_PAGES_TO_DUMP; i++) {
87 index_to_dump = gup->which_pages[i];
90 index_to_dump--; // Decode from 1-based, to 0-based
91 pr_info("---- page #%u, starting from user virt addr: 0x%llx\n",
92 index_to_dump, gup->addr);
93 dump_page(pages[index_to_dump],
94 "gup_test: dump_pages() test");
99 static int __gup_test_ioctl(unsigned int cmd,
100 struct gup_test *gup)
102 ktime_t start_time, end_time;
103 unsigned long i, nr_pages, addr, next;
107 bool needs_mmap_lock =
108 cmd != GUP_FAST_BENCHMARK && cmd != PIN_FAST_BENCHMARK;
110 if (gup->size > ULONG_MAX)
113 nr_pages = gup->size / PAGE_SIZE;
114 pages = kvcalloc(nr_pages, sizeof(void *), GFP_KERNEL);
118 if (needs_mmap_lock && mmap_read_lock_killable(current->mm)) {
124 nr = gup->nr_pages_per_call;
125 start_time = ktime_get();
126 for (addr = gup->addr; addr < gup->addr + gup->size; addr = next) {
127 if (nr != gup->nr_pages_per_call)
130 next = addr + nr * PAGE_SIZE;
131 if (next > gup->addr + gup->size) {
132 next = gup->addr + gup->size;
133 nr = (next - addr) / PAGE_SIZE;
137 case GUP_FAST_BENCHMARK:
138 nr = get_user_pages_fast(addr, nr, gup->gup_flags,
142 nr = get_user_pages(addr, nr, gup->gup_flags, pages + i,
145 case PIN_FAST_BENCHMARK:
146 nr = pin_user_pages_fast(addr, nr, gup->gup_flags,
150 nr = pin_user_pages(addr, nr, gup->gup_flags, pages + i,
153 case PIN_LONGTERM_BENCHMARK:
154 nr = pin_user_pages(addr, nr,
155 gup->gup_flags | FOLL_LONGTERM,
158 case DUMP_USER_PAGES_TEST:
159 if (gup->test_flags & GUP_TEST_FLAG_DUMP_PAGES_USE_PIN)
160 nr = pin_user_pages(addr, nr, gup->gup_flags,
163 nr = get_user_pages(addr, nr, gup->gup_flags,
175 end_time = ktime_get();
177 /* Shifting the meaning of nr_pages: now it is actual number pinned: */
180 gup->get_delta_usec = ktime_us_delta(end_time, start_time);
181 gup->size = addr - gup->addr;
184 * Take an un-benchmark-timed moment to verify DMA pinned
185 * state: print a warning if any non-dma-pinned pages are found:
187 verify_dma_pinned(cmd, pages, nr_pages);
189 if (cmd == DUMP_USER_PAGES_TEST)
190 dump_pages_test(gup, pages, nr_pages);
192 start_time = ktime_get();
194 put_back_pages(cmd, pages, nr_pages, gup->test_flags);
196 end_time = ktime_get();
197 gup->put_delta_usec = ktime_us_delta(end_time, start_time);
201 mmap_read_unlock(current->mm);
207 static DEFINE_MUTEX(pin_longterm_test_mutex);
208 static struct page **pin_longterm_test_pages;
209 static unsigned long pin_longterm_test_nr_pages;
211 static inline void pin_longterm_test_stop(void)
213 if (pin_longterm_test_pages) {
214 if (pin_longterm_test_nr_pages)
215 unpin_user_pages(pin_longterm_test_pages,
216 pin_longterm_test_nr_pages);
217 kvfree(pin_longterm_test_pages);
218 pin_longterm_test_pages = NULL;
219 pin_longterm_test_nr_pages = 0;
223 static inline int pin_longterm_test_start(unsigned long arg)
225 long nr_pages, cur_pages, addr, remaining_pages;
226 int gup_flags = FOLL_LONGTERM;
227 struct pin_longterm_test args;
232 if (pin_longterm_test_pages)
235 if (copy_from_user(&args, (void __user *)arg, sizeof(args)))
239 ~(PIN_LONGTERM_TEST_FLAG_USE_WRITE|PIN_LONGTERM_TEST_FLAG_USE_FAST))
241 if (!IS_ALIGNED(args.addr | args.size, PAGE_SIZE))
243 if (args.size > LONG_MAX)
245 nr_pages = args.size / PAGE_SIZE;
249 pages = kvcalloc(nr_pages, sizeof(void *), GFP_KERNEL);
253 if (args.flags & PIN_LONGTERM_TEST_FLAG_USE_WRITE)
254 gup_flags |= FOLL_WRITE;
255 fast = !!(args.flags & PIN_LONGTERM_TEST_FLAG_USE_FAST);
257 if (!fast && mmap_read_lock_killable(current->mm)) {
262 pin_longterm_test_pages = pages;
263 pin_longterm_test_nr_pages = 0;
265 while (nr_pages - pin_longterm_test_nr_pages) {
266 remaining_pages = nr_pages - pin_longterm_test_nr_pages;
267 addr = args.addr + pin_longterm_test_nr_pages * PAGE_SIZE;
270 cur_pages = pin_user_pages_fast(addr, remaining_pages,
273 cur_pages = pin_user_pages(addr, remaining_pages,
274 gup_flags, pages, NULL);
276 pin_longterm_test_stop();
280 pin_longterm_test_nr_pages += cur_pages;
285 mmap_read_unlock(current->mm);
289 static inline int pin_longterm_test_read(unsigned long arg)
294 if (!pin_longterm_test_pages)
297 if (copy_from_user(&user_addr, (void __user *)arg, sizeof(user_addr)))
300 for (i = 0; i < pin_longterm_test_nr_pages; i++) {
301 void *addr = kmap_local_page(pin_longterm_test_pages[i]);
304 ret = copy_to_user((void __user *)(unsigned long)user_addr, addr,
309 user_addr += PAGE_SIZE;
314 static long pin_longterm_test_ioctl(struct file *filep, unsigned int cmd,
319 if (mutex_lock_killable(&pin_longterm_test_mutex))
323 case PIN_LONGTERM_TEST_START:
324 ret = pin_longterm_test_start(arg);
326 case PIN_LONGTERM_TEST_STOP:
327 pin_longterm_test_stop();
330 case PIN_LONGTERM_TEST_READ:
331 ret = pin_longterm_test_read(arg);
335 mutex_unlock(&pin_longterm_test_mutex);
339 static long gup_test_ioctl(struct file *filep, unsigned int cmd,
346 case GUP_FAST_BENCHMARK:
347 case PIN_FAST_BENCHMARK:
348 case PIN_LONGTERM_BENCHMARK:
351 case DUMP_USER_PAGES_TEST:
353 case PIN_LONGTERM_TEST_START:
354 case PIN_LONGTERM_TEST_STOP:
355 case PIN_LONGTERM_TEST_READ:
356 return pin_longterm_test_ioctl(filep, cmd, arg);
361 if (copy_from_user(&gup, (void __user *)arg, sizeof(gup)))
364 ret = __gup_test_ioctl(cmd, &gup);
368 if (copy_to_user((void __user *)arg, &gup, sizeof(gup)))
374 static int gup_test_release(struct inode *inode, struct file *file)
376 pin_longterm_test_stop();
381 static const struct file_operations gup_test_fops = {
382 .open = nonseekable_open,
383 .unlocked_ioctl = gup_test_ioctl,
384 .release = gup_test_release,
387 static int __init gup_test_init(void)
389 debugfs_create_file_unsafe("gup_test", 0600, NULL, NULL,
395 late_initcall(gup_test_init);