blob: be690fa66a46b6d4bba1adefcddf2bf5bfc9b67c [file] [log] [blame]
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -08001#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>
7
8#define GUP_FAST_BENCHMARK _IOWR('g', 1, struct gup_benchmark)
Keith Busch714a3a12018-10-26 15:09:56 -07009#define GUP_LONGTERM_BENCHMARK _IOWR('g', 2, struct gup_benchmark)
10#define GUP_BENCHMARK _IOWR('g', 3, struct gup_benchmark)
John Hubbard41c45d32020-04-01 21:05:41 -070011#define PIN_FAST_BENCHMARK _IOWR('g', 4, struct gup_benchmark)
12#define PIN_BENCHMARK _IOWR('g', 5, struct gup_benchmark)
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -080013
14struct gup_benchmark {
Keith Busch26db3d02018-10-26 15:09:52 -070015 __u64 get_delta_usec;
16 __u64 put_delta_usec;
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -080017 __u64 addr;
18 __u64 size;
19 __u32 nr_pages_per_call;
20 __u32 flags;
Keith Busch26db3d02018-10-26 15:09:52 -070021 __u64 expansion[10]; /* For future use */
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -080022};
23
John Hubbard41c45d32020-04-01 21:05:41 -070024static void put_back_pages(unsigned int cmd, struct page **pages,
25 unsigned long nr_pages)
26{
27 unsigned long i;
28
29 switch (cmd) {
30 case GUP_FAST_BENCHMARK:
31 case GUP_LONGTERM_BENCHMARK:
32 case GUP_BENCHMARK:
33 for (i = 0; i < nr_pages; i++)
34 put_page(pages[i]);
35 break;
36
37 case PIN_FAST_BENCHMARK:
38 case PIN_BENCHMARK:
39 unpin_user_pages(pages, nr_pages);
40 break;
41 }
42}
43
44static void verify_dma_pinned(unsigned int cmd, struct page **pages,
45 unsigned long nr_pages)
46{
47 unsigned long i;
48 struct page *page;
49
50 switch (cmd) {
51 case PIN_FAST_BENCHMARK:
52 case PIN_BENCHMARK:
53 for (i = 0; i < nr_pages; i++) {
54 page = pages[i];
55 if (WARN(!page_maybe_dma_pinned(page),
56 "pages[%lu] is NOT dma-pinned\n", i)) {
57
58 dump_page(page, "gup_benchmark failure");
59 break;
60 }
61 }
62 break;
63 }
64}
65
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -080066static int __gup_benchmark_ioctl(unsigned int cmd,
67 struct gup_benchmark *gup)
68{
69 ktime_t start_time, end_time;
YueHaibing51896862018-10-05 15:51:44 -070070 unsigned long i, nr_pages, addr, next;
71 int nr;
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -080072 struct page **pages;
Navid Emamdoosta7c46c02020-01-04 13:00:12 -080073 int ret = 0;
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -080074
Dan Carpenter4b408c72018-10-30 15:04:32 -070075 if (gup->size > ULONG_MAX)
76 return -EINVAL;
77
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -080078 nr_pages = gup->size / PAGE_SIZE;
Kees Cook778e1cd2018-06-12 14:04:48 -070079 pages = kvcalloc(nr_pages, sizeof(void *), GFP_KERNEL);
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -080080 if (!pages)
81 return -ENOMEM;
82
83 i = 0;
84 nr = gup->nr_pages_per_call;
85 start_time = ktime_get();
86 for (addr = gup->addr; addr < gup->addr + gup->size; addr = next) {
87 if (nr != gup->nr_pages_per_call)
88 break;
89
90 next = addr + nr * PAGE_SIZE;
91 if (next > gup->addr + gup->size) {
92 next = gup->addr + gup->size;
93 nr = (next - addr) / PAGE_SIZE;
94 }
95
John Hubbardbdffe232020-01-30 22:13:32 -080096 /* Filter out most gup flags: only allow a tiny subset here: */
97 gup->flags &= FOLL_WRITE;
98
Keith Busch714a3a12018-10-26 15:09:56 -070099 switch (cmd) {
100 case GUP_FAST_BENCHMARK:
John Hubbardbdffe232020-01-30 22:13:32 -0800101 nr = get_user_pages_fast(addr, nr, gup->flags,
Keith Busch714a3a12018-10-26 15:09:56 -0700102 pages + i);
103 break;
104 case GUP_LONGTERM_BENCHMARK:
Ira Weiny932f4a62019-05-13 17:17:03 -0700105 nr = get_user_pages(addr, nr,
John Hubbardbdffe232020-01-30 22:13:32 -0800106 gup->flags | FOLL_LONGTERM,
Ira Weiny932f4a62019-05-13 17:17:03 -0700107 pages + i, NULL);
Keith Busch714a3a12018-10-26 15:09:56 -0700108 break;
109 case GUP_BENCHMARK:
John Hubbardbdffe232020-01-30 22:13:32 -0800110 nr = get_user_pages(addr, nr, gup->flags, pages + i,
Keith Busch714a3a12018-10-26 15:09:56 -0700111 NULL);
112 break;
John Hubbard41c45d32020-04-01 21:05:41 -0700113 case PIN_FAST_BENCHMARK:
114 nr = pin_user_pages_fast(addr, nr, gup->flags,
115 pages + i);
116 break;
117 case PIN_BENCHMARK:
118 nr = pin_user_pages(addr, nr, gup->flags, pages + i,
119 NULL);
120 break;
Keith Busch714a3a12018-10-26 15:09:56 -0700121 default:
Navid Emamdoosta7c46c02020-01-04 13:00:12 -0800122 kvfree(pages);
123 ret = -EINVAL;
124 goto out;
Keith Busch714a3a12018-10-26 15:09:56 -0700125 }
126
Michael S. Tsirkin09e35a42018-04-13 15:35:16 -0700127 if (nr <= 0)
128 break;
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -0800129 i += nr;
130 }
131 end_time = ktime_get();
132
John Hubbard41c45d32020-04-01 21:05:41 -0700133 /* Shifting the meaning of nr_pages: now it is actual number pinned: */
134 nr_pages = i;
135
Keith Busch26db3d02018-10-26 15:09:52 -0700136 gup->get_delta_usec = ktime_us_delta(end_time, start_time);
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -0800137 gup->size = addr - gup->addr;
138
John Hubbard41c45d32020-04-01 21:05:41 -0700139 /*
140 * Take an un-benchmark-timed moment to verify DMA pinned
141 * state: print a warning if any non-dma-pinned pages are found:
142 */
143 verify_dma_pinned(cmd, pages, nr_pages);
144
Keith Busch26db3d02018-10-26 15:09:52 -0700145 start_time = ktime_get();
John Hubbard41c45d32020-04-01 21:05:41 -0700146
147 put_back_pages(cmd, pages, nr_pages);
148
Keith Busch26db3d02018-10-26 15:09:52 -0700149 end_time = ktime_get();
150 gup->put_delta_usec = ktime_us_delta(end_time, start_time);
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -0800151
152 kvfree(pages);
Navid Emamdoosta7c46c02020-01-04 13:00:12 -0800153out:
154 return ret;
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -0800155}
156
157static long gup_benchmark_ioctl(struct file *filep, unsigned int cmd,
158 unsigned long arg)
159{
160 struct gup_benchmark gup;
161 int ret;
162
Keith Busch714a3a12018-10-26 15:09:56 -0700163 switch (cmd) {
164 case GUP_FAST_BENCHMARK:
165 case GUP_LONGTERM_BENCHMARK:
166 case GUP_BENCHMARK:
John Hubbard41c45d32020-04-01 21:05:41 -0700167 case PIN_FAST_BENCHMARK:
168 case PIN_BENCHMARK:
Keith Busch714a3a12018-10-26 15:09:56 -0700169 break;
170 default:
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -0800171 return -EINVAL;
Keith Busch714a3a12018-10-26 15:09:56 -0700172 }
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -0800173
174 if (copy_from_user(&gup, (void __user *)arg, sizeof(gup)))
175 return -EFAULT;
176
177 ret = __gup_benchmark_ioctl(cmd, &gup);
178 if (ret)
179 return ret;
180
181 if (copy_to_user((void __user *)arg, &gup, sizeof(gup)))
182 return -EFAULT;
183
184 return 0;
185}
186
187static const struct file_operations gup_benchmark_fops = {
188 .open = nonseekable_open,
189 .unlocked_ioctl = gup_benchmark_ioctl,
190};
191
192static int gup_benchmark_init(void)
193{
Greg Kroah-Hartmand9f79792019-03-05 15:46:09 -0800194 debugfs_create_file_unsafe("gup_benchmark", 0600, NULL, NULL,
195 &gup_benchmark_fops);
Kirill A. Shutemov64c349f2017-11-17 15:31:22 -0800196
197 return 0;
198}
199
200late_initcall(gup_benchmark_init);