1 // SPDX-License-Identifier: GPL-2.0-only
2 #include <linux/slab.h>
3 #include <linux/stat.h>
4 #include <linux/sched/xacct.h>
5 #include <linux/fcntl.h>
6 #include <linux/file.h>
8 #include <linux/fsnotify.h>
9 #include <linux/security.h>
10 #include <linux/export.h>
11 #include <linux/syscalls.h>
12 #include <linux/pagemap.h>
13 #include <linux/splice.h>
14 #include <linux/compat.h>
15 #include <linux/mount.h>
19 #include <linux/uaccess.h>
20 #include <asm/unistd.h>
23 * Performs necessary checks before doing a clone.
25 * Can adjust amount of bytes to clone via @req_count argument.
26 * Returns appropriate error code that caller should return or
27 * zero in case the clone should be allowed.
29 static int generic_remap_checks(struct file *file_in, loff_t pos_in,
30 struct file *file_out, loff_t pos_out,
31 loff_t *req_count, unsigned int remap_flags)
33 struct inode *inode_in = file_in->f_mapping->host;
34 struct inode *inode_out = file_out->f_mapping->host;
35 uint64_t count = *req_count;
37 loff_t size_in, size_out;
38 loff_t bs = inode_out->i_sb->s_blocksize;
41 /* The start of both ranges must be aligned to an fs block. */
42 if (!IS_ALIGNED(pos_in, bs) || !IS_ALIGNED(pos_out, bs))
45 /* Ensure offsets don't wrap. */
46 if (pos_in + count < pos_in || pos_out + count < pos_out)
49 size_in = i_size_read(inode_in);
50 size_out = i_size_read(inode_out);
52 /* Dedupe requires both ranges to be within EOF. */
53 if ((remap_flags & REMAP_FILE_DEDUP) &&
54 (pos_in >= size_in || pos_in + count > size_in ||
55 pos_out >= size_out || pos_out + count > size_out))
58 /* Ensure the infile range is within the infile. */
59 if (pos_in >= size_in)
61 count = min(count, size_in - (uint64_t)pos_in);
63 ret = generic_write_check_limits(file_out, pos_out, &count);
68 * If the user wanted us to link to the infile's EOF, round up to the
69 * next block boundary for this check.
71 * Otherwise, make sure the count is also block-aligned, having
72 * already confirmed the starting offsets' block alignment.
74 if (pos_in + count == size_in) {
75 bcount = ALIGN(size_in, bs) - pos_in;
77 if (!IS_ALIGNED(count, bs))
78 count = ALIGN_DOWN(count, bs);
82 /* Don't allow overlapped cloning within the same file. */
83 if (inode_in == inode_out &&
84 pos_out + bcount > pos_in &&
85 pos_out < pos_in + bcount)
89 * We shortened the request but the caller can't deal with that, so
90 * bounce the request back to userspace.
92 if (*req_count != count && !(remap_flags & REMAP_FILE_CAN_SHORTEN))
99 static int remap_verify_area(struct file *file, loff_t pos, loff_t len,
102 if (unlikely(pos < 0 || len < 0))
105 if (unlikely((loff_t) (pos + len) < 0))
108 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
112 * Ensure that we don't remap a partial EOF block in the middle of something
113 * else. Assume that the offsets have already been checked for block
116 * For clone we only link a partial EOF block above or at the destination file's
117 * EOF. For deduplication we accept a partial EOF block only if it ends at the
118 * destination file's EOF (can not link it into the middle of a file).
120 * Shorten the request if possible.
122 static int generic_remap_check_len(struct inode *inode_in,
123 struct inode *inode_out,
126 unsigned int remap_flags)
128 u64 blkmask = i_blocksize(inode_in) - 1;
129 loff_t new_len = *len;
131 if ((*len & blkmask) == 0)
134 if (pos_out + *len < i_size_read(inode_out))
140 if (remap_flags & REMAP_FILE_CAN_SHORTEN) {
145 return (remap_flags & REMAP_FILE_DEDUP) ? -EBADE : -EINVAL;
148 /* Read a page's worth of file data into the page cache. */
149 static struct page *vfs_dedupe_get_page(struct inode *inode, loff_t offset)
153 page = read_mapping_page(inode->i_mapping, offset >> PAGE_SHIFT, NULL);
156 if (!PageUptodate(page)) {
158 return ERR_PTR(-EIO);
164 * Lock two pages, ensuring that we lock in offset order if the pages are from
167 static void vfs_lock_two_pages(struct page *page1, struct page *page2)
169 /* Always lock in order of increasing index. */
170 if (page1->index > page2->index)
178 /* Unlock two pages, being careful not to unlock the same page twice. */
179 static void vfs_unlock_two_pages(struct page *page1, struct page *page2)
187 * Compare extents of two files to see if they are the same.
188 * Caller must have locked both inodes to prevent write races.
190 static int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
191 struct inode *dest, loff_t destoff,
192 loff_t len, bool *is_same)
198 struct page *src_page;
199 struct page *dest_page;
207 src_poff = srcoff & (PAGE_SIZE - 1);
208 dest_poff = destoff & (PAGE_SIZE - 1);
209 cmp_len = min(PAGE_SIZE - src_poff,
210 PAGE_SIZE - dest_poff);
211 cmp_len = min(cmp_len, len);
215 src_page = vfs_dedupe_get_page(src, srcoff);
216 if (IS_ERR(src_page)) {
217 error = PTR_ERR(src_page);
220 dest_page = vfs_dedupe_get_page(dest, destoff);
221 if (IS_ERR(dest_page)) {
222 error = PTR_ERR(dest_page);
227 vfs_lock_two_pages(src_page, dest_page);
230 * Now that we've locked both pages, make sure they're still
231 * mapped to the file data we're interested in. If not,
232 * someone is invalidating pages on us and we lose.
234 if (!PageUptodate(src_page) || !PageUptodate(dest_page) ||
235 src_page->mapping != src->i_mapping ||
236 dest_page->mapping != dest->i_mapping) {
241 src_addr = kmap_atomic(src_page);
242 dest_addr = kmap_atomic(dest_page);
244 flush_dcache_page(src_page);
245 flush_dcache_page(dest_page);
247 if (memcmp(src_addr + src_poff, dest_addr + dest_poff, cmp_len))
250 kunmap_atomic(dest_addr);
251 kunmap_atomic(src_addr);
253 vfs_unlock_two_pages(src_page, dest_page);
273 * Check that the two inodes are eligible for cloning, the ranges make
274 * sense, and then flush all dirty data. Caller must ensure that the
275 * inodes have been locked against any other modifications.
277 * If there's an error, then the usual negative error code is returned.
278 * Otherwise returns 0 with *len set to the request length.
280 int generic_remap_file_range_prep(struct file *file_in, loff_t pos_in,
281 struct file *file_out, loff_t pos_out,
282 loff_t *len, unsigned int remap_flags)
284 struct inode *inode_in = file_inode(file_in);
285 struct inode *inode_out = file_inode(file_out);
286 bool same_inode = (inode_in == inode_out);
289 /* Don't touch certain kinds of inodes */
290 if (IS_IMMUTABLE(inode_out))
293 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
296 /* Don't reflink dirs, pipes, sockets... */
297 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
299 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
302 /* Zero length dedupe exits immediately; reflink goes to EOF. */
304 loff_t isize = i_size_read(inode_in);
306 if ((remap_flags & REMAP_FILE_DEDUP) || pos_in == isize)
310 *len = isize - pos_in;
315 /* Check that we don't violate system file offset limits. */
316 ret = generic_remap_checks(file_in, pos_in, file_out, pos_out, len,
321 /* Wait for the completion of any pending IOs on both files */
322 inode_dio_wait(inode_in);
324 inode_dio_wait(inode_out);
326 ret = filemap_write_and_wait_range(inode_in->i_mapping,
327 pos_in, pos_in + *len - 1);
331 ret = filemap_write_and_wait_range(inode_out->i_mapping,
332 pos_out, pos_out + *len - 1);
337 * Check that the extents are the same.
339 if (remap_flags & REMAP_FILE_DEDUP) {
340 bool is_same = false;
342 ret = vfs_dedupe_file_range_compare(inode_in, pos_in,
343 inode_out, pos_out, *len, &is_same);
350 ret = generic_remap_check_len(inode_in, inode_out, pos_out, len,
355 /* If can't alter the file contents, we're done. */
356 if (!(remap_flags & REMAP_FILE_DEDUP))
357 ret = file_modified(file_out);
361 EXPORT_SYMBOL(generic_remap_file_range_prep);
363 loff_t do_clone_file_range(struct file *file_in, loff_t pos_in,
364 struct file *file_out, loff_t pos_out,
365 loff_t len, unsigned int remap_flags)
369 WARN_ON_ONCE(remap_flags & REMAP_FILE_DEDUP);
372 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
373 * the same mount. Practically, they only need to be on the same file
376 if (file_inode(file_in)->i_sb != file_inode(file_out)->i_sb)
379 ret = generic_file_rw_checks(file_in, file_out);
383 if (!file_in->f_op->remap_file_range)
386 ret = remap_verify_area(file_in, pos_in, len, false);
390 ret = remap_verify_area(file_out, pos_out, len, true);
394 ret = file_in->f_op->remap_file_range(file_in, pos_in,
395 file_out, pos_out, len, remap_flags);
399 fsnotify_access(file_in);
400 fsnotify_modify(file_out);
403 EXPORT_SYMBOL(do_clone_file_range);
405 loff_t vfs_clone_file_range(struct file *file_in, loff_t pos_in,
406 struct file *file_out, loff_t pos_out,
407 loff_t len, unsigned int remap_flags)
411 file_start_write(file_out);
412 ret = do_clone_file_range(file_in, pos_in, file_out, pos_out, len,
414 file_end_write(file_out);
418 EXPORT_SYMBOL(vfs_clone_file_range);
420 /* Check whether we are allowed to dedupe the destination file */
421 static bool allow_file_dedupe(struct file *file)
423 struct user_namespace *mnt_userns = file_mnt_user_ns(file);
424 struct inode *inode = file_inode(file);
426 if (capable(CAP_SYS_ADMIN))
428 if (file->f_mode & FMODE_WRITE)
430 if (uid_eq(current_fsuid(), i_uid_into_mnt(mnt_userns, inode)))
432 if (!inode_permission(mnt_userns, inode, MAY_WRITE))
437 loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos,
438 struct file *dst_file, loff_t dst_pos,
439 loff_t len, unsigned int remap_flags)
443 WARN_ON_ONCE(remap_flags & ~(REMAP_FILE_DEDUP |
444 REMAP_FILE_CAN_SHORTEN));
446 ret = mnt_want_write_file(dst_file);
451 * This is redundant if called from vfs_dedupe_file_range(), but other
452 * callers need it and it's not performance sesitive...
454 ret = remap_verify_area(src_file, src_pos, len, false);
458 ret = remap_verify_area(dst_file, dst_pos, len, true);
463 if (!allow_file_dedupe(dst_file))
467 if (src_file->f_path.mnt != dst_file->f_path.mnt)
471 if (S_ISDIR(file_inode(dst_file)->i_mode))
475 if (!dst_file->f_op->remap_file_range)
483 ret = dst_file->f_op->remap_file_range(src_file, src_pos, dst_file,
484 dst_pos, len, remap_flags | REMAP_FILE_DEDUP);
486 mnt_drop_write_file(dst_file);
490 EXPORT_SYMBOL(vfs_dedupe_file_range_one);
492 int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
494 struct file_dedupe_range_info *info;
495 struct inode *src = file_inode(file);
500 u16 count = same->dest_count;
503 if (!(file->f_mode & FMODE_READ))
506 if (same->reserved1 || same->reserved2)
509 off = same->src_offset;
510 len = same->src_length;
512 if (S_ISDIR(src->i_mode))
515 if (!S_ISREG(src->i_mode))
518 if (!file->f_op->remap_file_range)
521 ret = remap_verify_area(file, off, len, false);
526 if (off + len > i_size_read(src))
529 /* Arbitrary 1G limit on a single dedupe request, can be raised. */
530 len = min_t(u64, len, 1 << 30);
532 /* pre-format output fields to sane values */
533 for (i = 0; i < count; i++) {
534 same->info[i].bytes_deduped = 0ULL;
535 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
538 for (i = 0, info = same->info; i < count; i++, info++) {
539 struct fd dst_fd = fdget(info->dest_fd);
540 struct file *dst_file = dst_fd.file;
543 info->status = -EBADF;
547 if (info->reserved) {
548 info->status = -EINVAL;
552 deduped = vfs_dedupe_file_range_one(file, off, dst_file,
553 info->dest_offset, len,
554 REMAP_FILE_CAN_SHORTEN);
555 if (deduped == -EBADE)
556 info->status = FILE_DEDUPE_RANGE_DIFFERS;
557 else if (deduped < 0)
558 info->status = deduped;
560 info->bytes_deduped = len;
565 if (fatal_signal_pending(current))
570 EXPORT_SYMBOL(vfs_dedupe_file_range);