• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  linux/fs/read_write.c
4  *
5  *  Copyright (C) 1991, 1992  Linus Torvalds
6  */
7 
8 #include <linux/slab.h>
9 #include <linux/stat.h>
10 #include <linux/sched/xacct.h>
11 #include <linux/fcntl.h>
12 #include <linux/file.h>
13 #include <linux/uio.h>
14 #include <linux/fsnotify.h>
15 #include <linux/security.h>
16 #include <linux/export.h>
17 #include <linux/syscalls.h>
18 #include <linux/pagemap.h>
19 #include <linux/splice.h>
20 #include <linux/compat.h>
21 #include <linux/mount.h>
22 #include <linux/fs.h>
23 #include "internal.h"
24 
25 #include <linux/uaccess.h>
26 #include <asm/unistd.h>
27 
28 const struct file_operations generic_ro_fops = {
29 	.llseek		= generic_file_llseek,
30 	.read_iter	= generic_file_read_iter,
31 	.mmap		= generic_file_readonly_mmap,
32 	.splice_read	= generic_file_splice_read,
33 };
34 
35 EXPORT_SYMBOL(generic_ro_fops);
36 
unsigned_offsets(struct file * file)37 static inline bool unsigned_offsets(struct file *file)
38 {
39 	return file->f_mode & FMODE_UNSIGNED_OFFSET;
40 }
41 
42 /**
43  * vfs_setpos - update the file offset for lseek
44  * @file:	file structure in question
45  * @offset:	file offset to seek to
46  * @maxsize:	maximum file size
47  *
48  * This is a low-level filesystem helper for updating the file offset to
49  * the value specified by @offset if the given offset is valid and it is
50  * not equal to the current file offset.
51  *
52  * Return the specified offset on success and -EINVAL on invalid offset.
53  */
vfs_setpos(struct file * file,loff_t offset,loff_t maxsize)54 loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
55 {
56 	if (offset < 0 && !unsigned_offsets(file))
57 		return -EINVAL;
58 	if (offset > maxsize)
59 		return -EINVAL;
60 
61 	if (offset != file->f_pos) {
62 		file->f_pos = offset;
63 		file->f_version = 0;
64 	}
65 	return offset;
66 }
67 EXPORT_SYMBOL(vfs_setpos);
68 
69 /**
70  * generic_file_llseek_size - generic llseek implementation for regular files
71  * @file:	file structure to seek on
72  * @offset:	file offset to seek to
73  * @whence:	type of seek
74  * @size:	max size of this file in file system
75  * @eof:	offset used for SEEK_END position
76  *
77  * This is a variant of generic_file_llseek that allows passing in a custom
78  * maximum file size and a custom EOF position, for e.g. hashed directories
79  *
80  * Synchronization:
81  * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
82  * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
83  * read/writes behave like SEEK_SET against seeks.
84  */
85 loff_t
generic_file_llseek_size(struct file * file,loff_t offset,int whence,loff_t maxsize,loff_t eof)86 generic_file_llseek_size(struct file *file, loff_t offset, int whence,
87 		loff_t maxsize, loff_t eof)
88 {
89 	switch (whence) {
90 	case SEEK_END:
91 		offset += eof;
92 		break;
93 	case SEEK_CUR:
94 		/*
95 		 * Here we special-case the lseek(fd, 0, SEEK_CUR)
96 		 * position-querying operation.  Avoid rewriting the "same"
97 		 * f_pos value back to the file because a concurrent read(),
98 		 * write() or lseek() might have altered it
99 		 */
100 		if (offset == 0)
101 			return file->f_pos;
102 		/*
103 		 * f_lock protects against read/modify/write race with other
104 		 * SEEK_CURs. Note that parallel writes and reads behave
105 		 * like SEEK_SET.
106 		 */
107 		spin_lock(&file->f_lock);
108 		offset = vfs_setpos(file, file->f_pos + offset, maxsize);
109 		spin_unlock(&file->f_lock);
110 		return offset;
111 	case SEEK_DATA:
112 		/*
113 		 * In the generic case the entire file is data, so as long as
114 		 * offset isn't at the end of the file then the offset is data.
115 		 */
116 		if ((unsigned long long)offset >= eof)
117 			return -ENXIO;
118 		break;
119 	case SEEK_HOLE:
120 		/*
121 		 * There is a virtual hole at the end of the file, so as long as
122 		 * offset isn't i_size or larger, return i_size.
123 		 */
124 		if ((unsigned long long)offset >= eof)
125 			return -ENXIO;
126 		offset = eof;
127 		break;
128 	}
129 
130 	return vfs_setpos(file, offset, maxsize);
131 }
132 EXPORT_SYMBOL(generic_file_llseek_size);
133 
134 /**
135  * generic_file_llseek - generic llseek implementation for regular files
136  * @file:	file structure to seek on
137  * @offset:	file offset to seek to
138  * @whence:	type of seek
139  *
140  * This is a generic implemenation of ->llseek useable for all normal local
141  * filesystems.  It just updates the file offset to the value specified by
142  * @offset and @whence.
143  */
generic_file_llseek(struct file * file,loff_t offset,int whence)144 loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
145 {
146 	struct inode *inode = file->f_mapping->host;
147 
148 	return generic_file_llseek_size(file, offset, whence,
149 					inode->i_sb->s_maxbytes,
150 					i_size_read(inode));
151 }
152 EXPORT_SYMBOL(generic_file_llseek);
153 
154 /**
155  * fixed_size_llseek - llseek implementation for fixed-sized devices
156  * @file:	file structure to seek on
157  * @offset:	file offset to seek to
158  * @whence:	type of seek
159  * @size:	size of the file
160  *
161  */
fixed_size_llseek(struct file * file,loff_t offset,int whence,loff_t size)162 loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
163 {
164 	switch (whence) {
165 	case SEEK_SET: case SEEK_CUR: case SEEK_END:
166 		return generic_file_llseek_size(file, offset, whence,
167 						size, size);
168 	default:
169 		return -EINVAL;
170 	}
171 }
172 EXPORT_SYMBOL(fixed_size_llseek);
173 
174 /**
175  * no_seek_end_llseek - llseek implementation for fixed-sized devices
176  * @file:	file structure to seek on
177  * @offset:	file offset to seek to
178  * @whence:	type of seek
179  *
180  */
no_seek_end_llseek(struct file * file,loff_t offset,int whence)181 loff_t no_seek_end_llseek(struct file *file, loff_t offset, int whence)
182 {
183 	switch (whence) {
184 	case SEEK_SET: case SEEK_CUR:
185 		return generic_file_llseek_size(file, offset, whence,
186 						OFFSET_MAX, 0);
187 	default:
188 		return -EINVAL;
189 	}
190 }
191 EXPORT_SYMBOL(no_seek_end_llseek);
192 
193 /**
194  * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
195  * @file:	file structure to seek on
196  * @offset:	file offset to seek to
197  * @whence:	type of seek
198  * @size:	maximal offset allowed
199  *
200  */
no_seek_end_llseek_size(struct file * file,loff_t offset,int whence,loff_t size)201 loff_t no_seek_end_llseek_size(struct file *file, loff_t offset, int whence, loff_t size)
202 {
203 	switch (whence) {
204 	case SEEK_SET: case SEEK_CUR:
205 		return generic_file_llseek_size(file, offset, whence,
206 						size, 0);
207 	default:
208 		return -EINVAL;
209 	}
210 }
211 EXPORT_SYMBOL(no_seek_end_llseek_size);
212 
213 /**
214  * noop_llseek - No Operation Performed llseek implementation
215  * @file:	file structure to seek on
216  * @offset:	file offset to seek to
217  * @whence:	type of seek
218  *
219  * This is an implementation of ->llseek useable for the rare special case when
220  * userspace expects the seek to succeed but the (device) file is actually not
221  * able to perform the seek. In this case you use noop_llseek() instead of
222  * falling back to the default implementation of ->llseek.
223  */
noop_llseek(struct file * file,loff_t offset,int whence)224 loff_t noop_llseek(struct file *file, loff_t offset, int whence)
225 {
226 	return file->f_pos;
227 }
228 EXPORT_SYMBOL(noop_llseek);
229 
no_llseek(struct file * file,loff_t offset,int whence)230 loff_t no_llseek(struct file *file, loff_t offset, int whence)
231 {
232 	return -ESPIPE;
233 }
234 EXPORT_SYMBOL(no_llseek);
235 
default_llseek(struct file * file,loff_t offset,int whence)236 loff_t default_llseek(struct file *file, loff_t offset, int whence)
237 {
238 	struct inode *inode = file_inode(file);
239 	loff_t retval;
240 
241 	inode_lock(inode);
242 	switch (whence) {
243 		case SEEK_END:
244 			offset += i_size_read(inode);
245 			break;
246 		case SEEK_CUR:
247 			if (offset == 0) {
248 				retval = file->f_pos;
249 				goto out;
250 			}
251 			offset += file->f_pos;
252 			break;
253 		case SEEK_DATA:
254 			/*
255 			 * In the generic case the entire file is data, so as
256 			 * long as offset isn't at the end of the file then the
257 			 * offset is data.
258 			 */
259 			if (offset >= inode->i_size) {
260 				retval = -ENXIO;
261 				goto out;
262 			}
263 			break;
264 		case SEEK_HOLE:
265 			/*
266 			 * There is a virtual hole at the end of the file, so
267 			 * as long as offset isn't i_size or larger, return
268 			 * i_size.
269 			 */
270 			if (offset >= inode->i_size) {
271 				retval = -ENXIO;
272 				goto out;
273 			}
274 			offset = inode->i_size;
275 			break;
276 	}
277 	retval = -EINVAL;
278 	if (offset >= 0 || unsigned_offsets(file)) {
279 		if (offset != file->f_pos) {
280 			file->f_pos = offset;
281 			file->f_version = 0;
282 		}
283 		retval = offset;
284 	}
285 out:
286 	inode_unlock(inode);
287 	return retval;
288 }
289 EXPORT_SYMBOL(default_llseek);
290 
vfs_llseek(struct file * file,loff_t offset,int whence)291 loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
292 {
293 	loff_t (*fn)(struct file *, loff_t, int);
294 
295 	fn = no_llseek;
296 	if (file->f_mode & FMODE_LSEEK) {
297 		if (file->f_op->llseek)
298 			fn = file->f_op->llseek;
299 	}
300 	return fn(file, offset, whence);
301 }
302 EXPORT_SYMBOL(vfs_llseek);
303 
SYSCALL_DEFINE3(lseek,unsigned int,fd,off_t,offset,unsigned int,whence)304 SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
305 {
306 	off_t retval;
307 	struct fd f = fdget_pos(fd);
308 	if (!f.file)
309 		return -EBADF;
310 
311 	retval = -EINVAL;
312 	if (whence <= SEEK_MAX) {
313 		loff_t res = vfs_llseek(f.file, offset, whence);
314 		retval = res;
315 		if (res != (loff_t)retval)
316 			retval = -EOVERFLOW;	/* LFS: should only happen on 32 bit platforms */
317 	}
318 	fdput_pos(f);
319 	return retval;
320 }
321 
322 #ifdef CONFIG_COMPAT
COMPAT_SYSCALL_DEFINE3(lseek,unsigned int,fd,compat_off_t,offset,unsigned int,whence)323 COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
324 {
325 	return sys_lseek(fd, offset, whence);
326 }
327 #endif
328 
329 #ifdef __ARCH_WANT_SYS_LLSEEK
SYSCALL_DEFINE5(llseek,unsigned int,fd,unsigned long,offset_high,unsigned long,offset_low,loff_t __user *,result,unsigned int,whence)330 SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
331 		unsigned long, offset_low, loff_t __user *, result,
332 		unsigned int, whence)
333 {
334 	int retval;
335 	struct fd f = fdget_pos(fd);
336 	loff_t offset;
337 
338 	if (!f.file)
339 		return -EBADF;
340 
341 	retval = -EINVAL;
342 	if (whence > SEEK_MAX)
343 		goto out_putf;
344 
345 	offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
346 			whence);
347 
348 	retval = (int)offset;
349 	if (offset >= 0) {
350 		retval = -EFAULT;
351 		if (!copy_to_user(result, &offset, sizeof(offset)))
352 			retval = 0;
353 	}
354 out_putf:
355 	fdput_pos(f);
356 	return retval;
357 }
358 #endif
359 
rw_verify_area(int read_write,struct file * file,const loff_t * ppos,size_t count)360 int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
361 {
362 	struct inode *inode;
363 	loff_t pos;
364 	int retval = -EINVAL;
365 
366 	inode = file_inode(file);
367 	if (unlikely((ssize_t) count < 0))
368 		return retval;
369 	pos = *ppos;
370 	if (unlikely(pos < 0)) {
371 		if (!unsigned_offsets(file))
372 			return retval;
373 		if (count >= -pos) /* both values are in 0..LLONG_MAX */
374 			return -EOVERFLOW;
375 	} else if (unlikely((loff_t) (pos + count) < 0)) {
376 		if (!unsigned_offsets(file))
377 			return retval;
378 	}
379 
380 	if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
381 		retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
382 				read_write == READ ? F_RDLCK : F_WRLCK);
383 		if (retval < 0)
384 			return retval;
385 	}
386 	return security_file_permission(file,
387 				read_write == READ ? MAY_READ : MAY_WRITE);
388 }
389 
new_sync_read(struct file * filp,char __user * buf,size_t len,loff_t * ppos)390 static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
391 {
392 	struct iovec iov = { .iov_base = buf, .iov_len = len };
393 	struct kiocb kiocb;
394 	struct iov_iter iter;
395 	ssize_t ret;
396 
397 	init_sync_kiocb(&kiocb, filp);
398 	kiocb.ki_pos = *ppos;
399 	iov_iter_init(&iter, READ, &iov, 1, len);
400 
401 	ret = call_read_iter(filp, &kiocb, &iter);
402 	BUG_ON(ret == -EIOCBQUEUED);
403 	*ppos = kiocb.ki_pos;
404 	return ret;
405 }
406 
__vfs_read(struct file * file,char __user * buf,size_t count,loff_t * pos)407 ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
408 		   loff_t *pos)
409 {
410 	if (file->f_op->read)
411 		return file->f_op->read(file, buf, count, pos);
412 	else if (file->f_op->read_iter)
413 		return new_sync_read(file, buf, count, pos);
414 	else
415 		return -EINVAL;
416 }
417 
kernel_read(struct file * file,void * buf,size_t count,loff_t * pos)418 ssize_t kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
419 {
420 	mm_segment_t old_fs;
421 	ssize_t result;
422 
423 	old_fs = get_fs();
424 	set_fs(get_ds());
425 	/* The cast to a user pointer is valid due to the set_fs() */
426 	result = vfs_read(file, (void __user *)buf, count, pos);
427 	set_fs(old_fs);
428 	return result;
429 }
430 EXPORT_SYMBOL(kernel_read);
431 
vfs_read(struct file * file,char __user * buf,size_t count,loff_t * pos)432 ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
433 {
434 	ssize_t ret;
435 
436 	if (!(file->f_mode & FMODE_READ))
437 		return -EBADF;
438 	if (!(file->f_mode & FMODE_CAN_READ))
439 		return -EINVAL;
440 	if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
441 		return -EFAULT;
442 
443 	ret = rw_verify_area(READ, file, pos, count);
444 	if (!ret) {
445 		if (count > MAX_RW_COUNT)
446 			count =  MAX_RW_COUNT;
447 		ret = __vfs_read(file, buf, count, pos);
448 		if (ret > 0) {
449 			fsnotify_access(file);
450 			add_rchar(current, ret);
451 		}
452 		inc_syscr(current);
453 	}
454 
455 	return ret;
456 }
457 
458 EXPORT_SYMBOL(vfs_read);
459 
new_sync_write(struct file * filp,const char __user * buf,size_t len,loff_t * ppos)460 static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
461 {
462 	struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
463 	struct kiocb kiocb;
464 	struct iov_iter iter;
465 	ssize_t ret;
466 
467 	init_sync_kiocb(&kiocb, filp);
468 	kiocb.ki_pos = *ppos;
469 	iov_iter_init(&iter, WRITE, &iov, 1, len);
470 
471 	ret = call_write_iter(filp, &kiocb, &iter);
472 	BUG_ON(ret == -EIOCBQUEUED);
473 	if (ret > 0)
474 		*ppos = kiocb.ki_pos;
475 	return ret;
476 }
477 
__vfs_write(struct file * file,const char __user * p,size_t count,loff_t * pos)478 ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
479 		    loff_t *pos)
480 {
481 	if (file->f_op->write)
482 		return file->f_op->write(file, p, count, pos);
483 	else if (file->f_op->write_iter)
484 		return new_sync_write(file, p, count, pos);
485 	else
486 		return -EINVAL;
487 }
488 
__kernel_write(struct file * file,const void * buf,size_t count,loff_t * pos)489 ssize_t __kernel_write(struct file *file, const void *buf, size_t count, loff_t *pos)
490 {
491 	mm_segment_t old_fs;
492 	const char __user *p;
493 	ssize_t ret;
494 
495 	if (!(file->f_mode & FMODE_CAN_WRITE))
496 		return -EINVAL;
497 
498 	old_fs = get_fs();
499 	set_fs(get_ds());
500 	p = (__force const char __user *)buf;
501 	if (count > MAX_RW_COUNT)
502 		count =  MAX_RW_COUNT;
503 	ret = __vfs_write(file, p, count, pos);
504 	set_fs(old_fs);
505 	if (ret > 0) {
506 		fsnotify_modify(file);
507 		add_wchar(current, ret);
508 	}
509 	inc_syscw(current);
510 	return ret;
511 }
512 EXPORT_SYMBOL(__kernel_write);
513 
kernel_write(struct file * file,const void * buf,size_t count,loff_t * pos)514 ssize_t kernel_write(struct file *file, const void *buf, size_t count,
515 			    loff_t *pos)
516 {
517 	mm_segment_t old_fs;
518 	ssize_t res;
519 
520 	old_fs = get_fs();
521 	set_fs(get_ds());
522 	/* The cast to a user pointer is valid due to the set_fs() */
523 	res = vfs_write(file, (__force const char __user *)buf, count, pos);
524 	set_fs(old_fs);
525 
526 	return res;
527 }
528 EXPORT_SYMBOL(kernel_write);
529 
vfs_write(struct file * file,const char __user * buf,size_t count,loff_t * pos)530 ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
531 {
532 	ssize_t ret;
533 
534 	if (!(file->f_mode & FMODE_WRITE))
535 		return -EBADF;
536 	if (!(file->f_mode & FMODE_CAN_WRITE))
537 		return -EINVAL;
538 	if (unlikely(!access_ok(VERIFY_READ, buf, count)))
539 		return -EFAULT;
540 
541 	ret = rw_verify_area(WRITE, file, pos, count);
542 	if (!ret) {
543 		if (count > MAX_RW_COUNT)
544 			count =  MAX_RW_COUNT;
545 		file_start_write(file);
546 		ret = __vfs_write(file, buf, count, pos);
547 		if (ret > 0) {
548 			fsnotify_modify(file);
549 			add_wchar(current, ret);
550 		}
551 		inc_syscw(current);
552 		file_end_write(file);
553 	}
554 
555 	return ret;
556 }
557 
558 EXPORT_SYMBOL(vfs_write);
559 
file_pos_read(struct file * file)560 static inline loff_t file_pos_read(struct file *file)
561 {
562 	return file->f_mode & FMODE_STREAM ? 0 : file->f_pos;
563 }
564 
file_pos_write(struct file * file,loff_t pos)565 static inline void file_pos_write(struct file *file, loff_t pos)
566 {
567 	if ((file->f_mode & FMODE_STREAM) == 0)
568 		file->f_pos = pos;
569 }
570 
SYSCALL_DEFINE3(read,unsigned int,fd,char __user *,buf,size_t,count)571 SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
572 {
573 	struct fd f = fdget_pos(fd);
574 	ssize_t ret = -EBADF;
575 
576 	if (f.file) {
577 		loff_t pos = file_pos_read(f.file);
578 		ret = vfs_read(f.file, buf, count, &pos);
579 		if (ret >= 0)
580 			file_pos_write(f.file, pos);
581 		fdput_pos(f);
582 	}
583 	return ret;
584 }
585 
SYSCALL_DEFINE3(write,unsigned int,fd,const char __user *,buf,size_t,count)586 SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
587 		size_t, count)
588 {
589 	struct fd f = fdget_pos(fd);
590 	ssize_t ret = -EBADF;
591 
592 	if (f.file) {
593 		loff_t pos = file_pos_read(f.file);
594 		ret = vfs_write(f.file, buf, count, &pos);
595 		if (ret >= 0)
596 			file_pos_write(f.file, pos);
597 		fdput_pos(f);
598 	}
599 
600 	return ret;
601 }
602 
SYSCALL_DEFINE4(pread64,unsigned int,fd,char __user *,buf,size_t,count,loff_t,pos)603 SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
604 			size_t, count, loff_t, pos)
605 {
606 	struct fd f;
607 	ssize_t ret = -EBADF;
608 
609 	if (pos < 0)
610 		return -EINVAL;
611 
612 	f = fdget(fd);
613 	if (f.file) {
614 		ret = -ESPIPE;
615 		if (f.file->f_mode & FMODE_PREAD)
616 			ret = vfs_read(f.file, buf, count, &pos);
617 		fdput(f);
618 	}
619 
620 	return ret;
621 }
622 
SYSCALL_DEFINE4(pwrite64,unsigned int,fd,const char __user *,buf,size_t,count,loff_t,pos)623 SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
624 			 size_t, count, loff_t, pos)
625 {
626 	struct fd f;
627 	ssize_t ret = -EBADF;
628 
629 	if (pos < 0)
630 		return -EINVAL;
631 
632 	f = fdget(fd);
633 	if (f.file) {
634 		ret = -ESPIPE;
635 		if (f.file->f_mode & FMODE_PWRITE)
636 			ret = vfs_write(f.file, buf, count, &pos);
637 		fdput(f);
638 	}
639 
640 	return ret;
641 }
642 
643 /*
644  * Reduce an iovec's length in-place.  Return the resulting number of segments
645  */
iov_shorten(struct iovec * iov,unsigned long nr_segs,size_t to)646 unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
647 {
648 	unsigned long seg = 0;
649 	size_t len = 0;
650 
651 	while (seg < nr_segs) {
652 		seg++;
653 		if (len + iov->iov_len >= to) {
654 			iov->iov_len = to - len;
655 			break;
656 		}
657 		len += iov->iov_len;
658 		iov++;
659 	}
660 	return seg;
661 }
662 EXPORT_SYMBOL(iov_shorten);
663 
do_iter_readv_writev(struct file * filp,struct iov_iter * iter,loff_t * ppos,int type,rwf_t flags)664 static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
665 		loff_t *ppos, int type, rwf_t flags)
666 {
667 	struct kiocb kiocb;
668 	ssize_t ret;
669 
670 	init_sync_kiocb(&kiocb, filp);
671 	ret = kiocb_set_rw_flags(&kiocb, flags);
672 	if (ret)
673 		return ret;
674 	kiocb.ki_pos = *ppos;
675 
676 	if (type == READ)
677 		ret = call_read_iter(filp, &kiocb, iter);
678 	else
679 		ret = call_write_iter(filp, &kiocb, iter);
680 	BUG_ON(ret == -EIOCBQUEUED);
681 	*ppos = kiocb.ki_pos;
682 	return ret;
683 }
684 
685 /* Do it by hand, with file-ops */
do_loop_readv_writev(struct file * filp,struct iov_iter * iter,loff_t * ppos,int type,rwf_t flags)686 static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
687 		loff_t *ppos, int type, rwf_t flags)
688 {
689 	ssize_t ret = 0;
690 
691 	if (flags & ~RWF_HIPRI)
692 		return -EOPNOTSUPP;
693 
694 	while (iov_iter_count(iter)) {
695 		struct iovec iovec = iov_iter_iovec(iter);
696 		ssize_t nr;
697 
698 		if (type == READ) {
699 			nr = filp->f_op->read(filp, iovec.iov_base,
700 					      iovec.iov_len, ppos);
701 		} else {
702 			nr = filp->f_op->write(filp, iovec.iov_base,
703 					       iovec.iov_len, ppos);
704 		}
705 
706 		if (nr < 0) {
707 			if (!ret)
708 				ret = nr;
709 			break;
710 		}
711 		ret += nr;
712 		if (nr != iovec.iov_len)
713 			break;
714 		iov_iter_advance(iter, nr);
715 	}
716 
717 	return ret;
718 }
719 
720 /* A write operation does a read from user space and vice versa */
721 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
722 
723 /**
724  * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
725  *     into the kernel and check that it is valid.
726  *
727  * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
728  * @uvector: Pointer to the userspace array.
729  * @nr_segs: Number of elements in userspace array.
730  * @fast_segs: Number of elements in @fast_pointer.
731  * @fast_pointer: Pointer to (usually small on-stack) kernel array.
732  * @ret_pointer: (output parameter) Pointer to a variable that will point to
733  *     either @fast_pointer, a newly allocated kernel array, or NULL,
734  *     depending on which array was used.
735  *
736  * This function copies an array of &struct iovec of @nr_segs from
737  * userspace into the kernel and checks that each element is valid (e.g.
738  * it does not point to a kernel address or cause overflow by being too
739  * large, etc.).
740  *
741  * As an optimization, the caller may provide a pointer to a small
742  * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
743  * (the size of this array, or 0 if unused, should be given in @fast_segs).
744  *
745  * @ret_pointer will always point to the array that was used, so the
746  * caller must take care not to call kfree() on it e.g. in case the
747  * @fast_pointer array was used and it was allocated on the stack.
748  *
749  * Return: The total number of bytes covered by the iovec array on success
750  *   or a negative error code on error.
751  */
rw_copy_check_uvector(int type,const struct iovec __user * uvector,unsigned long nr_segs,unsigned long fast_segs,struct iovec * fast_pointer,struct iovec ** ret_pointer)752 ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
753 			      unsigned long nr_segs, unsigned long fast_segs,
754 			      struct iovec *fast_pointer,
755 			      struct iovec **ret_pointer)
756 {
757 	unsigned long seg;
758 	ssize_t ret;
759 	struct iovec *iov = fast_pointer;
760 
761 	/*
762 	 * SuS says "The readv() function *may* fail if the iovcnt argument
763 	 * was less than or equal to 0, or greater than {IOV_MAX}.  Linux has
764 	 * traditionally returned zero for zero segments, so...
765 	 */
766 	if (nr_segs == 0) {
767 		ret = 0;
768 		goto out;
769 	}
770 
771 	/*
772 	 * First get the "struct iovec" from user memory and
773 	 * verify all the pointers
774 	 */
775 	if (nr_segs > UIO_MAXIOV) {
776 		ret = -EINVAL;
777 		goto out;
778 	}
779 	if (nr_segs > fast_segs) {
780 		iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
781 		if (iov == NULL) {
782 			ret = -ENOMEM;
783 			goto out;
784 		}
785 	}
786 	if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
787 		ret = -EFAULT;
788 		goto out;
789 	}
790 
791 	/*
792 	 * According to the Single Unix Specification we should return EINVAL
793 	 * if an element length is < 0 when cast to ssize_t or if the
794 	 * total length would overflow the ssize_t return value of the
795 	 * system call.
796 	 *
797 	 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
798 	 * overflow case.
799 	 */
800 	ret = 0;
801 	for (seg = 0; seg < nr_segs; seg++) {
802 		void __user *buf = iov[seg].iov_base;
803 		ssize_t len = (ssize_t)iov[seg].iov_len;
804 
805 		/* see if we we're about to use an invalid len or if
806 		 * it's about to overflow ssize_t */
807 		if (len < 0) {
808 			ret = -EINVAL;
809 			goto out;
810 		}
811 		if (type >= 0
812 		    && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
813 			ret = -EFAULT;
814 			goto out;
815 		}
816 		if (len > MAX_RW_COUNT - ret) {
817 			len = MAX_RW_COUNT - ret;
818 			iov[seg].iov_len = len;
819 		}
820 		ret += len;
821 	}
822 out:
823 	*ret_pointer = iov;
824 	return ret;
825 }
826 
827 #ifdef CONFIG_COMPAT
compat_rw_copy_check_uvector(int type,const struct compat_iovec __user * uvector,unsigned long nr_segs,unsigned long fast_segs,struct iovec * fast_pointer,struct iovec ** ret_pointer)828 ssize_t compat_rw_copy_check_uvector(int type,
829 		const struct compat_iovec __user *uvector, unsigned long nr_segs,
830 		unsigned long fast_segs, struct iovec *fast_pointer,
831 		struct iovec **ret_pointer)
832 {
833 	compat_ssize_t tot_len;
834 	struct iovec *iov = *ret_pointer = fast_pointer;
835 	ssize_t ret = 0;
836 	int seg;
837 
838 	/*
839 	 * SuS says "The readv() function *may* fail if the iovcnt argument
840 	 * was less than or equal to 0, or greater than {IOV_MAX}.  Linux has
841 	 * traditionally returned zero for zero segments, so...
842 	 */
843 	if (nr_segs == 0)
844 		goto out;
845 
846 	ret = -EINVAL;
847 	if (nr_segs > UIO_MAXIOV)
848 		goto out;
849 	if (nr_segs > fast_segs) {
850 		ret = -ENOMEM;
851 		iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
852 		if (iov == NULL)
853 			goto out;
854 	}
855 	*ret_pointer = iov;
856 
857 	ret = -EFAULT;
858 	if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
859 		goto out;
860 
861 	/*
862 	 * Single unix specification:
863 	 * We should -EINVAL if an element length is not >= 0 and fitting an
864 	 * ssize_t.
865 	 *
866 	 * In Linux, the total length is limited to MAX_RW_COUNT, there is
867 	 * no overflow possibility.
868 	 */
869 	tot_len = 0;
870 	ret = -EINVAL;
871 	for (seg = 0; seg < nr_segs; seg++) {
872 		compat_uptr_t buf;
873 		compat_ssize_t len;
874 
875 		if (__get_user(len, &uvector->iov_len) ||
876 		   __get_user(buf, &uvector->iov_base)) {
877 			ret = -EFAULT;
878 			goto out;
879 		}
880 		if (len < 0)	/* size_t not fitting in compat_ssize_t .. */
881 			goto out;
882 		if (type >= 0 &&
883 		    !access_ok(vrfy_dir(type), compat_ptr(buf), len)) {
884 			ret = -EFAULT;
885 			goto out;
886 		}
887 		if (len > MAX_RW_COUNT - tot_len)
888 			len = MAX_RW_COUNT - tot_len;
889 		tot_len += len;
890 		iov->iov_base = compat_ptr(buf);
891 		iov->iov_len = (compat_size_t) len;
892 		uvector++;
893 		iov++;
894 	}
895 	ret = tot_len;
896 
897 out:
898 	return ret;
899 }
900 #endif
901 
do_iter_read(struct file * file,struct iov_iter * iter,loff_t * pos,rwf_t flags)902 static ssize_t do_iter_read(struct file *file, struct iov_iter *iter,
903 		loff_t *pos, rwf_t flags)
904 {
905 	size_t tot_len;
906 	ssize_t ret = 0;
907 
908 	if (!(file->f_mode & FMODE_READ))
909 		return -EBADF;
910 	if (!(file->f_mode & FMODE_CAN_READ))
911 		return -EINVAL;
912 
913 	tot_len = iov_iter_count(iter);
914 	if (!tot_len)
915 		goto out;
916 	ret = rw_verify_area(READ, file, pos, tot_len);
917 	if (ret < 0)
918 		return ret;
919 
920 	if (file->f_op->read_iter)
921 		ret = do_iter_readv_writev(file, iter, pos, READ, flags);
922 	else
923 		ret = do_loop_readv_writev(file, iter, pos, READ, flags);
924 out:
925 	if (ret >= 0)
926 		fsnotify_access(file);
927 	return ret;
928 }
929 
vfs_iter_read(struct file * file,struct iov_iter * iter,loff_t * ppos,rwf_t flags)930 ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos,
931 		rwf_t flags)
932 {
933 	if (!file->f_op->read_iter)
934 		return -EINVAL;
935 	return do_iter_read(file, iter, ppos, flags);
936 }
937 EXPORT_SYMBOL(vfs_iter_read);
938 
do_iter_write(struct file * file,struct iov_iter * iter,loff_t * pos,rwf_t flags)939 static ssize_t do_iter_write(struct file *file, struct iov_iter *iter,
940 		loff_t *pos, rwf_t flags)
941 {
942 	size_t tot_len;
943 	ssize_t ret = 0;
944 
945 	if (!(file->f_mode & FMODE_WRITE))
946 		return -EBADF;
947 	if (!(file->f_mode & FMODE_CAN_WRITE))
948 		return -EINVAL;
949 
950 	tot_len = iov_iter_count(iter);
951 	if (!tot_len)
952 		return 0;
953 	ret = rw_verify_area(WRITE, file, pos, tot_len);
954 	if (ret < 0)
955 		return ret;
956 
957 	if (file->f_op->write_iter)
958 		ret = do_iter_readv_writev(file, iter, pos, WRITE, flags);
959 	else
960 		ret = do_loop_readv_writev(file, iter, pos, WRITE, flags);
961 	if (ret > 0)
962 		fsnotify_modify(file);
963 	return ret;
964 }
965 
vfs_iter_write(struct file * file,struct iov_iter * iter,loff_t * ppos,rwf_t flags)966 ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos,
967 		rwf_t flags)
968 {
969 	if (!file->f_op->write_iter)
970 		return -EINVAL;
971 	return do_iter_write(file, iter, ppos, flags);
972 }
973 EXPORT_SYMBOL(vfs_iter_write);
974 
vfs_readv(struct file * file,const struct iovec __user * vec,unsigned long vlen,loff_t * pos,rwf_t flags)975 ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
976 		  unsigned long vlen, loff_t *pos, rwf_t flags)
977 {
978 	struct iovec iovstack[UIO_FASTIOV];
979 	struct iovec *iov = iovstack;
980 	struct iov_iter iter;
981 	ssize_t ret;
982 
983 	ret = import_iovec(READ, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
984 	if (ret >= 0) {
985 		ret = do_iter_read(file, &iter, pos, flags);
986 		kfree(iov);
987 	}
988 
989 	return ret;
990 }
991 
vfs_writev(struct file * file,const struct iovec __user * vec,unsigned long vlen,loff_t * pos,rwf_t flags)992 static ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
993 		   unsigned long vlen, loff_t *pos, rwf_t flags)
994 {
995 	struct iovec iovstack[UIO_FASTIOV];
996 	struct iovec *iov = iovstack;
997 	struct iov_iter iter;
998 	ssize_t ret;
999 
1000 	ret = import_iovec(WRITE, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
1001 	if (ret >= 0) {
1002 		file_start_write(file);
1003 		ret = do_iter_write(file, &iter, pos, flags);
1004 		file_end_write(file);
1005 		kfree(iov);
1006 	}
1007 	return ret;
1008 }
1009 
do_readv(unsigned long fd,const struct iovec __user * vec,unsigned long vlen,rwf_t flags)1010 static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
1011 			unsigned long vlen, rwf_t flags)
1012 {
1013 	struct fd f = fdget_pos(fd);
1014 	ssize_t ret = -EBADF;
1015 
1016 	if (f.file) {
1017 		loff_t pos = file_pos_read(f.file);
1018 		ret = vfs_readv(f.file, vec, vlen, &pos, flags);
1019 		if (ret >= 0)
1020 			file_pos_write(f.file, pos);
1021 		fdput_pos(f);
1022 	}
1023 
1024 	if (ret > 0)
1025 		add_rchar(current, ret);
1026 	inc_syscr(current);
1027 	return ret;
1028 }
1029 
do_writev(unsigned long fd,const struct iovec __user * vec,unsigned long vlen,rwf_t flags)1030 static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
1031 			 unsigned long vlen, rwf_t flags)
1032 {
1033 	struct fd f = fdget_pos(fd);
1034 	ssize_t ret = -EBADF;
1035 
1036 	if (f.file) {
1037 		loff_t pos = file_pos_read(f.file);
1038 		ret = vfs_writev(f.file, vec, vlen, &pos, flags);
1039 		if (ret >= 0)
1040 			file_pos_write(f.file, pos);
1041 		fdput_pos(f);
1042 	}
1043 
1044 	if (ret > 0)
1045 		add_wchar(current, ret);
1046 	inc_syscw(current);
1047 	return ret;
1048 }
1049 
pos_from_hilo(unsigned long high,unsigned long low)1050 static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
1051 {
1052 #define HALF_LONG_BITS (BITS_PER_LONG / 2)
1053 	return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
1054 }
1055 
do_preadv(unsigned long fd,const struct iovec __user * vec,unsigned long vlen,loff_t pos,rwf_t flags)1056 static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
1057 			 unsigned long vlen, loff_t pos, rwf_t flags)
1058 {
1059 	struct fd f;
1060 	ssize_t ret = -EBADF;
1061 
1062 	if (pos < 0)
1063 		return -EINVAL;
1064 
1065 	f = fdget(fd);
1066 	if (f.file) {
1067 		ret = -ESPIPE;
1068 		if (f.file->f_mode & FMODE_PREAD)
1069 			ret = vfs_readv(f.file, vec, vlen, &pos, flags);
1070 		fdput(f);
1071 	}
1072 
1073 	if (ret > 0)
1074 		add_rchar(current, ret);
1075 	inc_syscr(current);
1076 	return ret;
1077 }
1078 
do_pwritev(unsigned long fd,const struct iovec __user * vec,unsigned long vlen,loff_t pos,rwf_t flags)1079 static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
1080 			  unsigned long vlen, loff_t pos, rwf_t flags)
1081 {
1082 	struct fd f;
1083 	ssize_t ret = -EBADF;
1084 
1085 	if (pos < 0)
1086 		return -EINVAL;
1087 
1088 	f = fdget(fd);
1089 	if (f.file) {
1090 		ret = -ESPIPE;
1091 		if (f.file->f_mode & FMODE_PWRITE)
1092 			ret = vfs_writev(f.file, vec, vlen, &pos, flags);
1093 		fdput(f);
1094 	}
1095 
1096 	if (ret > 0)
1097 		add_wchar(current, ret);
1098 	inc_syscw(current);
1099 	return ret;
1100 }
1101 
SYSCALL_DEFINE3(readv,unsigned long,fd,const struct iovec __user *,vec,unsigned long,vlen)1102 SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1103 		unsigned long, vlen)
1104 {
1105 	return do_readv(fd, vec, vlen, 0);
1106 }
1107 
SYSCALL_DEFINE3(writev,unsigned long,fd,const struct iovec __user *,vec,unsigned long,vlen)1108 SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1109 		unsigned long, vlen)
1110 {
1111 	return do_writev(fd, vec, vlen, 0);
1112 }
1113 
SYSCALL_DEFINE5(preadv,unsigned long,fd,const struct iovec __user *,vec,unsigned long,vlen,unsigned long,pos_l,unsigned long,pos_h)1114 SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1115 		unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1116 {
1117 	loff_t pos = pos_from_hilo(pos_h, pos_l);
1118 
1119 	return do_preadv(fd, vec, vlen, pos, 0);
1120 }
1121 
SYSCALL_DEFINE6(preadv2,unsigned long,fd,const struct iovec __user *,vec,unsigned long,vlen,unsigned long,pos_l,unsigned long,pos_h,rwf_t,flags)1122 SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1123 		unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1124 		rwf_t, flags)
1125 {
1126 	loff_t pos = pos_from_hilo(pos_h, pos_l);
1127 
1128 	if (pos == -1)
1129 		return do_readv(fd, vec, vlen, flags);
1130 
1131 	return do_preadv(fd, vec, vlen, pos, flags);
1132 }
1133 
SYSCALL_DEFINE5(pwritev,unsigned long,fd,const struct iovec __user *,vec,unsigned long,vlen,unsigned long,pos_l,unsigned long,pos_h)1134 SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1135 		unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1136 {
1137 	loff_t pos = pos_from_hilo(pos_h, pos_l);
1138 
1139 	return do_pwritev(fd, vec, vlen, pos, 0);
1140 }
1141 
SYSCALL_DEFINE6(pwritev2,unsigned long,fd,const struct iovec __user *,vec,unsigned long,vlen,unsigned long,pos_l,unsigned long,pos_h,rwf_t,flags)1142 SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1143 		unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1144 		rwf_t, flags)
1145 {
1146 	loff_t pos = pos_from_hilo(pos_h, pos_l);
1147 
1148 	if (pos == -1)
1149 		return do_writev(fd, vec, vlen, flags);
1150 
1151 	return do_pwritev(fd, vec, vlen, pos, flags);
1152 }
1153 
1154 #ifdef CONFIG_COMPAT
compat_readv(struct file * file,const struct compat_iovec __user * vec,unsigned long vlen,loff_t * pos,rwf_t flags)1155 static size_t compat_readv(struct file *file,
1156 			   const struct compat_iovec __user *vec,
1157 			   unsigned long vlen, loff_t *pos, rwf_t flags)
1158 {
1159 	struct iovec iovstack[UIO_FASTIOV];
1160 	struct iovec *iov = iovstack;
1161 	struct iov_iter iter;
1162 	ssize_t ret;
1163 
1164 	ret = compat_import_iovec(READ, vec, vlen, UIO_FASTIOV, &iov, &iter);
1165 	if (ret >= 0) {
1166 		ret = do_iter_read(file, &iter, pos, flags);
1167 		kfree(iov);
1168 	}
1169 	if (ret > 0)
1170 		add_rchar(current, ret);
1171 	inc_syscr(current);
1172 	return ret;
1173 }
1174 
do_compat_readv(compat_ulong_t fd,const struct compat_iovec __user * vec,compat_ulong_t vlen,rwf_t flags)1175 static size_t do_compat_readv(compat_ulong_t fd,
1176 				 const struct compat_iovec __user *vec,
1177 				 compat_ulong_t vlen, rwf_t flags)
1178 {
1179 	struct fd f = fdget_pos(fd);
1180 	ssize_t ret;
1181 	loff_t pos;
1182 
1183 	if (!f.file)
1184 		return -EBADF;
1185 	pos = f.file->f_pos;
1186 	ret = compat_readv(f.file, vec, vlen, &pos, flags);
1187 	if (ret >= 0)
1188 		f.file->f_pos = pos;
1189 	fdput_pos(f);
1190 	return ret;
1191 
1192 }
1193 
COMPAT_SYSCALL_DEFINE3(readv,compat_ulong_t,fd,const struct compat_iovec __user *,vec,compat_ulong_t,vlen)1194 COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1195 		const struct compat_iovec __user *,vec,
1196 		compat_ulong_t, vlen)
1197 {
1198 	return do_compat_readv(fd, vec, vlen, 0);
1199 }
1200 
do_compat_preadv64(unsigned long fd,const struct compat_iovec __user * vec,unsigned long vlen,loff_t pos,rwf_t flags)1201 static long do_compat_preadv64(unsigned long fd,
1202 				  const struct compat_iovec __user *vec,
1203 				  unsigned long vlen, loff_t pos, rwf_t flags)
1204 {
1205 	struct fd f;
1206 	ssize_t ret;
1207 
1208 	if (pos < 0)
1209 		return -EINVAL;
1210 	f = fdget(fd);
1211 	if (!f.file)
1212 		return -EBADF;
1213 	ret = -ESPIPE;
1214 	if (f.file->f_mode & FMODE_PREAD)
1215 		ret = compat_readv(f.file, vec, vlen, &pos, flags);
1216 	fdput(f);
1217 	return ret;
1218 }
1219 
1220 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
COMPAT_SYSCALL_DEFINE4(preadv64,unsigned long,fd,const struct compat_iovec __user *,vec,unsigned long,vlen,loff_t,pos)1221 COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1222 		const struct compat_iovec __user *,vec,
1223 		unsigned long, vlen, loff_t, pos)
1224 {
1225 	return do_compat_preadv64(fd, vec, vlen, pos, 0);
1226 }
1227 #endif
1228 
COMPAT_SYSCALL_DEFINE5(preadv,compat_ulong_t,fd,const struct compat_iovec __user *,vec,compat_ulong_t,vlen,u32,pos_low,u32,pos_high)1229 COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
1230 		const struct compat_iovec __user *,vec,
1231 		compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1232 {
1233 	loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1234 
1235 	return do_compat_preadv64(fd, vec, vlen, pos, 0);
1236 }
1237 
1238 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
COMPAT_SYSCALL_DEFINE5(preadv64v2,unsigned long,fd,const struct compat_iovec __user *,vec,unsigned long,vlen,loff_t,pos,rwf_t,flags)1239 COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
1240 		const struct compat_iovec __user *,vec,
1241 		unsigned long, vlen, loff_t, pos, rwf_t, flags)
1242 {
1243 	if (pos == -1)
1244 		return do_compat_readv(fd, vec, vlen, flags);
1245 
1246 	return do_compat_preadv64(fd, vec, vlen, pos, flags);
1247 }
1248 #endif
1249 
COMPAT_SYSCALL_DEFINE6(preadv2,compat_ulong_t,fd,const struct compat_iovec __user *,vec,compat_ulong_t,vlen,u32,pos_low,u32,pos_high,rwf_t,flags)1250 COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1251 		const struct compat_iovec __user *,vec,
1252 		compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1253 		rwf_t, flags)
1254 {
1255 	loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1256 
1257 	if (pos == -1)
1258 		return do_compat_readv(fd, vec, vlen, flags);
1259 
1260 	return do_compat_preadv64(fd, vec, vlen, pos, flags);
1261 }
1262 
compat_writev(struct file * file,const struct compat_iovec __user * vec,unsigned long vlen,loff_t * pos,rwf_t flags)1263 static size_t compat_writev(struct file *file,
1264 			    const struct compat_iovec __user *vec,
1265 			    unsigned long vlen, loff_t *pos, rwf_t flags)
1266 {
1267 	struct iovec iovstack[UIO_FASTIOV];
1268 	struct iovec *iov = iovstack;
1269 	struct iov_iter iter;
1270 	ssize_t ret;
1271 
1272 	ret = compat_import_iovec(WRITE, vec, vlen, UIO_FASTIOV, &iov, &iter);
1273 	if (ret >= 0) {
1274 		file_start_write(file);
1275 		ret = do_iter_write(file, &iter, pos, flags);
1276 		file_end_write(file);
1277 		kfree(iov);
1278 	}
1279 	if (ret > 0)
1280 		add_wchar(current, ret);
1281 	inc_syscw(current);
1282 	return ret;
1283 }
1284 
do_compat_writev(compat_ulong_t fd,const struct compat_iovec __user * vec,compat_ulong_t vlen,rwf_t flags)1285 static size_t do_compat_writev(compat_ulong_t fd,
1286 				  const struct compat_iovec __user* vec,
1287 				  compat_ulong_t vlen, rwf_t flags)
1288 {
1289 	struct fd f = fdget_pos(fd);
1290 	ssize_t ret;
1291 	loff_t pos;
1292 
1293 	if (!f.file)
1294 		return -EBADF;
1295 	pos = f.file->f_pos;
1296 	ret = compat_writev(f.file, vec, vlen, &pos, flags);
1297 	if (ret >= 0)
1298 		f.file->f_pos = pos;
1299 	fdput_pos(f);
1300 	return ret;
1301 }
1302 
COMPAT_SYSCALL_DEFINE3(writev,compat_ulong_t,fd,const struct compat_iovec __user *,vec,compat_ulong_t,vlen)1303 COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1304 		const struct compat_iovec __user *, vec,
1305 		compat_ulong_t, vlen)
1306 {
1307 	return do_compat_writev(fd, vec, vlen, 0);
1308 }
1309 
do_compat_pwritev64(unsigned long fd,const struct compat_iovec __user * vec,unsigned long vlen,loff_t pos,rwf_t flags)1310 static long do_compat_pwritev64(unsigned long fd,
1311 				   const struct compat_iovec __user *vec,
1312 				   unsigned long vlen, loff_t pos, rwf_t flags)
1313 {
1314 	struct fd f;
1315 	ssize_t ret;
1316 
1317 	if (pos < 0)
1318 		return -EINVAL;
1319 	f = fdget(fd);
1320 	if (!f.file)
1321 		return -EBADF;
1322 	ret = -ESPIPE;
1323 	if (f.file->f_mode & FMODE_PWRITE)
1324 		ret = compat_writev(f.file, vec, vlen, &pos, flags);
1325 	fdput(f);
1326 	return ret;
1327 }
1328 
1329 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
COMPAT_SYSCALL_DEFINE4(pwritev64,unsigned long,fd,const struct compat_iovec __user *,vec,unsigned long,vlen,loff_t,pos)1330 COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1331 		const struct compat_iovec __user *,vec,
1332 		unsigned long, vlen, loff_t, pos)
1333 {
1334 	return do_compat_pwritev64(fd, vec, vlen, pos, 0);
1335 }
1336 #endif
1337 
COMPAT_SYSCALL_DEFINE5(pwritev,compat_ulong_t,fd,const struct compat_iovec __user *,vec,compat_ulong_t,vlen,u32,pos_low,u32,pos_high)1338 COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
1339 		const struct compat_iovec __user *,vec,
1340 		compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1341 {
1342 	loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1343 
1344 	return do_compat_pwritev64(fd, vec, vlen, pos, 0);
1345 }
1346 
1347 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
COMPAT_SYSCALL_DEFINE5(pwritev64v2,unsigned long,fd,const struct compat_iovec __user *,vec,unsigned long,vlen,loff_t,pos,rwf_t,flags)1348 COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1349 		const struct compat_iovec __user *,vec,
1350 		unsigned long, vlen, loff_t, pos, rwf_t, flags)
1351 {
1352 	if (pos == -1)
1353 		return do_compat_writev(fd, vec, vlen, flags);
1354 
1355 	return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1356 }
1357 #endif
1358 
COMPAT_SYSCALL_DEFINE6(pwritev2,compat_ulong_t,fd,const struct compat_iovec __user *,vec,compat_ulong_t,vlen,u32,pos_low,u32,pos_high,rwf_t,flags)1359 COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1360 		const struct compat_iovec __user *,vec,
1361 		compat_ulong_t, vlen, u32, pos_low, u32, pos_high, rwf_t, flags)
1362 {
1363 	loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1364 
1365 	if (pos == -1)
1366 		return do_compat_writev(fd, vec, vlen, flags);
1367 
1368 	return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1369 }
1370 
1371 #endif
1372 
do_sendfile(int out_fd,int in_fd,loff_t * ppos,size_t count,loff_t max)1373 static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1374 		  	   size_t count, loff_t max)
1375 {
1376 	struct fd in, out;
1377 	struct inode *in_inode, *out_inode;
1378 	loff_t pos;
1379 	loff_t out_pos;
1380 	ssize_t retval;
1381 	int fl;
1382 
1383 	/*
1384 	 * Get input file, and verify that it is ok..
1385 	 */
1386 	retval = -EBADF;
1387 	in = fdget(in_fd);
1388 	if (!in.file)
1389 		goto out;
1390 	if (!(in.file->f_mode & FMODE_READ))
1391 		goto fput_in;
1392 	retval = -ESPIPE;
1393 	if (!ppos) {
1394 		pos = in.file->f_pos;
1395 	} else {
1396 		pos = *ppos;
1397 		if (!(in.file->f_mode & FMODE_PREAD))
1398 			goto fput_in;
1399 	}
1400 	retval = rw_verify_area(READ, in.file, &pos, count);
1401 	if (retval < 0)
1402 		goto fput_in;
1403 	if (count > MAX_RW_COUNT)
1404 		count =  MAX_RW_COUNT;
1405 
1406 	/*
1407 	 * Get output file, and verify that it is ok..
1408 	 */
1409 	retval = -EBADF;
1410 	out = fdget(out_fd);
1411 	if (!out.file)
1412 		goto fput_in;
1413 	if (!(out.file->f_mode & FMODE_WRITE))
1414 		goto fput_out;
1415 	retval = -EINVAL;
1416 	in_inode = file_inode(in.file);
1417 	out_inode = file_inode(out.file);
1418 	out_pos = out.file->f_pos;
1419 	retval = rw_verify_area(WRITE, out.file, &out_pos, count);
1420 	if (retval < 0)
1421 		goto fput_out;
1422 
1423 	if (!max)
1424 		max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1425 
1426 	if (unlikely(pos + count > max)) {
1427 		retval = -EOVERFLOW;
1428 		if (pos >= max)
1429 			goto fput_out;
1430 		count = max - pos;
1431 	}
1432 
1433 	fl = 0;
1434 #if 0
1435 	/*
1436 	 * We need to debate whether we can enable this or not. The
1437 	 * man page documents EAGAIN return for the output at least,
1438 	 * and the application is arguably buggy if it doesn't expect
1439 	 * EAGAIN on a non-blocking file descriptor.
1440 	 */
1441 	if (in.file->f_flags & O_NONBLOCK)
1442 		fl = SPLICE_F_NONBLOCK;
1443 #endif
1444 	file_start_write(out.file);
1445 	retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
1446 	file_end_write(out.file);
1447 
1448 	if (retval > 0) {
1449 		add_rchar(current, retval);
1450 		add_wchar(current, retval);
1451 		fsnotify_access(in.file);
1452 		fsnotify_modify(out.file);
1453 		out.file->f_pos = out_pos;
1454 		if (ppos)
1455 			*ppos = pos;
1456 		else
1457 			in.file->f_pos = pos;
1458 	}
1459 
1460 	inc_syscr(current);
1461 	inc_syscw(current);
1462 	if (pos > max)
1463 		retval = -EOVERFLOW;
1464 
1465 fput_out:
1466 	fdput(out);
1467 fput_in:
1468 	fdput(in);
1469 out:
1470 	return retval;
1471 }
1472 
SYSCALL_DEFINE4(sendfile,int,out_fd,int,in_fd,off_t __user *,offset,size_t,count)1473 SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1474 {
1475 	loff_t pos;
1476 	off_t off;
1477 	ssize_t ret;
1478 
1479 	if (offset) {
1480 		if (unlikely(get_user(off, offset)))
1481 			return -EFAULT;
1482 		pos = off;
1483 		ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1484 		if (unlikely(put_user(pos, offset)))
1485 			return -EFAULT;
1486 		return ret;
1487 	}
1488 
1489 	return do_sendfile(out_fd, in_fd, NULL, count, 0);
1490 }
1491 
SYSCALL_DEFINE4(sendfile64,int,out_fd,int,in_fd,loff_t __user *,offset,size_t,count)1492 SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1493 {
1494 	loff_t pos;
1495 	ssize_t ret;
1496 
1497 	if (offset) {
1498 		if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1499 			return -EFAULT;
1500 		ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1501 		if (unlikely(put_user(pos, offset)))
1502 			return -EFAULT;
1503 		return ret;
1504 	}
1505 
1506 	return do_sendfile(out_fd, in_fd, NULL, count, 0);
1507 }
1508 
1509 #ifdef CONFIG_COMPAT
COMPAT_SYSCALL_DEFINE4(sendfile,int,out_fd,int,in_fd,compat_off_t __user *,offset,compat_size_t,count)1510 COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1511 		compat_off_t __user *, offset, compat_size_t, count)
1512 {
1513 	loff_t pos;
1514 	off_t off;
1515 	ssize_t ret;
1516 
1517 	if (offset) {
1518 		if (unlikely(get_user(off, offset)))
1519 			return -EFAULT;
1520 		pos = off;
1521 		ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1522 		if (unlikely(put_user(pos, offset)))
1523 			return -EFAULT;
1524 		return ret;
1525 	}
1526 
1527 	return do_sendfile(out_fd, in_fd, NULL, count, 0);
1528 }
1529 
COMPAT_SYSCALL_DEFINE4(sendfile64,int,out_fd,int,in_fd,compat_loff_t __user *,offset,compat_size_t,count)1530 COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1531 		compat_loff_t __user *, offset, compat_size_t, count)
1532 {
1533 	loff_t pos;
1534 	ssize_t ret;
1535 
1536 	if (offset) {
1537 		if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1538 			return -EFAULT;
1539 		ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1540 		if (unlikely(put_user(pos, offset)))
1541 			return -EFAULT;
1542 		return ret;
1543 	}
1544 
1545 	return do_sendfile(out_fd, in_fd, NULL, count, 0);
1546 }
1547 #endif
1548 
1549 /*
1550  * copy_file_range() differs from regular file read and write in that it
1551  * specifically allows return partial success.  When it does so is up to
1552  * the copy_file_range method.
1553  */
vfs_copy_file_range(struct file * file_in,loff_t pos_in,struct file * file_out,loff_t pos_out,size_t len,unsigned int flags)1554 ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1555 			    struct file *file_out, loff_t pos_out,
1556 			    size_t len, unsigned int flags)
1557 {
1558 	struct inode *inode_in = file_inode(file_in);
1559 	struct inode *inode_out = file_inode(file_out);
1560 	ssize_t ret;
1561 
1562 	if (flags != 0)
1563 		return -EINVAL;
1564 
1565 	if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1566 		return -EISDIR;
1567 	if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1568 		return -EINVAL;
1569 
1570 	ret = rw_verify_area(READ, file_in, &pos_in, len);
1571 	if (unlikely(ret))
1572 		return ret;
1573 
1574 	ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1575 	if (unlikely(ret))
1576 		return ret;
1577 
1578 	if (!(file_in->f_mode & FMODE_READ) ||
1579 	    !(file_out->f_mode & FMODE_WRITE) ||
1580 	    (file_out->f_flags & O_APPEND))
1581 		return -EBADF;
1582 
1583 	/* this could be relaxed once a method supports cross-fs copies */
1584 	if (inode_in->i_sb != inode_out->i_sb)
1585 		return -EXDEV;
1586 
1587 	if (len == 0)
1588 		return 0;
1589 
1590 	file_start_write(file_out);
1591 
1592 	/*
1593 	 * Try cloning first, this is supported by more file systems, and
1594 	 * more efficient if both clone and copy are supported (e.g. NFS).
1595 	 */
1596 	if (file_in->f_op->clone_file_range) {
1597 		ret = file_in->f_op->clone_file_range(file_in, pos_in,
1598 				file_out, pos_out, len);
1599 		if (ret == 0) {
1600 			ret = len;
1601 			goto done;
1602 		}
1603 	}
1604 
1605 	if (file_out->f_op->copy_file_range) {
1606 		ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1607 						      pos_out, len, flags);
1608 		if (ret != -EOPNOTSUPP)
1609 			goto done;
1610 	}
1611 
1612 	ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1613 			len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1614 
1615 done:
1616 	if (ret > 0) {
1617 		fsnotify_access(file_in);
1618 		add_rchar(current, ret);
1619 		fsnotify_modify(file_out);
1620 		add_wchar(current, ret);
1621 	}
1622 
1623 	inc_syscr(current);
1624 	inc_syscw(current);
1625 
1626 	file_end_write(file_out);
1627 
1628 	return ret;
1629 }
1630 EXPORT_SYMBOL(vfs_copy_file_range);
1631 
SYSCALL_DEFINE6(copy_file_range,int,fd_in,loff_t __user *,off_in,int,fd_out,loff_t __user *,off_out,size_t,len,unsigned int,flags)1632 SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1633 		int, fd_out, loff_t __user *, off_out,
1634 		size_t, len, unsigned int, flags)
1635 {
1636 	loff_t pos_in;
1637 	loff_t pos_out;
1638 	struct fd f_in;
1639 	struct fd f_out;
1640 	ssize_t ret = -EBADF;
1641 
1642 	f_in = fdget(fd_in);
1643 	if (!f_in.file)
1644 		goto out2;
1645 
1646 	f_out = fdget(fd_out);
1647 	if (!f_out.file)
1648 		goto out1;
1649 
1650 	ret = -EFAULT;
1651 	if (off_in) {
1652 		if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1653 			goto out;
1654 	} else {
1655 		pos_in = f_in.file->f_pos;
1656 	}
1657 
1658 	if (off_out) {
1659 		if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1660 			goto out;
1661 	} else {
1662 		pos_out = f_out.file->f_pos;
1663 	}
1664 
1665 	ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1666 				  flags);
1667 	if (ret > 0) {
1668 		pos_in += ret;
1669 		pos_out += ret;
1670 
1671 		if (off_in) {
1672 			if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1673 				ret = -EFAULT;
1674 		} else {
1675 			f_in.file->f_pos = pos_in;
1676 		}
1677 
1678 		if (off_out) {
1679 			if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1680 				ret = -EFAULT;
1681 		} else {
1682 			f_out.file->f_pos = pos_out;
1683 		}
1684 	}
1685 
1686 out:
1687 	fdput(f_out);
1688 out1:
1689 	fdput(f_in);
1690 out2:
1691 	return ret;
1692 }
1693 
clone_verify_area(struct file * file,loff_t pos,u64 len,bool write)1694 static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1695 {
1696 	struct inode *inode = file_inode(file);
1697 
1698 	if (unlikely(pos < 0))
1699 		return -EINVAL;
1700 
1701 	 if (unlikely((loff_t) (pos + len) < 0))
1702 		return -EINVAL;
1703 
1704 	if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1705 		loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1706 		int retval;
1707 
1708 		retval = locks_mandatory_area(inode, file, pos, end,
1709 				write ? F_WRLCK : F_RDLCK);
1710 		if (retval < 0)
1711 			return retval;
1712 	}
1713 
1714 	return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1715 }
1716 /*
1717  * Ensure that we don't remap a partial EOF block in the middle of something
1718  * else.  Assume that the offsets have already been checked for block
1719  * alignment.
1720  *
1721  * For deduplication we always scale down to the previous block because we
1722  * can't meaningfully compare post-EOF contents.
1723  *
1724  * For clone we only link a partial EOF block above the destination file's EOF.
1725  */
generic_remap_check_len(struct inode * inode_in,struct inode * inode_out,loff_t pos_out,u64 * len,bool is_dedupe)1726 static int generic_remap_check_len(struct inode *inode_in,
1727 				   struct inode *inode_out,
1728 				   loff_t pos_out,
1729 				   u64 *len,
1730 				   bool is_dedupe)
1731 {
1732 	u64 blkmask = i_blocksize(inode_in) - 1;
1733 
1734 	if ((*len & blkmask) == 0)
1735 		return 0;
1736 
1737 	if (is_dedupe)
1738 		*len &= ~blkmask;
1739 	else if (pos_out + *len < i_size_read(inode_out))
1740 		return -EINVAL;
1741 
1742 	return 0;
1743 }
1744 
1745 /*
1746  * Check that the two inodes are eligible for cloning, the ranges make
1747  * sense, and then flush all dirty data.  Caller must ensure that the
1748  * inodes have been locked against any other modifications.
1749  *
1750  * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1751  * the usual negative error code.
1752  */
vfs_clone_file_prep_inodes(struct inode * inode_in,loff_t pos_in,struct inode * inode_out,loff_t pos_out,u64 * len,bool is_dedupe)1753 int vfs_clone_file_prep_inodes(struct inode *inode_in, loff_t pos_in,
1754 			       struct inode *inode_out, loff_t pos_out,
1755 			       u64 *len, bool is_dedupe)
1756 {
1757 	loff_t bs = inode_out->i_sb->s_blocksize;
1758 	loff_t blen;
1759 	loff_t isize;
1760 	bool same_inode = (inode_in == inode_out);
1761 	int ret;
1762 
1763 	/* Don't touch certain kinds of inodes */
1764 	if (IS_IMMUTABLE(inode_out))
1765 		return -EPERM;
1766 
1767 	if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
1768 		return -ETXTBSY;
1769 
1770 	/* Don't reflink dirs, pipes, sockets... */
1771 	if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1772 		return -EISDIR;
1773 	if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1774 		return -EINVAL;
1775 
1776 	/* Are we going all the way to the end? */
1777 	isize = i_size_read(inode_in);
1778 	if (isize == 0)
1779 		return 0;
1780 
1781 	/* Zero length dedupe exits immediately; reflink goes to EOF. */
1782 	if (*len == 0) {
1783 		if (is_dedupe || pos_in == isize)
1784 			return 0;
1785 		if (pos_in > isize)
1786 			return -EINVAL;
1787 		*len = isize - pos_in;
1788 	}
1789 
1790 	/* Ensure offsets don't wrap and the input is inside i_size */
1791 	if (pos_in + *len < pos_in || pos_out + *len < pos_out ||
1792 	    pos_in + *len > isize)
1793 		return -EINVAL;
1794 
1795 	/* Don't allow dedupe past EOF in the dest file */
1796 	if (is_dedupe) {
1797 		loff_t	disize;
1798 
1799 		disize = i_size_read(inode_out);
1800 		if (pos_out >= disize || pos_out + *len > disize)
1801 			return -EINVAL;
1802 	}
1803 
1804 	/* If we're linking to EOF, continue to the block boundary. */
1805 	if (pos_in + *len == isize)
1806 		blen = ALIGN(isize, bs) - pos_in;
1807 	else
1808 		blen = *len;
1809 
1810 	/* Only reflink if we're aligned to block boundaries */
1811 	if (!IS_ALIGNED(pos_in, bs) || !IS_ALIGNED(pos_in + blen, bs) ||
1812 	    !IS_ALIGNED(pos_out, bs) || !IS_ALIGNED(pos_out + blen, bs))
1813 		return -EINVAL;
1814 
1815 	/* Don't allow overlapped reflink within the same file */
1816 	if (same_inode) {
1817 		if (pos_out + blen > pos_in && pos_out < pos_in + blen)
1818 			return -EINVAL;
1819 	}
1820 
1821 	/* Wait for the completion of any pending IOs on both files */
1822 	inode_dio_wait(inode_in);
1823 	if (!same_inode)
1824 		inode_dio_wait(inode_out);
1825 
1826 	ret = filemap_write_and_wait_range(inode_in->i_mapping,
1827 			pos_in, pos_in + *len - 1);
1828 	if (ret)
1829 		return ret;
1830 
1831 	ret = filemap_write_and_wait_range(inode_out->i_mapping,
1832 			pos_out, pos_out + *len - 1);
1833 	if (ret)
1834 		return ret;
1835 
1836 	/*
1837 	 * Check that the extents are the same.
1838 	 */
1839 	if (is_dedupe) {
1840 		bool		is_same = false;
1841 
1842 		ret = vfs_dedupe_file_range_compare(inode_in, pos_in,
1843 				inode_out, pos_out, *len, &is_same);
1844 		if (ret)
1845 			return ret;
1846 		if (!is_same)
1847 			return -EBADE;
1848 	}
1849 
1850 	ret = generic_remap_check_len(inode_in, inode_out, pos_out, len,
1851 			is_dedupe);
1852 	if (ret)
1853 		return ret;
1854 
1855 	return 1;
1856 }
1857 EXPORT_SYMBOL(vfs_clone_file_prep_inodes);
1858 
do_clone_file_range(struct file * file_in,loff_t pos_in,struct file * file_out,loff_t pos_out,u64 len)1859 int do_clone_file_range(struct file *file_in, loff_t pos_in,
1860 			struct file *file_out, loff_t pos_out, u64 len)
1861 {
1862 	struct inode *inode_in = file_inode(file_in);
1863 	struct inode *inode_out = file_inode(file_out);
1864 	int ret;
1865 
1866 	if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1867 		return -EISDIR;
1868 	if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1869 		return -EINVAL;
1870 
1871 	/*
1872 	 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1873 	 * the same mount. Practically, they only need to be on the same file
1874 	 * system.
1875 	 */
1876 	if (inode_in->i_sb != inode_out->i_sb)
1877 		return -EXDEV;
1878 
1879 	if (!(file_in->f_mode & FMODE_READ) ||
1880 	    !(file_out->f_mode & FMODE_WRITE) ||
1881 	    (file_out->f_flags & O_APPEND))
1882 		return -EBADF;
1883 
1884 	if (!file_in->f_op->clone_file_range)
1885 		return -EOPNOTSUPP;
1886 
1887 	ret = clone_verify_area(file_in, pos_in, len, false);
1888 	if (ret)
1889 		return ret;
1890 
1891 	ret = clone_verify_area(file_out, pos_out, len, true);
1892 	if (ret)
1893 		return ret;
1894 
1895 	if (pos_in + len > i_size_read(inode_in))
1896 		return -EINVAL;
1897 
1898 	ret = file_in->f_op->clone_file_range(file_in, pos_in,
1899 			file_out, pos_out, len);
1900 	if (!ret) {
1901 		fsnotify_access(file_in);
1902 		fsnotify_modify(file_out);
1903 	}
1904 
1905 	return ret;
1906 }
1907 EXPORT_SYMBOL(do_clone_file_range);
1908 
vfs_clone_file_range(struct file * file_in,loff_t pos_in,struct file * file_out,loff_t pos_out,u64 len)1909 int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1910 			 struct file *file_out, loff_t pos_out, u64 len)
1911 {
1912 	int ret;
1913 
1914 	file_start_write(file_out);
1915 	ret = do_clone_file_range(file_in, pos_in, file_out, pos_out, len);
1916 	file_end_write(file_out);
1917 
1918 	return ret;
1919 }
1920 EXPORT_SYMBOL(vfs_clone_file_range);
1921 
1922 /* Read a page's worth of file data into the page cache. */
vfs_dedupe_get_page(struct inode * inode,loff_t offset)1923 static struct page *vfs_dedupe_get_page(struct inode *inode, loff_t offset)
1924 {
1925 	struct address_space *mapping;
1926 	struct page *page;
1927 	pgoff_t n;
1928 
1929 	n = offset >> PAGE_SHIFT;
1930 	mapping = inode->i_mapping;
1931 	page = read_mapping_page(mapping, n, NULL);
1932 	if (IS_ERR(page))
1933 		return page;
1934 	if (!PageUptodate(page)) {
1935 		put_page(page);
1936 		return ERR_PTR(-EIO);
1937 	}
1938 	return page;
1939 }
1940 
1941 /*
1942  * Lock two pages, ensuring that we lock in offset order if the pages are from
1943  * the same file.
1944  */
vfs_lock_two_pages(struct page * page1,struct page * page2)1945 static void vfs_lock_two_pages(struct page *page1, struct page *page2)
1946 {
1947 	/* Always lock in order of increasing index. */
1948 	if (page1->index > page2->index)
1949 		swap(page1, page2);
1950 
1951 	lock_page(page1);
1952 	if (page1 != page2)
1953 		lock_page(page2);
1954 }
1955 
1956 /* Unlock two pages, being careful not to unlock the same page twice. */
vfs_unlock_two_pages(struct page * page1,struct page * page2)1957 static void vfs_unlock_two_pages(struct page *page1, struct page *page2)
1958 {
1959 	unlock_page(page1);
1960 	if (page1 != page2)
1961 		unlock_page(page2);
1962 }
1963 
1964 /*
1965  * Compare extents of two files to see if they are the same.
1966  * Caller must have locked both inodes to prevent write races.
1967  */
vfs_dedupe_file_range_compare(struct inode * src,loff_t srcoff,struct inode * dest,loff_t destoff,loff_t len,bool * is_same)1968 int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
1969 				  struct inode *dest, loff_t destoff,
1970 				  loff_t len, bool *is_same)
1971 {
1972 	loff_t src_poff;
1973 	loff_t dest_poff;
1974 	void *src_addr;
1975 	void *dest_addr;
1976 	struct page *src_page;
1977 	struct page *dest_page;
1978 	loff_t cmp_len;
1979 	bool same;
1980 	int error;
1981 
1982 	error = -EINVAL;
1983 	same = true;
1984 	while (len) {
1985 		src_poff = srcoff & (PAGE_SIZE - 1);
1986 		dest_poff = destoff & (PAGE_SIZE - 1);
1987 		cmp_len = min(PAGE_SIZE - src_poff,
1988 			      PAGE_SIZE - dest_poff);
1989 		cmp_len = min(cmp_len, len);
1990 		if (cmp_len <= 0)
1991 			goto out_error;
1992 
1993 		src_page = vfs_dedupe_get_page(src, srcoff);
1994 		if (IS_ERR(src_page)) {
1995 			error = PTR_ERR(src_page);
1996 			goto out_error;
1997 		}
1998 		dest_page = vfs_dedupe_get_page(dest, destoff);
1999 		if (IS_ERR(dest_page)) {
2000 			error = PTR_ERR(dest_page);
2001 			put_page(src_page);
2002 			goto out_error;
2003 		}
2004 
2005 		vfs_lock_two_pages(src_page, dest_page);
2006 
2007 		/*
2008 		 * Now that we've locked both pages, make sure they're still
2009 		 * mapped to the file data we're interested in.  If not,
2010 		 * someone is invalidating pages on us and we lose.
2011 		 */
2012 		if (!PageUptodate(src_page) || !PageUptodate(dest_page) ||
2013 		    src_page->mapping != src->i_mapping ||
2014 		    dest_page->mapping != dest->i_mapping) {
2015 			same = false;
2016 			goto unlock;
2017 		}
2018 
2019 		src_addr = kmap_atomic(src_page);
2020 		dest_addr = kmap_atomic(dest_page);
2021 
2022 		flush_dcache_page(src_page);
2023 		flush_dcache_page(dest_page);
2024 
2025 		if (memcmp(src_addr + src_poff, dest_addr + dest_poff, cmp_len))
2026 			same = false;
2027 
2028 		kunmap_atomic(dest_addr);
2029 		kunmap_atomic(src_addr);
2030 unlock:
2031 		vfs_unlock_two_pages(src_page, dest_page);
2032 		put_page(dest_page);
2033 		put_page(src_page);
2034 
2035 		if (!same)
2036 			break;
2037 
2038 		srcoff += cmp_len;
2039 		destoff += cmp_len;
2040 		len -= cmp_len;
2041 	}
2042 
2043 	*is_same = same;
2044 	return 0;
2045 
2046 out_error:
2047 	return error;
2048 }
2049 EXPORT_SYMBOL(vfs_dedupe_file_range_compare);
2050 
vfs_dedupe_file_range(struct file * file,struct file_dedupe_range * same)2051 int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
2052 {
2053 	struct file_dedupe_range_info *info;
2054 	struct inode *src = file_inode(file);
2055 	u64 off;
2056 	u64 len;
2057 	int i;
2058 	int ret;
2059 	bool is_admin = capable(CAP_SYS_ADMIN);
2060 	u16 count = same->dest_count;
2061 	struct file *dst_file;
2062 	loff_t dst_off;
2063 	ssize_t deduped;
2064 
2065 	if (!(file->f_mode & FMODE_READ))
2066 		return -EINVAL;
2067 
2068 	if (same->reserved1 || same->reserved2)
2069 		return -EINVAL;
2070 
2071 	off = same->src_offset;
2072 	len = same->src_length;
2073 
2074 	ret = -EISDIR;
2075 	if (S_ISDIR(src->i_mode))
2076 		goto out;
2077 
2078 	ret = -EINVAL;
2079 	if (!S_ISREG(src->i_mode))
2080 		goto out;
2081 
2082 	ret = clone_verify_area(file, off, len, false);
2083 	if (ret < 0)
2084 		goto out;
2085 	ret = 0;
2086 
2087 	if (off + len > i_size_read(src))
2088 		return -EINVAL;
2089 
2090 	/* pre-format output fields to sane values */
2091 	for (i = 0; i < count; i++) {
2092 		same->info[i].bytes_deduped = 0ULL;
2093 		same->info[i].status = FILE_DEDUPE_RANGE_SAME;
2094 	}
2095 
2096 	for (i = 0, info = same->info; i < count; i++, info++) {
2097 		struct inode *dst;
2098 		struct fd dst_fd = fdget(info->dest_fd);
2099 
2100 		dst_file = dst_fd.file;
2101 		if (!dst_file) {
2102 			info->status = -EBADF;
2103 			goto next_loop;
2104 		}
2105 		dst = file_inode(dst_file);
2106 
2107 		ret = mnt_want_write_file(dst_file);
2108 		if (ret) {
2109 			info->status = ret;
2110 			goto next_loop;
2111 		}
2112 
2113 		dst_off = info->dest_offset;
2114 		ret = clone_verify_area(dst_file, dst_off, len, true);
2115 		if (ret < 0) {
2116 			info->status = ret;
2117 			goto next_file;
2118 		}
2119 		ret = 0;
2120 
2121 		if (info->reserved) {
2122 			info->status = -EINVAL;
2123 		} else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
2124 			info->status = -EINVAL;
2125 		} else if (file->f_path.mnt != dst_file->f_path.mnt) {
2126 			info->status = -EXDEV;
2127 		} else if (S_ISDIR(dst->i_mode)) {
2128 			info->status = -EISDIR;
2129 		} else if (dst_file->f_op->dedupe_file_range == NULL) {
2130 			info->status = -EINVAL;
2131 		} else {
2132 			deduped = dst_file->f_op->dedupe_file_range(file, off,
2133 							len, dst_file,
2134 							info->dest_offset);
2135 			if (deduped == -EBADE)
2136 				info->status = FILE_DEDUPE_RANGE_DIFFERS;
2137 			else if (deduped < 0)
2138 				info->status = deduped;
2139 			else
2140 				info->bytes_deduped += deduped;
2141 		}
2142 
2143 next_file:
2144 		mnt_drop_write_file(dst_file);
2145 next_loop:
2146 		fdput(dst_fd);
2147 
2148 		if (fatal_signal_pending(current))
2149 			goto out;
2150 	}
2151 
2152 out:
2153 	return ret;
2154 }
2155 EXPORT_SYMBOL(vfs_dedupe_file_range);
2156