blob: b3b2ee8a20b54ac597046bd1dfd5c3a6d9627c46 [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>
Al Viro4f18cd32014-02-05 19:11:33 -05009
Al Viro241699c2016-09-22 16:33:12 -040010#define PIPE_PARANOIA /* for now */
11
Al Viro04a31162014-11-27 13:51:41 -050012#define iterate_iovec(i, n, __v, __p, skip, STEP) { \
13 size_t left; \
14 size_t wanted = n; \
15 __p = i->iov; \
16 __v.iov_len = min(n, __p->iov_len - skip); \
17 if (likely(__v.iov_len)) { \
18 __v.iov_base = __p->iov_base + skip; \
19 left = (STEP); \
20 __v.iov_len -= left; \
21 skip += __v.iov_len; \
22 n -= __v.iov_len; \
23 } else { \
24 left = 0; \
25 } \
26 while (unlikely(!left && n)) { \
27 __p++; \
28 __v.iov_len = min(n, __p->iov_len); \
29 if (unlikely(!__v.iov_len)) \
30 continue; \
31 __v.iov_base = __p->iov_base; \
32 left = (STEP); \
33 __v.iov_len -= left; \
34 skip = __v.iov_len; \
35 n -= __v.iov_len; \
36 } \
37 n = wanted - n; \
38}
39
Al Viroa2804552014-11-27 14:48:42 -050040#define iterate_kvec(i, n, __v, __p, skip, STEP) { \
41 size_t wanted = n; \
42 __p = i->kvec; \
43 __v.iov_len = min(n, __p->iov_len - skip); \
44 if (likely(__v.iov_len)) { \
45 __v.iov_base = __p->iov_base + skip; \
46 (void)(STEP); \
47 skip += __v.iov_len; \
48 n -= __v.iov_len; \
49 } \
50 while (unlikely(n)) { \
51 __p++; \
52 __v.iov_len = min(n, __p->iov_len); \
53 if (unlikely(!__v.iov_len)) \
54 continue; \
55 __v.iov_base = __p->iov_base; \
56 (void)(STEP); \
57 skip = __v.iov_len; \
58 n -= __v.iov_len; \
59 } \
60 n = wanted; \
61}
62
Ming Lei1bdc76a2016-05-30 21:34:32 +080063#define iterate_bvec(i, n, __v, __bi, skip, STEP) { \
64 struct bvec_iter __start; \
65 __start.bi_size = n; \
66 __start.bi_bvec_done = skip; \
67 __start.bi_idx = 0; \
68 for_each_bvec(__v, i->bvec, __bi, __start) { \
69 if (!__v.bv_len) \
Al Viro04a31162014-11-27 13:51:41 -050070 continue; \
Al Viro04a31162014-11-27 13:51:41 -050071 (void)(STEP); \
Al Viro04a31162014-11-27 13:51:41 -050072 } \
Al Viro04a31162014-11-27 13:51:41 -050073}
74
Al Viroa2804552014-11-27 14:48:42 -050075#define iterate_all_kinds(i, n, v, I, B, K) { \
Al Viro33844e62016-12-21 21:55:02 -050076 if (likely(n)) { \
77 size_t skip = i->iov_offset; \
78 if (unlikely(i->type & ITER_BVEC)) { \
79 struct bio_vec v; \
80 struct bvec_iter __bi; \
81 iterate_bvec(i, n, v, __bi, skip, (B)) \
82 } else if (unlikely(i->type & ITER_KVEC)) { \
83 const struct kvec *kvec; \
84 struct kvec v; \
85 iterate_kvec(i, n, v, kvec, skip, (K)) \
86 } else { \
87 const struct iovec *iov; \
88 struct iovec v; \
89 iterate_iovec(i, n, v, iov, skip, (I)) \
90 } \
Al Viro04a31162014-11-27 13:51:41 -050091 } \
92}
93
Al Viroa2804552014-11-27 14:48:42 -050094#define iterate_and_advance(i, n, v, I, B, K) { \
Al Virodd254f52016-05-09 11:54:48 -040095 if (unlikely(i->count < n)) \
96 n = i->count; \
Al Viro19f18452016-05-25 17:36:19 -040097 if (i->count) { \
Al Virodd254f52016-05-09 11:54:48 -040098 size_t skip = i->iov_offset; \
99 if (unlikely(i->type & ITER_BVEC)) { \
Ming Lei1bdc76a2016-05-30 21:34:32 +0800100 const struct bio_vec *bvec = i->bvec; \
Al Virodd254f52016-05-09 11:54:48 -0400101 struct bio_vec v; \
Ming Lei1bdc76a2016-05-30 21:34:32 +0800102 struct bvec_iter __bi; \
103 iterate_bvec(i, n, v, __bi, skip, (B)) \
104 i->bvec = __bvec_iter_bvec(i->bvec, __bi); \
105 i->nr_segs -= i->bvec - bvec; \
106 skip = __bi.bi_bvec_done; \
Al Virodd254f52016-05-09 11:54:48 -0400107 } else if (unlikely(i->type & ITER_KVEC)) { \
108 const struct kvec *kvec; \
109 struct kvec v; \
110 iterate_kvec(i, n, v, kvec, skip, (K)) \
111 if (skip == kvec->iov_len) { \
112 kvec++; \
113 skip = 0; \
114 } \
115 i->nr_segs -= kvec - i->kvec; \
116 i->kvec = kvec; \
117 } else { \
118 const struct iovec *iov; \
119 struct iovec v; \
120 iterate_iovec(i, n, v, iov, skip, (I)) \
121 if (skip == iov->iov_len) { \
122 iov++; \
123 skip = 0; \
124 } \
125 i->nr_segs -= iov - i->iov; \
126 i->iov = iov; \
Al Viro7ce2a912014-11-27 13:59:45 -0500127 } \
Al Virodd254f52016-05-09 11:54:48 -0400128 i->count -= n; \
129 i->iov_offset = skip; \
Al Viro7ce2a912014-11-27 13:59:45 -0500130 } \
Al Viro7ce2a912014-11-27 13:59:45 -0500131}
132
Al Viro09fc68d2017-06-29 22:25:14 -0400133static int copyout(void __user *to, const void *from, size_t n)
134{
135 if (access_ok(VERIFY_WRITE, to, n)) {
136 kasan_check_read(from, n);
137 n = raw_copy_to_user(to, from, n);
138 }
139 return n;
140}
141
142static int copyin(void *to, const void __user *from, size_t n)
143{
144 if (access_ok(VERIFY_READ, from, n)) {
145 kasan_check_write(to, n);
146 n = raw_copy_from_user(to, from, n);
147 }
148 return n;
149}
150
Al Viro62a80672014-04-04 23:12:29 -0400151static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes,
Al Viro4f18cd32014-02-05 19:11:33 -0500152 struct iov_iter *i)
153{
154 size_t skip, copy, left, wanted;
155 const struct iovec *iov;
156 char __user *buf;
157 void *kaddr, *from;
158
159 if (unlikely(bytes > i->count))
160 bytes = i->count;
161
162 if (unlikely(!bytes))
163 return 0;
164
Al Viro09fc68d2017-06-29 22:25:14 -0400165 might_fault();
Al Viro4f18cd32014-02-05 19:11:33 -0500166 wanted = bytes;
167 iov = i->iov;
168 skip = i->iov_offset;
169 buf = iov->iov_base + skip;
170 copy = min(bytes, iov->iov_len - skip);
171
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700172 if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_writeable(buf, copy)) {
Al Viro4f18cd32014-02-05 19:11:33 -0500173 kaddr = kmap_atomic(page);
174 from = kaddr + offset;
175
176 /* first chunk, usually the only one */
Al Viro09fc68d2017-06-29 22:25:14 -0400177 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500178 copy -= left;
179 skip += copy;
180 from += copy;
181 bytes -= copy;
182
183 while (unlikely(!left && bytes)) {
184 iov++;
185 buf = iov->iov_base;
186 copy = min(bytes, iov->iov_len);
Al Viro09fc68d2017-06-29 22:25:14 -0400187 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500188 copy -= left;
189 skip = copy;
190 from += copy;
191 bytes -= copy;
192 }
193 if (likely(!bytes)) {
194 kunmap_atomic(kaddr);
195 goto done;
196 }
197 offset = from - kaddr;
198 buf += copy;
199 kunmap_atomic(kaddr);
200 copy = min(bytes, iov->iov_len - skip);
201 }
202 /* Too bad - revert to non-atomic kmap */
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700203
Al Viro4f18cd32014-02-05 19:11:33 -0500204 kaddr = kmap(page);
205 from = kaddr + offset;
Al Viro09fc68d2017-06-29 22:25:14 -0400206 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500207 copy -= left;
208 skip += copy;
209 from += copy;
210 bytes -= copy;
211 while (unlikely(!left && bytes)) {
212 iov++;
213 buf = iov->iov_base;
214 copy = min(bytes, iov->iov_len);
Al Viro09fc68d2017-06-29 22:25:14 -0400215 left = copyout(buf, from, copy);
Al Viro4f18cd32014-02-05 19:11:33 -0500216 copy -= left;
217 skip = copy;
218 from += copy;
219 bytes -= copy;
220 }
221 kunmap(page);
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700222
Al Viro4f18cd32014-02-05 19:11:33 -0500223done:
Al Viro81055e52014-04-04 19:23:46 -0400224 if (skip == iov->iov_len) {
225 iov++;
226 skip = 0;
227 }
Al Viro4f18cd32014-02-05 19:11:33 -0500228 i->count -= wanted - bytes;
229 i->nr_segs -= iov - i->iov;
230 i->iov = iov;
231 i->iov_offset = skip;
232 return wanted - bytes;
233}
Al Viro4f18cd32014-02-05 19:11:33 -0500234
Al Viro62a80672014-04-04 23:12:29 -0400235static size_t copy_page_from_iter_iovec(struct page *page, size_t offset, size_t bytes,
Al Virof0d1bec2014-04-03 15:05:18 -0400236 struct iov_iter *i)
237{
238 size_t skip, copy, left, wanted;
239 const struct iovec *iov;
240 char __user *buf;
241 void *kaddr, *to;
242
243 if (unlikely(bytes > i->count))
244 bytes = i->count;
245
246 if (unlikely(!bytes))
247 return 0;
248
Al Viro09fc68d2017-06-29 22:25:14 -0400249 might_fault();
Al Virof0d1bec2014-04-03 15:05:18 -0400250 wanted = bytes;
251 iov = i->iov;
252 skip = i->iov_offset;
253 buf = iov->iov_base + skip;
254 copy = min(bytes, iov->iov_len - skip);
255
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700256 if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_readable(buf, copy)) {
Al Virof0d1bec2014-04-03 15:05:18 -0400257 kaddr = kmap_atomic(page);
258 to = kaddr + offset;
259
260 /* first chunk, usually the only one */
Al Viro09fc68d2017-06-29 22:25:14 -0400261 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400262 copy -= left;
263 skip += copy;
264 to += copy;
265 bytes -= copy;
266
267 while (unlikely(!left && bytes)) {
268 iov++;
269 buf = iov->iov_base;
270 copy = min(bytes, iov->iov_len);
Al Viro09fc68d2017-06-29 22:25:14 -0400271 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400272 copy -= left;
273 skip = copy;
274 to += copy;
275 bytes -= copy;
276 }
277 if (likely(!bytes)) {
278 kunmap_atomic(kaddr);
279 goto done;
280 }
281 offset = to - kaddr;
282 buf += copy;
283 kunmap_atomic(kaddr);
284 copy = min(bytes, iov->iov_len - skip);
285 }
286 /* Too bad - revert to non-atomic kmap */
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700287
Al Virof0d1bec2014-04-03 15:05:18 -0400288 kaddr = kmap(page);
289 to = kaddr + offset;
Al Viro09fc68d2017-06-29 22:25:14 -0400290 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400291 copy -= left;
292 skip += copy;
293 to += copy;
294 bytes -= copy;
295 while (unlikely(!left && bytes)) {
296 iov++;
297 buf = iov->iov_base;
298 copy = min(bytes, iov->iov_len);
Al Viro09fc68d2017-06-29 22:25:14 -0400299 left = copyin(to, buf, copy);
Al Virof0d1bec2014-04-03 15:05:18 -0400300 copy -= left;
301 skip = copy;
302 to += copy;
303 bytes -= copy;
304 }
305 kunmap(page);
Mikulas Patocka3fa6c502016-07-28 15:48:50 -0700306
Al Virof0d1bec2014-04-03 15:05:18 -0400307done:
Al Viro81055e52014-04-04 19:23:46 -0400308 if (skip == iov->iov_len) {
309 iov++;
310 skip = 0;
311 }
Al Virof0d1bec2014-04-03 15:05:18 -0400312 i->count -= wanted - bytes;
313 i->nr_segs -= iov - i->iov;
314 i->iov = iov;
315 i->iov_offset = skip;
316 return wanted - bytes;
317}
Al Virof0d1bec2014-04-03 15:05:18 -0400318
Al Viro241699c2016-09-22 16:33:12 -0400319#ifdef PIPE_PARANOIA
320static bool sanity(const struct iov_iter *i)
321{
322 struct pipe_inode_info *pipe = i->pipe;
323 int idx = i->idx;
324 int next = pipe->curbuf + pipe->nrbufs;
325 if (i->iov_offset) {
326 struct pipe_buffer *p;
327 if (unlikely(!pipe->nrbufs))
328 goto Bad; // pipe must be non-empty
329 if (unlikely(idx != ((next - 1) & (pipe->buffers - 1))))
330 goto Bad; // must be at the last buffer...
331
332 p = &pipe->bufs[idx];
333 if (unlikely(p->offset + p->len != i->iov_offset))
334 goto Bad; // ... at the end of segment
335 } else {
336 if (idx != (next & (pipe->buffers - 1)))
337 goto Bad; // must be right after the last buffer
338 }
339 return true;
340Bad:
341 printk(KERN_ERR "idx = %d, offset = %zd\n", i->idx, i->iov_offset);
342 printk(KERN_ERR "curbuf = %d, nrbufs = %d, buffers = %d\n",
343 pipe->curbuf, pipe->nrbufs, pipe->buffers);
344 for (idx = 0; idx < pipe->buffers; idx++)
345 printk(KERN_ERR "[%p %p %d %d]\n",
346 pipe->bufs[idx].ops,
347 pipe->bufs[idx].page,
348 pipe->bufs[idx].offset,
349 pipe->bufs[idx].len);
350 WARN_ON(1);
351 return false;
352}
353#else
354#define sanity(i) true
355#endif
356
357static inline int next_idx(int idx, struct pipe_inode_info *pipe)
358{
359 return (idx + 1) & (pipe->buffers - 1);
360}
361
362static size_t copy_page_to_iter_pipe(struct page *page, size_t offset, size_t bytes,
363 struct iov_iter *i)
364{
365 struct pipe_inode_info *pipe = i->pipe;
366 struct pipe_buffer *buf;
367 size_t off;
368 int idx;
369
370 if (unlikely(bytes > i->count))
371 bytes = i->count;
372
373 if (unlikely(!bytes))
374 return 0;
375
376 if (!sanity(i))
377 return 0;
378
379 off = i->iov_offset;
380 idx = i->idx;
381 buf = &pipe->bufs[idx];
382 if (off) {
383 if (offset == off && buf->page == page) {
384 /* merge with the last one */
385 buf->len += bytes;
386 i->iov_offset += bytes;
387 goto out;
388 }
389 idx = next_idx(idx, pipe);
390 buf = &pipe->bufs[idx];
391 }
392 if (idx == pipe->curbuf && pipe->nrbufs)
393 return 0;
394 pipe->nrbufs++;
395 buf->ops = &page_cache_pipe_buf_ops;
396 get_page(buf->page = page);
397 buf->offset = offset;
398 buf->len = bytes;
399 i->iov_offset = offset + bytes;
400 i->idx = idx;
401out:
402 i->count -= bytes;
403 return bytes;
404}
405
Al Viro4f18cd32014-02-05 19:11:33 -0500406/*
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400407 * Fault in one or more iovecs of the given iov_iter, to a maximum length of
408 * bytes. For each iovec, fault in each page that constitutes the iovec.
409 *
410 * Return 0 on success, or non-zero if the memory could not be accessed (i.e.
411 * because it is an invalid address).
412 */
Al Virod4690f12016-09-16 00:11:45 +0100413int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400414{
415 size_t skip = i->iov_offset;
416 const struct iovec *iov;
417 int err;
418 struct iovec v;
419
420 if (!(i->type & (ITER_BVEC|ITER_KVEC))) {
421 iterate_iovec(i, bytes, v, iov, skip, ({
Al Viro4bce9f62016-09-17 18:02:44 -0400422 err = fault_in_pages_readable(v.iov_base, v.iov_len);
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400423 if (unlikely(err))
424 return err;
425 0;}))
426 }
427 return 0;
428}
Al Virod4690f12016-09-16 00:11:45 +0100429EXPORT_SYMBOL(iov_iter_fault_in_readable);
Anton Altaparmakov171a0202015-03-11 10:43:31 -0400430
Al Viro71d8e532014-03-05 19:28:09 -0500431void iov_iter_init(struct iov_iter *i, int direction,
432 const struct iovec *iov, unsigned long nr_segs,
433 size_t count)
434{
435 /* It will get better. Eventually... */
Al Virodb68ce12017-03-20 21:08:07 -0400436 if (uaccess_kernel()) {
Al Viro62a80672014-04-04 23:12:29 -0400437 direction |= ITER_KVEC;
Al Viroa2804552014-11-27 14:48:42 -0500438 i->type = direction;
439 i->kvec = (struct kvec *)iov;
440 } else {
441 i->type = direction;
442 i->iov = iov;
443 }
Al Viro71d8e532014-03-05 19:28:09 -0500444 i->nr_segs = nr_segs;
445 i->iov_offset = 0;
446 i->count = count;
447}
448EXPORT_SYMBOL(iov_iter_init);
Al Viro7b2c99d2014-03-15 04:05:57 -0400449
Al Viro62a80672014-04-04 23:12:29 -0400450static void memcpy_from_page(char *to, struct page *page, size_t offset, size_t len)
451{
452 char *from = kmap_atomic(page);
453 memcpy(to, from + offset, len);
454 kunmap_atomic(from);
455}
456
Al Viro36f7a8a2015-12-06 16:49:22 -0500457static void memcpy_to_page(struct page *page, size_t offset, const char *from, size_t len)
Al Viro62a80672014-04-04 23:12:29 -0400458{
459 char *to = kmap_atomic(page);
460 memcpy(to + offset, from, len);
461 kunmap_atomic(to);
462}
463
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400464static void memzero_page(struct page *page, size_t offset, size_t len)
465{
466 char *addr = kmap_atomic(page);
467 memset(addr + offset, 0, len);
468 kunmap_atomic(addr);
469}
470
Al Viro241699c2016-09-22 16:33:12 -0400471static inline bool allocated(struct pipe_buffer *buf)
472{
473 return buf->ops == &default_pipe_buf_ops;
474}
475
476static inline void data_start(const struct iov_iter *i, int *idxp, size_t *offp)
477{
478 size_t off = i->iov_offset;
479 int idx = i->idx;
480 if (off && (!allocated(&i->pipe->bufs[idx]) || off == PAGE_SIZE)) {
481 idx = next_idx(idx, i->pipe);
482 off = 0;
483 }
484 *idxp = idx;
485 *offp = off;
486}
487
488static size_t push_pipe(struct iov_iter *i, size_t size,
489 int *idxp, size_t *offp)
490{
491 struct pipe_inode_info *pipe = i->pipe;
492 size_t off;
493 int idx;
494 ssize_t left;
495
496 if (unlikely(size > i->count))
497 size = i->count;
498 if (unlikely(!size))
499 return 0;
500
501 left = size;
502 data_start(i, &idx, &off);
503 *idxp = idx;
504 *offp = off;
505 if (off) {
506 left -= PAGE_SIZE - off;
507 if (left <= 0) {
508 pipe->bufs[idx].len += size;
509 return size;
510 }
511 pipe->bufs[idx].len = PAGE_SIZE;
512 idx = next_idx(idx, pipe);
513 }
514 while (idx != pipe->curbuf || !pipe->nrbufs) {
515 struct page *page = alloc_page(GFP_USER);
516 if (!page)
517 break;
518 pipe->nrbufs++;
519 pipe->bufs[idx].ops = &default_pipe_buf_ops;
520 pipe->bufs[idx].page = page;
521 pipe->bufs[idx].offset = 0;
522 if (left <= PAGE_SIZE) {
523 pipe->bufs[idx].len = left;
524 return size;
525 }
526 pipe->bufs[idx].len = PAGE_SIZE;
527 left -= PAGE_SIZE;
528 idx = next_idx(idx, pipe);
529 }
530 return size - left;
531}
532
533static size_t copy_pipe_to_iter(const void *addr, size_t bytes,
534 struct iov_iter *i)
535{
536 struct pipe_inode_info *pipe = i->pipe;
537 size_t n, off;
538 int idx;
539
540 if (!sanity(i))
541 return 0;
542
543 bytes = n = push_pipe(i, bytes, &idx, &off);
544 if (unlikely(!n))
545 return 0;
546 for ( ; n; idx = next_idx(idx, pipe), off = 0) {
547 size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
548 memcpy_to_page(pipe->bufs[idx].page, off, addr, chunk);
549 i->idx = idx;
550 i->iov_offset = off + chunk;
551 n -= chunk;
552 addr += chunk;
553 }
554 i->count -= bytes;
555 return bytes;
556}
557
Al Viroaa28de22017-06-29 21:45:10 -0400558size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
Al Viro62a80672014-04-04 23:12:29 -0400559{
Al Viro36f7a8a2015-12-06 16:49:22 -0500560 const char *from = addr;
Al Viro241699c2016-09-22 16:33:12 -0400561 if (unlikely(i->type & ITER_PIPE))
562 return copy_pipe_to_iter(addr, bytes, i);
Al Viro09fc68d2017-06-29 22:25:14 -0400563 if (iter_is_iovec(i))
564 might_fault();
Al Viro3d4d3e42014-11-27 14:28:06 -0500565 iterate_and_advance(i, bytes, v,
Al Viro09fc68d2017-06-29 22:25:14 -0400566 copyout(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len),
Al Viro3d4d3e42014-11-27 14:28:06 -0500567 memcpy_to_page(v.bv_page, v.bv_offset,
Al Viroa2804552014-11-27 14:48:42 -0500568 (from += v.bv_len) - v.bv_len, v.bv_len),
569 memcpy(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len)
Al Viro3d4d3e42014-11-27 14:28:06 -0500570 )
Al Viro62a80672014-04-04 23:12:29 -0400571
Al Viro3d4d3e42014-11-27 14:28:06 -0500572 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400573}
Al Viroaa28de22017-06-29 21:45:10 -0400574EXPORT_SYMBOL(_copy_to_iter);
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400575
Al Viroaa28de22017-06-29 21:45:10 -0400576size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i)
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400577{
Al Viro0dbca9a2014-11-27 14:26:43 -0500578 char *to = addr;
Al Viro241699c2016-09-22 16:33:12 -0400579 if (unlikely(i->type & ITER_PIPE)) {
580 WARN_ON(1);
581 return 0;
582 }
Al Viro09fc68d2017-06-29 22:25:14 -0400583 if (iter_is_iovec(i))
584 might_fault();
Al Viro0dbca9a2014-11-27 14:26:43 -0500585 iterate_and_advance(i, bytes, v,
Al Viro09fc68d2017-06-29 22:25:14 -0400586 copyin((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len),
Al Viro0dbca9a2014-11-27 14:26:43 -0500587 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
Al Viroa2804552014-11-27 14:48:42 -0500588 v.bv_offset, v.bv_len),
589 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
Al Viro0dbca9a2014-11-27 14:26:43 -0500590 )
591
592 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400593}
Al Viroaa28de22017-06-29 21:45:10 -0400594EXPORT_SYMBOL(_copy_from_iter);
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400595
Al Viroaa28de22017-06-29 21:45:10 -0400596bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i)
Al Virocbbd26b2016-11-01 22:09:04 -0400597{
598 char *to = addr;
599 if (unlikely(i->type & ITER_PIPE)) {
600 WARN_ON(1);
601 return false;
602 }
Al Viro33844e62016-12-21 21:55:02 -0500603 if (unlikely(i->count < bytes))
Al Virocbbd26b2016-11-01 22:09:04 -0400604 return false;
605
Al Viro09fc68d2017-06-29 22:25:14 -0400606 if (iter_is_iovec(i))
607 might_fault();
Al Virocbbd26b2016-11-01 22:09:04 -0400608 iterate_all_kinds(i, bytes, v, ({
Al Viro09fc68d2017-06-29 22:25:14 -0400609 if (copyin((to += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -0400610 v.iov_base, v.iov_len))
611 return false;
612 0;}),
613 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
614 v.bv_offset, v.bv_len),
615 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
616 )
617
618 iov_iter_advance(i, bytes);
619 return true;
620}
Al Viroaa28de22017-06-29 21:45:10 -0400621EXPORT_SYMBOL(_copy_from_iter_full);
Al Virocbbd26b2016-11-01 22:09:04 -0400622
Al Viroaa28de22017-06-29 21:45:10 -0400623size_t _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i)
Al Viroaa583092014-11-27 20:27:08 -0500624{
625 char *to = addr;
Al Viro241699c2016-09-22 16:33:12 -0400626 if (unlikely(i->type & ITER_PIPE)) {
627 WARN_ON(1);
628 return 0;
629 }
Al Viroaa583092014-11-27 20:27:08 -0500630 iterate_and_advance(i, bytes, v,
Al Viro3f763452017-03-25 18:47:28 -0400631 __copy_from_user_inatomic_nocache((to += v.iov_len) - v.iov_len,
Al Viroaa583092014-11-27 20:27:08 -0500632 v.iov_base, v.iov_len),
633 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
634 v.bv_offset, v.bv_len),
635 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
636 )
637
638 return bytes;
639}
Al Viroaa28de22017-06-29 21:45:10 -0400640EXPORT_SYMBOL(_copy_from_iter_nocache);
Al Viroaa583092014-11-27 20:27:08 -0500641
Al Viroaa28de22017-06-29 21:45:10 -0400642bool _copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i)
Al Virocbbd26b2016-11-01 22:09:04 -0400643{
644 char *to = addr;
645 if (unlikely(i->type & ITER_PIPE)) {
646 WARN_ON(1);
647 return false;
648 }
Al Viro33844e62016-12-21 21:55:02 -0500649 if (unlikely(i->count < bytes))
Al Virocbbd26b2016-11-01 22:09:04 -0400650 return false;
651 iterate_all_kinds(i, bytes, v, ({
Al Viro3f763452017-03-25 18:47:28 -0400652 if (__copy_from_user_inatomic_nocache((to += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -0400653 v.iov_base, v.iov_len))
654 return false;
655 0;}),
656 memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
657 v.bv_offset, v.bv_len),
658 memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
659 )
660
661 iov_iter_advance(i, bytes);
662 return true;
663}
Al Viroaa28de22017-06-29 21:45:10 -0400664EXPORT_SYMBOL(_copy_from_iter_full_nocache);
Al Virocbbd26b2016-11-01 22:09:04 -0400665
Al Viro72e809e2017-06-29 21:52:57 -0400666static inline bool page_copy_sane(struct page *page, size_t offset, size_t n)
667{
668 size_t v = n + offset;
669 if (likely(n <= v && v <= (PAGE_SIZE << compound_order(page))))
670 return true;
671 WARN_ON(1);
672 return false;
673}
674
Al Virod2715242014-11-27 14:22:37 -0500675size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
676 struct iov_iter *i)
677{
Al Viro72e809e2017-06-29 21:52:57 -0400678 if (unlikely(!page_copy_sane(page, offset, bytes)))
679 return 0;
Al Virod2715242014-11-27 14:22:37 -0500680 if (i->type & (ITER_BVEC|ITER_KVEC)) {
681 void *kaddr = kmap_atomic(page);
682 size_t wanted = copy_to_iter(kaddr + offset, bytes, i);
683 kunmap_atomic(kaddr);
684 return wanted;
Al Viro241699c2016-09-22 16:33:12 -0400685 } else if (likely(!(i->type & ITER_PIPE)))
Al Virod2715242014-11-27 14:22:37 -0500686 return copy_page_to_iter_iovec(page, offset, bytes, i);
Al Viro241699c2016-09-22 16:33:12 -0400687 else
688 return copy_page_to_iter_pipe(page, offset, bytes, i);
Al Virod2715242014-11-27 14:22:37 -0500689}
690EXPORT_SYMBOL(copy_page_to_iter);
691
692size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
693 struct iov_iter *i)
694{
Al Viro72e809e2017-06-29 21:52:57 -0400695 if (unlikely(!page_copy_sane(page, offset, bytes)))
696 return 0;
Al Viro241699c2016-09-22 16:33:12 -0400697 if (unlikely(i->type & ITER_PIPE)) {
698 WARN_ON(1);
699 return 0;
700 }
Al Viroa2804552014-11-27 14:48:42 -0500701 if (i->type & (ITER_BVEC|ITER_KVEC)) {
Al Virod2715242014-11-27 14:22:37 -0500702 void *kaddr = kmap_atomic(page);
Al Viroaa28de22017-06-29 21:45:10 -0400703 size_t wanted = _copy_from_iter(kaddr + offset, bytes, i);
Al Virod2715242014-11-27 14:22:37 -0500704 kunmap_atomic(kaddr);
705 return wanted;
706 } else
707 return copy_page_from_iter_iovec(page, offset, bytes, i);
708}
709EXPORT_SYMBOL(copy_page_from_iter);
710
Al Viro241699c2016-09-22 16:33:12 -0400711static size_t pipe_zero(size_t bytes, struct iov_iter *i)
712{
713 struct pipe_inode_info *pipe = i->pipe;
714 size_t n, off;
715 int idx;
716
717 if (!sanity(i))
718 return 0;
719
720 bytes = n = push_pipe(i, bytes, &idx, &off);
721 if (unlikely(!n))
722 return 0;
723
724 for ( ; n; idx = next_idx(idx, pipe), off = 0) {
725 size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
726 memzero_page(pipe->bufs[idx].page, off, chunk);
727 i->idx = idx;
728 i->iov_offset = off + chunk;
729 n -= chunk;
730 }
731 i->count -= bytes;
732 return bytes;
733}
734
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400735size_t iov_iter_zero(size_t bytes, struct iov_iter *i)
736{
Al Viro241699c2016-09-22 16:33:12 -0400737 if (unlikely(i->type & ITER_PIPE))
738 return pipe_zero(bytes, i);
Al Viro8442fa42014-11-27 14:18:54 -0500739 iterate_and_advance(i, bytes, v,
Al Viro09fc68d2017-06-29 22:25:14 -0400740 clear_user(v.iov_base, v.iov_len),
Al Viroa2804552014-11-27 14:48:42 -0500741 memzero_page(v.bv_page, v.bv_offset, v.bv_len),
742 memset(v.iov_base, 0, v.iov_len)
Al Viro8442fa42014-11-27 14:18:54 -0500743 )
744
745 return bytes;
Matthew Wilcoxc35e0242014-08-01 09:27:22 -0400746}
747EXPORT_SYMBOL(iov_iter_zero);
748
Al Viro62a80672014-04-04 23:12:29 -0400749size_t iov_iter_copy_from_user_atomic(struct page *page,
750 struct iov_iter *i, unsigned long offset, size_t bytes)
751{
Al Viro04a31162014-11-27 13:51:41 -0500752 char *kaddr = kmap_atomic(page), *p = kaddr + offset;
Al Viro72e809e2017-06-29 21:52:57 -0400753 if (unlikely(!page_copy_sane(page, offset, bytes))) {
754 kunmap_atomic(kaddr);
755 return 0;
756 }
Al Viro241699c2016-09-22 16:33:12 -0400757 if (unlikely(i->type & ITER_PIPE)) {
758 kunmap_atomic(kaddr);
759 WARN_ON(1);
760 return 0;
761 }
Al Viro04a31162014-11-27 13:51:41 -0500762 iterate_all_kinds(i, bytes, v,
Al Viro09fc68d2017-06-29 22:25:14 -0400763 copyin((p += v.iov_len) - v.iov_len, v.iov_base, v.iov_len),
Al Viro04a31162014-11-27 13:51:41 -0500764 memcpy_from_page((p += v.bv_len) - v.bv_len, v.bv_page,
Al Viroa2804552014-11-27 14:48:42 -0500765 v.bv_offset, v.bv_len),
766 memcpy((p += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
Al Viro04a31162014-11-27 13:51:41 -0500767 )
768 kunmap_atomic(kaddr);
769 return bytes;
Al Viro62a80672014-04-04 23:12:29 -0400770}
771EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
772
Al Virob9dc6f62017-01-14 19:33:08 -0500773static inline void pipe_truncate(struct iov_iter *i)
Al Viro241699c2016-09-22 16:33:12 -0400774{
775 struct pipe_inode_info *pipe = i->pipe;
Al Viro241699c2016-09-22 16:33:12 -0400776 if (pipe->nrbufs) {
Al Virob9dc6f62017-01-14 19:33:08 -0500777 size_t off = i->iov_offset;
778 int idx = i->idx;
779 int nrbufs = (idx - pipe->curbuf) & (pipe->buffers - 1);
780 if (off) {
781 pipe->bufs[idx].len = off - pipe->bufs[idx].offset;
782 idx = next_idx(idx, pipe);
783 nrbufs++;
784 }
785 while (pipe->nrbufs > nrbufs) {
Miklos Szeredia7796382016-09-27 10:45:12 +0200786 pipe_buf_release(pipe, &pipe->bufs[idx]);
Al Viro241699c2016-09-22 16:33:12 -0400787 idx = next_idx(idx, pipe);
788 pipe->nrbufs--;
789 }
790 }
Al Virob9dc6f62017-01-14 19:33:08 -0500791}
792
793static void pipe_advance(struct iov_iter *i, size_t size)
794{
795 struct pipe_inode_info *pipe = i->pipe;
796 if (unlikely(i->count < size))
797 size = i->count;
798 if (size) {
799 struct pipe_buffer *buf;
800 size_t off = i->iov_offset, left = size;
801 int idx = i->idx;
802 if (off) /* make it relative to the beginning of buffer */
803 left += off - pipe->bufs[idx].offset;
804 while (1) {
805 buf = &pipe->bufs[idx];
806 if (left <= buf->len)
807 break;
808 left -= buf->len;
809 idx = next_idx(idx, pipe);
810 }
811 i->idx = idx;
812 i->iov_offset = buf->offset + left;
813 }
814 i->count -= size;
815 /* ... and discard everything past that point */
816 pipe_truncate(i);
Al Viro241699c2016-09-22 16:33:12 -0400817}
818
Al Viro62a80672014-04-04 23:12:29 -0400819void iov_iter_advance(struct iov_iter *i, size_t size)
820{
Al Viro241699c2016-09-22 16:33:12 -0400821 if (unlikely(i->type & ITER_PIPE)) {
822 pipe_advance(i, size);
823 return;
824 }
Al Viroa2804552014-11-27 14:48:42 -0500825 iterate_and_advance(i, size, v, 0, 0, 0)
Al Viro62a80672014-04-04 23:12:29 -0400826}
827EXPORT_SYMBOL(iov_iter_advance);
828
Al Viro27c0e372017-02-17 18:42:24 -0500829void iov_iter_revert(struct iov_iter *i, size_t unroll)
830{
831 if (!unroll)
832 return;
Al Viro5b47d592017-05-08 13:54:47 -0400833 if (WARN_ON(unroll > MAX_RW_COUNT))
834 return;
Al Viro27c0e372017-02-17 18:42:24 -0500835 i->count += unroll;
836 if (unlikely(i->type & ITER_PIPE)) {
837 struct pipe_inode_info *pipe = i->pipe;
838 int idx = i->idx;
839 size_t off = i->iov_offset;
840 while (1) {
841 size_t n = off - pipe->bufs[idx].offset;
842 if (unroll < n) {
Al Viro4fa55ce2017-04-29 16:42:30 -0400843 off -= unroll;
Al Viro27c0e372017-02-17 18:42:24 -0500844 break;
845 }
846 unroll -= n;
847 if (!unroll && idx == i->start_idx) {
848 off = 0;
849 break;
850 }
851 if (!idx--)
852 idx = pipe->buffers - 1;
853 off = pipe->bufs[idx].offset + pipe->bufs[idx].len;
854 }
855 i->iov_offset = off;
856 i->idx = idx;
857 pipe_truncate(i);
858 return;
859 }
860 if (unroll <= i->iov_offset) {
861 i->iov_offset -= unroll;
862 return;
863 }
864 unroll -= i->iov_offset;
865 if (i->type & ITER_BVEC) {
866 const struct bio_vec *bvec = i->bvec;
867 while (1) {
868 size_t n = (--bvec)->bv_len;
869 i->nr_segs++;
870 if (unroll <= n) {
871 i->bvec = bvec;
872 i->iov_offset = n - unroll;
873 return;
874 }
875 unroll -= n;
876 }
877 } else { /* same logics for iovec and kvec */
878 const struct iovec *iov = i->iov;
879 while (1) {
880 size_t n = (--iov)->iov_len;
881 i->nr_segs++;
882 if (unroll <= n) {
883 i->iov = iov;
884 i->iov_offset = n - unroll;
885 return;
886 }
887 unroll -= n;
888 }
889 }
890}
891EXPORT_SYMBOL(iov_iter_revert);
892
Al Viro62a80672014-04-04 23:12:29 -0400893/*
894 * Return the count of just the current iov_iter segment.
895 */
896size_t iov_iter_single_seg_count(const struct iov_iter *i)
897{
Al Viro241699c2016-09-22 16:33:12 -0400898 if (unlikely(i->type & ITER_PIPE))
899 return i->count; // it is a silly place, anyway
Al Viro62a80672014-04-04 23:12:29 -0400900 if (i->nr_segs == 1)
901 return i->count;
902 else if (i->type & ITER_BVEC)
Al Viro62a80672014-04-04 23:12:29 -0400903 return min(i->count, i->bvec->bv_len - i->iov_offset);
Paul Mackerrasad0eab92014-11-13 20:15:23 +1100904 else
905 return min(i->count, i->iov->iov_len - i->iov_offset);
Al Viro62a80672014-04-04 23:12:29 -0400906}
907EXPORT_SYMBOL(iov_iter_single_seg_count);
908
Al Viroabb78f82014-11-24 14:46:11 -0500909void iov_iter_kvec(struct iov_iter *i, int direction,
Al Viro05afcb72015-01-23 01:08:07 -0500910 const struct kvec *kvec, unsigned long nr_segs,
Al Viroabb78f82014-11-24 14:46:11 -0500911 size_t count)
912{
913 BUG_ON(!(direction & ITER_KVEC));
914 i->type = direction;
Al Viro05afcb72015-01-23 01:08:07 -0500915 i->kvec = kvec;
Al Viroabb78f82014-11-24 14:46:11 -0500916 i->nr_segs = nr_segs;
917 i->iov_offset = 0;
918 i->count = count;
919}
920EXPORT_SYMBOL(iov_iter_kvec);
921
Al Viro05afcb72015-01-23 01:08:07 -0500922void iov_iter_bvec(struct iov_iter *i, int direction,
923 const struct bio_vec *bvec, unsigned long nr_segs,
924 size_t count)
925{
926 BUG_ON(!(direction & ITER_BVEC));
927 i->type = direction;
928 i->bvec = bvec;
929 i->nr_segs = nr_segs;
930 i->iov_offset = 0;
931 i->count = count;
932}
933EXPORT_SYMBOL(iov_iter_bvec);
934
Al Viro241699c2016-09-22 16:33:12 -0400935void iov_iter_pipe(struct iov_iter *i, int direction,
936 struct pipe_inode_info *pipe,
937 size_t count)
938{
939 BUG_ON(direction != ITER_PIPE);
Al Virob9dc6f62017-01-14 19:33:08 -0500940 WARN_ON(pipe->nrbufs == pipe->buffers);
Al Viro241699c2016-09-22 16:33:12 -0400941 i->type = direction;
942 i->pipe = pipe;
943 i->idx = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
944 i->iov_offset = 0;
945 i->count = count;
Al Viro27c0e372017-02-17 18:42:24 -0500946 i->start_idx = i->idx;
Al Viro241699c2016-09-22 16:33:12 -0400947}
948EXPORT_SYMBOL(iov_iter_pipe);
949
Al Viro62a80672014-04-04 23:12:29 -0400950unsigned long iov_iter_alignment(const struct iov_iter *i)
951{
Al Viro04a31162014-11-27 13:51:41 -0500952 unsigned long res = 0;
953 size_t size = i->count;
954
Al Viro241699c2016-09-22 16:33:12 -0400955 if (unlikely(i->type & ITER_PIPE)) {
Al Viro33844e62016-12-21 21:55:02 -0500956 if (size && i->iov_offset && allocated(&i->pipe->bufs[i->idx]))
Al Viro241699c2016-09-22 16:33:12 -0400957 return size | i->iov_offset;
958 return size;
959 }
Al Viro04a31162014-11-27 13:51:41 -0500960 iterate_all_kinds(i, size, v,
961 (res |= (unsigned long)v.iov_base | v.iov_len, 0),
Al Viroa2804552014-11-27 14:48:42 -0500962 res |= v.bv_offset | v.bv_len,
963 res |= (unsigned long)v.iov_base | v.iov_len
Al Viro04a31162014-11-27 13:51:41 -0500964 )
965 return res;
Al Viro62a80672014-04-04 23:12:29 -0400966}
967EXPORT_SYMBOL(iov_iter_alignment);
968
Al Viro357f4352016-04-08 19:05:19 -0400969unsigned long iov_iter_gap_alignment(const struct iov_iter *i)
970{
Al Viro33844e62016-12-21 21:55:02 -0500971 unsigned long res = 0;
Al Viro357f4352016-04-08 19:05:19 -0400972 size_t size = i->count;
Al Viro357f4352016-04-08 19:05:19 -0400973
Al Viro241699c2016-09-22 16:33:12 -0400974 if (unlikely(i->type & ITER_PIPE)) {
975 WARN_ON(1);
976 return ~0U;
977 }
978
Al Viro357f4352016-04-08 19:05:19 -0400979 iterate_all_kinds(i, size, v,
980 (res |= (!res ? 0 : (unsigned long)v.iov_base) |
981 (size != v.iov_len ? size : 0), 0),
982 (res |= (!res ? 0 : (unsigned long)v.bv_offset) |
983 (size != v.bv_len ? size : 0)),
984 (res |= (!res ? 0 : (unsigned long)v.iov_base) |
985 (size != v.iov_len ? size : 0))
986 );
Al Viro33844e62016-12-21 21:55:02 -0500987 return res;
Al Viro357f4352016-04-08 19:05:19 -0400988}
989EXPORT_SYMBOL(iov_iter_gap_alignment);
990
Al Viro241699c2016-09-22 16:33:12 -0400991static inline size_t __pipe_get_pages(struct iov_iter *i,
992 size_t maxsize,
993 struct page **pages,
994 int idx,
995 size_t *start)
996{
997 struct pipe_inode_info *pipe = i->pipe;
Al Viro1689c732016-10-11 18:21:14 +0100998 ssize_t n = push_pipe(i, maxsize, &idx, start);
Al Viro241699c2016-09-22 16:33:12 -0400999 if (!n)
1000 return -EFAULT;
1001
1002 maxsize = n;
1003 n += *start;
Al Viro1689c732016-10-11 18:21:14 +01001004 while (n > 0) {
Al Viro241699c2016-09-22 16:33:12 -04001005 get_page(*pages++ = pipe->bufs[idx].page);
1006 idx = next_idx(idx, pipe);
1007 n -= PAGE_SIZE;
1008 }
1009
1010 return maxsize;
1011}
1012
1013static ssize_t pipe_get_pages(struct iov_iter *i,
1014 struct page **pages, size_t maxsize, unsigned maxpages,
1015 size_t *start)
1016{
1017 unsigned npages;
1018 size_t capacity;
1019 int idx;
1020
Al Viro33844e62016-12-21 21:55:02 -05001021 if (!maxsize)
1022 return 0;
1023
Al Viro241699c2016-09-22 16:33:12 -04001024 if (!sanity(i))
1025 return -EFAULT;
1026
1027 data_start(i, &idx, start);
1028 /* some of this one + all after this one */
1029 npages = ((i->pipe->curbuf - idx - 1) & (i->pipe->buffers - 1)) + 1;
1030 capacity = min(npages,maxpages) * PAGE_SIZE - *start;
1031
1032 return __pipe_get_pages(i, min(maxsize, capacity), pages, idx, start);
1033}
1034
Al Viro62a80672014-04-04 23:12:29 -04001035ssize_t iov_iter_get_pages(struct iov_iter *i,
Miklos Szeredi2c809292014-09-24 17:09:11 +02001036 struct page **pages, size_t maxsize, unsigned maxpages,
Al Viro62a80672014-04-04 23:12:29 -04001037 size_t *start)
1038{
Al Viroe5393fa2014-11-27 14:12:09 -05001039 if (maxsize > i->count)
1040 maxsize = i->count;
1041
Al Viro241699c2016-09-22 16:33:12 -04001042 if (unlikely(i->type & ITER_PIPE))
1043 return pipe_get_pages(i, pages, maxsize, maxpages, start);
Al Viroe5393fa2014-11-27 14:12:09 -05001044 iterate_all_kinds(i, maxsize, v, ({
1045 unsigned long addr = (unsigned long)v.iov_base;
1046 size_t len = v.iov_len + (*start = addr & (PAGE_SIZE - 1));
1047 int n;
1048 int res;
1049
1050 if (len > maxpages * PAGE_SIZE)
1051 len = maxpages * PAGE_SIZE;
1052 addr &= ~(PAGE_SIZE - 1);
1053 n = DIV_ROUND_UP(len, PAGE_SIZE);
1054 res = get_user_pages_fast(addr, n, (i->type & WRITE) != WRITE, pages);
1055 if (unlikely(res < 0))
1056 return res;
1057 return (res == n ? len : res * PAGE_SIZE) - *start;
1058 0;}),({
1059 /* can't be more than PAGE_SIZE */
1060 *start = v.bv_offset;
1061 get_page(*pages = v.bv_page);
1062 return v.bv_len;
Al Viroa2804552014-11-27 14:48:42 -05001063 }),({
1064 return -EFAULT;
Al Viroe5393fa2014-11-27 14:12:09 -05001065 })
1066 )
1067 return 0;
Al Viro62a80672014-04-04 23:12:29 -04001068}
1069EXPORT_SYMBOL(iov_iter_get_pages);
1070
Al Viro1b17f1f2014-11-27 14:14:31 -05001071static struct page **get_pages_array(size_t n)
1072{
Michal Hocko752ade62017-05-08 15:57:27 -07001073 return kvmalloc_array(n, sizeof(struct page *), GFP_KERNEL);
Al Viro1b17f1f2014-11-27 14:14:31 -05001074}
1075
Al Viro241699c2016-09-22 16:33:12 -04001076static ssize_t pipe_get_pages_alloc(struct iov_iter *i,
1077 struct page ***pages, size_t maxsize,
1078 size_t *start)
1079{
1080 struct page **p;
1081 size_t n;
1082 int idx;
1083 int npages;
1084
Al Viro33844e62016-12-21 21:55:02 -05001085 if (!maxsize)
1086 return 0;
1087
Al Viro241699c2016-09-22 16:33:12 -04001088 if (!sanity(i))
1089 return -EFAULT;
1090
1091 data_start(i, &idx, start);
1092 /* some of this one + all after this one */
1093 npages = ((i->pipe->curbuf - idx - 1) & (i->pipe->buffers - 1)) + 1;
1094 n = npages * PAGE_SIZE - *start;
1095 if (maxsize > n)
1096 maxsize = n;
1097 else
1098 npages = DIV_ROUND_UP(maxsize + *start, PAGE_SIZE);
1099 p = get_pages_array(npages);
1100 if (!p)
1101 return -ENOMEM;
1102 n = __pipe_get_pages(i, maxsize, p, idx, start);
1103 if (n > 0)
1104 *pages = p;
1105 else
1106 kvfree(p);
1107 return n;
1108}
1109
Al Viro62a80672014-04-04 23:12:29 -04001110ssize_t iov_iter_get_pages_alloc(struct iov_iter *i,
1111 struct page ***pages, size_t maxsize,
1112 size_t *start)
1113{
Al Viro1b17f1f2014-11-27 14:14:31 -05001114 struct page **p;
1115
1116 if (maxsize > i->count)
1117 maxsize = i->count;
1118
Al Viro241699c2016-09-22 16:33:12 -04001119 if (unlikely(i->type & ITER_PIPE))
1120 return pipe_get_pages_alloc(i, pages, maxsize, start);
Al Viro1b17f1f2014-11-27 14:14:31 -05001121 iterate_all_kinds(i, maxsize, v, ({
1122 unsigned long addr = (unsigned long)v.iov_base;
1123 size_t len = v.iov_len + (*start = addr & (PAGE_SIZE - 1));
1124 int n;
1125 int res;
1126
1127 addr &= ~(PAGE_SIZE - 1);
1128 n = DIV_ROUND_UP(len, PAGE_SIZE);
1129 p = get_pages_array(n);
1130 if (!p)
1131 return -ENOMEM;
1132 res = get_user_pages_fast(addr, n, (i->type & WRITE) != WRITE, p);
1133 if (unlikely(res < 0)) {
1134 kvfree(p);
1135 return res;
1136 }
1137 *pages = p;
1138 return (res == n ? len : res * PAGE_SIZE) - *start;
1139 0;}),({
1140 /* can't be more than PAGE_SIZE */
1141 *start = v.bv_offset;
1142 *pages = p = get_pages_array(1);
1143 if (!p)
1144 return -ENOMEM;
1145 get_page(*p = v.bv_page);
1146 return v.bv_len;
Al Viroa2804552014-11-27 14:48:42 -05001147 }),({
1148 return -EFAULT;
Al Viro1b17f1f2014-11-27 14:14:31 -05001149 })
1150 )
1151 return 0;
Al Viro62a80672014-04-04 23:12:29 -04001152}
1153EXPORT_SYMBOL(iov_iter_get_pages_alloc);
1154
Al Viroa604ec72014-11-24 01:08:00 -05001155size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum,
1156 struct iov_iter *i)
1157{
1158 char *to = addr;
1159 __wsum sum, next;
1160 size_t off = 0;
Al Viroa604ec72014-11-24 01:08:00 -05001161 sum = *csum;
Al Viro241699c2016-09-22 16:33:12 -04001162 if (unlikely(i->type & ITER_PIPE)) {
1163 WARN_ON(1);
1164 return 0;
1165 }
Al Viroa604ec72014-11-24 01:08:00 -05001166 iterate_and_advance(i, bytes, v, ({
1167 int err = 0;
Al Virocbbd26b2016-11-01 22:09:04 -04001168 next = csum_and_copy_from_user(v.iov_base,
Al Viroa604ec72014-11-24 01:08:00 -05001169 (to += v.iov_len) - v.iov_len,
1170 v.iov_len, 0, &err);
1171 if (!err) {
1172 sum = csum_block_add(sum, next, off);
1173 off += v.iov_len;
1174 }
1175 err ? v.iov_len : 0;
1176 }), ({
1177 char *p = kmap_atomic(v.bv_page);
1178 next = csum_partial_copy_nocheck(p + v.bv_offset,
1179 (to += v.bv_len) - v.bv_len,
1180 v.bv_len, 0);
1181 kunmap_atomic(p);
1182 sum = csum_block_add(sum, next, off);
1183 off += v.bv_len;
1184 }),({
1185 next = csum_partial_copy_nocheck(v.iov_base,
1186 (to += v.iov_len) - v.iov_len,
1187 v.iov_len, 0);
1188 sum = csum_block_add(sum, next, off);
1189 off += v.iov_len;
1190 })
1191 )
1192 *csum = sum;
1193 return bytes;
1194}
1195EXPORT_SYMBOL(csum_and_copy_from_iter);
1196
Al Virocbbd26b2016-11-01 22:09:04 -04001197bool csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum,
1198 struct iov_iter *i)
1199{
1200 char *to = addr;
1201 __wsum sum, next;
1202 size_t off = 0;
1203 sum = *csum;
1204 if (unlikely(i->type & ITER_PIPE)) {
1205 WARN_ON(1);
1206 return false;
1207 }
1208 if (unlikely(i->count < bytes))
1209 return false;
1210 iterate_all_kinds(i, bytes, v, ({
1211 int err = 0;
1212 next = csum_and_copy_from_user(v.iov_base,
1213 (to += v.iov_len) - v.iov_len,
1214 v.iov_len, 0, &err);
1215 if (err)
1216 return false;
1217 sum = csum_block_add(sum, next, off);
1218 off += v.iov_len;
1219 0;
1220 }), ({
1221 char *p = kmap_atomic(v.bv_page);
1222 next = csum_partial_copy_nocheck(p + v.bv_offset,
1223 (to += v.bv_len) - v.bv_len,
1224 v.bv_len, 0);
1225 kunmap_atomic(p);
1226 sum = csum_block_add(sum, next, off);
1227 off += v.bv_len;
1228 }),({
1229 next = csum_partial_copy_nocheck(v.iov_base,
1230 (to += v.iov_len) - v.iov_len,
1231 v.iov_len, 0);
1232 sum = csum_block_add(sum, next, off);
1233 off += v.iov_len;
1234 })
1235 )
1236 *csum = sum;
1237 iov_iter_advance(i, bytes);
1238 return true;
1239}
1240EXPORT_SYMBOL(csum_and_copy_from_iter_full);
1241
Al Viro36f7a8a2015-12-06 16:49:22 -05001242size_t csum_and_copy_to_iter(const void *addr, size_t bytes, __wsum *csum,
Al Viroa604ec72014-11-24 01:08:00 -05001243 struct iov_iter *i)
1244{
Al Viro36f7a8a2015-12-06 16:49:22 -05001245 const char *from = addr;
Al Viroa604ec72014-11-24 01:08:00 -05001246 __wsum sum, next;
1247 size_t off = 0;
Al Viroa604ec72014-11-24 01:08:00 -05001248 sum = *csum;
Al Viro241699c2016-09-22 16:33:12 -04001249 if (unlikely(i->type & ITER_PIPE)) {
1250 WARN_ON(1); /* for now */
1251 return 0;
1252 }
Al Viroa604ec72014-11-24 01:08:00 -05001253 iterate_and_advance(i, bytes, v, ({
1254 int err = 0;
1255 next = csum_and_copy_to_user((from += v.iov_len) - v.iov_len,
Al Virocbbd26b2016-11-01 22:09:04 -04001256 v.iov_base,
Al Viroa604ec72014-11-24 01:08:00 -05001257 v.iov_len, 0, &err);
1258 if (!err) {
1259 sum = csum_block_add(sum, next, off);
1260 off += v.iov_len;
1261 }
1262 err ? v.iov_len : 0;
1263 }), ({
1264 char *p = kmap_atomic(v.bv_page);
1265 next = csum_partial_copy_nocheck((from += v.bv_len) - v.bv_len,
1266 p + v.bv_offset,
1267 v.bv_len, 0);
1268 kunmap_atomic(p);
1269 sum = csum_block_add(sum, next, off);
1270 off += v.bv_len;
1271 }),({
1272 next = csum_partial_copy_nocheck((from += v.iov_len) - v.iov_len,
1273 v.iov_base,
1274 v.iov_len, 0);
1275 sum = csum_block_add(sum, next, off);
1276 off += v.iov_len;
1277 })
1278 )
1279 *csum = sum;
1280 return bytes;
1281}
1282EXPORT_SYMBOL(csum_and_copy_to_iter);
1283
Al Viro62a80672014-04-04 23:12:29 -04001284int iov_iter_npages(const struct iov_iter *i, int maxpages)
1285{
Al Viroe0f2dc42014-11-27 14:09:46 -05001286 size_t size = i->count;
1287 int npages = 0;
1288
1289 if (!size)
1290 return 0;
1291
Al Viro241699c2016-09-22 16:33:12 -04001292 if (unlikely(i->type & ITER_PIPE)) {
1293 struct pipe_inode_info *pipe = i->pipe;
1294 size_t off;
1295 int idx;
1296
1297 if (!sanity(i))
1298 return 0;
1299
1300 data_start(i, &idx, &off);
1301 /* some of this one + all after this one */
1302 npages = ((pipe->curbuf - idx - 1) & (pipe->buffers - 1)) + 1;
1303 if (npages >= maxpages)
1304 return maxpages;
1305 } else iterate_all_kinds(i, size, v, ({
Al Viroe0f2dc42014-11-27 14:09:46 -05001306 unsigned long p = (unsigned long)v.iov_base;
1307 npages += DIV_ROUND_UP(p + v.iov_len, PAGE_SIZE)
1308 - p / PAGE_SIZE;
1309 if (npages >= maxpages)
1310 return maxpages;
1311 0;}),({
1312 npages++;
1313 if (npages >= maxpages)
1314 return maxpages;
Al Viroa2804552014-11-27 14:48:42 -05001315 }),({
1316 unsigned long p = (unsigned long)v.iov_base;
1317 npages += DIV_ROUND_UP(p + v.iov_len, PAGE_SIZE)
1318 - p / PAGE_SIZE;
1319 if (npages >= maxpages)
1320 return maxpages;
Al Viroe0f2dc42014-11-27 14:09:46 -05001321 })
1322 )
1323 return npages;
Al Viro62a80672014-04-04 23:12:29 -04001324}
Al Virof67da302014-03-19 01:16:16 -04001325EXPORT_SYMBOL(iov_iter_npages);
Al Viro4b8164b2015-01-31 20:08:47 -05001326
1327const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags)
1328{
1329 *new = *old;
Al Viro241699c2016-09-22 16:33:12 -04001330 if (unlikely(new->type & ITER_PIPE)) {
1331 WARN_ON(1);
1332 return NULL;
1333 }
Al Viro4b8164b2015-01-31 20:08:47 -05001334 if (new->type & ITER_BVEC)
1335 return new->bvec = kmemdup(new->bvec,
1336 new->nr_segs * sizeof(struct bio_vec),
1337 flags);
1338 else
1339 /* iovec and kvec have identical layout */
1340 return new->iov = kmemdup(new->iov,
1341 new->nr_segs * sizeof(struct iovec),
1342 flags);
1343}
1344EXPORT_SYMBOL(dup_iter);
Al Virobc917be2015-03-21 17:45:43 -04001345
Vegard Nossumffecee42016-10-08 11:18:07 +02001346/**
1347 * import_iovec() - Copy an array of &struct iovec from userspace
1348 * into the kernel, check that it is valid, and initialize a new
1349 * &struct iov_iter iterator to access it.
1350 *
1351 * @type: One of %READ or %WRITE.
1352 * @uvector: Pointer to the userspace array.
1353 * @nr_segs: Number of elements in userspace array.
1354 * @fast_segs: Number of elements in @iov.
1355 * @iov: (input and output parameter) Pointer to pointer to (usually small
1356 * on-stack) kernel array.
1357 * @i: Pointer to iterator that will be initialized on success.
1358 *
1359 * If the array pointed to by *@iov is large enough to hold all @nr_segs,
1360 * then this function places %NULL in *@iov on return. Otherwise, a new
1361 * array will be allocated and the result placed in *@iov. This means that
1362 * the caller may call kfree() on *@iov regardless of whether the small
1363 * on-stack array was used or not (and regardless of whether this function
1364 * returns an error or not).
1365 *
1366 * Return: 0 on success or negative error code on error.
1367 */
Al Virobc917be2015-03-21 17:45:43 -04001368int import_iovec(int type, const struct iovec __user * uvector,
1369 unsigned nr_segs, unsigned fast_segs,
1370 struct iovec **iov, struct iov_iter *i)
1371{
1372 ssize_t n;
1373 struct iovec *p;
1374 n = rw_copy_check_uvector(type, uvector, nr_segs, fast_segs,
1375 *iov, &p);
1376 if (n < 0) {
1377 if (p != *iov)
1378 kfree(p);
1379 *iov = NULL;
1380 return n;
1381 }
1382 iov_iter_init(i, type, p, nr_segs, n);
1383 *iov = p == *iov ? NULL : p;
1384 return 0;
1385}
1386EXPORT_SYMBOL(import_iovec);
1387
1388#ifdef CONFIG_COMPAT
1389#include <linux/compat.h>
1390
1391int compat_import_iovec(int type, const struct compat_iovec __user * uvector,
1392 unsigned nr_segs, unsigned fast_segs,
1393 struct iovec **iov, struct iov_iter *i)
1394{
1395 ssize_t n;
1396 struct iovec *p;
1397 n = compat_rw_copy_check_uvector(type, uvector, nr_segs, fast_segs,
1398 *iov, &p);
1399 if (n < 0) {
1400 if (p != *iov)
1401 kfree(p);
1402 *iov = NULL;
1403 return n;
1404 }
1405 iov_iter_init(i, type, p, nr_segs, n);
1406 *iov = p == *iov ? NULL : p;
1407 return 0;
1408}
1409#endif
1410
1411int import_single_range(int rw, void __user *buf, size_t len,
1412 struct iovec *iov, struct iov_iter *i)
1413{
1414 if (len > MAX_RW_COUNT)
1415 len = MAX_RW_COUNT;
1416 if (unlikely(!access_ok(!rw, buf, len)))
1417 return -EFAULT;
1418
1419 iov->iov_base = buf;
1420 iov->iov_len = len;
1421 iov_iter_init(i, rw, iov, 1, len);
1422 return 0;
1423}
Al Viroe1267582015-12-06 20:38:56 -05001424EXPORT_SYMBOL(import_single_range);