Blame view

mm/iov_iter.c 21 KB
4f18cd317   Al Viro   take iov_iter stu...
1
2
3
  #include <linux/export.h>
  #include <linux/uio.h>
  #include <linux/pagemap.h>
91f79c43d   Al Viro   new helper: iov_i...
4
5
  #include <linux/slab.h>
  #include <linux/vmalloc.h>
4f18cd317   Al Viro   take iov_iter stu...
6

c35e02480   Matthew Wilcox   Add copy_to_iter(...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  static size_t copy_to_iter_iovec(void *from, size_t bytes, struct iov_iter *i)
  {
  	size_t skip, copy, left, wanted;
  	const struct iovec *iov;
  	char __user *buf;
  
  	if (unlikely(bytes > i->count))
  		bytes = i->count;
  
  	if (unlikely(!bytes))
  		return 0;
  
  	wanted = bytes;
  	iov = i->iov;
  	skip = i->iov_offset;
  	buf = iov->iov_base + skip;
  	copy = min(bytes, iov->iov_len - skip);
  
  	left = __copy_to_user(buf, from, copy);
  	copy -= left;
  	skip += copy;
  	from += copy;
  	bytes -= copy;
  	while (unlikely(!left && bytes)) {
  		iov++;
  		buf = iov->iov_base;
  		copy = min(bytes, iov->iov_len);
  		left = __copy_to_user(buf, from, copy);
  		copy -= left;
  		skip = copy;
  		from += copy;
  		bytes -= copy;
  	}
  
  	if (skip == iov->iov_len) {
  		iov++;
  		skip = 0;
  	}
  	i->count -= wanted - bytes;
  	i->nr_segs -= iov - i->iov;
  	i->iov = iov;
  	i->iov_offset = skip;
  	return wanted - bytes;
  }
  
  static size_t copy_from_iter_iovec(void *to, size_t bytes, struct iov_iter *i)
  {
  	size_t skip, copy, left, wanted;
  	const struct iovec *iov;
  	char __user *buf;
  
  	if (unlikely(bytes > i->count))
  		bytes = i->count;
  
  	if (unlikely(!bytes))
  		return 0;
  
  	wanted = bytes;
  	iov = i->iov;
  	skip = i->iov_offset;
  	buf = iov->iov_base + skip;
  	copy = min(bytes, iov->iov_len - skip);
  
  	left = __copy_from_user(to, buf, copy);
  	copy -= left;
  	skip += copy;
  	to += copy;
  	bytes -= copy;
  	while (unlikely(!left && bytes)) {
  		iov++;
  		buf = iov->iov_base;
  		copy = min(bytes, iov->iov_len);
  		left = __copy_from_user(to, buf, copy);
  		copy -= left;
  		skip = copy;
  		to += copy;
  		bytes -= copy;
  	}
  
  	if (skip == iov->iov_len) {
  		iov++;
  		skip = 0;
  	}
  	i->count -= wanted - bytes;
  	i->nr_segs -= iov - i->iov;
  	i->iov = iov;
  	i->iov_offset = skip;
  	return wanted - bytes;
  }
62a8067a7   Al Viro   bio_vec-backed io...
96
  static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes,
4f18cd317   Al Viro   take iov_iter stu...
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
  			 struct iov_iter *i)
  {
  	size_t skip, copy, left, wanted;
  	const struct iovec *iov;
  	char __user *buf;
  	void *kaddr, *from;
  
  	if (unlikely(bytes > i->count))
  		bytes = i->count;
  
  	if (unlikely(!bytes))
  		return 0;
  
  	wanted = bytes;
  	iov = i->iov;
  	skip = i->iov_offset;
  	buf = iov->iov_base + skip;
  	copy = min(bytes, iov->iov_len - skip);
  
  	if (!fault_in_pages_writeable(buf, copy)) {
  		kaddr = kmap_atomic(page);
  		from = kaddr + offset;
  
  		/* first chunk, usually the only one */
  		left = __copy_to_user_inatomic(buf, from, copy);
  		copy -= left;
  		skip += copy;
  		from += copy;
  		bytes -= copy;
  
  		while (unlikely(!left && bytes)) {
  			iov++;
  			buf = iov->iov_base;
  			copy = min(bytes, iov->iov_len);
  			left = __copy_to_user_inatomic(buf, from, copy);
  			copy -= left;
  			skip = copy;
  			from += copy;
  			bytes -= copy;
  		}
  		if (likely(!bytes)) {
  			kunmap_atomic(kaddr);
  			goto done;
  		}
  		offset = from - kaddr;
  		buf += copy;
  		kunmap_atomic(kaddr);
  		copy = min(bytes, iov->iov_len - skip);
  	}
  	/* Too bad - revert to non-atomic kmap */
  	kaddr = kmap(page);
  	from = kaddr + offset;
  	left = __copy_to_user(buf, from, copy);
  	copy -= left;
  	skip += copy;
  	from += copy;
  	bytes -= copy;
  	while (unlikely(!left && bytes)) {
  		iov++;
  		buf = iov->iov_base;
  		copy = min(bytes, iov->iov_len);
  		left = __copy_to_user(buf, from, copy);
  		copy -= left;
  		skip = copy;
  		from += copy;
  		bytes -= copy;
  	}
  	kunmap(page);
  done:
81055e584   Al Viro   optimize copy_pag...
166
167
168
169
  	if (skip == iov->iov_len) {
  		iov++;
  		skip = 0;
  	}
4f18cd317   Al Viro   take iov_iter stu...
170
171
172
173
174
175
  	i->count -= wanted - bytes;
  	i->nr_segs -= iov - i->iov;
  	i->iov = iov;
  	i->iov_offset = skip;
  	return wanted - bytes;
  }
4f18cd317   Al Viro   take iov_iter stu...
176

62a8067a7   Al Viro   bio_vec-backed io...
177
  static size_t copy_page_from_iter_iovec(struct page *page, size_t offset, size_t bytes,
f0d1bec9d   Al Viro   new helper: copy_...
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
  			 struct iov_iter *i)
  {
  	size_t skip, copy, left, wanted;
  	const struct iovec *iov;
  	char __user *buf;
  	void *kaddr, *to;
  
  	if (unlikely(bytes > i->count))
  		bytes = i->count;
  
  	if (unlikely(!bytes))
  		return 0;
  
  	wanted = bytes;
  	iov = i->iov;
  	skip = i->iov_offset;
  	buf = iov->iov_base + skip;
  	copy = min(bytes, iov->iov_len - skip);
  
  	if (!fault_in_pages_readable(buf, copy)) {
  		kaddr = kmap_atomic(page);
  		to = kaddr + offset;
  
  		/* first chunk, usually the only one */
  		left = __copy_from_user_inatomic(to, buf, copy);
  		copy -= left;
  		skip += copy;
  		to += copy;
  		bytes -= copy;
  
  		while (unlikely(!left && bytes)) {
  			iov++;
  			buf = iov->iov_base;
  			copy = min(bytes, iov->iov_len);
  			left = __copy_from_user_inatomic(to, buf, copy);
  			copy -= left;
  			skip = copy;
  			to += copy;
  			bytes -= copy;
  		}
  		if (likely(!bytes)) {
  			kunmap_atomic(kaddr);
  			goto done;
  		}
  		offset = to - kaddr;
  		buf += copy;
  		kunmap_atomic(kaddr);
  		copy = min(bytes, iov->iov_len - skip);
  	}
  	/* Too bad - revert to non-atomic kmap */
  	kaddr = kmap(page);
  	to = kaddr + offset;
  	left = __copy_from_user(to, buf, copy);
  	copy -= left;
  	skip += copy;
  	to += copy;
  	bytes -= copy;
  	while (unlikely(!left && bytes)) {
  		iov++;
  		buf = iov->iov_base;
  		copy = min(bytes, iov->iov_len);
  		left = __copy_from_user(to, buf, copy);
  		copy -= left;
  		skip = copy;
  		to += copy;
  		bytes -= copy;
  	}
  	kunmap(page);
  done:
81055e584   Al Viro   optimize copy_pag...
247
248
249
250
  	if (skip == iov->iov_len) {
  		iov++;
  		skip = 0;
  	}
f0d1bec9d   Al Viro   new helper: copy_...
251
252
253
254
255
256
  	i->count -= wanted - bytes;
  	i->nr_segs -= iov - i->iov;
  	i->iov = iov;
  	i->iov_offset = skip;
  	return wanted - bytes;
  }
f0d1bec9d   Al Viro   new helper: copy_...
257

c35e02480   Matthew Wilcox   Add copy_to_iter(...
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
  static size_t zero_iovec(size_t bytes, struct iov_iter *i)
  {
  	size_t skip, copy, left, wanted;
  	const struct iovec *iov;
  	char __user *buf;
  
  	if (unlikely(bytes > i->count))
  		bytes = i->count;
  
  	if (unlikely(!bytes))
  		return 0;
  
  	wanted = bytes;
  	iov = i->iov;
  	skip = i->iov_offset;
  	buf = iov->iov_base + skip;
  	copy = min(bytes, iov->iov_len - skip);
  
  	left = __clear_user(buf, copy);
  	copy -= left;
  	skip += copy;
  	bytes -= copy;
  
  	while (unlikely(!left && bytes)) {
  		iov++;
  		buf = iov->iov_base;
  		copy = min(bytes, iov->iov_len);
  		left = __clear_user(buf, copy);
  		copy -= left;
  		skip = copy;
  		bytes -= copy;
  	}
  
  	if (skip == iov->iov_len) {
  		iov++;
  		skip = 0;
  	}
  	i->count -= wanted - bytes;
  	i->nr_segs -= iov - i->iov;
  	i->iov = iov;
  	i->iov_offset = skip;
  	return wanted - bytes;
  }
4f18cd317   Al Viro   take iov_iter stu...
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
  static size_t __iovec_copy_from_user_inatomic(char *vaddr,
  			const struct iovec *iov, size_t base, size_t bytes)
  {
  	size_t copied = 0, left = 0;
  
  	while (bytes) {
  		char __user *buf = iov->iov_base + base;
  		int copy = min(bytes, iov->iov_len - base);
  
  		base = 0;
  		left = __copy_from_user_inatomic(vaddr, buf, copy);
  		copied += copy;
  		bytes -= copy;
  		vaddr += copy;
  		iov++;
  
  		if (unlikely(left))
  			break;
  	}
  	return copied - left;
  }
  
  /*
   * Copy as much as we can into the page and return the number of bytes which
   * were successfully copied.  If a fault is encountered then return the number of
   * bytes which were copied.
   */
62a8067a7   Al Viro   bio_vec-backed io...
328
  static size_t copy_from_user_atomic_iovec(struct page *page,
4f18cd317   Al Viro   take iov_iter stu...
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
  		struct iov_iter *i, unsigned long offset, size_t bytes)
  {
  	char *kaddr;
  	size_t copied;
  
  	kaddr = kmap_atomic(page);
  	if (likely(i->nr_segs == 1)) {
  		int left;
  		char __user *buf = i->iov->iov_base + i->iov_offset;
  		left = __copy_from_user_inatomic(kaddr + offset, buf, bytes);
  		copied = bytes - left;
  	} else {
  		copied = __iovec_copy_from_user_inatomic(kaddr + offset,
  						i->iov, i->iov_offset, bytes);
  	}
  	kunmap_atomic(kaddr);
  
  	return copied;
  }
4f18cd317   Al Viro   take iov_iter stu...
348

62a8067a7   Al Viro   bio_vec-backed io...
349
  static void advance_iovec(struct iov_iter *i, size_t bytes)
4f18cd317   Al Viro   take iov_iter stu...
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
  {
  	BUG_ON(i->count < bytes);
  
  	if (likely(i->nr_segs == 1)) {
  		i->iov_offset += bytes;
  		i->count -= bytes;
  	} else {
  		const struct iovec *iov = i->iov;
  		size_t base = i->iov_offset;
  		unsigned long nr_segs = i->nr_segs;
  
  		/*
  		 * The !iov->iov_len check ensures we skip over unlikely
  		 * zero-length segments (without overruning the iovec).
  		 */
  		while (bytes || unlikely(i->count && !iov->iov_len)) {
  			int copy;
  
  			copy = min(bytes, iov->iov_len - base);
  			BUG_ON(!i->count || i->count < copy);
  			i->count -= copy;
  			bytes -= copy;
  			base += copy;
  			if (iov->iov_len == base) {
  				iov++;
  				nr_segs--;
  				base = 0;
  			}
  		}
  		i->iov = iov;
  		i->iov_offset = base;
  		i->nr_segs = nr_segs;
  	}
  }
4f18cd317   Al Viro   take iov_iter stu...
384
385
386
387
388
389
390
391
392
393
394
395
  
  /*
   * Fault in the first iovec of the given iov_iter, to a maximum length
   * of bytes. Returns 0 on success, or non-zero if the memory could not be
   * accessed (ie. because it is an invalid address).
   *
   * writev-intensive code may want this to prefault several iovecs -- that
   * would be possible (callers must not rely on the fact that _only_ the
   * first iovec will be faulted with the current implementation).
   */
  int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
  {
62a8067a7   Al Viro   bio_vec-backed io...
396
397
398
399
400
401
  	if (!(i->type & ITER_BVEC)) {
  		char __user *buf = i->iov->iov_base + i->iov_offset;
  		bytes = min(bytes, i->iov->iov_len - i->iov_offset);
  		return fault_in_pages_readable(buf, bytes);
  	}
  	return 0;
4f18cd317   Al Viro   take iov_iter stu...
402
403
  }
  EXPORT_SYMBOL(iov_iter_fault_in_readable);
62a8067a7   Al Viro   bio_vec-backed io...
404
  static unsigned long alignment_iovec(const struct iov_iter *i)
886a39115   Al Viro   new primitive: io...
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
  {
  	const struct iovec *iov = i->iov;
  	unsigned long res;
  	size_t size = i->count;
  	size_t n;
  
  	if (!size)
  		return 0;
  
  	res = (unsigned long)iov->iov_base + i->iov_offset;
  	n = iov->iov_len - i->iov_offset;
  	if (n >= size)
  		return res | size;
  	size -= n;
  	res |= n;
  	while (size > (++iov)->iov_len) {
  		res |= (unsigned long)iov->iov_base | iov->iov_len;
  		size -= iov->iov_len;
  	}
  	res |= (unsigned long)iov->iov_base | size;
  	return res;
  }
71d8e532b   Al Viro   start adding the ...
427
428
429
430
431
432
433
  
  void iov_iter_init(struct iov_iter *i, int direction,
  			const struct iovec *iov, unsigned long nr_segs,
  			size_t count)
  {
  	/* It will get better.  Eventually... */
  	if (segment_eq(get_fs(), KERNEL_DS))
62a8067a7   Al Viro   bio_vec-backed io...
434
  		direction |= ITER_KVEC;
71d8e532b   Al Viro   start adding the ...
435
436
437
438
439
440
441
  	i->type = direction;
  	i->iov = iov;
  	i->nr_segs = nr_segs;
  	i->iov_offset = 0;
  	i->count = count;
  }
  EXPORT_SYMBOL(iov_iter_init);
7b2c99d15   Al Viro   new helper: iov_i...
442

62a8067a7   Al Viro   bio_vec-backed io...
443
  static ssize_t get_pages_iovec(struct iov_iter *i,
2c80929c4   Miklos Szeredi   fuse: honour max_...
444
  		   struct page **pages, size_t maxsize, unsigned maxpages,
7b2c99d15   Al Viro   new helper: iov_i...
445
446
447
448
449
450
451
452
453
454
455
456
  		   size_t *start)
  {
  	size_t offset = i->iov_offset;
  	const struct iovec *iov = i->iov;
  	size_t len;
  	unsigned long addr;
  	int n;
  	int res;
  
  	len = iov->iov_len - offset;
  	if (len > i->count)
  		len = i->count;
2c80929c4   Miklos Szeredi   fuse: honour max_...
457
458
  	if (len > maxsize)
  		len = maxsize;
7b2c99d15   Al Viro   new helper: iov_i...
459
460
  	addr = (unsigned long)iov->iov_base + offset;
  	len += *start = addr & (PAGE_SIZE - 1);
c7f3888ad   Al Viro   switch iov_iter_g...
461
462
  	if (len > maxpages * PAGE_SIZE)
  		len = maxpages * PAGE_SIZE;
7b2c99d15   Al Viro   new helper: iov_i...
463
464
465
466
467
468
469
  	addr &= ~(PAGE_SIZE - 1);
  	n = (len + PAGE_SIZE - 1) / PAGE_SIZE;
  	res = get_user_pages_fast(addr, n, (i->type & WRITE) != WRITE, pages);
  	if (unlikely(res < 0))
  		return res;
  	return (res == n ? len : res * PAGE_SIZE) - *start;
  }
f67da30c1   Al Viro   new helper: iov_i...
470

62a8067a7   Al Viro   bio_vec-backed io...
471
  static ssize_t get_pages_alloc_iovec(struct iov_iter *i,
91f79c43d   Al Viro   new helper: iov_i...
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
  		   struct page ***pages, size_t maxsize,
  		   size_t *start)
  {
  	size_t offset = i->iov_offset;
  	const struct iovec *iov = i->iov;
  	size_t len;
  	unsigned long addr;
  	void *p;
  	int n;
  	int res;
  
  	len = iov->iov_len - offset;
  	if (len > i->count)
  		len = i->count;
  	if (len > maxsize)
  		len = maxsize;
  	addr = (unsigned long)iov->iov_base + offset;
  	len += *start = addr & (PAGE_SIZE - 1);
  	addr &= ~(PAGE_SIZE - 1);
  	n = (len + PAGE_SIZE - 1) / PAGE_SIZE;
  	
  	p = kmalloc(n * sizeof(struct page *), GFP_KERNEL);
  	if (!p)
  		p = vmalloc(n * sizeof(struct page *));
  	if (!p)
  		return -ENOMEM;
  
  	res = get_user_pages_fast(addr, n, (i->type & WRITE) != WRITE, p);
  	if (unlikely(res < 0)) {
  		kvfree(p);
  		return res;
  	}
  	*pages = p;
  	return (res == n ? len : res * PAGE_SIZE) - *start;
  }
91f79c43d   Al Viro   new helper: iov_i...
507

62a8067a7   Al Viro   bio_vec-backed io...
508
  static int iov_iter_npages_iovec(const struct iov_iter *i, int maxpages)
f67da30c1   Al Viro   new helper: iov_i...
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
  {
  	size_t offset = i->iov_offset;
  	size_t size = i->count;
  	const struct iovec *iov = i->iov;
  	int npages = 0;
  	int n;
  
  	for (n = 0; size && n < i->nr_segs; n++, iov++) {
  		unsigned long addr = (unsigned long)iov->iov_base + offset;
  		size_t len = iov->iov_len - offset;
  		offset = 0;
  		if (unlikely(!len))	/* empty segment */
  			continue;
  		if (len > size)
  			len = size;
  		npages += (addr + len + PAGE_SIZE - 1) / PAGE_SIZE
  			  - addr / PAGE_SIZE;
  		if (npages >= maxpages)	/* don't bother going further */
  			return maxpages;
  		size -= len;
  		offset = 0;
  	}
  	return min(npages, maxpages);
  }
62a8067a7   Al Viro   bio_vec-backed io...
533
534
535
536
537
538
539
540
541
542
543
544
545
546
  
  static void memcpy_from_page(char *to, struct page *page, size_t offset, size_t len)
  {
  	char *from = kmap_atomic(page);
  	memcpy(to, from + offset, len);
  	kunmap_atomic(from);
  }
  
  static void memcpy_to_page(struct page *page, size_t offset, char *from, size_t len)
  {
  	char *to = kmap_atomic(page);
  	memcpy(to + offset, from, len);
  	kunmap_atomic(to);
  }
c35e02480   Matthew Wilcox   Add copy_to_iter(...
547
548
549
550
551
552
553
554
  static void memzero_page(struct page *page, size_t offset, size_t len)
  {
  	char *addr = kmap_atomic(page);
  	memset(addr + offset, 0, len);
  	kunmap_atomic(addr);
  }
  
  static size_t copy_to_iter_bvec(void *from, size_t bytes, struct iov_iter *i)
62a8067a7   Al Viro   bio_vec-backed io...
555
556
557
  {
  	size_t skip, copy, wanted;
  	const struct bio_vec *bvec;
62a8067a7   Al Viro   bio_vec-backed io...
558
559
560
561
562
563
564
565
566
567
568
  
  	if (unlikely(bytes > i->count))
  		bytes = i->count;
  
  	if (unlikely(!bytes))
  		return 0;
  
  	wanted = bytes;
  	bvec = i->bvec;
  	skip = i->iov_offset;
  	copy = min_t(size_t, bytes, bvec->bv_len - skip);
62a8067a7   Al Viro   bio_vec-backed io...
569
570
571
572
573
574
575
576
577
578
579
580
  	memcpy_to_page(bvec->bv_page, skip + bvec->bv_offset, from, copy);
  	skip += copy;
  	from += copy;
  	bytes -= copy;
  	while (bytes) {
  		bvec++;
  		copy = min(bytes, (size_t)bvec->bv_len);
  		memcpy_to_page(bvec->bv_page, bvec->bv_offset, from, copy);
  		skip = copy;
  		from += copy;
  		bytes -= copy;
  	}
62a8067a7   Al Viro   bio_vec-backed io...
581
582
583
584
585
586
587
588
589
590
  	if (skip == bvec->bv_len) {
  		bvec++;
  		skip = 0;
  	}
  	i->count -= wanted - bytes;
  	i->nr_segs -= bvec - i->bvec;
  	i->bvec = bvec;
  	i->iov_offset = skip;
  	return wanted - bytes;
  }
c35e02480   Matthew Wilcox   Add copy_to_iter(...
591
  static size_t copy_from_iter_bvec(void *to, size_t bytes, struct iov_iter *i)
62a8067a7   Al Viro   bio_vec-backed io...
592
593
594
  {
  	size_t skip, copy, wanted;
  	const struct bio_vec *bvec;
62a8067a7   Al Viro   bio_vec-backed io...
595
596
597
598
599
600
601
602
603
604
  
  	if (unlikely(bytes > i->count))
  		bytes = i->count;
  
  	if (unlikely(!bytes))
  		return 0;
  
  	wanted = bytes;
  	bvec = i->bvec;
  	skip = i->iov_offset;
62a8067a7   Al Viro   bio_vec-backed io...
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
  	copy = min(bytes, bvec->bv_len - skip);
  
  	memcpy_from_page(to, bvec->bv_page, bvec->bv_offset + skip, copy);
  
  	to += copy;
  	skip += copy;
  	bytes -= copy;
  
  	while (bytes) {
  		bvec++;
  		copy = min(bytes, (size_t)bvec->bv_len);
  		memcpy_from_page(to, bvec->bv_page, bvec->bv_offset, copy);
  		skip = copy;
  		to += copy;
  		bytes -= copy;
  	}
62a8067a7   Al Viro   bio_vec-backed io...
621
622
623
624
625
626
627
628
629
630
  	if (skip == bvec->bv_len) {
  		bvec++;
  		skip = 0;
  	}
  	i->count -= wanted;
  	i->nr_segs -= bvec - i->bvec;
  	i->bvec = bvec;
  	i->iov_offset = skip;
  	return wanted;
  }
c35e02480   Matthew Wilcox   Add copy_to_iter(...
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
  static size_t copy_page_to_iter_bvec(struct page *page, size_t offset,
  					size_t bytes, struct iov_iter *i)
  {
  	void *kaddr = kmap_atomic(page);
  	size_t wanted = copy_to_iter_bvec(kaddr + offset, bytes, i);
  	kunmap_atomic(kaddr);
  	return wanted;
  }
  
  static size_t copy_page_from_iter_bvec(struct page *page, size_t offset,
  					size_t bytes, struct iov_iter *i)
  {
  	void *kaddr = kmap_atomic(page);
  	size_t wanted = copy_from_iter_bvec(kaddr + offset, bytes, i);
  	kunmap_atomic(kaddr);
  	return wanted;
  }
  
  static size_t zero_bvec(size_t bytes, struct iov_iter *i)
  {
  	size_t skip, copy, wanted;
  	const struct bio_vec *bvec;
  
  	if (unlikely(bytes > i->count))
  		bytes = i->count;
  
  	if (unlikely(!bytes))
  		return 0;
  
  	wanted = bytes;
  	bvec = i->bvec;
  	skip = i->iov_offset;
  	copy = min_t(size_t, bytes, bvec->bv_len - skip);
  
  	memzero_page(bvec->bv_page, skip + bvec->bv_offset, copy);
  	skip += copy;
  	bytes -= copy;
  	while (bytes) {
  		bvec++;
  		copy = min(bytes, (size_t)bvec->bv_len);
  		memzero_page(bvec->bv_page, bvec->bv_offset, copy);
  		skip = copy;
  		bytes -= copy;
  	}
  	if (skip == bvec->bv_len) {
  		bvec++;
  		skip = 0;
  	}
  	i->count -= wanted - bytes;
  	i->nr_segs -= bvec - i->bvec;
  	i->bvec = bvec;
  	i->iov_offset = skip;
  	return wanted - bytes;
  }
62a8067a7   Al Viro   bio_vec-backed io...
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
  static size_t copy_from_user_bvec(struct page *page,
  		struct iov_iter *i, unsigned long offset, size_t bytes)
  {
  	char *kaddr;
  	size_t left;
  	const struct bio_vec *bvec;
  	size_t base = i->iov_offset;
  
  	kaddr = kmap_atomic(page);
  	for (left = bytes, bvec = i->bvec; left; bvec++, base = 0) {
  		size_t copy = min(left, bvec->bv_len - base);
  		if (!bvec->bv_len)
  			continue;
  		memcpy_from_page(kaddr + offset, bvec->bv_page,
  				 bvec->bv_offset + base, copy);
  		offset += copy;
  		left -= copy;
  	}
  	kunmap_atomic(kaddr);
  	return bytes;
  }
  
  static void advance_bvec(struct iov_iter *i, size_t bytes)
  {
  	BUG_ON(i->count < bytes);
  
  	if (likely(i->nr_segs == 1)) {
  		i->iov_offset += bytes;
  		i->count -= bytes;
  	} else {
  		const struct bio_vec *bvec = i->bvec;
  		size_t base = i->iov_offset;
  		unsigned long nr_segs = i->nr_segs;
  
  		/*
  		 * The !iov->iov_len check ensures we skip over unlikely
  		 * zero-length segments (without overruning the iovec).
  		 */
  		while (bytes || unlikely(i->count && !bvec->bv_len)) {
  			int copy;
  
  			copy = min(bytes, bvec->bv_len - base);
  			BUG_ON(!i->count || i->count < copy);
  			i->count -= copy;
  			bytes -= copy;
  			base += copy;
  			if (bvec->bv_len == base) {
  				bvec++;
  				nr_segs--;
  				base = 0;
  			}
  		}
  		i->bvec = bvec;
  		i->iov_offset = base;
  		i->nr_segs = nr_segs;
  	}
  }
  
  static unsigned long alignment_bvec(const struct iov_iter *i)
  {
  	const struct bio_vec *bvec = i->bvec;
  	unsigned long res;
  	size_t size = i->count;
  	size_t n;
  
  	if (!size)
  		return 0;
  
  	res = bvec->bv_offset + i->iov_offset;
  	n = bvec->bv_len - i->iov_offset;
  	if (n >= size)
  		return res | size;
  	size -= n;
  	res |= n;
  	while (size > (++bvec)->bv_len) {
  		res |= bvec->bv_offset | bvec->bv_len;
  		size -= bvec->bv_len;
  	}
  	res |= bvec->bv_offset | size;
  	return res;
  }
  
  static ssize_t get_pages_bvec(struct iov_iter *i,
2c80929c4   Miklos Szeredi   fuse: honour max_...
768
  		   struct page **pages, size_t maxsize, unsigned maxpages,
62a8067a7   Al Viro   bio_vec-backed io...
769
770
771
772
773
774
  		   size_t *start)
  {
  	const struct bio_vec *bvec = i->bvec;
  	size_t len = bvec->bv_len - i->iov_offset;
  	if (len > i->count)
  		len = i->count;
2c80929c4   Miklos Szeredi   fuse: honour max_...
775
776
  	if (len > maxsize)
  		len = maxsize;
c7f3888ad   Al Viro   switch iov_iter_g...
777
  	/* can't be more than PAGE_SIZE */
62a8067a7   Al Viro   bio_vec-backed io...
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
  	*start = bvec->bv_offset + i->iov_offset;
  
  	get_page(*pages = bvec->bv_page);
  
  	return len;
  }
  
  static ssize_t get_pages_alloc_bvec(struct iov_iter *i,
  		   struct page ***pages, size_t maxsize,
  		   size_t *start)
  {
  	const struct bio_vec *bvec = i->bvec;
  	size_t len = bvec->bv_len - i->iov_offset;
  	if (len > i->count)
  		len = i->count;
  	if (len > maxsize)
  		len = maxsize;
  	*start = bvec->bv_offset + i->iov_offset;
  
  	*pages = kmalloc(sizeof(struct page *), GFP_KERNEL);
  	if (!*pages)
  		return -ENOMEM;
  
  	get_page(**pages = bvec->bv_page);
  
  	return len;
  }
  
  static int iov_iter_npages_bvec(const struct iov_iter *i, int maxpages)
  {
  	size_t offset = i->iov_offset;
  	size_t size = i->count;
  	const struct bio_vec *bvec = i->bvec;
  	int npages = 0;
  	int n;
  
  	for (n = 0; size && n < i->nr_segs; n++, bvec++) {
  		size_t len = bvec->bv_len - offset;
  		offset = 0;
  		if (unlikely(!len))	/* empty segment */
  			continue;
  		if (len > size)
  			len = size;
  		npages++;
  		if (npages >= maxpages)	/* don't bother going further */
  			return maxpages;
  		size -= len;
  		offset = 0;
  	}
  	return min(npages, maxpages);
  }
  
  size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
  			 struct iov_iter *i)
  {
  	if (i->type & ITER_BVEC)
  		return copy_page_to_iter_bvec(page, offset, bytes, i);
  	else
  		return copy_page_to_iter_iovec(page, offset, bytes, i);
  }
  EXPORT_SYMBOL(copy_page_to_iter);
  
  size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
  			 struct iov_iter *i)
  {
  	if (i->type & ITER_BVEC)
  		return copy_page_from_iter_bvec(page, offset, bytes, i);
  	else
  		return copy_page_from_iter_iovec(page, offset, bytes, i);
  }
  EXPORT_SYMBOL(copy_page_from_iter);
c35e02480   Matthew Wilcox   Add copy_to_iter(...
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
  size_t copy_to_iter(void *addr, size_t bytes, struct iov_iter *i)
  {
  	if (i->type & ITER_BVEC)
  		return copy_to_iter_bvec(addr, bytes, i);
  	else
  		return copy_to_iter_iovec(addr, bytes, i);
  }
  EXPORT_SYMBOL(copy_to_iter);
  
  size_t copy_from_iter(void *addr, size_t bytes, struct iov_iter *i)
  {
  	if (i->type & ITER_BVEC)
  		return copy_from_iter_bvec(addr, bytes, i);
  	else
  		return copy_from_iter_iovec(addr, bytes, i);
  }
  EXPORT_SYMBOL(copy_from_iter);
  
  size_t iov_iter_zero(size_t bytes, struct iov_iter *i)
  {
  	if (i->type & ITER_BVEC) {
  		return zero_bvec(bytes, i);
  	} else {
  		return zero_iovec(bytes, i);
  	}
  }
  EXPORT_SYMBOL(iov_iter_zero);
62a8067a7   Al Viro   bio_vec-backed io...
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
  size_t iov_iter_copy_from_user_atomic(struct page *page,
  		struct iov_iter *i, unsigned long offset, size_t bytes)
  {
  	if (i->type & ITER_BVEC)
  		return copy_from_user_bvec(page, i, offset, bytes);
  	else
  		return copy_from_user_atomic_iovec(page, i, offset, bytes);
  }
  EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
  
  void iov_iter_advance(struct iov_iter *i, size_t size)
  {
  	if (i->type & ITER_BVEC)
  		advance_bvec(i, size);
  	else
  		advance_iovec(i, size);
  }
  EXPORT_SYMBOL(iov_iter_advance);
  
  /*
   * Return the count of just the current iov_iter segment.
   */
  size_t iov_iter_single_seg_count(const struct iov_iter *i)
  {
  	if (i->nr_segs == 1)
  		return i->count;
  	else if (i->type & ITER_BVEC)
62a8067a7   Al Viro   bio_vec-backed io...
903
  		return min(i->count, i->bvec->bv_len - i->iov_offset);
ad0eab929   Paul Mackerras   Fix thinko in iov...
904
905
  	else
  		return min(i->count, i->iov->iov_len - i->iov_offset);
62a8067a7   Al Viro   bio_vec-backed io...
906
907
908
909
910
911
912
913
914
915
916
917
918
  }
  EXPORT_SYMBOL(iov_iter_single_seg_count);
  
  unsigned long iov_iter_alignment(const struct iov_iter *i)
  {
  	if (i->type & ITER_BVEC)
  		return alignment_bvec(i);
  	else
  		return alignment_iovec(i);
  }
  EXPORT_SYMBOL(iov_iter_alignment);
  
  ssize_t iov_iter_get_pages(struct iov_iter *i,
2c80929c4   Miklos Szeredi   fuse: honour max_...
919
  		   struct page **pages, size_t maxsize, unsigned maxpages,
62a8067a7   Al Viro   bio_vec-backed io...
920
921
922
  		   size_t *start)
  {
  	if (i->type & ITER_BVEC)
2c80929c4   Miklos Szeredi   fuse: honour max_...
923
  		return get_pages_bvec(i, pages, maxsize, maxpages, start);
62a8067a7   Al Viro   bio_vec-backed io...
924
  	else
2c80929c4   Miklos Szeredi   fuse: honour max_...
925
  		return get_pages_iovec(i, pages, maxsize, maxpages, start);
62a8067a7   Al Viro   bio_vec-backed io...
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
  }
  EXPORT_SYMBOL(iov_iter_get_pages);
  
  ssize_t iov_iter_get_pages_alloc(struct iov_iter *i,
  		   struct page ***pages, size_t maxsize,
  		   size_t *start)
  {
  	if (i->type & ITER_BVEC)
  		return get_pages_alloc_bvec(i, pages, maxsize, start);
  	else
  		return get_pages_alloc_iovec(i, pages, maxsize, start);
  }
  EXPORT_SYMBOL(iov_iter_get_pages_alloc);
  
  int iov_iter_npages(const struct iov_iter *i, int maxpages)
  {
  	if (i->type & ITER_BVEC)
  		return iov_iter_npages_bvec(i, maxpages);
  	else
  		return iov_iter_npages_iovec(i, maxpages);
  }
f67da30c1   Al Viro   new helper: iov_i...
947
  EXPORT_SYMBOL(iov_iter_npages);