blob: ea36dc355da131b4a45b71d8be6f1bc69a53e637 [file] [log] [blame]
Al Viro4f18cd32014-02-05 19:11:33 -05001#include <linux/export.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -06002#include <linux/bvec.h>
Al Viro4f18cd32014-02-05 19:11:33 -05003#include <linux/uio.h>
4#include <linux/pagemap.h>
Al Viro91f79c42014-03-21 04:58:33 -04005#include <linux/slab.h>
6#include <linux/vmalloc.h>
Al Viro241699c2016-09-22 16:33:12 -04007#include <linux/splice.h>
Al Viroa604ec72014-11-24 01:08:00 -05008#include <net/checksum.h>
Sagi Grimbergd05f4432018-12-03 17:52:09 -08009#include <linux/scatterlist.h>
Al Viro4f18cd32014-02-05 19:11:33 -050010
Al Viro241699c2016-09-22 16:33:12 -040011#define PIPE_PARANOIA /* for now */
12
Al Viro04a31162014-11-27 13:51:41 -050013#define iterate_iovec(i, n, __v, __p, skip, STEP) { \
14 size_t left; \
15 size_t wanted = n; \
16 __p = i->iov; \
17 __v.iov_len = min(n, __p->iov_len - skip); \
18 if (likely(__v.iov_len)) { \
19 __v.iov_base = __p->iov_base + skip; \
20 left = (STEP); \
21 __v.iov_len -= left; \
22 skip += __v.iov_len; \
23 n -= __v.iov_len; \
24 } else { \
25 left = 0; \
26 } \
27 while (unlikely(!left && n)) { \
28 __p++; \
29 __v.iov_len = min(n, __p->iov_len); \
30 if (unlikely(!__v.iov_len)) \
31 continue; \
32 __v.iov_base = __p->iov_base; \
33 left = (STEP); \
34 __v.iov_len -= left; \
35 skip = __v.iov_len; \
36 n -= __v.iov_len; \
37 } \
38 n = wanted - n; \
39}
40
Al Viroa2804552014-11-27 14:48:42 -050041#define iterate_kvec(i, n, __v, __p, skip, STEP) { \
42 size_t wanted = n; \
43 __p = i->kvec; \
44 __v.iov_len = min(n, __p->iov_len - skip); \
45 if (likely(__v.iov_len)) { \
46 __v.iov_base = __p->iov_base + skip; \
47 (void)(STEP); \
48 skip += __v.iov_len; \
49 n -= __v.iov_len; \
50 } \
51 while (unlikely(n)) { \
52 __p++; \
53 __v.iov_len = min(n, __p->iov_len); \
54 if (unlikely(!__v.iov_len)) \
55 continue; \
56 __v.iov_base = __p->iov_base; \
57 (void)(STEP); \
58 skip = __v.iov_len; \
59 n -= __v.iov_len; \
60 } \
61 n = wanted; \
62}
63
Ming Lei1bdc76a2016-05-30 21:34:32 +080064#define iterate_bvec(i, n, __v, __bi, skip, STEP) { \
65 struct bvec_iter __start; \
66 __start.bi_size = n; \
67 __start.bi_bvec_done = skip; \
68 __start.bi_idx = 0; \
69 for_each_bvec(__v, i->bvec, __bi, __start) { \
70 if (!__v.bv_len) \
Al Viro04a31162014-11-27 13:51:41 -050071 continue; \
Al Viro04a31162014-11-27 13:51:41 -050072 (void)(STEP); \
Al Viro04a31162014-11-27 13:51:41 -050073 } \
Al Viro04a31162014-11-27 13:51:41 -050074}
75
Al Viroa2804552014-11-27 14:48:42 -050076#define iterate_all_kinds(i, n, v, I, B, K) { \
Al Viro33844e62016-12-21 21:55:02 -050077 if (likely(n)) { \
78 size_t skip = i->iov_offset; \
79 if (unlikely(i->type & ITER_BVEC)) { \
80 struct bio_vec v; \
81 struct bvec_iter __bi; \
82 iterate_bvec(i, n, v, __bi, skip, (B)) \
83 } else if (unlikely(i->type & ITER_KVEC)) { \
84 const struct kvec *kvec; \
85 struct kvec v; \
86 iterate_kvec(i, n, v, kvec, skip, (K)) \
David Howells9ea9ce02018-10-20 00:57:56 +010087 } else if (unlikely(i->type & ITER_DISCARD)) { \
Al Viro33844e62016-12-21 21:55:02 -050088 } else { \
89 const struct iovec *iov; \
90 struct iovec v; \
91 iterate_iovec(i, n, v, iov, skip, (I)) \
92 } \
Al Viro04a31162014-11-27 13:51:41 -050093 } \
94}
95
Al Viroa2804552014-11-27 14:48:42 -050096#define iterate_and_advance(i, n, v, I, B, K) { \
Al Virodd254f52016-05-09 11:54:48 -040097 if (unlikely(i->count < n)) \
98 n = i->count; \
Al Viro19f18452016-05-25 17:36:19 -040099 if (i->count) { \
Al Virodd254f52016-05-09 11:54:48 -0400100 size_t skip = i->iov_offset; \
101 if (unlikely(i->type & ITER_BVEC)) { \
Ming Lei1bdc76a2016-05-30 21:34:32 +0800102 const struct bio_vec *bvec = i->bvec; \
Al Virodd254f52016-05-09 11:54:48 -0400103 struct bio_vec v; \
Ming Lei1bdc76a2016-05-30 21:34:32 +0800104 struct bvec_iter __bi; \
105 iterate_bvec(i, n, v, __bi, skip, (B)) \
106 i->bvec = __bvec_iter_bvec(i->bvec, __bi); \
107 i->nr_segs -= i->bvec - bvec; \
108 skip = __bi.bi_bvec_done; \
Al Virodd254f52016-05-09 11:54:48 -0400109 } else if (unlikely(i->type & ITER_KVEC)) { \
110 const struct kvec *kvec; \
111 struct kvec v; \
112 iterate_kvec(i, n, v, kvec, skip, (K)) \
113 if (skip == kvec->iov_len) { \
114 kvec++; \
115 skip = 0; \
116 } \
117 i->nr_segs -= kvec - i->kvec; \
118 i->kvec = kvec; \
David Howells9ea9ce02018-10-20 00:57:56 +0100119 } else if (unlikely(i->type & ITER_DISCARD)) { \
120 skip += n; \
Al Virodd254f52016-05-09 11:54:48 -0400121 } else { \
122 const struct iovec *iov; \
123 struct iovec v; \
124 iterate_iovec(i, n, v, iov, skip, (I)) \
125 if (skip == iov->iov_len) { \
126 iov++; \
127 skip = 0; \
128 } \
129 i->nr_segs -= iov - i->iov; \
130 i->iov = iov; \
Al Viro7ce2a912014-11-27 13:59:45 -0500131 } \
Al Virodd254f52016-05-09 11:54:48 -0400132 i->count -= n; \
133 i->iov_offset = skip; \
Al Viro7ce2a912014-11-27 13:59:45 -0500134 } \
Al Viro7ce2a912014-11-27 13:59:45 -0500135}
136
Al Viro09fc68dc2017-06-29 22:25:14 -0400137static int copyout(void __user *to, const void *from, size_t n)
138{
Linus Torvalds96d4f262019-01-03 18:57:57 -0800139 if (access_ok(to, n)) {
Al Viro09fc68dc2017-06-29 22:25:14 -0400140 kasan_check_read(from, n);
141 n = raw_copy_to_user(to, from, n);
142 }
143 return n;
144}
145
146static int copyin(void *to, const void __user *from, size_t n)
147{
Linus Torvalds96d4f262019-01-03 18:57:57 -0800148 if (access_ok(from, n)) {
Al Viro09fc68dc2017-06-29 22:25:14 -0400149 kasan_check_write(to, n);
150 n = raw_copy_from_user(to, from, n);
151 }
152 return n;
153}
154
Al Viro62a80672014-04-04 23:12:29 -0400155static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes,
Al Viro4f18cd32014-02-05 19:11:33 -0500156 struct iov_iter *i)
157{
158 size_t skip, copy, left, wanted;
159 const struct iovec *iov;
160 char __user *buf;
161 void *kaddr, *from;
162
163 if (unlikely(bytes > i->count))
164 bytes = i->count;
165
166 if (unlikely(!bytes))
167 return 0;
168
Al Viro09fc68dc2017-06-29 22:25:14 -0400169 might_fault();
Al Viro4f18cd32014-02-05 19:11:33 -0500170 wanted = bytes;
171 iov = i->iov;
172 skip = i->iov_offset;
173 buf = iov->iov_base + skip;
174 copy = min(bytes, iov->iov_len - skip);
175
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700176 if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_writeable(buf, copy)) {
Al Viro4f18cd32014-02-05 19:11:33 -0500177 kaddr = kmap_atomic(page);
178 from = kaddr + offset;
179
180 /* first chunk, usually the only one */
Al Viro09fc68dc2017-06-29 22:25:14 -0400181 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500182 copy -= left;
183 skip += copy;
184 from += copy;
185 bytes -= copy;
186
187 while (unlikely(!left && bytes)) {
188 iov++;
189 buf = iov->iov_base;
190 copy = min(bytes, iov->iov_len);
Al Viro09fc68dc2017-06-29 22:25:14 -0400191 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500192 copy -= left;
193 skip = copy;
194 from += copy;
195 bytes -= copy;
196 }
197 if (likely(!bytes)) {
198 kunmap_atomic(kaddr);
199 goto done;
200 }
201 offset = from - kaddr;
202 buf += copy;
203 kunmap_atomic(kaddr);
204 copy = min(bytes, iov->iov_len - skip);
205 }
206 /* Too bad - revert to non-atomic kmap */
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700207
Al Viro4f18cd32014-02-05 19:11:33 -0500208 kaddr = kmap(page);
209 from = kaddr + offset;
Al Viro09fc68dc2017-06-29 22:25:14 -0400210 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500211 copy -= left;
212 skip += copy;
213 from += copy;
214 bytes -= copy;
215 while (unlikely(!left && bytes)) {
216 iov++;
217 buf = iov->iov_base;
218 copy = min(bytes, iov->iov_len);
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 }
225 kunmap(page);
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700226
Al Viro4f18cd32014-02-05 19:11:33 -0500227done:
Al Viro81055e52014-04-04 19:23:46 -0400228 if (skip == iov->iov_len) {
229 iov++;
230 skip = 0;
231 }
Al Viro4f18cd32014-02-05 19:11:33 -0500232 i->count -= wanted - bytes;
233 i->nr_segs -= iov - i->iov;
234 i->iov = iov;
235 i->iov_offset = skip;
236 return wanted - bytes;
237}
Al Viro4f18cd32014-02-05 19:11:33 -0500238
Al Viro62a80672014-04-04 23:12:29 -0400239static size_t copy_page_from_iter_iovec(struct page *page, size_t offset, size_t bytes,
Al Virof0d1bec2014-04-03 15:05:18 -0400240 struct iov_iter *i)
241{
242 size_t skip, copy, left, wanted;
243 const struct iovec *iov;
244 char __user *buf;
245 void *kaddr, *to;
246
247 if (unlikely(bytes > i->count))
248 bytes = i->count;
249
250 if (unlikely(!bytes))
251 return 0;
252
Al Viro09fc68dc2017-06-29 22:25:14 -0400253 might_fault();
Al Virof0d1bec2014-04-03 15:05:18 -0400254 wanted = bytes;
255 iov = i->iov;
256 skip = i->iov_offset;
257 buf = iov->iov_base + skip;
258 copy = min(bytes, iov->iov_len - skip);
259
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700260 if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_readable(buf, copy)) {
Al Virof0d1bec2014-04-03 15:05:18 -0400261 kaddr = kmap_atomic(page);
262 to = kaddr + offset;
263
264 /* first chunk, usually the only one */
Al Viro09fc68dc2017-06-29 22:25:14 -0400265 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400266 copy -= left;
267 skip += copy;
268 to += copy;
269 bytes -= copy;
270
271 while (unlikely(!left && bytes)) {
272 iov++;
273 buf = iov->iov_base;
274 copy = min(bytes, iov->iov_len);
Al Viro09fc68dc2017-06-29 22:25:14 -0400275 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400276 copy -= left;
277 skip = copy;
278 to += copy;
279 bytes -= copy;
280 }
281 if (likely(!bytes)) {
282 kunmap_atomic(kaddr);
283 goto done;
284 }
285 offset = to - kaddr;
286 buf += copy;
287 kunmap_atomic(kaddr);
288 copy = min(bytes, iov->iov_len - skip);
289 }
290 /* Too bad - revert to non-atomic kmap */
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700291
Al Virof0d1bec2014-04-03 15:05:18 -0400292 kaddr = kmap(page);
293 to = kaddr + offset;
Al Viro09fc68dc2017-06-29 22:25:14 -0400294 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400295 copy -= left;
296 skip += copy;
297 to += copy;
298 bytes -= copy;
299 while (unlikely(!left && bytes)) {
300 iov++;
301 buf = iov->iov_base;
302 copy = min(bytes, iov->iov_len);
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 }
309 kunmap(page);
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700310
Al Virof0d1bec2014-04-03 15:05:18 -0400311done:
Al Viro81055e52014-04-04 19:23:46 -0400312 if (skip == iov->iov_len) {
313 iov++;
314 skip = 0;
315 }
Al Virof0d1bec2014-04-03 15:05:18 -0400316 i->count -= wanted - bytes;
317 i->nr_segs -= iov - i->iov;
318 i->iov = iov;
319 i->iov_offset = skip;
320 return wanted - bytes;
321}
Al Virof0d1bec2014-04-03 15:05:18 -0400322
Al Viro241699c2016-09-22 16:33:12 -0400323#ifdef PIPE_PARANOIA
324static bool sanity(const struct iov_iter *i)
325{
326 struct pipe_inode_info *pipe = i->pipe;
327 int idx = i->idx;
328 int next = pipe->curbuf + pipe->nrbufs;
329 if (i->iov_offset) {
330 struct pipe_buffer *p;
331 if (unlikely(!pipe->nrbufs))
332 goto Bad; // pipe must be non-empty
333 if (unlikely(idx != ((next - 1) & (pipe->buffers - 1))))
334 goto Bad; // must be at the last buffer...
335
336 p = &pipe->bufs[idx];
337 if (unlikely(p->offset + p->len != i->iov_offset))
338 goto Bad; // ... at the end of segment
339 } else {
340 if (idx != (next & (pipe->buffers - 1)))
341 goto Bad; // must be right after the last buffer
342 }
343 return true;
344Bad:
345 printk(KERN_ERR "idx = %d, offset = %zd\n", i->idx, i->iov_offset);
346 printk(KERN_ERR "curbuf = %d, nrbufs = %d, buffers = %d\n",
347 pipe->curbuf, pipe->nrbufs, pipe->buffers);
348 for (idx = 0; idx < pipe->buffers; idx++)
349 printk(KERN_ERR "[%p %p %d %d]\n",
350 pipe->bufs[idx].ops,
351 pipe->bufs[idx].page,
352 pipe->bufs[idx].offset,
353 pipe->bufs[idx].len);
354 WARN_ON(1);
355 return false;
356}
357#else
358#define sanity(i) true
359#endif
360
361static inline int next_idx(int idx, struct pipe_inode_info *pipe)
362{
363 return (idx + 1) & (pipe->buffers - 1);
364}
365
366static size_t copy_page_to_iter_pipe(struct page *page, size_t offset, size_t bytes,
367 struct iov_iter *i)
368{
369 struct pipe_inode_info *pipe = i->pipe;
370 struct pipe_buffer *buf;
371 size_t off;
372 int idx;
373
374 if (unlikely(bytes > i->count))
375 bytes = i->count;
376
377 if (unlikely(!bytes))
378 return 0;
379
380 if (!sanity(i))
381 return 0;
382
383 off = i->iov_offset;
384 idx = i->idx;
385 buf = &pipe->bufs[idx];
386 if (off) {
387 if (offset == off && buf->page == page) {
388 /* merge with the last one */
389 buf->len += bytes;
390 i->iov_offset += bytes;
391 goto out;
392 }
393 idx = next_idx(idx, pipe);
394 buf = &pipe->bufs[idx];
395 }
396 if (idx == pipe->curbuf && pipe->nrbufs)
397 return 0;
398 pipe->nrbufs++;
399 buf->ops = &page_cache_pipe_buf_ops;
400 get_page(buf->page = page);
401 buf->offset = offset;
402 buf->len = bytes;
403 i->iov_offset = offset + bytes;
404 i->idx = idx;
405out:
406 i->count -= bytes;
407 return bytes;
408}
409
Al Viro4f18cd32014-02-05 19:11:33 -0500410/*
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400411 * Fault in one or more iovecs of the given iov_iter, to a maximum length of
412 * bytes. For each iovec, fault in each page that constitutes the iovec.
413 *
414 * Return 0 on success, or non-zero if the memory could not be accessed (i.e.
415 * because it is an invalid address).
416 */
Al Virod4690f12016-09-16 00:11:45 +0100417int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400418{
419 size_t skip = i->iov_offset;
420 const struct iovec *iov;
421 int err;
422 struct iovec v;
423
424 if (!(i->type & (ITER_BVEC|ITER_KVEC))) {
425 iterate_iovec(i, bytes, v, iov, skip, ({
Al Viro4bce9f6e2016-09-17 18:02:44 -0400426 err = fault_in_pages_readable(v.iov_base, v.iov_len);
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400427 if (unlikely(err))
428 return err;
429 0;}))
430 }
431 return 0;
432}
Al Virod4690f12016-09-16 00:11:45 +0100433EXPORT_SYMBOL(iov_iter_fault_in_readable);
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400434
David Howellsaa563d72018-10-20 00:57:56 +0100435void iov_iter_init(struct iov_iter *i, unsigned int direction,
Al Viro71d8e532014-03-05 19:28:09 -0500436 const struct iovec *iov, unsigned long nr_segs,
437 size_t count)
438{
David Howellsaa563d72018-10-20 00:57:56 +0100439 WARN_ON(direction & ~(READ | WRITE));
440 direction &= READ | WRITE;
441
Al Viro71d8e532014-03-05 19:28:09 -0500442 /* It will get better. Eventually... */
Al Virodb68ce12017-03-20 21:08:07 -0400443 if (uaccess_kernel()) {
David Howellsaa563d72018-10-20 00:57:56 +0100444 i->type = ITER_KVEC | direction;
Al Viroa2804552014-11-27 14:48:42 -0500445 i->kvec = (struct kvec *)iov;
446 } else {
David Howellsaa563d72018-10-20 00:57:56 +0100447 i->type = ITER_IOVEC | direction;
Al Viroa2804552014-11-27 14:48:42 -0500448 i->iov = iov;
449 }
Al Viro71d8e532014-03-05 19:28:09 -0500450 i->nr_segs = nr_segs;
451 i->iov_offset = 0;
452 i->count = count;
453}
454EXPORT_SYMBOL(iov_iter_init);
Al Viro7b2c99d2014-03-15 04:05:57 -0400455
Al Viro62a80672014-04-04 23:12:29 -0400456static void memcpy_from_page(char *to, struct page *page, size_t offset, size_t len)
457{
458 char *from = kmap_atomic(page);
459 memcpy(to, from + offset, len);
460 kunmap_atomic(from);
461}
462
Al Viro36f7a8a2015-12-06 16:49:22 -0500463static void memcpy_to_page(struct page *page, size_t offset, const char *from, size_t len)
Al Viro62a80672014-04-04 23:12:29 -0400464{
465 char *to = kmap_atomic(page);
466 memcpy(to + offset, from, len);
467 kunmap_atomic(to);
468}
469
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400470static void memzero_page(struct page *page, size_t offset, size_t len)
471{
472 char *addr = kmap_atomic(page);
473 memset(addr + offset, 0, len);
474 kunmap_atomic(addr);
475}
476
Al Viro241699c2016-09-22 16:33:12 -0400477static inline bool allocated(struct pipe_buffer *buf)
478{
479 return buf->ops == &default_pipe_buf_ops;
480}
481
482static inline void data_start(const struct iov_iter *i, int *idxp, size_t *offp)
483{
484 size_t off = i->iov_offset;
485 int idx = i->idx;
486 if (off && (!allocated(&i->pipe->bufs[idx]) || off == PAGE_SIZE)) {
487 idx = next_idx(idx, i->pipe);
488 off = 0;
489 }
490 *idxp = idx;
491 *offp = off;
492}
493
494static size_t push_pipe(struct iov_iter *i, size_t size,
495 int *idxp, size_t *offp)
496{
497 struct pipe_inode_info *pipe = i->pipe;
498 size_t off;
499 int idx;
500 ssize_t left;
501
502 if (unlikely(size > i->count))
503 size = i->count;
504 if (unlikely(!size))
505 return 0;
506
507 left = size;
508 data_start(i, &idx, &off);
509 *idxp = idx;
510 *offp = off;
511 if (off) {
512 left -= PAGE_SIZE - off;
513 if (left <= 0) {
514 pipe->bufs[idx].len += size;
515 return size;
516 }
517 pipe->bufs[idx].len = PAGE_SIZE;
518 idx = next_idx(idx, pipe);
519 }
520 while (idx != pipe->curbuf || !pipe->nrbufs) {
521 struct page *page = alloc_page(GFP_USER);
522 if (!page)
523 break;
524 pipe->nrbufs++;
525 pipe->bufs[idx].ops = &default_pipe_buf_ops;
526 pipe->bufs[idx].page = page;
527 pipe->bufs[idx].offset = 0;
528 if (left <= PAGE_SIZE) {
529 pipe->bufs[idx].len = left;
530 return size;
531 }
532 pipe->bufs[idx].len = PAGE_SIZE;
533 left -= PAGE_SIZE;
534 idx = next_idx(idx, pipe);
535 }
536 return size - left;
537}
538
539static size_t copy_pipe_to_iter(const void *addr, size_t bytes,
540 struct iov_iter *i)
541{
542 struct pipe_inode_info *pipe = i->pipe;
543 size_t n, off;
544 int idx;
545
546 if (!sanity(i))
547 return 0;
548
549 bytes = n = push_pipe(i, bytes, &idx, &off);
550 if (unlikely(!n))
551 return 0;
552 for ( ; n; idx = next_idx(idx, pipe), off = 0) {
553 size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
554 memcpy_to_page(pipe->bufs[idx].page, off, addr, chunk);
555 i->idx = idx;
556 i->iov_offset = off + chunk;
557 n -= chunk;
558 addr += chunk;
559 }
560 i->count -= bytes;
561 return bytes;
562}
563
Al Virof9152892018-11-27 22:32:59 -0500564static __wsum csum_and_memcpy(void *to, const void *from, size_t len,
565 __wsum sum, size_t off)
566{
567 __wsum next = csum_partial_copy_nocheck(from, to, len, 0);
568 return csum_block_add(sum, next, off);
569}
570
Al Viro78e1f382018-11-25 16:24:16 -0500571static size_t csum_and_copy_to_pipe_iter(const void *addr, size_t bytes,
572 __wsum *csum, struct iov_iter *i)
573{
574 struct pipe_inode_info *pipe = i->pipe;
575 size_t n, r;
576 size_t off = 0;
Al Virof9152892018-11-27 22:32:59 -0500577 __wsum sum = *csum;
Al Viro78e1f382018-11-25 16:24:16 -0500578 int idx;
579
580 if (!sanity(i))
581 return 0;
582
583 bytes = n = push_pipe(i, bytes, &idx, &r);
584 if (unlikely(!n))
585 return 0;
586 for ( ; n; idx = next_idx(idx, pipe), r = 0) {
587 size_t chunk = min_t(size_t, n, PAGE_SIZE - r);
588 char *p = kmap_atomic(pipe->bufs[idx].page);
Al Virof9152892018-11-27 22:32:59 -0500589 sum = csum_and_memcpy(p + r, addr, chunk, sum, off);
Al Viro78e1f382018-11-25 16:24:16 -0500590 kunmap_atomic(p);
591 i->idx = idx;
592 i->iov_offset = r + chunk;
593 n -= chunk;
594 off += chunk;
595 addr += chunk;
596 }
597 i->count -= bytes;
598 *csum = sum;
599 return bytes;
600}
601
Al Viroaa28de22017-06-29 21:45:10 -0400602size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
Al Viro62a80672014-04-04 23:12:29 -0400603{
Al Viro36f7a8a2015-12-06 16:49:22 -0500604 const char *from = addr;
David Howells00e23702018-10-22 13:07:28 +0100605 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -0400606 return copy_pipe_to_iter(addr, bytes, i);
Al Viro09fc68dc2017-06-29 22:25:14 -0400607 if (iter_is_iovec(i))
608 might_fault();
Al Viro3d4d3e42014-11-27 14:28:06 -0500609 iterate_and_advance(i, bytes, v,
Al Viro09fc68dc2017-06-29 22:25:14 -0400610 copyout(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len),
Al Viro3d4d3e42014-11-27 14:28:06 -0500611 memcpy_to_page(v.bv_page, v.bv_offset,
Al Viroa2804552014-11-27 14:48:42 -0500612 (from += v.bv_len) - v.bv_len, v.bv_len),
613 memcpy(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len)
Al Viro3d4d3e42014-11-27 14:28:06 -0500614 )
Al Viro62a80672014-04-04 23:12:29 -0400615
Al Viro3d4d3e42014-11-27 14:28:06 -0500616 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400617}
Al Viroaa28de22017-06-29 21:45:10 -0400618EXPORT_SYMBOL(_copy_to_iter);
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400619
Dan Williams87803562018-05-03 17:06:31 -0700620#ifdef CONFIG_ARCH_HAS_UACCESS_MCSAFE
621static int copyout_mcsafe(void __user *to, const void *from, size_t n)
622{
Linus Torvalds96d4f262019-01-03 18:57:57 -0800623 if (access_ok(to, n)) {
Dan Williams87803562018-05-03 17:06:31 -0700624 kasan_check_read(from, n);
625 n = copy_to_user_mcsafe((__force void *) to, from, n);
626 }
627 return n;
628}
629
630static unsigned long memcpy_mcsafe_to_page(struct page *page, size_t offset,
631 const char *from, size_t len)
632{
633 unsigned long ret;
634 char *to;
635
636 to = kmap_atomic(page);
637 ret = memcpy_mcsafe(to + offset, from, len);
638 kunmap_atomic(to);
639
640 return ret;
641}
642
Dan Williamsca146f62018-07-08 13:46:12 -0700643static size_t copy_pipe_to_iter_mcsafe(const void *addr, size_t bytes,
644 struct iov_iter *i)
645{
646 struct pipe_inode_info *pipe = i->pipe;
647 size_t n, off, xfer = 0;
648 int idx;
649
650 if (!sanity(i))
651 return 0;
652
653 bytes = n = push_pipe(i, bytes, &idx, &off);
654 if (unlikely(!n))
655 return 0;
656 for ( ; n; idx = next_idx(idx, pipe), off = 0) {
657 size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
658 unsigned long rem;
659
660 rem = memcpy_mcsafe_to_page(pipe->bufs[idx].page, off, addr,
661 chunk);
662 i->idx = idx;
663 i->iov_offset = off + chunk - rem;
664 xfer += chunk - rem;
665 if (rem)
666 break;
667 n -= chunk;
668 addr += chunk;
669 }
670 i->count -= xfer;
671 return xfer;
672}
673
Dan Williamsbf3eeb92018-07-08 13:46:02 -0700674/**
675 * _copy_to_iter_mcsafe - copy to user with source-read error exception handling
676 * @addr: source kernel address
677 * @bytes: total transfer length
678 * @iter: destination iterator
679 *
680 * The pmem driver arranges for filesystem-dax to use this facility via
681 * dax_copy_to_iter() for protecting read/write to persistent memory.
682 * Unless / until an architecture can guarantee identical performance
683 * between _copy_to_iter_mcsafe() and _copy_to_iter() it would be a
684 * performance regression to switch more users to the mcsafe version.
685 *
686 * Otherwise, the main differences between this and typical _copy_to_iter().
687 *
688 * * Typical tail/residue handling after a fault retries the copy
689 * byte-by-byte until the fault happens again. Re-triggering machine
690 * checks is potentially fatal so the implementation uses source
691 * alignment and poison alignment assumptions to avoid re-triggering
692 * hardware exceptions.
693 *
694 * * ITER_KVEC, ITER_PIPE, and ITER_BVEC can return short copies.
695 * Compare to copy_to_iter() where only ITER_IOVEC attempts might return
696 * a short copy.
697 *
698 * See MCSAFE_TEST for self-test.
699 */
Dan Williams87803562018-05-03 17:06:31 -0700700size_t _copy_to_iter_mcsafe(const void *addr, size_t bytes, struct iov_iter *i)
701{
702 const char *from = addr;
703 unsigned long rem, curr_addr, s_addr = (unsigned long) addr;
704
David Howells00e23702018-10-22 13:07:28 +0100705 if (unlikely(iov_iter_is_pipe(i)))
Dan Williamsca146f62018-07-08 13:46:12 -0700706 return copy_pipe_to_iter_mcsafe(addr, bytes, i);
Dan Williams87803562018-05-03 17:06:31 -0700707 if (iter_is_iovec(i))
708 might_fault();
709 iterate_and_advance(i, bytes, v,
710 copyout_mcsafe(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len),
711 ({
712 rem = memcpy_mcsafe_to_page(v.bv_page, v.bv_offset,
713 (from += v.bv_len) - v.bv_len, v.bv_len);
714 if (rem) {
715 curr_addr = (unsigned long) from;
716 bytes = curr_addr - s_addr - rem;
717 return bytes;
718 }
719 }),
720 ({
721 rem = memcpy_mcsafe(v.iov_base, (from += v.iov_len) - v.iov_len,
722 v.iov_len);
723 if (rem) {
724 curr_addr = (unsigned long) from;
725 bytes = curr_addr - s_addr - rem;
726 return bytes;
727 }
728 })
729 )
730
731 return bytes;
732}
733EXPORT_SYMBOL_GPL(_copy_to_iter_mcsafe);
734#endif /* CONFIG_ARCH_HAS_UACCESS_MCSAFE */
735
Al Viroaa28de22017-06-29 21:45:10 -0400736size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i)
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400737{
Al Viro0dbca9a2014-11-27 14:26:43 -0500738 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100739 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro241699c2016-09-22 16:33:12 -0400740 WARN_ON(1);
741 return 0;
742 }
Al Viro09fc68dc2017-06-29 22:25:14 -0400743 if (iter_is_iovec(i))
744 might_fault();
Al Viro0dbca9a2014-11-27 14:26:43 -0500745 iterate_and_advance(i, bytes, v,
Al Viro09fc68dc2017-06-29 22:25:14 -0400746 copyin((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len),
Al Viro0dbca9a2014-11-27 14:26:43 -0500747 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
Al Viroa2804552014-11-27 14:48:42 -0500748 v.bv_offset, v.bv_len),
749 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
Al Viro0dbca9a2014-11-27 14:26:43 -0500750 )
751
752 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400753}
Al Viroaa28de22017-06-29 21:45:10 -0400754EXPORT_SYMBOL(_copy_from_iter);
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400755
Al Viroaa28de22017-06-29 21:45:10 -0400756bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i)
Al Virocbbd26b2016-11-01 22:09:04 -0400757{
758 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100759 if (unlikely(iov_iter_is_pipe(i))) {
Al Virocbbd26b2016-11-01 22:09:04 -0400760 WARN_ON(1);
761 return false;
762 }
Al Viro33844e62016-12-21 21:55:02 -0500763 if (unlikely(i->count < bytes))
Al Virocbbd26b2016-11-01 22:09:04 -0400764 return false;
765
Al Viro09fc68dc2017-06-29 22:25:14 -0400766 if (iter_is_iovec(i))
767 might_fault();
Al Virocbbd26b2016-11-01 22:09:04 -0400768 iterate_all_kinds(i, bytes, v, ({
Al Viro09fc68dc2017-06-29 22:25:14 -0400769 if (copyin((to += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -0400770 v.iov_base, v.iov_len))
771 return false;
772 0;}),
773 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
774 v.bv_offset, v.bv_len),
775 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
776 )
777
778 iov_iter_advance(i, bytes);
779 return true;
780}
Al Viroaa28de22017-06-29 21:45:10 -0400781EXPORT_SYMBOL(_copy_from_iter_full);
Al Virocbbd26b2016-11-01 22:09:04 -0400782
Al Viroaa28de22017-06-29 21:45:10 -0400783size_t _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i)
Al Viroaa583092014-11-27 20:27:08 -0500784{
785 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100786 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro241699c2016-09-22 16:33:12 -0400787 WARN_ON(1);
788 return 0;
789 }
Al Viroaa583092014-11-27 20:27:08 -0500790 iterate_and_advance(i, bytes, v,
Al Viro3f763452017-03-25 18:47:28 -0400791 __copy_from_user_inatomic_nocache((to += v.iov_len) - v.iov_len,
Al Viroaa583092014-11-27 20:27:08 -0500792 v.iov_base, v.iov_len),
793 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
794 v.bv_offset, v.bv_len),
795 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
796 )
797
798 return bytes;
799}
Al Viroaa28de22017-06-29 21:45:10 -0400800EXPORT_SYMBOL(_copy_from_iter_nocache);
Al Viroaa583092014-11-27 20:27:08 -0500801
Dan Williams0aed55a2017-05-29 12:22:50 -0700802#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
Dan Williamsabd08d72018-07-08 13:46:07 -0700803/**
804 * _copy_from_iter_flushcache - write destination through cpu cache
805 * @addr: destination kernel address
806 * @bytes: total transfer length
807 * @iter: source iterator
808 *
809 * The pmem driver arranges for filesystem-dax to use this facility via
810 * dax_copy_from_iter() for ensuring that writes to persistent memory
811 * are flushed through the CPU cache. It is differentiated from
812 * _copy_from_iter_nocache() in that guarantees all data is flushed for
813 * all iterator types. The _copy_from_iter_nocache() only attempts to
814 * bypass the cache for the ITER_IOVEC case, and on some archs may use
815 * instructions that strand dirty-data in the cache.
816 */
Linus Torvalds6a37e942017-07-07 20:39:20 -0700817size_t _copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i)
Dan Williams0aed55a2017-05-29 12:22:50 -0700818{
819 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100820 if (unlikely(iov_iter_is_pipe(i))) {
Dan Williams0aed55a2017-05-29 12:22:50 -0700821 WARN_ON(1);
822 return 0;
823 }
824 iterate_and_advance(i, bytes, v,
825 __copy_from_user_flushcache((to += v.iov_len) - v.iov_len,
826 v.iov_base, v.iov_len),
827 memcpy_page_flushcache((to += v.bv_len) - v.bv_len, v.bv_page,
828 v.bv_offset, v.bv_len),
829 memcpy_flushcache((to += v.iov_len) - v.iov_len, v.iov_base,
830 v.iov_len)
831 )
832
833 return bytes;
834}
Linus Torvalds6a37e942017-07-07 20:39:20 -0700835EXPORT_SYMBOL_GPL(_copy_from_iter_flushcache);
Dan Williams0aed55a2017-05-29 12:22:50 -0700836#endif
837
Al Viroaa28de22017-06-29 21:45:10 -0400838bool _copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i)
Al Virocbbd26b2016-11-01 22:09:04 -0400839{
840 char *to = addr;
David Howells00e23702018-10-22 13:07:28 +0100841 if (unlikely(iov_iter_is_pipe(i))) {
Al Virocbbd26b2016-11-01 22:09:04 -0400842 WARN_ON(1);
843 return false;
844 }
Al Viro33844e62016-12-21 21:55:02 -0500845 if (unlikely(i->count < bytes))
Al Virocbbd26b2016-11-01 22:09:04 -0400846 return false;
847 iterate_all_kinds(i, bytes, v, ({
Al Viro3f763452017-03-25 18:47:28 -0400848 if (__copy_from_user_inatomic_nocache((to += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -0400849 v.iov_base, v.iov_len))
850 return false;
851 0;}),
852 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
853 v.bv_offset, v.bv_len),
854 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
855 )
856
857 iov_iter_advance(i, bytes);
858 return true;
859}
Al Viroaa28de22017-06-29 21:45:10 -0400860EXPORT_SYMBOL(_copy_from_iter_full_nocache);
Al Virocbbd26b2016-11-01 22:09:04 -0400861
Al Viro72e809e2017-06-29 21:52:57 -0400862static inline bool page_copy_sane(struct page *page, size_t offset, size_t n)
863{
Eric Dumazet6daef952019-02-26 10:42:39 -0800864 struct page *head;
865 size_t v = n + offset;
866
867 /*
868 * The general case needs to access the page order in order
869 * to compute the page size.
870 * However, we mostly deal with order-0 pages and thus can
871 * avoid a possible cache line miss for requests that fit all
872 * page orders.
873 */
874 if (n <= v && v <= PAGE_SIZE)
875 return true;
876
877 head = compound_head(page);
878 v += (page - head) << PAGE_SHIFT;
Petar Penkova90bcb82017-08-29 11:20:32 -0700879
880 if (likely(n <= v && v <= (PAGE_SIZE << compound_order(head))))
Al Viro72e809e2017-06-29 21:52:57 -0400881 return true;
882 WARN_ON(1);
883 return false;
884}
Al Virod2715242014-11-27 14:22:37 -0500885
886size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
887 struct iov_iter *i)
888{
Al Viro72e809e2017-06-29 21:52:57 -0400889 if (unlikely(!page_copy_sane(page, offset, bytes)))
890 return 0;
Al Virod2715242014-11-27 14:22:37 -0500891 if (i->type & (ITER_BVEC|ITER_KVEC)) {
892 void *kaddr = kmap_atomic(page);
893 size_t wanted = copy_to_iter(kaddr + offset, bytes, i);
894 kunmap_atomic(kaddr);
895 return wanted;
David Howells9ea9ce02018-10-20 00:57:56 +0100896 } else if (unlikely(iov_iter_is_discard(i)))
897 return bytes;
898 else if (likely(!iov_iter_is_pipe(i)))
Al Virod2715242014-11-27 14:22:37 -0500899 return copy_page_to_iter_iovec(page, offset, bytes, i);
Al Viro241699c2016-09-22 16:33:12 -0400900 else
901 return copy_page_to_iter_pipe(page, offset, bytes, i);
Al Virod2715242014-11-27 14:22:37 -0500902}
903EXPORT_SYMBOL(copy_page_to_iter);
904
905size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
906 struct iov_iter *i)
907{
Al Viro72e809e2017-06-29 21:52:57 -0400908 if (unlikely(!page_copy_sane(page, offset, bytes)))
909 return 0;
David Howells9ea9ce02018-10-20 00:57:56 +0100910 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -0400911 WARN_ON(1);
912 return 0;
913 }
Al Virod2715242014-11-27 14:22:37 -0500914 if (i->type & (ITER_BVEC|ITER_KVEC)) {
915 void *kaddr = kmap_atomic(page);
Al Viroaa28de22017-06-29 21:45:10 -0400916 size_t wanted = _copy_from_iter(kaddr + offset, bytes, i);
Al Virod2715242014-11-27 14:22:37 -0500917 kunmap_atomic(kaddr);
918 return wanted;
919 } else
920 return copy_page_from_iter_iovec(page, offset, bytes, i);
921}
922EXPORT_SYMBOL(copy_page_from_iter);
923
Al Viro241699c2016-09-22 16:33:12 -0400924static size_t pipe_zero(size_t bytes, struct iov_iter *i)
925{
926 struct pipe_inode_info *pipe = i->pipe;
927 size_t n, off;
928 int idx;
929
930 if (!sanity(i))
931 return 0;
932
933 bytes = n = push_pipe(i, bytes, &idx, &off);
934 if (unlikely(!n))
935 return 0;
936
937 for ( ; n; idx = next_idx(idx, pipe), off = 0) {
938 size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
939 memzero_page(pipe->bufs[idx].page, off, chunk);
940 i->idx = idx;
941 i->iov_offset = off + chunk;
942 n -= chunk;
943 }
944 i->count -= bytes;
945 return bytes;
946}
947
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400948size_t iov_iter_zero(size_t bytes, struct iov_iter *i)
949{
David Howells00e23702018-10-22 13:07:28 +0100950 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -0400951 return pipe_zero(bytes, i);
Al Viro8442fa42014-11-27 14:18:54 -0500952 iterate_and_advance(i, bytes, v,
Al Viro09fc68dc2017-06-29 22:25:14 -0400953 clear_user(v.iov_base, v.iov_len),
Al Viroa2804552014-11-27 14:48:42 -0500954 memzero_page(v.bv_page, v.bv_offset, v.bv_len),
955 memset(v.iov_base, 0, v.iov_len)
Al Viro8442fa42014-11-27 14:18:54 -0500956 )
957
958 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400959}
960EXPORT_SYMBOL(iov_iter_zero);
961
Al Viro62a80672014-04-04 23:12:29 -0400962size_t iov_iter_copy_from_user_atomic(struct page *page,
963 struct iov_iter *i, unsigned long offset, size_t bytes)
964{
Al Viro04a31162014-11-27 13:51:41 -0500965 char *kaddr = kmap_atomic(page), *p = kaddr + offset;
Al Viro72e809e2017-06-29 21:52:57 -0400966 if (unlikely(!page_copy_sane(page, offset, bytes))) {
967 kunmap_atomic(kaddr);
968 return 0;
969 }
David Howells9ea9ce02018-10-20 00:57:56 +0100970 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -0400971 kunmap_atomic(kaddr);
972 WARN_ON(1);
973 return 0;
974 }
Al Viro04a31162014-11-27 13:51:41 -0500975 iterate_all_kinds(i, bytes, v,
Al Viro09fc68dc2017-06-29 22:25:14 -0400976 copyin((p += v.iov_len) - v.iov_len, v.iov_base, v.iov_len),
Al Viro04a31162014-11-27 13:51:41 -0500977 memcpy_from_page((p += v.bv_len) - v.bv_len, v.bv_page,
Al Viroa2804552014-11-27 14:48:42 -0500978 v.bv_offset, v.bv_len),
979 memcpy((p += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
Al Viro04a31162014-11-27 13:51:41 -0500980 )
981 kunmap_atomic(kaddr);
982 return bytes;
Al Viro62a80672014-04-04 23:12:29 -0400983}
984EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
985
Al Virob9dc6f62017-01-14 19:33:08 -0500986static inline void pipe_truncate(struct iov_iter *i)
Al Viro241699c2016-09-22 16:33:12 -0400987{
988 struct pipe_inode_info *pipe = i->pipe;
Al Viro241699c2016-09-22 16:33:12 -0400989 if (pipe->nrbufs) {
Al Virob9dc6f62017-01-14 19:33:08 -0500990 size_t off = i->iov_offset;
991 int idx = i->idx;
992 int nrbufs = (idx - pipe->curbuf) & (pipe->buffers - 1);
993 if (off) {
994 pipe->bufs[idx].len = off - pipe->bufs[idx].offset;
995 idx = next_idx(idx, pipe);
996 nrbufs++;
997 }
998 while (pipe->nrbufs > nrbufs) {
Miklos Szeredia7796382016-09-27 10:45:12 +0200999 pipe_buf_release(pipe, &pipe->bufs[idx]);
Al Viro241699c2016-09-22 16:33:12 -04001000 idx = next_idx(idx, pipe);
1001 pipe->nrbufs--;
1002 }
1003 }
Al Virob9dc6f62017-01-14 19:33:08 -05001004}
1005
1006static void pipe_advance(struct iov_iter *i, size_t size)
1007{
1008 struct pipe_inode_info *pipe = i->pipe;
1009 if (unlikely(i->count < size))
1010 size = i->count;
1011 if (size) {
1012 struct pipe_buffer *buf;
1013 size_t off = i->iov_offset, left = size;
1014 int idx = i->idx;
1015 if (off) /* make it relative to the beginning of buffer */
1016 left += off - pipe->bufs[idx].offset;
1017 while (1) {
1018 buf = &pipe->bufs[idx];
1019 if (left <= buf->len)
1020 break;
1021 left -= buf->len;
1022 idx = next_idx(idx, pipe);
1023 }
1024 i->idx = idx;
1025 i->iov_offset = buf->offset + left;
1026 }
1027 i->count -= size;
1028 /* ... and discard everything past that point */
1029 pipe_truncate(i);
Al Viro241699c2016-09-22 16:33:12 -04001030}
1031
Al Viro62a80672014-04-04 23:12:29 -04001032void iov_iter_advance(struct iov_iter *i, size_t size)
1033{
David Howells00e23702018-10-22 13:07:28 +01001034 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001035 pipe_advance(i, size);
1036 return;
1037 }
David Howells9ea9ce02018-10-20 00:57:56 +01001038 if (unlikely(iov_iter_is_discard(i))) {
1039 i->count -= size;
1040 return;
1041 }
Al Viroa2804552014-11-27 14:48:42 -05001042 iterate_and_advance(i, size, v, 0, 0, 0)
Al Viro62a80672014-04-04 23:12:29 -04001043}
1044EXPORT_SYMBOL(iov_iter_advance);
1045
Al Viro27c0e372017-02-17 18:42:24 -05001046void iov_iter_revert(struct iov_iter *i, size_t unroll)
1047{
1048 if (!unroll)
1049 return;
Al Viro5b47d592017-05-08 13:54:47 -04001050 if (WARN_ON(unroll > MAX_RW_COUNT))
1051 return;
Al Viro27c0e372017-02-17 18:42:24 -05001052 i->count += unroll;
David Howells00e23702018-10-22 13:07:28 +01001053 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro27c0e372017-02-17 18:42:24 -05001054 struct pipe_inode_info *pipe = i->pipe;
1055 int idx = i->idx;
1056 size_t off = i->iov_offset;
1057 while (1) {
1058 size_t n = off - pipe->bufs[idx].offset;
1059 if (unroll < n) {
Al Viro4fa55ce2017-04-29 16:42:30 -04001060 off -= unroll;
Al Viro27c0e372017-02-17 18:42:24 -05001061 break;
1062 }
1063 unroll -= n;
1064 if (!unroll && idx == i->start_idx) {
1065 off = 0;
1066 break;
1067 }
1068 if (!idx--)
1069 idx = pipe->buffers - 1;
1070 off = pipe->bufs[idx].offset + pipe->bufs[idx].len;
1071 }
1072 i->iov_offset = off;
1073 i->idx = idx;
1074 pipe_truncate(i);
1075 return;
1076 }
David Howells9ea9ce02018-10-20 00:57:56 +01001077 if (unlikely(iov_iter_is_discard(i)))
1078 return;
Al Viro27c0e372017-02-17 18:42:24 -05001079 if (unroll <= i->iov_offset) {
1080 i->iov_offset -= unroll;
1081 return;
1082 }
1083 unroll -= i->iov_offset;
David Howells00e23702018-10-22 13:07:28 +01001084 if (iov_iter_is_bvec(i)) {
Al Viro27c0e372017-02-17 18:42:24 -05001085 const struct bio_vec *bvec = i->bvec;
1086 while (1) {
1087 size_t n = (--bvec)->bv_len;
1088 i->nr_segs++;
1089 if (unroll <= n) {
1090 i->bvec = bvec;
1091 i->iov_offset = n - unroll;
1092 return;
1093 }
1094 unroll -= n;
1095 }
1096 } else { /* same logics for iovec and kvec */
1097 const struct iovec *iov = i->iov;
1098 while (1) {
1099 size_t n = (--iov)->iov_len;
1100 i->nr_segs++;
1101 if (unroll <= n) {
1102 i->iov = iov;
1103 i->iov_offset = n - unroll;
1104 return;
1105 }
1106 unroll -= n;
1107 }
1108 }
1109}
1110EXPORT_SYMBOL(iov_iter_revert);
1111
Al Viro62a80672014-04-04 23:12:29 -04001112/*
1113 * Return the count of just the current iov_iter segment.
1114 */
1115size_t iov_iter_single_seg_count(const struct iov_iter *i)
1116{
David Howells00e23702018-10-22 13:07:28 +01001117 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -04001118 return i->count; // it is a silly place, anyway
Al Viro62a80672014-04-04 23:12:29 -04001119 if (i->nr_segs == 1)
1120 return i->count;
David Howells9ea9ce02018-10-20 00:57:56 +01001121 if (unlikely(iov_iter_is_discard(i)))
1122 return i->count;
David Howells00e23702018-10-22 13:07:28 +01001123 else if (iov_iter_is_bvec(i))
Al Viro62a80672014-04-04 23:12:29 -04001124 return min(i->count, i->bvec->bv_len - i->iov_offset);
Paul Mackerrasad0eab92014-11-13 20:15:23 +11001125 else
1126 return min(i->count, i->iov->iov_len - i->iov_offset);
Al Viro62a80672014-04-04 23:12:29 -04001127}
1128EXPORT_SYMBOL(iov_iter_single_seg_count);
1129
David Howellsaa563d72018-10-20 00:57:56 +01001130void iov_iter_kvec(struct iov_iter *i, unsigned int direction,
Al Viro05afcb72015-01-23 01:08:07 -05001131 const struct kvec *kvec, unsigned long nr_segs,
Al Viroabb78f82014-11-24 14:46:11 -05001132 size_t count)
1133{
David Howellsaa563d72018-10-20 00:57:56 +01001134 WARN_ON(direction & ~(READ | WRITE));
1135 i->type = ITER_KVEC | (direction & (READ | WRITE));
Al Viro05afcb72015-01-23 01:08:07 -05001136 i->kvec = kvec;
Al Viroabb78f82014-11-24 14:46:11 -05001137 i->nr_segs = nr_segs;
1138 i->iov_offset = 0;
1139 i->count = count;
1140}
1141EXPORT_SYMBOL(iov_iter_kvec);
1142
David Howellsaa563d72018-10-20 00:57:56 +01001143void iov_iter_bvec(struct iov_iter *i, unsigned int direction,
Al Viro05afcb72015-01-23 01:08:07 -05001144 const struct bio_vec *bvec, unsigned long nr_segs,
1145 size_t count)
1146{
David Howellsaa563d72018-10-20 00:57:56 +01001147 WARN_ON(direction & ~(READ | WRITE));
1148 i->type = ITER_BVEC | (direction & (READ | WRITE));
Al Viro05afcb72015-01-23 01:08:07 -05001149 i->bvec = bvec;
1150 i->nr_segs = nr_segs;
1151 i->iov_offset = 0;
1152 i->count = count;
1153}
1154EXPORT_SYMBOL(iov_iter_bvec);
1155
David Howellsaa563d72018-10-20 00:57:56 +01001156void iov_iter_pipe(struct iov_iter *i, unsigned int direction,
Al Viro241699c2016-09-22 16:33:12 -04001157 struct pipe_inode_info *pipe,
1158 size_t count)
1159{
David Howellsaa563d72018-10-20 00:57:56 +01001160 BUG_ON(direction != READ);
Al Virob9dc6f62017-01-14 19:33:08 -05001161 WARN_ON(pipe->nrbufs == pipe->buffers);
David Howellsaa563d72018-10-20 00:57:56 +01001162 i->type = ITER_PIPE | READ;
Al Viro241699c2016-09-22 16:33:12 -04001163 i->pipe = pipe;
1164 i->idx = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1165 i->iov_offset = 0;
1166 i->count = count;
Al Viro27c0e372017-02-17 18:42:24 -05001167 i->start_idx = i->idx;
Al Viro241699c2016-09-22 16:33:12 -04001168}
1169EXPORT_SYMBOL(iov_iter_pipe);
1170
David Howells9ea9ce02018-10-20 00:57:56 +01001171/**
1172 * iov_iter_discard - Initialise an I/O iterator that discards data
1173 * @i: The iterator to initialise.
1174 * @direction: The direction of the transfer.
1175 * @count: The size of the I/O buffer in bytes.
1176 *
1177 * Set up an I/O iterator that just discards everything that's written to it.
1178 * It's only available as a READ iterator.
1179 */
1180void iov_iter_discard(struct iov_iter *i, unsigned int direction, size_t count)
1181{
1182 BUG_ON(direction != READ);
1183 i->type = ITER_DISCARD | READ;
1184 i->count = count;
1185 i->iov_offset = 0;
1186}
1187EXPORT_SYMBOL(iov_iter_discard);
1188
Al Viro62a80672014-04-04 23:12:29 -04001189unsigned long iov_iter_alignment(const struct iov_iter *i)
1190{
Al Viro04a31162014-11-27 13:51:41 -05001191 unsigned long res = 0;
1192 size_t size = i->count;
1193
David Howells00e23702018-10-22 13:07:28 +01001194 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro33844e62016-12-21 21:55:02 -05001195 if (size && i->iov_offset && allocated(&i->pipe->bufs[i->idx]))
Al Viro241699c2016-09-22 16:33:12 -04001196 return size | i->iov_offset;
1197 return size;
1198 }
Al Viro04a31162014-11-27 13:51:41 -05001199 iterate_all_kinds(i, size, v,
1200 (res |= (unsigned long)v.iov_base | v.iov_len, 0),
Al Viroa2804552014-11-27 14:48:42 -05001201 res |= v.bv_offset | v.bv_len,
1202 res |= (unsigned long)v.iov_base | v.iov_len
Al Viro04a31162014-11-27 13:51:41 -05001203 )
1204 return res;
Al Viro62a80672014-04-04 23:12:29 -04001205}
1206EXPORT_SYMBOL(iov_iter_alignment);
1207
Al Viro357f4352016-04-08 19:05:19 -04001208unsigned long iov_iter_gap_alignment(const struct iov_iter *i)
1209{
Al Viro33844e62016-12-21 21:55:02 -05001210 unsigned long res = 0;
Al Viro357f4352016-04-08 19:05:19 -04001211 size_t size = i->count;
Al Viro357f4352016-04-08 19:05:19 -04001212
David Howells9ea9ce02018-10-20 00:57:56 +01001213 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001214 WARN_ON(1);
1215 return ~0U;
1216 }
1217
Al Viro357f4352016-04-08 19:05:19 -04001218 iterate_all_kinds(i, size, v,
1219 (res |= (!res ? 0 : (unsigned long)v.iov_base) |
1220 (size != v.iov_len ? size : 0), 0),
1221 (res |= (!res ? 0 : (unsigned long)v.bv_offset) |
1222 (size != v.bv_len ? size : 0)),
1223 (res |= (!res ? 0 : (unsigned long)v.iov_base) |
1224 (size != v.iov_len ? size : 0))
1225 );
Al Viro33844e62016-12-21 21:55:02 -05001226 return res;
Al Viro357f4352016-04-08 19:05:19 -04001227}
1228EXPORT_SYMBOL(iov_iter_gap_alignment);
1229
Ilya Dryomove76b63122018-05-02 20:16:56 +02001230static inline ssize_t __pipe_get_pages(struct iov_iter *i,
Al Viro241699c2016-09-22 16:33:12 -04001231 size_t maxsize,
1232 struct page **pages,
1233 int idx,
1234 size_t *start)
1235{
1236 struct pipe_inode_info *pipe = i->pipe;
Al Viro1689c732016-10-11 18:21:14 +01001237 ssize_t n = push_pipe(i, maxsize, &idx, start);
Al Viro241699c2016-09-22 16:33:12 -04001238 if (!n)
1239 return -EFAULT;
1240
1241 maxsize = n;
1242 n += *start;
Al Viro1689c732016-10-11 18:21:14 +01001243 while (n > 0) {
Al Viro241699c2016-09-22 16:33:12 -04001244 get_page(*pages++ = pipe->bufs[idx].page);
1245 idx = next_idx(idx, pipe);
1246 n -= PAGE_SIZE;
1247 }
1248
1249 return maxsize;
1250}
1251
1252static ssize_t pipe_get_pages(struct iov_iter *i,
1253 struct page **pages, size_t maxsize, unsigned maxpages,
1254 size_t *start)
1255{
1256 unsigned npages;
1257 size_t capacity;
1258 int idx;
1259
Al Viro33844e62016-12-21 21:55:02 -05001260 if (!maxsize)
1261 return 0;
1262
Al Viro241699c2016-09-22 16:33:12 -04001263 if (!sanity(i))
1264 return -EFAULT;
1265
1266 data_start(i, &idx, start);
1267 /* some of this one + all after this one */
1268 npages = ((i->pipe->curbuf - idx - 1) & (i->pipe->buffers - 1)) + 1;
1269 capacity = min(npages,maxpages) * PAGE_SIZE - *start;
1270
1271 return __pipe_get_pages(i, min(maxsize, capacity), pages, idx, start);
1272}
1273
Al Viro62a80672014-04-04 23:12:29 -04001274ssize_t iov_iter_get_pages(struct iov_iter *i,
Miklos Szeredi2c809292014-09-24 17:09:11 +02001275 struct page **pages, size_t maxsize, unsigned maxpages,
Al Viro62a80672014-04-04 23:12:29 -04001276 size_t *start)
1277{
Al Viroe5393fa2014-11-27 14:12:09 -05001278 if (maxsize > i->count)
1279 maxsize = i->count;
1280
David Howells00e23702018-10-22 13:07:28 +01001281 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -04001282 return pipe_get_pages(i, pages, maxsize, maxpages, start);
David Howells9ea9ce02018-10-20 00:57:56 +01001283 if (unlikely(iov_iter_is_discard(i)))
1284 return -EFAULT;
1285
Al Viroe5393fa2014-11-27 14:12:09 -05001286 iterate_all_kinds(i, maxsize, v, ({
1287 unsigned long addr = (unsigned long)v.iov_base;
1288 size_t len = v.iov_len + (*start = addr & (PAGE_SIZE - 1));
1289 int n;
1290 int res;
1291
1292 if (len > maxpages * PAGE_SIZE)
1293 len = maxpages * PAGE_SIZE;
1294 addr &= ~(PAGE_SIZE - 1);
1295 n = DIV_ROUND_UP(len, PAGE_SIZE);
David Howells00e23702018-10-22 13:07:28 +01001296 res = get_user_pages_fast(addr, n, iov_iter_rw(i) != WRITE, pages);
Al Viroe5393fa2014-11-27 14:12:09 -05001297 if (unlikely(res < 0))
1298 return res;
1299 return (res == n ? len : res * PAGE_SIZE) - *start;
1300 0;}),({
1301 /* can't be more than PAGE_SIZE */
1302 *start = v.bv_offset;
1303 get_page(*pages = v.bv_page);
1304 return v.bv_len;
Al Viroa2804552014-11-27 14:48:42 -05001305 }),({
1306 return -EFAULT;
Al Viroe5393fa2014-11-27 14:12:09 -05001307 })
1308 )
1309 return 0;
Al Viro62a80672014-04-04 23:12:29 -04001310}
1311EXPORT_SYMBOL(iov_iter_get_pages);
1312
Al Viro1b17f1f2014-11-27 14:14:31 -05001313static struct page **get_pages_array(size_t n)
1314{
Michal Hocko752ade62017-05-08 15:57:27 -07001315 return kvmalloc_array(n, sizeof(struct page *), GFP_KERNEL);
Al Viro1b17f1f2014-11-27 14:14:31 -05001316}
1317
Al Viro241699c2016-09-22 16:33:12 -04001318static ssize_t pipe_get_pages_alloc(struct iov_iter *i,
1319 struct page ***pages, size_t maxsize,
1320 size_t *start)
1321{
1322 struct page **p;
Ilya Dryomovd7760d62018-05-02 20:16:57 +02001323 ssize_t n;
Al Viro241699c2016-09-22 16:33:12 -04001324 int idx;
1325 int npages;
1326
Al Viro33844e62016-12-21 21:55:02 -05001327 if (!maxsize)
1328 return 0;
1329
Al Viro241699c2016-09-22 16:33:12 -04001330 if (!sanity(i))
1331 return -EFAULT;
1332
1333 data_start(i, &idx, start);
1334 /* some of this one + all after this one */
1335 npages = ((i->pipe->curbuf - idx - 1) & (i->pipe->buffers - 1)) + 1;
1336 n = npages * PAGE_SIZE - *start;
1337 if (maxsize > n)
1338 maxsize = n;
1339 else
1340 npages = DIV_ROUND_UP(maxsize + *start, PAGE_SIZE);
1341 p = get_pages_array(npages);
1342 if (!p)
1343 return -ENOMEM;
1344 n = __pipe_get_pages(i, maxsize, p, idx, start);
1345 if (n > 0)
1346 *pages = p;
1347 else
1348 kvfree(p);
1349 return n;
1350}
1351
Al Viro62a80672014-04-04 23:12:29 -04001352ssize_t iov_iter_get_pages_alloc(struct iov_iter *i,
1353 struct page ***pages, size_t maxsize,
1354 size_t *start)
1355{
Al Viro1b17f1f2014-11-27 14:14:31 -05001356 struct page **p;
1357
1358 if (maxsize > i->count)
1359 maxsize = i->count;
1360
David Howells00e23702018-10-22 13:07:28 +01001361 if (unlikely(iov_iter_is_pipe(i)))
Al Viro241699c2016-09-22 16:33:12 -04001362 return pipe_get_pages_alloc(i, pages, maxsize, start);
David Howells9ea9ce02018-10-20 00:57:56 +01001363 if (unlikely(iov_iter_is_discard(i)))
1364 return -EFAULT;
1365
Al Viro1b17f1f2014-11-27 14:14:31 -05001366 iterate_all_kinds(i, maxsize, v, ({
1367 unsigned long addr = (unsigned long)v.iov_base;
1368 size_t len = v.iov_len + (*start = addr & (PAGE_SIZE - 1));
1369 int n;
1370 int res;
1371
1372 addr &= ~(PAGE_SIZE - 1);
1373 n = DIV_ROUND_UP(len, PAGE_SIZE);
1374 p = get_pages_array(n);
1375 if (!p)
1376 return -ENOMEM;
David Howells00e23702018-10-22 13:07:28 +01001377 res = get_user_pages_fast(addr, n, iov_iter_rw(i) != WRITE, p);
Al Viro1b17f1f2014-11-27 14:14:31 -05001378 if (unlikely(res < 0)) {
1379 kvfree(p);
1380 return res;
1381 }
1382 *pages = p;
1383 return (res == n ? len : res * PAGE_SIZE) - *start;
1384 0;}),({
1385 /* can't be more than PAGE_SIZE */
1386 *start = v.bv_offset;
1387 *pages = p = get_pages_array(1);
1388 if (!p)
1389 return -ENOMEM;
1390 get_page(*p = v.bv_page);
1391 return v.bv_len;
Al Viroa2804552014-11-27 14:48:42 -05001392 }),({
1393 return -EFAULT;
Al Viro1b17f1f2014-11-27 14:14:31 -05001394 })
1395 )
1396 return 0;
Al Viro62a80672014-04-04 23:12:29 -04001397}
1398EXPORT_SYMBOL(iov_iter_get_pages_alloc);
1399
Al Viroa604ec72014-11-24 01:08:00 -05001400size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum,
1401 struct iov_iter *i)
1402{
1403 char *to = addr;
1404 __wsum sum, next;
1405 size_t off = 0;
Al Viroa604ec72014-11-24 01:08:00 -05001406 sum = *csum;
David Howells9ea9ce02018-10-20 00:57:56 +01001407 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001408 WARN_ON(1);
1409 return 0;
1410 }
Al Viroa604ec72014-11-24 01:08:00 -05001411 iterate_and_advance(i, bytes, v, ({
1412 int err = 0;
Al Virocbbd26b2016-11-01 22:09:04 -04001413 next = csum_and_copy_from_user(v.iov_base,
Al Viroa604ec72014-11-24 01:08:00 -05001414 (to += v.iov_len) - v.iov_len,
1415 v.iov_len, 0, &err);
1416 if (!err) {
1417 sum = csum_block_add(sum, next, off);
1418 off += v.iov_len;
1419 }
1420 err ? v.iov_len : 0;
1421 }), ({
1422 char *p = kmap_atomic(v.bv_page);
Al Virof9152892018-11-27 22:32:59 -05001423 sum = csum_and_memcpy((to += v.bv_len) - v.bv_len,
1424 p + v.bv_offset, v.bv_len,
1425 sum, off);
Al Viroa604ec72014-11-24 01:08:00 -05001426 kunmap_atomic(p);
Al Viroa604ec72014-11-24 01:08:00 -05001427 off += v.bv_len;
1428 }),({
Al Virof9152892018-11-27 22:32:59 -05001429 sum = csum_and_memcpy((to += v.iov_len) - v.iov_len,
1430 v.iov_base, v.iov_len,
1431 sum, off);
Al Viroa604ec72014-11-24 01:08:00 -05001432 off += v.iov_len;
1433 })
1434 )
1435 *csum = sum;
1436 return bytes;
1437}
1438EXPORT_SYMBOL(csum_and_copy_from_iter);
1439
Al Virocbbd26b2016-11-01 22:09:04 -04001440bool csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum,
1441 struct iov_iter *i)
1442{
1443 char *to = addr;
1444 __wsum sum, next;
1445 size_t off = 0;
1446 sum = *csum;
David Howells9ea9ce02018-10-20 00:57:56 +01001447 if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
Al Virocbbd26b2016-11-01 22:09:04 -04001448 WARN_ON(1);
1449 return false;
1450 }
1451 if (unlikely(i->count < bytes))
1452 return false;
1453 iterate_all_kinds(i, bytes, v, ({
1454 int err = 0;
1455 next = csum_and_copy_from_user(v.iov_base,
1456 (to += v.iov_len) - v.iov_len,
1457 v.iov_len, 0, &err);
1458 if (err)
1459 return false;
1460 sum = csum_block_add(sum, next, off);
1461 off += v.iov_len;
1462 0;
1463 }), ({
1464 char *p = kmap_atomic(v.bv_page);
Al Virof9152892018-11-27 22:32:59 -05001465 sum = csum_and_memcpy((to += v.bv_len) - v.bv_len,
1466 p + v.bv_offset, v.bv_len,
1467 sum, off);
Al Virocbbd26b2016-11-01 22:09:04 -04001468 kunmap_atomic(p);
Al Virocbbd26b2016-11-01 22:09:04 -04001469 off += v.bv_len;
1470 }),({
Al Virof9152892018-11-27 22:32:59 -05001471 sum = csum_and_memcpy((to += v.iov_len) - v.iov_len,
1472 v.iov_base, v.iov_len,
1473 sum, off);
Al Virocbbd26b2016-11-01 22:09:04 -04001474 off += v.iov_len;
1475 })
1476 )
1477 *csum = sum;
1478 iov_iter_advance(i, bytes);
1479 return true;
1480}
1481EXPORT_SYMBOL(csum_and_copy_from_iter_full);
1482
Sagi Grimbergcb002d02018-12-03 17:52:07 -08001483size_t csum_and_copy_to_iter(const void *addr, size_t bytes, void *csump,
Al Viroa604ec72014-11-24 01:08:00 -05001484 struct iov_iter *i)
1485{
Al Viro36f7a8a2015-12-06 16:49:22 -05001486 const char *from = addr;
Sagi Grimbergcb002d02018-12-03 17:52:07 -08001487 __wsum *csum = csump;
Al Viroa604ec72014-11-24 01:08:00 -05001488 __wsum sum, next;
1489 size_t off = 0;
Al Viro78e1f382018-11-25 16:24:16 -05001490
1491 if (unlikely(iov_iter_is_pipe(i)))
1492 return csum_and_copy_to_pipe_iter(addr, bytes, csum, i);
1493
Al Viroa604ec72014-11-24 01:08:00 -05001494 sum = *csum;
Al Viro78e1f382018-11-25 16:24:16 -05001495 if (unlikely(iov_iter_is_discard(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001496 WARN_ON(1); /* for now */
1497 return 0;
1498 }
Al Viroa604ec72014-11-24 01:08:00 -05001499 iterate_and_advance(i, bytes, v, ({
1500 int err = 0;
1501 next = csum_and_copy_to_user((from += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -04001502 v.iov_base,
Al Viroa604ec72014-11-24 01:08:00 -05001503 v.iov_len, 0, &err);
1504 if (!err) {
1505 sum = csum_block_add(sum, next, off);
1506 off += v.iov_len;
1507 }
1508 err ? v.iov_len : 0;
1509 }), ({
1510 char *p = kmap_atomic(v.bv_page);
Al Virof9152892018-11-27 22:32:59 -05001511 sum = csum_and_memcpy(p + v.bv_offset,
1512 (from += v.bv_len) - v.bv_len,
1513 v.bv_len, sum, off);
Al Viroa604ec72014-11-24 01:08:00 -05001514 kunmap_atomic(p);
Al Viroa604ec72014-11-24 01:08:00 -05001515 off += v.bv_len;
1516 }),({
Al Virof9152892018-11-27 22:32:59 -05001517 sum = csum_and_memcpy(v.iov_base,
1518 (from += v.iov_len) - v.iov_len,
1519 v.iov_len, sum, off);
Al Viroa604ec72014-11-24 01:08:00 -05001520 off += v.iov_len;
1521 })
1522 )
1523 *csum = sum;
1524 return bytes;
1525}
1526EXPORT_SYMBOL(csum_and_copy_to_iter);
1527
Sagi Grimbergd05f4432018-12-03 17:52:09 -08001528size_t hash_and_copy_to_iter(const void *addr, size_t bytes, void *hashp,
1529 struct iov_iter *i)
1530{
1531 struct ahash_request *hash = hashp;
1532 struct scatterlist sg;
1533 size_t copied;
1534
1535 copied = copy_to_iter(addr, bytes, i);
1536 sg_init_one(&sg, addr, copied);
1537 ahash_request_set_crypt(hash, &sg, NULL, copied);
1538 crypto_ahash_update(hash);
1539 return copied;
1540}
1541EXPORT_SYMBOL(hash_and_copy_to_iter);
1542
Al Viro62a80672014-04-04 23:12:29 -04001543int iov_iter_npages(const struct iov_iter *i, int maxpages)
1544{
Al Viroe0f2dc42014-11-27 14:09:46 -05001545 size_t size = i->count;
1546 int npages = 0;
1547
1548 if (!size)
1549 return 0;
David Howells9ea9ce02018-10-20 00:57:56 +01001550 if (unlikely(iov_iter_is_discard(i)))
1551 return 0;
Al Viroe0f2dc42014-11-27 14:09:46 -05001552
David Howells00e23702018-10-22 13:07:28 +01001553 if (unlikely(iov_iter_is_pipe(i))) {
Al Viro241699c2016-09-22 16:33:12 -04001554 struct pipe_inode_info *pipe = i->pipe;
1555 size_t off;
1556 int idx;
1557
1558 if (!sanity(i))
1559 return 0;
1560
1561 data_start(i, &idx, &off);
1562 /* some of this one + all after this one */
1563 npages = ((pipe->curbuf - idx - 1) & (pipe->buffers - 1)) + 1;
1564 if (npages >= maxpages)
1565 return maxpages;
1566 } else iterate_all_kinds(i, size, v, ({
Al Viroe0f2dc42014-11-27 14:09:46 -05001567 unsigned long p = (unsigned long)v.iov_base;
1568 npages += DIV_ROUND_UP(p + v.iov_len, PAGE_SIZE)
1569 - p / PAGE_SIZE;
1570 if (npages >= maxpages)
1571 return maxpages;
1572 0;}),({
1573 npages++;
1574 if (npages >= maxpages)
1575 return maxpages;
Al Viroa2804552014-11-27 14:48:42 -05001576 }),({
1577 unsigned long p = (unsigned long)v.iov_base;
1578 npages += DIV_ROUND_UP(p + v.iov_len, PAGE_SIZE)
1579 - p / PAGE_SIZE;
1580 if (npages >= maxpages)
1581 return maxpages;
Al Viroe0f2dc42014-11-27 14:09:46 -05001582 })
1583 )
1584 return npages;
Al Viro62a80672014-04-04 23:12:29 -04001585}
Al Virof67da302014-03-19 01:16:16 -04001586EXPORT_SYMBOL(iov_iter_npages);
Al Viro4b8164b2015-01-31 20:08:47 -05001587
1588const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags)
1589{
1590 *new = *old;
David Howells00e23702018-10-22 13:07:28 +01001591 if (unlikely(iov_iter_is_pipe(new))) {
Al Viro241699c2016-09-22 16:33:12 -04001592 WARN_ON(1);
1593 return NULL;
1594 }
David Howells9ea9ce02018-10-20 00:57:56 +01001595 if (unlikely(iov_iter_is_discard(new)))
1596 return NULL;
David Howells00e23702018-10-22 13:07:28 +01001597 if (iov_iter_is_bvec(new))
Al Viro4b8164b2015-01-31 20:08:47 -05001598 return new->bvec = kmemdup(new->bvec,
1599 new->nr_segs * sizeof(struct bio_vec),
1600 flags);
1601 else
1602 /* iovec and kvec have identical layout */
1603 return new->iov = kmemdup(new->iov,
1604 new->nr_segs * sizeof(struct iovec),
1605 flags);
1606}
1607EXPORT_SYMBOL(dup_iter);
Al Virobc917be2015-03-21 17:45:43 -04001608
Vegard Nossumffecee42016-10-08 11:18:07 +02001609/**
1610 * import_iovec() - Copy an array of &struct iovec from userspace
1611 * into the kernel, check that it is valid, and initialize a new
1612 * &struct iov_iter iterator to access it.
1613 *
1614 * @type: One of %READ or %WRITE.
1615 * @uvector: Pointer to the userspace array.
1616 * @nr_segs: Number of elements in userspace array.
1617 * @fast_segs: Number of elements in @iov.
1618 * @iov: (input and output parameter) Pointer to pointer to (usually small
1619 * on-stack) kernel array.
1620 * @i: Pointer to iterator that will be initialized on success.
1621 *
1622 * If the array pointed to by *@iov is large enough to hold all @nr_segs,
1623 * then this function places %NULL in *@iov on return. Otherwise, a new
1624 * array will be allocated and the result placed in *@iov. This means that
1625 * the caller may call kfree() on *@iov regardless of whether the small
1626 * on-stack array was used or not (and regardless of whether this function
1627 * returns an error or not).
1628 *
1629 * Return: 0 on success or negative error code on error.
1630 */
Al Virobc917be2015-03-21 17:45:43 -04001631int import_iovec(int type, const struct iovec __user * uvector,
1632 unsigned nr_segs, unsigned fast_segs,
1633 struct iovec **iov, struct iov_iter *i)
1634{
1635 ssize_t n;
1636 struct iovec *p;
1637 n = rw_copy_check_uvector(type, uvector, nr_segs, fast_segs,
1638 *iov, &p);
1639 if (n < 0) {
1640 if (p != *iov)
1641 kfree(p);
1642 *iov = NULL;
1643 return n;
1644 }
1645 iov_iter_init(i, type, p, nr_segs, n);
1646 *iov = p == *iov ? NULL : p;
1647 return 0;
1648}
1649EXPORT_SYMBOL(import_iovec);
1650
1651#ifdef CONFIG_COMPAT
1652#include <linux/compat.h>
1653
1654int compat_import_iovec(int type, const struct compat_iovec __user * uvector,
1655 unsigned nr_segs, unsigned fast_segs,
1656 struct iovec **iov, struct iov_iter *i)
1657{
1658 ssize_t n;
1659 struct iovec *p;
1660 n = compat_rw_copy_check_uvector(type, uvector, nr_segs, fast_segs,
1661 *iov, &p);
1662 if (n < 0) {
1663 if (p != *iov)
1664 kfree(p);
1665 *iov = NULL;
1666 return n;
1667 }
1668 iov_iter_init(i, type, p, nr_segs, n);
1669 *iov = p == *iov ? NULL : p;
1670 return 0;
1671}
1672#endif
1673
1674int import_single_range(int rw, void __user *buf, size_t len,
1675 struct iovec *iov, struct iov_iter *i)
1676{
1677 if (len > MAX_RW_COUNT)
1678 len = MAX_RW_COUNT;
Linus Torvalds96d4f262019-01-03 18:57:57 -08001679 if (unlikely(!access_ok(buf, len)))
Al Virobc917be2015-03-21 17:45:43 -04001680 return -EFAULT;
1681
1682 iov->iov_base = buf;
1683 iov->iov_len = len;
1684 iov_iter_init(i, rw, iov, 1, len);
1685 return 0;
1686}
Al Viroe1267582015-12-06 20:38:56 -05001687EXPORT_SYMBOL(import_single_range);
Al Viro09cf6982017-02-18 01:44:03 -05001688
1689int iov_iter_for_each_range(struct iov_iter *i, size_t bytes,
1690 int (*f)(struct kvec *vec, void *context),
1691 void *context)
1692{
1693 struct kvec w;
1694 int err = -EINVAL;
1695 if (!bytes)
1696 return 0;
1697
1698 iterate_all_kinds(i, bytes, v, -EINVAL, ({
1699 w.iov_base = kmap(v.bv_page) + v.bv_offset;
1700 w.iov_len = v.bv_len;
1701 err = f(&w, context);
1702 kunmap(v.bv_page);
1703 err;}), ({
1704 w = v;
1705 err = f(&w, context);})
1706 )
1707 return err;
1708}
1709EXPORT_SYMBOL(iov_iter_for_each_range);