blob: 8af5e867e4caf8d93b2409686793958e87a7972a [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Alexander Block31db9f72012-07-25 23:19:24 +02002/*
3 * Copyright (C) 2012 Alexander Block. All rights reserved.
Alexander Block31db9f72012-07-25 23:19:24 +02004 */
5
6#include <linux/bsearch.h>
7#include <linux/fs.h>
8#include <linux/file.h>
9#include <linux/sort.h>
10#include <linux/mount.h>
11#include <linux/xattr.h>
12#include <linux/posix_acl_xattr.h>
13#include <linux/radix-tree.h>
Stephen Rothwella1857eb2012-07-27 10:11:13 +100014#include <linux/vmalloc.h>
Andy Shevchenkoed848852013-08-21 10:32:13 +030015#include <linux/string.h>
Josef Bacik2351f432017-09-27 10:43:13 -040016#include <linux/compat.h>
Nikolay Borisov9678c542018-01-08 11:45:05 +020017#include <linux/crc32c.h>
Alexander Block31db9f72012-07-25 23:19:24 +020018
19#include "send.h"
20#include "backref.h"
21#include "locking.h"
22#include "disk-io.h"
23#include "btrfs_inode.h"
24#include "transaction.h"
Anand Jainebb87652016-03-10 17:26:59 +080025#include "compression.h"
Marcos Paulo de Souza89efda52020-05-10 23:15:07 -030026#include "xattr.h"
Alexander Block31db9f72012-07-25 23:19:24 +020027
Alexander Block31db9f72012-07-25 23:19:24 +020028/*
Filipe Mananafd0ddbe2019-10-30 12:23:01 +000029 * Maximum number of references an extent can have in order for us to attempt to
30 * issue clone operations instead of write operations. This currently exists to
31 * avoid hitting limitations of the backreference walking code (taking a lot of
32 * time and using too much memory for extents with large number of references).
33 */
34#define SEND_MAX_EXTENT_REFS 64
35
36/*
Alexander Block31db9f72012-07-25 23:19:24 +020037 * A fs_path is a helper to dynamically build path names with unknown size.
38 * It reallocates the internal buffer on demand.
39 * It allows fast adding of path elements on the right side (normal path) and
40 * fast adding to the left side (reversed path). A reversed path can also be
41 * unreversed if needed.
42 */
43struct fs_path {
44 union {
45 struct {
46 char *start;
47 char *end;
Alexander Block31db9f72012-07-25 23:19:24 +020048
49 char *buf;
David Sterba1f5a7ff2014-02-03 19:23:47 +010050 unsigned short buf_len:15;
51 unsigned short reversed:1;
Alexander Block31db9f72012-07-25 23:19:24 +020052 char inline_buf[];
53 };
David Sterbaace01052014-02-05 16:17:34 +010054 /*
55 * Average path length does not exceed 200 bytes, we'll have
56 * better packing in the slab and higher chance to satisfy
57 * a allocation later during send.
58 */
59 char pad[256];
Alexander Block31db9f72012-07-25 23:19:24 +020060 };
61};
62#define FS_PATH_INLINE_SIZE \
63 (sizeof(struct fs_path) - offsetof(struct fs_path, inline_buf))
64
65
66/* reused for each extent */
67struct clone_root {
68 struct btrfs_root *root;
69 u64 ino;
70 u64 offset;
71
72 u64 found_refs;
73};
74
75#define SEND_CTX_MAX_NAME_CACHE_SIZE 128
76#define SEND_CTX_NAME_CACHE_CLEAN_SIZE (SEND_CTX_MAX_NAME_CACHE_SIZE * 2)
77
78struct send_ctx {
79 struct file *send_filp;
80 loff_t send_off;
81 char *send_buf;
82 u32 send_size;
83 u32 send_max_size;
84 u64 total_send_size;
85 u64 cmd_send_size[BTRFS_SEND_C_MAX + 1];
Mark Fashehcb95e7b2013-02-04 20:54:57 +000086 u64 flags; /* 'flags' member of btrfs_ioctl_send_args is u64 */
Alexander Block31db9f72012-07-25 23:19:24 +020087
Alexander Block31db9f72012-07-25 23:19:24 +020088 struct btrfs_root *send_root;
89 struct btrfs_root *parent_root;
90 struct clone_root *clone_roots;
91 int clone_roots_cnt;
92
93 /* current state of the compare_tree call */
94 struct btrfs_path *left_path;
95 struct btrfs_path *right_path;
96 struct btrfs_key *cmp_key;
97
98 /*
99 * infos of the currently processed inode. In case of deleted inodes,
100 * these are the values from the deleted inode.
101 */
102 u64 cur_ino;
103 u64 cur_inode_gen;
104 int cur_inode_new;
105 int cur_inode_new_gen;
106 int cur_inode_deleted;
Alexander Block31db9f72012-07-25 23:19:24 +0200107 u64 cur_inode_size;
108 u64 cur_inode_mode;
Liu Bo644d1942014-02-27 17:29:01 +0800109 u64 cur_inode_rdev;
Josef Bacik16e75492013-10-22 12:18:51 -0400110 u64 cur_inode_last_extent;
Filipe Mananaffa7c422018-02-06 20:40:40 +0000111 u64 cur_inode_next_write_offset;
Filipe Manana46b2f452018-07-24 11:54:04 +0100112 bool ignore_cur_inode;
Alexander Block31db9f72012-07-25 23:19:24 +0200113
114 u64 send_progress;
115
116 struct list_head new_refs;
117 struct list_head deleted_refs;
118
119 struct radix_tree_root name_cache;
120 struct list_head name_cache_list;
121 int name_cache_size;
122
Liu Bo2131bcd2014-03-05 10:07:35 +0800123 struct file_ra_state ra;
124
Alexander Block31db9f72012-07-25 23:19:24 +0200125 char *read_buf;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000126
127 /*
128 * We process inodes by their increasing order, so if before an
129 * incremental send we reverse the parent/child relationship of
130 * directories such that a directory with a lower inode number was
131 * the parent of a directory with a higher inode number, and the one
132 * becoming the new parent got renamed too, we can't rename/move the
133 * directory with lower inode number when we finish processing it - we
134 * must process the directory with higher inode number first, then
135 * rename/move it and then rename/move the directory with lower inode
136 * number. Example follows.
137 *
138 * Tree state when the first send was performed:
139 *
140 * .
141 * |-- a (ino 257)
142 * |-- b (ino 258)
143 * |
144 * |
145 * |-- c (ino 259)
146 * | |-- d (ino 260)
147 * |
148 * |-- c2 (ino 261)
149 *
150 * Tree state when the second (incremental) send is performed:
151 *
152 * .
153 * |-- a (ino 257)
154 * |-- b (ino 258)
155 * |-- c2 (ino 261)
156 * |-- d2 (ino 260)
157 * |-- cc (ino 259)
158 *
159 * The sequence of steps that lead to the second state was:
160 *
161 * mv /a/b/c/d /a/b/c2/d2
162 * mv /a/b/c /a/b/c2/d2/cc
163 *
164 * "c" has lower inode number, but we can't move it (2nd mv operation)
165 * before we move "d", which has higher inode number.
166 *
167 * So we just memorize which move/rename operations must be performed
168 * later when their respective parent is processed and moved/renamed.
169 */
170
171 /* Indexed by parent directory inode number. */
172 struct rb_root pending_dir_moves;
173
174 /*
175 * Reverse index, indexed by the inode number of a directory that
176 * is waiting for the move/rename of its immediate parent before its
177 * own move/rename can be performed.
178 */
179 struct rb_root waiting_dir_moves;
Filipe Manana9dc44212014-02-19 14:31:44 +0000180
181 /*
182 * A directory that is going to be rm'ed might have a child directory
183 * which is in the pending directory moves index above. In this case,
184 * the directory can only be removed after the move/rename of its child
185 * is performed. Example:
186 *
187 * Parent snapshot:
188 *
189 * . (ino 256)
190 * |-- a/ (ino 257)
191 * |-- b/ (ino 258)
192 * |-- c/ (ino 259)
193 * | |-- x/ (ino 260)
194 * |
195 * |-- y/ (ino 261)
196 *
197 * Send snapshot:
198 *
199 * . (ino 256)
200 * |-- a/ (ino 257)
201 * |-- b/ (ino 258)
202 * |-- YY/ (ino 261)
203 * |-- x/ (ino 260)
204 *
205 * Sequence of steps that lead to the send snapshot:
206 * rm -f /a/b/c/foo.txt
207 * mv /a/b/y /a/b/YY
208 * mv /a/b/c/x /a/b/YY
209 * rmdir /a/b/c
210 *
211 * When the child is processed, its move/rename is delayed until its
212 * parent is processed (as explained above), but all other operations
213 * like update utimes, chown, chgrp, etc, are performed and the paths
214 * that it uses for those operations must use the orphanized name of
215 * its parent (the directory we're going to rm later), so we need to
216 * memorize that name.
217 *
218 * Indexed by the inode number of the directory to be deleted.
219 */
220 struct rb_root orphan_dirs;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000221};
222
223struct pending_dir_move {
224 struct rb_node node;
225 struct list_head list;
226 u64 parent_ino;
227 u64 ino;
228 u64 gen;
229 struct list_head update_refs;
230};
231
232struct waiting_dir_move {
233 struct rb_node node;
234 u64 ino;
Filipe Manana9dc44212014-02-19 14:31:44 +0000235 /*
236 * There might be some directory that could not be removed because it
237 * was waiting for this directory inode to be moved first. Therefore
238 * after this directory is moved, we can try to rmdir the ino rmdir_ino.
239 */
240 u64 rmdir_ino;
Filipe Manana8b191a62015-04-09 14:09:14 +0100241 bool orphanized;
Filipe Manana9dc44212014-02-19 14:31:44 +0000242};
243
244struct orphan_dir_info {
245 struct rb_node node;
246 u64 ino;
247 u64 gen;
Robbie Ko0f96f512018-05-08 18:11:38 +0800248 u64 last_dir_index_offset;
Alexander Block31db9f72012-07-25 23:19:24 +0200249};
250
251struct name_cache_entry {
252 struct list_head list;
Alexander Block7e0926f2012-07-28 14:20:58 +0200253 /*
254 * radix_tree has only 32bit entries but we need to handle 64bit inums.
255 * We use the lower 32bit of the 64bit inum to store it in the tree. If
256 * more then one inum would fall into the same entry, we use radix_list
257 * to store the additional entries. radix_list is also used to store
258 * entries where two entries have the same inum but different
259 * generations.
260 */
261 struct list_head radix_list;
Alexander Block31db9f72012-07-25 23:19:24 +0200262 u64 ino;
263 u64 gen;
264 u64 parent_ino;
265 u64 parent_gen;
266 int ret;
267 int need_later_update;
268 int name_len;
269 char name[];
270};
271
David Sterba18d0f5c2019-08-21 19:12:59 +0200272#define ADVANCE 1
273#define ADVANCE_ONLY_NEXT -1
274
275enum btrfs_compare_tree_result {
276 BTRFS_COMPARE_TREE_NEW,
277 BTRFS_COMPARE_TREE_DELETED,
278 BTRFS_COMPARE_TREE_CHANGED,
279 BTRFS_COMPARE_TREE_SAME,
280};
David Sterba18d0f5c2019-08-21 19:12:59 +0200281
David Sterbae67c7182018-02-19 17:24:18 +0100282__cold
Filipe Manana95155582016-08-01 01:50:37 +0100283static void inconsistent_snapshot_error(struct send_ctx *sctx,
284 enum btrfs_compare_tree_result result,
285 const char *what)
286{
287 const char *result_string;
288
289 switch (result) {
290 case BTRFS_COMPARE_TREE_NEW:
291 result_string = "new";
292 break;
293 case BTRFS_COMPARE_TREE_DELETED:
294 result_string = "deleted";
295 break;
296 case BTRFS_COMPARE_TREE_CHANGED:
297 result_string = "updated";
298 break;
299 case BTRFS_COMPARE_TREE_SAME:
300 ASSERT(0);
301 result_string = "unchanged";
302 break;
303 default:
304 ASSERT(0);
305 result_string = "unexpected";
306 }
307
308 btrfs_err(sctx->send_root->fs_info,
309 "Send: inconsistent snapshot, found %s %s for inode %llu without updated inode item, send root is %llu, parent root is %llu",
310 result_string, what, sctx->cmp_key->objectid,
311 sctx->send_root->root_key.objectid,
312 (sctx->parent_root ?
313 sctx->parent_root->root_key.objectid : 0));
314}
315
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000316static int is_waiting_for_move(struct send_ctx *sctx, u64 ino);
317
Filipe Manana9dc44212014-02-19 14:31:44 +0000318static struct waiting_dir_move *
319get_waiting_dir_move(struct send_ctx *sctx, u64 ino);
320
321static int is_waiting_for_rm(struct send_ctx *sctx, u64 dir_ino);
322
Josef Bacik16e75492013-10-22 12:18:51 -0400323static int need_send_hole(struct send_ctx *sctx)
324{
325 return (sctx->parent_root && !sctx->cur_inode_new &&
326 !sctx->cur_inode_new_gen && !sctx->cur_inode_deleted &&
327 S_ISREG(sctx->cur_inode_mode));
328}
329
Alexander Block31db9f72012-07-25 23:19:24 +0200330static void fs_path_reset(struct fs_path *p)
331{
332 if (p->reversed) {
333 p->start = p->buf + p->buf_len - 1;
334 p->end = p->start;
335 *p->start = 0;
336 } else {
337 p->start = p->buf;
338 p->end = p->start;
339 *p->start = 0;
340 }
341}
342
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000343static struct fs_path *fs_path_alloc(void)
Alexander Block31db9f72012-07-25 23:19:24 +0200344{
345 struct fs_path *p;
346
David Sterbae780b0d2016-01-18 18:42:13 +0100347 p = kmalloc(sizeof(*p), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +0200348 if (!p)
349 return NULL;
350 p->reversed = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200351 p->buf = p->inline_buf;
352 p->buf_len = FS_PATH_INLINE_SIZE;
353 fs_path_reset(p);
354 return p;
355}
356
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000357static struct fs_path *fs_path_alloc_reversed(void)
Alexander Block31db9f72012-07-25 23:19:24 +0200358{
359 struct fs_path *p;
360
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000361 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +0200362 if (!p)
363 return NULL;
364 p->reversed = 1;
365 fs_path_reset(p);
366 return p;
367}
368
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000369static void fs_path_free(struct fs_path *p)
Alexander Block31db9f72012-07-25 23:19:24 +0200370{
371 if (!p)
372 return;
David Sterbaace01052014-02-05 16:17:34 +0100373 if (p->buf != p->inline_buf)
374 kfree(p->buf);
Alexander Block31db9f72012-07-25 23:19:24 +0200375 kfree(p);
376}
377
378static int fs_path_len(struct fs_path *p)
379{
380 return p->end - p->start;
381}
382
383static int fs_path_ensure_buf(struct fs_path *p, int len)
384{
385 char *tmp_buf;
386 int path_len;
387 int old_buf_len;
388
389 len++;
390
391 if (p->buf_len >= len)
392 return 0;
393
Chris Masoncfd4a532014-04-26 05:02:03 -0700394 if (len > PATH_MAX) {
395 WARN_ON(1);
396 return -ENOMEM;
397 }
398
David Sterba1b2782c2014-02-25 19:32:59 +0100399 path_len = p->end - p->start;
400 old_buf_len = p->buf_len;
401
David Sterbaace01052014-02-05 16:17:34 +0100402 /*
403 * First time the inline_buf does not suffice
404 */
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100405 if (p->buf == p->inline_buf) {
David Sterbae780b0d2016-01-18 18:42:13 +0100406 tmp_buf = kmalloc(len, GFP_KERNEL);
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100407 if (tmp_buf)
408 memcpy(tmp_buf, p->buf, old_buf_len);
409 } else {
David Sterbae780b0d2016-01-18 18:42:13 +0100410 tmp_buf = krealloc(p->buf, len, GFP_KERNEL);
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100411 }
David Sterba9c9ca002014-02-25 19:33:08 +0100412 if (!tmp_buf)
413 return -ENOMEM;
414 p->buf = tmp_buf;
415 /*
416 * The real size of the buffer is bigger, this will let the fast path
417 * happen most of the time
418 */
419 p->buf_len = ksize(p->buf);
David Sterbaace01052014-02-05 16:17:34 +0100420
Alexander Block31db9f72012-07-25 23:19:24 +0200421 if (p->reversed) {
422 tmp_buf = p->buf + old_buf_len - path_len - 1;
423 p->end = p->buf + p->buf_len - 1;
424 p->start = p->end - path_len;
425 memmove(p->start, tmp_buf, path_len + 1);
426 } else {
427 p->start = p->buf;
428 p->end = p->start + path_len;
429 }
430 return 0;
431}
432
David Sterbab23ab572014-02-03 19:23:19 +0100433static int fs_path_prepare_for_add(struct fs_path *p, int name_len,
434 char **prepared)
Alexander Block31db9f72012-07-25 23:19:24 +0200435{
436 int ret;
437 int new_len;
438
439 new_len = p->end - p->start + name_len;
440 if (p->start != p->end)
441 new_len++;
442 ret = fs_path_ensure_buf(p, new_len);
443 if (ret < 0)
444 goto out;
445
446 if (p->reversed) {
447 if (p->start != p->end)
448 *--p->start = '/';
449 p->start -= name_len;
David Sterbab23ab572014-02-03 19:23:19 +0100450 *prepared = p->start;
Alexander Block31db9f72012-07-25 23:19:24 +0200451 } else {
452 if (p->start != p->end)
453 *p->end++ = '/';
David Sterbab23ab572014-02-03 19:23:19 +0100454 *prepared = p->end;
Alexander Block31db9f72012-07-25 23:19:24 +0200455 p->end += name_len;
456 *p->end = 0;
457 }
458
459out:
460 return ret;
461}
462
463static int fs_path_add(struct fs_path *p, const char *name, int name_len)
464{
465 int ret;
David Sterbab23ab572014-02-03 19:23:19 +0100466 char *prepared;
Alexander Block31db9f72012-07-25 23:19:24 +0200467
David Sterbab23ab572014-02-03 19:23:19 +0100468 ret = fs_path_prepare_for_add(p, name_len, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200469 if (ret < 0)
470 goto out;
David Sterbab23ab572014-02-03 19:23:19 +0100471 memcpy(prepared, name, name_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200472
473out:
474 return ret;
475}
476
477static int fs_path_add_path(struct fs_path *p, struct fs_path *p2)
478{
479 int ret;
David Sterbab23ab572014-02-03 19:23:19 +0100480 char *prepared;
Alexander Block31db9f72012-07-25 23:19:24 +0200481
David Sterbab23ab572014-02-03 19:23:19 +0100482 ret = fs_path_prepare_for_add(p, p2->end - p2->start, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200483 if (ret < 0)
484 goto out;
David Sterbab23ab572014-02-03 19:23:19 +0100485 memcpy(prepared, p2->start, p2->end - p2->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200486
487out:
488 return ret;
489}
490
491static int fs_path_add_from_extent_buffer(struct fs_path *p,
492 struct extent_buffer *eb,
493 unsigned long off, int len)
494{
495 int ret;
David Sterbab23ab572014-02-03 19:23:19 +0100496 char *prepared;
Alexander Block31db9f72012-07-25 23:19:24 +0200497
David Sterbab23ab572014-02-03 19:23:19 +0100498 ret = fs_path_prepare_for_add(p, len, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200499 if (ret < 0)
500 goto out;
501
David Sterbab23ab572014-02-03 19:23:19 +0100502 read_extent_buffer(eb, prepared, off, len);
Alexander Block31db9f72012-07-25 23:19:24 +0200503
504out:
505 return ret;
506}
507
Alexander Block31db9f72012-07-25 23:19:24 +0200508static int fs_path_copy(struct fs_path *p, struct fs_path *from)
509{
510 int ret;
511
512 p->reversed = from->reversed;
513 fs_path_reset(p);
514
515 ret = fs_path_add_path(p, from);
516
517 return ret;
518}
519
520
521static void fs_path_unreverse(struct fs_path *p)
522{
523 char *tmp;
524 int len;
525
526 if (!p->reversed)
527 return;
528
529 tmp = p->start;
530 len = p->end - p->start;
531 p->start = p->buf;
532 p->end = p->start + len;
533 memmove(p->start, tmp, len + 1);
534 p->reversed = 0;
535}
536
537static struct btrfs_path *alloc_path_for_send(void)
538{
539 struct btrfs_path *path;
540
541 path = btrfs_alloc_path();
542 if (!path)
543 return NULL;
544 path->search_commit_root = 1;
545 path->skip_locking = 1;
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400546 path->need_commit_sem = 1;
Alexander Block31db9f72012-07-25 23:19:24 +0200547 return path;
548}
549
Eric Sandeen48a3b632013-04-25 20:41:01 +0000550static int write_buf(struct file *filp, const void *buf, u32 len, loff_t *off)
Alexander Block31db9f72012-07-25 23:19:24 +0200551{
552 int ret;
Alexander Block31db9f72012-07-25 23:19:24 +0200553 u32 pos = 0;
554
Alexander Block31db9f72012-07-25 23:19:24 +0200555 while (pos < len) {
Christoph Hellwig8e931572017-09-01 17:39:19 +0200556 ret = kernel_write(filp, buf + pos, len - pos, off);
Alexander Block31db9f72012-07-25 23:19:24 +0200557 /* TODO handle that correctly */
558 /*if (ret == -ERESTARTSYS) {
559 continue;
560 }*/
561 if (ret < 0)
Christoph Hellwig8e931572017-09-01 17:39:19 +0200562 return ret;
Alexander Block31db9f72012-07-25 23:19:24 +0200563 if (ret == 0) {
Christoph Hellwig8e931572017-09-01 17:39:19 +0200564 return -EIO;
Alexander Block31db9f72012-07-25 23:19:24 +0200565 }
566 pos += ret;
567 }
568
Christoph Hellwig8e931572017-09-01 17:39:19 +0200569 return 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200570}
571
572static int tlv_put(struct send_ctx *sctx, u16 attr, const void *data, int len)
573{
574 struct btrfs_tlv_header *hdr;
575 int total_len = sizeof(*hdr) + len;
576 int left = sctx->send_max_size - sctx->send_size;
577
578 if (unlikely(left < total_len))
579 return -EOVERFLOW;
580
581 hdr = (struct btrfs_tlv_header *) (sctx->send_buf + sctx->send_size);
582 hdr->tlv_type = cpu_to_le16(attr);
583 hdr->tlv_len = cpu_to_le16(len);
584 memcpy(hdr + 1, data, len);
585 sctx->send_size += total_len;
586
587 return 0;
588}
589
David Sterba95bc79d2013-12-16 17:34:10 +0100590#define TLV_PUT_DEFINE_INT(bits) \
591 static int tlv_put_u##bits(struct send_ctx *sctx, \
592 u##bits attr, u##bits value) \
593 { \
594 __le##bits __tmp = cpu_to_le##bits(value); \
595 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \
596 }
Alexander Block31db9f72012-07-25 23:19:24 +0200597
David Sterba95bc79d2013-12-16 17:34:10 +0100598TLV_PUT_DEFINE_INT(64)
Alexander Block31db9f72012-07-25 23:19:24 +0200599
600static int tlv_put_string(struct send_ctx *sctx, u16 attr,
601 const char *str, int len)
602{
603 if (len == -1)
604 len = strlen(str);
605 return tlv_put(sctx, attr, str, len);
606}
607
608static int tlv_put_uuid(struct send_ctx *sctx, u16 attr,
609 const u8 *uuid)
610{
611 return tlv_put(sctx, attr, uuid, BTRFS_UUID_SIZE);
612}
613
Alexander Block31db9f72012-07-25 23:19:24 +0200614static int tlv_put_btrfs_timespec(struct send_ctx *sctx, u16 attr,
615 struct extent_buffer *eb,
616 struct btrfs_timespec *ts)
617{
618 struct btrfs_timespec bts;
619 read_extent_buffer(eb, &bts, (unsigned long)ts, sizeof(bts));
620 return tlv_put(sctx, attr, &bts, sizeof(bts));
621}
622
623
Liu Bo895a72b2018-03-02 18:05:49 -0700624#define TLV_PUT(sctx, attrtype, data, attrlen) \
Alexander Block31db9f72012-07-25 23:19:24 +0200625 do { \
Liu Bo895a72b2018-03-02 18:05:49 -0700626 ret = tlv_put(sctx, attrtype, data, attrlen); \
Alexander Block31db9f72012-07-25 23:19:24 +0200627 if (ret < 0) \
628 goto tlv_put_failure; \
629 } while (0)
630
631#define TLV_PUT_INT(sctx, attrtype, bits, value) \
632 do { \
633 ret = tlv_put_u##bits(sctx, attrtype, value); \
634 if (ret < 0) \
635 goto tlv_put_failure; \
636 } while (0)
637
638#define TLV_PUT_U8(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 8, data)
639#define TLV_PUT_U16(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 16, data)
640#define TLV_PUT_U32(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 32, data)
641#define TLV_PUT_U64(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 64, data)
642#define TLV_PUT_STRING(sctx, attrtype, str, len) \
643 do { \
644 ret = tlv_put_string(sctx, attrtype, str, len); \
645 if (ret < 0) \
646 goto tlv_put_failure; \
647 } while (0)
648#define TLV_PUT_PATH(sctx, attrtype, p) \
649 do { \
650 ret = tlv_put_string(sctx, attrtype, p->start, \
651 p->end - p->start); \
652 if (ret < 0) \
653 goto tlv_put_failure; \
654 } while(0)
655#define TLV_PUT_UUID(sctx, attrtype, uuid) \
656 do { \
657 ret = tlv_put_uuid(sctx, attrtype, uuid); \
658 if (ret < 0) \
659 goto tlv_put_failure; \
660 } while (0)
Alexander Block31db9f72012-07-25 23:19:24 +0200661#define TLV_PUT_BTRFS_TIMESPEC(sctx, attrtype, eb, ts) \
662 do { \
663 ret = tlv_put_btrfs_timespec(sctx, attrtype, eb, ts); \
664 if (ret < 0) \
665 goto tlv_put_failure; \
666 } while (0)
667
668static int send_header(struct send_ctx *sctx)
669{
670 struct btrfs_stream_header hdr;
671
672 strcpy(hdr.magic, BTRFS_SEND_STREAM_MAGIC);
673 hdr.version = cpu_to_le32(BTRFS_SEND_STREAM_VERSION);
674
Anand Jain1bcea352012-09-14 00:04:21 -0600675 return write_buf(sctx->send_filp, &hdr, sizeof(hdr),
676 &sctx->send_off);
Alexander Block31db9f72012-07-25 23:19:24 +0200677}
678
679/*
680 * For each command/item we want to send to userspace, we call this function.
681 */
682static int begin_cmd(struct send_ctx *sctx, int cmd)
683{
684 struct btrfs_cmd_header *hdr;
685
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +0530686 if (WARN_ON(!sctx->send_buf))
Alexander Block31db9f72012-07-25 23:19:24 +0200687 return -EINVAL;
Alexander Block31db9f72012-07-25 23:19:24 +0200688
689 BUG_ON(sctx->send_size);
690
691 sctx->send_size += sizeof(*hdr);
692 hdr = (struct btrfs_cmd_header *)sctx->send_buf;
693 hdr->cmd = cpu_to_le16(cmd);
694
695 return 0;
696}
697
698static int send_cmd(struct send_ctx *sctx)
699{
700 int ret;
701 struct btrfs_cmd_header *hdr;
702 u32 crc;
703
704 hdr = (struct btrfs_cmd_header *)sctx->send_buf;
705 hdr->len = cpu_to_le32(sctx->send_size - sizeof(*hdr));
706 hdr->crc = 0;
707
Johannes Thumshirn65019df2019-05-22 10:18:59 +0200708 crc = btrfs_crc32c(0, (unsigned char *)sctx->send_buf, sctx->send_size);
Alexander Block31db9f72012-07-25 23:19:24 +0200709 hdr->crc = cpu_to_le32(crc);
710
Anand Jain1bcea352012-09-14 00:04:21 -0600711 ret = write_buf(sctx->send_filp, sctx->send_buf, sctx->send_size,
712 &sctx->send_off);
Alexander Block31db9f72012-07-25 23:19:24 +0200713
714 sctx->total_send_size += sctx->send_size;
715 sctx->cmd_send_size[le16_to_cpu(hdr->cmd)] += sctx->send_size;
716 sctx->send_size = 0;
717
718 return ret;
719}
720
721/*
722 * Sends a move instruction to user space
723 */
724static int send_rename(struct send_ctx *sctx,
725 struct fs_path *from, struct fs_path *to)
726{
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400727 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +0200728 int ret;
729
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400730 btrfs_debug(fs_info, "send_rename %s -> %s", from->start, to->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200731
732 ret = begin_cmd(sctx, BTRFS_SEND_C_RENAME);
733 if (ret < 0)
734 goto out;
735
736 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, from);
737 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_TO, to);
738
739 ret = send_cmd(sctx);
740
741tlv_put_failure:
742out:
743 return ret;
744}
745
746/*
747 * Sends a link instruction to user space
748 */
749static int send_link(struct send_ctx *sctx,
750 struct fs_path *path, struct fs_path *lnk)
751{
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400752 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +0200753 int ret;
754
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400755 btrfs_debug(fs_info, "send_link %s -> %s", path->start, lnk->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200756
757 ret = begin_cmd(sctx, BTRFS_SEND_C_LINK);
758 if (ret < 0)
759 goto out;
760
761 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
762 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, lnk);
763
764 ret = send_cmd(sctx);
765
766tlv_put_failure:
767out:
768 return ret;
769}
770
771/*
772 * Sends an unlink instruction to user space
773 */
774static int send_unlink(struct send_ctx *sctx, struct fs_path *path)
775{
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400776 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +0200777 int ret;
778
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400779 btrfs_debug(fs_info, "send_unlink %s", path->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200780
781 ret = begin_cmd(sctx, BTRFS_SEND_C_UNLINK);
782 if (ret < 0)
783 goto out;
784
785 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
786
787 ret = send_cmd(sctx);
788
789tlv_put_failure:
790out:
791 return ret;
792}
793
794/*
795 * Sends a rmdir instruction to user space
796 */
797static int send_rmdir(struct send_ctx *sctx, struct fs_path *path)
798{
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400799 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +0200800 int ret;
801
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400802 btrfs_debug(fs_info, "send_rmdir %s", path->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200803
804 ret = begin_cmd(sctx, BTRFS_SEND_C_RMDIR);
805 if (ret < 0)
806 goto out;
807
808 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
809
810 ret = send_cmd(sctx);
811
812tlv_put_failure:
813out:
814 return ret;
815}
816
817/*
818 * Helper function to retrieve some fields from an inode item.
819 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400820static int __get_inode_info(struct btrfs_root *root, struct btrfs_path *path,
821 u64 ino, u64 *size, u64 *gen, u64 *mode, u64 *uid,
822 u64 *gid, u64 *rdev)
Alexander Block31db9f72012-07-25 23:19:24 +0200823{
824 int ret;
825 struct btrfs_inode_item *ii;
826 struct btrfs_key key;
Alexander Block31db9f72012-07-25 23:19:24 +0200827
828 key.objectid = ino;
829 key.type = BTRFS_INODE_ITEM_KEY;
830 key.offset = 0;
831 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Alexander Block31db9f72012-07-25 23:19:24 +0200832 if (ret) {
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400833 if (ret > 0)
834 ret = -ENOENT;
835 return ret;
Alexander Block31db9f72012-07-25 23:19:24 +0200836 }
837
838 ii = btrfs_item_ptr(path->nodes[0], path->slots[0],
839 struct btrfs_inode_item);
840 if (size)
841 *size = btrfs_inode_size(path->nodes[0], ii);
842 if (gen)
843 *gen = btrfs_inode_generation(path->nodes[0], ii);
844 if (mode)
845 *mode = btrfs_inode_mode(path->nodes[0], ii);
846 if (uid)
847 *uid = btrfs_inode_uid(path->nodes[0], ii);
848 if (gid)
849 *gid = btrfs_inode_gid(path->nodes[0], ii);
Alexander Block85a7b332012-07-26 23:39:10 +0200850 if (rdev)
851 *rdev = btrfs_inode_rdev(path->nodes[0], ii);
Alexander Block31db9f72012-07-25 23:19:24 +0200852
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400853 return ret;
854}
855
856static int get_inode_info(struct btrfs_root *root,
857 u64 ino, u64 *size, u64 *gen,
858 u64 *mode, u64 *uid, u64 *gid,
859 u64 *rdev)
860{
861 struct btrfs_path *path;
862 int ret;
863
864 path = alloc_path_for_send();
865 if (!path)
866 return -ENOMEM;
867 ret = __get_inode_info(root, path, ino, size, gen, mode, uid, gid,
868 rdev);
Alexander Block31db9f72012-07-25 23:19:24 +0200869 btrfs_free_path(path);
870 return ret;
871}
872
873typedef int (*iterate_inode_ref_t)(int num, u64 dir, int index,
874 struct fs_path *p,
875 void *ctx);
876
877/*
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000878 * Helper function to iterate the entries in ONE btrfs_inode_ref or
879 * btrfs_inode_extref.
Alexander Block31db9f72012-07-25 23:19:24 +0200880 * The iterate callback may return a non zero value to stop iteration. This can
881 * be a negative value for error codes or 1 to simply stop it.
882 *
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000883 * path must point to the INODE_REF or INODE_EXTREF when called.
Alexander Block31db9f72012-07-25 23:19:24 +0200884 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000885static int iterate_inode_ref(struct btrfs_root *root, struct btrfs_path *path,
Alexander Block31db9f72012-07-25 23:19:24 +0200886 struct btrfs_key *found_key, int resolve,
887 iterate_inode_ref_t iterate, void *ctx)
888{
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000889 struct extent_buffer *eb = path->nodes[0];
Alexander Block31db9f72012-07-25 23:19:24 +0200890 struct btrfs_item *item;
891 struct btrfs_inode_ref *iref;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000892 struct btrfs_inode_extref *extref;
Alexander Block31db9f72012-07-25 23:19:24 +0200893 struct btrfs_path *tmp_path;
894 struct fs_path *p;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000895 u32 cur = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200896 u32 total;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000897 int slot = path->slots[0];
Alexander Block31db9f72012-07-25 23:19:24 +0200898 u32 name_len;
899 char *start;
900 int ret = 0;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000901 int num = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200902 int index;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000903 u64 dir;
904 unsigned long name_off;
905 unsigned long elem_size;
906 unsigned long ptr;
Alexander Block31db9f72012-07-25 23:19:24 +0200907
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000908 p = fs_path_alloc_reversed();
Alexander Block31db9f72012-07-25 23:19:24 +0200909 if (!p)
910 return -ENOMEM;
911
912 tmp_path = alloc_path_for_send();
913 if (!tmp_path) {
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000914 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +0200915 return -ENOMEM;
916 }
917
Alexander Block31db9f72012-07-25 23:19:24 +0200918
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000919 if (found_key->type == BTRFS_INODE_REF_KEY) {
920 ptr = (unsigned long)btrfs_item_ptr(eb, slot,
921 struct btrfs_inode_ref);
Ross Kirkdd3cc162013-09-16 15:58:09 +0100922 item = btrfs_item_nr(slot);
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000923 total = btrfs_item_size(eb, item);
924 elem_size = sizeof(*iref);
925 } else {
926 ptr = btrfs_item_ptr_offset(eb, slot);
927 total = btrfs_item_size_nr(eb, slot);
928 elem_size = sizeof(*extref);
929 }
930
Alexander Block31db9f72012-07-25 23:19:24 +0200931 while (cur < total) {
932 fs_path_reset(p);
933
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000934 if (found_key->type == BTRFS_INODE_REF_KEY) {
935 iref = (struct btrfs_inode_ref *)(ptr + cur);
936 name_len = btrfs_inode_ref_name_len(eb, iref);
937 name_off = (unsigned long)(iref + 1);
938 index = btrfs_inode_ref_index(eb, iref);
939 dir = found_key->offset;
940 } else {
941 extref = (struct btrfs_inode_extref *)(ptr + cur);
942 name_len = btrfs_inode_extref_name_len(eb, extref);
943 name_off = (unsigned long)&extref->name;
944 index = btrfs_inode_extref_index(eb, extref);
945 dir = btrfs_inode_extref_parent(eb, extref);
946 }
947
Alexander Block31db9f72012-07-25 23:19:24 +0200948 if (resolve) {
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000949 start = btrfs_ref_to_path(root, tmp_path, name_len,
950 name_off, eb, dir,
951 p->buf, p->buf_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200952 if (IS_ERR(start)) {
953 ret = PTR_ERR(start);
954 goto out;
955 }
956 if (start < p->buf) {
957 /* overflow , try again with larger buffer */
958 ret = fs_path_ensure_buf(p,
959 p->buf_len + p->buf - start);
960 if (ret < 0)
961 goto out;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000962 start = btrfs_ref_to_path(root, tmp_path,
963 name_len, name_off,
964 eb, dir,
965 p->buf, p->buf_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200966 if (IS_ERR(start)) {
967 ret = PTR_ERR(start);
968 goto out;
969 }
970 BUG_ON(start < p->buf);
971 }
972 p->start = start;
973 } else {
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000974 ret = fs_path_add_from_extent_buffer(p, eb, name_off,
975 name_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200976 if (ret < 0)
977 goto out;
978 }
979
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000980 cur += elem_size + name_len;
981 ret = iterate(num, dir, index, p, ctx);
Alexander Block31db9f72012-07-25 23:19:24 +0200982 if (ret)
983 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +0200984 num++;
985 }
986
987out:
988 btrfs_free_path(tmp_path);
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000989 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +0200990 return ret;
991}
992
993typedef int (*iterate_dir_item_t)(int num, struct btrfs_key *di_key,
994 const char *name, int name_len,
995 const char *data, int data_len,
996 u8 type, void *ctx);
997
998/*
999 * Helper function to iterate the entries in ONE btrfs_dir_item.
1000 * The iterate callback may return a non zero value to stop iteration. This can
1001 * be a negative value for error codes or 1 to simply stop it.
1002 *
1003 * path must point to the dir item when called.
1004 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001005static int iterate_dir_item(struct btrfs_root *root, struct btrfs_path *path,
Alexander Block31db9f72012-07-25 23:19:24 +02001006 iterate_dir_item_t iterate, void *ctx)
1007{
1008 int ret = 0;
1009 struct extent_buffer *eb;
1010 struct btrfs_item *item;
1011 struct btrfs_dir_item *di;
Alexander Block31db9f72012-07-25 23:19:24 +02001012 struct btrfs_key di_key;
1013 char *buf = NULL;
Filipe Manana7e3ae332014-05-23 20:15:16 +01001014 int buf_len;
Alexander Block31db9f72012-07-25 23:19:24 +02001015 u32 name_len;
1016 u32 data_len;
1017 u32 cur;
1018 u32 len;
1019 u32 total;
1020 int slot;
1021 int num;
1022 u8 type;
1023
Filipe Manana4395e0c2014-08-20 10:45:45 +01001024 /*
1025 * Start with a small buffer (1 page). If later we end up needing more
1026 * space, which can happen for xattrs on a fs with a leaf size greater
1027 * then the page size, attempt to increase the buffer. Typically xattr
1028 * values are small.
1029 */
1030 buf_len = PATH_MAX;
David Sterbae780b0d2016-01-18 18:42:13 +01001031 buf = kmalloc(buf_len, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02001032 if (!buf) {
1033 ret = -ENOMEM;
1034 goto out;
1035 }
1036
Alexander Block31db9f72012-07-25 23:19:24 +02001037 eb = path->nodes[0];
1038 slot = path->slots[0];
Ross Kirkdd3cc162013-09-16 15:58:09 +01001039 item = btrfs_item_nr(slot);
Alexander Block31db9f72012-07-25 23:19:24 +02001040 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
1041 cur = 0;
1042 len = 0;
1043 total = btrfs_item_size(eb, item);
1044
1045 num = 0;
1046 while (cur < total) {
1047 name_len = btrfs_dir_name_len(eb, di);
1048 data_len = btrfs_dir_data_len(eb, di);
1049 type = btrfs_dir_type(eb, di);
1050 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
1051
Filipe Manana7e3ae332014-05-23 20:15:16 +01001052 if (type == BTRFS_FT_XATTR) {
1053 if (name_len > XATTR_NAME_MAX) {
1054 ret = -ENAMETOOLONG;
1055 goto out;
1056 }
Jeff Mahoneyda170662016-06-15 09:22:56 -04001057 if (name_len + data_len >
1058 BTRFS_MAX_XATTR_SIZE(root->fs_info)) {
Filipe Manana7e3ae332014-05-23 20:15:16 +01001059 ret = -E2BIG;
1060 goto out;
1061 }
1062 } else {
1063 /*
1064 * Path too long
1065 */
Filipe Manana4395e0c2014-08-20 10:45:45 +01001066 if (name_len + data_len > PATH_MAX) {
Filipe Manana7e3ae332014-05-23 20:15:16 +01001067 ret = -ENAMETOOLONG;
1068 goto out;
1069 }
Alexander Block31db9f72012-07-25 23:19:24 +02001070 }
1071
Filipe Manana4395e0c2014-08-20 10:45:45 +01001072 if (name_len + data_len > buf_len) {
1073 buf_len = name_len + data_len;
1074 if (is_vmalloc_addr(buf)) {
1075 vfree(buf);
1076 buf = NULL;
1077 } else {
1078 char *tmp = krealloc(buf, buf_len,
David Sterbae780b0d2016-01-18 18:42:13 +01001079 GFP_KERNEL | __GFP_NOWARN);
Filipe Manana4395e0c2014-08-20 10:45:45 +01001080
1081 if (!tmp)
1082 kfree(buf);
1083 buf = tmp;
1084 }
1085 if (!buf) {
David Sterbaf11f7442017-05-31 18:40:02 +02001086 buf = kvmalloc(buf_len, GFP_KERNEL);
Filipe Manana4395e0c2014-08-20 10:45:45 +01001087 if (!buf) {
1088 ret = -ENOMEM;
1089 goto out;
1090 }
1091 }
1092 }
1093
Alexander Block31db9f72012-07-25 23:19:24 +02001094 read_extent_buffer(eb, buf, (unsigned long)(di + 1),
1095 name_len + data_len);
1096
1097 len = sizeof(*di) + name_len + data_len;
1098 di = (struct btrfs_dir_item *)((char *)di + len);
1099 cur += len;
1100
1101 ret = iterate(num, &di_key, buf, name_len, buf + name_len,
1102 data_len, type, ctx);
1103 if (ret < 0)
1104 goto out;
1105 if (ret) {
1106 ret = 0;
1107 goto out;
1108 }
1109
1110 num++;
1111 }
1112
1113out:
Filipe Manana4395e0c2014-08-20 10:45:45 +01001114 kvfree(buf);
Alexander Block31db9f72012-07-25 23:19:24 +02001115 return ret;
1116}
1117
1118static int __copy_first_ref(int num, u64 dir, int index,
1119 struct fs_path *p, void *ctx)
1120{
1121 int ret;
1122 struct fs_path *pt = ctx;
1123
1124 ret = fs_path_copy(pt, p);
1125 if (ret < 0)
1126 return ret;
1127
1128 /* we want the first only */
1129 return 1;
1130}
1131
1132/*
1133 * Retrieve the first path of an inode. If an inode has more then one
1134 * ref/hardlink, this is ignored.
1135 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001136static int get_inode_path(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001137 u64 ino, struct fs_path *path)
1138{
1139 int ret;
1140 struct btrfs_key key, found_key;
1141 struct btrfs_path *p;
1142
1143 p = alloc_path_for_send();
1144 if (!p)
1145 return -ENOMEM;
1146
1147 fs_path_reset(path);
1148
1149 key.objectid = ino;
1150 key.type = BTRFS_INODE_REF_KEY;
1151 key.offset = 0;
1152
1153 ret = btrfs_search_slot_for_read(root, &key, p, 1, 0);
1154 if (ret < 0)
1155 goto out;
1156 if (ret) {
1157 ret = 1;
1158 goto out;
1159 }
1160 btrfs_item_key_to_cpu(p->nodes[0], &found_key, p->slots[0]);
1161 if (found_key.objectid != ino ||
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001162 (found_key.type != BTRFS_INODE_REF_KEY &&
1163 found_key.type != BTRFS_INODE_EXTREF_KEY)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001164 ret = -ENOENT;
1165 goto out;
1166 }
1167
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001168 ret = iterate_inode_ref(root, p, &found_key, 1,
1169 __copy_first_ref, path);
Alexander Block31db9f72012-07-25 23:19:24 +02001170 if (ret < 0)
1171 goto out;
1172 ret = 0;
1173
1174out:
1175 btrfs_free_path(p);
1176 return ret;
1177}
1178
1179struct backref_ctx {
1180 struct send_ctx *sctx;
1181
1182 /* number of total found references */
1183 u64 found;
1184
1185 /*
1186 * used for clones found in send_root. clones found behind cur_objectid
1187 * and cur_offset are not considered as allowed clones.
1188 */
1189 u64 cur_objectid;
1190 u64 cur_offset;
1191
1192 /* may be truncated in case it's the last extent in a file */
1193 u64 extent_len;
1194
Filipe Manana619d8c42015-05-03 01:56:00 +01001195 /* data offset in the file extent item */
1196 u64 data_offset;
1197
Alexander Block31db9f72012-07-25 23:19:24 +02001198 /* Just to check for bugs in backref resolving */
Alexander Blockee849c02012-07-28 12:42:05 +02001199 int found_itself;
Alexander Block31db9f72012-07-25 23:19:24 +02001200};
1201
1202static int __clone_root_cmp_bsearch(const void *key, const void *elt)
1203{
Jan Schmidt995e01b2012-08-13 02:52:38 -06001204 u64 root = (u64)(uintptr_t)key;
Alexander Block31db9f72012-07-25 23:19:24 +02001205 struct clone_root *cr = (struct clone_root *)elt;
1206
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001207 if (root < cr->root->root_key.objectid)
Alexander Block31db9f72012-07-25 23:19:24 +02001208 return -1;
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001209 if (root > cr->root->root_key.objectid)
Alexander Block31db9f72012-07-25 23:19:24 +02001210 return 1;
1211 return 0;
1212}
1213
1214static int __clone_root_cmp_sort(const void *e1, const void *e2)
1215{
1216 struct clone_root *cr1 = (struct clone_root *)e1;
1217 struct clone_root *cr2 = (struct clone_root *)e2;
1218
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001219 if (cr1->root->root_key.objectid < cr2->root->root_key.objectid)
Alexander Block31db9f72012-07-25 23:19:24 +02001220 return -1;
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001221 if (cr1->root->root_key.objectid > cr2->root->root_key.objectid)
Alexander Block31db9f72012-07-25 23:19:24 +02001222 return 1;
1223 return 0;
1224}
1225
1226/*
1227 * Called for every backref that is found for the current extent.
Alexander Block766702e2012-07-28 14:11:31 +02001228 * Results are collected in sctx->clone_roots->ino/offset/found_refs
Alexander Block31db9f72012-07-25 23:19:24 +02001229 */
1230static int __iterate_backrefs(u64 ino, u64 offset, u64 root, void *ctx_)
1231{
1232 struct backref_ctx *bctx = ctx_;
1233 struct clone_root *found;
Alexander Block31db9f72012-07-25 23:19:24 +02001234
1235 /* First check if the root is in the list of accepted clone sources */
Jan Schmidt995e01b2012-08-13 02:52:38 -06001236 found = bsearch((void *)(uintptr_t)root, bctx->sctx->clone_roots,
Alexander Block31db9f72012-07-25 23:19:24 +02001237 bctx->sctx->clone_roots_cnt,
1238 sizeof(struct clone_root),
1239 __clone_root_cmp_bsearch);
1240 if (!found)
1241 return 0;
1242
1243 if (found->root == bctx->sctx->send_root &&
1244 ino == bctx->cur_objectid &&
1245 offset == bctx->cur_offset) {
Alexander Blockee849c02012-07-28 12:42:05 +02001246 bctx->found_itself = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02001247 }
1248
1249 /*
Alexander Block31db9f72012-07-25 23:19:24 +02001250 * Make sure we don't consider clones from send_root that are
1251 * behind the current inode/offset.
1252 */
1253 if (found->root == bctx->sctx->send_root) {
1254 /*
Filipe Manana11f20692019-10-30 12:23:11 +00001255 * If the source inode was not yet processed we can't issue a
1256 * clone operation, as the source extent does not exist yet at
1257 * the destination of the stream.
Alexander Block31db9f72012-07-25 23:19:24 +02001258 */
Filipe Manana11f20692019-10-30 12:23:11 +00001259 if (ino > bctx->cur_objectid)
1260 return 0;
1261 /*
1262 * We clone from the inode currently being sent as long as the
1263 * source extent is already processed, otherwise we could try
1264 * to clone from an extent that does not exist yet at the
1265 * destination of the stream.
1266 */
1267 if (ino == bctx->cur_objectid &&
Filipe Manana9722b102020-01-29 17:09:53 +00001268 offset + bctx->extent_len >
1269 bctx->sctx->cur_inode_next_write_offset)
Alexander Block31db9f72012-07-25 23:19:24 +02001270 return 0;
Alexander Block31db9f72012-07-25 23:19:24 +02001271 }
1272
1273 bctx->found++;
1274 found->found_refs++;
1275 if (ino < found->ino) {
1276 found->ino = ino;
1277 found->offset = offset;
1278 } else if (found->ino == ino) {
1279 /*
1280 * same extent found more then once in the same file.
1281 */
1282 if (found->offset > offset + bctx->extent_len)
1283 found->offset = offset;
1284 }
1285
1286 return 0;
1287}
1288
1289/*
Alexander Block766702e2012-07-28 14:11:31 +02001290 * Given an inode, offset and extent item, it finds a good clone for a clone
1291 * instruction. Returns -ENOENT when none could be found. The function makes
1292 * sure that the returned clone is usable at the point where sending is at the
1293 * moment. This means, that no clones are accepted which lie behind the current
1294 * inode+offset.
1295 *
Alexander Block31db9f72012-07-25 23:19:24 +02001296 * path must point to the extent item when called.
1297 */
1298static int find_extent_clone(struct send_ctx *sctx,
1299 struct btrfs_path *path,
1300 u64 ino, u64 data_offset,
1301 u64 ino_size,
1302 struct clone_root **found)
1303{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001304 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02001305 int ret;
1306 int extent_type;
1307 u64 logical;
Chris Mason74dd17f2012-08-07 16:25:13 -04001308 u64 disk_byte;
Alexander Block31db9f72012-07-25 23:19:24 +02001309 u64 num_bytes;
1310 u64 extent_item_pos;
Liu Bo69917e42012-09-07 20:01:28 -06001311 u64 flags = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02001312 struct btrfs_file_extent_item *fi;
1313 struct extent_buffer *eb = path->nodes[0];
Alexander Block35075bb2012-07-28 12:44:34 +02001314 struct backref_ctx *backref_ctx = NULL;
Alexander Block31db9f72012-07-25 23:19:24 +02001315 struct clone_root *cur_clone_root;
1316 struct btrfs_key found_key;
1317 struct btrfs_path *tmp_path;
Filipe Mananafd0ddbe2019-10-30 12:23:01 +00001318 struct btrfs_extent_item *ei;
Chris Mason74dd17f2012-08-07 16:25:13 -04001319 int compressed;
Alexander Block31db9f72012-07-25 23:19:24 +02001320 u32 i;
1321
1322 tmp_path = alloc_path_for_send();
1323 if (!tmp_path)
1324 return -ENOMEM;
1325
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001326 /* We only use this path under the commit sem */
1327 tmp_path->need_commit_sem = 0;
1328
David Sterbae780b0d2016-01-18 18:42:13 +01001329 backref_ctx = kmalloc(sizeof(*backref_ctx), GFP_KERNEL);
Alexander Block35075bb2012-07-28 12:44:34 +02001330 if (!backref_ctx) {
1331 ret = -ENOMEM;
1332 goto out;
1333 }
1334
Alexander Block31db9f72012-07-25 23:19:24 +02001335 if (data_offset >= ino_size) {
1336 /*
1337 * There may be extents that lie behind the file's size.
1338 * I at least had this in combination with snapshotting while
1339 * writing large files.
1340 */
1341 ret = 0;
1342 goto out;
1343 }
1344
1345 fi = btrfs_item_ptr(eb, path->slots[0],
1346 struct btrfs_file_extent_item);
1347 extent_type = btrfs_file_extent_type(eb, fi);
1348 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1349 ret = -ENOENT;
1350 goto out;
1351 }
Chris Mason74dd17f2012-08-07 16:25:13 -04001352 compressed = btrfs_file_extent_compression(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001353
1354 num_bytes = btrfs_file_extent_num_bytes(eb, fi);
Chris Mason74dd17f2012-08-07 16:25:13 -04001355 disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
1356 if (disk_byte == 0) {
Alexander Block31db9f72012-07-25 23:19:24 +02001357 ret = -ENOENT;
1358 goto out;
1359 }
Chris Mason74dd17f2012-08-07 16:25:13 -04001360 logical = disk_byte + btrfs_file_extent_offset(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001361
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001362 down_read(&fs_info->commit_root_sem);
1363 ret = extent_from_logical(fs_info, disk_byte, tmp_path,
Liu Bo69917e42012-09-07 20:01:28 -06001364 &found_key, &flags);
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001365 up_read(&fs_info->commit_root_sem);
Alexander Block31db9f72012-07-25 23:19:24 +02001366
1367 if (ret < 0)
1368 goto out;
Liu Bo69917e42012-09-07 20:01:28 -06001369 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Alexander Block31db9f72012-07-25 23:19:24 +02001370 ret = -EIO;
1371 goto out;
1372 }
1373
Filipe Mananafd0ddbe2019-10-30 12:23:01 +00001374 ei = btrfs_item_ptr(tmp_path->nodes[0], tmp_path->slots[0],
1375 struct btrfs_extent_item);
1376 /*
1377 * Backreference walking (iterate_extent_inodes() below) is currently
1378 * too expensive when an extent has a large number of references, both
1379 * in time spent and used memory. So for now just fallback to write
1380 * operations instead of clone operations when an extent has more than
1381 * a certain amount of references.
1382 */
1383 if (btrfs_extent_refs(tmp_path->nodes[0], ei) > SEND_MAX_EXTENT_REFS) {
1384 ret = -ENOENT;
1385 goto out;
1386 }
1387 btrfs_release_path(tmp_path);
1388
Alexander Block31db9f72012-07-25 23:19:24 +02001389 /*
1390 * Setup the clone roots.
1391 */
1392 for (i = 0; i < sctx->clone_roots_cnt; i++) {
1393 cur_clone_root = sctx->clone_roots + i;
1394 cur_clone_root->ino = (u64)-1;
1395 cur_clone_root->offset = 0;
1396 cur_clone_root->found_refs = 0;
1397 }
1398
Alexander Block35075bb2012-07-28 12:44:34 +02001399 backref_ctx->sctx = sctx;
1400 backref_ctx->found = 0;
1401 backref_ctx->cur_objectid = ino;
1402 backref_ctx->cur_offset = data_offset;
1403 backref_ctx->found_itself = 0;
1404 backref_ctx->extent_len = num_bytes;
Filipe Manana619d8c42015-05-03 01:56:00 +01001405 /*
1406 * For non-compressed extents iterate_extent_inodes() gives us extent
1407 * offsets that already take into account the data offset, but not for
1408 * compressed extents, since the offset is logical and not relative to
1409 * the physical extent locations. We must take this into account to
1410 * avoid sending clone offsets that go beyond the source file's size,
1411 * which would result in the clone ioctl failing with -EINVAL on the
1412 * receiving end.
1413 */
1414 if (compressed == BTRFS_COMPRESS_NONE)
1415 backref_ctx->data_offset = 0;
1416 else
1417 backref_ctx->data_offset = btrfs_file_extent_offset(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001418
1419 /*
1420 * The last extent of a file may be too large due to page alignment.
1421 * We need to adjust extent_len in this case so that the checks in
1422 * __iterate_backrefs work.
1423 */
1424 if (data_offset + num_bytes >= ino_size)
Alexander Block35075bb2012-07-28 12:44:34 +02001425 backref_ctx->extent_len = ino_size - data_offset;
Alexander Block31db9f72012-07-25 23:19:24 +02001426
1427 /*
1428 * Now collect all backrefs.
1429 */
Chris Mason74dd17f2012-08-07 16:25:13 -04001430 if (compressed == BTRFS_COMPRESS_NONE)
1431 extent_item_pos = logical - found_key.objectid;
1432 else
1433 extent_item_pos = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001434 ret = iterate_extent_inodes(fs_info, found_key.objectid,
1435 extent_item_pos, 1, __iterate_backrefs,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001436 backref_ctx, false);
Chris Mason74dd17f2012-08-07 16:25:13 -04001437
Alexander Block31db9f72012-07-25 23:19:24 +02001438 if (ret < 0)
1439 goto out;
1440
Alexander Block35075bb2012-07-28 12:44:34 +02001441 if (!backref_ctx->found_itself) {
Alexander Block31db9f72012-07-25 23:19:24 +02001442 /* found a bug in backref code? */
1443 ret = -EIO;
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001444 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001445 "did not find backref in send_root. inode=%llu, offset=%llu, disk_byte=%llu found extent=%llu",
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001446 ino, data_offset, disk_byte, found_key.objectid);
Alexander Block31db9f72012-07-25 23:19:24 +02001447 goto out;
1448 }
1449
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001450 btrfs_debug(fs_info,
1451 "find_extent_clone: data_offset=%llu, ino=%llu, num_bytes=%llu, logical=%llu",
1452 data_offset, ino, num_bytes, logical);
Alexander Block31db9f72012-07-25 23:19:24 +02001453
Alexander Block35075bb2012-07-28 12:44:34 +02001454 if (!backref_ctx->found)
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001455 btrfs_debug(fs_info, "no clones found");
Alexander Block31db9f72012-07-25 23:19:24 +02001456
1457 cur_clone_root = NULL;
1458 for (i = 0; i < sctx->clone_roots_cnt; i++) {
1459 if (sctx->clone_roots[i].found_refs) {
1460 if (!cur_clone_root)
1461 cur_clone_root = sctx->clone_roots + i;
1462 else if (sctx->clone_roots[i].root == sctx->send_root)
1463 /* prefer clones from send_root over others */
1464 cur_clone_root = sctx->clone_roots + i;
Alexander Block31db9f72012-07-25 23:19:24 +02001465 }
1466
1467 }
1468
1469 if (cur_clone_root) {
1470 *found = cur_clone_root;
1471 ret = 0;
1472 } else {
1473 ret = -ENOENT;
1474 }
1475
1476out:
1477 btrfs_free_path(tmp_path);
Alexander Block35075bb2012-07-28 12:44:34 +02001478 kfree(backref_ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02001479 return ret;
1480}
1481
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001482static int read_symlink(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001483 u64 ino,
1484 struct fs_path *dest)
1485{
1486 int ret;
1487 struct btrfs_path *path;
1488 struct btrfs_key key;
1489 struct btrfs_file_extent_item *ei;
1490 u8 type;
1491 u8 compression;
1492 unsigned long off;
1493 int len;
1494
1495 path = alloc_path_for_send();
1496 if (!path)
1497 return -ENOMEM;
1498
1499 key.objectid = ino;
1500 key.type = BTRFS_EXTENT_DATA_KEY;
1501 key.offset = 0;
1502 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1503 if (ret < 0)
1504 goto out;
Filipe Mananaa8797192015-12-31 18:07:59 +00001505 if (ret) {
1506 /*
1507 * An empty symlink inode. Can happen in rare error paths when
1508 * creating a symlink (transaction committed before the inode
1509 * eviction handler removed the symlink inode items and a crash
1510 * happened in between or the subvol was snapshoted in between).
1511 * Print an informative message to dmesg/syslog so that the user
1512 * can delete the symlink.
1513 */
1514 btrfs_err(root->fs_info,
1515 "Found empty symlink inode %llu at root %llu",
1516 ino, root->root_key.objectid);
1517 ret = -EIO;
1518 goto out;
1519 }
Alexander Block31db9f72012-07-25 23:19:24 +02001520
1521 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
1522 struct btrfs_file_extent_item);
1523 type = btrfs_file_extent_type(path->nodes[0], ei);
1524 compression = btrfs_file_extent_compression(path->nodes[0], ei);
1525 BUG_ON(type != BTRFS_FILE_EXTENT_INLINE);
1526 BUG_ON(compression);
1527
1528 off = btrfs_file_extent_inline_start(ei);
Qu Wenruoe41ca582018-06-06 15:41:49 +08001529 len = btrfs_file_extent_ram_bytes(path->nodes[0], ei);
Alexander Block31db9f72012-07-25 23:19:24 +02001530
1531 ret = fs_path_add_from_extent_buffer(dest, path->nodes[0], off, len);
Alexander Block31db9f72012-07-25 23:19:24 +02001532
1533out:
1534 btrfs_free_path(path);
1535 return ret;
1536}
1537
1538/*
1539 * Helper function to generate a file name that is unique in the root of
1540 * send_root and parent_root. This is used to generate names for orphan inodes.
1541 */
1542static int gen_unique_name(struct send_ctx *sctx,
1543 u64 ino, u64 gen,
1544 struct fs_path *dest)
1545{
1546 int ret = 0;
1547 struct btrfs_path *path;
1548 struct btrfs_dir_item *di;
1549 char tmp[64];
1550 int len;
1551 u64 idx = 0;
1552
1553 path = alloc_path_for_send();
1554 if (!path)
1555 return -ENOMEM;
1556
1557 while (1) {
Filipe David Borba Mananaf74b86d2014-01-21 23:36:38 +00001558 len = snprintf(tmp, sizeof(tmp), "o%llu-%llu-%llu",
Alexander Block31db9f72012-07-25 23:19:24 +02001559 ino, gen, idx);
David Sterba64792f22014-02-03 18:24:09 +01001560 ASSERT(len < sizeof(tmp));
Alexander Block31db9f72012-07-25 23:19:24 +02001561
1562 di = btrfs_lookup_dir_item(NULL, sctx->send_root,
1563 path, BTRFS_FIRST_FREE_OBJECTID,
1564 tmp, strlen(tmp), 0);
1565 btrfs_release_path(path);
1566 if (IS_ERR(di)) {
1567 ret = PTR_ERR(di);
1568 goto out;
1569 }
1570 if (di) {
1571 /* not unique, try again */
1572 idx++;
1573 continue;
1574 }
1575
1576 if (!sctx->parent_root) {
1577 /* unique */
1578 ret = 0;
1579 break;
1580 }
1581
1582 di = btrfs_lookup_dir_item(NULL, sctx->parent_root,
1583 path, BTRFS_FIRST_FREE_OBJECTID,
1584 tmp, strlen(tmp), 0);
1585 btrfs_release_path(path);
1586 if (IS_ERR(di)) {
1587 ret = PTR_ERR(di);
1588 goto out;
1589 }
1590 if (di) {
1591 /* not unique, try again */
1592 idx++;
1593 continue;
1594 }
1595 /* unique */
1596 break;
1597 }
1598
1599 ret = fs_path_add(dest, tmp, strlen(tmp));
1600
1601out:
1602 btrfs_free_path(path);
1603 return ret;
1604}
1605
1606enum inode_state {
1607 inode_state_no_change,
1608 inode_state_will_create,
1609 inode_state_did_create,
1610 inode_state_will_delete,
1611 inode_state_did_delete,
1612};
1613
1614static int get_cur_inode_state(struct send_ctx *sctx, u64 ino, u64 gen)
1615{
1616 int ret;
1617 int left_ret;
1618 int right_ret;
1619 u64 left_gen;
1620 u64 right_gen;
1621
1622 ret = get_inode_info(sctx->send_root, ino, NULL, &left_gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001623 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001624 if (ret < 0 && ret != -ENOENT)
1625 goto out;
1626 left_ret = ret;
1627
1628 if (!sctx->parent_root) {
1629 right_ret = -ENOENT;
1630 } else {
1631 ret = get_inode_info(sctx->parent_root, ino, NULL, &right_gen,
Alexander Block85a7b332012-07-26 23:39:10 +02001632 NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001633 if (ret < 0 && ret != -ENOENT)
1634 goto out;
1635 right_ret = ret;
1636 }
1637
1638 if (!left_ret && !right_ret) {
Alexander Blocke938c8a2012-07-28 16:33:49 +02001639 if (left_gen == gen && right_gen == gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02001640 ret = inode_state_no_change;
Alexander Blocke938c8a2012-07-28 16:33:49 +02001641 } else if (left_gen == gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02001642 if (ino < sctx->send_progress)
1643 ret = inode_state_did_create;
1644 else
1645 ret = inode_state_will_create;
1646 } else if (right_gen == gen) {
1647 if (ino < sctx->send_progress)
1648 ret = inode_state_did_delete;
1649 else
1650 ret = inode_state_will_delete;
1651 } else {
1652 ret = -ENOENT;
1653 }
1654 } else if (!left_ret) {
1655 if (left_gen == gen) {
1656 if (ino < sctx->send_progress)
1657 ret = inode_state_did_create;
1658 else
1659 ret = inode_state_will_create;
1660 } else {
1661 ret = -ENOENT;
1662 }
1663 } else if (!right_ret) {
1664 if (right_gen == gen) {
1665 if (ino < sctx->send_progress)
1666 ret = inode_state_did_delete;
1667 else
1668 ret = inode_state_will_delete;
1669 } else {
1670 ret = -ENOENT;
1671 }
1672 } else {
1673 ret = -ENOENT;
1674 }
1675
1676out:
1677 return ret;
1678}
1679
1680static int is_inode_existent(struct send_ctx *sctx, u64 ino, u64 gen)
1681{
1682 int ret;
1683
Robbie Ko4dd99202017-01-05 16:24:55 +08001684 if (ino == BTRFS_FIRST_FREE_OBJECTID)
1685 return 1;
1686
Alexander Block31db9f72012-07-25 23:19:24 +02001687 ret = get_cur_inode_state(sctx, ino, gen);
1688 if (ret < 0)
1689 goto out;
1690
1691 if (ret == inode_state_no_change ||
1692 ret == inode_state_did_create ||
1693 ret == inode_state_will_delete)
1694 ret = 1;
1695 else
1696 ret = 0;
1697
1698out:
1699 return ret;
1700}
1701
1702/*
1703 * Helper function to lookup a dir item in a dir.
1704 */
1705static int lookup_dir_item_inode(struct btrfs_root *root,
1706 u64 dir, const char *name, int name_len,
1707 u64 *found_inode,
1708 u8 *found_type)
1709{
1710 int ret = 0;
1711 struct btrfs_dir_item *di;
1712 struct btrfs_key key;
1713 struct btrfs_path *path;
1714
1715 path = alloc_path_for_send();
1716 if (!path)
1717 return -ENOMEM;
1718
1719 di = btrfs_lookup_dir_item(NULL, root, path,
1720 dir, name, name_len, 0);
Liu Bo3cf50682018-09-12 06:06:26 +08001721 if (IS_ERR_OR_NULL(di)) {
1722 ret = di ? PTR_ERR(di) : -ENOENT;
Alexander Block31db9f72012-07-25 23:19:24 +02001723 goto out;
1724 }
1725 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
Filipe Manana1af56072014-05-25 04:49:24 +01001726 if (key.type == BTRFS_ROOT_ITEM_KEY) {
1727 ret = -ENOENT;
1728 goto out;
1729 }
Alexander Block31db9f72012-07-25 23:19:24 +02001730 *found_inode = key.objectid;
1731 *found_type = btrfs_dir_type(path->nodes[0], di);
1732
1733out:
1734 btrfs_free_path(path);
1735 return ret;
1736}
1737
Alexander Block766702e2012-07-28 14:11:31 +02001738/*
1739 * Looks up the first btrfs_inode_ref of a given ino. It returns the parent dir,
1740 * generation of the parent dir and the name of the dir entry.
1741 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001742static int get_first_ref(struct btrfs_root *root, u64 ino,
Alexander Block31db9f72012-07-25 23:19:24 +02001743 u64 *dir, u64 *dir_gen, struct fs_path *name)
1744{
1745 int ret;
1746 struct btrfs_key key;
1747 struct btrfs_key found_key;
1748 struct btrfs_path *path;
Alexander Block31db9f72012-07-25 23:19:24 +02001749 int len;
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001750 u64 parent_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001751
1752 path = alloc_path_for_send();
1753 if (!path)
1754 return -ENOMEM;
1755
1756 key.objectid = ino;
1757 key.type = BTRFS_INODE_REF_KEY;
1758 key.offset = 0;
1759
1760 ret = btrfs_search_slot_for_read(root, &key, path, 1, 0);
1761 if (ret < 0)
1762 goto out;
1763 if (!ret)
1764 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1765 path->slots[0]);
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001766 if (ret || found_key.objectid != ino ||
1767 (found_key.type != BTRFS_INODE_REF_KEY &&
1768 found_key.type != BTRFS_INODE_EXTREF_KEY)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001769 ret = -ENOENT;
1770 goto out;
1771 }
1772
Filipe Manana51a60252014-05-13 22:01:02 +01001773 if (found_key.type == BTRFS_INODE_REF_KEY) {
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001774 struct btrfs_inode_ref *iref;
1775 iref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1776 struct btrfs_inode_ref);
1777 len = btrfs_inode_ref_name_len(path->nodes[0], iref);
1778 ret = fs_path_add_from_extent_buffer(name, path->nodes[0],
1779 (unsigned long)(iref + 1),
1780 len);
1781 parent_dir = found_key.offset;
1782 } else {
1783 struct btrfs_inode_extref *extref;
1784 extref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1785 struct btrfs_inode_extref);
1786 len = btrfs_inode_extref_name_len(path->nodes[0], extref);
1787 ret = fs_path_add_from_extent_buffer(name, path->nodes[0],
1788 (unsigned long)&extref->name, len);
1789 parent_dir = btrfs_inode_extref_parent(path->nodes[0], extref);
1790 }
Alexander Block31db9f72012-07-25 23:19:24 +02001791 if (ret < 0)
1792 goto out;
1793 btrfs_release_path(path);
1794
Filipe Mananab46ab972014-03-21 12:46:54 +00001795 if (dir_gen) {
1796 ret = get_inode_info(root, parent_dir, NULL, dir_gen, NULL,
1797 NULL, NULL, NULL);
1798 if (ret < 0)
1799 goto out;
1800 }
Alexander Block31db9f72012-07-25 23:19:24 +02001801
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001802 *dir = parent_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001803
1804out:
1805 btrfs_free_path(path);
1806 return ret;
1807}
1808
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001809static int is_first_ref(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001810 u64 ino, u64 dir,
1811 const char *name, int name_len)
1812{
1813 int ret;
1814 struct fs_path *tmp_name;
1815 u64 tmp_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001816
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001817 tmp_name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02001818 if (!tmp_name)
1819 return -ENOMEM;
1820
Filipe Mananab46ab972014-03-21 12:46:54 +00001821 ret = get_first_ref(root, ino, &tmp_dir, NULL, tmp_name);
Alexander Block31db9f72012-07-25 23:19:24 +02001822 if (ret < 0)
1823 goto out;
1824
Alexander Blockb9291af2012-07-28 11:07:18 +02001825 if (dir != tmp_dir || name_len != fs_path_len(tmp_name)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001826 ret = 0;
1827 goto out;
1828 }
1829
Alexander Blocke938c8a2012-07-28 16:33:49 +02001830 ret = !memcmp(tmp_name->start, name, name_len);
Alexander Block31db9f72012-07-25 23:19:24 +02001831
1832out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001833 fs_path_free(tmp_name);
Alexander Block31db9f72012-07-25 23:19:24 +02001834 return ret;
1835}
1836
Alexander Block766702e2012-07-28 14:11:31 +02001837/*
1838 * Used by process_recorded_refs to determine if a new ref would overwrite an
1839 * already existing ref. In case it detects an overwrite, it returns the
1840 * inode/gen in who_ino/who_gen.
1841 * When an overwrite is detected, process_recorded_refs does proper orphanizing
1842 * to make sure later references to the overwritten inode are possible.
1843 * Orphanizing is however only required for the first ref of an inode.
1844 * process_recorded_refs does an additional is_first_ref check to see if
1845 * orphanizing is really required.
1846 */
Alexander Block31db9f72012-07-25 23:19:24 +02001847static int will_overwrite_ref(struct send_ctx *sctx, u64 dir, u64 dir_gen,
1848 const char *name, int name_len,
Filipe Mananaf5962782017-06-22 20:03:51 +01001849 u64 *who_ino, u64 *who_gen, u64 *who_mode)
Alexander Block31db9f72012-07-25 23:19:24 +02001850{
1851 int ret = 0;
Josef Bacikebdad912013-08-06 16:47:48 -04001852 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +02001853 u64 other_inode = 0;
1854 u8 other_type = 0;
1855
1856 if (!sctx->parent_root)
1857 goto out;
1858
1859 ret = is_inode_existent(sctx, dir, dir_gen);
1860 if (ret <= 0)
1861 goto out;
1862
Josef Bacikebdad912013-08-06 16:47:48 -04001863 /*
1864 * If we have a parent root we need to verify that the parent dir was
Nicholas D Steeves01327612016-05-19 21:18:45 -04001865 * not deleted and then re-created, if it was then we have no overwrite
Josef Bacikebdad912013-08-06 16:47:48 -04001866 * and we can just unlink this entry.
1867 */
Robbie Ko4dd99202017-01-05 16:24:55 +08001868 if (sctx->parent_root && dir != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacikebdad912013-08-06 16:47:48 -04001869 ret = get_inode_info(sctx->parent_root, dir, NULL, &gen, NULL,
1870 NULL, NULL, NULL);
1871 if (ret < 0 && ret != -ENOENT)
1872 goto out;
1873 if (ret) {
1874 ret = 0;
1875 goto out;
1876 }
1877 if (gen != dir_gen)
1878 goto out;
1879 }
1880
Alexander Block31db9f72012-07-25 23:19:24 +02001881 ret = lookup_dir_item_inode(sctx->parent_root, dir, name, name_len,
1882 &other_inode, &other_type);
1883 if (ret < 0 && ret != -ENOENT)
1884 goto out;
1885 if (ret) {
1886 ret = 0;
1887 goto out;
1888 }
1889
Alexander Block766702e2012-07-28 14:11:31 +02001890 /*
1891 * Check if the overwritten ref was already processed. If yes, the ref
1892 * was already unlinked/moved, so we can safely assume that we will not
1893 * overwrite anything at this point in time.
1894 */
Robbie Ko801bec32015-06-23 18:39:46 +08001895 if (other_inode > sctx->send_progress ||
1896 is_waiting_for_move(sctx, other_inode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001897 ret = get_inode_info(sctx->parent_root, other_inode, NULL,
Filipe Mananaf5962782017-06-22 20:03:51 +01001898 who_gen, who_mode, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001899 if (ret < 0)
1900 goto out;
1901
1902 ret = 1;
1903 *who_ino = other_inode;
1904 } else {
1905 ret = 0;
1906 }
1907
1908out:
1909 return ret;
1910}
1911
Alexander Block766702e2012-07-28 14:11:31 +02001912/*
1913 * Checks if the ref was overwritten by an already processed inode. This is
1914 * used by __get_cur_name_and_parent to find out if the ref was orphanized and
1915 * thus the orphan name needs be used.
1916 * process_recorded_refs also uses it to avoid unlinking of refs that were
1917 * overwritten.
1918 */
Alexander Block31db9f72012-07-25 23:19:24 +02001919static int did_overwrite_ref(struct send_ctx *sctx,
1920 u64 dir, u64 dir_gen,
1921 u64 ino, u64 ino_gen,
1922 const char *name, int name_len)
1923{
1924 int ret = 0;
1925 u64 gen;
1926 u64 ow_inode;
1927 u8 other_type;
1928
1929 if (!sctx->parent_root)
1930 goto out;
1931
1932 ret = is_inode_existent(sctx, dir, dir_gen);
1933 if (ret <= 0)
1934 goto out;
1935
Robbie Ko01914102017-01-05 16:24:58 +08001936 if (dir != BTRFS_FIRST_FREE_OBJECTID) {
1937 ret = get_inode_info(sctx->send_root, dir, NULL, &gen, NULL,
1938 NULL, NULL, NULL);
1939 if (ret < 0 && ret != -ENOENT)
1940 goto out;
1941 if (ret) {
1942 ret = 0;
1943 goto out;
1944 }
1945 if (gen != dir_gen)
1946 goto out;
1947 }
1948
Alexander Block31db9f72012-07-25 23:19:24 +02001949 /* check if the ref was overwritten by another ref */
1950 ret = lookup_dir_item_inode(sctx->send_root, dir, name, name_len,
1951 &ow_inode, &other_type);
1952 if (ret < 0 && ret != -ENOENT)
1953 goto out;
1954 if (ret) {
1955 /* was never and will never be overwritten */
1956 ret = 0;
1957 goto out;
1958 }
1959
1960 ret = get_inode_info(sctx->send_root, ow_inode, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001961 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001962 if (ret < 0)
1963 goto out;
1964
1965 if (ow_inode == ino && gen == ino_gen) {
1966 ret = 0;
1967 goto out;
1968 }
1969
Filipe Manana8b191a62015-04-09 14:09:14 +01001970 /*
1971 * We know that it is or will be overwritten. Check this now.
1972 * The current inode being processed might have been the one that caused
Filipe Mananab786f162015-09-26 15:30:23 +01001973 * inode 'ino' to be orphanized, therefore check if ow_inode matches
1974 * the current inode being processed.
Filipe Manana8b191a62015-04-09 14:09:14 +01001975 */
Filipe Mananab786f162015-09-26 15:30:23 +01001976 if ((ow_inode < sctx->send_progress) ||
1977 (ino != sctx->cur_ino && ow_inode == sctx->cur_ino &&
1978 gen == sctx->cur_inode_gen))
Alexander Block31db9f72012-07-25 23:19:24 +02001979 ret = 1;
1980 else
1981 ret = 0;
1982
1983out:
1984 return ret;
1985}
1986
Alexander Block766702e2012-07-28 14:11:31 +02001987/*
1988 * Same as did_overwrite_ref, but also checks if it is the first ref of an inode
1989 * that got overwritten. This is used by process_recorded_refs to determine
1990 * if it has to use the path as returned by get_cur_path or the orphan name.
1991 */
Alexander Block31db9f72012-07-25 23:19:24 +02001992static int did_overwrite_first_ref(struct send_ctx *sctx, u64 ino, u64 gen)
1993{
1994 int ret = 0;
1995 struct fs_path *name = NULL;
1996 u64 dir;
1997 u64 dir_gen;
1998
1999 if (!sctx->parent_root)
2000 goto out;
2001
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002002 name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002003 if (!name)
2004 return -ENOMEM;
2005
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002006 ret = get_first_ref(sctx->parent_root, ino, &dir, &dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02002007 if (ret < 0)
2008 goto out;
2009
2010 ret = did_overwrite_ref(sctx, dir, dir_gen, ino, gen,
2011 name->start, fs_path_len(name));
Alexander Block31db9f72012-07-25 23:19:24 +02002012
2013out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002014 fs_path_free(name);
Alexander Block31db9f72012-07-25 23:19:24 +02002015 return ret;
2016}
2017
Alexander Block766702e2012-07-28 14:11:31 +02002018/*
2019 * Insert a name cache entry. On 32bit kernels the radix tree index is 32bit,
2020 * so we need to do some special handling in case we have clashes. This function
2021 * takes care of this with the help of name_cache_entry::radix_list.
Alexander Block5dc67d02012-08-01 12:07:43 +02002022 * In case of error, nce is kfreed.
Alexander Block766702e2012-07-28 14:11:31 +02002023 */
Alexander Block31db9f72012-07-25 23:19:24 +02002024static int name_cache_insert(struct send_ctx *sctx,
2025 struct name_cache_entry *nce)
2026{
2027 int ret = 0;
Alexander Block7e0926f2012-07-28 14:20:58 +02002028 struct list_head *nce_head;
Alexander Block31db9f72012-07-25 23:19:24 +02002029
Alexander Block7e0926f2012-07-28 14:20:58 +02002030 nce_head = radix_tree_lookup(&sctx->name_cache,
2031 (unsigned long)nce->ino);
2032 if (!nce_head) {
David Sterbae780b0d2016-01-18 18:42:13 +01002033 nce_head = kmalloc(sizeof(*nce_head), GFP_KERNEL);
Tsutomu Itohcfa7a9c2012-12-17 06:38:51 +00002034 if (!nce_head) {
2035 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02002036 return -ENOMEM;
Tsutomu Itohcfa7a9c2012-12-17 06:38:51 +00002037 }
Alexander Block7e0926f2012-07-28 14:20:58 +02002038 INIT_LIST_HEAD(nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02002039
Alexander Block7e0926f2012-07-28 14:20:58 +02002040 ret = radix_tree_insert(&sctx->name_cache, nce->ino, nce_head);
Alexander Block5dc67d02012-08-01 12:07:43 +02002041 if (ret < 0) {
2042 kfree(nce_head);
2043 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02002044 return ret;
Alexander Block5dc67d02012-08-01 12:07:43 +02002045 }
Alexander Block31db9f72012-07-25 23:19:24 +02002046 }
Alexander Block7e0926f2012-07-28 14:20:58 +02002047 list_add_tail(&nce->radix_list, nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02002048 list_add_tail(&nce->list, &sctx->name_cache_list);
2049 sctx->name_cache_size++;
2050
2051 return ret;
2052}
2053
2054static void name_cache_delete(struct send_ctx *sctx,
2055 struct name_cache_entry *nce)
2056{
Alexander Block7e0926f2012-07-28 14:20:58 +02002057 struct list_head *nce_head;
Alexander Block31db9f72012-07-25 23:19:24 +02002058
Alexander Block7e0926f2012-07-28 14:20:58 +02002059 nce_head = radix_tree_lookup(&sctx->name_cache,
2060 (unsigned long)nce->ino);
David Sterba57fb8912014-02-03 19:24:40 +01002061 if (!nce_head) {
2062 btrfs_err(sctx->send_root->fs_info,
2063 "name_cache_delete lookup failed ino %llu cache size %d, leaking memory",
2064 nce->ino, sctx->name_cache_size);
2065 }
Alexander Block31db9f72012-07-25 23:19:24 +02002066
Alexander Block7e0926f2012-07-28 14:20:58 +02002067 list_del(&nce->radix_list);
Alexander Block31db9f72012-07-25 23:19:24 +02002068 list_del(&nce->list);
Alexander Block31db9f72012-07-25 23:19:24 +02002069 sctx->name_cache_size--;
Alexander Block7e0926f2012-07-28 14:20:58 +02002070
David Sterba57fb8912014-02-03 19:24:40 +01002071 /*
2072 * We may not get to the final release of nce_head if the lookup fails
2073 */
2074 if (nce_head && list_empty(nce_head)) {
Alexander Block7e0926f2012-07-28 14:20:58 +02002075 radix_tree_delete(&sctx->name_cache, (unsigned long)nce->ino);
2076 kfree(nce_head);
2077 }
Alexander Block31db9f72012-07-25 23:19:24 +02002078}
2079
2080static struct name_cache_entry *name_cache_search(struct send_ctx *sctx,
2081 u64 ino, u64 gen)
2082{
Alexander Block7e0926f2012-07-28 14:20:58 +02002083 struct list_head *nce_head;
2084 struct name_cache_entry *cur;
Alexander Block31db9f72012-07-25 23:19:24 +02002085
Alexander Block7e0926f2012-07-28 14:20:58 +02002086 nce_head = radix_tree_lookup(&sctx->name_cache, (unsigned long)ino);
2087 if (!nce_head)
Alexander Block31db9f72012-07-25 23:19:24 +02002088 return NULL;
2089
Alexander Block7e0926f2012-07-28 14:20:58 +02002090 list_for_each_entry(cur, nce_head, radix_list) {
2091 if (cur->ino == ino && cur->gen == gen)
2092 return cur;
2093 }
Alexander Block31db9f72012-07-25 23:19:24 +02002094 return NULL;
2095}
2096
Alexander Block766702e2012-07-28 14:11:31 +02002097/*
2098 * Removes the entry from the list and adds it back to the end. This marks the
2099 * entry as recently used so that name_cache_clean_unused does not remove it.
2100 */
Alexander Block31db9f72012-07-25 23:19:24 +02002101static void name_cache_used(struct send_ctx *sctx, struct name_cache_entry *nce)
2102{
2103 list_del(&nce->list);
2104 list_add_tail(&nce->list, &sctx->name_cache_list);
2105}
2106
Alexander Block766702e2012-07-28 14:11:31 +02002107/*
2108 * Remove some entries from the beginning of name_cache_list.
2109 */
Alexander Block31db9f72012-07-25 23:19:24 +02002110static void name_cache_clean_unused(struct send_ctx *sctx)
2111{
2112 struct name_cache_entry *nce;
2113
2114 if (sctx->name_cache_size < SEND_CTX_NAME_CACHE_CLEAN_SIZE)
2115 return;
2116
2117 while (sctx->name_cache_size > SEND_CTX_MAX_NAME_CACHE_SIZE) {
2118 nce = list_entry(sctx->name_cache_list.next,
2119 struct name_cache_entry, list);
2120 name_cache_delete(sctx, nce);
2121 kfree(nce);
2122 }
2123}
2124
2125static void name_cache_free(struct send_ctx *sctx)
2126{
2127 struct name_cache_entry *nce;
Alexander Block31db9f72012-07-25 23:19:24 +02002128
Alexander Blocke938c8a2012-07-28 16:33:49 +02002129 while (!list_empty(&sctx->name_cache_list)) {
2130 nce = list_entry(sctx->name_cache_list.next,
2131 struct name_cache_entry, list);
Alexander Block31db9f72012-07-25 23:19:24 +02002132 name_cache_delete(sctx, nce);
Alexander Block17589bd2012-07-28 14:13:35 +02002133 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02002134 }
2135}
2136
Alexander Block766702e2012-07-28 14:11:31 +02002137/*
2138 * Used by get_cur_path for each ref up to the root.
2139 * Returns 0 if it succeeded.
2140 * Returns 1 if the inode is not existent or got overwritten. In that case, the
2141 * name is an orphan name. This instructs get_cur_path to stop iterating. If 1
2142 * is returned, parent_ino/parent_gen are not guaranteed to be valid.
2143 * Returns <0 in case of error.
2144 */
Alexander Block31db9f72012-07-25 23:19:24 +02002145static int __get_cur_name_and_parent(struct send_ctx *sctx,
2146 u64 ino, u64 gen,
2147 u64 *parent_ino,
2148 u64 *parent_gen,
2149 struct fs_path *dest)
2150{
2151 int ret;
2152 int nce_ret;
Alexander Block31db9f72012-07-25 23:19:24 +02002153 struct name_cache_entry *nce = NULL;
2154
Alexander Block766702e2012-07-28 14:11:31 +02002155 /*
2156 * First check if we already did a call to this function with the same
2157 * ino/gen. If yes, check if the cache entry is still up-to-date. If yes
2158 * return the cached result.
2159 */
Alexander Block31db9f72012-07-25 23:19:24 +02002160 nce = name_cache_search(sctx, ino, gen);
2161 if (nce) {
2162 if (ino < sctx->send_progress && nce->need_later_update) {
2163 name_cache_delete(sctx, nce);
2164 kfree(nce);
2165 nce = NULL;
2166 } else {
2167 name_cache_used(sctx, nce);
2168 *parent_ino = nce->parent_ino;
2169 *parent_gen = nce->parent_gen;
2170 ret = fs_path_add(dest, nce->name, nce->name_len);
2171 if (ret < 0)
2172 goto out;
2173 ret = nce->ret;
2174 goto out;
2175 }
2176 }
2177
Alexander Block766702e2012-07-28 14:11:31 +02002178 /*
2179 * If the inode is not existent yet, add the orphan name and return 1.
2180 * This should only happen for the parent dir that we determine in
2181 * __record_new_ref
2182 */
Alexander Block31db9f72012-07-25 23:19:24 +02002183 ret = is_inode_existent(sctx, ino, gen);
2184 if (ret < 0)
2185 goto out;
2186
2187 if (!ret) {
2188 ret = gen_unique_name(sctx, ino, gen, dest);
2189 if (ret < 0)
2190 goto out;
2191 ret = 1;
2192 goto out_cache;
2193 }
2194
Alexander Block766702e2012-07-28 14:11:31 +02002195 /*
2196 * Depending on whether the inode was already processed or not, use
2197 * send_root or parent_root for ref lookup.
2198 */
Filipe Mananabf0d1f42014-02-21 00:01:32 +00002199 if (ino < sctx->send_progress)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002200 ret = get_first_ref(sctx->send_root, ino,
2201 parent_ino, parent_gen, dest);
Alexander Block31db9f72012-07-25 23:19:24 +02002202 else
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002203 ret = get_first_ref(sctx->parent_root, ino,
2204 parent_ino, parent_gen, dest);
Alexander Block31db9f72012-07-25 23:19:24 +02002205 if (ret < 0)
2206 goto out;
2207
Alexander Block766702e2012-07-28 14:11:31 +02002208 /*
2209 * Check if the ref was overwritten by an inode's ref that was processed
2210 * earlier. If yes, treat as orphan and return 1.
2211 */
Alexander Block31db9f72012-07-25 23:19:24 +02002212 ret = did_overwrite_ref(sctx, *parent_ino, *parent_gen, ino, gen,
2213 dest->start, dest->end - dest->start);
2214 if (ret < 0)
2215 goto out;
2216 if (ret) {
2217 fs_path_reset(dest);
2218 ret = gen_unique_name(sctx, ino, gen, dest);
2219 if (ret < 0)
2220 goto out;
2221 ret = 1;
2222 }
2223
2224out_cache:
Alexander Block766702e2012-07-28 14:11:31 +02002225 /*
2226 * Store the result of the lookup in the name cache.
2227 */
David Sterbae780b0d2016-01-18 18:42:13 +01002228 nce = kmalloc(sizeof(*nce) + fs_path_len(dest) + 1, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002229 if (!nce) {
2230 ret = -ENOMEM;
2231 goto out;
2232 }
2233
2234 nce->ino = ino;
2235 nce->gen = gen;
2236 nce->parent_ino = *parent_ino;
2237 nce->parent_gen = *parent_gen;
2238 nce->name_len = fs_path_len(dest);
2239 nce->ret = ret;
2240 strcpy(nce->name, dest->start);
Alexander Block31db9f72012-07-25 23:19:24 +02002241
2242 if (ino < sctx->send_progress)
2243 nce->need_later_update = 0;
2244 else
2245 nce->need_later_update = 1;
2246
2247 nce_ret = name_cache_insert(sctx, nce);
2248 if (nce_ret < 0)
2249 ret = nce_ret;
2250 name_cache_clean_unused(sctx);
2251
2252out:
Alexander Block31db9f72012-07-25 23:19:24 +02002253 return ret;
2254}
2255
2256/*
2257 * Magic happens here. This function returns the first ref to an inode as it
2258 * would look like while receiving the stream at this point in time.
2259 * We walk the path up to the root. For every inode in between, we check if it
2260 * was already processed/sent. If yes, we continue with the parent as found
2261 * in send_root. If not, we continue with the parent as found in parent_root.
2262 * If we encounter an inode that was deleted at this point in time, we use the
2263 * inodes "orphan" name instead of the real name and stop. Same with new inodes
2264 * that were not created yet and overwritten inodes/refs.
2265 *
Andrea Gelmini52042d82018-11-28 12:05:13 +01002266 * When do we have orphan inodes:
Alexander Block31db9f72012-07-25 23:19:24 +02002267 * 1. When an inode is freshly created and thus no valid refs are available yet
2268 * 2. When a directory lost all it's refs (deleted) but still has dir items
2269 * inside which were not processed yet (pending for move/delete). If anyone
2270 * tried to get the path to the dir items, it would get a path inside that
2271 * orphan directory.
2272 * 3. When an inode is moved around or gets new links, it may overwrite the ref
2273 * of an unprocessed inode. If in that case the first ref would be
2274 * overwritten, the overwritten inode gets "orphanized". Later when we
2275 * process this overwritten inode, it is restored at a new place by moving
2276 * the orphan inode.
2277 *
2278 * sctx->send_progress tells this function at which point in time receiving
2279 * would be.
2280 */
2281static int get_cur_path(struct send_ctx *sctx, u64 ino, u64 gen,
2282 struct fs_path *dest)
2283{
2284 int ret = 0;
2285 struct fs_path *name = NULL;
2286 u64 parent_inode = 0;
2287 u64 parent_gen = 0;
2288 int stop = 0;
2289
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002290 name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002291 if (!name) {
2292 ret = -ENOMEM;
2293 goto out;
2294 }
2295
2296 dest->reversed = 1;
2297 fs_path_reset(dest);
2298
2299 while (!stop && ino != BTRFS_FIRST_FREE_OBJECTID) {
Filipe Manana8b191a62015-04-09 14:09:14 +01002300 struct waiting_dir_move *wdm;
2301
Alexander Block31db9f72012-07-25 23:19:24 +02002302 fs_path_reset(name);
2303
Filipe Manana9dc44212014-02-19 14:31:44 +00002304 if (is_waiting_for_rm(sctx, ino)) {
2305 ret = gen_unique_name(sctx, ino, gen, name);
2306 if (ret < 0)
2307 goto out;
2308 ret = fs_path_add_path(dest, name);
2309 break;
2310 }
2311
Filipe Manana8b191a62015-04-09 14:09:14 +01002312 wdm = get_waiting_dir_move(sctx, ino);
2313 if (wdm && wdm->orphanized) {
2314 ret = gen_unique_name(sctx, ino, gen, name);
2315 stop = 1;
2316 } else if (wdm) {
Filipe Mananabf0d1f42014-02-21 00:01:32 +00002317 ret = get_first_ref(sctx->parent_root, ino,
2318 &parent_inode, &parent_gen, name);
2319 } else {
2320 ret = __get_cur_name_and_parent(sctx, ino, gen,
2321 &parent_inode,
2322 &parent_gen, name);
2323 if (ret)
2324 stop = 1;
2325 }
2326
Alexander Block31db9f72012-07-25 23:19:24 +02002327 if (ret < 0)
2328 goto out;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002329
Alexander Block31db9f72012-07-25 23:19:24 +02002330 ret = fs_path_add_path(dest, name);
2331 if (ret < 0)
2332 goto out;
2333
2334 ino = parent_inode;
2335 gen = parent_gen;
2336 }
2337
2338out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002339 fs_path_free(name);
Alexander Block31db9f72012-07-25 23:19:24 +02002340 if (!ret)
2341 fs_path_unreverse(dest);
2342 return ret;
2343}
2344
2345/*
Alexander Block31db9f72012-07-25 23:19:24 +02002346 * Sends a BTRFS_SEND_C_SUBVOL command/item to userspace
2347 */
2348static int send_subvol_begin(struct send_ctx *sctx)
2349{
2350 int ret;
2351 struct btrfs_root *send_root = sctx->send_root;
2352 struct btrfs_root *parent_root = sctx->parent_root;
2353 struct btrfs_path *path;
2354 struct btrfs_key key;
2355 struct btrfs_root_ref *ref;
2356 struct extent_buffer *leaf;
2357 char *name = NULL;
2358 int namelen;
2359
Wang Shilongffcfaf82014-01-15 00:26:43 +08002360 path = btrfs_alloc_path();
Alexander Block31db9f72012-07-25 23:19:24 +02002361 if (!path)
2362 return -ENOMEM;
2363
David Sterbae780b0d2016-01-18 18:42:13 +01002364 name = kmalloc(BTRFS_PATH_NAME_MAX, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002365 if (!name) {
2366 btrfs_free_path(path);
2367 return -ENOMEM;
2368 }
2369
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09002370 key.objectid = send_root->root_key.objectid;
Alexander Block31db9f72012-07-25 23:19:24 +02002371 key.type = BTRFS_ROOT_BACKREF_KEY;
2372 key.offset = 0;
2373
2374 ret = btrfs_search_slot_for_read(send_root->fs_info->tree_root,
2375 &key, path, 1, 0);
2376 if (ret < 0)
2377 goto out;
2378 if (ret) {
2379 ret = -ENOENT;
2380 goto out;
2381 }
2382
2383 leaf = path->nodes[0];
2384 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2385 if (key.type != BTRFS_ROOT_BACKREF_KEY ||
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09002386 key.objectid != send_root->root_key.objectid) {
Alexander Block31db9f72012-07-25 23:19:24 +02002387 ret = -ENOENT;
2388 goto out;
2389 }
2390 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
2391 namelen = btrfs_root_ref_name_len(leaf, ref);
2392 read_extent_buffer(leaf, name, (unsigned long)(ref + 1), namelen);
2393 btrfs_release_path(path);
2394
Alexander Block31db9f72012-07-25 23:19:24 +02002395 if (parent_root) {
2396 ret = begin_cmd(sctx, BTRFS_SEND_C_SNAPSHOT);
2397 if (ret < 0)
2398 goto out;
2399 } else {
2400 ret = begin_cmd(sctx, BTRFS_SEND_C_SUBVOL);
2401 if (ret < 0)
2402 goto out;
2403 }
2404
2405 TLV_PUT_STRING(sctx, BTRFS_SEND_A_PATH, name, namelen);
Robin Ruedeb96b1db2015-09-30 21:23:33 +02002406
2407 if (!btrfs_is_empty_uuid(sctx->send_root->root_item.received_uuid))
2408 TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID,
2409 sctx->send_root->root_item.received_uuid);
2410 else
2411 TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID,
2412 sctx->send_root->root_item.uuid);
2413
Alexander Block31db9f72012-07-25 23:19:24 +02002414 TLV_PUT_U64(sctx, BTRFS_SEND_A_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00002415 le64_to_cpu(sctx->send_root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02002416 if (parent_root) {
Josef Bacik37b8d272015-06-04 17:17:25 -04002417 if (!btrfs_is_empty_uuid(parent_root->root_item.received_uuid))
2418 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
2419 parent_root->root_item.received_uuid);
2420 else
2421 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
2422 parent_root->root_item.uuid);
Alexander Block31db9f72012-07-25 23:19:24 +02002423 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00002424 le64_to_cpu(sctx->parent_root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02002425 }
2426
2427 ret = send_cmd(sctx);
2428
2429tlv_put_failure:
2430out:
2431 btrfs_free_path(path);
2432 kfree(name);
2433 return ret;
2434}
2435
2436static int send_truncate(struct send_ctx *sctx, u64 ino, u64 gen, u64 size)
2437{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002438 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002439 int ret = 0;
2440 struct fs_path *p;
2441
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002442 btrfs_debug(fs_info, "send_truncate %llu size=%llu", ino, size);
Alexander Block31db9f72012-07-25 23:19:24 +02002443
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002444 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002445 if (!p)
2446 return -ENOMEM;
2447
2448 ret = begin_cmd(sctx, BTRFS_SEND_C_TRUNCATE);
2449 if (ret < 0)
2450 goto out;
2451
2452 ret = get_cur_path(sctx, ino, gen, p);
2453 if (ret < 0)
2454 goto out;
2455 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2456 TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, size);
2457
2458 ret = send_cmd(sctx);
2459
2460tlv_put_failure:
2461out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002462 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002463 return ret;
2464}
2465
2466static int send_chmod(struct send_ctx *sctx, u64 ino, u64 gen, u64 mode)
2467{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002468 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002469 int ret = 0;
2470 struct fs_path *p;
2471
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002472 btrfs_debug(fs_info, "send_chmod %llu mode=%llu", ino, mode);
Alexander Block31db9f72012-07-25 23:19:24 +02002473
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002474 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002475 if (!p)
2476 return -ENOMEM;
2477
2478 ret = begin_cmd(sctx, BTRFS_SEND_C_CHMOD);
2479 if (ret < 0)
2480 goto out;
2481
2482 ret = get_cur_path(sctx, ino, gen, p);
2483 if (ret < 0)
2484 goto out;
2485 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2486 TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode & 07777);
2487
2488 ret = send_cmd(sctx);
2489
2490tlv_put_failure:
2491out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002492 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002493 return ret;
2494}
2495
2496static int send_chown(struct send_ctx *sctx, u64 ino, u64 gen, u64 uid, u64 gid)
2497{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002498 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002499 int ret = 0;
2500 struct fs_path *p;
2501
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002502 btrfs_debug(fs_info, "send_chown %llu uid=%llu, gid=%llu",
2503 ino, uid, gid);
Alexander Block31db9f72012-07-25 23:19:24 +02002504
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002505 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002506 if (!p)
2507 return -ENOMEM;
2508
2509 ret = begin_cmd(sctx, BTRFS_SEND_C_CHOWN);
2510 if (ret < 0)
2511 goto out;
2512
2513 ret = get_cur_path(sctx, ino, gen, p);
2514 if (ret < 0)
2515 goto out;
2516 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2517 TLV_PUT_U64(sctx, BTRFS_SEND_A_UID, uid);
2518 TLV_PUT_U64(sctx, BTRFS_SEND_A_GID, gid);
2519
2520 ret = send_cmd(sctx);
2521
2522tlv_put_failure:
2523out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002524 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002525 return ret;
2526}
2527
2528static int send_utimes(struct send_ctx *sctx, u64 ino, u64 gen)
2529{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002530 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002531 int ret = 0;
2532 struct fs_path *p = NULL;
2533 struct btrfs_inode_item *ii;
2534 struct btrfs_path *path = NULL;
2535 struct extent_buffer *eb;
2536 struct btrfs_key key;
2537 int slot;
2538
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002539 btrfs_debug(fs_info, "send_utimes %llu", ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002540
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002541 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002542 if (!p)
2543 return -ENOMEM;
2544
2545 path = alloc_path_for_send();
2546 if (!path) {
2547 ret = -ENOMEM;
2548 goto out;
2549 }
2550
2551 key.objectid = ino;
2552 key.type = BTRFS_INODE_ITEM_KEY;
2553 key.offset = 0;
2554 ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0);
Filipe Manana15b253e2016-07-02 05:43:46 +01002555 if (ret > 0)
2556 ret = -ENOENT;
Alexander Block31db9f72012-07-25 23:19:24 +02002557 if (ret < 0)
2558 goto out;
2559
2560 eb = path->nodes[0];
2561 slot = path->slots[0];
2562 ii = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
2563
2564 ret = begin_cmd(sctx, BTRFS_SEND_C_UTIMES);
2565 if (ret < 0)
2566 goto out;
2567
2568 ret = get_cur_path(sctx, ino, gen, p);
2569 if (ret < 0)
2570 goto out;
2571 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
David Sterbaa937b972014-12-12 17:39:12 +01002572 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_ATIME, eb, &ii->atime);
2573 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_MTIME, eb, &ii->mtime);
2574 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_CTIME, eb, &ii->ctime);
Alexander Block766702e2012-07-28 14:11:31 +02002575 /* TODO Add otime support when the otime patches get into upstream */
Alexander Block31db9f72012-07-25 23:19:24 +02002576
2577 ret = send_cmd(sctx);
2578
2579tlv_put_failure:
2580out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002581 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002582 btrfs_free_path(path);
2583 return ret;
2584}
2585
2586/*
2587 * Sends a BTRFS_SEND_C_MKXXX or SYMLINK command to user space. We don't have
2588 * a valid path yet because we did not process the refs yet. So, the inode
2589 * is created as orphan.
2590 */
Alexander Block1f4692d2012-07-28 10:42:24 +02002591static int send_create_inode(struct send_ctx *sctx, u64 ino)
Alexander Block31db9f72012-07-25 23:19:24 +02002592{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002593 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002594 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02002595 struct fs_path *p;
Alexander Block31db9f72012-07-25 23:19:24 +02002596 int cmd;
Alexander Block1f4692d2012-07-28 10:42:24 +02002597 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +02002598 u64 mode;
Alexander Block1f4692d2012-07-28 10:42:24 +02002599 u64 rdev;
Alexander Block31db9f72012-07-25 23:19:24 +02002600
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002601 btrfs_debug(fs_info, "send_create_inode %llu", ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002602
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002603 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002604 if (!p)
2605 return -ENOMEM;
2606
Liu Bo644d1942014-02-27 17:29:01 +08002607 if (ino != sctx->cur_ino) {
2608 ret = get_inode_info(sctx->send_root, ino, NULL, &gen, &mode,
2609 NULL, NULL, &rdev);
2610 if (ret < 0)
2611 goto out;
2612 } else {
2613 gen = sctx->cur_inode_gen;
2614 mode = sctx->cur_inode_mode;
2615 rdev = sctx->cur_inode_rdev;
2616 }
Alexander Block31db9f72012-07-25 23:19:24 +02002617
Alexander Blocke938c8a2012-07-28 16:33:49 +02002618 if (S_ISREG(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002619 cmd = BTRFS_SEND_C_MKFILE;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002620 } else if (S_ISDIR(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002621 cmd = BTRFS_SEND_C_MKDIR;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002622 } else if (S_ISLNK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002623 cmd = BTRFS_SEND_C_SYMLINK;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002624 } else if (S_ISCHR(mode) || S_ISBLK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002625 cmd = BTRFS_SEND_C_MKNOD;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002626 } else if (S_ISFIFO(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002627 cmd = BTRFS_SEND_C_MKFIFO;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002628 } else if (S_ISSOCK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002629 cmd = BTRFS_SEND_C_MKSOCK;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002630 } else {
David Sterbaf14d1042015-10-08 11:37:06 +02002631 btrfs_warn(sctx->send_root->fs_info, "unexpected inode type %o",
Alexander Block31db9f72012-07-25 23:19:24 +02002632 (int)(mode & S_IFMT));
Tsutomu Itohca6842b2016-01-22 09:13:25 +09002633 ret = -EOPNOTSUPP;
Alexander Block31db9f72012-07-25 23:19:24 +02002634 goto out;
2635 }
2636
2637 ret = begin_cmd(sctx, cmd);
2638 if (ret < 0)
2639 goto out;
2640
Alexander Block1f4692d2012-07-28 10:42:24 +02002641 ret = gen_unique_name(sctx, ino, gen, p);
Alexander Block31db9f72012-07-25 23:19:24 +02002642 if (ret < 0)
2643 goto out;
2644
2645 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
Alexander Block1f4692d2012-07-28 10:42:24 +02002646 TLV_PUT_U64(sctx, BTRFS_SEND_A_INO, ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002647
2648 if (S_ISLNK(mode)) {
2649 fs_path_reset(p);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002650 ret = read_symlink(sctx->send_root, ino, p);
Alexander Block31db9f72012-07-25 23:19:24 +02002651 if (ret < 0)
2652 goto out;
2653 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, p);
2654 } else if (S_ISCHR(mode) || S_ISBLK(mode) ||
2655 S_ISFIFO(mode) || S_ISSOCK(mode)) {
Arne Jansend79e5042012-10-15 18:28:46 +00002656 TLV_PUT_U64(sctx, BTRFS_SEND_A_RDEV, new_encode_dev(rdev));
2657 TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode);
Alexander Block31db9f72012-07-25 23:19:24 +02002658 }
2659
2660 ret = send_cmd(sctx);
2661 if (ret < 0)
2662 goto out;
2663
2664
2665tlv_put_failure:
2666out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002667 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002668 return ret;
2669}
2670
Alexander Block1f4692d2012-07-28 10:42:24 +02002671/*
2672 * We need some special handling for inodes that get processed before the parent
2673 * directory got created. See process_recorded_refs for details.
2674 * This function does the check if we already created the dir out of order.
2675 */
2676static int did_create_dir(struct send_ctx *sctx, u64 dir)
2677{
2678 int ret = 0;
2679 struct btrfs_path *path = NULL;
2680 struct btrfs_key key;
2681 struct btrfs_key found_key;
2682 struct btrfs_key di_key;
2683 struct extent_buffer *eb;
2684 struct btrfs_dir_item *di;
2685 int slot;
2686
2687 path = alloc_path_for_send();
2688 if (!path) {
2689 ret = -ENOMEM;
2690 goto out;
2691 }
2692
2693 key.objectid = dir;
2694 key.type = BTRFS_DIR_INDEX_KEY;
2695 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002696 ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0);
2697 if (ret < 0)
2698 goto out;
2699
Alexander Block1f4692d2012-07-28 10:42:24 +02002700 while (1) {
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002701 eb = path->nodes[0];
2702 slot = path->slots[0];
2703 if (slot >= btrfs_header_nritems(eb)) {
2704 ret = btrfs_next_leaf(sctx->send_root, path);
2705 if (ret < 0) {
2706 goto out;
2707 } else if (ret > 0) {
2708 ret = 0;
2709 break;
2710 }
2711 continue;
Alexander Block1f4692d2012-07-28 10:42:24 +02002712 }
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002713
2714 btrfs_item_key_to_cpu(eb, &found_key, slot);
2715 if (found_key.objectid != key.objectid ||
Alexander Block1f4692d2012-07-28 10:42:24 +02002716 found_key.type != key.type) {
2717 ret = 0;
2718 goto out;
2719 }
2720
2721 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
2722 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
2723
Josef Bacika0525412013-08-12 10:56:14 -04002724 if (di_key.type != BTRFS_ROOT_ITEM_KEY &&
2725 di_key.objectid < sctx->send_progress) {
Alexander Block1f4692d2012-07-28 10:42:24 +02002726 ret = 1;
2727 goto out;
2728 }
2729
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002730 path->slots[0]++;
Alexander Block1f4692d2012-07-28 10:42:24 +02002731 }
2732
2733out:
2734 btrfs_free_path(path);
2735 return ret;
2736}
2737
2738/*
2739 * Only creates the inode if it is:
2740 * 1. Not a directory
2741 * 2. Or a directory which was not created already due to out of order
2742 * directories. See did_create_dir and process_recorded_refs for details.
2743 */
2744static int send_create_inode_if_needed(struct send_ctx *sctx)
2745{
2746 int ret;
2747
2748 if (S_ISDIR(sctx->cur_inode_mode)) {
2749 ret = did_create_dir(sctx, sctx->cur_ino);
2750 if (ret < 0)
2751 goto out;
2752 if (ret) {
2753 ret = 0;
2754 goto out;
2755 }
2756 }
2757
2758 ret = send_create_inode(sctx, sctx->cur_ino);
2759 if (ret < 0)
2760 goto out;
2761
2762out:
2763 return ret;
2764}
2765
Alexander Block31db9f72012-07-25 23:19:24 +02002766struct recorded_ref {
2767 struct list_head list;
Alexander Block31db9f72012-07-25 23:19:24 +02002768 char *name;
2769 struct fs_path *full_path;
2770 u64 dir;
2771 u64 dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02002772 int name_len;
2773};
2774
Filipe Mananafdb13882017-06-13 14:13:11 +01002775static void set_ref_path(struct recorded_ref *ref, struct fs_path *path)
2776{
2777 ref->full_path = path;
2778 ref->name = (char *)kbasename(ref->full_path->start);
2779 ref->name_len = ref->full_path->end - ref->name;
2780}
2781
Alexander Block31db9f72012-07-25 23:19:24 +02002782/*
2783 * We need to process new refs before deleted refs, but compare_tree gives us
2784 * everything mixed. So we first record all refs and later process them.
2785 * This function is a helper to record one ref.
2786 */
Liu Boa4d96d62014-03-03 21:31:03 +08002787static int __record_ref(struct list_head *head, u64 dir,
Alexander Block31db9f72012-07-25 23:19:24 +02002788 u64 dir_gen, struct fs_path *path)
2789{
2790 struct recorded_ref *ref;
Alexander Block31db9f72012-07-25 23:19:24 +02002791
David Sterbae780b0d2016-01-18 18:42:13 +01002792 ref = kmalloc(sizeof(*ref), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002793 if (!ref)
2794 return -ENOMEM;
2795
2796 ref->dir = dir;
2797 ref->dir_gen = dir_gen;
Filipe Mananafdb13882017-06-13 14:13:11 +01002798 set_ref_path(ref, path);
Alexander Block31db9f72012-07-25 23:19:24 +02002799 list_add_tail(&ref->list, head);
2800 return 0;
2801}
2802
Josef Bacikba5e8f22013-08-16 16:52:55 -04002803static int dup_ref(struct recorded_ref *ref, struct list_head *list)
2804{
2805 struct recorded_ref *new;
2806
David Sterbae780b0d2016-01-18 18:42:13 +01002807 new = kmalloc(sizeof(*ref), GFP_KERNEL);
Josef Bacikba5e8f22013-08-16 16:52:55 -04002808 if (!new)
2809 return -ENOMEM;
2810
2811 new->dir = ref->dir;
2812 new->dir_gen = ref->dir_gen;
2813 new->full_path = NULL;
2814 INIT_LIST_HEAD(&new->list);
2815 list_add_tail(&new->list, list);
2816 return 0;
2817}
2818
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002819static void __free_recorded_refs(struct list_head *head)
Alexander Block31db9f72012-07-25 23:19:24 +02002820{
2821 struct recorded_ref *cur;
Alexander Block31db9f72012-07-25 23:19:24 +02002822
Alexander Blocke938c8a2012-07-28 16:33:49 +02002823 while (!list_empty(head)) {
2824 cur = list_entry(head->next, struct recorded_ref, list);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002825 fs_path_free(cur->full_path);
Alexander Blocke938c8a2012-07-28 16:33:49 +02002826 list_del(&cur->list);
Alexander Block31db9f72012-07-25 23:19:24 +02002827 kfree(cur);
2828 }
Alexander Block31db9f72012-07-25 23:19:24 +02002829}
2830
2831static void free_recorded_refs(struct send_ctx *sctx)
2832{
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002833 __free_recorded_refs(&sctx->new_refs);
2834 __free_recorded_refs(&sctx->deleted_refs);
Alexander Block31db9f72012-07-25 23:19:24 +02002835}
2836
2837/*
Alexander Block766702e2012-07-28 14:11:31 +02002838 * Renames/moves a file/dir to its orphan name. Used when the first
Alexander Block31db9f72012-07-25 23:19:24 +02002839 * ref of an unprocessed inode gets overwritten and for all non empty
2840 * directories.
2841 */
2842static int orphanize_inode(struct send_ctx *sctx, u64 ino, u64 gen,
2843 struct fs_path *path)
2844{
2845 int ret;
2846 struct fs_path *orphan;
2847
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002848 orphan = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002849 if (!orphan)
2850 return -ENOMEM;
2851
2852 ret = gen_unique_name(sctx, ino, gen, orphan);
2853 if (ret < 0)
2854 goto out;
2855
2856 ret = send_rename(sctx, path, orphan);
2857
2858out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002859 fs_path_free(orphan);
Alexander Block31db9f72012-07-25 23:19:24 +02002860 return ret;
2861}
2862
Filipe Manana9dc44212014-02-19 14:31:44 +00002863static struct orphan_dir_info *
2864add_orphan_dir_info(struct send_ctx *sctx, u64 dir_ino)
2865{
2866 struct rb_node **p = &sctx->orphan_dirs.rb_node;
2867 struct rb_node *parent = NULL;
2868 struct orphan_dir_info *entry, *odi;
2869
Filipe Manana9dc44212014-02-19 14:31:44 +00002870 while (*p) {
2871 parent = *p;
2872 entry = rb_entry(parent, struct orphan_dir_info, node);
2873 if (dir_ino < entry->ino) {
2874 p = &(*p)->rb_left;
2875 } else if (dir_ino > entry->ino) {
2876 p = &(*p)->rb_right;
2877 } else {
Filipe Manana9dc44212014-02-19 14:31:44 +00002878 return entry;
2879 }
2880 }
2881
Robbie Ko35c8eda2018-05-08 18:11:37 +08002882 odi = kmalloc(sizeof(*odi), GFP_KERNEL);
2883 if (!odi)
2884 return ERR_PTR(-ENOMEM);
2885 odi->ino = dir_ino;
2886 odi->gen = 0;
Robbie Ko0f96f512018-05-08 18:11:38 +08002887 odi->last_dir_index_offset = 0;
Robbie Ko35c8eda2018-05-08 18:11:37 +08002888
Filipe Manana9dc44212014-02-19 14:31:44 +00002889 rb_link_node(&odi->node, parent, p);
2890 rb_insert_color(&odi->node, &sctx->orphan_dirs);
2891 return odi;
2892}
2893
2894static struct orphan_dir_info *
2895get_orphan_dir_info(struct send_ctx *sctx, u64 dir_ino)
2896{
2897 struct rb_node *n = sctx->orphan_dirs.rb_node;
2898 struct orphan_dir_info *entry;
2899
2900 while (n) {
2901 entry = rb_entry(n, struct orphan_dir_info, node);
2902 if (dir_ino < entry->ino)
2903 n = n->rb_left;
2904 else if (dir_ino > entry->ino)
2905 n = n->rb_right;
2906 else
2907 return entry;
2908 }
2909 return NULL;
2910}
2911
2912static int is_waiting_for_rm(struct send_ctx *sctx, u64 dir_ino)
2913{
2914 struct orphan_dir_info *odi = get_orphan_dir_info(sctx, dir_ino);
2915
2916 return odi != NULL;
2917}
2918
2919static void free_orphan_dir_info(struct send_ctx *sctx,
2920 struct orphan_dir_info *odi)
2921{
2922 if (!odi)
2923 return;
2924 rb_erase(&odi->node, &sctx->orphan_dirs);
2925 kfree(odi);
2926}
2927
Alexander Block31db9f72012-07-25 23:19:24 +02002928/*
2929 * Returns 1 if a directory can be removed at this point in time.
2930 * We check this by iterating all dir items and checking if the inode behind
2931 * the dir item was already processed.
2932 */
Filipe Manana9dc44212014-02-19 14:31:44 +00002933static int can_rmdir(struct send_ctx *sctx, u64 dir, u64 dir_gen,
2934 u64 send_progress)
Alexander Block31db9f72012-07-25 23:19:24 +02002935{
2936 int ret = 0;
2937 struct btrfs_root *root = sctx->parent_root;
2938 struct btrfs_path *path;
2939 struct btrfs_key key;
2940 struct btrfs_key found_key;
2941 struct btrfs_key loc;
2942 struct btrfs_dir_item *di;
Robbie Ko0f96f512018-05-08 18:11:38 +08002943 struct orphan_dir_info *odi = NULL;
Alexander Block31db9f72012-07-25 23:19:24 +02002944
Alexander Block6d85ed052012-08-01 14:48:59 +02002945 /*
2946 * Don't try to rmdir the top/root subvolume dir.
2947 */
2948 if (dir == BTRFS_FIRST_FREE_OBJECTID)
2949 return 0;
2950
Alexander Block31db9f72012-07-25 23:19:24 +02002951 path = alloc_path_for_send();
2952 if (!path)
2953 return -ENOMEM;
2954
2955 key.objectid = dir;
2956 key.type = BTRFS_DIR_INDEX_KEY;
2957 key.offset = 0;
Robbie Ko0f96f512018-05-08 18:11:38 +08002958
2959 odi = get_orphan_dir_info(sctx, dir);
2960 if (odi)
2961 key.offset = odi->last_dir_index_offset;
2962
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002963 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2964 if (ret < 0)
2965 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02002966
2967 while (1) {
Filipe Manana9dc44212014-02-19 14:31:44 +00002968 struct waiting_dir_move *dm;
2969
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002970 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
2971 ret = btrfs_next_leaf(root, path);
2972 if (ret < 0)
2973 goto out;
2974 else if (ret > 0)
2975 break;
2976 continue;
Alexander Block31db9f72012-07-25 23:19:24 +02002977 }
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002978 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2979 path->slots[0]);
2980 if (found_key.objectid != key.objectid ||
2981 found_key.type != key.type)
Alexander Block31db9f72012-07-25 23:19:24 +02002982 break;
Alexander Block31db9f72012-07-25 23:19:24 +02002983
2984 di = btrfs_item_ptr(path->nodes[0], path->slots[0],
2985 struct btrfs_dir_item);
2986 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &loc);
2987
Filipe Manana9dc44212014-02-19 14:31:44 +00002988 dm = get_waiting_dir_move(sctx, loc.objectid);
2989 if (dm) {
Filipe Manana9dc44212014-02-19 14:31:44 +00002990 odi = add_orphan_dir_info(sctx, dir);
2991 if (IS_ERR(odi)) {
2992 ret = PTR_ERR(odi);
2993 goto out;
2994 }
2995 odi->gen = dir_gen;
Robbie Ko0f96f512018-05-08 18:11:38 +08002996 odi->last_dir_index_offset = found_key.offset;
Filipe Manana9dc44212014-02-19 14:31:44 +00002997 dm->rmdir_ino = dir;
2998 ret = 0;
2999 goto out;
3000 }
3001
Alexander Block31db9f72012-07-25 23:19:24 +02003002 if (loc.objectid > send_progress) {
Robbie Ko0f96f512018-05-08 18:11:38 +08003003 odi = add_orphan_dir_info(sctx, dir);
3004 if (IS_ERR(odi)) {
3005 ret = PTR_ERR(odi);
3006 goto out;
3007 }
3008 odi->gen = dir_gen;
3009 odi->last_dir_index_offset = found_key.offset;
Alexander Block31db9f72012-07-25 23:19:24 +02003010 ret = 0;
3011 goto out;
3012 }
3013
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00003014 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02003015 }
Robbie Ko0f96f512018-05-08 18:11:38 +08003016 free_orphan_dir_info(sctx, odi);
Alexander Block31db9f72012-07-25 23:19:24 +02003017
3018 ret = 1;
3019
3020out:
3021 btrfs_free_path(path);
3022 return ret;
3023}
3024
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003025static int is_waiting_for_move(struct send_ctx *sctx, u64 ino)
3026{
Filipe Manana9dc44212014-02-19 14:31:44 +00003027 struct waiting_dir_move *entry = get_waiting_dir_move(sctx, ino);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003028
Filipe Manana9dc44212014-02-19 14:31:44 +00003029 return entry != NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003030}
3031
Filipe Manana8b191a62015-04-09 14:09:14 +01003032static int add_waiting_dir_move(struct send_ctx *sctx, u64 ino, bool orphanized)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003033{
3034 struct rb_node **p = &sctx->waiting_dir_moves.rb_node;
3035 struct rb_node *parent = NULL;
3036 struct waiting_dir_move *entry, *dm;
3037
David Sterbae780b0d2016-01-18 18:42:13 +01003038 dm = kmalloc(sizeof(*dm), GFP_KERNEL);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003039 if (!dm)
3040 return -ENOMEM;
3041 dm->ino = ino;
Filipe Manana9dc44212014-02-19 14:31:44 +00003042 dm->rmdir_ino = 0;
Filipe Manana8b191a62015-04-09 14:09:14 +01003043 dm->orphanized = orphanized;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003044
3045 while (*p) {
3046 parent = *p;
3047 entry = rb_entry(parent, struct waiting_dir_move, node);
3048 if (ino < entry->ino) {
3049 p = &(*p)->rb_left;
3050 } else if (ino > entry->ino) {
3051 p = &(*p)->rb_right;
3052 } else {
3053 kfree(dm);
3054 return -EEXIST;
3055 }
3056 }
3057
3058 rb_link_node(&dm->node, parent, p);
3059 rb_insert_color(&dm->node, &sctx->waiting_dir_moves);
3060 return 0;
3061}
3062
Filipe Manana9dc44212014-02-19 14:31:44 +00003063static struct waiting_dir_move *
3064get_waiting_dir_move(struct send_ctx *sctx, u64 ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003065{
3066 struct rb_node *n = sctx->waiting_dir_moves.rb_node;
3067 struct waiting_dir_move *entry;
3068
3069 while (n) {
3070 entry = rb_entry(n, struct waiting_dir_move, node);
Filipe Manana9dc44212014-02-19 14:31:44 +00003071 if (ino < entry->ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003072 n = n->rb_left;
Filipe Manana9dc44212014-02-19 14:31:44 +00003073 else if (ino > entry->ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003074 n = n->rb_right;
Filipe Manana9dc44212014-02-19 14:31:44 +00003075 else
3076 return entry;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003077 }
Filipe Manana9dc44212014-02-19 14:31:44 +00003078 return NULL;
3079}
3080
3081static void free_waiting_dir_move(struct send_ctx *sctx,
3082 struct waiting_dir_move *dm)
3083{
3084 if (!dm)
3085 return;
3086 rb_erase(&dm->node, &sctx->waiting_dir_moves);
3087 kfree(dm);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003088}
3089
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003090static int add_pending_dir_move(struct send_ctx *sctx,
3091 u64 ino,
3092 u64 ino_gen,
Filipe Mananaf9594922014-03-27 20:14:01 +00003093 u64 parent_ino,
3094 struct list_head *new_refs,
Filipe Manana84471e22015-02-28 22:29:22 +00003095 struct list_head *deleted_refs,
3096 const bool is_orphan)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003097{
3098 struct rb_node **p = &sctx->pending_dir_moves.rb_node;
3099 struct rb_node *parent = NULL;
Chris Mason73b802f2014-03-21 15:30:44 -07003100 struct pending_dir_move *entry = NULL, *pm;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003101 struct recorded_ref *cur;
3102 int exists = 0;
3103 int ret;
3104
David Sterbae780b0d2016-01-18 18:42:13 +01003105 pm = kmalloc(sizeof(*pm), GFP_KERNEL);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003106 if (!pm)
3107 return -ENOMEM;
3108 pm->parent_ino = parent_ino;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003109 pm->ino = ino;
3110 pm->gen = ino_gen;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003111 INIT_LIST_HEAD(&pm->list);
3112 INIT_LIST_HEAD(&pm->update_refs);
3113 RB_CLEAR_NODE(&pm->node);
3114
3115 while (*p) {
3116 parent = *p;
3117 entry = rb_entry(parent, struct pending_dir_move, node);
3118 if (parent_ino < entry->parent_ino) {
3119 p = &(*p)->rb_left;
3120 } else if (parent_ino > entry->parent_ino) {
3121 p = &(*p)->rb_right;
3122 } else {
3123 exists = 1;
3124 break;
3125 }
3126 }
3127
Filipe Mananaf9594922014-03-27 20:14:01 +00003128 list_for_each_entry(cur, deleted_refs, list) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003129 ret = dup_ref(cur, &pm->update_refs);
3130 if (ret < 0)
3131 goto out;
3132 }
Filipe Mananaf9594922014-03-27 20:14:01 +00003133 list_for_each_entry(cur, new_refs, list) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003134 ret = dup_ref(cur, &pm->update_refs);
3135 if (ret < 0)
3136 goto out;
3137 }
3138
Filipe Manana8b191a62015-04-09 14:09:14 +01003139 ret = add_waiting_dir_move(sctx, pm->ino, is_orphan);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003140 if (ret)
3141 goto out;
3142
3143 if (exists) {
3144 list_add_tail(&pm->list, &entry->list);
3145 } else {
3146 rb_link_node(&pm->node, parent, p);
3147 rb_insert_color(&pm->node, &sctx->pending_dir_moves);
3148 }
3149 ret = 0;
3150out:
3151 if (ret) {
3152 __free_recorded_refs(&pm->update_refs);
3153 kfree(pm);
3154 }
3155 return ret;
3156}
3157
3158static struct pending_dir_move *get_pending_dir_moves(struct send_ctx *sctx,
3159 u64 parent_ino)
3160{
3161 struct rb_node *n = sctx->pending_dir_moves.rb_node;
3162 struct pending_dir_move *entry;
3163
3164 while (n) {
3165 entry = rb_entry(n, struct pending_dir_move, node);
3166 if (parent_ino < entry->parent_ino)
3167 n = n->rb_left;
3168 else if (parent_ino > entry->parent_ino)
3169 n = n->rb_right;
3170 else
3171 return entry;
3172 }
3173 return NULL;
3174}
3175
Robbie Ko801bec32015-06-23 18:39:46 +08003176static int path_loop(struct send_ctx *sctx, struct fs_path *name,
3177 u64 ino, u64 gen, u64 *ancestor_ino)
3178{
3179 int ret = 0;
3180 u64 parent_inode = 0;
3181 u64 parent_gen = 0;
3182 u64 start_ino = ino;
3183
3184 *ancestor_ino = 0;
3185 while (ino != BTRFS_FIRST_FREE_OBJECTID) {
3186 fs_path_reset(name);
3187
3188 if (is_waiting_for_rm(sctx, ino))
3189 break;
3190 if (is_waiting_for_move(sctx, ino)) {
3191 if (*ancestor_ino == 0)
3192 *ancestor_ino = ino;
3193 ret = get_first_ref(sctx->parent_root, ino,
3194 &parent_inode, &parent_gen, name);
3195 } else {
3196 ret = __get_cur_name_and_parent(sctx, ino, gen,
3197 &parent_inode,
3198 &parent_gen, name);
3199 if (ret > 0) {
3200 ret = 0;
3201 break;
3202 }
3203 }
3204 if (ret < 0)
3205 break;
3206 if (parent_inode == start_ino) {
3207 ret = 1;
3208 if (*ancestor_ino == 0)
3209 *ancestor_ino = ino;
3210 break;
3211 }
3212 ino = parent_inode;
3213 gen = parent_gen;
3214 }
3215 return ret;
3216}
3217
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003218static int apply_dir_move(struct send_ctx *sctx, struct pending_dir_move *pm)
3219{
3220 struct fs_path *from_path = NULL;
3221 struct fs_path *to_path = NULL;
Filipe Manana2b863a12014-02-16 13:43:11 +00003222 struct fs_path *name = NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003223 u64 orig_progress = sctx->send_progress;
3224 struct recorded_ref *cur;
Filipe Manana2b863a12014-02-16 13:43:11 +00003225 u64 parent_ino, parent_gen;
Filipe Manana9dc44212014-02-19 14:31:44 +00003226 struct waiting_dir_move *dm = NULL;
3227 u64 rmdir_ino = 0;
Robbie Ko801bec32015-06-23 18:39:46 +08003228 u64 ancestor;
3229 bool is_orphan;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003230 int ret;
3231
Filipe Manana2b863a12014-02-16 13:43:11 +00003232 name = fs_path_alloc();
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003233 from_path = fs_path_alloc();
Filipe Manana2b863a12014-02-16 13:43:11 +00003234 if (!name || !from_path) {
3235 ret = -ENOMEM;
3236 goto out;
3237 }
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003238
Filipe Manana9dc44212014-02-19 14:31:44 +00003239 dm = get_waiting_dir_move(sctx, pm->ino);
3240 ASSERT(dm);
3241 rmdir_ino = dm->rmdir_ino;
Robbie Ko801bec32015-06-23 18:39:46 +08003242 is_orphan = dm->orphanized;
Filipe Manana9dc44212014-02-19 14:31:44 +00003243 free_waiting_dir_move(sctx, dm);
Filipe Manana2b863a12014-02-16 13:43:11 +00003244
Robbie Ko801bec32015-06-23 18:39:46 +08003245 if (is_orphan) {
Filipe Manana84471e22015-02-28 22:29:22 +00003246 ret = gen_unique_name(sctx, pm->ino,
3247 pm->gen, from_path);
3248 } else {
3249 ret = get_first_ref(sctx->parent_root, pm->ino,
3250 &parent_ino, &parent_gen, name);
3251 if (ret < 0)
3252 goto out;
3253 ret = get_cur_path(sctx, parent_ino, parent_gen,
3254 from_path);
3255 if (ret < 0)
3256 goto out;
3257 ret = fs_path_add_path(from_path, name);
3258 }
Filipe Mananac992ec92014-03-22 17:15:24 +00003259 if (ret < 0)
3260 goto out;
3261
Filipe Mananaf9594922014-03-27 20:14:01 +00003262 sctx->send_progress = sctx->cur_ino + 1;
Robbie Ko801bec32015-06-23 18:39:46 +08003263 ret = path_loop(sctx, name, pm->ino, pm->gen, &ancestor);
Filipe Manana7969e772016-06-17 17:13:36 +01003264 if (ret < 0)
3265 goto out;
Robbie Ko801bec32015-06-23 18:39:46 +08003266 if (ret) {
3267 LIST_HEAD(deleted_refs);
3268 ASSERT(ancestor > BTRFS_FIRST_FREE_OBJECTID);
3269 ret = add_pending_dir_move(sctx, pm->ino, pm->gen, ancestor,
3270 &pm->update_refs, &deleted_refs,
3271 is_orphan);
3272 if (ret < 0)
3273 goto out;
3274 if (rmdir_ino) {
3275 dm = get_waiting_dir_move(sctx, pm->ino);
3276 ASSERT(dm);
3277 dm->rmdir_ino = rmdir_ino;
3278 }
3279 goto out;
3280 }
Filipe Mananac992ec92014-03-22 17:15:24 +00003281 fs_path_reset(name);
3282 to_path = name;
3283 name = NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003284 ret = get_cur_path(sctx, pm->ino, pm->gen, to_path);
3285 if (ret < 0)
3286 goto out;
3287
3288 ret = send_rename(sctx, from_path, to_path);
3289 if (ret < 0)
3290 goto out;
3291
Filipe Manana9dc44212014-02-19 14:31:44 +00003292 if (rmdir_ino) {
3293 struct orphan_dir_info *odi;
Robbie Ko0f96f512018-05-08 18:11:38 +08003294 u64 gen;
Filipe Manana9dc44212014-02-19 14:31:44 +00003295
3296 odi = get_orphan_dir_info(sctx, rmdir_ino);
3297 if (!odi) {
3298 /* already deleted */
3299 goto finish;
3300 }
Robbie Ko0f96f512018-05-08 18:11:38 +08003301 gen = odi->gen;
3302
3303 ret = can_rmdir(sctx, rmdir_ino, gen, sctx->cur_ino);
Filipe Manana9dc44212014-02-19 14:31:44 +00003304 if (ret < 0)
3305 goto out;
3306 if (!ret)
3307 goto finish;
3308
3309 name = fs_path_alloc();
3310 if (!name) {
3311 ret = -ENOMEM;
3312 goto out;
3313 }
Robbie Ko0f96f512018-05-08 18:11:38 +08003314 ret = get_cur_path(sctx, rmdir_ino, gen, name);
Filipe Manana9dc44212014-02-19 14:31:44 +00003315 if (ret < 0)
3316 goto out;
3317 ret = send_rmdir(sctx, name);
3318 if (ret < 0)
3319 goto out;
Filipe Manana9dc44212014-02-19 14:31:44 +00003320 }
3321
3322finish:
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003323 ret = send_utimes(sctx, pm->ino, pm->gen);
3324 if (ret < 0)
3325 goto out;
3326
3327 /*
3328 * After rename/move, need to update the utimes of both new parent(s)
3329 * and old parent(s).
3330 */
3331 list_for_each_entry(cur, &pm->update_refs, list) {
Robbie Ko764433a2015-06-23 18:39:50 +08003332 /*
3333 * The parent inode might have been deleted in the send snapshot
3334 */
3335 ret = get_inode_info(sctx->send_root, cur->dir, NULL,
3336 NULL, NULL, NULL, NULL, NULL);
3337 if (ret == -ENOENT) {
3338 ret = 0;
Filipe Manana9dc44212014-02-19 14:31:44 +00003339 continue;
Robbie Ko764433a2015-06-23 18:39:50 +08003340 }
3341 if (ret < 0)
3342 goto out;
3343
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003344 ret = send_utimes(sctx, cur->dir, cur->dir_gen);
3345 if (ret < 0)
3346 goto out;
3347 }
3348
3349out:
Filipe Manana2b863a12014-02-16 13:43:11 +00003350 fs_path_free(name);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003351 fs_path_free(from_path);
3352 fs_path_free(to_path);
3353 sctx->send_progress = orig_progress;
3354
3355 return ret;
3356}
3357
3358static void free_pending_move(struct send_ctx *sctx, struct pending_dir_move *m)
3359{
3360 if (!list_empty(&m->list))
3361 list_del(&m->list);
3362 if (!RB_EMPTY_NODE(&m->node))
3363 rb_erase(&m->node, &sctx->pending_dir_moves);
3364 __free_recorded_refs(&m->update_refs);
3365 kfree(m);
3366}
3367
Robbie Koa4390ae2018-11-14 18:32:37 +00003368static void tail_append_pending_moves(struct send_ctx *sctx,
3369 struct pending_dir_move *moves,
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003370 struct list_head *stack)
3371{
3372 if (list_empty(&moves->list)) {
3373 list_add_tail(&moves->list, stack);
3374 } else {
3375 LIST_HEAD(list);
3376 list_splice_init(&moves->list, &list);
3377 list_add_tail(&moves->list, stack);
3378 list_splice_tail(&list, stack);
3379 }
Robbie Koa4390ae2018-11-14 18:32:37 +00003380 if (!RB_EMPTY_NODE(&moves->node)) {
3381 rb_erase(&moves->node, &sctx->pending_dir_moves);
3382 RB_CLEAR_NODE(&moves->node);
3383 }
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003384}
3385
3386static int apply_children_dir_moves(struct send_ctx *sctx)
3387{
3388 struct pending_dir_move *pm;
3389 struct list_head stack;
3390 u64 parent_ino = sctx->cur_ino;
3391 int ret = 0;
3392
3393 pm = get_pending_dir_moves(sctx, parent_ino);
3394 if (!pm)
3395 return 0;
3396
3397 INIT_LIST_HEAD(&stack);
Robbie Koa4390ae2018-11-14 18:32:37 +00003398 tail_append_pending_moves(sctx, pm, &stack);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003399
3400 while (!list_empty(&stack)) {
3401 pm = list_first_entry(&stack, struct pending_dir_move, list);
3402 parent_ino = pm->ino;
3403 ret = apply_dir_move(sctx, pm);
3404 free_pending_move(sctx, pm);
3405 if (ret)
3406 goto out;
3407 pm = get_pending_dir_moves(sctx, parent_ino);
3408 if (pm)
Robbie Koa4390ae2018-11-14 18:32:37 +00003409 tail_append_pending_moves(sctx, pm, &stack);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003410 }
3411 return 0;
3412
3413out:
3414 while (!list_empty(&stack)) {
3415 pm = list_first_entry(&stack, struct pending_dir_move, list);
3416 free_pending_move(sctx, pm);
3417 }
3418 return ret;
3419}
3420
Filipe Manana84471e22015-02-28 22:29:22 +00003421/*
3422 * We might need to delay a directory rename even when no ancestor directory
3423 * (in the send root) with a higher inode number than ours (sctx->cur_ino) was
3424 * renamed. This happens when we rename a directory to the old name (the name
3425 * in the parent root) of some other unrelated directory that got its rename
3426 * delayed due to some ancestor with higher number that got renamed.
3427 *
3428 * Example:
3429 *
3430 * Parent snapshot:
3431 * . (ino 256)
3432 * |---- a/ (ino 257)
3433 * | |---- file (ino 260)
3434 * |
3435 * |---- b/ (ino 258)
3436 * |---- c/ (ino 259)
3437 *
3438 * Send snapshot:
3439 * . (ino 256)
3440 * |---- a/ (ino 258)
3441 * |---- x/ (ino 259)
3442 * |---- y/ (ino 257)
3443 * |----- file (ino 260)
3444 *
3445 * Here we can not rename 258 from 'b' to 'a' without the rename of inode 257
3446 * from 'a' to 'x/y' happening first, which in turn depends on the rename of
3447 * inode 259 from 'c' to 'x'. So the order of rename commands the send stream
3448 * must issue is:
3449 *
3450 * 1 - rename 259 from 'c' to 'x'
3451 * 2 - rename 257 from 'a' to 'x/y'
3452 * 3 - rename 258 from 'b' to 'a'
3453 *
3454 * Returns 1 if the rename of sctx->cur_ino needs to be delayed, 0 if it can
3455 * be done right away and < 0 on error.
3456 */
3457static int wait_for_dest_dir_move(struct send_ctx *sctx,
3458 struct recorded_ref *parent_ref,
3459 const bool is_orphan)
3460{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003461 struct btrfs_fs_info *fs_info = sctx->parent_root->fs_info;
Filipe Manana84471e22015-02-28 22:29:22 +00003462 struct btrfs_path *path;
3463 struct btrfs_key key;
3464 struct btrfs_key di_key;
3465 struct btrfs_dir_item *di;
3466 u64 left_gen;
3467 u64 right_gen;
3468 int ret = 0;
Robbie Ko801bec32015-06-23 18:39:46 +08003469 struct waiting_dir_move *wdm;
Filipe Manana84471e22015-02-28 22:29:22 +00003470
3471 if (RB_EMPTY_ROOT(&sctx->waiting_dir_moves))
3472 return 0;
3473
3474 path = alloc_path_for_send();
3475 if (!path)
3476 return -ENOMEM;
3477
3478 key.objectid = parent_ref->dir;
3479 key.type = BTRFS_DIR_ITEM_KEY;
3480 key.offset = btrfs_name_hash(parent_ref->name, parent_ref->name_len);
3481
3482 ret = btrfs_search_slot(NULL, sctx->parent_root, &key, path, 0, 0);
3483 if (ret < 0) {
3484 goto out;
3485 } else if (ret > 0) {
3486 ret = 0;
3487 goto out;
3488 }
3489
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003490 di = btrfs_match_dir_item_name(fs_info, path, parent_ref->name,
3491 parent_ref->name_len);
Filipe Manana84471e22015-02-28 22:29:22 +00003492 if (!di) {
3493 ret = 0;
3494 goto out;
3495 }
3496 /*
3497 * di_key.objectid has the number of the inode that has a dentry in the
3498 * parent directory with the same name that sctx->cur_ino is being
3499 * renamed to. We need to check if that inode is in the send root as
3500 * well and if it is currently marked as an inode with a pending rename,
3501 * if it is, we need to delay the rename of sctx->cur_ino as well, so
3502 * that it happens after that other inode is renamed.
3503 */
3504 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &di_key);
3505 if (di_key.type != BTRFS_INODE_ITEM_KEY) {
3506 ret = 0;
3507 goto out;
3508 }
3509
3510 ret = get_inode_info(sctx->parent_root, di_key.objectid, NULL,
3511 &left_gen, NULL, NULL, NULL, NULL);
3512 if (ret < 0)
3513 goto out;
3514 ret = get_inode_info(sctx->send_root, di_key.objectid, NULL,
3515 &right_gen, NULL, NULL, NULL, NULL);
3516 if (ret < 0) {
3517 if (ret == -ENOENT)
3518 ret = 0;
3519 goto out;
3520 }
3521
3522 /* Different inode, no need to delay the rename of sctx->cur_ino */
3523 if (right_gen != left_gen) {
3524 ret = 0;
3525 goto out;
3526 }
3527
Robbie Ko801bec32015-06-23 18:39:46 +08003528 wdm = get_waiting_dir_move(sctx, di_key.objectid);
3529 if (wdm && !wdm->orphanized) {
Filipe Manana84471e22015-02-28 22:29:22 +00003530 ret = add_pending_dir_move(sctx,
3531 sctx->cur_ino,
3532 sctx->cur_inode_gen,
3533 di_key.objectid,
3534 &sctx->new_refs,
3535 &sctx->deleted_refs,
3536 is_orphan);
3537 if (!ret)
3538 ret = 1;
3539 }
3540out:
3541 btrfs_free_path(path);
3542 return ret;
3543}
3544
Filipe Manana80aa6022015-03-27 17:50:45 +00003545/*
Filipe Mananaea37d592017-11-17 01:54:00 +00003546 * Check if inode ino2, or any of its ancestors, is inode ino1.
3547 * Return 1 if true, 0 if false and < 0 on error.
3548 */
3549static int check_ino_in_path(struct btrfs_root *root,
3550 const u64 ino1,
3551 const u64 ino1_gen,
3552 const u64 ino2,
3553 const u64 ino2_gen,
3554 struct fs_path *fs_path)
3555{
3556 u64 ino = ino2;
3557
3558 if (ino1 == ino2)
3559 return ino1_gen == ino2_gen;
3560
3561 while (ino > BTRFS_FIRST_FREE_OBJECTID) {
3562 u64 parent;
3563 u64 parent_gen;
3564 int ret;
3565
3566 fs_path_reset(fs_path);
3567 ret = get_first_ref(root, ino, &parent, &parent_gen, fs_path);
3568 if (ret < 0)
3569 return ret;
3570 if (parent == ino1)
3571 return parent_gen == ino1_gen;
3572 ino = parent;
3573 }
3574 return 0;
3575}
3576
3577/*
3578 * Check if ino ino1 is an ancestor of inode ino2 in the given root for any
3579 * possible path (in case ino2 is not a directory and has multiple hard links).
Filipe Manana80aa6022015-03-27 17:50:45 +00003580 * Return 1 if true, 0 if false and < 0 on error.
3581 */
3582static int is_ancestor(struct btrfs_root *root,
3583 const u64 ino1,
3584 const u64 ino1_gen,
3585 const u64 ino2,
3586 struct fs_path *fs_path)
3587{
Filipe Mananaea37d592017-11-17 01:54:00 +00003588 bool free_fs_path = false;
Filipe Manana72c36682017-06-07 11:41:29 +01003589 int ret = 0;
Filipe Mananaea37d592017-11-17 01:54:00 +00003590 struct btrfs_path *path = NULL;
3591 struct btrfs_key key;
Filipe Manana72c36682017-06-07 11:41:29 +01003592
3593 if (!fs_path) {
3594 fs_path = fs_path_alloc();
3595 if (!fs_path)
3596 return -ENOMEM;
Filipe Mananaea37d592017-11-17 01:54:00 +00003597 free_fs_path = true;
Filipe Manana72c36682017-06-07 11:41:29 +01003598 }
Filipe Manana80aa6022015-03-27 17:50:45 +00003599
Filipe Mananaea37d592017-11-17 01:54:00 +00003600 path = alloc_path_for_send();
3601 if (!path) {
3602 ret = -ENOMEM;
3603 goto out;
Filipe Manana80aa6022015-03-27 17:50:45 +00003604 }
Filipe Mananaea37d592017-11-17 01:54:00 +00003605
3606 key.objectid = ino2;
3607 key.type = BTRFS_INODE_REF_KEY;
3608 key.offset = 0;
3609
3610 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3611 if (ret < 0)
3612 goto out;
3613
3614 while (true) {
3615 struct extent_buffer *leaf = path->nodes[0];
3616 int slot = path->slots[0];
3617 u32 cur_offset = 0;
3618 u32 item_size;
3619
3620 if (slot >= btrfs_header_nritems(leaf)) {
3621 ret = btrfs_next_leaf(root, path);
3622 if (ret < 0)
3623 goto out;
3624 if (ret > 0)
3625 break;
3626 continue;
3627 }
3628
3629 btrfs_item_key_to_cpu(leaf, &key, slot);
3630 if (key.objectid != ino2)
3631 break;
3632 if (key.type != BTRFS_INODE_REF_KEY &&
3633 key.type != BTRFS_INODE_EXTREF_KEY)
3634 break;
3635
3636 item_size = btrfs_item_size_nr(leaf, slot);
3637 while (cur_offset < item_size) {
3638 u64 parent;
3639 u64 parent_gen;
3640
3641 if (key.type == BTRFS_INODE_EXTREF_KEY) {
3642 unsigned long ptr;
3643 struct btrfs_inode_extref *extref;
3644
3645 ptr = btrfs_item_ptr_offset(leaf, slot);
3646 extref = (struct btrfs_inode_extref *)
3647 (ptr + cur_offset);
3648 parent = btrfs_inode_extref_parent(leaf,
3649 extref);
3650 cur_offset += sizeof(*extref);
3651 cur_offset += btrfs_inode_extref_name_len(leaf,
3652 extref);
3653 } else {
3654 parent = key.offset;
3655 cur_offset = item_size;
3656 }
3657
3658 ret = get_inode_info(root, parent, NULL, &parent_gen,
3659 NULL, NULL, NULL, NULL);
3660 if (ret < 0)
3661 goto out;
3662 ret = check_ino_in_path(root, ino1, ino1_gen,
3663 parent, parent_gen, fs_path);
3664 if (ret)
3665 goto out;
3666 }
3667 path->slots[0]++;
3668 }
3669 ret = 0;
Filipe Manana72c36682017-06-07 11:41:29 +01003670 out:
Filipe Mananaea37d592017-11-17 01:54:00 +00003671 btrfs_free_path(path);
3672 if (free_fs_path)
Filipe Manana72c36682017-06-07 11:41:29 +01003673 fs_path_free(fs_path);
3674 return ret;
Filipe Manana80aa6022015-03-27 17:50:45 +00003675}
3676
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003677static int wait_for_parent_move(struct send_ctx *sctx,
Filipe Manana8b191a62015-04-09 14:09:14 +01003678 struct recorded_ref *parent_ref,
3679 const bool is_orphan)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003680{
Filipe Mananaf9594922014-03-27 20:14:01 +00003681 int ret = 0;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003682 u64 ino = parent_ref->dir;
Filipe Mananafe9c7982017-01-11 02:15:39 +00003683 u64 ino_gen = parent_ref->dir_gen;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003684 u64 parent_ino_before, parent_ino_after;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003685 struct fs_path *path_before = NULL;
3686 struct fs_path *path_after = NULL;
3687 int len1, len2;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003688
3689 path_after = fs_path_alloc();
Filipe Mananaf9594922014-03-27 20:14:01 +00003690 path_before = fs_path_alloc();
3691 if (!path_after || !path_before) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003692 ret = -ENOMEM;
3693 goto out;
3694 }
3695
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003696 /*
Filipe Mananaf9594922014-03-27 20:14:01 +00003697 * Our current directory inode may not yet be renamed/moved because some
3698 * ancestor (immediate or not) has to be renamed/moved first. So find if
3699 * such ancestor exists and make sure our own rename/move happens after
Filipe Manana80aa6022015-03-27 17:50:45 +00003700 * that ancestor is processed to avoid path build infinite loops (done
3701 * at get_cur_path()).
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003702 */
Filipe Mananaf9594922014-03-27 20:14:01 +00003703 while (ino > BTRFS_FIRST_FREE_OBJECTID) {
Filipe Mananafe9c7982017-01-11 02:15:39 +00003704 u64 parent_ino_after_gen;
3705
Filipe Mananaf9594922014-03-27 20:14:01 +00003706 if (is_waiting_for_move(sctx, ino)) {
Filipe Manana80aa6022015-03-27 17:50:45 +00003707 /*
3708 * If the current inode is an ancestor of ino in the
3709 * parent root, we need to delay the rename of the
3710 * current inode, otherwise don't delayed the rename
3711 * because we can end up with a circular dependency
3712 * of renames, resulting in some directories never
3713 * getting the respective rename operations issued in
3714 * the send stream or getting into infinite path build
3715 * loops.
3716 */
3717 ret = is_ancestor(sctx->parent_root,
3718 sctx->cur_ino, sctx->cur_inode_gen,
3719 ino, path_before);
Filipe Manana4122ea62016-06-27 16:54:44 +01003720 if (ret)
3721 break;
Filipe Mananaf9594922014-03-27 20:14:01 +00003722 }
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003723
3724 fs_path_reset(path_before);
3725 fs_path_reset(path_after);
3726
3727 ret = get_first_ref(sctx->send_root, ino, &parent_ino_after,
Filipe Mananafe9c7982017-01-11 02:15:39 +00003728 &parent_ino_after_gen, path_after);
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003729 if (ret < 0)
3730 goto out;
3731 ret = get_first_ref(sctx->parent_root, ino, &parent_ino_before,
3732 NULL, path_before);
Filipe Mananaf9594922014-03-27 20:14:01 +00003733 if (ret < 0 && ret != -ENOENT) {
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003734 goto out;
Filipe Mananaf9594922014-03-27 20:14:01 +00003735 } else if (ret == -ENOENT) {
Filipe Mananabf8e8ca2014-10-02 19:17:32 +01003736 ret = 0;
Filipe Mananaf9594922014-03-27 20:14:01 +00003737 break;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003738 }
3739
3740 len1 = fs_path_len(path_before);
3741 len2 = fs_path_len(path_after);
Filipe Mananaf9594922014-03-27 20:14:01 +00003742 if (ino > sctx->cur_ino &&
3743 (parent_ino_before != parent_ino_after || len1 != len2 ||
3744 memcmp(path_before->start, path_after->start, len1))) {
Filipe Mananafe9c7982017-01-11 02:15:39 +00003745 u64 parent_ino_gen;
3746
3747 ret = get_inode_info(sctx->parent_root, ino, NULL,
3748 &parent_ino_gen, NULL, NULL, NULL,
3749 NULL);
3750 if (ret < 0)
3751 goto out;
3752 if (ino_gen == parent_ino_gen) {
3753 ret = 1;
3754 break;
3755 }
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003756 }
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003757 ino = parent_ino_after;
Filipe Mananafe9c7982017-01-11 02:15:39 +00003758 ino_gen = parent_ino_after_gen;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003759 }
3760
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003761out:
3762 fs_path_free(path_before);
3763 fs_path_free(path_after);
3764
Filipe Mananaf9594922014-03-27 20:14:01 +00003765 if (ret == 1) {
3766 ret = add_pending_dir_move(sctx,
3767 sctx->cur_ino,
3768 sctx->cur_inode_gen,
3769 ino,
3770 &sctx->new_refs,
Filipe Manana84471e22015-02-28 22:29:22 +00003771 &sctx->deleted_refs,
Filipe Manana8b191a62015-04-09 14:09:14 +01003772 is_orphan);
Filipe Mananaf9594922014-03-27 20:14:01 +00003773 if (!ret)
3774 ret = 1;
3775 }
3776
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003777 return ret;
3778}
3779
Filipe Mananaf5962782017-06-22 20:03:51 +01003780static int update_ref_path(struct send_ctx *sctx, struct recorded_ref *ref)
3781{
3782 int ret;
3783 struct fs_path *new_path;
3784
3785 /*
3786 * Our reference's name member points to its full_path member string, so
3787 * we use here a new path.
3788 */
3789 new_path = fs_path_alloc();
3790 if (!new_path)
3791 return -ENOMEM;
3792
3793 ret = get_cur_path(sctx, ref->dir, ref->dir_gen, new_path);
3794 if (ret < 0) {
3795 fs_path_free(new_path);
3796 return ret;
3797 }
3798 ret = fs_path_add(new_path, ref->name, ref->name_len);
3799 if (ret < 0) {
3800 fs_path_free(new_path);
3801 return ret;
3802 }
3803
3804 fs_path_free(ref->full_path);
3805 set_ref_path(ref, new_path);
3806
3807 return 0;
3808}
3809
Alexander Block31db9f72012-07-25 23:19:24 +02003810/*
3811 * This does all the move/link/unlink/rmdir magic.
3812 */
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003813static int process_recorded_refs(struct send_ctx *sctx, int *pending_move)
Alexander Block31db9f72012-07-25 23:19:24 +02003814{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04003815 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02003816 int ret = 0;
3817 struct recorded_ref *cur;
Alexander Block1f4692d2012-07-28 10:42:24 +02003818 struct recorded_ref *cur2;
Josef Bacikba5e8f22013-08-16 16:52:55 -04003819 struct list_head check_dirs;
Alexander Block31db9f72012-07-25 23:19:24 +02003820 struct fs_path *valid_path = NULL;
Chris Masonb24baf62012-07-25 19:21:10 -04003821 u64 ow_inode = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02003822 u64 ow_gen;
Filipe Mananaf5962782017-06-22 20:03:51 +01003823 u64 ow_mode;
Alexander Block31db9f72012-07-25 23:19:24 +02003824 int did_overwrite = 0;
3825 int is_orphan = 0;
Filipe Manana29d6d302014-02-16 21:01:39 +00003826 u64 last_dir_ino_rm = 0;
Filipe Manana84471e22015-02-28 22:29:22 +00003827 bool can_rename = true;
Filipe Mananaf5962782017-06-22 20:03:51 +01003828 bool orphanized_dir = false;
Filipe Mananafdb13882017-06-13 14:13:11 +01003829 bool orphanized_ancestor = false;
Alexander Block31db9f72012-07-25 23:19:24 +02003830
Jeff Mahoney04ab9562016-09-20 10:05:03 -04003831 btrfs_debug(fs_info, "process_recorded_refs %llu", sctx->cur_ino);
Alexander Block31db9f72012-07-25 23:19:24 +02003832
Alexander Block6d85ed052012-08-01 14:48:59 +02003833 /*
3834 * This should never happen as the root dir always has the same ref
3835 * which is always '..'
3836 */
3837 BUG_ON(sctx->cur_ino <= BTRFS_FIRST_FREE_OBJECTID);
Josef Bacikba5e8f22013-08-16 16:52:55 -04003838 INIT_LIST_HEAD(&check_dirs);
Alexander Block6d85ed052012-08-01 14:48:59 +02003839
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003840 valid_path = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003841 if (!valid_path) {
3842 ret = -ENOMEM;
3843 goto out;
3844 }
3845
Alexander Block31db9f72012-07-25 23:19:24 +02003846 /*
3847 * First, check if the first ref of the current inode was overwritten
3848 * before. If yes, we know that the current inode was already orphanized
3849 * and thus use the orphan name. If not, we can use get_cur_path to
3850 * get the path of the first ref as it would like while receiving at
3851 * this point in time.
3852 * New inodes are always orphan at the beginning, so force to use the
3853 * orphan name in this case.
3854 * The first ref is stored in valid_path and will be updated if it
3855 * gets moved around.
3856 */
3857 if (!sctx->cur_inode_new) {
3858 ret = did_overwrite_first_ref(sctx, sctx->cur_ino,
3859 sctx->cur_inode_gen);
3860 if (ret < 0)
3861 goto out;
3862 if (ret)
3863 did_overwrite = 1;
3864 }
3865 if (sctx->cur_inode_new || did_overwrite) {
3866 ret = gen_unique_name(sctx, sctx->cur_ino,
3867 sctx->cur_inode_gen, valid_path);
3868 if (ret < 0)
3869 goto out;
3870 is_orphan = 1;
3871 } else {
3872 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen,
3873 valid_path);
3874 if (ret < 0)
3875 goto out;
3876 }
3877
3878 list_for_each_entry(cur, &sctx->new_refs, list) {
3879 /*
Alexander Block1f4692d2012-07-28 10:42:24 +02003880 * We may have refs where the parent directory does not exist
3881 * yet. This happens if the parent directories inum is higher
Andrea Gelmini52042d82018-11-28 12:05:13 +01003882 * than the current inum. To handle this case, we create the
Alexander Block1f4692d2012-07-28 10:42:24 +02003883 * parent directory out of order. But we need to check if this
3884 * did already happen before due to other refs in the same dir.
3885 */
3886 ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen);
3887 if (ret < 0)
3888 goto out;
3889 if (ret == inode_state_will_create) {
3890 ret = 0;
3891 /*
3892 * First check if any of the current inodes refs did
3893 * already create the dir.
3894 */
3895 list_for_each_entry(cur2, &sctx->new_refs, list) {
3896 if (cur == cur2)
3897 break;
3898 if (cur2->dir == cur->dir) {
3899 ret = 1;
3900 break;
3901 }
3902 }
3903
3904 /*
3905 * If that did not happen, check if a previous inode
3906 * did already create the dir.
3907 */
3908 if (!ret)
3909 ret = did_create_dir(sctx, cur->dir);
3910 if (ret < 0)
3911 goto out;
3912 if (!ret) {
3913 ret = send_create_inode(sctx, cur->dir);
3914 if (ret < 0)
3915 goto out;
3916 }
3917 }
3918
3919 /*
Alexander Block31db9f72012-07-25 23:19:24 +02003920 * Check if this new ref would overwrite the first ref of
3921 * another unprocessed inode. If yes, orphanize the
3922 * overwritten inode. If we find an overwritten ref that is
3923 * not the first ref, simply unlink it.
3924 */
3925 ret = will_overwrite_ref(sctx, cur->dir, cur->dir_gen,
3926 cur->name, cur->name_len,
Filipe Mananaf5962782017-06-22 20:03:51 +01003927 &ow_inode, &ow_gen, &ow_mode);
Alexander Block31db9f72012-07-25 23:19:24 +02003928 if (ret < 0)
3929 goto out;
3930 if (ret) {
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003931 ret = is_first_ref(sctx->parent_root,
3932 ow_inode, cur->dir, cur->name,
3933 cur->name_len);
Alexander Block31db9f72012-07-25 23:19:24 +02003934 if (ret < 0)
3935 goto out;
3936 if (ret) {
Filipe Manana8996a482015-03-12 15:16:20 +00003937 struct name_cache_entry *nce;
Robbie Ko801bec32015-06-23 18:39:46 +08003938 struct waiting_dir_move *wdm;
Filipe Manana8996a482015-03-12 15:16:20 +00003939
Alexander Block31db9f72012-07-25 23:19:24 +02003940 ret = orphanize_inode(sctx, ow_inode, ow_gen,
3941 cur->full_path);
3942 if (ret < 0)
3943 goto out;
Filipe Mananaf5962782017-06-22 20:03:51 +01003944 if (S_ISDIR(ow_mode))
3945 orphanized_dir = true;
Robbie Ko801bec32015-06-23 18:39:46 +08003946
3947 /*
3948 * If ow_inode has its rename operation delayed
3949 * make sure that its orphanized name is used in
3950 * the source path when performing its rename
3951 * operation.
3952 */
3953 if (is_waiting_for_move(sctx, ow_inode)) {
3954 wdm = get_waiting_dir_move(sctx,
3955 ow_inode);
3956 ASSERT(wdm);
3957 wdm->orphanized = true;
3958 }
3959
Filipe Manana8996a482015-03-12 15:16:20 +00003960 /*
3961 * Make sure we clear our orphanized inode's
3962 * name from the name cache. This is because the
3963 * inode ow_inode might be an ancestor of some
3964 * other inode that will be orphanized as well
3965 * later and has an inode number greater than
3966 * sctx->send_progress. We need to prevent
3967 * future name lookups from using the old name
3968 * and get instead the orphan name.
3969 */
3970 nce = name_cache_search(sctx, ow_inode, ow_gen);
3971 if (nce) {
3972 name_cache_delete(sctx, nce);
3973 kfree(nce);
3974 }
Robbie Ko801bec32015-06-23 18:39:46 +08003975
3976 /*
3977 * ow_inode might currently be an ancestor of
3978 * cur_ino, therefore compute valid_path (the
3979 * current path of cur_ino) again because it
3980 * might contain the pre-orphanization name of
3981 * ow_inode, which is no longer valid.
3982 */
Filipe Manana72c36682017-06-07 11:41:29 +01003983 ret = is_ancestor(sctx->parent_root,
3984 ow_inode, ow_gen,
3985 sctx->cur_ino, NULL);
3986 if (ret > 0) {
Filipe Mananafdb13882017-06-13 14:13:11 +01003987 orphanized_ancestor = true;
Filipe Manana72c36682017-06-07 11:41:29 +01003988 fs_path_reset(valid_path);
3989 ret = get_cur_path(sctx, sctx->cur_ino,
3990 sctx->cur_inode_gen,
3991 valid_path);
3992 }
Robbie Ko801bec32015-06-23 18:39:46 +08003993 if (ret < 0)
3994 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02003995 } else {
3996 ret = send_unlink(sctx, cur->full_path);
3997 if (ret < 0)
3998 goto out;
3999 }
4000 }
4001
Filipe Manana84471e22015-02-28 22:29:22 +00004002 if (S_ISDIR(sctx->cur_inode_mode) && sctx->parent_root) {
4003 ret = wait_for_dest_dir_move(sctx, cur, is_orphan);
4004 if (ret < 0)
4005 goto out;
4006 if (ret == 1) {
4007 can_rename = false;
4008 *pending_move = 1;
4009 }
4010 }
4011
Filipe Manana8b191a62015-04-09 14:09:14 +01004012 if (S_ISDIR(sctx->cur_inode_mode) && sctx->parent_root &&
4013 can_rename) {
4014 ret = wait_for_parent_move(sctx, cur, is_orphan);
4015 if (ret < 0)
4016 goto out;
4017 if (ret == 1) {
4018 can_rename = false;
4019 *pending_move = 1;
4020 }
4021 }
4022
Alexander Block31db9f72012-07-25 23:19:24 +02004023 /*
4024 * link/move the ref to the new place. If we have an orphan
4025 * inode, move it and update valid_path. If not, link or move
4026 * it depending on the inode mode.
4027 */
Filipe Manana84471e22015-02-28 22:29:22 +00004028 if (is_orphan && can_rename) {
Alexander Block31db9f72012-07-25 23:19:24 +02004029 ret = send_rename(sctx, valid_path, cur->full_path);
4030 if (ret < 0)
4031 goto out;
4032 is_orphan = 0;
4033 ret = fs_path_copy(valid_path, cur->full_path);
4034 if (ret < 0)
4035 goto out;
Filipe Manana84471e22015-02-28 22:29:22 +00004036 } else if (can_rename) {
Alexander Block31db9f72012-07-25 23:19:24 +02004037 if (S_ISDIR(sctx->cur_inode_mode)) {
4038 /*
4039 * Dirs can't be linked, so move it. For moved
4040 * dirs, we always have one new and one deleted
4041 * ref. The deleted ref is ignored later.
4042 */
Filipe Manana8b191a62015-04-09 14:09:14 +01004043 ret = send_rename(sctx, valid_path,
4044 cur->full_path);
4045 if (!ret)
4046 ret = fs_path_copy(valid_path,
4047 cur->full_path);
Alexander Block31db9f72012-07-25 23:19:24 +02004048 if (ret < 0)
4049 goto out;
4050 } else {
Filipe Mananaf5962782017-06-22 20:03:51 +01004051 /*
4052 * We might have previously orphanized an inode
4053 * which is an ancestor of our current inode,
4054 * so our reference's full path, which was
4055 * computed before any such orphanizations, must
4056 * be updated.
4057 */
4058 if (orphanized_dir) {
4059 ret = update_ref_path(sctx, cur);
4060 if (ret < 0)
4061 goto out;
4062 }
Alexander Block31db9f72012-07-25 23:19:24 +02004063 ret = send_link(sctx, cur->full_path,
4064 valid_path);
4065 if (ret < 0)
4066 goto out;
4067 }
4068 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04004069 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02004070 if (ret < 0)
4071 goto out;
4072 }
4073
4074 if (S_ISDIR(sctx->cur_inode_mode) && sctx->cur_inode_deleted) {
4075 /*
4076 * Check if we can already rmdir the directory. If not,
4077 * orphanize it. For every dir item inside that gets deleted
4078 * later, we do this check again and rmdir it then if possible.
4079 * See the use of check_dirs for more details.
4080 */
Filipe Manana9dc44212014-02-19 14:31:44 +00004081 ret = can_rmdir(sctx, sctx->cur_ino, sctx->cur_inode_gen,
4082 sctx->cur_ino);
Alexander Block31db9f72012-07-25 23:19:24 +02004083 if (ret < 0)
4084 goto out;
4085 if (ret) {
4086 ret = send_rmdir(sctx, valid_path);
4087 if (ret < 0)
4088 goto out;
4089 } else if (!is_orphan) {
4090 ret = orphanize_inode(sctx, sctx->cur_ino,
4091 sctx->cur_inode_gen, valid_path);
4092 if (ret < 0)
4093 goto out;
4094 is_orphan = 1;
4095 }
4096
4097 list_for_each_entry(cur, &sctx->deleted_refs, list) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04004098 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02004099 if (ret < 0)
4100 goto out;
4101 }
Alexander Blockccf16262012-07-28 11:46:29 +02004102 } else if (S_ISDIR(sctx->cur_inode_mode) &&
4103 !list_empty(&sctx->deleted_refs)) {
4104 /*
4105 * We have a moved dir. Add the old parent to check_dirs
4106 */
4107 cur = list_entry(sctx->deleted_refs.next, struct recorded_ref,
4108 list);
Josef Bacikba5e8f22013-08-16 16:52:55 -04004109 ret = dup_ref(cur, &check_dirs);
Alexander Blockccf16262012-07-28 11:46:29 +02004110 if (ret < 0)
4111 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004112 } else if (!S_ISDIR(sctx->cur_inode_mode)) {
4113 /*
4114 * We have a non dir inode. Go through all deleted refs and
4115 * unlink them if they were not already overwritten by other
4116 * inodes.
4117 */
4118 list_for_each_entry(cur, &sctx->deleted_refs, list) {
4119 ret = did_overwrite_ref(sctx, cur->dir, cur->dir_gen,
4120 sctx->cur_ino, sctx->cur_inode_gen,
4121 cur->name, cur->name_len);
4122 if (ret < 0)
4123 goto out;
4124 if (!ret) {
Filipe Mananafdb13882017-06-13 14:13:11 +01004125 /*
4126 * If we orphanized any ancestor before, we need
4127 * to recompute the full path for deleted names,
4128 * since any such path was computed before we
4129 * processed any references and orphanized any
4130 * ancestor inode.
4131 */
4132 if (orphanized_ancestor) {
Filipe Mananaf5962782017-06-22 20:03:51 +01004133 ret = update_ref_path(sctx, cur);
4134 if (ret < 0)
Filipe Mananafdb13882017-06-13 14:13:11 +01004135 goto out;
Filipe Mananafdb13882017-06-13 14:13:11 +01004136 }
Alexander Block1f4692d2012-07-28 10:42:24 +02004137 ret = send_unlink(sctx, cur->full_path);
4138 if (ret < 0)
4139 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004140 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04004141 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02004142 if (ret < 0)
4143 goto out;
4144 }
Alexander Block31db9f72012-07-25 23:19:24 +02004145 /*
4146 * If the inode is still orphan, unlink the orphan. This may
4147 * happen when a previous inode did overwrite the first ref
4148 * of this inode and no new refs were added for the current
Alexander Block766702e2012-07-28 14:11:31 +02004149 * inode. Unlinking does not mean that the inode is deleted in
4150 * all cases. There may still be links to this inode in other
4151 * places.
Alexander Block31db9f72012-07-25 23:19:24 +02004152 */
Alexander Block1f4692d2012-07-28 10:42:24 +02004153 if (is_orphan) {
Alexander Block31db9f72012-07-25 23:19:24 +02004154 ret = send_unlink(sctx, valid_path);
4155 if (ret < 0)
4156 goto out;
4157 }
4158 }
4159
4160 /*
4161 * We did collect all parent dirs where cur_inode was once located. We
4162 * now go through all these dirs and check if they are pending for
4163 * deletion and if it's finally possible to perform the rmdir now.
4164 * We also update the inode stats of the parent dirs here.
4165 */
Josef Bacikba5e8f22013-08-16 16:52:55 -04004166 list_for_each_entry(cur, &check_dirs, list) {
Alexander Block766702e2012-07-28 14:11:31 +02004167 /*
4168 * In case we had refs into dirs that were not processed yet,
4169 * we don't need to do the utime and rmdir logic for these dirs.
4170 * The dir will be processed later.
4171 */
Josef Bacikba5e8f22013-08-16 16:52:55 -04004172 if (cur->dir > sctx->cur_ino)
Alexander Block31db9f72012-07-25 23:19:24 +02004173 continue;
4174
Josef Bacikba5e8f22013-08-16 16:52:55 -04004175 ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen);
Alexander Block31db9f72012-07-25 23:19:24 +02004176 if (ret < 0)
4177 goto out;
4178
4179 if (ret == inode_state_did_create ||
4180 ret == inode_state_no_change) {
4181 /* TODO delayed utimes */
Josef Bacikba5e8f22013-08-16 16:52:55 -04004182 ret = send_utimes(sctx, cur->dir, cur->dir_gen);
Alexander Block31db9f72012-07-25 23:19:24 +02004183 if (ret < 0)
4184 goto out;
Filipe Manana29d6d302014-02-16 21:01:39 +00004185 } else if (ret == inode_state_did_delete &&
4186 cur->dir != last_dir_ino_rm) {
Filipe Manana9dc44212014-02-19 14:31:44 +00004187 ret = can_rmdir(sctx, cur->dir, cur->dir_gen,
4188 sctx->cur_ino);
Alexander Block31db9f72012-07-25 23:19:24 +02004189 if (ret < 0)
4190 goto out;
4191 if (ret) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04004192 ret = get_cur_path(sctx, cur->dir,
4193 cur->dir_gen, valid_path);
Alexander Block31db9f72012-07-25 23:19:24 +02004194 if (ret < 0)
4195 goto out;
4196 ret = send_rmdir(sctx, valid_path);
4197 if (ret < 0)
4198 goto out;
Filipe Manana29d6d302014-02-16 21:01:39 +00004199 last_dir_ino_rm = cur->dir;
Alexander Block31db9f72012-07-25 23:19:24 +02004200 }
4201 }
4202 }
4203
Alexander Block31db9f72012-07-25 23:19:24 +02004204 ret = 0;
4205
4206out:
Josef Bacikba5e8f22013-08-16 16:52:55 -04004207 __free_recorded_refs(&check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02004208 free_recorded_refs(sctx);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004209 fs_path_free(valid_path);
Alexander Block31db9f72012-07-25 23:19:24 +02004210 return ret;
4211}
4212
Nikolay Borisova0357512017-08-21 12:43:44 +03004213static int record_ref(struct btrfs_root *root, u64 dir, struct fs_path *name,
4214 void *ctx, struct list_head *refs)
Alexander Block31db9f72012-07-25 23:19:24 +02004215{
4216 int ret = 0;
4217 struct send_ctx *sctx = ctx;
4218 struct fs_path *p;
4219 u64 gen;
4220
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004221 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004222 if (!p)
4223 return -ENOMEM;
4224
Liu Boa4d96d62014-03-03 21:31:03 +08004225 ret = get_inode_info(root, dir, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02004226 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004227 if (ret < 0)
4228 goto out;
4229
Alexander Block31db9f72012-07-25 23:19:24 +02004230 ret = get_cur_path(sctx, dir, gen, p);
4231 if (ret < 0)
4232 goto out;
4233 ret = fs_path_add_path(p, name);
4234 if (ret < 0)
4235 goto out;
4236
Liu Boa4d96d62014-03-03 21:31:03 +08004237 ret = __record_ref(refs, dir, gen, p);
Alexander Block31db9f72012-07-25 23:19:24 +02004238
4239out:
4240 if (ret)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004241 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004242 return ret;
4243}
4244
Liu Boa4d96d62014-03-03 21:31:03 +08004245static int __record_new_ref(int num, u64 dir, int index,
4246 struct fs_path *name,
4247 void *ctx)
4248{
4249 struct send_ctx *sctx = ctx;
Nikolay Borisova0357512017-08-21 12:43:44 +03004250 return record_ref(sctx->send_root, dir, name, ctx, &sctx->new_refs);
Liu Boa4d96d62014-03-03 21:31:03 +08004251}
4252
4253
Alexander Block31db9f72012-07-25 23:19:24 +02004254static int __record_deleted_ref(int num, u64 dir, int index,
4255 struct fs_path *name,
4256 void *ctx)
4257{
Alexander Block31db9f72012-07-25 23:19:24 +02004258 struct send_ctx *sctx = ctx;
Nikolay Borisova0357512017-08-21 12:43:44 +03004259 return record_ref(sctx->parent_root, dir, name, ctx,
4260 &sctx->deleted_refs);
Alexander Block31db9f72012-07-25 23:19:24 +02004261}
4262
4263static int record_new_ref(struct send_ctx *sctx)
4264{
4265 int ret;
4266
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004267 ret = iterate_inode_ref(sctx->send_root, sctx->left_path,
4268 sctx->cmp_key, 0, __record_new_ref, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004269 if (ret < 0)
4270 goto out;
4271 ret = 0;
4272
4273out:
4274 return ret;
4275}
4276
4277static int record_deleted_ref(struct send_ctx *sctx)
4278{
4279 int ret;
4280
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004281 ret = iterate_inode_ref(sctx->parent_root, sctx->right_path,
4282 sctx->cmp_key, 0, __record_deleted_ref, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004283 if (ret < 0)
4284 goto out;
4285 ret = 0;
4286
4287out:
4288 return ret;
4289}
4290
4291struct find_ref_ctx {
4292 u64 dir;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004293 u64 dir_gen;
4294 struct btrfs_root *root;
Alexander Block31db9f72012-07-25 23:19:24 +02004295 struct fs_path *name;
4296 int found_idx;
4297};
4298
4299static int __find_iref(int num, u64 dir, int index,
4300 struct fs_path *name,
4301 void *ctx_)
4302{
4303 struct find_ref_ctx *ctx = ctx_;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004304 u64 dir_gen;
4305 int ret;
Alexander Block31db9f72012-07-25 23:19:24 +02004306
4307 if (dir == ctx->dir && fs_path_len(name) == fs_path_len(ctx->name) &&
4308 strncmp(name->start, ctx->name->start, fs_path_len(name)) == 0) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04004309 /*
4310 * To avoid doing extra lookups we'll only do this if everything
4311 * else matches.
4312 */
4313 ret = get_inode_info(ctx->root, dir, NULL, &dir_gen, NULL,
4314 NULL, NULL, NULL);
4315 if (ret)
4316 return ret;
4317 if (dir_gen != ctx->dir_gen)
4318 return 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004319 ctx->found_idx = num;
4320 return 1;
4321 }
4322 return 0;
4323}
4324
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004325static int find_iref(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02004326 struct btrfs_path *path,
4327 struct btrfs_key *key,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004328 u64 dir, u64 dir_gen, struct fs_path *name)
Alexander Block31db9f72012-07-25 23:19:24 +02004329{
4330 int ret;
4331 struct find_ref_ctx ctx;
4332
4333 ctx.dir = dir;
4334 ctx.name = name;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004335 ctx.dir_gen = dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004336 ctx.found_idx = -1;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004337 ctx.root = root;
Alexander Block31db9f72012-07-25 23:19:24 +02004338
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004339 ret = iterate_inode_ref(root, path, key, 0, __find_iref, &ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004340 if (ret < 0)
4341 return ret;
4342
4343 if (ctx.found_idx == -1)
4344 return -ENOENT;
4345
4346 return ctx.found_idx;
4347}
4348
4349static int __record_changed_new_ref(int num, u64 dir, int index,
4350 struct fs_path *name,
4351 void *ctx)
4352{
Josef Bacikba5e8f22013-08-16 16:52:55 -04004353 u64 dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004354 int ret;
4355 struct send_ctx *sctx = ctx;
4356
Josef Bacikba5e8f22013-08-16 16:52:55 -04004357 ret = get_inode_info(sctx->send_root, dir, NULL, &dir_gen, NULL,
4358 NULL, NULL, NULL);
4359 if (ret)
4360 return ret;
4361
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004362 ret = find_iref(sctx->parent_root, sctx->right_path,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004363 sctx->cmp_key, dir, dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02004364 if (ret == -ENOENT)
4365 ret = __record_new_ref(num, dir, index, name, sctx);
4366 else if (ret > 0)
4367 ret = 0;
4368
4369 return ret;
4370}
4371
4372static int __record_changed_deleted_ref(int num, u64 dir, int index,
4373 struct fs_path *name,
4374 void *ctx)
4375{
Josef Bacikba5e8f22013-08-16 16:52:55 -04004376 u64 dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004377 int ret;
4378 struct send_ctx *sctx = ctx;
4379
Josef Bacikba5e8f22013-08-16 16:52:55 -04004380 ret = get_inode_info(sctx->parent_root, dir, NULL, &dir_gen, NULL,
4381 NULL, NULL, NULL);
4382 if (ret)
4383 return ret;
4384
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004385 ret = find_iref(sctx->send_root, sctx->left_path, sctx->cmp_key,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004386 dir, dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02004387 if (ret == -ENOENT)
4388 ret = __record_deleted_ref(num, dir, index, name, sctx);
4389 else if (ret > 0)
4390 ret = 0;
4391
4392 return ret;
4393}
4394
4395static int record_changed_ref(struct send_ctx *sctx)
4396{
4397 int ret = 0;
4398
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004399 ret = iterate_inode_ref(sctx->send_root, sctx->left_path,
Alexander Block31db9f72012-07-25 23:19:24 +02004400 sctx->cmp_key, 0, __record_changed_new_ref, sctx);
4401 if (ret < 0)
4402 goto out;
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004403 ret = iterate_inode_ref(sctx->parent_root, sctx->right_path,
Alexander Block31db9f72012-07-25 23:19:24 +02004404 sctx->cmp_key, 0, __record_changed_deleted_ref, sctx);
4405 if (ret < 0)
4406 goto out;
4407 ret = 0;
4408
4409out:
4410 return ret;
4411}
4412
4413/*
4414 * Record and process all refs at once. Needed when an inode changes the
4415 * generation number, which means that it was deleted and recreated.
4416 */
4417static int process_all_refs(struct send_ctx *sctx,
4418 enum btrfs_compare_tree_result cmd)
4419{
4420 int ret;
4421 struct btrfs_root *root;
4422 struct btrfs_path *path;
4423 struct btrfs_key key;
4424 struct btrfs_key found_key;
4425 struct extent_buffer *eb;
4426 int slot;
4427 iterate_inode_ref_t cb;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00004428 int pending_move = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004429
4430 path = alloc_path_for_send();
4431 if (!path)
4432 return -ENOMEM;
4433
4434 if (cmd == BTRFS_COMPARE_TREE_NEW) {
4435 root = sctx->send_root;
4436 cb = __record_new_ref;
4437 } else if (cmd == BTRFS_COMPARE_TREE_DELETED) {
4438 root = sctx->parent_root;
4439 cb = __record_deleted_ref;
4440 } else {
David Sterba4d1a63b2014-02-03 19:24:19 +01004441 btrfs_err(sctx->send_root->fs_info,
4442 "Wrong command %d in process_all_refs", cmd);
4443 ret = -EINVAL;
4444 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004445 }
4446
4447 key.objectid = sctx->cmp_key->objectid;
4448 key.type = BTRFS_INODE_REF_KEY;
4449 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004450 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4451 if (ret < 0)
4452 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004453
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004454 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02004455 eb = path->nodes[0];
4456 slot = path->slots[0];
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004457 if (slot >= btrfs_header_nritems(eb)) {
4458 ret = btrfs_next_leaf(root, path);
4459 if (ret < 0)
4460 goto out;
4461 else if (ret > 0)
4462 break;
4463 continue;
4464 }
4465
Alexander Block31db9f72012-07-25 23:19:24 +02004466 btrfs_item_key_to_cpu(eb, &found_key, slot);
4467
4468 if (found_key.objectid != key.objectid ||
Jan Schmidt96b5bd72012-10-15 08:30:45 +00004469 (found_key.type != BTRFS_INODE_REF_KEY &&
4470 found_key.type != BTRFS_INODE_EXTREF_KEY))
Alexander Block31db9f72012-07-25 23:19:24 +02004471 break;
Alexander Block31db9f72012-07-25 23:19:24 +02004472
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004473 ret = iterate_inode_ref(root, path, &found_key, 0, cb, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004474 if (ret < 0)
4475 goto out;
4476
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004477 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02004478 }
Alexander Blocke938c8a2012-07-28 16:33:49 +02004479 btrfs_release_path(path);
Alexander Block31db9f72012-07-25 23:19:24 +02004480
Josef Bacik3dc09ec2016-08-24 11:57:52 -04004481 /*
4482 * We don't actually care about pending_move as we are simply
4483 * re-creating this inode and will be rename'ing it into place once we
4484 * rename the parent directory.
4485 */
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00004486 ret = process_recorded_refs(sctx, &pending_move);
Alexander Block31db9f72012-07-25 23:19:24 +02004487out:
4488 btrfs_free_path(path);
4489 return ret;
4490}
4491
4492static int send_set_xattr(struct send_ctx *sctx,
4493 struct fs_path *path,
4494 const char *name, int name_len,
4495 const char *data, int data_len)
4496{
4497 int ret = 0;
4498
4499 ret = begin_cmd(sctx, BTRFS_SEND_C_SET_XATTR);
4500 if (ret < 0)
4501 goto out;
4502
4503 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
4504 TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len);
4505 TLV_PUT(sctx, BTRFS_SEND_A_XATTR_DATA, data, data_len);
4506
4507 ret = send_cmd(sctx);
4508
4509tlv_put_failure:
4510out:
4511 return ret;
4512}
4513
4514static int send_remove_xattr(struct send_ctx *sctx,
4515 struct fs_path *path,
4516 const char *name, int name_len)
4517{
4518 int ret = 0;
4519
4520 ret = begin_cmd(sctx, BTRFS_SEND_C_REMOVE_XATTR);
4521 if (ret < 0)
4522 goto out;
4523
4524 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
4525 TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len);
4526
4527 ret = send_cmd(sctx);
4528
4529tlv_put_failure:
4530out:
4531 return ret;
4532}
4533
4534static int __process_new_xattr(int num, struct btrfs_key *di_key,
4535 const char *name, int name_len,
4536 const char *data, int data_len,
4537 u8 type, void *ctx)
4538{
4539 int ret;
4540 struct send_ctx *sctx = ctx;
4541 struct fs_path *p;
Andreas Gruenbacher2211d5b2016-09-27 13:03:22 +02004542 struct posix_acl_xattr_header dummy_acl;
Alexander Block31db9f72012-07-25 23:19:24 +02004543
Marcos Paulo de Souza89efda52020-05-10 23:15:07 -03004544 /* Capabilities are emitted by finish_inode_if_needed */
4545 if (!strncmp(name, XATTR_NAME_CAPS, name_len))
4546 return 0;
4547
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004548 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004549 if (!p)
4550 return -ENOMEM;
4551
4552 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004553 * This hack is needed because empty acls are stored as zero byte
Alexander Block31db9f72012-07-25 23:19:24 +02004554 * data in xattrs. Problem with that is, that receiving these zero byte
Nicholas D Steeves01327612016-05-19 21:18:45 -04004555 * acls will fail later. To fix this, we send a dummy acl list that
Alexander Block31db9f72012-07-25 23:19:24 +02004556 * only contains the version number and no entries.
4557 */
4558 if (!strncmp(name, XATTR_NAME_POSIX_ACL_ACCESS, name_len) ||
4559 !strncmp(name, XATTR_NAME_POSIX_ACL_DEFAULT, name_len)) {
4560 if (data_len == 0) {
4561 dummy_acl.a_version =
4562 cpu_to_le32(POSIX_ACL_XATTR_VERSION);
4563 data = (char *)&dummy_acl;
4564 data_len = sizeof(dummy_acl);
4565 }
4566 }
4567
4568 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4569 if (ret < 0)
4570 goto out;
4571
4572 ret = send_set_xattr(sctx, p, name, name_len, data, data_len);
4573
4574out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004575 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004576 return ret;
4577}
4578
4579static int __process_deleted_xattr(int num, struct btrfs_key *di_key,
4580 const char *name, int name_len,
4581 const char *data, int data_len,
4582 u8 type, void *ctx)
4583{
4584 int ret;
4585 struct send_ctx *sctx = ctx;
4586 struct fs_path *p;
4587
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004588 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004589 if (!p)
4590 return -ENOMEM;
4591
4592 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4593 if (ret < 0)
4594 goto out;
4595
4596 ret = send_remove_xattr(sctx, p, name, name_len);
4597
4598out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004599 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004600 return ret;
4601}
4602
4603static int process_new_xattr(struct send_ctx *sctx)
4604{
4605 int ret = 0;
4606
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004607 ret = iterate_dir_item(sctx->send_root, sctx->left_path,
Nikolay Borisova0357512017-08-21 12:43:44 +03004608 __process_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004609
4610 return ret;
4611}
4612
4613static int process_deleted_xattr(struct send_ctx *sctx)
4614{
Masahiro Yamadae2c89902016-09-13 04:35:52 +09004615 return iterate_dir_item(sctx->parent_root, sctx->right_path,
Nikolay Borisova0357512017-08-21 12:43:44 +03004616 __process_deleted_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004617}
4618
4619struct find_xattr_ctx {
4620 const char *name;
4621 int name_len;
4622 int found_idx;
4623 char *found_data;
4624 int found_data_len;
4625};
4626
4627static int __find_xattr(int num, struct btrfs_key *di_key,
4628 const char *name, int name_len,
4629 const char *data, int data_len,
4630 u8 type, void *vctx)
4631{
4632 struct find_xattr_ctx *ctx = vctx;
4633
4634 if (name_len == ctx->name_len &&
4635 strncmp(name, ctx->name, name_len) == 0) {
4636 ctx->found_idx = num;
4637 ctx->found_data_len = data_len;
David Sterbae780b0d2016-01-18 18:42:13 +01004638 ctx->found_data = kmemdup(data, data_len, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02004639 if (!ctx->found_data)
4640 return -ENOMEM;
Alexander Block31db9f72012-07-25 23:19:24 +02004641 return 1;
4642 }
4643 return 0;
4644}
4645
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004646static int find_xattr(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02004647 struct btrfs_path *path,
4648 struct btrfs_key *key,
4649 const char *name, int name_len,
4650 char **data, int *data_len)
4651{
4652 int ret;
4653 struct find_xattr_ctx ctx;
4654
4655 ctx.name = name;
4656 ctx.name_len = name_len;
4657 ctx.found_idx = -1;
4658 ctx.found_data = NULL;
4659 ctx.found_data_len = 0;
4660
Nikolay Borisova0357512017-08-21 12:43:44 +03004661 ret = iterate_dir_item(root, path, __find_xattr, &ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004662 if (ret < 0)
4663 return ret;
4664
4665 if (ctx.found_idx == -1)
4666 return -ENOENT;
4667 if (data) {
4668 *data = ctx.found_data;
4669 *data_len = ctx.found_data_len;
4670 } else {
4671 kfree(ctx.found_data);
4672 }
4673 return ctx.found_idx;
4674}
4675
4676
4677static int __process_changed_new_xattr(int num, struct btrfs_key *di_key,
4678 const char *name, int name_len,
4679 const char *data, int data_len,
4680 u8 type, void *ctx)
4681{
4682 int ret;
4683 struct send_ctx *sctx = ctx;
4684 char *found_data = NULL;
4685 int found_data_len = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004686
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004687 ret = find_xattr(sctx->parent_root, sctx->right_path,
4688 sctx->cmp_key, name, name_len, &found_data,
4689 &found_data_len);
Alexander Block31db9f72012-07-25 23:19:24 +02004690 if (ret == -ENOENT) {
4691 ret = __process_new_xattr(num, di_key, name, name_len, data,
4692 data_len, type, ctx);
4693 } else if (ret >= 0) {
4694 if (data_len != found_data_len ||
4695 memcmp(data, found_data, data_len)) {
4696 ret = __process_new_xattr(num, di_key, name, name_len,
4697 data, data_len, type, ctx);
4698 } else {
4699 ret = 0;
4700 }
4701 }
4702
4703 kfree(found_data);
Alexander Block31db9f72012-07-25 23:19:24 +02004704 return ret;
4705}
4706
4707static int __process_changed_deleted_xattr(int num, struct btrfs_key *di_key,
4708 const char *name, int name_len,
4709 const char *data, int data_len,
4710 u8 type, void *ctx)
4711{
4712 int ret;
4713 struct send_ctx *sctx = ctx;
4714
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004715 ret = find_xattr(sctx->send_root, sctx->left_path, sctx->cmp_key,
4716 name, name_len, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004717 if (ret == -ENOENT)
4718 ret = __process_deleted_xattr(num, di_key, name, name_len, data,
4719 data_len, type, ctx);
4720 else if (ret >= 0)
4721 ret = 0;
4722
4723 return ret;
4724}
4725
4726static int process_changed_xattr(struct send_ctx *sctx)
4727{
4728 int ret = 0;
4729
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004730 ret = iterate_dir_item(sctx->send_root, sctx->left_path,
Nikolay Borisova0357512017-08-21 12:43:44 +03004731 __process_changed_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004732 if (ret < 0)
4733 goto out;
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004734 ret = iterate_dir_item(sctx->parent_root, sctx->right_path,
Nikolay Borisova0357512017-08-21 12:43:44 +03004735 __process_changed_deleted_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004736
4737out:
4738 return ret;
4739}
4740
4741static int process_all_new_xattrs(struct send_ctx *sctx)
4742{
4743 int ret;
4744 struct btrfs_root *root;
4745 struct btrfs_path *path;
4746 struct btrfs_key key;
4747 struct btrfs_key found_key;
4748 struct extent_buffer *eb;
4749 int slot;
4750
4751 path = alloc_path_for_send();
4752 if (!path)
4753 return -ENOMEM;
4754
4755 root = sctx->send_root;
4756
4757 key.objectid = sctx->cmp_key->objectid;
4758 key.type = BTRFS_XATTR_ITEM_KEY;
4759 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004760 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4761 if (ret < 0)
4762 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004763
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004764 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02004765 eb = path->nodes[0];
4766 slot = path->slots[0];
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004767 if (slot >= btrfs_header_nritems(eb)) {
4768 ret = btrfs_next_leaf(root, path);
4769 if (ret < 0) {
4770 goto out;
4771 } else if (ret > 0) {
4772 ret = 0;
4773 break;
4774 }
4775 continue;
4776 }
Alexander Block31db9f72012-07-25 23:19:24 +02004777
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004778 btrfs_item_key_to_cpu(eb, &found_key, slot);
Alexander Block31db9f72012-07-25 23:19:24 +02004779 if (found_key.objectid != key.objectid ||
4780 found_key.type != key.type) {
4781 ret = 0;
4782 goto out;
4783 }
4784
Nikolay Borisova0357512017-08-21 12:43:44 +03004785 ret = iterate_dir_item(root, path, __process_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004786 if (ret < 0)
4787 goto out;
4788
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004789 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02004790 }
4791
4792out:
4793 btrfs_free_path(path);
4794 return ret;
4795}
4796
Omar Sandovala9b2e0d2020-08-21 00:39:51 -07004797static int fill_read_buf(struct send_ctx *sctx, u64 offset, u32 len)
Josef Baciked259092013-10-25 11:36:01 -04004798{
4799 struct btrfs_root *root = sctx->send_root;
4800 struct btrfs_fs_info *fs_info = root->fs_info;
4801 struct inode *inode;
4802 struct page *page;
4803 char *addr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004804 pgoff_t index = offset >> PAGE_SHIFT;
Josef Baciked259092013-10-25 11:36:01 -04004805 pgoff_t last_index;
Johannes Thumshirn70730172018-12-05 15:23:03 +01004806 unsigned pg_offset = offset_in_page(offset);
Omar Sandovala9b2e0d2020-08-21 00:39:51 -07004807 int ret = 0;
4808 size_t read = 0;
Josef Baciked259092013-10-25 11:36:01 -04004809
David Sterba0202e832020-05-15 19:35:59 +02004810 inode = btrfs_iget(fs_info->sb, sctx->cur_ino, root);
Josef Baciked259092013-10-25 11:36:01 -04004811 if (IS_ERR(inode))
4812 return PTR_ERR(inode);
4813
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004814 last_index = (offset + len - 1) >> PAGE_SHIFT;
Liu Bo2131bcd2014-03-05 10:07:35 +08004815
4816 /* initial readahead */
4817 memset(&sctx->ra, 0, sizeof(struct file_ra_state));
4818 file_ra_state_init(&sctx->ra, inode->i_mapping);
Liu Bo2131bcd2014-03-05 10:07:35 +08004819
Josef Baciked259092013-10-25 11:36:01 -04004820 while (index <= last_index) {
4821 unsigned cur_len = min_t(unsigned, len,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004822 PAGE_SIZE - pg_offset);
Kuanling Huangeef16ba2017-09-15 16:47:45 +08004823
4824 page = find_lock_page(inode->i_mapping, index);
Josef Baciked259092013-10-25 11:36:01 -04004825 if (!page) {
Kuanling Huangeef16ba2017-09-15 16:47:45 +08004826 page_cache_sync_readahead(inode->i_mapping, &sctx->ra,
4827 NULL, index, last_index + 1 - index);
4828
4829 page = find_or_create_page(inode->i_mapping, index,
4830 GFP_KERNEL);
4831 if (!page) {
4832 ret = -ENOMEM;
4833 break;
4834 }
4835 }
4836
4837 if (PageReadahead(page)) {
4838 page_cache_async_readahead(inode->i_mapping, &sctx->ra,
4839 NULL, page, index, last_index + 1 - index);
Josef Baciked259092013-10-25 11:36:01 -04004840 }
4841
4842 if (!PageUptodate(page)) {
4843 btrfs_readpage(NULL, page);
4844 lock_page(page);
4845 if (!PageUptodate(page)) {
4846 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004847 put_page(page);
Josef Baciked259092013-10-25 11:36:01 -04004848 ret = -EIO;
4849 break;
4850 }
4851 }
4852
4853 addr = kmap(page);
Omar Sandovala9b2e0d2020-08-21 00:39:51 -07004854 memcpy(sctx->read_buf + read, addr + pg_offset, cur_len);
Josef Baciked259092013-10-25 11:36:01 -04004855 kunmap(page);
4856 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004857 put_page(page);
Josef Baciked259092013-10-25 11:36:01 -04004858 index++;
4859 pg_offset = 0;
4860 len -= cur_len;
Omar Sandovala9b2e0d2020-08-21 00:39:51 -07004861 read += cur_len;
Josef Baciked259092013-10-25 11:36:01 -04004862 }
Josef Baciked259092013-10-25 11:36:01 -04004863 iput(inode);
4864 return ret;
4865}
4866
Alexander Block31db9f72012-07-25 23:19:24 +02004867/*
4868 * Read some bytes from the current inode/file and send a write command to
4869 * user space.
4870 */
4871static int send_write(struct send_ctx *sctx, u64 offset, u32 len)
4872{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04004873 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02004874 int ret = 0;
4875 struct fs_path *p;
Alexander Block31db9f72012-07-25 23:19:24 +02004876
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004877 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004878 if (!p)
4879 return -ENOMEM;
4880
Jeff Mahoney04ab9562016-09-20 10:05:03 -04004881 btrfs_debug(fs_info, "send_write offset=%llu, len=%d", offset, len);
Alexander Block31db9f72012-07-25 23:19:24 +02004882
Omar Sandovala9b2e0d2020-08-21 00:39:51 -07004883 ret = fill_read_buf(sctx, offset, len);
4884 if (ret < 0)
Alexander Block31db9f72012-07-25 23:19:24 +02004885 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004886
4887 ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE);
4888 if (ret < 0)
4889 goto out;
4890
4891 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4892 if (ret < 0)
4893 goto out;
4894
4895 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4896 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
Omar Sandovala9b2e0d2020-08-21 00:39:51 -07004897 TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, len);
Alexander Block31db9f72012-07-25 23:19:24 +02004898
4899 ret = send_cmd(sctx);
4900
4901tlv_put_failure:
4902out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004903 fs_path_free(p);
Omar Sandovala9b2e0d2020-08-21 00:39:51 -07004904 return ret;
Alexander Block31db9f72012-07-25 23:19:24 +02004905}
4906
4907/*
4908 * Send a clone command to user space.
4909 */
4910static int send_clone(struct send_ctx *sctx,
4911 u64 offset, u32 len,
4912 struct clone_root *clone_root)
4913{
4914 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004915 struct fs_path *p;
4916 u64 gen;
4917
Jeff Mahoney04ab9562016-09-20 10:05:03 -04004918 btrfs_debug(sctx->send_root->fs_info,
4919 "send_clone offset=%llu, len=%d, clone_root=%llu, clone_inode=%llu, clone_offset=%llu",
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09004920 offset, len, clone_root->root->root_key.objectid,
4921 clone_root->ino, clone_root->offset);
Alexander Block31db9f72012-07-25 23:19:24 +02004922
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004923 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004924 if (!p)
4925 return -ENOMEM;
4926
4927 ret = begin_cmd(sctx, BTRFS_SEND_C_CLONE);
4928 if (ret < 0)
4929 goto out;
4930
4931 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4932 if (ret < 0)
4933 goto out;
4934
4935 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
4936 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_LEN, len);
4937 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4938
Alexander Blocke938c8a2012-07-28 16:33:49 +02004939 if (clone_root->root == sctx->send_root) {
Alexander Block31db9f72012-07-25 23:19:24 +02004940 ret = get_inode_info(sctx->send_root, clone_root->ino, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02004941 &gen, NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004942 if (ret < 0)
4943 goto out;
4944 ret = get_cur_path(sctx, clone_root->ino, gen, p);
4945 } else {
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004946 ret = get_inode_path(clone_root->root, clone_root->ino, p);
Alexander Block31db9f72012-07-25 23:19:24 +02004947 }
4948 if (ret < 0)
4949 goto out;
4950
Josef Bacik37b8d272015-06-04 17:17:25 -04004951 /*
4952 * If the parent we're using has a received_uuid set then use that as
4953 * our clone source as that is what we will look for when doing a
4954 * receive.
4955 *
4956 * This covers the case that we create a snapshot off of a received
4957 * subvolume and then use that as the parent and try to receive on a
4958 * different host.
4959 */
4960 if (!btrfs_is_empty_uuid(clone_root->root->root_item.received_uuid))
4961 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
4962 clone_root->root->root_item.received_uuid);
4963 else
4964 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
4965 clone_root->root->root_item.uuid);
Alexander Block31db9f72012-07-25 23:19:24 +02004966 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00004967 le64_to_cpu(clone_root->root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02004968 TLV_PUT_PATH(sctx, BTRFS_SEND_A_CLONE_PATH, p);
4969 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_OFFSET,
4970 clone_root->offset);
4971
4972 ret = send_cmd(sctx);
4973
4974tlv_put_failure:
4975out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004976 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004977 return ret;
4978}
4979
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004980/*
4981 * Send an update extent command to user space.
4982 */
4983static int send_update_extent(struct send_ctx *sctx,
4984 u64 offset, u32 len)
4985{
4986 int ret = 0;
4987 struct fs_path *p;
4988
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004989 p = fs_path_alloc();
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004990 if (!p)
4991 return -ENOMEM;
4992
4993 ret = begin_cmd(sctx, BTRFS_SEND_C_UPDATE_EXTENT);
4994 if (ret < 0)
4995 goto out;
4996
4997 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4998 if (ret < 0)
4999 goto out;
5000
5001 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
5002 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
5003 TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, len);
5004
5005 ret = send_cmd(sctx);
5006
5007tlv_put_failure:
5008out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00005009 fs_path_free(p);
Mark Fashehcb95e7b2013-02-04 20:54:57 +00005010 return ret;
5011}
5012
Josef Bacik16e75492013-10-22 12:18:51 -04005013static int send_hole(struct send_ctx *sctx, u64 end)
5014{
5015 struct fs_path *p = NULL;
5016 u64 offset = sctx->cur_inode_last_extent;
5017 u64 len;
5018 int ret = 0;
5019
Filipe Manana22d31512018-07-30 12:39:58 +01005020 /*
5021 * A hole that starts at EOF or beyond it. Since we do not yet support
5022 * fallocate (for extent preallocation and hole punching), sending a
5023 * write of zeroes starting at EOF or beyond would later require issuing
5024 * a truncate operation which would undo the write and achieve nothing.
5025 */
5026 if (offset >= sctx->cur_inode_size)
5027 return 0;
5028
Filipe Manana6b1f72e52019-05-20 09:55:42 +01005029 /*
5030 * Don't go beyond the inode's i_size due to prealloc extents that start
5031 * after the i_size.
5032 */
5033 end = min_t(u64, end, sctx->cur_inode_size);
5034
Filipe Mananad4dfc0f2018-02-06 20:39:20 +00005035 if (sctx->flags & BTRFS_SEND_FLAG_NO_FILE_DATA)
5036 return send_update_extent(sctx, offset, end - offset);
5037
Josef Bacik16e75492013-10-22 12:18:51 -04005038 p = fs_path_alloc();
5039 if (!p)
5040 return -ENOMEM;
Filipe Mananac715e152014-03-31 14:52:14 +01005041 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
5042 if (ret < 0)
5043 goto tlv_put_failure;
Josef Bacik16e75492013-10-22 12:18:51 -04005044 memset(sctx->read_buf, 0, BTRFS_SEND_READ_SIZE);
5045 while (offset < end) {
5046 len = min_t(u64, end - offset, BTRFS_SEND_READ_SIZE);
5047
5048 ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE);
5049 if (ret < 0)
5050 break;
Josef Bacik16e75492013-10-22 12:18:51 -04005051 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
5052 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
5053 TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, len);
5054 ret = send_cmd(sctx);
5055 if (ret < 0)
5056 break;
5057 offset += len;
5058 }
Filipe Mananaffa7c422018-02-06 20:40:40 +00005059 sctx->cur_inode_next_write_offset = offset;
Josef Bacik16e75492013-10-22 12:18:51 -04005060tlv_put_failure:
5061 fs_path_free(p);
5062 return ret;
5063}
5064
Filipe Mananad906d492015-10-02 10:47:34 +01005065static int send_extent_data(struct send_ctx *sctx,
5066 const u64 offset,
5067 const u64 len)
5068{
5069 u64 sent = 0;
5070
5071 if (sctx->flags & BTRFS_SEND_FLAG_NO_FILE_DATA)
5072 return send_update_extent(sctx, offset, len);
5073
5074 while (sent < len) {
5075 u64 size = len - sent;
5076 int ret;
5077
5078 if (size > BTRFS_SEND_READ_SIZE)
5079 size = BTRFS_SEND_READ_SIZE;
5080 ret = send_write(sctx, offset + sent, size);
5081 if (ret < 0)
5082 return ret;
Omar Sandovala9b2e0d2020-08-21 00:39:51 -07005083 sent += size;
Filipe Mananad906d492015-10-02 10:47:34 +01005084 }
5085 return 0;
5086}
5087
Marcos Paulo de Souza89efda52020-05-10 23:15:07 -03005088/*
5089 * Search for a capability xattr related to sctx->cur_ino. If the capability is
5090 * found, call send_set_xattr function to emit it.
5091 *
5092 * Return 0 if there isn't a capability, or when the capability was emitted
5093 * successfully, or < 0 if an error occurred.
5094 */
5095static int send_capabilities(struct send_ctx *sctx)
5096{
5097 struct fs_path *fspath = NULL;
5098 struct btrfs_path *path;
5099 struct btrfs_dir_item *di;
5100 struct extent_buffer *leaf;
5101 unsigned long data_ptr;
5102 char *buf = NULL;
5103 int buf_len;
5104 int ret = 0;
5105
5106 path = alloc_path_for_send();
5107 if (!path)
5108 return -ENOMEM;
5109
5110 di = btrfs_lookup_xattr(NULL, sctx->send_root, path, sctx->cur_ino,
5111 XATTR_NAME_CAPS, strlen(XATTR_NAME_CAPS), 0);
5112 if (!di) {
5113 /* There is no xattr for this inode */
5114 goto out;
5115 } else if (IS_ERR(di)) {
5116 ret = PTR_ERR(di);
5117 goto out;
5118 }
5119
5120 leaf = path->nodes[0];
5121 buf_len = btrfs_dir_data_len(leaf, di);
5122
5123 fspath = fs_path_alloc();
5124 buf = kmalloc(buf_len, GFP_KERNEL);
5125 if (!fspath || !buf) {
5126 ret = -ENOMEM;
5127 goto out;
5128 }
5129
5130 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, fspath);
5131 if (ret < 0)
5132 goto out;
5133
5134 data_ptr = (unsigned long)(di + 1) + btrfs_dir_name_len(leaf, di);
5135 read_extent_buffer(leaf, buf, data_ptr, buf_len);
5136
5137 ret = send_set_xattr(sctx, fspath, XATTR_NAME_CAPS,
5138 strlen(XATTR_NAME_CAPS), buf, buf_len);
5139out:
5140 kfree(buf);
5141 fs_path_free(fspath);
5142 btrfs_free_path(path);
5143 return ret;
5144}
5145
Filipe Mananad906d492015-10-02 10:47:34 +01005146static int clone_range(struct send_ctx *sctx,
5147 struct clone_root *clone_root,
5148 const u64 disk_byte,
5149 u64 data_offset,
5150 u64 offset,
5151 u64 len)
5152{
5153 struct btrfs_path *path;
5154 struct btrfs_key key;
5155 int ret;
Austin Kim431d3982019-09-03 12:30:19 +09005156 u64 clone_src_i_size = 0;
Filipe Mananad906d492015-10-02 10:47:34 +01005157
Filipe Manana72610b12017-08-10 22:54:51 +01005158 /*
5159 * Prevent cloning from a zero offset with a length matching the sector
5160 * size because in some scenarios this will make the receiver fail.
5161 *
5162 * For example, if in the source filesystem the extent at offset 0
5163 * has a length of sectorsize and it was written using direct IO, then
5164 * it can never be an inline extent (even if compression is enabled).
5165 * Then this extent can be cloned in the original filesystem to a non
5166 * zero file offset, but it may not be possible to clone in the
5167 * destination filesystem because it can be inlined due to compression
5168 * on the destination filesystem (as the receiver's write operations are
5169 * always done using buffered IO). The same happens when the original
5170 * filesystem does not have compression enabled but the destination
5171 * filesystem has.
5172 */
5173 if (clone_root->offset == 0 &&
5174 len == sctx->send_root->fs_info->sectorsize)
5175 return send_extent_data(sctx, offset, len);
5176
Filipe Mananad906d492015-10-02 10:47:34 +01005177 path = alloc_path_for_send();
5178 if (!path)
5179 return -ENOMEM;
5180
5181 /*
Robbie Ko040ee6122019-03-29 18:03:27 +08005182 * There are inodes that have extents that lie behind its i_size. Don't
5183 * accept clones from these extents.
5184 */
5185 ret = __get_inode_info(clone_root->root, path, clone_root->ino,
5186 &clone_src_i_size, NULL, NULL, NULL, NULL, NULL);
5187 btrfs_release_path(path);
5188 if (ret < 0)
5189 goto out;
5190
5191 /*
Filipe Mananad906d492015-10-02 10:47:34 +01005192 * We can't send a clone operation for the entire range if we find
5193 * extent items in the respective range in the source file that
5194 * refer to different extents or if we find holes.
5195 * So check for that and do a mix of clone and regular write/copy
5196 * operations if needed.
5197 *
5198 * Example:
5199 *
5200 * mkfs.btrfs -f /dev/sda
5201 * mount /dev/sda /mnt
5202 * xfs_io -f -c "pwrite -S 0xaa 0K 100K" /mnt/foo
5203 * cp --reflink=always /mnt/foo /mnt/bar
5204 * xfs_io -c "pwrite -S 0xbb 50K 50K" /mnt/foo
5205 * btrfs subvolume snapshot -r /mnt /mnt/snap
5206 *
5207 * If when we send the snapshot and we are processing file bar (which
5208 * has a higher inode number than foo) we blindly send a clone operation
5209 * for the [0, 100K[ range from foo to bar, the receiver ends up getting
5210 * a file bar that matches the content of file foo - iow, doesn't match
5211 * the content from bar in the original filesystem.
5212 */
5213 key.objectid = clone_root->ino;
5214 key.type = BTRFS_EXTENT_DATA_KEY;
5215 key.offset = clone_root->offset;
5216 ret = btrfs_search_slot(NULL, clone_root->root, &key, path, 0, 0);
5217 if (ret < 0)
5218 goto out;
5219 if (ret > 0 && path->slots[0] > 0) {
5220 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0] - 1);
5221 if (key.objectid == clone_root->ino &&
5222 key.type == BTRFS_EXTENT_DATA_KEY)
5223 path->slots[0]--;
5224 }
5225
5226 while (true) {
5227 struct extent_buffer *leaf = path->nodes[0];
5228 int slot = path->slots[0];
5229 struct btrfs_file_extent_item *ei;
5230 u8 type;
5231 u64 ext_len;
5232 u64 clone_len;
Robbie Ko040ee6122019-03-29 18:03:27 +08005233 u64 clone_data_offset;
Filipe Mananad906d492015-10-02 10:47:34 +01005234
5235 if (slot >= btrfs_header_nritems(leaf)) {
5236 ret = btrfs_next_leaf(clone_root->root, path);
5237 if (ret < 0)
5238 goto out;
5239 else if (ret > 0)
5240 break;
5241 continue;
5242 }
5243
5244 btrfs_item_key_to_cpu(leaf, &key, slot);
5245
5246 /*
5247 * We might have an implicit trailing hole (NO_HOLES feature
5248 * enabled). We deal with it after leaving this loop.
5249 */
5250 if (key.objectid != clone_root->ino ||
5251 key.type != BTRFS_EXTENT_DATA_KEY)
5252 break;
5253
5254 ei = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5255 type = btrfs_file_extent_type(leaf, ei);
5256 if (type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08005257 ext_len = btrfs_file_extent_ram_bytes(leaf, ei);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005258 ext_len = PAGE_ALIGN(ext_len);
Filipe Mananad906d492015-10-02 10:47:34 +01005259 } else {
5260 ext_len = btrfs_file_extent_num_bytes(leaf, ei);
5261 }
5262
5263 if (key.offset + ext_len <= clone_root->offset)
5264 goto next;
5265
5266 if (key.offset > clone_root->offset) {
5267 /* Implicit hole, NO_HOLES feature enabled. */
5268 u64 hole_len = key.offset - clone_root->offset;
5269
5270 if (hole_len > len)
5271 hole_len = len;
5272 ret = send_extent_data(sctx, offset, hole_len);
5273 if (ret < 0)
5274 goto out;
5275
5276 len -= hole_len;
5277 if (len == 0)
5278 break;
5279 offset += hole_len;
5280 clone_root->offset += hole_len;
5281 data_offset += hole_len;
5282 }
5283
5284 if (key.offset >= clone_root->offset + len)
5285 break;
5286
Robbie Ko040ee6122019-03-29 18:03:27 +08005287 if (key.offset >= clone_src_i_size)
5288 break;
5289
5290 if (key.offset + ext_len > clone_src_i_size)
5291 ext_len = clone_src_i_size - key.offset;
5292
5293 clone_data_offset = btrfs_file_extent_offset(leaf, ei);
5294 if (btrfs_file_extent_disk_bytenr(leaf, ei) == disk_byte) {
5295 clone_root->offset = key.offset;
5296 if (clone_data_offset < data_offset &&
5297 clone_data_offset + ext_len > data_offset) {
5298 u64 extent_offset;
5299
5300 extent_offset = data_offset - clone_data_offset;
5301 ext_len -= extent_offset;
5302 clone_data_offset += extent_offset;
5303 clone_root->offset += extent_offset;
5304 }
5305 }
5306
Filipe Mananad906d492015-10-02 10:47:34 +01005307 clone_len = min_t(u64, ext_len, len);
5308
5309 if (btrfs_file_extent_disk_bytenr(leaf, ei) == disk_byte &&
Filipe Manana3c850b42019-05-20 09:57:00 +01005310 clone_data_offset == data_offset) {
5311 const u64 src_end = clone_root->offset + clone_len;
5312 const u64 sectorsize = SZ_64K;
5313
5314 /*
5315 * We can't clone the last block, when its size is not
5316 * sector size aligned, into the middle of a file. If we
5317 * do so, the receiver will get a failure (-EINVAL) when
5318 * trying to clone or will silently corrupt the data in
5319 * the destination file if it's on a kernel without the
5320 * fix introduced by commit ac765f83f1397646
5321 * ("Btrfs: fix data corruption due to cloning of eof
5322 * block).
5323 *
5324 * So issue a clone of the aligned down range plus a
5325 * regular write for the eof block, if we hit that case.
5326 *
5327 * Also, we use the maximum possible sector size, 64K,
5328 * because we don't know what's the sector size of the
5329 * filesystem that receives the stream, so we have to
5330 * assume the largest possible sector size.
5331 */
5332 if (src_end == clone_src_i_size &&
5333 !IS_ALIGNED(src_end, sectorsize) &&
5334 offset + clone_len < sctx->cur_inode_size) {
5335 u64 slen;
5336
5337 slen = ALIGN_DOWN(src_end - clone_root->offset,
5338 sectorsize);
5339 if (slen > 0) {
5340 ret = send_clone(sctx, offset, slen,
5341 clone_root);
5342 if (ret < 0)
5343 goto out;
5344 }
5345 ret = send_extent_data(sctx, offset + slen,
5346 clone_len - slen);
5347 } else {
5348 ret = send_clone(sctx, offset, clone_len,
5349 clone_root);
5350 }
5351 } else {
Filipe Mananad906d492015-10-02 10:47:34 +01005352 ret = send_extent_data(sctx, offset, clone_len);
Filipe Manana3c850b42019-05-20 09:57:00 +01005353 }
Filipe Mananad906d492015-10-02 10:47:34 +01005354
5355 if (ret < 0)
5356 goto out;
5357
5358 len -= clone_len;
5359 if (len == 0)
5360 break;
5361 offset += clone_len;
5362 clone_root->offset += clone_len;
5363 data_offset += clone_len;
5364next:
5365 path->slots[0]++;
5366 }
5367
5368 if (len > 0)
5369 ret = send_extent_data(sctx, offset, len);
5370 else
5371 ret = 0;
5372out:
5373 btrfs_free_path(path);
5374 return ret;
5375}
5376
Alexander Block31db9f72012-07-25 23:19:24 +02005377static int send_write_or_clone(struct send_ctx *sctx,
5378 struct btrfs_path *path,
5379 struct btrfs_key *key,
5380 struct clone_root *clone_root)
5381{
5382 int ret = 0;
5383 struct btrfs_file_extent_item *ei;
5384 u64 offset = key->offset;
Alexander Block31db9f72012-07-25 23:19:24 +02005385 u64 len;
Alexander Block31db9f72012-07-25 23:19:24 +02005386 u8 type;
Filipe David Borba Manana28e5dd82014-01-12 02:26:28 +00005387 u64 bs = sctx->send_root->fs_info->sb->s_blocksize;
Alexander Block31db9f72012-07-25 23:19:24 +02005388
5389 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
5390 struct btrfs_file_extent_item);
5391 type = btrfs_file_extent_type(path->nodes[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04005392 if (type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08005393 len = btrfs_file_extent_ram_bytes(path->nodes[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04005394 /*
5395 * it is possible the inline item won't cover the whole page,
5396 * but there may be items after this page. Make
5397 * sure to send the whole thing
5398 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005399 len = PAGE_ALIGN(len);
Chris Mason74dd17f2012-08-07 16:25:13 -04005400 } else {
Alexander Block31db9f72012-07-25 23:19:24 +02005401 len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04005402 }
Alexander Block31db9f72012-07-25 23:19:24 +02005403
Filipe Mananaa6aa10c72018-04-30 19:05:07 +01005404 if (offset >= sctx->cur_inode_size) {
5405 ret = 0;
5406 goto out;
5407 }
Alexander Block31db9f72012-07-25 23:19:24 +02005408 if (offset + len > sctx->cur_inode_size)
5409 len = sctx->cur_inode_size - offset;
5410 if (len == 0) {
5411 ret = 0;
5412 goto out;
5413 }
5414
Filipe David Borba Manana28e5dd82014-01-12 02:26:28 +00005415 if (clone_root && IS_ALIGNED(offset + len, bs)) {
Filipe Mananad906d492015-10-02 10:47:34 +01005416 u64 disk_byte;
5417 u64 data_offset;
5418
5419 disk_byte = btrfs_file_extent_disk_bytenr(path->nodes[0], ei);
5420 data_offset = btrfs_file_extent_offset(path->nodes[0], ei);
5421 ret = clone_range(sctx, clone_root, disk_byte, data_offset,
5422 offset, len);
Mark Fashehcb95e7b2013-02-04 20:54:57 +00005423 } else {
Filipe Mananad906d492015-10-02 10:47:34 +01005424 ret = send_extent_data(sctx, offset, len);
Alexander Block31db9f72012-07-25 23:19:24 +02005425 }
Filipe Mananaffa7c422018-02-06 20:40:40 +00005426 sctx->cur_inode_next_write_offset = offset + len;
Alexander Block31db9f72012-07-25 23:19:24 +02005427out:
5428 return ret;
5429}
5430
5431static int is_extent_unchanged(struct send_ctx *sctx,
5432 struct btrfs_path *left_path,
5433 struct btrfs_key *ekey)
5434{
5435 int ret = 0;
5436 struct btrfs_key key;
5437 struct btrfs_path *path = NULL;
5438 struct extent_buffer *eb;
5439 int slot;
5440 struct btrfs_key found_key;
5441 struct btrfs_file_extent_item *ei;
5442 u64 left_disknr;
5443 u64 right_disknr;
5444 u64 left_offset;
5445 u64 right_offset;
5446 u64 left_offset_fixed;
5447 u64 left_len;
5448 u64 right_len;
Chris Mason74dd17f2012-08-07 16:25:13 -04005449 u64 left_gen;
5450 u64 right_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02005451 u8 left_type;
5452 u8 right_type;
5453
5454 path = alloc_path_for_send();
5455 if (!path)
5456 return -ENOMEM;
5457
5458 eb = left_path->nodes[0];
5459 slot = left_path->slots[0];
Alexander Block31db9f72012-07-25 23:19:24 +02005460 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
5461 left_type = btrfs_file_extent_type(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02005462
5463 if (left_type != BTRFS_FILE_EXTENT_REG) {
5464 ret = 0;
5465 goto out;
5466 }
Chris Mason74dd17f2012-08-07 16:25:13 -04005467 left_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
5468 left_len = btrfs_file_extent_num_bytes(eb, ei);
5469 left_offset = btrfs_file_extent_offset(eb, ei);
5470 left_gen = btrfs_file_extent_generation(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02005471
5472 /*
5473 * Following comments will refer to these graphics. L is the left
5474 * extents which we are checking at the moment. 1-8 are the right
5475 * extents that we iterate.
5476 *
5477 * |-----L-----|
5478 * |-1-|-2a-|-3-|-4-|-5-|-6-|
5479 *
5480 * |-----L-----|
5481 * |--1--|-2b-|...(same as above)
5482 *
5483 * Alternative situation. Happens on files where extents got split.
5484 * |-----L-----|
5485 * |-----------7-----------|-6-|
5486 *
5487 * Alternative situation. Happens on files which got larger.
5488 * |-----L-----|
5489 * |-8-|
5490 * Nothing follows after 8.
5491 */
5492
5493 key.objectid = ekey->objectid;
5494 key.type = BTRFS_EXTENT_DATA_KEY;
5495 key.offset = ekey->offset;
5496 ret = btrfs_search_slot_for_read(sctx->parent_root, &key, path, 0, 0);
5497 if (ret < 0)
5498 goto out;
5499 if (ret) {
5500 ret = 0;
5501 goto out;
5502 }
5503
5504 /*
5505 * Handle special case where the right side has no extents at all.
5506 */
5507 eb = path->nodes[0];
5508 slot = path->slots[0];
5509 btrfs_item_key_to_cpu(eb, &found_key, slot);
5510 if (found_key.objectid != key.objectid ||
5511 found_key.type != key.type) {
Josef Bacik57cfd462013-08-20 15:55:39 -04005512 /* If we're a hole then just pretend nothing changed */
5513 ret = (left_disknr) ? 0 : 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005514 goto out;
5515 }
5516
5517 /*
5518 * We're now on 2a, 2b or 7.
5519 */
5520 key = found_key;
5521 while (key.offset < ekey->offset + left_len) {
5522 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
5523 right_type = btrfs_file_extent_type(eb, ei);
Filipe Mananae1cbfd72017-04-04 20:31:00 +01005524 if (right_type != BTRFS_FILE_EXTENT_REG &&
5525 right_type != BTRFS_FILE_EXTENT_INLINE) {
Alexander Block31db9f72012-07-25 23:19:24 +02005526 ret = 0;
5527 goto out;
5528 }
5529
Filipe Mananae1cbfd72017-04-04 20:31:00 +01005530 if (right_type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08005531 right_len = btrfs_file_extent_ram_bytes(eb, ei);
Filipe Mananae1cbfd72017-04-04 20:31:00 +01005532 right_len = PAGE_ALIGN(right_len);
5533 } else {
5534 right_len = btrfs_file_extent_num_bytes(eb, ei);
5535 }
Josef Bacik007d31f2013-10-31 16:49:02 -04005536
Alexander Block31db9f72012-07-25 23:19:24 +02005537 /*
5538 * Are we at extent 8? If yes, we know the extent is changed.
5539 * This may only happen on the first iteration.
5540 */
Alexander Blockd8347fa2012-08-01 12:49:15 +02005541 if (found_key.offset + right_len <= ekey->offset) {
Josef Bacik57cfd462013-08-20 15:55:39 -04005542 /* If we're a hole just pretend nothing changed */
5543 ret = (left_disknr) ? 0 : 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005544 goto out;
5545 }
5546
Filipe Mananae1cbfd72017-04-04 20:31:00 +01005547 /*
5548 * We just wanted to see if when we have an inline extent, what
5549 * follows it is a regular extent (wanted to check the above
5550 * condition for inline extents too). This should normally not
5551 * happen but it's possible for example when we have an inline
5552 * compressed extent representing data with a size matching
5553 * the page size (currently the same as sector size).
5554 */
5555 if (right_type == BTRFS_FILE_EXTENT_INLINE) {
5556 ret = 0;
5557 goto out;
5558 }
5559
Filipe Manana24e52b12017-07-06 15:31:46 +01005560 right_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
5561 right_offset = btrfs_file_extent_offset(eb, ei);
5562 right_gen = btrfs_file_extent_generation(eb, ei);
5563
Alexander Block31db9f72012-07-25 23:19:24 +02005564 left_offset_fixed = left_offset;
5565 if (key.offset < ekey->offset) {
5566 /* Fix the right offset for 2a and 7. */
5567 right_offset += ekey->offset - key.offset;
5568 } else {
5569 /* Fix the left offset for all behind 2a and 2b */
5570 left_offset_fixed += key.offset - ekey->offset;
5571 }
5572
5573 /*
5574 * Check if we have the same extent.
5575 */
Alexander Block39540962012-08-01 12:46:05 +02005576 if (left_disknr != right_disknr ||
Chris Mason74dd17f2012-08-07 16:25:13 -04005577 left_offset_fixed != right_offset ||
5578 left_gen != right_gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02005579 ret = 0;
5580 goto out;
5581 }
5582
5583 /*
5584 * Go to the next extent.
5585 */
5586 ret = btrfs_next_item(sctx->parent_root, path);
5587 if (ret < 0)
5588 goto out;
5589 if (!ret) {
5590 eb = path->nodes[0];
5591 slot = path->slots[0];
5592 btrfs_item_key_to_cpu(eb, &found_key, slot);
5593 }
5594 if (ret || found_key.objectid != key.objectid ||
5595 found_key.type != key.type) {
5596 key.offset += right_len;
5597 break;
Jan Schmidtadaa4b82013-03-21 14:30:23 +00005598 }
5599 if (found_key.offset != key.offset + right_len) {
5600 ret = 0;
5601 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005602 }
5603 key = found_key;
5604 }
5605
5606 /*
5607 * We're now behind the left extent (treat as unchanged) or at the end
5608 * of the right side (treat as changed).
5609 */
5610 if (key.offset >= ekey->offset + left_len)
5611 ret = 1;
5612 else
5613 ret = 0;
5614
5615
5616out:
5617 btrfs_free_path(path);
5618 return ret;
5619}
5620
Josef Bacik16e75492013-10-22 12:18:51 -04005621static int get_last_extent(struct send_ctx *sctx, u64 offset)
5622{
5623 struct btrfs_path *path;
5624 struct btrfs_root *root = sctx->send_root;
Josef Bacik16e75492013-10-22 12:18:51 -04005625 struct btrfs_key key;
Josef Bacik16e75492013-10-22 12:18:51 -04005626 int ret;
5627
5628 path = alloc_path_for_send();
5629 if (!path)
5630 return -ENOMEM;
5631
5632 sctx->cur_inode_last_extent = 0;
5633
5634 key.objectid = sctx->cur_ino;
5635 key.type = BTRFS_EXTENT_DATA_KEY;
5636 key.offset = offset;
5637 ret = btrfs_search_slot_for_read(root, &key, path, 0, 1);
5638 if (ret < 0)
5639 goto out;
5640 ret = 0;
5641 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
5642 if (key.objectid != sctx->cur_ino || key.type != BTRFS_EXTENT_DATA_KEY)
5643 goto out;
5644
Filipe Mananaa5eeb3d2020-03-09 12:41:06 +00005645 sctx->cur_inode_last_extent = btrfs_file_extent_end(path);
Josef Bacik16e75492013-10-22 12:18:51 -04005646out:
5647 btrfs_free_path(path);
5648 return ret;
5649}
5650
Filipe Manana82bfb2e2017-02-14 17:56:32 +00005651static int range_is_hole_in_parent(struct send_ctx *sctx,
5652 const u64 start,
5653 const u64 end)
5654{
5655 struct btrfs_path *path;
5656 struct btrfs_key key;
5657 struct btrfs_root *root = sctx->parent_root;
5658 u64 search_start = start;
5659 int ret;
5660
5661 path = alloc_path_for_send();
5662 if (!path)
5663 return -ENOMEM;
5664
5665 key.objectid = sctx->cur_ino;
5666 key.type = BTRFS_EXTENT_DATA_KEY;
5667 key.offset = search_start;
5668 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5669 if (ret < 0)
5670 goto out;
5671 if (ret > 0 && path->slots[0] > 0)
5672 path->slots[0]--;
5673
5674 while (search_start < end) {
5675 struct extent_buffer *leaf = path->nodes[0];
5676 int slot = path->slots[0];
5677 struct btrfs_file_extent_item *fi;
5678 u64 extent_end;
5679
5680 if (slot >= btrfs_header_nritems(leaf)) {
5681 ret = btrfs_next_leaf(root, path);
5682 if (ret < 0)
5683 goto out;
5684 else if (ret > 0)
5685 break;
5686 continue;
5687 }
5688
5689 btrfs_item_key_to_cpu(leaf, &key, slot);
5690 if (key.objectid < sctx->cur_ino ||
5691 key.type < BTRFS_EXTENT_DATA_KEY)
5692 goto next;
5693 if (key.objectid > sctx->cur_ino ||
5694 key.type > BTRFS_EXTENT_DATA_KEY ||
5695 key.offset >= end)
5696 break;
5697
5698 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
Filipe Mananaa5eeb3d2020-03-09 12:41:06 +00005699 extent_end = btrfs_file_extent_end(path);
Filipe Manana82bfb2e2017-02-14 17:56:32 +00005700 if (extent_end <= start)
5701 goto next;
5702 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0) {
5703 search_start = extent_end;
5704 goto next;
5705 }
5706 ret = 0;
5707 goto out;
5708next:
5709 path->slots[0]++;
5710 }
5711 ret = 1;
5712out:
5713 btrfs_free_path(path);
5714 return ret;
5715}
5716
Josef Bacik16e75492013-10-22 12:18:51 -04005717static int maybe_send_hole(struct send_ctx *sctx, struct btrfs_path *path,
5718 struct btrfs_key *key)
5719{
Josef Bacik16e75492013-10-22 12:18:51 -04005720 int ret = 0;
5721
5722 if (sctx->cur_ino != key->objectid || !need_send_hole(sctx))
5723 return 0;
5724
5725 if (sctx->cur_inode_last_extent == (u64)-1) {
5726 ret = get_last_extent(sctx, key->offset - 1);
5727 if (ret)
5728 return ret;
5729 }
5730
Filipe David Borba Mananabf54f412014-01-28 01:38:06 +00005731 if (path->slots[0] == 0 &&
5732 sctx->cur_inode_last_extent < key->offset) {
5733 /*
5734 * We might have skipped entire leafs that contained only
5735 * file extent items for our current inode. These leafs have
5736 * a generation number smaller (older) than the one in the
5737 * current leaf and the leaf our last extent came from, and
5738 * are located between these 2 leafs.
5739 */
5740 ret = get_last_extent(sctx, key->offset - 1);
5741 if (ret)
5742 return ret;
5743 }
5744
Filipe Manana82bfb2e2017-02-14 17:56:32 +00005745 if (sctx->cur_inode_last_extent < key->offset) {
5746 ret = range_is_hole_in_parent(sctx,
5747 sctx->cur_inode_last_extent,
5748 key->offset);
5749 if (ret < 0)
5750 return ret;
5751 else if (ret == 0)
5752 ret = send_hole(sctx, key->offset);
5753 else
5754 ret = 0;
5755 }
Filipe Mananaa5eeb3d2020-03-09 12:41:06 +00005756 sctx->cur_inode_last_extent = btrfs_file_extent_end(path);
Josef Bacik16e75492013-10-22 12:18:51 -04005757 return ret;
5758}
5759
Alexander Block31db9f72012-07-25 23:19:24 +02005760static int process_extent(struct send_ctx *sctx,
5761 struct btrfs_path *path,
5762 struct btrfs_key *key)
5763{
Alexander Block31db9f72012-07-25 23:19:24 +02005764 struct clone_root *found_clone = NULL;
Josef Bacik57cfd462013-08-20 15:55:39 -04005765 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02005766
5767 if (S_ISLNK(sctx->cur_inode_mode))
5768 return 0;
5769
5770 if (sctx->parent_root && !sctx->cur_inode_new) {
5771 ret = is_extent_unchanged(sctx, path, key);
5772 if (ret < 0)
5773 goto out;
5774 if (ret) {
5775 ret = 0;
Josef Bacik16e75492013-10-22 12:18:51 -04005776 goto out_hole;
Alexander Block31db9f72012-07-25 23:19:24 +02005777 }
Josef Bacik57cfd462013-08-20 15:55:39 -04005778 } else {
5779 struct btrfs_file_extent_item *ei;
5780 u8 type;
5781
5782 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
5783 struct btrfs_file_extent_item);
5784 type = btrfs_file_extent_type(path->nodes[0], ei);
5785 if (type == BTRFS_FILE_EXTENT_PREALLOC ||
5786 type == BTRFS_FILE_EXTENT_REG) {
5787 /*
5788 * The send spec does not have a prealloc command yet,
5789 * so just leave a hole for prealloc'ed extents until
5790 * we have enough commands queued up to justify rev'ing
5791 * the send spec.
5792 */
5793 if (type == BTRFS_FILE_EXTENT_PREALLOC) {
5794 ret = 0;
5795 goto out;
5796 }
5797
5798 /* Have a hole, just skip it. */
5799 if (btrfs_file_extent_disk_bytenr(path->nodes[0], ei) == 0) {
5800 ret = 0;
5801 goto out;
5802 }
5803 }
Alexander Block31db9f72012-07-25 23:19:24 +02005804 }
5805
5806 ret = find_extent_clone(sctx, path, key->objectid, key->offset,
5807 sctx->cur_inode_size, &found_clone);
5808 if (ret != -ENOENT && ret < 0)
5809 goto out;
5810
5811 ret = send_write_or_clone(sctx, path, key, found_clone);
Josef Bacik16e75492013-10-22 12:18:51 -04005812 if (ret)
5813 goto out;
5814out_hole:
5815 ret = maybe_send_hole(sctx, path, key);
Alexander Block31db9f72012-07-25 23:19:24 +02005816out:
5817 return ret;
5818}
5819
5820static int process_all_extents(struct send_ctx *sctx)
5821{
5822 int ret;
5823 struct btrfs_root *root;
5824 struct btrfs_path *path;
5825 struct btrfs_key key;
5826 struct btrfs_key found_key;
5827 struct extent_buffer *eb;
5828 int slot;
5829
5830 root = sctx->send_root;
5831 path = alloc_path_for_send();
5832 if (!path)
5833 return -ENOMEM;
5834
5835 key.objectid = sctx->cmp_key->objectid;
5836 key.type = BTRFS_EXTENT_DATA_KEY;
5837 key.offset = 0;
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005838 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5839 if (ret < 0)
5840 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005841
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005842 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02005843 eb = path->nodes[0];
5844 slot = path->slots[0];
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005845
5846 if (slot >= btrfs_header_nritems(eb)) {
5847 ret = btrfs_next_leaf(root, path);
5848 if (ret < 0) {
5849 goto out;
5850 } else if (ret > 0) {
5851 ret = 0;
5852 break;
5853 }
5854 continue;
5855 }
5856
Alexander Block31db9f72012-07-25 23:19:24 +02005857 btrfs_item_key_to_cpu(eb, &found_key, slot);
5858
5859 if (found_key.objectid != key.objectid ||
5860 found_key.type != key.type) {
5861 ret = 0;
5862 goto out;
5863 }
5864
5865 ret = process_extent(sctx, path, &found_key);
5866 if (ret < 0)
5867 goto out;
5868
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005869 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02005870 }
5871
5872out:
5873 btrfs_free_path(path);
5874 return ret;
5875}
5876
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005877static int process_recorded_refs_if_needed(struct send_ctx *sctx, int at_end,
5878 int *pending_move,
5879 int *refs_processed)
Alexander Block31db9f72012-07-25 23:19:24 +02005880{
5881 int ret = 0;
5882
5883 if (sctx->cur_ino == 0)
5884 goto out;
5885 if (!at_end && sctx->cur_ino == sctx->cmp_key->objectid &&
Jan Schmidt96b5bd72012-10-15 08:30:45 +00005886 sctx->cmp_key->type <= BTRFS_INODE_EXTREF_KEY)
Alexander Block31db9f72012-07-25 23:19:24 +02005887 goto out;
5888 if (list_empty(&sctx->new_refs) && list_empty(&sctx->deleted_refs))
5889 goto out;
5890
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005891 ret = process_recorded_refs(sctx, pending_move);
Alexander Blocke479d9b2012-07-28 16:09:35 +02005892 if (ret < 0)
5893 goto out;
5894
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005895 *refs_processed = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005896out:
5897 return ret;
5898}
5899
5900static int finish_inode_if_needed(struct send_ctx *sctx, int at_end)
5901{
5902 int ret = 0;
5903 u64 left_mode;
5904 u64 left_uid;
5905 u64 left_gid;
5906 u64 right_mode;
5907 u64 right_uid;
5908 u64 right_gid;
5909 int need_chmod = 0;
5910 int need_chown = 0;
Filipe Mananaffa7c422018-02-06 20:40:40 +00005911 int need_truncate = 1;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005912 int pending_move = 0;
5913 int refs_processed = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02005914
Filipe Manana46b2f452018-07-24 11:54:04 +01005915 if (sctx->ignore_cur_inode)
5916 return 0;
5917
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005918 ret = process_recorded_refs_if_needed(sctx, at_end, &pending_move,
5919 &refs_processed);
Alexander Block31db9f72012-07-25 23:19:24 +02005920 if (ret < 0)
5921 goto out;
5922
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005923 /*
5924 * We have processed the refs and thus need to advance send_progress.
5925 * Now, calls to get_cur_xxx will take the updated refs of the current
5926 * inode into account.
5927 *
5928 * On the other hand, if our current inode is a directory and couldn't
5929 * be moved/renamed because its parent was renamed/moved too and it has
5930 * a higher inode number, we can only move/rename our current inode
5931 * after we moved/renamed its parent. Therefore in this case operate on
5932 * the old path (pre move/rename) of our current inode, and the
5933 * move/rename will be performed later.
5934 */
5935 if (refs_processed && !pending_move)
5936 sctx->send_progress = sctx->cur_ino + 1;
5937
Alexander Block31db9f72012-07-25 23:19:24 +02005938 if (sctx->cur_ino == 0 || sctx->cur_inode_deleted)
5939 goto out;
5940 if (!at_end && sctx->cmp_key->objectid == sctx->cur_ino)
5941 goto out;
5942
5943 ret = get_inode_info(sctx->send_root, sctx->cur_ino, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02005944 &left_mode, &left_uid, &left_gid, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02005945 if (ret < 0)
5946 goto out;
5947
Alex Lyakase2d044f2012-10-17 13:52:47 +00005948 if (!sctx->parent_root || sctx->cur_inode_new) {
5949 need_chown = 1;
5950 if (!S_ISLNK(sctx->cur_inode_mode))
Alexander Block31db9f72012-07-25 23:19:24 +02005951 need_chmod = 1;
Filipe Mananaffa7c422018-02-06 20:40:40 +00005952 if (sctx->cur_inode_next_write_offset == sctx->cur_inode_size)
5953 need_truncate = 0;
Alex Lyakase2d044f2012-10-17 13:52:47 +00005954 } else {
Filipe Mananaffa7c422018-02-06 20:40:40 +00005955 u64 old_size;
5956
Alex Lyakase2d044f2012-10-17 13:52:47 +00005957 ret = get_inode_info(sctx->parent_root, sctx->cur_ino,
Filipe Mananaffa7c422018-02-06 20:40:40 +00005958 &old_size, NULL, &right_mode, &right_uid,
Alex Lyakase2d044f2012-10-17 13:52:47 +00005959 &right_gid, NULL);
5960 if (ret < 0)
5961 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005962
Alex Lyakase2d044f2012-10-17 13:52:47 +00005963 if (left_uid != right_uid || left_gid != right_gid)
5964 need_chown = 1;
5965 if (!S_ISLNK(sctx->cur_inode_mode) && left_mode != right_mode)
5966 need_chmod = 1;
Filipe Mananaffa7c422018-02-06 20:40:40 +00005967 if ((old_size == sctx->cur_inode_size) ||
5968 (sctx->cur_inode_size > old_size &&
5969 sctx->cur_inode_next_write_offset == sctx->cur_inode_size))
5970 need_truncate = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02005971 }
5972
5973 if (S_ISREG(sctx->cur_inode_mode)) {
Josef Bacik16e75492013-10-22 12:18:51 -04005974 if (need_send_hole(sctx)) {
Filipe Manana766b5e52014-03-30 23:02:53 +01005975 if (sctx->cur_inode_last_extent == (u64)-1 ||
5976 sctx->cur_inode_last_extent <
5977 sctx->cur_inode_size) {
Josef Bacik16e75492013-10-22 12:18:51 -04005978 ret = get_last_extent(sctx, (u64)-1);
5979 if (ret)
5980 goto out;
5981 }
5982 if (sctx->cur_inode_last_extent <
5983 sctx->cur_inode_size) {
5984 ret = send_hole(sctx, sctx->cur_inode_size);
5985 if (ret)
5986 goto out;
5987 }
5988 }
Filipe Mananaffa7c422018-02-06 20:40:40 +00005989 if (need_truncate) {
5990 ret = send_truncate(sctx, sctx->cur_ino,
5991 sctx->cur_inode_gen,
5992 sctx->cur_inode_size);
5993 if (ret < 0)
5994 goto out;
5995 }
Alexander Block31db9f72012-07-25 23:19:24 +02005996 }
5997
5998 if (need_chown) {
5999 ret = send_chown(sctx, sctx->cur_ino, sctx->cur_inode_gen,
6000 left_uid, left_gid);
6001 if (ret < 0)
6002 goto out;
6003 }
6004 if (need_chmod) {
6005 ret = send_chmod(sctx, sctx->cur_ino, sctx->cur_inode_gen,
6006 left_mode);
6007 if (ret < 0)
6008 goto out;
6009 }
6010
Marcos Paulo de Souza89efda52020-05-10 23:15:07 -03006011 ret = send_capabilities(sctx);
6012 if (ret < 0)
6013 goto out;
6014
Alexander Block31db9f72012-07-25 23:19:24 +02006015 /*
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006016 * If other directory inodes depended on our current directory
6017 * inode's move/rename, now do their move/rename operations.
Alexander Block31db9f72012-07-25 23:19:24 +02006018 */
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006019 if (!is_waiting_for_move(sctx, sctx->cur_ino)) {
6020 ret = apply_children_dir_moves(sctx);
6021 if (ret)
6022 goto out;
Filipe Mananafcbd2152014-03-03 12:28:40 +00006023 /*
6024 * Need to send that every time, no matter if it actually
6025 * changed between the two trees as we have done changes to
6026 * the inode before. If our inode is a directory and it's
6027 * waiting to be moved/renamed, we will send its utimes when
6028 * it's moved/renamed, therefore we don't need to do it here.
6029 */
6030 sctx->send_progress = sctx->cur_ino + 1;
6031 ret = send_utimes(sctx, sctx->cur_ino, sctx->cur_inode_gen);
6032 if (ret < 0)
6033 goto out;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006034 }
6035
Alexander Block31db9f72012-07-25 23:19:24 +02006036out:
6037 return ret;
6038}
6039
Filipe Manana46b2f452018-07-24 11:54:04 +01006040struct parent_paths_ctx {
6041 struct list_head *refs;
6042 struct send_ctx *sctx;
6043};
6044
6045static int record_parent_ref(int num, u64 dir, int index, struct fs_path *name,
6046 void *ctx)
6047{
6048 struct parent_paths_ctx *ppctx = ctx;
6049
6050 return record_ref(ppctx->sctx->parent_root, dir, name, ppctx->sctx,
6051 ppctx->refs);
6052}
6053
6054/*
6055 * Issue unlink operations for all paths of the current inode found in the
6056 * parent snapshot.
6057 */
6058static int btrfs_unlink_all_paths(struct send_ctx *sctx)
6059{
6060 LIST_HEAD(deleted_refs);
6061 struct btrfs_path *path;
6062 struct btrfs_key key;
6063 struct parent_paths_ctx ctx;
6064 int ret;
6065
6066 path = alloc_path_for_send();
6067 if (!path)
6068 return -ENOMEM;
6069
6070 key.objectid = sctx->cur_ino;
6071 key.type = BTRFS_INODE_REF_KEY;
6072 key.offset = 0;
6073 ret = btrfs_search_slot(NULL, sctx->parent_root, &key, path, 0, 0);
6074 if (ret < 0)
6075 goto out;
6076
6077 ctx.refs = &deleted_refs;
6078 ctx.sctx = sctx;
6079
6080 while (true) {
6081 struct extent_buffer *eb = path->nodes[0];
6082 int slot = path->slots[0];
6083
6084 if (slot >= btrfs_header_nritems(eb)) {
6085 ret = btrfs_next_leaf(sctx->parent_root, path);
6086 if (ret < 0)
6087 goto out;
6088 else if (ret > 0)
6089 break;
6090 continue;
6091 }
6092
6093 btrfs_item_key_to_cpu(eb, &key, slot);
6094 if (key.objectid != sctx->cur_ino)
6095 break;
6096 if (key.type != BTRFS_INODE_REF_KEY &&
6097 key.type != BTRFS_INODE_EXTREF_KEY)
6098 break;
6099
6100 ret = iterate_inode_ref(sctx->parent_root, path, &key, 1,
6101 record_parent_ref, &ctx);
6102 if (ret < 0)
6103 goto out;
6104
6105 path->slots[0]++;
6106 }
6107
6108 while (!list_empty(&deleted_refs)) {
6109 struct recorded_ref *ref;
6110
6111 ref = list_first_entry(&deleted_refs, struct recorded_ref, list);
6112 ret = send_unlink(sctx, ref->full_path);
6113 if (ret < 0)
6114 goto out;
6115 fs_path_free(ref->full_path);
6116 list_del(&ref->list);
6117 kfree(ref);
6118 }
6119 ret = 0;
6120out:
6121 btrfs_free_path(path);
6122 if (ret)
6123 __free_recorded_refs(&deleted_refs);
6124 return ret;
6125}
6126
Alexander Block31db9f72012-07-25 23:19:24 +02006127static int changed_inode(struct send_ctx *sctx,
6128 enum btrfs_compare_tree_result result)
6129{
6130 int ret = 0;
6131 struct btrfs_key *key = sctx->cmp_key;
6132 struct btrfs_inode_item *left_ii = NULL;
6133 struct btrfs_inode_item *right_ii = NULL;
6134 u64 left_gen = 0;
6135 u64 right_gen = 0;
6136
Alexander Block31db9f72012-07-25 23:19:24 +02006137 sctx->cur_ino = key->objectid;
6138 sctx->cur_inode_new_gen = 0;
Josef Bacik16e75492013-10-22 12:18:51 -04006139 sctx->cur_inode_last_extent = (u64)-1;
Filipe Mananaffa7c422018-02-06 20:40:40 +00006140 sctx->cur_inode_next_write_offset = 0;
Filipe Manana46b2f452018-07-24 11:54:04 +01006141 sctx->ignore_cur_inode = false;
Alexander Blocke479d9b2012-07-28 16:09:35 +02006142
6143 /*
6144 * Set send_progress to current inode. This will tell all get_cur_xxx
6145 * functions that the current inode's refs are not updated yet. Later,
6146 * when process_recorded_refs is finished, it is set to cur_ino + 1.
6147 */
Alexander Block31db9f72012-07-25 23:19:24 +02006148 sctx->send_progress = sctx->cur_ino;
6149
6150 if (result == BTRFS_COMPARE_TREE_NEW ||
6151 result == BTRFS_COMPARE_TREE_CHANGED) {
6152 left_ii = btrfs_item_ptr(sctx->left_path->nodes[0],
6153 sctx->left_path->slots[0],
6154 struct btrfs_inode_item);
6155 left_gen = btrfs_inode_generation(sctx->left_path->nodes[0],
6156 left_ii);
6157 } else {
6158 right_ii = btrfs_item_ptr(sctx->right_path->nodes[0],
6159 sctx->right_path->slots[0],
6160 struct btrfs_inode_item);
6161 right_gen = btrfs_inode_generation(sctx->right_path->nodes[0],
6162 right_ii);
6163 }
6164 if (result == BTRFS_COMPARE_TREE_CHANGED) {
6165 right_ii = btrfs_item_ptr(sctx->right_path->nodes[0],
6166 sctx->right_path->slots[0],
6167 struct btrfs_inode_item);
6168
6169 right_gen = btrfs_inode_generation(sctx->right_path->nodes[0],
6170 right_ii);
Alexander Block6d85ed052012-08-01 14:48:59 +02006171
6172 /*
6173 * The cur_ino = root dir case is special here. We can't treat
6174 * the inode as deleted+reused because it would generate a
6175 * stream that tries to delete/mkdir the root dir.
6176 */
6177 if (left_gen != right_gen &&
6178 sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID)
Alexander Block31db9f72012-07-25 23:19:24 +02006179 sctx->cur_inode_new_gen = 1;
6180 }
6181
Filipe Manana46b2f452018-07-24 11:54:04 +01006182 /*
6183 * Normally we do not find inodes with a link count of zero (orphans)
6184 * because the most common case is to create a snapshot and use it
6185 * for a send operation. However other less common use cases involve
6186 * using a subvolume and send it after turning it to RO mode just
6187 * after deleting all hard links of a file while holding an open
6188 * file descriptor against it or turning a RO snapshot into RW mode,
6189 * keep an open file descriptor against a file, delete it and then
6190 * turn the snapshot back to RO mode before using it for a send
6191 * operation. So if we find such cases, ignore the inode and all its
6192 * items completely if it's a new inode, or if it's a changed inode
6193 * make sure all its previous paths (from the parent snapshot) are all
6194 * unlinked and all other the inode items are ignored.
6195 */
6196 if (result == BTRFS_COMPARE_TREE_NEW ||
6197 result == BTRFS_COMPARE_TREE_CHANGED) {
6198 u32 nlinks;
6199
6200 nlinks = btrfs_inode_nlink(sctx->left_path->nodes[0], left_ii);
6201 if (nlinks == 0) {
6202 sctx->ignore_cur_inode = true;
6203 if (result == BTRFS_COMPARE_TREE_CHANGED)
6204 ret = btrfs_unlink_all_paths(sctx);
6205 goto out;
6206 }
6207 }
6208
Alexander Block31db9f72012-07-25 23:19:24 +02006209 if (result == BTRFS_COMPARE_TREE_NEW) {
6210 sctx->cur_inode_gen = left_gen;
6211 sctx->cur_inode_new = 1;
6212 sctx->cur_inode_deleted = 0;
6213 sctx->cur_inode_size = btrfs_inode_size(
6214 sctx->left_path->nodes[0], left_ii);
6215 sctx->cur_inode_mode = btrfs_inode_mode(
6216 sctx->left_path->nodes[0], left_ii);
Liu Bo644d1942014-02-27 17:29:01 +08006217 sctx->cur_inode_rdev = btrfs_inode_rdev(
6218 sctx->left_path->nodes[0], left_ii);
Alexander Block31db9f72012-07-25 23:19:24 +02006219 if (sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID)
Alexander Block1f4692d2012-07-28 10:42:24 +02006220 ret = send_create_inode_if_needed(sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02006221 } else if (result == BTRFS_COMPARE_TREE_DELETED) {
6222 sctx->cur_inode_gen = right_gen;
6223 sctx->cur_inode_new = 0;
6224 sctx->cur_inode_deleted = 1;
6225 sctx->cur_inode_size = btrfs_inode_size(
6226 sctx->right_path->nodes[0], right_ii);
6227 sctx->cur_inode_mode = btrfs_inode_mode(
6228 sctx->right_path->nodes[0], right_ii);
6229 } else if (result == BTRFS_COMPARE_TREE_CHANGED) {
Alexander Block766702e2012-07-28 14:11:31 +02006230 /*
6231 * We need to do some special handling in case the inode was
6232 * reported as changed with a changed generation number. This
6233 * means that the original inode was deleted and new inode
6234 * reused the same inum. So we have to treat the old inode as
6235 * deleted and the new one as new.
6236 */
Alexander Block31db9f72012-07-25 23:19:24 +02006237 if (sctx->cur_inode_new_gen) {
Alexander Block766702e2012-07-28 14:11:31 +02006238 /*
6239 * First, process the inode as if it was deleted.
6240 */
Alexander Block31db9f72012-07-25 23:19:24 +02006241 sctx->cur_inode_gen = right_gen;
6242 sctx->cur_inode_new = 0;
6243 sctx->cur_inode_deleted = 1;
6244 sctx->cur_inode_size = btrfs_inode_size(
6245 sctx->right_path->nodes[0], right_ii);
6246 sctx->cur_inode_mode = btrfs_inode_mode(
6247 sctx->right_path->nodes[0], right_ii);
6248 ret = process_all_refs(sctx,
6249 BTRFS_COMPARE_TREE_DELETED);
6250 if (ret < 0)
6251 goto out;
6252
Alexander Block766702e2012-07-28 14:11:31 +02006253 /*
6254 * Now process the inode as if it was new.
6255 */
Alexander Block31db9f72012-07-25 23:19:24 +02006256 sctx->cur_inode_gen = left_gen;
6257 sctx->cur_inode_new = 1;
6258 sctx->cur_inode_deleted = 0;
6259 sctx->cur_inode_size = btrfs_inode_size(
6260 sctx->left_path->nodes[0], left_ii);
6261 sctx->cur_inode_mode = btrfs_inode_mode(
6262 sctx->left_path->nodes[0], left_ii);
Liu Bo644d1942014-02-27 17:29:01 +08006263 sctx->cur_inode_rdev = btrfs_inode_rdev(
6264 sctx->left_path->nodes[0], left_ii);
Alexander Block1f4692d2012-07-28 10:42:24 +02006265 ret = send_create_inode_if_needed(sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02006266 if (ret < 0)
6267 goto out;
6268
6269 ret = process_all_refs(sctx, BTRFS_COMPARE_TREE_NEW);
6270 if (ret < 0)
6271 goto out;
Alexander Blocke479d9b2012-07-28 16:09:35 +02006272 /*
6273 * Advance send_progress now as we did not get into
6274 * process_recorded_refs_if_needed in the new_gen case.
6275 */
6276 sctx->send_progress = sctx->cur_ino + 1;
Alexander Block766702e2012-07-28 14:11:31 +02006277
6278 /*
6279 * Now process all extents and xattrs of the inode as if
6280 * they were all new.
6281 */
Alexander Block31db9f72012-07-25 23:19:24 +02006282 ret = process_all_extents(sctx);
6283 if (ret < 0)
6284 goto out;
6285 ret = process_all_new_xattrs(sctx);
6286 if (ret < 0)
6287 goto out;
6288 } else {
6289 sctx->cur_inode_gen = left_gen;
6290 sctx->cur_inode_new = 0;
6291 sctx->cur_inode_new_gen = 0;
6292 sctx->cur_inode_deleted = 0;
6293 sctx->cur_inode_size = btrfs_inode_size(
6294 sctx->left_path->nodes[0], left_ii);
6295 sctx->cur_inode_mode = btrfs_inode_mode(
6296 sctx->left_path->nodes[0], left_ii);
6297 }
6298 }
6299
6300out:
6301 return ret;
6302}
6303
Alexander Block766702e2012-07-28 14:11:31 +02006304/*
6305 * We have to process new refs before deleted refs, but compare_trees gives us
6306 * the new and deleted refs mixed. To fix this, we record the new/deleted refs
6307 * first and later process them in process_recorded_refs.
6308 * For the cur_inode_new_gen case, we skip recording completely because
6309 * changed_inode did already initiate processing of refs. The reason for this is
6310 * that in this case, compare_tree actually compares the refs of 2 different
6311 * inodes. To fix this, process_all_refs is used in changed_inode to handle all
6312 * refs of the right tree as deleted and all refs of the left tree as new.
6313 */
Alexander Block31db9f72012-07-25 23:19:24 +02006314static int changed_ref(struct send_ctx *sctx,
6315 enum btrfs_compare_tree_result result)
6316{
6317 int ret = 0;
6318
Filipe Manana95155582016-08-01 01:50:37 +01006319 if (sctx->cur_ino != sctx->cmp_key->objectid) {
6320 inconsistent_snapshot_error(sctx, result, "reference");
6321 return -EIO;
6322 }
Alexander Block31db9f72012-07-25 23:19:24 +02006323
6324 if (!sctx->cur_inode_new_gen &&
6325 sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID) {
6326 if (result == BTRFS_COMPARE_TREE_NEW)
6327 ret = record_new_ref(sctx);
6328 else if (result == BTRFS_COMPARE_TREE_DELETED)
6329 ret = record_deleted_ref(sctx);
6330 else if (result == BTRFS_COMPARE_TREE_CHANGED)
6331 ret = record_changed_ref(sctx);
6332 }
6333
6334 return ret;
6335}
6336
Alexander Block766702e2012-07-28 14:11:31 +02006337/*
6338 * Process new/deleted/changed xattrs. We skip processing in the
6339 * cur_inode_new_gen case because changed_inode did already initiate processing
6340 * of xattrs. The reason is the same as in changed_ref
6341 */
Alexander Block31db9f72012-07-25 23:19:24 +02006342static int changed_xattr(struct send_ctx *sctx,
6343 enum btrfs_compare_tree_result result)
6344{
6345 int ret = 0;
6346
Filipe Manana95155582016-08-01 01:50:37 +01006347 if (sctx->cur_ino != sctx->cmp_key->objectid) {
6348 inconsistent_snapshot_error(sctx, result, "xattr");
6349 return -EIO;
6350 }
Alexander Block31db9f72012-07-25 23:19:24 +02006351
6352 if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) {
6353 if (result == BTRFS_COMPARE_TREE_NEW)
6354 ret = process_new_xattr(sctx);
6355 else if (result == BTRFS_COMPARE_TREE_DELETED)
6356 ret = process_deleted_xattr(sctx);
6357 else if (result == BTRFS_COMPARE_TREE_CHANGED)
6358 ret = process_changed_xattr(sctx);
6359 }
6360
6361 return ret;
6362}
6363
Alexander Block766702e2012-07-28 14:11:31 +02006364/*
6365 * Process new/deleted/changed extents. We skip processing in the
6366 * cur_inode_new_gen case because changed_inode did already initiate processing
6367 * of extents. The reason is the same as in changed_ref
6368 */
Alexander Block31db9f72012-07-25 23:19:24 +02006369static int changed_extent(struct send_ctx *sctx,
6370 enum btrfs_compare_tree_result result)
6371{
6372 int ret = 0;
6373
Filipe Mananab4f9a1a2019-07-17 13:23:39 +01006374 /*
6375 * We have found an extent item that changed without the inode item
6376 * having changed. This can happen either after relocation (where the
6377 * disk_bytenr of an extent item is replaced at
6378 * relocation.c:replace_file_extents()) or after deduplication into a
6379 * file in both the parent and send snapshots (where an extent item can
6380 * get modified or replaced with a new one). Note that deduplication
6381 * updates the inode item, but it only changes the iversion (sequence
6382 * field in the inode item) of the inode, so if a file is deduplicated
6383 * the same amount of times in both the parent and send snapshots, its
6384 * iversion becames the same in both snapshots, whence the inode item is
6385 * the same on both snapshots.
6386 */
6387 if (sctx->cur_ino != sctx->cmp_key->objectid)
6388 return 0;
Alexander Block31db9f72012-07-25 23:19:24 +02006389
6390 if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) {
6391 if (result != BTRFS_COMPARE_TREE_DELETED)
6392 ret = process_extent(sctx, sctx->left_path,
6393 sctx->cmp_key);
6394 }
6395
6396 return ret;
6397}
6398
Josef Bacikba5e8f22013-08-16 16:52:55 -04006399static int dir_changed(struct send_ctx *sctx, u64 dir)
6400{
6401 u64 orig_gen, new_gen;
6402 int ret;
6403
6404 ret = get_inode_info(sctx->send_root, dir, NULL, &new_gen, NULL, NULL,
6405 NULL, NULL);
6406 if (ret)
6407 return ret;
6408
6409 ret = get_inode_info(sctx->parent_root, dir, NULL, &orig_gen, NULL,
6410 NULL, NULL, NULL);
6411 if (ret)
6412 return ret;
6413
6414 return (orig_gen != new_gen) ? 1 : 0;
6415}
6416
6417static int compare_refs(struct send_ctx *sctx, struct btrfs_path *path,
6418 struct btrfs_key *key)
6419{
6420 struct btrfs_inode_extref *extref;
6421 struct extent_buffer *leaf;
6422 u64 dirid = 0, last_dirid = 0;
6423 unsigned long ptr;
6424 u32 item_size;
6425 u32 cur_offset = 0;
6426 int ref_name_len;
6427 int ret = 0;
6428
6429 /* Easy case, just check this one dirid */
6430 if (key->type == BTRFS_INODE_REF_KEY) {
6431 dirid = key->offset;
6432
6433 ret = dir_changed(sctx, dirid);
6434 goto out;
6435 }
6436
6437 leaf = path->nodes[0];
6438 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
6439 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
6440 while (cur_offset < item_size) {
6441 extref = (struct btrfs_inode_extref *)(ptr +
6442 cur_offset);
6443 dirid = btrfs_inode_extref_parent(leaf, extref);
6444 ref_name_len = btrfs_inode_extref_name_len(leaf, extref);
6445 cur_offset += ref_name_len + sizeof(*extref);
6446 if (dirid == last_dirid)
6447 continue;
6448 ret = dir_changed(sctx, dirid);
6449 if (ret)
6450 break;
6451 last_dirid = dirid;
6452 }
6453out:
6454 return ret;
6455}
6456
Alexander Block766702e2012-07-28 14:11:31 +02006457/*
6458 * Updates compare related fields in sctx and simply forwards to the actual
6459 * changed_xxx functions.
6460 */
Nikolay Borisovee8c4942017-08-21 12:43:45 +03006461static int changed_cb(struct btrfs_path *left_path,
Alexander Block31db9f72012-07-25 23:19:24 +02006462 struct btrfs_path *right_path,
6463 struct btrfs_key *key,
6464 enum btrfs_compare_tree_result result,
6465 void *ctx)
6466{
6467 int ret = 0;
6468 struct send_ctx *sctx = ctx;
6469
Josef Bacikba5e8f22013-08-16 16:52:55 -04006470 if (result == BTRFS_COMPARE_TREE_SAME) {
Josef Bacik16e75492013-10-22 12:18:51 -04006471 if (key->type == BTRFS_INODE_REF_KEY ||
6472 key->type == BTRFS_INODE_EXTREF_KEY) {
6473 ret = compare_refs(sctx, left_path, key);
6474 if (!ret)
6475 return 0;
6476 if (ret < 0)
6477 return ret;
6478 } else if (key->type == BTRFS_EXTENT_DATA_KEY) {
6479 return maybe_send_hole(sctx, left_path, key);
6480 } else {
Josef Bacikba5e8f22013-08-16 16:52:55 -04006481 return 0;
Josef Bacik16e75492013-10-22 12:18:51 -04006482 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04006483 result = BTRFS_COMPARE_TREE_CHANGED;
6484 ret = 0;
6485 }
6486
Alexander Block31db9f72012-07-25 23:19:24 +02006487 sctx->left_path = left_path;
6488 sctx->right_path = right_path;
6489 sctx->cmp_key = key;
6490
6491 ret = finish_inode_if_needed(sctx, 0);
6492 if (ret < 0)
6493 goto out;
6494
Alexander Block2981e222012-08-01 14:47:03 +02006495 /* Ignore non-FS objects */
6496 if (key->objectid == BTRFS_FREE_INO_OBJECTID ||
6497 key->objectid == BTRFS_FREE_SPACE_OBJECTID)
6498 goto out;
6499
Filipe Manana46b2f452018-07-24 11:54:04 +01006500 if (key->type == BTRFS_INODE_ITEM_KEY) {
Alexander Block31db9f72012-07-25 23:19:24 +02006501 ret = changed_inode(sctx, result);
Filipe Manana46b2f452018-07-24 11:54:04 +01006502 } else if (!sctx->ignore_cur_inode) {
6503 if (key->type == BTRFS_INODE_REF_KEY ||
6504 key->type == BTRFS_INODE_EXTREF_KEY)
6505 ret = changed_ref(sctx, result);
6506 else if (key->type == BTRFS_XATTR_ITEM_KEY)
6507 ret = changed_xattr(sctx, result);
6508 else if (key->type == BTRFS_EXTENT_DATA_KEY)
6509 ret = changed_extent(sctx, result);
6510 }
Alexander Block31db9f72012-07-25 23:19:24 +02006511
6512out:
6513 return ret;
6514}
6515
6516static int full_send_tree(struct send_ctx *sctx)
6517{
6518 int ret;
Alexander Block31db9f72012-07-25 23:19:24 +02006519 struct btrfs_root *send_root = sctx->send_root;
6520 struct btrfs_key key;
Alexander Block31db9f72012-07-25 23:19:24 +02006521 struct btrfs_path *path;
6522 struct extent_buffer *eb;
6523 int slot;
Alexander Block31db9f72012-07-25 23:19:24 +02006524
6525 path = alloc_path_for_send();
6526 if (!path)
6527 return -ENOMEM;
6528
Alexander Block31db9f72012-07-25 23:19:24 +02006529 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
6530 key.type = BTRFS_INODE_ITEM_KEY;
6531 key.offset = 0;
6532
Alexander Block31db9f72012-07-25 23:19:24 +02006533 ret = btrfs_search_slot_for_read(send_root, &key, path, 1, 0);
6534 if (ret < 0)
6535 goto out;
6536 if (ret)
6537 goto out_finish;
6538
6539 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02006540 eb = path->nodes[0];
6541 slot = path->slots[0];
Filipe Mananaca5d2ba2018-07-23 09:10:09 +01006542 btrfs_item_key_to_cpu(eb, &key, slot);
Alexander Block31db9f72012-07-25 23:19:24 +02006543
Filipe Mananaca5d2ba2018-07-23 09:10:09 +01006544 ret = changed_cb(path, NULL, &key,
Nikolay Borisovee8c4942017-08-21 12:43:45 +03006545 BTRFS_COMPARE_TREE_NEW, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02006546 if (ret < 0)
6547 goto out;
6548
Alexander Block31db9f72012-07-25 23:19:24 +02006549 ret = btrfs_next_item(send_root, path);
6550 if (ret < 0)
6551 goto out;
6552 if (ret) {
6553 ret = 0;
6554 break;
6555 }
6556 }
6557
6558out_finish:
6559 ret = finish_inode_if_needed(sctx, 1);
6560
6561out:
6562 btrfs_free_path(path);
Alexander Block31db9f72012-07-25 23:19:24 +02006563 return ret;
6564}
6565
David Sterba18d0f5c2019-08-21 19:12:59 +02006566static int tree_move_down(struct btrfs_path *path, int *level)
6567{
6568 struct extent_buffer *eb;
6569
6570 BUG_ON(*level == 0);
6571 eb = btrfs_read_node_slot(path->nodes[*level], path->slots[*level]);
6572 if (IS_ERR(eb))
6573 return PTR_ERR(eb);
6574
6575 path->nodes[*level - 1] = eb;
6576 path->slots[*level - 1] = 0;
6577 (*level)--;
6578 return 0;
6579}
6580
6581static int tree_move_next_or_upnext(struct btrfs_path *path,
6582 int *level, int root_level)
6583{
6584 int ret = 0;
6585 int nritems;
6586 nritems = btrfs_header_nritems(path->nodes[*level]);
6587
6588 path->slots[*level]++;
6589
6590 while (path->slots[*level] >= nritems) {
6591 if (*level == root_level)
6592 return -1;
6593
6594 /* move upnext */
6595 path->slots[*level] = 0;
6596 free_extent_buffer(path->nodes[*level]);
6597 path->nodes[*level] = NULL;
6598 (*level)++;
6599 path->slots[*level]++;
6600
6601 nritems = btrfs_header_nritems(path->nodes[*level]);
6602 ret = 1;
6603 }
6604 return ret;
6605}
6606
6607/*
6608 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
6609 * or down.
6610 */
6611static int tree_advance(struct btrfs_path *path,
6612 int *level, int root_level,
6613 int allow_down,
6614 struct btrfs_key *key)
6615{
6616 int ret;
6617
6618 if (*level == 0 || !allow_down) {
6619 ret = tree_move_next_or_upnext(path, level, root_level);
6620 } else {
6621 ret = tree_move_down(path, level);
6622 }
6623 if (ret >= 0) {
6624 if (*level == 0)
6625 btrfs_item_key_to_cpu(path->nodes[*level], key,
6626 path->slots[*level]);
6627 else
6628 btrfs_node_key_to_cpu(path->nodes[*level], key,
6629 path->slots[*level]);
6630 }
6631 return ret;
6632}
6633
6634static int tree_compare_item(struct btrfs_path *left_path,
6635 struct btrfs_path *right_path,
6636 char *tmp_buf)
6637{
6638 int cmp;
6639 int len1, len2;
6640 unsigned long off1, off2;
6641
6642 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
6643 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
6644 if (len1 != len2)
6645 return 1;
6646
6647 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
6648 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
6649 right_path->slots[0]);
6650
6651 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
6652
6653 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
6654 if (cmp)
6655 return 1;
6656 return 0;
6657}
6658
6659/*
6660 * This function compares two trees and calls the provided callback for
6661 * every changed/new/deleted item it finds.
6662 * If shared tree blocks are encountered, whole subtrees are skipped, making
6663 * the compare pretty fast on snapshotted subvolumes.
6664 *
6665 * This currently works on commit roots only. As commit roots are read only,
6666 * we don't do any locking. The commit roots are protected with transactions.
6667 * Transactions are ended and rejoined when a commit is tried in between.
6668 *
6669 * This function checks for modifications done to the trees while comparing.
6670 * If it detects a change, it aborts immediately.
6671 */
6672static int btrfs_compare_trees(struct btrfs_root *left_root,
David Sterba1b51d6f2020-08-17 12:16:57 +02006673 struct btrfs_root *right_root, void *ctx)
David Sterba18d0f5c2019-08-21 19:12:59 +02006674{
6675 struct btrfs_fs_info *fs_info = left_root->fs_info;
6676 int ret;
6677 int cmp;
6678 struct btrfs_path *left_path = NULL;
6679 struct btrfs_path *right_path = NULL;
6680 struct btrfs_key left_key;
6681 struct btrfs_key right_key;
6682 char *tmp_buf = NULL;
6683 int left_root_level;
6684 int right_root_level;
6685 int left_level;
6686 int right_level;
6687 int left_end_reached;
6688 int right_end_reached;
6689 int advance_left;
6690 int advance_right;
6691 u64 left_blockptr;
6692 u64 right_blockptr;
6693 u64 left_gen;
6694 u64 right_gen;
6695
6696 left_path = btrfs_alloc_path();
6697 if (!left_path) {
6698 ret = -ENOMEM;
6699 goto out;
6700 }
6701 right_path = btrfs_alloc_path();
6702 if (!right_path) {
6703 ret = -ENOMEM;
6704 goto out;
6705 }
6706
6707 tmp_buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
6708 if (!tmp_buf) {
6709 ret = -ENOMEM;
6710 goto out;
6711 }
6712
6713 left_path->search_commit_root = 1;
6714 left_path->skip_locking = 1;
6715 right_path->search_commit_root = 1;
6716 right_path->skip_locking = 1;
6717
6718 /*
6719 * Strategy: Go to the first items of both trees. Then do
6720 *
6721 * If both trees are at level 0
6722 * Compare keys of current items
6723 * If left < right treat left item as new, advance left tree
6724 * and repeat
6725 * If left > right treat right item as deleted, advance right tree
6726 * and repeat
6727 * If left == right do deep compare of items, treat as changed if
6728 * needed, advance both trees and repeat
6729 * If both trees are at the same level but not at level 0
6730 * Compare keys of current nodes/leafs
6731 * If left < right advance left tree and repeat
6732 * If left > right advance right tree and repeat
6733 * If left == right compare blockptrs of the next nodes/leafs
6734 * If they match advance both trees but stay at the same level
6735 * and repeat
6736 * If they don't match advance both trees while allowing to go
6737 * deeper and repeat
6738 * If tree levels are different
6739 * Advance the tree that needs it and repeat
6740 *
6741 * Advancing a tree means:
6742 * If we are at level 0, try to go to the next slot. If that's not
6743 * possible, go one level up and repeat. Stop when we found a level
6744 * where we could go to the next slot. We may at this point be on a
6745 * node or a leaf.
6746 *
6747 * If we are not at level 0 and not on shared tree blocks, go one
6748 * level deeper.
6749 *
6750 * If we are not at level 0 and on shared tree blocks, go one slot to
6751 * the right if possible or go up and right.
6752 */
6753
6754 down_read(&fs_info->commit_root_sem);
6755 left_level = btrfs_header_level(left_root->commit_root);
6756 left_root_level = left_level;
6757 left_path->nodes[left_level] =
6758 btrfs_clone_extent_buffer(left_root->commit_root);
6759 if (!left_path->nodes[left_level]) {
6760 up_read(&fs_info->commit_root_sem);
6761 ret = -ENOMEM;
6762 goto out;
6763 }
6764
6765 right_level = btrfs_header_level(right_root->commit_root);
6766 right_root_level = right_level;
6767 right_path->nodes[right_level] =
6768 btrfs_clone_extent_buffer(right_root->commit_root);
6769 if (!right_path->nodes[right_level]) {
6770 up_read(&fs_info->commit_root_sem);
6771 ret = -ENOMEM;
6772 goto out;
6773 }
6774 up_read(&fs_info->commit_root_sem);
6775
6776 if (left_level == 0)
6777 btrfs_item_key_to_cpu(left_path->nodes[left_level],
6778 &left_key, left_path->slots[left_level]);
6779 else
6780 btrfs_node_key_to_cpu(left_path->nodes[left_level],
6781 &left_key, left_path->slots[left_level]);
6782 if (right_level == 0)
6783 btrfs_item_key_to_cpu(right_path->nodes[right_level],
6784 &right_key, right_path->slots[right_level]);
6785 else
6786 btrfs_node_key_to_cpu(right_path->nodes[right_level],
6787 &right_key, right_path->slots[right_level]);
6788
6789 left_end_reached = right_end_reached = 0;
6790 advance_left = advance_right = 0;
6791
6792 while (1) {
Nikolay Borisov6af112b2019-09-04 19:33:58 +03006793 cond_resched();
David Sterba18d0f5c2019-08-21 19:12:59 +02006794 if (advance_left && !left_end_reached) {
6795 ret = tree_advance(left_path, &left_level,
6796 left_root_level,
6797 advance_left != ADVANCE_ONLY_NEXT,
6798 &left_key);
6799 if (ret == -1)
6800 left_end_reached = ADVANCE;
6801 else if (ret < 0)
6802 goto out;
6803 advance_left = 0;
6804 }
6805 if (advance_right && !right_end_reached) {
6806 ret = tree_advance(right_path, &right_level,
6807 right_root_level,
6808 advance_right != ADVANCE_ONLY_NEXT,
6809 &right_key);
6810 if (ret == -1)
6811 right_end_reached = ADVANCE;
6812 else if (ret < 0)
6813 goto out;
6814 advance_right = 0;
6815 }
6816
6817 if (left_end_reached && right_end_reached) {
6818 ret = 0;
6819 goto out;
6820 } else if (left_end_reached) {
6821 if (right_level == 0) {
6822 ret = changed_cb(left_path, right_path,
6823 &right_key,
6824 BTRFS_COMPARE_TREE_DELETED,
6825 ctx);
6826 if (ret < 0)
6827 goto out;
6828 }
6829 advance_right = ADVANCE;
6830 continue;
6831 } else if (right_end_reached) {
6832 if (left_level == 0) {
6833 ret = changed_cb(left_path, right_path,
6834 &left_key,
6835 BTRFS_COMPARE_TREE_NEW,
6836 ctx);
6837 if (ret < 0)
6838 goto out;
6839 }
6840 advance_left = ADVANCE;
6841 continue;
6842 }
6843
6844 if (left_level == 0 && right_level == 0) {
6845 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
6846 if (cmp < 0) {
6847 ret = changed_cb(left_path, right_path,
6848 &left_key,
6849 BTRFS_COMPARE_TREE_NEW,
6850 ctx);
6851 if (ret < 0)
6852 goto out;
6853 advance_left = ADVANCE;
6854 } else if (cmp > 0) {
6855 ret = changed_cb(left_path, right_path,
6856 &right_key,
6857 BTRFS_COMPARE_TREE_DELETED,
6858 ctx);
6859 if (ret < 0)
6860 goto out;
6861 advance_right = ADVANCE;
6862 } else {
6863 enum btrfs_compare_tree_result result;
6864
6865 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
6866 ret = tree_compare_item(left_path, right_path,
6867 tmp_buf);
6868 if (ret)
6869 result = BTRFS_COMPARE_TREE_CHANGED;
6870 else
6871 result = BTRFS_COMPARE_TREE_SAME;
6872 ret = changed_cb(left_path, right_path,
6873 &left_key, result, ctx);
6874 if (ret < 0)
6875 goto out;
6876 advance_left = ADVANCE;
6877 advance_right = ADVANCE;
6878 }
6879 } else if (left_level == right_level) {
6880 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
6881 if (cmp < 0) {
6882 advance_left = ADVANCE;
6883 } else if (cmp > 0) {
6884 advance_right = ADVANCE;
6885 } else {
6886 left_blockptr = btrfs_node_blockptr(
6887 left_path->nodes[left_level],
6888 left_path->slots[left_level]);
6889 right_blockptr = btrfs_node_blockptr(
6890 right_path->nodes[right_level],
6891 right_path->slots[right_level]);
6892 left_gen = btrfs_node_ptr_generation(
6893 left_path->nodes[left_level],
6894 left_path->slots[left_level]);
6895 right_gen = btrfs_node_ptr_generation(
6896 right_path->nodes[right_level],
6897 right_path->slots[right_level]);
6898 if (left_blockptr == right_blockptr &&
6899 left_gen == right_gen) {
6900 /*
6901 * As we're on a shared block, don't
6902 * allow to go deeper.
6903 */
6904 advance_left = ADVANCE_ONLY_NEXT;
6905 advance_right = ADVANCE_ONLY_NEXT;
6906 } else {
6907 advance_left = ADVANCE;
6908 advance_right = ADVANCE;
6909 }
6910 }
6911 } else if (left_level < right_level) {
6912 advance_right = ADVANCE;
6913 } else {
6914 advance_left = ADVANCE;
6915 }
6916 }
6917
6918out:
6919 btrfs_free_path(left_path);
6920 btrfs_free_path(right_path);
6921 kvfree(tmp_buf);
6922 return ret;
6923}
6924
Alexander Block31db9f72012-07-25 23:19:24 +02006925static int send_subvol(struct send_ctx *sctx)
6926{
6927 int ret;
6928
Stefan Behrensc2c71322013-04-10 17:10:52 +00006929 if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_STREAM_HEADER)) {
6930 ret = send_header(sctx);
6931 if (ret < 0)
6932 goto out;
6933 }
Alexander Block31db9f72012-07-25 23:19:24 +02006934
6935 ret = send_subvol_begin(sctx);
6936 if (ret < 0)
6937 goto out;
6938
6939 if (sctx->parent_root) {
David Sterba1b51d6f2020-08-17 12:16:57 +02006940 ret = btrfs_compare_trees(sctx->send_root, sctx->parent_root, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02006941 if (ret < 0)
6942 goto out;
6943 ret = finish_inode_if_needed(sctx, 1);
6944 if (ret < 0)
6945 goto out;
6946 } else {
6947 ret = full_send_tree(sctx);
6948 if (ret < 0)
6949 goto out;
6950 }
6951
6952out:
Alexander Block31db9f72012-07-25 23:19:24 +02006953 free_recorded_refs(sctx);
6954 return ret;
6955}
6956
Filipe Mananae5fa8f82014-10-21 11:11:41 +01006957/*
6958 * If orphan cleanup did remove any orphans from a root, it means the tree
6959 * was modified and therefore the commit root is not the same as the current
6960 * root anymore. This is a problem, because send uses the commit root and
6961 * therefore can see inode items that don't exist in the current root anymore,
6962 * and for example make calls to btrfs_iget, which will do tree lookups based
6963 * on the current root and not on the commit root. Those lookups will fail,
6964 * returning a -ESTALE error, and making send fail with that error. So make
6965 * sure a send does not see any orphans we have just removed, and that it will
6966 * see the same inodes regardless of whether a transaction commit happened
6967 * before it started (meaning that the commit root will be the same as the
6968 * current root) or not.
6969 */
6970static int ensure_commit_roots_uptodate(struct send_ctx *sctx)
6971{
6972 int i;
6973 struct btrfs_trans_handle *trans = NULL;
6974
6975again:
6976 if (sctx->parent_root &&
6977 sctx->parent_root->node != sctx->parent_root->commit_root)
6978 goto commit_trans;
6979
6980 for (i = 0; i < sctx->clone_roots_cnt; i++)
6981 if (sctx->clone_roots[i].root->node !=
6982 sctx->clone_roots[i].root->commit_root)
6983 goto commit_trans;
6984
6985 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006986 return btrfs_end_transaction(trans);
Filipe Mananae5fa8f82014-10-21 11:11:41 +01006987
6988 return 0;
6989
6990commit_trans:
6991 /* Use any root, all fs roots will get their commit roots updated. */
6992 if (!trans) {
6993 trans = btrfs_join_transaction(sctx->send_root);
6994 if (IS_ERR(trans))
6995 return PTR_ERR(trans);
6996 goto again;
6997 }
6998
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006999 return btrfs_commit_transaction(trans);
Filipe Mananae5fa8f82014-10-21 11:11:41 +01007000}
7001
Filipe Manana9f89d5d2019-04-15 09:29:36 +01007002/*
7003 * Make sure any existing dellaloc is flushed for any root used by a send
7004 * operation so that we do not miss any data and we do not race with writeback
7005 * finishing and changing a tree while send is using the tree. This could
7006 * happen if a subvolume is in RW mode, has delalloc, is turned to RO mode and
7007 * a send operation then uses the subvolume.
7008 * After flushing delalloc ensure_commit_roots_uptodate() must be called.
7009 */
7010static int flush_delalloc_roots(struct send_ctx *sctx)
7011{
7012 struct btrfs_root *root = sctx->parent_root;
7013 int ret;
7014 int i;
7015
7016 if (root) {
7017 ret = btrfs_start_delalloc_snapshot(root);
7018 if (ret)
7019 return ret;
7020 btrfs_wait_ordered_extents(root, U64_MAX, 0, U64_MAX);
7021 }
7022
7023 for (i = 0; i < sctx->clone_roots_cnt; i++) {
7024 root = sctx->clone_roots[i].root;
7025 ret = btrfs_start_delalloc_snapshot(root);
7026 if (ret)
7027 return ret;
7028 btrfs_wait_ordered_extents(root, U64_MAX, 0, U64_MAX);
7029 }
7030
7031 return 0;
7032}
7033
David Sterba66ef7d62013-12-17 15:07:20 +01007034static void btrfs_root_dec_send_in_progress(struct btrfs_root* root)
7035{
7036 spin_lock(&root->root_item_lock);
7037 root->send_in_progress--;
7038 /*
7039 * Not much left to do, we don't know why it's unbalanced and
7040 * can't blindly reset it to 0.
7041 */
7042 if (root->send_in_progress < 0)
7043 btrfs_err(root->fs_info,
Colin Ian Kingf5686e32018-05-04 12:11:12 +01007044 "send_in_progress unbalanced %d root %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007045 root->send_in_progress, root->root_key.objectid);
David Sterba66ef7d62013-12-17 15:07:20 +01007046 spin_unlock(&root->root_item_lock);
7047}
7048
Filipe Manana62d54f32019-04-22 16:43:42 +01007049static void dedupe_in_progress_warn(const struct btrfs_root *root)
7050{
7051 btrfs_warn_rl(root->fs_info,
7052"cannot use root %llu for send while deduplications on it are in progress (%d in progress)",
7053 root->root_key.objectid, root->dedupe_in_progress);
7054}
7055
Josef Bacik2351f432017-09-27 10:43:13 -04007056long btrfs_ioctl_send(struct file *mnt_file, struct btrfs_ioctl_send_args *arg)
Alexander Block31db9f72012-07-25 23:19:24 +02007057{
7058 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007059 struct btrfs_root *send_root = BTRFS_I(file_inode(mnt_file))->root;
7060 struct btrfs_fs_info *fs_info = send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02007061 struct btrfs_root *clone_root;
Alexander Block31db9f72012-07-25 23:19:24 +02007062 struct send_ctx *sctx = NULL;
7063 u32 i;
7064 u64 *clone_sources_tmp = NULL;
David Sterba2c686532013-12-16 17:34:17 +01007065 int clone_sources_to_rollback = 0;
David Sterbae55d1152016-04-11 18:52:02 +02007066 unsigned alloc_size;
Wang Shilong896c14f2014-01-07 17:25:18 +08007067 int sort_clone_roots = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02007068
7069 if (!capable(CAP_SYS_ADMIN))
7070 return -EPERM;
7071
Josef Bacik139f8072013-05-20 11:26:50 -04007072 /*
David Sterba2c686532013-12-16 17:34:17 +01007073 * The subvolume must remain read-only during send, protect against
David Sterba521e0542014-04-15 16:41:44 +02007074 * making it RW. This also protects against deletion.
David Sterba2c686532013-12-16 17:34:17 +01007075 */
7076 spin_lock(&send_root->root_item_lock);
Filipe Manana62d54f32019-04-22 16:43:42 +01007077 if (btrfs_root_readonly(send_root) && send_root->dedupe_in_progress) {
7078 dedupe_in_progress_warn(send_root);
7079 spin_unlock(&send_root->root_item_lock);
7080 return -EAGAIN;
7081 }
David Sterba2c686532013-12-16 17:34:17 +01007082 send_root->send_in_progress++;
7083 spin_unlock(&send_root->root_item_lock);
7084
7085 /*
David Sterba2c686532013-12-16 17:34:17 +01007086 * Userspace tools do the checks and warn the user if it's
7087 * not RO.
7088 */
7089 if (!btrfs_root_readonly(send_root)) {
7090 ret = -EPERM;
7091 goto out;
7092 }
7093
Dan Carpenter457ae722017-03-17 23:51:20 +03007094 /*
7095 * Check that we don't overflow at later allocations, we request
7096 * clone_sources_count + 1 items, and compare to unsigned long inside
7097 * access_ok.
7098 */
Dan Carpenterf5ecec32016-04-13 09:40:59 +03007099 if (arg->clone_sources_count >
Dan Carpenter457ae722017-03-17 23:51:20 +03007100 ULONG_MAX / sizeof(struct clone_root) - 1) {
Dan Carpenterf5ecec32016-04-13 09:40:59 +03007101 ret = -EINVAL;
7102 goto out;
7103 }
7104
Stefan Behrensc2c71322013-04-10 17:10:52 +00007105 if (arg->flags & ~BTRFS_SEND_FLAG_MASK) {
Mark Fashehcb95e7b2013-02-04 20:54:57 +00007106 ret = -EINVAL;
7107 goto out;
7108 }
7109
David Sterbae780b0d2016-01-18 18:42:13 +01007110 sctx = kzalloc(sizeof(struct send_ctx), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02007111 if (!sctx) {
7112 ret = -ENOMEM;
7113 goto out;
7114 }
7115
7116 INIT_LIST_HEAD(&sctx->new_refs);
7117 INIT_LIST_HEAD(&sctx->deleted_refs);
David Sterbae780b0d2016-01-18 18:42:13 +01007118 INIT_RADIX_TREE(&sctx->name_cache, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02007119 INIT_LIST_HEAD(&sctx->name_cache_list);
7120
Mark Fashehcb95e7b2013-02-04 20:54:57 +00007121 sctx->flags = arg->flags;
7122
Alexander Block31db9f72012-07-25 23:19:24 +02007123 sctx->send_filp = fget(arg->send_fd);
Tsutomu Itohecc7ada2013-04-19 01:04:46 +00007124 if (!sctx->send_filp) {
7125 ret = -EBADF;
Alexander Block31db9f72012-07-25 23:19:24 +02007126 goto out;
7127 }
7128
Alexander Block31db9f72012-07-25 23:19:24 +02007129 sctx->send_root = send_root;
David Sterba521e0542014-04-15 16:41:44 +02007130 /*
7131 * Unlikely but possible, if the subvolume is marked for deletion but
7132 * is slow to remove the directory entry, send can still be started
7133 */
7134 if (btrfs_root_dead(sctx->send_root)) {
7135 ret = -EPERM;
7136 goto out;
7137 }
7138
Alexander Block31db9f72012-07-25 23:19:24 +02007139 sctx->clone_roots_cnt = arg->clone_sources_count;
7140
7141 sctx->send_max_size = BTRFS_SEND_BUF_SIZE;
Michal Hocko752ade62017-05-08 15:57:27 -07007142 sctx->send_buf = kvmalloc(sctx->send_max_size, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02007143 if (!sctx->send_buf) {
Michal Hocko752ade62017-05-08 15:57:27 -07007144 ret = -ENOMEM;
7145 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02007146 }
7147
Michal Hocko752ade62017-05-08 15:57:27 -07007148 sctx->read_buf = kvmalloc(BTRFS_SEND_READ_SIZE, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02007149 if (!sctx->read_buf) {
Michal Hocko752ade62017-05-08 15:57:27 -07007150 ret = -ENOMEM;
7151 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02007152 }
7153
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00007154 sctx->pending_dir_moves = RB_ROOT;
7155 sctx->waiting_dir_moves = RB_ROOT;
Filipe Manana9dc44212014-02-19 14:31:44 +00007156 sctx->orphan_dirs = RB_ROOT;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00007157
David Sterbae55d1152016-04-11 18:52:02 +02007158 alloc_size = sizeof(struct clone_root) * (arg->clone_sources_count + 1);
7159
David Sterba818e0102017-05-31 18:40:02 +02007160 sctx->clone_roots = kzalloc(alloc_size, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02007161 if (!sctx->clone_roots) {
David Sterba818e0102017-05-31 18:40:02 +02007162 ret = -ENOMEM;
7163 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02007164 }
7165
David Sterbae55d1152016-04-11 18:52:02 +02007166 alloc_size = arg->clone_sources_count * sizeof(*arg->clone_sources);
7167
Alexander Block31db9f72012-07-25 23:19:24 +02007168 if (arg->clone_sources_count) {
Michal Hocko752ade62017-05-08 15:57:27 -07007169 clone_sources_tmp = kvmalloc(alloc_size, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02007170 if (!clone_sources_tmp) {
Michal Hocko752ade62017-05-08 15:57:27 -07007171 ret = -ENOMEM;
7172 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02007173 }
7174
7175 ret = copy_from_user(clone_sources_tmp, arg->clone_sources,
David Sterbae55d1152016-04-11 18:52:02 +02007176 alloc_size);
Alexander Block31db9f72012-07-25 23:19:24 +02007177 if (ret) {
7178 ret = -EFAULT;
7179 goto out;
7180 }
7181
7182 for (i = 0; i < arg->clone_sources_count; i++) {
David Sterba56e93572020-05-15 19:35:55 +02007183 clone_root = btrfs_get_fs_root(fs_info,
7184 clone_sources_tmp[i], true);
Alexander Block31db9f72012-07-25 23:19:24 +02007185 if (IS_ERR(clone_root)) {
7186 ret = PTR_ERR(clone_root);
7187 goto out;
7188 }
David Sterba2c686532013-12-16 17:34:17 +01007189 spin_lock(&clone_root->root_item_lock);
Filipe Manana5cc2b172015-03-02 20:53:52 +00007190 if (!btrfs_root_readonly(clone_root) ||
7191 btrfs_root_dead(clone_root)) {
David Sterba2c686532013-12-16 17:34:17 +01007192 spin_unlock(&clone_root->root_item_lock);
Josef Bacik00246522020-01-24 09:33:01 -05007193 btrfs_put_root(clone_root);
David Sterba2c686532013-12-16 17:34:17 +01007194 ret = -EPERM;
7195 goto out;
7196 }
Filipe Manana62d54f32019-04-22 16:43:42 +01007197 if (clone_root->dedupe_in_progress) {
7198 dedupe_in_progress_warn(clone_root);
7199 spin_unlock(&clone_root->root_item_lock);
Josef Bacik00246522020-01-24 09:33:01 -05007200 btrfs_put_root(clone_root);
Filipe Manana62d54f32019-04-22 16:43:42 +01007201 ret = -EAGAIN;
7202 goto out;
7203 }
Filipe Manana2f1f4652015-03-02 20:53:53 +00007204 clone_root->send_in_progress++;
David Sterba2c686532013-12-16 17:34:17 +01007205 spin_unlock(&clone_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08007206
Alexander Block31db9f72012-07-25 23:19:24 +02007207 sctx->clone_roots[i].root = clone_root;
Filipe Manana2f1f4652015-03-02 20:53:53 +00007208 clone_sources_to_rollback = i + 1;
Alexander Block31db9f72012-07-25 23:19:24 +02007209 }
David Sterba2f913062016-04-11 18:40:08 +02007210 kvfree(clone_sources_tmp);
Alexander Block31db9f72012-07-25 23:19:24 +02007211 clone_sources_tmp = NULL;
7212 }
7213
7214 if (arg->parent_root) {
David Sterba56e93572020-05-15 19:35:55 +02007215 sctx->parent_root = btrfs_get_fs_root(fs_info, arg->parent_root,
7216 true);
Stefan Behrensb1b19592013-05-13 14:42:57 +00007217 if (IS_ERR(sctx->parent_root)) {
7218 ret = PTR_ERR(sctx->parent_root);
Alexander Block31db9f72012-07-25 23:19:24 +02007219 goto out;
7220 }
Wang Shilong18f687d2014-01-07 17:25:19 +08007221
David Sterba2c686532013-12-16 17:34:17 +01007222 spin_lock(&sctx->parent_root->root_item_lock);
7223 sctx->parent_root->send_in_progress++;
David Sterba521e0542014-04-15 16:41:44 +02007224 if (!btrfs_root_readonly(sctx->parent_root) ||
7225 btrfs_root_dead(sctx->parent_root)) {
David Sterba2c686532013-12-16 17:34:17 +01007226 spin_unlock(&sctx->parent_root->root_item_lock);
7227 ret = -EPERM;
7228 goto out;
7229 }
Filipe Manana62d54f32019-04-22 16:43:42 +01007230 if (sctx->parent_root->dedupe_in_progress) {
7231 dedupe_in_progress_warn(sctx->parent_root);
7232 spin_unlock(&sctx->parent_root->root_item_lock);
Filipe Manana62d54f32019-04-22 16:43:42 +01007233 ret = -EAGAIN;
7234 goto out;
7235 }
David Sterba2c686532013-12-16 17:34:17 +01007236 spin_unlock(&sctx->parent_root->root_item_lock);
Alexander Block31db9f72012-07-25 23:19:24 +02007237 }
7238
7239 /*
7240 * Clones from send_root are allowed, but only if the clone source
7241 * is behind the current send position. This is checked while searching
7242 * for possible clone sources.
7243 */
Josef Bacik6f9a3da2020-01-24 09:32:48 -05007244 sctx->clone_roots[sctx->clone_roots_cnt++].root =
Josef Bacik00246522020-01-24 09:33:01 -05007245 btrfs_grab_root(sctx->send_root);
Alexander Block31db9f72012-07-25 23:19:24 +02007246
7247 /* We do a bsearch later */
7248 sort(sctx->clone_roots, sctx->clone_roots_cnt,
7249 sizeof(*sctx->clone_roots), __clone_root_cmp_sort,
7250 NULL);
Wang Shilong896c14f2014-01-07 17:25:18 +08007251 sort_clone_roots = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02007252
Filipe Manana9f89d5d2019-04-15 09:29:36 +01007253 ret = flush_delalloc_roots(sctx);
7254 if (ret)
7255 goto out;
7256
Filipe Mananae5fa8f82014-10-21 11:11:41 +01007257 ret = ensure_commit_roots_uptodate(sctx);
7258 if (ret)
7259 goto out;
7260
Filipe Manana9e967492019-04-22 16:44:09 +01007261 mutex_lock(&fs_info->balance_mutex);
7262 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
7263 mutex_unlock(&fs_info->balance_mutex);
7264 btrfs_warn_rl(fs_info,
7265 "cannot run send because a balance operation is in progress");
7266 ret = -EAGAIN;
7267 goto out;
7268 }
7269 fs_info->send_in_progress++;
7270 mutex_unlock(&fs_info->balance_mutex);
7271
David Sterba2755a0d2014-07-31 00:43:18 +02007272 current->journal_info = BTRFS_SEND_TRANS_STUB;
Alexander Block31db9f72012-07-25 23:19:24 +02007273 ret = send_subvol(sctx);
Josef Bacika26e8c92014-03-28 17:07:27 -04007274 current->journal_info = NULL;
Filipe Manana9e967492019-04-22 16:44:09 +01007275 mutex_lock(&fs_info->balance_mutex);
7276 fs_info->send_in_progress--;
7277 mutex_unlock(&fs_info->balance_mutex);
Alexander Block31db9f72012-07-25 23:19:24 +02007278 if (ret < 0)
7279 goto out;
7280
Stefan Behrensc2c71322013-04-10 17:10:52 +00007281 if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_END_CMD)) {
7282 ret = begin_cmd(sctx, BTRFS_SEND_C_END);
7283 if (ret < 0)
7284 goto out;
7285 ret = send_cmd(sctx);
7286 if (ret < 0)
7287 goto out;
7288 }
Alexander Block31db9f72012-07-25 23:19:24 +02007289
7290out:
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00007291 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->pending_dir_moves));
7292 while (sctx && !RB_EMPTY_ROOT(&sctx->pending_dir_moves)) {
7293 struct rb_node *n;
7294 struct pending_dir_move *pm;
7295
7296 n = rb_first(&sctx->pending_dir_moves);
7297 pm = rb_entry(n, struct pending_dir_move, node);
7298 while (!list_empty(&pm->list)) {
7299 struct pending_dir_move *pm2;
7300
7301 pm2 = list_first_entry(&pm->list,
7302 struct pending_dir_move, list);
7303 free_pending_move(sctx, pm2);
7304 }
7305 free_pending_move(sctx, pm);
7306 }
7307
7308 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->waiting_dir_moves));
7309 while (sctx && !RB_EMPTY_ROOT(&sctx->waiting_dir_moves)) {
7310 struct rb_node *n;
7311 struct waiting_dir_move *dm;
7312
7313 n = rb_first(&sctx->waiting_dir_moves);
7314 dm = rb_entry(n, struct waiting_dir_move, node);
7315 rb_erase(&dm->node, &sctx->waiting_dir_moves);
7316 kfree(dm);
7317 }
7318
Filipe Manana9dc44212014-02-19 14:31:44 +00007319 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->orphan_dirs));
7320 while (sctx && !RB_EMPTY_ROOT(&sctx->orphan_dirs)) {
7321 struct rb_node *n;
7322 struct orphan_dir_info *odi;
7323
7324 n = rb_first(&sctx->orphan_dirs);
7325 odi = rb_entry(n, struct orphan_dir_info, node);
7326 free_orphan_dir_info(sctx, odi);
7327 }
7328
Wang Shilong896c14f2014-01-07 17:25:18 +08007329 if (sort_clone_roots) {
Josef Bacik6f9a3da2020-01-24 09:32:48 -05007330 for (i = 0; i < sctx->clone_roots_cnt; i++) {
Wang Shilong896c14f2014-01-07 17:25:18 +08007331 btrfs_root_dec_send_in_progress(
7332 sctx->clone_roots[i].root);
Josef Bacik00246522020-01-24 09:33:01 -05007333 btrfs_put_root(sctx->clone_roots[i].root);
Josef Bacik6f9a3da2020-01-24 09:32:48 -05007334 }
Wang Shilong896c14f2014-01-07 17:25:18 +08007335 } else {
Josef Bacik6f9a3da2020-01-24 09:32:48 -05007336 for (i = 0; sctx && i < clone_sources_to_rollback; i++) {
Wang Shilong896c14f2014-01-07 17:25:18 +08007337 btrfs_root_dec_send_in_progress(
7338 sctx->clone_roots[i].root);
Josef Bacik00246522020-01-24 09:33:01 -05007339 btrfs_put_root(sctx->clone_roots[i].root);
Josef Bacik6f9a3da2020-01-24 09:32:48 -05007340 }
Wang Shilong896c14f2014-01-07 17:25:18 +08007341
7342 btrfs_root_dec_send_in_progress(send_root);
7343 }
Josef Bacik6f9a3da2020-01-24 09:32:48 -05007344 if (sctx && !IS_ERR_OR_NULL(sctx->parent_root)) {
David Sterba66ef7d62013-12-17 15:07:20 +01007345 btrfs_root_dec_send_in_progress(sctx->parent_root);
Josef Bacik00246522020-01-24 09:33:01 -05007346 btrfs_put_root(sctx->parent_root);
Josef Bacik6f9a3da2020-01-24 09:32:48 -05007347 }
David Sterba2c686532013-12-16 17:34:17 +01007348
David Sterba2f913062016-04-11 18:40:08 +02007349 kvfree(clone_sources_tmp);
Alexander Block31db9f72012-07-25 23:19:24 +02007350
7351 if (sctx) {
7352 if (sctx->send_filp)
7353 fput(sctx->send_filp);
7354
David Sterbac03d01f2016-04-11 18:40:08 +02007355 kvfree(sctx->clone_roots);
David Sterba6ff48ce2016-04-11 18:40:08 +02007356 kvfree(sctx->send_buf);
David Sterbaeb5b75f2016-04-11 18:40:08 +02007357 kvfree(sctx->read_buf);
Alexander Block31db9f72012-07-25 23:19:24 +02007358
7359 name_cache_free(sctx);
7360
7361 kfree(sctx);
7362 }
7363
7364 return ret;
7365}