blob: 20d3300bd26896a905502b0ba5b5a0372a59e849 [file] [log] [blame]
Alexander Block31db9f72012-07-25 23:19:24 +02001/*
2 * Copyright (C) 2012 Alexander Block. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/bsearch.h>
20#include <linux/fs.h>
21#include <linux/file.h>
22#include <linux/sort.h>
23#include <linux/mount.h>
24#include <linux/xattr.h>
25#include <linux/posix_acl_xattr.h>
26#include <linux/radix-tree.h>
Stephen Rothwella1857eb2012-07-27 10:11:13 +100027#include <linux/vmalloc.h>
Andy Shevchenkoed848852013-08-21 10:32:13 +030028#include <linux/string.h>
Josef Bacik2351f432017-09-27 10:43:13 -040029#include <linux/compat.h>
Alexander Block31db9f72012-07-25 23:19:24 +020030
31#include "send.h"
32#include "backref.h"
Filipe David Borba Manana0b947af2014-01-29 21:06:04 +000033#include "hash.h"
Alexander Block31db9f72012-07-25 23:19:24 +020034#include "locking.h"
35#include "disk-io.h"
36#include "btrfs_inode.h"
37#include "transaction.h"
Anand Jainebb87652016-03-10 17:26:59 +080038#include "compression.h"
Alexander Block31db9f72012-07-25 23:19:24 +020039
Alexander Block31db9f72012-07-25 23:19:24 +020040/*
41 * A fs_path is a helper to dynamically build path names with unknown size.
42 * It reallocates the internal buffer on demand.
43 * It allows fast adding of path elements on the right side (normal path) and
44 * fast adding to the left side (reversed path). A reversed path can also be
45 * unreversed if needed.
46 */
47struct fs_path {
48 union {
49 struct {
50 char *start;
51 char *end;
Alexander Block31db9f72012-07-25 23:19:24 +020052
53 char *buf;
David Sterba1f5a7ff2014-02-03 19:23:47 +010054 unsigned short buf_len:15;
55 unsigned short reversed:1;
Alexander Block31db9f72012-07-25 23:19:24 +020056 char inline_buf[];
57 };
David Sterbaace01052014-02-05 16:17:34 +010058 /*
59 * Average path length does not exceed 200 bytes, we'll have
60 * better packing in the slab and higher chance to satisfy
61 * a allocation later during send.
62 */
63 char pad[256];
Alexander Block31db9f72012-07-25 23:19:24 +020064 };
65};
66#define FS_PATH_INLINE_SIZE \
67 (sizeof(struct fs_path) - offsetof(struct fs_path, inline_buf))
68
69
70/* reused for each extent */
71struct clone_root {
72 struct btrfs_root *root;
73 u64 ino;
74 u64 offset;
75
76 u64 found_refs;
77};
78
79#define SEND_CTX_MAX_NAME_CACHE_SIZE 128
80#define SEND_CTX_NAME_CACHE_CLEAN_SIZE (SEND_CTX_MAX_NAME_CACHE_SIZE * 2)
81
82struct send_ctx {
83 struct file *send_filp;
84 loff_t send_off;
85 char *send_buf;
86 u32 send_size;
87 u32 send_max_size;
88 u64 total_send_size;
89 u64 cmd_send_size[BTRFS_SEND_C_MAX + 1];
Mark Fashehcb95e7b2013-02-04 20:54:57 +000090 u64 flags; /* 'flags' member of btrfs_ioctl_send_args is u64 */
Alexander Block31db9f72012-07-25 23:19:24 +020091
Alexander Block31db9f72012-07-25 23:19:24 +020092 struct btrfs_root *send_root;
93 struct btrfs_root *parent_root;
94 struct clone_root *clone_roots;
95 int clone_roots_cnt;
96
97 /* current state of the compare_tree call */
98 struct btrfs_path *left_path;
99 struct btrfs_path *right_path;
100 struct btrfs_key *cmp_key;
101
102 /*
103 * infos of the currently processed inode. In case of deleted inodes,
104 * these are the values from the deleted inode.
105 */
106 u64 cur_ino;
107 u64 cur_inode_gen;
108 int cur_inode_new;
109 int cur_inode_new_gen;
110 int cur_inode_deleted;
Alexander Block31db9f72012-07-25 23:19:24 +0200111 u64 cur_inode_size;
112 u64 cur_inode_mode;
Liu Bo644d1942014-02-27 17:29:01 +0800113 u64 cur_inode_rdev;
Josef Bacik16e75492013-10-22 12:18:51 -0400114 u64 cur_inode_last_extent;
Alexander Block31db9f72012-07-25 23:19:24 +0200115
116 u64 send_progress;
117
118 struct list_head new_refs;
119 struct list_head deleted_refs;
120
121 struct radix_tree_root name_cache;
122 struct list_head name_cache_list;
123 int name_cache_size;
124
Liu Bo2131bcd2014-03-05 10:07:35 +0800125 struct file_ra_state ra;
126
Alexander Block31db9f72012-07-25 23:19:24 +0200127 char *read_buf;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000128
129 /*
130 * We process inodes by their increasing order, so if before an
131 * incremental send we reverse the parent/child relationship of
132 * directories such that a directory with a lower inode number was
133 * the parent of a directory with a higher inode number, and the one
134 * becoming the new parent got renamed too, we can't rename/move the
135 * directory with lower inode number when we finish processing it - we
136 * must process the directory with higher inode number first, then
137 * rename/move it and then rename/move the directory with lower inode
138 * number. Example follows.
139 *
140 * Tree state when the first send was performed:
141 *
142 * .
143 * |-- a (ino 257)
144 * |-- b (ino 258)
145 * |
146 * |
147 * |-- c (ino 259)
148 * | |-- d (ino 260)
149 * |
150 * |-- c2 (ino 261)
151 *
152 * Tree state when the second (incremental) send is performed:
153 *
154 * .
155 * |-- a (ino 257)
156 * |-- b (ino 258)
157 * |-- c2 (ino 261)
158 * |-- d2 (ino 260)
159 * |-- cc (ino 259)
160 *
161 * The sequence of steps that lead to the second state was:
162 *
163 * mv /a/b/c/d /a/b/c2/d2
164 * mv /a/b/c /a/b/c2/d2/cc
165 *
166 * "c" has lower inode number, but we can't move it (2nd mv operation)
167 * before we move "d", which has higher inode number.
168 *
169 * So we just memorize which move/rename operations must be performed
170 * later when their respective parent is processed and moved/renamed.
171 */
172
173 /* Indexed by parent directory inode number. */
174 struct rb_root pending_dir_moves;
175
176 /*
177 * Reverse index, indexed by the inode number of a directory that
178 * is waiting for the move/rename of its immediate parent before its
179 * own move/rename can be performed.
180 */
181 struct rb_root waiting_dir_moves;
Filipe Manana9dc44212014-02-19 14:31:44 +0000182
183 /*
184 * A directory that is going to be rm'ed might have a child directory
185 * which is in the pending directory moves index above. In this case,
186 * the directory can only be removed after the move/rename of its child
187 * is performed. Example:
188 *
189 * Parent snapshot:
190 *
191 * . (ino 256)
192 * |-- a/ (ino 257)
193 * |-- b/ (ino 258)
194 * |-- c/ (ino 259)
195 * | |-- x/ (ino 260)
196 * |
197 * |-- y/ (ino 261)
198 *
199 * Send snapshot:
200 *
201 * . (ino 256)
202 * |-- a/ (ino 257)
203 * |-- b/ (ino 258)
204 * |-- YY/ (ino 261)
205 * |-- x/ (ino 260)
206 *
207 * Sequence of steps that lead to the send snapshot:
208 * rm -f /a/b/c/foo.txt
209 * mv /a/b/y /a/b/YY
210 * mv /a/b/c/x /a/b/YY
211 * rmdir /a/b/c
212 *
213 * When the child is processed, its move/rename is delayed until its
214 * parent is processed (as explained above), but all other operations
215 * like update utimes, chown, chgrp, etc, are performed and the paths
216 * that it uses for those operations must use the orphanized name of
217 * its parent (the directory we're going to rm later), so we need to
218 * memorize that name.
219 *
220 * Indexed by the inode number of the directory to be deleted.
221 */
222 struct rb_root orphan_dirs;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000223};
224
225struct pending_dir_move {
226 struct rb_node node;
227 struct list_head list;
228 u64 parent_ino;
229 u64 ino;
230 u64 gen;
231 struct list_head update_refs;
232};
233
234struct waiting_dir_move {
235 struct rb_node node;
236 u64 ino;
Filipe Manana9dc44212014-02-19 14:31:44 +0000237 /*
238 * There might be some directory that could not be removed because it
239 * was waiting for this directory inode to be moved first. Therefore
240 * after this directory is moved, we can try to rmdir the ino rmdir_ino.
241 */
242 u64 rmdir_ino;
Filipe Manana8b191a62015-04-09 14:09:14 +0100243 bool orphanized;
Filipe Manana9dc44212014-02-19 14:31:44 +0000244};
245
246struct orphan_dir_info {
247 struct rb_node node;
248 u64 ino;
249 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +0200250};
251
252struct name_cache_entry {
253 struct list_head list;
Alexander Block7e0926f2012-07-28 14:20:58 +0200254 /*
255 * radix_tree has only 32bit entries but we need to handle 64bit inums.
256 * We use the lower 32bit of the 64bit inum to store it in the tree. If
257 * more then one inum would fall into the same entry, we use radix_list
258 * to store the additional entries. radix_list is also used to store
259 * entries where two entries have the same inum but different
260 * generations.
261 */
262 struct list_head radix_list;
Alexander Block31db9f72012-07-25 23:19:24 +0200263 u64 ino;
264 u64 gen;
265 u64 parent_ino;
266 u64 parent_gen;
267 int ret;
268 int need_later_update;
269 int name_len;
270 char name[];
271};
272
Filipe Manana95155582016-08-01 01:50:37 +0100273static void inconsistent_snapshot_error(struct send_ctx *sctx,
274 enum btrfs_compare_tree_result result,
275 const char *what)
276{
277 const char *result_string;
278
279 switch (result) {
280 case BTRFS_COMPARE_TREE_NEW:
281 result_string = "new";
282 break;
283 case BTRFS_COMPARE_TREE_DELETED:
284 result_string = "deleted";
285 break;
286 case BTRFS_COMPARE_TREE_CHANGED:
287 result_string = "updated";
288 break;
289 case BTRFS_COMPARE_TREE_SAME:
290 ASSERT(0);
291 result_string = "unchanged";
292 break;
293 default:
294 ASSERT(0);
295 result_string = "unexpected";
296 }
297
298 btrfs_err(sctx->send_root->fs_info,
299 "Send: inconsistent snapshot, found %s %s for inode %llu without updated inode item, send root is %llu, parent root is %llu",
300 result_string, what, sctx->cmp_key->objectid,
301 sctx->send_root->root_key.objectid,
302 (sctx->parent_root ?
303 sctx->parent_root->root_key.objectid : 0));
304}
305
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000306static int is_waiting_for_move(struct send_ctx *sctx, u64 ino);
307
Filipe Manana9dc44212014-02-19 14:31:44 +0000308static struct waiting_dir_move *
309get_waiting_dir_move(struct send_ctx *sctx, u64 ino);
310
311static int is_waiting_for_rm(struct send_ctx *sctx, u64 dir_ino);
312
Josef Bacik16e75492013-10-22 12:18:51 -0400313static int need_send_hole(struct send_ctx *sctx)
314{
315 return (sctx->parent_root && !sctx->cur_inode_new &&
316 !sctx->cur_inode_new_gen && !sctx->cur_inode_deleted &&
317 S_ISREG(sctx->cur_inode_mode));
318}
319
Alexander Block31db9f72012-07-25 23:19:24 +0200320static void fs_path_reset(struct fs_path *p)
321{
322 if (p->reversed) {
323 p->start = p->buf + p->buf_len - 1;
324 p->end = p->start;
325 *p->start = 0;
326 } else {
327 p->start = p->buf;
328 p->end = p->start;
329 *p->start = 0;
330 }
331}
332
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000333static struct fs_path *fs_path_alloc(void)
Alexander Block31db9f72012-07-25 23:19:24 +0200334{
335 struct fs_path *p;
336
David Sterbae780b0d2016-01-18 18:42:13 +0100337 p = kmalloc(sizeof(*p), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +0200338 if (!p)
339 return NULL;
340 p->reversed = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200341 p->buf = p->inline_buf;
342 p->buf_len = FS_PATH_INLINE_SIZE;
343 fs_path_reset(p);
344 return p;
345}
346
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000347static struct fs_path *fs_path_alloc_reversed(void)
Alexander Block31db9f72012-07-25 23:19:24 +0200348{
349 struct fs_path *p;
350
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000351 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +0200352 if (!p)
353 return NULL;
354 p->reversed = 1;
355 fs_path_reset(p);
356 return p;
357}
358
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000359static void fs_path_free(struct fs_path *p)
Alexander Block31db9f72012-07-25 23:19:24 +0200360{
361 if (!p)
362 return;
David Sterbaace01052014-02-05 16:17:34 +0100363 if (p->buf != p->inline_buf)
364 kfree(p->buf);
Alexander Block31db9f72012-07-25 23:19:24 +0200365 kfree(p);
366}
367
368static int fs_path_len(struct fs_path *p)
369{
370 return p->end - p->start;
371}
372
373static int fs_path_ensure_buf(struct fs_path *p, int len)
374{
375 char *tmp_buf;
376 int path_len;
377 int old_buf_len;
378
379 len++;
380
381 if (p->buf_len >= len)
382 return 0;
383
Chris Masoncfd4a532014-04-26 05:02:03 -0700384 if (len > PATH_MAX) {
385 WARN_ON(1);
386 return -ENOMEM;
387 }
388
David Sterba1b2782c2014-02-25 19:32:59 +0100389 path_len = p->end - p->start;
390 old_buf_len = p->buf_len;
391
David Sterbaace01052014-02-05 16:17:34 +0100392 /*
393 * First time the inline_buf does not suffice
394 */
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100395 if (p->buf == p->inline_buf) {
David Sterbae780b0d2016-01-18 18:42:13 +0100396 tmp_buf = kmalloc(len, GFP_KERNEL);
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100397 if (tmp_buf)
398 memcpy(tmp_buf, p->buf, old_buf_len);
399 } else {
David Sterbae780b0d2016-01-18 18:42:13 +0100400 tmp_buf = krealloc(p->buf, len, GFP_KERNEL);
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100401 }
David Sterba9c9ca002014-02-25 19:33:08 +0100402 if (!tmp_buf)
403 return -ENOMEM;
404 p->buf = tmp_buf;
405 /*
406 * The real size of the buffer is bigger, this will let the fast path
407 * happen most of the time
408 */
409 p->buf_len = ksize(p->buf);
David Sterbaace01052014-02-05 16:17:34 +0100410
Alexander Block31db9f72012-07-25 23:19:24 +0200411 if (p->reversed) {
412 tmp_buf = p->buf + old_buf_len - path_len - 1;
413 p->end = p->buf + p->buf_len - 1;
414 p->start = p->end - path_len;
415 memmove(p->start, tmp_buf, path_len + 1);
416 } else {
417 p->start = p->buf;
418 p->end = p->start + path_len;
419 }
420 return 0;
421}
422
David Sterbab23ab572014-02-03 19:23:19 +0100423static int fs_path_prepare_for_add(struct fs_path *p, int name_len,
424 char **prepared)
Alexander Block31db9f72012-07-25 23:19:24 +0200425{
426 int ret;
427 int new_len;
428
429 new_len = p->end - p->start + name_len;
430 if (p->start != p->end)
431 new_len++;
432 ret = fs_path_ensure_buf(p, new_len);
433 if (ret < 0)
434 goto out;
435
436 if (p->reversed) {
437 if (p->start != p->end)
438 *--p->start = '/';
439 p->start -= name_len;
David Sterbab23ab572014-02-03 19:23:19 +0100440 *prepared = p->start;
Alexander Block31db9f72012-07-25 23:19:24 +0200441 } else {
442 if (p->start != p->end)
443 *p->end++ = '/';
David Sterbab23ab572014-02-03 19:23:19 +0100444 *prepared = p->end;
Alexander Block31db9f72012-07-25 23:19:24 +0200445 p->end += name_len;
446 *p->end = 0;
447 }
448
449out:
450 return ret;
451}
452
453static int fs_path_add(struct fs_path *p, const char *name, int name_len)
454{
455 int ret;
David Sterbab23ab572014-02-03 19:23:19 +0100456 char *prepared;
Alexander Block31db9f72012-07-25 23:19:24 +0200457
David Sterbab23ab572014-02-03 19:23:19 +0100458 ret = fs_path_prepare_for_add(p, name_len, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200459 if (ret < 0)
460 goto out;
David Sterbab23ab572014-02-03 19:23:19 +0100461 memcpy(prepared, name, name_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200462
463out:
464 return ret;
465}
466
467static int fs_path_add_path(struct fs_path *p, struct fs_path *p2)
468{
469 int ret;
David Sterbab23ab572014-02-03 19:23:19 +0100470 char *prepared;
Alexander Block31db9f72012-07-25 23:19:24 +0200471
David Sterbab23ab572014-02-03 19:23:19 +0100472 ret = fs_path_prepare_for_add(p, p2->end - p2->start, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200473 if (ret < 0)
474 goto out;
David Sterbab23ab572014-02-03 19:23:19 +0100475 memcpy(prepared, p2->start, p2->end - p2->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200476
477out:
478 return ret;
479}
480
481static int fs_path_add_from_extent_buffer(struct fs_path *p,
482 struct extent_buffer *eb,
483 unsigned long off, int len)
484{
485 int ret;
David Sterbab23ab572014-02-03 19:23:19 +0100486 char *prepared;
Alexander Block31db9f72012-07-25 23:19:24 +0200487
David Sterbab23ab572014-02-03 19:23:19 +0100488 ret = fs_path_prepare_for_add(p, len, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200489 if (ret < 0)
490 goto out;
491
David Sterbab23ab572014-02-03 19:23:19 +0100492 read_extent_buffer(eb, prepared, off, len);
Alexander Block31db9f72012-07-25 23:19:24 +0200493
494out:
495 return ret;
496}
497
Alexander Block31db9f72012-07-25 23:19:24 +0200498static int fs_path_copy(struct fs_path *p, struct fs_path *from)
499{
500 int ret;
501
502 p->reversed = from->reversed;
503 fs_path_reset(p);
504
505 ret = fs_path_add_path(p, from);
506
507 return ret;
508}
509
510
511static void fs_path_unreverse(struct fs_path *p)
512{
513 char *tmp;
514 int len;
515
516 if (!p->reversed)
517 return;
518
519 tmp = p->start;
520 len = p->end - p->start;
521 p->start = p->buf;
522 p->end = p->start + len;
523 memmove(p->start, tmp, len + 1);
524 p->reversed = 0;
525}
526
527static struct btrfs_path *alloc_path_for_send(void)
528{
529 struct btrfs_path *path;
530
531 path = btrfs_alloc_path();
532 if (!path)
533 return NULL;
534 path->search_commit_root = 1;
535 path->skip_locking = 1;
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400536 path->need_commit_sem = 1;
Alexander Block31db9f72012-07-25 23:19:24 +0200537 return path;
538}
539
Eric Sandeen48a3b632013-04-25 20:41:01 +0000540static int write_buf(struct file *filp, const void *buf, u32 len, loff_t *off)
Alexander Block31db9f72012-07-25 23:19:24 +0200541{
542 int ret;
Alexander Block31db9f72012-07-25 23:19:24 +0200543 u32 pos = 0;
544
Alexander Block31db9f72012-07-25 23:19:24 +0200545 while (pos < len) {
Christoph Hellwig8e931572017-09-01 17:39:19 +0200546 ret = kernel_write(filp, buf + pos, len - pos, off);
Alexander Block31db9f72012-07-25 23:19:24 +0200547 /* TODO handle that correctly */
548 /*if (ret == -ERESTARTSYS) {
549 continue;
550 }*/
551 if (ret < 0)
Christoph Hellwig8e931572017-09-01 17:39:19 +0200552 return ret;
Alexander Block31db9f72012-07-25 23:19:24 +0200553 if (ret == 0) {
Christoph Hellwig8e931572017-09-01 17:39:19 +0200554 return -EIO;
Alexander Block31db9f72012-07-25 23:19:24 +0200555 }
556 pos += ret;
557 }
558
Christoph Hellwig8e931572017-09-01 17:39:19 +0200559 return 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200560}
561
562static int tlv_put(struct send_ctx *sctx, u16 attr, const void *data, int len)
563{
564 struct btrfs_tlv_header *hdr;
565 int total_len = sizeof(*hdr) + len;
566 int left = sctx->send_max_size - sctx->send_size;
567
568 if (unlikely(left < total_len))
569 return -EOVERFLOW;
570
571 hdr = (struct btrfs_tlv_header *) (sctx->send_buf + sctx->send_size);
572 hdr->tlv_type = cpu_to_le16(attr);
573 hdr->tlv_len = cpu_to_le16(len);
574 memcpy(hdr + 1, data, len);
575 sctx->send_size += total_len;
576
577 return 0;
578}
579
David Sterba95bc79d2013-12-16 17:34:10 +0100580#define TLV_PUT_DEFINE_INT(bits) \
581 static int tlv_put_u##bits(struct send_ctx *sctx, \
582 u##bits attr, u##bits value) \
583 { \
584 __le##bits __tmp = cpu_to_le##bits(value); \
585 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \
586 }
Alexander Block31db9f72012-07-25 23:19:24 +0200587
David Sterba95bc79d2013-12-16 17:34:10 +0100588TLV_PUT_DEFINE_INT(64)
Alexander Block31db9f72012-07-25 23:19:24 +0200589
590static int tlv_put_string(struct send_ctx *sctx, u16 attr,
591 const char *str, int len)
592{
593 if (len == -1)
594 len = strlen(str);
595 return tlv_put(sctx, attr, str, len);
596}
597
598static int tlv_put_uuid(struct send_ctx *sctx, u16 attr,
599 const u8 *uuid)
600{
601 return tlv_put(sctx, attr, uuid, BTRFS_UUID_SIZE);
602}
603
Alexander Block31db9f72012-07-25 23:19:24 +0200604static int tlv_put_btrfs_timespec(struct send_ctx *sctx, u16 attr,
605 struct extent_buffer *eb,
606 struct btrfs_timespec *ts)
607{
608 struct btrfs_timespec bts;
609 read_extent_buffer(eb, &bts, (unsigned long)ts, sizeof(bts));
610 return tlv_put(sctx, attr, &bts, sizeof(bts));
611}
612
613
614#define TLV_PUT(sctx, attrtype, attrlen, data) \
615 do { \
616 ret = tlv_put(sctx, attrtype, attrlen, data); \
617 if (ret < 0) \
618 goto tlv_put_failure; \
619 } while (0)
620
621#define TLV_PUT_INT(sctx, attrtype, bits, value) \
622 do { \
623 ret = tlv_put_u##bits(sctx, attrtype, value); \
624 if (ret < 0) \
625 goto tlv_put_failure; \
626 } while (0)
627
628#define TLV_PUT_U8(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 8, data)
629#define TLV_PUT_U16(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 16, data)
630#define TLV_PUT_U32(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 32, data)
631#define TLV_PUT_U64(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 64, data)
632#define TLV_PUT_STRING(sctx, attrtype, str, len) \
633 do { \
634 ret = tlv_put_string(sctx, attrtype, str, len); \
635 if (ret < 0) \
636 goto tlv_put_failure; \
637 } while (0)
638#define TLV_PUT_PATH(sctx, attrtype, p) \
639 do { \
640 ret = tlv_put_string(sctx, attrtype, p->start, \
641 p->end - p->start); \
642 if (ret < 0) \
643 goto tlv_put_failure; \
644 } while(0)
645#define TLV_PUT_UUID(sctx, attrtype, uuid) \
646 do { \
647 ret = tlv_put_uuid(sctx, attrtype, uuid); \
648 if (ret < 0) \
649 goto tlv_put_failure; \
650 } while (0)
Alexander Block31db9f72012-07-25 23:19:24 +0200651#define TLV_PUT_BTRFS_TIMESPEC(sctx, attrtype, eb, ts) \
652 do { \
653 ret = tlv_put_btrfs_timespec(sctx, attrtype, eb, ts); \
654 if (ret < 0) \
655 goto tlv_put_failure; \
656 } while (0)
657
658static int send_header(struct send_ctx *sctx)
659{
660 struct btrfs_stream_header hdr;
661
662 strcpy(hdr.magic, BTRFS_SEND_STREAM_MAGIC);
663 hdr.version = cpu_to_le32(BTRFS_SEND_STREAM_VERSION);
664
Anand Jain1bcea352012-09-14 00:04:21 -0600665 return write_buf(sctx->send_filp, &hdr, sizeof(hdr),
666 &sctx->send_off);
Alexander Block31db9f72012-07-25 23:19:24 +0200667}
668
669/*
670 * For each command/item we want to send to userspace, we call this function.
671 */
672static int begin_cmd(struct send_ctx *sctx, int cmd)
673{
674 struct btrfs_cmd_header *hdr;
675
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +0530676 if (WARN_ON(!sctx->send_buf))
Alexander Block31db9f72012-07-25 23:19:24 +0200677 return -EINVAL;
Alexander Block31db9f72012-07-25 23:19:24 +0200678
679 BUG_ON(sctx->send_size);
680
681 sctx->send_size += sizeof(*hdr);
682 hdr = (struct btrfs_cmd_header *)sctx->send_buf;
683 hdr->cmd = cpu_to_le16(cmd);
684
685 return 0;
686}
687
688static int send_cmd(struct send_ctx *sctx)
689{
690 int ret;
691 struct btrfs_cmd_header *hdr;
692 u32 crc;
693
694 hdr = (struct btrfs_cmd_header *)sctx->send_buf;
695 hdr->len = cpu_to_le32(sctx->send_size - sizeof(*hdr));
696 hdr->crc = 0;
697
Filipe David Borba Manana0b947af2014-01-29 21:06:04 +0000698 crc = btrfs_crc32c(0, (unsigned char *)sctx->send_buf, sctx->send_size);
Alexander Block31db9f72012-07-25 23:19:24 +0200699 hdr->crc = cpu_to_le32(crc);
700
Anand Jain1bcea352012-09-14 00:04:21 -0600701 ret = write_buf(sctx->send_filp, sctx->send_buf, sctx->send_size,
702 &sctx->send_off);
Alexander Block31db9f72012-07-25 23:19:24 +0200703
704 sctx->total_send_size += sctx->send_size;
705 sctx->cmd_send_size[le16_to_cpu(hdr->cmd)] += sctx->send_size;
706 sctx->send_size = 0;
707
708 return ret;
709}
710
711/*
712 * Sends a move instruction to user space
713 */
714static int send_rename(struct send_ctx *sctx,
715 struct fs_path *from, struct fs_path *to)
716{
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400717 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +0200718 int ret;
719
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400720 btrfs_debug(fs_info, "send_rename %s -> %s", from->start, to->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200721
722 ret = begin_cmd(sctx, BTRFS_SEND_C_RENAME);
723 if (ret < 0)
724 goto out;
725
726 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, from);
727 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_TO, to);
728
729 ret = send_cmd(sctx);
730
731tlv_put_failure:
732out:
733 return ret;
734}
735
736/*
737 * Sends a link instruction to user space
738 */
739static int send_link(struct send_ctx *sctx,
740 struct fs_path *path, struct fs_path *lnk)
741{
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400742 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +0200743 int ret;
744
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400745 btrfs_debug(fs_info, "send_link %s -> %s", path->start, lnk->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200746
747 ret = begin_cmd(sctx, BTRFS_SEND_C_LINK);
748 if (ret < 0)
749 goto out;
750
751 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
752 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, lnk);
753
754 ret = send_cmd(sctx);
755
756tlv_put_failure:
757out:
758 return ret;
759}
760
761/*
762 * Sends an unlink instruction to user space
763 */
764static int send_unlink(struct send_ctx *sctx, struct fs_path *path)
765{
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400766 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +0200767 int ret;
768
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400769 btrfs_debug(fs_info, "send_unlink %s", path->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200770
771 ret = begin_cmd(sctx, BTRFS_SEND_C_UNLINK);
772 if (ret < 0)
773 goto out;
774
775 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
776
777 ret = send_cmd(sctx);
778
779tlv_put_failure:
780out:
781 return ret;
782}
783
784/*
785 * Sends a rmdir instruction to user space
786 */
787static int send_rmdir(struct send_ctx *sctx, struct fs_path *path)
788{
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400789 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +0200790 int ret;
791
Jeff Mahoney04ab9562016-09-20 10:05:03 -0400792 btrfs_debug(fs_info, "send_rmdir %s", path->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200793
794 ret = begin_cmd(sctx, BTRFS_SEND_C_RMDIR);
795 if (ret < 0)
796 goto out;
797
798 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
799
800 ret = send_cmd(sctx);
801
802tlv_put_failure:
803out:
804 return ret;
805}
806
807/*
808 * Helper function to retrieve some fields from an inode item.
809 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400810static int __get_inode_info(struct btrfs_root *root, struct btrfs_path *path,
811 u64 ino, u64 *size, u64 *gen, u64 *mode, u64 *uid,
812 u64 *gid, u64 *rdev)
Alexander Block31db9f72012-07-25 23:19:24 +0200813{
814 int ret;
815 struct btrfs_inode_item *ii;
816 struct btrfs_key key;
Alexander Block31db9f72012-07-25 23:19:24 +0200817
818 key.objectid = ino;
819 key.type = BTRFS_INODE_ITEM_KEY;
820 key.offset = 0;
821 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Alexander Block31db9f72012-07-25 23:19:24 +0200822 if (ret) {
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400823 if (ret > 0)
824 ret = -ENOENT;
825 return ret;
Alexander Block31db9f72012-07-25 23:19:24 +0200826 }
827
828 ii = btrfs_item_ptr(path->nodes[0], path->slots[0],
829 struct btrfs_inode_item);
830 if (size)
831 *size = btrfs_inode_size(path->nodes[0], ii);
832 if (gen)
833 *gen = btrfs_inode_generation(path->nodes[0], ii);
834 if (mode)
835 *mode = btrfs_inode_mode(path->nodes[0], ii);
836 if (uid)
837 *uid = btrfs_inode_uid(path->nodes[0], ii);
838 if (gid)
839 *gid = btrfs_inode_gid(path->nodes[0], ii);
Alexander Block85a7b332012-07-26 23:39:10 +0200840 if (rdev)
841 *rdev = btrfs_inode_rdev(path->nodes[0], ii);
Alexander Block31db9f72012-07-25 23:19:24 +0200842
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400843 return ret;
844}
845
846static int get_inode_info(struct btrfs_root *root,
847 u64 ino, u64 *size, u64 *gen,
848 u64 *mode, u64 *uid, u64 *gid,
849 u64 *rdev)
850{
851 struct btrfs_path *path;
852 int ret;
853
854 path = alloc_path_for_send();
855 if (!path)
856 return -ENOMEM;
857 ret = __get_inode_info(root, path, ino, size, gen, mode, uid, gid,
858 rdev);
Alexander Block31db9f72012-07-25 23:19:24 +0200859 btrfs_free_path(path);
860 return ret;
861}
862
863typedef int (*iterate_inode_ref_t)(int num, u64 dir, int index,
864 struct fs_path *p,
865 void *ctx);
866
867/*
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000868 * Helper function to iterate the entries in ONE btrfs_inode_ref or
869 * btrfs_inode_extref.
Alexander Block31db9f72012-07-25 23:19:24 +0200870 * The iterate callback may return a non zero value to stop iteration. This can
871 * be a negative value for error codes or 1 to simply stop it.
872 *
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000873 * path must point to the INODE_REF or INODE_EXTREF when called.
Alexander Block31db9f72012-07-25 23:19:24 +0200874 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000875static int iterate_inode_ref(struct btrfs_root *root, struct btrfs_path *path,
Alexander Block31db9f72012-07-25 23:19:24 +0200876 struct btrfs_key *found_key, int resolve,
877 iterate_inode_ref_t iterate, void *ctx)
878{
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000879 struct extent_buffer *eb = path->nodes[0];
Alexander Block31db9f72012-07-25 23:19:24 +0200880 struct btrfs_item *item;
881 struct btrfs_inode_ref *iref;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000882 struct btrfs_inode_extref *extref;
Alexander Block31db9f72012-07-25 23:19:24 +0200883 struct btrfs_path *tmp_path;
884 struct fs_path *p;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000885 u32 cur = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200886 u32 total;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000887 int slot = path->slots[0];
Alexander Block31db9f72012-07-25 23:19:24 +0200888 u32 name_len;
889 char *start;
890 int ret = 0;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000891 int num = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200892 int index;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000893 u64 dir;
894 unsigned long name_off;
895 unsigned long elem_size;
896 unsigned long ptr;
Alexander Block31db9f72012-07-25 23:19:24 +0200897
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000898 p = fs_path_alloc_reversed();
Alexander Block31db9f72012-07-25 23:19:24 +0200899 if (!p)
900 return -ENOMEM;
901
902 tmp_path = alloc_path_for_send();
903 if (!tmp_path) {
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000904 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +0200905 return -ENOMEM;
906 }
907
Alexander Block31db9f72012-07-25 23:19:24 +0200908
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000909 if (found_key->type == BTRFS_INODE_REF_KEY) {
910 ptr = (unsigned long)btrfs_item_ptr(eb, slot,
911 struct btrfs_inode_ref);
Ross Kirkdd3cc162013-09-16 15:58:09 +0100912 item = btrfs_item_nr(slot);
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000913 total = btrfs_item_size(eb, item);
914 elem_size = sizeof(*iref);
915 } else {
916 ptr = btrfs_item_ptr_offset(eb, slot);
917 total = btrfs_item_size_nr(eb, slot);
918 elem_size = sizeof(*extref);
919 }
920
Alexander Block31db9f72012-07-25 23:19:24 +0200921 while (cur < total) {
922 fs_path_reset(p);
923
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000924 if (found_key->type == BTRFS_INODE_REF_KEY) {
925 iref = (struct btrfs_inode_ref *)(ptr + cur);
926 name_len = btrfs_inode_ref_name_len(eb, iref);
927 name_off = (unsigned long)(iref + 1);
928 index = btrfs_inode_ref_index(eb, iref);
929 dir = found_key->offset;
930 } else {
931 extref = (struct btrfs_inode_extref *)(ptr + cur);
932 name_len = btrfs_inode_extref_name_len(eb, extref);
933 name_off = (unsigned long)&extref->name;
934 index = btrfs_inode_extref_index(eb, extref);
935 dir = btrfs_inode_extref_parent(eb, extref);
936 }
937
Alexander Block31db9f72012-07-25 23:19:24 +0200938 if (resolve) {
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000939 start = btrfs_ref_to_path(root, tmp_path, name_len,
940 name_off, eb, dir,
941 p->buf, p->buf_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200942 if (IS_ERR(start)) {
943 ret = PTR_ERR(start);
944 goto out;
945 }
946 if (start < p->buf) {
947 /* overflow , try again with larger buffer */
948 ret = fs_path_ensure_buf(p,
949 p->buf_len + p->buf - start);
950 if (ret < 0)
951 goto out;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000952 start = btrfs_ref_to_path(root, tmp_path,
953 name_len, name_off,
954 eb, dir,
955 p->buf, p->buf_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200956 if (IS_ERR(start)) {
957 ret = PTR_ERR(start);
958 goto out;
959 }
960 BUG_ON(start < p->buf);
961 }
962 p->start = start;
963 } else {
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000964 ret = fs_path_add_from_extent_buffer(p, eb, name_off,
965 name_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200966 if (ret < 0)
967 goto out;
968 }
969
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000970 cur += elem_size + name_len;
971 ret = iterate(num, dir, index, p, ctx);
Alexander Block31db9f72012-07-25 23:19:24 +0200972 if (ret)
973 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +0200974 num++;
975 }
976
977out:
978 btrfs_free_path(tmp_path);
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000979 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +0200980 return ret;
981}
982
983typedef int (*iterate_dir_item_t)(int num, struct btrfs_key *di_key,
984 const char *name, int name_len,
985 const char *data, int data_len,
986 u8 type, void *ctx);
987
988/*
989 * Helper function to iterate the entries in ONE btrfs_dir_item.
990 * The iterate callback may return a non zero value to stop iteration. This can
991 * be a negative value for error codes or 1 to simply stop it.
992 *
993 * path must point to the dir item when called.
994 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000995static int iterate_dir_item(struct btrfs_root *root, struct btrfs_path *path,
Alexander Block31db9f72012-07-25 23:19:24 +0200996 iterate_dir_item_t iterate, void *ctx)
997{
998 int ret = 0;
999 struct extent_buffer *eb;
1000 struct btrfs_item *item;
1001 struct btrfs_dir_item *di;
Alexander Block31db9f72012-07-25 23:19:24 +02001002 struct btrfs_key di_key;
1003 char *buf = NULL;
Filipe Manana7e3ae332014-05-23 20:15:16 +01001004 int buf_len;
Alexander Block31db9f72012-07-25 23:19:24 +02001005 u32 name_len;
1006 u32 data_len;
1007 u32 cur;
1008 u32 len;
1009 u32 total;
1010 int slot;
1011 int num;
1012 u8 type;
1013
Filipe Manana4395e0c2014-08-20 10:45:45 +01001014 /*
1015 * Start with a small buffer (1 page). If later we end up needing more
1016 * space, which can happen for xattrs on a fs with a leaf size greater
1017 * then the page size, attempt to increase the buffer. Typically xattr
1018 * values are small.
1019 */
1020 buf_len = PATH_MAX;
David Sterbae780b0d2016-01-18 18:42:13 +01001021 buf = kmalloc(buf_len, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02001022 if (!buf) {
1023 ret = -ENOMEM;
1024 goto out;
1025 }
1026
Alexander Block31db9f72012-07-25 23:19:24 +02001027 eb = path->nodes[0];
1028 slot = path->slots[0];
Ross Kirkdd3cc162013-09-16 15:58:09 +01001029 item = btrfs_item_nr(slot);
Alexander Block31db9f72012-07-25 23:19:24 +02001030 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
1031 cur = 0;
1032 len = 0;
1033 total = btrfs_item_size(eb, item);
1034
1035 num = 0;
1036 while (cur < total) {
1037 name_len = btrfs_dir_name_len(eb, di);
1038 data_len = btrfs_dir_data_len(eb, di);
1039 type = btrfs_dir_type(eb, di);
1040 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
1041
Filipe Manana7e3ae332014-05-23 20:15:16 +01001042 if (type == BTRFS_FT_XATTR) {
1043 if (name_len > XATTR_NAME_MAX) {
1044 ret = -ENAMETOOLONG;
1045 goto out;
1046 }
Jeff Mahoneyda170662016-06-15 09:22:56 -04001047 if (name_len + data_len >
1048 BTRFS_MAX_XATTR_SIZE(root->fs_info)) {
Filipe Manana7e3ae332014-05-23 20:15:16 +01001049 ret = -E2BIG;
1050 goto out;
1051 }
1052 } else {
1053 /*
1054 * Path too long
1055 */
Filipe Manana4395e0c2014-08-20 10:45:45 +01001056 if (name_len + data_len > PATH_MAX) {
Filipe Manana7e3ae332014-05-23 20:15:16 +01001057 ret = -ENAMETOOLONG;
1058 goto out;
1059 }
Alexander Block31db9f72012-07-25 23:19:24 +02001060 }
1061
Su Yue59b0a7f2017-06-06 17:57:05 +08001062 ret = btrfs_is_name_len_valid(eb, path->slots[0],
1063 (unsigned long)(di + 1), name_len + data_len);
1064 if (!ret) {
1065 ret = -EIO;
1066 goto out;
1067 }
Filipe Manana4395e0c2014-08-20 10:45:45 +01001068 if (name_len + data_len > buf_len) {
1069 buf_len = name_len + data_len;
1070 if (is_vmalloc_addr(buf)) {
1071 vfree(buf);
1072 buf = NULL;
1073 } else {
1074 char *tmp = krealloc(buf, buf_len,
David Sterbae780b0d2016-01-18 18:42:13 +01001075 GFP_KERNEL | __GFP_NOWARN);
Filipe Manana4395e0c2014-08-20 10:45:45 +01001076
1077 if (!tmp)
1078 kfree(buf);
1079 buf = tmp;
1080 }
1081 if (!buf) {
David Sterbaf11f7442017-05-31 18:40:02 +02001082 buf = kvmalloc(buf_len, GFP_KERNEL);
Filipe Manana4395e0c2014-08-20 10:45:45 +01001083 if (!buf) {
1084 ret = -ENOMEM;
1085 goto out;
1086 }
1087 }
1088 }
1089
Alexander Block31db9f72012-07-25 23:19:24 +02001090 read_extent_buffer(eb, buf, (unsigned long)(di + 1),
1091 name_len + data_len);
1092
1093 len = sizeof(*di) + name_len + data_len;
1094 di = (struct btrfs_dir_item *)((char *)di + len);
1095 cur += len;
1096
1097 ret = iterate(num, &di_key, buf, name_len, buf + name_len,
1098 data_len, type, ctx);
1099 if (ret < 0)
1100 goto out;
1101 if (ret) {
1102 ret = 0;
1103 goto out;
1104 }
1105
1106 num++;
1107 }
1108
1109out:
Filipe Manana4395e0c2014-08-20 10:45:45 +01001110 kvfree(buf);
Alexander Block31db9f72012-07-25 23:19:24 +02001111 return ret;
1112}
1113
1114static int __copy_first_ref(int num, u64 dir, int index,
1115 struct fs_path *p, void *ctx)
1116{
1117 int ret;
1118 struct fs_path *pt = ctx;
1119
1120 ret = fs_path_copy(pt, p);
1121 if (ret < 0)
1122 return ret;
1123
1124 /* we want the first only */
1125 return 1;
1126}
1127
1128/*
1129 * Retrieve the first path of an inode. If an inode has more then one
1130 * ref/hardlink, this is ignored.
1131 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001132static int get_inode_path(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001133 u64 ino, struct fs_path *path)
1134{
1135 int ret;
1136 struct btrfs_key key, found_key;
1137 struct btrfs_path *p;
1138
1139 p = alloc_path_for_send();
1140 if (!p)
1141 return -ENOMEM;
1142
1143 fs_path_reset(path);
1144
1145 key.objectid = ino;
1146 key.type = BTRFS_INODE_REF_KEY;
1147 key.offset = 0;
1148
1149 ret = btrfs_search_slot_for_read(root, &key, p, 1, 0);
1150 if (ret < 0)
1151 goto out;
1152 if (ret) {
1153 ret = 1;
1154 goto out;
1155 }
1156 btrfs_item_key_to_cpu(p->nodes[0], &found_key, p->slots[0]);
1157 if (found_key.objectid != ino ||
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001158 (found_key.type != BTRFS_INODE_REF_KEY &&
1159 found_key.type != BTRFS_INODE_EXTREF_KEY)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001160 ret = -ENOENT;
1161 goto out;
1162 }
1163
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001164 ret = iterate_inode_ref(root, p, &found_key, 1,
1165 __copy_first_ref, path);
Alexander Block31db9f72012-07-25 23:19:24 +02001166 if (ret < 0)
1167 goto out;
1168 ret = 0;
1169
1170out:
1171 btrfs_free_path(p);
1172 return ret;
1173}
1174
1175struct backref_ctx {
1176 struct send_ctx *sctx;
1177
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001178 struct btrfs_path *path;
Alexander Block31db9f72012-07-25 23:19:24 +02001179 /* number of total found references */
1180 u64 found;
1181
1182 /*
1183 * used for clones found in send_root. clones found behind cur_objectid
1184 * and cur_offset are not considered as allowed clones.
1185 */
1186 u64 cur_objectid;
1187 u64 cur_offset;
1188
1189 /* may be truncated in case it's the last extent in a file */
1190 u64 extent_len;
1191
Filipe Manana619d8c42015-05-03 01:56:00 +01001192 /* data offset in the file extent item */
1193 u64 data_offset;
1194
Alexander Block31db9f72012-07-25 23:19:24 +02001195 /* Just to check for bugs in backref resolving */
Alexander Blockee849c02012-07-28 12:42:05 +02001196 int found_itself;
Alexander Block31db9f72012-07-25 23:19:24 +02001197};
1198
1199static int __clone_root_cmp_bsearch(const void *key, const void *elt)
1200{
Jan Schmidt995e01b2012-08-13 02:52:38 -06001201 u64 root = (u64)(uintptr_t)key;
Alexander Block31db9f72012-07-25 23:19:24 +02001202 struct clone_root *cr = (struct clone_root *)elt;
1203
1204 if (root < cr->root->objectid)
1205 return -1;
1206 if (root > cr->root->objectid)
1207 return 1;
1208 return 0;
1209}
1210
1211static int __clone_root_cmp_sort(const void *e1, const void *e2)
1212{
1213 struct clone_root *cr1 = (struct clone_root *)e1;
1214 struct clone_root *cr2 = (struct clone_root *)e2;
1215
1216 if (cr1->root->objectid < cr2->root->objectid)
1217 return -1;
1218 if (cr1->root->objectid > cr2->root->objectid)
1219 return 1;
1220 return 0;
1221}
1222
1223/*
1224 * Called for every backref that is found for the current extent.
Alexander Block766702e2012-07-28 14:11:31 +02001225 * Results are collected in sctx->clone_roots->ino/offset/found_refs
Alexander Block31db9f72012-07-25 23:19:24 +02001226 */
1227static int __iterate_backrefs(u64 ino, u64 offset, u64 root, void *ctx_)
1228{
1229 struct backref_ctx *bctx = ctx_;
1230 struct clone_root *found;
1231 int ret;
1232 u64 i_size;
1233
1234 /* First check if the root is in the list of accepted clone sources */
Jan Schmidt995e01b2012-08-13 02:52:38 -06001235 found = bsearch((void *)(uintptr_t)root, bctx->sctx->clone_roots,
Alexander Block31db9f72012-07-25 23:19:24 +02001236 bctx->sctx->clone_roots_cnt,
1237 sizeof(struct clone_root),
1238 __clone_root_cmp_bsearch);
1239 if (!found)
1240 return 0;
1241
1242 if (found->root == bctx->sctx->send_root &&
1243 ino == bctx->cur_objectid &&
1244 offset == bctx->cur_offset) {
Alexander Blockee849c02012-07-28 12:42:05 +02001245 bctx->found_itself = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02001246 }
1247
1248 /*
Alexander Block766702e2012-07-28 14:11:31 +02001249 * There are inodes that have extents that lie behind its i_size. Don't
Alexander Block31db9f72012-07-25 23:19:24 +02001250 * accept clones from these extents.
1251 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001252 ret = __get_inode_info(found->root, bctx->path, ino, &i_size, NULL, NULL,
1253 NULL, NULL, NULL);
1254 btrfs_release_path(bctx->path);
Alexander Block31db9f72012-07-25 23:19:24 +02001255 if (ret < 0)
1256 return ret;
1257
Filipe Manana619d8c42015-05-03 01:56:00 +01001258 if (offset + bctx->data_offset + bctx->extent_len > i_size)
Alexander Block31db9f72012-07-25 23:19:24 +02001259 return 0;
1260
1261 /*
1262 * Make sure we don't consider clones from send_root that are
1263 * behind the current inode/offset.
1264 */
1265 if (found->root == bctx->sctx->send_root) {
1266 /*
1267 * TODO for the moment we don't accept clones from the inode
1268 * that is currently send. We may change this when
1269 * BTRFS_IOC_CLONE_RANGE supports cloning from and to the same
1270 * file.
1271 */
1272 if (ino >= bctx->cur_objectid)
1273 return 0;
Alexander Block31db9f72012-07-25 23:19:24 +02001274 }
1275
1276 bctx->found++;
1277 found->found_refs++;
1278 if (ino < found->ino) {
1279 found->ino = ino;
1280 found->offset = offset;
1281 } else if (found->ino == ino) {
1282 /*
1283 * same extent found more then once in the same file.
1284 */
1285 if (found->offset > offset + bctx->extent_len)
1286 found->offset = offset;
1287 }
1288
1289 return 0;
1290}
1291
1292/*
Alexander Block766702e2012-07-28 14:11:31 +02001293 * Given an inode, offset and extent item, it finds a good clone for a clone
1294 * instruction. Returns -ENOENT when none could be found. The function makes
1295 * sure that the returned clone is usable at the point where sending is at the
1296 * moment. This means, that no clones are accepted which lie behind the current
1297 * inode+offset.
1298 *
Alexander Block31db9f72012-07-25 23:19:24 +02001299 * path must point to the extent item when called.
1300 */
1301static int find_extent_clone(struct send_ctx *sctx,
1302 struct btrfs_path *path,
1303 u64 ino, u64 data_offset,
1304 u64 ino_size,
1305 struct clone_root **found)
1306{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001307 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02001308 int ret;
1309 int extent_type;
1310 u64 logical;
Chris Mason74dd17f2012-08-07 16:25:13 -04001311 u64 disk_byte;
Alexander Block31db9f72012-07-25 23:19:24 +02001312 u64 num_bytes;
1313 u64 extent_item_pos;
Liu Bo69917e42012-09-07 20:01:28 -06001314 u64 flags = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02001315 struct btrfs_file_extent_item *fi;
1316 struct extent_buffer *eb = path->nodes[0];
Alexander Block35075bb2012-07-28 12:44:34 +02001317 struct backref_ctx *backref_ctx = NULL;
Alexander Block31db9f72012-07-25 23:19:24 +02001318 struct clone_root *cur_clone_root;
1319 struct btrfs_key found_key;
1320 struct btrfs_path *tmp_path;
Chris Mason74dd17f2012-08-07 16:25:13 -04001321 int compressed;
Alexander Block31db9f72012-07-25 23:19:24 +02001322 u32 i;
1323
1324 tmp_path = alloc_path_for_send();
1325 if (!tmp_path)
1326 return -ENOMEM;
1327
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001328 /* We only use this path under the commit sem */
1329 tmp_path->need_commit_sem = 0;
1330
David Sterbae780b0d2016-01-18 18:42:13 +01001331 backref_ctx = kmalloc(sizeof(*backref_ctx), GFP_KERNEL);
Alexander Block35075bb2012-07-28 12:44:34 +02001332 if (!backref_ctx) {
1333 ret = -ENOMEM;
1334 goto out;
1335 }
1336
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001337 backref_ctx->path = tmp_path;
1338
Alexander Block31db9f72012-07-25 23:19:24 +02001339 if (data_offset >= ino_size) {
1340 /*
1341 * There may be extents that lie behind the file's size.
1342 * I at least had this in combination with snapshotting while
1343 * writing large files.
1344 */
1345 ret = 0;
1346 goto out;
1347 }
1348
1349 fi = btrfs_item_ptr(eb, path->slots[0],
1350 struct btrfs_file_extent_item);
1351 extent_type = btrfs_file_extent_type(eb, fi);
1352 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1353 ret = -ENOENT;
1354 goto out;
1355 }
Chris Mason74dd17f2012-08-07 16:25:13 -04001356 compressed = btrfs_file_extent_compression(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001357
1358 num_bytes = btrfs_file_extent_num_bytes(eb, fi);
Chris Mason74dd17f2012-08-07 16:25:13 -04001359 disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
1360 if (disk_byte == 0) {
Alexander Block31db9f72012-07-25 23:19:24 +02001361 ret = -ENOENT;
1362 goto out;
1363 }
Chris Mason74dd17f2012-08-07 16:25:13 -04001364 logical = disk_byte + btrfs_file_extent_offset(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001365
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001366 down_read(&fs_info->commit_root_sem);
1367 ret = extent_from_logical(fs_info, disk_byte, tmp_path,
Liu Bo69917e42012-09-07 20:01:28 -06001368 &found_key, &flags);
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001369 up_read(&fs_info->commit_root_sem);
Alexander Block31db9f72012-07-25 23:19:24 +02001370 btrfs_release_path(tmp_path);
1371
1372 if (ret < 0)
1373 goto out;
Liu Bo69917e42012-09-07 20:01:28 -06001374 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Alexander Block31db9f72012-07-25 23:19:24 +02001375 ret = -EIO;
1376 goto out;
1377 }
1378
1379 /*
1380 * Setup the clone roots.
1381 */
1382 for (i = 0; i < sctx->clone_roots_cnt; i++) {
1383 cur_clone_root = sctx->clone_roots + i;
1384 cur_clone_root->ino = (u64)-1;
1385 cur_clone_root->offset = 0;
1386 cur_clone_root->found_refs = 0;
1387 }
1388
Alexander Block35075bb2012-07-28 12:44:34 +02001389 backref_ctx->sctx = sctx;
1390 backref_ctx->found = 0;
1391 backref_ctx->cur_objectid = ino;
1392 backref_ctx->cur_offset = data_offset;
1393 backref_ctx->found_itself = 0;
1394 backref_ctx->extent_len = num_bytes;
Filipe Manana619d8c42015-05-03 01:56:00 +01001395 /*
1396 * For non-compressed extents iterate_extent_inodes() gives us extent
1397 * offsets that already take into account the data offset, but not for
1398 * compressed extents, since the offset is logical and not relative to
1399 * the physical extent locations. We must take this into account to
1400 * avoid sending clone offsets that go beyond the source file's size,
1401 * which would result in the clone ioctl failing with -EINVAL on the
1402 * receiving end.
1403 */
1404 if (compressed == BTRFS_COMPRESS_NONE)
1405 backref_ctx->data_offset = 0;
1406 else
1407 backref_ctx->data_offset = btrfs_file_extent_offset(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001408
1409 /*
1410 * The last extent of a file may be too large due to page alignment.
1411 * We need to adjust extent_len in this case so that the checks in
1412 * __iterate_backrefs work.
1413 */
1414 if (data_offset + num_bytes >= ino_size)
Alexander Block35075bb2012-07-28 12:44:34 +02001415 backref_ctx->extent_len = ino_size - data_offset;
Alexander Block31db9f72012-07-25 23:19:24 +02001416
1417 /*
1418 * Now collect all backrefs.
1419 */
Chris Mason74dd17f2012-08-07 16:25:13 -04001420 if (compressed == BTRFS_COMPRESS_NONE)
1421 extent_item_pos = logical - found_key.objectid;
1422 else
1423 extent_item_pos = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001424 ret = iterate_extent_inodes(fs_info, found_key.objectid,
1425 extent_item_pos, 1, __iterate_backrefs,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001426 backref_ctx, false);
Chris Mason74dd17f2012-08-07 16:25:13 -04001427
Alexander Block31db9f72012-07-25 23:19:24 +02001428 if (ret < 0)
1429 goto out;
1430
Alexander Block35075bb2012-07-28 12:44:34 +02001431 if (!backref_ctx->found_itself) {
Alexander Block31db9f72012-07-25 23:19:24 +02001432 /* found a bug in backref code? */
1433 ret = -EIO;
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001434 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001435 "did not find backref in send_root. inode=%llu, offset=%llu, disk_byte=%llu found extent=%llu",
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001436 ino, data_offset, disk_byte, found_key.objectid);
Alexander Block31db9f72012-07-25 23:19:24 +02001437 goto out;
1438 }
1439
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001440 btrfs_debug(fs_info,
1441 "find_extent_clone: data_offset=%llu, ino=%llu, num_bytes=%llu, logical=%llu",
1442 data_offset, ino, num_bytes, logical);
Alexander Block31db9f72012-07-25 23:19:24 +02001443
Alexander Block35075bb2012-07-28 12:44:34 +02001444 if (!backref_ctx->found)
Jeff Mahoney04ab9562016-09-20 10:05:03 -04001445 btrfs_debug(fs_info, "no clones found");
Alexander Block31db9f72012-07-25 23:19:24 +02001446
1447 cur_clone_root = NULL;
1448 for (i = 0; i < sctx->clone_roots_cnt; i++) {
1449 if (sctx->clone_roots[i].found_refs) {
1450 if (!cur_clone_root)
1451 cur_clone_root = sctx->clone_roots + i;
1452 else if (sctx->clone_roots[i].root == sctx->send_root)
1453 /* prefer clones from send_root over others */
1454 cur_clone_root = sctx->clone_roots + i;
Alexander Block31db9f72012-07-25 23:19:24 +02001455 }
1456
1457 }
1458
1459 if (cur_clone_root) {
1460 *found = cur_clone_root;
1461 ret = 0;
1462 } else {
1463 ret = -ENOENT;
1464 }
1465
1466out:
1467 btrfs_free_path(tmp_path);
Alexander Block35075bb2012-07-28 12:44:34 +02001468 kfree(backref_ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02001469 return ret;
1470}
1471
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001472static int read_symlink(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001473 u64 ino,
1474 struct fs_path *dest)
1475{
1476 int ret;
1477 struct btrfs_path *path;
1478 struct btrfs_key key;
1479 struct btrfs_file_extent_item *ei;
1480 u8 type;
1481 u8 compression;
1482 unsigned long off;
1483 int len;
1484
1485 path = alloc_path_for_send();
1486 if (!path)
1487 return -ENOMEM;
1488
1489 key.objectid = ino;
1490 key.type = BTRFS_EXTENT_DATA_KEY;
1491 key.offset = 0;
1492 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1493 if (ret < 0)
1494 goto out;
Filipe Mananaa8797192015-12-31 18:07:59 +00001495 if (ret) {
1496 /*
1497 * An empty symlink inode. Can happen in rare error paths when
1498 * creating a symlink (transaction committed before the inode
1499 * eviction handler removed the symlink inode items and a crash
1500 * happened in between or the subvol was snapshoted in between).
1501 * Print an informative message to dmesg/syslog so that the user
1502 * can delete the symlink.
1503 */
1504 btrfs_err(root->fs_info,
1505 "Found empty symlink inode %llu at root %llu",
1506 ino, root->root_key.objectid);
1507 ret = -EIO;
1508 goto out;
1509 }
Alexander Block31db9f72012-07-25 23:19:24 +02001510
1511 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
1512 struct btrfs_file_extent_item);
1513 type = btrfs_file_extent_type(path->nodes[0], ei);
1514 compression = btrfs_file_extent_compression(path->nodes[0], ei);
1515 BUG_ON(type != BTRFS_FILE_EXTENT_INLINE);
1516 BUG_ON(compression);
1517
1518 off = btrfs_file_extent_inline_start(ei);
Chris Mason514ac8a2014-01-03 21:07:00 -08001519 len = btrfs_file_extent_inline_len(path->nodes[0], path->slots[0], ei);
Alexander Block31db9f72012-07-25 23:19:24 +02001520
1521 ret = fs_path_add_from_extent_buffer(dest, path->nodes[0], off, len);
Alexander Block31db9f72012-07-25 23:19:24 +02001522
1523out:
1524 btrfs_free_path(path);
1525 return ret;
1526}
1527
1528/*
1529 * Helper function to generate a file name that is unique in the root of
1530 * send_root and parent_root. This is used to generate names for orphan inodes.
1531 */
1532static int gen_unique_name(struct send_ctx *sctx,
1533 u64 ino, u64 gen,
1534 struct fs_path *dest)
1535{
1536 int ret = 0;
1537 struct btrfs_path *path;
1538 struct btrfs_dir_item *di;
1539 char tmp[64];
1540 int len;
1541 u64 idx = 0;
1542
1543 path = alloc_path_for_send();
1544 if (!path)
1545 return -ENOMEM;
1546
1547 while (1) {
Filipe David Borba Mananaf74b86d2014-01-21 23:36:38 +00001548 len = snprintf(tmp, sizeof(tmp), "o%llu-%llu-%llu",
Alexander Block31db9f72012-07-25 23:19:24 +02001549 ino, gen, idx);
David Sterba64792f22014-02-03 18:24:09 +01001550 ASSERT(len < sizeof(tmp));
Alexander Block31db9f72012-07-25 23:19:24 +02001551
1552 di = btrfs_lookup_dir_item(NULL, sctx->send_root,
1553 path, BTRFS_FIRST_FREE_OBJECTID,
1554 tmp, strlen(tmp), 0);
1555 btrfs_release_path(path);
1556 if (IS_ERR(di)) {
1557 ret = PTR_ERR(di);
1558 goto out;
1559 }
1560 if (di) {
1561 /* not unique, try again */
1562 idx++;
1563 continue;
1564 }
1565
1566 if (!sctx->parent_root) {
1567 /* unique */
1568 ret = 0;
1569 break;
1570 }
1571
1572 di = btrfs_lookup_dir_item(NULL, sctx->parent_root,
1573 path, BTRFS_FIRST_FREE_OBJECTID,
1574 tmp, strlen(tmp), 0);
1575 btrfs_release_path(path);
1576 if (IS_ERR(di)) {
1577 ret = PTR_ERR(di);
1578 goto out;
1579 }
1580 if (di) {
1581 /* not unique, try again */
1582 idx++;
1583 continue;
1584 }
1585 /* unique */
1586 break;
1587 }
1588
1589 ret = fs_path_add(dest, tmp, strlen(tmp));
1590
1591out:
1592 btrfs_free_path(path);
1593 return ret;
1594}
1595
1596enum inode_state {
1597 inode_state_no_change,
1598 inode_state_will_create,
1599 inode_state_did_create,
1600 inode_state_will_delete,
1601 inode_state_did_delete,
1602};
1603
1604static int get_cur_inode_state(struct send_ctx *sctx, u64 ino, u64 gen)
1605{
1606 int ret;
1607 int left_ret;
1608 int right_ret;
1609 u64 left_gen;
1610 u64 right_gen;
1611
1612 ret = get_inode_info(sctx->send_root, ino, NULL, &left_gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001613 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001614 if (ret < 0 && ret != -ENOENT)
1615 goto out;
1616 left_ret = ret;
1617
1618 if (!sctx->parent_root) {
1619 right_ret = -ENOENT;
1620 } else {
1621 ret = get_inode_info(sctx->parent_root, ino, NULL, &right_gen,
Alexander Block85a7b332012-07-26 23:39:10 +02001622 NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001623 if (ret < 0 && ret != -ENOENT)
1624 goto out;
1625 right_ret = ret;
1626 }
1627
1628 if (!left_ret && !right_ret) {
Alexander Blocke938c8a2012-07-28 16:33:49 +02001629 if (left_gen == gen && right_gen == gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02001630 ret = inode_state_no_change;
Alexander Blocke938c8a2012-07-28 16:33:49 +02001631 } else if (left_gen == gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02001632 if (ino < sctx->send_progress)
1633 ret = inode_state_did_create;
1634 else
1635 ret = inode_state_will_create;
1636 } else if (right_gen == gen) {
1637 if (ino < sctx->send_progress)
1638 ret = inode_state_did_delete;
1639 else
1640 ret = inode_state_will_delete;
1641 } else {
1642 ret = -ENOENT;
1643 }
1644 } else if (!left_ret) {
1645 if (left_gen == gen) {
1646 if (ino < sctx->send_progress)
1647 ret = inode_state_did_create;
1648 else
1649 ret = inode_state_will_create;
1650 } else {
1651 ret = -ENOENT;
1652 }
1653 } else if (!right_ret) {
1654 if (right_gen == gen) {
1655 if (ino < sctx->send_progress)
1656 ret = inode_state_did_delete;
1657 else
1658 ret = inode_state_will_delete;
1659 } else {
1660 ret = -ENOENT;
1661 }
1662 } else {
1663 ret = -ENOENT;
1664 }
1665
1666out:
1667 return ret;
1668}
1669
1670static int is_inode_existent(struct send_ctx *sctx, u64 ino, u64 gen)
1671{
1672 int ret;
1673
Robbie Ko4dd99202017-01-05 16:24:55 +08001674 if (ino == BTRFS_FIRST_FREE_OBJECTID)
1675 return 1;
1676
Alexander Block31db9f72012-07-25 23:19:24 +02001677 ret = get_cur_inode_state(sctx, ino, gen);
1678 if (ret < 0)
1679 goto out;
1680
1681 if (ret == inode_state_no_change ||
1682 ret == inode_state_did_create ||
1683 ret == inode_state_will_delete)
1684 ret = 1;
1685 else
1686 ret = 0;
1687
1688out:
1689 return ret;
1690}
1691
1692/*
1693 * Helper function to lookup a dir item in a dir.
1694 */
1695static int lookup_dir_item_inode(struct btrfs_root *root,
1696 u64 dir, const char *name, int name_len,
1697 u64 *found_inode,
1698 u8 *found_type)
1699{
1700 int ret = 0;
1701 struct btrfs_dir_item *di;
1702 struct btrfs_key key;
1703 struct btrfs_path *path;
1704
1705 path = alloc_path_for_send();
1706 if (!path)
1707 return -ENOMEM;
1708
1709 di = btrfs_lookup_dir_item(NULL, root, path,
1710 dir, name, name_len, 0);
1711 if (!di) {
1712 ret = -ENOENT;
1713 goto out;
1714 }
1715 if (IS_ERR(di)) {
1716 ret = PTR_ERR(di);
1717 goto out;
1718 }
1719 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
Filipe Manana1af56072014-05-25 04:49:24 +01001720 if (key.type == BTRFS_ROOT_ITEM_KEY) {
1721 ret = -ENOENT;
1722 goto out;
1723 }
Alexander Block31db9f72012-07-25 23:19:24 +02001724 *found_inode = key.objectid;
1725 *found_type = btrfs_dir_type(path->nodes[0], di);
1726
1727out:
1728 btrfs_free_path(path);
1729 return ret;
1730}
1731
Alexander Block766702e2012-07-28 14:11:31 +02001732/*
1733 * Looks up the first btrfs_inode_ref of a given ino. It returns the parent dir,
1734 * generation of the parent dir and the name of the dir entry.
1735 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001736static int get_first_ref(struct btrfs_root *root, u64 ino,
Alexander Block31db9f72012-07-25 23:19:24 +02001737 u64 *dir, u64 *dir_gen, struct fs_path *name)
1738{
1739 int ret;
1740 struct btrfs_key key;
1741 struct btrfs_key found_key;
1742 struct btrfs_path *path;
Alexander Block31db9f72012-07-25 23:19:24 +02001743 int len;
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001744 u64 parent_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001745
1746 path = alloc_path_for_send();
1747 if (!path)
1748 return -ENOMEM;
1749
1750 key.objectid = ino;
1751 key.type = BTRFS_INODE_REF_KEY;
1752 key.offset = 0;
1753
1754 ret = btrfs_search_slot_for_read(root, &key, path, 1, 0);
1755 if (ret < 0)
1756 goto out;
1757 if (!ret)
1758 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1759 path->slots[0]);
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001760 if (ret || found_key.objectid != ino ||
1761 (found_key.type != BTRFS_INODE_REF_KEY &&
1762 found_key.type != BTRFS_INODE_EXTREF_KEY)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001763 ret = -ENOENT;
1764 goto out;
1765 }
1766
Filipe Manana51a60252014-05-13 22:01:02 +01001767 if (found_key.type == BTRFS_INODE_REF_KEY) {
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001768 struct btrfs_inode_ref *iref;
1769 iref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1770 struct btrfs_inode_ref);
1771 len = btrfs_inode_ref_name_len(path->nodes[0], iref);
1772 ret = fs_path_add_from_extent_buffer(name, path->nodes[0],
1773 (unsigned long)(iref + 1),
1774 len);
1775 parent_dir = found_key.offset;
1776 } else {
1777 struct btrfs_inode_extref *extref;
1778 extref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1779 struct btrfs_inode_extref);
1780 len = btrfs_inode_extref_name_len(path->nodes[0], extref);
1781 ret = fs_path_add_from_extent_buffer(name, path->nodes[0],
1782 (unsigned long)&extref->name, len);
1783 parent_dir = btrfs_inode_extref_parent(path->nodes[0], extref);
1784 }
Alexander Block31db9f72012-07-25 23:19:24 +02001785 if (ret < 0)
1786 goto out;
1787 btrfs_release_path(path);
1788
Filipe Mananab46ab972014-03-21 12:46:54 +00001789 if (dir_gen) {
1790 ret = get_inode_info(root, parent_dir, NULL, dir_gen, NULL,
1791 NULL, NULL, NULL);
1792 if (ret < 0)
1793 goto out;
1794 }
Alexander Block31db9f72012-07-25 23:19:24 +02001795
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001796 *dir = parent_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001797
1798out:
1799 btrfs_free_path(path);
1800 return ret;
1801}
1802
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001803static int is_first_ref(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001804 u64 ino, u64 dir,
1805 const char *name, int name_len)
1806{
1807 int ret;
1808 struct fs_path *tmp_name;
1809 u64 tmp_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001810
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001811 tmp_name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02001812 if (!tmp_name)
1813 return -ENOMEM;
1814
Filipe Mananab46ab972014-03-21 12:46:54 +00001815 ret = get_first_ref(root, ino, &tmp_dir, NULL, tmp_name);
Alexander Block31db9f72012-07-25 23:19:24 +02001816 if (ret < 0)
1817 goto out;
1818
Alexander Blockb9291af2012-07-28 11:07:18 +02001819 if (dir != tmp_dir || name_len != fs_path_len(tmp_name)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001820 ret = 0;
1821 goto out;
1822 }
1823
Alexander Blocke938c8a2012-07-28 16:33:49 +02001824 ret = !memcmp(tmp_name->start, name, name_len);
Alexander Block31db9f72012-07-25 23:19:24 +02001825
1826out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001827 fs_path_free(tmp_name);
Alexander Block31db9f72012-07-25 23:19:24 +02001828 return ret;
1829}
1830
Alexander Block766702e2012-07-28 14:11:31 +02001831/*
1832 * Used by process_recorded_refs to determine if a new ref would overwrite an
1833 * already existing ref. In case it detects an overwrite, it returns the
1834 * inode/gen in who_ino/who_gen.
1835 * When an overwrite is detected, process_recorded_refs does proper orphanizing
1836 * to make sure later references to the overwritten inode are possible.
1837 * Orphanizing is however only required for the first ref of an inode.
1838 * process_recorded_refs does an additional is_first_ref check to see if
1839 * orphanizing is really required.
1840 */
Alexander Block31db9f72012-07-25 23:19:24 +02001841static int will_overwrite_ref(struct send_ctx *sctx, u64 dir, u64 dir_gen,
1842 const char *name, int name_len,
Filipe Mananaf5962782017-06-22 20:03:51 +01001843 u64 *who_ino, u64 *who_gen, u64 *who_mode)
Alexander Block31db9f72012-07-25 23:19:24 +02001844{
1845 int ret = 0;
Josef Bacikebdad912013-08-06 16:47:48 -04001846 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +02001847 u64 other_inode = 0;
1848 u8 other_type = 0;
1849
1850 if (!sctx->parent_root)
1851 goto out;
1852
1853 ret = is_inode_existent(sctx, dir, dir_gen);
1854 if (ret <= 0)
1855 goto out;
1856
Josef Bacikebdad912013-08-06 16:47:48 -04001857 /*
1858 * If we have a parent root we need to verify that the parent dir was
Nicholas D Steeves01327612016-05-19 21:18:45 -04001859 * not deleted and then re-created, if it was then we have no overwrite
Josef Bacikebdad912013-08-06 16:47:48 -04001860 * and we can just unlink this entry.
1861 */
Robbie Ko4dd99202017-01-05 16:24:55 +08001862 if (sctx->parent_root && dir != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacikebdad912013-08-06 16:47:48 -04001863 ret = get_inode_info(sctx->parent_root, dir, NULL, &gen, NULL,
1864 NULL, NULL, NULL);
1865 if (ret < 0 && ret != -ENOENT)
1866 goto out;
1867 if (ret) {
1868 ret = 0;
1869 goto out;
1870 }
1871 if (gen != dir_gen)
1872 goto out;
1873 }
1874
Alexander Block31db9f72012-07-25 23:19:24 +02001875 ret = lookup_dir_item_inode(sctx->parent_root, dir, name, name_len,
1876 &other_inode, &other_type);
1877 if (ret < 0 && ret != -ENOENT)
1878 goto out;
1879 if (ret) {
1880 ret = 0;
1881 goto out;
1882 }
1883
Alexander Block766702e2012-07-28 14:11:31 +02001884 /*
1885 * Check if the overwritten ref was already processed. If yes, the ref
1886 * was already unlinked/moved, so we can safely assume that we will not
1887 * overwrite anything at this point in time.
1888 */
Robbie Ko801bec32015-06-23 18:39:46 +08001889 if (other_inode > sctx->send_progress ||
1890 is_waiting_for_move(sctx, other_inode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001891 ret = get_inode_info(sctx->parent_root, other_inode, NULL,
Filipe Mananaf5962782017-06-22 20:03:51 +01001892 who_gen, who_mode, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001893 if (ret < 0)
1894 goto out;
1895
1896 ret = 1;
1897 *who_ino = other_inode;
1898 } else {
1899 ret = 0;
1900 }
1901
1902out:
1903 return ret;
1904}
1905
Alexander Block766702e2012-07-28 14:11:31 +02001906/*
1907 * Checks if the ref was overwritten by an already processed inode. This is
1908 * used by __get_cur_name_and_parent to find out if the ref was orphanized and
1909 * thus the orphan name needs be used.
1910 * process_recorded_refs also uses it to avoid unlinking of refs that were
1911 * overwritten.
1912 */
Alexander Block31db9f72012-07-25 23:19:24 +02001913static int did_overwrite_ref(struct send_ctx *sctx,
1914 u64 dir, u64 dir_gen,
1915 u64 ino, u64 ino_gen,
1916 const char *name, int name_len)
1917{
1918 int ret = 0;
1919 u64 gen;
1920 u64 ow_inode;
1921 u8 other_type;
1922
1923 if (!sctx->parent_root)
1924 goto out;
1925
1926 ret = is_inode_existent(sctx, dir, dir_gen);
1927 if (ret <= 0)
1928 goto out;
1929
Robbie Ko01914102017-01-05 16:24:58 +08001930 if (dir != BTRFS_FIRST_FREE_OBJECTID) {
1931 ret = get_inode_info(sctx->send_root, dir, NULL, &gen, NULL,
1932 NULL, NULL, NULL);
1933 if (ret < 0 && ret != -ENOENT)
1934 goto out;
1935 if (ret) {
1936 ret = 0;
1937 goto out;
1938 }
1939 if (gen != dir_gen)
1940 goto out;
1941 }
1942
Alexander Block31db9f72012-07-25 23:19:24 +02001943 /* check if the ref was overwritten by another ref */
1944 ret = lookup_dir_item_inode(sctx->send_root, dir, name, name_len,
1945 &ow_inode, &other_type);
1946 if (ret < 0 && ret != -ENOENT)
1947 goto out;
1948 if (ret) {
1949 /* was never and will never be overwritten */
1950 ret = 0;
1951 goto out;
1952 }
1953
1954 ret = get_inode_info(sctx->send_root, ow_inode, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001955 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001956 if (ret < 0)
1957 goto out;
1958
1959 if (ow_inode == ino && gen == ino_gen) {
1960 ret = 0;
1961 goto out;
1962 }
1963
Filipe Manana8b191a62015-04-09 14:09:14 +01001964 /*
1965 * We know that it is or will be overwritten. Check this now.
1966 * The current inode being processed might have been the one that caused
Filipe Mananab786f162015-09-26 15:30:23 +01001967 * inode 'ino' to be orphanized, therefore check if ow_inode matches
1968 * the current inode being processed.
Filipe Manana8b191a62015-04-09 14:09:14 +01001969 */
Filipe Mananab786f162015-09-26 15:30:23 +01001970 if ((ow_inode < sctx->send_progress) ||
1971 (ino != sctx->cur_ino && ow_inode == sctx->cur_ino &&
1972 gen == sctx->cur_inode_gen))
Alexander Block31db9f72012-07-25 23:19:24 +02001973 ret = 1;
1974 else
1975 ret = 0;
1976
1977out:
1978 return ret;
1979}
1980
Alexander Block766702e2012-07-28 14:11:31 +02001981/*
1982 * Same as did_overwrite_ref, but also checks if it is the first ref of an inode
1983 * that got overwritten. This is used by process_recorded_refs to determine
1984 * if it has to use the path as returned by get_cur_path or the orphan name.
1985 */
Alexander Block31db9f72012-07-25 23:19:24 +02001986static int did_overwrite_first_ref(struct send_ctx *sctx, u64 ino, u64 gen)
1987{
1988 int ret = 0;
1989 struct fs_path *name = NULL;
1990 u64 dir;
1991 u64 dir_gen;
1992
1993 if (!sctx->parent_root)
1994 goto out;
1995
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001996 name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02001997 if (!name)
1998 return -ENOMEM;
1999
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002000 ret = get_first_ref(sctx->parent_root, ino, &dir, &dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02002001 if (ret < 0)
2002 goto out;
2003
2004 ret = did_overwrite_ref(sctx, dir, dir_gen, ino, gen,
2005 name->start, fs_path_len(name));
Alexander Block31db9f72012-07-25 23:19:24 +02002006
2007out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002008 fs_path_free(name);
Alexander Block31db9f72012-07-25 23:19:24 +02002009 return ret;
2010}
2011
Alexander Block766702e2012-07-28 14:11:31 +02002012/*
2013 * Insert a name cache entry. On 32bit kernels the radix tree index is 32bit,
2014 * so we need to do some special handling in case we have clashes. This function
2015 * takes care of this with the help of name_cache_entry::radix_list.
Alexander Block5dc67d02012-08-01 12:07:43 +02002016 * In case of error, nce is kfreed.
Alexander Block766702e2012-07-28 14:11:31 +02002017 */
Alexander Block31db9f72012-07-25 23:19:24 +02002018static int name_cache_insert(struct send_ctx *sctx,
2019 struct name_cache_entry *nce)
2020{
2021 int ret = 0;
Alexander Block7e0926f2012-07-28 14:20:58 +02002022 struct list_head *nce_head;
Alexander Block31db9f72012-07-25 23:19:24 +02002023
Alexander Block7e0926f2012-07-28 14:20:58 +02002024 nce_head = radix_tree_lookup(&sctx->name_cache,
2025 (unsigned long)nce->ino);
2026 if (!nce_head) {
David Sterbae780b0d2016-01-18 18:42:13 +01002027 nce_head = kmalloc(sizeof(*nce_head), GFP_KERNEL);
Tsutomu Itohcfa7a9c2012-12-17 06:38:51 +00002028 if (!nce_head) {
2029 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02002030 return -ENOMEM;
Tsutomu Itohcfa7a9c2012-12-17 06:38:51 +00002031 }
Alexander Block7e0926f2012-07-28 14:20:58 +02002032 INIT_LIST_HEAD(nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02002033
Alexander Block7e0926f2012-07-28 14:20:58 +02002034 ret = radix_tree_insert(&sctx->name_cache, nce->ino, nce_head);
Alexander Block5dc67d02012-08-01 12:07:43 +02002035 if (ret < 0) {
2036 kfree(nce_head);
2037 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02002038 return ret;
Alexander Block5dc67d02012-08-01 12:07:43 +02002039 }
Alexander Block31db9f72012-07-25 23:19:24 +02002040 }
Alexander Block7e0926f2012-07-28 14:20:58 +02002041 list_add_tail(&nce->radix_list, nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02002042 list_add_tail(&nce->list, &sctx->name_cache_list);
2043 sctx->name_cache_size++;
2044
2045 return ret;
2046}
2047
2048static void name_cache_delete(struct send_ctx *sctx,
2049 struct name_cache_entry *nce)
2050{
Alexander Block7e0926f2012-07-28 14:20:58 +02002051 struct list_head *nce_head;
Alexander Block31db9f72012-07-25 23:19:24 +02002052
Alexander Block7e0926f2012-07-28 14:20:58 +02002053 nce_head = radix_tree_lookup(&sctx->name_cache,
2054 (unsigned long)nce->ino);
David Sterba57fb8912014-02-03 19:24:40 +01002055 if (!nce_head) {
2056 btrfs_err(sctx->send_root->fs_info,
2057 "name_cache_delete lookup failed ino %llu cache size %d, leaking memory",
2058 nce->ino, sctx->name_cache_size);
2059 }
Alexander Block31db9f72012-07-25 23:19:24 +02002060
Alexander Block7e0926f2012-07-28 14:20:58 +02002061 list_del(&nce->radix_list);
Alexander Block31db9f72012-07-25 23:19:24 +02002062 list_del(&nce->list);
Alexander Block31db9f72012-07-25 23:19:24 +02002063 sctx->name_cache_size--;
Alexander Block7e0926f2012-07-28 14:20:58 +02002064
David Sterba57fb8912014-02-03 19:24:40 +01002065 /*
2066 * We may not get to the final release of nce_head if the lookup fails
2067 */
2068 if (nce_head && list_empty(nce_head)) {
Alexander Block7e0926f2012-07-28 14:20:58 +02002069 radix_tree_delete(&sctx->name_cache, (unsigned long)nce->ino);
2070 kfree(nce_head);
2071 }
Alexander Block31db9f72012-07-25 23:19:24 +02002072}
2073
2074static struct name_cache_entry *name_cache_search(struct send_ctx *sctx,
2075 u64 ino, u64 gen)
2076{
Alexander Block7e0926f2012-07-28 14:20:58 +02002077 struct list_head *nce_head;
2078 struct name_cache_entry *cur;
Alexander Block31db9f72012-07-25 23:19:24 +02002079
Alexander Block7e0926f2012-07-28 14:20:58 +02002080 nce_head = radix_tree_lookup(&sctx->name_cache, (unsigned long)ino);
2081 if (!nce_head)
Alexander Block31db9f72012-07-25 23:19:24 +02002082 return NULL;
2083
Alexander Block7e0926f2012-07-28 14:20:58 +02002084 list_for_each_entry(cur, nce_head, radix_list) {
2085 if (cur->ino == ino && cur->gen == gen)
2086 return cur;
2087 }
Alexander Block31db9f72012-07-25 23:19:24 +02002088 return NULL;
2089}
2090
Alexander Block766702e2012-07-28 14:11:31 +02002091/*
2092 * Removes the entry from the list and adds it back to the end. This marks the
2093 * entry as recently used so that name_cache_clean_unused does not remove it.
2094 */
Alexander Block31db9f72012-07-25 23:19:24 +02002095static void name_cache_used(struct send_ctx *sctx, struct name_cache_entry *nce)
2096{
2097 list_del(&nce->list);
2098 list_add_tail(&nce->list, &sctx->name_cache_list);
2099}
2100
Alexander Block766702e2012-07-28 14:11:31 +02002101/*
2102 * Remove some entries from the beginning of name_cache_list.
2103 */
Alexander Block31db9f72012-07-25 23:19:24 +02002104static void name_cache_clean_unused(struct send_ctx *sctx)
2105{
2106 struct name_cache_entry *nce;
2107
2108 if (sctx->name_cache_size < SEND_CTX_NAME_CACHE_CLEAN_SIZE)
2109 return;
2110
2111 while (sctx->name_cache_size > SEND_CTX_MAX_NAME_CACHE_SIZE) {
2112 nce = list_entry(sctx->name_cache_list.next,
2113 struct name_cache_entry, list);
2114 name_cache_delete(sctx, nce);
2115 kfree(nce);
2116 }
2117}
2118
2119static void name_cache_free(struct send_ctx *sctx)
2120{
2121 struct name_cache_entry *nce;
Alexander Block31db9f72012-07-25 23:19:24 +02002122
Alexander Blocke938c8a2012-07-28 16:33:49 +02002123 while (!list_empty(&sctx->name_cache_list)) {
2124 nce = list_entry(sctx->name_cache_list.next,
2125 struct name_cache_entry, list);
Alexander Block31db9f72012-07-25 23:19:24 +02002126 name_cache_delete(sctx, nce);
Alexander Block17589bd2012-07-28 14:13:35 +02002127 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02002128 }
2129}
2130
Alexander Block766702e2012-07-28 14:11:31 +02002131/*
2132 * Used by get_cur_path for each ref up to the root.
2133 * Returns 0 if it succeeded.
2134 * Returns 1 if the inode is not existent or got overwritten. In that case, the
2135 * name is an orphan name. This instructs get_cur_path to stop iterating. If 1
2136 * is returned, parent_ino/parent_gen are not guaranteed to be valid.
2137 * Returns <0 in case of error.
2138 */
Alexander Block31db9f72012-07-25 23:19:24 +02002139static int __get_cur_name_and_parent(struct send_ctx *sctx,
2140 u64 ino, u64 gen,
2141 u64 *parent_ino,
2142 u64 *parent_gen,
2143 struct fs_path *dest)
2144{
2145 int ret;
2146 int nce_ret;
Alexander Block31db9f72012-07-25 23:19:24 +02002147 struct name_cache_entry *nce = NULL;
2148
Alexander Block766702e2012-07-28 14:11:31 +02002149 /*
2150 * First check if we already did a call to this function with the same
2151 * ino/gen. If yes, check if the cache entry is still up-to-date. If yes
2152 * return the cached result.
2153 */
Alexander Block31db9f72012-07-25 23:19:24 +02002154 nce = name_cache_search(sctx, ino, gen);
2155 if (nce) {
2156 if (ino < sctx->send_progress && nce->need_later_update) {
2157 name_cache_delete(sctx, nce);
2158 kfree(nce);
2159 nce = NULL;
2160 } else {
2161 name_cache_used(sctx, nce);
2162 *parent_ino = nce->parent_ino;
2163 *parent_gen = nce->parent_gen;
2164 ret = fs_path_add(dest, nce->name, nce->name_len);
2165 if (ret < 0)
2166 goto out;
2167 ret = nce->ret;
2168 goto out;
2169 }
2170 }
2171
Alexander Block766702e2012-07-28 14:11:31 +02002172 /*
2173 * If the inode is not existent yet, add the orphan name and return 1.
2174 * This should only happen for the parent dir that we determine in
2175 * __record_new_ref
2176 */
Alexander Block31db9f72012-07-25 23:19:24 +02002177 ret = is_inode_existent(sctx, ino, gen);
2178 if (ret < 0)
2179 goto out;
2180
2181 if (!ret) {
2182 ret = gen_unique_name(sctx, ino, gen, dest);
2183 if (ret < 0)
2184 goto out;
2185 ret = 1;
2186 goto out_cache;
2187 }
2188
Alexander Block766702e2012-07-28 14:11:31 +02002189 /*
2190 * Depending on whether the inode was already processed or not, use
2191 * send_root or parent_root for ref lookup.
2192 */
Filipe Mananabf0d1f42014-02-21 00:01:32 +00002193 if (ino < sctx->send_progress)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002194 ret = get_first_ref(sctx->send_root, ino,
2195 parent_ino, parent_gen, dest);
Alexander Block31db9f72012-07-25 23:19:24 +02002196 else
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002197 ret = get_first_ref(sctx->parent_root, ino,
2198 parent_ino, parent_gen, dest);
Alexander Block31db9f72012-07-25 23:19:24 +02002199 if (ret < 0)
2200 goto out;
2201
Alexander Block766702e2012-07-28 14:11:31 +02002202 /*
2203 * Check if the ref was overwritten by an inode's ref that was processed
2204 * earlier. If yes, treat as orphan and return 1.
2205 */
Alexander Block31db9f72012-07-25 23:19:24 +02002206 ret = did_overwrite_ref(sctx, *parent_ino, *parent_gen, ino, gen,
2207 dest->start, dest->end - dest->start);
2208 if (ret < 0)
2209 goto out;
2210 if (ret) {
2211 fs_path_reset(dest);
2212 ret = gen_unique_name(sctx, ino, gen, dest);
2213 if (ret < 0)
2214 goto out;
2215 ret = 1;
2216 }
2217
2218out_cache:
Alexander Block766702e2012-07-28 14:11:31 +02002219 /*
2220 * Store the result of the lookup in the name cache.
2221 */
David Sterbae780b0d2016-01-18 18:42:13 +01002222 nce = kmalloc(sizeof(*nce) + fs_path_len(dest) + 1, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002223 if (!nce) {
2224 ret = -ENOMEM;
2225 goto out;
2226 }
2227
2228 nce->ino = ino;
2229 nce->gen = gen;
2230 nce->parent_ino = *parent_ino;
2231 nce->parent_gen = *parent_gen;
2232 nce->name_len = fs_path_len(dest);
2233 nce->ret = ret;
2234 strcpy(nce->name, dest->start);
Alexander Block31db9f72012-07-25 23:19:24 +02002235
2236 if (ino < sctx->send_progress)
2237 nce->need_later_update = 0;
2238 else
2239 nce->need_later_update = 1;
2240
2241 nce_ret = name_cache_insert(sctx, nce);
2242 if (nce_ret < 0)
2243 ret = nce_ret;
2244 name_cache_clean_unused(sctx);
2245
2246out:
Alexander Block31db9f72012-07-25 23:19:24 +02002247 return ret;
2248}
2249
2250/*
2251 * Magic happens here. This function returns the first ref to an inode as it
2252 * would look like while receiving the stream at this point in time.
2253 * We walk the path up to the root. For every inode in between, we check if it
2254 * was already processed/sent. If yes, we continue with the parent as found
2255 * in send_root. If not, we continue with the parent as found in parent_root.
2256 * If we encounter an inode that was deleted at this point in time, we use the
2257 * inodes "orphan" name instead of the real name and stop. Same with new inodes
2258 * that were not created yet and overwritten inodes/refs.
2259 *
2260 * When do we have have orphan inodes:
2261 * 1. When an inode is freshly created and thus no valid refs are available yet
2262 * 2. When a directory lost all it's refs (deleted) but still has dir items
2263 * inside which were not processed yet (pending for move/delete). If anyone
2264 * tried to get the path to the dir items, it would get a path inside that
2265 * orphan directory.
2266 * 3. When an inode is moved around or gets new links, it may overwrite the ref
2267 * of an unprocessed inode. If in that case the first ref would be
2268 * overwritten, the overwritten inode gets "orphanized". Later when we
2269 * process this overwritten inode, it is restored at a new place by moving
2270 * the orphan inode.
2271 *
2272 * sctx->send_progress tells this function at which point in time receiving
2273 * would be.
2274 */
2275static int get_cur_path(struct send_ctx *sctx, u64 ino, u64 gen,
2276 struct fs_path *dest)
2277{
2278 int ret = 0;
2279 struct fs_path *name = NULL;
2280 u64 parent_inode = 0;
2281 u64 parent_gen = 0;
2282 int stop = 0;
2283
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002284 name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002285 if (!name) {
2286 ret = -ENOMEM;
2287 goto out;
2288 }
2289
2290 dest->reversed = 1;
2291 fs_path_reset(dest);
2292
2293 while (!stop && ino != BTRFS_FIRST_FREE_OBJECTID) {
Filipe Manana8b191a62015-04-09 14:09:14 +01002294 struct waiting_dir_move *wdm;
2295
Alexander Block31db9f72012-07-25 23:19:24 +02002296 fs_path_reset(name);
2297
Filipe Manana9dc44212014-02-19 14:31:44 +00002298 if (is_waiting_for_rm(sctx, ino)) {
2299 ret = gen_unique_name(sctx, ino, gen, name);
2300 if (ret < 0)
2301 goto out;
2302 ret = fs_path_add_path(dest, name);
2303 break;
2304 }
2305
Filipe Manana8b191a62015-04-09 14:09:14 +01002306 wdm = get_waiting_dir_move(sctx, ino);
2307 if (wdm && wdm->orphanized) {
2308 ret = gen_unique_name(sctx, ino, gen, name);
2309 stop = 1;
2310 } else if (wdm) {
Filipe Mananabf0d1f42014-02-21 00:01:32 +00002311 ret = get_first_ref(sctx->parent_root, ino,
2312 &parent_inode, &parent_gen, name);
2313 } else {
2314 ret = __get_cur_name_and_parent(sctx, ino, gen,
2315 &parent_inode,
2316 &parent_gen, name);
2317 if (ret)
2318 stop = 1;
2319 }
2320
Alexander Block31db9f72012-07-25 23:19:24 +02002321 if (ret < 0)
2322 goto out;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002323
Alexander Block31db9f72012-07-25 23:19:24 +02002324 ret = fs_path_add_path(dest, name);
2325 if (ret < 0)
2326 goto out;
2327
2328 ino = parent_inode;
2329 gen = parent_gen;
2330 }
2331
2332out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002333 fs_path_free(name);
Alexander Block31db9f72012-07-25 23:19:24 +02002334 if (!ret)
2335 fs_path_unreverse(dest);
2336 return ret;
2337}
2338
2339/*
Alexander Block31db9f72012-07-25 23:19:24 +02002340 * Sends a BTRFS_SEND_C_SUBVOL command/item to userspace
2341 */
2342static int send_subvol_begin(struct send_ctx *sctx)
2343{
2344 int ret;
2345 struct btrfs_root *send_root = sctx->send_root;
2346 struct btrfs_root *parent_root = sctx->parent_root;
2347 struct btrfs_path *path;
2348 struct btrfs_key key;
2349 struct btrfs_root_ref *ref;
2350 struct extent_buffer *leaf;
2351 char *name = NULL;
2352 int namelen;
2353
Wang Shilongffcfaf82014-01-15 00:26:43 +08002354 path = btrfs_alloc_path();
Alexander Block31db9f72012-07-25 23:19:24 +02002355 if (!path)
2356 return -ENOMEM;
2357
David Sterbae780b0d2016-01-18 18:42:13 +01002358 name = kmalloc(BTRFS_PATH_NAME_MAX, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002359 if (!name) {
2360 btrfs_free_path(path);
2361 return -ENOMEM;
2362 }
2363
2364 key.objectid = send_root->objectid;
2365 key.type = BTRFS_ROOT_BACKREF_KEY;
2366 key.offset = 0;
2367
2368 ret = btrfs_search_slot_for_read(send_root->fs_info->tree_root,
2369 &key, path, 1, 0);
2370 if (ret < 0)
2371 goto out;
2372 if (ret) {
2373 ret = -ENOENT;
2374 goto out;
2375 }
2376
2377 leaf = path->nodes[0];
2378 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2379 if (key.type != BTRFS_ROOT_BACKREF_KEY ||
2380 key.objectid != send_root->objectid) {
2381 ret = -ENOENT;
2382 goto out;
2383 }
2384 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
2385 namelen = btrfs_root_ref_name_len(leaf, ref);
2386 read_extent_buffer(leaf, name, (unsigned long)(ref + 1), namelen);
2387 btrfs_release_path(path);
2388
Alexander Block31db9f72012-07-25 23:19:24 +02002389 if (parent_root) {
2390 ret = begin_cmd(sctx, BTRFS_SEND_C_SNAPSHOT);
2391 if (ret < 0)
2392 goto out;
2393 } else {
2394 ret = begin_cmd(sctx, BTRFS_SEND_C_SUBVOL);
2395 if (ret < 0)
2396 goto out;
2397 }
2398
2399 TLV_PUT_STRING(sctx, BTRFS_SEND_A_PATH, name, namelen);
Robin Ruedeb96b1db2015-09-30 21:23:33 +02002400
2401 if (!btrfs_is_empty_uuid(sctx->send_root->root_item.received_uuid))
2402 TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID,
2403 sctx->send_root->root_item.received_uuid);
2404 else
2405 TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID,
2406 sctx->send_root->root_item.uuid);
2407
Alexander Block31db9f72012-07-25 23:19:24 +02002408 TLV_PUT_U64(sctx, BTRFS_SEND_A_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00002409 le64_to_cpu(sctx->send_root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02002410 if (parent_root) {
Josef Bacik37b8d272015-06-04 17:17:25 -04002411 if (!btrfs_is_empty_uuid(parent_root->root_item.received_uuid))
2412 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
2413 parent_root->root_item.received_uuid);
2414 else
2415 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
2416 parent_root->root_item.uuid);
Alexander Block31db9f72012-07-25 23:19:24 +02002417 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00002418 le64_to_cpu(sctx->parent_root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02002419 }
2420
2421 ret = send_cmd(sctx);
2422
2423tlv_put_failure:
2424out:
2425 btrfs_free_path(path);
2426 kfree(name);
2427 return ret;
2428}
2429
2430static int send_truncate(struct send_ctx *sctx, u64 ino, u64 gen, u64 size)
2431{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002432 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002433 int ret = 0;
2434 struct fs_path *p;
2435
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002436 btrfs_debug(fs_info, "send_truncate %llu size=%llu", ino, size);
Alexander Block31db9f72012-07-25 23:19:24 +02002437
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002438 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002439 if (!p)
2440 return -ENOMEM;
2441
2442 ret = begin_cmd(sctx, BTRFS_SEND_C_TRUNCATE);
2443 if (ret < 0)
2444 goto out;
2445
2446 ret = get_cur_path(sctx, ino, gen, p);
2447 if (ret < 0)
2448 goto out;
2449 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2450 TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, size);
2451
2452 ret = send_cmd(sctx);
2453
2454tlv_put_failure:
2455out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002456 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002457 return ret;
2458}
2459
2460static int send_chmod(struct send_ctx *sctx, u64 ino, u64 gen, u64 mode)
2461{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002462 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002463 int ret = 0;
2464 struct fs_path *p;
2465
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002466 btrfs_debug(fs_info, "send_chmod %llu mode=%llu", ino, mode);
Alexander Block31db9f72012-07-25 23:19:24 +02002467
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002468 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002469 if (!p)
2470 return -ENOMEM;
2471
2472 ret = begin_cmd(sctx, BTRFS_SEND_C_CHMOD);
2473 if (ret < 0)
2474 goto out;
2475
2476 ret = get_cur_path(sctx, ino, gen, p);
2477 if (ret < 0)
2478 goto out;
2479 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2480 TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode & 07777);
2481
2482 ret = send_cmd(sctx);
2483
2484tlv_put_failure:
2485out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002486 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002487 return ret;
2488}
2489
2490static int send_chown(struct send_ctx *sctx, u64 ino, u64 gen, u64 uid, u64 gid)
2491{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002492 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002493 int ret = 0;
2494 struct fs_path *p;
2495
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002496 btrfs_debug(fs_info, "send_chown %llu uid=%llu, gid=%llu",
2497 ino, uid, gid);
Alexander Block31db9f72012-07-25 23:19:24 +02002498
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002499 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002500 if (!p)
2501 return -ENOMEM;
2502
2503 ret = begin_cmd(sctx, BTRFS_SEND_C_CHOWN);
2504 if (ret < 0)
2505 goto out;
2506
2507 ret = get_cur_path(sctx, ino, gen, p);
2508 if (ret < 0)
2509 goto out;
2510 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2511 TLV_PUT_U64(sctx, BTRFS_SEND_A_UID, uid);
2512 TLV_PUT_U64(sctx, BTRFS_SEND_A_GID, gid);
2513
2514 ret = send_cmd(sctx);
2515
2516tlv_put_failure:
2517out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002518 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002519 return ret;
2520}
2521
2522static int send_utimes(struct send_ctx *sctx, u64 ino, u64 gen)
2523{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002524 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002525 int ret = 0;
2526 struct fs_path *p = NULL;
2527 struct btrfs_inode_item *ii;
2528 struct btrfs_path *path = NULL;
2529 struct extent_buffer *eb;
2530 struct btrfs_key key;
2531 int slot;
2532
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002533 btrfs_debug(fs_info, "send_utimes %llu", ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002534
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002535 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002536 if (!p)
2537 return -ENOMEM;
2538
2539 path = alloc_path_for_send();
2540 if (!path) {
2541 ret = -ENOMEM;
2542 goto out;
2543 }
2544
2545 key.objectid = ino;
2546 key.type = BTRFS_INODE_ITEM_KEY;
2547 key.offset = 0;
2548 ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0);
Filipe Manana15b253e2016-07-02 05:43:46 +01002549 if (ret > 0)
2550 ret = -ENOENT;
Alexander Block31db9f72012-07-25 23:19:24 +02002551 if (ret < 0)
2552 goto out;
2553
2554 eb = path->nodes[0];
2555 slot = path->slots[0];
2556 ii = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
2557
2558 ret = begin_cmd(sctx, BTRFS_SEND_C_UTIMES);
2559 if (ret < 0)
2560 goto out;
2561
2562 ret = get_cur_path(sctx, ino, gen, p);
2563 if (ret < 0)
2564 goto out;
2565 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
David Sterbaa937b972014-12-12 17:39:12 +01002566 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_ATIME, eb, &ii->atime);
2567 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_MTIME, eb, &ii->mtime);
2568 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_CTIME, eb, &ii->ctime);
Alexander Block766702e2012-07-28 14:11:31 +02002569 /* TODO Add otime support when the otime patches get into upstream */
Alexander Block31db9f72012-07-25 23:19:24 +02002570
2571 ret = send_cmd(sctx);
2572
2573tlv_put_failure:
2574out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002575 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002576 btrfs_free_path(path);
2577 return ret;
2578}
2579
2580/*
2581 * Sends a BTRFS_SEND_C_MKXXX or SYMLINK command to user space. We don't have
2582 * a valid path yet because we did not process the refs yet. So, the inode
2583 * is created as orphan.
2584 */
Alexander Block1f4692d2012-07-28 10:42:24 +02002585static int send_create_inode(struct send_ctx *sctx, u64 ino)
Alexander Block31db9f72012-07-25 23:19:24 +02002586{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002587 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02002588 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02002589 struct fs_path *p;
Alexander Block31db9f72012-07-25 23:19:24 +02002590 int cmd;
Alexander Block1f4692d2012-07-28 10:42:24 +02002591 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +02002592 u64 mode;
Alexander Block1f4692d2012-07-28 10:42:24 +02002593 u64 rdev;
Alexander Block31db9f72012-07-25 23:19:24 +02002594
Jeff Mahoney04ab9562016-09-20 10:05:03 -04002595 btrfs_debug(fs_info, "send_create_inode %llu", ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002596
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002597 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002598 if (!p)
2599 return -ENOMEM;
2600
Liu Bo644d1942014-02-27 17:29:01 +08002601 if (ino != sctx->cur_ino) {
2602 ret = get_inode_info(sctx->send_root, ino, NULL, &gen, &mode,
2603 NULL, NULL, &rdev);
2604 if (ret < 0)
2605 goto out;
2606 } else {
2607 gen = sctx->cur_inode_gen;
2608 mode = sctx->cur_inode_mode;
2609 rdev = sctx->cur_inode_rdev;
2610 }
Alexander Block31db9f72012-07-25 23:19:24 +02002611
Alexander Blocke938c8a2012-07-28 16:33:49 +02002612 if (S_ISREG(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002613 cmd = BTRFS_SEND_C_MKFILE;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002614 } else if (S_ISDIR(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002615 cmd = BTRFS_SEND_C_MKDIR;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002616 } else if (S_ISLNK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002617 cmd = BTRFS_SEND_C_SYMLINK;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002618 } else if (S_ISCHR(mode) || S_ISBLK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002619 cmd = BTRFS_SEND_C_MKNOD;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002620 } else if (S_ISFIFO(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002621 cmd = BTRFS_SEND_C_MKFIFO;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002622 } else if (S_ISSOCK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002623 cmd = BTRFS_SEND_C_MKSOCK;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002624 } else {
David Sterbaf14d1042015-10-08 11:37:06 +02002625 btrfs_warn(sctx->send_root->fs_info, "unexpected inode type %o",
Alexander Block31db9f72012-07-25 23:19:24 +02002626 (int)(mode & S_IFMT));
Tsutomu Itohca6842b2016-01-22 09:13:25 +09002627 ret = -EOPNOTSUPP;
Alexander Block31db9f72012-07-25 23:19:24 +02002628 goto out;
2629 }
2630
2631 ret = begin_cmd(sctx, cmd);
2632 if (ret < 0)
2633 goto out;
2634
Alexander Block1f4692d2012-07-28 10:42:24 +02002635 ret = gen_unique_name(sctx, ino, gen, p);
Alexander Block31db9f72012-07-25 23:19:24 +02002636 if (ret < 0)
2637 goto out;
2638
2639 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
Alexander Block1f4692d2012-07-28 10:42:24 +02002640 TLV_PUT_U64(sctx, BTRFS_SEND_A_INO, ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002641
2642 if (S_ISLNK(mode)) {
2643 fs_path_reset(p);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002644 ret = read_symlink(sctx->send_root, ino, p);
Alexander Block31db9f72012-07-25 23:19:24 +02002645 if (ret < 0)
2646 goto out;
2647 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, p);
2648 } else if (S_ISCHR(mode) || S_ISBLK(mode) ||
2649 S_ISFIFO(mode) || S_ISSOCK(mode)) {
Arne Jansend79e5042012-10-15 18:28:46 +00002650 TLV_PUT_U64(sctx, BTRFS_SEND_A_RDEV, new_encode_dev(rdev));
2651 TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode);
Alexander Block31db9f72012-07-25 23:19:24 +02002652 }
2653
2654 ret = send_cmd(sctx);
2655 if (ret < 0)
2656 goto out;
2657
2658
2659tlv_put_failure:
2660out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002661 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002662 return ret;
2663}
2664
Alexander Block1f4692d2012-07-28 10:42:24 +02002665/*
2666 * We need some special handling for inodes that get processed before the parent
2667 * directory got created. See process_recorded_refs for details.
2668 * This function does the check if we already created the dir out of order.
2669 */
2670static int did_create_dir(struct send_ctx *sctx, u64 dir)
2671{
2672 int ret = 0;
2673 struct btrfs_path *path = NULL;
2674 struct btrfs_key key;
2675 struct btrfs_key found_key;
2676 struct btrfs_key di_key;
2677 struct extent_buffer *eb;
2678 struct btrfs_dir_item *di;
2679 int slot;
2680
2681 path = alloc_path_for_send();
2682 if (!path) {
2683 ret = -ENOMEM;
2684 goto out;
2685 }
2686
2687 key.objectid = dir;
2688 key.type = BTRFS_DIR_INDEX_KEY;
2689 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002690 ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0);
2691 if (ret < 0)
2692 goto out;
2693
Alexander Block1f4692d2012-07-28 10:42:24 +02002694 while (1) {
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002695 eb = path->nodes[0];
2696 slot = path->slots[0];
2697 if (slot >= btrfs_header_nritems(eb)) {
2698 ret = btrfs_next_leaf(sctx->send_root, path);
2699 if (ret < 0) {
2700 goto out;
2701 } else if (ret > 0) {
2702 ret = 0;
2703 break;
2704 }
2705 continue;
Alexander Block1f4692d2012-07-28 10:42:24 +02002706 }
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002707
2708 btrfs_item_key_to_cpu(eb, &found_key, slot);
2709 if (found_key.objectid != key.objectid ||
Alexander Block1f4692d2012-07-28 10:42:24 +02002710 found_key.type != key.type) {
2711 ret = 0;
2712 goto out;
2713 }
2714
2715 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
2716 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
2717
Josef Bacika0525412013-08-12 10:56:14 -04002718 if (di_key.type != BTRFS_ROOT_ITEM_KEY &&
2719 di_key.objectid < sctx->send_progress) {
Alexander Block1f4692d2012-07-28 10:42:24 +02002720 ret = 1;
2721 goto out;
2722 }
2723
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002724 path->slots[0]++;
Alexander Block1f4692d2012-07-28 10:42:24 +02002725 }
2726
2727out:
2728 btrfs_free_path(path);
2729 return ret;
2730}
2731
2732/*
2733 * Only creates the inode if it is:
2734 * 1. Not a directory
2735 * 2. Or a directory which was not created already due to out of order
2736 * directories. See did_create_dir and process_recorded_refs for details.
2737 */
2738static int send_create_inode_if_needed(struct send_ctx *sctx)
2739{
2740 int ret;
2741
2742 if (S_ISDIR(sctx->cur_inode_mode)) {
2743 ret = did_create_dir(sctx, sctx->cur_ino);
2744 if (ret < 0)
2745 goto out;
2746 if (ret) {
2747 ret = 0;
2748 goto out;
2749 }
2750 }
2751
2752 ret = send_create_inode(sctx, sctx->cur_ino);
2753 if (ret < 0)
2754 goto out;
2755
2756out:
2757 return ret;
2758}
2759
Alexander Block31db9f72012-07-25 23:19:24 +02002760struct recorded_ref {
2761 struct list_head list;
Alexander Block31db9f72012-07-25 23:19:24 +02002762 char *name;
2763 struct fs_path *full_path;
2764 u64 dir;
2765 u64 dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02002766 int name_len;
2767};
2768
Filipe Mananafdb13882017-06-13 14:13:11 +01002769static void set_ref_path(struct recorded_ref *ref, struct fs_path *path)
2770{
2771 ref->full_path = path;
2772 ref->name = (char *)kbasename(ref->full_path->start);
2773 ref->name_len = ref->full_path->end - ref->name;
2774}
2775
Alexander Block31db9f72012-07-25 23:19:24 +02002776/*
2777 * We need to process new refs before deleted refs, but compare_tree gives us
2778 * everything mixed. So we first record all refs and later process them.
2779 * This function is a helper to record one ref.
2780 */
Liu Boa4d96d62014-03-03 21:31:03 +08002781static int __record_ref(struct list_head *head, u64 dir,
Alexander Block31db9f72012-07-25 23:19:24 +02002782 u64 dir_gen, struct fs_path *path)
2783{
2784 struct recorded_ref *ref;
Alexander Block31db9f72012-07-25 23:19:24 +02002785
David Sterbae780b0d2016-01-18 18:42:13 +01002786 ref = kmalloc(sizeof(*ref), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002787 if (!ref)
2788 return -ENOMEM;
2789
2790 ref->dir = dir;
2791 ref->dir_gen = dir_gen;
Filipe Mananafdb13882017-06-13 14:13:11 +01002792 set_ref_path(ref, path);
Alexander Block31db9f72012-07-25 23:19:24 +02002793 list_add_tail(&ref->list, head);
2794 return 0;
2795}
2796
Josef Bacikba5e8f22013-08-16 16:52:55 -04002797static int dup_ref(struct recorded_ref *ref, struct list_head *list)
2798{
2799 struct recorded_ref *new;
2800
David Sterbae780b0d2016-01-18 18:42:13 +01002801 new = kmalloc(sizeof(*ref), GFP_KERNEL);
Josef Bacikba5e8f22013-08-16 16:52:55 -04002802 if (!new)
2803 return -ENOMEM;
2804
2805 new->dir = ref->dir;
2806 new->dir_gen = ref->dir_gen;
2807 new->full_path = NULL;
2808 INIT_LIST_HEAD(&new->list);
2809 list_add_tail(&new->list, list);
2810 return 0;
2811}
2812
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002813static void __free_recorded_refs(struct list_head *head)
Alexander Block31db9f72012-07-25 23:19:24 +02002814{
2815 struct recorded_ref *cur;
Alexander Block31db9f72012-07-25 23:19:24 +02002816
Alexander Blocke938c8a2012-07-28 16:33:49 +02002817 while (!list_empty(head)) {
2818 cur = list_entry(head->next, struct recorded_ref, list);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002819 fs_path_free(cur->full_path);
Alexander Blocke938c8a2012-07-28 16:33:49 +02002820 list_del(&cur->list);
Alexander Block31db9f72012-07-25 23:19:24 +02002821 kfree(cur);
2822 }
Alexander Block31db9f72012-07-25 23:19:24 +02002823}
2824
2825static void free_recorded_refs(struct send_ctx *sctx)
2826{
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002827 __free_recorded_refs(&sctx->new_refs);
2828 __free_recorded_refs(&sctx->deleted_refs);
Alexander Block31db9f72012-07-25 23:19:24 +02002829}
2830
2831/*
Alexander Block766702e2012-07-28 14:11:31 +02002832 * Renames/moves a file/dir to its orphan name. Used when the first
Alexander Block31db9f72012-07-25 23:19:24 +02002833 * ref of an unprocessed inode gets overwritten and for all non empty
2834 * directories.
2835 */
2836static int orphanize_inode(struct send_ctx *sctx, u64 ino, u64 gen,
2837 struct fs_path *path)
2838{
2839 int ret;
2840 struct fs_path *orphan;
2841
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002842 orphan = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002843 if (!orphan)
2844 return -ENOMEM;
2845
2846 ret = gen_unique_name(sctx, ino, gen, orphan);
2847 if (ret < 0)
2848 goto out;
2849
2850 ret = send_rename(sctx, path, orphan);
2851
2852out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002853 fs_path_free(orphan);
Alexander Block31db9f72012-07-25 23:19:24 +02002854 return ret;
2855}
2856
Filipe Manana9dc44212014-02-19 14:31:44 +00002857static struct orphan_dir_info *
2858add_orphan_dir_info(struct send_ctx *sctx, u64 dir_ino)
2859{
2860 struct rb_node **p = &sctx->orphan_dirs.rb_node;
2861 struct rb_node *parent = NULL;
2862 struct orphan_dir_info *entry, *odi;
2863
David Sterbae780b0d2016-01-18 18:42:13 +01002864 odi = kmalloc(sizeof(*odi), GFP_KERNEL);
Filipe Manana9dc44212014-02-19 14:31:44 +00002865 if (!odi)
2866 return ERR_PTR(-ENOMEM);
2867 odi->ino = dir_ino;
2868 odi->gen = 0;
2869
2870 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 {
2878 kfree(odi);
2879 return entry;
2880 }
2881 }
2882
2883 rb_link_node(&odi->node, parent, p);
2884 rb_insert_color(&odi->node, &sctx->orphan_dirs);
2885 return odi;
2886}
2887
2888static struct orphan_dir_info *
2889get_orphan_dir_info(struct send_ctx *sctx, u64 dir_ino)
2890{
2891 struct rb_node *n = sctx->orphan_dirs.rb_node;
2892 struct orphan_dir_info *entry;
2893
2894 while (n) {
2895 entry = rb_entry(n, struct orphan_dir_info, node);
2896 if (dir_ino < entry->ino)
2897 n = n->rb_left;
2898 else if (dir_ino > entry->ino)
2899 n = n->rb_right;
2900 else
2901 return entry;
2902 }
2903 return NULL;
2904}
2905
2906static int is_waiting_for_rm(struct send_ctx *sctx, u64 dir_ino)
2907{
2908 struct orphan_dir_info *odi = get_orphan_dir_info(sctx, dir_ino);
2909
2910 return odi != NULL;
2911}
2912
2913static void free_orphan_dir_info(struct send_ctx *sctx,
2914 struct orphan_dir_info *odi)
2915{
2916 if (!odi)
2917 return;
2918 rb_erase(&odi->node, &sctx->orphan_dirs);
2919 kfree(odi);
2920}
2921
Alexander Block31db9f72012-07-25 23:19:24 +02002922/*
2923 * Returns 1 if a directory can be removed at this point in time.
2924 * We check this by iterating all dir items and checking if the inode behind
2925 * the dir item was already processed.
2926 */
Filipe Manana9dc44212014-02-19 14:31:44 +00002927static int can_rmdir(struct send_ctx *sctx, u64 dir, u64 dir_gen,
2928 u64 send_progress)
Alexander Block31db9f72012-07-25 23:19:24 +02002929{
2930 int ret = 0;
2931 struct btrfs_root *root = sctx->parent_root;
2932 struct btrfs_path *path;
2933 struct btrfs_key key;
2934 struct btrfs_key found_key;
2935 struct btrfs_key loc;
2936 struct btrfs_dir_item *di;
2937
Alexander Block6d85ed02012-08-01 14:48:59 +02002938 /*
2939 * Don't try to rmdir the top/root subvolume dir.
2940 */
2941 if (dir == BTRFS_FIRST_FREE_OBJECTID)
2942 return 0;
2943
Alexander Block31db9f72012-07-25 23:19:24 +02002944 path = alloc_path_for_send();
2945 if (!path)
2946 return -ENOMEM;
2947
2948 key.objectid = dir;
2949 key.type = BTRFS_DIR_INDEX_KEY;
2950 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002951 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2952 if (ret < 0)
2953 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02002954
2955 while (1) {
Filipe Manana9dc44212014-02-19 14:31:44 +00002956 struct waiting_dir_move *dm;
2957
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002958 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
2959 ret = btrfs_next_leaf(root, path);
2960 if (ret < 0)
2961 goto out;
2962 else if (ret > 0)
2963 break;
2964 continue;
Alexander Block31db9f72012-07-25 23:19:24 +02002965 }
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002966 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2967 path->slots[0]);
2968 if (found_key.objectid != key.objectid ||
2969 found_key.type != key.type)
Alexander Block31db9f72012-07-25 23:19:24 +02002970 break;
Alexander Block31db9f72012-07-25 23:19:24 +02002971
2972 di = btrfs_item_ptr(path->nodes[0], path->slots[0],
2973 struct btrfs_dir_item);
2974 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &loc);
2975
Filipe Manana9dc44212014-02-19 14:31:44 +00002976 dm = get_waiting_dir_move(sctx, loc.objectid);
2977 if (dm) {
2978 struct orphan_dir_info *odi;
2979
2980 odi = add_orphan_dir_info(sctx, dir);
2981 if (IS_ERR(odi)) {
2982 ret = PTR_ERR(odi);
2983 goto out;
2984 }
2985 odi->gen = dir_gen;
2986 dm->rmdir_ino = dir;
2987 ret = 0;
2988 goto out;
2989 }
2990
Alexander Block31db9f72012-07-25 23:19:24 +02002991 if (loc.objectid > send_progress) {
Robbie Ko443f9d22015-06-22 17:08:45 +08002992 struct orphan_dir_info *odi;
2993
2994 odi = get_orphan_dir_info(sctx, dir);
2995 free_orphan_dir_info(sctx, odi);
Alexander Block31db9f72012-07-25 23:19:24 +02002996 ret = 0;
2997 goto out;
2998 }
2999
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00003000 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02003001 }
3002
3003 ret = 1;
3004
3005out:
3006 btrfs_free_path(path);
3007 return ret;
3008}
3009
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003010static int is_waiting_for_move(struct send_ctx *sctx, u64 ino)
3011{
Filipe Manana9dc44212014-02-19 14:31:44 +00003012 struct waiting_dir_move *entry = get_waiting_dir_move(sctx, ino);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003013
Filipe Manana9dc44212014-02-19 14:31:44 +00003014 return entry != NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003015}
3016
Filipe Manana8b191a62015-04-09 14:09:14 +01003017static int add_waiting_dir_move(struct send_ctx *sctx, u64 ino, bool orphanized)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003018{
3019 struct rb_node **p = &sctx->waiting_dir_moves.rb_node;
3020 struct rb_node *parent = NULL;
3021 struct waiting_dir_move *entry, *dm;
3022
David Sterbae780b0d2016-01-18 18:42:13 +01003023 dm = kmalloc(sizeof(*dm), GFP_KERNEL);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003024 if (!dm)
3025 return -ENOMEM;
3026 dm->ino = ino;
Filipe Manana9dc44212014-02-19 14:31:44 +00003027 dm->rmdir_ino = 0;
Filipe Manana8b191a62015-04-09 14:09:14 +01003028 dm->orphanized = orphanized;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003029
3030 while (*p) {
3031 parent = *p;
3032 entry = rb_entry(parent, struct waiting_dir_move, node);
3033 if (ino < entry->ino) {
3034 p = &(*p)->rb_left;
3035 } else if (ino > entry->ino) {
3036 p = &(*p)->rb_right;
3037 } else {
3038 kfree(dm);
3039 return -EEXIST;
3040 }
3041 }
3042
3043 rb_link_node(&dm->node, parent, p);
3044 rb_insert_color(&dm->node, &sctx->waiting_dir_moves);
3045 return 0;
3046}
3047
Filipe Manana9dc44212014-02-19 14:31:44 +00003048static struct waiting_dir_move *
3049get_waiting_dir_move(struct send_ctx *sctx, u64 ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003050{
3051 struct rb_node *n = sctx->waiting_dir_moves.rb_node;
3052 struct waiting_dir_move *entry;
3053
3054 while (n) {
3055 entry = rb_entry(n, struct waiting_dir_move, node);
Filipe Manana9dc44212014-02-19 14:31:44 +00003056 if (ino < entry->ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003057 n = n->rb_left;
Filipe Manana9dc44212014-02-19 14:31:44 +00003058 else if (ino > entry->ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003059 n = n->rb_right;
Filipe Manana9dc44212014-02-19 14:31:44 +00003060 else
3061 return entry;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003062 }
Filipe Manana9dc44212014-02-19 14:31:44 +00003063 return NULL;
3064}
3065
3066static void free_waiting_dir_move(struct send_ctx *sctx,
3067 struct waiting_dir_move *dm)
3068{
3069 if (!dm)
3070 return;
3071 rb_erase(&dm->node, &sctx->waiting_dir_moves);
3072 kfree(dm);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003073}
3074
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003075static int add_pending_dir_move(struct send_ctx *sctx,
3076 u64 ino,
3077 u64 ino_gen,
Filipe Mananaf9594922014-03-27 20:14:01 +00003078 u64 parent_ino,
3079 struct list_head *new_refs,
Filipe Manana84471e22015-02-28 22:29:22 +00003080 struct list_head *deleted_refs,
3081 const bool is_orphan)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003082{
3083 struct rb_node **p = &sctx->pending_dir_moves.rb_node;
3084 struct rb_node *parent = NULL;
Chris Mason73b802f2014-03-21 15:30:44 -07003085 struct pending_dir_move *entry = NULL, *pm;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003086 struct recorded_ref *cur;
3087 int exists = 0;
3088 int ret;
3089
David Sterbae780b0d2016-01-18 18:42:13 +01003090 pm = kmalloc(sizeof(*pm), GFP_KERNEL);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003091 if (!pm)
3092 return -ENOMEM;
3093 pm->parent_ino = parent_ino;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003094 pm->ino = ino;
3095 pm->gen = ino_gen;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003096 INIT_LIST_HEAD(&pm->list);
3097 INIT_LIST_HEAD(&pm->update_refs);
3098 RB_CLEAR_NODE(&pm->node);
3099
3100 while (*p) {
3101 parent = *p;
3102 entry = rb_entry(parent, struct pending_dir_move, node);
3103 if (parent_ino < entry->parent_ino) {
3104 p = &(*p)->rb_left;
3105 } else if (parent_ino > entry->parent_ino) {
3106 p = &(*p)->rb_right;
3107 } else {
3108 exists = 1;
3109 break;
3110 }
3111 }
3112
Filipe Mananaf9594922014-03-27 20:14:01 +00003113 list_for_each_entry(cur, deleted_refs, list) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003114 ret = dup_ref(cur, &pm->update_refs);
3115 if (ret < 0)
3116 goto out;
3117 }
Filipe Mananaf9594922014-03-27 20:14:01 +00003118 list_for_each_entry(cur, new_refs, list) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003119 ret = dup_ref(cur, &pm->update_refs);
3120 if (ret < 0)
3121 goto out;
3122 }
3123
Filipe Manana8b191a62015-04-09 14:09:14 +01003124 ret = add_waiting_dir_move(sctx, pm->ino, is_orphan);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003125 if (ret)
3126 goto out;
3127
3128 if (exists) {
3129 list_add_tail(&pm->list, &entry->list);
3130 } else {
3131 rb_link_node(&pm->node, parent, p);
3132 rb_insert_color(&pm->node, &sctx->pending_dir_moves);
3133 }
3134 ret = 0;
3135out:
3136 if (ret) {
3137 __free_recorded_refs(&pm->update_refs);
3138 kfree(pm);
3139 }
3140 return ret;
3141}
3142
3143static struct pending_dir_move *get_pending_dir_moves(struct send_ctx *sctx,
3144 u64 parent_ino)
3145{
3146 struct rb_node *n = sctx->pending_dir_moves.rb_node;
3147 struct pending_dir_move *entry;
3148
3149 while (n) {
3150 entry = rb_entry(n, struct pending_dir_move, node);
3151 if (parent_ino < entry->parent_ino)
3152 n = n->rb_left;
3153 else if (parent_ino > entry->parent_ino)
3154 n = n->rb_right;
3155 else
3156 return entry;
3157 }
3158 return NULL;
3159}
3160
Robbie Ko801bec32015-06-23 18:39:46 +08003161static int path_loop(struct send_ctx *sctx, struct fs_path *name,
3162 u64 ino, u64 gen, u64 *ancestor_ino)
3163{
3164 int ret = 0;
3165 u64 parent_inode = 0;
3166 u64 parent_gen = 0;
3167 u64 start_ino = ino;
3168
3169 *ancestor_ino = 0;
3170 while (ino != BTRFS_FIRST_FREE_OBJECTID) {
3171 fs_path_reset(name);
3172
3173 if (is_waiting_for_rm(sctx, ino))
3174 break;
3175 if (is_waiting_for_move(sctx, ino)) {
3176 if (*ancestor_ino == 0)
3177 *ancestor_ino = ino;
3178 ret = get_first_ref(sctx->parent_root, ino,
3179 &parent_inode, &parent_gen, name);
3180 } else {
3181 ret = __get_cur_name_and_parent(sctx, ino, gen,
3182 &parent_inode,
3183 &parent_gen, name);
3184 if (ret > 0) {
3185 ret = 0;
3186 break;
3187 }
3188 }
3189 if (ret < 0)
3190 break;
3191 if (parent_inode == start_ino) {
3192 ret = 1;
3193 if (*ancestor_ino == 0)
3194 *ancestor_ino = ino;
3195 break;
3196 }
3197 ino = parent_inode;
3198 gen = parent_gen;
3199 }
3200 return ret;
3201}
3202
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003203static int apply_dir_move(struct send_ctx *sctx, struct pending_dir_move *pm)
3204{
3205 struct fs_path *from_path = NULL;
3206 struct fs_path *to_path = NULL;
Filipe Manana2b863a12014-02-16 13:43:11 +00003207 struct fs_path *name = NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003208 u64 orig_progress = sctx->send_progress;
3209 struct recorded_ref *cur;
Filipe Manana2b863a12014-02-16 13:43:11 +00003210 u64 parent_ino, parent_gen;
Filipe Manana9dc44212014-02-19 14:31:44 +00003211 struct waiting_dir_move *dm = NULL;
3212 u64 rmdir_ino = 0;
Robbie Ko801bec32015-06-23 18:39:46 +08003213 u64 ancestor;
3214 bool is_orphan;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003215 int ret;
3216
Filipe Manana2b863a12014-02-16 13:43:11 +00003217 name = fs_path_alloc();
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003218 from_path = fs_path_alloc();
Filipe Manana2b863a12014-02-16 13:43:11 +00003219 if (!name || !from_path) {
3220 ret = -ENOMEM;
3221 goto out;
3222 }
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003223
Filipe Manana9dc44212014-02-19 14:31:44 +00003224 dm = get_waiting_dir_move(sctx, pm->ino);
3225 ASSERT(dm);
3226 rmdir_ino = dm->rmdir_ino;
Robbie Ko801bec32015-06-23 18:39:46 +08003227 is_orphan = dm->orphanized;
Filipe Manana9dc44212014-02-19 14:31:44 +00003228 free_waiting_dir_move(sctx, dm);
Filipe Manana2b863a12014-02-16 13:43:11 +00003229
Robbie Ko801bec32015-06-23 18:39:46 +08003230 if (is_orphan) {
Filipe Manana84471e22015-02-28 22:29:22 +00003231 ret = gen_unique_name(sctx, pm->ino,
3232 pm->gen, from_path);
3233 } else {
3234 ret = get_first_ref(sctx->parent_root, pm->ino,
3235 &parent_ino, &parent_gen, name);
3236 if (ret < 0)
3237 goto out;
3238 ret = get_cur_path(sctx, parent_ino, parent_gen,
3239 from_path);
3240 if (ret < 0)
3241 goto out;
3242 ret = fs_path_add_path(from_path, name);
3243 }
Filipe Mananac992ec92014-03-22 17:15:24 +00003244 if (ret < 0)
3245 goto out;
3246
Filipe Mananaf9594922014-03-27 20:14:01 +00003247 sctx->send_progress = sctx->cur_ino + 1;
Robbie Ko801bec32015-06-23 18:39:46 +08003248 ret = path_loop(sctx, name, pm->ino, pm->gen, &ancestor);
Filipe Manana7969e772016-06-17 17:13:36 +01003249 if (ret < 0)
3250 goto out;
Robbie Ko801bec32015-06-23 18:39:46 +08003251 if (ret) {
3252 LIST_HEAD(deleted_refs);
3253 ASSERT(ancestor > BTRFS_FIRST_FREE_OBJECTID);
3254 ret = add_pending_dir_move(sctx, pm->ino, pm->gen, ancestor,
3255 &pm->update_refs, &deleted_refs,
3256 is_orphan);
3257 if (ret < 0)
3258 goto out;
3259 if (rmdir_ino) {
3260 dm = get_waiting_dir_move(sctx, pm->ino);
3261 ASSERT(dm);
3262 dm->rmdir_ino = rmdir_ino;
3263 }
3264 goto out;
3265 }
Filipe Mananac992ec92014-03-22 17:15:24 +00003266 fs_path_reset(name);
3267 to_path = name;
3268 name = NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003269 ret = get_cur_path(sctx, pm->ino, pm->gen, to_path);
3270 if (ret < 0)
3271 goto out;
3272
3273 ret = send_rename(sctx, from_path, to_path);
3274 if (ret < 0)
3275 goto out;
3276
Filipe Manana9dc44212014-02-19 14:31:44 +00003277 if (rmdir_ino) {
3278 struct orphan_dir_info *odi;
3279
3280 odi = get_orphan_dir_info(sctx, rmdir_ino);
3281 if (!odi) {
3282 /* already deleted */
3283 goto finish;
3284 }
Robbie Ko99ea42d2015-06-23 18:39:49 +08003285 ret = can_rmdir(sctx, rmdir_ino, odi->gen, sctx->cur_ino);
Filipe Manana9dc44212014-02-19 14:31:44 +00003286 if (ret < 0)
3287 goto out;
3288 if (!ret)
3289 goto finish;
3290
3291 name = fs_path_alloc();
3292 if (!name) {
3293 ret = -ENOMEM;
3294 goto out;
3295 }
3296 ret = get_cur_path(sctx, rmdir_ino, odi->gen, name);
3297 if (ret < 0)
3298 goto out;
3299 ret = send_rmdir(sctx, name);
3300 if (ret < 0)
3301 goto out;
3302 free_orphan_dir_info(sctx, odi);
3303 }
3304
3305finish:
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003306 ret = send_utimes(sctx, pm->ino, pm->gen);
3307 if (ret < 0)
3308 goto out;
3309
3310 /*
3311 * After rename/move, need to update the utimes of both new parent(s)
3312 * and old parent(s).
3313 */
3314 list_for_each_entry(cur, &pm->update_refs, list) {
Robbie Ko764433a2015-06-23 18:39:50 +08003315 /*
3316 * The parent inode might have been deleted in the send snapshot
3317 */
3318 ret = get_inode_info(sctx->send_root, cur->dir, NULL,
3319 NULL, NULL, NULL, NULL, NULL);
3320 if (ret == -ENOENT) {
3321 ret = 0;
Filipe Manana9dc44212014-02-19 14:31:44 +00003322 continue;
Robbie Ko764433a2015-06-23 18:39:50 +08003323 }
3324 if (ret < 0)
3325 goto out;
3326
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003327 ret = send_utimes(sctx, cur->dir, cur->dir_gen);
3328 if (ret < 0)
3329 goto out;
3330 }
3331
3332out:
Filipe Manana2b863a12014-02-16 13:43:11 +00003333 fs_path_free(name);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003334 fs_path_free(from_path);
3335 fs_path_free(to_path);
3336 sctx->send_progress = orig_progress;
3337
3338 return ret;
3339}
3340
3341static void free_pending_move(struct send_ctx *sctx, struct pending_dir_move *m)
3342{
3343 if (!list_empty(&m->list))
3344 list_del(&m->list);
3345 if (!RB_EMPTY_NODE(&m->node))
3346 rb_erase(&m->node, &sctx->pending_dir_moves);
3347 __free_recorded_refs(&m->update_refs);
3348 kfree(m);
3349}
3350
3351static void tail_append_pending_moves(struct pending_dir_move *moves,
3352 struct list_head *stack)
3353{
3354 if (list_empty(&moves->list)) {
3355 list_add_tail(&moves->list, stack);
3356 } else {
3357 LIST_HEAD(list);
3358 list_splice_init(&moves->list, &list);
3359 list_add_tail(&moves->list, stack);
3360 list_splice_tail(&list, stack);
3361 }
3362}
3363
3364static int apply_children_dir_moves(struct send_ctx *sctx)
3365{
3366 struct pending_dir_move *pm;
3367 struct list_head stack;
3368 u64 parent_ino = sctx->cur_ino;
3369 int ret = 0;
3370
3371 pm = get_pending_dir_moves(sctx, parent_ino);
3372 if (!pm)
3373 return 0;
3374
3375 INIT_LIST_HEAD(&stack);
3376 tail_append_pending_moves(pm, &stack);
3377
3378 while (!list_empty(&stack)) {
3379 pm = list_first_entry(&stack, struct pending_dir_move, list);
3380 parent_ino = pm->ino;
3381 ret = apply_dir_move(sctx, pm);
3382 free_pending_move(sctx, pm);
3383 if (ret)
3384 goto out;
3385 pm = get_pending_dir_moves(sctx, parent_ino);
3386 if (pm)
3387 tail_append_pending_moves(pm, &stack);
3388 }
3389 return 0;
3390
3391out:
3392 while (!list_empty(&stack)) {
3393 pm = list_first_entry(&stack, struct pending_dir_move, list);
3394 free_pending_move(sctx, pm);
3395 }
3396 return ret;
3397}
3398
Filipe Manana84471e22015-02-28 22:29:22 +00003399/*
3400 * We might need to delay a directory rename even when no ancestor directory
3401 * (in the send root) with a higher inode number than ours (sctx->cur_ino) was
3402 * renamed. This happens when we rename a directory to the old name (the name
3403 * in the parent root) of some other unrelated directory that got its rename
3404 * delayed due to some ancestor with higher number that got renamed.
3405 *
3406 * Example:
3407 *
3408 * Parent snapshot:
3409 * . (ino 256)
3410 * |---- a/ (ino 257)
3411 * | |---- file (ino 260)
3412 * |
3413 * |---- b/ (ino 258)
3414 * |---- c/ (ino 259)
3415 *
3416 * Send snapshot:
3417 * . (ino 256)
3418 * |---- a/ (ino 258)
3419 * |---- x/ (ino 259)
3420 * |---- y/ (ino 257)
3421 * |----- file (ino 260)
3422 *
3423 * Here we can not rename 258 from 'b' to 'a' without the rename of inode 257
3424 * from 'a' to 'x/y' happening first, which in turn depends on the rename of
3425 * inode 259 from 'c' to 'x'. So the order of rename commands the send stream
3426 * must issue is:
3427 *
3428 * 1 - rename 259 from 'c' to 'x'
3429 * 2 - rename 257 from 'a' to 'x/y'
3430 * 3 - rename 258 from 'b' to 'a'
3431 *
3432 * Returns 1 if the rename of sctx->cur_ino needs to be delayed, 0 if it can
3433 * be done right away and < 0 on error.
3434 */
3435static int wait_for_dest_dir_move(struct send_ctx *sctx,
3436 struct recorded_ref *parent_ref,
3437 const bool is_orphan)
3438{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003439 struct btrfs_fs_info *fs_info = sctx->parent_root->fs_info;
Filipe Manana84471e22015-02-28 22:29:22 +00003440 struct btrfs_path *path;
3441 struct btrfs_key key;
3442 struct btrfs_key di_key;
3443 struct btrfs_dir_item *di;
3444 u64 left_gen;
3445 u64 right_gen;
3446 int ret = 0;
Robbie Ko801bec32015-06-23 18:39:46 +08003447 struct waiting_dir_move *wdm;
Filipe Manana84471e22015-02-28 22:29:22 +00003448
3449 if (RB_EMPTY_ROOT(&sctx->waiting_dir_moves))
3450 return 0;
3451
3452 path = alloc_path_for_send();
3453 if (!path)
3454 return -ENOMEM;
3455
3456 key.objectid = parent_ref->dir;
3457 key.type = BTRFS_DIR_ITEM_KEY;
3458 key.offset = btrfs_name_hash(parent_ref->name, parent_ref->name_len);
3459
3460 ret = btrfs_search_slot(NULL, sctx->parent_root, &key, path, 0, 0);
3461 if (ret < 0) {
3462 goto out;
3463 } else if (ret > 0) {
3464 ret = 0;
3465 goto out;
3466 }
3467
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003468 di = btrfs_match_dir_item_name(fs_info, path, parent_ref->name,
3469 parent_ref->name_len);
Filipe Manana84471e22015-02-28 22:29:22 +00003470 if (!di) {
3471 ret = 0;
3472 goto out;
3473 }
3474 /*
3475 * di_key.objectid has the number of the inode that has a dentry in the
3476 * parent directory with the same name that sctx->cur_ino is being
3477 * renamed to. We need to check if that inode is in the send root as
3478 * well and if it is currently marked as an inode with a pending rename,
3479 * if it is, we need to delay the rename of sctx->cur_ino as well, so
3480 * that it happens after that other inode is renamed.
3481 */
3482 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &di_key);
3483 if (di_key.type != BTRFS_INODE_ITEM_KEY) {
3484 ret = 0;
3485 goto out;
3486 }
3487
3488 ret = get_inode_info(sctx->parent_root, di_key.objectid, NULL,
3489 &left_gen, NULL, NULL, NULL, NULL);
3490 if (ret < 0)
3491 goto out;
3492 ret = get_inode_info(sctx->send_root, di_key.objectid, NULL,
3493 &right_gen, NULL, NULL, NULL, NULL);
3494 if (ret < 0) {
3495 if (ret == -ENOENT)
3496 ret = 0;
3497 goto out;
3498 }
3499
3500 /* Different inode, no need to delay the rename of sctx->cur_ino */
3501 if (right_gen != left_gen) {
3502 ret = 0;
3503 goto out;
3504 }
3505
Robbie Ko801bec32015-06-23 18:39:46 +08003506 wdm = get_waiting_dir_move(sctx, di_key.objectid);
3507 if (wdm && !wdm->orphanized) {
Filipe Manana84471e22015-02-28 22:29:22 +00003508 ret = add_pending_dir_move(sctx,
3509 sctx->cur_ino,
3510 sctx->cur_inode_gen,
3511 di_key.objectid,
3512 &sctx->new_refs,
3513 &sctx->deleted_refs,
3514 is_orphan);
3515 if (!ret)
3516 ret = 1;
3517 }
3518out:
3519 btrfs_free_path(path);
3520 return ret;
3521}
3522
Filipe Manana80aa6022015-03-27 17:50:45 +00003523/*
Filipe Mananaea37d592017-11-17 01:54:00 +00003524 * Check if inode ino2, or any of its ancestors, is inode ino1.
3525 * Return 1 if true, 0 if false and < 0 on error.
3526 */
3527static int check_ino_in_path(struct btrfs_root *root,
3528 const u64 ino1,
3529 const u64 ino1_gen,
3530 const u64 ino2,
3531 const u64 ino2_gen,
3532 struct fs_path *fs_path)
3533{
3534 u64 ino = ino2;
3535
3536 if (ino1 == ino2)
3537 return ino1_gen == ino2_gen;
3538
3539 while (ino > BTRFS_FIRST_FREE_OBJECTID) {
3540 u64 parent;
3541 u64 parent_gen;
3542 int ret;
3543
3544 fs_path_reset(fs_path);
3545 ret = get_first_ref(root, ino, &parent, &parent_gen, fs_path);
3546 if (ret < 0)
3547 return ret;
3548 if (parent == ino1)
3549 return parent_gen == ino1_gen;
3550 ino = parent;
3551 }
3552 return 0;
3553}
3554
3555/*
3556 * Check if ino ino1 is an ancestor of inode ino2 in the given root for any
3557 * possible path (in case ino2 is not a directory and has multiple hard links).
Filipe Manana80aa6022015-03-27 17:50:45 +00003558 * Return 1 if true, 0 if false and < 0 on error.
3559 */
3560static int is_ancestor(struct btrfs_root *root,
3561 const u64 ino1,
3562 const u64 ino1_gen,
3563 const u64 ino2,
3564 struct fs_path *fs_path)
3565{
Filipe Mananaea37d592017-11-17 01:54:00 +00003566 bool free_fs_path = false;
Filipe Manana72c36682017-06-07 11:41:29 +01003567 int ret = 0;
Filipe Mananaea37d592017-11-17 01:54:00 +00003568 struct btrfs_path *path = NULL;
3569 struct btrfs_key key;
Filipe Manana72c36682017-06-07 11:41:29 +01003570
3571 if (!fs_path) {
3572 fs_path = fs_path_alloc();
3573 if (!fs_path)
3574 return -ENOMEM;
Filipe Mananaea37d592017-11-17 01:54:00 +00003575 free_fs_path = true;
Filipe Manana72c36682017-06-07 11:41:29 +01003576 }
Filipe Manana80aa6022015-03-27 17:50:45 +00003577
Filipe Mananaea37d592017-11-17 01:54:00 +00003578 path = alloc_path_for_send();
3579 if (!path) {
3580 ret = -ENOMEM;
3581 goto out;
Filipe Manana80aa6022015-03-27 17:50:45 +00003582 }
Filipe Mananaea37d592017-11-17 01:54:00 +00003583
3584 key.objectid = ino2;
3585 key.type = BTRFS_INODE_REF_KEY;
3586 key.offset = 0;
3587
3588 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3589 if (ret < 0)
3590 goto out;
3591
3592 while (true) {
3593 struct extent_buffer *leaf = path->nodes[0];
3594 int slot = path->slots[0];
3595 u32 cur_offset = 0;
3596 u32 item_size;
3597
3598 if (slot >= btrfs_header_nritems(leaf)) {
3599 ret = btrfs_next_leaf(root, path);
3600 if (ret < 0)
3601 goto out;
3602 if (ret > 0)
3603 break;
3604 continue;
3605 }
3606
3607 btrfs_item_key_to_cpu(leaf, &key, slot);
3608 if (key.objectid != ino2)
3609 break;
3610 if (key.type != BTRFS_INODE_REF_KEY &&
3611 key.type != BTRFS_INODE_EXTREF_KEY)
3612 break;
3613
3614 item_size = btrfs_item_size_nr(leaf, slot);
3615 while (cur_offset < item_size) {
3616 u64 parent;
3617 u64 parent_gen;
3618
3619 if (key.type == BTRFS_INODE_EXTREF_KEY) {
3620 unsigned long ptr;
3621 struct btrfs_inode_extref *extref;
3622
3623 ptr = btrfs_item_ptr_offset(leaf, slot);
3624 extref = (struct btrfs_inode_extref *)
3625 (ptr + cur_offset);
3626 parent = btrfs_inode_extref_parent(leaf,
3627 extref);
3628 cur_offset += sizeof(*extref);
3629 cur_offset += btrfs_inode_extref_name_len(leaf,
3630 extref);
3631 } else {
3632 parent = key.offset;
3633 cur_offset = item_size;
3634 }
3635
3636 ret = get_inode_info(root, parent, NULL, &parent_gen,
3637 NULL, NULL, NULL, NULL);
3638 if (ret < 0)
3639 goto out;
3640 ret = check_ino_in_path(root, ino1, ino1_gen,
3641 parent, parent_gen, fs_path);
3642 if (ret)
3643 goto out;
3644 }
3645 path->slots[0]++;
3646 }
3647 ret = 0;
Filipe Manana72c36682017-06-07 11:41:29 +01003648 out:
Filipe Mananaea37d592017-11-17 01:54:00 +00003649 btrfs_free_path(path);
3650 if (free_fs_path)
Filipe Manana72c36682017-06-07 11:41:29 +01003651 fs_path_free(fs_path);
3652 return ret;
Filipe Manana80aa6022015-03-27 17:50:45 +00003653}
3654
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003655static int wait_for_parent_move(struct send_ctx *sctx,
Filipe Manana8b191a62015-04-09 14:09:14 +01003656 struct recorded_ref *parent_ref,
3657 const bool is_orphan)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003658{
Filipe Mananaf9594922014-03-27 20:14:01 +00003659 int ret = 0;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003660 u64 ino = parent_ref->dir;
Filipe Mananafe9c7982017-01-11 02:15:39 +00003661 u64 ino_gen = parent_ref->dir_gen;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003662 u64 parent_ino_before, parent_ino_after;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003663 struct fs_path *path_before = NULL;
3664 struct fs_path *path_after = NULL;
3665 int len1, len2;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003666
3667 path_after = fs_path_alloc();
Filipe Mananaf9594922014-03-27 20:14:01 +00003668 path_before = fs_path_alloc();
3669 if (!path_after || !path_before) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003670 ret = -ENOMEM;
3671 goto out;
3672 }
3673
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003674 /*
Filipe Mananaf9594922014-03-27 20:14:01 +00003675 * Our current directory inode may not yet be renamed/moved because some
3676 * ancestor (immediate or not) has to be renamed/moved first. So find if
3677 * such ancestor exists and make sure our own rename/move happens after
Filipe Manana80aa6022015-03-27 17:50:45 +00003678 * that ancestor is processed to avoid path build infinite loops (done
3679 * at get_cur_path()).
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003680 */
Filipe Mananaf9594922014-03-27 20:14:01 +00003681 while (ino > BTRFS_FIRST_FREE_OBJECTID) {
Filipe Mananafe9c7982017-01-11 02:15:39 +00003682 u64 parent_ino_after_gen;
3683
Filipe Mananaf9594922014-03-27 20:14:01 +00003684 if (is_waiting_for_move(sctx, ino)) {
Filipe Manana80aa6022015-03-27 17:50:45 +00003685 /*
3686 * If the current inode is an ancestor of ino in the
3687 * parent root, we need to delay the rename of the
3688 * current inode, otherwise don't delayed the rename
3689 * because we can end up with a circular dependency
3690 * of renames, resulting in some directories never
3691 * getting the respective rename operations issued in
3692 * the send stream or getting into infinite path build
3693 * loops.
3694 */
3695 ret = is_ancestor(sctx->parent_root,
3696 sctx->cur_ino, sctx->cur_inode_gen,
3697 ino, path_before);
Filipe Manana4122ea62016-06-27 16:54:44 +01003698 if (ret)
3699 break;
Filipe Mananaf9594922014-03-27 20:14:01 +00003700 }
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003701
3702 fs_path_reset(path_before);
3703 fs_path_reset(path_after);
3704
3705 ret = get_first_ref(sctx->send_root, ino, &parent_ino_after,
Filipe Mananafe9c7982017-01-11 02:15:39 +00003706 &parent_ino_after_gen, path_after);
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003707 if (ret < 0)
3708 goto out;
3709 ret = get_first_ref(sctx->parent_root, ino, &parent_ino_before,
3710 NULL, path_before);
Filipe Mananaf9594922014-03-27 20:14:01 +00003711 if (ret < 0 && ret != -ENOENT) {
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003712 goto out;
Filipe Mananaf9594922014-03-27 20:14:01 +00003713 } else if (ret == -ENOENT) {
Filipe Mananabf8e8ca2014-10-02 19:17:32 +01003714 ret = 0;
Filipe Mananaf9594922014-03-27 20:14:01 +00003715 break;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003716 }
3717
3718 len1 = fs_path_len(path_before);
3719 len2 = fs_path_len(path_after);
Filipe Mananaf9594922014-03-27 20:14:01 +00003720 if (ino > sctx->cur_ino &&
3721 (parent_ino_before != parent_ino_after || len1 != len2 ||
3722 memcmp(path_before->start, path_after->start, len1))) {
Filipe Mananafe9c7982017-01-11 02:15:39 +00003723 u64 parent_ino_gen;
3724
3725 ret = get_inode_info(sctx->parent_root, ino, NULL,
3726 &parent_ino_gen, NULL, NULL, NULL,
3727 NULL);
3728 if (ret < 0)
3729 goto out;
3730 if (ino_gen == parent_ino_gen) {
3731 ret = 1;
3732 break;
3733 }
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003734 }
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003735 ino = parent_ino_after;
Filipe Mananafe9c7982017-01-11 02:15:39 +00003736 ino_gen = parent_ino_after_gen;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003737 }
3738
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003739out:
3740 fs_path_free(path_before);
3741 fs_path_free(path_after);
3742
Filipe Mananaf9594922014-03-27 20:14:01 +00003743 if (ret == 1) {
3744 ret = add_pending_dir_move(sctx,
3745 sctx->cur_ino,
3746 sctx->cur_inode_gen,
3747 ino,
3748 &sctx->new_refs,
Filipe Manana84471e22015-02-28 22:29:22 +00003749 &sctx->deleted_refs,
Filipe Manana8b191a62015-04-09 14:09:14 +01003750 is_orphan);
Filipe Mananaf9594922014-03-27 20:14:01 +00003751 if (!ret)
3752 ret = 1;
3753 }
3754
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003755 return ret;
3756}
3757
Filipe Mananaf5962782017-06-22 20:03:51 +01003758static int update_ref_path(struct send_ctx *sctx, struct recorded_ref *ref)
3759{
3760 int ret;
3761 struct fs_path *new_path;
3762
3763 /*
3764 * Our reference's name member points to its full_path member string, so
3765 * we use here a new path.
3766 */
3767 new_path = fs_path_alloc();
3768 if (!new_path)
3769 return -ENOMEM;
3770
3771 ret = get_cur_path(sctx, ref->dir, ref->dir_gen, new_path);
3772 if (ret < 0) {
3773 fs_path_free(new_path);
3774 return ret;
3775 }
3776 ret = fs_path_add(new_path, ref->name, ref->name_len);
3777 if (ret < 0) {
3778 fs_path_free(new_path);
3779 return ret;
3780 }
3781
3782 fs_path_free(ref->full_path);
3783 set_ref_path(ref, new_path);
3784
3785 return 0;
3786}
3787
Alexander Block31db9f72012-07-25 23:19:24 +02003788/*
3789 * This does all the move/link/unlink/rmdir magic.
3790 */
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003791static int process_recorded_refs(struct send_ctx *sctx, int *pending_move)
Alexander Block31db9f72012-07-25 23:19:24 +02003792{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04003793 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02003794 int ret = 0;
3795 struct recorded_ref *cur;
Alexander Block1f4692d2012-07-28 10:42:24 +02003796 struct recorded_ref *cur2;
Josef Bacikba5e8f22013-08-16 16:52:55 -04003797 struct list_head check_dirs;
Alexander Block31db9f72012-07-25 23:19:24 +02003798 struct fs_path *valid_path = NULL;
Chris Masonb24baf62012-07-25 19:21:10 -04003799 u64 ow_inode = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02003800 u64 ow_gen;
Filipe Mananaf5962782017-06-22 20:03:51 +01003801 u64 ow_mode;
Alexander Block31db9f72012-07-25 23:19:24 +02003802 int did_overwrite = 0;
3803 int is_orphan = 0;
Filipe Manana29d6d302014-02-16 21:01:39 +00003804 u64 last_dir_ino_rm = 0;
Filipe Manana84471e22015-02-28 22:29:22 +00003805 bool can_rename = true;
Filipe Mananaf5962782017-06-22 20:03:51 +01003806 bool orphanized_dir = false;
Filipe Mananafdb13882017-06-13 14:13:11 +01003807 bool orphanized_ancestor = false;
Alexander Block31db9f72012-07-25 23:19:24 +02003808
Jeff Mahoney04ab9562016-09-20 10:05:03 -04003809 btrfs_debug(fs_info, "process_recorded_refs %llu", sctx->cur_ino);
Alexander Block31db9f72012-07-25 23:19:24 +02003810
Alexander Block6d85ed02012-08-01 14:48:59 +02003811 /*
3812 * This should never happen as the root dir always has the same ref
3813 * which is always '..'
3814 */
3815 BUG_ON(sctx->cur_ino <= BTRFS_FIRST_FREE_OBJECTID);
Josef Bacikba5e8f22013-08-16 16:52:55 -04003816 INIT_LIST_HEAD(&check_dirs);
Alexander Block6d85ed02012-08-01 14:48:59 +02003817
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003818 valid_path = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003819 if (!valid_path) {
3820 ret = -ENOMEM;
3821 goto out;
3822 }
3823
Alexander Block31db9f72012-07-25 23:19:24 +02003824 /*
3825 * First, check if the first ref of the current inode was overwritten
3826 * before. If yes, we know that the current inode was already orphanized
3827 * and thus use the orphan name. If not, we can use get_cur_path to
3828 * get the path of the first ref as it would like while receiving at
3829 * this point in time.
3830 * New inodes are always orphan at the beginning, so force to use the
3831 * orphan name in this case.
3832 * The first ref is stored in valid_path and will be updated if it
3833 * gets moved around.
3834 */
3835 if (!sctx->cur_inode_new) {
3836 ret = did_overwrite_first_ref(sctx, sctx->cur_ino,
3837 sctx->cur_inode_gen);
3838 if (ret < 0)
3839 goto out;
3840 if (ret)
3841 did_overwrite = 1;
3842 }
3843 if (sctx->cur_inode_new || did_overwrite) {
3844 ret = gen_unique_name(sctx, sctx->cur_ino,
3845 sctx->cur_inode_gen, valid_path);
3846 if (ret < 0)
3847 goto out;
3848 is_orphan = 1;
3849 } else {
3850 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen,
3851 valid_path);
3852 if (ret < 0)
3853 goto out;
3854 }
3855
3856 list_for_each_entry(cur, &sctx->new_refs, list) {
3857 /*
Alexander Block1f4692d2012-07-28 10:42:24 +02003858 * We may have refs where the parent directory does not exist
3859 * yet. This happens if the parent directories inum is higher
3860 * the the current inum. To handle this case, we create the
3861 * parent directory out of order. But we need to check if this
3862 * did already happen before due to other refs in the same dir.
3863 */
3864 ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen);
3865 if (ret < 0)
3866 goto out;
3867 if (ret == inode_state_will_create) {
3868 ret = 0;
3869 /*
3870 * First check if any of the current inodes refs did
3871 * already create the dir.
3872 */
3873 list_for_each_entry(cur2, &sctx->new_refs, list) {
3874 if (cur == cur2)
3875 break;
3876 if (cur2->dir == cur->dir) {
3877 ret = 1;
3878 break;
3879 }
3880 }
3881
3882 /*
3883 * If that did not happen, check if a previous inode
3884 * did already create the dir.
3885 */
3886 if (!ret)
3887 ret = did_create_dir(sctx, cur->dir);
3888 if (ret < 0)
3889 goto out;
3890 if (!ret) {
3891 ret = send_create_inode(sctx, cur->dir);
3892 if (ret < 0)
3893 goto out;
3894 }
3895 }
3896
3897 /*
Alexander Block31db9f72012-07-25 23:19:24 +02003898 * Check if this new ref would overwrite the first ref of
3899 * another unprocessed inode. If yes, orphanize the
3900 * overwritten inode. If we find an overwritten ref that is
3901 * not the first ref, simply unlink it.
3902 */
3903 ret = will_overwrite_ref(sctx, cur->dir, cur->dir_gen,
3904 cur->name, cur->name_len,
Filipe Mananaf5962782017-06-22 20:03:51 +01003905 &ow_inode, &ow_gen, &ow_mode);
Alexander Block31db9f72012-07-25 23:19:24 +02003906 if (ret < 0)
3907 goto out;
3908 if (ret) {
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003909 ret = is_first_ref(sctx->parent_root,
3910 ow_inode, cur->dir, cur->name,
3911 cur->name_len);
Alexander Block31db9f72012-07-25 23:19:24 +02003912 if (ret < 0)
3913 goto out;
3914 if (ret) {
Filipe Manana8996a482015-03-12 15:16:20 +00003915 struct name_cache_entry *nce;
Robbie Ko801bec32015-06-23 18:39:46 +08003916 struct waiting_dir_move *wdm;
Filipe Manana8996a482015-03-12 15:16:20 +00003917
Alexander Block31db9f72012-07-25 23:19:24 +02003918 ret = orphanize_inode(sctx, ow_inode, ow_gen,
3919 cur->full_path);
3920 if (ret < 0)
3921 goto out;
Filipe Mananaf5962782017-06-22 20:03:51 +01003922 if (S_ISDIR(ow_mode))
3923 orphanized_dir = true;
Robbie Ko801bec32015-06-23 18:39:46 +08003924
3925 /*
3926 * If ow_inode has its rename operation delayed
3927 * make sure that its orphanized name is used in
3928 * the source path when performing its rename
3929 * operation.
3930 */
3931 if (is_waiting_for_move(sctx, ow_inode)) {
3932 wdm = get_waiting_dir_move(sctx,
3933 ow_inode);
3934 ASSERT(wdm);
3935 wdm->orphanized = true;
3936 }
3937
Filipe Manana8996a482015-03-12 15:16:20 +00003938 /*
3939 * Make sure we clear our orphanized inode's
3940 * name from the name cache. This is because the
3941 * inode ow_inode might be an ancestor of some
3942 * other inode that will be orphanized as well
3943 * later and has an inode number greater than
3944 * sctx->send_progress. We need to prevent
3945 * future name lookups from using the old name
3946 * and get instead the orphan name.
3947 */
3948 nce = name_cache_search(sctx, ow_inode, ow_gen);
3949 if (nce) {
3950 name_cache_delete(sctx, nce);
3951 kfree(nce);
3952 }
Robbie Ko801bec32015-06-23 18:39:46 +08003953
3954 /*
3955 * ow_inode might currently be an ancestor of
3956 * cur_ino, therefore compute valid_path (the
3957 * current path of cur_ino) again because it
3958 * might contain the pre-orphanization name of
3959 * ow_inode, which is no longer valid.
3960 */
Filipe Manana72c36682017-06-07 11:41:29 +01003961 ret = is_ancestor(sctx->parent_root,
3962 ow_inode, ow_gen,
3963 sctx->cur_ino, NULL);
3964 if (ret > 0) {
Filipe Mananafdb13882017-06-13 14:13:11 +01003965 orphanized_ancestor = true;
Filipe Manana72c36682017-06-07 11:41:29 +01003966 fs_path_reset(valid_path);
3967 ret = get_cur_path(sctx, sctx->cur_ino,
3968 sctx->cur_inode_gen,
3969 valid_path);
3970 }
Robbie Ko801bec32015-06-23 18:39:46 +08003971 if (ret < 0)
3972 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02003973 } else {
3974 ret = send_unlink(sctx, cur->full_path);
3975 if (ret < 0)
3976 goto out;
3977 }
3978 }
3979
Filipe Manana84471e22015-02-28 22:29:22 +00003980 if (S_ISDIR(sctx->cur_inode_mode) && sctx->parent_root) {
3981 ret = wait_for_dest_dir_move(sctx, cur, is_orphan);
3982 if (ret < 0)
3983 goto out;
3984 if (ret == 1) {
3985 can_rename = false;
3986 *pending_move = 1;
3987 }
3988 }
3989
Filipe Manana8b191a62015-04-09 14:09:14 +01003990 if (S_ISDIR(sctx->cur_inode_mode) && sctx->parent_root &&
3991 can_rename) {
3992 ret = wait_for_parent_move(sctx, cur, is_orphan);
3993 if (ret < 0)
3994 goto out;
3995 if (ret == 1) {
3996 can_rename = false;
3997 *pending_move = 1;
3998 }
3999 }
4000
Alexander Block31db9f72012-07-25 23:19:24 +02004001 /*
4002 * link/move the ref to the new place. If we have an orphan
4003 * inode, move it and update valid_path. If not, link or move
4004 * it depending on the inode mode.
4005 */
Filipe Manana84471e22015-02-28 22:29:22 +00004006 if (is_orphan && can_rename) {
Alexander Block31db9f72012-07-25 23:19:24 +02004007 ret = send_rename(sctx, valid_path, cur->full_path);
4008 if (ret < 0)
4009 goto out;
4010 is_orphan = 0;
4011 ret = fs_path_copy(valid_path, cur->full_path);
4012 if (ret < 0)
4013 goto out;
Filipe Manana84471e22015-02-28 22:29:22 +00004014 } else if (can_rename) {
Alexander Block31db9f72012-07-25 23:19:24 +02004015 if (S_ISDIR(sctx->cur_inode_mode)) {
4016 /*
4017 * Dirs can't be linked, so move it. For moved
4018 * dirs, we always have one new and one deleted
4019 * ref. The deleted ref is ignored later.
4020 */
Filipe Manana8b191a62015-04-09 14:09:14 +01004021 ret = send_rename(sctx, valid_path,
4022 cur->full_path);
4023 if (!ret)
4024 ret = fs_path_copy(valid_path,
4025 cur->full_path);
Alexander Block31db9f72012-07-25 23:19:24 +02004026 if (ret < 0)
4027 goto out;
4028 } else {
Filipe Mananaf5962782017-06-22 20:03:51 +01004029 /*
4030 * We might have previously orphanized an inode
4031 * which is an ancestor of our current inode,
4032 * so our reference's full path, which was
4033 * computed before any such orphanizations, must
4034 * be updated.
4035 */
4036 if (orphanized_dir) {
4037 ret = update_ref_path(sctx, cur);
4038 if (ret < 0)
4039 goto out;
4040 }
Alexander Block31db9f72012-07-25 23:19:24 +02004041 ret = send_link(sctx, cur->full_path,
4042 valid_path);
4043 if (ret < 0)
4044 goto out;
4045 }
4046 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04004047 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02004048 if (ret < 0)
4049 goto out;
4050 }
4051
4052 if (S_ISDIR(sctx->cur_inode_mode) && sctx->cur_inode_deleted) {
4053 /*
4054 * Check if we can already rmdir the directory. If not,
4055 * orphanize it. For every dir item inside that gets deleted
4056 * later, we do this check again and rmdir it then if possible.
4057 * See the use of check_dirs for more details.
4058 */
Filipe Manana9dc44212014-02-19 14:31:44 +00004059 ret = can_rmdir(sctx, sctx->cur_ino, sctx->cur_inode_gen,
4060 sctx->cur_ino);
Alexander Block31db9f72012-07-25 23:19:24 +02004061 if (ret < 0)
4062 goto out;
4063 if (ret) {
4064 ret = send_rmdir(sctx, valid_path);
4065 if (ret < 0)
4066 goto out;
4067 } else if (!is_orphan) {
4068 ret = orphanize_inode(sctx, sctx->cur_ino,
4069 sctx->cur_inode_gen, valid_path);
4070 if (ret < 0)
4071 goto out;
4072 is_orphan = 1;
4073 }
4074
4075 list_for_each_entry(cur, &sctx->deleted_refs, list) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04004076 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02004077 if (ret < 0)
4078 goto out;
4079 }
Alexander Blockccf16262012-07-28 11:46:29 +02004080 } else if (S_ISDIR(sctx->cur_inode_mode) &&
4081 !list_empty(&sctx->deleted_refs)) {
4082 /*
4083 * We have a moved dir. Add the old parent to check_dirs
4084 */
4085 cur = list_entry(sctx->deleted_refs.next, struct recorded_ref,
4086 list);
Josef Bacikba5e8f22013-08-16 16:52:55 -04004087 ret = dup_ref(cur, &check_dirs);
Alexander Blockccf16262012-07-28 11:46:29 +02004088 if (ret < 0)
4089 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004090 } else if (!S_ISDIR(sctx->cur_inode_mode)) {
4091 /*
4092 * We have a non dir inode. Go through all deleted refs and
4093 * unlink them if they were not already overwritten by other
4094 * inodes.
4095 */
4096 list_for_each_entry(cur, &sctx->deleted_refs, list) {
4097 ret = did_overwrite_ref(sctx, cur->dir, cur->dir_gen,
4098 sctx->cur_ino, sctx->cur_inode_gen,
4099 cur->name, cur->name_len);
4100 if (ret < 0)
4101 goto out;
4102 if (!ret) {
Filipe Mananafdb13882017-06-13 14:13:11 +01004103 /*
4104 * If we orphanized any ancestor before, we need
4105 * to recompute the full path for deleted names,
4106 * since any such path was computed before we
4107 * processed any references and orphanized any
4108 * ancestor inode.
4109 */
4110 if (orphanized_ancestor) {
Filipe Mananaf5962782017-06-22 20:03:51 +01004111 ret = update_ref_path(sctx, cur);
4112 if (ret < 0)
Filipe Mananafdb13882017-06-13 14:13:11 +01004113 goto out;
Filipe Mananafdb13882017-06-13 14:13:11 +01004114 }
Alexander Block1f4692d2012-07-28 10:42:24 +02004115 ret = send_unlink(sctx, cur->full_path);
4116 if (ret < 0)
4117 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004118 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04004119 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02004120 if (ret < 0)
4121 goto out;
4122 }
Alexander Block31db9f72012-07-25 23:19:24 +02004123 /*
4124 * If the inode is still orphan, unlink the orphan. This may
4125 * happen when a previous inode did overwrite the first ref
4126 * of this inode and no new refs were added for the current
Alexander Block766702e2012-07-28 14:11:31 +02004127 * inode. Unlinking does not mean that the inode is deleted in
4128 * all cases. There may still be links to this inode in other
4129 * places.
Alexander Block31db9f72012-07-25 23:19:24 +02004130 */
Alexander Block1f4692d2012-07-28 10:42:24 +02004131 if (is_orphan) {
Alexander Block31db9f72012-07-25 23:19:24 +02004132 ret = send_unlink(sctx, valid_path);
4133 if (ret < 0)
4134 goto out;
4135 }
4136 }
4137
4138 /*
4139 * We did collect all parent dirs where cur_inode was once located. We
4140 * now go through all these dirs and check if they are pending for
4141 * deletion and if it's finally possible to perform the rmdir now.
4142 * We also update the inode stats of the parent dirs here.
4143 */
Josef Bacikba5e8f22013-08-16 16:52:55 -04004144 list_for_each_entry(cur, &check_dirs, list) {
Alexander Block766702e2012-07-28 14:11:31 +02004145 /*
4146 * In case we had refs into dirs that were not processed yet,
4147 * we don't need to do the utime and rmdir logic for these dirs.
4148 * The dir will be processed later.
4149 */
Josef Bacikba5e8f22013-08-16 16:52:55 -04004150 if (cur->dir > sctx->cur_ino)
Alexander Block31db9f72012-07-25 23:19:24 +02004151 continue;
4152
Josef Bacikba5e8f22013-08-16 16:52:55 -04004153 ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen);
Alexander Block31db9f72012-07-25 23:19:24 +02004154 if (ret < 0)
4155 goto out;
4156
4157 if (ret == inode_state_did_create ||
4158 ret == inode_state_no_change) {
4159 /* TODO delayed utimes */
Josef Bacikba5e8f22013-08-16 16:52:55 -04004160 ret = send_utimes(sctx, cur->dir, cur->dir_gen);
Alexander Block31db9f72012-07-25 23:19:24 +02004161 if (ret < 0)
4162 goto out;
Filipe Manana29d6d302014-02-16 21:01:39 +00004163 } else if (ret == inode_state_did_delete &&
4164 cur->dir != last_dir_ino_rm) {
Filipe Manana9dc44212014-02-19 14:31:44 +00004165 ret = can_rmdir(sctx, cur->dir, cur->dir_gen,
4166 sctx->cur_ino);
Alexander Block31db9f72012-07-25 23:19:24 +02004167 if (ret < 0)
4168 goto out;
4169 if (ret) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04004170 ret = get_cur_path(sctx, cur->dir,
4171 cur->dir_gen, valid_path);
Alexander Block31db9f72012-07-25 23:19:24 +02004172 if (ret < 0)
4173 goto out;
4174 ret = send_rmdir(sctx, valid_path);
4175 if (ret < 0)
4176 goto out;
Filipe Manana29d6d302014-02-16 21:01:39 +00004177 last_dir_ino_rm = cur->dir;
Alexander Block31db9f72012-07-25 23:19:24 +02004178 }
4179 }
4180 }
4181
Alexander Block31db9f72012-07-25 23:19:24 +02004182 ret = 0;
4183
4184out:
Josef Bacikba5e8f22013-08-16 16:52:55 -04004185 __free_recorded_refs(&check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02004186 free_recorded_refs(sctx);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004187 fs_path_free(valid_path);
Alexander Block31db9f72012-07-25 23:19:24 +02004188 return ret;
4189}
4190
Nikolay Borisova0357512017-08-21 12:43:44 +03004191static int record_ref(struct btrfs_root *root, u64 dir, struct fs_path *name,
4192 void *ctx, struct list_head *refs)
Alexander Block31db9f72012-07-25 23:19:24 +02004193{
4194 int ret = 0;
4195 struct send_ctx *sctx = ctx;
4196 struct fs_path *p;
4197 u64 gen;
4198
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004199 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004200 if (!p)
4201 return -ENOMEM;
4202
Liu Boa4d96d62014-03-03 21:31:03 +08004203 ret = get_inode_info(root, dir, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02004204 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004205 if (ret < 0)
4206 goto out;
4207
Alexander Block31db9f72012-07-25 23:19:24 +02004208 ret = get_cur_path(sctx, dir, gen, p);
4209 if (ret < 0)
4210 goto out;
4211 ret = fs_path_add_path(p, name);
4212 if (ret < 0)
4213 goto out;
4214
Liu Boa4d96d62014-03-03 21:31:03 +08004215 ret = __record_ref(refs, dir, gen, p);
Alexander Block31db9f72012-07-25 23:19:24 +02004216
4217out:
4218 if (ret)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004219 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004220 return ret;
4221}
4222
Liu Boa4d96d62014-03-03 21:31:03 +08004223static int __record_new_ref(int num, u64 dir, int index,
4224 struct fs_path *name,
4225 void *ctx)
4226{
4227 struct send_ctx *sctx = ctx;
Nikolay Borisova0357512017-08-21 12:43:44 +03004228 return record_ref(sctx->send_root, dir, name, ctx, &sctx->new_refs);
Liu Boa4d96d62014-03-03 21:31:03 +08004229}
4230
4231
Alexander Block31db9f72012-07-25 23:19:24 +02004232static int __record_deleted_ref(int num, u64 dir, int index,
4233 struct fs_path *name,
4234 void *ctx)
4235{
Alexander Block31db9f72012-07-25 23:19:24 +02004236 struct send_ctx *sctx = ctx;
Nikolay Borisova0357512017-08-21 12:43:44 +03004237 return record_ref(sctx->parent_root, dir, name, ctx,
4238 &sctx->deleted_refs);
Alexander Block31db9f72012-07-25 23:19:24 +02004239}
4240
4241static int record_new_ref(struct send_ctx *sctx)
4242{
4243 int ret;
4244
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004245 ret = iterate_inode_ref(sctx->send_root, sctx->left_path,
4246 sctx->cmp_key, 0, __record_new_ref, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004247 if (ret < 0)
4248 goto out;
4249 ret = 0;
4250
4251out:
4252 return ret;
4253}
4254
4255static int record_deleted_ref(struct send_ctx *sctx)
4256{
4257 int ret;
4258
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004259 ret = iterate_inode_ref(sctx->parent_root, sctx->right_path,
4260 sctx->cmp_key, 0, __record_deleted_ref, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004261 if (ret < 0)
4262 goto out;
4263 ret = 0;
4264
4265out:
4266 return ret;
4267}
4268
4269struct find_ref_ctx {
4270 u64 dir;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004271 u64 dir_gen;
4272 struct btrfs_root *root;
Alexander Block31db9f72012-07-25 23:19:24 +02004273 struct fs_path *name;
4274 int found_idx;
4275};
4276
4277static int __find_iref(int num, u64 dir, int index,
4278 struct fs_path *name,
4279 void *ctx_)
4280{
4281 struct find_ref_ctx *ctx = ctx_;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004282 u64 dir_gen;
4283 int ret;
Alexander Block31db9f72012-07-25 23:19:24 +02004284
4285 if (dir == ctx->dir && fs_path_len(name) == fs_path_len(ctx->name) &&
4286 strncmp(name->start, ctx->name->start, fs_path_len(name)) == 0) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04004287 /*
4288 * To avoid doing extra lookups we'll only do this if everything
4289 * else matches.
4290 */
4291 ret = get_inode_info(ctx->root, dir, NULL, &dir_gen, NULL,
4292 NULL, NULL, NULL);
4293 if (ret)
4294 return ret;
4295 if (dir_gen != ctx->dir_gen)
4296 return 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004297 ctx->found_idx = num;
4298 return 1;
4299 }
4300 return 0;
4301}
4302
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004303static int find_iref(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02004304 struct btrfs_path *path,
4305 struct btrfs_key *key,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004306 u64 dir, u64 dir_gen, struct fs_path *name)
Alexander Block31db9f72012-07-25 23:19:24 +02004307{
4308 int ret;
4309 struct find_ref_ctx ctx;
4310
4311 ctx.dir = dir;
4312 ctx.name = name;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004313 ctx.dir_gen = dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004314 ctx.found_idx = -1;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004315 ctx.root = root;
Alexander Block31db9f72012-07-25 23:19:24 +02004316
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004317 ret = iterate_inode_ref(root, path, key, 0, __find_iref, &ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004318 if (ret < 0)
4319 return ret;
4320
4321 if (ctx.found_idx == -1)
4322 return -ENOENT;
4323
4324 return ctx.found_idx;
4325}
4326
4327static int __record_changed_new_ref(int num, u64 dir, int index,
4328 struct fs_path *name,
4329 void *ctx)
4330{
Josef Bacikba5e8f22013-08-16 16:52:55 -04004331 u64 dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004332 int ret;
4333 struct send_ctx *sctx = ctx;
4334
Josef Bacikba5e8f22013-08-16 16:52:55 -04004335 ret = get_inode_info(sctx->send_root, dir, NULL, &dir_gen, NULL,
4336 NULL, NULL, NULL);
4337 if (ret)
4338 return ret;
4339
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004340 ret = find_iref(sctx->parent_root, sctx->right_path,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004341 sctx->cmp_key, dir, dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02004342 if (ret == -ENOENT)
4343 ret = __record_new_ref(num, dir, index, name, sctx);
4344 else if (ret > 0)
4345 ret = 0;
4346
4347 return ret;
4348}
4349
4350static int __record_changed_deleted_ref(int num, u64 dir, int index,
4351 struct fs_path *name,
4352 void *ctx)
4353{
Josef Bacikba5e8f22013-08-16 16:52:55 -04004354 u64 dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004355 int ret;
4356 struct send_ctx *sctx = ctx;
4357
Josef Bacikba5e8f22013-08-16 16:52:55 -04004358 ret = get_inode_info(sctx->parent_root, dir, NULL, &dir_gen, NULL,
4359 NULL, NULL, NULL);
4360 if (ret)
4361 return ret;
4362
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004363 ret = find_iref(sctx->send_root, sctx->left_path, sctx->cmp_key,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004364 dir, dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02004365 if (ret == -ENOENT)
4366 ret = __record_deleted_ref(num, dir, index, name, sctx);
4367 else if (ret > 0)
4368 ret = 0;
4369
4370 return ret;
4371}
4372
4373static int record_changed_ref(struct send_ctx *sctx)
4374{
4375 int ret = 0;
4376
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004377 ret = iterate_inode_ref(sctx->send_root, sctx->left_path,
Alexander Block31db9f72012-07-25 23:19:24 +02004378 sctx->cmp_key, 0, __record_changed_new_ref, sctx);
4379 if (ret < 0)
4380 goto out;
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004381 ret = iterate_inode_ref(sctx->parent_root, sctx->right_path,
Alexander Block31db9f72012-07-25 23:19:24 +02004382 sctx->cmp_key, 0, __record_changed_deleted_ref, sctx);
4383 if (ret < 0)
4384 goto out;
4385 ret = 0;
4386
4387out:
4388 return ret;
4389}
4390
4391/*
4392 * Record and process all refs at once. Needed when an inode changes the
4393 * generation number, which means that it was deleted and recreated.
4394 */
4395static int process_all_refs(struct send_ctx *sctx,
4396 enum btrfs_compare_tree_result cmd)
4397{
4398 int ret;
4399 struct btrfs_root *root;
4400 struct btrfs_path *path;
4401 struct btrfs_key key;
4402 struct btrfs_key found_key;
4403 struct extent_buffer *eb;
4404 int slot;
4405 iterate_inode_ref_t cb;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00004406 int pending_move = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004407
4408 path = alloc_path_for_send();
4409 if (!path)
4410 return -ENOMEM;
4411
4412 if (cmd == BTRFS_COMPARE_TREE_NEW) {
4413 root = sctx->send_root;
4414 cb = __record_new_ref;
4415 } else if (cmd == BTRFS_COMPARE_TREE_DELETED) {
4416 root = sctx->parent_root;
4417 cb = __record_deleted_ref;
4418 } else {
David Sterba4d1a63b2014-02-03 19:24:19 +01004419 btrfs_err(sctx->send_root->fs_info,
4420 "Wrong command %d in process_all_refs", cmd);
4421 ret = -EINVAL;
4422 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004423 }
4424
4425 key.objectid = sctx->cmp_key->objectid;
4426 key.type = BTRFS_INODE_REF_KEY;
4427 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004428 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4429 if (ret < 0)
4430 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004431
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004432 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02004433 eb = path->nodes[0];
4434 slot = path->slots[0];
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004435 if (slot >= btrfs_header_nritems(eb)) {
4436 ret = btrfs_next_leaf(root, path);
4437 if (ret < 0)
4438 goto out;
4439 else if (ret > 0)
4440 break;
4441 continue;
4442 }
4443
Alexander Block31db9f72012-07-25 23:19:24 +02004444 btrfs_item_key_to_cpu(eb, &found_key, slot);
4445
4446 if (found_key.objectid != key.objectid ||
Jan Schmidt96b5bd72012-10-15 08:30:45 +00004447 (found_key.type != BTRFS_INODE_REF_KEY &&
4448 found_key.type != BTRFS_INODE_EXTREF_KEY))
Alexander Block31db9f72012-07-25 23:19:24 +02004449 break;
Alexander Block31db9f72012-07-25 23:19:24 +02004450
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004451 ret = iterate_inode_ref(root, path, &found_key, 0, cb, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004452 if (ret < 0)
4453 goto out;
4454
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004455 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02004456 }
Alexander Blocke938c8a2012-07-28 16:33:49 +02004457 btrfs_release_path(path);
Alexander Block31db9f72012-07-25 23:19:24 +02004458
Josef Bacik3dc09ec2016-08-24 11:57:52 -04004459 /*
4460 * We don't actually care about pending_move as we are simply
4461 * re-creating this inode and will be rename'ing it into place once we
4462 * rename the parent directory.
4463 */
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00004464 ret = process_recorded_refs(sctx, &pending_move);
Alexander Block31db9f72012-07-25 23:19:24 +02004465out:
4466 btrfs_free_path(path);
4467 return ret;
4468}
4469
4470static int send_set_xattr(struct send_ctx *sctx,
4471 struct fs_path *path,
4472 const char *name, int name_len,
4473 const char *data, int data_len)
4474{
4475 int ret = 0;
4476
4477 ret = begin_cmd(sctx, BTRFS_SEND_C_SET_XATTR);
4478 if (ret < 0)
4479 goto out;
4480
4481 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
4482 TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len);
4483 TLV_PUT(sctx, BTRFS_SEND_A_XATTR_DATA, data, data_len);
4484
4485 ret = send_cmd(sctx);
4486
4487tlv_put_failure:
4488out:
4489 return ret;
4490}
4491
4492static int send_remove_xattr(struct send_ctx *sctx,
4493 struct fs_path *path,
4494 const char *name, int name_len)
4495{
4496 int ret = 0;
4497
4498 ret = begin_cmd(sctx, BTRFS_SEND_C_REMOVE_XATTR);
4499 if (ret < 0)
4500 goto out;
4501
4502 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
4503 TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len);
4504
4505 ret = send_cmd(sctx);
4506
4507tlv_put_failure:
4508out:
4509 return ret;
4510}
4511
4512static int __process_new_xattr(int num, struct btrfs_key *di_key,
4513 const char *name, int name_len,
4514 const char *data, int data_len,
4515 u8 type, void *ctx)
4516{
4517 int ret;
4518 struct send_ctx *sctx = ctx;
4519 struct fs_path *p;
Andreas Gruenbacher2211d5b2016-09-27 13:03:22 +02004520 struct posix_acl_xattr_header dummy_acl;
Alexander Block31db9f72012-07-25 23:19:24 +02004521
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004522 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004523 if (!p)
4524 return -ENOMEM;
4525
4526 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004527 * This hack is needed because empty acls are stored as zero byte
Alexander Block31db9f72012-07-25 23:19:24 +02004528 * data in xattrs. Problem with that is, that receiving these zero byte
Nicholas D Steeves01327612016-05-19 21:18:45 -04004529 * acls will fail later. To fix this, we send a dummy acl list that
Alexander Block31db9f72012-07-25 23:19:24 +02004530 * only contains the version number and no entries.
4531 */
4532 if (!strncmp(name, XATTR_NAME_POSIX_ACL_ACCESS, name_len) ||
4533 !strncmp(name, XATTR_NAME_POSIX_ACL_DEFAULT, name_len)) {
4534 if (data_len == 0) {
4535 dummy_acl.a_version =
4536 cpu_to_le32(POSIX_ACL_XATTR_VERSION);
4537 data = (char *)&dummy_acl;
4538 data_len = sizeof(dummy_acl);
4539 }
4540 }
4541
4542 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4543 if (ret < 0)
4544 goto out;
4545
4546 ret = send_set_xattr(sctx, p, name, name_len, data, data_len);
4547
4548out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004549 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004550 return ret;
4551}
4552
4553static int __process_deleted_xattr(int num, struct btrfs_key *di_key,
4554 const char *name, int name_len,
4555 const char *data, int data_len,
4556 u8 type, void *ctx)
4557{
4558 int ret;
4559 struct send_ctx *sctx = ctx;
4560 struct fs_path *p;
4561
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004562 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004563 if (!p)
4564 return -ENOMEM;
4565
4566 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4567 if (ret < 0)
4568 goto out;
4569
4570 ret = send_remove_xattr(sctx, p, name, name_len);
4571
4572out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004573 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004574 return ret;
4575}
4576
4577static int process_new_xattr(struct send_ctx *sctx)
4578{
4579 int ret = 0;
4580
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004581 ret = iterate_dir_item(sctx->send_root, sctx->left_path,
Nikolay Borisova0357512017-08-21 12:43:44 +03004582 __process_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004583
4584 return ret;
4585}
4586
4587static int process_deleted_xattr(struct send_ctx *sctx)
4588{
Masahiro Yamadae2c89902016-09-13 04:35:52 +09004589 return iterate_dir_item(sctx->parent_root, sctx->right_path,
Nikolay Borisova0357512017-08-21 12:43:44 +03004590 __process_deleted_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004591}
4592
4593struct find_xattr_ctx {
4594 const char *name;
4595 int name_len;
4596 int found_idx;
4597 char *found_data;
4598 int found_data_len;
4599};
4600
4601static int __find_xattr(int num, struct btrfs_key *di_key,
4602 const char *name, int name_len,
4603 const char *data, int data_len,
4604 u8 type, void *vctx)
4605{
4606 struct find_xattr_ctx *ctx = vctx;
4607
4608 if (name_len == ctx->name_len &&
4609 strncmp(name, ctx->name, name_len) == 0) {
4610 ctx->found_idx = num;
4611 ctx->found_data_len = data_len;
David Sterbae780b0d2016-01-18 18:42:13 +01004612 ctx->found_data = kmemdup(data, data_len, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02004613 if (!ctx->found_data)
4614 return -ENOMEM;
Alexander Block31db9f72012-07-25 23:19:24 +02004615 return 1;
4616 }
4617 return 0;
4618}
4619
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004620static int find_xattr(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02004621 struct btrfs_path *path,
4622 struct btrfs_key *key,
4623 const char *name, int name_len,
4624 char **data, int *data_len)
4625{
4626 int ret;
4627 struct find_xattr_ctx ctx;
4628
4629 ctx.name = name;
4630 ctx.name_len = name_len;
4631 ctx.found_idx = -1;
4632 ctx.found_data = NULL;
4633 ctx.found_data_len = 0;
4634
Nikolay Borisova0357512017-08-21 12:43:44 +03004635 ret = iterate_dir_item(root, path, __find_xattr, &ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004636 if (ret < 0)
4637 return ret;
4638
4639 if (ctx.found_idx == -1)
4640 return -ENOENT;
4641 if (data) {
4642 *data = ctx.found_data;
4643 *data_len = ctx.found_data_len;
4644 } else {
4645 kfree(ctx.found_data);
4646 }
4647 return ctx.found_idx;
4648}
4649
4650
4651static int __process_changed_new_xattr(int num, struct btrfs_key *di_key,
4652 const char *name, int name_len,
4653 const char *data, int data_len,
4654 u8 type, void *ctx)
4655{
4656 int ret;
4657 struct send_ctx *sctx = ctx;
4658 char *found_data = NULL;
4659 int found_data_len = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004660
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004661 ret = find_xattr(sctx->parent_root, sctx->right_path,
4662 sctx->cmp_key, name, name_len, &found_data,
4663 &found_data_len);
Alexander Block31db9f72012-07-25 23:19:24 +02004664 if (ret == -ENOENT) {
4665 ret = __process_new_xattr(num, di_key, name, name_len, data,
4666 data_len, type, ctx);
4667 } else if (ret >= 0) {
4668 if (data_len != found_data_len ||
4669 memcmp(data, found_data, data_len)) {
4670 ret = __process_new_xattr(num, di_key, name, name_len,
4671 data, data_len, type, ctx);
4672 } else {
4673 ret = 0;
4674 }
4675 }
4676
4677 kfree(found_data);
Alexander Block31db9f72012-07-25 23:19:24 +02004678 return ret;
4679}
4680
4681static int __process_changed_deleted_xattr(int num, struct btrfs_key *di_key,
4682 const char *name, int name_len,
4683 const char *data, int data_len,
4684 u8 type, void *ctx)
4685{
4686 int ret;
4687 struct send_ctx *sctx = ctx;
4688
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004689 ret = find_xattr(sctx->send_root, sctx->left_path, sctx->cmp_key,
4690 name, name_len, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004691 if (ret == -ENOENT)
4692 ret = __process_deleted_xattr(num, di_key, name, name_len, data,
4693 data_len, type, ctx);
4694 else if (ret >= 0)
4695 ret = 0;
4696
4697 return ret;
4698}
4699
4700static int process_changed_xattr(struct send_ctx *sctx)
4701{
4702 int ret = 0;
4703
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004704 ret = iterate_dir_item(sctx->send_root, sctx->left_path,
Nikolay Borisova0357512017-08-21 12:43:44 +03004705 __process_changed_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004706 if (ret < 0)
4707 goto out;
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004708 ret = iterate_dir_item(sctx->parent_root, sctx->right_path,
Nikolay Borisova0357512017-08-21 12:43:44 +03004709 __process_changed_deleted_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004710
4711out:
4712 return ret;
4713}
4714
4715static int process_all_new_xattrs(struct send_ctx *sctx)
4716{
4717 int ret;
4718 struct btrfs_root *root;
4719 struct btrfs_path *path;
4720 struct btrfs_key key;
4721 struct btrfs_key found_key;
4722 struct extent_buffer *eb;
4723 int slot;
4724
4725 path = alloc_path_for_send();
4726 if (!path)
4727 return -ENOMEM;
4728
4729 root = sctx->send_root;
4730
4731 key.objectid = sctx->cmp_key->objectid;
4732 key.type = BTRFS_XATTR_ITEM_KEY;
4733 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004734 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4735 if (ret < 0)
4736 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004737
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004738 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02004739 eb = path->nodes[0];
4740 slot = path->slots[0];
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004741 if (slot >= btrfs_header_nritems(eb)) {
4742 ret = btrfs_next_leaf(root, path);
4743 if (ret < 0) {
4744 goto out;
4745 } else if (ret > 0) {
4746 ret = 0;
4747 break;
4748 }
4749 continue;
4750 }
Alexander Block31db9f72012-07-25 23:19:24 +02004751
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004752 btrfs_item_key_to_cpu(eb, &found_key, slot);
Alexander Block31db9f72012-07-25 23:19:24 +02004753 if (found_key.objectid != key.objectid ||
4754 found_key.type != key.type) {
4755 ret = 0;
4756 goto out;
4757 }
4758
Nikolay Borisova0357512017-08-21 12:43:44 +03004759 ret = iterate_dir_item(root, path, __process_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004760 if (ret < 0)
4761 goto out;
4762
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004763 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02004764 }
4765
4766out:
4767 btrfs_free_path(path);
4768 return ret;
4769}
4770
Josef Baciked259092013-10-25 11:36:01 -04004771static ssize_t fill_read_buf(struct send_ctx *sctx, u64 offset, u32 len)
4772{
4773 struct btrfs_root *root = sctx->send_root;
4774 struct btrfs_fs_info *fs_info = root->fs_info;
4775 struct inode *inode;
4776 struct page *page;
4777 char *addr;
4778 struct btrfs_key key;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004779 pgoff_t index = offset >> PAGE_SHIFT;
Josef Baciked259092013-10-25 11:36:01 -04004780 pgoff_t last_index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004781 unsigned pg_offset = offset & ~PAGE_MASK;
Josef Baciked259092013-10-25 11:36:01 -04004782 ssize_t ret = 0;
4783
4784 key.objectid = sctx->cur_ino;
4785 key.type = BTRFS_INODE_ITEM_KEY;
4786 key.offset = 0;
4787
4788 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
4789 if (IS_ERR(inode))
4790 return PTR_ERR(inode);
4791
4792 if (offset + len > i_size_read(inode)) {
4793 if (offset > i_size_read(inode))
4794 len = 0;
4795 else
4796 len = offset - i_size_read(inode);
4797 }
4798 if (len == 0)
4799 goto out;
4800
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004801 last_index = (offset + len - 1) >> PAGE_SHIFT;
Liu Bo2131bcd2014-03-05 10:07:35 +08004802
4803 /* initial readahead */
4804 memset(&sctx->ra, 0, sizeof(struct file_ra_state));
4805 file_ra_state_init(&sctx->ra, inode->i_mapping);
Liu Bo2131bcd2014-03-05 10:07:35 +08004806
Josef Baciked259092013-10-25 11:36:01 -04004807 while (index <= last_index) {
4808 unsigned cur_len = min_t(unsigned, len,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004809 PAGE_SIZE - pg_offset);
Kuanling Huangeef16ba2017-09-15 16:47:45 +08004810
4811 page = find_lock_page(inode->i_mapping, index);
Josef Baciked259092013-10-25 11:36:01 -04004812 if (!page) {
Kuanling Huangeef16ba2017-09-15 16:47:45 +08004813 page_cache_sync_readahead(inode->i_mapping, &sctx->ra,
4814 NULL, index, last_index + 1 - index);
4815
4816 page = find_or_create_page(inode->i_mapping, index,
4817 GFP_KERNEL);
4818 if (!page) {
4819 ret = -ENOMEM;
4820 break;
4821 }
4822 }
4823
4824 if (PageReadahead(page)) {
4825 page_cache_async_readahead(inode->i_mapping, &sctx->ra,
4826 NULL, page, index, last_index + 1 - index);
Josef Baciked259092013-10-25 11:36:01 -04004827 }
4828
4829 if (!PageUptodate(page)) {
4830 btrfs_readpage(NULL, page);
4831 lock_page(page);
4832 if (!PageUptodate(page)) {
4833 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004834 put_page(page);
Josef Baciked259092013-10-25 11:36:01 -04004835 ret = -EIO;
4836 break;
4837 }
4838 }
4839
4840 addr = kmap(page);
4841 memcpy(sctx->read_buf + ret, addr + pg_offset, cur_len);
4842 kunmap(page);
4843 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004844 put_page(page);
Josef Baciked259092013-10-25 11:36:01 -04004845 index++;
4846 pg_offset = 0;
4847 len -= cur_len;
4848 ret += cur_len;
4849 }
4850out:
4851 iput(inode);
4852 return ret;
4853}
4854
Alexander Block31db9f72012-07-25 23:19:24 +02004855/*
4856 * Read some bytes from the current inode/file and send a write command to
4857 * user space.
4858 */
4859static int send_write(struct send_ctx *sctx, u64 offset, u32 len)
4860{
Jeff Mahoney04ab9562016-09-20 10:05:03 -04004861 struct btrfs_fs_info *fs_info = sctx->send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02004862 int ret = 0;
4863 struct fs_path *p;
Josef Baciked259092013-10-25 11:36:01 -04004864 ssize_t num_read = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004865
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004866 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004867 if (!p)
4868 return -ENOMEM;
4869
Jeff Mahoney04ab9562016-09-20 10:05:03 -04004870 btrfs_debug(fs_info, "send_write offset=%llu, len=%d", offset, len);
Alexander Block31db9f72012-07-25 23:19:24 +02004871
Josef Baciked259092013-10-25 11:36:01 -04004872 num_read = fill_read_buf(sctx, offset, len);
4873 if (num_read <= 0) {
4874 if (num_read < 0)
4875 ret = num_read;
Alexander Block31db9f72012-07-25 23:19:24 +02004876 goto out;
Josef Baciked259092013-10-25 11:36:01 -04004877 }
Alexander Block31db9f72012-07-25 23:19:24 +02004878
4879 ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE);
4880 if (ret < 0)
4881 goto out;
4882
4883 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4884 if (ret < 0)
4885 goto out;
4886
4887 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4888 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
Alexander Blocke938c8a2012-07-28 16:33:49 +02004889 TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, num_read);
Alexander Block31db9f72012-07-25 23:19:24 +02004890
4891 ret = send_cmd(sctx);
4892
4893tlv_put_failure:
4894out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004895 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004896 if (ret < 0)
4897 return ret;
Alexander Blocke938c8a2012-07-28 16:33:49 +02004898 return num_read;
Alexander Block31db9f72012-07-25 23:19:24 +02004899}
4900
4901/*
4902 * Send a clone command to user space.
4903 */
4904static int send_clone(struct send_ctx *sctx,
4905 u64 offset, u32 len,
4906 struct clone_root *clone_root)
4907{
4908 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004909 struct fs_path *p;
4910 u64 gen;
4911
Jeff Mahoney04ab9562016-09-20 10:05:03 -04004912 btrfs_debug(sctx->send_root->fs_info,
4913 "send_clone offset=%llu, len=%d, clone_root=%llu, clone_inode=%llu, clone_offset=%llu",
4914 offset, len, clone_root->root->objectid, clone_root->ino,
4915 clone_root->offset);
Alexander Block31db9f72012-07-25 23:19:24 +02004916
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004917 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004918 if (!p)
4919 return -ENOMEM;
4920
4921 ret = begin_cmd(sctx, BTRFS_SEND_C_CLONE);
4922 if (ret < 0)
4923 goto out;
4924
4925 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4926 if (ret < 0)
4927 goto out;
4928
4929 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
4930 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_LEN, len);
4931 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4932
Alexander Blocke938c8a2012-07-28 16:33:49 +02004933 if (clone_root->root == sctx->send_root) {
Alexander Block31db9f72012-07-25 23:19:24 +02004934 ret = get_inode_info(sctx->send_root, clone_root->ino, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02004935 &gen, NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004936 if (ret < 0)
4937 goto out;
4938 ret = get_cur_path(sctx, clone_root->ino, gen, p);
4939 } else {
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004940 ret = get_inode_path(clone_root->root, clone_root->ino, p);
Alexander Block31db9f72012-07-25 23:19:24 +02004941 }
4942 if (ret < 0)
4943 goto out;
4944
Josef Bacik37b8d272015-06-04 17:17:25 -04004945 /*
4946 * If the parent we're using has a received_uuid set then use that as
4947 * our clone source as that is what we will look for when doing a
4948 * receive.
4949 *
4950 * This covers the case that we create a snapshot off of a received
4951 * subvolume and then use that as the parent and try to receive on a
4952 * different host.
4953 */
4954 if (!btrfs_is_empty_uuid(clone_root->root->root_item.received_uuid))
4955 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
4956 clone_root->root->root_item.received_uuid);
4957 else
4958 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
4959 clone_root->root->root_item.uuid);
Alexander Block31db9f72012-07-25 23:19:24 +02004960 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00004961 le64_to_cpu(clone_root->root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02004962 TLV_PUT_PATH(sctx, BTRFS_SEND_A_CLONE_PATH, p);
4963 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_OFFSET,
4964 clone_root->offset);
4965
4966 ret = send_cmd(sctx);
4967
4968tlv_put_failure:
4969out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004970 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004971 return ret;
4972}
4973
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004974/*
4975 * Send an update extent command to user space.
4976 */
4977static int send_update_extent(struct send_ctx *sctx,
4978 u64 offset, u32 len)
4979{
4980 int ret = 0;
4981 struct fs_path *p;
4982
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004983 p = fs_path_alloc();
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004984 if (!p)
4985 return -ENOMEM;
4986
4987 ret = begin_cmd(sctx, BTRFS_SEND_C_UPDATE_EXTENT);
4988 if (ret < 0)
4989 goto out;
4990
4991 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4992 if (ret < 0)
4993 goto out;
4994
4995 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4996 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
4997 TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, len);
4998
4999 ret = send_cmd(sctx);
5000
5001tlv_put_failure:
5002out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00005003 fs_path_free(p);
Mark Fashehcb95e7b2013-02-04 20:54:57 +00005004 return ret;
5005}
5006
Josef Bacik16e75492013-10-22 12:18:51 -04005007static int send_hole(struct send_ctx *sctx, u64 end)
5008{
5009 struct fs_path *p = NULL;
5010 u64 offset = sctx->cur_inode_last_extent;
5011 u64 len;
5012 int ret = 0;
5013
5014 p = fs_path_alloc();
5015 if (!p)
5016 return -ENOMEM;
Filipe Mananac715e152014-03-31 14:52:14 +01005017 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
5018 if (ret < 0)
5019 goto tlv_put_failure;
Josef Bacik16e75492013-10-22 12:18:51 -04005020 memset(sctx->read_buf, 0, BTRFS_SEND_READ_SIZE);
5021 while (offset < end) {
5022 len = min_t(u64, end - offset, BTRFS_SEND_READ_SIZE);
5023
5024 ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE);
5025 if (ret < 0)
5026 break;
Josef Bacik16e75492013-10-22 12:18:51 -04005027 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
5028 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
5029 TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, len);
5030 ret = send_cmd(sctx);
5031 if (ret < 0)
5032 break;
5033 offset += len;
5034 }
5035tlv_put_failure:
5036 fs_path_free(p);
5037 return ret;
5038}
5039
Filipe Mananad906d492015-10-02 10:47:34 +01005040static int send_extent_data(struct send_ctx *sctx,
5041 const u64 offset,
5042 const u64 len)
5043{
5044 u64 sent = 0;
5045
5046 if (sctx->flags & BTRFS_SEND_FLAG_NO_FILE_DATA)
5047 return send_update_extent(sctx, offset, len);
5048
5049 while (sent < len) {
5050 u64 size = len - sent;
5051 int ret;
5052
5053 if (size > BTRFS_SEND_READ_SIZE)
5054 size = BTRFS_SEND_READ_SIZE;
5055 ret = send_write(sctx, offset + sent, size);
5056 if (ret < 0)
5057 return ret;
5058 if (!ret)
5059 break;
5060 sent += ret;
5061 }
5062 return 0;
5063}
5064
5065static int clone_range(struct send_ctx *sctx,
5066 struct clone_root *clone_root,
5067 const u64 disk_byte,
5068 u64 data_offset,
5069 u64 offset,
5070 u64 len)
5071{
5072 struct btrfs_path *path;
5073 struct btrfs_key key;
5074 int ret;
5075
Filipe Manana72610b12017-08-10 22:54:51 +01005076 /*
5077 * Prevent cloning from a zero offset with a length matching the sector
5078 * size because in some scenarios this will make the receiver fail.
5079 *
5080 * For example, if in the source filesystem the extent at offset 0
5081 * has a length of sectorsize and it was written using direct IO, then
5082 * it can never be an inline extent (even if compression is enabled).
5083 * Then this extent can be cloned in the original filesystem to a non
5084 * zero file offset, but it may not be possible to clone in the
5085 * destination filesystem because it can be inlined due to compression
5086 * on the destination filesystem (as the receiver's write operations are
5087 * always done using buffered IO). The same happens when the original
5088 * filesystem does not have compression enabled but the destination
5089 * filesystem has.
5090 */
5091 if (clone_root->offset == 0 &&
5092 len == sctx->send_root->fs_info->sectorsize)
5093 return send_extent_data(sctx, offset, len);
5094
Filipe Mananad906d492015-10-02 10:47:34 +01005095 path = alloc_path_for_send();
5096 if (!path)
5097 return -ENOMEM;
5098
5099 /*
5100 * We can't send a clone operation for the entire range if we find
5101 * extent items in the respective range in the source file that
5102 * refer to different extents or if we find holes.
5103 * So check for that and do a mix of clone and regular write/copy
5104 * operations if needed.
5105 *
5106 * Example:
5107 *
5108 * mkfs.btrfs -f /dev/sda
5109 * mount /dev/sda /mnt
5110 * xfs_io -f -c "pwrite -S 0xaa 0K 100K" /mnt/foo
5111 * cp --reflink=always /mnt/foo /mnt/bar
5112 * xfs_io -c "pwrite -S 0xbb 50K 50K" /mnt/foo
5113 * btrfs subvolume snapshot -r /mnt /mnt/snap
5114 *
5115 * If when we send the snapshot and we are processing file bar (which
5116 * has a higher inode number than foo) we blindly send a clone operation
5117 * for the [0, 100K[ range from foo to bar, the receiver ends up getting
5118 * a file bar that matches the content of file foo - iow, doesn't match
5119 * the content from bar in the original filesystem.
5120 */
5121 key.objectid = clone_root->ino;
5122 key.type = BTRFS_EXTENT_DATA_KEY;
5123 key.offset = clone_root->offset;
5124 ret = btrfs_search_slot(NULL, clone_root->root, &key, path, 0, 0);
5125 if (ret < 0)
5126 goto out;
5127 if (ret > 0 && path->slots[0] > 0) {
5128 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0] - 1);
5129 if (key.objectid == clone_root->ino &&
5130 key.type == BTRFS_EXTENT_DATA_KEY)
5131 path->slots[0]--;
5132 }
5133
5134 while (true) {
5135 struct extent_buffer *leaf = path->nodes[0];
5136 int slot = path->slots[0];
5137 struct btrfs_file_extent_item *ei;
5138 u8 type;
5139 u64 ext_len;
5140 u64 clone_len;
5141
5142 if (slot >= btrfs_header_nritems(leaf)) {
5143 ret = btrfs_next_leaf(clone_root->root, path);
5144 if (ret < 0)
5145 goto out;
5146 else if (ret > 0)
5147 break;
5148 continue;
5149 }
5150
5151 btrfs_item_key_to_cpu(leaf, &key, slot);
5152
5153 /*
5154 * We might have an implicit trailing hole (NO_HOLES feature
5155 * enabled). We deal with it after leaving this loop.
5156 */
5157 if (key.objectid != clone_root->ino ||
5158 key.type != BTRFS_EXTENT_DATA_KEY)
5159 break;
5160
5161 ei = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5162 type = btrfs_file_extent_type(leaf, ei);
5163 if (type == BTRFS_FILE_EXTENT_INLINE) {
5164 ext_len = btrfs_file_extent_inline_len(leaf, slot, ei);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005165 ext_len = PAGE_ALIGN(ext_len);
Filipe Mananad906d492015-10-02 10:47:34 +01005166 } else {
5167 ext_len = btrfs_file_extent_num_bytes(leaf, ei);
5168 }
5169
5170 if (key.offset + ext_len <= clone_root->offset)
5171 goto next;
5172
5173 if (key.offset > clone_root->offset) {
5174 /* Implicit hole, NO_HOLES feature enabled. */
5175 u64 hole_len = key.offset - clone_root->offset;
5176
5177 if (hole_len > len)
5178 hole_len = len;
5179 ret = send_extent_data(sctx, offset, hole_len);
5180 if (ret < 0)
5181 goto out;
5182
5183 len -= hole_len;
5184 if (len == 0)
5185 break;
5186 offset += hole_len;
5187 clone_root->offset += hole_len;
5188 data_offset += hole_len;
5189 }
5190
5191 if (key.offset >= clone_root->offset + len)
5192 break;
5193
5194 clone_len = min_t(u64, ext_len, len);
5195
5196 if (btrfs_file_extent_disk_bytenr(leaf, ei) == disk_byte &&
5197 btrfs_file_extent_offset(leaf, ei) == data_offset)
5198 ret = send_clone(sctx, offset, clone_len, clone_root);
5199 else
5200 ret = send_extent_data(sctx, offset, clone_len);
5201
5202 if (ret < 0)
5203 goto out;
5204
5205 len -= clone_len;
5206 if (len == 0)
5207 break;
5208 offset += clone_len;
5209 clone_root->offset += clone_len;
5210 data_offset += clone_len;
5211next:
5212 path->slots[0]++;
5213 }
5214
5215 if (len > 0)
5216 ret = send_extent_data(sctx, offset, len);
5217 else
5218 ret = 0;
5219out:
5220 btrfs_free_path(path);
5221 return ret;
5222}
5223
Alexander Block31db9f72012-07-25 23:19:24 +02005224static int send_write_or_clone(struct send_ctx *sctx,
5225 struct btrfs_path *path,
5226 struct btrfs_key *key,
5227 struct clone_root *clone_root)
5228{
5229 int ret = 0;
5230 struct btrfs_file_extent_item *ei;
5231 u64 offset = key->offset;
Alexander Block31db9f72012-07-25 23:19:24 +02005232 u64 len;
Alexander Block31db9f72012-07-25 23:19:24 +02005233 u8 type;
Filipe David Borba Manana28e5dd82014-01-12 02:26:28 +00005234 u64 bs = sctx->send_root->fs_info->sb->s_blocksize;
Alexander Block31db9f72012-07-25 23:19:24 +02005235
5236 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
5237 struct btrfs_file_extent_item);
5238 type = btrfs_file_extent_type(path->nodes[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04005239 if (type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08005240 len = btrfs_file_extent_inline_len(path->nodes[0],
5241 path->slots[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04005242 /*
5243 * it is possible the inline item won't cover the whole page,
5244 * but there may be items after this page. Make
5245 * sure to send the whole thing
5246 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005247 len = PAGE_ALIGN(len);
Chris Mason74dd17f2012-08-07 16:25:13 -04005248 } else {
Alexander Block31db9f72012-07-25 23:19:24 +02005249 len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04005250 }
Alexander Block31db9f72012-07-25 23:19:24 +02005251
5252 if (offset + len > sctx->cur_inode_size)
5253 len = sctx->cur_inode_size - offset;
5254 if (len == 0) {
5255 ret = 0;
5256 goto out;
5257 }
5258
Filipe David Borba Manana28e5dd82014-01-12 02:26:28 +00005259 if (clone_root && IS_ALIGNED(offset + len, bs)) {
Filipe Mananad906d492015-10-02 10:47:34 +01005260 u64 disk_byte;
5261 u64 data_offset;
5262
5263 disk_byte = btrfs_file_extent_disk_bytenr(path->nodes[0], ei);
5264 data_offset = btrfs_file_extent_offset(path->nodes[0], ei);
5265 ret = clone_range(sctx, clone_root, disk_byte, data_offset,
5266 offset, len);
Mark Fashehcb95e7b2013-02-04 20:54:57 +00005267 } else {
Filipe Mananad906d492015-10-02 10:47:34 +01005268 ret = send_extent_data(sctx, offset, len);
Alexander Block31db9f72012-07-25 23:19:24 +02005269 }
Alexander Block31db9f72012-07-25 23:19:24 +02005270out:
5271 return ret;
5272}
5273
5274static int is_extent_unchanged(struct send_ctx *sctx,
5275 struct btrfs_path *left_path,
5276 struct btrfs_key *ekey)
5277{
5278 int ret = 0;
5279 struct btrfs_key key;
5280 struct btrfs_path *path = NULL;
5281 struct extent_buffer *eb;
5282 int slot;
5283 struct btrfs_key found_key;
5284 struct btrfs_file_extent_item *ei;
5285 u64 left_disknr;
5286 u64 right_disknr;
5287 u64 left_offset;
5288 u64 right_offset;
5289 u64 left_offset_fixed;
5290 u64 left_len;
5291 u64 right_len;
Chris Mason74dd17f2012-08-07 16:25:13 -04005292 u64 left_gen;
5293 u64 right_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02005294 u8 left_type;
5295 u8 right_type;
5296
5297 path = alloc_path_for_send();
5298 if (!path)
5299 return -ENOMEM;
5300
5301 eb = left_path->nodes[0];
5302 slot = left_path->slots[0];
Alexander Block31db9f72012-07-25 23:19:24 +02005303 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
5304 left_type = btrfs_file_extent_type(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02005305
5306 if (left_type != BTRFS_FILE_EXTENT_REG) {
5307 ret = 0;
5308 goto out;
5309 }
Chris Mason74dd17f2012-08-07 16:25:13 -04005310 left_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
5311 left_len = btrfs_file_extent_num_bytes(eb, ei);
5312 left_offset = btrfs_file_extent_offset(eb, ei);
5313 left_gen = btrfs_file_extent_generation(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02005314
5315 /*
5316 * Following comments will refer to these graphics. L is the left
5317 * extents which we are checking at the moment. 1-8 are the right
5318 * extents that we iterate.
5319 *
5320 * |-----L-----|
5321 * |-1-|-2a-|-3-|-4-|-5-|-6-|
5322 *
5323 * |-----L-----|
5324 * |--1--|-2b-|...(same as above)
5325 *
5326 * Alternative situation. Happens on files where extents got split.
5327 * |-----L-----|
5328 * |-----------7-----------|-6-|
5329 *
5330 * Alternative situation. Happens on files which got larger.
5331 * |-----L-----|
5332 * |-8-|
5333 * Nothing follows after 8.
5334 */
5335
5336 key.objectid = ekey->objectid;
5337 key.type = BTRFS_EXTENT_DATA_KEY;
5338 key.offset = ekey->offset;
5339 ret = btrfs_search_slot_for_read(sctx->parent_root, &key, path, 0, 0);
5340 if (ret < 0)
5341 goto out;
5342 if (ret) {
5343 ret = 0;
5344 goto out;
5345 }
5346
5347 /*
5348 * Handle special case where the right side has no extents at all.
5349 */
5350 eb = path->nodes[0];
5351 slot = path->slots[0];
5352 btrfs_item_key_to_cpu(eb, &found_key, slot);
5353 if (found_key.objectid != key.objectid ||
5354 found_key.type != key.type) {
Josef Bacik57cfd462013-08-20 15:55:39 -04005355 /* If we're a hole then just pretend nothing changed */
5356 ret = (left_disknr) ? 0 : 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005357 goto out;
5358 }
5359
5360 /*
5361 * We're now on 2a, 2b or 7.
5362 */
5363 key = found_key;
5364 while (key.offset < ekey->offset + left_len) {
5365 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
5366 right_type = btrfs_file_extent_type(eb, ei);
Filipe Mananae1cbfd72017-04-04 20:31:00 +01005367 if (right_type != BTRFS_FILE_EXTENT_REG &&
5368 right_type != BTRFS_FILE_EXTENT_INLINE) {
Alexander Block31db9f72012-07-25 23:19:24 +02005369 ret = 0;
5370 goto out;
5371 }
5372
Filipe Mananae1cbfd72017-04-04 20:31:00 +01005373 if (right_type == BTRFS_FILE_EXTENT_INLINE) {
5374 right_len = btrfs_file_extent_inline_len(eb, slot, ei);
5375 right_len = PAGE_ALIGN(right_len);
5376 } else {
5377 right_len = btrfs_file_extent_num_bytes(eb, ei);
5378 }
Josef Bacik007d31f2013-10-31 16:49:02 -04005379
Alexander Block31db9f72012-07-25 23:19:24 +02005380 /*
5381 * Are we at extent 8? If yes, we know the extent is changed.
5382 * This may only happen on the first iteration.
5383 */
Alexander Blockd8347fa2012-08-01 12:49:15 +02005384 if (found_key.offset + right_len <= ekey->offset) {
Josef Bacik57cfd462013-08-20 15:55:39 -04005385 /* If we're a hole just pretend nothing changed */
5386 ret = (left_disknr) ? 0 : 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005387 goto out;
5388 }
5389
Filipe Mananae1cbfd72017-04-04 20:31:00 +01005390 /*
5391 * We just wanted to see if when we have an inline extent, what
5392 * follows it is a regular extent (wanted to check the above
5393 * condition for inline extents too). This should normally not
5394 * happen but it's possible for example when we have an inline
5395 * compressed extent representing data with a size matching
5396 * the page size (currently the same as sector size).
5397 */
5398 if (right_type == BTRFS_FILE_EXTENT_INLINE) {
5399 ret = 0;
5400 goto out;
5401 }
5402
Filipe Manana24e52b12017-07-06 15:31:46 +01005403 right_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
5404 right_offset = btrfs_file_extent_offset(eb, ei);
5405 right_gen = btrfs_file_extent_generation(eb, ei);
5406
Alexander Block31db9f72012-07-25 23:19:24 +02005407 left_offset_fixed = left_offset;
5408 if (key.offset < ekey->offset) {
5409 /* Fix the right offset for 2a and 7. */
5410 right_offset += ekey->offset - key.offset;
5411 } else {
5412 /* Fix the left offset for all behind 2a and 2b */
5413 left_offset_fixed += key.offset - ekey->offset;
5414 }
5415
5416 /*
5417 * Check if we have the same extent.
5418 */
Alexander Block39540962012-08-01 12:46:05 +02005419 if (left_disknr != right_disknr ||
Chris Mason74dd17f2012-08-07 16:25:13 -04005420 left_offset_fixed != right_offset ||
5421 left_gen != right_gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02005422 ret = 0;
5423 goto out;
5424 }
5425
5426 /*
5427 * Go to the next extent.
5428 */
5429 ret = btrfs_next_item(sctx->parent_root, path);
5430 if (ret < 0)
5431 goto out;
5432 if (!ret) {
5433 eb = path->nodes[0];
5434 slot = path->slots[0];
5435 btrfs_item_key_to_cpu(eb, &found_key, slot);
5436 }
5437 if (ret || found_key.objectid != key.objectid ||
5438 found_key.type != key.type) {
5439 key.offset += right_len;
5440 break;
Jan Schmidtadaa4b82013-03-21 14:30:23 +00005441 }
5442 if (found_key.offset != key.offset + right_len) {
5443 ret = 0;
5444 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005445 }
5446 key = found_key;
5447 }
5448
5449 /*
5450 * We're now behind the left extent (treat as unchanged) or at the end
5451 * of the right side (treat as changed).
5452 */
5453 if (key.offset >= ekey->offset + left_len)
5454 ret = 1;
5455 else
5456 ret = 0;
5457
5458
5459out:
5460 btrfs_free_path(path);
5461 return ret;
5462}
5463
Josef Bacik16e75492013-10-22 12:18:51 -04005464static int get_last_extent(struct send_ctx *sctx, u64 offset)
5465{
5466 struct btrfs_path *path;
5467 struct btrfs_root *root = sctx->send_root;
5468 struct btrfs_file_extent_item *fi;
5469 struct btrfs_key key;
5470 u64 extent_end;
5471 u8 type;
5472 int ret;
5473
5474 path = alloc_path_for_send();
5475 if (!path)
5476 return -ENOMEM;
5477
5478 sctx->cur_inode_last_extent = 0;
5479
5480 key.objectid = sctx->cur_ino;
5481 key.type = BTRFS_EXTENT_DATA_KEY;
5482 key.offset = offset;
5483 ret = btrfs_search_slot_for_read(root, &key, path, 0, 1);
5484 if (ret < 0)
5485 goto out;
5486 ret = 0;
5487 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
5488 if (key.objectid != sctx->cur_ino || key.type != BTRFS_EXTENT_DATA_KEY)
5489 goto out;
5490
5491 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
5492 struct btrfs_file_extent_item);
5493 type = btrfs_file_extent_type(path->nodes[0], fi);
5494 if (type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08005495 u64 size = btrfs_file_extent_inline_len(path->nodes[0],
5496 path->slots[0], fi);
Josef Bacik16e75492013-10-22 12:18:51 -04005497 extent_end = ALIGN(key.offset + size,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005498 sctx->send_root->fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04005499 } else {
5500 extent_end = key.offset +
5501 btrfs_file_extent_num_bytes(path->nodes[0], fi);
5502 }
5503 sctx->cur_inode_last_extent = extent_end;
5504out:
5505 btrfs_free_path(path);
5506 return ret;
5507}
5508
Filipe Manana82bfb2e2017-02-14 17:56:32 +00005509static int range_is_hole_in_parent(struct send_ctx *sctx,
5510 const u64 start,
5511 const u64 end)
5512{
5513 struct btrfs_path *path;
5514 struct btrfs_key key;
5515 struct btrfs_root *root = sctx->parent_root;
5516 u64 search_start = start;
5517 int ret;
5518
5519 path = alloc_path_for_send();
5520 if (!path)
5521 return -ENOMEM;
5522
5523 key.objectid = sctx->cur_ino;
5524 key.type = BTRFS_EXTENT_DATA_KEY;
5525 key.offset = search_start;
5526 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5527 if (ret < 0)
5528 goto out;
5529 if (ret > 0 && path->slots[0] > 0)
5530 path->slots[0]--;
5531
5532 while (search_start < end) {
5533 struct extent_buffer *leaf = path->nodes[0];
5534 int slot = path->slots[0];
5535 struct btrfs_file_extent_item *fi;
5536 u64 extent_end;
5537
5538 if (slot >= btrfs_header_nritems(leaf)) {
5539 ret = btrfs_next_leaf(root, path);
5540 if (ret < 0)
5541 goto out;
5542 else if (ret > 0)
5543 break;
5544 continue;
5545 }
5546
5547 btrfs_item_key_to_cpu(leaf, &key, slot);
5548 if (key.objectid < sctx->cur_ino ||
5549 key.type < BTRFS_EXTENT_DATA_KEY)
5550 goto next;
5551 if (key.objectid > sctx->cur_ino ||
5552 key.type > BTRFS_EXTENT_DATA_KEY ||
5553 key.offset >= end)
5554 break;
5555
5556 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5557 if (btrfs_file_extent_type(leaf, fi) ==
5558 BTRFS_FILE_EXTENT_INLINE) {
5559 u64 size = btrfs_file_extent_inline_len(leaf, slot, fi);
5560
5561 extent_end = ALIGN(key.offset + size,
5562 root->fs_info->sectorsize);
5563 } else {
5564 extent_end = key.offset +
5565 btrfs_file_extent_num_bytes(leaf, fi);
5566 }
5567 if (extent_end <= start)
5568 goto next;
5569 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0) {
5570 search_start = extent_end;
5571 goto next;
5572 }
5573 ret = 0;
5574 goto out;
5575next:
5576 path->slots[0]++;
5577 }
5578 ret = 1;
5579out:
5580 btrfs_free_path(path);
5581 return ret;
5582}
5583
Josef Bacik16e75492013-10-22 12:18:51 -04005584static int maybe_send_hole(struct send_ctx *sctx, struct btrfs_path *path,
5585 struct btrfs_key *key)
5586{
5587 struct btrfs_file_extent_item *fi;
5588 u64 extent_end;
5589 u8 type;
5590 int ret = 0;
5591
5592 if (sctx->cur_ino != key->objectid || !need_send_hole(sctx))
5593 return 0;
5594
5595 if (sctx->cur_inode_last_extent == (u64)-1) {
5596 ret = get_last_extent(sctx, key->offset - 1);
5597 if (ret)
5598 return ret;
5599 }
5600
5601 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
5602 struct btrfs_file_extent_item);
5603 type = btrfs_file_extent_type(path->nodes[0], fi);
5604 if (type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08005605 u64 size = btrfs_file_extent_inline_len(path->nodes[0],
5606 path->slots[0], fi);
Josef Bacik16e75492013-10-22 12:18:51 -04005607 extent_end = ALIGN(key->offset + size,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005608 sctx->send_root->fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04005609 } else {
5610 extent_end = key->offset +
5611 btrfs_file_extent_num_bytes(path->nodes[0], fi);
5612 }
Filipe David Borba Mananabf54f412014-01-28 01:38:06 +00005613
5614 if (path->slots[0] == 0 &&
5615 sctx->cur_inode_last_extent < key->offset) {
5616 /*
5617 * We might have skipped entire leafs that contained only
5618 * file extent items for our current inode. These leafs have
5619 * a generation number smaller (older) than the one in the
5620 * current leaf and the leaf our last extent came from, and
5621 * are located between these 2 leafs.
5622 */
5623 ret = get_last_extent(sctx, key->offset - 1);
5624 if (ret)
5625 return ret;
5626 }
5627
Filipe Manana82bfb2e2017-02-14 17:56:32 +00005628 if (sctx->cur_inode_last_extent < key->offset) {
5629 ret = range_is_hole_in_parent(sctx,
5630 sctx->cur_inode_last_extent,
5631 key->offset);
5632 if (ret < 0)
5633 return ret;
5634 else if (ret == 0)
5635 ret = send_hole(sctx, key->offset);
5636 else
5637 ret = 0;
5638 }
Josef Bacik16e75492013-10-22 12:18:51 -04005639 sctx->cur_inode_last_extent = extent_end;
5640 return ret;
5641}
5642
Alexander Block31db9f72012-07-25 23:19:24 +02005643static int process_extent(struct send_ctx *sctx,
5644 struct btrfs_path *path,
5645 struct btrfs_key *key)
5646{
Alexander Block31db9f72012-07-25 23:19:24 +02005647 struct clone_root *found_clone = NULL;
Josef Bacik57cfd462013-08-20 15:55:39 -04005648 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02005649
5650 if (S_ISLNK(sctx->cur_inode_mode))
5651 return 0;
5652
5653 if (sctx->parent_root && !sctx->cur_inode_new) {
5654 ret = is_extent_unchanged(sctx, path, key);
5655 if (ret < 0)
5656 goto out;
5657 if (ret) {
5658 ret = 0;
Josef Bacik16e75492013-10-22 12:18:51 -04005659 goto out_hole;
Alexander Block31db9f72012-07-25 23:19:24 +02005660 }
Josef Bacik57cfd462013-08-20 15:55:39 -04005661 } else {
5662 struct btrfs_file_extent_item *ei;
5663 u8 type;
5664
5665 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
5666 struct btrfs_file_extent_item);
5667 type = btrfs_file_extent_type(path->nodes[0], ei);
5668 if (type == BTRFS_FILE_EXTENT_PREALLOC ||
5669 type == BTRFS_FILE_EXTENT_REG) {
5670 /*
5671 * The send spec does not have a prealloc command yet,
5672 * so just leave a hole for prealloc'ed extents until
5673 * we have enough commands queued up to justify rev'ing
5674 * the send spec.
5675 */
5676 if (type == BTRFS_FILE_EXTENT_PREALLOC) {
5677 ret = 0;
5678 goto out;
5679 }
5680
5681 /* Have a hole, just skip it. */
5682 if (btrfs_file_extent_disk_bytenr(path->nodes[0], ei) == 0) {
5683 ret = 0;
5684 goto out;
5685 }
5686 }
Alexander Block31db9f72012-07-25 23:19:24 +02005687 }
5688
5689 ret = find_extent_clone(sctx, path, key->objectid, key->offset,
5690 sctx->cur_inode_size, &found_clone);
5691 if (ret != -ENOENT && ret < 0)
5692 goto out;
5693
5694 ret = send_write_or_clone(sctx, path, key, found_clone);
Josef Bacik16e75492013-10-22 12:18:51 -04005695 if (ret)
5696 goto out;
5697out_hole:
5698 ret = maybe_send_hole(sctx, path, key);
Alexander Block31db9f72012-07-25 23:19:24 +02005699out:
5700 return ret;
5701}
5702
5703static int process_all_extents(struct send_ctx *sctx)
5704{
5705 int ret;
5706 struct btrfs_root *root;
5707 struct btrfs_path *path;
5708 struct btrfs_key key;
5709 struct btrfs_key found_key;
5710 struct extent_buffer *eb;
5711 int slot;
5712
5713 root = sctx->send_root;
5714 path = alloc_path_for_send();
5715 if (!path)
5716 return -ENOMEM;
5717
5718 key.objectid = sctx->cmp_key->objectid;
5719 key.type = BTRFS_EXTENT_DATA_KEY;
5720 key.offset = 0;
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005721 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5722 if (ret < 0)
5723 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005724
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005725 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02005726 eb = path->nodes[0];
5727 slot = path->slots[0];
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005728
5729 if (slot >= btrfs_header_nritems(eb)) {
5730 ret = btrfs_next_leaf(root, path);
5731 if (ret < 0) {
5732 goto out;
5733 } else if (ret > 0) {
5734 ret = 0;
5735 break;
5736 }
5737 continue;
5738 }
5739
Alexander Block31db9f72012-07-25 23:19:24 +02005740 btrfs_item_key_to_cpu(eb, &found_key, slot);
5741
5742 if (found_key.objectid != key.objectid ||
5743 found_key.type != key.type) {
5744 ret = 0;
5745 goto out;
5746 }
5747
5748 ret = process_extent(sctx, path, &found_key);
5749 if (ret < 0)
5750 goto out;
5751
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005752 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02005753 }
5754
5755out:
5756 btrfs_free_path(path);
5757 return ret;
5758}
5759
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005760static int process_recorded_refs_if_needed(struct send_ctx *sctx, int at_end,
5761 int *pending_move,
5762 int *refs_processed)
Alexander Block31db9f72012-07-25 23:19:24 +02005763{
5764 int ret = 0;
5765
5766 if (sctx->cur_ino == 0)
5767 goto out;
5768 if (!at_end && sctx->cur_ino == sctx->cmp_key->objectid &&
Jan Schmidt96b5bd72012-10-15 08:30:45 +00005769 sctx->cmp_key->type <= BTRFS_INODE_EXTREF_KEY)
Alexander Block31db9f72012-07-25 23:19:24 +02005770 goto out;
5771 if (list_empty(&sctx->new_refs) && list_empty(&sctx->deleted_refs))
5772 goto out;
5773
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005774 ret = process_recorded_refs(sctx, pending_move);
Alexander Blocke479d9b2012-07-28 16:09:35 +02005775 if (ret < 0)
5776 goto out;
5777
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005778 *refs_processed = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005779out:
5780 return ret;
5781}
5782
5783static int finish_inode_if_needed(struct send_ctx *sctx, int at_end)
5784{
5785 int ret = 0;
5786 u64 left_mode;
5787 u64 left_uid;
5788 u64 left_gid;
5789 u64 right_mode;
5790 u64 right_uid;
5791 u64 right_gid;
5792 int need_chmod = 0;
5793 int need_chown = 0;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005794 int pending_move = 0;
5795 int refs_processed = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02005796
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005797 ret = process_recorded_refs_if_needed(sctx, at_end, &pending_move,
5798 &refs_processed);
Alexander Block31db9f72012-07-25 23:19:24 +02005799 if (ret < 0)
5800 goto out;
5801
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005802 /*
5803 * We have processed the refs and thus need to advance send_progress.
5804 * Now, calls to get_cur_xxx will take the updated refs of the current
5805 * inode into account.
5806 *
5807 * On the other hand, if our current inode is a directory and couldn't
5808 * be moved/renamed because its parent was renamed/moved too and it has
5809 * a higher inode number, we can only move/rename our current inode
5810 * after we moved/renamed its parent. Therefore in this case operate on
5811 * the old path (pre move/rename) of our current inode, and the
5812 * move/rename will be performed later.
5813 */
5814 if (refs_processed && !pending_move)
5815 sctx->send_progress = sctx->cur_ino + 1;
5816
Alexander Block31db9f72012-07-25 23:19:24 +02005817 if (sctx->cur_ino == 0 || sctx->cur_inode_deleted)
5818 goto out;
5819 if (!at_end && sctx->cmp_key->objectid == sctx->cur_ino)
5820 goto out;
5821
5822 ret = get_inode_info(sctx->send_root, sctx->cur_ino, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02005823 &left_mode, &left_uid, &left_gid, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02005824 if (ret < 0)
5825 goto out;
5826
Alex Lyakase2d044f2012-10-17 13:52:47 +00005827 if (!sctx->parent_root || sctx->cur_inode_new) {
5828 need_chown = 1;
5829 if (!S_ISLNK(sctx->cur_inode_mode))
Alexander Block31db9f72012-07-25 23:19:24 +02005830 need_chmod = 1;
Alex Lyakase2d044f2012-10-17 13:52:47 +00005831 } else {
5832 ret = get_inode_info(sctx->parent_root, sctx->cur_ino,
5833 NULL, NULL, &right_mode, &right_uid,
5834 &right_gid, NULL);
5835 if (ret < 0)
5836 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005837
Alex Lyakase2d044f2012-10-17 13:52:47 +00005838 if (left_uid != right_uid || left_gid != right_gid)
5839 need_chown = 1;
5840 if (!S_ISLNK(sctx->cur_inode_mode) && left_mode != right_mode)
5841 need_chmod = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005842 }
5843
5844 if (S_ISREG(sctx->cur_inode_mode)) {
Josef Bacik16e75492013-10-22 12:18:51 -04005845 if (need_send_hole(sctx)) {
Filipe Manana766b5e52014-03-30 23:02:53 +01005846 if (sctx->cur_inode_last_extent == (u64)-1 ||
5847 sctx->cur_inode_last_extent <
5848 sctx->cur_inode_size) {
Josef Bacik16e75492013-10-22 12:18:51 -04005849 ret = get_last_extent(sctx, (u64)-1);
5850 if (ret)
5851 goto out;
5852 }
5853 if (sctx->cur_inode_last_extent <
5854 sctx->cur_inode_size) {
5855 ret = send_hole(sctx, sctx->cur_inode_size);
5856 if (ret)
5857 goto out;
5858 }
5859 }
Alexander Block31db9f72012-07-25 23:19:24 +02005860 ret = send_truncate(sctx, sctx->cur_ino, sctx->cur_inode_gen,
5861 sctx->cur_inode_size);
5862 if (ret < 0)
5863 goto out;
5864 }
5865
5866 if (need_chown) {
5867 ret = send_chown(sctx, sctx->cur_ino, sctx->cur_inode_gen,
5868 left_uid, left_gid);
5869 if (ret < 0)
5870 goto out;
5871 }
5872 if (need_chmod) {
5873 ret = send_chmod(sctx, sctx->cur_ino, sctx->cur_inode_gen,
5874 left_mode);
5875 if (ret < 0)
5876 goto out;
5877 }
5878
5879 /*
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005880 * If other directory inodes depended on our current directory
5881 * inode's move/rename, now do their move/rename operations.
Alexander Block31db9f72012-07-25 23:19:24 +02005882 */
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005883 if (!is_waiting_for_move(sctx, sctx->cur_ino)) {
5884 ret = apply_children_dir_moves(sctx);
5885 if (ret)
5886 goto out;
Filipe Mananafcbd2152014-03-03 12:28:40 +00005887 /*
5888 * Need to send that every time, no matter if it actually
5889 * changed between the two trees as we have done changes to
5890 * the inode before. If our inode is a directory and it's
5891 * waiting to be moved/renamed, we will send its utimes when
5892 * it's moved/renamed, therefore we don't need to do it here.
5893 */
5894 sctx->send_progress = sctx->cur_ino + 1;
5895 ret = send_utimes(sctx, sctx->cur_ino, sctx->cur_inode_gen);
5896 if (ret < 0)
5897 goto out;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005898 }
5899
Alexander Block31db9f72012-07-25 23:19:24 +02005900out:
5901 return ret;
5902}
5903
5904static int changed_inode(struct send_ctx *sctx,
5905 enum btrfs_compare_tree_result result)
5906{
5907 int ret = 0;
5908 struct btrfs_key *key = sctx->cmp_key;
5909 struct btrfs_inode_item *left_ii = NULL;
5910 struct btrfs_inode_item *right_ii = NULL;
5911 u64 left_gen = 0;
5912 u64 right_gen = 0;
5913
Alexander Block31db9f72012-07-25 23:19:24 +02005914 sctx->cur_ino = key->objectid;
5915 sctx->cur_inode_new_gen = 0;
Josef Bacik16e75492013-10-22 12:18:51 -04005916 sctx->cur_inode_last_extent = (u64)-1;
Alexander Blocke479d9b2012-07-28 16:09:35 +02005917
5918 /*
5919 * Set send_progress to current inode. This will tell all get_cur_xxx
5920 * functions that the current inode's refs are not updated yet. Later,
5921 * when process_recorded_refs is finished, it is set to cur_ino + 1.
5922 */
Alexander Block31db9f72012-07-25 23:19:24 +02005923 sctx->send_progress = sctx->cur_ino;
5924
5925 if (result == BTRFS_COMPARE_TREE_NEW ||
5926 result == BTRFS_COMPARE_TREE_CHANGED) {
5927 left_ii = btrfs_item_ptr(sctx->left_path->nodes[0],
5928 sctx->left_path->slots[0],
5929 struct btrfs_inode_item);
5930 left_gen = btrfs_inode_generation(sctx->left_path->nodes[0],
5931 left_ii);
5932 } else {
5933 right_ii = btrfs_item_ptr(sctx->right_path->nodes[0],
5934 sctx->right_path->slots[0],
5935 struct btrfs_inode_item);
5936 right_gen = btrfs_inode_generation(sctx->right_path->nodes[0],
5937 right_ii);
5938 }
5939 if (result == BTRFS_COMPARE_TREE_CHANGED) {
5940 right_ii = btrfs_item_ptr(sctx->right_path->nodes[0],
5941 sctx->right_path->slots[0],
5942 struct btrfs_inode_item);
5943
5944 right_gen = btrfs_inode_generation(sctx->right_path->nodes[0],
5945 right_ii);
Alexander Block6d85ed02012-08-01 14:48:59 +02005946
5947 /*
5948 * The cur_ino = root dir case is special here. We can't treat
5949 * the inode as deleted+reused because it would generate a
5950 * stream that tries to delete/mkdir the root dir.
5951 */
5952 if (left_gen != right_gen &&
5953 sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID)
Alexander Block31db9f72012-07-25 23:19:24 +02005954 sctx->cur_inode_new_gen = 1;
5955 }
5956
5957 if (result == BTRFS_COMPARE_TREE_NEW) {
5958 sctx->cur_inode_gen = left_gen;
5959 sctx->cur_inode_new = 1;
5960 sctx->cur_inode_deleted = 0;
5961 sctx->cur_inode_size = btrfs_inode_size(
5962 sctx->left_path->nodes[0], left_ii);
5963 sctx->cur_inode_mode = btrfs_inode_mode(
5964 sctx->left_path->nodes[0], left_ii);
Liu Bo644d1942014-02-27 17:29:01 +08005965 sctx->cur_inode_rdev = btrfs_inode_rdev(
5966 sctx->left_path->nodes[0], left_ii);
Alexander Block31db9f72012-07-25 23:19:24 +02005967 if (sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID)
Alexander Block1f4692d2012-07-28 10:42:24 +02005968 ret = send_create_inode_if_needed(sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02005969 } else if (result == BTRFS_COMPARE_TREE_DELETED) {
5970 sctx->cur_inode_gen = right_gen;
5971 sctx->cur_inode_new = 0;
5972 sctx->cur_inode_deleted = 1;
5973 sctx->cur_inode_size = btrfs_inode_size(
5974 sctx->right_path->nodes[0], right_ii);
5975 sctx->cur_inode_mode = btrfs_inode_mode(
5976 sctx->right_path->nodes[0], right_ii);
5977 } else if (result == BTRFS_COMPARE_TREE_CHANGED) {
Alexander Block766702e2012-07-28 14:11:31 +02005978 /*
5979 * We need to do some special handling in case the inode was
5980 * reported as changed with a changed generation number. This
5981 * means that the original inode was deleted and new inode
5982 * reused the same inum. So we have to treat the old inode as
5983 * deleted and the new one as new.
5984 */
Alexander Block31db9f72012-07-25 23:19:24 +02005985 if (sctx->cur_inode_new_gen) {
Alexander Block766702e2012-07-28 14:11:31 +02005986 /*
5987 * First, process the inode as if it was deleted.
5988 */
Alexander Block31db9f72012-07-25 23:19:24 +02005989 sctx->cur_inode_gen = right_gen;
5990 sctx->cur_inode_new = 0;
5991 sctx->cur_inode_deleted = 1;
5992 sctx->cur_inode_size = btrfs_inode_size(
5993 sctx->right_path->nodes[0], right_ii);
5994 sctx->cur_inode_mode = btrfs_inode_mode(
5995 sctx->right_path->nodes[0], right_ii);
5996 ret = process_all_refs(sctx,
5997 BTRFS_COMPARE_TREE_DELETED);
5998 if (ret < 0)
5999 goto out;
6000
Alexander Block766702e2012-07-28 14:11:31 +02006001 /*
6002 * Now process the inode as if it was new.
6003 */
Alexander Block31db9f72012-07-25 23:19:24 +02006004 sctx->cur_inode_gen = left_gen;
6005 sctx->cur_inode_new = 1;
6006 sctx->cur_inode_deleted = 0;
6007 sctx->cur_inode_size = btrfs_inode_size(
6008 sctx->left_path->nodes[0], left_ii);
6009 sctx->cur_inode_mode = btrfs_inode_mode(
6010 sctx->left_path->nodes[0], left_ii);
Liu Bo644d1942014-02-27 17:29:01 +08006011 sctx->cur_inode_rdev = btrfs_inode_rdev(
6012 sctx->left_path->nodes[0], left_ii);
Alexander Block1f4692d2012-07-28 10:42:24 +02006013 ret = send_create_inode_if_needed(sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02006014 if (ret < 0)
6015 goto out;
6016
6017 ret = process_all_refs(sctx, BTRFS_COMPARE_TREE_NEW);
6018 if (ret < 0)
6019 goto out;
Alexander Blocke479d9b2012-07-28 16:09:35 +02006020 /*
6021 * Advance send_progress now as we did not get into
6022 * process_recorded_refs_if_needed in the new_gen case.
6023 */
6024 sctx->send_progress = sctx->cur_ino + 1;
Alexander Block766702e2012-07-28 14:11:31 +02006025
6026 /*
6027 * Now process all extents and xattrs of the inode as if
6028 * they were all new.
6029 */
Alexander Block31db9f72012-07-25 23:19:24 +02006030 ret = process_all_extents(sctx);
6031 if (ret < 0)
6032 goto out;
6033 ret = process_all_new_xattrs(sctx);
6034 if (ret < 0)
6035 goto out;
6036 } else {
6037 sctx->cur_inode_gen = left_gen;
6038 sctx->cur_inode_new = 0;
6039 sctx->cur_inode_new_gen = 0;
6040 sctx->cur_inode_deleted = 0;
6041 sctx->cur_inode_size = btrfs_inode_size(
6042 sctx->left_path->nodes[0], left_ii);
6043 sctx->cur_inode_mode = btrfs_inode_mode(
6044 sctx->left_path->nodes[0], left_ii);
6045 }
6046 }
6047
6048out:
6049 return ret;
6050}
6051
Alexander Block766702e2012-07-28 14:11:31 +02006052/*
6053 * We have to process new refs before deleted refs, but compare_trees gives us
6054 * the new and deleted refs mixed. To fix this, we record the new/deleted refs
6055 * first and later process them in process_recorded_refs.
6056 * For the cur_inode_new_gen case, we skip recording completely because
6057 * changed_inode did already initiate processing of refs. The reason for this is
6058 * that in this case, compare_tree actually compares the refs of 2 different
6059 * inodes. To fix this, process_all_refs is used in changed_inode to handle all
6060 * refs of the right tree as deleted and all refs of the left tree as new.
6061 */
Alexander Block31db9f72012-07-25 23:19:24 +02006062static int changed_ref(struct send_ctx *sctx,
6063 enum btrfs_compare_tree_result result)
6064{
6065 int ret = 0;
6066
Filipe Manana95155582016-08-01 01:50:37 +01006067 if (sctx->cur_ino != sctx->cmp_key->objectid) {
6068 inconsistent_snapshot_error(sctx, result, "reference");
6069 return -EIO;
6070 }
Alexander Block31db9f72012-07-25 23:19:24 +02006071
6072 if (!sctx->cur_inode_new_gen &&
6073 sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID) {
6074 if (result == BTRFS_COMPARE_TREE_NEW)
6075 ret = record_new_ref(sctx);
6076 else if (result == BTRFS_COMPARE_TREE_DELETED)
6077 ret = record_deleted_ref(sctx);
6078 else if (result == BTRFS_COMPARE_TREE_CHANGED)
6079 ret = record_changed_ref(sctx);
6080 }
6081
6082 return ret;
6083}
6084
Alexander Block766702e2012-07-28 14:11:31 +02006085/*
6086 * Process new/deleted/changed xattrs. We skip processing in the
6087 * cur_inode_new_gen case because changed_inode did already initiate processing
6088 * of xattrs. The reason is the same as in changed_ref
6089 */
Alexander Block31db9f72012-07-25 23:19:24 +02006090static int changed_xattr(struct send_ctx *sctx,
6091 enum btrfs_compare_tree_result result)
6092{
6093 int ret = 0;
6094
Filipe Manana95155582016-08-01 01:50:37 +01006095 if (sctx->cur_ino != sctx->cmp_key->objectid) {
6096 inconsistent_snapshot_error(sctx, result, "xattr");
6097 return -EIO;
6098 }
Alexander Block31db9f72012-07-25 23:19:24 +02006099
6100 if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) {
6101 if (result == BTRFS_COMPARE_TREE_NEW)
6102 ret = process_new_xattr(sctx);
6103 else if (result == BTRFS_COMPARE_TREE_DELETED)
6104 ret = process_deleted_xattr(sctx);
6105 else if (result == BTRFS_COMPARE_TREE_CHANGED)
6106 ret = process_changed_xattr(sctx);
6107 }
6108
6109 return ret;
6110}
6111
Alexander Block766702e2012-07-28 14:11:31 +02006112/*
6113 * Process new/deleted/changed extents. We skip processing in the
6114 * cur_inode_new_gen case because changed_inode did already initiate processing
6115 * of extents. The reason is the same as in changed_ref
6116 */
Alexander Block31db9f72012-07-25 23:19:24 +02006117static int changed_extent(struct send_ctx *sctx,
6118 enum btrfs_compare_tree_result result)
6119{
6120 int ret = 0;
6121
Filipe Manana95155582016-08-01 01:50:37 +01006122 if (sctx->cur_ino != sctx->cmp_key->objectid) {
Filipe Mananad5e84fd2016-09-19 10:57:40 +01006123
6124 if (result == BTRFS_COMPARE_TREE_CHANGED) {
6125 struct extent_buffer *leaf_l;
6126 struct extent_buffer *leaf_r;
6127 struct btrfs_file_extent_item *ei_l;
6128 struct btrfs_file_extent_item *ei_r;
6129
6130 leaf_l = sctx->left_path->nodes[0];
6131 leaf_r = sctx->right_path->nodes[0];
6132 ei_l = btrfs_item_ptr(leaf_l,
6133 sctx->left_path->slots[0],
6134 struct btrfs_file_extent_item);
6135 ei_r = btrfs_item_ptr(leaf_r,
6136 sctx->right_path->slots[0],
6137 struct btrfs_file_extent_item);
6138
6139 /*
6140 * We may have found an extent item that has changed
6141 * only its disk_bytenr field and the corresponding
6142 * inode item was not updated. This case happens due to
6143 * very specific timings during relocation when a leaf
6144 * that contains file extent items is COWed while
6145 * relocation is ongoing and its in the stage where it
6146 * updates data pointers. So when this happens we can
6147 * safely ignore it since we know it's the same extent,
6148 * but just at different logical and physical locations
6149 * (when an extent is fully replaced with a new one, we
6150 * know the generation number must have changed too,
6151 * since snapshot creation implies committing the current
6152 * transaction, and the inode item must have been updated
6153 * as well).
6154 * This replacement of the disk_bytenr happens at
6155 * relocation.c:replace_file_extents() through
6156 * relocation.c:btrfs_reloc_cow_block().
6157 */
6158 if (btrfs_file_extent_generation(leaf_l, ei_l) ==
6159 btrfs_file_extent_generation(leaf_r, ei_r) &&
6160 btrfs_file_extent_ram_bytes(leaf_l, ei_l) ==
6161 btrfs_file_extent_ram_bytes(leaf_r, ei_r) &&
6162 btrfs_file_extent_compression(leaf_l, ei_l) ==
6163 btrfs_file_extent_compression(leaf_r, ei_r) &&
6164 btrfs_file_extent_encryption(leaf_l, ei_l) ==
6165 btrfs_file_extent_encryption(leaf_r, ei_r) &&
6166 btrfs_file_extent_other_encoding(leaf_l, ei_l) ==
6167 btrfs_file_extent_other_encoding(leaf_r, ei_r) &&
6168 btrfs_file_extent_type(leaf_l, ei_l) ==
6169 btrfs_file_extent_type(leaf_r, ei_r) &&
6170 btrfs_file_extent_disk_bytenr(leaf_l, ei_l) !=
6171 btrfs_file_extent_disk_bytenr(leaf_r, ei_r) &&
6172 btrfs_file_extent_disk_num_bytes(leaf_l, ei_l) ==
6173 btrfs_file_extent_disk_num_bytes(leaf_r, ei_r) &&
6174 btrfs_file_extent_offset(leaf_l, ei_l) ==
6175 btrfs_file_extent_offset(leaf_r, ei_r) &&
6176 btrfs_file_extent_num_bytes(leaf_l, ei_l) ==
6177 btrfs_file_extent_num_bytes(leaf_r, ei_r))
6178 return 0;
6179 }
6180
Filipe Manana95155582016-08-01 01:50:37 +01006181 inconsistent_snapshot_error(sctx, result, "extent");
6182 return -EIO;
6183 }
Alexander Block31db9f72012-07-25 23:19:24 +02006184
6185 if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) {
6186 if (result != BTRFS_COMPARE_TREE_DELETED)
6187 ret = process_extent(sctx, sctx->left_path,
6188 sctx->cmp_key);
6189 }
6190
6191 return ret;
6192}
6193
Josef Bacikba5e8f22013-08-16 16:52:55 -04006194static int dir_changed(struct send_ctx *sctx, u64 dir)
6195{
6196 u64 orig_gen, new_gen;
6197 int ret;
6198
6199 ret = get_inode_info(sctx->send_root, dir, NULL, &new_gen, NULL, NULL,
6200 NULL, NULL);
6201 if (ret)
6202 return ret;
6203
6204 ret = get_inode_info(sctx->parent_root, dir, NULL, &orig_gen, NULL,
6205 NULL, NULL, NULL);
6206 if (ret)
6207 return ret;
6208
6209 return (orig_gen != new_gen) ? 1 : 0;
6210}
6211
6212static int compare_refs(struct send_ctx *sctx, struct btrfs_path *path,
6213 struct btrfs_key *key)
6214{
6215 struct btrfs_inode_extref *extref;
6216 struct extent_buffer *leaf;
6217 u64 dirid = 0, last_dirid = 0;
6218 unsigned long ptr;
6219 u32 item_size;
6220 u32 cur_offset = 0;
6221 int ref_name_len;
6222 int ret = 0;
6223
6224 /* Easy case, just check this one dirid */
6225 if (key->type == BTRFS_INODE_REF_KEY) {
6226 dirid = key->offset;
6227
6228 ret = dir_changed(sctx, dirid);
6229 goto out;
6230 }
6231
6232 leaf = path->nodes[0];
6233 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
6234 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
6235 while (cur_offset < item_size) {
6236 extref = (struct btrfs_inode_extref *)(ptr +
6237 cur_offset);
6238 dirid = btrfs_inode_extref_parent(leaf, extref);
6239 ref_name_len = btrfs_inode_extref_name_len(leaf, extref);
6240 cur_offset += ref_name_len + sizeof(*extref);
6241 if (dirid == last_dirid)
6242 continue;
6243 ret = dir_changed(sctx, dirid);
6244 if (ret)
6245 break;
6246 last_dirid = dirid;
6247 }
6248out:
6249 return ret;
6250}
6251
Alexander Block766702e2012-07-28 14:11:31 +02006252/*
6253 * Updates compare related fields in sctx and simply forwards to the actual
6254 * changed_xxx functions.
6255 */
Nikolay Borisovee8c4942017-08-21 12:43:45 +03006256static int changed_cb(struct btrfs_path *left_path,
Alexander Block31db9f72012-07-25 23:19:24 +02006257 struct btrfs_path *right_path,
6258 struct btrfs_key *key,
6259 enum btrfs_compare_tree_result result,
6260 void *ctx)
6261{
6262 int ret = 0;
6263 struct send_ctx *sctx = ctx;
6264
Josef Bacikba5e8f22013-08-16 16:52:55 -04006265 if (result == BTRFS_COMPARE_TREE_SAME) {
Josef Bacik16e75492013-10-22 12:18:51 -04006266 if (key->type == BTRFS_INODE_REF_KEY ||
6267 key->type == BTRFS_INODE_EXTREF_KEY) {
6268 ret = compare_refs(sctx, left_path, key);
6269 if (!ret)
6270 return 0;
6271 if (ret < 0)
6272 return ret;
6273 } else if (key->type == BTRFS_EXTENT_DATA_KEY) {
6274 return maybe_send_hole(sctx, left_path, key);
6275 } else {
Josef Bacikba5e8f22013-08-16 16:52:55 -04006276 return 0;
Josef Bacik16e75492013-10-22 12:18:51 -04006277 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04006278 result = BTRFS_COMPARE_TREE_CHANGED;
6279 ret = 0;
6280 }
6281
Alexander Block31db9f72012-07-25 23:19:24 +02006282 sctx->left_path = left_path;
6283 sctx->right_path = right_path;
6284 sctx->cmp_key = key;
6285
6286 ret = finish_inode_if_needed(sctx, 0);
6287 if (ret < 0)
6288 goto out;
6289
Alexander Block2981e222012-08-01 14:47:03 +02006290 /* Ignore non-FS objects */
6291 if (key->objectid == BTRFS_FREE_INO_OBJECTID ||
6292 key->objectid == BTRFS_FREE_SPACE_OBJECTID)
6293 goto out;
6294
Alexander Block31db9f72012-07-25 23:19:24 +02006295 if (key->type == BTRFS_INODE_ITEM_KEY)
6296 ret = changed_inode(sctx, result);
Jan Schmidt96b5bd72012-10-15 08:30:45 +00006297 else if (key->type == BTRFS_INODE_REF_KEY ||
6298 key->type == BTRFS_INODE_EXTREF_KEY)
Alexander Block31db9f72012-07-25 23:19:24 +02006299 ret = changed_ref(sctx, result);
6300 else if (key->type == BTRFS_XATTR_ITEM_KEY)
6301 ret = changed_xattr(sctx, result);
6302 else if (key->type == BTRFS_EXTENT_DATA_KEY)
6303 ret = changed_extent(sctx, result);
6304
6305out:
6306 return ret;
6307}
6308
6309static int full_send_tree(struct send_ctx *sctx)
6310{
6311 int ret;
Alexander Block31db9f72012-07-25 23:19:24 +02006312 struct btrfs_root *send_root = sctx->send_root;
6313 struct btrfs_key key;
6314 struct btrfs_key found_key;
6315 struct btrfs_path *path;
6316 struct extent_buffer *eb;
6317 int slot;
Alexander Block31db9f72012-07-25 23:19:24 +02006318
6319 path = alloc_path_for_send();
6320 if (!path)
6321 return -ENOMEM;
6322
Alexander Block31db9f72012-07-25 23:19:24 +02006323 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
6324 key.type = BTRFS_INODE_ITEM_KEY;
6325 key.offset = 0;
6326
Alexander Block31db9f72012-07-25 23:19:24 +02006327 ret = btrfs_search_slot_for_read(send_root, &key, path, 1, 0);
6328 if (ret < 0)
6329 goto out;
6330 if (ret)
6331 goto out_finish;
6332
6333 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02006334 eb = path->nodes[0];
6335 slot = path->slots[0];
6336 btrfs_item_key_to_cpu(eb, &found_key, slot);
6337
Nikolay Borisovee8c4942017-08-21 12:43:45 +03006338 ret = changed_cb(path, NULL, &found_key,
6339 BTRFS_COMPARE_TREE_NEW, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02006340 if (ret < 0)
6341 goto out;
6342
6343 key.objectid = found_key.objectid;
6344 key.type = found_key.type;
6345 key.offset = found_key.offset + 1;
6346
6347 ret = btrfs_next_item(send_root, path);
6348 if (ret < 0)
6349 goto out;
6350 if (ret) {
6351 ret = 0;
6352 break;
6353 }
6354 }
6355
6356out_finish:
6357 ret = finish_inode_if_needed(sctx, 1);
6358
6359out:
6360 btrfs_free_path(path);
Alexander Block31db9f72012-07-25 23:19:24 +02006361 return ret;
6362}
6363
6364static int send_subvol(struct send_ctx *sctx)
6365{
6366 int ret;
6367
Stefan Behrensc2c71322013-04-10 17:10:52 +00006368 if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_STREAM_HEADER)) {
6369 ret = send_header(sctx);
6370 if (ret < 0)
6371 goto out;
6372 }
Alexander Block31db9f72012-07-25 23:19:24 +02006373
6374 ret = send_subvol_begin(sctx);
6375 if (ret < 0)
6376 goto out;
6377
6378 if (sctx->parent_root) {
6379 ret = btrfs_compare_trees(sctx->send_root, sctx->parent_root,
6380 changed_cb, sctx);
6381 if (ret < 0)
6382 goto out;
6383 ret = finish_inode_if_needed(sctx, 1);
6384 if (ret < 0)
6385 goto out;
6386 } else {
6387 ret = full_send_tree(sctx);
6388 if (ret < 0)
6389 goto out;
6390 }
6391
6392out:
Alexander Block31db9f72012-07-25 23:19:24 +02006393 free_recorded_refs(sctx);
6394 return ret;
6395}
6396
Filipe Mananae5fa8f82014-10-21 11:11:41 +01006397/*
6398 * If orphan cleanup did remove any orphans from a root, it means the tree
6399 * was modified and therefore the commit root is not the same as the current
6400 * root anymore. This is a problem, because send uses the commit root and
6401 * therefore can see inode items that don't exist in the current root anymore,
6402 * and for example make calls to btrfs_iget, which will do tree lookups based
6403 * on the current root and not on the commit root. Those lookups will fail,
6404 * returning a -ESTALE error, and making send fail with that error. So make
6405 * sure a send does not see any orphans we have just removed, and that it will
6406 * see the same inodes regardless of whether a transaction commit happened
6407 * before it started (meaning that the commit root will be the same as the
6408 * current root) or not.
6409 */
6410static int ensure_commit_roots_uptodate(struct send_ctx *sctx)
6411{
6412 int i;
6413 struct btrfs_trans_handle *trans = NULL;
6414
6415again:
6416 if (sctx->parent_root &&
6417 sctx->parent_root->node != sctx->parent_root->commit_root)
6418 goto commit_trans;
6419
6420 for (i = 0; i < sctx->clone_roots_cnt; i++)
6421 if (sctx->clone_roots[i].root->node !=
6422 sctx->clone_roots[i].root->commit_root)
6423 goto commit_trans;
6424
6425 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006426 return btrfs_end_transaction(trans);
Filipe Mananae5fa8f82014-10-21 11:11:41 +01006427
6428 return 0;
6429
6430commit_trans:
6431 /* Use any root, all fs roots will get their commit roots updated. */
6432 if (!trans) {
6433 trans = btrfs_join_transaction(sctx->send_root);
6434 if (IS_ERR(trans))
6435 return PTR_ERR(trans);
6436 goto again;
6437 }
6438
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006439 return btrfs_commit_transaction(trans);
Filipe Mananae5fa8f82014-10-21 11:11:41 +01006440}
6441
David Sterba66ef7d62013-12-17 15:07:20 +01006442static void btrfs_root_dec_send_in_progress(struct btrfs_root* root)
6443{
6444 spin_lock(&root->root_item_lock);
6445 root->send_in_progress--;
6446 /*
6447 * Not much left to do, we don't know why it's unbalanced and
6448 * can't blindly reset it to 0.
6449 */
6450 if (root->send_in_progress < 0)
6451 btrfs_err(root->fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006452 "send_in_progres unbalanced %d root %llu",
6453 root->send_in_progress, root->root_key.objectid);
David Sterba66ef7d62013-12-17 15:07:20 +01006454 spin_unlock(&root->root_item_lock);
6455}
6456
Josef Bacik2351f432017-09-27 10:43:13 -04006457long btrfs_ioctl_send(struct file *mnt_file, struct btrfs_ioctl_send_args *arg)
Alexander Block31db9f72012-07-25 23:19:24 +02006458{
6459 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006460 struct btrfs_root *send_root = BTRFS_I(file_inode(mnt_file))->root;
6461 struct btrfs_fs_info *fs_info = send_root->fs_info;
Alexander Block31db9f72012-07-25 23:19:24 +02006462 struct btrfs_root *clone_root;
Alexander Block31db9f72012-07-25 23:19:24 +02006463 struct btrfs_key key;
Alexander Block31db9f72012-07-25 23:19:24 +02006464 struct send_ctx *sctx = NULL;
6465 u32 i;
6466 u64 *clone_sources_tmp = NULL;
David Sterba2c686532013-12-16 17:34:17 +01006467 int clone_sources_to_rollback = 0;
David Sterbae55d1152016-04-11 18:52:02 +02006468 unsigned alloc_size;
Wang Shilong896c14f2014-01-07 17:25:18 +08006469 int sort_clone_roots = 0;
Wang Shilong18f687d2014-01-07 17:25:19 +08006470 int index;
Alexander Block31db9f72012-07-25 23:19:24 +02006471
6472 if (!capable(CAP_SYS_ADMIN))
6473 return -EPERM;
6474
Josef Bacik139f8072013-05-20 11:26:50 -04006475 /*
David Sterba2c686532013-12-16 17:34:17 +01006476 * The subvolume must remain read-only during send, protect against
David Sterba521e0542014-04-15 16:41:44 +02006477 * making it RW. This also protects against deletion.
David Sterba2c686532013-12-16 17:34:17 +01006478 */
6479 spin_lock(&send_root->root_item_lock);
6480 send_root->send_in_progress++;
6481 spin_unlock(&send_root->root_item_lock);
6482
6483 /*
Josef Bacik139f8072013-05-20 11:26:50 -04006484 * This is done when we lookup the root, it should already be complete
6485 * by the time we get here.
6486 */
6487 WARN_ON(send_root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE);
6488
6489 /*
David Sterba2c686532013-12-16 17:34:17 +01006490 * Userspace tools do the checks and warn the user if it's
6491 * not RO.
6492 */
6493 if (!btrfs_root_readonly(send_root)) {
6494 ret = -EPERM;
6495 goto out;
6496 }
6497
Dan Carpenter457ae722017-03-17 23:51:20 +03006498 /*
6499 * Check that we don't overflow at later allocations, we request
6500 * clone_sources_count + 1 items, and compare to unsigned long inside
6501 * access_ok.
6502 */
Dan Carpenterf5ecec32016-04-13 09:40:59 +03006503 if (arg->clone_sources_count >
Dan Carpenter457ae722017-03-17 23:51:20 +03006504 ULONG_MAX / sizeof(struct clone_root) - 1) {
Dan Carpenterf5ecec32016-04-13 09:40:59 +03006505 ret = -EINVAL;
6506 goto out;
6507 }
6508
Alexander Block31db9f72012-07-25 23:19:24 +02006509 if (!access_ok(VERIFY_READ, arg->clone_sources,
Dan Carpenter700ff4f2013-01-10 03:57:25 -05006510 sizeof(*arg->clone_sources) *
6511 arg->clone_sources_count)) {
Alexander Block31db9f72012-07-25 23:19:24 +02006512 ret = -EFAULT;
6513 goto out;
6514 }
6515
Stefan Behrensc2c71322013-04-10 17:10:52 +00006516 if (arg->flags & ~BTRFS_SEND_FLAG_MASK) {
Mark Fashehcb95e7b2013-02-04 20:54:57 +00006517 ret = -EINVAL;
6518 goto out;
6519 }
6520
David Sterbae780b0d2016-01-18 18:42:13 +01006521 sctx = kzalloc(sizeof(struct send_ctx), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02006522 if (!sctx) {
6523 ret = -ENOMEM;
6524 goto out;
6525 }
6526
6527 INIT_LIST_HEAD(&sctx->new_refs);
6528 INIT_LIST_HEAD(&sctx->deleted_refs);
David Sterbae780b0d2016-01-18 18:42:13 +01006529 INIT_RADIX_TREE(&sctx->name_cache, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02006530 INIT_LIST_HEAD(&sctx->name_cache_list);
6531
Mark Fashehcb95e7b2013-02-04 20:54:57 +00006532 sctx->flags = arg->flags;
6533
Alexander Block31db9f72012-07-25 23:19:24 +02006534 sctx->send_filp = fget(arg->send_fd);
Tsutomu Itohecc7ada2013-04-19 01:04:46 +00006535 if (!sctx->send_filp) {
6536 ret = -EBADF;
Alexander Block31db9f72012-07-25 23:19:24 +02006537 goto out;
6538 }
6539
Alexander Block31db9f72012-07-25 23:19:24 +02006540 sctx->send_root = send_root;
David Sterba521e0542014-04-15 16:41:44 +02006541 /*
6542 * Unlikely but possible, if the subvolume is marked for deletion but
6543 * is slow to remove the directory entry, send can still be started
6544 */
6545 if (btrfs_root_dead(sctx->send_root)) {
6546 ret = -EPERM;
6547 goto out;
6548 }
6549
Alexander Block31db9f72012-07-25 23:19:24 +02006550 sctx->clone_roots_cnt = arg->clone_sources_count;
6551
6552 sctx->send_max_size = BTRFS_SEND_BUF_SIZE;
Michal Hocko752ade62017-05-08 15:57:27 -07006553 sctx->send_buf = kvmalloc(sctx->send_max_size, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02006554 if (!sctx->send_buf) {
Michal Hocko752ade62017-05-08 15:57:27 -07006555 ret = -ENOMEM;
6556 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02006557 }
6558
Michal Hocko752ade62017-05-08 15:57:27 -07006559 sctx->read_buf = kvmalloc(BTRFS_SEND_READ_SIZE, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02006560 if (!sctx->read_buf) {
Michal Hocko752ade62017-05-08 15:57:27 -07006561 ret = -ENOMEM;
6562 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02006563 }
6564
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006565 sctx->pending_dir_moves = RB_ROOT;
6566 sctx->waiting_dir_moves = RB_ROOT;
Filipe Manana9dc44212014-02-19 14:31:44 +00006567 sctx->orphan_dirs = RB_ROOT;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006568
David Sterbae55d1152016-04-11 18:52:02 +02006569 alloc_size = sizeof(struct clone_root) * (arg->clone_sources_count + 1);
6570
David Sterba818e0102017-05-31 18:40:02 +02006571 sctx->clone_roots = kzalloc(alloc_size, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02006572 if (!sctx->clone_roots) {
David Sterba818e0102017-05-31 18:40:02 +02006573 ret = -ENOMEM;
6574 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02006575 }
6576
David Sterbae55d1152016-04-11 18:52:02 +02006577 alloc_size = arg->clone_sources_count * sizeof(*arg->clone_sources);
6578
Alexander Block31db9f72012-07-25 23:19:24 +02006579 if (arg->clone_sources_count) {
Michal Hocko752ade62017-05-08 15:57:27 -07006580 clone_sources_tmp = kvmalloc(alloc_size, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02006581 if (!clone_sources_tmp) {
Michal Hocko752ade62017-05-08 15:57:27 -07006582 ret = -ENOMEM;
6583 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02006584 }
6585
6586 ret = copy_from_user(clone_sources_tmp, arg->clone_sources,
David Sterbae55d1152016-04-11 18:52:02 +02006587 alloc_size);
Alexander Block31db9f72012-07-25 23:19:24 +02006588 if (ret) {
6589 ret = -EFAULT;
6590 goto out;
6591 }
6592
6593 for (i = 0; i < arg->clone_sources_count; i++) {
6594 key.objectid = clone_sources_tmp[i];
6595 key.type = BTRFS_ROOT_ITEM_KEY;
6596 key.offset = (u64)-1;
Wang Shilong18f687d2014-01-07 17:25:19 +08006597
6598 index = srcu_read_lock(&fs_info->subvol_srcu);
6599
Alexander Block31db9f72012-07-25 23:19:24 +02006600 clone_root = btrfs_read_fs_root_no_name(fs_info, &key);
Alexander Block31db9f72012-07-25 23:19:24 +02006601 if (IS_ERR(clone_root)) {
Wang Shilong18f687d2014-01-07 17:25:19 +08006602 srcu_read_unlock(&fs_info->subvol_srcu, index);
Alexander Block31db9f72012-07-25 23:19:24 +02006603 ret = PTR_ERR(clone_root);
6604 goto out;
6605 }
David Sterba2c686532013-12-16 17:34:17 +01006606 spin_lock(&clone_root->root_item_lock);
Filipe Manana5cc2b172015-03-02 20:53:52 +00006607 if (!btrfs_root_readonly(clone_root) ||
6608 btrfs_root_dead(clone_root)) {
David Sterba2c686532013-12-16 17:34:17 +01006609 spin_unlock(&clone_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08006610 srcu_read_unlock(&fs_info->subvol_srcu, index);
David Sterba2c686532013-12-16 17:34:17 +01006611 ret = -EPERM;
6612 goto out;
6613 }
Filipe Manana2f1f4652015-03-02 20:53:53 +00006614 clone_root->send_in_progress++;
David Sterba2c686532013-12-16 17:34:17 +01006615 spin_unlock(&clone_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08006616 srcu_read_unlock(&fs_info->subvol_srcu, index);
6617
Alexander Block31db9f72012-07-25 23:19:24 +02006618 sctx->clone_roots[i].root = clone_root;
Filipe Manana2f1f4652015-03-02 20:53:53 +00006619 clone_sources_to_rollback = i + 1;
Alexander Block31db9f72012-07-25 23:19:24 +02006620 }
David Sterba2f913062016-04-11 18:40:08 +02006621 kvfree(clone_sources_tmp);
Alexander Block31db9f72012-07-25 23:19:24 +02006622 clone_sources_tmp = NULL;
6623 }
6624
6625 if (arg->parent_root) {
6626 key.objectid = arg->parent_root;
6627 key.type = BTRFS_ROOT_ITEM_KEY;
6628 key.offset = (u64)-1;
Wang Shilong18f687d2014-01-07 17:25:19 +08006629
6630 index = srcu_read_lock(&fs_info->subvol_srcu);
6631
Alexander Block31db9f72012-07-25 23:19:24 +02006632 sctx->parent_root = btrfs_read_fs_root_no_name(fs_info, &key);
Stefan Behrensb1b19592013-05-13 14:42:57 +00006633 if (IS_ERR(sctx->parent_root)) {
Wang Shilong18f687d2014-01-07 17:25:19 +08006634 srcu_read_unlock(&fs_info->subvol_srcu, index);
Stefan Behrensb1b19592013-05-13 14:42:57 +00006635 ret = PTR_ERR(sctx->parent_root);
Alexander Block31db9f72012-07-25 23:19:24 +02006636 goto out;
6637 }
Wang Shilong18f687d2014-01-07 17:25:19 +08006638
David Sterba2c686532013-12-16 17:34:17 +01006639 spin_lock(&sctx->parent_root->root_item_lock);
6640 sctx->parent_root->send_in_progress++;
David Sterba521e0542014-04-15 16:41:44 +02006641 if (!btrfs_root_readonly(sctx->parent_root) ||
6642 btrfs_root_dead(sctx->parent_root)) {
David Sterba2c686532013-12-16 17:34:17 +01006643 spin_unlock(&sctx->parent_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08006644 srcu_read_unlock(&fs_info->subvol_srcu, index);
David Sterba2c686532013-12-16 17:34:17 +01006645 ret = -EPERM;
6646 goto out;
6647 }
6648 spin_unlock(&sctx->parent_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08006649
6650 srcu_read_unlock(&fs_info->subvol_srcu, index);
Alexander Block31db9f72012-07-25 23:19:24 +02006651 }
6652
6653 /*
6654 * Clones from send_root are allowed, but only if the clone source
6655 * is behind the current send position. This is checked while searching
6656 * for possible clone sources.
6657 */
6658 sctx->clone_roots[sctx->clone_roots_cnt++].root = sctx->send_root;
6659
6660 /* We do a bsearch later */
6661 sort(sctx->clone_roots, sctx->clone_roots_cnt,
6662 sizeof(*sctx->clone_roots), __clone_root_cmp_sort,
6663 NULL);
Wang Shilong896c14f2014-01-07 17:25:18 +08006664 sort_clone_roots = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02006665
Filipe Mananae5fa8f82014-10-21 11:11:41 +01006666 ret = ensure_commit_roots_uptodate(sctx);
6667 if (ret)
6668 goto out;
6669
David Sterba2755a0d2014-07-31 00:43:18 +02006670 current->journal_info = BTRFS_SEND_TRANS_STUB;
Alexander Block31db9f72012-07-25 23:19:24 +02006671 ret = send_subvol(sctx);
Josef Bacika26e8c92014-03-28 17:07:27 -04006672 current->journal_info = NULL;
Alexander Block31db9f72012-07-25 23:19:24 +02006673 if (ret < 0)
6674 goto out;
6675
Stefan Behrensc2c71322013-04-10 17:10:52 +00006676 if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_END_CMD)) {
6677 ret = begin_cmd(sctx, BTRFS_SEND_C_END);
6678 if (ret < 0)
6679 goto out;
6680 ret = send_cmd(sctx);
6681 if (ret < 0)
6682 goto out;
6683 }
Alexander Block31db9f72012-07-25 23:19:24 +02006684
6685out:
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006686 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->pending_dir_moves));
6687 while (sctx && !RB_EMPTY_ROOT(&sctx->pending_dir_moves)) {
6688 struct rb_node *n;
6689 struct pending_dir_move *pm;
6690
6691 n = rb_first(&sctx->pending_dir_moves);
6692 pm = rb_entry(n, struct pending_dir_move, node);
6693 while (!list_empty(&pm->list)) {
6694 struct pending_dir_move *pm2;
6695
6696 pm2 = list_first_entry(&pm->list,
6697 struct pending_dir_move, list);
6698 free_pending_move(sctx, pm2);
6699 }
6700 free_pending_move(sctx, pm);
6701 }
6702
6703 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->waiting_dir_moves));
6704 while (sctx && !RB_EMPTY_ROOT(&sctx->waiting_dir_moves)) {
6705 struct rb_node *n;
6706 struct waiting_dir_move *dm;
6707
6708 n = rb_first(&sctx->waiting_dir_moves);
6709 dm = rb_entry(n, struct waiting_dir_move, node);
6710 rb_erase(&dm->node, &sctx->waiting_dir_moves);
6711 kfree(dm);
6712 }
6713
Filipe Manana9dc44212014-02-19 14:31:44 +00006714 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->orphan_dirs));
6715 while (sctx && !RB_EMPTY_ROOT(&sctx->orphan_dirs)) {
6716 struct rb_node *n;
6717 struct orphan_dir_info *odi;
6718
6719 n = rb_first(&sctx->orphan_dirs);
6720 odi = rb_entry(n, struct orphan_dir_info, node);
6721 free_orphan_dir_info(sctx, odi);
6722 }
6723
Wang Shilong896c14f2014-01-07 17:25:18 +08006724 if (sort_clone_roots) {
6725 for (i = 0; i < sctx->clone_roots_cnt; i++)
6726 btrfs_root_dec_send_in_progress(
6727 sctx->clone_roots[i].root);
6728 } else {
6729 for (i = 0; sctx && i < clone_sources_to_rollback; i++)
6730 btrfs_root_dec_send_in_progress(
6731 sctx->clone_roots[i].root);
6732
6733 btrfs_root_dec_send_in_progress(send_root);
6734 }
David Sterba66ef7d62013-12-17 15:07:20 +01006735 if (sctx && !IS_ERR_OR_NULL(sctx->parent_root))
6736 btrfs_root_dec_send_in_progress(sctx->parent_root);
David Sterba2c686532013-12-16 17:34:17 +01006737
David Sterba2f913062016-04-11 18:40:08 +02006738 kvfree(clone_sources_tmp);
Alexander Block31db9f72012-07-25 23:19:24 +02006739
6740 if (sctx) {
6741 if (sctx->send_filp)
6742 fput(sctx->send_filp);
6743
David Sterbac03d01f2016-04-11 18:40:08 +02006744 kvfree(sctx->clone_roots);
David Sterba6ff48ce2016-04-11 18:40:08 +02006745 kvfree(sctx->send_buf);
David Sterbaeb5b75f2016-04-11 18:40:08 +02006746 kvfree(sctx->read_buf);
Alexander Block31db9f72012-07-25 23:19:24 +02006747
6748 name_cache_free(sctx);
6749
6750 kfree(sctx);
6751 }
6752
6753 return ret;
6754}