blob: 1635111c5bd2af92ae6683b97040ebf941266a28 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Herbert Xu79990962020-06-12 16:57:37 +10002#include <crypto/hash.h>
Al Viro4f18cd32014-02-05 19:11:33 -05003#include <linux/export.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -06004#include <linux/bvec.h>
Albert van der Linde4d0e9df2020-10-15 20:13:50 -07005#include <linux/fault-inject-usercopy.h>
Al Viro4f18cd32014-02-05 19:11:33 -05006#include <linux/uio.h>
7#include <linux/pagemap.h>
Al Viro91f79c42014-03-21 04:58:33 -04008#include <linux/slab.h>
9#include <linux/vmalloc.h>
Al Viro241699c2016-09-22 16:33:12 -040010#include <linux/splice.h>
Christoph Hellwigbfdc5972020-09-25 06:51:40 +020011#include <linux/compat.h>
Al Viroa604ec72014-11-24 01:08:00 -050012#include <net/checksum.h>
Sagi Grimbergd05f4432018-12-03 17:52:09 -080013#include <linux/scatterlist.h>
Marco Elverd0ef4c32020-01-21 17:05:11 +010014#include <linux/instrumented.h>
Al Viro4f18cd32014-02-05 19:11:33 -050015
Al Viro241699c2016-09-22 16:33:12 -040016#define PIPE_PARANOIA /* for now */
17
Al Viro04a31162014-11-27 13:51:41 -050018#define iterate_iovec(i, n, __v, __p, skip, STEP) { \
19 size_t left; \
20 size_t wanted = n; \
21 __p = i->iov; \
22 __v.iov_len = min(n, __p->iov_len - skip); \
23 if (likely(__v.iov_len)) { \
24 __v.iov_base = __p->iov_base + skip; \
25 left = (STEP); \
26 __v.iov_len -= left; \
27 skip += __v.iov_len; \
28 n -= __v.iov_len; \
29 } else { \
30 left = 0; \
31 } \
32 while (unlikely(!left && n)) { \
33 __p++; \
34 __v.iov_len = min(n, __p->iov_len); \
35 if (unlikely(!__v.iov_len)) \
36 continue; \
37 __v.iov_base = __p->iov_base; \
38 left = (STEP); \
39 __v.iov_len -= left; \
40 skip = __v.iov_len; \
41 n -= __v.iov_len; \
42 } \
43 n = wanted - n; \
44}
45
Al Viroa2804552014-11-27 14:48:42 -050046#define iterate_kvec(i, n, __v, __p, skip, STEP) { \
47 size_t wanted = n; \
48 __p = i->kvec; \
49 __v.iov_len = min(n, __p->iov_len - skip); \
50 if (likely(__v.iov_len)) { \
51 __v.iov_base = __p->iov_base + skip; \
52 (void)(STEP); \
53 skip += __v.iov_len; \
54 n -= __v.iov_len; \
55 } \
56 while (unlikely(n)) { \
57 __p++; \
58 __v.iov_len = min(n, __p->iov_len); \
59 if (unlikely(!__v.iov_len)) \
60 continue; \
61 __v.iov_base = __p->iov_base; \
62 (void)(STEP); \
63 skip = __v.iov_len; \
64 n -= __v.iov_len; \
65 } \
66 n = wanted; \
67}
68
Ming Lei1bdc76a2016-05-30 21:34:32 +080069#define iterate_bvec(i, n, __v, __bi, skip, STEP) { \
70 struct bvec_iter __start; \
71 __start.bi_size = n; \
72 __start.bi_bvec_done = skip; \
73 __start.bi_idx = 0; \
74 for_each_bvec(__v, i->bvec, __bi, __start) { \
75 if (!__v.bv_len) \
Al Viro04a31162014-11-27 13:51:41 -050076 continue; \
Al Viro04a31162014-11-27 13:51:41 -050077 (void)(STEP); \
Al Viro04a31162014-11-27 13:51:41 -050078 } \
Al Viro04a31162014-11-27 13:51:41 -050079}
80
Al Viroa2804552014-11-27 14:48:42 -050081#define iterate_all_kinds(i, n, v, I, B, K) { \
Al Viro33844e62016-12-21 21:55:02 -050082 if (likely(n)) { \
83 size_t skip = i->iov_offset; \
84 if (unlikely(i->type & ITER_BVEC)) { \
85 struct bio_vec v; \
86 struct bvec_iter __bi; \
87 iterate_bvec(i, n, v, __bi, skip, (B)) \
88 } else if (unlikely(i->type & ITER_KVEC)) { \
89 const struct kvec *kvec; \
90 struct kvec v; \
91 iterate_kvec(i, n, v, kvec, skip, (K)) \
David Howells9ea9ce02018-10-20 00:57:56 +010092 } else if (unlikely(i->type & ITER_DISCARD)) { \
Al Viro33844e62016-12-21 21:55:02 -050093 } else { \
94 const struct iovec *iov; \
95 struct iovec v; \
96 iterate_iovec(i, n, v, iov, skip, (I)) \
97 } \
Al Viro04a31162014-11-27 13:51:41 -050098 } \
99}
100
Al Viroa2804552014-11-27 14:48:42 -0500101#define iterate_and_advance(i, n, v, I, B, K) { \
Al Virodd254f52016-05-09 11:54:48 -0400102 if (unlikely(i->count < n)) \
103 n = i->count; \
Al Viro19f18452016-05-25 17:36:19 -0400104 if (i->count) { \
Al Virodd254f52016-05-09 11:54:48 -0400105 size_t skip = i->iov_offset; \
106 if (unlikely(i->type & ITER_BVEC)) { \
Ming Lei1bdc76a2016-05-30 21:34:32 +0800107 const struct bio_vec *bvec = i->bvec; \
Al Virodd254f52016-05-09 11:54:48 -0400108 struct bio_vec v; \
Ming Lei1bdc76a2016-05-30 21:34:32 +0800109 struct bvec_iter __bi; \
110 iterate_bvec(i, n, v, __bi, skip, (B)) \
111 i->bvec = __bvec_iter_bvec(i->bvec, __bi); \
112 i->nr_segs -= i->bvec - bvec; \
113 skip = __bi.bi_bvec_done; \
Al Virodd254f52016-05-09 11:54:48 -0400114 } else if (unlikely(i->type & ITER_KVEC)) { \
115 const struct kvec *kvec; \
116 struct kvec v; \
117 iterate_kvec(i, n, v, kvec, skip, (K)) \
118 if (skip == kvec->iov_len) { \
119 kvec++; \
120 skip = 0; \
121 } \
122 i->nr_segs -= kvec - i->kvec; \
123 i->kvec = kvec; \
David Howells9ea9ce02018-10-20 00:57:56 +0100124 } else if (unlikely(i->type & ITER_DISCARD)) { \
125 skip += n; \
Al Virodd254f52016-05-09 11:54:48 -0400126 } else { \
127 const struct iovec *iov; \
128 struct iovec v; \
129 iterate_iovec(i, n, v, iov, skip, (I)) \
130 if (skip == iov->iov_len) { \
131 iov++; \
132 skip = 0; \
133 } \
134 i->nr_segs -= iov - i->iov; \
135 i->iov = iov; \
Al Viro7ce2a912014-11-27 13:59:45 -0500136 } \
Al Virodd254f52016-05-09 11:54:48 -0400137 i->count -= n; \
138 i->iov_offset = skip; \
Al Viro7ce2a912014-11-27 13:59:45 -0500139 } \
Al Viro7ce2a912014-11-27 13:59:45 -0500140}
141
Al Viro09fc68dc2017-06-29 22:25:14 -0400142static int copyout(void __user *to, const void *from, size_t n)
143{
Albert van der Linde4d0e9df2020-10-15 20:13:50 -0700144 if (should_fail_usercopy())
145 return n;
Linus Torvalds96d4f262019-01-03 18:57:57 -0800146 if (access_ok(to, n)) {
Marco Elverd0ef4c32020-01-21 17:05:11 +0100147 instrument_copy_to_user(to, from, n);
Al Viro09fc68dc2017-06-29 22:25:14 -0400148 n = raw_copy_to_user(to, from, n);
149 }
150 return n;
151}
152
153static int copyin(void *to, const void __user *from, size_t n)
154{
Albert van der Linde4d0e9df2020-10-15 20:13:50 -0700155 if (should_fail_usercopy())
156 return n;
Linus Torvalds96d4f262019-01-03 18:57:57 -0800157 if (access_ok(from, n)) {
Marco Elverd0ef4c32020-01-21 17:05:11 +0100158 instrument_copy_from_user(to, from, n);
Al Viro09fc68dc2017-06-29 22:25:14 -0400159 n = raw_copy_from_user(to, from, n);
160 }
161 return n;
162}
163
Al Viro62a80672014-04-04 23:12:29 -0400164static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes,
Al Viro4f18cd32014-02-05 19:11:33 -0500165 struct iov_iter *i)
166{
167 size_t skip, copy, left, wanted;
168 const struct iovec *iov;
169 char __user *buf;
170 void *kaddr, *from;
171
172 if (unlikely(bytes > i->count))
173 bytes = i->count;
174
175 if (unlikely(!bytes))
176 return 0;
177
Al Viro09fc68dc2017-06-29 22:25:14 -0400178 might_fault();
Al Viro4f18cd32014-02-05 19:11:33 -0500179 wanted = bytes;
180 iov = i->iov;
181 skip = i->iov_offset;
182 buf = iov->iov_base + skip;
183 copy = min(bytes, iov->iov_len - skip);
184
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700185 if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_writeable(buf, copy)) {
Al Viro4f18cd32014-02-05 19:11:33 -0500186 kaddr = kmap_atomic(page);
187 from = kaddr + offset;
188
189 /* first chunk, usually the only one */
Al Viro09fc68dc2017-06-29 22:25:14 -0400190 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500191 copy -= left;
192 skip += copy;
193 from += copy;
194 bytes -= copy;
195
196 while (unlikely(!left && bytes)) {
197 iov++;
198 buf = iov->iov_base;
199 copy = min(bytes, iov->iov_len);
Al Viro09fc68dc2017-06-29 22:25:14 -0400200 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500201 copy -= left;
202 skip = copy;
203 from += copy;
204 bytes -= copy;
205 }
206 if (likely(!bytes)) {
207 kunmap_atomic(kaddr);
208 goto done;
209 }
210 offset = from - kaddr;
211 buf += copy;
212 kunmap_atomic(kaddr);
213 copy = min(bytes, iov->iov_len - skip);
214 }
215 /* Too bad - revert to non-atomic kmap */
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700216
Al Viro4f18cd32014-02-05 19:11:33 -0500217 kaddr = kmap(page);
218 from = kaddr + offset;
Al Viro09fc68dc2017-06-29 22:25:14 -0400219 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500220 copy -= left;
221 skip += copy;
222 from += copy;
223 bytes -= copy;
224 while (unlikely(!left && bytes)) {
225 iov++;
226 buf = iov->iov_base;
227 copy = min(bytes, iov->iov_len);
Al Viro09fc68dc2017-06-29 22:25:14 -0400228 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500229 copy -= left;
230 skip = copy;
231 from += copy;
232 bytes -= copy;
233 }
234 kunmap(page);
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700235
Al Viro4f18cd32014-02-05 19:11:33 -0500236done:
Al Viro81055e52014-04-04 19:23:46 -0400237 if (skip == iov->iov_len) {
238 iov++;
239 skip = 0;
240 }
Al Viro4f18cd32014-02-05 19:11:33 -0500241 i->count -= wanted - bytes;
242 i->nr_segs -= iov - i->iov;
243 i->iov = iov;
244 i->iov_offset = skip;
245 return wanted - bytes;
246}
Al Viro4f18cd32014-02-05 19:11:33 -0500247
Al Viro62a80672014-04-04 23:12:29 -0400248static size_t copy_page_from_iter_iovec(struct page *page, size_t offset, size_t bytes,
Al Virof0d1bec2014-04-03 15:05:18 -0400249 struct iov_iter *i)
250{
251 size_t skip, copy, left, wanted;
252 const struct iovec *iov;
253 char __user *buf;
254 void *kaddr, *to;
255
256 if (unlikely(bytes > i->count))
257 bytes = i->count;
258
259 if (unlikely(!bytes))
260 return 0;
261
Al Viro09fc68dc2017-06-29 22:25:14 -0400262 might_fault();
Al Virof0d1bec2014-04-03 15:05:18 -0400263 wanted = bytes;
264 iov = i->iov;
265 skip = i->iov_offset;
266 buf = iov->iov_base + skip;
267 copy = min(bytes, iov->iov_len - skip);
268
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700269 if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_readable(buf, copy)) {
Al Virof0d1bec2014-04-03 15:05:18 -0400270 kaddr = kmap_atomic(page);
271 to = kaddr + offset;
272
273 /* first chunk, usually the only one */
Al Viro09fc68dc2017-06-29 22:25:14 -0400274 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400275 copy -= left;
276 skip += copy;
277 to += copy;
278 bytes -= copy;
279
280 while (unlikely(!left && bytes)) {
281 iov++;
282 buf = iov->iov_base;
283 copy = min(bytes, iov->iov_len);
Al Viro09fc68dc2017-06-29 22:25:14 -0400284 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400285 copy -= left;
286 skip = copy;
287 to += copy;
288 bytes -= copy;
289 }
290 if (likely(!bytes)) {
291 kunmap_atomic(kaddr);
292 goto done;
293 }
294 offset = to - kaddr;
295 buf += copy;
296 kunmap_atomic(kaddr);
297 copy = min(bytes, iov->iov_len - skip);
298 }
299 /* Too bad - revert to non-atomic kmap */
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700300
Al Virof0d1bec2014-04-03 15:05:18 -0400301 kaddr = kmap(page);
302 to = kaddr + offset;
Al Viro09fc68dc2017-06-29 22:25:14 -0400303 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400304 copy -= left;
305 skip += copy;
306 to += copy;
307 bytes -= copy;
308 while (unlikely(!left && bytes)) {
309 iov++;
310 buf = iov->iov_base;
311 copy = min(bytes, iov->iov_len);
Al Viro09fc68dc2017-06-29 22:25:14 -0400312 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400313 copy -= left;
314 skip = copy;
315 to += copy;
316 bytes -= copy;
317 }
318 kunmap(page);
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700319
Al Virof0d1bec2014-04-03 15:05:18 -0400320done:
Al Viro81055e52014-04-04 19:23:46 -0400321 if (skip == iov->iov_len) {
322 iov++;
323 skip = 0;
324 }
Al Virof0d1bec2014-04-03 15:05:18 -0400325 i->count -= wanted - bytes;
326 i->nr_segs -= iov - i->iov;
327 i->iov = iov;
328 i->iov_offset = skip;
329 return wanted - bytes;
330}
Al Virof0d1bec2014-04-03 15:05:18 -0400331
Al Viro241699c2016-09-22 16:33:12 -0400332#ifdef PIPE_PARANOIA
333static bool sanity(const struct iov_iter *i)
334{
335 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +0000336 unsigned int p_head = pipe->head;
337 unsigned int p_tail = pipe->tail;
338 unsigned int p_mask = pipe->ring_size - 1;
339 unsigned int p_occupancy = pipe_occupancy(p_head, p_tail);
340 unsigned int i_head = i->head;
341 unsigned int idx;
342
Al Viro241699c2016-09-22 16:33:12 -0400343 if (i->iov_offset) {
344 struct pipe_buffer *p;
David Howells8cefc102019-11-15 13:30:32 +0000345 if (unlikely(p_occupancy == 0))
Al Viro241699c2016-09-22 16:33:12 -0400346 goto Bad; // pipe must be non-empty
David Howells8cefc102019-11-15 13:30:32 +0000347 if (unlikely(i_head != p_head - 1))
Al Viro241699c2016-09-22 16:33:12 -0400348 goto Bad; // must be at the last buffer...
349
David Howells8cefc102019-11-15 13:30:32 +0000350 p = &pipe->bufs[i_head & p_mask];
Al Viro241699c2016-09-22 16:33:12 -0400351 if (unlikely(p->offset + p->len != i->iov_offset))
352 goto Bad; // ... at the end of segment
353 } else {
David Howells8cefc102019-11-15 13:30:32 +0000354 if (i_head != p_head)
Al Viro241699c2016-09-22 16:33:12 -0400355 goto Bad; // must be right after the last buffer
356 }
357 return true;
358Bad:
David Howells8cefc102019-11-15 13:30:32 +0000359 printk(KERN_ERR "idx = %d, offset = %zd\n", i_head, i->iov_offset);
360 printk(KERN_ERR "head = %d, tail = %d, buffers = %d\n",
361 p_head, p_tail, pipe->ring_size);
362 for (idx = 0; idx < pipe->ring_size; idx++)
Al Viro241699c2016-09-22 16:33:12 -0400363 printk(KERN_ERR "[%p %p %d %d]\n",
364 pipe->bufs[idx].ops,
365 pipe->bufs[idx].page,
366 pipe->bufs[idx].offset,
367 pipe->bufs[idx].len);
368 WARN_ON(1);
369 return false;
370}
371#else
372#define sanity(i) true
373#endif
374
Al Viro241699c2016-09-22 16:33:12 -0400375static size_t copy_page_to_iter_pipe(struct page *page, size_t offset, size_t bytes,
376 struct iov_iter *i)
377{
378 struct pipe_inode_info *pipe = i->pipe;
379 struct pipe_buffer *buf;
David Howells8cefc102019-11-15 13:30:32 +0000380 unsigned int p_tail = pipe->tail;
381 unsigned int p_mask = pipe->ring_size - 1;
382 unsigned int i_head = i->head;
Al Viro241699c2016-09-22 16:33:12 -0400383 size_t off;
Al Viro241699c2016-09-22 16:33:12 -0400384
385 if (unlikely(bytes > i->count))
386 bytes = i->count;
387
388 if (unlikely(!bytes))
389 return 0;
390
391 if (!sanity(i))
392 return 0;
393
394 off = i->iov_offset;
David Howells8cefc102019-11-15 13:30:32 +0000395 buf = &pipe->bufs[i_head & p_mask];
Al Viro241699c2016-09-22 16:33:12 -0400396 if (off) {
397 if (offset == off && buf->page == page) {
398 /* merge with the last one */
399 buf->len += bytes;
400 i->iov_offset += bytes;
401 goto out;
402 }
David Howells8cefc102019-11-15 13:30:32 +0000403 i_head++;
404 buf = &pipe->bufs[i_head & p_mask];
Al Viro241699c2016-09-22 16:33:12 -0400405 }
David Howells6718b6f2019-10-16 16:47:32 +0100406 if (pipe_full(i_head, p_tail, pipe->max_usage))
Al Viro241699c2016-09-22 16:33:12 -0400407 return 0;
David Howells8cefc102019-11-15 13:30:32 +0000408
Al Viro241699c2016-09-22 16:33:12 -0400409 buf->ops = &page_cache_pipe_buf_ops;
David Howells8cefc102019-11-15 13:30:32 +0000410 get_page(page);
411 buf->page = page;
Al Viro241699c2016-09-22 16:33:12 -0400412 buf->offset = offset;
413 buf->len = bytes;
David Howells8cefc102019-11-15 13:30:32 +0000414
415 pipe->head = i_head + 1;
Al Viro241699c2016-09-22 16:33:12 -0400416 i->iov_offset = offset + bytes;
David Howells8cefc102019-11-15 13:30:32 +0000417 i->head = i_head;
Al Viro241699c2016-09-22 16:33:12 -0400418out:
419 i->count -= bytes;
420 return bytes;
421}
422
Al Viro4f18cd32014-02-05 19:11:33 -0500423/*
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400424 * Fault in one or more iovecs of the given iov_iter, to a maximum length of
425 * bytes. For each iovec, fault in each page that constitutes the iovec.
426 *
427 * Return 0 on success, or non-zero if the memory could not be accessed (i.e.
428 * because it is an invalid address).
429 */
Al Virod4690f12016-09-16 00:11:45 +0100430int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400431{
432 size_t skip = i->iov_offset;
433 const struct iovec *iov;
434 int err;
435 struct iovec v;
436
437 if (!(i->type & (ITER_BVEC|ITER_KVEC))) {
438 iterate_iovec(i, bytes, v, iov, skip, ({
Al Viro4bce9f6e2016-09-17 18:02:44 -0400439 err = fault_in_pages_readable(v.iov_base, v.iov_len);
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400440 if (unlikely(err))
441 return err;
442 0;}))
443 }
444 return 0;
445}
Al Virod4690f12016-09-16 00:11:45 +0100446EXPORT_SYMBOL(iov_iter_fault_in_readable);
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400447
David Howellsaa563d72018-10-20 00:57:56 +0100448void iov_iter_init(struct iov_iter *i, unsigned int direction,
Al Viro71d8e532014-03-05 19:28:09 -0500449 const struct iovec *iov, unsigned long nr_segs,
450 size_t count)
451{
David Howellsaa563d72018-10-20 00:57:56 +0100452 WARN_ON(direction & ~(READ | WRITE));
453 direction &= READ | WRITE;
454
Al Viro71d8e532014-03-05 19:28:09 -0500455 /* It will get better. Eventually... */
Al Virodb68ce12017-03-20 21:08:07 -0400456 if (uaccess_kernel()) {
David Howellsaa563d72018-10-20 00:57:56 +0100457 i->type = ITER_KVEC | direction;
Al Viroa2804552014-11-27 14:48:42 -0500458 i->kvec = (struct kvec *)iov;
459 } else {
David Howellsaa563d72018-10-20 00:57:56 +0100460 i->type = ITER_IOVEC | direction;
Al Viroa2804552014-11-27 14:48:42 -0500461 i->iov = iov;
462 }
Al Viro71d8e532014-03-05 19:28:09 -0500463 i->nr_segs = nr_segs;
464 i->iov_offset = 0;
465 i->count = count;
466}
467EXPORT_SYMBOL(iov_iter_init);
Al Viro7b2c99d2014-03-15 04:05:57 -0400468
Al Viro62a80672014-04-04 23:12:29 -0400469static void memcpy_from_page(char *to, struct page *page, size_t offset, size_t len)
470{
471 char *from = kmap_atomic(page);
472 memcpy(to, from + offset, len);
473 kunmap_atomic(from);
474}
475
Al Viro36f7a8a2015-12-06 16:49:22 -0500476static void memcpy_to_page(struct page *page, size_t offset, const char *from, size_t len)
Al Viro62a80672014-04-04 23:12:29 -0400477{
478 char *to = kmap_atomic(page);
479 memcpy(to + offset, from, len);
480 kunmap_atomic(to);
481}
482
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400483static void memzero_page(struct page *page, size_t offset, size_t len)
484{
485 char *addr = kmap_atomic(page);
486 memset(addr + offset, 0, len);
487 kunmap_atomic(addr);
488}
489
Al Viro241699c2016-09-22 16:33:12 -0400490static inline bool allocated(struct pipe_buffer *buf)
491{
492 return buf->ops == &default_pipe_buf_ops;
493}
494
David Howells8cefc102019-11-15 13:30:32 +0000495static inline void data_start(const struct iov_iter *i,
496 unsigned int *iter_headp, size_t *offp)
Al Viro241699c2016-09-22 16:33:12 -0400497{
David Howells8cefc102019-11-15 13:30:32 +0000498 unsigned int p_mask = i->pipe->ring_size - 1;
499 unsigned int iter_head = i->head;
Al Viro241699c2016-09-22 16:33:12 -0400500 size_t off = i->iov_offset;
David Howells8cefc102019-11-15 13:30:32 +0000501
502 if (off && (!allocated(&i->pipe->bufs[iter_head & p_mask]) ||
503 off == PAGE_SIZE)) {
504 iter_head++;
Al Viro241699c2016-09-22 16:33:12 -0400505 off = 0;
506 }
David Howells8cefc102019-11-15 13:30:32 +0000507 *iter_headp = iter_head;
Al Viro241699c2016-09-22 16:33:12 -0400508 *offp = off;
509}
510
511static size_t push_pipe(struct iov_iter *i, size_t size,
David Howells8cefc102019-11-15 13:30:32 +0000512 int *iter_headp, size_t *offp)
Al Viro241699c2016-09-22 16:33:12 -0400513{
514 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +0000515 unsigned int p_tail = pipe->tail;
516 unsigned int p_mask = pipe->ring_size - 1;
517 unsigned int iter_head;
Al Viro241699c2016-09-22 16:33:12 -0400518 size_t off;
Al Viro241699c2016-09-22 16:33:12 -0400519 ssize_t left;
520
521 if (unlikely(size > i->count))
522 size = i->count;
523 if (unlikely(!size))
524 return 0;
525
526 left = size;
David Howells8cefc102019-11-15 13:30:32 +0000527 data_start(i, &iter_head, &off);
528 *iter_headp = iter_head;
Al Viro241699c2016-09-22 16:33:12 -0400529 *offp = off;
530 if (off) {
531 left -= PAGE_SIZE - off;
532 if (left <= 0) {
David Howells8cefc102019-11-15 13:30:32 +0000533 pipe->bufs[iter_head & p_mask].len += size;
Al Viro241699c2016-09-22 16:33:12 -0400534 return size;
535 }
David Howells8cefc102019-11-15 13:30:32 +0000536 pipe->bufs[iter_head & p_mask].len = PAGE_SIZE;
537 iter_head++;
Al Viro241699c2016-09-22 16:33:12 -0400538 }
David Howells6718b6f2019-10-16 16:47:32 +0100539 while (!pipe_full(iter_head, p_tail, pipe->max_usage)) {
David Howells8cefc102019-11-15 13:30:32 +0000540 struct pipe_buffer *buf = &pipe->bufs[iter_head & p_mask];
Al Viro241699c2016-09-22 16:33:12 -0400541 struct page *page = alloc_page(GFP_USER);
542 if (!page)
543 break;
David Howells8cefc102019-11-15 13:30:32 +0000544
545 buf->ops = &default_pipe_buf_ops;
546 buf->page = page;
547 buf->offset = 0;
548 buf->len = min_t(ssize_t, left, PAGE_SIZE);
549 left -= buf->len;
550 iter_head++;
551 pipe->head = iter_head;
552
553 if (left == 0)
Al Viro241699c2016-09-22 16:33:12 -0400554 return size;
Al Viro241699c2016-09-22 16:33:12 -0400555 }
556 return size - left;
557}
558
559static size_t copy_pipe_to_iter(const void *addr, size_t bytes,
560 struct iov_iter *i)
561{
562 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +0000563 unsigned int p_mask = pipe->ring_size - 1;
564 unsigned int i_head;
Al Viro241699c2016-09-22 16:33:12 -0400565 size_t n, off;
Al Viro241699c2016-09-22 16:33:12 -0400566
567 if (!sanity(i))
568 return 0;
569
David Howells8cefc102019-11-15 13:30:32 +0000570 bytes = n = push_pipe(i, bytes, &i_head, &off);
Al Viro241699c2016-09-22 16:33:12 -0400571 if (unlikely(!n))
572 return 0;
David Howells8cefc102019-11-15 13:30:32 +0000573 do {
Al Viro241699c2016-09-22 16:33:12 -0400574 size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
David Howells8cefc102019-11-15 13:30:32 +0000575 memcpy_to_page(pipe->bufs[i_head & p_mask].page, off, addr, chunk);
576 i->head = i_head;
Al Viro241699c2016-09-22 16:33:12 -0400577 i->iov_offset = off + chunk;
578 n -= chunk;
579 addr += chunk;
David Howells8cefc102019-11-15 13:30:32 +0000580 off = 0;
581 i_head++;
582 } while (n);
Al Viro241699c2016-09-22 16:33:12 -0400583 i->count -= bytes;
584 return bytes;
585}
586
Al Virof9152892018-11-27 22:32:59 -0500587static __wsum csum_and_memcpy(void *to, const void *from, size_t len,
588 __wsum sum, size_t off)
589{
Al Virocc44c172020-07-11 00:12:07 -0400590 __wsum next = csum_partial_copy_nocheck(from, to, len);
Al Virof9152892018-11-27 22:32:59 -0500591 return csum_block_add(sum, next, off);
592}
593
Al Viro78e1f382018-11-25 16:24:16 -0500594static size_t csum_and_copy_to_pipe_iter(const void *addr, size_t bytes,
595 __wsum *csum, struct iov_iter *i)
596{
597 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +0000598 unsigned int p_mask = pipe->ring_size - 1;
599 unsigned int i_head;
Al Viro78e1f382018-11-25 16:24:16 -0500600 size_t n, r;
601 size_t off = 0;
Al Virof9152892018-11-27 22:32:59 -0500602 __wsum sum = *csum;
Al Viro78e1f382018-11-25 16:24:16 -0500603
604 if (!sanity(i))
605 return 0;
606
David Howells8cefc102019-11-15 13:30:32 +0000607 bytes = n = push_pipe(i, bytes, &i_head, &r);
Al Viro78e1f382018-11-25 16:24:16 -0500608 if (unlikely(!n))
609 return 0;
David Howells8cefc102019-11-15 13:30:32 +0000610 do {
Al Viro78e1f382018-11-25 16:24:16 -0500611 size_t chunk = min_t(size_t, n, PAGE_SIZE - r);
David Howells8cefc102019-11-15 13:30:32 +0000612 char *p = kmap_atomic(pipe->bufs[i_head & p_mask].page);
Al Virof9152892018-11-27 22:32:59 -0500613 sum = csum_and_memcpy(p + r, addr, chunk, sum, off);
Al Viro78e1f382018-11-25 16:24:16 -0500614 kunmap_atomic(p);
David Howells8cefc102019-11-15 13:30:32 +0000615 i->head = i_head;
Al Viro78e1f382018-11-25 16:24:16 -0500616 i->iov_offset = r + chunk;
617 n -= chunk;
618 off += chunk;
619 addr += chunk;
David Howells8cefc102019-11-15 13:30:32 +0000620 r = 0;
621 i_head++;
622 } while (n);
Al Viro78e1f382018-11-25 16:24:16 -0500623 i->count -= bytes;
624 *csum = sum;
625 return bytes;
626}
627
Al Viroaa28de22017-06-29 21:45:10 -0400628size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
Al Viro62a80672014-04-04 23:12:29 -0400629{
Al Viro36f7a8a2015-12-06 16:49:22 -0500630 const char *from = addr;
David Howells00e23702018-10-22 13:07:28 +0100631 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -0400632 return copy_pipe_to_iter(addr, bytes, i);
Al Viro09fc68dc2017-06-29 22:25:14 -0400633 if (iter_is_iovec(i))
634 might_fault();
Al Viro3d4d3e42014-11-27 14:28:06 -0500635 iterate_and_advance(i, bytes, v,
Al Viro09fc68dc2017-06-29 22:25:14 -0400636 copyout(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len),
Al Viro3d4d3e42014-11-27 14:28:06 -0500637 memcpy_to_page(v.bv_page, v.bv_offset,
Al Viroa2804552014-11-27 14:48:42 -0500638 (from += v.bv_len) - v.bv_len, v.bv_len),
639 memcpy(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len)
Al Viro3d4d3e42014-11-27 14:28:06 -0500640 )
Al Viro62a80672014-04-04 23:12:29 -0400641
Al Viro3d4d3e42014-11-27 14:28:06 -0500642 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400643}
Al Viroaa28de22017-06-29 21:45:10 -0400644EXPORT_SYMBOL(_copy_to_iter);
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400645
Dan Williamsec6347b2020-10-05 20:40:16 -0700646#ifdef CONFIG_ARCH_HAS_COPY_MC
647static int copyout_mc(void __user *to, const void *from, size_t n)
Dan Williams87803562018-05-03 17:06:31 -0700648{
Linus Torvalds96d4f262019-01-03 18:57:57 -0800649 if (access_ok(to, n)) {
Marco Elverd0ef4c32020-01-21 17:05:11 +0100650 instrument_copy_to_user(to, from, n);
Dan Williamsec6347b2020-10-05 20:40:16 -0700651 n = copy_mc_to_user((__force void *) to, from, n);
Dan Williams87803562018-05-03 17:06:31 -0700652 }
653 return n;
654}
655
Dan Williamsec6347b2020-10-05 20:40:16 -0700656static unsigned long copy_mc_to_page(struct page *page, size_t offset,
Dan Williams87803562018-05-03 17:06:31 -0700657 const char *from, size_t len)
658{
659 unsigned long ret;
660 char *to;
661
662 to = kmap_atomic(page);
Dan Williamsec6347b2020-10-05 20:40:16 -0700663 ret = copy_mc_to_kernel(to + offset, from, len);
Dan Williams87803562018-05-03 17:06:31 -0700664 kunmap_atomic(to);
665
666 return ret;
667}
668
Dan Williamsec6347b2020-10-05 20:40:16 -0700669static size_t copy_mc_pipe_to_iter(const void *addr, size_t bytes,
Dan Williamsca146f62018-07-08 13:46:12 -0700670 struct iov_iter *i)
671{
672 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +0000673 unsigned int p_mask = pipe->ring_size - 1;
674 unsigned int i_head;
Dan Williamsca146f62018-07-08 13:46:12 -0700675 size_t n, off, xfer = 0;
Dan Williamsca146f62018-07-08 13:46:12 -0700676
677 if (!sanity(i))
678 return 0;
679
David Howells8cefc102019-11-15 13:30:32 +0000680 bytes = n = push_pipe(i, bytes, &i_head, &off);
Dan Williamsca146f62018-07-08 13:46:12 -0700681 if (unlikely(!n))
682 return 0;
David Howells8cefc102019-11-15 13:30:32 +0000683 do {
Dan Williamsca146f62018-07-08 13:46:12 -0700684 size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
685 unsigned long rem;
686
Dan Williamsec6347b2020-10-05 20:40:16 -0700687 rem = copy_mc_to_page(pipe->bufs[i_head & p_mask].page,
David Howells8cefc102019-11-15 13:30:32 +0000688 off, addr, chunk);
689 i->head = i_head;
Dan Williamsca146f62018-07-08 13:46:12 -0700690 i->iov_offset = off + chunk - rem;
691 xfer += chunk - rem;
692 if (rem)
693 break;
694 n -= chunk;
695 addr += chunk;
David Howells8cefc102019-11-15 13:30:32 +0000696 off = 0;
697 i_head++;
698 } while (n);
Dan Williamsca146f62018-07-08 13:46:12 -0700699 i->count -= xfer;
700 return xfer;
701}
702
Dan Williamsbf3eeb92018-07-08 13:46:02 -0700703/**
Dan Williamsec6347b2020-10-05 20:40:16 -0700704 * _copy_mc_to_iter - copy to iter with source memory error exception handling
Dan Williamsbf3eeb92018-07-08 13:46:02 -0700705 * @addr: source kernel address
706 * @bytes: total transfer length
707 * @iter: destination iterator
708 *
Dan Williamsec6347b2020-10-05 20:40:16 -0700709 * The pmem driver deploys this for the dax operation
710 * (dax_copy_to_iter()) for dax reads (bypass page-cache and the
711 * block-layer). Upon #MC read(2) aborts and returns EIO or the bytes
712 * successfully copied.
Dan Williamsbf3eeb92018-07-08 13:46:02 -0700713 *
Dan Williamsec6347b2020-10-05 20:40:16 -0700714 * The main differences between this and typical _copy_to_iter().
Dan Williamsbf3eeb92018-07-08 13:46:02 -0700715 *
716 * * Typical tail/residue handling after a fault retries the copy
717 * byte-by-byte until the fault happens again. Re-triggering machine
718 * checks is potentially fatal so the implementation uses source
719 * alignment and poison alignment assumptions to avoid re-triggering
720 * hardware exceptions.
721 *
722 * * ITER_KVEC, ITER_PIPE, and ITER_BVEC can return short copies.
723 * Compare to copy_to_iter() where only ITER_IOVEC attempts might return
724 * a short copy.
Dan Williamsbf3eeb92018-07-08 13:46:02 -0700725 */
Dan Williamsec6347b2020-10-05 20:40:16 -0700726size_t _copy_mc_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
Dan Williams87803562018-05-03 17:06:31 -0700727{
728 const char *from = addr;
729 unsigned long rem, curr_addr, s_addr = (unsigned long) addr;
730
David Howells00e23702018-10-22 13:07:28 +0100731 if (unlikely(iov_iter_is_pipe(i)))
Dan Williamsec6347b2020-10-05 20:40:16 -0700732 return copy_mc_pipe_to_iter(addr, bytes, i);
Dan Williams87803562018-05-03 17:06:31 -0700733 if (iter_is_iovec(i))
734 might_fault();
735 iterate_and_advance(i, bytes, v,
Dan Williamsec6347b2020-10-05 20:40:16 -0700736 copyout_mc(v.iov_base, (from += v.iov_len) - v.iov_len,
737 v.iov_len),
Dan Williams87803562018-05-03 17:06:31 -0700738 ({
Dan Williamsec6347b2020-10-05 20:40:16 -0700739 rem = copy_mc_to_page(v.bv_page, v.bv_offset,
740 (from += v.bv_len) - v.bv_len, v.bv_len);
Dan Williams87803562018-05-03 17:06:31 -0700741 if (rem) {
742 curr_addr = (unsigned long) from;
743 bytes = curr_addr - s_addr - rem;
744 return bytes;
745 }
746 }),
747 ({
Dan Williamsec6347b2020-10-05 20:40:16 -0700748 rem = copy_mc_to_kernel(v.iov_base, (from += v.iov_len)
749 - v.iov_len, v.iov_len);
Dan Williams87803562018-05-03 17:06:31 -0700750 if (rem) {
751 curr_addr = (unsigned long) from;
752 bytes = curr_addr - s_addr - rem;
753 return bytes;
754 }
755 })
756 )
757
758 return bytes;
759}
Dan Williamsec6347b2020-10-05 20:40:16 -0700760EXPORT_SYMBOL_GPL(_copy_mc_to_iter);
761#endif /* CONFIG_ARCH_HAS_COPY_MC */
Dan Williams87803562018-05-03 17:06:31 -0700762
Al Viroaa28de22017-06-29 21:45:10 -0400763size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i)
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400764{
Al Viro0dbca9a2014-11-27 14:26:43 -0500765 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100766 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro241699c2016-09-22 16:33:12 -0400767 WARN_ON(1);
768 return 0;
769 }
Al Viro09fc68dc2017-06-29 22:25:14 -0400770 if (iter_is_iovec(i))
771 might_fault();
Al Viro0dbca9a2014-11-27 14:26:43 -0500772 iterate_and_advance(i, bytes, v,
Al Viro09fc68dc2017-06-29 22:25:14 -0400773 copyin((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len),
Al Viro0dbca9a2014-11-27 14:26:43 -0500774 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
Al Viroa2804552014-11-27 14:48:42 -0500775 v.bv_offset, v.bv_len),
776 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
Al Viro0dbca9a2014-11-27 14:26:43 -0500777 )
778
779 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400780}
Al Viroaa28de22017-06-29 21:45:10 -0400781EXPORT_SYMBOL(_copy_from_iter);
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400782
Al Viroaa28de22017-06-29 21:45:10 -0400783bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i)
Al Virocbbd26b2016-11-01 22:09:04 -0400784{
785 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100786 if (unlikely(iov_iter_is_pipe(i))) {
Al Virocbbd26b2016-11-01 22:09:04 -0400787 WARN_ON(1);
788 return false;
789 }
Al Viro33844e62016-12-21 21:55:02 -0500790 if (unlikely(i->count < bytes))
Al Virocbbd26b2016-11-01 22:09:04 -0400791 return false;
792
Al Viro09fc68dc2017-06-29 22:25:14 -0400793 if (iter_is_iovec(i))
794 might_fault();
Al Virocbbd26b2016-11-01 22:09:04 -0400795 iterate_all_kinds(i, bytes, v, ({
Al Viro09fc68dc2017-06-29 22:25:14 -0400796 if (copyin((to += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -0400797 v.iov_base, v.iov_len))
798 return false;
799 0;}),
800 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
801 v.bv_offset, v.bv_len),
802 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
803 )
804
805 iov_iter_advance(i, bytes);
806 return true;
807}
Al Viroaa28de22017-06-29 21:45:10 -0400808EXPORT_SYMBOL(_copy_from_iter_full);
Al Virocbbd26b2016-11-01 22:09:04 -0400809
Al Viroaa28de22017-06-29 21:45:10 -0400810size_t _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i)
Al Viroaa583092014-11-27 20:27:08 -0500811{
812 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100813 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro241699c2016-09-22 16:33:12 -0400814 WARN_ON(1);
815 return 0;
816 }
Al Viroaa583092014-11-27 20:27:08 -0500817 iterate_and_advance(i, bytes, v,
Al Viro3f763452017-03-25 18:47:28 -0400818 __copy_from_user_inatomic_nocache((to += v.iov_len) - v.iov_len,
Al Viroaa583092014-11-27 20:27:08 -0500819 v.iov_base, v.iov_len),
820 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
821 v.bv_offset, v.bv_len),
822 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
823 )
824
825 return bytes;
826}
Al Viroaa28de22017-06-29 21:45:10 -0400827EXPORT_SYMBOL(_copy_from_iter_nocache);
Al Viroaa583092014-11-27 20:27:08 -0500828
Dan Williams0aed55a2017-05-29 12:22:50 -0700829#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
Dan Williamsabd08d72018-07-08 13:46:07 -0700830/**
831 * _copy_from_iter_flushcache - write destination through cpu cache
832 * @addr: destination kernel address
833 * @bytes: total transfer length
834 * @iter: source iterator
835 *
836 * The pmem driver arranges for filesystem-dax to use this facility via
837 * dax_copy_from_iter() for ensuring that writes to persistent memory
838 * are flushed through the CPU cache. It is differentiated from
839 * _copy_from_iter_nocache() in that guarantees all data is flushed for
840 * all iterator types. The _copy_from_iter_nocache() only attempts to
841 * bypass the cache for the ITER_IOVEC case, and on some archs may use
842 * instructions that strand dirty-data in the cache.
843 */
Linus Torvalds6a37e942017-07-07 20:39:20 -0700844size_t _copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i)
Dan Williams0aed55a2017-05-29 12:22:50 -0700845{
846 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100847 if (unlikely(iov_iter_is_pipe(i))) {
Dan Williams0aed55a2017-05-29 12:22:50 -0700848 WARN_ON(1);
849 return 0;
850 }
851 iterate_and_advance(i, bytes, v,
852 __copy_from_user_flushcache((to += v.iov_len) - v.iov_len,
853 v.iov_base, v.iov_len),
854 memcpy_page_flushcache((to += v.bv_len) - v.bv_len, v.bv_page,
855 v.bv_offset, v.bv_len),
856 memcpy_flushcache((to += v.iov_len) - v.iov_len, v.iov_base,
857 v.iov_len)
858 )
859
860 return bytes;
861}
Linus Torvalds6a37e942017-07-07 20:39:20 -0700862EXPORT_SYMBOL_GPL(_copy_from_iter_flushcache);
Dan Williams0aed55a2017-05-29 12:22:50 -0700863#endif
864
Al Viroaa28de22017-06-29 21:45:10 -0400865bool _copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i)
Al Virocbbd26b2016-11-01 22:09:04 -0400866{
867 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100868 if (unlikely(iov_iter_is_pipe(i))) {
Al Virocbbd26b2016-11-01 22:09:04 -0400869 WARN_ON(1);
870 return false;
871 }
Al Viro33844e62016-12-21 21:55:02 -0500872 if (unlikely(i->count < bytes))
Al Virocbbd26b2016-11-01 22:09:04 -0400873 return false;
874 iterate_all_kinds(i, bytes, v, ({
Al Viro3f763452017-03-25 18:47:28 -0400875 if (__copy_from_user_inatomic_nocache((to += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -0400876 v.iov_base, v.iov_len))
877 return false;
878 0;}),
879 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
880 v.bv_offset, v.bv_len),
881 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
882 )
883
884 iov_iter_advance(i, bytes);
885 return true;
886}
Al Viroaa28de22017-06-29 21:45:10 -0400887EXPORT_SYMBOL(_copy_from_iter_full_nocache);
Al Virocbbd26b2016-11-01 22:09:04 -0400888
Al Viro72e809e2017-06-29 21:52:57 -0400889static inline bool page_copy_sane(struct page *page, size_t offset, size_t n)
890{
Eric Dumazet6daef952019-02-26 10:42:39 -0800891 struct page *head;
892 size_t v = n + offset;
893
894 /*
895 * The general case needs to access the page order in order
896 * to compute the page size.
897 * However, we mostly deal with order-0 pages and thus can
898 * avoid a possible cache line miss for requests that fit all
899 * page orders.
900 */
901 if (n <= v && v <= PAGE_SIZE)
902 return true;
903
904 head = compound_head(page);
905 v += (page - head) << PAGE_SHIFT;
Petar Penkova90bcb82017-08-29 11:20:32 -0700906
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -0700907 if (likely(n <= v && v <= (page_size(head))))
Al Viro72e809e2017-06-29 21:52:57 -0400908 return true;
909 WARN_ON(1);
910 return false;
911}
Al Virod2715242014-11-27 14:22:37 -0500912
913size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
914 struct iov_iter *i)
915{
Al Viro72e809e2017-06-29 21:52:57 -0400916 if (unlikely(!page_copy_sane(page, offset, bytes)))
917 return 0;
Al Virod2715242014-11-27 14:22:37 -0500918 if (i->type & (ITER_BVEC|ITER_KVEC)) {
919 void *kaddr = kmap_atomic(page);
920 size_t wanted = copy_to_iter(kaddr + offset, bytes, i);
921 kunmap_atomic(kaddr);
922 return wanted;
David Howells9ea9ce02018-10-20 00:57:56 +0100923 } else if (unlikely(iov_iter_is_discard(i)))
924 return bytes;
925 else if (likely(!iov_iter_is_pipe(i)))
Al Virod2715242014-11-27 14:22:37 -0500926 return copy_page_to_iter_iovec(page, offset, bytes, i);
Al Viro241699c2016-09-22 16:33:12 -0400927 else
928 return copy_page_to_iter_pipe(page, offset, bytes, i);
Al Virod2715242014-11-27 14:22:37 -0500929}
930EXPORT_SYMBOL(copy_page_to_iter);
931
932size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
933 struct iov_iter *i)
934{
Al Viro72e809e2017-06-29 21:52:57 -0400935 if (unlikely(!page_copy_sane(page, offset, bytes)))
936 return 0;
David Howells9ea9ce02018-10-20 00:57:56 +0100937 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -0400938 WARN_ON(1);
939 return 0;
940 }
Al Virod2715242014-11-27 14:22:37 -0500941 if (i->type & (ITER_BVEC|ITER_KVEC)) {
942 void *kaddr = kmap_atomic(page);
Al Viroaa28de22017-06-29 21:45:10 -0400943 size_t wanted = _copy_from_iter(kaddr + offset, bytes, i);
Al Virod2715242014-11-27 14:22:37 -0500944 kunmap_atomic(kaddr);
945 return wanted;
946 } else
947 return copy_page_from_iter_iovec(page, offset, bytes, i);
948}
949EXPORT_SYMBOL(copy_page_from_iter);
950
Al Viro241699c2016-09-22 16:33:12 -0400951static size_t pipe_zero(size_t bytes, struct iov_iter *i)
952{
953 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +0000954 unsigned int p_mask = pipe->ring_size - 1;
955 unsigned int i_head;
Al Viro241699c2016-09-22 16:33:12 -0400956 size_t n, off;
Al Viro241699c2016-09-22 16:33:12 -0400957
958 if (!sanity(i))
959 return 0;
960
David Howells8cefc102019-11-15 13:30:32 +0000961 bytes = n = push_pipe(i, bytes, &i_head, &off);
Al Viro241699c2016-09-22 16:33:12 -0400962 if (unlikely(!n))
963 return 0;
964
David Howells8cefc102019-11-15 13:30:32 +0000965 do {
Al Viro241699c2016-09-22 16:33:12 -0400966 size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
David Howells8cefc102019-11-15 13:30:32 +0000967 memzero_page(pipe->bufs[i_head & p_mask].page, off, chunk);
968 i->head = i_head;
Al Viro241699c2016-09-22 16:33:12 -0400969 i->iov_offset = off + chunk;
970 n -= chunk;
David Howells8cefc102019-11-15 13:30:32 +0000971 off = 0;
972 i_head++;
973 } while (n);
Al Viro241699c2016-09-22 16:33:12 -0400974 i->count -= bytes;
975 return bytes;
976}
977
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400978size_t iov_iter_zero(size_t bytes, struct iov_iter *i)
979{
David Howells00e23702018-10-22 13:07:28 +0100980 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -0400981 return pipe_zero(bytes, i);
Al Viro8442fa42014-11-27 14:18:54 -0500982 iterate_and_advance(i, bytes, v,
Al Viro09fc68dc2017-06-29 22:25:14 -0400983 clear_user(v.iov_base, v.iov_len),
Al Viroa2804552014-11-27 14:48:42 -0500984 memzero_page(v.bv_page, v.bv_offset, v.bv_len),
985 memset(v.iov_base, 0, v.iov_len)
Al Viro8442fa42014-11-27 14:18:54 -0500986 )
987
988 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400989}
990EXPORT_SYMBOL(iov_iter_zero);
991
Al Viro62a80672014-04-04 23:12:29 -0400992size_t iov_iter_copy_from_user_atomic(struct page *page,
993 struct iov_iter *i, unsigned long offset, size_t bytes)
994{
Al Viro04a31162014-11-27 13:51:41 -0500995 char *kaddr = kmap_atomic(page), *p = kaddr + offset;
Al Viro72e809e2017-06-29 21:52:57 -0400996 if (unlikely(!page_copy_sane(page, offset, bytes))) {
997 kunmap_atomic(kaddr);
998 return 0;
999 }
David Howells9ea9ce02018-10-20 00:57:56 +01001000 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001001 kunmap_atomic(kaddr);
1002 WARN_ON(1);
1003 return 0;
1004 }
Al Viro04a31162014-11-27 13:51:41 -05001005 iterate_all_kinds(i, bytes, v,
Al Viro09fc68dc2017-06-29 22:25:14 -04001006 copyin((p += v.iov_len) - v.iov_len, v.iov_base, v.iov_len),
Al Viro04a31162014-11-27 13:51:41 -05001007 memcpy_from_page((p += v.bv_len) - v.bv_len, v.bv_page,
Al Viroa2804552014-11-27 14:48:42 -05001008 v.bv_offset, v.bv_len),
1009 memcpy((p += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
Al Viro04a31162014-11-27 13:51:41 -05001010 )
1011 kunmap_atomic(kaddr);
1012 return bytes;
Al Viro62a80672014-04-04 23:12:29 -04001013}
1014EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
1015
Al Virob9dc6f62017-01-14 19:33:08 -05001016static inline void pipe_truncate(struct iov_iter *i)
Al Viro241699c2016-09-22 16:33:12 -04001017{
1018 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +00001019 unsigned int p_tail = pipe->tail;
1020 unsigned int p_head = pipe->head;
1021 unsigned int p_mask = pipe->ring_size - 1;
1022
1023 if (!pipe_empty(p_head, p_tail)) {
1024 struct pipe_buffer *buf;
1025 unsigned int i_head = i->head;
Al Virob9dc6f62017-01-14 19:33:08 -05001026 size_t off = i->iov_offset;
David Howells8cefc102019-11-15 13:30:32 +00001027
Al Virob9dc6f62017-01-14 19:33:08 -05001028 if (off) {
David Howells8cefc102019-11-15 13:30:32 +00001029 buf = &pipe->bufs[i_head & p_mask];
1030 buf->len = off - buf->offset;
1031 i_head++;
Al Virob9dc6f62017-01-14 19:33:08 -05001032 }
David Howells8cefc102019-11-15 13:30:32 +00001033 while (p_head != i_head) {
1034 p_head--;
1035 pipe_buf_release(pipe, &pipe->bufs[p_head & p_mask]);
Al Viro241699c2016-09-22 16:33:12 -04001036 }
David Howells8cefc102019-11-15 13:30:32 +00001037
1038 pipe->head = p_head;
Al Viro241699c2016-09-22 16:33:12 -04001039 }
Al Virob9dc6f62017-01-14 19:33:08 -05001040}
1041
1042static void pipe_advance(struct iov_iter *i, size_t size)
1043{
1044 struct pipe_inode_info *pipe = i->pipe;
1045 if (unlikely(i->count < size))
1046 size = i->count;
1047 if (size) {
1048 struct pipe_buffer *buf;
David Howells8cefc102019-11-15 13:30:32 +00001049 unsigned int p_mask = pipe->ring_size - 1;
1050 unsigned int i_head = i->head;
Al Virob9dc6f62017-01-14 19:33:08 -05001051 size_t off = i->iov_offset, left = size;
David Howells8cefc102019-11-15 13:30:32 +00001052
Al Virob9dc6f62017-01-14 19:33:08 -05001053 if (off) /* make it relative to the beginning of buffer */
David Howells8cefc102019-11-15 13:30:32 +00001054 left += off - pipe->bufs[i_head & p_mask].offset;
Al Virob9dc6f62017-01-14 19:33:08 -05001055 while (1) {
David Howells8cefc102019-11-15 13:30:32 +00001056 buf = &pipe->bufs[i_head & p_mask];
Al Virob9dc6f62017-01-14 19:33:08 -05001057 if (left <= buf->len)
1058 break;
1059 left -= buf->len;
David Howells8cefc102019-11-15 13:30:32 +00001060 i_head++;
Al Virob9dc6f62017-01-14 19:33:08 -05001061 }
David Howells8cefc102019-11-15 13:30:32 +00001062 i->head = i_head;
Al Virob9dc6f62017-01-14 19:33:08 -05001063 i->iov_offset = buf->offset + left;
1064 }
1065 i->count -= size;
1066 /* ... and discard everything past that point */
1067 pipe_truncate(i);
Al Viro241699c2016-09-22 16:33:12 -04001068}
1069
Al Viro62a80672014-04-04 23:12:29 -04001070void iov_iter_advance(struct iov_iter *i, size_t size)
1071{
David Howells00e23702018-10-22 13:07:28 +01001072 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001073 pipe_advance(i, size);
1074 return;
1075 }
David Howells9ea9ce02018-10-20 00:57:56 +01001076 if (unlikely(iov_iter_is_discard(i))) {
1077 i->count -= size;
1078 return;
1079 }
Al Viroa2804552014-11-27 14:48:42 -05001080 iterate_and_advance(i, size, v, 0, 0, 0)
Al Viro62a80672014-04-04 23:12:29 -04001081}
1082EXPORT_SYMBOL(iov_iter_advance);
1083
Al Viro27c0e372017-02-17 18:42:24 -05001084void iov_iter_revert(struct iov_iter *i, size_t unroll)
1085{
1086 if (!unroll)
1087 return;
Al Viro5b47d592017-05-08 13:54:47 -04001088 if (WARN_ON(unroll > MAX_RW_COUNT))
1089 return;
Al Viro27c0e372017-02-17 18:42:24 -05001090 i->count += unroll;
David Howells00e23702018-10-22 13:07:28 +01001091 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro27c0e372017-02-17 18:42:24 -05001092 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +00001093 unsigned int p_mask = pipe->ring_size - 1;
1094 unsigned int i_head = i->head;
Al Viro27c0e372017-02-17 18:42:24 -05001095 size_t off = i->iov_offset;
1096 while (1) {
David Howells8cefc102019-11-15 13:30:32 +00001097 struct pipe_buffer *b = &pipe->bufs[i_head & p_mask];
1098 size_t n = off - b->offset;
Al Viro27c0e372017-02-17 18:42:24 -05001099 if (unroll < n) {
Al Viro4fa55ce2017-04-29 16:42:30 -04001100 off -= unroll;
Al Viro27c0e372017-02-17 18:42:24 -05001101 break;
1102 }
1103 unroll -= n;
David Howells8cefc102019-11-15 13:30:32 +00001104 if (!unroll && i_head == i->start_head) {
Al Viro27c0e372017-02-17 18:42:24 -05001105 off = 0;
1106 break;
1107 }
David Howells8cefc102019-11-15 13:30:32 +00001108 i_head--;
1109 b = &pipe->bufs[i_head & p_mask];
1110 off = b->offset + b->len;
Al Viro27c0e372017-02-17 18:42:24 -05001111 }
1112 i->iov_offset = off;
David Howells8cefc102019-11-15 13:30:32 +00001113 i->head = i_head;
Al Viro27c0e372017-02-17 18:42:24 -05001114 pipe_truncate(i);
1115 return;
1116 }
David Howells9ea9ce02018-10-20 00:57:56 +01001117 if (unlikely(iov_iter_is_discard(i)))
1118 return;
Al Viro27c0e372017-02-17 18:42:24 -05001119 if (unroll <= i->iov_offset) {
1120 i->iov_offset -= unroll;
1121 return;
1122 }
1123 unroll -= i->iov_offset;
David Howells00e23702018-10-22 13:07:28 +01001124 if (iov_iter_is_bvec(i)) {
Al Viro27c0e372017-02-17 18:42:24 -05001125 const struct bio_vec *bvec = i->bvec;
1126 while (1) {
1127 size_t n = (--bvec)->bv_len;
1128 i->nr_segs++;
1129 if (unroll <= n) {
1130 i->bvec = bvec;
1131 i->iov_offset = n - unroll;
1132 return;
1133 }
1134 unroll -= n;
1135 }
1136 } else { /* same logics for iovec and kvec */
1137 const struct iovec *iov = i->iov;
1138 while (1) {
1139 size_t n = (--iov)->iov_len;
1140 i->nr_segs++;
1141 if (unroll <= n) {
1142 i->iov = iov;
1143 i->iov_offset = n - unroll;
1144 return;
1145 }
1146 unroll -= n;
1147 }
1148 }
1149}
1150EXPORT_SYMBOL(iov_iter_revert);
1151
Al Viro62a80672014-04-04 23:12:29 -04001152/*
1153 * Return the count of just the current iov_iter segment.
1154 */
1155size_t iov_iter_single_seg_count(const struct iov_iter *i)
1156{
David Howells00e23702018-10-22 13:07:28 +01001157 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -04001158 return i->count; // it is a silly place, anyway
Al Viro62a80672014-04-04 23:12:29 -04001159 if (i->nr_segs == 1)
1160 return i->count;
David Howells9ea9ce02018-10-20 00:57:56 +01001161 if (unlikely(iov_iter_is_discard(i)))
1162 return i->count;
David Howells00e23702018-10-22 13:07:28 +01001163 else if (iov_iter_is_bvec(i))
Al Viro62a80672014-04-04 23:12:29 -04001164 return min(i->count, i->bvec->bv_len - i->iov_offset);
Paul Mackerrasad0eab92014-11-13 20:15:23 +11001165 else
1166 return min(i->count, i->iov->iov_len - i->iov_offset);
Al Viro62a80672014-04-04 23:12:29 -04001167}
1168EXPORT_SYMBOL(iov_iter_single_seg_count);
1169
David Howellsaa563d72018-10-20 00:57:56 +01001170void iov_iter_kvec(struct iov_iter *i, unsigned int direction,
Al Viro05afcb72015-01-23 01:08:07 -05001171 const struct kvec *kvec, unsigned long nr_segs,
Al Viroabb78f82014-11-24 14:46:11 -05001172 size_t count)
1173{
David Howellsaa563d72018-10-20 00:57:56 +01001174 WARN_ON(direction & ~(READ | WRITE));
1175 i->type = ITER_KVEC | (direction & (READ | WRITE));
Al Viro05afcb72015-01-23 01:08:07 -05001176 i->kvec = kvec;
Al Viroabb78f82014-11-24 14:46:11 -05001177 i->nr_segs = nr_segs;
1178 i->iov_offset = 0;
1179 i->count = count;
1180}
1181EXPORT_SYMBOL(iov_iter_kvec);
1182
David Howellsaa563d72018-10-20 00:57:56 +01001183void iov_iter_bvec(struct iov_iter *i, unsigned int direction,
Al Viro05afcb72015-01-23 01:08:07 -05001184 const struct bio_vec *bvec, unsigned long nr_segs,
1185 size_t count)
1186{
David Howellsaa563d72018-10-20 00:57:56 +01001187 WARN_ON(direction & ~(READ | WRITE));
1188 i->type = ITER_BVEC | (direction & (READ | WRITE));
Al Viro05afcb72015-01-23 01:08:07 -05001189 i->bvec = bvec;
1190 i->nr_segs = nr_segs;
1191 i->iov_offset = 0;
1192 i->count = count;
1193}
1194EXPORT_SYMBOL(iov_iter_bvec);
1195
David Howellsaa563d72018-10-20 00:57:56 +01001196void iov_iter_pipe(struct iov_iter *i, unsigned int direction,
Al Viro241699c2016-09-22 16:33:12 -04001197 struct pipe_inode_info *pipe,
1198 size_t count)
1199{
David Howellsaa563d72018-10-20 00:57:56 +01001200 BUG_ON(direction != READ);
David Howells8cefc102019-11-15 13:30:32 +00001201 WARN_ON(pipe_full(pipe->head, pipe->tail, pipe->ring_size));
David Howellsaa563d72018-10-20 00:57:56 +01001202 i->type = ITER_PIPE | READ;
Al Viro241699c2016-09-22 16:33:12 -04001203 i->pipe = pipe;
David Howells8cefc102019-11-15 13:30:32 +00001204 i->head = pipe->head;
Al Viro241699c2016-09-22 16:33:12 -04001205 i->iov_offset = 0;
1206 i->count = count;
David Howells8cefc102019-11-15 13:30:32 +00001207 i->start_head = i->head;
Al Viro241699c2016-09-22 16:33:12 -04001208}
1209EXPORT_SYMBOL(iov_iter_pipe);
1210
David Howells9ea9ce02018-10-20 00:57:56 +01001211/**
1212 * iov_iter_discard - Initialise an I/O iterator that discards data
1213 * @i: The iterator to initialise.
1214 * @direction: The direction of the transfer.
1215 * @count: The size of the I/O buffer in bytes.
1216 *
1217 * Set up an I/O iterator that just discards everything that's written to it.
1218 * It's only available as a READ iterator.
1219 */
1220void iov_iter_discard(struct iov_iter *i, unsigned int direction, size_t count)
1221{
1222 BUG_ON(direction != READ);
1223 i->type = ITER_DISCARD | READ;
1224 i->count = count;
1225 i->iov_offset = 0;
1226}
1227EXPORT_SYMBOL(iov_iter_discard);
1228
Al Viro62a80672014-04-04 23:12:29 -04001229unsigned long iov_iter_alignment(const struct iov_iter *i)
1230{
Al Viro04a31162014-11-27 13:51:41 -05001231 unsigned long res = 0;
1232 size_t size = i->count;
1233
David Howells00e23702018-10-22 13:07:28 +01001234 if (unlikely(iov_iter_is_pipe(i))) {
Jan Karae0ff1262019-12-16 11:54:32 +01001235 unsigned int p_mask = i->pipe->ring_size - 1;
1236
David Howells8cefc102019-11-15 13:30:32 +00001237 if (size && i->iov_offset && allocated(&i->pipe->bufs[i->head & p_mask]))
Al Viro241699c2016-09-22 16:33:12 -04001238 return size | i->iov_offset;
1239 return size;
1240 }
Al Viro04a31162014-11-27 13:51:41 -05001241 iterate_all_kinds(i, size, v,
1242 (res |= (unsigned long)v.iov_base | v.iov_len, 0),
Al Viroa2804552014-11-27 14:48:42 -05001243 res |= v.bv_offset | v.bv_len,
1244 res |= (unsigned long)v.iov_base | v.iov_len
Al Viro04a31162014-11-27 13:51:41 -05001245 )
1246 return res;
Al Viro62a80672014-04-04 23:12:29 -04001247}
1248EXPORT_SYMBOL(iov_iter_alignment);
1249
Al Viro357f4352016-04-08 19:05:19 -04001250unsigned long iov_iter_gap_alignment(const struct iov_iter *i)
1251{
Al Viro33844e62016-12-21 21:55:02 -05001252 unsigned long res = 0;
Al Viro357f4352016-04-08 19:05:19 -04001253 size_t size = i->count;
Al Viro357f4352016-04-08 19:05:19 -04001254
David Howells9ea9ce02018-10-20 00:57:56 +01001255 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001256 WARN_ON(1);
1257 return ~0U;
1258 }
1259
Al Viro357f4352016-04-08 19:05:19 -04001260 iterate_all_kinds(i, size, v,
1261 (res |= (!res ? 0 : (unsigned long)v.iov_base) |
1262 (size != v.iov_len ? size : 0), 0),
1263 (res |= (!res ? 0 : (unsigned long)v.bv_offset) |
1264 (size != v.bv_len ? size : 0)),
1265 (res |= (!res ? 0 : (unsigned long)v.iov_base) |
1266 (size != v.iov_len ? size : 0))
1267 );
Al Viro33844e62016-12-21 21:55:02 -05001268 return res;
Al Viro357f4352016-04-08 19:05:19 -04001269}
1270EXPORT_SYMBOL(iov_iter_gap_alignment);
1271
Ilya Dryomove76b63122018-05-02 20:16:56 +02001272static inline ssize_t __pipe_get_pages(struct iov_iter *i,
Al Viro241699c2016-09-22 16:33:12 -04001273 size_t maxsize,
1274 struct page **pages,
David Howells8cefc102019-11-15 13:30:32 +00001275 int iter_head,
Al Viro241699c2016-09-22 16:33:12 -04001276 size_t *start)
1277{
1278 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +00001279 unsigned int p_mask = pipe->ring_size - 1;
1280 ssize_t n = push_pipe(i, maxsize, &iter_head, start);
Al Viro241699c2016-09-22 16:33:12 -04001281 if (!n)
1282 return -EFAULT;
1283
1284 maxsize = n;
1285 n += *start;
Al Viro1689c732016-10-11 18:21:14 +01001286 while (n > 0) {
David Howells8cefc102019-11-15 13:30:32 +00001287 get_page(*pages++ = pipe->bufs[iter_head & p_mask].page);
1288 iter_head++;
Al Viro241699c2016-09-22 16:33:12 -04001289 n -= PAGE_SIZE;
1290 }
1291
1292 return maxsize;
1293}
1294
1295static ssize_t pipe_get_pages(struct iov_iter *i,
1296 struct page **pages, size_t maxsize, unsigned maxpages,
1297 size_t *start)
1298{
David Howells8cefc102019-11-15 13:30:32 +00001299 unsigned int iter_head, npages;
Al Viro241699c2016-09-22 16:33:12 -04001300 size_t capacity;
Al Viro241699c2016-09-22 16:33:12 -04001301
Al Viro33844e62016-12-21 21:55:02 -05001302 if (!maxsize)
1303 return 0;
1304
Al Viro241699c2016-09-22 16:33:12 -04001305 if (!sanity(i))
1306 return -EFAULT;
1307
David Howells8cefc102019-11-15 13:30:32 +00001308 data_start(i, &iter_head, start);
1309 /* Amount of free space: some of this one + all after this one */
1310 npages = pipe_space_for_user(iter_head, i->pipe->tail, i->pipe);
1311 capacity = min(npages, maxpages) * PAGE_SIZE - *start;
Al Viro241699c2016-09-22 16:33:12 -04001312
David Howells8cefc102019-11-15 13:30:32 +00001313 return __pipe_get_pages(i, min(maxsize, capacity), pages, iter_head, start);
Al Viro241699c2016-09-22 16:33:12 -04001314}
1315
Al Viro62a80672014-04-04 23:12:29 -04001316ssize_t iov_iter_get_pages(struct iov_iter *i,
Miklos Szeredi2c809292014-09-24 17:09:11 +02001317 struct page **pages, size_t maxsize, unsigned maxpages,
Al Viro62a80672014-04-04 23:12:29 -04001318 size_t *start)
1319{
Al Viroe5393fa2014-11-27 14:12:09 -05001320 if (maxsize > i->count)
1321 maxsize = i->count;
1322
David Howells00e23702018-10-22 13:07:28 +01001323 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -04001324 return pipe_get_pages(i, pages, maxsize, maxpages, start);
David Howells9ea9ce02018-10-20 00:57:56 +01001325 if (unlikely(iov_iter_is_discard(i)))
1326 return -EFAULT;
1327
Al Viroe5393fa2014-11-27 14:12:09 -05001328 iterate_all_kinds(i, maxsize, v, ({
1329 unsigned long addr = (unsigned long)v.iov_base;
1330 size_t len = v.iov_len + (*start = addr & (PAGE_SIZE - 1));
1331 int n;
1332 int res;
1333
1334 if (len > maxpages * PAGE_SIZE)
1335 len = maxpages * PAGE_SIZE;
1336 addr &= ~(PAGE_SIZE - 1);
1337 n = DIV_ROUND_UP(len, PAGE_SIZE);
Ira Weiny73b01402019-05-13 17:17:11 -07001338 res = get_user_pages_fast(addr, n,
1339 iov_iter_rw(i) != WRITE ? FOLL_WRITE : 0,
1340 pages);
Al Viroe5393fa2014-11-27 14:12:09 -05001341 if (unlikely(res < 0))
1342 return res;
1343 return (res == n ? len : res * PAGE_SIZE) - *start;
1344 0;}),({
1345 /* can't be more than PAGE_SIZE */
1346 *start = v.bv_offset;
1347 get_page(*pages = v.bv_page);
1348 return v.bv_len;
Al Viroa2804552014-11-27 14:48:42 -05001349 }),({
1350 return -EFAULT;
Al Viroe5393fa2014-11-27 14:12:09 -05001351 })
1352 )
1353 return 0;
Al Viro62a80672014-04-04 23:12:29 -04001354}
1355EXPORT_SYMBOL(iov_iter_get_pages);
1356
Al Viro1b17f1f2014-11-27 14:14:31 -05001357static struct page **get_pages_array(size_t n)
1358{
Michal Hocko752ade62017-05-08 15:57:27 -07001359 return kvmalloc_array(n, sizeof(struct page *), GFP_KERNEL);
Al Viro1b17f1f2014-11-27 14:14:31 -05001360}
1361
Al Viro241699c2016-09-22 16:33:12 -04001362static ssize_t pipe_get_pages_alloc(struct iov_iter *i,
1363 struct page ***pages, size_t maxsize,
1364 size_t *start)
1365{
1366 struct page **p;
David Howells8cefc102019-11-15 13:30:32 +00001367 unsigned int iter_head, npages;
Ilya Dryomovd7760d62018-05-02 20:16:57 +02001368 ssize_t n;
Al Viro241699c2016-09-22 16:33:12 -04001369
Al Viro33844e62016-12-21 21:55:02 -05001370 if (!maxsize)
1371 return 0;
1372
Al Viro241699c2016-09-22 16:33:12 -04001373 if (!sanity(i))
1374 return -EFAULT;
1375
David Howells8cefc102019-11-15 13:30:32 +00001376 data_start(i, &iter_head, start);
1377 /* Amount of free space: some of this one + all after this one */
1378 npages = pipe_space_for_user(iter_head, i->pipe->tail, i->pipe);
Al Viro241699c2016-09-22 16:33:12 -04001379 n = npages * PAGE_SIZE - *start;
1380 if (maxsize > n)
1381 maxsize = n;
1382 else
1383 npages = DIV_ROUND_UP(maxsize + *start, PAGE_SIZE);
1384 p = get_pages_array(npages);
1385 if (!p)
1386 return -ENOMEM;
David Howells8cefc102019-11-15 13:30:32 +00001387 n = __pipe_get_pages(i, maxsize, p, iter_head, start);
Al Viro241699c2016-09-22 16:33:12 -04001388 if (n > 0)
1389 *pages = p;
1390 else
1391 kvfree(p);
1392 return n;
1393}
1394
Al Viro62a80672014-04-04 23:12:29 -04001395ssize_t iov_iter_get_pages_alloc(struct iov_iter *i,
1396 struct page ***pages, size_t maxsize,
1397 size_t *start)
1398{
Al Viro1b17f1f2014-11-27 14:14:31 -05001399 struct page **p;
1400
1401 if (maxsize > i->count)
1402 maxsize = i->count;
1403
David Howells00e23702018-10-22 13:07:28 +01001404 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -04001405 return pipe_get_pages_alloc(i, pages, maxsize, start);
David Howells9ea9ce02018-10-20 00:57:56 +01001406 if (unlikely(iov_iter_is_discard(i)))
1407 return -EFAULT;
1408
Al Viro1b17f1f2014-11-27 14:14:31 -05001409 iterate_all_kinds(i, maxsize, v, ({
1410 unsigned long addr = (unsigned long)v.iov_base;
1411 size_t len = v.iov_len + (*start = addr & (PAGE_SIZE - 1));
1412 int n;
1413 int res;
1414
1415 addr &= ~(PAGE_SIZE - 1);
1416 n = DIV_ROUND_UP(len, PAGE_SIZE);
1417 p = get_pages_array(n);
1418 if (!p)
1419 return -ENOMEM;
Ira Weiny73b01402019-05-13 17:17:11 -07001420 res = get_user_pages_fast(addr, n,
1421 iov_iter_rw(i) != WRITE ? FOLL_WRITE : 0, p);
Al Viro1b17f1f2014-11-27 14:14:31 -05001422 if (unlikely(res < 0)) {
1423 kvfree(p);
1424 return res;
1425 }
1426 *pages = p;
1427 return (res == n ? len : res * PAGE_SIZE) - *start;
1428 0;}),({
1429 /* can't be more than PAGE_SIZE */
1430 *start = v.bv_offset;
1431 *pages = p = get_pages_array(1);
1432 if (!p)
1433 return -ENOMEM;
1434 get_page(*p = v.bv_page);
1435 return v.bv_len;
Al Viroa2804552014-11-27 14:48:42 -05001436 }),({
1437 return -EFAULT;
Al Viro1b17f1f2014-11-27 14:14:31 -05001438 })
1439 )
1440 return 0;
Al Viro62a80672014-04-04 23:12:29 -04001441}
1442EXPORT_SYMBOL(iov_iter_get_pages_alloc);
1443
Al Viroa604ec72014-11-24 01:08:00 -05001444size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum,
1445 struct iov_iter *i)
1446{
1447 char *to = addr;
1448 __wsum sum, next;
1449 size_t off = 0;
Al Viroa604ec72014-11-24 01:08:00 -05001450 sum = *csum;
David Howells9ea9ce02018-10-20 00:57:56 +01001451 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001452 WARN_ON(1);
1453 return 0;
1454 }
Al Viroa604ec72014-11-24 01:08:00 -05001455 iterate_and_advance(i, bytes, v, ({
Al Virocbbd26b2016-11-01 22:09:04 -04001456 next = csum_and_copy_from_user(v.iov_base,
Al Viroa604ec72014-11-24 01:08:00 -05001457 (to += v.iov_len) - v.iov_len,
Al Viroc693cc42020-07-11 00:27:49 -04001458 v.iov_len);
1459 if (next) {
Al Viroa604ec72014-11-24 01:08:00 -05001460 sum = csum_block_add(sum, next, off);
1461 off += v.iov_len;
1462 }
Al Viroc693cc42020-07-11 00:27:49 -04001463 next ? 0 : v.iov_len;
Al Viroa604ec72014-11-24 01:08:00 -05001464 }), ({
1465 char *p = kmap_atomic(v.bv_page);
Al Virof9152892018-11-27 22:32:59 -05001466 sum = csum_and_memcpy((to += v.bv_len) - v.bv_len,
1467 p + v.bv_offset, v.bv_len,
1468 sum, off);
Al Viroa604ec72014-11-24 01:08:00 -05001469 kunmap_atomic(p);
Al Viroa604ec72014-11-24 01:08:00 -05001470 off += v.bv_len;
1471 }),({
Al Virof9152892018-11-27 22:32:59 -05001472 sum = csum_and_memcpy((to += v.iov_len) - v.iov_len,
1473 v.iov_base, v.iov_len,
1474 sum, off);
Al Viroa604ec72014-11-24 01:08:00 -05001475 off += v.iov_len;
1476 })
1477 )
1478 *csum = sum;
1479 return bytes;
1480}
1481EXPORT_SYMBOL(csum_and_copy_from_iter);
1482
Al Virocbbd26b2016-11-01 22:09:04 -04001483bool csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum,
1484 struct iov_iter *i)
1485{
1486 char *to = addr;
1487 __wsum sum, next;
1488 size_t off = 0;
1489 sum = *csum;
David Howells9ea9ce02018-10-20 00:57:56 +01001490 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Virocbbd26b2016-11-01 22:09:04 -04001491 WARN_ON(1);
1492 return false;
1493 }
1494 if (unlikely(i->count < bytes))
1495 return false;
1496 iterate_all_kinds(i, bytes, v, ({
Al Virocbbd26b2016-11-01 22:09:04 -04001497 next = csum_and_copy_from_user(v.iov_base,
1498 (to += v.iov_len) - v.iov_len,
Al Viroc693cc42020-07-11 00:27:49 -04001499 v.iov_len);
1500 if (!next)
Al Virocbbd26b2016-11-01 22:09:04 -04001501 return false;
1502 sum = csum_block_add(sum, next, off);
1503 off += v.iov_len;
1504 0;
1505 }), ({
1506 char *p = kmap_atomic(v.bv_page);
Al Virof9152892018-11-27 22:32:59 -05001507 sum = csum_and_memcpy((to += v.bv_len) - v.bv_len,
1508 p + v.bv_offset, v.bv_len,
1509 sum, off);
Al Virocbbd26b2016-11-01 22:09:04 -04001510 kunmap_atomic(p);
Al Virocbbd26b2016-11-01 22:09:04 -04001511 off += v.bv_len;
1512 }),({
Al Virof9152892018-11-27 22:32:59 -05001513 sum = csum_and_memcpy((to += v.iov_len) - v.iov_len,
1514 v.iov_base, v.iov_len,
1515 sum, off);
Al Virocbbd26b2016-11-01 22:09:04 -04001516 off += v.iov_len;
1517 })
1518 )
1519 *csum = sum;
1520 iov_iter_advance(i, bytes);
1521 return true;
1522}
1523EXPORT_SYMBOL(csum_and_copy_from_iter_full);
1524
Sagi Grimbergcb002d02018-12-03 17:52:07 -08001525size_t csum_and_copy_to_iter(const void *addr, size_t bytes, void *csump,
Al Viroa604ec72014-11-24 01:08:00 -05001526 struct iov_iter *i)
1527{
Al Viro36f7a8a2015-12-06 16:49:22 -05001528 const char *from = addr;
Sagi Grimbergcb002d02018-12-03 17:52:07 -08001529 __wsum *csum = csump;
Al Viroa604ec72014-11-24 01:08:00 -05001530 __wsum sum, next;
1531 size_t off = 0;
Al Viro78e1f382018-11-25 16:24:16 -05001532
1533 if (unlikely(iov_iter_is_pipe(i)))
1534 return csum_and_copy_to_pipe_iter(addr, bytes, csum, i);
1535
Al Viroa604ec72014-11-24 01:08:00 -05001536 sum = *csum;
Al Viro78e1f382018-11-25 16:24:16 -05001537 if (unlikely(iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001538 WARN_ON(1); /* for now */
1539 return 0;
1540 }
Al Viroa604ec72014-11-24 01:08:00 -05001541 iterate_and_advance(i, bytes, v, ({
Al Viroa604ec72014-11-24 01:08:00 -05001542 next = csum_and_copy_to_user((from += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -04001543 v.iov_base,
Al Viroc693cc42020-07-11 00:27:49 -04001544 v.iov_len);
1545 if (next) {
Al Viroa604ec72014-11-24 01:08:00 -05001546 sum = csum_block_add(sum, next, off);
1547 off += v.iov_len;
1548 }
Al Viroc693cc42020-07-11 00:27:49 -04001549 next ? 0 : v.iov_len;
Al Viroa604ec72014-11-24 01:08:00 -05001550 }), ({
1551 char *p = kmap_atomic(v.bv_page);
Al Virof9152892018-11-27 22:32:59 -05001552 sum = csum_and_memcpy(p + v.bv_offset,
1553 (from += v.bv_len) - v.bv_len,
1554 v.bv_len, sum, off);
Al Viroa604ec72014-11-24 01:08:00 -05001555 kunmap_atomic(p);
Al Viroa604ec72014-11-24 01:08:00 -05001556 off += v.bv_len;
1557 }),({
Al Virof9152892018-11-27 22:32:59 -05001558 sum = csum_and_memcpy(v.iov_base,
1559 (from += v.iov_len) - v.iov_len,
1560 v.iov_len, sum, off);
Al Viroa604ec72014-11-24 01:08:00 -05001561 off += v.iov_len;
1562 })
1563 )
1564 *csum = sum;
1565 return bytes;
1566}
1567EXPORT_SYMBOL(csum_and_copy_to_iter);
1568
Sagi Grimbergd05f4432018-12-03 17:52:09 -08001569size_t hash_and_copy_to_iter(const void *addr, size_t bytes, void *hashp,
1570 struct iov_iter *i)
1571{
Herbert Xu79990962020-06-12 16:57:37 +10001572#ifdef CONFIG_CRYPTO_HASH
Sagi Grimbergd05f4432018-12-03 17:52:09 -08001573 struct ahash_request *hash = hashp;
1574 struct scatterlist sg;
1575 size_t copied;
1576
1577 copied = copy_to_iter(addr, bytes, i);
1578 sg_init_one(&sg, addr, copied);
1579 ahash_request_set_crypt(hash, &sg, NULL, copied);
1580 crypto_ahash_update(hash);
1581 return copied;
YueHaibing27fad742019-04-04 10:31:14 +08001582#else
1583 return 0;
1584#endif
Sagi Grimbergd05f4432018-12-03 17:52:09 -08001585}
1586EXPORT_SYMBOL(hash_and_copy_to_iter);
1587
Al Viro62a80672014-04-04 23:12:29 -04001588int iov_iter_npages(const struct iov_iter *i, int maxpages)
1589{
Al Viroe0f2dc42014-11-27 14:09:46 -05001590 size_t size = i->count;
1591 int npages = 0;
1592
1593 if (!size)
1594 return 0;
David Howells9ea9ce02018-10-20 00:57:56 +01001595 if (unlikely(iov_iter_is_discard(i)))
1596 return 0;
Al Viroe0f2dc42014-11-27 14:09:46 -05001597
David Howells00e23702018-10-22 13:07:28 +01001598 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001599 struct pipe_inode_info *pipe = i->pipe;
David Howells8cefc102019-11-15 13:30:32 +00001600 unsigned int iter_head;
Al Viro241699c2016-09-22 16:33:12 -04001601 size_t off;
Al Viro241699c2016-09-22 16:33:12 -04001602
1603 if (!sanity(i))
1604 return 0;
1605
David Howells8cefc102019-11-15 13:30:32 +00001606 data_start(i, &iter_head, &off);
Al Viro241699c2016-09-22 16:33:12 -04001607 /* some of this one + all after this one */
David Howells8cefc102019-11-15 13:30:32 +00001608 npages = pipe_space_for_user(iter_head, pipe->tail, pipe);
Al Viro241699c2016-09-22 16:33:12 -04001609 if (npages >= maxpages)
1610 return maxpages;
1611 } else iterate_all_kinds(i, size, v, ({
Al Viroe0f2dc42014-11-27 14:09:46 -05001612 unsigned long p = (unsigned long)v.iov_base;
1613 npages += DIV_ROUND_UP(p + v.iov_len, PAGE_SIZE)
1614 - p / PAGE_SIZE;
1615 if (npages >= maxpages)
1616 return maxpages;
1617 0;}),({
1618 npages++;
1619 if (npages >= maxpages)
1620 return maxpages;
Al Viroa2804552014-11-27 14:48:42 -05001621 }),({
1622 unsigned long p = (unsigned long)v.iov_base;
1623 npages += DIV_ROUND_UP(p + v.iov_len, PAGE_SIZE)
1624 - p / PAGE_SIZE;
1625 if (npages >= maxpages)
1626 return maxpages;
Al Viroe0f2dc42014-11-27 14:09:46 -05001627 })
1628 )
1629 return npages;
Al Viro62a80672014-04-04 23:12:29 -04001630}
Al Virof67da302014-03-19 01:16:16 -04001631EXPORT_SYMBOL(iov_iter_npages);
Al Viro4b8164b2015-01-31 20:08:47 -05001632
1633const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags)
1634{
1635 *new = *old;
David Howells00e23702018-10-22 13:07:28 +01001636 if (unlikely(iov_iter_is_pipe(new))) {
Al Viro241699c2016-09-22 16:33:12 -04001637 WARN_ON(1);
1638 return NULL;
1639 }
David Howells9ea9ce02018-10-20 00:57:56 +01001640 if (unlikely(iov_iter_is_discard(new)))
1641 return NULL;
David Howells00e23702018-10-22 13:07:28 +01001642 if (iov_iter_is_bvec(new))
Al Viro4b8164b2015-01-31 20:08:47 -05001643 return new->bvec = kmemdup(new->bvec,
1644 new->nr_segs * sizeof(struct bio_vec),
1645 flags);
1646 else
1647 /* iovec and kvec have identical layout */
1648 return new->iov = kmemdup(new->iov,
1649 new->nr_segs * sizeof(struct iovec),
1650 flags);
1651}
1652EXPORT_SYMBOL(dup_iter);
Al Virobc917be2015-03-21 17:45:43 -04001653
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001654static int copy_compat_iovec_from_user(struct iovec *iov,
1655 const struct iovec __user *uvec, unsigned long nr_segs)
1656{
1657 const struct compat_iovec __user *uiov =
1658 (const struct compat_iovec __user *)uvec;
1659 int ret = -EFAULT, i;
1660
1661 if (!user_access_begin(uvec, nr_segs * sizeof(*uvec)))
1662 return -EFAULT;
1663
1664 for (i = 0; i < nr_segs; i++) {
1665 compat_uptr_t buf;
1666 compat_ssize_t len;
1667
1668 unsafe_get_user(len, &uiov[i].iov_len, uaccess_end);
1669 unsafe_get_user(buf, &uiov[i].iov_base, uaccess_end);
1670
1671 /* check for compat_size_t not fitting in compat_ssize_t .. */
1672 if (len < 0) {
1673 ret = -EINVAL;
1674 goto uaccess_end;
1675 }
1676 iov[i].iov_base = compat_ptr(buf);
1677 iov[i].iov_len = len;
1678 }
1679
1680 ret = 0;
1681uaccess_end:
1682 user_access_end();
1683 return ret;
1684}
1685
1686static int copy_iovec_from_user(struct iovec *iov,
1687 const struct iovec __user *uvec, unsigned long nr_segs)
David Laightfb041b52020-09-25 06:51:39 +02001688{
1689 unsigned long seg;
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001690
1691 if (copy_from_user(iov, uvec, nr_segs * sizeof(*uvec)))
1692 return -EFAULT;
1693 for (seg = 0; seg < nr_segs; seg++) {
1694 if ((ssize_t)iov[seg].iov_len < 0)
1695 return -EINVAL;
1696 }
1697
1698 return 0;
1699}
1700
1701struct iovec *iovec_from_user(const struct iovec __user *uvec,
1702 unsigned long nr_segs, unsigned long fast_segs,
1703 struct iovec *fast_iov, bool compat)
1704{
1705 struct iovec *iov = fast_iov;
1706 int ret;
David Laightfb041b52020-09-25 06:51:39 +02001707
1708 /*
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001709 * SuS says "The readv() function *may* fail if the iovcnt argument was
1710 * less than or equal to 0, or greater than {IOV_MAX}. Linux has
David Laightfb041b52020-09-25 06:51:39 +02001711 * traditionally returned zero for zero segments, so...
1712 */
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001713 if (nr_segs == 0)
1714 return iov;
1715 if (nr_segs > UIO_MAXIOV)
1716 return ERR_PTR(-EINVAL);
David Laightfb041b52020-09-25 06:51:39 +02001717 if (nr_segs > fast_segs) {
1718 iov = kmalloc_array(nr_segs, sizeof(struct iovec), GFP_KERNEL);
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001719 if (!iov)
1720 return ERR_PTR(-ENOMEM);
David Laightfb041b52020-09-25 06:51:39 +02001721 }
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001722
1723 if (compat)
1724 ret = copy_compat_iovec_from_user(iov, uvec, nr_segs);
1725 else
1726 ret = copy_iovec_from_user(iov, uvec, nr_segs);
1727 if (ret) {
1728 if (iov != fast_iov)
1729 kfree(iov);
1730 return ERR_PTR(ret);
1731 }
1732
1733 return iov;
1734}
1735
1736ssize_t __import_iovec(int type, const struct iovec __user *uvec,
1737 unsigned nr_segs, unsigned fast_segs, struct iovec **iovp,
1738 struct iov_iter *i, bool compat)
1739{
1740 ssize_t total_len = 0;
1741 unsigned long seg;
1742 struct iovec *iov;
1743
1744 iov = iovec_from_user(uvec, nr_segs, fast_segs, *iovp, compat);
1745 if (IS_ERR(iov)) {
1746 *iovp = NULL;
1747 return PTR_ERR(iov);
David Laightfb041b52020-09-25 06:51:39 +02001748 }
1749
1750 /*
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001751 * According to the Single Unix Specification we should return EINVAL if
1752 * an element length is < 0 when cast to ssize_t or if the total length
1753 * would overflow the ssize_t return value of the system call.
David Laightfb041b52020-09-25 06:51:39 +02001754 *
1755 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
1756 * overflow case.
1757 */
David Laightfb041b52020-09-25 06:51:39 +02001758 for (seg = 0; seg < nr_segs; seg++) {
David Laightfb041b52020-09-25 06:51:39 +02001759 ssize_t len = (ssize_t)iov[seg].iov_len;
1760
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001761 if (!access_ok(iov[seg].iov_base, len)) {
1762 if (iov != *iovp)
1763 kfree(iov);
1764 *iovp = NULL;
1765 return -EFAULT;
David Laightfb041b52020-09-25 06:51:39 +02001766 }
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001767
1768 if (len > MAX_RW_COUNT - total_len) {
1769 len = MAX_RW_COUNT - total_len;
David Laightfb041b52020-09-25 06:51:39 +02001770 iov[seg].iov_len = len;
1771 }
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001772 total_len += len;
David Laightfb041b52020-09-25 06:51:39 +02001773 }
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001774
1775 iov_iter_init(i, type, iov, nr_segs, total_len);
1776 if (iov == *iovp)
1777 *iovp = NULL;
1778 else
1779 *iovp = iov;
1780 return total_len;
David Laightfb041b52020-09-25 06:51:39 +02001781}
1782
Vegard Nossumffecee42016-10-08 11:18:07 +02001783/**
1784 * import_iovec() - Copy an array of &struct iovec from userspace
1785 * into the kernel, check that it is valid, and initialize a new
1786 * &struct iov_iter iterator to access it.
1787 *
1788 * @type: One of %READ or %WRITE.
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001789 * @uvec: Pointer to the userspace array.
Vegard Nossumffecee42016-10-08 11:18:07 +02001790 * @nr_segs: Number of elements in userspace array.
1791 * @fast_segs: Number of elements in @iov.
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001792 * @iovp: (input and output parameter) Pointer to pointer to (usually small
Vegard Nossumffecee42016-10-08 11:18:07 +02001793 * on-stack) kernel array.
1794 * @i: Pointer to iterator that will be initialized on success.
1795 *
1796 * If the array pointed to by *@iov is large enough to hold all @nr_segs,
1797 * then this function places %NULL in *@iov on return. Otherwise, a new
1798 * array will be allocated and the result placed in *@iov. This means that
1799 * the caller may call kfree() on *@iov regardless of whether the small
1800 * on-stack array was used or not (and regardless of whether this function
1801 * returns an error or not).
1802 *
Jens Axboe87e5e6d2019-05-14 16:02:22 -06001803 * Return: Negative error code on error, bytes imported on success
Vegard Nossumffecee42016-10-08 11:18:07 +02001804 */
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001805ssize_t import_iovec(int type, const struct iovec __user *uvec,
Al Virobc917be2015-03-21 17:45:43 -04001806 unsigned nr_segs, unsigned fast_segs,
Christoph Hellwigbfdc5972020-09-25 06:51:40 +02001807 struct iovec **iovp, struct iov_iter *i)
Al Virobc917be2015-03-21 17:45:43 -04001808{
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02001809 return __import_iovec(type, uvec, nr_segs, fast_segs, iovp, i,
1810 in_compat_syscall());
Al Virobc917be2015-03-21 17:45:43 -04001811}
1812EXPORT_SYMBOL(import_iovec);
1813
Al Virobc917be2015-03-21 17:45:43 -04001814int import_single_range(int rw, void __user *buf, size_t len,
1815 struct iovec *iov, struct iov_iter *i)
1816{
1817 if (len > MAX_RW_COUNT)
1818 len = MAX_RW_COUNT;
Linus Torvalds96d4f262019-01-03 18:57:57 -08001819 if (unlikely(!access_ok(buf, len)))
Al Virobc917be2015-03-21 17:45:43 -04001820 return -EFAULT;
1821
1822 iov->iov_base = buf;
1823 iov->iov_len = len;
1824 iov_iter_init(i, rw, iov, 1, len);
1825 return 0;
1826}
Al Viroe1267582015-12-06 20:38:56 -05001827EXPORT_SYMBOL(import_single_range);
Al Viro09cf6982017-02-18 01:44:03 -05001828
1829int iov_iter_for_each_range(struct iov_iter *i, size_t bytes,
1830 int (*f)(struct kvec *vec, void *context),
1831 void *context)
1832{
1833 struct kvec w;
1834 int err = -EINVAL;
1835 if (!bytes)
1836 return 0;
1837
1838 iterate_all_kinds(i, bytes, v, -EINVAL, ({
1839 w.iov_base = kmap(v.bv_page) + v.bv_offset;
1840 w.iov_len = v.bv_len;
1841 err = f(&w, context);
1842 kunmap(v.bv_page);
1843 err;}), ({
1844 w = v;
1845 err = f(&w, context);})
1846 )
1847 return err;
1848}
1849EXPORT_SYMBOL(iov_iter_for_each_range);