xref: /openbmc/linux/fs/btrfs/reflink.c (revision 1559d94f)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/blkdev.h>
4 #include <linux/iversion.h>
5 #include "compression.h"
6 #include "ctree.h"
7 #include "delalloc-space.h"
8 #include "reflink.h"
9 #include "transaction.h"
10 
11 #define BTRFS_MAX_DEDUPE_LEN	SZ_16M
12 
13 static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
14 				     struct inode *inode,
15 				     u64 endoff,
16 				     const u64 destoff,
17 				     const u64 olen,
18 				     int no_time_update)
19 {
20 	struct btrfs_root *root = BTRFS_I(inode)->root;
21 	int ret;
22 
23 	inode_inc_iversion(inode);
24 	if (!no_time_update)
25 		inode->i_mtime = inode->i_ctime = current_time(inode);
26 	/*
27 	 * We round up to the block size at eof when determining which
28 	 * extents to clone above, but shouldn't round up the file size.
29 	 */
30 	if (endoff > destoff + olen)
31 		endoff = destoff + olen;
32 	if (endoff > inode->i_size) {
33 		i_size_write(inode, endoff);
34 		btrfs_inode_safe_disk_i_size_write(inode, 0);
35 	}
36 
37 	ret = btrfs_update_inode(trans, root, inode);
38 	if (ret) {
39 		btrfs_abort_transaction(trans, ret);
40 		btrfs_end_transaction(trans);
41 		goto out;
42 	}
43 	ret = btrfs_end_transaction(trans);
44 out:
45 	return ret;
46 }
47 
48 static int copy_inline_to_page(struct btrfs_inode *inode,
49 			       const u64 file_offset,
50 			       char *inline_data,
51 			       const u64 size,
52 			       const u64 datal,
53 			       const u8 comp_type)
54 {
55 	const u64 block_size = btrfs_inode_sectorsize(inode);
56 	const u64 range_end = file_offset + block_size - 1;
57 	const size_t inline_size = size - btrfs_file_extent_calc_inline_size(0);
58 	char *data_start = inline_data + btrfs_file_extent_calc_inline_size(0);
59 	struct extent_changeset *data_reserved = NULL;
60 	struct page *page = NULL;
61 	struct address_space *mapping = inode->vfs_inode.i_mapping;
62 	int ret;
63 
64 	ASSERT(IS_ALIGNED(file_offset, block_size));
65 
66 	/*
67 	 * We have flushed and locked the ranges of the source and destination
68 	 * inodes, we also have locked the inodes, so we are safe to do a
69 	 * reservation here. Also we must not do the reservation while holding
70 	 * a transaction open, otherwise we would deadlock.
71 	 */
72 	ret = btrfs_delalloc_reserve_space(inode, &data_reserved, file_offset,
73 					   block_size);
74 	if (ret)
75 		goto out;
76 
77 	page = find_or_create_page(mapping, file_offset >> PAGE_SHIFT,
78 				   btrfs_alloc_write_mask(mapping));
79 	if (!page) {
80 		ret = -ENOMEM;
81 		goto out_unlock;
82 	}
83 
84 	set_page_extent_mapped(page);
85 	clear_extent_bit(&inode->io_tree, file_offset, range_end,
86 			 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
87 			 0, 0, NULL);
88 	ret = btrfs_set_extent_delalloc(inode, file_offset, range_end, 0, NULL);
89 	if (ret)
90 		goto out_unlock;
91 
92 	/*
93 	 * After dirtying the page our caller will need to start a transaction,
94 	 * and if we are low on metadata free space, that can cause flushing of
95 	 * delalloc for all inodes in order to get metadata space released.
96 	 * However we are holding the range locked for the whole duration of
97 	 * the clone/dedupe operation, so we may deadlock if that happens and no
98 	 * other task releases enough space. So mark this inode as not being
99 	 * possible to flush to avoid such deadlock. We will clear that flag
100 	 * when we finish cloning all extents, since a transaction is started
101 	 * after finding each extent to clone.
102 	 */
103 	set_bit(BTRFS_INODE_NO_DELALLOC_FLUSH, &inode->runtime_flags);
104 
105 	if (comp_type == BTRFS_COMPRESS_NONE) {
106 		char *map;
107 
108 		map = kmap(page);
109 		memcpy(map, data_start, datal);
110 		flush_dcache_page(page);
111 		kunmap(page);
112 	} else {
113 		ret = btrfs_decompress(comp_type, data_start, page, 0,
114 				       inline_size, datal);
115 		if (ret)
116 			goto out_unlock;
117 		flush_dcache_page(page);
118 	}
119 
120 	/*
121 	 * If our inline data is smaller then the block/page size, then the
122 	 * remaining of the block/page is equivalent to zeroes. We had something
123 	 * like the following done:
124 	 *
125 	 * $ xfs_io -f -c "pwrite -S 0xab 0 500" file
126 	 * $ sync  # (or fsync)
127 	 * $ xfs_io -c "falloc 0 4K" file
128 	 * $ xfs_io -c "pwrite -S 0xcd 4K 4K"
129 	 *
130 	 * So what's in the range [500, 4095] corresponds to zeroes.
131 	 */
132 	if (datal < block_size) {
133 		char *map;
134 
135 		map = kmap(page);
136 		memset(map + datal, 0, block_size - datal);
137 		flush_dcache_page(page);
138 		kunmap(page);
139 	}
140 
141 	SetPageUptodate(page);
142 	ClearPageChecked(page);
143 	set_page_dirty(page);
144 out_unlock:
145 	if (page) {
146 		unlock_page(page);
147 		put_page(page);
148 	}
149 	if (ret)
150 		btrfs_delalloc_release_space(inode, data_reserved, file_offset,
151 					     block_size, true);
152 	btrfs_delalloc_release_extents(inode, block_size);
153 out:
154 	extent_changeset_free(data_reserved);
155 
156 	return ret;
157 }
158 
159 /*
160  * Deal with cloning of inline extents. We try to copy the inline extent from
161  * the source inode to destination inode when possible. When not possible we
162  * copy the inline extent's data into the respective page of the inode.
163  */
164 static int clone_copy_inline_extent(struct inode *dst,
165 				    struct btrfs_path *path,
166 				    struct btrfs_key *new_key,
167 				    const u64 drop_start,
168 				    const u64 datal,
169 				    const u64 size,
170 				    const u8 comp_type,
171 				    char *inline_data,
172 				    struct btrfs_trans_handle **trans_out)
173 {
174 	struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
175 	struct btrfs_root *root = BTRFS_I(dst)->root;
176 	const u64 aligned_end = ALIGN(new_key->offset + datal,
177 				      fs_info->sectorsize);
178 	struct btrfs_trans_handle *trans = NULL;
179 	int ret;
180 	struct btrfs_key key;
181 
182 	if (new_key->offset > 0) {
183 		ret = copy_inline_to_page(BTRFS_I(dst), new_key->offset,
184 					  inline_data, size, datal, comp_type);
185 		goto out;
186 	}
187 
188 	key.objectid = btrfs_ino(BTRFS_I(dst));
189 	key.type = BTRFS_EXTENT_DATA_KEY;
190 	key.offset = 0;
191 	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
192 	if (ret < 0) {
193 		return ret;
194 	} else if (ret > 0) {
195 		if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
196 			ret = btrfs_next_leaf(root, path);
197 			if (ret < 0)
198 				return ret;
199 			else if (ret > 0)
200 				goto copy_inline_extent;
201 		}
202 		btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
203 		if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
204 		    key.type == BTRFS_EXTENT_DATA_KEY) {
205 			/*
206 			 * There's an implicit hole at file offset 0, copy the
207 			 * inline extent's data to the page.
208 			 */
209 			ASSERT(key.offset > 0);
210 			ret = copy_inline_to_page(BTRFS_I(dst), new_key->offset,
211 						  inline_data, size, datal,
212 						  comp_type);
213 			goto out;
214 		}
215 	} else if (i_size_read(dst) <= datal) {
216 		struct btrfs_file_extent_item *ei;
217 
218 		ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
219 				    struct btrfs_file_extent_item);
220 		/*
221 		 * If it's an inline extent replace it with the source inline
222 		 * extent, otherwise copy the source inline extent data into
223 		 * the respective page at the destination inode.
224 		 */
225 		if (btrfs_file_extent_type(path->nodes[0], ei) ==
226 		    BTRFS_FILE_EXTENT_INLINE)
227 			goto copy_inline_extent;
228 
229 		ret = copy_inline_to_page(BTRFS_I(dst), new_key->offset,
230 					  inline_data, size, datal, comp_type);
231 		goto out;
232 	}
233 
234 copy_inline_extent:
235 	ret = 0;
236 	/*
237 	 * We have no extent items, or we have an extent at offset 0 which may
238 	 * or may not be inlined. All these cases are dealt the same way.
239 	 */
240 	if (i_size_read(dst) > datal) {
241 		/*
242 		 * At the destination offset 0 we have either a hole, a regular
243 		 * extent or an inline extent larger then the one we want to
244 		 * clone. Deal with all these cases by copying the inline extent
245 		 * data into the respective page at the destination inode.
246 		 */
247 		ret = copy_inline_to_page(BTRFS_I(dst), new_key->offset,
248 					  inline_data, size, datal, comp_type);
249 		goto out;
250 	}
251 
252 	btrfs_release_path(path);
253 	/*
254 	 * If we end up here it means were copy the inline extent into a leaf
255 	 * of the destination inode. We know we will drop or adjust at most one
256 	 * extent item in the destination root.
257 	 *
258 	 * 1 unit - adjusting old extent (we may have to split it)
259 	 * 1 unit - add new extent
260 	 * 1 unit - inode update
261 	 */
262 	trans = btrfs_start_transaction(root, 3);
263 	if (IS_ERR(trans)) {
264 		ret = PTR_ERR(trans);
265 		trans = NULL;
266 		goto out;
267 	}
268 	ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
269 	if (ret)
270 		goto out;
271 	ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
272 	if (ret)
273 		goto out;
274 
275 	write_extent_buffer(path->nodes[0], inline_data,
276 			    btrfs_item_ptr_offset(path->nodes[0],
277 						  path->slots[0]),
278 			    size);
279 	inode_add_bytes(dst, datal);
280 	set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(dst)->runtime_flags);
281 	ret = btrfs_inode_set_file_extent_range(BTRFS_I(dst), 0, aligned_end);
282 out:
283 	if (!ret && !trans) {
284 		/*
285 		 * No transaction here means we copied the inline extent into a
286 		 * page of the destination inode.
287 		 *
288 		 * 1 unit to update inode item
289 		 */
290 		trans = btrfs_start_transaction(root, 1);
291 		if (IS_ERR(trans)) {
292 			ret = PTR_ERR(trans);
293 			trans = NULL;
294 		}
295 	}
296 	if (ret && trans) {
297 		btrfs_abort_transaction(trans, ret);
298 		btrfs_end_transaction(trans);
299 	}
300 	if (!ret)
301 		*trans_out = trans;
302 
303 	return ret;
304 }
305 
306 /**
307  * btrfs_clone() - clone a range from inode file to another
308  *
309  * @src: Inode to clone from
310  * @inode: Inode to clone to
311  * @off: Offset within source to start clone from
312  * @olen: Original length, passed by user, of range to clone
313  * @olen_aligned: Block-aligned value of olen
314  * @destoff: Offset within @inode to start clone
315  * @no_time_update: Whether to update mtime/ctime on the target inode
316  */
317 static int btrfs_clone(struct inode *src, struct inode *inode,
318 		       const u64 off, const u64 olen, const u64 olen_aligned,
319 		       const u64 destoff, int no_time_update)
320 {
321 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
322 	struct btrfs_path *path = NULL;
323 	struct extent_buffer *leaf;
324 	struct btrfs_trans_handle *trans;
325 	char *buf = NULL;
326 	struct btrfs_key key;
327 	u32 nritems;
328 	int slot;
329 	int ret;
330 	const u64 len = olen_aligned;
331 	u64 last_dest_end = destoff;
332 
333 	ret = -ENOMEM;
334 	buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
335 	if (!buf)
336 		return ret;
337 
338 	path = btrfs_alloc_path();
339 	if (!path) {
340 		kvfree(buf);
341 		return ret;
342 	}
343 
344 	path->reada = READA_FORWARD;
345 	/* Clone data */
346 	key.objectid = btrfs_ino(BTRFS_I(src));
347 	key.type = BTRFS_EXTENT_DATA_KEY;
348 	key.offset = off;
349 
350 	while (1) {
351 		u64 next_key_min_offset = key.offset + 1;
352 		struct btrfs_file_extent_item *extent;
353 		u64 extent_gen;
354 		int type;
355 		u32 size;
356 		struct btrfs_key new_key;
357 		u64 disko = 0, diskl = 0;
358 		u64 datao = 0, datal = 0;
359 		u8 comp;
360 		u64 drop_start;
361 
362 		/* Note the key will change type as we walk through the tree */
363 		path->leave_spinning = 1;
364 		ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
365 				0, 0);
366 		if (ret < 0)
367 			goto out;
368 		/*
369 		 * First search, if no extent item that starts at offset off was
370 		 * found but the previous item is an extent item, it's possible
371 		 * it might overlap our target range, therefore process it.
372 		 */
373 		if (key.offset == off && ret > 0 && path->slots[0] > 0) {
374 			btrfs_item_key_to_cpu(path->nodes[0], &key,
375 					      path->slots[0] - 1);
376 			if (key.type == BTRFS_EXTENT_DATA_KEY)
377 				path->slots[0]--;
378 		}
379 
380 		nritems = btrfs_header_nritems(path->nodes[0]);
381 process_slot:
382 		if (path->slots[0] >= nritems) {
383 			ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
384 			if (ret < 0)
385 				goto out;
386 			if (ret > 0)
387 				break;
388 			nritems = btrfs_header_nritems(path->nodes[0]);
389 		}
390 		leaf = path->nodes[0];
391 		slot = path->slots[0];
392 
393 		btrfs_item_key_to_cpu(leaf, &key, slot);
394 		if (key.type > BTRFS_EXTENT_DATA_KEY ||
395 		    key.objectid != btrfs_ino(BTRFS_I(src)))
396 			break;
397 
398 		ASSERT(key.type == BTRFS_EXTENT_DATA_KEY);
399 
400 		extent = btrfs_item_ptr(leaf, slot,
401 					struct btrfs_file_extent_item);
402 		extent_gen = btrfs_file_extent_generation(leaf, extent);
403 		comp = btrfs_file_extent_compression(leaf, extent);
404 		type = btrfs_file_extent_type(leaf, extent);
405 		if (type == BTRFS_FILE_EXTENT_REG ||
406 		    type == BTRFS_FILE_EXTENT_PREALLOC) {
407 			disko = btrfs_file_extent_disk_bytenr(leaf, extent);
408 			diskl = btrfs_file_extent_disk_num_bytes(leaf, extent);
409 			datao = btrfs_file_extent_offset(leaf, extent);
410 			datal = btrfs_file_extent_num_bytes(leaf, extent);
411 		} else if (type == BTRFS_FILE_EXTENT_INLINE) {
412 			/* Take upper bound, may be compressed */
413 			datal = btrfs_file_extent_ram_bytes(leaf, extent);
414 		}
415 
416 		/*
417 		 * The first search might have left us at an extent item that
418 		 * ends before our target range's start, can happen if we have
419 		 * holes and NO_HOLES feature enabled.
420 		 */
421 		if (key.offset + datal <= off) {
422 			path->slots[0]++;
423 			goto process_slot;
424 		} else if (key.offset >= off + len) {
425 			break;
426 		}
427 		next_key_min_offset = key.offset + datal;
428 		size = btrfs_item_size_nr(leaf, slot);
429 		read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf, slot),
430 				   size);
431 
432 		btrfs_release_path(path);
433 		path->leave_spinning = 0;
434 
435 		memcpy(&new_key, &key, sizeof(new_key));
436 		new_key.objectid = btrfs_ino(BTRFS_I(inode));
437 		if (off <= key.offset)
438 			new_key.offset = key.offset + destoff - off;
439 		else
440 			new_key.offset = destoff;
441 
442 		/*
443 		 * Deal with a hole that doesn't have an extent item that
444 		 * represents it (NO_HOLES feature enabled).
445 		 * This hole is either in the middle of the cloning range or at
446 		 * the beginning (fully overlaps it or partially overlaps it).
447 		 */
448 		if (new_key.offset != last_dest_end)
449 			drop_start = last_dest_end;
450 		else
451 			drop_start = new_key.offset;
452 
453 		if (type == BTRFS_FILE_EXTENT_REG ||
454 		    type == BTRFS_FILE_EXTENT_PREALLOC) {
455 			struct btrfs_replace_extent_info clone_info;
456 
457 			/*
458 			 *    a  | --- range to clone ---|  b
459 			 * | ------------- extent ------------- |
460 			 */
461 
462 			/* Subtract range b */
463 			if (key.offset + datal > off + len)
464 				datal = off + len - key.offset;
465 
466 			/* Subtract range a */
467 			if (off > key.offset) {
468 				datao += off - key.offset;
469 				datal -= off - key.offset;
470 			}
471 
472 			clone_info.disk_offset = disko;
473 			clone_info.disk_len = diskl;
474 			clone_info.data_offset = datao;
475 			clone_info.data_len = datal;
476 			clone_info.file_offset = new_key.offset;
477 			clone_info.extent_buf = buf;
478 			clone_info.is_new_extent = false;
479 			ret = btrfs_replace_file_extents(inode, path, drop_start,
480 					new_key.offset + datal - 1, &clone_info,
481 					&trans);
482 			if (ret)
483 				goto out;
484 		} else if (type == BTRFS_FILE_EXTENT_INLINE) {
485 			/*
486 			 * Inline extents always have to start at file offset 0
487 			 * and can never be bigger then the sector size. We can
488 			 * never clone only parts of an inline extent, since all
489 			 * reflink operations must start at a sector size aligned
490 			 * offset, and the length must be aligned too or end at
491 			 * the i_size (which implies the whole inlined data).
492 			 */
493 			ASSERT(key.offset == 0);
494 			ASSERT(datal <= fs_info->sectorsize);
495 			if (key.offset != 0 || datal > fs_info->sectorsize)
496 				return -EUCLEAN;
497 
498 			ret = clone_copy_inline_extent(inode, path, &new_key,
499 						       drop_start, datal, size,
500 						       comp, buf, &trans);
501 			if (ret)
502 				goto out;
503 		}
504 
505 		btrfs_release_path(path);
506 
507 		/*
508 		 * If this is a new extent update the last_reflink_trans of both
509 		 * inodes. This is used by fsync to make sure it does not log
510 		 * multiple checksum items with overlapping ranges. For older
511 		 * extents we don't need to do it since inode logging skips the
512 		 * checksums for older extents. Also ignore holes and inline
513 		 * extents because they don't have checksums in the csum tree.
514 		 */
515 		if (extent_gen == trans->transid && disko > 0) {
516 			BTRFS_I(src)->last_reflink_trans = trans->transid;
517 			BTRFS_I(inode)->last_reflink_trans = trans->transid;
518 		}
519 
520 		last_dest_end = ALIGN(new_key.offset + datal,
521 				      fs_info->sectorsize);
522 		ret = clone_finish_inode_update(trans, inode, last_dest_end,
523 						destoff, olen, no_time_update);
524 		if (ret)
525 			goto out;
526 		if (new_key.offset + datal >= destoff + len)
527 			break;
528 
529 		btrfs_release_path(path);
530 		key.offset = next_key_min_offset;
531 
532 		if (fatal_signal_pending(current)) {
533 			ret = -EINTR;
534 			goto out;
535 		}
536 
537 		cond_resched();
538 	}
539 	ret = 0;
540 
541 	if (last_dest_end < destoff + len) {
542 		/*
543 		 * We have an implicit hole that fully or partially overlaps our
544 		 * cloning range at its end. This means that we either have the
545 		 * NO_HOLES feature enabled or the implicit hole happened due to
546 		 * mixing buffered and direct IO writes against this file.
547 		 */
548 		btrfs_release_path(path);
549 		path->leave_spinning = 0;
550 
551 		/*
552 		 * When using NO_HOLES and we are cloning a range that covers
553 		 * only a hole (no extents) into a range beyond the current
554 		 * i_size, punching a hole in the target range will not create
555 		 * an extent map defining a hole, because the range starts at or
556 		 * beyond current i_size. If the file previously had an i_size
557 		 * greater than the new i_size set by this clone operation, we
558 		 * need to make sure the next fsync is a full fsync, so that it
559 		 * detects and logs a hole covering a range from the current
560 		 * i_size to the new i_size. If the clone range covers extents,
561 		 * besides a hole, then we know the full sync flag was already
562 		 * set by previous calls to btrfs_replace_file_extents() that
563 		 * replaced file extent items.
564 		 */
565 		if (last_dest_end >= i_size_read(inode))
566 			set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
567 				&BTRFS_I(inode)->runtime_flags);
568 
569 		ret = btrfs_replace_file_extents(inode, path, last_dest_end,
570 				destoff + len - 1, NULL, &trans);
571 		if (ret)
572 			goto out;
573 
574 		ret = clone_finish_inode_update(trans, inode, destoff + len,
575 						destoff, olen, no_time_update);
576 	}
577 
578 out:
579 	btrfs_free_path(path);
580 	kvfree(buf);
581 	clear_bit(BTRFS_INODE_NO_DELALLOC_FLUSH, &BTRFS_I(inode)->runtime_flags);
582 
583 	return ret;
584 }
585 
586 static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
587 				       struct inode *inode2, u64 loff2, u64 len)
588 {
589 	unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
590 	unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
591 }
592 
593 static void btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
594 				     struct inode *inode2, u64 loff2, u64 len)
595 {
596 	if (inode1 < inode2) {
597 		swap(inode1, inode2);
598 		swap(loff1, loff2);
599 	} else if (inode1 == inode2 && loff2 < loff1) {
600 		swap(loff1, loff2);
601 	}
602 	lock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
603 	lock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
604 }
605 
606 static int btrfs_extent_same_range(struct inode *src, u64 loff, u64 len,
607 				   struct inode *dst, u64 dst_loff)
608 {
609 	const u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
610 	int ret;
611 
612 	/*
613 	 * Lock destination range to serialize with concurrent readpages() and
614 	 * source range to serialize with relocation.
615 	 */
616 	btrfs_double_extent_lock(src, loff, dst, dst_loff, len);
617 	ret = btrfs_clone(src, dst, loff, len, ALIGN(len, bs), dst_loff, 1);
618 	btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
619 
620 	return ret;
621 }
622 
623 static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
624 			     struct inode *dst, u64 dst_loff)
625 {
626 	int ret;
627 	u64 i, tail_len, chunk_count;
628 	struct btrfs_root *root_dst = BTRFS_I(dst)->root;
629 
630 	spin_lock(&root_dst->root_item_lock);
631 	if (root_dst->send_in_progress) {
632 		btrfs_warn_rl(root_dst->fs_info,
633 "cannot deduplicate to root %llu while send operations are using it (%d in progress)",
634 			      root_dst->root_key.objectid,
635 			      root_dst->send_in_progress);
636 		spin_unlock(&root_dst->root_item_lock);
637 		return -EAGAIN;
638 	}
639 	root_dst->dedupe_in_progress++;
640 	spin_unlock(&root_dst->root_item_lock);
641 
642 	tail_len = olen % BTRFS_MAX_DEDUPE_LEN;
643 	chunk_count = div_u64(olen, BTRFS_MAX_DEDUPE_LEN);
644 
645 	for (i = 0; i < chunk_count; i++) {
646 		ret = btrfs_extent_same_range(src, loff, BTRFS_MAX_DEDUPE_LEN,
647 					      dst, dst_loff);
648 		if (ret)
649 			goto out;
650 
651 		loff += BTRFS_MAX_DEDUPE_LEN;
652 		dst_loff += BTRFS_MAX_DEDUPE_LEN;
653 	}
654 
655 	if (tail_len > 0)
656 		ret = btrfs_extent_same_range(src, loff, tail_len, dst, dst_loff);
657 out:
658 	spin_lock(&root_dst->root_item_lock);
659 	root_dst->dedupe_in_progress--;
660 	spin_unlock(&root_dst->root_item_lock);
661 
662 	return ret;
663 }
664 
665 static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
666 					u64 off, u64 olen, u64 destoff)
667 {
668 	struct inode *inode = file_inode(file);
669 	struct inode *src = file_inode(file_src);
670 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
671 	int ret;
672 	int wb_ret;
673 	u64 len = olen;
674 	u64 bs = fs_info->sb->s_blocksize;
675 
676 	/*
677 	 * VFS's generic_remap_file_range_prep() protects us from cloning the
678 	 * eof block into the middle of a file, which would result in corruption
679 	 * if the file size is not blocksize aligned. So we don't need to check
680 	 * for that case here.
681 	 */
682 	if (off + len == src->i_size)
683 		len = ALIGN(src->i_size, bs) - off;
684 
685 	if (destoff > inode->i_size) {
686 		const u64 wb_start = ALIGN_DOWN(inode->i_size, bs);
687 
688 		ret = btrfs_cont_expand(inode, inode->i_size, destoff);
689 		if (ret)
690 			return ret;
691 		/*
692 		 * We may have truncated the last block if the inode's size is
693 		 * not sector size aligned, so we need to wait for writeback to
694 		 * complete before proceeding further, otherwise we can race
695 		 * with cloning and attempt to increment a reference to an
696 		 * extent that no longer exists (writeback completed right after
697 		 * we found the previous extent covering eof and before we
698 		 * attempted to increment its reference count).
699 		 */
700 		ret = btrfs_wait_ordered_range(inode, wb_start,
701 					       destoff - wb_start);
702 		if (ret)
703 			return ret;
704 	}
705 
706 	/*
707 	 * Lock destination range to serialize with concurrent readpages() and
708 	 * source range to serialize with relocation.
709 	 */
710 	btrfs_double_extent_lock(src, off, inode, destoff, len);
711 	ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
712 	btrfs_double_extent_unlock(src, off, inode, destoff, len);
713 
714 	/*
715 	 * We may have copied an inline extent into a page of the destination
716 	 * range, so wait for writeback to complete before truncating pages
717 	 * from the page cache. This is a rare case.
718 	 */
719 	wb_ret = btrfs_wait_ordered_range(inode, destoff, len);
720 	ret = ret ? ret : wb_ret;
721 	/*
722 	 * Truncate page cache pages so that future reads will see the cloned
723 	 * data immediately and not the previous data.
724 	 */
725 	truncate_inode_pages_range(&inode->i_data,
726 				round_down(destoff, PAGE_SIZE),
727 				round_up(destoff + len, PAGE_SIZE) - 1);
728 
729 	return ret;
730 }
731 
732 static int btrfs_remap_file_range_prep(struct file *file_in, loff_t pos_in,
733 				       struct file *file_out, loff_t pos_out,
734 				       loff_t *len, unsigned int remap_flags)
735 {
736 	struct inode *inode_in = file_inode(file_in);
737 	struct inode *inode_out = file_inode(file_out);
738 	u64 bs = BTRFS_I(inode_out)->root->fs_info->sb->s_blocksize;
739 	bool same_inode = inode_out == inode_in;
740 	u64 wb_len;
741 	int ret;
742 
743 	if (!(remap_flags & REMAP_FILE_DEDUP)) {
744 		struct btrfs_root *root_out = BTRFS_I(inode_out)->root;
745 
746 		if (btrfs_root_readonly(root_out))
747 			return -EROFS;
748 
749 		if (file_in->f_path.mnt != file_out->f_path.mnt ||
750 		    inode_in->i_sb != inode_out->i_sb)
751 			return -EXDEV;
752 	}
753 
754 	/* Don't make the dst file partly checksummed */
755 	if ((BTRFS_I(inode_in)->flags & BTRFS_INODE_NODATASUM) !=
756 	    (BTRFS_I(inode_out)->flags & BTRFS_INODE_NODATASUM)) {
757 		return -EINVAL;
758 	}
759 
760 	/*
761 	 * Now that the inodes are locked, we need to start writeback ourselves
762 	 * and can not rely on the writeback from the VFS's generic helper
763 	 * generic_remap_file_range_prep() because:
764 	 *
765 	 * 1) For compression we must call filemap_fdatawrite_range() range
766 	 *    twice (btrfs_fdatawrite_range() does it for us), and the generic
767 	 *    helper only calls it once;
768 	 *
769 	 * 2) filemap_fdatawrite_range(), called by the generic helper only
770 	 *    waits for the writeback to complete, i.e. for IO to be done, and
771 	 *    not for the ordered extents to complete. We need to wait for them
772 	 *    to complete so that new file extent items are in the fs tree.
773 	 */
774 	if (*len == 0 && !(remap_flags & REMAP_FILE_DEDUP))
775 		wb_len = ALIGN(inode_in->i_size, bs) - ALIGN_DOWN(pos_in, bs);
776 	else
777 		wb_len = ALIGN(*len, bs);
778 
779 	/*
780 	 * Since we don't lock ranges, wait for ongoing lockless dio writes (as
781 	 * any in progress could create its ordered extents after we wait for
782 	 * existing ordered extents below).
783 	 */
784 	inode_dio_wait(inode_in);
785 	if (!same_inode)
786 		inode_dio_wait(inode_out);
787 
788 	/*
789 	 * Workaround to make sure NOCOW buffered write reach disk as NOCOW.
790 	 *
791 	 * Btrfs' back references do not have a block level granularity, they
792 	 * work at the whole extent level.
793 	 * NOCOW buffered write without data space reserved may not be able
794 	 * to fall back to CoW due to lack of data space, thus could cause
795 	 * data loss.
796 	 *
797 	 * Here we take a shortcut by flushing the whole inode, so that all
798 	 * nocow write should reach disk as nocow before we increase the
799 	 * reference of the extent. We could do better by only flushing NOCOW
800 	 * data, but that needs extra accounting.
801 	 *
802 	 * Also we don't need to check ASYNC_EXTENT, as async extent will be
803 	 * CoWed anyway, not affecting nocow part.
804 	 */
805 	ret = filemap_flush(inode_in->i_mapping);
806 	if (ret < 0)
807 		return ret;
808 
809 	ret = btrfs_wait_ordered_range(inode_in, ALIGN_DOWN(pos_in, bs),
810 				       wb_len);
811 	if (ret < 0)
812 		return ret;
813 	ret = btrfs_wait_ordered_range(inode_out, ALIGN_DOWN(pos_out, bs),
814 				       wb_len);
815 	if (ret < 0)
816 		return ret;
817 
818 	return generic_remap_file_range_prep(file_in, pos_in, file_out, pos_out,
819 					    len, remap_flags);
820 }
821 
822 loff_t btrfs_remap_file_range(struct file *src_file, loff_t off,
823 		struct file *dst_file, loff_t destoff, loff_t len,
824 		unsigned int remap_flags)
825 {
826 	struct inode *src_inode = file_inode(src_file);
827 	struct inode *dst_inode = file_inode(dst_file);
828 	bool same_inode = dst_inode == src_inode;
829 	int ret;
830 
831 	if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
832 		return -EINVAL;
833 
834 	if (same_inode)
835 		inode_lock(src_inode);
836 	else
837 		lock_two_nondirectories(src_inode, dst_inode);
838 
839 	ret = btrfs_remap_file_range_prep(src_file, off, dst_file, destoff,
840 					  &len, remap_flags);
841 	if (ret < 0 || len == 0)
842 		goto out_unlock;
843 
844 	if (remap_flags & REMAP_FILE_DEDUP)
845 		ret = btrfs_extent_same(src_inode, off, len, dst_inode, destoff);
846 	else
847 		ret = btrfs_clone_files(dst_file, src_file, off, len, destoff);
848 
849 out_unlock:
850 	if (same_inode)
851 		inode_unlock(src_inode);
852 	else
853 		unlock_two_nondirectories(src_inode, dst_inode);
854 
855 	return ret < 0 ? ret : len;
856 }
857