blob: 993e1bab0a6b33fa95f33e54c08dbc2f00c2de81 [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>
Alexander Block31db9f72012-07-25 23:19:24 +020029
30#include "send.h"
31#include "backref.h"
Filipe David Borba Manana0b947af2014-01-29 21:06:04 +000032#include "hash.h"
Alexander Block31db9f72012-07-25 23:19:24 +020033#include "locking.h"
34#include "disk-io.h"
35#include "btrfs_inode.h"
36#include "transaction.h"
Anand Jainebb87652016-03-10 17:26:59 +080037#include "compression.h"
Alexander Block31db9f72012-07-25 23:19:24 +020038
39static int g_verbose = 0;
40
41#define verbose_printk(...) if (g_verbose) printk(__VA_ARGS__)
42
43/*
44 * A fs_path is a helper to dynamically build path names with unknown size.
45 * It reallocates the internal buffer on demand.
46 * It allows fast adding of path elements on the right side (normal path) and
47 * fast adding to the left side (reversed path). A reversed path can also be
48 * unreversed if needed.
49 */
50struct fs_path {
51 union {
52 struct {
53 char *start;
54 char *end;
Alexander Block31db9f72012-07-25 23:19:24 +020055
56 char *buf;
David Sterba1f5a7ff2014-02-03 19:23:47 +010057 unsigned short buf_len:15;
58 unsigned short reversed:1;
Alexander Block31db9f72012-07-25 23:19:24 +020059 char inline_buf[];
60 };
David Sterbaace01052014-02-05 16:17:34 +010061 /*
62 * Average path length does not exceed 200 bytes, we'll have
63 * better packing in the slab and higher chance to satisfy
64 * a allocation later during send.
65 */
66 char pad[256];
Alexander Block31db9f72012-07-25 23:19:24 +020067 };
68};
69#define FS_PATH_INLINE_SIZE \
70 (sizeof(struct fs_path) - offsetof(struct fs_path, inline_buf))
71
72
73/* reused for each extent */
74struct clone_root {
75 struct btrfs_root *root;
76 u64 ino;
77 u64 offset;
78
79 u64 found_refs;
80};
81
82#define SEND_CTX_MAX_NAME_CACHE_SIZE 128
83#define SEND_CTX_NAME_CACHE_CLEAN_SIZE (SEND_CTX_MAX_NAME_CACHE_SIZE * 2)
84
85struct send_ctx {
86 struct file *send_filp;
87 loff_t send_off;
88 char *send_buf;
89 u32 send_size;
90 u32 send_max_size;
91 u64 total_send_size;
92 u64 cmd_send_size[BTRFS_SEND_C_MAX + 1];
Mark Fashehcb95e7b2013-02-04 20:54:57 +000093 u64 flags; /* 'flags' member of btrfs_ioctl_send_args is u64 */
Alexander Block31db9f72012-07-25 23:19:24 +020094
Alexander Block31db9f72012-07-25 23:19:24 +020095 struct btrfs_root *send_root;
96 struct btrfs_root *parent_root;
97 struct clone_root *clone_roots;
98 int clone_roots_cnt;
99
100 /* current state of the compare_tree call */
101 struct btrfs_path *left_path;
102 struct btrfs_path *right_path;
103 struct btrfs_key *cmp_key;
104
105 /*
106 * infos of the currently processed inode. In case of deleted inodes,
107 * these are the values from the deleted inode.
108 */
109 u64 cur_ino;
110 u64 cur_inode_gen;
111 int cur_inode_new;
112 int cur_inode_new_gen;
113 int cur_inode_deleted;
Alexander Block31db9f72012-07-25 23:19:24 +0200114 u64 cur_inode_size;
115 u64 cur_inode_mode;
Liu Bo644d1942014-02-27 17:29:01 +0800116 u64 cur_inode_rdev;
Josef Bacik16e75492013-10-22 12:18:51 -0400117 u64 cur_inode_last_extent;
Alexander Block31db9f72012-07-25 23:19:24 +0200118
119 u64 send_progress;
120
121 struct list_head new_refs;
122 struct list_head deleted_refs;
123
124 struct radix_tree_root name_cache;
125 struct list_head name_cache_list;
126 int name_cache_size;
127
Liu Bo2131bcd32014-03-05 10:07:35 +0800128 struct file_ra_state ra;
129
Alexander Block31db9f72012-07-25 23:19:24 +0200130 char *read_buf;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000131
132 /*
133 * We process inodes by their increasing order, so if before an
134 * incremental send we reverse the parent/child relationship of
135 * directories such that a directory with a lower inode number was
136 * the parent of a directory with a higher inode number, and the one
137 * becoming the new parent got renamed too, we can't rename/move the
138 * directory with lower inode number when we finish processing it - we
139 * must process the directory with higher inode number first, then
140 * rename/move it and then rename/move the directory with lower inode
141 * number. Example follows.
142 *
143 * Tree state when the first send was performed:
144 *
145 * .
146 * |-- a (ino 257)
147 * |-- b (ino 258)
148 * |
149 * |
150 * |-- c (ino 259)
151 * | |-- d (ino 260)
152 * |
153 * |-- c2 (ino 261)
154 *
155 * Tree state when the second (incremental) send is performed:
156 *
157 * .
158 * |-- a (ino 257)
159 * |-- b (ino 258)
160 * |-- c2 (ino 261)
161 * |-- d2 (ino 260)
162 * |-- cc (ino 259)
163 *
164 * The sequence of steps that lead to the second state was:
165 *
166 * mv /a/b/c/d /a/b/c2/d2
167 * mv /a/b/c /a/b/c2/d2/cc
168 *
169 * "c" has lower inode number, but we can't move it (2nd mv operation)
170 * before we move "d", which has higher inode number.
171 *
172 * So we just memorize which move/rename operations must be performed
173 * later when their respective parent is processed and moved/renamed.
174 */
175
176 /* Indexed by parent directory inode number. */
177 struct rb_root pending_dir_moves;
178
179 /*
180 * Reverse index, indexed by the inode number of a directory that
181 * is waiting for the move/rename of its immediate parent before its
182 * own move/rename can be performed.
183 */
184 struct rb_root waiting_dir_moves;
Filipe Manana9dc44212014-02-19 14:31:44 +0000185
186 /*
187 * A directory that is going to be rm'ed might have a child directory
188 * which is in the pending directory moves index above. In this case,
189 * the directory can only be removed after the move/rename of its child
190 * is performed. Example:
191 *
192 * Parent snapshot:
193 *
194 * . (ino 256)
195 * |-- a/ (ino 257)
196 * |-- b/ (ino 258)
197 * |-- c/ (ino 259)
198 * | |-- x/ (ino 260)
199 * |
200 * |-- y/ (ino 261)
201 *
202 * Send snapshot:
203 *
204 * . (ino 256)
205 * |-- a/ (ino 257)
206 * |-- b/ (ino 258)
207 * |-- YY/ (ino 261)
208 * |-- x/ (ino 260)
209 *
210 * Sequence of steps that lead to the send snapshot:
211 * rm -f /a/b/c/foo.txt
212 * mv /a/b/y /a/b/YY
213 * mv /a/b/c/x /a/b/YY
214 * rmdir /a/b/c
215 *
216 * When the child is processed, its move/rename is delayed until its
217 * parent is processed (as explained above), but all other operations
218 * like update utimes, chown, chgrp, etc, are performed and the paths
219 * that it uses for those operations must use the orphanized name of
220 * its parent (the directory we're going to rm later), so we need to
221 * memorize that name.
222 *
223 * Indexed by the inode number of the directory to be deleted.
224 */
225 struct rb_root orphan_dirs;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000226};
227
228struct pending_dir_move {
229 struct rb_node node;
230 struct list_head list;
231 u64 parent_ino;
232 u64 ino;
233 u64 gen;
234 struct list_head update_refs;
235};
236
237struct waiting_dir_move {
238 struct rb_node node;
239 u64 ino;
Filipe Manana9dc44212014-02-19 14:31:44 +0000240 /*
241 * There might be some directory that could not be removed because it
242 * was waiting for this directory inode to be moved first. Therefore
243 * after this directory is moved, we can try to rmdir the ino rmdir_ino.
244 */
245 u64 rmdir_ino;
Filipe Manana8b191a62015-04-09 14:09:14 +0100246 bool orphanized;
Filipe Manana9dc44212014-02-19 14:31:44 +0000247};
248
249struct orphan_dir_info {
250 struct rb_node node;
251 u64 ino;
252 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +0200253};
254
255struct name_cache_entry {
256 struct list_head list;
Alexander Block7e0926f2012-07-28 14:20:58 +0200257 /*
258 * radix_tree has only 32bit entries but we need to handle 64bit inums.
259 * We use the lower 32bit of the 64bit inum to store it in the tree. If
260 * more then one inum would fall into the same entry, we use radix_list
261 * to store the additional entries. radix_list is also used to store
262 * entries where two entries have the same inum but different
263 * generations.
264 */
265 struct list_head radix_list;
Alexander Block31db9f72012-07-25 23:19:24 +0200266 u64 ino;
267 u64 gen;
268 u64 parent_ino;
269 u64 parent_gen;
270 int ret;
271 int need_later_update;
272 int name_len;
273 char name[];
274};
275
Filipe David Borba Manana9f037402014-01-22 10:00:53 +0000276static int is_waiting_for_move(struct send_ctx *sctx, u64 ino);
277
Filipe Manana9dc44212014-02-19 14:31:44 +0000278static struct waiting_dir_move *
279get_waiting_dir_move(struct send_ctx *sctx, u64 ino);
280
281static int is_waiting_for_rm(struct send_ctx *sctx, u64 dir_ino);
282
Josef Bacik16e75492013-10-22 12:18:51 -0400283static int need_send_hole(struct send_ctx *sctx)
284{
285 return (sctx->parent_root && !sctx->cur_inode_new &&
286 !sctx->cur_inode_new_gen && !sctx->cur_inode_deleted &&
287 S_ISREG(sctx->cur_inode_mode));
288}
289
Alexander Block31db9f72012-07-25 23:19:24 +0200290static void fs_path_reset(struct fs_path *p)
291{
292 if (p->reversed) {
293 p->start = p->buf + p->buf_len - 1;
294 p->end = p->start;
295 *p->start = 0;
296 } else {
297 p->start = p->buf;
298 p->end = p->start;
299 *p->start = 0;
300 }
301}
302
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000303static struct fs_path *fs_path_alloc(void)
Alexander Block31db9f72012-07-25 23:19:24 +0200304{
305 struct fs_path *p;
306
David Sterbae780b0d2016-01-18 18:42:13 +0100307 p = kmalloc(sizeof(*p), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +0200308 if (!p)
309 return NULL;
310 p->reversed = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200311 p->buf = p->inline_buf;
312 p->buf_len = FS_PATH_INLINE_SIZE;
313 fs_path_reset(p);
314 return p;
315}
316
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000317static struct fs_path *fs_path_alloc_reversed(void)
Alexander Block31db9f72012-07-25 23:19:24 +0200318{
319 struct fs_path *p;
320
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000321 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +0200322 if (!p)
323 return NULL;
324 p->reversed = 1;
325 fs_path_reset(p);
326 return p;
327}
328
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000329static void fs_path_free(struct fs_path *p)
Alexander Block31db9f72012-07-25 23:19:24 +0200330{
331 if (!p)
332 return;
David Sterbaace01052014-02-05 16:17:34 +0100333 if (p->buf != p->inline_buf)
334 kfree(p->buf);
Alexander Block31db9f72012-07-25 23:19:24 +0200335 kfree(p);
336}
337
338static int fs_path_len(struct fs_path *p)
339{
340 return p->end - p->start;
341}
342
343static int fs_path_ensure_buf(struct fs_path *p, int len)
344{
345 char *tmp_buf;
346 int path_len;
347 int old_buf_len;
348
349 len++;
350
351 if (p->buf_len >= len)
352 return 0;
353
Chris Masoncfd4a532014-04-26 05:02:03 -0700354 if (len > PATH_MAX) {
355 WARN_ON(1);
356 return -ENOMEM;
357 }
358
David Sterba1b2782c2014-02-25 19:32:59 +0100359 path_len = p->end - p->start;
360 old_buf_len = p->buf_len;
361
David Sterbaace01052014-02-05 16:17:34 +0100362 /*
363 * First time the inline_buf does not suffice
364 */
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100365 if (p->buf == p->inline_buf) {
David Sterbae780b0d2016-01-18 18:42:13 +0100366 tmp_buf = kmalloc(len, GFP_KERNEL);
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100367 if (tmp_buf)
368 memcpy(tmp_buf, p->buf, old_buf_len);
369 } else {
David Sterbae780b0d2016-01-18 18:42:13 +0100370 tmp_buf = krealloc(p->buf, len, GFP_KERNEL);
Filipe Manana01a9a8a2014-05-21 17:38:13 +0100371 }
David Sterba9c9ca002014-02-25 19:33:08 +0100372 if (!tmp_buf)
373 return -ENOMEM;
374 p->buf = tmp_buf;
375 /*
376 * The real size of the buffer is bigger, this will let the fast path
377 * happen most of the time
378 */
379 p->buf_len = ksize(p->buf);
David Sterbaace01052014-02-05 16:17:34 +0100380
Alexander Block31db9f72012-07-25 23:19:24 +0200381 if (p->reversed) {
382 tmp_buf = p->buf + old_buf_len - path_len - 1;
383 p->end = p->buf + p->buf_len - 1;
384 p->start = p->end - path_len;
385 memmove(p->start, tmp_buf, path_len + 1);
386 } else {
387 p->start = p->buf;
388 p->end = p->start + path_len;
389 }
390 return 0;
391}
392
David Sterbab23ab572014-02-03 19:23:19 +0100393static int fs_path_prepare_for_add(struct fs_path *p, int name_len,
394 char **prepared)
Alexander Block31db9f72012-07-25 23:19:24 +0200395{
396 int ret;
397 int new_len;
398
399 new_len = p->end - p->start + name_len;
400 if (p->start != p->end)
401 new_len++;
402 ret = fs_path_ensure_buf(p, new_len);
403 if (ret < 0)
404 goto out;
405
406 if (p->reversed) {
407 if (p->start != p->end)
408 *--p->start = '/';
409 p->start -= name_len;
David Sterbab23ab572014-02-03 19:23:19 +0100410 *prepared = p->start;
Alexander Block31db9f72012-07-25 23:19:24 +0200411 } else {
412 if (p->start != p->end)
413 *p->end++ = '/';
David Sterbab23ab572014-02-03 19:23:19 +0100414 *prepared = p->end;
Alexander Block31db9f72012-07-25 23:19:24 +0200415 p->end += name_len;
416 *p->end = 0;
417 }
418
419out:
420 return ret;
421}
422
423static int fs_path_add(struct fs_path *p, const char *name, int name_len)
424{
425 int ret;
David Sterbab23ab572014-02-03 19:23:19 +0100426 char *prepared;
Alexander Block31db9f72012-07-25 23:19:24 +0200427
David Sterbab23ab572014-02-03 19:23:19 +0100428 ret = fs_path_prepare_for_add(p, name_len, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200429 if (ret < 0)
430 goto out;
David Sterbab23ab572014-02-03 19:23:19 +0100431 memcpy(prepared, name, name_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200432
433out:
434 return ret;
435}
436
437static int fs_path_add_path(struct fs_path *p, struct fs_path *p2)
438{
439 int ret;
David Sterbab23ab572014-02-03 19:23:19 +0100440 char *prepared;
Alexander Block31db9f72012-07-25 23:19:24 +0200441
David Sterbab23ab572014-02-03 19:23:19 +0100442 ret = fs_path_prepare_for_add(p, p2->end - p2->start, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200443 if (ret < 0)
444 goto out;
David Sterbab23ab572014-02-03 19:23:19 +0100445 memcpy(prepared, p2->start, p2->end - p2->start);
Alexander Block31db9f72012-07-25 23:19:24 +0200446
447out:
448 return ret;
449}
450
451static int fs_path_add_from_extent_buffer(struct fs_path *p,
452 struct extent_buffer *eb,
453 unsigned long off, int 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, len, &prepared);
Alexander Block31db9f72012-07-25 23:19:24 +0200459 if (ret < 0)
460 goto out;
461
David Sterbab23ab572014-02-03 19:23:19 +0100462 read_extent_buffer(eb, prepared, off, len);
Alexander Block31db9f72012-07-25 23:19:24 +0200463
464out:
465 return ret;
466}
467
Alexander Block31db9f72012-07-25 23:19:24 +0200468static int fs_path_copy(struct fs_path *p, struct fs_path *from)
469{
470 int ret;
471
472 p->reversed = from->reversed;
473 fs_path_reset(p);
474
475 ret = fs_path_add_path(p, from);
476
477 return ret;
478}
479
480
481static void fs_path_unreverse(struct fs_path *p)
482{
483 char *tmp;
484 int len;
485
486 if (!p->reversed)
487 return;
488
489 tmp = p->start;
490 len = p->end - p->start;
491 p->start = p->buf;
492 p->end = p->start + len;
493 memmove(p->start, tmp, len + 1);
494 p->reversed = 0;
495}
496
497static struct btrfs_path *alloc_path_for_send(void)
498{
499 struct btrfs_path *path;
500
501 path = btrfs_alloc_path();
502 if (!path)
503 return NULL;
504 path->search_commit_root = 1;
505 path->skip_locking = 1;
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400506 path->need_commit_sem = 1;
Alexander Block31db9f72012-07-25 23:19:24 +0200507 return path;
508}
509
Eric Sandeen48a3b632013-04-25 20:41:01 +0000510static int write_buf(struct file *filp, const void *buf, u32 len, loff_t *off)
Alexander Block31db9f72012-07-25 23:19:24 +0200511{
512 int ret;
513 mm_segment_t old_fs;
514 u32 pos = 0;
515
516 old_fs = get_fs();
517 set_fs(KERNEL_DS);
518
519 while (pos < len) {
Fabian Frederickd447d0d2014-07-15 21:17:17 +0200520 ret = vfs_write(filp, (__force const char __user *)buf + pos,
521 len - pos, off);
Alexander Block31db9f72012-07-25 23:19:24 +0200522 /* TODO handle that correctly */
523 /*if (ret == -ERESTARTSYS) {
524 continue;
525 }*/
526 if (ret < 0)
527 goto out;
528 if (ret == 0) {
529 ret = -EIO;
530 goto out;
531 }
532 pos += ret;
533 }
534
535 ret = 0;
536
537out:
538 set_fs(old_fs);
539 return ret;
540}
541
542static int tlv_put(struct send_ctx *sctx, u16 attr, const void *data, int len)
543{
544 struct btrfs_tlv_header *hdr;
545 int total_len = sizeof(*hdr) + len;
546 int left = sctx->send_max_size - sctx->send_size;
547
548 if (unlikely(left < total_len))
549 return -EOVERFLOW;
550
551 hdr = (struct btrfs_tlv_header *) (sctx->send_buf + sctx->send_size);
552 hdr->tlv_type = cpu_to_le16(attr);
553 hdr->tlv_len = cpu_to_le16(len);
554 memcpy(hdr + 1, data, len);
555 sctx->send_size += total_len;
556
557 return 0;
558}
559
David Sterba95bc79d2013-12-16 17:34:10 +0100560#define TLV_PUT_DEFINE_INT(bits) \
561 static int tlv_put_u##bits(struct send_ctx *sctx, \
562 u##bits attr, u##bits value) \
563 { \
564 __le##bits __tmp = cpu_to_le##bits(value); \
565 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \
566 }
Alexander Block31db9f72012-07-25 23:19:24 +0200567
David Sterba95bc79d2013-12-16 17:34:10 +0100568TLV_PUT_DEFINE_INT(64)
Alexander Block31db9f72012-07-25 23:19:24 +0200569
570static int tlv_put_string(struct send_ctx *sctx, u16 attr,
571 const char *str, int len)
572{
573 if (len == -1)
574 len = strlen(str);
575 return tlv_put(sctx, attr, str, len);
576}
577
578static int tlv_put_uuid(struct send_ctx *sctx, u16 attr,
579 const u8 *uuid)
580{
581 return tlv_put(sctx, attr, uuid, BTRFS_UUID_SIZE);
582}
583
Alexander Block31db9f72012-07-25 23:19:24 +0200584static int tlv_put_btrfs_timespec(struct send_ctx *sctx, u16 attr,
585 struct extent_buffer *eb,
586 struct btrfs_timespec *ts)
587{
588 struct btrfs_timespec bts;
589 read_extent_buffer(eb, &bts, (unsigned long)ts, sizeof(bts));
590 return tlv_put(sctx, attr, &bts, sizeof(bts));
591}
592
593
594#define TLV_PUT(sctx, attrtype, attrlen, data) \
595 do { \
596 ret = tlv_put(sctx, attrtype, attrlen, data); \
597 if (ret < 0) \
598 goto tlv_put_failure; \
599 } while (0)
600
601#define TLV_PUT_INT(sctx, attrtype, bits, value) \
602 do { \
603 ret = tlv_put_u##bits(sctx, attrtype, value); \
604 if (ret < 0) \
605 goto tlv_put_failure; \
606 } while (0)
607
608#define TLV_PUT_U8(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 8, data)
609#define TLV_PUT_U16(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 16, data)
610#define TLV_PUT_U32(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 32, data)
611#define TLV_PUT_U64(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 64, data)
612#define TLV_PUT_STRING(sctx, attrtype, str, len) \
613 do { \
614 ret = tlv_put_string(sctx, attrtype, str, len); \
615 if (ret < 0) \
616 goto tlv_put_failure; \
617 } while (0)
618#define TLV_PUT_PATH(sctx, attrtype, p) \
619 do { \
620 ret = tlv_put_string(sctx, attrtype, p->start, \
621 p->end - p->start); \
622 if (ret < 0) \
623 goto tlv_put_failure; \
624 } while(0)
625#define TLV_PUT_UUID(sctx, attrtype, uuid) \
626 do { \
627 ret = tlv_put_uuid(sctx, attrtype, uuid); \
628 if (ret < 0) \
629 goto tlv_put_failure; \
630 } while (0)
Alexander Block31db9f72012-07-25 23:19:24 +0200631#define TLV_PUT_BTRFS_TIMESPEC(sctx, attrtype, eb, ts) \
632 do { \
633 ret = tlv_put_btrfs_timespec(sctx, attrtype, eb, ts); \
634 if (ret < 0) \
635 goto tlv_put_failure; \
636 } while (0)
637
638static int send_header(struct send_ctx *sctx)
639{
640 struct btrfs_stream_header hdr;
641
642 strcpy(hdr.magic, BTRFS_SEND_STREAM_MAGIC);
643 hdr.version = cpu_to_le32(BTRFS_SEND_STREAM_VERSION);
644
Anand Jain1bcea352012-09-14 00:04:21 -0600645 return write_buf(sctx->send_filp, &hdr, sizeof(hdr),
646 &sctx->send_off);
Alexander Block31db9f72012-07-25 23:19:24 +0200647}
648
649/*
650 * For each command/item we want to send to userspace, we call this function.
651 */
652static int begin_cmd(struct send_ctx *sctx, int cmd)
653{
654 struct btrfs_cmd_header *hdr;
655
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +0530656 if (WARN_ON(!sctx->send_buf))
Alexander Block31db9f72012-07-25 23:19:24 +0200657 return -EINVAL;
Alexander Block31db9f72012-07-25 23:19:24 +0200658
659 BUG_ON(sctx->send_size);
660
661 sctx->send_size += sizeof(*hdr);
662 hdr = (struct btrfs_cmd_header *)sctx->send_buf;
663 hdr->cmd = cpu_to_le16(cmd);
664
665 return 0;
666}
667
668static int send_cmd(struct send_ctx *sctx)
669{
670 int ret;
671 struct btrfs_cmd_header *hdr;
672 u32 crc;
673
674 hdr = (struct btrfs_cmd_header *)sctx->send_buf;
675 hdr->len = cpu_to_le32(sctx->send_size - sizeof(*hdr));
676 hdr->crc = 0;
677
Filipe David Borba Manana0b947af2014-01-29 21:06:04 +0000678 crc = btrfs_crc32c(0, (unsigned char *)sctx->send_buf, sctx->send_size);
Alexander Block31db9f72012-07-25 23:19:24 +0200679 hdr->crc = cpu_to_le32(crc);
680
Anand Jain1bcea352012-09-14 00:04:21 -0600681 ret = write_buf(sctx->send_filp, sctx->send_buf, sctx->send_size,
682 &sctx->send_off);
Alexander Block31db9f72012-07-25 23:19:24 +0200683
684 sctx->total_send_size += sctx->send_size;
685 sctx->cmd_send_size[le16_to_cpu(hdr->cmd)] += sctx->send_size;
686 sctx->send_size = 0;
687
688 return ret;
689}
690
691/*
692 * Sends a move instruction to user space
693 */
694static int send_rename(struct send_ctx *sctx,
695 struct fs_path *from, struct fs_path *to)
696{
697 int ret;
698
699verbose_printk("btrfs: send_rename %s -> %s\n", from->start, to->start);
700
701 ret = begin_cmd(sctx, BTRFS_SEND_C_RENAME);
702 if (ret < 0)
703 goto out;
704
705 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, from);
706 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_TO, to);
707
708 ret = send_cmd(sctx);
709
710tlv_put_failure:
711out:
712 return ret;
713}
714
715/*
716 * Sends a link instruction to user space
717 */
718static int send_link(struct send_ctx *sctx,
719 struct fs_path *path, struct fs_path *lnk)
720{
721 int ret;
722
723verbose_printk("btrfs: send_link %s -> %s\n", path->start, lnk->start);
724
725 ret = begin_cmd(sctx, BTRFS_SEND_C_LINK);
726 if (ret < 0)
727 goto out;
728
729 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
730 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, lnk);
731
732 ret = send_cmd(sctx);
733
734tlv_put_failure:
735out:
736 return ret;
737}
738
739/*
740 * Sends an unlink instruction to user space
741 */
742static int send_unlink(struct send_ctx *sctx, struct fs_path *path)
743{
744 int ret;
745
746verbose_printk("btrfs: send_unlink %s\n", path->start);
747
748 ret = begin_cmd(sctx, BTRFS_SEND_C_UNLINK);
749 if (ret < 0)
750 goto out;
751
752 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
753
754 ret = send_cmd(sctx);
755
756tlv_put_failure:
757out:
758 return ret;
759}
760
761/*
762 * Sends a rmdir instruction to user space
763 */
764static int send_rmdir(struct send_ctx *sctx, struct fs_path *path)
765{
766 int ret;
767
768verbose_printk("btrfs: send_rmdir %s\n", path->start);
769
770 ret = begin_cmd(sctx, BTRFS_SEND_C_RMDIR);
771 if (ret < 0)
772 goto out;
773
774 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
775
776 ret = send_cmd(sctx);
777
778tlv_put_failure:
779out:
780 return ret;
781}
782
783/*
784 * Helper function to retrieve some fields from an inode item.
785 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400786static int __get_inode_info(struct btrfs_root *root, struct btrfs_path *path,
787 u64 ino, u64 *size, u64 *gen, u64 *mode, u64 *uid,
788 u64 *gid, u64 *rdev)
Alexander Block31db9f72012-07-25 23:19:24 +0200789{
790 int ret;
791 struct btrfs_inode_item *ii;
792 struct btrfs_key key;
Alexander Block31db9f72012-07-25 23:19:24 +0200793
794 key.objectid = ino;
795 key.type = BTRFS_INODE_ITEM_KEY;
796 key.offset = 0;
797 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Alexander Block31db9f72012-07-25 23:19:24 +0200798 if (ret) {
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400799 if (ret > 0)
800 ret = -ENOENT;
801 return ret;
Alexander Block31db9f72012-07-25 23:19:24 +0200802 }
803
804 ii = btrfs_item_ptr(path->nodes[0], path->slots[0],
805 struct btrfs_inode_item);
806 if (size)
807 *size = btrfs_inode_size(path->nodes[0], ii);
808 if (gen)
809 *gen = btrfs_inode_generation(path->nodes[0], ii);
810 if (mode)
811 *mode = btrfs_inode_mode(path->nodes[0], ii);
812 if (uid)
813 *uid = btrfs_inode_uid(path->nodes[0], ii);
814 if (gid)
815 *gid = btrfs_inode_gid(path->nodes[0], ii);
Alexander Block85a7b332012-07-26 23:39:10 +0200816 if (rdev)
817 *rdev = btrfs_inode_rdev(path->nodes[0], ii);
Alexander Block31db9f72012-07-25 23:19:24 +0200818
Josef Bacik3f8a18c2014-03-28 17:16:01 -0400819 return ret;
820}
821
822static int get_inode_info(struct btrfs_root *root,
823 u64 ino, u64 *size, u64 *gen,
824 u64 *mode, u64 *uid, u64 *gid,
825 u64 *rdev)
826{
827 struct btrfs_path *path;
828 int ret;
829
830 path = alloc_path_for_send();
831 if (!path)
832 return -ENOMEM;
833 ret = __get_inode_info(root, path, ino, size, gen, mode, uid, gid,
834 rdev);
Alexander Block31db9f72012-07-25 23:19:24 +0200835 btrfs_free_path(path);
836 return ret;
837}
838
839typedef int (*iterate_inode_ref_t)(int num, u64 dir, int index,
840 struct fs_path *p,
841 void *ctx);
842
843/*
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000844 * Helper function to iterate the entries in ONE btrfs_inode_ref or
845 * btrfs_inode_extref.
Alexander Block31db9f72012-07-25 23:19:24 +0200846 * The iterate callback may return a non zero value to stop iteration. This can
847 * be a negative value for error codes or 1 to simply stop it.
848 *
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000849 * path must point to the INODE_REF or INODE_EXTREF when called.
Alexander Block31db9f72012-07-25 23:19:24 +0200850 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000851static int iterate_inode_ref(struct btrfs_root *root, struct btrfs_path *path,
Alexander Block31db9f72012-07-25 23:19:24 +0200852 struct btrfs_key *found_key, int resolve,
853 iterate_inode_ref_t iterate, void *ctx)
854{
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000855 struct extent_buffer *eb = path->nodes[0];
Alexander Block31db9f72012-07-25 23:19:24 +0200856 struct btrfs_item *item;
857 struct btrfs_inode_ref *iref;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000858 struct btrfs_inode_extref *extref;
Alexander Block31db9f72012-07-25 23:19:24 +0200859 struct btrfs_path *tmp_path;
860 struct fs_path *p;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000861 u32 cur = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200862 u32 total;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000863 int slot = path->slots[0];
Alexander Block31db9f72012-07-25 23:19:24 +0200864 u32 name_len;
865 char *start;
866 int ret = 0;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000867 int num = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200868 int index;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000869 u64 dir;
870 unsigned long name_off;
871 unsigned long elem_size;
872 unsigned long ptr;
Alexander Block31db9f72012-07-25 23:19:24 +0200873
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000874 p = fs_path_alloc_reversed();
Alexander Block31db9f72012-07-25 23:19:24 +0200875 if (!p)
876 return -ENOMEM;
877
878 tmp_path = alloc_path_for_send();
879 if (!tmp_path) {
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000880 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +0200881 return -ENOMEM;
882 }
883
Alexander Block31db9f72012-07-25 23:19:24 +0200884
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000885 if (found_key->type == BTRFS_INODE_REF_KEY) {
886 ptr = (unsigned long)btrfs_item_ptr(eb, slot,
887 struct btrfs_inode_ref);
Ross Kirkdd3cc162013-09-16 15:58:09 +0100888 item = btrfs_item_nr(slot);
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000889 total = btrfs_item_size(eb, item);
890 elem_size = sizeof(*iref);
891 } else {
892 ptr = btrfs_item_ptr_offset(eb, slot);
893 total = btrfs_item_size_nr(eb, slot);
894 elem_size = sizeof(*extref);
895 }
896
Alexander Block31db9f72012-07-25 23:19:24 +0200897 while (cur < total) {
898 fs_path_reset(p);
899
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000900 if (found_key->type == BTRFS_INODE_REF_KEY) {
901 iref = (struct btrfs_inode_ref *)(ptr + cur);
902 name_len = btrfs_inode_ref_name_len(eb, iref);
903 name_off = (unsigned long)(iref + 1);
904 index = btrfs_inode_ref_index(eb, iref);
905 dir = found_key->offset;
906 } else {
907 extref = (struct btrfs_inode_extref *)(ptr + cur);
908 name_len = btrfs_inode_extref_name_len(eb, extref);
909 name_off = (unsigned long)&extref->name;
910 index = btrfs_inode_extref_index(eb, extref);
911 dir = btrfs_inode_extref_parent(eb, extref);
912 }
913
Alexander Block31db9f72012-07-25 23:19:24 +0200914 if (resolve) {
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000915 start = btrfs_ref_to_path(root, tmp_path, name_len,
916 name_off, eb, dir,
917 p->buf, p->buf_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200918 if (IS_ERR(start)) {
919 ret = PTR_ERR(start);
920 goto out;
921 }
922 if (start < p->buf) {
923 /* overflow , try again with larger buffer */
924 ret = fs_path_ensure_buf(p,
925 p->buf_len + p->buf - start);
926 if (ret < 0)
927 goto out;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000928 start = btrfs_ref_to_path(root, tmp_path,
929 name_len, name_off,
930 eb, dir,
931 p->buf, p->buf_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200932 if (IS_ERR(start)) {
933 ret = PTR_ERR(start);
934 goto out;
935 }
936 BUG_ON(start < p->buf);
937 }
938 p->start = start;
939 } else {
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000940 ret = fs_path_add_from_extent_buffer(p, eb, name_off,
941 name_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200942 if (ret < 0)
943 goto out;
944 }
945
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000946 cur += elem_size + name_len;
947 ret = iterate(num, dir, index, p, ctx);
Alexander Block31db9f72012-07-25 23:19:24 +0200948 if (ret)
949 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +0200950 num++;
951 }
952
953out:
954 btrfs_free_path(tmp_path);
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000955 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +0200956 return ret;
957}
958
959typedef int (*iterate_dir_item_t)(int num, struct btrfs_key *di_key,
960 const char *name, int name_len,
961 const char *data, int data_len,
962 u8 type, void *ctx);
963
964/*
965 * Helper function to iterate the entries in ONE btrfs_dir_item.
966 * The iterate callback may return a non zero value to stop iteration. This can
967 * be a negative value for error codes or 1 to simply stop it.
968 *
969 * path must point to the dir item when called.
970 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000971static int iterate_dir_item(struct btrfs_root *root, struct btrfs_path *path,
Alexander Block31db9f72012-07-25 23:19:24 +0200972 struct btrfs_key *found_key,
973 iterate_dir_item_t iterate, void *ctx)
974{
975 int ret = 0;
976 struct extent_buffer *eb;
977 struct btrfs_item *item;
978 struct btrfs_dir_item *di;
Alexander Block31db9f72012-07-25 23:19:24 +0200979 struct btrfs_key di_key;
980 char *buf = NULL;
Filipe Manana7e3ae332014-05-23 20:15:16 +0100981 int buf_len;
Alexander Block31db9f72012-07-25 23:19:24 +0200982 u32 name_len;
983 u32 data_len;
984 u32 cur;
985 u32 len;
986 u32 total;
987 int slot;
988 int num;
989 u8 type;
990
Filipe Manana4395e0c2014-08-20 10:45:45 +0100991 /*
992 * Start with a small buffer (1 page). If later we end up needing more
993 * space, which can happen for xattrs on a fs with a leaf size greater
994 * then the page size, attempt to increase the buffer. Typically xattr
995 * values are small.
996 */
997 buf_len = PATH_MAX;
David Sterbae780b0d2016-01-18 18:42:13 +0100998 buf = kmalloc(buf_len, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +0200999 if (!buf) {
1000 ret = -ENOMEM;
1001 goto out;
1002 }
1003
Alexander Block31db9f72012-07-25 23:19:24 +02001004 eb = path->nodes[0];
1005 slot = path->slots[0];
Ross Kirkdd3cc162013-09-16 15:58:09 +01001006 item = btrfs_item_nr(slot);
Alexander Block31db9f72012-07-25 23:19:24 +02001007 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
1008 cur = 0;
1009 len = 0;
1010 total = btrfs_item_size(eb, item);
1011
1012 num = 0;
1013 while (cur < total) {
1014 name_len = btrfs_dir_name_len(eb, di);
1015 data_len = btrfs_dir_data_len(eb, di);
1016 type = btrfs_dir_type(eb, di);
1017 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
1018
Filipe Manana7e3ae332014-05-23 20:15:16 +01001019 if (type == BTRFS_FT_XATTR) {
1020 if (name_len > XATTR_NAME_MAX) {
1021 ret = -ENAMETOOLONG;
1022 goto out;
1023 }
Filipe Manana4395e0c2014-08-20 10:45:45 +01001024 if (name_len + data_len > BTRFS_MAX_XATTR_SIZE(root)) {
Filipe Manana7e3ae332014-05-23 20:15:16 +01001025 ret = -E2BIG;
1026 goto out;
1027 }
1028 } else {
1029 /*
1030 * Path too long
1031 */
Filipe Manana4395e0c2014-08-20 10:45:45 +01001032 if (name_len + data_len > PATH_MAX) {
Filipe Manana7e3ae332014-05-23 20:15:16 +01001033 ret = -ENAMETOOLONG;
1034 goto out;
1035 }
Alexander Block31db9f72012-07-25 23:19:24 +02001036 }
1037
Filipe Manana4395e0c2014-08-20 10:45:45 +01001038 if (name_len + data_len > buf_len) {
1039 buf_len = name_len + data_len;
1040 if (is_vmalloc_addr(buf)) {
1041 vfree(buf);
1042 buf = NULL;
1043 } else {
1044 char *tmp = krealloc(buf, buf_len,
David Sterbae780b0d2016-01-18 18:42:13 +01001045 GFP_KERNEL | __GFP_NOWARN);
Filipe Manana4395e0c2014-08-20 10:45:45 +01001046
1047 if (!tmp)
1048 kfree(buf);
1049 buf = tmp;
1050 }
1051 if (!buf) {
1052 buf = vmalloc(buf_len);
1053 if (!buf) {
1054 ret = -ENOMEM;
1055 goto out;
1056 }
1057 }
1058 }
1059
Alexander Block31db9f72012-07-25 23:19:24 +02001060 read_extent_buffer(eb, buf, (unsigned long)(di + 1),
1061 name_len + data_len);
1062
1063 len = sizeof(*di) + name_len + data_len;
1064 di = (struct btrfs_dir_item *)((char *)di + len);
1065 cur += len;
1066
1067 ret = iterate(num, &di_key, buf, name_len, buf + name_len,
1068 data_len, type, ctx);
1069 if (ret < 0)
1070 goto out;
1071 if (ret) {
1072 ret = 0;
1073 goto out;
1074 }
1075
1076 num++;
1077 }
1078
1079out:
Filipe Manana4395e0c2014-08-20 10:45:45 +01001080 kvfree(buf);
Alexander Block31db9f72012-07-25 23:19:24 +02001081 return ret;
1082}
1083
1084static int __copy_first_ref(int num, u64 dir, int index,
1085 struct fs_path *p, void *ctx)
1086{
1087 int ret;
1088 struct fs_path *pt = ctx;
1089
1090 ret = fs_path_copy(pt, p);
1091 if (ret < 0)
1092 return ret;
1093
1094 /* we want the first only */
1095 return 1;
1096}
1097
1098/*
1099 * Retrieve the first path of an inode. If an inode has more then one
1100 * ref/hardlink, this is ignored.
1101 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001102static int get_inode_path(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001103 u64 ino, struct fs_path *path)
1104{
1105 int ret;
1106 struct btrfs_key key, found_key;
1107 struct btrfs_path *p;
1108
1109 p = alloc_path_for_send();
1110 if (!p)
1111 return -ENOMEM;
1112
1113 fs_path_reset(path);
1114
1115 key.objectid = ino;
1116 key.type = BTRFS_INODE_REF_KEY;
1117 key.offset = 0;
1118
1119 ret = btrfs_search_slot_for_read(root, &key, p, 1, 0);
1120 if (ret < 0)
1121 goto out;
1122 if (ret) {
1123 ret = 1;
1124 goto out;
1125 }
1126 btrfs_item_key_to_cpu(p->nodes[0], &found_key, p->slots[0]);
1127 if (found_key.objectid != ino ||
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001128 (found_key.type != BTRFS_INODE_REF_KEY &&
1129 found_key.type != BTRFS_INODE_EXTREF_KEY)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001130 ret = -ENOENT;
1131 goto out;
1132 }
1133
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001134 ret = iterate_inode_ref(root, p, &found_key, 1,
1135 __copy_first_ref, path);
Alexander Block31db9f72012-07-25 23:19:24 +02001136 if (ret < 0)
1137 goto out;
1138 ret = 0;
1139
1140out:
1141 btrfs_free_path(p);
1142 return ret;
1143}
1144
1145struct backref_ctx {
1146 struct send_ctx *sctx;
1147
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001148 struct btrfs_path *path;
Alexander Block31db9f72012-07-25 23:19:24 +02001149 /* number of total found references */
1150 u64 found;
1151
1152 /*
1153 * used for clones found in send_root. clones found behind cur_objectid
1154 * and cur_offset are not considered as allowed clones.
1155 */
1156 u64 cur_objectid;
1157 u64 cur_offset;
1158
1159 /* may be truncated in case it's the last extent in a file */
1160 u64 extent_len;
1161
Filipe Manana619d8c42015-05-03 01:56:00 +01001162 /* data offset in the file extent item */
1163 u64 data_offset;
1164
Alexander Block31db9f72012-07-25 23:19:24 +02001165 /* Just to check for bugs in backref resolving */
Alexander Blockee849c02012-07-28 12:42:05 +02001166 int found_itself;
Alexander Block31db9f72012-07-25 23:19:24 +02001167};
1168
1169static int __clone_root_cmp_bsearch(const void *key, const void *elt)
1170{
Jan Schmidt995e01b2012-08-13 02:52:38 -06001171 u64 root = (u64)(uintptr_t)key;
Alexander Block31db9f72012-07-25 23:19:24 +02001172 struct clone_root *cr = (struct clone_root *)elt;
1173
1174 if (root < cr->root->objectid)
1175 return -1;
1176 if (root > cr->root->objectid)
1177 return 1;
1178 return 0;
1179}
1180
1181static int __clone_root_cmp_sort(const void *e1, const void *e2)
1182{
1183 struct clone_root *cr1 = (struct clone_root *)e1;
1184 struct clone_root *cr2 = (struct clone_root *)e2;
1185
1186 if (cr1->root->objectid < cr2->root->objectid)
1187 return -1;
1188 if (cr1->root->objectid > cr2->root->objectid)
1189 return 1;
1190 return 0;
1191}
1192
1193/*
1194 * Called for every backref that is found for the current extent.
Alexander Block766702e2012-07-28 14:11:31 +02001195 * Results are collected in sctx->clone_roots->ino/offset/found_refs
Alexander Block31db9f72012-07-25 23:19:24 +02001196 */
1197static int __iterate_backrefs(u64 ino, u64 offset, u64 root, void *ctx_)
1198{
1199 struct backref_ctx *bctx = ctx_;
1200 struct clone_root *found;
1201 int ret;
1202 u64 i_size;
1203
1204 /* First check if the root is in the list of accepted clone sources */
Jan Schmidt995e01b2012-08-13 02:52:38 -06001205 found = bsearch((void *)(uintptr_t)root, bctx->sctx->clone_roots,
Alexander Block31db9f72012-07-25 23:19:24 +02001206 bctx->sctx->clone_roots_cnt,
1207 sizeof(struct clone_root),
1208 __clone_root_cmp_bsearch);
1209 if (!found)
1210 return 0;
1211
1212 if (found->root == bctx->sctx->send_root &&
1213 ino == bctx->cur_objectid &&
1214 offset == bctx->cur_offset) {
Alexander Blockee849c02012-07-28 12:42:05 +02001215 bctx->found_itself = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02001216 }
1217
1218 /*
Alexander Block766702e2012-07-28 14:11:31 +02001219 * There are inodes that have extents that lie behind its i_size. Don't
Alexander Block31db9f72012-07-25 23:19:24 +02001220 * accept clones from these extents.
1221 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001222 ret = __get_inode_info(found->root, bctx->path, ino, &i_size, NULL, NULL,
1223 NULL, NULL, NULL);
1224 btrfs_release_path(bctx->path);
Alexander Block31db9f72012-07-25 23:19:24 +02001225 if (ret < 0)
1226 return ret;
1227
Filipe Manana619d8c42015-05-03 01:56:00 +01001228 if (offset + bctx->data_offset + bctx->extent_len > i_size)
Alexander Block31db9f72012-07-25 23:19:24 +02001229 return 0;
1230
1231 /*
1232 * Make sure we don't consider clones from send_root that are
1233 * behind the current inode/offset.
1234 */
1235 if (found->root == bctx->sctx->send_root) {
1236 /*
1237 * TODO for the moment we don't accept clones from the inode
1238 * that is currently send. We may change this when
1239 * BTRFS_IOC_CLONE_RANGE supports cloning from and to the same
1240 * file.
1241 */
1242 if (ino >= bctx->cur_objectid)
1243 return 0;
Alexander Blocke938c8a2012-07-28 16:33:49 +02001244#if 0
1245 if (ino > bctx->cur_objectid)
Alexander Block31db9f72012-07-25 23:19:24 +02001246 return 0;
Alexander Blocke938c8a2012-07-28 16:33:49 +02001247 if (offset + bctx->extent_len > bctx->cur_offset)
1248 return 0;
1249#endif
Alexander Block31db9f72012-07-25 23:19:24 +02001250 }
1251
1252 bctx->found++;
1253 found->found_refs++;
1254 if (ino < found->ino) {
1255 found->ino = ino;
1256 found->offset = offset;
1257 } else if (found->ino == ino) {
1258 /*
1259 * same extent found more then once in the same file.
1260 */
1261 if (found->offset > offset + bctx->extent_len)
1262 found->offset = offset;
1263 }
1264
1265 return 0;
1266}
1267
1268/*
Alexander Block766702e2012-07-28 14:11:31 +02001269 * Given an inode, offset and extent item, it finds a good clone for a clone
1270 * instruction. Returns -ENOENT when none could be found. The function makes
1271 * sure that the returned clone is usable at the point where sending is at the
1272 * moment. This means, that no clones are accepted which lie behind the current
1273 * inode+offset.
1274 *
Alexander Block31db9f72012-07-25 23:19:24 +02001275 * path must point to the extent item when called.
1276 */
1277static int find_extent_clone(struct send_ctx *sctx,
1278 struct btrfs_path *path,
1279 u64 ino, u64 data_offset,
1280 u64 ino_size,
1281 struct clone_root **found)
1282{
1283 int ret;
1284 int extent_type;
1285 u64 logical;
Chris Mason74dd17f2012-08-07 16:25:13 -04001286 u64 disk_byte;
Alexander Block31db9f72012-07-25 23:19:24 +02001287 u64 num_bytes;
1288 u64 extent_item_pos;
Liu Bo69917e42012-09-07 20:01:28 -06001289 u64 flags = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02001290 struct btrfs_file_extent_item *fi;
1291 struct extent_buffer *eb = path->nodes[0];
Alexander Block35075bb2012-07-28 12:44:34 +02001292 struct backref_ctx *backref_ctx = NULL;
Alexander Block31db9f72012-07-25 23:19:24 +02001293 struct clone_root *cur_clone_root;
1294 struct btrfs_key found_key;
1295 struct btrfs_path *tmp_path;
Chris Mason74dd17f2012-08-07 16:25:13 -04001296 int compressed;
Alexander Block31db9f72012-07-25 23:19:24 +02001297 u32 i;
1298
1299 tmp_path = alloc_path_for_send();
1300 if (!tmp_path)
1301 return -ENOMEM;
1302
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001303 /* We only use this path under the commit sem */
1304 tmp_path->need_commit_sem = 0;
1305
David Sterbae780b0d2016-01-18 18:42:13 +01001306 backref_ctx = kmalloc(sizeof(*backref_ctx), GFP_KERNEL);
Alexander Block35075bb2012-07-28 12:44:34 +02001307 if (!backref_ctx) {
1308 ret = -ENOMEM;
1309 goto out;
1310 }
1311
Josef Bacik3f8a18c2014-03-28 17:16:01 -04001312 backref_ctx->path = tmp_path;
1313
Alexander Block31db9f72012-07-25 23:19:24 +02001314 if (data_offset >= ino_size) {
1315 /*
1316 * There may be extents that lie behind the file's size.
1317 * I at least had this in combination with snapshotting while
1318 * writing large files.
1319 */
1320 ret = 0;
1321 goto out;
1322 }
1323
1324 fi = btrfs_item_ptr(eb, path->slots[0],
1325 struct btrfs_file_extent_item);
1326 extent_type = btrfs_file_extent_type(eb, fi);
1327 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1328 ret = -ENOENT;
1329 goto out;
1330 }
Chris Mason74dd17f2012-08-07 16:25:13 -04001331 compressed = btrfs_file_extent_compression(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001332
1333 num_bytes = btrfs_file_extent_num_bytes(eb, fi);
Chris Mason74dd17f2012-08-07 16:25:13 -04001334 disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
1335 if (disk_byte == 0) {
Alexander Block31db9f72012-07-25 23:19:24 +02001336 ret = -ENOENT;
1337 goto out;
1338 }
Chris Mason74dd17f2012-08-07 16:25:13 -04001339 logical = disk_byte + btrfs_file_extent_offset(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001340
Josef Bacik9e351cc2014-03-13 15:42:13 -04001341 down_read(&sctx->send_root->fs_info->commit_root_sem);
Liu Bo69917e42012-09-07 20:01:28 -06001342 ret = extent_from_logical(sctx->send_root->fs_info, disk_byte, tmp_path,
1343 &found_key, &flags);
Josef Bacik9e351cc2014-03-13 15:42:13 -04001344 up_read(&sctx->send_root->fs_info->commit_root_sem);
Alexander Block31db9f72012-07-25 23:19:24 +02001345 btrfs_release_path(tmp_path);
1346
1347 if (ret < 0)
1348 goto out;
Liu Bo69917e42012-09-07 20:01:28 -06001349 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Alexander Block31db9f72012-07-25 23:19:24 +02001350 ret = -EIO;
1351 goto out;
1352 }
1353
1354 /*
1355 * Setup the clone roots.
1356 */
1357 for (i = 0; i < sctx->clone_roots_cnt; i++) {
1358 cur_clone_root = sctx->clone_roots + i;
1359 cur_clone_root->ino = (u64)-1;
1360 cur_clone_root->offset = 0;
1361 cur_clone_root->found_refs = 0;
1362 }
1363
Alexander Block35075bb2012-07-28 12:44:34 +02001364 backref_ctx->sctx = sctx;
1365 backref_ctx->found = 0;
1366 backref_ctx->cur_objectid = ino;
1367 backref_ctx->cur_offset = data_offset;
1368 backref_ctx->found_itself = 0;
1369 backref_ctx->extent_len = num_bytes;
Filipe Manana619d8c42015-05-03 01:56:00 +01001370 /*
1371 * For non-compressed extents iterate_extent_inodes() gives us extent
1372 * offsets that already take into account the data offset, but not for
1373 * compressed extents, since the offset is logical and not relative to
1374 * the physical extent locations. We must take this into account to
1375 * avoid sending clone offsets that go beyond the source file's size,
1376 * which would result in the clone ioctl failing with -EINVAL on the
1377 * receiving end.
1378 */
1379 if (compressed == BTRFS_COMPRESS_NONE)
1380 backref_ctx->data_offset = 0;
1381 else
1382 backref_ctx->data_offset = btrfs_file_extent_offset(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001383
1384 /*
1385 * The last extent of a file may be too large due to page alignment.
1386 * We need to adjust extent_len in this case so that the checks in
1387 * __iterate_backrefs work.
1388 */
1389 if (data_offset + num_bytes >= ino_size)
Alexander Block35075bb2012-07-28 12:44:34 +02001390 backref_ctx->extent_len = ino_size - data_offset;
Alexander Block31db9f72012-07-25 23:19:24 +02001391
1392 /*
1393 * Now collect all backrefs.
1394 */
Chris Mason74dd17f2012-08-07 16:25:13 -04001395 if (compressed == BTRFS_COMPRESS_NONE)
1396 extent_item_pos = logical - found_key.objectid;
1397 else
1398 extent_item_pos = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02001399 ret = iterate_extent_inodes(sctx->send_root->fs_info,
1400 found_key.objectid, extent_item_pos, 1,
Alexander Block35075bb2012-07-28 12:44:34 +02001401 __iterate_backrefs, backref_ctx);
Chris Mason74dd17f2012-08-07 16:25:13 -04001402
Alexander Block31db9f72012-07-25 23:19:24 +02001403 if (ret < 0)
1404 goto out;
1405
Alexander Block35075bb2012-07-28 12:44:34 +02001406 if (!backref_ctx->found_itself) {
Alexander Block31db9f72012-07-25 23:19:24 +02001407 /* found a bug in backref code? */
1408 ret = -EIO;
Frank Holtonefe120a2013-12-20 11:37:06 -05001409 btrfs_err(sctx->send_root->fs_info, "did not find backref in "
Alexander Block31db9f72012-07-25 23:19:24 +02001410 "send_root. inode=%llu, offset=%llu, "
David Sterba351fd352014-05-15 16:48:20 +02001411 "disk_byte=%llu found extent=%llu",
Chris Mason74dd17f2012-08-07 16:25:13 -04001412 ino, data_offset, disk_byte, found_key.objectid);
Alexander Block31db9f72012-07-25 23:19:24 +02001413 goto out;
1414 }
1415
1416verbose_printk(KERN_DEBUG "btrfs: find_extent_clone: data_offset=%llu, "
1417 "ino=%llu, "
1418 "num_bytes=%llu, logical=%llu\n",
1419 data_offset, ino, num_bytes, logical);
1420
Alexander Block35075bb2012-07-28 12:44:34 +02001421 if (!backref_ctx->found)
Alexander Block31db9f72012-07-25 23:19:24 +02001422 verbose_printk("btrfs: no clones found\n");
1423
1424 cur_clone_root = NULL;
1425 for (i = 0; i < sctx->clone_roots_cnt; i++) {
1426 if (sctx->clone_roots[i].found_refs) {
1427 if (!cur_clone_root)
1428 cur_clone_root = sctx->clone_roots + i;
1429 else if (sctx->clone_roots[i].root == sctx->send_root)
1430 /* prefer clones from send_root over others */
1431 cur_clone_root = sctx->clone_roots + i;
Alexander Block31db9f72012-07-25 23:19:24 +02001432 }
1433
1434 }
1435
1436 if (cur_clone_root) {
1437 *found = cur_clone_root;
1438 ret = 0;
1439 } else {
1440 ret = -ENOENT;
1441 }
1442
1443out:
1444 btrfs_free_path(tmp_path);
Alexander Block35075bb2012-07-28 12:44:34 +02001445 kfree(backref_ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02001446 return ret;
1447}
1448
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001449static int read_symlink(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001450 u64 ino,
1451 struct fs_path *dest)
1452{
1453 int ret;
1454 struct btrfs_path *path;
1455 struct btrfs_key key;
1456 struct btrfs_file_extent_item *ei;
1457 u8 type;
1458 u8 compression;
1459 unsigned long off;
1460 int len;
1461
1462 path = alloc_path_for_send();
1463 if (!path)
1464 return -ENOMEM;
1465
1466 key.objectid = ino;
1467 key.type = BTRFS_EXTENT_DATA_KEY;
1468 key.offset = 0;
1469 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1470 if (ret < 0)
1471 goto out;
Filipe Mananaa8797192015-12-31 18:07:59 +00001472 if (ret) {
1473 /*
1474 * An empty symlink inode. Can happen in rare error paths when
1475 * creating a symlink (transaction committed before the inode
1476 * eviction handler removed the symlink inode items and a crash
1477 * happened in between or the subvol was snapshoted in between).
1478 * Print an informative message to dmesg/syslog so that the user
1479 * can delete the symlink.
1480 */
1481 btrfs_err(root->fs_info,
1482 "Found empty symlink inode %llu at root %llu",
1483 ino, root->root_key.objectid);
1484 ret = -EIO;
1485 goto out;
1486 }
Alexander Block31db9f72012-07-25 23:19:24 +02001487
1488 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
1489 struct btrfs_file_extent_item);
1490 type = btrfs_file_extent_type(path->nodes[0], ei);
1491 compression = btrfs_file_extent_compression(path->nodes[0], ei);
1492 BUG_ON(type != BTRFS_FILE_EXTENT_INLINE);
1493 BUG_ON(compression);
1494
1495 off = btrfs_file_extent_inline_start(ei);
Chris Mason514ac8a2014-01-03 21:07:00 -08001496 len = btrfs_file_extent_inline_len(path->nodes[0], path->slots[0], ei);
Alexander Block31db9f72012-07-25 23:19:24 +02001497
1498 ret = fs_path_add_from_extent_buffer(dest, path->nodes[0], off, len);
Alexander Block31db9f72012-07-25 23:19:24 +02001499
1500out:
1501 btrfs_free_path(path);
1502 return ret;
1503}
1504
1505/*
1506 * Helper function to generate a file name that is unique in the root of
1507 * send_root and parent_root. This is used to generate names for orphan inodes.
1508 */
1509static int gen_unique_name(struct send_ctx *sctx,
1510 u64 ino, u64 gen,
1511 struct fs_path *dest)
1512{
1513 int ret = 0;
1514 struct btrfs_path *path;
1515 struct btrfs_dir_item *di;
1516 char tmp[64];
1517 int len;
1518 u64 idx = 0;
1519
1520 path = alloc_path_for_send();
1521 if (!path)
1522 return -ENOMEM;
1523
1524 while (1) {
Filipe David Borba Mananaf74b86d2014-01-21 23:36:38 +00001525 len = snprintf(tmp, sizeof(tmp), "o%llu-%llu-%llu",
Alexander Block31db9f72012-07-25 23:19:24 +02001526 ino, gen, idx);
David Sterba64792f22014-02-03 18:24:09 +01001527 ASSERT(len < sizeof(tmp));
Alexander Block31db9f72012-07-25 23:19:24 +02001528
1529 di = btrfs_lookup_dir_item(NULL, sctx->send_root,
1530 path, BTRFS_FIRST_FREE_OBJECTID,
1531 tmp, strlen(tmp), 0);
1532 btrfs_release_path(path);
1533 if (IS_ERR(di)) {
1534 ret = PTR_ERR(di);
1535 goto out;
1536 }
1537 if (di) {
1538 /* not unique, try again */
1539 idx++;
1540 continue;
1541 }
1542
1543 if (!sctx->parent_root) {
1544 /* unique */
1545 ret = 0;
1546 break;
1547 }
1548
1549 di = btrfs_lookup_dir_item(NULL, sctx->parent_root,
1550 path, BTRFS_FIRST_FREE_OBJECTID,
1551 tmp, strlen(tmp), 0);
1552 btrfs_release_path(path);
1553 if (IS_ERR(di)) {
1554 ret = PTR_ERR(di);
1555 goto out;
1556 }
1557 if (di) {
1558 /* not unique, try again */
1559 idx++;
1560 continue;
1561 }
1562 /* unique */
1563 break;
1564 }
1565
1566 ret = fs_path_add(dest, tmp, strlen(tmp));
1567
1568out:
1569 btrfs_free_path(path);
1570 return ret;
1571}
1572
1573enum inode_state {
1574 inode_state_no_change,
1575 inode_state_will_create,
1576 inode_state_did_create,
1577 inode_state_will_delete,
1578 inode_state_did_delete,
1579};
1580
1581static int get_cur_inode_state(struct send_ctx *sctx, u64 ino, u64 gen)
1582{
1583 int ret;
1584 int left_ret;
1585 int right_ret;
1586 u64 left_gen;
1587 u64 right_gen;
1588
1589 ret = get_inode_info(sctx->send_root, ino, NULL, &left_gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001590 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001591 if (ret < 0 && ret != -ENOENT)
1592 goto out;
1593 left_ret = ret;
1594
1595 if (!sctx->parent_root) {
1596 right_ret = -ENOENT;
1597 } else {
1598 ret = get_inode_info(sctx->parent_root, ino, NULL, &right_gen,
Alexander Block85a7b332012-07-26 23:39:10 +02001599 NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001600 if (ret < 0 && ret != -ENOENT)
1601 goto out;
1602 right_ret = ret;
1603 }
1604
1605 if (!left_ret && !right_ret) {
Alexander Blocke938c8a2012-07-28 16:33:49 +02001606 if (left_gen == gen && right_gen == gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02001607 ret = inode_state_no_change;
Alexander Blocke938c8a2012-07-28 16:33:49 +02001608 } else if (left_gen == gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02001609 if (ino < sctx->send_progress)
1610 ret = inode_state_did_create;
1611 else
1612 ret = inode_state_will_create;
1613 } else if (right_gen == gen) {
1614 if (ino < sctx->send_progress)
1615 ret = inode_state_did_delete;
1616 else
1617 ret = inode_state_will_delete;
1618 } else {
1619 ret = -ENOENT;
1620 }
1621 } else if (!left_ret) {
1622 if (left_gen == gen) {
1623 if (ino < sctx->send_progress)
1624 ret = inode_state_did_create;
1625 else
1626 ret = inode_state_will_create;
1627 } else {
1628 ret = -ENOENT;
1629 }
1630 } else if (!right_ret) {
1631 if (right_gen == gen) {
1632 if (ino < sctx->send_progress)
1633 ret = inode_state_did_delete;
1634 else
1635 ret = inode_state_will_delete;
1636 } else {
1637 ret = -ENOENT;
1638 }
1639 } else {
1640 ret = -ENOENT;
1641 }
1642
1643out:
1644 return ret;
1645}
1646
1647static int is_inode_existent(struct send_ctx *sctx, u64 ino, u64 gen)
1648{
1649 int ret;
1650
1651 ret = get_cur_inode_state(sctx, ino, gen);
1652 if (ret < 0)
1653 goto out;
1654
1655 if (ret == inode_state_no_change ||
1656 ret == inode_state_did_create ||
1657 ret == inode_state_will_delete)
1658 ret = 1;
1659 else
1660 ret = 0;
1661
1662out:
1663 return ret;
1664}
1665
1666/*
1667 * Helper function to lookup a dir item in a dir.
1668 */
1669static int lookup_dir_item_inode(struct btrfs_root *root,
1670 u64 dir, const char *name, int name_len,
1671 u64 *found_inode,
1672 u8 *found_type)
1673{
1674 int ret = 0;
1675 struct btrfs_dir_item *di;
1676 struct btrfs_key key;
1677 struct btrfs_path *path;
1678
1679 path = alloc_path_for_send();
1680 if (!path)
1681 return -ENOMEM;
1682
1683 di = btrfs_lookup_dir_item(NULL, root, path,
1684 dir, name, name_len, 0);
1685 if (!di) {
1686 ret = -ENOENT;
1687 goto out;
1688 }
1689 if (IS_ERR(di)) {
1690 ret = PTR_ERR(di);
1691 goto out;
1692 }
1693 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
Filipe Manana1af56072014-05-25 04:49:24 +01001694 if (key.type == BTRFS_ROOT_ITEM_KEY) {
1695 ret = -ENOENT;
1696 goto out;
1697 }
Alexander Block31db9f72012-07-25 23:19:24 +02001698 *found_inode = key.objectid;
1699 *found_type = btrfs_dir_type(path->nodes[0], di);
1700
1701out:
1702 btrfs_free_path(path);
1703 return ret;
1704}
1705
Alexander Block766702e2012-07-28 14:11:31 +02001706/*
1707 * Looks up the first btrfs_inode_ref of a given ino. It returns the parent dir,
1708 * generation of the parent dir and the name of the dir entry.
1709 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001710static int get_first_ref(struct btrfs_root *root, u64 ino,
Alexander Block31db9f72012-07-25 23:19:24 +02001711 u64 *dir, u64 *dir_gen, struct fs_path *name)
1712{
1713 int ret;
1714 struct btrfs_key key;
1715 struct btrfs_key found_key;
1716 struct btrfs_path *path;
Alexander Block31db9f72012-07-25 23:19:24 +02001717 int len;
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001718 u64 parent_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001719
1720 path = alloc_path_for_send();
1721 if (!path)
1722 return -ENOMEM;
1723
1724 key.objectid = ino;
1725 key.type = BTRFS_INODE_REF_KEY;
1726 key.offset = 0;
1727
1728 ret = btrfs_search_slot_for_read(root, &key, path, 1, 0);
1729 if (ret < 0)
1730 goto out;
1731 if (!ret)
1732 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1733 path->slots[0]);
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001734 if (ret || found_key.objectid != ino ||
1735 (found_key.type != BTRFS_INODE_REF_KEY &&
1736 found_key.type != BTRFS_INODE_EXTREF_KEY)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001737 ret = -ENOENT;
1738 goto out;
1739 }
1740
Filipe Manana51a60252014-05-13 22:01:02 +01001741 if (found_key.type == BTRFS_INODE_REF_KEY) {
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001742 struct btrfs_inode_ref *iref;
1743 iref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1744 struct btrfs_inode_ref);
1745 len = btrfs_inode_ref_name_len(path->nodes[0], iref);
1746 ret = fs_path_add_from_extent_buffer(name, path->nodes[0],
1747 (unsigned long)(iref + 1),
1748 len);
1749 parent_dir = found_key.offset;
1750 } else {
1751 struct btrfs_inode_extref *extref;
1752 extref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1753 struct btrfs_inode_extref);
1754 len = btrfs_inode_extref_name_len(path->nodes[0], extref);
1755 ret = fs_path_add_from_extent_buffer(name, path->nodes[0],
1756 (unsigned long)&extref->name, len);
1757 parent_dir = btrfs_inode_extref_parent(path->nodes[0], extref);
1758 }
Alexander Block31db9f72012-07-25 23:19:24 +02001759 if (ret < 0)
1760 goto out;
1761 btrfs_release_path(path);
1762
Filipe Mananab46ab972014-03-21 12:46:54 +00001763 if (dir_gen) {
1764 ret = get_inode_info(root, parent_dir, NULL, dir_gen, NULL,
1765 NULL, NULL, NULL);
1766 if (ret < 0)
1767 goto out;
1768 }
Alexander Block31db9f72012-07-25 23:19:24 +02001769
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001770 *dir = parent_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001771
1772out:
1773 btrfs_free_path(path);
1774 return ret;
1775}
1776
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001777static int is_first_ref(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001778 u64 ino, u64 dir,
1779 const char *name, int name_len)
1780{
1781 int ret;
1782 struct fs_path *tmp_name;
1783 u64 tmp_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001784
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001785 tmp_name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02001786 if (!tmp_name)
1787 return -ENOMEM;
1788
Filipe Mananab46ab972014-03-21 12:46:54 +00001789 ret = get_first_ref(root, ino, &tmp_dir, NULL, tmp_name);
Alexander Block31db9f72012-07-25 23:19:24 +02001790 if (ret < 0)
1791 goto out;
1792
Alexander Blockb9291af2012-07-28 11:07:18 +02001793 if (dir != tmp_dir || name_len != fs_path_len(tmp_name)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001794 ret = 0;
1795 goto out;
1796 }
1797
Alexander Blocke938c8a2012-07-28 16:33:49 +02001798 ret = !memcmp(tmp_name->start, name, name_len);
Alexander Block31db9f72012-07-25 23:19:24 +02001799
1800out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001801 fs_path_free(tmp_name);
Alexander Block31db9f72012-07-25 23:19:24 +02001802 return ret;
1803}
1804
Alexander Block766702e2012-07-28 14:11:31 +02001805/*
1806 * Used by process_recorded_refs to determine if a new ref would overwrite an
1807 * already existing ref. In case it detects an overwrite, it returns the
1808 * inode/gen in who_ino/who_gen.
1809 * When an overwrite is detected, process_recorded_refs does proper orphanizing
1810 * to make sure later references to the overwritten inode are possible.
1811 * Orphanizing is however only required for the first ref of an inode.
1812 * process_recorded_refs does an additional is_first_ref check to see if
1813 * orphanizing is really required.
1814 */
Alexander Block31db9f72012-07-25 23:19:24 +02001815static int will_overwrite_ref(struct send_ctx *sctx, u64 dir, u64 dir_gen,
1816 const char *name, int name_len,
1817 u64 *who_ino, u64 *who_gen)
1818{
1819 int ret = 0;
Josef Bacikebdad912013-08-06 16:47:48 -04001820 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +02001821 u64 other_inode = 0;
1822 u8 other_type = 0;
1823
1824 if (!sctx->parent_root)
1825 goto out;
1826
1827 ret = is_inode_existent(sctx, dir, dir_gen);
1828 if (ret <= 0)
1829 goto out;
1830
Josef Bacikebdad912013-08-06 16:47:48 -04001831 /*
1832 * If we have a parent root we need to verify that the parent dir was
Nicholas D Steeves01327612016-05-19 21:18:45 -04001833 * not deleted and then re-created, if it was then we have no overwrite
Josef Bacikebdad912013-08-06 16:47:48 -04001834 * and we can just unlink this entry.
1835 */
1836 if (sctx->parent_root) {
1837 ret = get_inode_info(sctx->parent_root, dir, NULL, &gen, NULL,
1838 NULL, NULL, NULL);
1839 if (ret < 0 && ret != -ENOENT)
1840 goto out;
1841 if (ret) {
1842 ret = 0;
1843 goto out;
1844 }
1845 if (gen != dir_gen)
1846 goto out;
1847 }
1848
Alexander Block31db9f72012-07-25 23:19:24 +02001849 ret = lookup_dir_item_inode(sctx->parent_root, dir, name, name_len,
1850 &other_inode, &other_type);
1851 if (ret < 0 && ret != -ENOENT)
1852 goto out;
1853 if (ret) {
1854 ret = 0;
1855 goto out;
1856 }
1857
Alexander Block766702e2012-07-28 14:11:31 +02001858 /*
1859 * Check if the overwritten ref was already processed. If yes, the ref
1860 * was already unlinked/moved, so we can safely assume that we will not
1861 * overwrite anything at this point in time.
1862 */
Robbie Ko801bec32015-06-23 18:39:46 +08001863 if (other_inode > sctx->send_progress ||
1864 is_waiting_for_move(sctx, other_inode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001865 ret = get_inode_info(sctx->parent_root, other_inode, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001866 who_gen, NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001867 if (ret < 0)
1868 goto out;
1869
1870 ret = 1;
1871 *who_ino = other_inode;
1872 } else {
1873 ret = 0;
1874 }
1875
1876out:
1877 return ret;
1878}
1879
Alexander Block766702e2012-07-28 14:11:31 +02001880/*
1881 * Checks if the ref was overwritten by an already processed inode. This is
1882 * used by __get_cur_name_and_parent to find out if the ref was orphanized and
1883 * thus the orphan name needs be used.
1884 * process_recorded_refs also uses it to avoid unlinking of refs that were
1885 * overwritten.
1886 */
Alexander Block31db9f72012-07-25 23:19:24 +02001887static int did_overwrite_ref(struct send_ctx *sctx,
1888 u64 dir, u64 dir_gen,
1889 u64 ino, u64 ino_gen,
1890 const char *name, int name_len)
1891{
1892 int ret = 0;
1893 u64 gen;
1894 u64 ow_inode;
1895 u8 other_type;
1896
1897 if (!sctx->parent_root)
1898 goto out;
1899
1900 ret = is_inode_existent(sctx, dir, dir_gen);
1901 if (ret <= 0)
1902 goto out;
1903
1904 /* check if the ref was overwritten by another ref */
1905 ret = lookup_dir_item_inode(sctx->send_root, dir, name, name_len,
1906 &ow_inode, &other_type);
1907 if (ret < 0 && ret != -ENOENT)
1908 goto out;
1909 if (ret) {
1910 /* was never and will never be overwritten */
1911 ret = 0;
1912 goto out;
1913 }
1914
1915 ret = get_inode_info(sctx->send_root, ow_inode, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001916 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001917 if (ret < 0)
1918 goto out;
1919
1920 if (ow_inode == ino && gen == ino_gen) {
1921 ret = 0;
1922 goto out;
1923 }
1924
Filipe Manana8b191a62015-04-09 14:09:14 +01001925 /*
1926 * We know that it is or will be overwritten. Check this now.
1927 * The current inode being processed might have been the one that caused
Filipe Mananab786f162015-09-26 15:30:23 +01001928 * inode 'ino' to be orphanized, therefore check if ow_inode matches
1929 * the current inode being processed.
Filipe Manana8b191a62015-04-09 14:09:14 +01001930 */
Filipe Mananab786f162015-09-26 15:30:23 +01001931 if ((ow_inode < sctx->send_progress) ||
1932 (ino != sctx->cur_ino && ow_inode == sctx->cur_ino &&
1933 gen == sctx->cur_inode_gen))
Alexander Block31db9f72012-07-25 23:19:24 +02001934 ret = 1;
1935 else
1936 ret = 0;
1937
1938out:
1939 return ret;
1940}
1941
Alexander Block766702e2012-07-28 14:11:31 +02001942/*
1943 * Same as did_overwrite_ref, but also checks if it is the first ref of an inode
1944 * that got overwritten. This is used by process_recorded_refs to determine
1945 * if it has to use the path as returned by get_cur_path or the orphan name.
1946 */
Alexander Block31db9f72012-07-25 23:19:24 +02001947static int did_overwrite_first_ref(struct send_ctx *sctx, u64 ino, u64 gen)
1948{
1949 int ret = 0;
1950 struct fs_path *name = NULL;
1951 u64 dir;
1952 u64 dir_gen;
1953
1954 if (!sctx->parent_root)
1955 goto out;
1956
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001957 name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02001958 if (!name)
1959 return -ENOMEM;
1960
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001961 ret = get_first_ref(sctx->parent_root, ino, &dir, &dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02001962 if (ret < 0)
1963 goto out;
1964
1965 ret = did_overwrite_ref(sctx, dir, dir_gen, ino, gen,
1966 name->start, fs_path_len(name));
Alexander Block31db9f72012-07-25 23:19:24 +02001967
1968out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001969 fs_path_free(name);
Alexander Block31db9f72012-07-25 23:19:24 +02001970 return ret;
1971}
1972
Alexander Block766702e2012-07-28 14:11:31 +02001973/*
1974 * Insert a name cache entry. On 32bit kernels the radix tree index is 32bit,
1975 * so we need to do some special handling in case we have clashes. This function
1976 * takes care of this with the help of name_cache_entry::radix_list.
Alexander Block5dc67d02012-08-01 12:07:43 +02001977 * In case of error, nce is kfreed.
Alexander Block766702e2012-07-28 14:11:31 +02001978 */
Alexander Block31db9f72012-07-25 23:19:24 +02001979static int name_cache_insert(struct send_ctx *sctx,
1980 struct name_cache_entry *nce)
1981{
1982 int ret = 0;
Alexander Block7e0926f2012-07-28 14:20:58 +02001983 struct list_head *nce_head;
Alexander Block31db9f72012-07-25 23:19:24 +02001984
Alexander Block7e0926f2012-07-28 14:20:58 +02001985 nce_head = radix_tree_lookup(&sctx->name_cache,
1986 (unsigned long)nce->ino);
1987 if (!nce_head) {
David Sterbae780b0d2016-01-18 18:42:13 +01001988 nce_head = kmalloc(sizeof(*nce_head), GFP_KERNEL);
Tsutomu Itohcfa7a9c2012-12-17 06:38:51 +00001989 if (!nce_head) {
1990 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02001991 return -ENOMEM;
Tsutomu Itohcfa7a9c2012-12-17 06:38:51 +00001992 }
Alexander Block7e0926f2012-07-28 14:20:58 +02001993 INIT_LIST_HEAD(nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02001994
Alexander Block7e0926f2012-07-28 14:20:58 +02001995 ret = radix_tree_insert(&sctx->name_cache, nce->ino, nce_head);
Alexander Block5dc67d02012-08-01 12:07:43 +02001996 if (ret < 0) {
1997 kfree(nce_head);
1998 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02001999 return ret;
Alexander Block5dc67d02012-08-01 12:07:43 +02002000 }
Alexander Block31db9f72012-07-25 23:19:24 +02002001 }
Alexander Block7e0926f2012-07-28 14:20:58 +02002002 list_add_tail(&nce->radix_list, nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02002003 list_add_tail(&nce->list, &sctx->name_cache_list);
2004 sctx->name_cache_size++;
2005
2006 return ret;
2007}
2008
2009static void name_cache_delete(struct send_ctx *sctx,
2010 struct name_cache_entry *nce)
2011{
Alexander Block7e0926f2012-07-28 14:20:58 +02002012 struct list_head *nce_head;
Alexander Block31db9f72012-07-25 23:19:24 +02002013
Alexander Block7e0926f2012-07-28 14:20:58 +02002014 nce_head = radix_tree_lookup(&sctx->name_cache,
2015 (unsigned long)nce->ino);
David Sterba57fb8912014-02-03 19:24:40 +01002016 if (!nce_head) {
2017 btrfs_err(sctx->send_root->fs_info,
2018 "name_cache_delete lookup failed ino %llu cache size %d, leaking memory",
2019 nce->ino, sctx->name_cache_size);
2020 }
Alexander Block31db9f72012-07-25 23:19:24 +02002021
Alexander Block7e0926f2012-07-28 14:20:58 +02002022 list_del(&nce->radix_list);
Alexander Block31db9f72012-07-25 23:19:24 +02002023 list_del(&nce->list);
Alexander Block31db9f72012-07-25 23:19:24 +02002024 sctx->name_cache_size--;
Alexander Block7e0926f2012-07-28 14:20:58 +02002025
David Sterba57fb8912014-02-03 19:24:40 +01002026 /*
2027 * We may not get to the final release of nce_head if the lookup fails
2028 */
2029 if (nce_head && list_empty(nce_head)) {
Alexander Block7e0926f2012-07-28 14:20:58 +02002030 radix_tree_delete(&sctx->name_cache, (unsigned long)nce->ino);
2031 kfree(nce_head);
2032 }
Alexander Block31db9f72012-07-25 23:19:24 +02002033}
2034
2035static struct name_cache_entry *name_cache_search(struct send_ctx *sctx,
2036 u64 ino, u64 gen)
2037{
Alexander Block7e0926f2012-07-28 14:20:58 +02002038 struct list_head *nce_head;
2039 struct name_cache_entry *cur;
Alexander Block31db9f72012-07-25 23:19:24 +02002040
Alexander Block7e0926f2012-07-28 14:20:58 +02002041 nce_head = radix_tree_lookup(&sctx->name_cache, (unsigned long)ino);
2042 if (!nce_head)
Alexander Block31db9f72012-07-25 23:19:24 +02002043 return NULL;
2044
Alexander Block7e0926f2012-07-28 14:20:58 +02002045 list_for_each_entry(cur, nce_head, radix_list) {
2046 if (cur->ino == ino && cur->gen == gen)
2047 return cur;
2048 }
Alexander Block31db9f72012-07-25 23:19:24 +02002049 return NULL;
2050}
2051
Alexander Block766702e2012-07-28 14:11:31 +02002052/*
2053 * Removes the entry from the list and adds it back to the end. This marks the
2054 * entry as recently used so that name_cache_clean_unused does not remove it.
2055 */
Alexander Block31db9f72012-07-25 23:19:24 +02002056static void name_cache_used(struct send_ctx *sctx, struct name_cache_entry *nce)
2057{
2058 list_del(&nce->list);
2059 list_add_tail(&nce->list, &sctx->name_cache_list);
2060}
2061
Alexander Block766702e2012-07-28 14:11:31 +02002062/*
2063 * Remove some entries from the beginning of name_cache_list.
2064 */
Alexander Block31db9f72012-07-25 23:19:24 +02002065static void name_cache_clean_unused(struct send_ctx *sctx)
2066{
2067 struct name_cache_entry *nce;
2068
2069 if (sctx->name_cache_size < SEND_CTX_NAME_CACHE_CLEAN_SIZE)
2070 return;
2071
2072 while (sctx->name_cache_size > SEND_CTX_MAX_NAME_CACHE_SIZE) {
2073 nce = list_entry(sctx->name_cache_list.next,
2074 struct name_cache_entry, list);
2075 name_cache_delete(sctx, nce);
2076 kfree(nce);
2077 }
2078}
2079
2080static void name_cache_free(struct send_ctx *sctx)
2081{
2082 struct name_cache_entry *nce;
Alexander Block31db9f72012-07-25 23:19:24 +02002083
Alexander Blocke938c8a2012-07-28 16:33:49 +02002084 while (!list_empty(&sctx->name_cache_list)) {
2085 nce = list_entry(sctx->name_cache_list.next,
2086 struct name_cache_entry, list);
Alexander Block31db9f72012-07-25 23:19:24 +02002087 name_cache_delete(sctx, nce);
Alexander Block17589bd2012-07-28 14:13:35 +02002088 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02002089 }
2090}
2091
Alexander Block766702e2012-07-28 14:11:31 +02002092/*
2093 * Used by get_cur_path for each ref up to the root.
2094 * Returns 0 if it succeeded.
2095 * Returns 1 if the inode is not existent or got overwritten. In that case, the
2096 * name is an orphan name. This instructs get_cur_path to stop iterating. If 1
2097 * is returned, parent_ino/parent_gen are not guaranteed to be valid.
2098 * Returns <0 in case of error.
2099 */
Alexander Block31db9f72012-07-25 23:19:24 +02002100static int __get_cur_name_and_parent(struct send_ctx *sctx,
2101 u64 ino, u64 gen,
2102 u64 *parent_ino,
2103 u64 *parent_gen,
2104 struct fs_path *dest)
2105{
2106 int ret;
2107 int nce_ret;
Alexander Block31db9f72012-07-25 23:19:24 +02002108 struct name_cache_entry *nce = NULL;
2109
Alexander Block766702e2012-07-28 14:11:31 +02002110 /*
2111 * First check if we already did a call to this function with the same
2112 * ino/gen. If yes, check if the cache entry is still up-to-date. If yes
2113 * return the cached result.
2114 */
Alexander Block31db9f72012-07-25 23:19:24 +02002115 nce = name_cache_search(sctx, ino, gen);
2116 if (nce) {
2117 if (ino < sctx->send_progress && nce->need_later_update) {
2118 name_cache_delete(sctx, nce);
2119 kfree(nce);
2120 nce = NULL;
2121 } else {
2122 name_cache_used(sctx, nce);
2123 *parent_ino = nce->parent_ino;
2124 *parent_gen = nce->parent_gen;
2125 ret = fs_path_add(dest, nce->name, nce->name_len);
2126 if (ret < 0)
2127 goto out;
2128 ret = nce->ret;
2129 goto out;
2130 }
2131 }
2132
Alexander Block766702e2012-07-28 14:11:31 +02002133 /*
2134 * If the inode is not existent yet, add the orphan name and return 1.
2135 * This should only happen for the parent dir that we determine in
2136 * __record_new_ref
2137 */
Alexander Block31db9f72012-07-25 23:19:24 +02002138 ret = is_inode_existent(sctx, ino, gen);
2139 if (ret < 0)
2140 goto out;
2141
2142 if (!ret) {
2143 ret = gen_unique_name(sctx, ino, gen, dest);
2144 if (ret < 0)
2145 goto out;
2146 ret = 1;
2147 goto out_cache;
2148 }
2149
Alexander Block766702e2012-07-28 14:11:31 +02002150 /*
2151 * Depending on whether the inode was already processed or not, use
2152 * send_root or parent_root for ref lookup.
2153 */
Filipe Mananabf0d1f42014-02-21 00:01:32 +00002154 if (ino < sctx->send_progress)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002155 ret = get_first_ref(sctx->send_root, ino,
2156 parent_ino, parent_gen, dest);
Alexander Block31db9f72012-07-25 23:19:24 +02002157 else
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002158 ret = get_first_ref(sctx->parent_root, ino,
2159 parent_ino, parent_gen, dest);
Alexander Block31db9f72012-07-25 23:19:24 +02002160 if (ret < 0)
2161 goto out;
2162
Alexander Block766702e2012-07-28 14:11:31 +02002163 /*
2164 * Check if the ref was overwritten by an inode's ref that was processed
2165 * earlier. If yes, treat as orphan and return 1.
2166 */
Alexander Block31db9f72012-07-25 23:19:24 +02002167 ret = did_overwrite_ref(sctx, *parent_ino, *parent_gen, ino, gen,
2168 dest->start, dest->end - dest->start);
2169 if (ret < 0)
2170 goto out;
2171 if (ret) {
2172 fs_path_reset(dest);
2173 ret = gen_unique_name(sctx, ino, gen, dest);
2174 if (ret < 0)
2175 goto out;
2176 ret = 1;
2177 }
2178
2179out_cache:
Alexander Block766702e2012-07-28 14:11:31 +02002180 /*
2181 * Store the result of the lookup in the name cache.
2182 */
David Sterbae780b0d2016-01-18 18:42:13 +01002183 nce = kmalloc(sizeof(*nce) + fs_path_len(dest) + 1, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002184 if (!nce) {
2185 ret = -ENOMEM;
2186 goto out;
2187 }
2188
2189 nce->ino = ino;
2190 nce->gen = gen;
2191 nce->parent_ino = *parent_ino;
2192 nce->parent_gen = *parent_gen;
2193 nce->name_len = fs_path_len(dest);
2194 nce->ret = ret;
2195 strcpy(nce->name, dest->start);
Alexander Block31db9f72012-07-25 23:19:24 +02002196
2197 if (ino < sctx->send_progress)
2198 nce->need_later_update = 0;
2199 else
2200 nce->need_later_update = 1;
2201
2202 nce_ret = name_cache_insert(sctx, nce);
2203 if (nce_ret < 0)
2204 ret = nce_ret;
2205 name_cache_clean_unused(sctx);
2206
2207out:
Alexander Block31db9f72012-07-25 23:19:24 +02002208 return ret;
2209}
2210
2211/*
2212 * Magic happens here. This function returns the first ref to an inode as it
2213 * would look like while receiving the stream at this point in time.
2214 * We walk the path up to the root. For every inode in between, we check if it
2215 * was already processed/sent. If yes, we continue with the parent as found
2216 * in send_root. If not, we continue with the parent as found in parent_root.
2217 * If we encounter an inode that was deleted at this point in time, we use the
2218 * inodes "orphan" name instead of the real name and stop. Same with new inodes
2219 * that were not created yet and overwritten inodes/refs.
2220 *
2221 * When do we have have orphan inodes:
2222 * 1. When an inode is freshly created and thus no valid refs are available yet
2223 * 2. When a directory lost all it's refs (deleted) but still has dir items
2224 * inside which were not processed yet (pending for move/delete). If anyone
2225 * tried to get the path to the dir items, it would get a path inside that
2226 * orphan directory.
2227 * 3. When an inode is moved around or gets new links, it may overwrite the ref
2228 * of an unprocessed inode. If in that case the first ref would be
2229 * overwritten, the overwritten inode gets "orphanized". Later when we
2230 * process this overwritten inode, it is restored at a new place by moving
2231 * the orphan inode.
2232 *
2233 * sctx->send_progress tells this function at which point in time receiving
2234 * would be.
2235 */
2236static int get_cur_path(struct send_ctx *sctx, u64 ino, u64 gen,
2237 struct fs_path *dest)
2238{
2239 int ret = 0;
2240 struct fs_path *name = NULL;
2241 u64 parent_inode = 0;
2242 u64 parent_gen = 0;
2243 int stop = 0;
2244
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002245 name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002246 if (!name) {
2247 ret = -ENOMEM;
2248 goto out;
2249 }
2250
2251 dest->reversed = 1;
2252 fs_path_reset(dest);
2253
2254 while (!stop && ino != BTRFS_FIRST_FREE_OBJECTID) {
Filipe Manana8b191a62015-04-09 14:09:14 +01002255 struct waiting_dir_move *wdm;
2256
Alexander Block31db9f72012-07-25 23:19:24 +02002257 fs_path_reset(name);
2258
Filipe Manana9dc44212014-02-19 14:31:44 +00002259 if (is_waiting_for_rm(sctx, ino)) {
2260 ret = gen_unique_name(sctx, ino, gen, name);
2261 if (ret < 0)
2262 goto out;
2263 ret = fs_path_add_path(dest, name);
2264 break;
2265 }
2266
Filipe Manana8b191a62015-04-09 14:09:14 +01002267 wdm = get_waiting_dir_move(sctx, ino);
2268 if (wdm && wdm->orphanized) {
2269 ret = gen_unique_name(sctx, ino, gen, name);
2270 stop = 1;
2271 } else if (wdm) {
Filipe Mananabf0d1f42014-02-21 00:01:32 +00002272 ret = get_first_ref(sctx->parent_root, ino,
2273 &parent_inode, &parent_gen, name);
2274 } else {
2275 ret = __get_cur_name_and_parent(sctx, ino, gen,
2276 &parent_inode,
2277 &parent_gen, name);
2278 if (ret)
2279 stop = 1;
2280 }
2281
Alexander Block31db9f72012-07-25 23:19:24 +02002282 if (ret < 0)
2283 goto out;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002284
Alexander Block31db9f72012-07-25 23:19:24 +02002285 ret = fs_path_add_path(dest, name);
2286 if (ret < 0)
2287 goto out;
2288
2289 ino = parent_inode;
2290 gen = parent_gen;
2291 }
2292
2293out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002294 fs_path_free(name);
Alexander Block31db9f72012-07-25 23:19:24 +02002295 if (!ret)
2296 fs_path_unreverse(dest);
2297 return ret;
2298}
2299
2300/*
Alexander Block31db9f72012-07-25 23:19:24 +02002301 * Sends a BTRFS_SEND_C_SUBVOL command/item to userspace
2302 */
2303static int send_subvol_begin(struct send_ctx *sctx)
2304{
2305 int ret;
2306 struct btrfs_root *send_root = sctx->send_root;
2307 struct btrfs_root *parent_root = sctx->parent_root;
2308 struct btrfs_path *path;
2309 struct btrfs_key key;
2310 struct btrfs_root_ref *ref;
2311 struct extent_buffer *leaf;
2312 char *name = NULL;
2313 int namelen;
2314
Wang Shilongffcfaf82014-01-15 00:26:43 +08002315 path = btrfs_alloc_path();
Alexander Block31db9f72012-07-25 23:19:24 +02002316 if (!path)
2317 return -ENOMEM;
2318
David Sterbae780b0d2016-01-18 18:42:13 +01002319 name = kmalloc(BTRFS_PATH_NAME_MAX, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002320 if (!name) {
2321 btrfs_free_path(path);
2322 return -ENOMEM;
2323 }
2324
2325 key.objectid = send_root->objectid;
2326 key.type = BTRFS_ROOT_BACKREF_KEY;
2327 key.offset = 0;
2328
2329 ret = btrfs_search_slot_for_read(send_root->fs_info->tree_root,
2330 &key, path, 1, 0);
2331 if (ret < 0)
2332 goto out;
2333 if (ret) {
2334 ret = -ENOENT;
2335 goto out;
2336 }
2337
2338 leaf = path->nodes[0];
2339 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2340 if (key.type != BTRFS_ROOT_BACKREF_KEY ||
2341 key.objectid != send_root->objectid) {
2342 ret = -ENOENT;
2343 goto out;
2344 }
2345 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
2346 namelen = btrfs_root_ref_name_len(leaf, ref);
2347 read_extent_buffer(leaf, name, (unsigned long)(ref + 1), namelen);
2348 btrfs_release_path(path);
2349
Alexander Block31db9f72012-07-25 23:19:24 +02002350 if (parent_root) {
2351 ret = begin_cmd(sctx, BTRFS_SEND_C_SNAPSHOT);
2352 if (ret < 0)
2353 goto out;
2354 } else {
2355 ret = begin_cmd(sctx, BTRFS_SEND_C_SUBVOL);
2356 if (ret < 0)
2357 goto out;
2358 }
2359
2360 TLV_PUT_STRING(sctx, BTRFS_SEND_A_PATH, name, namelen);
Robin Ruedeb96b1db2015-09-30 21:23:33 +02002361
2362 if (!btrfs_is_empty_uuid(sctx->send_root->root_item.received_uuid))
2363 TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID,
2364 sctx->send_root->root_item.received_uuid);
2365 else
2366 TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID,
2367 sctx->send_root->root_item.uuid);
2368
Alexander Block31db9f72012-07-25 23:19:24 +02002369 TLV_PUT_U64(sctx, BTRFS_SEND_A_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00002370 le64_to_cpu(sctx->send_root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02002371 if (parent_root) {
Josef Bacik37b8d272015-06-04 17:17:25 -04002372 if (!btrfs_is_empty_uuid(parent_root->root_item.received_uuid))
2373 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
2374 parent_root->root_item.received_uuid);
2375 else
2376 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
2377 parent_root->root_item.uuid);
Alexander Block31db9f72012-07-25 23:19:24 +02002378 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00002379 le64_to_cpu(sctx->parent_root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02002380 }
2381
2382 ret = send_cmd(sctx);
2383
2384tlv_put_failure:
2385out:
2386 btrfs_free_path(path);
2387 kfree(name);
2388 return ret;
2389}
2390
2391static int send_truncate(struct send_ctx *sctx, u64 ino, u64 gen, u64 size)
2392{
2393 int ret = 0;
2394 struct fs_path *p;
2395
2396verbose_printk("btrfs: send_truncate %llu size=%llu\n", ino, size);
2397
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002398 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002399 if (!p)
2400 return -ENOMEM;
2401
2402 ret = begin_cmd(sctx, BTRFS_SEND_C_TRUNCATE);
2403 if (ret < 0)
2404 goto out;
2405
2406 ret = get_cur_path(sctx, ino, gen, p);
2407 if (ret < 0)
2408 goto out;
2409 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2410 TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, size);
2411
2412 ret = send_cmd(sctx);
2413
2414tlv_put_failure:
2415out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002416 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002417 return ret;
2418}
2419
2420static int send_chmod(struct send_ctx *sctx, u64 ino, u64 gen, u64 mode)
2421{
2422 int ret = 0;
2423 struct fs_path *p;
2424
2425verbose_printk("btrfs: send_chmod %llu mode=%llu\n", ino, mode);
2426
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002427 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002428 if (!p)
2429 return -ENOMEM;
2430
2431 ret = begin_cmd(sctx, BTRFS_SEND_C_CHMOD);
2432 if (ret < 0)
2433 goto out;
2434
2435 ret = get_cur_path(sctx, ino, gen, p);
2436 if (ret < 0)
2437 goto out;
2438 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2439 TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode & 07777);
2440
2441 ret = send_cmd(sctx);
2442
2443tlv_put_failure:
2444out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002445 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002446 return ret;
2447}
2448
2449static int send_chown(struct send_ctx *sctx, u64 ino, u64 gen, u64 uid, u64 gid)
2450{
2451 int ret = 0;
2452 struct fs_path *p;
2453
2454verbose_printk("btrfs: send_chown %llu uid=%llu, gid=%llu\n", ino, uid, gid);
2455
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002456 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002457 if (!p)
2458 return -ENOMEM;
2459
2460 ret = begin_cmd(sctx, BTRFS_SEND_C_CHOWN);
2461 if (ret < 0)
2462 goto out;
2463
2464 ret = get_cur_path(sctx, ino, gen, p);
2465 if (ret < 0)
2466 goto out;
2467 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2468 TLV_PUT_U64(sctx, BTRFS_SEND_A_UID, uid);
2469 TLV_PUT_U64(sctx, BTRFS_SEND_A_GID, gid);
2470
2471 ret = send_cmd(sctx);
2472
2473tlv_put_failure:
2474out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002475 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002476 return ret;
2477}
2478
2479static int send_utimes(struct send_ctx *sctx, u64 ino, u64 gen)
2480{
2481 int ret = 0;
2482 struct fs_path *p = NULL;
2483 struct btrfs_inode_item *ii;
2484 struct btrfs_path *path = NULL;
2485 struct extent_buffer *eb;
2486 struct btrfs_key key;
2487 int slot;
2488
2489verbose_printk("btrfs: send_utimes %llu\n", ino);
2490
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002491 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002492 if (!p)
2493 return -ENOMEM;
2494
2495 path = alloc_path_for_send();
2496 if (!path) {
2497 ret = -ENOMEM;
2498 goto out;
2499 }
2500
2501 key.objectid = ino;
2502 key.type = BTRFS_INODE_ITEM_KEY;
2503 key.offset = 0;
2504 ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0);
2505 if (ret < 0)
2506 goto out;
2507
2508 eb = path->nodes[0];
2509 slot = path->slots[0];
2510 ii = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
2511
2512 ret = begin_cmd(sctx, BTRFS_SEND_C_UTIMES);
2513 if (ret < 0)
2514 goto out;
2515
2516 ret = get_cur_path(sctx, ino, gen, p);
2517 if (ret < 0)
2518 goto out;
2519 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
David Sterbaa937b972014-12-12 17:39:12 +01002520 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_ATIME, eb, &ii->atime);
2521 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_MTIME, eb, &ii->mtime);
2522 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_CTIME, eb, &ii->ctime);
Alexander Block766702e2012-07-28 14:11:31 +02002523 /* TODO Add otime support when the otime patches get into upstream */
Alexander Block31db9f72012-07-25 23:19:24 +02002524
2525 ret = send_cmd(sctx);
2526
2527tlv_put_failure:
2528out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002529 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002530 btrfs_free_path(path);
2531 return ret;
2532}
2533
2534/*
2535 * Sends a BTRFS_SEND_C_MKXXX or SYMLINK command to user space. We don't have
2536 * a valid path yet because we did not process the refs yet. So, the inode
2537 * is created as orphan.
2538 */
Alexander Block1f4692d2012-07-28 10:42:24 +02002539static int send_create_inode(struct send_ctx *sctx, u64 ino)
Alexander Block31db9f72012-07-25 23:19:24 +02002540{
2541 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02002542 struct fs_path *p;
Alexander Block31db9f72012-07-25 23:19:24 +02002543 int cmd;
Alexander Block1f4692d2012-07-28 10:42:24 +02002544 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +02002545 u64 mode;
Alexander Block1f4692d2012-07-28 10:42:24 +02002546 u64 rdev;
Alexander Block31db9f72012-07-25 23:19:24 +02002547
Alexander Block1f4692d2012-07-28 10:42:24 +02002548verbose_printk("btrfs: send_create_inode %llu\n", ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002549
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002550 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002551 if (!p)
2552 return -ENOMEM;
2553
Liu Bo644d1942014-02-27 17:29:01 +08002554 if (ino != sctx->cur_ino) {
2555 ret = get_inode_info(sctx->send_root, ino, NULL, &gen, &mode,
2556 NULL, NULL, &rdev);
2557 if (ret < 0)
2558 goto out;
2559 } else {
2560 gen = sctx->cur_inode_gen;
2561 mode = sctx->cur_inode_mode;
2562 rdev = sctx->cur_inode_rdev;
2563 }
Alexander Block31db9f72012-07-25 23:19:24 +02002564
Alexander Blocke938c8a2012-07-28 16:33:49 +02002565 if (S_ISREG(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002566 cmd = BTRFS_SEND_C_MKFILE;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002567 } else if (S_ISDIR(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002568 cmd = BTRFS_SEND_C_MKDIR;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002569 } else if (S_ISLNK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002570 cmd = BTRFS_SEND_C_SYMLINK;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002571 } else if (S_ISCHR(mode) || S_ISBLK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002572 cmd = BTRFS_SEND_C_MKNOD;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002573 } else if (S_ISFIFO(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002574 cmd = BTRFS_SEND_C_MKFIFO;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002575 } else if (S_ISSOCK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002576 cmd = BTRFS_SEND_C_MKSOCK;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002577 } else {
David Sterbaf14d1042015-10-08 11:37:06 +02002578 btrfs_warn(sctx->send_root->fs_info, "unexpected inode type %o",
Alexander Block31db9f72012-07-25 23:19:24 +02002579 (int)(mode & S_IFMT));
2580 ret = -ENOTSUPP;
2581 goto out;
2582 }
2583
2584 ret = begin_cmd(sctx, cmd);
2585 if (ret < 0)
2586 goto out;
2587
Alexander Block1f4692d2012-07-28 10:42:24 +02002588 ret = gen_unique_name(sctx, ino, gen, p);
Alexander Block31db9f72012-07-25 23:19:24 +02002589 if (ret < 0)
2590 goto out;
2591
2592 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
Alexander Block1f4692d2012-07-28 10:42:24 +02002593 TLV_PUT_U64(sctx, BTRFS_SEND_A_INO, ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002594
2595 if (S_ISLNK(mode)) {
2596 fs_path_reset(p);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002597 ret = read_symlink(sctx->send_root, ino, p);
Alexander Block31db9f72012-07-25 23:19:24 +02002598 if (ret < 0)
2599 goto out;
2600 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, p);
2601 } else if (S_ISCHR(mode) || S_ISBLK(mode) ||
2602 S_ISFIFO(mode) || S_ISSOCK(mode)) {
Arne Jansend79e5042012-10-15 18:28:46 +00002603 TLV_PUT_U64(sctx, BTRFS_SEND_A_RDEV, new_encode_dev(rdev));
2604 TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode);
Alexander Block31db9f72012-07-25 23:19:24 +02002605 }
2606
2607 ret = send_cmd(sctx);
2608 if (ret < 0)
2609 goto out;
2610
2611
2612tlv_put_failure:
2613out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002614 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002615 return ret;
2616}
2617
Alexander Block1f4692d2012-07-28 10:42:24 +02002618/*
2619 * We need some special handling for inodes that get processed before the parent
2620 * directory got created. See process_recorded_refs for details.
2621 * This function does the check if we already created the dir out of order.
2622 */
2623static int did_create_dir(struct send_ctx *sctx, u64 dir)
2624{
2625 int ret = 0;
2626 struct btrfs_path *path = NULL;
2627 struct btrfs_key key;
2628 struct btrfs_key found_key;
2629 struct btrfs_key di_key;
2630 struct extent_buffer *eb;
2631 struct btrfs_dir_item *di;
2632 int slot;
2633
2634 path = alloc_path_for_send();
2635 if (!path) {
2636 ret = -ENOMEM;
2637 goto out;
2638 }
2639
2640 key.objectid = dir;
2641 key.type = BTRFS_DIR_INDEX_KEY;
2642 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002643 ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0);
2644 if (ret < 0)
2645 goto out;
2646
Alexander Block1f4692d2012-07-28 10:42:24 +02002647 while (1) {
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002648 eb = path->nodes[0];
2649 slot = path->slots[0];
2650 if (slot >= btrfs_header_nritems(eb)) {
2651 ret = btrfs_next_leaf(sctx->send_root, path);
2652 if (ret < 0) {
2653 goto out;
2654 } else if (ret > 0) {
2655 ret = 0;
2656 break;
2657 }
2658 continue;
Alexander Block1f4692d2012-07-28 10:42:24 +02002659 }
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002660
2661 btrfs_item_key_to_cpu(eb, &found_key, slot);
2662 if (found_key.objectid != key.objectid ||
Alexander Block1f4692d2012-07-28 10:42:24 +02002663 found_key.type != key.type) {
2664 ret = 0;
2665 goto out;
2666 }
2667
2668 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
2669 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
2670
Josef Bacika0525412013-08-12 10:56:14 -04002671 if (di_key.type != BTRFS_ROOT_ITEM_KEY &&
2672 di_key.objectid < sctx->send_progress) {
Alexander Block1f4692d2012-07-28 10:42:24 +02002673 ret = 1;
2674 goto out;
2675 }
2676
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002677 path->slots[0]++;
Alexander Block1f4692d2012-07-28 10:42:24 +02002678 }
2679
2680out:
2681 btrfs_free_path(path);
2682 return ret;
2683}
2684
2685/*
2686 * Only creates the inode if it is:
2687 * 1. Not a directory
2688 * 2. Or a directory which was not created already due to out of order
2689 * directories. See did_create_dir and process_recorded_refs for details.
2690 */
2691static int send_create_inode_if_needed(struct send_ctx *sctx)
2692{
2693 int ret;
2694
2695 if (S_ISDIR(sctx->cur_inode_mode)) {
2696 ret = did_create_dir(sctx, sctx->cur_ino);
2697 if (ret < 0)
2698 goto out;
2699 if (ret) {
2700 ret = 0;
2701 goto out;
2702 }
2703 }
2704
2705 ret = send_create_inode(sctx, sctx->cur_ino);
2706 if (ret < 0)
2707 goto out;
2708
2709out:
2710 return ret;
2711}
2712
Alexander Block31db9f72012-07-25 23:19:24 +02002713struct recorded_ref {
2714 struct list_head list;
2715 char *dir_path;
2716 char *name;
2717 struct fs_path *full_path;
2718 u64 dir;
2719 u64 dir_gen;
2720 int dir_path_len;
2721 int name_len;
2722};
2723
2724/*
2725 * We need to process new refs before deleted refs, but compare_tree gives us
2726 * everything mixed. So we first record all refs and later process them.
2727 * This function is a helper to record one ref.
2728 */
Liu Boa4d96d62014-03-03 21:31:03 +08002729static int __record_ref(struct list_head *head, u64 dir,
Alexander Block31db9f72012-07-25 23:19:24 +02002730 u64 dir_gen, struct fs_path *path)
2731{
2732 struct recorded_ref *ref;
Alexander Block31db9f72012-07-25 23:19:24 +02002733
David Sterbae780b0d2016-01-18 18:42:13 +01002734 ref = kmalloc(sizeof(*ref), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02002735 if (!ref)
2736 return -ENOMEM;
2737
2738 ref->dir = dir;
2739 ref->dir_gen = dir_gen;
2740 ref->full_path = path;
2741
Andy Shevchenkoed848852013-08-21 10:32:13 +03002742 ref->name = (char *)kbasename(ref->full_path->start);
2743 ref->name_len = ref->full_path->end - ref->name;
2744 ref->dir_path = ref->full_path->start;
2745 if (ref->name == ref->full_path->start)
Alexander Block31db9f72012-07-25 23:19:24 +02002746 ref->dir_path_len = 0;
Andy Shevchenkoed848852013-08-21 10:32:13 +03002747 else
Alexander Block31db9f72012-07-25 23:19:24 +02002748 ref->dir_path_len = ref->full_path->end -
2749 ref->full_path->start - 1 - ref->name_len;
Alexander Block31db9f72012-07-25 23:19:24 +02002750
2751 list_add_tail(&ref->list, head);
2752 return 0;
2753}
2754
Josef Bacikba5e8f22013-08-16 16:52:55 -04002755static int dup_ref(struct recorded_ref *ref, struct list_head *list)
2756{
2757 struct recorded_ref *new;
2758
David Sterbae780b0d2016-01-18 18:42:13 +01002759 new = kmalloc(sizeof(*ref), GFP_KERNEL);
Josef Bacikba5e8f22013-08-16 16:52:55 -04002760 if (!new)
2761 return -ENOMEM;
2762
2763 new->dir = ref->dir;
2764 new->dir_gen = ref->dir_gen;
2765 new->full_path = NULL;
2766 INIT_LIST_HEAD(&new->list);
2767 list_add_tail(&new->list, list);
2768 return 0;
2769}
2770
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002771static void __free_recorded_refs(struct list_head *head)
Alexander Block31db9f72012-07-25 23:19:24 +02002772{
2773 struct recorded_ref *cur;
Alexander Block31db9f72012-07-25 23:19:24 +02002774
Alexander Blocke938c8a2012-07-28 16:33:49 +02002775 while (!list_empty(head)) {
2776 cur = list_entry(head->next, struct recorded_ref, list);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002777 fs_path_free(cur->full_path);
Alexander Blocke938c8a2012-07-28 16:33:49 +02002778 list_del(&cur->list);
Alexander Block31db9f72012-07-25 23:19:24 +02002779 kfree(cur);
2780 }
Alexander Block31db9f72012-07-25 23:19:24 +02002781}
2782
2783static void free_recorded_refs(struct send_ctx *sctx)
2784{
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002785 __free_recorded_refs(&sctx->new_refs);
2786 __free_recorded_refs(&sctx->deleted_refs);
Alexander Block31db9f72012-07-25 23:19:24 +02002787}
2788
2789/*
Alexander Block766702e2012-07-28 14:11:31 +02002790 * Renames/moves a file/dir to its orphan name. Used when the first
Alexander Block31db9f72012-07-25 23:19:24 +02002791 * ref of an unprocessed inode gets overwritten and for all non empty
2792 * directories.
2793 */
2794static int orphanize_inode(struct send_ctx *sctx, u64 ino, u64 gen,
2795 struct fs_path *path)
2796{
2797 int ret;
2798 struct fs_path *orphan;
2799
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002800 orphan = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002801 if (!orphan)
2802 return -ENOMEM;
2803
2804 ret = gen_unique_name(sctx, ino, gen, orphan);
2805 if (ret < 0)
2806 goto out;
2807
2808 ret = send_rename(sctx, path, orphan);
2809
2810out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002811 fs_path_free(orphan);
Alexander Block31db9f72012-07-25 23:19:24 +02002812 return ret;
2813}
2814
Filipe Manana9dc44212014-02-19 14:31:44 +00002815static struct orphan_dir_info *
2816add_orphan_dir_info(struct send_ctx *sctx, u64 dir_ino)
2817{
2818 struct rb_node **p = &sctx->orphan_dirs.rb_node;
2819 struct rb_node *parent = NULL;
2820 struct orphan_dir_info *entry, *odi;
2821
David Sterbae780b0d2016-01-18 18:42:13 +01002822 odi = kmalloc(sizeof(*odi), GFP_KERNEL);
Filipe Manana9dc44212014-02-19 14:31:44 +00002823 if (!odi)
2824 return ERR_PTR(-ENOMEM);
2825 odi->ino = dir_ino;
2826 odi->gen = 0;
2827
2828 while (*p) {
2829 parent = *p;
2830 entry = rb_entry(parent, struct orphan_dir_info, node);
2831 if (dir_ino < entry->ino) {
2832 p = &(*p)->rb_left;
2833 } else if (dir_ino > entry->ino) {
2834 p = &(*p)->rb_right;
2835 } else {
2836 kfree(odi);
2837 return entry;
2838 }
2839 }
2840
2841 rb_link_node(&odi->node, parent, p);
2842 rb_insert_color(&odi->node, &sctx->orphan_dirs);
2843 return odi;
2844}
2845
2846static struct orphan_dir_info *
2847get_orphan_dir_info(struct send_ctx *sctx, u64 dir_ino)
2848{
2849 struct rb_node *n = sctx->orphan_dirs.rb_node;
2850 struct orphan_dir_info *entry;
2851
2852 while (n) {
2853 entry = rb_entry(n, struct orphan_dir_info, node);
2854 if (dir_ino < entry->ino)
2855 n = n->rb_left;
2856 else if (dir_ino > entry->ino)
2857 n = n->rb_right;
2858 else
2859 return entry;
2860 }
2861 return NULL;
2862}
2863
2864static int is_waiting_for_rm(struct send_ctx *sctx, u64 dir_ino)
2865{
2866 struct orphan_dir_info *odi = get_orphan_dir_info(sctx, dir_ino);
2867
2868 return odi != NULL;
2869}
2870
2871static void free_orphan_dir_info(struct send_ctx *sctx,
2872 struct orphan_dir_info *odi)
2873{
2874 if (!odi)
2875 return;
2876 rb_erase(&odi->node, &sctx->orphan_dirs);
2877 kfree(odi);
2878}
2879
Alexander Block31db9f72012-07-25 23:19:24 +02002880/*
2881 * Returns 1 if a directory can be removed at this point in time.
2882 * We check this by iterating all dir items and checking if the inode behind
2883 * the dir item was already processed.
2884 */
Filipe Manana9dc44212014-02-19 14:31:44 +00002885static int can_rmdir(struct send_ctx *sctx, u64 dir, u64 dir_gen,
2886 u64 send_progress)
Alexander Block31db9f72012-07-25 23:19:24 +02002887{
2888 int ret = 0;
2889 struct btrfs_root *root = sctx->parent_root;
2890 struct btrfs_path *path;
2891 struct btrfs_key key;
2892 struct btrfs_key found_key;
2893 struct btrfs_key loc;
2894 struct btrfs_dir_item *di;
2895
Alexander Block6d85ed02012-08-01 14:48:59 +02002896 /*
2897 * Don't try to rmdir the top/root subvolume dir.
2898 */
2899 if (dir == BTRFS_FIRST_FREE_OBJECTID)
2900 return 0;
2901
Alexander Block31db9f72012-07-25 23:19:24 +02002902 path = alloc_path_for_send();
2903 if (!path)
2904 return -ENOMEM;
2905
2906 key.objectid = dir;
2907 key.type = BTRFS_DIR_INDEX_KEY;
2908 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002909 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2910 if (ret < 0)
2911 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02002912
2913 while (1) {
Filipe Manana9dc44212014-02-19 14:31:44 +00002914 struct waiting_dir_move *dm;
2915
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002916 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
2917 ret = btrfs_next_leaf(root, path);
2918 if (ret < 0)
2919 goto out;
2920 else if (ret > 0)
2921 break;
2922 continue;
Alexander Block31db9f72012-07-25 23:19:24 +02002923 }
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002924 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2925 path->slots[0]);
2926 if (found_key.objectid != key.objectid ||
2927 found_key.type != key.type)
Alexander Block31db9f72012-07-25 23:19:24 +02002928 break;
Alexander Block31db9f72012-07-25 23:19:24 +02002929
2930 di = btrfs_item_ptr(path->nodes[0], path->slots[0],
2931 struct btrfs_dir_item);
2932 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &loc);
2933
Filipe Manana9dc44212014-02-19 14:31:44 +00002934 dm = get_waiting_dir_move(sctx, loc.objectid);
2935 if (dm) {
2936 struct orphan_dir_info *odi;
2937
2938 odi = add_orphan_dir_info(sctx, dir);
2939 if (IS_ERR(odi)) {
2940 ret = PTR_ERR(odi);
2941 goto out;
2942 }
2943 odi->gen = dir_gen;
2944 dm->rmdir_ino = dir;
2945 ret = 0;
2946 goto out;
2947 }
2948
Alexander Block31db9f72012-07-25 23:19:24 +02002949 if (loc.objectid > send_progress) {
2950 ret = 0;
2951 goto out;
2952 }
2953
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00002954 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02002955 }
2956
2957 ret = 1;
2958
2959out:
2960 btrfs_free_path(path);
2961 return ret;
2962}
2963
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002964static int is_waiting_for_move(struct send_ctx *sctx, u64 ino)
2965{
Filipe Manana9dc44212014-02-19 14:31:44 +00002966 struct waiting_dir_move *entry = get_waiting_dir_move(sctx, ino);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002967
Filipe Manana9dc44212014-02-19 14:31:44 +00002968 return entry != NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002969}
2970
Filipe Manana8b191a62015-04-09 14:09:14 +01002971static int add_waiting_dir_move(struct send_ctx *sctx, u64 ino, bool orphanized)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002972{
2973 struct rb_node **p = &sctx->waiting_dir_moves.rb_node;
2974 struct rb_node *parent = NULL;
2975 struct waiting_dir_move *entry, *dm;
2976
David Sterbae780b0d2016-01-18 18:42:13 +01002977 dm = kmalloc(sizeof(*dm), GFP_KERNEL);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002978 if (!dm)
2979 return -ENOMEM;
2980 dm->ino = ino;
Filipe Manana9dc44212014-02-19 14:31:44 +00002981 dm->rmdir_ino = 0;
Filipe Manana8b191a62015-04-09 14:09:14 +01002982 dm->orphanized = orphanized;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00002983
2984 while (*p) {
2985 parent = *p;
2986 entry = rb_entry(parent, struct waiting_dir_move, node);
2987 if (ino < entry->ino) {
2988 p = &(*p)->rb_left;
2989 } else if (ino > entry->ino) {
2990 p = &(*p)->rb_right;
2991 } else {
2992 kfree(dm);
2993 return -EEXIST;
2994 }
2995 }
2996
2997 rb_link_node(&dm->node, parent, p);
2998 rb_insert_color(&dm->node, &sctx->waiting_dir_moves);
2999 return 0;
3000}
3001
Filipe Manana9dc44212014-02-19 14:31:44 +00003002static struct waiting_dir_move *
3003get_waiting_dir_move(struct send_ctx *sctx, u64 ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003004{
3005 struct rb_node *n = sctx->waiting_dir_moves.rb_node;
3006 struct waiting_dir_move *entry;
3007
3008 while (n) {
3009 entry = rb_entry(n, struct waiting_dir_move, node);
Filipe Manana9dc44212014-02-19 14:31:44 +00003010 if (ino < entry->ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003011 n = n->rb_left;
Filipe Manana9dc44212014-02-19 14:31:44 +00003012 else if (ino > entry->ino)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003013 n = n->rb_right;
Filipe Manana9dc44212014-02-19 14:31:44 +00003014 else
3015 return entry;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003016 }
Filipe Manana9dc44212014-02-19 14:31:44 +00003017 return NULL;
3018}
3019
3020static void free_waiting_dir_move(struct send_ctx *sctx,
3021 struct waiting_dir_move *dm)
3022{
3023 if (!dm)
3024 return;
3025 rb_erase(&dm->node, &sctx->waiting_dir_moves);
3026 kfree(dm);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003027}
3028
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003029static int add_pending_dir_move(struct send_ctx *sctx,
3030 u64 ino,
3031 u64 ino_gen,
Filipe Mananaf9594922014-03-27 20:14:01 +00003032 u64 parent_ino,
3033 struct list_head *new_refs,
Filipe Manana84471e22015-02-28 22:29:22 +00003034 struct list_head *deleted_refs,
3035 const bool is_orphan)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003036{
3037 struct rb_node **p = &sctx->pending_dir_moves.rb_node;
3038 struct rb_node *parent = NULL;
Chris Mason73b802f2014-03-21 15:30:44 -07003039 struct pending_dir_move *entry = NULL, *pm;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003040 struct recorded_ref *cur;
3041 int exists = 0;
3042 int ret;
3043
David Sterbae780b0d2016-01-18 18:42:13 +01003044 pm = kmalloc(sizeof(*pm), GFP_KERNEL);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003045 if (!pm)
3046 return -ENOMEM;
3047 pm->parent_ino = parent_ino;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003048 pm->ino = ino;
3049 pm->gen = ino_gen;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003050 INIT_LIST_HEAD(&pm->list);
3051 INIT_LIST_HEAD(&pm->update_refs);
3052 RB_CLEAR_NODE(&pm->node);
3053
3054 while (*p) {
3055 parent = *p;
3056 entry = rb_entry(parent, struct pending_dir_move, node);
3057 if (parent_ino < entry->parent_ino) {
3058 p = &(*p)->rb_left;
3059 } else if (parent_ino > entry->parent_ino) {
3060 p = &(*p)->rb_right;
3061 } else {
3062 exists = 1;
3063 break;
3064 }
3065 }
3066
Filipe Mananaf9594922014-03-27 20:14:01 +00003067 list_for_each_entry(cur, deleted_refs, list) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003068 ret = dup_ref(cur, &pm->update_refs);
3069 if (ret < 0)
3070 goto out;
3071 }
Filipe Mananaf9594922014-03-27 20:14:01 +00003072 list_for_each_entry(cur, new_refs, list) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003073 ret = dup_ref(cur, &pm->update_refs);
3074 if (ret < 0)
3075 goto out;
3076 }
3077
Filipe Manana8b191a62015-04-09 14:09:14 +01003078 ret = add_waiting_dir_move(sctx, pm->ino, is_orphan);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003079 if (ret)
3080 goto out;
3081
3082 if (exists) {
3083 list_add_tail(&pm->list, &entry->list);
3084 } else {
3085 rb_link_node(&pm->node, parent, p);
3086 rb_insert_color(&pm->node, &sctx->pending_dir_moves);
3087 }
3088 ret = 0;
3089out:
3090 if (ret) {
3091 __free_recorded_refs(&pm->update_refs);
3092 kfree(pm);
3093 }
3094 return ret;
3095}
3096
3097static struct pending_dir_move *get_pending_dir_moves(struct send_ctx *sctx,
3098 u64 parent_ino)
3099{
3100 struct rb_node *n = sctx->pending_dir_moves.rb_node;
3101 struct pending_dir_move *entry;
3102
3103 while (n) {
3104 entry = rb_entry(n, struct pending_dir_move, node);
3105 if (parent_ino < entry->parent_ino)
3106 n = n->rb_left;
3107 else if (parent_ino > entry->parent_ino)
3108 n = n->rb_right;
3109 else
3110 return entry;
3111 }
3112 return NULL;
3113}
3114
Robbie Ko801bec32015-06-23 18:39:46 +08003115static int path_loop(struct send_ctx *sctx, struct fs_path *name,
3116 u64 ino, u64 gen, u64 *ancestor_ino)
3117{
3118 int ret = 0;
3119 u64 parent_inode = 0;
3120 u64 parent_gen = 0;
3121 u64 start_ino = ino;
3122
3123 *ancestor_ino = 0;
3124 while (ino != BTRFS_FIRST_FREE_OBJECTID) {
3125 fs_path_reset(name);
3126
3127 if (is_waiting_for_rm(sctx, ino))
3128 break;
3129 if (is_waiting_for_move(sctx, ino)) {
3130 if (*ancestor_ino == 0)
3131 *ancestor_ino = ino;
3132 ret = get_first_ref(sctx->parent_root, ino,
3133 &parent_inode, &parent_gen, name);
3134 } else {
3135 ret = __get_cur_name_and_parent(sctx, ino, gen,
3136 &parent_inode,
3137 &parent_gen, name);
3138 if (ret > 0) {
3139 ret = 0;
3140 break;
3141 }
3142 }
3143 if (ret < 0)
3144 break;
3145 if (parent_inode == start_ino) {
3146 ret = 1;
3147 if (*ancestor_ino == 0)
3148 *ancestor_ino = ino;
3149 break;
3150 }
3151 ino = parent_inode;
3152 gen = parent_gen;
3153 }
3154 return ret;
3155}
3156
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003157static int apply_dir_move(struct send_ctx *sctx, struct pending_dir_move *pm)
3158{
3159 struct fs_path *from_path = NULL;
3160 struct fs_path *to_path = NULL;
Filipe Manana2b863a12014-02-16 13:43:11 +00003161 struct fs_path *name = NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003162 u64 orig_progress = sctx->send_progress;
3163 struct recorded_ref *cur;
Filipe Manana2b863a12014-02-16 13:43:11 +00003164 u64 parent_ino, parent_gen;
Filipe Manana9dc44212014-02-19 14:31:44 +00003165 struct waiting_dir_move *dm = NULL;
3166 u64 rmdir_ino = 0;
Robbie Ko801bec32015-06-23 18:39:46 +08003167 u64 ancestor;
3168 bool is_orphan;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003169 int ret;
3170
Filipe Manana2b863a12014-02-16 13:43:11 +00003171 name = fs_path_alloc();
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003172 from_path = fs_path_alloc();
Filipe Manana2b863a12014-02-16 13:43:11 +00003173 if (!name || !from_path) {
3174 ret = -ENOMEM;
3175 goto out;
3176 }
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003177
Filipe Manana9dc44212014-02-19 14:31:44 +00003178 dm = get_waiting_dir_move(sctx, pm->ino);
3179 ASSERT(dm);
3180 rmdir_ino = dm->rmdir_ino;
Robbie Ko801bec32015-06-23 18:39:46 +08003181 is_orphan = dm->orphanized;
Filipe Manana9dc44212014-02-19 14:31:44 +00003182 free_waiting_dir_move(sctx, dm);
Filipe Manana2b863a12014-02-16 13:43:11 +00003183
Robbie Ko801bec32015-06-23 18:39:46 +08003184 if (is_orphan) {
Filipe Manana84471e22015-02-28 22:29:22 +00003185 ret = gen_unique_name(sctx, pm->ino,
3186 pm->gen, from_path);
3187 } else {
3188 ret = get_first_ref(sctx->parent_root, pm->ino,
3189 &parent_ino, &parent_gen, name);
3190 if (ret < 0)
3191 goto out;
3192 ret = get_cur_path(sctx, parent_ino, parent_gen,
3193 from_path);
3194 if (ret < 0)
3195 goto out;
3196 ret = fs_path_add_path(from_path, name);
3197 }
Filipe Mananac992ec92014-03-22 17:15:24 +00003198 if (ret < 0)
3199 goto out;
3200
Filipe Mananaf9594922014-03-27 20:14:01 +00003201 sctx->send_progress = sctx->cur_ino + 1;
Robbie Ko801bec32015-06-23 18:39:46 +08003202 ret = path_loop(sctx, name, pm->ino, pm->gen, &ancestor);
3203 if (ret) {
3204 LIST_HEAD(deleted_refs);
3205 ASSERT(ancestor > BTRFS_FIRST_FREE_OBJECTID);
3206 ret = add_pending_dir_move(sctx, pm->ino, pm->gen, ancestor,
3207 &pm->update_refs, &deleted_refs,
3208 is_orphan);
3209 if (ret < 0)
3210 goto out;
3211 if (rmdir_ino) {
3212 dm = get_waiting_dir_move(sctx, pm->ino);
3213 ASSERT(dm);
3214 dm->rmdir_ino = rmdir_ino;
3215 }
3216 goto out;
3217 }
Filipe Mananac992ec92014-03-22 17:15:24 +00003218 fs_path_reset(name);
3219 to_path = name;
3220 name = NULL;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003221 ret = get_cur_path(sctx, pm->ino, pm->gen, to_path);
3222 if (ret < 0)
3223 goto out;
3224
3225 ret = send_rename(sctx, from_path, to_path);
3226 if (ret < 0)
3227 goto out;
3228
Filipe Manana9dc44212014-02-19 14:31:44 +00003229 if (rmdir_ino) {
3230 struct orphan_dir_info *odi;
3231
3232 odi = get_orphan_dir_info(sctx, rmdir_ino);
3233 if (!odi) {
3234 /* already deleted */
3235 goto finish;
3236 }
3237 ret = can_rmdir(sctx, rmdir_ino, odi->gen, sctx->cur_ino + 1);
3238 if (ret < 0)
3239 goto out;
3240 if (!ret)
3241 goto finish;
3242
3243 name = fs_path_alloc();
3244 if (!name) {
3245 ret = -ENOMEM;
3246 goto out;
3247 }
3248 ret = get_cur_path(sctx, rmdir_ino, odi->gen, name);
3249 if (ret < 0)
3250 goto out;
3251 ret = send_rmdir(sctx, name);
3252 if (ret < 0)
3253 goto out;
3254 free_orphan_dir_info(sctx, odi);
3255 }
3256
3257finish:
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003258 ret = send_utimes(sctx, pm->ino, pm->gen);
3259 if (ret < 0)
3260 goto out;
3261
3262 /*
3263 * After rename/move, need to update the utimes of both new parent(s)
3264 * and old parent(s).
3265 */
3266 list_for_each_entry(cur, &pm->update_refs, list) {
Filipe Manana9dc44212014-02-19 14:31:44 +00003267 if (cur->dir == rmdir_ino)
3268 continue;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003269 ret = send_utimes(sctx, cur->dir, cur->dir_gen);
3270 if (ret < 0)
3271 goto out;
3272 }
3273
3274out:
Filipe Manana2b863a12014-02-16 13:43:11 +00003275 fs_path_free(name);
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003276 fs_path_free(from_path);
3277 fs_path_free(to_path);
3278 sctx->send_progress = orig_progress;
3279
3280 return ret;
3281}
3282
3283static void free_pending_move(struct send_ctx *sctx, struct pending_dir_move *m)
3284{
3285 if (!list_empty(&m->list))
3286 list_del(&m->list);
3287 if (!RB_EMPTY_NODE(&m->node))
3288 rb_erase(&m->node, &sctx->pending_dir_moves);
3289 __free_recorded_refs(&m->update_refs);
3290 kfree(m);
3291}
3292
3293static void tail_append_pending_moves(struct pending_dir_move *moves,
3294 struct list_head *stack)
3295{
3296 if (list_empty(&moves->list)) {
3297 list_add_tail(&moves->list, stack);
3298 } else {
3299 LIST_HEAD(list);
3300 list_splice_init(&moves->list, &list);
3301 list_add_tail(&moves->list, stack);
3302 list_splice_tail(&list, stack);
3303 }
3304}
3305
3306static int apply_children_dir_moves(struct send_ctx *sctx)
3307{
3308 struct pending_dir_move *pm;
3309 struct list_head stack;
3310 u64 parent_ino = sctx->cur_ino;
3311 int ret = 0;
3312
3313 pm = get_pending_dir_moves(sctx, parent_ino);
3314 if (!pm)
3315 return 0;
3316
3317 INIT_LIST_HEAD(&stack);
3318 tail_append_pending_moves(pm, &stack);
3319
3320 while (!list_empty(&stack)) {
3321 pm = list_first_entry(&stack, struct pending_dir_move, list);
3322 parent_ino = pm->ino;
3323 ret = apply_dir_move(sctx, pm);
3324 free_pending_move(sctx, pm);
3325 if (ret)
3326 goto out;
3327 pm = get_pending_dir_moves(sctx, parent_ino);
3328 if (pm)
3329 tail_append_pending_moves(pm, &stack);
3330 }
3331 return 0;
3332
3333out:
3334 while (!list_empty(&stack)) {
3335 pm = list_first_entry(&stack, struct pending_dir_move, list);
3336 free_pending_move(sctx, pm);
3337 }
3338 return ret;
3339}
3340
Filipe Manana84471e22015-02-28 22:29:22 +00003341/*
3342 * We might need to delay a directory rename even when no ancestor directory
3343 * (in the send root) with a higher inode number than ours (sctx->cur_ino) was
3344 * renamed. This happens when we rename a directory to the old name (the name
3345 * in the parent root) of some other unrelated directory that got its rename
3346 * delayed due to some ancestor with higher number that got renamed.
3347 *
3348 * Example:
3349 *
3350 * Parent snapshot:
3351 * . (ino 256)
3352 * |---- a/ (ino 257)
3353 * | |---- file (ino 260)
3354 * |
3355 * |---- b/ (ino 258)
3356 * |---- c/ (ino 259)
3357 *
3358 * Send snapshot:
3359 * . (ino 256)
3360 * |---- a/ (ino 258)
3361 * |---- x/ (ino 259)
3362 * |---- y/ (ino 257)
3363 * |----- file (ino 260)
3364 *
3365 * Here we can not rename 258 from 'b' to 'a' without the rename of inode 257
3366 * from 'a' to 'x/y' happening first, which in turn depends on the rename of
3367 * inode 259 from 'c' to 'x'. So the order of rename commands the send stream
3368 * must issue is:
3369 *
3370 * 1 - rename 259 from 'c' to 'x'
3371 * 2 - rename 257 from 'a' to 'x/y'
3372 * 3 - rename 258 from 'b' to 'a'
3373 *
3374 * Returns 1 if the rename of sctx->cur_ino needs to be delayed, 0 if it can
3375 * be done right away and < 0 on error.
3376 */
3377static int wait_for_dest_dir_move(struct send_ctx *sctx,
3378 struct recorded_ref *parent_ref,
3379 const bool is_orphan)
3380{
3381 struct btrfs_path *path;
3382 struct btrfs_key key;
3383 struct btrfs_key di_key;
3384 struct btrfs_dir_item *di;
3385 u64 left_gen;
3386 u64 right_gen;
3387 int ret = 0;
Robbie Ko801bec32015-06-23 18:39:46 +08003388 struct waiting_dir_move *wdm;
Filipe Manana84471e22015-02-28 22:29:22 +00003389
3390 if (RB_EMPTY_ROOT(&sctx->waiting_dir_moves))
3391 return 0;
3392
3393 path = alloc_path_for_send();
3394 if (!path)
3395 return -ENOMEM;
3396
3397 key.objectid = parent_ref->dir;
3398 key.type = BTRFS_DIR_ITEM_KEY;
3399 key.offset = btrfs_name_hash(parent_ref->name, parent_ref->name_len);
3400
3401 ret = btrfs_search_slot(NULL, sctx->parent_root, &key, path, 0, 0);
3402 if (ret < 0) {
3403 goto out;
3404 } else if (ret > 0) {
3405 ret = 0;
3406 goto out;
3407 }
3408
3409 di = btrfs_match_dir_item_name(sctx->parent_root, path,
3410 parent_ref->name, parent_ref->name_len);
3411 if (!di) {
3412 ret = 0;
3413 goto out;
3414 }
3415 /*
3416 * di_key.objectid has the number of the inode that has a dentry in the
3417 * parent directory with the same name that sctx->cur_ino is being
3418 * renamed to. We need to check if that inode is in the send root as
3419 * well and if it is currently marked as an inode with a pending rename,
3420 * if it is, we need to delay the rename of sctx->cur_ino as well, so
3421 * that it happens after that other inode is renamed.
3422 */
3423 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &di_key);
3424 if (di_key.type != BTRFS_INODE_ITEM_KEY) {
3425 ret = 0;
3426 goto out;
3427 }
3428
3429 ret = get_inode_info(sctx->parent_root, di_key.objectid, NULL,
3430 &left_gen, NULL, NULL, NULL, NULL);
3431 if (ret < 0)
3432 goto out;
3433 ret = get_inode_info(sctx->send_root, di_key.objectid, NULL,
3434 &right_gen, NULL, NULL, NULL, NULL);
3435 if (ret < 0) {
3436 if (ret == -ENOENT)
3437 ret = 0;
3438 goto out;
3439 }
3440
3441 /* Different inode, no need to delay the rename of sctx->cur_ino */
3442 if (right_gen != left_gen) {
3443 ret = 0;
3444 goto out;
3445 }
3446
Robbie Ko801bec32015-06-23 18:39:46 +08003447 wdm = get_waiting_dir_move(sctx, di_key.objectid);
3448 if (wdm && !wdm->orphanized) {
Filipe Manana84471e22015-02-28 22:29:22 +00003449 ret = add_pending_dir_move(sctx,
3450 sctx->cur_ino,
3451 sctx->cur_inode_gen,
3452 di_key.objectid,
3453 &sctx->new_refs,
3454 &sctx->deleted_refs,
3455 is_orphan);
3456 if (!ret)
3457 ret = 1;
3458 }
3459out:
3460 btrfs_free_path(path);
3461 return ret;
3462}
3463
Filipe Manana80aa6022015-03-27 17:50:45 +00003464/*
3465 * Check if ino ino1 is an ancestor of inode ino2 in the given root.
3466 * Return 1 if true, 0 if false and < 0 on error.
3467 */
3468static int is_ancestor(struct btrfs_root *root,
3469 const u64 ino1,
3470 const u64 ino1_gen,
3471 const u64 ino2,
3472 struct fs_path *fs_path)
3473{
3474 u64 ino = ino2;
3475
3476 while (ino > BTRFS_FIRST_FREE_OBJECTID) {
3477 int ret;
3478 u64 parent;
3479 u64 parent_gen;
3480
3481 fs_path_reset(fs_path);
3482 ret = get_first_ref(root, ino, &parent, &parent_gen, fs_path);
3483 if (ret < 0) {
3484 if (ret == -ENOENT && ino == ino2)
3485 ret = 0;
3486 return ret;
3487 }
3488 if (parent == ino1)
3489 return parent_gen == ino1_gen ? 1 : 0;
3490 ino = parent;
3491 }
3492 return 0;
3493}
3494
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003495static int wait_for_parent_move(struct send_ctx *sctx,
Filipe Manana8b191a62015-04-09 14:09:14 +01003496 struct recorded_ref *parent_ref,
3497 const bool is_orphan)
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003498{
Filipe Mananaf9594922014-03-27 20:14:01 +00003499 int ret = 0;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003500 u64 ino = parent_ref->dir;
3501 u64 parent_ino_before, parent_ino_after;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003502 struct fs_path *path_before = NULL;
3503 struct fs_path *path_after = NULL;
3504 int len1, len2;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003505
3506 path_after = fs_path_alloc();
Filipe Mananaf9594922014-03-27 20:14:01 +00003507 path_before = fs_path_alloc();
3508 if (!path_after || !path_before) {
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003509 ret = -ENOMEM;
3510 goto out;
3511 }
3512
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003513 /*
Filipe Mananaf9594922014-03-27 20:14:01 +00003514 * Our current directory inode may not yet be renamed/moved because some
3515 * ancestor (immediate or not) has to be renamed/moved first. So find if
3516 * such ancestor exists and make sure our own rename/move happens after
Filipe Manana80aa6022015-03-27 17:50:45 +00003517 * that ancestor is processed to avoid path build infinite loops (done
3518 * at get_cur_path()).
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003519 */
Filipe Mananaf9594922014-03-27 20:14:01 +00003520 while (ino > BTRFS_FIRST_FREE_OBJECTID) {
3521 if (is_waiting_for_move(sctx, ino)) {
Filipe Manana80aa6022015-03-27 17:50:45 +00003522 /*
3523 * If the current inode is an ancestor of ino in the
3524 * parent root, we need to delay the rename of the
3525 * current inode, otherwise don't delayed the rename
3526 * because we can end up with a circular dependency
3527 * of renames, resulting in some directories never
3528 * getting the respective rename operations issued in
3529 * the send stream or getting into infinite path build
3530 * loops.
3531 */
3532 ret = is_ancestor(sctx->parent_root,
3533 sctx->cur_ino, sctx->cur_inode_gen,
3534 ino, path_before);
Filipe Mananaf9594922014-03-27 20:14:01 +00003535 break;
3536 }
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003537
3538 fs_path_reset(path_before);
3539 fs_path_reset(path_after);
3540
3541 ret = get_first_ref(sctx->send_root, ino, &parent_ino_after,
Filipe Mananaf9594922014-03-27 20:14:01 +00003542 NULL, path_after);
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003543 if (ret < 0)
3544 goto out;
3545 ret = get_first_ref(sctx->parent_root, ino, &parent_ino_before,
3546 NULL, path_before);
Filipe Mananaf9594922014-03-27 20:14:01 +00003547 if (ret < 0 && ret != -ENOENT) {
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003548 goto out;
Filipe Mananaf9594922014-03-27 20:14:01 +00003549 } else if (ret == -ENOENT) {
Filipe Mananabf8e8ca2014-10-02 19:17:32 +01003550 ret = 0;
Filipe Mananaf9594922014-03-27 20:14:01 +00003551 break;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003552 }
3553
3554 len1 = fs_path_len(path_before);
3555 len2 = fs_path_len(path_after);
Filipe Mananaf9594922014-03-27 20:14:01 +00003556 if (ino > sctx->cur_ino &&
3557 (parent_ino_before != parent_ino_after || len1 != len2 ||
3558 memcmp(path_before->start, path_after->start, len1))) {
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003559 ret = 1;
Filipe Mananaf9594922014-03-27 20:14:01 +00003560 break;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003561 }
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003562 ino = parent_ino_after;
Filipe Mananabfa7e1f2014-03-19 14:20:54 +00003563 }
3564
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003565out:
3566 fs_path_free(path_before);
3567 fs_path_free(path_after);
3568
Filipe Mananaf9594922014-03-27 20:14:01 +00003569 if (ret == 1) {
3570 ret = add_pending_dir_move(sctx,
3571 sctx->cur_ino,
3572 sctx->cur_inode_gen,
3573 ino,
3574 &sctx->new_refs,
Filipe Manana84471e22015-02-28 22:29:22 +00003575 &sctx->deleted_refs,
Filipe Manana8b191a62015-04-09 14:09:14 +01003576 is_orphan);
Filipe Mananaf9594922014-03-27 20:14:01 +00003577 if (!ret)
3578 ret = 1;
3579 }
3580
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003581 return ret;
3582}
3583
Alexander Block31db9f72012-07-25 23:19:24 +02003584/*
3585 * This does all the move/link/unlink/rmdir magic.
3586 */
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00003587static int process_recorded_refs(struct send_ctx *sctx, int *pending_move)
Alexander Block31db9f72012-07-25 23:19:24 +02003588{
3589 int ret = 0;
3590 struct recorded_ref *cur;
Alexander Block1f4692d2012-07-28 10:42:24 +02003591 struct recorded_ref *cur2;
Josef Bacikba5e8f22013-08-16 16:52:55 -04003592 struct list_head check_dirs;
Alexander Block31db9f72012-07-25 23:19:24 +02003593 struct fs_path *valid_path = NULL;
Chris Masonb24baf62012-07-25 19:21:10 -04003594 u64 ow_inode = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02003595 u64 ow_gen;
3596 int did_overwrite = 0;
3597 int is_orphan = 0;
Filipe Manana29d6d302014-02-16 21:01:39 +00003598 u64 last_dir_ino_rm = 0;
Filipe Manana84471e22015-02-28 22:29:22 +00003599 bool can_rename = true;
Alexander Block31db9f72012-07-25 23:19:24 +02003600
3601verbose_printk("btrfs: process_recorded_refs %llu\n", sctx->cur_ino);
3602
Alexander Block6d85ed02012-08-01 14:48:59 +02003603 /*
3604 * This should never happen as the root dir always has the same ref
3605 * which is always '..'
3606 */
3607 BUG_ON(sctx->cur_ino <= BTRFS_FIRST_FREE_OBJECTID);
Josef Bacikba5e8f22013-08-16 16:52:55 -04003608 INIT_LIST_HEAD(&check_dirs);
Alexander Block6d85ed02012-08-01 14:48:59 +02003609
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003610 valid_path = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003611 if (!valid_path) {
3612 ret = -ENOMEM;
3613 goto out;
3614 }
3615
Alexander Block31db9f72012-07-25 23:19:24 +02003616 /*
3617 * First, check if the first ref of the current inode was overwritten
3618 * before. If yes, we know that the current inode was already orphanized
3619 * and thus use the orphan name. If not, we can use get_cur_path to
3620 * get the path of the first ref as it would like while receiving at
3621 * this point in time.
3622 * New inodes are always orphan at the beginning, so force to use the
3623 * orphan name in this case.
3624 * The first ref is stored in valid_path and will be updated if it
3625 * gets moved around.
3626 */
3627 if (!sctx->cur_inode_new) {
3628 ret = did_overwrite_first_ref(sctx, sctx->cur_ino,
3629 sctx->cur_inode_gen);
3630 if (ret < 0)
3631 goto out;
3632 if (ret)
3633 did_overwrite = 1;
3634 }
3635 if (sctx->cur_inode_new || did_overwrite) {
3636 ret = gen_unique_name(sctx, sctx->cur_ino,
3637 sctx->cur_inode_gen, valid_path);
3638 if (ret < 0)
3639 goto out;
3640 is_orphan = 1;
3641 } else {
3642 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen,
3643 valid_path);
3644 if (ret < 0)
3645 goto out;
3646 }
3647
3648 list_for_each_entry(cur, &sctx->new_refs, list) {
3649 /*
Alexander Block1f4692d2012-07-28 10:42:24 +02003650 * We may have refs where the parent directory does not exist
3651 * yet. This happens if the parent directories inum is higher
3652 * the the current inum. To handle this case, we create the
3653 * parent directory out of order. But we need to check if this
3654 * did already happen before due to other refs in the same dir.
3655 */
3656 ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen);
3657 if (ret < 0)
3658 goto out;
3659 if (ret == inode_state_will_create) {
3660 ret = 0;
3661 /*
3662 * First check if any of the current inodes refs did
3663 * already create the dir.
3664 */
3665 list_for_each_entry(cur2, &sctx->new_refs, list) {
3666 if (cur == cur2)
3667 break;
3668 if (cur2->dir == cur->dir) {
3669 ret = 1;
3670 break;
3671 }
3672 }
3673
3674 /*
3675 * If that did not happen, check if a previous inode
3676 * did already create the dir.
3677 */
3678 if (!ret)
3679 ret = did_create_dir(sctx, cur->dir);
3680 if (ret < 0)
3681 goto out;
3682 if (!ret) {
3683 ret = send_create_inode(sctx, cur->dir);
3684 if (ret < 0)
3685 goto out;
3686 }
3687 }
3688
3689 /*
Alexander Block31db9f72012-07-25 23:19:24 +02003690 * Check if this new ref would overwrite the first ref of
3691 * another unprocessed inode. If yes, orphanize the
3692 * overwritten inode. If we find an overwritten ref that is
3693 * not the first ref, simply unlink it.
3694 */
3695 ret = will_overwrite_ref(sctx, cur->dir, cur->dir_gen,
3696 cur->name, cur->name_len,
3697 &ow_inode, &ow_gen);
3698 if (ret < 0)
3699 goto out;
3700 if (ret) {
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003701 ret = is_first_ref(sctx->parent_root,
3702 ow_inode, cur->dir, cur->name,
3703 cur->name_len);
Alexander Block31db9f72012-07-25 23:19:24 +02003704 if (ret < 0)
3705 goto out;
3706 if (ret) {
Filipe Manana8996a482015-03-12 15:16:20 +00003707 struct name_cache_entry *nce;
Robbie Ko801bec32015-06-23 18:39:46 +08003708 struct waiting_dir_move *wdm;
Filipe Manana8996a482015-03-12 15:16:20 +00003709
Alexander Block31db9f72012-07-25 23:19:24 +02003710 ret = orphanize_inode(sctx, ow_inode, ow_gen,
3711 cur->full_path);
3712 if (ret < 0)
3713 goto out;
Robbie Ko801bec32015-06-23 18:39:46 +08003714
3715 /*
3716 * If ow_inode has its rename operation delayed
3717 * make sure that its orphanized name is used in
3718 * the source path when performing its rename
3719 * operation.
3720 */
3721 if (is_waiting_for_move(sctx, ow_inode)) {
3722 wdm = get_waiting_dir_move(sctx,
3723 ow_inode);
3724 ASSERT(wdm);
3725 wdm->orphanized = true;
3726 }
3727
Filipe Manana8996a482015-03-12 15:16:20 +00003728 /*
3729 * Make sure we clear our orphanized inode's
3730 * name from the name cache. This is because the
3731 * inode ow_inode might be an ancestor of some
3732 * other inode that will be orphanized as well
3733 * later and has an inode number greater than
3734 * sctx->send_progress. We need to prevent
3735 * future name lookups from using the old name
3736 * and get instead the orphan name.
3737 */
3738 nce = name_cache_search(sctx, ow_inode, ow_gen);
3739 if (nce) {
3740 name_cache_delete(sctx, nce);
3741 kfree(nce);
3742 }
Robbie Ko801bec32015-06-23 18:39:46 +08003743
3744 /*
3745 * ow_inode might currently be an ancestor of
3746 * cur_ino, therefore compute valid_path (the
3747 * current path of cur_ino) again because it
3748 * might contain the pre-orphanization name of
3749 * ow_inode, which is no longer valid.
3750 */
3751 fs_path_reset(valid_path);
3752 ret = get_cur_path(sctx, sctx->cur_ino,
3753 sctx->cur_inode_gen, valid_path);
3754 if (ret < 0)
3755 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02003756 } else {
3757 ret = send_unlink(sctx, cur->full_path);
3758 if (ret < 0)
3759 goto out;
3760 }
3761 }
3762
Filipe Manana84471e22015-02-28 22:29:22 +00003763 if (S_ISDIR(sctx->cur_inode_mode) && sctx->parent_root) {
3764 ret = wait_for_dest_dir_move(sctx, cur, is_orphan);
3765 if (ret < 0)
3766 goto out;
3767 if (ret == 1) {
3768 can_rename = false;
3769 *pending_move = 1;
3770 }
3771 }
3772
Filipe Manana8b191a62015-04-09 14:09:14 +01003773 if (S_ISDIR(sctx->cur_inode_mode) && sctx->parent_root &&
3774 can_rename) {
3775 ret = wait_for_parent_move(sctx, cur, is_orphan);
3776 if (ret < 0)
3777 goto out;
3778 if (ret == 1) {
3779 can_rename = false;
3780 *pending_move = 1;
3781 }
3782 }
3783
Alexander Block31db9f72012-07-25 23:19:24 +02003784 /*
3785 * link/move the ref to the new place. If we have an orphan
3786 * inode, move it and update valid_path. If not, link or move
3787 * it depending on the inode mode.
3788 */
Filipe Manana84471e22015-02-28 22:29:22 +00003789 if (is_orphan && can_rename) {
Alexander Block31db9f72012-07-25 23:19:24 +02003790 ret = send_rename(sctx, valid_path, cur->full_path);
3791 if (ret < 0)
3792 goto out;
3793 is_orphan = 0;
3794 ret = fs_path_copy(valid_path, cur->full_path);
3795 if (ret < 0)
3796 goto out;
Filipe Manana84471e22015-02-28 22:29:22 +00003797 } else if (can_rename) {
Alexander Block31db9f72012-07-25 23:19:24 +02003798 if (S_ISDIR(sctx->cur_inode_mode)) {
3799 /*
3800 * Dirs can't be linked, so move it. For moved
3801 * dirs, we always have one new and one deleted
3802 * ref. The deleted ref is ignored later.
3803 */
Filipe Manana8b191a62015-04-09 14:09:14 +01003804 ret = send_rename(sctx, valid_path,
3805 cur->full_path);
3806 if (!ret)
3807 ret = fs_path_copy(valid_path,
3808 cur->full_path);
Alexander Block31db9f72012-07-25 23:19:24 +02003809 if (ret < 0)
3810 goto out;
3811 } else {
3812 ret = send_link(sctx, cur->full_path,
3813 valid_path);
3814 if (ret < 0)
3815 goto out;
3816 }
3817 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04003818 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02003819 if (ret < 0)
3820 goto out;
3821 }
3822
3823 if (S_ISDIR(sctx->cur_inode_mode) && sctx->cur_inode_deleted) {
3824 /*
3825 * Check if we can already rmdir the directory. If not,
3826 * orphanize it. For every dir item inside that gets deleted
3827 * later, we do this check again and rmdir it then if possible.
3828 * See the use of check_dirs for more details.
3829 */
Filipe Manana9dc44212014-02-19 14:31:44 +00003830 ret = can_rmdir(sctx, sctx->cur_ino, sctx->cur_inode_gen,
3831 sctx->cur_ino);
Alexander Block31db9f72012-07-25 23:19:24 +02003832 if (ret < 0)
3833 goto out;
3834 if (ret) {
3835 ret = send_rmdir(sctx, valid_path);
3836 if (ret < 0)
3837 goto out;
3838 } else if (!is_orphan) {
3839 ret = orphanize_inode(sctx, sctx->cur_ino,
3840 sctx->cur_inode_gen, valid_path);
3841 if (ret < 0)
3842 goto out;
3843 is_orphan = 1;
3844 }
3845
3846 list_for_each_entry(cur, &sctx->deleted_refs, list) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04003847 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02003848 if (ret < 0)
3849 goto out;
3850 }
Alexander Blockccf16262012-07-28 11:46:29 +02003851 } else if (S_ISDIR(sctx->cur_inode_mode) &&
3852 !list_empty(&sctx->deleted_refs)) {
3853 /*
3854 * We have a moved dir. Add the old parent to check_dirs
3855 */
3856 cur = list_entry(sctx->deleted_refs.next, struct recorded_ref,
3857 list);
Josef Bacikba5e8f22013-08-16 16:52:55 -04003858 ret = dup_ref(cur, &check_dirs);
Alexander Blockccf16262012-07-28 11:46:29 +02003859 if (ret < 0)
3860 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02003861 } else if (!S_ISDIR(sctx->cur_inode_mode)) {
3862 /*
3863 * We have a non dir inode. Go through all deleted refs and
3864 * unlink them if they were not already overwritten by other
3865 * inodes.
3866 */
3867 list_for_each_entry(cur, &sctx->deleted_refs, list) {
3868 ret = did_overwrite_ref(sctx, cur->dir, cur->dir_gen,
3869 sctx->cur_ino, sctx->cur_inode_gen,
3870 cur->name, cur->name_len);
3871 if (ret < 0)
3872 goto out;
3873 if (!ret) {
Alexander Block1f4692d2012-07-28 10:42:24 +02003874 ret = send_unlink(sctx, cur->full_path);
3875 if (ret < 0)
3876 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02003877 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04003878 ret = dup_ref(cur, &check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02003879 if (ret < 0)
3880 goto out;
3881 }
Alexander Block31db9f72012-07-25 23:19:24 +02003882 /*
3883 * If the inode is still orphan, unlink the orphan. This may
3884 * happen when a previous inode did overwrite the first ref
3885 * of this inode and no new refs were added for the current
Alexander Block766702e2012-07-28 14:11:31 +02003886 * inode. Unlinking does not mean that the inode is deleted in
3887 * all cases. There may still be links to this inode in other
3888 * places.
Alexander Block31db9f72012-07-25 23:19:24 +02003889 */
Alexander Block1f4692d2012-07-28 10:42:24 +02003890 if (is_orphan) {
Alexander Block31db9f72012-07-25 23:19:24 +02003891 ret = send_unlink(sctx, valid_path);
3892 if (ret < 0)
3893 goto out;
3894 }
3895 }
3896
3897 /*
3898 * We did collect all parent dirs where cur_inode was once located. We
3899 * now go through all these dirs and check if they are pending for
3900 * deletion and if it's finally possible to perform the rmdir now.
3901 * We also update the inode stats of the parent dirs here.
3902 */
Josef Bacikba5e8f22013-08-16 16:52:55 -04003903 list_for_each_entry(cur, &check_dirs, list) {
Alexander Block766702e2012-07-28 14:11:31 +02003904 /*
3905 * In case we had refs into dirs that were not processed yet,
3906 * we don't need to do the utime and rmdir logic for these dirs.
3907 * The dir will be processed later.
3908 */
Josef Bacikba5e8f22013-08-16 16:52:55 -04003909 if (cur->dir > sctx->cur_ino)
Alexander Block31db9f72012-07-25 23:19:24 +02003910 continue;
3911
Josef Bacikba5e8f22013-08-16 16:52:55 -04003912 ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen);
Alexander Block31db9f72012-07-25 23:19:24 +02003913 if (ret < 0)
3914 goto out;
3915
3916 if (ret == inode_state_did_create ||
3917 ret == inode_state_no_change) {
3918 /* TODO delayed utimes */
Josef Bacikba5e8f22013-08-16 16:52:55 -04003919 ret = send_utimes(sctx, cur->dir, cur->dir_gen);
Alexander Block31db9f72012-07-25 23:19:24 +02003920 if (ret < 0)
3921 goto out;
Filipe Manana29d6d302014-02-16 21:01:39 +00003922 } else if (ret == inode_state_did_delete &&
3923 cur->dir != last_dir_ino_rm) {
Filipe Manana9dc44212014-02-19 14:31:44 +00003924 ret = can_rmdir(sctx, cur->dir, cur->dir_gen,
3925 sctx->cur_ino);
Alexander Block31db9f72012-07-25 23:19:24 +02003926 if (ret < 0)
3927 goto out;
3928 if (ret) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04003929 ret = get_cur_path(sctx, cur->dir,
3930 cur->dir_gen, valid_path);
Alexander Block31db9f72012-07-25 23:19:24 +02003931 if (ret < 0)
3932 goto out;
3933 ret = send_rmdir(sctx, valid_path);
3934 if (ret < 0)
3935 goto out;
Filipe Manana29d6d302014-02-16 21:01:39 +00003936 last_dir_ino_rm = cur->dir;
Alexander Block31db9f72012-07-25 23:19:24 +02003937 }
3938 }
3939 }
3940
Alexander Block31db9f72012-07-25 23:19:24 +02003941 ret = 0;
3942
3943out:
Josef Bacikba5e8f22013-08-16 16:52:55 -04003944 __free_recorded_refs(&check_dirs);
Alexander Block31db9f72012-07-25 23:19:24 +02003945 free_recorded_refs(sctx);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003946 fs_path_free(valid_path);
Alexander Block31db9f72012-07-25 23:19:24 +02003947 return ret;
3948}
3949
Liu Boa4d96d62014-03-03 21:31:03 +08003950static int record_ref(struct btrfs_root *root, int num, u64 dir, int index,
3951 struct fs_path *name, void *ctx, struct list_head *refs)
Alexander Block31db9f72012-07-25 23:19:24 +02003952{
3953 int ret = 0;
3954 struct send_ctx *sctx = ctx;
3955 struct fs_path *p;
3956 u64 gen;
3957
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003958 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003959 if (!p)
3960 return -ENOMEM;
3961
Liu Boa4d96d62014-03-03 21:31:03 +08003962 ret = get_inode_info(root, dir, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02003963 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02003964 if (ret < 0)
3965 goto out;
3966
Alexander Block31db9f72012-07-25 23:19:24 +02003967 ret = get_cur_path(sctx, dir, gen, p);
3968 if (ret < 0)
3969 goto out;
3970 ret = fs_path_add_path(p, name);
3971 if (ret < 0)
3972 goto out;
3973
Liu Boa4d96d62014-03-03 21:31:03 +08003974 ret = __record_ref(refs, dir, gen, p);
Alexander Block31db9f72012-07-25 23:19:24 +02003975
3976out:
3977 if (ret)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003978 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02003979 return ret;
3980}
3981
Liu Boa4d96d62014-03-03 21:31:03 +08003982static int __record_new_ref(int num, u64 dir, int index,
3983 struct fs_path *name,
3984 void *ctx)
3985{
3986 struct send_ctx *sctx = ctx;
3987 return record_ref(sctx->send_root, num, dir, index, name,
3988 ctx, &sctx->new_refs);
3989}
3990
3991
Alexander Block31db9f72012-07-25 23:19:24 +02003992static int __record_deleted_ref(int num, u64 dir, int index,
3993 struct fs_path *name,
3994 void *ctx)
3995{
Alexander Block31db9f72012-07-25 23:19:24 +02003996 struct send_ctx *sctx = ctx;
Liu Boa4d96d62014-03-03 21:31:03 +08003997 return record_ref(sctx->parent_root, num, dir, index, name,
3998 ctx, &sctx->deleted_refs);
Alexander Block31db9f72012-07-25 23:19:24 +02003999}
4000
4001static int record_new_ref(struct send_ctx *sctx)
4002{
4003 int ret;
4004
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004005 ret = iterate_inode_ref(sctx->send_root, sctx->left_path,
4006 sctx->cmp_key, 0, __record_new_ref, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004007 if (ret < 0)
4008 goto out;
4009 ret = 0;
4010
4011out:
4012 return ret;
4013}
4014
4015static int record_deleted_ref(struct send_ctx *sctx)
4016{
4017 int ret;
4018
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004019 ret = iterate_inode_ref(sctx->parent_root, sctx->right_path,
4020 sctx->cmp_key, 0, __record_deleted_ref, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004021 if (ret < 0)
4022 goto out;
4023 ret = 0;
4024
4025out:
4026 return ret;
4027}
4028
4029struct find_ref_ctx {
4030 u64 dir;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004031 u64 dir_gen;
4032 struct btrfs_root *root;
Alexander Block31db9f72012-07-25 23:19:24 +02004033 struct fs_path *name;
4034 int found_idx;
4035};
4036
4037static int __find_iref(int num, u64 dir, int index,
4038 struct fs_path *name,
4039 void *ctx_)
4040{
4041 struct find_ref_ctx *ctx = ctx_;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004042 u64 dir_gen;
4043 int ret;
Alexander Block31db9f72012-07-25 23:19:24 +02004044
4045 if (dir == ctx->dir && fs_path_len(name) == fs_path_len(ctx->name) &&
4046 strncmp(name->start, ctx->name->start, fs_path_len(name)) == 0) {
Josef Bacikba5e8f22013-08-16 16:52:55 -04004047 /*
4048 * To avoid doing extra lookups we'll only do this if everything
4049 * else matches.
4050 */
4051 ret = get_inode_info(ctx->root, dir, NULL, &dir_gen, NULL,
4052 NULL, NULL, NULL);
4053 if (ret)
4054 return ret;
4055 if (dir_gen != ctx->dir_gen)
4056 return 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004057 ctx->found_idx = num;
4058 return 1;
4059 }
4060 return 0;
4061}
4062
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004063static int find_iref(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02004064 struct btrfs_path *path,
4065 struct btrfs_key *key,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004066 u64 dir, u64 dir_gen, struct fs_path *name)
Alexander Block31db9f72012-07-25 23:19:24 +02004067{
4068 int ret;
4069 struct find_ref_ctx ctx;
4070
4071 ctx.dir = dir;
4072 ctx.name = name;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004073 ctx.dir_gen = dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004074 ctx.found_idx = -1;
Josef Bacikba5e8f22013-08-16 16:52:55 -04004075 ctx.root = root;
Alexander Block31db9f72012-07-25 23:19:24 +02004076
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004077 ret = iterate_inode_ref(root, path, key, 0, __find_iref, &ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004078 if (ret < 0)
4079 return ret;
4080
4081 if (ctx.found_idx == -1)
4082 return -ENOENT;
4083
4084 return ctx.found_idx;
4085}
4086
4087static int __record_changed_new_ref(int num, u64 dir, int index,
4088 struct fs_path *name,
4089 void *ctx)
4090{
Josef Bacikba5e8f22013-08-16 16:52:55 -04004091 u64 dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004092 int ret;
4093 struct send_ctx *sctx = ctx;
4094
Josef Bacikba5e8f22013-08-16 16:52:55 -04004095 ret = get_inode_info(sctx->send_root, dir, NULL, &dir_gen, NULL,
4096 NULL, NULL, NULL);
4097 if (ret)
4098 return ret;
4099
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004100 ret = find_iref(sctx->parent_root, sctx->right_path,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004101 sctx->cmp_key, dir, dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02004102 if (ret == -ENOENT)
4103 ret = __record_new_ref(num, dir, index, name, sctx);
4104 else if (ret > 0)
4105 ret = 0;
4106
4107 return ret;
4108}
4109
4110static int __record_changed_deleted_ref(int num, u64 dir, int index,
4111 struct fs_path *name,
4112 void *ctx)
4113{
Josef Bacikba5e8f22013-08-16 16:52:55 -04004114 u64 dir_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02004115 int ret;
4116 struct send_ctx *sctx = ctx;
4117
Josef Bacikba5e8f22013-08-16 16:52:55 -04004118 ret = get_inode_info(sctx->parent_root, dir, NULL, &dir_gen, NULL,
4119 NULL, NULL, NULL);
4120 if (ret)
4121 return ret;
4122
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004123 ret = find_iref(sctx->send_root, sctx->left_path, sctx->cmp_key,
Josef Bacikba5e8f22013-08-16 16:52:55 -04004124 dir, dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02004125 if (ret == -ENOENT)
4126 ret = __record_deleted_ref(num, dir, index, name, sctx);
4127 else if (ret > 0)
4128 ret = 0;
4129
4130 return ret;
4131}
4132
4133static int record_changed_ref(struct send_ctx *sctx)
4134{
4135 int ret = 0;
4136
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004137 ret = iterate_inode_ref(sctx->send_root, sctx->left_path,
Alexander Block31db9f72012-07-25 23:19:24 +02004138 sctx->cmp_key, 0, __record_changed_new_ref, sctx);
4139 if (ret < 0)
4140 goto out;
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004141 ret = iterate_inode_ref(sctx->parent_root, sctx->right_path,
Alexander Block31db9f72012-07-25 23:19:24 +02004142 sctx->cmp_key, 0, __record_changed_deleted_ref, sctx);
4143 if (ret < 0)
4144 goto out;
4145 ret = 0;
4146
4147out:
4148 return ret;
4149}
4150
4151/*
4152 * Record and process all refs at once. Needed when an inode changes the
4153 * generation number, which means that it was deleted and recreated.
4154 */
4155static int process_all_refs(struct send_ctx *sctx,
4156 enum btrfs_compare_tree_result cmd)
4157{
4158 int ret;
4159 struct btrfs_root *root;
4160 struct btrfs_path *path;
4161 struct btrfs_key key;
4162 struct btrfs_key found_key;
4163 struct extent_buffer *eb;
4164 int slot;
4165 iterate_inode_ref_t cb;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00004166 int pending_move = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004167
4168 path = alloc_path_for_send();
4169 if (!path)
4170 return -ENOMEM;
4171
4172 if (cmd == BTRFS_COMPARE_TREE_NEW) {
4173 root = sctx->send_root;
4174 cb = __record_new_ref;
4175 } else if (cmd == BTRFS_COMPARE_TREE_DELETED) {
4176 root = sctx->parent_root;
4177 cb = __record_deleted_ref;
4178 } else {
David Sterba4d1a63b2014-02-03 19:24:19 +01004179 btrfs_err(sctx->send_root->fs_info,
4180 "Wrong command %d in process_all_refs", cmd);
4181 ret = -EINVAL;
4182 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004183 }
4184
4185 key.objectid = sctx->cmp_key->objectid;
4186 key.type = BTRFS_INODE_REF_KEY;
4187 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004188 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4189 if (ret < 0)
4190 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004191
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004192 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02004193 eb = path->nodes[0];
4194 slot = path->slots[0];
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004195 if (slot >= btrfs_header_nritems(eb)) {
4196 ret = btrfs_next_leaf(root, path);
4197 if (ret < 0)
4198 goto out;
4199 else if (ret > 0)
4200 break;
4201 continue;
4202 }
4203
Alexander Block31db9f72012-07-25 23:19:24 +02004204 btrfs_item_key_to_cpu(eb, &found_key, slot);
4205
4206 if (found_key.objectid != key.objectid ||
Jan Schmidt96b5bd72012-10-15 08:30:45 +00004207 (found_key.type != BTRFS_INODE_REF_KEY &&
4208 found_key.type != BTRFS_INODE_EXTREF_KEY))
Alexander Block31db9f72012-07-25 23:19:24 +02004209 break;
Alexander Block31db9f72012-07-25 23:19:24 +02004210
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004211 ret = iterate_inode_ref(root, path, &found_key, 0, cb, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004212 if (ret < 0)
4213 goto out;
4214
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004215 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02004216 }
Alexander Blocke938c8a2012-07-28 16:33:49 +02004217 btrfs_release_path(path);
Alexander Block31db9f72012-07-25 23:19:24 +02004218
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00004219 ret = process_recorded_refs(sctx, &pending_move);
4220 /* Only applicable to an incremental send. */
4221 ASSERT(pending_move == 0);
Alexander Block31db9f72012-07-25 23:19:24 +02004222
4223out:
4224 btrfs_free_path(path);
4225 return ret;
4226}
4227
4228static int send_set_xattr(struct send_ctx *sctx,
4229 struct fs_path *path,
4230 const char *name, int name_len,
4231 const char *data, int data_len)
4232{
4233 int ret = 0;
4234
4235 ret = begin_cmd(sctx, BTRFS_SEND_C_SET_XATTR);
4236 if (ret < 0)
4237 goto out;
4238
4239 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
4240 TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len);
4241 TLV_PUT(sctx, BTRFS_SEND_A_XATTR_DATA, data, data_len);
4242
4243 ret = send_cmd(sctx);
4244
4245tlv_put_failure:
4246out:
4247 return ret;
4248}
4249
4250static int send_remove_xattr(struct send_ctx *sctx,
4251 struct fs_path *path,
4252 const char *name, int name_len)
4253{
4254 int ret = 0;
4255
4256 ret = begin_cmd(sctx, BTRFS_SEND_C_REMOVE_XATTR);
4257 if (ret < 0)
4258 goto out;
4259
4260 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
4261 TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len);
4262
4263 ret = send_cmd(sctx);
4264
4265tlv_put_failure:
4266out:
4267 return ret;
4268}
4269
4270static int __process_new_xattr(int num, struct btrfs_key *di_key,
4271 const char *name, int name_len,
4272 const char *data, int data_len,
4273 u8 type, void *ctx)
4274{
4275 int ret;
4276 struct send_ctx *sctx = ctx;
4277 struct fs_path *p;
4278 posix_acl_xattr_header dummy_acl;
4279
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004280 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004281 if (!p)
4282 return -ENOMEM;
4283
4284 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004285 * This hack is needed because empty acls are stored as zero byte
Alexander Block31db9f72012-07-25 23:19:24 +02004286 * data in xattrs. Problem with that is, that receiving these zero byte
Nicholas D Steeves01327612016-05-19 21:18:45 -04004287 * acls will fail later. To fix this, we send a dummy acl list that
Alexander Block31db9f72012-07-25 23:19:24 +02004288 * only contains the version number and no entries.
4289 */
4290 if (!strncmp(name, XATTR_NAME_POSIX_ACL_ACCESS, name_len) ||
4291 !strncmp(name, XATTR_NAME_POSIX_ACL_DEFAULT, name_len)) {
4292 if (data_len == 0) {
4293 dummy_acl.a_version =
4294 cpu_to_le32(POSIX_ACL_XATTR_VERSION);
4295 data = (char *)&dummy_acl;
4296 data_len = sizeof(dummy_acl);
4297 }
4298 }
4299
4300 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4301 if (ret < 0)
4302 goto out;
4303
4304 ret = send_set_xattr(sctx, p, name, name_len, data, data_len);
4305
4306out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004307 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004308 return ret;
4309}
4310
4311static int __process_deleted_xattr(int num, struct btrfs_key *di_key,
4312 const char *name, int name_len,
4313 const char *data, int data_len,
4314 u8 type, void *ctx)
4315{
4316 int ret;
4317 struct send_ctx *sctx = ctx;
4318 struct fs_path *p;
4319
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004320 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004321 if (!p)
4322 return -ENOMEM;
4323
4324 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4325 if (ret < 0)
4326 goto out;
4327
4328 ret = send_remove_xattr(sctx, p, name, name_len);
4329
4330out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004331 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004332 return ret;
4333}
4334
4335static int process_new_xattr(struct send_ctx *sctx)
4336{
4337 int ret = 0;
4338
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004339 ret = iterate_dir_item(sctx->send_root, sctx->left_path,
4340 sctx->cmp_key, __process_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004341
4342 return ret;
4343}
4344
4345static int process_deleted_xattr(struct send_ctx *sctx)
4346{
4347 int ret;
4348
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004349 ret = iterate_dir_item(sctx->parent_root, sctx->right_path,
4350 sctx->cmp_key, __process_deleted_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004351
4352 return ret;
4353}
4354
4355struct find_xattr_ctx {
4356 const char *name;
4357 int name_len;
4358 int found_idx;
4359 char *found_data;
4360 int found_data_len;
4361};
4362
4363static int __find_xattr(int num, struct btrfs_key *di_key,
4364 const char *name, int name_len,
4365 const char *data, int data_len,
4366 u8 type, void *vctx)
4367{
4368 struct find_xattr_ctx *ctx = vctx;
4369
4370 if (name_len == ctx->name_len &&
4371 strncmp(name, ctx->name, name_len) == 0) {
4372 ctx->found_idx = num;
4373 ctx->found_data_len = data_len;
David Sterbae780b0d2016-01-18 18:42:13 +01004374 ctx->found_data = kmemdup(data, data_len, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02004375 if (!ctx->found_data)
4376 return -ENOMEM;
Alexander Block31db9f72012-07-25 23:19:24 +02004377 return 1;
4378 }
4379 return 0;
4380}
4381
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004382static int find_xattr(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02004383 struct btrfs_path *path,
4384 struct btrfs_key *key,
4385 const char *name, int name_len,
4386 char **data, int *data_len)
4387{
4388 int ret;
4389 struct find_xattr_ctx ctx;
4390
4391 ctx.name = name;
4392 ctx.name_len = name_len;
4393 ctx.found_idx = -1;
4394 ctx.found_data = NULL;
4395 ctx.found_data_len = 0;
4396
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004397 ret = iterate_dir_item(root, path, key, __find_xattr, &ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004398 if (ret < 0)
4399 return ret;
4400
4401 if (ctx.found_idx == -1)
4402 return -ENOENT;
4403 if (data) {
4404 *data = ctx.found_data;
4405 *data_len = ctx.found_data_len;
4406 } else {
4407 kfree(ctx.found_data);
4408 }
4409 return ctx.found_idx;
4410}
4411
4412
4413static int __process_changed_new_xattr(int num, struct btrfs_key *di_key,
4414 const char *name, int name_len,
4415 const char *data, int data_len,
4416 u8 type, void *ctx)
4417{
4418 int ret;
4419 struct send_ctx *sctx = ctx;
4420 char *found_data = NULL;
4421 int found_data_len = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004422
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004423 ret = find_xattr(sctx->parent_root, sctx->right_path,
4424 sctx->cmp_key, name, name_len, &found_data,
4425 &found_data_len);
Alexander Block31db9f72012-07-25 23:19:24 +02004426 if (ret == -ENOENT) {
4427 ret = __process_new_xattr(num, di_key, name, name_len, data,
4428 data_len, type, ctx);
4429 } else if (ret >= 0) {
4430 if (data_len != found_data_len ||
4431 memcmp(data, found_data, data_len)) {
4432 ret = __process_new_xattr(num, di_key, name, name_len,
4433 data, data_len, type, ctx);
4434 } else {
4435 ret = 0;
4436 }
4437 }
4438
4439 kfree(found_data);
Alexander Block31db9f72012-07-25 23:19:24 +02004440 return ret;
4441}
4442
4443static int __process_changed_deleted_xattr(int num, struct btrfs_key *di_key,
4444 const char *name, int name_len,
4445 const char *data, int data_len,
4446 u8 type, void *ctx)
4447{
4448 int ret;
4449 struct send_ctx *sctx = ctx;
4450
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004451 ret = find_xattr(sctx->send_root, sctx->left_path, sctx->cmp_key,
4452 name, name_len, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004453 if (ret == -ENOENT)
4454 ret = __process_deleted_xattr(num, di_key, name, name_len, data,
4455 data_len, type, ctx);
4456 else if (ret >= 0)
4457 ret = 0;
4458
4459 return ret;
4460}
4461
4462static int process_changed_xattr(struct send_ctx *sctx)
4463{
4464 int ret = 0;
4465
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004466 ret = iterate_dir_item(sctx->send_root, sctx->left_path,
Alexander Block31db9f72012-07-25 23:19:24 +02004467 sctx->cmp_key, __process_changed_new_xattr, sctx);
4468 if (ret < 0)
4469 goto out;
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004470 ret = iterate_dir_item(sctx->parent_root, sctx->right_path,
Alexander Block31db9f72012-07-25 23:19:24 +02004471 sctx->cmp_key, __process_changed_deleted_xattr, sctx);
4472
4473out:
4474 return ret;
4475}
4476
4477static int process_all_new_xattrs(struct send_ctx *sctx)
4478{
4479 int ret;
4480 struct btrfs_root *root;
4481 struct btrfs_path *path;
4482 struct btrfs_key key;
4483 struct btrfs_key found_key;
4484 struct extent_buffer *eb;
4485 int slot;
4486
4487 path = alloc_path_for_send();
4488 if (!path)
4489 return -ENOMEM;
4490
4491 root = sctx->send_root;
4492
4493 key.objectid = sctx->cmp_key->objectid;
4494 key.type = BTRFS_XATTR_ITEM_KEY;
4495 key.offset = 0;
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004496 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4497 if (ret < 0)
4498 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004499
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004500 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02004501 eb = path->nodes[0];
4502 slot = path->slots[0];
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004503 if (slot >= btrfs_header_nritems(eb)) {
4504 ret = btrfs_next_leaf(root, path);
4505 if (ret < 0) {
4506 goto out;
4507 } else if (ret > 0) {
4508 ret = 0;
4509 break;
4510 }
4511 continue;
4512 }
Alexander Block31db9f72012-07-25 23:19:24 +02004513
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004514 btrfs_item_key_to_cpu(eb, &found_key, slot);
Alexander Block31db9f72012-07-25 23:19:24 +02004515 if (found_key.objectid != key.objectid ||
4516 found_key.type != key.type) {
4517 ret = 0;
4518 goto out;
4519 }
4520
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004521 ret = iterate_dir_item(root, path, &found_key,
4522 __process_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004523 if (ret < 0)
4524 goto out;
4525
Filipe David Borba Mananadff6d0a2014-02-05 16:48:56 +00004526 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02004527 }
4528
4529out:
4530 btrfs_free_path(path);
4531 return ret;
4532}
4533
Josef Baciked259092013-10-25 11:36:01 -04004534static ssize_t fill_read_buf(struct send_ctx *sctx, u64 offset, u32 len)
4535{
4536 struct btrfs_root *root = sctx->send_root;
4537 struct btrfs_fs_info *fs_info = root->fs_info;
4538 struct inode *inode;
4539 struct page *page;
4540 char *addr;
4541 struct btrfs_key key;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004542 pgoff_t index = offset >> PAGE_SHIFT;
Josef Baciked259092013-10-25 11:36:01 -04004543 pgoff_t last_index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004544 unsigned pg_offset = offset & ~PAGE_MASK;
Josef Baciked259092013-10-25 11:36:01 -04004545 ssize_t ret = 0;
4546
4547 key.objectid = sctx->cur_ino;
4548 key.type = BTRFS_INODE_ITEM_KEY;
4549 key.offset = 0;
4550
4551 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
4552 if (IS_ERR(inode))
4553 return PTR_ERR(inode);
4554
4555 if (offset + len > i_size_read(inode)) {
4556 if (offset > i_size_read(inode))
4557 len = 0;
4558 else
4559 len = offset - i_size_read(inode);
4560 }
4561 if (len == 0)
4562 goto out;
4563
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004564 last_index = (offset + len - 1) >> PAGE_SHIFT;
Liu Bo2131bcd32014-03-05 10:07:35 +08004565
4566 /* initial readahead */
4567 memset(&sctx->ra, 0, sizeof(struct file_ra_state));
4568 file_ra_state_init(&sctx->ra, inode->i_mapping);
4569 btrfs_force_ra(inode->i_mapping, &sctx->ra, NULL, index,
4570 last_index - index + 1);
4571
Josef Baciked259092013-10-25 11:36:01 -04004572 while (index <= last_index) {
4573 unsigned cur_len = min_t(unsigned, len,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004574 PAGE_SIZE - pg_offset);
David Sterbae780b0d2016-01-18 18:42:13 +01004575 page = find_or_create_page(inode->i_mapping, index, GFP_KERNEL);
Josef Baciked259092013-10-25 11:36:01 -04004576 if (!page) {
4577 ret = -ENOMEM;
4578 break;
4579 }
4580
4581 if (!PageUptodate(page)) {
4582 btrfs_readpage(NULL, page);
4583 lock_page(page);
4584 if (!PageUptodate(page)) {
4585 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004586 put_page(page);
Josef Baciked259092013-10-25 11:36:01 -04004587 ret = -EIO;
4588 break;
4589 }
4590 }
4591
4592 addr = kmap(page);
4593 memcpy(sctx->read_buf + ret, addr + pg_offset, cur_len);
4594 kunmap(page);
4595 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004596 put_page(page);
Josef Baciked259092013-10-25 11:36:01 -04004597 index++;
4598 pg_offset = 0;
4599 len -= cur_len;
4600 ret += cur_len;
4601 }
4602out:
4603 iput(inode);
4604 return ret;
4605}
4606
Alexander Block31db9f72012-07-25 23:19:24 +02004607/*
4608 * Read some bytes from the current inode/file and send a write command to
4609 * user space.
4610 */
4611static int send_write(struct send_ctx *sctx, u64 offset, u32 len)
4612{
4613 int ret = 0;
4614 struct fs_path *p;
Josef Baciked259092013-10-25 11:36:01 -04004615 ssize_t num_read = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004616
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004617 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004618 if (!p)
4619 return -ENOMEM;
4620
Alexander Block31db9f72012-07-25 23:19:24 +02004621verbose_printk("btrfs: send_write offset=%llu, len=%d\n", offset, len);
4622
Josef Baciked259092013-10-25 11:36:01 -04004623 num_read = fill_read_buf(sctx, offset, len);
4624 if (num_read <= 0) {
4625 if (num_read < 0)
4626 ret = num_read;
Alexander Block31db9f72012-07-25 23:19:24 +02004627 goto out;
Josef Baciked259092013-10-25 11:36:01 -04004628 }
Alexander Block31db9f72012-07-25 23:19:24 +02004629
4630 ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE);
4631 if (ret < 0)
4632 goto out;
4633
4634 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4635 if (ret < 0)
4636 goto out;
4637
4638 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4639 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
Alexander Blocke938c8a2012-07-28 16:33:49 +02004640 TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, num_read);
Alexander Block31db9f72012-07-25 23:19:24 +02004641
4642 ret = send_cmd(sctx);
4643
4644tlv_put_failure:
4645out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004646 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004647 if (ret < 0)
4648 return ret;
Alexander Blocke938c8a2012-07-28 16:33:49 +02004649 return num_read;
Alexander Block31db9f72012-07-25 23:19:24 +02004650}
4651
4652/*
4653 * Send a clone command to user space.
4654 */
4655static int send_clone(struct send_ctx *sctx,
4656 u64 offset, u32 len,
4657 struct clone_root *clone_root)
4658{
4659 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02004660 struct fs_path *p;
4661 u64 gen;
4662
4663verbose_printk("btrfs: send_clone offset=%llu, len=%d, clone_root=%llu, "
4664 "clone_inode=%llu, clone_offset=%llu\n", offset, len,
4665 clone_root->root->objectid, clone_root->ino,
4666 clone_root->offset);
4667
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004668 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02004669 if (!p)
4670 return -ENOMEM;
4671
4672 ret = begin_cmd(sctx, BTRFS_SEND_C_CLONE);
4673 if (ret < 0)
4674 goto out;
4675
4676 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4677 if (ret < 0)
4678 goto out;
4679
4680 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
4681 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_LEN, len);
4682 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4683
Alexander Blocke938c8a2012-07-28 16:33:49 +02004684 if (clone_root->root == sctx->send_root) {
Alexander Block31db9f72012-07-25 23:19:24 +02004685 ret = get_inode_info(sctx->send_root, clone_root->ino, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02004686 &gen, NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004687 if (ret < 0)
4688 goto out;
4689 ret = get_cur_path(sctx, clone_root->ino, gen, p);
4690 } else {
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004691 ret = get_inode_path(clone_root->root, clone_root->ino, p);
Alexander Block31db9f72012-07-25 23:19:24 +02004692 }
4693 if (ret < 0)
4694 goto out;
4695
Josef Bacik37b8d272015-06-04 17:17:25 -04004696 /*
4697 * If the parent we're using has a received_uuid set then use that as
4698 * our clone source as that is what we will look for when doing a
4699 * receive.
4700 *
4701 * This covers the case that we create a snapshot off of a received
4702 * subvolume and then use that as the parent and try to receive on a
4703 * different host.
4704 */
4705 if (!btrfs_is_empty_uuid(clone_root->root->root_item.received_uuid))
4706 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
4707 clone_root->root->root_item.received_uuid);
4708 else
4709 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
4710 clone_root->root->root_item.uuid);
Alexander Block31db9f72012-07-25 23:19:24 +02004711 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID,
Filipe David Borba Manana5a0f4e22013-12-03 15:55:48 +00004712 le64_to_cpu(clone_root->root->root_item.ctransid));
Alexander Block31db9f72012-07-25 23:19:24 +02004713 TLV_PUT_PATH(sctx, BTRFS_SEND_A_CLONE_PATH, p);
4714 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_OFFSET,
4715 clone_root->offset);
4716
4717 ret = send_cmd(sctx);
4718
4719tlv_put_failure:
4720out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004721 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02004722 return ret;
4723}
4724
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004725/*
4726 * Send an update extent command to user space.
4727 */
4728static int send_update_extent(struct send_ctx *sctx,
4729 u64 offset, u32 len)
4730{
4731 int ret = 0;
4732 struct fs_path *p;
4733
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004734 p = fs_path_alloc();
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004735 if (!p)
4736 return -ENOMEM;
4737
4738 ret = begin_cmd(sctx, BTRFS_SEND_C_UPDATE_EXTENT);
4739 if (ret < 0)
4740 goto out;
4741
4742 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4743 if (ret < 0)
4744 goto out;
4745
4746 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4747 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
4748 TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, len);
4749
4750 ret = send_cmd(sctx);
4751
4752tlv_put_failure:
4753out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00004754 fs_path_free(p);
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004755 return ret;
4756}
4757
Josef Bacik16e75492013-10-22 12:18:51 -04004758static int send_hole(struct send_ctx *sctx, u64 end)
4759{
4760 struct fs_path *p = NULL;
4761 u64 offset = sctx->cur_inode_last_extent;
4762 u64 len;
4763 int ret = 0;
4764
4765 p = fs_path_alloc();
4766 if (!p)
4767 return -ENOMEM;
Filipe Mananac715e152014-03-31 14:52:14 +01004768 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
4769 if (ret < 0)
4770 goto tlv_put_failure;
Josef Bacik16e75492013-10-22 12:18:51 -04004771 memset(sctx->read_buf, 0, BTRFS_SEND_READ_SIZE);
4772 while (offset < end) {
4773 len = min_t(u64, end - offset, BTRFS_SEND_READ_SIZE);
4774
4775 ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE);
4776 if (ret < 0)
4777 break;
Josef Bacik16e75492013-10-22 12:18:51 -04004778 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
4779 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
4780 TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, len);
4781 ret = send_cmd(sctx);
4782 if (ret < 0)
4783 break;
4784 offset += len;
4785 }
4786tlv_put_failure:
4787 fs_path_free(p);
4788 return ret;
4789}
4790
Filipe Mananad906d492015-10-02 10:47:34 +01004791static int send_extent_data(struct send_ctx *sctx,
4792 const u64 offset,
4793 const u64 len)
4794{
4795 u64 sent = 0;
4796
4797 if (sctx->flags & BTRFS_SEND_FLAG_NO_FILE_DATA)
4798 return send_update_extent(sctx, offset, len);
4799
4800 while (sent < len) {
4801 u64 size = len - sent;
4802 int ret;
4803
4804 if (size > BTRFS_SEND_READ_SIZE)
4805 size = BTRFS_SEND_READ_SIZE;
4806 ret = send_write(sctx, offset + sent, size);
4807 if (ret < 0)
4808 return ret;
4809 if (!ret)
4810 break;
4811 sent += ret;
4812 }
4813 return 0;
4814}
4815
4816static int clone_range(struct send_ctx *sctx,
4817 struct clone_root *clone_root,
4818 const u64 disk_byte,
4819 u64 data_offset,
4820 u64 offset,
4821 u64 len)
4822{
4823 struct btrfs_path *path;
4824 struct btrfs_key key;
4825 int ret;
4826
4827 path = alloc_path_for_send();
4828 if (!path)
4829 return -ENOMEM;
4830
4831 /*
4832 * We can't send a clone operation for the entire range if we find
4833 * extent items in the respective range in the source file that
4834 * refer to different extents or if we find holes.
4835 * So check for that and do a mix of clone and regular write/copy
4836 * operations if needed.
4837 *
4838 * Example:
4839 *
4840 * mkfs.btrfs -f /dev/sda
4841 * mount /dev/sda /mnt
4842 * xfs_io -f -c "pwrite -S 0xaa 0K 100K" /mnt/foo
4843 * cp --reflink=always /mnt/foo /mnt/bar
4844 * xfs_io -c "pwrite -S 0xbb 50K 50K" /mnt/foo
4845 * btrfs subvolume snapshot -r /mnt /mnt/snap
4846 *
4847 * If when we send the snapshot and we are processing file bar (which
4848 * has a higher inode number than foo) we blindly send a clone operation
4849 * for the [0, 100K[ range from foo to bar, the receiver ends up getting
4850 * a file bar that matches the content of file foo - iow, doesn't match
4851 * the content from bar in the original filesystem.
4852 */
4853 key.objectid = clone_root->ino;
4854 key.type = BTRFS_EXTENT_DATA_KEY;
4855 key.offset = clone_root->offset;
4856 ret = btrfs_search_slot(NULL, clone_root->root, &key, path, 0, 0);
4857 if (ret < 0)
4858 goto out;
4859 if (ret > 0 && path->slots[0] > 0) {
4860 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0] - 1);
4861 if (key.objectid == clone_root->ino &&
4862 key.type == BTRFS_EXTENT_DATA_KEY)
4863 path->slots[0]--;
4864 }
4865
4866 while (true) {
4867 struct extent_buffer *leaf = path->nodes[0];
4868 int slot = path->slots[0];
4869 struct btrfs_file_extent_item *ei;
4870 u8 type;
4871 u64 ext_len;
4872 u64 clone_len;
4873
4874 if (slot >= btrfs_header_nritems(leaf)) {
4875 ret = btrfs_next_leaf(clone_root->root, path);
4876 if (ret < 0)
4877 goto out;
4878 else if (ret > 0)
4879 break;
4880 continue;
4881 }
4882
4883 btrfs_item_key_to_cpu(leaf, &key, slot);
4884
4885 /*
4886 * We might have an implicit trailing hole (NO_HOLES feature
4887 * enabled). We deal with it after leaving this loop.
4888 */
4889 if (key.objectid != clone_root->ino ||
4890 key.type != BTRFS_EXTENT_DATA_KEY)
4891 break;
4892
4893 ei = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
4894 type = btrfs_file_extent_type(leaf, ei);
4895 if (type == BTRFS_FILE_EXTENT_INLINE) {
4896 ext_len = btrfs_file_extent_inline_len(leaf, slot, ei);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004897 ext_len = PAGE_ALIGN(ext_len);
Filipe Mananad906d492015-10-02 10:47:34 +01004898 } else {
4899 ext_len = btrfs_file_extent_num_bytes(leaf, ei);
4900 }
4901
4902 if (key.offset + ext_len <= clone_root->offset)
4903 goto next;
4904
4905 if (key.offset > clone_root->offset) {
4906 /* Implicit hole, NO_HOLES feature enabled. */
4907 u64 hole_len = key.offset - clone_root->offset;
4908
4909 if (hole_len > len)
4910 hole_len = len;
4911 ret = send_extent_data(sctx, offset, hole_len);
4912 if (ret < 0)
4913 goto out;
4914
4915 len -= hole_len;
4916 if (len == 0)
4917 break;
4918 offset += hole_len;
4919 clone_root->offset += hole_len;
4920 data_offset += hole_len;
4921 }
4922
4923 if (key.offset >= clone_root->offset + len)
4924 break;
4925
4926 clone_len = min_t(u64, ext_len, len);
4927
4928 if (btrfs_file_extent_disk_bytenr(leaf, ei) == disk_byte &&
4929 btrfs_file_extent_offset(leaf, ei) == data_offset)
4930 ret = send_clone(sctx, offset, clone_len, clone_root);
4931 else
4932 ret = send_extent_data(sctx, offset, clone_len);
4933
4934 if (ret < 0)
4935 goto out;
4936
4937 len -= clone_len;
4938 if (len == 0)
4939 break;
4940 offset += clone_len;
4941 clone_root->offset += clone_len;
4942 data_offset += clone_len;
4943next:
4944 path->slots[0]++;
4945 }
4946
4947 if (len > 0)
4948 ret = send_extent_data(sctx, offset, len);
4949 else
4950 ret = 0;
4951out:
4952 btrfs_free_path(path);
4953 return ret;
4954}
4955
Alexander Block31db9f72012-07-25 23:19:24 +02004956static int send_write_or_clone(struct send_ctx *sctx,
4957 struct btrfs_path *path,
4958 struct btrfs_key *key,
4959 struct clone_root *clone_root)
4960{
4961 int ret = 0;
4962 struct btrfs_file_extent_item *ei;
4963 u64 offset = key->offset;
Alexander Block31db9f72012-07-25 23:19:24 +02004964 u64 len;
Alexander Block31db9f72012-07-25 23:19:24 +02004965 u8 type;
Filipe David Borba Manana28e5dd82014-01-12 02:26:28 +00004966 u64 bs = sctx->send_root->fs_info->sb->s_blocksize;
Alexander Block31db9f72012-07-25 23:19:24 +02004967
4968 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
4969 struct btrfs_file_extent_item);
4970 type = btrfs_file_extent_type(path->nodes[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04004971 if (type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004972 len = btrfs_file_extent_inline_len(path->nodes[0],
4973 path->slots[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04004974 /*
4975 * it is possible the inline item won't cover the whole page,
4976 * but there may be items after this page. Make
4977 * sure to send the whole thing
4978 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004979 len = PAGE_ALIGN(len);
Chris Mason74dd17f2012-08-07 16:25:13 -04004980 } else {
Alexander Block31db9f72012-07-25 23:19:24 +02004981 len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
Chris Mason74dd17f2012-08-07 16:25:13 -04004982 }
Alexander Block31db9f72012-07-25 23:19:24 +02004983
4984 if (offset + len > sctx->cur_inode_size)
4985 len = sctx->cur_inode_size - offset;
4986 if (len == 0) {
4987 ret = 0;
4988 goto out;
4989 }
4990
Filipe David Borba Manana28e5dd82014-01-12 02:26:28 +00004991 if (clone_root && IS_ALIGNED(offset + len, bs)) {
Filipe Mananad906d492015-10-02 10:47:34 +01004992 u64 disk_byte;
4993 u64 data_offset;
4994
4995 disk_byte = btrfs_file_extent_disk_bytenr(path->nodes[0], ei);
4996 data_offset = btrfs_file_extent_offset(path->nodes[0], ei);
4997 ret = clone_range(sctx, clone_root, disk_byte, data_offset,
4998 offset, len);
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004999 } else {
Filipe Mananad906d492015-10-02 10:47:34 +01005000 ret = send_extent_data(sctx, offset, len);
Alexander Block31db9f72012-07-25 23:19:24 +02005001 }
Alexander Block31db9f72012-07-25 23:19:24 +02005002out:
5003 return ret;
5004}
5005
5006static int is_extent_unchanged(struct send_ctx *sctx,
5007 struct btrfs_path *left_path,
5008 struct btrfs_key *ekey)
5009{
5010 int ret = 0;
5011 struct btrfs_key key;
5012 struct btrfs_path *path = NULL;
5013 struct extent_buffer *eb;
5014 int slot;
5015 struct btrfs_key found_key;
5016 struct btrfs_file_extent_item *ei;
5017 u64 left_disknr;
5018 u64 right_disknr;
5019 u64 left_offset;
5020 u64 right_offset;
5021 u64 left_offset_fixed;
5022 u64 left_len;
5023 u64 right_len;
Chris Mason74dd17f2012-08-07 16:25:13 -04005024 u64 left_gen;
5025 u64 right_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02005026 u8 left_type;
5027 u8 right_type;
5028
5029 path = alloc_path_for_send();
5030 if (!path)
5031 return -ENOMEM;
5032
5033 eb = left_path->nodes[0];
5034 slot = left_path->slots[0];
Alexander Block31db9f72012-07-25 23:19:24 +02005035 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
5036 left_type = btrfs_file_extent_type(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02005037
5038 if (left_type != BTRFS_FILE_EXTENT_REG) {
5039 ret = 0;
5040 goto out;
5041 }
Chris Mason74dd17f2012-08-07 16:25:13 -04005042 left_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
5043 left_len = btrfs_file_extent_num_bytes(eb, ei);
5044 left_offset = btrfs_file_extent_offset(eb, ei);
5045 left_gen = btrfs_file_extent_generation(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02005046
5047 /*
5048 * Following comments will refer to these graphics. L is the left
5049 * extents which we are checking at the moment. 1-8 are the right
5050 * extents that we iterate.
5051 *
5052 * |-----L-----|
5053 * |-1-|-2a-|-3-|-4-|-5-|-6-|
5054 *
5055 * |-----L-----|
5056 * |--1--|-2b-|...(same as above)
5057 *
5058 * Alternative situation. Happens on files where extents got split.
5059 * |-----L-----|
5060 * |-----------7-----------|-6-|
5061 *
5062 * Alternative situation. Happens on files which got larger.
5063 * |-----L-----|
5064 * |-8-|
5065 * Nothing follows after 8.
5066 */
5067
5068 key.objectid = ekey->objectid;
5069 key.type = BTRFS_EXTENT_DATA_KEY;
5070 key.offset = ekey->offset;
5071 ret = btrfs_search_slot_for_read(sctx->parent_root, &key, path, 0, 0);
5072 if (ret < 0)
5073 goto out;
5074 if (ret) {
5075 ret = 0;
5076 goto out;
5077 }
5078
5079 /*
5080 * Handle special case where the right side has no extents at all.
5081 */
5082 eb = path->nodes[0];
5083 slot = path->slots[0];
5084 btrfs_item_key_to_cpu(eb, &found_key, slot);
5085 if (found_key.objectid != key.objectid ||
5086 found_key.type != key.type) {
Josef Bacik57cfd462013-08-20 15:55:39 -04005087 /* If we're a hole then just pretend nothing changed */
5088 ret = (left_disknr) ? 0 : 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005089 goto out;
5090 }
5091
5092 /*
5093 * We're now on 2a, 2b or 7.
5094 */
5095 key = found_key;
5096 while (key.offset < ekey->offset + left_len) {
5097 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
5098 right_type = btrfs_file_extent_type(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02005099 if (right_type != BTRFS_FILE_EXTENT_REG) {
5100 ret = 0;
5101 goto out;
5102 }
5103
Josef Bacik007d31f2013-10-31 16:49:02 -04005104 right_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
5105 right_len = btrfs_file_extent_num_bytes(eb, ei);
5106 right_offset = btrfs_file_extent_offset(eb, ei);
5107 right_gen = btrfs_file_extent_generation(eb, ei);
5108
Alexander Block31db9f72012-07-25 23:19:24 +02005109 /*
5110 * Are we at extent 8? If yes, we know the extent is changed.
5111 * This may only happen on the first iteration.
5112 */
Alexander Blockd8347fa2012-08-01 12:49:15 +02005113 if (found_key.offset + right_len <= ekey->offset) {
Josef Bacik57cfd462013-08-20 15:55:39 -04005114 /* If we're a hole just pretend nothing changed */
5115 ret = (left_disknr) ? 0 : 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005116 goto out;
5117 }
5118
5119 left_offset_fixed = left_offset;
5120 if (key.offset < ekey->offset) {
5121 /* Fix the right offset for 2a and 7. */
5122 right_offset += ekey->offset - key.offset;
5123 } else {
5124 /* Fix the left offset for all behind 2a and 2b */
5125 left_offset_fixed += key.offset - ekey->offset;
5126 }
5127
5128 /*
5129 * Check if we have the same extent.
5130 */
Alexander Block39540962012-08-01 12:46:05 +02005131 if (left_disknr != right_disknr ||
Chris Mason74dd17f2012-08-07 16:25:13 -04005132 left_offset_fixed != right_offset ||
5133 left_gen != right_gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02005134 ret = 0;
5135 goto out;
5136 }
5137
5138 /*
5139 * Go to the next extent.
5140 */
5141 ret = btrfs_next_item(sctx->parent_root, path);
5142 if (ret < 0)
5143 goto out;
5144 if (!ret) {
5145 eb = path->nodes[0];
5146 slot = path->slots[0];
5147 btrfs_item_key_to_cpu(eb, &found_key, slot);
5148 }
5149 if (ret || found_key.objectid != key.objectid ||
5150 found_key.type != key.type) {
5151 key.offset += right_len;
5152 break;
Jan Schmidtadaa4b82013-03-21 14:30:23 +00005153 }
5154 if (found_key.offset != key.offset + right_len) {
5155 ret = 0;
5156 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005157 }
5158 key = found_key;
5159 }
5160
5161 /*
5162 * We're now behind the left extent (treat as unchanged) or at the end
5163 * of the right side (treat as changed).
5164 */
5165 if (key.offset >= ekey->offset + left_len)
5166 ret = 1;
5167 else
5168 ret = 0;
5169
5170
5171out:
5172 btrfs_free_path(path);
5173 return ret;
5174}
5175
Josef Bacik16e75492013-10-22 12:18:51 -04005176static int get_last_extent(struct send_ctx *sctx, u64 offset)
5177{
5178 struct btrfs_path *path;
5179 struct btrfs_root *root = sctx->send_root;
5180 struct btrfs_file_extent_item *fi;
5181 struct btrfs_key key;
5182 u64 extent_end;
5183 u8 type;
5184 int ret;
5185
5186 path = alloc_path_for_send();
5187 if (!path)
5188 return -ENOMEM;
5189
5190 sctx->cur_inode_last_extent = 0;
5191
5192 key.objectid = sctx->cur_ino;
5193 key.type = BTRFS_EXTENT_DATA_KEY;
5194 key.offset = offset;
5195 ret = btrfs_search_slot_for_read(root, &key, path, 0, 1);
5196 if (ret < 0)
5197 goto out;
5198 ret = 0;
5199 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
5200 if (key.objectid != sctx->cur_ino || key.type != BTRFS_EXTENT_DATA_KEY)
5201 goto out;
5202
5203 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
5204 struct btrfs_file_extent_item);
5205 type = btrfs_file_extent_type(path->nodes[0], fi);
5206 if (type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08005207 u64 size = btrfs_file_extent_inline_len(path->nodes[0],
5208 path->slots[0], fi);
Josef Bacik16e75492013-10-22 12:18:51 -04005209 extent_end = ALIGN(key.offset + size,
5210 sctx->send_root->sectorsize);
5211 } else {
5212 extent_end = key.offset +
5213 btrfs_file_extent_num_bytes(path->nodes[0], fi);
5214 }
5215 sctx->cur_inode_last_extent = extent_end;
5216out:
5217 btrfs_free_path(path);
5218 return ret;
5219}
5220
5221static int maybe_send_hole(struct send_ctx *sctx, struct btrfs_path *path,
5222 struct btrfs_key *key)
5223{
5224 struct btrfs_file_extent_item *fi;
5225 u64 extent_end;
5226 u8 type;
5227 int ret = 0;
5228
5229 if (sctx->cur_ino != key->objectid || !need_send_hole(sctx))
5230 return 0;
5231
5232 if (sctx->cur_inode_last_extent == (u64)-1) {
5233 ret = get_last_extent(sctx, key->offset - 1);
5234 if (ret)
5235 return ret;
5236 }
5237
5238 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
5239 struct btrfs_file_extent_item);
5240 type = btrfs_file_extent_type(path->nodes[0], fi);
5241 if (type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08005242 u64 size = btrfs_file_extent_inline_len(path->nodes[0],
5243 path->slots[0], fi);
Josef Bacik16e75492013-10-22 12:18:51 -04005244 extent_end = ALIGN(key->offset + size,
5245 sctx->send_root->sectorsize);
5246 } else {
5247 extent_end = key->offset +
5248 btrfs_file_extent_num_bytes(path->nodes[0], fi);
5249 }
Filipe David Borba Mananabf54f412014-01-28 01:38:06 +00005250
5251 if (path->slots[0] == 0 &&
5252 sctx->cur_inode_last_extent < key->offset) {
5253 /*
5254 * We might have skipped entire leafs that contained only
5255 * file extent items for our current inode. These leafs have
5256 * a generation number smaller (older) than the one in the
5257 * current leaf and the leaf our last extent came from, and
5258 * are located between these 2 leafs.
5259 */
5260 ret = get_last_extent(sctx, key->offset - 1);
5261 if (ret)
5262 return ret;
5263 }
5264
Josef Bacik16e75492013-10-22 12:18:51 -04005265 if (sctx->cur_inode_last_extent < key->offset)
5266 ret = send_hole(sctx, key->offset);
5267 sctx->cur_inode_last_extent = extent_end;
5268 return ret;
5269}
5270
Alexander Block31db9f72012-07-25 23:19:24 +02005271static int process_extent(struct send_ctx *sctx,
5272 struct btrfs_path *path,
5273 struct btrfs_key *key)
5274{
Alexander Block31db9f72012-07-25 23:19:24 +02005275 struct clone_root *found_clone = NULL;
Josef Bacik57cfd462013-08-20 15:55:39 -04005276 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02005277
5278 if (S_ISLNK(sctx->cur_inode_mode))
5279 return 0;
5280
5281 if (sctx->parent_root && !sctx->cur_inode_new) {
5282 ret = is_extent_unchanged(sctx, path, key);
5283 if (ret < 0)
5284 goto out;
5285 if (ret) {
5286 ret = 0;
Josef Bacik16e75492013-10-22 12:18:51 -04005287 goto out_hole;
Alexander Block31db9f72012-07-25 23:19:24 +02005288 }
Josef Bacik57cfd462013-08-20 15:55:39 -04005289 } else {
5290 struct btrfs_file_extent_item *ei;
5291 u8 type;
5292
5293 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
5294 struct btrfs_file_extent_item);
5295 type = btrfs_file_extent_type(path->nodes[0], ei);
5296 if (type == BTRFS_FILE_EXTENT_PREALLOC ||
5297 type == BTRFS_FILE_EXTENT_REG) {
5298 /*
5299 * The send spec does not have a prealloc command yet,
5300 * so just leave a hole for prealloc'ed extents until
5301 * we have enough commands queued up to justify rev'ing
5302 * the send spec.
5303 */
5304 if (type == BTRFS_FILE_EXTENT_PREALLOC) {
5305 ret = 0;
5306 goto out;
5307 }
5308
5309 /* Have a hole, just skip it. */
5310 if (btrfs_file_extent_disk_bytenr(path->nodes[0], ei) == 0) {
5311 ret = 0;
5312 goto out;
5313 }
5314 }
Alexander Block31db9f72012-07-25 23:19:24 +02005315 }
5316
5317 ret = find_extent_clone(sctx, path, key->objectid, key->offset,
5318 sctx->cur_inode_size, &found_clone);
5319 if (ret != -ENOENT && ret < 0)
5320 goto out;
5321
5322 ret = send_write_or_clone(sctx, path, key, found_clone);
Josef Bacik16e75492013-10-22 12:18:51 -04005323 if (ret)
5324 goto out;
5325out_hole:
5326 ret = maybe_send_hole(sctx, path, key);
Alexander Block31db9f72012-07-25 23:19:24 +02005327out:
5328 return ret;
5329}
5330
5331static int process_all_extents(struct send_ctx *sctx)
5332{
5333 int ret;
5334 struct btrfs_root *root;
5335 struct btrfs_path *path;
5336 struct btrfs_key key;
5337 struct btrfs_key found_key;
5338 struct extent_buffer *eb;
5339 int slot;
5340
5341 root = sctx->send_root;
5342 path = alloc_path_for_send();
5343 if (!path)
5344 return -ENOMEM;
5345
5346 key.objectid = sctx->cmp_key->objectid;
5347 key.type = BTRFS_EXTENT_DATA_KEY;
5348 key.offset = 0;
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005349 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5350 if (ret < 0)
5351 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005352
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005353 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02005354 eb = path->nodes[0];
5355 slot = path->slots[0];
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005356
5357 if (slot >= btrfs_header_nritems(eb)) {
5358 ret = btrfs_next_leaf(root, path);
5359 if (ret < 0) {
5360 goto out;
5361 } else if (ret > 0) {
5362 ret = 0;
5363 break;
5364 }
5365 continue;
5366 }
5367
Alexander Block31db9f72012-07-25 23:19:24 +02005368 btrfs_item_key_to_cpu(eb, &found_key, slot);
5369
5370 if (found_key.objectid != key.objectid ||
5371 found_key.type != key.type) {
5372 ret = 0;
5373 goto out;
5374 }
5375
5376 ret = process_extent(sctx, path, &found_key);
5377 if (ret < 0)
5378 goto out;
5379
Filipe David Borba Manana7fdd29d2014-01-24 17:42:09 +00005380 path->slots[0]++;
Alexander Block31db9f72012-07-25 23:19:24 +02005381 }
5382
5383out:
5384 btrfs_free_path(path);
5385 return ret;
5386}
5387
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005388static int process_recorded_refs_if_needed(struct send_ctx *sctx, int at_end,
5389 int *pending_move,
5390 int *refs_processed)
Alexander Block31db9f72012-07-25 23:19:24 +02005391{
5392 int ret = 0;
5393
5394 if (sctx->cur_ino == 0)
5395 goto out;
5396 if (!at_end && sctx->cur_ino == sctx->cmp_key->objectid &&
Jan Schmidt96b5bd72012-10-15 08:30:45 +00005397 sctx->cmp_key->type <= BTRFS_INODE_EXTREF_KEY)
Alexander Block31db9f72012-07-25 23:19:24 +02005398 goto out;
5399 if (list_empty(&sctx->new_refs) && list_empty(&sctx->deleted_refs))
5400 goto out;
5401
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005402 ret = process_recorded_refs(sctx, pending_move);
Alexander Blocke479d9b2012-07-28 16:09:35 +02005403 if (ret < 0)
5404 goto out;
5405
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005406 *refs_processed = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005407out:
5408 return ret;
5409}
5410
5411static int finish_inode_if_needed(struct send_ctx *sctx, int at_end)
5412{
5413 int ret = 0;
5414 u64 left_mode;
5415 u64 left_uid;
5416 u64 left_gid;
5417 u64 right_mode;
5418 u64 right_uid;
5419 u64 right_gid;
5420 int need_chmod = 0;
5421 int need_chown = 0;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005422 int pending_move = 0;
5423 int refs_processed = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02005424
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005425 ret = process_recorded_refs_if_needed(sctx, at_end, &pending_move,
5426 &refs_processed);
Alexander Block31db9f72012-07-25 23:19:24 +02005427 if (ret < 0)
5428 goto out;
5429
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005430 /*
5431 * We have processed the refs and thus need to advance send_progress.
5432 * Now, calls to get_cur_xxx will take the updated refs of the current
5433 * inode into account.
5434 *
5435 * On the other hand, if our current inode is a directory and couldn't
5436 * be moved/renamed because its parent was renamed/moved too and it has
5437 * a higher inode number, we can only move/rename our current inode
5438 * after we moved/renamed its parent. Therefore in this case operate on
5439 * the old path (pre move/rename) of our current inode, and the
5440 * move/rename will be performed later.
5441 */
5442 if (refs_processed && !pending_move)
5443 sctx->send_progress = sctx->cur_ino + 1;
5444
Alexander Block31db9f72012-07-25 23:19:24 +02005445 if (sctx->cur_ino == 0 || sctx->cur_inode_deleted)
5446 goto out;
5447 if (!at_end && sctx->cmp_key->objectid == sctx->cur_ino)
5448 goto out;
5449
5450 ret = get_inode_info(sctx->send_root, sctx->cur_ino, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02005451 &left_mode, &left_uid, &left_gid, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02005452 if (ret < 0)
5453 goto out;
5454
Alex Lyakase2d044f2012-10-17 13:52:47 +00005455 if (!sctx->parent_root || sctx->cur_inode_new) {
5456 need_chown = 1;
5457 if (!S_ISLNK(sctx->cur_inode_mode))
Alexander Block31db9f72012-07-25 23:19:24 +02005458 need_chmod = 1;
Alex Lyakase2d044f2012-10-17 13:52:47 +00005459 } else {
5460 ret = get_inode_info(sctx->parent_root, sctx->cur_ino,
5461 NULL, NULL, &right_mode, &right_uid,
5462 &right_gid, NULL);
5463 if (ret < 0)
5464 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02005465
Alex Lyakase2d044f2012-10-17 13:52:47 +00005466 if (left_uid != right_uid || left_gid != right_gid)
5467 need_chown = 1;
5468 if (!S_ISLNK(sctx->cur_inode_mode) && left_mode != right_mode)
5469 need_chmod = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02005470 }
5471
5472 if (S_ISREG(sctx->cur_inode_mode)) {
Josef Bacik16e75492013-10-22 12:18:51 -04005473 if (need_send_hole(sctx)) {
Filipe Manana766b5e52014-03-30 23:02:53 +01005474 if (sctx->cur_inode_last_extent == (u64)-1 ||
5475 sctx->cur_inode_last_extent <
5476 sctx->cur_inode_size) {
Josef Bacik16e75492013-10-22 12:18:51 -04005477 ret = get_last_extent(sctx, (u64)-1);
5478 if (ret)
5479 goto out;
5480 }
5481 if (sctx->cur_inode_last_extent <
5482 sctx->cur_inode_size) {
5483 ret = send_hole(sctx, sctx->cur_inode_size);
5484 if (ret)
5485 goto out;
5486 }
5487 }
Alexander Block31db9f72012-07-25 23:19:24 +02005488 ret = send_truncate(sctx, sctx->cur_ino, sctx->cur_inode_gen,
5489 sctx->cur_inode_size);
5490 if (ret < 0)
5491 goto out;
5492 }
5493
5494 if (need_chown) {
5495 ret = send_chown(sctx, sctx->cur_ino, sctx->cur_inode_gen,
5496 left_uid, left_gid);
5497 if (ret < 0)
5498 goto out;
5499 }
5500 if (need_chmod) {
5501 ret = send_chmod(sctx, sctx->cur_ino, sctx->cur_inode_gen,
5502 left_mode);
5503 if (ret < 0)
5504 goto out;
5505 }
5506
5507 /*
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005508 * If other directory inodes depended on our current directory
5509 * inode's move/rename, now do their move/rename operations.
Alexander Block31db9f72012-07-25 23:19:24 +02005510 */
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005511 if (!is_waiting_for_move(sctx, sctx->cur_ino)) {
5512 ret = apply_children_dir_moves(sctx);
5513 if (ret)
5514 goto out;
Filipe Mananafcbd2152014-03-03 12:28:40 +00005515 /*
5516 * Need to send that every time, no matter if it actually
5517 * changed between the two trees as we have done changes to
5518 * the inode before. If our inode is a directory and it's
5519 * waiting to be moved/renamed, we will send its utimes when
5520 * it's moved/renamed, therefore we don't need to do it here.
5521 */
5522 sctx->send_progress = sctx->cur_ino + 1;
5523 ret = send_utimes(sctx, sctx->cur_ino, sctx->cur_inode_gen);
5524 if (ret < 0)
5525 goto out;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00005526 }
5527
Alexander Block31db9f72012-07-25 23:19:24 +02005528out:
5529 return ret;
5530}
5531
5532static int changed_inode(struct send_ctx *sctx,
5533 enum btrfs_compare_tree_result result)
5534{
5535 int ret = 0;
5536 struct btrfs_key *key = sctx->cmp_key;
5537 struct btrfs_inode_item *left_ii = NULL;
5538 struct btrfs_inode_item *right_ii = NULL;
5539 u64 left_gen = 0;
5540 u64 right_gen = 0;
5541
Alexander Block31db9f72012-07-25 23:19:24 +02005542 sctx->cur_ino = key->objectid;
5543 sctx->cur_inode_new_gen = 0;
Josef Bacik16e75492013-10-22 12:18:51 -04005544 sctx->cur_inode_last_extent = (u64)-1;
Alexander Blocke479d9b2012-07-28 16:09:35 +02005545
5546 /*
5547 * Set send_progress to current inode. This will tell all get_cur_xxx
5548 * functions that the current inode's refs are not updated yet. Later,
5549 * when process_recorded_refs is finished, it is set to cur_ino + 1.
5550 */
Alexander Block31db9f72012-07-25 23:19:24 +02005551 sctx->send_progress = sctx->cur_ino;
5552
5553 if (result == BTRFS_COMPARE_TREE_NEW ||
5554 result == BTRFS_COMPARE_TREE_CHANGED) {
5555 left_ii = btrfs_item_ptr(sctx->left_path->nodes[0],
5556 sctx->left_path->slots[0],
5557 struct btrfs_inode_item);
5558 left_gen = btrfs_inode_generation(sctx->left_path->nodes[0],
5559 left_ii);
5560 } else {
5561 right_ii = btrfs_item_ptr(sctx->right_path->nodes[0],
5562 sctx->right_path->slots[0],
5563 struct btrfs_inode_item);
5564 right_gen = btrfs_inode_generation(sctx->right_path->nodes[0],
5565 right_ii);
5566 }
5567 if (result == BTRFS_COMPARE_TREE_CHANGED) {
5568 right_ii = btrfs_item_ptr(sctx->right_path->nodes[0],
5569 sctx->right_path->slots[0],
5570 struct btrfs_inode_item);
5571
5572 right_gen = btrfs_inode_generation(sctx->right_path->nodes[0],
5573 right_ii);
Alexander Block6d85ed02012-08-01 14:48:59 +02005574
5575 /*
5576 * The cur_ino = root dir case is special here. We can't treat
5577 * the inode as deleted+reused because it would generate a
5578 * stream that tries to delete/mkdir the root dir.
5579 */
5580 if (left_gen != right_gen &&
5581 sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID)
Alexander Block31db9f72012-07-25 23:19:24 +02005582 sctx->cur_inode_new_gen = 1;
5583 }
5584
5585 if (result == BTRFS_COMPARE_TREE_NEW) {
5586 sctx->cur_inode_gen = left_gen;
5587 sctx->cur_inode_new = 1;
5588 sctx->cur_inode_deleted = 0;
5589 sctx->cur_inode_size = btrfs_inode_size(
5590 sctx->left_path->nodes[0], left_ii);
5591 sctx->cur_inode_mode = btrfs_inode_mode(
5592 sctx->left_path->nodes[0], left_ii);
Liu Bo644d1942014-02-27 17:29:01 +08005593 sctx->cur_inode_rdev = btrfs_inode_rdev(
5594 sctx->left_path->nodes[0], left_ii);
Alexander Block31db9f72012-07-25 23:19:24 +02005595 if (sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID)
Alexander Block1f4692d2012-07-28 10:42:24 +02005596 ret = send_create_inode_if_needed(sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02005597 } else if (result == BTRFS_COMPARE_TREE_DELETED) {
5598 sctx->cur_inode_gen = right_gen;
5599 sctx->cur_inode_new = 0;
5600 sctx->cur_inode_deleted = 1;
5601 sctx->cur_inode_size = btrfs_inode_size(
5602 sctx->right_path->nodes[0], right_ii);
5603 sctx->cur_inode_mode = btrfs_inode_mode(
5604 sctx->right_path->nodes[0], right_ii);
5605 } else if (result == BTRFS_COMPARE_TREE_CHANGED) {
Alexander Block766702e2012-07-28 14:11:31 +02005606 /*
5607 * We need to do some special handling in case the inode was
5608 * reported as changed with a changed generation number. This
5609 * means that the original inode was deleted and new inode
5610 * reused the same inum. So we have to treat the old inode as
5611 * deleted and the new one as new.
5612 */
Alexander Block31db9f72012-07-25 23:19:24 +02005613 if (sctx->cur_inode_new_gen) {
Alexander Block766702e2012-07-28 14:11:31 +02005614 /*
5615 * First, process the inode as if it was deleted.
5616 */
Alexander Block31db9f72012-07-25 23:19:24 +02005617 sctx->cur_inode_gen = right_gen;
5618 sctx->cur_inode_new = 0;
5619 sctx->cur_inode_deleted = 1;
5620 sctx->cur_inode_size = btrfs_inode_size(
5621 sctx->right_path->nodes[0], right_ii);
5622 sctx->cur_inode_mode = btrfs_inode_mode(
5623 sctx->right_path->nodes[0], right_ii);
5624 ret = process_all_refs(sctx,
5625 BTRFS_COMPARE_TREE_DELETED);
5626 if (ret < 0)
5627 goto out;
5628
Alexander Block766702e2012-07-28 14:11:31 +02005629 /*
5630 * Now process the inode as if it was new.
5631 */
Alexander Block31db9f72012-07-25 23:19:24 +02005632 sctx->cur_inode_gen = left_gen;
5633 sctx->cur_inode_new = 1;
5634 sctx->cur_inode_deleted = 0;
5635 sctx->cur_inode_size = btrfs_inode_size(
5636 sctx->left_path->nodes[0], left_ii);
5637 sctx->cur_inode_mode = btrfs_inode_mode(
5638 sctx->left_path->nodes[0], left_ii);
Liu Bo644d1942014-02-27 17:29:01 +08005639 sctx->cur_inode_rdev = btrfs_inode_rdev(
5640 sctx->left_path->nodes[0], left_ii);
Alexander Block1f4692d2012-07-28 10:42:24 +02005641 ret = send_create_inode_if_needed(sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02005642 if (ret < 0)
5643 goto out;
5644
5645 ret = process_all_refs(sctx, BTRFS_COMPARE_TREE_NEW);
5646 if (ret < 0)
5647 goto out;
Alexander Blocke479d9b2012-07-28 16:09:35 +02005648 /*
5649 * Advance send_progress now as we did not get into
5650 * process_recorded_refs_if_needed in the new_gen case.
5651 */
5652 sctx->send_progress = sctx->cur_ino + 1;
Alexander Block766702e2012-07-28 14:11:31 +02005653
5654 /*
5655 * Now process all extents and xattrs of the inode as if
5656 * they were all new.
5657 */
Alexander Block31db9f72012-07-25 23:19:24 +02005658 ret = process_all_extents(sctx);
5659 if (ret < 0)
5660 goto out;
5661 ret = process_all_new_xattrs(sctx);
5662 if (ret < 0)
5663 goto out;
5664 } else {
5665 sctx->cur_inode_gen = left_gen;
5666 sctx->cur_inode_new = 0;
5667 sctx->cur_inode_new_gen = 0;
5668 sctx->cur_inode_deleted = 0;
5669 sctx->cur_inode_size = btrfs_inode_size(
5670 sctx->left_path->nodes[0], left_ii);
5671 sctx->cur_inode_mode = btrfs_inode_mode(
5672 sctx->left_path->nodes[0], left_ii);
5673 }
5674 }
5675
5676out:
5677 return ret;
5678}
5679
Alexander Block766702e2012-07-28 14:11:31 +02005680/*
5681 * We have to process new refs before deleted refs, but compare_trees gives us
5682 * the new and deleted refs mixed. To fix this, we record the new/deleted refs
5683 * first and later process them in process_recorded_refs.
5684 * For the cur_inode_new_gen case, we skip recording completely because
5685 * changed_inode did already initiate processing of refs. The reason for this is
5686 * that in this case, compare_tree actually compares the refs of 2 different
5687 * inodes. To fix this, process_all_refs is used in changed_inode to handle all
5688 * refs of the right tree as deleted and all refs of the left tree as new.
5689 */
Alexander Block31db9f72012-07-25 23:19:24 +02005690static int changed_ref(struct send_ctx *sctx,
5691 enum btrfs_compare_tree_result result)
5692{
5693 int ret = 0;
5694
5695 BUG_ON(sctx->cur_ino != sctx->cmp_key->objectid);
5696
5697 if (!sctx->cur_inode_new_gen &&
5698 sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID) {
5699 if (result == BTRFS_COMPARE_TREE_NEW)
5700 ret = record_new_ref(sctx);
5701 else if (result == BTRFS_COMPARE_TREE_DELETED)
5702 ret = record_deleted_ref(sctx);
5703 else if (result == BTRFS_COMPARE_TREE_CHANGED)
5704 ret = record_changed_ref(sctx);
5705 }
5706
5707 return ret;
5708}
5709
Alexander Block766702e2012-07-28 14:11:31 +02005710/*
5711 * Process new/deleted/changed xattrs. We skip processing in the
5712 * cur_inode_new_gen case because changed_inode did already initiate processing
5713 * of xattrs. The reason is the same as in changed_ref
5714 */
Alexander Block31db9f72012-07-25 23:19:24 +02005715static int changed_xattr(struct send_ctx *sctx,
5716 enum btrfs_compare_tree_result result)
5717{
5718 int ret = 0;
5719
5720 BUG_ON(sctx->cur_ino != sctx->cmp_key->objectid);
5721
5722 if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) {
5723 if (result == BTRFS_COMPARE_TREE_NEW)
5724 ret = process_new_xattr(sctx);
5725 else if (result == BTRFS_COMPARE_TREE_DELETED)
5726 ret = process_deleted_xattr(sctx);
5727 else if (result == BTRFS_COMPARE_TREE_CHANGED)
5728 ret = process_changed_xattr(sctx);
5729 }
5730
5731 return ret;
5732}
5733
Alexander Block766702e2012-07-28 14:11:31 +02005734/*
5735 * Process new/deleted/changed extents. We skip processing in the
5736 * cur_inode_new_gen case because changed_inode did already initiate processing
5737 * of extents. The reason is the same as in changed_ref
5738 */
Alexander Block31db9f72012-07-25 23:19:24 +02005739static int changed_extent(struct send_ctx *sctx,
5740 enum btrfs_compare_tree_result result)
5741{
5742 int ret = 0;
5743
5744 BUG_ON(sctx->cur_ino != sctx->cmp_key->objectid);
5745
5746 if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) {
5747 if (result != BTRFS_COMPARE_TREE_DELETED)
5748 ret = process_extent(sctx, sctx->left_path,
5749 sctx->cmp_key);
5750 }
5751
5752 return ret;
5753}
5754
Josef Bacikba5e8f22013-08-16 16:52:55 -04005755static int dir_changed(struct send_ctx *sctx, u64 dir)
5756{
5757 u64 orig_gen, new_gen;
5758 int ret;
5759
5760 ret = get_inode_info(sctx->send_root, dir, NULL, &new_gen, NULL, NULL,
5761 NULL, NULL);
5762 if (ret)
5763 return ret;
5764
5765 ret = get_inode_info(sctx->parent_root, dir, NULL, &orig_gen, NULL,
5766 NULL, NULL, NULL);
5767 if (ret)
5768 return ret;
5769
5770 return (orig_gen != new_gen) ? 1 : 0;
5771}
5772
5773static int compare_refs(struct send_ctx *sctx, struct btrfs_path *path,
5774 struct btrfs_key *key)
5775{
5776 struct btrfs_inode_extref *extref;
5777 struct extent_buffer *leaf;
5778 u64 dirid = 0, last_dirid = 0;
5779 unsigned long ptr;
5780 u32 item_size;
5781 u32 cur_offset = 0;
5782 int ref_name_len;
5783 int ret = 0;
5784
5785 /* Easy case, just check this one dirid */
5786 if (key->type == BTRFS_INODE_REF_KEY) {
5787 dirid = key->offset;
5788
5789 ret = dir_changed(sctx, dirid);
5790 goto out;
5791 }
5792
5793 leaf = path->nodes[0];
5794 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
5795 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
5796 while (cur_offset < item_size) {
5797 extref = (struct btrfs_inode_extref *)(ptr +
5798 cur_offset);
5799 dirid = btrfs_inode_extref_parent(leaf, extref);
5800 ref_name_len = btrfs_inode_extref_name_len(leaf, extref);
5801 cur_offset += ref_name_len + sizeof(*extref);
5802 if (dirid == last_dirid)
5803 continue;
5804 ret = dir_changed(sctx, dirid);
5805 if (ret)
5806 break;
5807 last_dirid = dirid;
5808 }
5809out:
5810 return ret;
5811}
5812
Alexander Block766702e2012-07-28 14:11:31 +02005813/*
5814 * Updates compare related fields in sctx and simply forwards to the actual
5815 * changed_xxx functions.
5816 */
Alexander Block31db9f72012-07-25 23:19:24 +02005817static int changed_cb(struct btrfs_root *left_root,
5818 struct btrfs_root *right_root,
5819 struct btrfs_path *left_path,
5820 struct btrfs_path *right_path,
5821 struct btrfs_key *key,
5822 enum btrfs_compare_tree_result result,
5823 void *ctx)
5824{
5825 int ret = 0;
5826 struct send_ctx *sctx = ctx;
5827
Josef Bacikba5e8f22013-08-16 16:52:55 -04005828 if (result == BTRFS_COMPARE_TREE_SAME) {
Josef Bacik16e75492013-10-22 12:18:51 -04005829 if (key->type == BTRFS_INODE_REF_KEY ||
5830 key->type == BTRFS_INODE_EXTREF_KEY) {
5831 ret = compare_refs(sctx, left_path, key);
5832 if (!ret)
5833 return 0;
5834 if (ret < 0)
5835 return ret;
5836 } else if (key->type == BTRFS_EXTENT_DATA_KEY) {
5837 return maybe_send_hole(sctx, left_path, key);
5838 } else {
Josef Bacikba5e8f22013-08-16 16:52:55 -04005839 return 0;
Josef Bacik16e75492013-10-22 12:18:51 -04005840 }
Josef Bacikba5e8f22013-08-16 16:52:55 -04005841 result = BTRFS_COMPARE_TREE_CHANGED;
5842 ret = 0;
5843 }
5844
Alexander Block31db9f72012-07-25 23:19:24 +02005845 sctx->left_path = left_path;
5846 sctx->right_path = right_path;
5847 sctx->cmp_key = key;
5848
5849 ret = finish_inode_if_needed(sctx, 0);
5850 if (ret < 0)
5851 goto out;
5852
Alexander Block2981e222012-08-01 14:47:03 +02005853 /* Ignore non-FS objects */
5854 if (key->objectid == BTRFS_FREE_INO_OBJECTID ||
5855 key->objectid == BTRFS_FREE_SPACE_OBJECTID)
5856 goto out;
5857
Alexander Block31db9f72012-07-25 23:19:24 +02005858 if (key->type == BTRFS_INODE_ITEM_KEY)
5859 ret = changed_inode(sctx, result);
Jan Schmidt96b5bd72012-10-15 08:30:45 +00005860 else if (key->type == BTRFS_INODE_REF_KEY ||
5861 key->type == BTRFS_INODE_EXTREF_KEY)
Alexander Block31db9f72012-07-25 23:19:24 +02005862 ret = changed_ref(sctx, result);
5863 else if (key->type == BTRFS_XATTR_ITEM_KEY)
5864 ret = changed_xattr(sctx, result);
5865 else if (key->type == BTRFS_EXTENT_DATA_KEY)
5866 ret = changed_extent(sctx, result);
5867
5868out:
5869 return ret;
5870}
5871
5872static int full_send_tree(struct send_ctx *sctx)
5873{
5874 int ret;
Alexander Block31db9f72012-07-25 23:19:24 +02005875 struct btrfs_root *send_root = sctx->send_root;
5876 struct btrfs_key key;
5877 struct btrfs_key found_key;
5878 struct btrfs_path *path;
5879 struct extent_buffer *eb;
5880 int slot;
Alexander Block31db9f72012-07-25 23:19:24 +02005881
5882 path = alloc_path_for_send();
5883 if (!path)
5884 return -ENOMEM;
5885
Alexander Block31db9f72012-07-25 23:19:24 +02005886 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
5887 key.type = BTRFS_INODE_ITEM_KEY;
5888 key.offset = 0;
5889
Alexander Block31db9f72012-07-25 23:19:24 +02005890 ret = btrfs_search_slot_for_read(send_root, &key, path, 1, 0);
5891 if (ret < 0)
5892 goto out;
5893 if (ret)
5894 goto out_finish;
5895
5896 while (1) {
Alexander Block31db9f72012-07-25 23:19:24 +02005897 eb = path->nodes[0];
5898 slot = path->slots[0];
5899 btrfs_item_key_to_cpu(eb, &found_key, slot);
5900
5901 ret = changed_cb(send_root, NULL, path, NULL,
5902 &found_key, BTRFS_COMPARE_TREE_NEW, sctx);
5903 if (ret < 0)
5904 goto out;
5905
5906 key.objectid = found_key.objectid;
5907 key.type = found_key.type;
5908 key.offset = found_key.offset + 1;
5909
5910 ret = btrfs_next_item(send_root, path);
5911 if (ret < 0)
5912 goto out;
5913 if (ret) {
5914 ret = 0;
5915 break;
5916 }
5917 }
5918
5919out_finish:
5920 ret = finish_inode_if_needed(sctx, 1);
5921
5922out:
5923 btrfs_free_path(path);
Alexander Block31db9f72012-07-25 23:19:24 +02005924 return ret;
5925}
5926
5927static int send_subvol(struct send_ctx *sctx)
5928{
5929 int ret;
5930
Stefan Behrensc2c71322013-04-10 17:10:52 +00005931 if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_STREAM_HEADER)) {
5932 ret = send_header(sctx);
5933 if (ret < 0)
5934 goto out;
5935 }
Alexander Block31db9f72012-07-25 23:19:24 +02005936
5937 ret = send_subvol_begin(sctx);
5938 if (ret < 0)
5939 goto out;
5940
5941 if (sctx->parent_root) {
5942 ret = btrfs_compare_trees(sctx->send_root, sctx->parent_root,
5943 changed_cb, sctx);
5944 if (ret < 0)
5945 goto out;
5946 ret = finish_inode_if_needed(sctx, 1);
5947 if (ret < 0)
5948 goto out;
5949 } else {
5950 ret = full_send_tree(sctx);
5951 if (ret < 0)
5952 goto out;
5953 }
5954
5955out:
Alexander Block31db9f72012-07-25 23:19:24 +02005956 free_recorded_refs(sctx);
5957 return ret;
5958}
5959
Filipe Mananae5fa8f82014-10-21 11:11:41 +01005960/*
5961 * If orphan cleanup did remove any orphans from a root, it means the tree
5962 * was modified and therefore the commit root is not the same as the current
5963 * root anymore. This is a problem, because send uses the commit root and
5964 * therefore can see inode items that don't exist in the current root anymore,
5965 * and for example make calls to btrfs_iget, which will do tree lookups based
5966 * on the current root and not on the commit root. Those lookups will fail,
5967 * returning a -ESTALE error, and making send fail with that error. So make
5968 * sure a send does not see any orphans we have just removed, and that it will
5969 * see the same inodes regardless of whether a transaction commit happened
5970 * before it started (meaning that the commit root will be the same as the
5971 * current root) or not.
5972 */
5973static int ensure_commit_roots_uptodate(struct send_ctx *sctx)
5974{
5975 int i;
5976 struct btrfs_trans_handle *trans = NULL;
5977
5978again:
5979 if (sctx->parent_root &&
5980 sctx->parent_root->node != sctx->parent_root->commit_root)
5981 goto commit_trans;
5982
5983 for (i = 0; i < sctx->clone_roots_cnt; i++)
5984 if (sctx->clone_roots[i].root->node !=
5985 sctx->clone_roots[i].root->commit_root)
5986 goto commit_trans;
5987
5988 if (trans)
5989 return btrfs_end_transaction(trans, sctx->send_root);
5990
5991 return 0;
5992
5993commit_trans:
5994 /* Use any root, all fs roots will get their commit roots updated. */
5995 if (!trans) {
5996 trans = btrfs_join_transaction(sctx->send_root);
5997 if (IS_ERR(trans))
5998 return PTR_ERR(trans);
5999 goto again;
6000 }
6001
6002 return btrfs_commit_transaction(trans, sctx->send_root);
6003}
6004
David Sterba66ef7d62013-12-17 15:07:20 +01006005static void btrfs_root_dec_send_in_progress(struct btrfs_root* root)
6006{
6007 spin_lock(&root->root_item_lock);
6008 root->send_in_progress--;
6009 /*
6010 * Not much left to do, we don't know why it's unbalanced and
6011 * can't blindly reset it to 0.
6012 */
6013 if (root->send_in_progress < 0)
6014 btrfs_err(root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02006015 "send_in_progres unbalanced %d root %llu",
David Sterba66ef7d62013-12-17 15:07:20 +01006016 root->send_in_progress, root->root_key.objectid);
6017 spin_unlock(&root->root_item_lock);
6018}
6019
Alexander Block31db9f72012-07-25 23:19:24 +02006020long btrfs_ioctl_send(struct file *mnt_file, void __user *arg_)
6021{
6022 int ret = 0;
6023 struct btrfs_root *send_root;
6024 struct btrfs_root *clone_root;
6025 struct btrfs_fs_info *fs_info;
6026 struct btrfs_ioctl_send_args *arg = NULL;
6027 struct btrfs_key key;
Alexander Block31db9f72012-07-25 23:19:24 +02006028 struct send_ctx *sctx = NULL;
6029 u32 i;
6030 u64 *clone_sources_tmp = NULL;
David Sterba2c686532013-12-16 17:34:17 +01006031 int clone_sources_to_rollback = 0;
David Sterbae55d1152016-04-11 18:52:02 +02006032 unsigned alloc_size;
Wang Shilong896c14f2014-01-07 17:25:18 +08006033 int sort_clone_roots = 0;
Wang Shilong18f687d2014-01-07 17:25:19 +08006034 int index;
Alexander Block31db9f72012-07-25 23:19:24 +02006035
6036 if (!capable(CAP_SYS_ADMIN))
6037 return -EPERM;
6038
Al Viro496ad9a2013-01-23 17:07:38 -05006039 send_root = BTRFS_I(file_inode(mnt_file))->root;
Alexander Block31db9f72012-07-25 23:19:24 +02006040 fs_info = send_root->fs_info;
6041
Josef Bacik139f8072013-05-20 11:26:50 -04006042 /*
David Sterba2c686532013-12-16 17:34:17 +01006043 * The subvolume must remain read-only during send, protect against
David Sterba521e0542014-04-15 16:41:44 +02006044 * making it RW. This also protects against deletion.
David Sterba2c686532013-12-16 17:34:17 +01006045 */
6046 spin_lock(&send_root->root_item_lock);
6047 send_root->send_in_progress++;
6048 spin_unlock(&send_root->root_item_lock);
6049
6050 /*
Josef Bacik139f8072013-05-20 11:26:50 -04006051 * This is done when we lookup the root, it should already be complete
6052 * by the time we get here.
6053 */
6054 WARN_ON(send_root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE);
6055
6056 /*
David Sterba2c686532013-12-16 17:34:17 +01006057 * Userspace tools do the checks and warn the user if it's
6058 * not RO.
6059 */
6060 if (!btrfs_root_readonly(send_root)) {
6061 ret = -EPERM;
6062 goto out;
6063 }
6064
Alexander Block31db9f72012-07-25 23:19:24 +02006065 arg = memdup_user(arg_, sizeof(*arg));
6066 if (IS_ERR(arg)) {
6067 ret = PTR_ERR(arg);
6068 arg = NULL;
6069 goto out;
6070 }
6071
Dan Carpenterf5ecec32016-04-13 09:40:59 +03006072 if (arg->clone_sources_count >
6073 ULLONG_MAX / sizeof(*arg->clone_sources)) {
6074 ret = -EINVAL;
6075 goto out;
6076 }
6077
Alexander Block31db9f72012-07-25 23:19:24 +02006078 if (!access_ok(VERIFY_READ, arg->clone_sources,
Dan Carpenter700ff4f2013-01-10 03:57:25 -05006079 sizeof(*arg->clone_sources) *
6080 arg->clone_sources_count)) {
Alexander Block31db9f72012-07-25 23:19:24 +02006081 ret = -EFAULT;
6082 goto out;
6083 }
6084
Stefan Behrensc2c71322013-04-10 17:10:52 +00006085 if (arg->flags & ~BTRFS_SEND_FLAG_MASK) {
Mark Fashehcb95e7b2013-02-04 20:54:57 +00006086 ret = -EINVAL;
6087 goto out;
6088 }
6089
David Sterbae780b0d2016-01-18 18:42:13 +01006090 sctx = kzalloc(sizeof(struct send_ctx), GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02006091 if (!sctx) {
6092 ret = -ENOMEM;
6093 goto out;
6094 }
6095
6096 INIT_LIST_HEAD(&sctx->new_refs);
6097 INIT_LIST_HEAD(&sctx->deleted_refs);
David Sterbae780b0d2016-01-18 18:42:13 +01006098 INIT_RADIX_TREE(&sctx->name_cache, GFP_KERNEL);
Alexander Block31db9f72012-07-25 23:19:24 +02006099 INIT_LIST_HEAD(&sctx->name_cache_list);
6100
Mark Fashehcb95e7b2013-02-04 20:54:57 +00006101 sctx->flags = arg->flags;
6102
Alexander Block31db9f72012-07-25 23:19:24 +02006103 sctx->send_filp = fget(arg->send_fd);
Tsutomu Itohecc7ada2013-04-19 01:04:46 +00006104 if (!sctx->send_filp) {
6105 ret = -EBADF;
Alexander Block31db9f72012-07-25 23:19:24 +02006106 goto out;
6107 }
6108
Alexander Block31db9f72012-07-25 23:19:24 +02006109 sctx->send_root = send_root;
David Sterba521e0542014-04-15 16:41:44 +02006110 /*
6111 * Unlikely but possible, if the subvolume is marked for deletion but
6112 * is slow to remove the directory entry, send can still be started
6113 */
6114 if (btrfs_root_dead(sctx->send_root)) {
6115 ret = -EPERM;
6116 goto out;
6117 }
6118
Alexander Block31db9f72012-07-25 23:19:24 +02006119 sctx->clone_roots_cnt = arg->clone_sources_count;
6120
6121 sctx->send_max_size = BTRFS_SEND_BUF_SIZE;
David Sterba6ff48ce2016-04-11 18:40:08 +02006122 sctx->send_buf = kmalloc(sctx->send_max_size, GFP_KERNEL | __GFP_NOWARN);
Alexander Block31db9f72012-07-25 23:19:24 +02006123 if (!sctx->send_buf) {
David Sterba6ff48ce2016-04-11 18:40:08 +02006124 sctx->send_buf = vmalloc(sctx->send_max_size);
6125 if (!sctx->send_buf) {
6126 ret = -ENOMEM;
6127 goto out;
6128 }
Alexander Block31db9f72012-07-25 23:19:24 +02006129 }
6130
David Sterbaeb5b75f2016-04-11 18:40:08 +02006131 sctx->read_buf = kmalloc(BTRFS_SEND_READ_SIZE, GFP_KERNEL | __GFP_NOWARN);
Alexander Block31db9f72012-07-25 23:19:24 +02006132 if (!sctx->read_buf) {
David Sterbaeb5b75f2016-04-11 18:40:08 +02006133 sctx->read_buf = vmalloc(BTRFS_SEND_READ_SIZE);
6134 if (!sctx->read_buf) {
6135 ret = -ENOMEM;
6136 goto out;
6137 }
Alexander Block31db9f72012-07-25 23:19:24 +02006138 }
6139
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006140 sctx->pending_dir_moves = RB_ROOT;
6141 sctx->waiting_dir_moves = RB_ROOT;
Filipe Manana9dc44212014-02-19 14:31:44 +00006142 sctx->orphan_dirs = RB_ROOT;
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006143
David Sterbae55d1152016-04-11 18:52:02 +02006144 alloc_size = sizeof(struct clone_root) * (arg->clone_sources_count + 1);
6145
David Sterbac03d01f2016-04-11 18:40:08 +02006146 sctx->clone_roots = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN);
Alexander Block31db9f72012-07-25 23:19:24 +02006147 if (!sctx->clone_roots) {
David Sterbac03d01f2016-04-11 18:40:08 +02006148 sctx->clone_roots = vzalloc(alloc_size);
6149 if (!sctx->clone_roots) {
6150 ret = -ENOMEM;
6151 goto out;
6152 }
Alexander Block31db9f72012-07-25 23:19:24 +02006153 }
6154
David Sterbae55d1152016-04-11 18:52:02 +02006155 alloc_size = arg->clone_sources_count * sizeof(*arg->clone_sources);
6156
Alexander Block31db9f72012-07-25 23:19:24 +02006157 if (arg->clone_sources_count) {
David Sterba2f913062016-04-11 18:40:08 +02006158 clone_sources_tmp = kmalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN);
Alexander Block31db9f72012-07-25 23:19:24 +02006159 if (!clone_sources_tmp) {
David Sterba2f913062016-04-11 18:40:08 +02006160 clone_sources_tmp = vmalloc(alloc_size);
6161 if (!clone_sources_tmp) {
6162 ret = -ENOMEM;
6163 goto out;
6164 }
Alexander Block31db9f72012-07-25 23:19:24 +02006165 }
6166
6167 ret = copy_from_user(clone_sources_tmp, arg->clone_sources,
David Sterbae55d1152016-04-11 18:52:02 +02006168 alloc_size);
Alexander Block31db9f72012-07-25 23:19:24 +02006169 if (ret) {
6170 ret = -EFAULT;
6171 goto out;
6172 }
6173
6174 for (i = 0; i < arg->clone_sources_count; i++) {
6175 key.objectid = clone_sources_tmp[i];
6176 key.type = BTRFS_ROOT_ITEM_KEY;
6177 key.offset = (u64)-1;
Wang Shilong18f687d2014-01-07 17:25:19 +08006178
6179 index = srcu_read_lock(&fs_info->subvol_srcu);
6180
Alexander Block31db9f72012-07-25 23:19:24 +02006181 clone_root = btrfs_read_fs_root_no_name(fs_info, &key);
Alexander Block31db9f72012-07-25 23:19:24 +02006182 if (IS_ERR(clone_root)) {
Wang Shilong18f687d2014-01-07 17:25:19 +08006183 srcu_read_unlock(&fs_info->subvol_srcu, index);
Alexander Block31db9f72012-07-25 23:19:24 +02006184 ret = PTR_ERR(clone_root);
6185 goto out;
6186 }
David Sterba2c686532013-12-16 17:34:17 +01006187 spin_lock(&clone_root->root_item_lock);
Filipe Manana5cc2b172015-03-02 20:53:52 +00006188 if (!btrfs_root_readonly(clone_root) ||
6189 btrfs_root_dead(clone_root)) {
David Sterba2c686532013-12-16 17:34:17 +01006190 spin_unlock(&clone_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08006191 srcu_read_unlock(&fs_info->subvol_srcu, index);
David Sterba2c686532013-12-16 17:34:17 +01006192 ret = -EPERM;
6193 goto out;
6194 }
Filipe Manana2f1f4652015-03-02 20:53:53 +00006195 clone_root->send_in_progress++;
David Sterba2c686532013-12-16 17:34:17 +01006196 spin_unlock(&clone_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08006197 srcu_read_unlock(&fs_info->subvol_srcu, index);
6198
Alexander Block31db9f72012-07-25 23:19:24 +02006199 sctx->clone_roots[i].root = clone_root;
Filipe Manana2f1f4652015-03-02 20:53:53 +00006200 clone_sources_to_rollback = i + 1;
Alexander Block31db9f72012-07-25 23:19:24 +02006201 }
David Sterba2f913062016-04-11 18:40:08 +02006202 kvfree(clone_sources_tmp);
Alexander Block31db9f72012-07-25 23:19:24 +02006203 clone_sources_tmp = NULL;
6204 }
6205
6206 if (arg->parent_root) {
6207 key.objectid = arg->parent_root;
6208 key.type = BTRFS_ROOT_ITEM_KEY;
6209 key.offset = (u64)-1;
Wang Shilong18f687d2014-01-07 17:25:19 +08006210
6211 index = srcu_read_lock(&fs_info->subvol_srcu);
6212
Alexander Block31db9f72012-07-25 23:19:24 +02006213 sctx->parent_root = btrfs_read_fs_root_no_name(fs_info, &key);
Stefan Behrensb1b19592013-05-13 14:42:57 +00006214 if (IS_ERR(sctx->parent_root)) {
Wang Shilong18f687d2014-01-07 17:25:19 +08006215 srcu_read_unlock(&fs_info->subvol_srcu, index);
Stefan Behrensb1b19592013-05-13 14:42:57 +00006216 ret = PTR_ERR(sctx->parent_root);
Alexander Block31db9f72012-07-25 23:19:24 +02006217 goto out;
6218 }
Wang Shilong18f687d2014-01-07 17:25:19 +08006219
David Sterba2c686532013-12-16 17:34:17 +01006220 spin_lock(&sctx->parent_root->root_item_lock);
6221 sctx->parent_root->send_in_progress++;
David Sterba521e0542014-04-15 16:41:44 +02006222 if (!btrfs_root_readonly(sctx->parent_root) ||
6223 btrfs_root_dead(sctx->parent_root)) {
David Sterba2c686532013-12-16 17:34:17 +01006224 spin_unlock(&sctx->parent_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08006225 srcu_read_unlock(&fs_info->subvol_srcu, index);
David Sterba2c686532013-12-16 17:34:17 +01006226 ret = -EPERM;
6227 goto out;
6228 }
6229 spin_unlock(&sctx->parent_root->root_item_lock);
Wang Shilong18f687d2014-01-07 17:25:19 +08006230
6231 srcu_read_unlock(&fs_info->subvol_srcu, index);
Alexander Block31db9f72012-07-25 23:19:24 +02006232 }
6233
6234 /*
6235 * Clones from send_root are allowed, but only if the clone source
6236 * is behind the current send position. This is checked while searching
6237 * for possible clone sources.
6238 */
6239 sctx->clone_roots[sctx->clone_roots_cnt++].root = sctx->send_root;
6240
6241 /* We do a bsearch later */
6242 sort(sctx->clone_roots, sctx->clone_roots_cnt,
6243 sizeof(*sctx->clone_roots), __clone_root_cmp_sort,
6244 NULL);
Wang Shilong896c14f2014-01-07 17:25:18 +08006245 sort_clone_roots = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02006246
Filipe Mananae5fa8f82014-10-21 11:11:41 +01006247 ret = ensure_commit_roots_uptodate(sctx);
6248 if (ret)
6249 goto out;
6250
David Sterba2755a0d2014-07-31 00:43:18 +02006251 current->journal_info = BTRFS_SEND_TRANS_STUB;
Alexander Block31db9f72012-07-25 23:19:24 +02006252 ret = send_subvol(sctx);
Josef Bacika26e8c92014-03-28 17:07:27 -04006253 current->journal_info = NULL;
Alexander Block31db9f72012-07-25 23:19:24 +02006254 if (ret < 0)
6255 goto out;
6256
Stefan Behrensc2c71322013-04-10 17:10:52 +00006257 if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_END_CMD)) {
6258 ret = begin_cmd(sctx, BTRFS_SEND_C_END);
6259 if (ret < 0)
6260 goto out;
6261 ret = send_cmd(sctx);
6262 if (ret < 0)
6263 goto out;
6264 }
Alexander Block31db9f72012-07-25 23:19:24 +02006265
6266out:
Filipe David Borba Manana9f037402014-01-22 10:00:53 +00006267 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->pending_dir_moves));
6268 while (sctx && !RB_EMPTY_ROOT(&sctx->pending_dir_moves)) {
6269 struct rb_node *n;
6270 struct pending_dir_move *pm;
6271
6272 n = rb_first(&sctx->pending_dir_moves);
6273 pm = rb_entry(n, struct pending_dir_move, node);
6274 while (!list_empty(&pm->list)) {
6275 struct pending_dir_move *pm2;
6276
6277 pm2 = list_first_entry(&pm->list,
6278 struct pending_dir_move, list);
6279 free_pending_move(sctx, pm2);
6280 }
6281 free_pending_move(sctx, pm);
6282 }
6283
6284 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->waiting_dir_moves));
6285 while (sctx && !RB_EMPTY_ROOT(&sctx->waiting_dir_moves)) {
6286 struct rb_node *n;
6287 struct waiting_dir_move *dm;
6288
6289 n = rb_first(&sctx->waiting_dir_moves);
6290 dm = rb_entry(n, struct waiting_dir_move, node);
6291 rb_erase(&dm->node, &sctx->waiting_dir_moves);
6292 kfree(dm);
6293 }
6294
Filipe Manana9dc44212014-02-19 14:31:44 +00006295 WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->orphan_dirs));
6296 while (sctx && !RB_EMPTY_ROOT(&sctx->orphan_dirs)) {
6297 struct rb_node *n;
6298 struct orphan_dir_info *odi;
6299
6300 n = rb_first(&sctx->orphan_dirs);
6301 odi = rb_entry(n, struct orphan_dir_info, node);
6302 free_orphan_dir_info(sctx, odi);
6303 }
6304
Wang Shilong896c14f2014-01-07 17:25:18 +08006305 if (sort_clone_roots) {
6306 for (i = 0; i < sctx->clone_roots_cnt; i++)
6307 btrfs_root_dec_send_in_progress(
6308 sctx->clone_roots[i].root);
6309 } else {
6310 for (i = 0; sctx && i < clone_sources_to_rollback; i++)
6311 btrfs_root_dec_send_in_progress(
6312 sctx->clone_roots[i].root);
6313
6314 btrfs_root_dec_send_in_progress(send_root);
6315 }
David Sterba66ef7d62013-12-17 15:07:20 +01006316 if (sctx && !IS_ERR_OR_NULL(sctx->parent_root))
6317 btrfs_root_dec_send_in_progress(sctx->parent_root);
David Sterba2c686532013-12-16 17:34:17 +01006318
Alexander Block31db9f72012-07-25 23:19:24 +02006319 kfree(arg);
David Sterba2f913062016-04-11 18:40:08 +02006320 kvfree(clone_sources_tmp);
Alexander Block31db9f72012-07-25 23:19:24 +02006321
6322 if (sctx) {
6323 if (sctx->send_filp)
6324 fput(sctx->send_filp);
6325
David Sterbac03d01f2016-04-11 18:40:08 +02006326 kvfree(sctx->clone_roots);
David Sterba6ff48ce2016-04-11 18:40:08 +02006327 kvfree(sctx->send_buf);
David Sterbaeb5b75f2016-04-11 18:40:08 +02006328 kvfree(sctx->read_buf);
Alexander Block31db9f72012-07-25 23:19:24 +02006329
6330 name_cache_free(sctx);
6331
6332 kfree(sctx);
6333 }
6334
6335 return ret;
6336}