iov_iter.c 41.8 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2
#include <crypto/hash.h>
A
Al Viro 已提交
3
#include <linux/export.h>
4
#include <linux/bvec.h>
A
Al Viro 已提交
5 6
#include <linux/uio.h>
#include <linux/pagemap.h>
A
Al Viro 已提交
7 8
#include <linux/slab.h>
#include <linux/vmalloc.h>
A
Al Viro 已提交
9
#include <linux/splice.h>
A
Al Viro 已提交
10
#include <net/checksum.h>
11
#include <linux/scatterlist.h>
12
#include <linux/instrumented.h>
A
Al Viro 已提交
13

A
Al Viro 已提交
14 15
#define PIPE_PARANOIA /* for now */

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
#define iterate_iovec(i, n, __v, __p, skip, STEP) {	\
	size_t left;					\
	size_t wanted = n;				\
	__p = i->iov;					\
	__v.iov_len = min(n, __p->iov_len - skip);	\
	if (likely(__v.iov_len)) {			\
		__v.iov_base = __p->iov_base + skip;	\
		left = (STEP);				\
		__v.iov_len -= left;			\
		skip += __v.iov_len;			\
		n -= __v.iov_len;			\
	} else {					\
		left = 0;				\
	}						\
	while (unlikely(!left && n)) {			\
		__p++;					\
		__v.iov_len = min(n, __p->iov_len);	\
		if (unlikely(!__v.iov_len))		\
			continue;			\
		__v.iov_base = __p->iov_base;		\
		left = (STEP);				\
		__v.iov_len -= left;			\
		skip = __v.iov_len;			\
		n -= __v.iov_len;			\
	}						\
	n = wanted - n;					\
}

A
Al Viro 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
#define iterate_kvec(i, n, __v, __p, skip, STEP) {	\
	size_t wanted = n;				\
	__p = i->kvec;					\
	__v.iov_len = min(n, __p->iov_len - skip);	\
	if (likely(__v.iov_len)) {			\
		__v.iov_base = __p->iov_base + skip;	\
		(void)(STEP);				\
		skip += __v.iov_len;			\
		n -= __v.iov_len;			\
	}						\
	while (unlikely(n)) {				\
		__p++;					\
		__v.iov_len = min(n, __p->iov_len);	\
		if (unlikely(!__v.iov_len))		\
			continue;			\
		__v.iov_base = __p->iov_base;		\
		(void)(STEP);				\
		skip = __v.iov_len;			\
		n -= __v.iov_len;			\
	}						\
	n = wanted;					\
}

67 68 69 70 71 72 73
#define iterate_bvec(i, n, __v, __bi, skip, STEP) {	\
	struct bvec_iter __start;			\
	__start.bi_size = n;				\
	__start.bi_bvec_done = skip;			\
	__start.bi_idx = 0;				\
	for_each_bvec(__v, i->bvec, __bi, __start) {	\
		if (!__v.bv_len)			\
74 75 76 77 78
			continue;			\
		(void)(STEP);				\
	}						\
}

A
Al Viro 已提交
79
#define iterate_all_kinds(i, n, v, I, B, K) {			\
80 81 82 83 84 85 86 87 88 89
	if (likely(n)) {					\
		size_t skip = i->iov_offset;			\
		if (unlikely(i->type & ITER_BVEC)) {		\
			struct bio_vec v;			\
			struct bvec_iter __bi;			\
			iterate_bvec(i, n, v, __bi, skip, (B))	\
		} else if (unlikely(i->type & ITER_KVEC)) {	\
			const struct kvec *kvec;		\
			struct kvec v;				\
			iterate_kvec(i, n, v, kvec, skip, (K))	\
D
David Howells 已提交
90
		} else if (unlikely(i->type & ITER_DISCARD)) {	\
91 92 93 94 95
		} else {					\
			const struct iovec *iov;		\
			struct iovec v;				\
			iterate_iovec(i, n, v, iov, skip, (I))	\
		}						\
96 97 98
	}							\
}

A
Al Viro 已提交
99
#define iterate_and_advance(i, n, v, I, B, K) {			\
A
Al Viro 已提交
100 101
	if (unlikely(i->count < n))				\
		n = i->count;					\
102
	if (i->count) {						\
A
Al Viro 已提交
103 104
		size_t skip = i->iov_offset;			\
		if (unlikely(i->type & ITER_BVEC)) {		\
105
			const struct bio_vec *bvec = i->bvec;	\
A
Al Viro 已提交
106
			struct bio_vec v;			\
107 108 109 110 111
			struct bvec_iter __bi;			\
			iterate_bvec(i, n, v, __bi, skip, (B))	\
			i->bvec = __bvec_iter_bvec(i->bvec, __bi);	\
			i->nr_segs -= i->bvec - bvec;		\
			skip = __bi.bi_bvec_done;		\
A
Al Viro 已提交
112 113 114 115 116 117 118 119 120 121
		} else if (unlikely(i->type & ITER_KVEC)) {	\
			const struct kvec *kvec;		\
			struct kvec v;				\
			iterate_kvec(i, n, v, kvec, skip, (K))	\
			if (skip == kvec->iov_len) {		\
				kvec++;				\
				skip = 0;			\
			}					\
			i->nr_segs -= kvec - i->kvec;		\
			i->kvec = kvec;				\
D
David Howells 已提交
122 123
		} else if (unlikely(i->type & ITER_DISCARD)) {	\
			skip += n;				\
A
Al Viro 已提交
124 125 126 127 128 129 130 131 132 133
		} else {					\
			const struct iovec *iov;		\
			struct iovec v;				\
			iterate_iovec(i, n, v, iov, skip, (I))	\
			if (skip == iov->iov_len) {		\
				iov++;				\
				skip = 0;			\
			}					\
			i->nr_segs -= iov - i->iov;		\
			i->iov = iov;				\
A
Al Viro 已提交
134
		}						\
A
Al Viro 已提交
135 136
		i->count -= n;					\
		i->iov_offset = skip;				\
A
Al Viro 已提交
137 138 139
	}							\
}

140 141
static int copyout(void __user *to, const void *from, size_t n)
{
142
	if (access_ok(to, n)) {
143
		instrument_copy_to_user(to, from, n);
144 145 146 147 148 149 150
		n = raw_copy_to_user(to, from, n);
	}
	return n;
}

static int copyin(void *to, const void __user *from, size_t n)
{
151
	if (access_ok(from, n)) {
152
		instrument_copy_from_user(to, from, n);
153 154 155 156 157
		n = raw_copy_from_user(to, from, n);
	}
	return n;
}

A
Al Viro 已提交
158
static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes,
A
Al Viro 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171
			 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;

172
	might_fault();
A
Al Viro 已提交
173 174 175 176 177 178
	wanted = bytes;
	iov = i->iov;
	skip = i->iov_offset;
	buf = iov->iov_base + skip;
	copy = min(bytes, iov->iov_len - skip);

179
	if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_writeable(buf, copy)) {
A
Al Viro 已提交
180 181 182 183
		kaddr = kmap_atomic(page);
		from = kaddr + offset;

		/* first chunk, usually the only one */
184
		left = copyout(buf, from, copy);
A
Al Viro 已提交
185 186 187 188 189 190 191 192 193
		copy -= left;
		skip += copy;
		from += copy;
		bytes -= copy;

		while (unlikely(!left && bytes)) {
			iov++;
			buf = iov->iov_base;
			copy = min(bytes, iov->iov_len);
194
			left = copyout(buf, from, copy);
A
Al Viro 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
			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 */
210

A
Al Viro 已提交
211 212
	kaddr = kmap(page);
	from = kaddr + offset;
213
	left = copyout(buf, from, copy);
A
Al Viro 已提交
214 215 216 217 218 219 220 221
	copy -= left;
	skip += copy;
	from += copy;
	bytes -= copy;
	while (unlikely(!left && bytes)) {
		iov++;
		buf = iov->iov_base;
		copy = min(bytes, iov->iov_len);
222
		left = copyout(buf, from, copy);
A
Al Viro 已提交
223 224 225 226 227 228
		copy -= left;
		skip = copy;
		from += copy;
		bytes -= copy;
	}
	kunmap(page);
229

A
Al Viro 已提交
230
done:
A
Al Viro 已提交
231 232 233 234
	if (skip == iov->iov_len) {
		iov++;
		skip = 0;
	}
A
Al Viro 已提交
235 236 237 238 239 240 241
	i->count -= wanted - bytes;
	i->nr_segs -= iov - i->iov;
	i->iov = iov;
	i->iov_offset = skip;
	return wanted - bytes;
}

A
Al Viro 已提交
242
static size_t copy_page_from_iter_iovec(struct page *page, size_t offset, size_t bytes,
A
Al Viro 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255
			 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;

256
	might_fault();
A
Al Viro 已提交
257 258 259 260 261 262
	wanted = bytes;
	iov = i->iov;
	skip = i->iov_offset;
	buf = iov->iov_base + skip;
	copy = min(bytes, iov->iov_len - skip);

263
	if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_readable(buf, copy)) {
A
Al Viro 已提交
264 265 266 267
		kaddr = kmap_atomic(page);
		to = kaddr + offset;

		/* first chunk, usually the only one */
268
		left = copyin(to, buf, copy);
A
Al Viro 已提交
269 270 271 272 273 274 275 276 277
		copy -= left;
		skip += copy;
		to += copy;
		bytes -= copy;

		while (unlikely(!left && bytes)) {
			iov++;
			buf = iov->iov_base;
			copy = min(bytes, iov->iov_len);
278
			left = copyin(to, buf, copy);
A
Al Viro 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
			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 */
294

A
Al Viro 已提交
295 296
	kaddr = kmap(page);
	to = kaddr + offset;
297
	left = copyin(to, buf, copy);
A
Al Viro 已提交
298 299 300 301 302 303 304 305
	copy -= left;
	skip += copy;
	to += copy;
	bytes -= copy;
	while (unlikely(!left && bytes)) {
		iov++;
		buf = iov->iov_base;
		copy = min(bytes, iov->iov_len);
306
		left = copyin(to, buf, copy);
A
Al Viro 已提交
307 308 309 310 311 312
		copy -= left;
		skip = copy;
		to += copy;
		bytes -= copy;
	}
	kunmap(page);
313

A
Al Viro 已提交
314
done:
A
Al Viro 已提交
315 316 317 318
	if (skip == iov->iov_len) {
		iov++;
		skip = 0;
	}
A
Al Viro 已提交
319 320 321 322 323 324 325
	i->count -= wanted - bytes;
	i->nr_segs -= iov - i->iov;
	i->iov = iov;
	i->iov_offset = skip;
	return wanted - bytes;
}

A
Al Viro 已提交
326 327 328 329
#ifdef PIPE_PARANOIA
static bool sanity(const struct iov_iter *i)
{
	struct pipe_inode_info *pipe = i->pipe;
330 331 332 333 334 335 336
	unsigned int p_head = pipe->head;
	unsigned int p_tail = pipe->tail;
	unsigned int p_mask = pipe->ring_size - 1;
	unsigned int p_occupancy = pipe_occupancy(p_head, p_tail);
	unsigned int i_head = i->head;
	unsigned int idx;

A
Al Viro 已提交
337 338
	if (i->iov_offset) {
		struct pipe_buffer *p;
339
		if (unlikely(p_occupancy == 0))
A
Al Viro 已提交
340
			goto Bad;	// pipe must be non-empty
341
		if (unlikely(i_head != p_head - 1))
A
Al Viro 已提交
342 343
			goto Bad;	// must be at the last buffer...

344
		p = &pipe->bufs[i_head & p_mask];
A
Al Viro 已提交
345 346 347
		if (unlikely(p->offset + p->len != i->iov_offset))
			goto Bad;	// ... at the end of segment
	} else {
348
		if (i_head != p_head)
A
Al Viro 已提交
349 350 351 352
			goto Bad;	// must be right after the last buffer
	}
	return true;
Bad:
353 354 355 356
	printk(KERN_ERR "idx = %d, offset = %zd\n", i_head, i->iov_offset);
	printk(KERN_ERR "head = %d, tail = %d, buffers = %d\n",
			p_head, p_tail, pipe->ring_size);
	for (idx = 0; idx < pipe->ring_size; idx++)
A
Al Viro 已提交
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
		printk(KERN_ERR "[%p %p %d %d]\n",
			pipe->bufs[idx].ops,
			pipe->bufs[idx].page,
			pipe->bufs[idx].offset,
			pipe->bufs[idx].len);
	WARN_ON(1);
	return false;
}
#else
#define sanity(i) true
#endif

static size_t copy_page_to_iter_pipe(struct page *page, size_t offset, size_t bytes,
			 struct iov_iter *i)
{
	struct pipe_inode_info *pipe = i->pipe;
	struct pipe_buffer *buf;
374 375 376
	unsigned int p_tail = pipe->tail;
	unsigned int p_mask = pipe->ring_size - 1;
	unsigned int i_head = i->head;
A
Al Viro 已提交
377 378 379 380 381 382 383 384 385 386 387 388
	size_t off;

	if (unlikely(bytes > i->count))
		bytes = i->count;

	if (unlikely(!bytes))
		return 0;

	if (!sanity(i))
		return 0;

	off = i->iov_offset;
389
	buf = &pipe->bufs[i_head & p_mask];
A
Al Viro 已提交
390 391 392 393 394 395 396
	if (off) {
		if (offset == off && buf->page == page) {
			/* merge with the last one */
			buf->len += bytes;
			i->iov_offset += bytes;
			goto out;
		}
397 398
		i_head++;
		buf = &pipe->bufs[i_head & p_mask];
A
Al Viro 已提交
399
	}
400
	if (pipe_full(i_head, p_tail, pipe->max_usage))
A
Al Viro 已提交
401
		return 0;
402

A
Al Viro 已提交
403
	buf->ops = &page_cache_pipe_buf_ops;
404 405
	get_page(page);
	buf->page = page;
A
Al Viro 已提交
406 407
	buf->offset = offset;
	buf->len = bytes;
408 409

	pipe->head = i_head + 1;
A
Al Viro 已提交
410
	i->iov_offset = offset + bytes;
411
	i->head = i_head;
A
Al Viro 已提交
412 413 414 415 416
out:
	i->count -= bytes;
	return bytes;
}

417 418 419 420 421 422 423
/*
 * Fault in one or more iovecs of the given iov_iter, to a maximum length of
 * bytes.  For each iovec, fault in each page that constitutes the iovec.
 *
 * Return 0 on success, or non-zero if the memory could not be accessed (i.e.
 * because it is an invalid address).
 */
A
Al Viro 已提交
424
int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
425 426 427 428 429 430 431 432
{
	size_t skip = i->iov_offset;
	const struct iovec *iov;
	int err;
	struct iovec v;

	if (!(i->type & (ITER_BVEC|ITER_KVEC))) {
		iterate_iovec(i, bytes, v, iov, skip, ({
433
			err = fault_in_pages_readable(v.iov_base, v.iov_len);
434 435 436 437 438 439
			if (unlikely(err))
			return err;
		0;}))
	}
	return 0;
}
A
Al Viro 已提交
440
EXPORT_SYMBOL(iov_iter_fault_in_readable);
441

442
void iov_iter_init(struct iov_iter *i, unsigned int direction,
A
Al Viro 已提交
443 444 445
			const struct iovec *iov, unsigned long nr_segs,
			size_t count)
{
446 447 448
	WARN_ON(direction & ~(READ | WRITE));
	direction &= READ | WRITE;

A
Al Viro 已提交
449
	/* It will get better.  Eventually... */
A
Al Viro 已提交
450
	if (uaccess_kernel()) {
451
		i->type = ITER_KVEC | direction;
A
Al Viro 已提交
452 453
		i->kvec = (struct kvec *)iov;
	} else {
454
		i->type = ITER_IOVEC | direction;
A
Al Viro 已提交
455 456
		i->iov = iov;
	}
A
Al Viro 已提交
457 458 459 460 461
	i->nr_segs = nr_segs;
	i->iov_offset = 0;
	i->count = count;
}
EXPORT_SYMBOL(iov_iter_init);
A
Al Viro 已提交
462

A
Al Viro 已提交
463 464 465 466 467 468 469
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);
}

470
static void memcpy_to_page(struct page *page, size_t offset, const char *from, size_t len)
A
Al Viro 已提交
471 472 473 474 475 476
{
	char *to = kmap_atomic(page);
	memcpy(to + offset, from, len);
	kunmap_atomic(to);
}

477 478 479 480 481 482 483
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);
}

A
Al Viro 已提交
484 485 486 487 488
static inline bool allocated(struct pipe_buffer *buf)
{
	return buf->ops == &default_pipe_buf_ops;
}

489 490
static inline void data_start(const struct iov_iter *i,
			      unsigned int *iter_headp, size_t *offp)
A
Al Viro 已提交
491
{
492 493
	unsigned int p_mask = i->pipe->ring_size - 1;
	unsigned int iter_head = i->head;
A
Al Viro 已提交
494
	size_t off = i->iov_offset;
495 496 497 498

	if (off && (!allocated(&i->pipe->bufs[iter_head & p_mask]) ||
		    off == PAGE_SIZE)) {
		iter_head++;
A
Al Viro 已提交
499 500
		off = 0;
	}
501
	*iter_headp = iter_head;
A
Al Viro 已提交
502 503 504 505
	*offp = off;
}

static size_t push_pipe(struct iov_iter *i, size_t size,
506
			int *iter_headp, size_t *offp)
A
Al Viro 已提交
507 508
{
	struct pipe_inode_info *pipe = i->pipe;
509 510 511
	unsigned int p_tail = pipe->tail;
	unsigned int p_mask = pipe->ring_size - 1;
	unsigned int iter_head;
A
Al Viro 已提交
512 513 514 515 516 517 518 519 520
	size_t off;
	ssize_t left;

	if (unlikely(size > i->count))
		size = i->count;
	if (unlikely(!size))
		return 0;

	left = size;
521 522
	data_start(i, &iter_head, &off);
	*iter_headp = iter_head;
A
Al Viro 已提交
523 524 525 526
	*offp = off;
	if (off) {
		left -= PAGE_SIZE - off;
		if (left <= 0) {
527
			pipe->bufs[iter_head & p_mask].len += size;
A
Al Viro 已提交
528 529
			return size;
		}
530 531
		pipe->bufs[iter_head & p_mask].len = PAGE_SIZE;
		iter_head++;
A
Al Viro 已提交
532
	}
533
	while (!pipe_full(iter_head, p_tail, pipe->max_usage)) {
534
		struct pipe_buffer *buf = &pipe->bufs[iter_head & p_mask];
A
Al Viro 已提交
535 536 537
		struct page *page = alloc_page(GFP_USER);
		if (!page)
			break;
538 539 540 541 542 543 544 545 546 547

		buf->ops = &default_pipe_buf_ops;
		buf->page = page;
		buf->offset = 0;
		buf->len = min_t(ssize_t, left, PAGE_SIZE);
		left -= buf->len;
		iter_head++;
		pipe->head = iter_head;

		if (left == 0)
A
Al Viro 已提交
548 549 550 551 552 553 554 555 556
			return size;
	}
	return size - left;
}

static size_t copy_pipe_to_iter(const void *addr, size_t bytes,
				struct iov_iter *i)
{
	struct pipe_inode_info *pipe = i->pipe;
557 558
	unsigned int p_mask = pipe->ring_size - 1;
	unsigned int i_head;
A
Al Viro 已提交
559 560 561 562 563
	size_t n, off;

	if (!sanity(i))
		return 0;

564
	bytes = n = push_pipe(i, bytes, &i_head, &off);
A
Al Viro 已提交
565 566
	if (unlikely(!n))
		return 0;
567
	do {
A
Al Viro 已提交
568
		size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
569 570
		memcpy_to_page(pipe->bufs[i_head & p_mask].page, off, addr, chunk);
		i->head = i_head;
A
Al Viro 已提交
571 572 573
		i->iov_offset = off + chunk;
		n -= chunk;
		addr += chunk;
574 575 576
		off = 0;
		i_head++;
	} while (n);
A
Al Viro 已提交
577 578 579 580
	i->count -= bytes;
	return bytes;
}

A
Al Viro 已提交
581 582 583 584 585 586 587
static __wsum csum_and_memcpy(void *to, const void *from, size_t len,
			      __wsum sum, size_t off)
{
	__wsum next = csum_partial_copy_nocheck(from, to, len, 0);
	return csum_block_add(sum, next, off);
}

588 589 590 591
static size_t csum_and_copy_to_pipe_iter(const void *addr, size_t bytes,
				__wsum *csum, struct iov_iter *i)
{
	struct pipe_inode_info *pipe = i->pipe;
592 593
	unsigned int p_mask = pipe->ring_size - 1;
	unsigned int i_head;
594 595
	size_t n, r;
	size_t off = 0;
A
Al Viro 已提交
596
	__wsum sum = *csum;
597 598 599 600

	if (!sanity(i))
		return 0;

601
	bytes = n = push_pipe(i, bytes, &i_head, &r);
602 603
	if (unlikely(!n))
		return 0;
604
	do {
605
		size_t chunk = min_t(size_t, n, PAGE_SIZE - r);
606
		char *p = kmap_atomic(pipe->bufs[i_head & p_mask].page);
A
Al Viro 已提交
607
		sum = csum_and_memcpy(p + r, addr, chunk, sum, off);
608
		kunmap_atomic(p);
609
		i->head = i_head;
610 611 612 613
		i->iov_offset = r + chunk;
		n -= chunk;
		off += chunk;
		addr += chunk;
614 615 616
		r = 0;
		i_head++;
	} while (n);
617 618 619 620 621
	i->count -= bytes;
	*csum = sum;
	return bytes;
}

622
size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
A
Al Viro 已提交
623
{
624
	const char *from = addr;
D
David Howells 已提交
625
	if (unlikely(iov_iter_is_pipe(i)))
A
Al Viro 已提交
626
		return copy_pipe_to_iter(addr, bytes, i);
627 628
	if (iter_is_iovec(i))
		might_fault();
629
	iterate_and_advance(i, bytes, v,
630
		copyout(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len),
631
		memcpy_to_page(v.bv_page, v.bv_offset,
A
Al Viro 已提交
632 633
			       (from += v.bv_len) - v.bv_len, v.bv_len),
		memcpy(v.iov_base, (from += v.iov_len) - v.iov_len, v.iov_len)
634
	)
A
Al Viro 已提交
635

636
	return bytes;
637
}
638
EXPORT_SYMBOL(_copy_to_iter);
639

640 641
#ifdef CONFIG_ARCH_HAS_COPY_MC
static int copyout_mc(void __user *to, const void *from, size_t n)
642
{
643
	if (access_ok(to, n)) {
644
		instrument_copy_to_user(to, from, n);
645
		n = copy_mc_to_user((__force void *) to, from, n);
646 647 648 649
	}
	return n;
}

650
static unsigned long copy_mc_to_page(struct page *page, size_t offset,
651 652 653 654 655 656
		const char *from, size_t len)
{
	unsigned long ret;
	char *to;

	to = kmap_atomic(page);
657
	ret = copy_mc_to_kernel(to + offset, from, len);
658 659 660 661 662
	kunmap_atomic(to);

	return ret;
}

663
static size_t copy_mc_pipe_to_iter(const void *addr, size_t bytes,
664 665 666
				struct iov_iter *i)
{
	struct pipe_inode_info *pipe = i->pipe;
667 668
	unsigned int p_mask = pipe->ring_size - 1;
	unsigned int i_head;
669 670 671 672 673
	size_t n, off, xfer = 0;

	if (!sanity(i))
		return 0;

674
	bytes = n = push_pipe(i, bytes, &i_head, &off);
675 676
	if (unlikely(!n))
		return 0;
677
	do {
678 679 680
		size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
		unsigned long rem;

681
		rem = copy_mc_to_page(pipe->bufs[i_head & p_mask].page,
682 683
					    off, addr, chunk);
		i->head = i_head;
684 685 686 687 688 689
		i->iov_offset = off + chunk - rem;
		xfer += chunk - rem;
		if (rem)
			break;
		n -= chunk;
		addr += chunk;
690 691 692
		off = 0;
		i_head++;
	} while (n);
693 694 695 696
	i->count -= xfer;
	return xfer;
}

697
/**
698
 * _copy_mc_to_iter - copy to iter with source memory error exception handling
699 700 701 702
 * @addr: source kernel address
 * @bytes: total transfer length
 * @iter: destination iterator
 *
703 704 705 706
 * The pmem driver deploys this for the dax operation
 * (dax_copy_to_iter()) for dax reads (bypass page-cache and the
 * block-layer). Upon #MC read(2) aborts and returns EIO or the bytes
 * successfully copied.
707
 *
708
 * The main differences between this and typical _copy_to_iter().
709 710 711 712 713 714 715 716 717 718 719
 *
 * * Typical tail/residue handling after a fault retries the copy
 *   byte-by-byte until the fault happens again. Re-triggering machine
 *   checks is potentially fatal so the implementation uses source
 *   alignment and poison alignment assumptions to avoid re-triggering
 *   hardware exceptions.
 *
 * * ITER_KVEC, ITER_PIPE, and ITER_BVEC can return short copies.
 *   Compare to copy_to_iter() where only ITER_IOVEC attempts might return
 *   a short copy.
 */
720
size_t _copy_mc_to_iter(const void *addr, size_t bytes, struct iov_iter *i)
721 722 723 724
{
	const char *from = addr;
	unsigned long rem, curr_addr, s_addr = (unsigned long) addr;

D
David Howells 已提交
725
	if (unlikely(iov_iter_is_pipe(i)))
726
		return copy_mc_pipe_to_iter(addr, bytes, i);
727 728 729
	if (iter_is_iovec(i))
		might_fault();
	iterate_and_advance(i, bytes, v,
730 731
		copyout_mc(v.iov_base, (from += v.iov_len) - v.iov_len,
			   v.iov_len),
732
		({
733 734
		rem = copy_mc_to_page(v.bv_page, v.bv_offset,
				      (from += v.bv_len) - v.bv_len, v.bv_len);
735 736 737 738 739 740 741
		if (rem) {
			curr_addr = (unsigned long) from;
			bytes = curr_addr - s_addr - rem;
			return bytes;
		}
		}),
		({
742 743
		rem = copy_mc_to_kernel(v.iov_base, (from += v.iov_len)
					- v.iov_len, v.iov_len);
744 745 746 747 748 749 750 751 752 753
		if (rem) {
			curr_addr = (unsigned long) from;
			bytes = curr_addr - s_addr - rem;
			return bytes;
		}
		})
	)

	return bytes;
}
754 755
EXPORT_SYMBOL_GPL(_copy_mc_to_iter);
#endif /* CONFIG_ARCH_HAS_COPY_MC */
756

757
size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i)
758
{
759
	char *to = addr;
D
David Howells 已提交
760
	if (unlikely(iov_iter_is_pipe(i))) {
A
Al Viro 已提交
761 762 763
		WARN_ON(1);
		return 0;
	}
764 765
	if (iter_is_iovec(i))
		might_fault();
766
	iterate_and_advance(i, bytes, v,
767
		copyin((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len),
768
		memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
A
Al Viro 已提交
769 770
				 v.bv_offset, v.bv_len),
		memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
771 772 773
	)

	return bytes;
774
}
775
EXPORT_SYMBOL(_copy_from_iter);
776

777
bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i)
778 779
{
	char *to = addr;
D
David Howells 已提交
780
	if (unlikely(iov_iter_is_pipe(i))) {
781 782 783
		WARN_ON(1);
		return false;
	}
784
	if (unlikely(i->count < bytes))
785 786
		return false;

787 788
	if (iter_is_iovec(i))
		might_fault();
789
	iterate_all_kinds(i, bytes, v, ({
790
		if (copyin((to += v.iov_len) - v.iov_len,
791 792 793 794 795 796 797 798 799 800 801
				      v.iov_base, v.iov_len))
			return false;
		0;}),
		memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
				 v.bv_offset, v.bv_len),
		memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
	)

	iov_iter_advance(i, bytes);
	return true;
}
802
EXPORT_SYMBOL(_copy_from_iter_full);
803

804
size_t _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i)
A
Al Viro 已提交
805 806
{
	char *to = addr;
D
David Howells 已提交
807
	if (unlikely(iov_iter_is_pipe(i))) {
A
Al Viro 已提交
808 809 810
		WARN_ON(1);
		return 0;
	}
A
Al Viro 已提交
811
	iterate_and_advance(i, bytes, v,
A
Al Viro 已提交
812
		__copy_from_user_inatomic_nocache((to += v.iov_len) - v.iov_len,
A
Al Viro 已提交
813 814 815 816 817 818 819 820
					 v.iov_base, v.iov_len),
		memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
				 v.bv_offset, v.bv_len),
		memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
	)

	return bytes;
}
821
EXPORT_SYMBOL(_copy_from_iter_nocache);
A
Al Viro 已提交
822

823
#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
824 825 826 827 828 829 830 831 832 833 834 835 836 837
/**
 * _copy_from_iter_flushcache - write destination through cpu cache
 * @addr: destination kernel address
 * @bytes: total transfer length
 * @iter: source iterator
 *
 * The pmem driver arranges for filesystem-dax to use this facility via
 * dax_copy_from_iter() for ensuring that writes to persistent memory
 * are flushed through the CPU cache. It is differentiated from
 * _copy_from_iter_nocache() in that guarantees all data is flushed for
 * all iterator types. The _copy_from_iter_nocache() only attempts to
 * bypass the cache for the ITER_IOVEC case, and on some archs may use
 * instructions that strand dirty-data in the cache.
 */
838
size_t _copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i)
839 840
{
	char *to = addr;
D
David Howells 已提交
841
	if (unlikely(iov_iter_is_pipe(i))) {
842 843 844 845 846 847 848 849 850 851 852 853 854 855
		WARN_ON(1);
		return 0;
	}
	iterate_and_advance(i, bytes, v,
		__copy_from_user_flushcache((to += v.iov_len) - v.iov_len,
					 v.iov_base, v.iov_len),
		memcpy_page_flushcache((to += v.bv_len) - v.bv_len, v.bv_page,
				 v.bv_offset, v.bv_len),
		memcpy_flushcache((to += v.iov_len) - v.iov_len, v.iov_base,
			v.iov_len)
	)

	return bytes;
}
856
EXPORT_SYMBOL_GPL(_copy_from_iter_flushcache);
857 858
#endif

859
bool _copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i)
860 861
{
	char *to = addr;
D
David Howells 已提交
862
	if (unlikely(iov_iter_is_pipe(i))) {
863 864 865
		WARN_ON(1);
		return false;
	}
866
	if (unlikely(i->count < bytes))
867 868
		return false;
	iterate_all_kinds(i, bytes, v, ({
A
Al Viro 已提交
869
		if (__copy_from_user_inatomic_nocache((to += v.iov_len) - v.iov_len,
870 871 872 873 874 875 876 877 878 879 880
					     v.iov_base, v.iov_len))
			return false;
		0;}),
		memcpy_from_page((to += v.bv_len) - v.bv_len, v.bv_page,
				 v.bv_offset, v.bv_len),
		memcpy((to += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
	)

	iov_iter_advance(i, bytes);
	return true;
}
881
EXPORT_SYMBOL(_copy_from_iter_full_nocache);
882

883 884
static inline bool page_copy_sane(struct page *page, size_t offset, size_t n)
{
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
	struct page *head;
	size_t v = n + offset;

	/*
	 * The general case needs to access the page order in order
	 * to compute the page size.
	 * However, we mostly deal with order-0 pages and thus can
	 * avoid a possible cache line miss for requests that fit all
	 * page orders.
	 */
	if (n <= v && v <= PAGE_SIZE)
		return true;

	head = compound_head(page);
	v += (page - head) << PAGE_SHIFT;
900

901
	if (likely(n <= v && v <= (page_size(head))))
902 903 904 905
		return true;
	WARN_ON(1);
	return false;
}
906

A
Al Viro 已提交
907 908 909
size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
			 struct iov_iter *i)
{
910 911
	if (unlikely(!page_copy_sane(page, offset, bytes)))
		return 0;
912 913 914 915 916
	if (i->type & (ITER_BVEC|ITER_KVEC)) {
		void *kaddr = kmap_atomic(page);
		size_t wanted = copy_to_iter(kaddr + offset, bytes, i);
		kunmap_atomic(kaddr);
		return wanted;
D
David Howells 已提交
917 918 919
	} else if (unlikely(iov_iter_is_discard(i)))
		return bytes;
	else if (likely(!iov_iter_is_pipe(i)))
A
Al Viro 已提交
920
		return copy_page_to_iter_iovec(page, offset, bytes, i);
A
Al Viro 已提交
921 922
	else
		return copy_page_to_iter_pipe(page, offset, bytes, i);
A
Al Viro 已提交
923 924 925 926 927 928
}
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)
{
929 930
	if (unlikely(!page_copy_sane(page, offset, bytes)))
		return 0;
D
David Howells 已提交
931
	if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
A
Al Viro 已提交
932 933 934
		WARN_ON(1);
		return 0;
	}
A
Al Viro 已提交
935
	if (i->type & (ITER_BVEC|ITER_KVEC)) {
936
		void *kaddr = kmap_atomic(page);
937
		size_t wanted = _copy_from_iter(kaddr + offset, bytes, i);
938 939 940
		kunmap_atomic(kaddr);
		return wanted;
	} else
A
Al Viro 已提交
941 942 943 944
		return copy_page_from_iter_iovec(page, offset, bytes, i);
}
EXPORT_SYMBOL(copy_page_from_iter);

A
Al Viro 已提交
945 946 947
static size_t pipe_zero(size_t bytes, struct iov_iter *i)
{
	struct pipe_inode_info *pipe = i->pipe;
948 949
	unsigned int p_mask = pipe->ring_size - 1;
	unsigned int i_head;
A
Al Viro 已提交
950 951 952 953 954
	size_t n, off;

	if (!sanity(i))
		return 0;

955
	bytes = n = push_pipe(i, bytes, &i_head, &off);
A
Al Viro 已提交
956 957 958
	if (unlikely(!n))
		return 0;

959
	do {
A
Al Viro 已提交
960
		size_t chunk = min_t(size_t, n, PAGE_SIZE - off);
961 962
		memzero_page(pipe->bufs[i_head & p_mask].page, off, chunk);
		i->head = i_head;
A
Al Viro 已提交
963 964
		i->iov_offset = off + chunk;
		n -= chunk;
965 966 967
		off = 0;
		i_head++;
	} while (n);
A
Al Viro 已提交
968 969 970 971
	i->count -= bytes;
	return bytes;
}

972 973
size_t iov_iter_zero(size_t bytes, struct iov_iter *i)
{
D
David Howells 已提交
974
	if (unlikely(iov_iter_is_pipe(i)))
A
Al Viro 已提交
975
		return pipe_zero(bytes, i);
976
	iterate_and_advance(i, bytes, v,
977
		clear_user(v.iov_base, v.iov_len),
A
Al Viro 已提交
978 979
		memzero_page(v.bv_page, v.bv_offset, v.bv_len),
		memset(v.iov_base, 0, v.iov_len)
980 981 982
	)

	return bytes;
983 984 985
}
EXPORT_SYMBOL(iov_iter_zero);

A
Al Viro 已提交
986 987 988
size_t iov_iter_copy_from_user_atomic(struct page *page,
		struct iov_iter *i, unsigned long offset, size_t bytes)
{
989
	char *kaddr = kmap_atomic(page), *p = kaddr + offset;
990 991 992 993
	if (unlikely(!page_copy_sane(page, offset, bytes))) {
		kunmap_atomic(kaddr);
		return 0;
	}
D
David Howells 已提交
994
	if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
A
Al Viro 已提交
995 996 997 998
		kunmap_atomic(kaddr);
		WARN_ON(1);
		return 0;
	}
999
	iterate_all_kinds(i, bytes, v,
1000
		copyin((p += v.iov_len) - v.iov_len, v.iov_base, v.iov_len),
1001
		memcpy_from_page((p += v.bv_len) - v.bv_len, v.bv_page,
A
Al Viro 已提交
1002 1003
				 v.bv_offset, v.bv_len),
		memcpy((p += v.iov_len) - v.iov_len, v.iov_base, v.iov_len)
1004 1005 1006
	)
	kunmap_atomic(kaddr);
	return bytes;
A
Al Viro 已提交
1007 1008 1009
}
EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);

1010 1011 1012
static inline void pipe_truncate(struct iov_iter *i)
{
	struct pipe_inode_info *pipe = i->pipe;
1013 1014 1015 1016 1017 1018 1019
	unsigned int p_tail = pipe->tail;
	unsigned int p_head = pipe->head;
	unsigned int p_mask = pipe->ring_size - 1;

	if (!pipe_empty(p_head, p_tail)) {
		struct pipe_buffer *buf;
		unsigned int i_head = i->head;
1020
		size_t off = i->iov_offset;
1021

1022
		if (off) {
1023 1024 1025
			buf = &pipe->bufs[i_head & p_mask];
			buf->len = off - buf->offset;
			i_head++;
1026
		}
1027 1028 1029
		while (p_head != i_head) {
			p_head--;
			pipe_buf_release(pipe, &pipe->bufs[p_head & p_mask]);
1030
		}
1031 1032

		pipe->head = p_head;
1033 1034 1035
	}
}

A
Al Viro 已提交
1036 1037 1038 1039 1040 1041
static void pipe_advance(struct iov_iter *i, size_t size)
{
	struct pipe_inode_info *pipe = i->pipe;
	if (unlikely(i->count < size))
		size = i->count;
	if (size) {
1042
		struct pipe_buffer *buf;
1043 1044
		unsigned int p_mask = pipe->ring_size - 1;
		unsigned int i_head = i->head;
1045
		size_t off = i->iov_offset, left = size;
1046

A
Al Viro 已提交
1047
		if (off) /* make it relative to the beginning of buffer */
1048
			left += off - pipe->bufs[i_head & p_mask].offset;
A
Al Viro 已提交
1049
		while (1) {
1050
			buf = &pipe->bufs[i_head & p_mask];
1051
			if (left <= buf->len)
A
Al Viro 已提交
1052
				break;
1053
			left -= buf->len;
1054
			i_head++;
A
Al Viro 已提交
1055
		}
1056
		i->head = i_head;
1057
		i->iov_offset = buf->offset + left;
A
Al Viro 已提交
1058
	}
1059 1060 1061
	i->count -= size;
	/* ... and discard everything past that point */
	pipe_truncate(i);
A
Al Viro 已提交
1062 1063
}

A
Al Viro 已提交
1064 1065
void iov_iter_advance(struct iov_iter *i, size_t size)
{
D
David Howells 已提交
1066
	if (unlikely(iov_iter_is_pipe(i))) {
A
Al Viro 已提交
1067 1068 1069
		pipe_advance(i, size);
		return;
	}
D
David Howells 已提交
1070 1071 1072 1073
	if (unlikely(iov_iter_is_discard(i))) {
		i->count -= size;
		return;
	}
A
Al Viro 已提交
1074
	iterate_and_advance(i, size, v, 0, 0, 0)
A
Al Viro 已提交
1075 1076 1077
}
EXPORT_SYMBOL(iov_iter_advance);

1078 1079 1080 1081
void iov_iter_revert(struct iov_iter *i, size_t unroll)
{
	if (!unroll)
		return;
A
Al Viro 已提交
1082 1083
	if (WARN_ON(unroll > MAX_RW_COUNT))
		return;
1084
	i->count += unroll;
D
David Howells 已提交
1085
	if (unlikely(iov_iter_is_pipe(i))) {
1086
		struct pipe_inode_info *pipe = i->pipe;
1087 1088
		unsigned int p_mask = pipe->ring_size - 1;
		unsigned int i_head = i->head;
1089 1090
		size_t off = i->iov_offset;
		while (1) {
1091 1092
			struct pipe_buffer *b = &pipe->bufs[i_head & p_mask];
			size_t n = off - b->offset;
1093
			if (unroll < n) {
1094
				off -= unroll;
1095 1096 1097
				break;
			}
			unroll -= n;
1098
			if (!unroll && i_head == i->start_head) {
1099 1100 1101
				off = 0;
				break;
			}
1102 1103 1104
			i_head--;
			b = &pipe->bufs[i_head & p_mask];
			off = b->offset + b->len;
1105 1106
		}
		i->iov_offset = off;
1107
		i->head = i_head;
1108 1109 1110
		pipe_truncate(i);
		return;
	}
D
David Howells 已提交
1111 1112
	if (unlikely(iov_iter_is_discard(i)))
		return;
1113 1114 1115 1116 1117
	if (unroll <= i->iov_offset) {
		i->iov_offset -= unroll;
		return;
	}
	unroll -= i->iov_offset;
D
David Howells 已提交
1118
	if (iov_iter_is_bvec(i)) {
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
		const struct bio_vec *bvec = i->bvec;
		while (1) {
			size_t n = (--bvec)->bv_len;
			i->nr_segs++;
			if (unroll <= n) {
				i->bvec = bvec;
				i->iov_offset = n - unroll;
				return;
			}
			unroll -= n;
		}
	} else { /* same logics for iovec and kvec */
		const struct iovec *iov = i->iov;
		while (1) {
			size_t n = (--iov)->iov_len;
			i->nr_segs++;
			if (unroll <= n) {
				i->iov = iov;
				i->iov_offset = n - unroll;
				return;
			}
			unroll -= n;
		}
	}
}
EXPORT_SYMBOL(iov_iter_revert);

A
Al Viro 已提交
1146 1147 1148 1149 1150
/*
 * Return the count of just the current iov_iter segment.
 */
size_t iov_iter_single_seg_count(const struct iov_iter *i)
{
D
David Howells 已提交
1151
	if (unlikely(iov_iter_is_pipe(i)))
A
Al Viro 已提交
1152
		return i->count;	// it is a silly place, anyway
A
Al Viro 已提交
1153 1154
	if (i->nr_segs == 1)
		return i->count;
D
David Howells 已提交
1155 1156
	if (unlikely(iov_iter_is_discard(i)))
		return i->count;
D
David Howells 已提交
1157
	else if (iov_iter_is_bvec(i))
A
Al Viro 已提交
1158
		return min(i->count, i->bvec->bv_len - i->iov_offset);
1159 1160
	else
		return min(i->count, i->iov->iov_len - i->iov_offset);
A
Al Viro 已提交
1161 1162 1163
}
EXPORT_SYMBOL(iov_iter_single_seg_count);

1164
void iov_iter_kvec(struct iov_iter *i, unsigned int direction,
A
Al Viro 已提交
1165
			const struct kvec *kvec, unsigned long nr_segs,
A
Al Viro 已提交
1166 1167
			size_t count)
{
1168 1169
	WARN_ON(direction & ~(READ | WRITE));
	i->type = ITER_KVEC | (direction & (READ | WRITE));
A
Al Viro 已提交
1170
	i->kvec = kvec;
A
Al Viro 已提交
1171 1172 1173 1174 1175 1176
	i->nr_segs = nr_segs;
	i->iov_offset = 0;
	i->count = count;
}
EXPORT_SYMBOL(iov_iter_kvec);

1177
void iov_iter_bvec(struct iov_iter *i, unsigned int direction,
A
Al Viro 已提交
1178 1179 1180
			const struct bio_vec *bvec, unsigned long nr_segs,
			size_t count)
{
1181 1182
	WARN_ON(direction & ~(READ | WRITE));
	i->type = ITER_BVEC | (direction & (READ | WRITE));
A
Al Viro 已提交
1183 1184 1185 1186 1187 1188 1189
	i->bvec = bvec;
	i->nr_segs = nr_segs;
	i->iov_offset = 0;
	i->count = count;
}
EXPORT_SYMBOL(iov_iter_bvec);

1190
void iov_iter_pipe(struct iov_iter *i, unsigned int direction,
A
Al Viro 已提交
1191 1192 1193
			struct pipe_inode_info *pipe,
			size_t count)
{
1194
	BUG_ON(direction != READ);
1195
	WARN_ON(pipe_full(pipe->head, pipe->tail, pipe->ring_size));
1196
	i->type = ITER_PIPE | READ;
A
Al Viro 已提交
1197
	i->pipe = pipe;
1198
	i->head = pipe->head;
A
Al Viro 已提交
1199 1200
	i->iov_offset = 0;
	i->count = count;
1201
	i->start_head = i->head;
A
Al Viro 已提交
1202 1203 1204
}
EXPORT_SYMBOL(iov_iter_pipe);

D
David Howells 已提交
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
/**
 * iov_iter_discard - Initialise an I/O iterator that discards data
 * @i: The iterator to initialise.
 * @direction: The direction of the transfer.
 * @count: The size of the I/O buffer in bytes.
 *
 * Set up an I/O iterator that just discards everything that's written to it.
 * It's only available as a READ iterator.
 */
void iov_iter_discard(struct iov_iter *i, unsigned int direction, size_t count)
{
	BUG_ON(direction != READ);
	i->type = ITER_DISCARD | READ;
	i->count = count;
	i->iov_offset = 0;
}
EXPORT_SYMBOL(iov_iter_discard);

A
Al Viro 已提交
1223 1224
unsigned long iov_iter_alignment(const struct iov_iter *i)
{
1225 1226 1227
	unsigned long res = 0;
	size_t size = i->count;

D
David Howells 已提交
1228
	if (unlikely(iov_iter_is_pipe(i))) {
1229 1230
		unsigned int p_mask = i->pipe->ring_size - 1;

1231
		if (size && i->iov_offset && allocated(&i->pipe->bufs[i->head & p_mask]))
A
Al Viro 已提交
1232 1233 1234
			return size | i->iov_offset;
		return size;
	}
1235 1236
	iterate_all_kinds(i, size, v,
		(res |= (unsigned long)v.iov_base | v.iov_len, 0),
A
Al Viro 已提交
1237 1238
		res |= v.bv_offset | v.bv_len,
		res |= (unsigned long)v.iov_base | v.iov_len
1239 1240
	)
	return res;
A
Al Viro 已提交
1241 1242 1243
}
EXPORT_SYMBOL(iov_iter_alignment);

1244 1245
unsigned long iov_iter_gap_alignment(const struct iov_iter *i)
{
1246
	unsigned long res = 0;
1247 1248
	size_t size = i->count;

D
David Howells 已提交
1249
	if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
A
Al Viro 已提交
1250 1251 1252 1253
		WARN_ON(1);
		return ~0U;
	}

1254 1255 1256 1257 1258 1259 1260 1261
	iterate_all_kinds(i, size, v,
		(res |= (!res ? 0 : (unsigned long)v.iov_base) |
			(size != v.iov_len ? size : 0), 0),
		(res |= (!res ? 0 : (unsigned long)v.bv_offset) |
			(size != v.bv_len ? size : 0)),
		(res |= (!res ? 0 : (unsigned long)v.iov_base) |
			(size != v.iov_len ? size : 0))
		);
1262
	return res;
1263 1264 1265
}
EXPORT_SYMBOL(iov_iter_gap_alignment);

1266
static inline ssize_t __pipe_get_pages(struct iov_iter *i,
A
Al Viro 已提交
1267 1268
				size_t maxsize,
				struct page **pages,
1269
				int iter_head,
A
Al Viro 已提交
1270 1271 1272
				size_t *start)
{
	struct pipe_inode_info *pipe = i->pipe;
1273 1274
	unsigned int p_mask = pipe->ring_size - 1;
	ssize_t n = push_pipe(i, maxsize, &iter_head, start);
A
Al Viro 已提交
1275 1276 1277 1278 1279
	if (!n)
		return -EFAULT;

	maxsize = n;
	n += *start;
A
Al Viro 已提交
1280
	while (n > 0) {
1281 1282
		get_page(*pages++ = pipe->bufs[iter_head & p_mask].page);
		iter_head++;
A
Al Viro 已提交
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
		n -= PAGE_SIZE;
	}

	return maxsize;
}

static ssize_t pipe_get_pages(struct iov_iter *i,
		   struct page **pages, size_t maxsize, unsigned maxpages,
		   size_t *start)
{
1293
	unsigned int iter_head, npages;
A
Al Viro 已提交
1294 1295
	size_t capacity;

1296 1297 1298
	if (!maxsize)
		return 0;

A
Al Viro 已提交
1299 1300 1301
	if (!sanity(i))
		return -EFAULT;

1302 1303 1304 1305
	data_start(i, &iter_head, start);
	/* Amount of free space: some of this one + all after this one */
	npages = pipe_space_for_user(iter_head, i->pipe->tail, i->pipe);
	capacity = min(npages, maxpages) * PAGE_SIZE - *start;
A
Al Viro 已提交
1306

1307
	return __pipe_get_pages(i, min(maxsize, capacity), pages, iter_head, start);
A
Al Viro 已提交
1308 1309
}

A
Al Viro 已提交
1310
ssize_t iov_iter_get_pages(struct iov_iter *i,
1311
		   struct page **pages, size_t maxsize, unsigned maxpages,
A
Al Viro 已提交
1312 1313
		   size_t *start)
{
1314 1315 1316
	if (maxsize > i->count)
		maxsize = i->count;

D
David Howells 已提交
1317
	if (unlikely(iov_iter_is_pipe(i)))
A
Al Viro 已提交
1318
		return pipe_get_pages(i, pages, maxsize, maxpages, start);
D
David Howells 已提交
1319 1320 1321
	if (unlikely(iov_iter_is_discard(i)))
		return -EFAULT;

1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
	iterate_all_kinds(i, maxsize, v, ({
		unsigned long addr = (unsigned long)v.iov_base;
		size_t len = v.iov_len + (*start = addr & (PAGE_SIZE - 1));
		int n;
		int res;

		if (len > maxpages * PAGE_SIZE)
			len = maxpages * PAGE_SIZE;
		addr &= ~(PAGE_SIZE - 1);
		n = DIV_ROUND_UP(len, PAGE_SIZE);
1332 1333 1334
		res = get_user_pages_fast(addr, n,
				iov_iter_rw(i) != WRITE ?  FOLL_WRITE : 0,
				pages);
1335 1336 1337 1338 1339 1340 1341 1342
		if (unlikely(res < 0))
			return res;
		return (res == n ? len : res * PAGE_SIZE) - *start;
	0;}),({
		/* can't be more than PAGE_SIZE */
		*start = v.bv_offset;
		get_page(*pages = v.bv_page);
		return v.bv_len;
A
Al Viro 已提交
1343 1344
	}),({
		return -EFAULT;
1345 1346 1347
	})
	)
	return 0;
A
Al Viro 已提交
1348 1349 1350
}
EXPORT_SYMBOL(iov_iter_get_pages);

1351 1352
static struct page **get_pages_array(size_t n)
{
1353
	return kvmalloc_array(n, sizeof(struct page *), GFP_KERNEL);
1354 1355
}

A
Al Viro 已提交
1356 1357 1358 1359 1360
static ssize_t pipe_get_pages_alloc(struct iov_iter *i,
		   struct page ***pages, size_t maxsize,
		   size_t *start)
{
	struct page **p;
1361
	unsigned int iter_head, npages;
1362
	ssize_t n;
A
Al Viro 已提交
1363

1364 1365 1366
	if (!maxsize)
		return 0;

A
Al Viro 已提交
1367 1368 1369
	if (!sanity(i))
		return -EFAULT;

1370 1371 1372
	data_start(i, &iter_head, start);
	/* Amount of free space: some of this one + all after this one */
	npages = pipe_space_for_user(iter_head, i->pipe->tail, i->pipe);
A
Al Viro 已提交
1373 1374 1375 1376 1377 1378 1379 1380
	n = npages * PAGE_SIZE - *start;
	if (maxsize > n)
		maxsize = n;
	else
		npages = DIV_ROUND_UP(maxsize + *start, PAGE_SIZE);
	p = get_pages_array(npages);
	if (!p)
		return -ENOMEM;
1381
	n = __pipe_get_pages(i, maxsize, p, iter_head, start);
A
Al Viro 已提交
1382 1383 1384 1385 1386 1387 1388
	if (n > 0)
		*pages = p;
	else
		kvfree(p);
	return n;
}

A
Al Viro 已提交
1389 1390 1391 1392
ssize_t iov_iter_get_pages_alloc(struct iov_iter *i,
		   struct page ***pages, size_t maxsize,
		   size_t *start)
{
1393 1394 1395 1396 1397
	struct page **p;

	if (maxsize > i->count)
		maxsize = i->count;

D
David Howells 已提交
1398
	if (unlikely(iov_iter_is_pipe(i)))
A
Al Viro 已提交
1399
		return pipe_get_pages_alloc(i, pages, maxsize, start);
D
David Howells 已提交
1400 1401 1402
	if (unlikely(iov_iter_is_discard(i)))
		return -EFAULT;

1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
	iterate_all_kinds(i, maxsize, v, ({
		unsigned long addr = (unsigned long)v.iov_base;
		size_t len = v.iov_len + (*start = addr & (PAGE_SIZE - 1));
		int n;
		int res;

		addr &= ~(PAGE_SIZE - 1);
		n = DIV_ROUND_UP(len, PAGE_SIZE);
		p = get_pages_array(n);
		if (!p)
			return -ENOMEM;
1414 1415
		res = get_user_pages_fast(addr, n,
				iov_iter_rw(i) != WRITE ?  FOLL_WRITE : 0, p);
1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429
		if (unlikely(res < 0)) {
			kvfree(p);
			return res;
		}
		*pages = p;
		return (res == n ? len : res * PAGE_SIZE) - *start;
	0;}),({
		/* can't be more than PAGE_SIZE */
		*start = v.bv_offset;
		*pages = p = get_pages_array(1);
		if (!p)
			return -ENOMEM;
		get_page(*p = v.bv_page);
		return v.bv_len;
A
Al Viro 已提交
1430 1431
	}),({
		return -EFAULT;
1432 1433 1434
	})
	)
	return 0;
A
Al Viro 已提交
1435 1436 1437
}
EXPORT_SYMBOL(iov_iter_get_pages_alloc);

A
Al Viro 已提交
1438 1439 1440 1441 1442 1443 1444
size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum,
			       struct iov_iter *i)
{
	char *to = addr;
	__wsum sum, next;
	size_t off = 0;
	sum = *csum;
D
David Howells 已提交
1445
	if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
A
Al Viro 已提交
1446 1447 1448
		WARN_ON(1);
		return 0;
	}
A
Al Viro 已提交
1449 1450
	iterate_and_advance(i, bytes, v, ({
		int err = 0;
1451
		next = csum_and_copy_from_user(v.iov_base,
A
Al Viro 已提交
1452 1453 1454 1455 1456 1457 1458 1459 1460
					       (to += v.iov_len) - v.iov_len,
					       v.iov_len, 0, &err);
		if (!err) {
			sum = csum_block_add(sum, next, off);
			off += v.iov_len;
		}
		err ? v.iov_len : 0;
	}), ({
		char *p = kmap_atomic(v.bv_page);
A
Al Viro 已提交
1461 1462 1463
		sum = csum_and_memcpy((to += v.bv_len) - v.bv_len,
				      p + v.bv_offset, v.bv_len,
				      sum, off);
A
Al Viro 已提交
1464 1465 1466
		kunmap_atomic(p);
		off += v.bv_len;
	}),({
A
Al Viro 已提交
1467 1468 1469
		sum = csum_and_memcpy((to += v.iov_len) - v.iov_len,
				      v.iov_base, v.iov_len,
				      sum, off);
A
Al Viro 已提交
1470 1471 1472 1473 1474 1475 1476 1477
		off += v.iov_len;
	})
	)
	*csum = sum;
	return bytes;
}
EXPORT_SYMBOL(csum_and_copy_from_iter);

1478 1479 1480 1481 1482 1483 1484
bool csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum,
			       struct iov_iter *i)
{
	char *to = addr;
	__wsum sum, next;
	size_t off = 0;
	sum = *csum;
D
David Howells 已提交
1485
	if (unlikely(iov_iter_is_pipe(i) || iov_iter_is_discard(i))) {
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
		WARN_ON(1);
		return false;
	}
	if (unlikely(i->count < bytes))
		return false;
	iterate_all_kinds(i, bytes, v, ({
		int err = 0;
		next = csum_and_copy_from_user(v.iov_base,
					       (to += v.iov_len) - v.iov_len,
					       v.iov_len, 0, &err);
		if (err)
			return false;
		sum = csum_block_add(sum, next, off);
		off += v.iov_len;
		0;
	}), ({
		char *p = kmap_atomic(v.bv_page);
A
Al Viro 已提交
1503 1504 1505
		sum = csum_and_memcpy((to += v.bv_len) - v.bv_len,
				      p + v.bv_offset, v.bv_len,
				      sum, off);
1506 1507 1508
		kunmap_atomic(p);
		off += v.bv_len;
	}),({
A
Al Viro 已提交
1509 1510 1511
		sum = csum_and_memcpy((to += v.iov_len) - v.iov_len,
				      v.iov_base, v.iov_len,
				      sum, off);
1512 1513 1514 1515 1516 1517 1518 1519 1520
		off += v.iov_len;
	})
	)
	*csum = sum;
	iov_iter_advance(i, bytes);
	return true;
}
EXPORT_SYMBOL(csum_and_copy_from_iter_full);

1521
size_t csum_and_copy_to_iter(const void *addr, size_t bytes, void *csump,
A
Al Viro 已提交
1522 1523
			     struct iov_iter *i)
{
1524
	const char *from = addr;
1525
	__wsum *csum = csump;
A
Al Viro 已提交
1526 1527
	__wsum sum, next;
	size_t off = 0;
1528 1529 1530 1531

	if (unlikely(iov_iter_is_pipe(i)))
		return csum_and_copy_to_pipe_iter(addr, bytes, csum, i);

A
Al Viro 已提交
1532
	sum = *csum;
1533
	if (unlikely(iov_iter_is_discard(i))) {
A
Al Viro 已提交
1534 1535 1536
		WARN_ON(1);	/* for now */
		return 0;
	}
A
Al Viro 已提交
1537 1538 1539
	iterate_and_advance(i, bytes, v, ({
		int err = 0;
		next = csum_and_copy_to_user((from += v.iov_len) - v.iov_len,
1540
					     v.iov_base,
A
Al Viro 已提交
1541 1542 1543 1544 1545 1546 1547 1548
					     v.iov_len, 0, &err);
		if (!err) {
			sum = csum_block_add(sum, next, off);
			off += v.iov_len;
		}
		err ? v.iov_len : 0;
	}), ({
		char *p = kmap_atomic(v.bv_page);
A
Al Viro 已提交
1549 1550 1551
		sum = csum_and_memcpy(p + v.bv_offset,
				      (from += v.bv_len) - v.bv_len,
				      v.bv_len, sum, off);
A
Al Viro 已提交
1552 1553 1554
		kunmap_atomic(p);
		off += v.bv_len;
	}),({
A
Al Viro 已提交
1555 1556 1557
		sum = csum_and_memcpy(v.iov_base,
				     (from += v.iov_len) - v.iov_len,
				     v.iov_len, sum, off);
A
Al Viro 已提交
1558 1559 1560 1561 1562 1563 1564 1565
		off += v.iov_len;
	})
	)
	*csum = sum;
	return bytes;
}
EXPORT_SYMBOL(csum_and_copy_to_iter);

1566 1567 1568
size_t hash_and_copy_to_iter(const void *addr, size_t bytes, void *hashp,
		struct iov_iter *i)
{
1569
#ifdef CONFIG_CRYPTO_HASH
1570 1571 1572 1573 1574 1575 1576 1577 1578
	struct ahash_request *hash = hashp;
	struct scatterlist sg;
	size_t copied;

	copied = copy_to_iter(addr, bytes, i);
	sg_init_one(&sg, addr, copied);
	ahash_request_set_crypt(hash, &sg, NULL, copied);
	crypto_ahash_update(hash);
	return copied;
1579 1580 1581
#else
	return 0;
#endif
1582 1583 1584
}
EXPORT_SYMBOL(hash_and_copy_to_iter);

A
Al Viro 已提交
1585 1586
int iov_iter_npages(const struct iov_iter *i, int maxpages)
{
1587 1588 1589 1590 1591
	size_t size = i->count;
	int npages = 0;

	if (!size)
		return 0;
D
David Howells 已提交
1592 1593
	if (unlikely(iov_iter_is_discard(i)))
		return 0;
1594

D
David Howells 已提交
1595
	if (unlikely(iov_iter_is_pipe(i))) {
A
Al Viro 已提交
1596
		struct pipe_inode_info *pipe = i->pipe;
1597
		unsigned int iter_head;
A
Al Viro 已提交
1598 1599 1600 1601 1602
		size_t off;

		if (!sanity(i))
			return 0;

1603
		data_start(i, &iter_head, &off);
A
Al Viro 已提交
1604
		/* some of this one + all after this one */
1605
		npages = pipe_space_for_user(iter_head, pipe->tail, pipe);
A
Al Viro 已提交
1606 1607 1608
		if (npages >= maxpages)
			return maxpages;
	} else iterate_all_kinds(i, size, v, ({
1609 1610 1611 1612 1613 1614 1615 1616 1617
		unsigned long p = (unsigned long)v.iov_base;
		npages += DIV_ROUND_UP(p + v.iov_len, PAGE_SIZE)
			- p / PAGE_SIZE;
		if (npages >= maxpages)
			return maxpages;
	0;}),({
		npages++;
		if (npages >= maxpages)
			return maxpages;
A
Al Viro 已提交
1618 1619 1620 1621 1622 1623
	}),({
		unsigned long p = (unsigned long)v.iov_base;
		npages += DIV_ROUND_UP(p + v.iov_len, PAGE_SIZE)
			- p / PAGE_SIZE;
		if (npages >= maxpages)
			return maxpages;
1624 1625 1626
	})
	)
	return npages;
A
Al Viro 已提交
1627
}
A
Al Viro 已提交
1628
EXPORT_SYMBOL(iov_iter_npages);
A
Al Viro 已提交
1629 1630 1631 1632

const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags)
{
	*new = *old;
D
David Howells 已提交
1633
	if (unlikely(iov_iter_is_pipe(new))) {
A
Al Viro 已提交
1634 1635 1636
		WARN_ON(1);
		return NULL;
	}
D
David Howells 已提交
1637 1638
	if (unlikely(iov_iter_is_discard(new)))
		return NULL;
D
David Howells 已提交
1639
	if (iov_iter_is_bvec(new))
A
Al Viro 已提交
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
		return new->bvec = kmemdup(new->bvec,
				    new->nr_segs * sizeof(struct bio_vec),
				    flags);
	else
		/* iovec and kvec have identical layout */
		return new->iov = kmemdup(new->iov,
				   new->nr_segs * sizeof(struct iovec),
				   flags);
}
EXPORT_SYMBOL(dup_iter);
1650

1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670
/**
 * import_iovec() - Copy an array of &struct iovec from userspace
 *     into the kernel, check that it is valid, and initialize a new
 *     &struct iov_iter iterator to access it.
 *
 * @type: One of %READ or %WRITE.
 * @uvector: Pointer to the userspace array.
 * @nr_segs: Number of elements in userspace array.
 * @fast_segs: Number of elements in @iov.
 * @iov: (input and output parameter) Pointer to pointer to (usually small
 *     on-stack) kernel array.
 * @i: Pointer to iterator that will be initialized on success.
 *
 * If the array pointed to by *@iov is large enough to hold all @nr_segs,
 * then this function places %NULL in *@iov on return. Otherwise, a new
 * array will be allocated and the result placed in *@iov. This means that
 * the caller may call kfree() on *@iov regardless of whether the small
 * on-stack array was used or not (and regardless of whether this function
 * returns an error or not).
 *
1671
 * Return: Negative error code on error, bytes imported on success
1672
 */
1673
ssize_t import_iovec(int type, const struct iovec __user * uvector,
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688
		 unsigned nr_segs, unsigned fast_segs,
		 struct iovec **iov, struct iov_iter *i)
{
	ssize_t n;
	struct iovec *p;
	n = rw_copy_check_uvector(type, uvector, nr_segs, fast_segs,
				  *iov, &p);
	if (n < 0) {
		if (p != *iov)
			kfree(p);
		*iov = NULL;
		return n;
	}
	iov_iter_init(i, type, p, nr_segs, n);
	*iov = p == *iov ? NULL : p;
1689
	return n;
1690 1691 1692 1693 1694 1695
}
EXPORT_SYMBOL(import_iovec);

#ifdef CONFIG_COMPAT
#include <linux/compat.h>

1696 1697 1698 1699
ssize_t compat_import_iovec(int type,
		const struct compat_iovec __user * uvector,
		unsigned nr_segs, unsigned fast_segs,
		struct iovec **iov, struct iov_iter *i)
1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712
{
	ssize_t n;
	struct iovec *p;
	n = compat_rw_copy_check_uvector(type, uvector, nr_segs, fast_segs,
				  *iov, &p);
	if (n < 0) {
		if (p != *iov)
			kfree(p);
		*iov = NULL;
		return n;
	}
	iov_iter_init(i, type, p, nr_segs, n);
	*iov = p == *iov ? NULL : p;
1713
	return n;
1714
}
1715
EXPORT_SYMBOL(compat_import_iovec);
1716 1717 1718 1719 1720 1721 1722
#endif

int import_single_range(int rw, void __user *buf, size_t len,
		 struct iovec *iov, struct iov_iter *i)
{
	if (len > MAX_RW_COUNT)
		len = MAX_RW_COUNT;
1723
	if (unlikely(!access_ok(buf, len)))
1724 1725 1726 1727 1728 1729 1730
		return -EFAULT;

	iov->iov_base = buf;
	iov->iov_len = len;
	iov_iter_init(i, rw, iov, 1, len);
	return 0;
}
A
Al Viro 已提交
1731
EXPORT_SYMBOL(import_single_range);
A
Al Viro 已提交
1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753

int iov_iter_for_each_range(struct iov_iter *i, size_t bytes,
			    int (*f)(struct kvec *vec, void *context),
			    void *context)
{
	struct kvec w;
	int err = -EINVAL;
	if (!bytes)
		return 0;

	iterate_all_kinds(i, bytes, v, -EINVAL, ({
		w.iov_base = kmap(v.bv_page) + v.bv_offset;
		w.iov_len = v.bv_len;
		err = f(&w, context);
		kunmap(v.bv_page);
		err;}), ({
		w = v;
		err = f(&w, context);})
	)
	return err;
}
EXPORT_SYMBOL(iov_iter_for_each_range);