2 * Copyright (C) 2012 Alexander Block. All rights reserved.
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.
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.
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.
19 #include <linux/bsearch.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>
27 #include <linux/vmalloc.h>
28 #include <linux/string.h>
35 #include "btrfs_inode.h"
36 #include "transaction.h"
38 static int g_verbose
= 0;
40 #define verbose_printk(...) if (g_verbose) printk(__VA_ARGS__)
43 * A fs_path is a helper to dynamically build path names with unknown size.
44 * It reallocates the internal buffer on demand.
45 * It allows fast adding of path elements on the right side (normal path) and
46 * fast adding to the left side (reversed path). A reversed path can also be
47 * unreversed if needed.
56 unsigned short buf_len
:15;
57 unsigned short reversed
:1;
61 * Average path length does not exceed 200 bytes, we'll have
62 * better packing in the slab and higher chance to satisfy
63 * a allocation later during send.
68 #define FS_PATH_INLINE_SIZE \
69 (sizeof(struct fs_path) - offsetof(struct fs_path, inline_buf))
72 /* reused for each extent */
74 struct btrfs_root
*root
;
81 #define SEND_CTX_MAX_NAME_CACHE_SIZE 128
82 #define SEND_CTX_NAME_CACHE_CLEAN_SIZE (SEND_CTX_MAX_NAME_CACHE_SIZE * 2)
85 struct file
*send_filp
;
91 u64 cmd_send_size
[BTRFS_SEND_C_MAX
+ 1];
92 u64 flags
; /* 'flags' member of btrfs_ioctl_send_args is u64 */
94 struct btrfs_root
*send_root
;
95 struct btrfs_root
*parent_root
;
96 struct clone_root
*clone_roots
;
99 /* current state of the compare_tree call */
100 struct btrfs_path
*left_path
;
101 struct btrfs_path
*right_path
;
102 struct btrfs_key
*cmp_key
;
105 * infos of the currently processed inode. In case of deleted inodes,
106 * these are the values from the deleted inode.
111 int cur_inode_new_gen
;
112 int cur_inode_deleted
;
116 u64 cur_inode_last_extent
;
120 struct list_head new_refs
;
121 struct list_head deleted_refs
;
123 struct radix_tree_root name_cache
;
124 struct list_head name_cache_list
;
127 struct file_ra_state ra
;
132 * We process inodes by their increasing order, so if before an
133 * incremental send we reverse the parent/child relationship of
134 * directories such that a directory with a lower inode number was
135 * the parent of a directory with a higher inode number, and the one
136 * becoming the new parent got renamed too, we can't rename/move the
137 * directory with lower inode number when we finish processing it - we
138 * must process the directory with higher inode number first, then
139 * rename/move it and then rename/move the directory with lower inode
140 * number. Example follows.
142 * Tree state when the first send was performed:
154 * Tree state when the second (incremental) send is performed:
163 * The sequence of steps that lead to the second state was:
165 * mv /a/b/c/d /a/b/c2/d2
166 * mv /a/b/c /a/b/c2/d2/cc
168 * "c" has lower inode number, but we can't move it (2nd mv operation)
169 * before we move "d", which has higher inode number.
171 * So we just memorize which move/rename operations must be performed
172 * later when their respective parent is processed and moved/renamed.
175 /* Indexed by parent directory inode number. */
176 struct rb_root pending_dir_moves
;
179 * Reverse index, indexed by the inode number of a directory that
180 * is waiting for the move/rename of its immediate parent before its
181 * own move/rename can be performed.
183 struct rb_root waiting_dir_moves
;
186 * A directory that is going to be rm'ed might have a child directory
187 * which is in the pending directory moves index above. In this case,
188 * the directory can only be removed after the move/rename of its child
189 * is performed. Example:
209 * Sequence of steps that lead to the send snapshot:
210 * rm -f /a/b/c/foo.txt
212 * mv /a/b/c/x /a/b/YY
215 * When the child is processed, its move/rename is delayed until its
216 * parent is processed (as explained above), but all other operations
217 * like update utimes, chown, chgrp, etc, are performed and the paths
218 * that it uses for those operations must use the orphanized name of
219 * its parent (the directory we're going to rm later), so we need to
220 * memorize that name.
222 * Indexed by the inode number of the directory to be deleted.
224 struct rb_root orphan_dirs
;
227 struct pending_dir_move
{
229 struct list_head list
;
234 struct list_head update_refs
;
237 struct waiting_dir_move
{
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.
249 struct orphan_dir_info
{
255 struct name_cache_entry
{
256 struct list_head list
;
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
265 struct list_head radix_list
;
271 int need_later_update
;
276 static int is_waiting_for_move(struct send_ctx
*sctx
, u64 ino
);
278 static struct waiting_dir_move
*
279 get_waiting_dir_move(struct send_ctx
*sctx
, u64 ino
);
281 static int is_waiting_for_rm(struct send_ctx
*sctx
, u64 dir_ino
);
283 static int need_send_hole(struct send_ctx
*sctx
)
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
));
290 static void fs_path_reset(struct fs_path
*p
)
293 p
->start
= p
->buf
+ p
->buf_len
- 1;
303 static struct fs_path
*fs_path_alloc(void)
307 p
= kmalloc(sizeof(*p
), GFP_NOFS
);
311 p
->buf
= p
->inline_buf
;
312 p
->buf_len
= FS_PATH_INLINE_SIZE
;
317 static struct fs_path
*fs_path_alloc_reversed(void)
329 static void fs_path_free(struct fs_path
*p
)
333 if (p
->buf
!= p
->inline_buf
)
338 static int fs_path_len(struct fs_path
*p
)
340 return p
->end
- p
->start
;
343 static int fs_path_ensure_buf(struct fs_path
*p
, int len
)
351 if (p
->buf_len
>= len
)
354 if (len
> PATH_MAX
) {
359 path_len
= p
->end
- p
->start
;
360 old_buf_len
= p
->buf_len
;
363 * First time the inline_buf does not suffice
365 if (p
->buf
== p
->inline_buf
) {
366 tmp_buf
= kmalloc(len
, GFP_NOFS
);
368 memcpy(tmp_buf
, p
->buf
, old_buf_len
);
370 tmp_buf
= krealloc(p
->buf
, len
, GFP_NOFS
);
376 * The real size of the buffer is bigger, this will let the fast path
377 * happen most of the time
379 p
->buf_len
= ksize(p
->buf
);
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);
388 p
->end
= p
->start
+ path_len
;
393 static int fs_path_prepare_for_add(struct fs_path
*p
, int name_len
,
399 new_len
= p
->end
- p
->start
+ name_len
;
400 if (p
->start
!= p
->end
)
402 ret
= fs_path_ensure_buf(p
, new_len
);
407 if (p
->start
!= p
->end
)
409 p
->start
-= name_len
;
410 *prepared
= p
->start
;
412 if (p
->start
!= p
->end
)
423 static int fs_path_add(struct fs_path
*p
, const char *name
, int name_len
)
428 ret
= fs_path_prepare_for_add(p
, name_len
, &prepared
);
431 memcpy(prepared
, name
, name_len
);
437 static int fs_path_add_path(struct fs_path
*p
, struct fs_path
*p2
)
442 ret
= fs_path_prepare_for_add(p
, p2
->end
- p2
->start
, &prepared
);
445 memcpy(prepared
, p2
->start
, p2
->end
- p2
->start
);
451 static int fs_path_add_from_extent_buffer(struct fs_path
*p
,
452 struct extent_buffer
*eb
,
453 unsigned long off
, int len
)
458 ret
= fs_path_prepare_for_add(p
, len
, &prepared
);
462 read_extent_buffer(eb
, prepared
, off
, len
);
468 static int fs_path_copy(struct fs_path
*p
, struct fs_path
*from
)
472 p
->reversed
= from
->reversed
;
475 ret
= fs_path_add_path(p
, from
);
481 static void fs_path_unreverse(struct fs_path
*p
)
490 len
= p
->end
- p
->start
;
492 p
->end
= p
->start
+ len
;
493 memmove(p
->start
, tmp
, len
+ 1);
497 static struct btrfs_path
*alloc_path_for_send(void)
499 struct btrfs_path
*path
;
501 path
= btrfs_alloc_path();
504 path
->search_commit_root
= 1;
505 path
->skip_locking
= 1;
506 path
->need_commit_sem
= 1;
510 static int write_buf(struct file
*filp
, const void *buf
, u32 len
, loff_t
*off
)
520 ret
= vfs_write(filp
, (__force
const char __user
*)buf
+ pos
,
522 /* TODO handle that correctly */
523 /*if (ret == -ERESTARTSYS) {
542 static int tlv_put(struct send_ctx
*sctx
, u16 attr
, const void *data
, int len
)
544 struct btrfs_tlv_header
*hdr
;
545 int total_len
= sizeof(*hdr
) + len
;
546 int left
= sctx
->send_max_size
- sctx
->send_size
;
548 if (unlikely(left
< total_len
))
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
;
560 #define TLV_PUT_DEFINE_INT(bits) \
561 static int tlv_put_u##bits(struct send_ctx *sctx, \
562 u##bits attr, u##bits value) \
564 __le##bits __tmp = cpu_to_le##bits(value); \
565 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \
568 TLV_PUT_DEFINE_INT(64)
570 static int tlv_put_string(struct send_ctx
*sctx
, u16 attr
,
571 const char *str
, int len
)
575 return tlv_put(sctx
, attr
, str
, len
);
578 static int tlv_put_uuid(struct send_ctx
*sctx
, u16 attr
,
581 return tlv_put(sctx
, attr
, uuid
, BTRFS_UUID_SIZE
);
584 static int tlv_put_btrfs_timespec(struct send_ctx
*sctx
, u16 attr
,
585 struct extent_buffer
*eb
,
586 struct btrfs_timespec
*ts
)
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
));
594 #define TLV_PUT(sctx, attrtype, attrlen, data) \
596 ret = tlv_put(sctx, attrtype, attrlen, data); \
598 goto tlv_put_failure; \
601 #define TLV_PUT_INT(sctx, attrtype, bits, value) \
603 ret = tlv_put_u##bits(sctx, attrtype, value); \
605 goto tlv_put_failure; \
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) \
614 ret = tlv_put_string(sctx, attrtype, str, len); \
616 goto tlv_put_failure; \
618 #define TLV_PUT_PATH(sctx, attrtype, p) \
620 ret = tlv_put_string(sctx, attrtype, p->start, \
621 p->end - p->start); \
623 goto tlv_put_failure; \
625 #define TLV_PUT_UUID(sctx, attrtype, uuid) \
627 ret = tlv_put_uuid(sctx, attrtype, uuid); \
629 goto tlv_put_failure; \
631 #define TLV_PUT_BTRFS_TIMESPEC(sctx, attrtype, eb, ts) \
633 ret = tlv_put_btrfs_timespec(sctx, attrtype, eb, ts); \
635 goto tlv_put_failure; \
638 static int send_header(struct send_ctx
*sctx
)
640 struct btrfs_stream_header hdr
;
642 strcpy(hdr
.magic
, BTRFS_SEND_STREAM_MAGIC
);
643 hdr
.version
= cpu_to_le32(BTRFS_SEND_STREAM_VERSION
);
645 return write_buf(sctx
->send_filp
, &hdr
, sizeof(hdr
),
650 * For each command/item we want to send to userspace, we call this function.
652 static int begin_cmd(struct send_ctx
*sctx
, int cmd
)
654 struct btrfs_cmd_header
*hdr
;
656 if (WARN_ON(!sctx
->send_buf
))
659 BUG_ON(sctx
->send_size
);
661 sctx
->send_size
+= sizeof(*hdr
);
662 hdr
= (struct btrfs_cmd_header
*)sctx
->send_buf
;
663 hdr
->cmd
= cpu_to_le16(cmd
);
668 static int send_cmd(struct send_ctx
*sctx
)
671 struct btrfs_cmd_header
*hdr
;
674 hdr
= (struct btrfs_cmd_header
*)sctx
->send_buf
;
675 hdr
->len
= cpu_to_le32(sctx
->send_size
- sizeof(*hdr
));
678 crc
= btrfs_crc32c(0, (unsigned char *)sctx
->send_buf
, sctx
->send_size
);
679 hdr
->crc
= cpu_to_le32(crc
);
681 ret
= write_buf(sctx
->send_filp
, sctx
->send_buf
, sctx
->send_size
,
684 sctx
->total_send_size
+= sctx
->send_size
;
685 sctx
->cmd_send_size
[le16_to_cpu(hdr
->cmd
)] += sctx
->send_size
;
692 * Sends a move instruction to user space
694 static int send_rename(struct send_ctx
*sctx
,
695 struct fs_path
*from
, struct fs_path
*to
)
699 verbose_printk("btrfs: send_rename %s -> %s\n", from
->start
, to
->start
);
701 ret
= begin_cmd(sctx
, BTRFS_SEND_C_RENAME
);
705 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, from
);
706 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH_TO
, to
);
708 ret
= send_cmd(sctx
);
716 * Sends a link instruction to user space
718 static int send_link(struct send_ctx
*sctx
,
719 struct fs_path
*path
, struct fs_path
*lnk
)
723 verbose_printk("btrfs: send_link %s -> %s\n", path
->start
, lnk
->start
);
725 ret
= begin_cmd(sctx
, BTRFS_SEND_C_LINK
);
729 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, path
);
730 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH_LINK
, lnk
);
732 ret
= send_cmd(sctx
);
740 * Sends an unlink instruction to user space
742 static int send_unlink(struct send_ctx
*sctx
, struct fs_path
*path
)
746 verbose_printk("btrfs: send_unlink %s\n", path
->start
);
748 ret
= begin_cmd(sctx
, BTRFS_SEND_C_UNLINK
);
752 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, path
);
754 ret
= send_cmd(sctx
);
762 * Sends a rmdir instruction to user space
764 static int send_rmdir(struct send_ctx
*sctx
, struct fs_path
*path
)
768 verbose_printk("btrfs: send_rmdir %s\n", path
->start
);
770 ret
= begin_cmd(sctx
, BTRFS_SEND_C_RMDIR
);
774 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, path
);
776 ret
= send_cmd(sctx
);
784 * Helper function to retrieve some fields from an inode item.
786 static int __get_inode_info(struct btrfs_root
*root
, struct btrfs_path
*path
,
787 u64 ino
, u64
*size
, u64
*gen
, u64
*mode
, u64
*uid
,
791 struct btrfs_inode_item
*ii
;
792 struct btrfs_key key
;
795 key
.type
= BTRFS_INODE_ITEM_KEY
;
797 ret
= btrfs_search_slot(NULL
, root
, &key
, path
, 0, 0);
804 ii
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
805 struct btrfs_inode_item
);
807 *size
= btrfs_inode_size(path
->nodes
[0], ii
);
809 *gen
= btrfs_inode_generation(path
->nodes
[0], ii
);
811 *mode
= btrfs_inode_mode(path
->nodes
[0], ii
);
813 *uid
= btrfs_inode_uid(path
->nodes
[0], ii
);
815 *gid
= btrfs_inode_gid(path
->nodes
[0], ii
);
817 *rdev
= btrfs_inode_rdev(path
->nodes
[0], ii
);
822 static int get_inode_info(struct btrfs_root
*root
,
823 u64 ino
, u64
*size
, u64
*gen
,
824 u64
*mode
, u64
*uid
, u64
*gid
,
827 struct btrfs_path
*path
;
830 path
= alloc_path_for_send();
833 ret
= __get_inode_info(root
, path
, ino
, size
, gen
, mode
, uid
, gid
,
835 btrfs_free_path(path
);
839 typedef int (*iterate_inode_ref_t
)(int num
, u64 dir
, int index
,
844 * Helper function to iterate the entries in ONE btrfs_inode_ref or
845 * btrfs_inode_extref.
846 * 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.
849 * path must point to the INODE_REF or INODE_EXTREF when called.
851 static int iterate_inode_ref(struct btrfs_root
*root
, struct btrfs_path
*path
,
852 struct btrfs_key
*found_key
, int resolve
,
853 iterate_inode_ref_t iterate
, void *ctx
)
855 struct extent_buffer
*eb
= path
->nodes
[0];
856 struct btrfs_item
*item
;
857 struct btrfs_inode_ref
*iref
;
858 struct btrfs_inode_extref
*extref
;
859 struct btrfs_path
*tmp_path
;
863 int slot
= path
->slots
[0];
870 unsigned long name_off
;
871 unsigned long elem_size
;
874 p
= fs_path_alloc_reversed();
878 tmp_path
= alloc_path_for_send();
885 if (found_key
->type
== BTRFS_INODE_REF_KEY
) {
886 ptr
= (unsigned long)btrfs_item_ptr(eb
, slot
,
887 struct btrfs_inode_ref
);
888 item
= btrfs_item_nr(slot
);
889 total
= btrfs_item_size(eb
, item
);
890 elem_size
= sizeof(*iref
);
892 ptr
= btrfs_item_ptr_offset(eb
, slot
);
893 total
= btrfs_item_size_nr(eb
, slot
);
894 elem_size
= sizeof(*extref
);
897 while (cur
< total
) {
900 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
;
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
);
915 start
= btrfs_ref_to_path(root
, tmp_path
, name_len
,
919 ret
= PTR_ERR(start
);
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
);
928 start
= btrfs_ref_to_path(root
, tmp_path
,
933 ret
= PTR_ERR(start
);
936 BUG_ON(start
< p
->buf
);
940 ret
= fs_path_add_from_extent_buffer(p
, eb
, name_off
,
946 cur
+= elem_size
+ name_len
;
947 ret
= iterate(num
, dir
, index
, p
, ctx
);
954 btrfs_free_path(tmp_path
);
959 typedef 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
,
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.
969 * path must point to the dir item when called.
971 static int iterate_dir_item(struct btrfs_root
*root
, struct btrfs_path
*path
,
972 struct btrfs_key
*found_key
,
973 iterate_dir_item_t iterate
, void *ctx
)
976 struct extent_buffer
*eb
;
977 struct btrfs_item
*item
;
978 struct btrfs_dir_item
*di
;
979 struct btrfs_key di_key
;
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
998 buf
= kmalloc(buf_len
, GFP_NOFS
);
1004 eb
= path
->nodes
[0];
1005 slot
= path
->slots
[0];
1006 item
= btrfs_item_nr(slot
);
1007 di
= btrfs_item_ptr(eb
, slot
, struct btrfs_dir_item
);
1010 total
= btrfs_item_size(eb
, item
);
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
);
1019 if (type
== BTRFS_FT_XATTR
) {
1020 if (name_len
> XATTR_NAME_MAX
) {
1021 ret
= -ENAMETOOLONG
;
1024 if (name_len
+ data_len
> BTRFS_MAX_XATTR_SIZE(root
)) {
1032 if (name_len
+ data_len
> PATH_MAX
) {
1033 ret
= -ENAMETOOLONG
;
1038 if (name_len
+ data_len
> buf_len
) {
1039 buf_len
= name_len
+ data_len
;
1040 if (is_vmalloc_addr(buf
)) {
1044 char *tmp
= krealloc(buf
, buf_len
,
1045 GFP_NOFS
| __GFP_NOWARN
);
1052 buf
= vmalloc(buf_len
);
1060 read_extent_buffer(eb
, buf
, (unsigned long)(di
+ 1),
1061 name_len
+ data_len
);
1063 len
= sizeof(*di
) + name_len
+ data_len
;
1064 di
= (struct btrfs_dir_item
*)((char *)di
+ len
);
1067 ret
= iterate(num
, &di_key
, buf
, name_len
, buf
+ name_len
,
1068 data_len
, type
, ctx
);
1084 static int __copy_first_ref(int num
, u64 dir
, int index
,
1085 struct fs_path
*p
, void *ctx
)
1088 struct fs_path
*pt
= ctx
;
1090 ret
= fs_path_copy(pt
, p
);
1094 /* we want the first only */
1099 * Retrieve the first path of an inode. If an inode has more then one
1100 * ref/hardlink, this is ignored.
1102 static int get_inode_path(struct btrfs_root
*root
,
1103 u64 ino
, struct fs_path
*path
)
1106 struct btrfs_key key
, found_key
;
1107 struct btrfs_path
*p
;
1109 p
= alloc_path_for_send();
1113 fs_path_reset(path
);
1116 key
.type
= BTRFS_INODE_REF_KEY
;
1119 ret
= btrfs_search_slot_for_read(root
, &key
, p
, 1, 0);
1126 btrfs_item_key_to_cpu(p
->nodes
[0], &found_key
, p
->slots
[0]);
1127 if (found_key
.objectid
!= ino
||
1128 (found_key
.type
!= BTRFS_INODE_REF_KEY
&&
1129 found_key
.type
!= BTRFS_INODE_EXTREF_KEY
)) {
1134 ret
= iterate_inode_ref(root
, p
, &found_key
, 1,
1135 __copy_first_ref
, path
);
1145 struct backref_ctx
{
1146 struct send_ctx
*sctx
;
1148 struct btrfs_path
*path
;
1149 /* number of total found references */
1153 * used for clones found in send_root. clones found behind cur_objectid
1154 * and cur_offset are not considered as allowed clones.
1159 /* may be truncated in case it's the last extent in a file */
1162 /* data offset in the file extent item */
1165 /* Just to check for bugs in backref resolving */
1169 static int __clone_root_cmp_bsearch(const void *key
, const void *elt
)
1171 u64 root
= (u64
)(uintptr_t)key
;
1172 struct clone_root
*cr
= (struct clone_root
*)elt
;
1174 if (root
< cr
->root
->objectid
)
1176 if (root
> cr
->root
->objectid
)
1181 static int __clone_root_cmp_sort(const void *e1
, const void *e2
)
1183 struct clone_root
*cr1
= (struct clone_root
*)e1
;
1184 struct clone_root
*cr2
= (struct clone_root
*)e2
;
1186 if (cr1
->root
->objectid
< cr2
->root
->objectid
)
1188 if (cr1
->root
->objectid
> cr2
->root
->objectid
)
1194 * Called for every backref that is found for the current extent.
1195 * Results are collected in sctx->clone_roots->ino/offset/found_refs
1197 static int __iterate_backrefs(u64 ino
, u64 offset
, u64 root
, void *ctx_
)
1199 struct backref_ctx
*bctx
= ctx_
;
1200 struct clone_root
*found
;
1204 /* First check if the root is in the list of accepted clone sources */
1205 found
= bsearch((void *)(uintptr_t)root
, bctx
->sctx
->clone_roots
,
1206 bctx
->sctx
->clone_roots_cnt
,
1207 sizeof(struct clone_root
),
1208 __clone_root_cmp_bsearch
);
1212 if (found
->root
== bctx
->sctx
->send_root
&&
1213 ino
== bctx
->cur_objectid
&&
1214 offset
== bctx
->cur_offset
) {
1215 bctx
->found_itself
= 1;
1219 * There are inodes that have extents that lie behind its i_size. Don't
1220 * accept clones from these extents.
1222 ret
= __get_inode_info(found
->root
, bctx
->path
, ino
, &i_size
, NULL
, NULL
,
1224 btrfs_release_path(bctx
->path
);
1228 if (offset
+ bctx
->data_offset
+ bctx
->extent_len
> i_size
)
1232 * Make sure we don't consider clones from send_root that are
1233 * behind the current inode/offset.
1235 if (found
->root
== bctx
->sctx
->send_root
) {
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
1242 if (ino
>= bctx
->cur_objectid
)
1245 if (ino
> bctx
->cur_objectid
)
1247 if (offset
+ bctx
->extent_len
> bctx
->cur_offset
)
1253 found
->found_refs
++;
1254 if (ino
< found
->ino
) {
1256 found
->offset
= offset
;
1257 } else if (found
->ino
== ino
) {
1259 * same extent found more then once in the same file.
1261 if (found
->offset
> offset
+ bctx
->extent_len
)
1262 found
->offset
= offset
;
1269 * 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
1275 * path must point to the extent item when called.
1277 static int find_extent_clone(struct send_ctx
*sctx
,
1278 struct btrfs_path
*path
,
1279 u64 ino
, u64 data_offset
,
1281 struct clone_root
**found
)
1288 u64 extent_item_pos
;
1290 struct btrfs_file_extent_item
*fi
;
1291 struct extent_buffer
*eb
= path
->nodes
[0];
1292 struct backref_ctx
*backref_ctx
= NULL
;
1293 struct clone_root
*cur_clone_root
;
1294 struct btrfs_key found_key
;
1295 struct btrfs_path
*tmp_path
;
1299 tmp_path
= alloc_path_for_send();
1303 /* We only use this path under the commit sem */
1304 tmp_path
->need_commit_sem
= 0;
1306 backref_ctx
= kmalloc(sizeof(*backref_ctx
), GFP_NOFS
);
1312 backref_ctx
->path
= tmp_path
;
1314 if (data_offset
>= ino_size
) {
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.
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
) {
1331 compressed
= btrfs_file_extent_compression(eb
, fi
);
1333 num_bytes
= btrfs_file_extent_num_bytes(eb
, fi
);
1334 disk_byte
= btrfs_file_extent_disk_bytenr(eb
, fi
);
1335 if (disk_byte
== 0) {
1339 logical
= disk_byte
+ btrfs_file_extent_offset(eb
, fi
);
1341 down_read(&sctx
->send_root
->fs_info
->commit_root_sem
);
1342 ret
= extent_from_logical(sctx
->send_root
->fs_info
, disk_byte
, tmp_path
,
1343 &found_key
, &flags
);
1344 up_read(&sctx
->send_root
->fs_info
->commit_root_sem
);
1345 btrfs_release_path(tmp_path
);
1349 if (flags
& BTRFS_EXTENT_FLAG_TREE_BLOCK
) {
1355 * Setup the clone roots.
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;
1364 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
;
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
1379 if (compressed
== BTRFS_COMPRESS_NONE
)
1380 backref_ctx
->data_offset
= 0;
1382 backref_ctx
->data_offset
= btrfs_file_extent_offset(eb
, fi
);
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.
1389 if (data_offset
+ num_bytes
>= ino_size
)
1390 backref_ctx
->extent_len
= ino_size
- data_offset
;
1393 * Now collect all backrefs.
1395 if (compressed
== BTRFS_COMPRESS_NONE
)
1396 extent_item_pos
= logical
- found_key
.objectid
;
1398 extent_item_pos
= 0;
1399 ret
= iterate_extent_inodes(sctx
->send_root
->fs_info
,
1400 found_key
.objectid
, extent_item_pos
, 1,
1401 __iterate_backrefs
, backref_ctx
);
1406 if (!backref_ctx
->found_itself
) {
1407 /* found a bug in backref code? */
1409 btrfs_err(sctx
->send_root
->fs_info
, "did not find backref in "
1410 "send_root. inode=%llu, offset=%llu, "
1411 "disk_byte=%llu found extent=%llu",
1412 ino
, data_offset
, disk_byte
, found_key
.objectid
);
1416 verbose_printk(KERN_DEBUG
"btrfs: find_extent_clone: data_offset=%llu, "
1418 "num_bytes=%llu, logical=%llu\n",
1419 data_offset
, ino
, num_bytes
, logical
);
1421 if (!backref_ctx
->found
)
1422 verbose_printk("btrfs: no clones found\n");
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
;
1436 if (cur_clone_root
) {
1437 *found
= cur_clone_root
;
1444 btrfs_free_path(tmp_path
);
1449 static int read_symlink(struct btrfs_root
*root
,
1451 struct fs_path
*dest
)
1454 struct btrfs_path
*path
;
1455 struct btrfs_key key
;
1456 struct btrfs_file_extent_item
*ei
;
1462 path
= alloc_path_for_send();
1467 key
.type
= BTRFS_EXTENT_DATA_KEY
;
1469 ret
= btrfs_search_slot(NULL
, root
, &key
, path
, 0, 0);
1474 ei
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
1475 struct btrfs_file_extent_item
);
1476 type
= btrfs_file_extent_type(path
->nodes
[0], ei
);
1477 compression
= btrfs_file_extent_compression(path
->nodes
[0], ei
);
1478 BUG_ON(type
!= BTRFS_FILE_EXTENT_INLINE
);
1479 BUG_ON(compression
);
1481 off
= btrfs_file_extent_inline_start(ei
);
1482 len
= btrfs_file_extent_inline_len(path
->nodes
[0], path
->slots
[0], ei
);
1484 ret
= fs_path_add_from_extent_buffer(dest
, path
->nodes
[0], off
, len
);
1487 btrfs_free_path(path
);
1492 * Helper function to generate a file name that is unique in the root of
1493 * send_root and parent_root. This is used to generate names for orphan inodes.
1495 static int gen_unique_name(struct send_ctx
*sctx
,
1497 struct fs_path
*dest
)
1500 struct btrfs_path
*path
;
1501 struct btrfs_dir_item
*di
;
1506 path
= alloc_path_for_send();
1511 len
= snprintf(tmp
, sizeof(tmp
), "o%llu-%llu-%llu",
1513 ASSERT(len
< sizeof(tmp
));
1515 di
= btrfs_lookup_dir_item(NULL
, sctx
->send_root
,
1516 path
, BTRFS_FIRST_FREE_OBJECTID
,
1517 tmp
, strlen(tmp
), 0);
1518 btrfs_release_path(path
);
1524 /* not unique, try again */
1529 if (!sctx
->parent_root
) {
1535 di
= btrfs_lookup_dir_item(NULL
, sctx
->parent_root
,
1536 path
, BTRFS_FIRST_FREE_OBJECTID
,
1537 tmp
, strlen(tmp
), 0);
1538 btrfs_release_path(path
);
1544 /* not unique, try again */
1552 ret
= fs_path_add(dest
, tmp
, strlen(tmp
));
1555 btrfs_free_path(path
);
1560 inode_state_no_change
,
1561 inode_state_will_create
,
1562 inode_state_did_create
,
1563 inode_state_will_delete
,
1564 inode_state_did_delete
,
1567 static int get_cur_inode_state(struct send_ctx
*sctx
, u64 ino
, u64 gen
)
1575 ret
= get_inode_info(sctx
->send_root
, ino
, NULL
, &left_gen
, NULL
, NULL
,
1577 if (ret
< 0 && ret
!= -ENOENT
)
1581 if (!sctx
->parent_root
) {
1582 right_ret
= -ENOENT
;
1584 ret
= get_inode_info(sctx
->parent_root
, ino
, NULL
, &right_gen
,
1585 NULL
, NULL
, NULL
, NULL
);
1586 if (ret
< 0 && ret
!= -ENOENT
)
1591 if (!left_ret
&& !right_ret
) {
1592 if (left_gen
== gen
&& right_gen
== gen
) {
1593 ret
= inode_state_no_change
;
1594 } else if (left_gen
== gen
) {
1595 if (ino
< sctx
->send_progress
)
1596 ret
= inode_state_did_create
;
1598 ret
= inode_state_will_create
;
1599 } else if (right_gen
== gen
) {
1600 if (ino
< sctx
->send_progress
)
1601 ret
= inode_state_did_delete
;
1603 ret
= inode_state_will_delete
;
1607 } else if (!left_ret
) {
1608 if (left_gen
== gen
) {
1609 if (ino
< sctx
->send_progress
)
1610 ret
= inode_state_did_create
;
1612 ret
= inode_state_will_create
;
1616 } else if (!right_ret
) {
1617 if (right_gen
== gen
) {
1618 if (ino
< sctx
->send_progress
)
1619 ret
= inode_state_did_delete
;
1621 ret
= inode_state_will_delete
;
1633 static int is_inode_existent(struct send_ctx
*sctx
, u64 ino
, u64 gen
)
1637 ret
= get_cur_inode_state(sctx
, ino
, gen
);
1641 if (ret
== inode_state_no_change
||
1642 ret
== inode_state_did_create
||
1643 ret
== inode_state_will_delete
)
1653 * Helper function to lookup a dir item in a dir.
1655 static int lookup_dir_item_inode(struct btrfs_root
*root
,
1656 u64 dir
, const char *name
, int name_len
,
1661 struct btrfs_dir_item
*di
;
1662 struct btrfs_key key
;
1663 struct btrfs_path
*path
;
1665 path
= alloc_path_for_send();
1669 di
= btrfs_lookup_dir_item(NULL
, root
, path
,
1670 dir
, name
, name_len
, 0);
1679 btrfs_dir_item_key_to_cpu(path
->nodes
[0], di
, &key
);
1680 if (key
.type
== BTRFS_ROOT_ITEM_KEY
) {
1684 *found_inode
= key
.objectid
;
1685 *found_type
= btrfs_dir_type(path
->nodes
[0], di
);
1688 btrfs_free_path(path
);
1693 * Looks up the first btrfs_inode_ref of a given ino. It returns the parent dir,
1694 * generation of the parent dir and the name of the dir entry.
1696 static int get_first_ref(struct btrfs_root
*root
, u64 ino
,
1697 u64
*dir
, u64
*dir_gen
, struct fs_path
*name
)
1700 struct btrfs_key key
;
1701 struct btrfs_key found_key
;
1702 struct btrfs_path
*path
;
1706 path
= alloc_path_for_send();
1711 key
.type
= BTRFS_INODE_REF_KEY
;
1714 ret
= btrfs_search_slot_for_read(root
, &key
, path
, 1, 0);
1718 btrfs_item_key_to_cpu(path
->nodes
[0], &found_key
,
1720 if (ret
|| found_key
.objectid
!= ino
||
1721 (found_key
.type
!= BTRFS_INODE_REF_KEY
&&
1722 found_key
.type
!= BTRFS_INODE_EXTREF_KEY
)) {
1727 if (found_key
.type
== BTRFS_INODE_REF_KEY
) {
1728 struct btrfs_inode_ref
*iref
;
1729 iref
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
1730 struct btrfs_inode_ref
);
1731 len
= btrfs_inode_ref_name_len(path
->nodes
[0], iref
);
1732 ret
= fs_path_add_from_extent_buffer(name
, path
->nodes
[0],
1733 (unsigned long)(iref
+ 1),
1735 parent_dir
= found_key
.offset
;
1737 struct btrfs_inode_extref
*extref
;
1738 extref
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
1739 struct btrfs_inode_extref
);
1740 len
= btrfs_inode_extref_name_len(path
->nodes
[0], extref
);
1741 ret
= fs_path_add_from_extent_buffer(name
, path
->nodes
[0],
1742 (unsigned long)&extref
->name
, len
);
1743 parent_dir
= btrfs_inode_extref_parent(path
->nodes
[0], extref
);
1747 btrfs_release_path(path
);
1750 ret
= get_inode_info(root
, parent_dir
, NULL
, dir_gen
, NULL
,
1759 btrfs_free_path(path
);
1763 static int is_first_ref(struct btrfs_root
*root
,
1765 const char *name
, int name_len
)
1768 struct fs_path
*tmp_name
;
1771 tmp_name
= fs_path_alloc();
1775 ret
= get_first_ref(root
, ino
, &tmp_dir
, NULL
, tmp_name
);
1779 if (dir
!= tmp_dir
|| name_len
!= fs_path_len(tmp_name
)) {
1784 ret
= !memcmp(tmp_name
->start
, name
, name_len
);
1787 fs_path_free(tmp_name
);
1792 * Used by process_recorded_refs to determine if a new ref would overwrite an
1793 * already existing ref. In case it detects an overwrite, it returns the
1794 * inode/gen in who_ino/who_gen.
1795 * When an overwrite is detected, process_recorded_refs does proper orphanizing
1796 * to make sure later references to the overwritten inode are possible.
1797 * Orphanizing is however only required for the first ref of an inode.
1798 * process_recorded_refs does an additional is_first_ref check to see if
1799 * orphanizing is really required.
1801 static int will_overwrite_ref(struct send_ctx
*sctx
, u64 dir
, u64 dir_gen
,
1802 const char *name
, int name_len
,
1803 u64
*who_ino
, u64
*who_gen
)
1807 u64 other_inode
= 0;
1810 if (!sctx
->parent_root
)
1813 ret
= is_inode_existent(sctx
, dir
, dir_gen
);
1818 * If we have a parent root we need to verify that the parent dir was
1819 * not delted and then re-created, if it was then we have no overwrite
1820 * and we can just unlink this entry.
1822 if (sctx
->parent_root
) {
1823 ret
= get_inode_info(sctx
->parent_root
, dir
, NULL
, &gen
, NULL
,
1825 if (ret
< 0 && ret
!= -ENOENT
)
1835 ret
= lookup_dir_item_inode(sctx
->parent_root
, dir
, name
, name_len
,
1836 &other_inode
, &other_type
);
1837 if (ret
< 0 && ret
!= -ENOENT
)
1845 * Check if the overwritten ref was already processed. If yes, the ref
1846 * was already unlinked/moved, so we can safely assume that we will not
1847 * overwrite anything at this point in time.
1849 if (other_inode
> sctx
->send_progress
) {
1850 ret
= get_inode_info(sctx
->parent_root
, other_inode
, NULL
,
1851 who_gen
, NULL
, NULL
, NULL
, NULL
);
1856 *who_ino
= other_inode
;
1866 * Checks if the ref was overwritten by an already processed inode. This is
1867 * used by __get_cur_name_and_parent to find out if the ref was orphanized and
1868 * thus the orphan name needs be used.
1869 * process_recorded_refs also uses it to avoid unlinking of refs that were
1872 static int did_overwrite_ref(struct send_ctx
*sctx
,
1873 u64 dir
, u64 dir_gen
,
1874 u64 ino
, u64 ino_gen
,
1875 const char *name
, int name_len
)
1882 if (!sctx
->parent_root
)
1885 ret
= is_inode_existent(sctx
, dir
, dir_gen
);
1889 /* check if the ref was overwritten by another ref */
1890 ret
= lookup_dir_item_inode(sctx
->send_root
, dir
, name
, name_len
,
1891 &ow_inode
, &other_type
);
1892 if (ret
< 0 && ret
!= -ENOENT
)
1895 /* was never and will never be overwritten */
1900 ret
= get_inode_info(sctx
->send_root
, ow_inode
, NULL
, &gen
, NULL
, NULL
,
1905 if (ow_inode
== ino
&& gen
== ino_gen
) {
1911 * We know that it is or will be overwritten. Check this now.
1912 * The current inode being processed might have been the one that caused
1913 * inode 'ino' to be orphanized, therefore check if ow_inode matches
1914 * the current inode being processed.
1916 if ((ow_inode
< sctx
->send_progress
) ||
1917 (ino
!= sctx
->cur_ino
&& ow_inode
== sctx
->cur_ino
&&
1918 gen
== sctx
->cur_inode_gen
))
1928 * Same as did_overwrite_ref, but also checks if it is the first ref of an inode
1929 * that got overwritten. This is used by process_recorded_refs to determine
1930 * if it has to use the path as returned by get_cur_path or the orphan name.
1932 static int did_overwrite_first_ref(struct send_ctx
*sctx
, u64 ino
, u64 gen
)
1935 struct fs_path
*name
= NULL
;
1939 if (!sctx
->parent_root
)
1942 name
= fs_path_alloc();
1946 ret
= get_first_ref(sctx
->parent_root
, ino
, &dir
, &dir_gen
, name
);
1950 ret
= did_overwrite_ref(sctx
, dir
, dir_gen
, ino
, gen
,
1951 name
->start
, fs_path_len(name
));
1959 * Insert a name cache entry. On 32bit kernels the radix tree index is 32bit,
1960 * so we need to do some special handling in case we have clashes. This function
1961 * takes care of this with the help of name_cache_entry::radix_list.
1962 * In case of error, nce is kfreed.
1964 static int name_cache_insert(struct send_ctx
*sctx
,
1965 struct name_cache_entry
*nce
)
1968 struct list_head
*nce_head
;
1970 nce_head
= radix_tree_lookup(&sctx
->name_cache
,
1971 (unsigned long)nce
->ino
);
1973 nce_head
= kmalloc(sizeof(*nce_head
), GFP_NOFS
);
1978 INIT_LIST_HEAD(nce_head
);
1980 ret
= radix_tree_insert(&sctx
->name_cache
, nce
->ino
, nce_head
);
1987 list_add_tail(&nce
->radix_list
, nce_head
);
1988 list_add_tail(&nce
->list
, &sctx
->name_cache_list
);
1989 sctx
->name_cache_size
++;
1994 static void name_cache_delete(struct send_ctx
*sctx
,
1995 struct name_cache_entry
*nce
)
1997 struct list_head
*nce_head
;
1999 nce_head
= radix_tree_lookup(&sctx
->name_cache
,
2000 (unsigned long)nce
->ino
);
2002 btrfs_err(sctx
->send_root
->fs_info
,
2003 "name_cache_delete lookup failed ino %llu cache size %d, leaking memory",
2004 nce
->ino
, sctx
->name_cache_size
);
2007 list_del(&nce
->radix_list
);
2008 list_del(&nce
->list
);
2009 sctx
->name_cache_size
--;
2012 * We may not get to the final release of nce_head if the lookup fails
2014 if (nce_head
&& list_empty(nce_head
)) {
2015 radix_tree_delete(&sctx
->name_cache
, (unsigned long)nce
->ino
);
2020 static struct name_cache_entry
*name_cache_search(struct send_ctx
*sctx
,
2023 struct list_head
*nce_head
;
2024 struct name_cache_entry
*cur
;
2026 nce_head
= radix_tree_lookup(&sctx
->name_cache
, (unsigned long)ino
);
2030 list_for_each_entry(cur
, nce_head
, radix_list
) {
2031 if (cur
->ino
== ino
&& cur
->gen
== gen
)
2038 * Removes the entry from the list and adds it back to the end. This marks the
2039 * entry as recently used so that name_cache_clean_unused does not remove it.
2041 static void name_cache_used(struct send_ctx
*sctx
, struct name_cache_entry
*nce
)
2043 list_del(&nce
->list
);
2044 list_add_tail(&nce
->list
, &sctx
->name_cache_list
);
2048 * Remove some entries from the beginning of name_cache_list.
2050 static void name_cache_clean_unused(struct send_ctx
*sctx
)
2052 struct name_cache_entry
*nce
;
2054 if (sctx
->name_cache_size
< SEND_CTX_NAME_CACHE_CLEAN_SIZE
)
2057 while (sctx
->name_cache_size
> SEND_CTX_MAX_NAME_CACHE_SIZE
) {
2058 nce
= list_entry(sctx
->name_cache_list
.next
,
2059 struct name_cache_entry
, list
);
2060 name_cache_delete(sctx
, nce
);
2065 static void name_cache_free(struct send_ctx
*sctx
)
2067 struct name_cache_entry
*nce
;
2069 while (!list_empty(&sctx
->name_cache_list
)) {
2070 nce
= list_entry(sctx
->name_cache_list
.next
,
2071 struct name_cache_entry
, list
);
2072 name_cache_delete(sctx
, nce
);
2078 * Used by get_cur_path for each ref up to the root.
2079 * Returns 0 if it succeeded.
2080 * Returns 1 if the inode is not existent or got overwritten. In that case, the
2081 * name is an orphan name. This instructs get_cur_path to stop iterating. If 1
2082 * is returned, parent_ino/parent_gen are not guaranteed to be valid.
2083 * Returns <0 in case of error.
2085 static int __get_cur_name_and_parent(struct send_ctx
*sctx
,
2089 struct fs_path
*dest
)
2093 struct name_cache_entry
*nce
= NULL
;
2096 * First check if we already did a call to this function with the same
2097 * ino/gen. If yes, check if the cache entry is still up-to-date. If yes
2098 * return the cached result.
2100 nce
= name_cache_search(sctx
, ino
, gen
);
2102 if (ino
< sctx
->send_progress
&& nce
->need_later_update
) {
2103 name_cache_delete(sctx
, nce
);
2107 name_cache_used(sctx
, nce
);
2108 *parent_ino
= nce
->parent_ino
;
2109 *parent_gen
= nce
->parent_gen
;
2110 ret
= fs_path_add(dest
, nce
->name
, nce
->name_len
);
2119 * If the inode is not existent yet, add the orphan name and return 1.
2120 * This should only happen for the parent dir that we determine in
2123 ret
= is_inode_existent(sctx
, ino
, gen
);
2128 ret
= gen_unique_name(sctx
, ino
, gen
, dest
);
2136 * Depending on whether the inode was already processed or not, use
2137 * send_root or parent_root for ref lookup.
2139 if (ino
< sctx
->send_progress
)
2140 ret
= get_first_ref(sctx
->send_root
, ino
,
2141 parent_ino
, parent_gen
, dest
);
2143 ret
= get_first_ref(sctx
->parent_root
, ino
,
2144 parent_ino
, parent_gen
, dest
);
2149 * Check if the ref was overwritten by an inode's ref that was processed
2150 * earlier. If yes, treat as orphan and return 1.
2152 ret
= did_overwrite_ref(sctx
, *parent_ino
, *parent_gen
, ino
, gen
,
2153 dest
->start
, dest
->end
- dest
->start
);
2157 fs_path_reset(dest
);
2158 ret
= gen_unique_name(sctx
, ino
, gen
, dest
);
2166 * Store the result of the lookup in the name cache.
2168 nce
= kmalloc(sizeof(*nce
) + fs_path_len(dest
) + 1, GFP_NOFS
);
2176 nce
->parent_ino
= *parent_ino
;
2177 nce
->parent_gen
= *parent_gen
;
2178 nce
->name_len
= fs_path_len(dest
);
2180 strcpy(nce
->name
, dest
->start
);
2182 if (ino
< sctx
->send_progress
)
2183 nce
->need_later_update
= 0;
2185 nce
->need_later_update
= 1;
2187 nce_ret
= name_cache_insert(sctx
, nce
);
2190 name_cache_clean_unused(sctx
);
2197 * Magic happens here. This function returns the first ref to an inode as it
2198 * would look like while receiving the stream at this point in time.
2199 * We walk the path up to the root. For every inode in between, we check if it
2200 * was already processed/sent. If yes, we continue with the parent as found
2201 * in send_root. If not, we continue with the parent as found in parent_root.
2202 * If we encounter an inode that was deleted at this point in time, we use the
2203 * inodes "orphan" name instead of the real name and stop. Same with new inodes
2204 * that were not created yet and overwritten inodes/refs.
2206 * When do we have have orphan inodes:
2207 * 1. When an inode is freshly created and thus no valid refs are available yet
2208 * 2. When a directory lost all it's refs (deleted) but still has dir items
2209 * inside which were not processed yet (pending for move/delete). If anyone
2210 * tried to get the path to the dir items, it would get a path inside that
2212 * 3. When an inode is moved around or gets new links, it may overwrite the ref
2213 * of an unprocessed inode. If in that case the first ref would be
2214 * overwritten, the overwritten inode gets "orphanized". Later when we
2215 * process this overwritten inode, it is restored at a new place by moving
2218 * sctx->send_progress tells this function at which point in time receiving
2221 static int get_cur_path(struct send_ctx
*sctx
, u64 ino
, u64 gen
,
2222 struct fs_path
*dest
)
2225 struct fs_path
*name
= NULL
;
2226 u64 parent_inode
= 0;
2230 name
= fs_path_alloc();
2237 fs_path_reset(dest
);
2239 while (!stop
&& ino
!= BTRFS_FIRST_FREE_OBJECTID
) {
2240 struct waiting_dir_move
*wdm
;
2242 fs_path_reset(name
);
2244 if (is_waiting_for_rm(sctx
, ino
)) {
2245 ret
= gen_unique_name(sctx
, ino
, gen
, name
);
2248 ret
= fs_path_add_path(dest
, name
);
2252 wdm
= get_waiting_dir_move(sctx
, ino
);
2253 if (wdm
&& wdm
->orphanized
) {
2254 ret
= gen_unique_name(sctx
, ino
, gen
, name
);
2257 ret
= get_first_ref(sctx
->parent_root
, ino
,
2258 &parent_inode
, &parent_gen
, name
);
2260 ret
= __get_cur_name_and_parent(sctx
, ino
, gen
,
2270 ret
= fs_path_add_path(dest
, name
);
2281 fs_path_unreverse(dest
);
2286 * Sends a BTRFS_SEND_C_SUBVOL command/item to userspace
2288 static int send_subvol_begin(struct send_ctx
*sctx
)
2291 struct btrfs_root
*send_root
= sctx
->send_root
;
2292 struct btrfs_root
*parent_root
= sctx
->parent_root
;
2293 struct btrfs_path
*path
;
2294 struct btrfs_key key
;
2295 struct btrfs_root_ref
*ref
;
2296 struct extent_buffer
*leaf
;
2300 path
= btrfs_alloc_path();
2304 name
= kmalloc(BTRFS_PATH_NAME_MAX
, GFP_NOFS
);
2306 btrfs_free_path(path
);
2310 key
.objectid
= send_root
->objectid
;
2311 key
.type
= BTRFS_ROOT_BACKREF_KEY
;
2314 ret
= btrfs_search_slot_for_read(send_root
->fs_info
->tree_root
,
2323 leaf
= path
->nodes
[0];
2324 btrfs_item_key_to_cpu(leaf
, &key
, path
->slots
[0]);
2325 if (key
.type
!= BTRFS_ROOT_BACKREF_KEY
||
2326 key
.objectid
!= send_root
->objectid
) {
2330 ref
= btrfs_item_ptr(leaf
, path
->slots
[0], struct btrfs_root_ref
);
2331 namelen
= btrfs_root_ref_name_len(leaf
, ref
);
2332 read_extent_buffer(leaf
, name
, (unsigned long)(ref
+ 1), namelen
);
2333 btrfs_release_path(path
);
2336 ret
= begin_cmd(sctx
, BTRFS_SEND_C_SNAPSHOT
);
2340 ret
= begin_cmd(sctx
, BTRFS_SEND_C_SUBVOL
);
2345 TLV_PUT_STRING(sctx
, BTRFS_SEND_A_PATH
, name
, namelen
);
2347 if (!btrfs_is_empty_uuid(sctx
->send_root
->root_item
.received_uuid
))
2348 TLV_PUT_UUID(sctx
, BTRFS_SEND_A_UUID
,
2349 sctx
->send_root
->root_item
.received_uuid
);
2351 TLV_PUT_UUID(sctx
, BTRFS_SEND_A_UUID
,
2352 sctx
->send_root
->root_item
.uuid
);
2354 TLV_PUT_U64(sctx
, BTRFS_SEND_A_CTRANSID
,
2355 le64_to_cpu(sctx
->send_root
->root_item
.ctransid
));
2357 if (!btrfs_is_empty_uuid(parent_root
->root_item
.received_uuid
))
2358 TLV_PUT_UUID(sctx
, BTRFS_SEND_A_CLONE_UUID
,
2359 parent_root
->root_item
.received_uuid
);
2361 TLV_PUT_UUID(sctx
, BTRFS_SEND_A_CLONE_UUID
,
2362 parent_root
->root_item
.uuid
);
2363 TLV_PUT_U64(sctx
, BTRFS_SEND_A_CLONE_CTRANSID
,
2364 le64_to_cpu(sctx
->parent_root
->root_item
.ctransid
));
2367 ret
= send_cmd(sctx
);
2371 btrfs_free_path(path
);
2376 static int send_truncate(struct send_ctx
*sctx
, u64 ino
, u64 gen
, u64 size
)
2381 verbose_printk("btrfs: send_truncate %llu size=%llu\n", ino
, size
);
2383 p
= fs_path_alloc();
2387 ret
= begin_cmd(sctx
, BTRFS_SEND_C_TRUNCATE
);
2391 ret
= get_cur_path(sctx
, ino
, gen
, p
);
2394 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
2395 TLV_PUT_U64(sctx
, BTRFS_SEND_A_SIZE
, size
);
2397 ret
= send_cmd(sctx
);
2405 static int send_chmod(struct send_ctx
*sctx
, u64 ino
, u64 gen
, u64 mode
)
2410 verbose_printk("btrfs: send_chmod %llu mode=%llu\n", ino
, mode
);
2412 p
= fs_path_alloc();
2416 ret
= begin_cmd(sctx
, BTRFS_SEND_C_CHMOD
);
2420 ret
= get_cur_path(sctx
, ino
, gen
, p
);
2423 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
2424 TLV_PUT_U64(sctx
, BTRFS_SEND_A_MODE
, mode
& 07777);
2426 ret
= send_cmd(sctx
);
2434 static int send_chown(struct send_ctx
*sctx
, u64 ino
, u64 gen
, u64 uid
, u64 gid
)
2439 verbose_printk("btrfs: send_chown %llu uid=%llu, gid=%llu\n", ino
, uid
, gid
);
2441 p
= fs_path_alloc();
2445 ret
= begin_cmd(sctx
, BTRFS_SEND_C_CHOWN
);
2449 ret
= get_cur_path(sctx
, ino
, gen
, p
);
2452 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
2453 TLV_PUT_U64(sctx
, BTRFS_SEND_A_UID
, uid
);
2454 TLV_PUT_U64(sctx
, BTRFS_SEND_A_GID
, gid
);
2456 ret
= send_cmd(sctx
);
2464 static int send_utimes(struct send_ctx
*sctx
, u64 ino
, u64 gen
)
2467 struct fs_path
*p
= NULL
;
2468 struct btrfs_inode_item
*ii
;
2469 struct btrfs_path
*path
= NULL
;
2470 struct extent_buffer
*eb
;
2471 struct btrfs_key key
;
2474 verbose_printk("btrfs: send_utimes %llu\n", ino
);
2476 p
= fs_path_alloc();
2480 path
= alloc_path_for_send();
2487 key
.type
= BTRFS_INODE_ITEM_KEY
;
2489 ret
= btrfs_search_slot(NULL
, sctx
->send_root
, &key
, path
, 0, 0);
2493 eb
= path
->nodes
[0];
2494 slot
= path
->slots
[0];
2495 ii
= btrfs_item_ptr(eb
, slot
, struct btrfs_inode_item
);
2497 ret
= begin_cmd(sctx
, BTRFS_SEND_C_UTIMES
);
2501 ret
= get_cur_path(sctx
, ino
, gen
, p
);
2504 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
2505 TLV_PUT_BTRFS_TIMESPEC(sctx
, BTRFS_SEND_A_ATIME
, eb
, &ii
->atime
);
2506 TLV_PUT_BTRFS_TIMESPEC(sctx
, BTRFS_SEND_A_MTIME
, eb
, &ii
->mtime
);
2507 TLV_PUT_BTRFS_TIMESPEC(sctx
, BTRFS_SEND_A_CTIME
, eb
, &ii
->ctime
);
2508 /* TODO Add otime support when the otime patches get into upstream */
2510 ret
= send_cmd(sctx
);
2515 btrfs_free_path(path
);
2520 * Sends a BTRFS_SEND_C_MKXXX or SYMLINK command to user space. We don't have
2521 * a valid path yet because we did not process the refs yet. So, the inode
2522 * is created as orphan.
2524 static int send_create_inode(struct send_ctx
*sctx
, u64 ino
)
2533 verbose_printk("btrfs: send_create_inode %llu\n", ino
);
2535 p
= fs_path_alloc();
2539 if (ino
!= sctx
->cur_ino
) {
2540 ret
= get_inode_info(sctx
->send_root
, ino
, NULL
, &gen
, &mode
,
2545 gen
= sctx
->cur_inode_gen
;
2546 mode
= sctx
->cur_inode_mode
;
2547 rdev
= sctx
->cur_inode_rdev
;
2550 if (S_ISREG(mode
)) {
2551 cmd
= BTRFS_SEND_C_MKFILE
;
2552 } else if (S_ISDIR(mode
)) {
2553 cmd
= BTRFS_SEND_C_MKDIR
;
2554 } else if (S_ISLNK(mode
)) {
2555 cmd
= BTRFS_SEND_C_SYMLINK
;
2556 } else if (S_ISCHR(mode
) || S_ISBLK(mode
)) {
2557 cmd
= BTRFS_SEND_C_MKNOD
;
2558 } else if (S_ISFIFO(mode
)) {
2559 cmd
= BTRFS_SEND_C_MKFIFO
;
2560 } else if (S_ISSOCK(mode
)) {
2561 cmd
= BTRFS_SEND_C_MKSOCK
;
2563 btrfs_warn(sctx
->send_root
->fs_info
, "unexpected inode type %o",
2564 (int)(mode
& S_IFMT
));
2569 ret
= begin_cmd(sctx
, cmd
);
2573 ret
= gen_unique_name(sctx
, ino
, gen
, p
);
2577 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
2578 TLV_PUT_U64(sctx
, BTRFS_SEND_A_INO
, ino
);
2580 if (S_ISLNK(mode
)) {
2582 ret
= read_symlink(sctx
->send_root
, ino
, p
);
2585 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH_LINK
, p
);
2586 } else if (S_ISCHR(mode
) || S_ISBLK(mode
) ||
2587 S_ISFIFO(mode
) || S_ISSOCK(mode
)) {
2588 TLV_PUT_U64(sctx
, BTRFS_SEND_A_RDEV
, new_encode_dev(rdev
));
2589 TLV_PUT_U64(sctx
, BTRFS_SEND_A_MODE
, mode
);
2592 ret
= send_cmd(sctx
);
2604 * We need some special handling for inodes that get processed before the parent
2605 * directory got created. See process_recorded_refs for details.
2606 * This function does the check if we already created the dir out of order.
2608 static int did_create_dir(struct send_ctx
*sctx
, u64 dir
)
2611 struct btrfs_path
*path
= NULL
;
2612 struct btrfs_key key
;
2613 struct btrfs_key found_key
;
2614 struct btrfs_key di_key
;
2615 struct extent_buffer
*eb
;
2616 struct btrfs_dir_item
*di
;
2619 path
= alloc_path_for_send();
2626 key
.type
= BTRFS_DIR_INDEX_KEY
;
2628 ret
= btrfs_search_slot(NULL
, sctx
->send_root
, &key
, path
, 0, 0);
2633 eb
= path
->nodes
[0];
2634 slot
= path
->slots
[0];
2635 if (slot
>= btrfs_header_nritems(eb
)) {
2636 ret
= btrfs_next_leaf(sctx
->send_root
, path
);
2639 } else if (ret
> 0) {
2646 btrfs_item_key_to_cpu(eb
, &found_key
, slot
);
2647 if (found_key
.objectid
!= key
.objectid
||
2648 found_key
.type
!= key
.type
) {
2653 di
= btrfs_item_ptr(eb
, slot
, struct btrfs_dir_item
);
2654 btrfs_dir_item_key_to_cpu(eb
, di
, &di_key
);
2656 if (di_key
.type
!= BTRFS_ROOT_ITEM_KEY
&&
2657 di_key
.objectid
< sctx
->send_progress
) {
2666 btrfs_free_path(path
);
2671 * Only creates the inode if it is:
2672 * 1. Not a directory
2673 * 2. Or a directory which was not created already due to out of order
2674 * directories. See did_create_dir and process_recorded_refs for details.
2676 static int send_create_inode_if_needed(struct send_ctx
*sctx
)
2680 if (S_ISDIR(sctx
->cur_inode_mode
)) {
2681 ret
= did_create_dir(sctx
, sctx
->cur_ino
);
2690 ret
= send_create_inode(sctx
, sctx
->cur_ino
);
2698 struct recorded_ref
{
2699 struct list_head list
;
2702 struct fs_path
*full_path
;
2710 * We need to process new refs before deleted refs, but compare_tree gives us
2711 * everything mixed. So we first record all refs and later process them.
2712 * This function is a helper to record one ref.
2714 static int __record_ref(struct list_head
*head
, u64 dir
,
2715 u64 dir_gen
, struct fs_path
*path
)
2717 struct recorded_ref
*ref
;
2719 ref
= kmalloc(sizeof(*ref
), GFP_NOFS
);
2724 ref
->dir_gen
= dir_gen
;
2725 ref
->full_path
= path
;
2727 ref
->name
= (char *)kbasename(ref
->full_path
->start
);
2728 ref
->name_len
= ref
->full_path
->end
- ref
->name
;
2729 ref
->dir_path
= ref
->full_path
->start
;
2730 if (ref
->name
== ref
->full_path
->start
)
2731 ref
->dir_path_len
= 0;
2733 ref
->dir_path_len
= ref
->full_path
->end
-
2734 ref
->full_path
->start
- 1 - ref
->name_len
;
2736 list_add_tail(&ref
->list
, head
);
2740 static int dup_ref(struct recorded_ref
*ref
, struct list_head
*list
)
2742 struct recorded_ref
*new;
2744 new = kmalloc(sizeof(*ref
), GFP_NOFS
);
2748 new->dir
= ref
->dir
;
2749 new->dir_gen
= ref
->dir_gen
;
2750 new->full_path
= NULL
;
2751 INIT_LIST_HEAD(&new->list
);
2752 list_add_tail(&new->list
, list
);
2756 static void __free_recorded_refs(struct list_head
*head
)
2758 struct recorded_ref
*cur
;
2760 while (!list_empty(head
)) {
2761 cur
= list_entry(head
->next
, struct recorded_ref
, list
);
2762 fs_path_free(cur
->full_path
);
2763 list_del(&cur
->list
);
2768 static void free_recorded_refs(struct send_ctx
*sctx
)
2770 __free_recorded_refs(&sctx
->new_refs
);
2771 __free_recorded_refs(&sctx
->deleted_refs
);
2775 * Renames/moves a file/dir to its orphan name. Used when the first
2776 * ref of an unprocessed inode gets overwritten and for all non empty
2779 static int orphanize_inode(struct send_ctx
*sctx
, u64 ino
, u64 gen
,
2780 struct fs_path
*path
)
2783 struct fs_path
*orphan
;
2785 orphan
= fs_path_alloc();
2789 ret
= gen_unique_name(sctx
, ino
, gen
, orphan
);
2793 ret
= send_rename(sctx
, path
, orphan
);
2796 fs_path_free(orphan
);
2800 static struct orphan_dir_info
*
2801 add_orphan_dir_info(struct send_ctx
*sctx
, u64 dir_ino
)
2803 struct rb_node
**p
= &sctx
->orphan_dirs
.rb_node
;
2804 struct rb_node
*parent
= NULL
;
2805 struct orphan_dir_info
*entry
, *odi
;
2807 odi
= kmalloc(sizeof(*odi
), GFP_NOFS
);
2809 return ERR_PTR(-ENOMEM
);
2815 entry
= rb_entry(parent
, struct orphan_dir_info
, node
);
2816 if (dir_ino
< entry
->ino
) {
2818 } else if (dir_ino
> entry
->ino
) {
2819 p
= &(*p
)->rb_right
;
2826 rb_link_node(&odi
->node
, parent
, p
);
2827 rb_insert_color(&odi
->node
, &sctx
->orphan_dirs
);
2831 static struct orphan_dir_info
*
2832 get_orphan_dir_info(struct send_ctx
*sctx
, u64 dir_ino
)
2834 struct rb_node
*n
= sctx
->orphan_dirs
.rb_node
;
2835 struct orphan_dir_info
*entry
;
2838 entry
= rb_entry(n
, struct orphan_dir_info
, node
);
2839 if (dir_ino
< entry
->ino
)
2841 else if (dir_ino
> entry
->ino
)
2849 static int is_waiting_for_rm(struct send_ctx
*sctx
, u64 dir_ino
)
2851 struct orphan_dir_info
*odi
= get_orphan_dir_info(sctx
, dir_ino
);
2856 static void free_orphan_dir_info(struct send_ctx
*sctx
,
2857 struct orphan_dir_info
*odi
)
2861 rb_erase(&odi
->node
, &sctx
->orphan_dirs
);
2866 * Returns 1 if a directory can be removed at this point in time.
2867 * We check this by iterating all dir items and checking if the inode behind
2868 * the dir item was already processed.
2870 static int can_rmdir(struct send_ctx
*sctx
, u64 dir
, u64 dir_gen
,
2874 struct btrfs_root
*root
= sctx
->parent_root
;
2875 struct btrfs_path
*path
;
2876 struct btrfs_key key
;
2877 struct btrfs_key found_key
;
2878 struct btrfs_key loc
;
2879 struct btrfs_dir_item
*di
;
2882 * Don't try to rmdir the top/root subvolume dir.
2884 if (dir
== BTRFS_FIRST_FREE_OBJECTID
)
2887 path
= alloc_path_for_send();
2892 key
.type
= BTRFS_DIR_INDEX_KEY
;
2894 ret
= btrfs_search_slot(NULL
, root
, &key
, path
, 0, 0);
2899 struct waiting_dir_move
*dm
;
2901 if (path
->slots
[0] >= btrfs_header_nritems(path
->nodes
[0])) {
2902 ret
= btrfs_next_leaf(root
, path
);
2909 btrfs_item_key_to_cpu(path
->nodes
[0], &found_key
,
2911 if (found_key
.objectid
!= key
.objectid
||
2912 found_key
.type
!= key
.type
)
2915 di
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
2916 struct btrfs_dir_item
);
2917 btrfs_dir_item_key_to_cpu(path
->nodes
[0], di
, &loc
);
2919 dm
= get_waiting_dir_move(sctx
, loc
.objectid
);
2921 struct orphan_dir_info
*odi
;
2923 odi
= add_orphan_dir_info(sctx
, dir
);
2929 dm
->rmdir_ino
= dir
;
2934 if (loc
.objectid
> send_progress
) {
2945 btrfs_free_path(path
);
2949 static int is_waiting_for_move(struct send_ctx
*sctx
, u64 ino
)
2951 struct waiting_dir_move
*entry
= get_waiting_dir_move(sctx
, ino
);
2953 return entry
!= NULL
;
2956 static int add_waiting_dir_move(struct send_ctx
*sctx
, u64 ino
, bool orphanized
)
2958 struct rb_node
**p
= &sctx
->waiting_dir_moves
.rb_node
;
2959 struct rb_node
*parent
= NULL
;
2960 struct waiting_dir_move
*entry
, *dm
;
2962 dm
= kmalloc(sizeof(*dm
), GFP_NOFS
);
2967 dm
->orphanized
= orphanized
;
2971 entry
= rb_entry(parent
, struct waiting_dir_move
, node
);
2972 if (ino
< entry
->ino
) {
2974 } else if (ino
> entry
->ino
) {
2975 p
= &(*p
)->rb_right
;
2982 rb_link_node(&dm
->node
, parent
, p
);
2983 rb_insert_color(&dm
->node
, &sctx
->waiting_dir_moves
);
2987 static struct waiting_dir_move
*
2988 get_waiting_dir_move(struct send_ctx
*sctx
, u64 ino
)
2990 struct rb_node
*n
= sctx
->waiting_dir_moves
.rb_node
;
2991 struct waiting_dir_move
*entry
;
2994 entry
= rb_entry(n
, struct waiting_dir_move
, node
);
2995 if (ino
< entry
->ino
)
2997 else if (ino
> entry
->ino
)
3005 static void free_waiting_dir_move(struct send_ctx
*sctx
,
3006 struct waiting_dir_move
*dm
)
3010 rb_erase(&dm
->node
, &sctx
->waiting_dir_moves
);
3014 static int add_pending_dir_move(struct send_ctx
*sctx
,
3018 struct list_head
*new_refs
,
3019 struct list_head
*deleted_refs
,
3020 const bool is_orphan
)
3022 struct rb_node
**p
= &sctx
->pending_dir_moves
.rb_node
;
3023 struct rb_node
*parent
= NULL
;
3024 struct pending_dir_move
*entry
= NULL
, *pm
;
3025 struct recorded_ref
*cur
;
3029 pm
= kmalloc(sizeof(*pm
), GFP_NOFS
);
3032 pm
->parent_ino
= parent_ino
;
3035 pm
->is_orphan
= is_orphan
;
3036 INIT_LIST_HEAD(&pm
->list
);
3037 INIT_LIST_HEAD(&pm
->update_refs
);
3038 RB_CLEAR_NODE(&pm
->node
);
3042 entry
= rb_entry(parent
, struct pending_dir_move
, node
);
3043 if (parent_ino
< entry
->parent_ino
) {
3045 } else if (parent_ino
> entry
->parent_ino
) {
3046 p
= &(*p
)->rb_right
;
3053 list_for_each_entry(cur
, deleted_refs
, list
) {
3054 ret
= dup_ref(cur
, &pm
->update_refs
);
3058 list_for_each_entry(cur
, new_refs
, list
) {
3059 ret
= dup_ref(cur
, &pm
->update_refs
);
3064 ret
= add_waiting_dir_move(sctx
, pm
->ino
, is_orphan
);
3069 list_add_tail(&pm
->list
, &entry
->list
);
3071 rb_link_node(&pm
->node
, parent
, p
);
3072 rb_insert_color(&pm
->node
, &sctx
->pending_dir_moves
);
3077 __free_recorded_refs(&pm
->update_refs
);
3083 static struct pending_dir_move
*get_pending_dir_moves(struct send_ctx
*sctx
,
3086 struct rb_node
*n
= sctx
->pending_dir_moves
.rb_node
;
3087 struct pending_dir_move
*entry
;
3090 entry
= rb_entry(n
, struct pending_dir_move
, node
);
3091 if (parent_ino
< entry
->parent_ino
)
3093 else if (parent_ino
> entry
->parent_ino
)
3101 static int apply_dir_move(struct send_ctx
*sctx
, struct pending_dir_move
*pm
)
3103 struct fs_path
*from_path
= NULL
;
3104 struct fs_path
*to_path
= NULL
;
3105 struct fs_path
*name
= NULL
;
3106 u64 orig_progress
= sctx
->send_progress
;
3107 struct recorded_ref
*cur
;
3108 u64 parent_ino
, parent_gen
;
3109 struct waiting_dir_move
*dm
= NULL
;
3113 name
= fs_path_alloc();
3114 from_path
= fs_path_alloc();
3115 if (!name
|| !from_path
) {
3120 dm
= get_waiting_dir_move(sctx
, pm
->ino
);
3122 rmdir_ino
= dm
->rmdir_ino
;
3123 free_waiting_dir_move(sctx
, dm
);
3125 if (pm
->is_orphan
) {
3126 ret
= gen_unique_name(sctx
, pm
->ino
,
3127 pm
->gen
, from_path
);
3129 ret
= get_first_ref(sctx
->parent_root
, pm
->ino
,
3130 &parent_ino
, &parent_gen
, name
);
3133 ret
= get_cur_path(sctx
, parent_ino
, parent_gen
,
3137 ret
= fs_path_add_path(from_path
, name
);
3142 sctx
->send_progress
= sctx
->cur_ino
+ 1;
3143 fs_path_reset(name
);
3146 ret
= get_cur_path(sctx
, pm
->ino
, pm
->gen
, to_path
);
3150 ret
= send_rename(sctx
, from_path
, to_path
);
3155 struct orphan_dir_info
*odi
;
3157 odi
= get_orphan_dir_info(sctx
, rmdir_ino
);
3159 /* already deleted */
3162 ret
= can_rmdir(sctx
, rmdir_ino
, odi
->gen
, sctx
->cur_ino
+ 1);
3168 name
= fs_path_alloc();
3173 ret
= get_cur_path(sctx
, rmdir_ino
, odi
->gen
, name
);
3176 ret
= send_rmdir(sctx
, name
);
3179 free_orphan_dir_info(sctx
, odi
);
3183 ret
= send_utimes(sctx
, pm
->ino
, pm
->gen
);
3188 * After rename/move, need to update the utimes of both new parent(s)
3189 * and old parent(s).
3191 list_for_each_entry(cur
, &pm
->update_refs
, list
) {
3192 if (cur
->dir
== rmdir_ino
)
3194 ret
= send_utimes(sctx
, cur
->dir
, cur
->dir_gen
);
3201 fs_path_free(from_path
);
3202 fs_path_free(to_path
);
3203 sctx
->send_progress
= orig_progress
;
3208 static void free_pending_move(struct send_ctx
*sctx
, struct pending_dir_move
*m
)
3210 if (!list_empty(&m
->list
))
3212 if (!RB_EMPTY_NODE(&m
->node
))
3213 rb_erase(&m
->node
, &sctx
->pending_dir_moves
);
3214 __free_recorded_refs(&m
->update_refs
);
3218 static void tail_append_pending_moves(struct pending_dir_move
*moves
,
3219 struct list_head
*stack
)
3221 if (list_empty(&moves
->list
)) {
3222 list_add_tail(&moves
->list
, stack
);
3225 list_splice_init(&moves
->list
, &list
);
3226 list_add_tail(&moves
->list
, stack
);
3227 list_splice_tail(&list
, stack
);
3231 static int apply_children_dir_moves(struct send_ctx
*sctx
)
3233 struct pending_dir_move
*pm
;
3234 struct list_head stack
;
3235 u64 parent_ino
= sctx
->cur_ino
;
3238 pm
= get_pending_dir_moves(sctx
, parent_ino
);
3242 INIT_LIST_HEAD(&stack
);
3243 tail_append_pending_moves(pm
, &stack
);
3245 while (!list_empty(&stack
)) {
3246 pm
= list_first_entry(&stack
, struct pending_dir_move
, list
);
3247 parent_ino
= pm
->ino
;
3248 ret
= apply_dir_move(sctx
, pm
);
3249 free_pending_move(sctx
, pm
);
3252 pm
= get_pending_dir_moves(sctx
, parent_ino
);
3254 tail_append_pending_moves(pm
, &stack
);
3259 while (!list_empty(&stack
)) {
3260 pm
= list_first_entry(&stack
, struct pending_dir_move
, list
);
3261 free_pending_move(sctx
, pm
);
3267 * We might need to delay a directory rename even when no ancestor directory
3268 * (in the send root) with a higher inode number than ours (sctx->cur_ino) was
3269 * renamed. This happens when we rename a directory to the old name (the name
3270 * in the parent root) of some other unrelated directory that got its rename
3271 * delayed due to some ancestor with higher number that got renamed.
3277 * |---- a/ (ino 257)
3278 * | |---- file (ino 260)
3280 * |---- b/ (ino 258)
3281 * |---- c/ (ino 259)
3285 * |---- a/ (ino 258)
3286 * |---- x/ (ino 259)
3287 * |---- y/ (ino 257)
3288 * |----- file (ino 260)
3290 * Here we can not rename 258 from 'b' to 'a' without the rename of inode 257
3291 * from 'a' to 'x/y' happening first, which in turn depends on the rename of
3292 * inode 259 from 'c' to 'x'. So the order of rename commands the send stream
3295 * 1 - rename 259 from 'c' to 'x'
3296 * 2 - rename 257 from 'a' to 'x/y'
3297 * 3 - rename 258 from 'b' to 'a'
3299 * Returns 1 if the rename of sctx->cur_ino needs to be delayed, 0 if it can
3300 * be done right away and < 0 on error.
3302 static int wait_for_dest_dir_move(struct send_ctx
*sctx
,
3303 struct recorded_ref
*parent_ref
,
3304 const bool is_orphan
)
3306 struct btrfs_path
*path
;
3307 struct btrfs_key key
;
3308 struct btrfs_key di_key
;
3309 struct btrfs_dir_item
*di
;
3314 if (RB_EMPTY_ROOT(&sctx
->waiting_dir_moves
))
3317 path
= alloc_path_for_send();
3321 key
.objectid
= parent_ref
->dir
;
3322 key
.type
= BTRFS_DIR_ITEM_KEY
;
3323 key
.offset
= btrfs_name_hash(parent_ref
->name
, parent_ref
->name_len
);
3325 ret
= btrfs_search_slot(NULL
, sctx
->parent_root
, &key
, path
, 0, 0);
3328 } else if (ret
> 0) {
3333 di
= btrfs_match_dir_item_name(sctx
->parent_root
, path
,
3334 parent_ref
->name
, parent_ref
->name_len
);
3340 * di_key.objectid has the number of the inode that has a dentry in the
3341 * parent directory with the same name that sctx->cur_ino is being
3342 * renamed to. We need to check if that inode is in the send root as
3343 * well and if it is currently marked as an inode with a pending rename,
3344 * if it is, we need to delay the rename of sctx->cur_ino as well, so
3345 * that it happens after that other inode is renamed.
3347 btrfs_dir_item_key_to_cpu(path
->nodes
[0], di
, &di_key
);
3348 if (di_key
.type
!= BTRFS_INODE_ITEM_KEY
) {
3353 ret
= get_inode_info(sctx
->parent_root
, di_key
.objectid
, NULL
,
3354 &left_gen
, NULL
, NULL
, NULL
, NULL
);
3357 ret
= get_inode_info(sctx
->send_root
, di_key
.objectid
, NULL
,
3358 &right_gen
, NULL
, NULL
, NULL
, NULL
);
3365 /* Different inode, no need to delay the rename of sctx->cur_ino */
3366 if (right_gen
!= left_gen
) {
3371 if (is_waiting_for_move(sctx
, di_key
.objectid
)) {
3372 ret
= add_pending_dir_move(sctx
,
3374 sctx
->cur_inode_gen
,
3377 &sctx
->deleted_refs
,
3383 btrfs_free_path(path
);
3388 * Check if ino ino1 is an ancestor of inode ino2 in the given root.
3389 * Return 1 if true, 0 if false and < 0 on error.
3391 static int is_ancestor(struct btrfs_root
*root
,
3395 struct fs_path
*fs_path
)
3399 while (ino
> BTRFS_FIRST_FREE_OBJECTID
) {
3404 fs_path_reset(fs_path
);
3405 ret
= get_first_ref(root
, ino
, &parent
, &parent_gen
, fs_path
);
3407 if (ret
== -ENOENT
&& ino
== ino2
)
3412 return parent_gen
== ino1_gen
? 1 : 0;
3418 static int wait_for_parent_move(struct send_ctx
*sctx
,
3419 struct recorded_ref
*parent_ref
,
3420 const bool is_orphan
)
3423 u64 ino
= parent_ref
->dir
;
3424 u64 parent_ino_before
, parent_ino_after
;
3425 struct fs_path
*path_before
= NULL
;
3426 struct fs_path
*path_after
= NULL
;
3429 path_after
= fs_path_alloc();
3430 path_before
= fs_path_alloc();
3431 if (!path_after
|| !path_before
) {
3437 * Our current directory inode may not yet be renamed/moved because some
3438 * ancestor (immediate or not) has to be renamed/moved first. So find if
3439 * such ancestor exists and make sure our own rename/move happens after
3440 * that ancestor is processed to avoid path build infinite loops (done
3441 * at get_cur_path()).
3443 while (ino
> BTRFS_FIRST_FREE_OBJECTID
) {
3444 if (is_waiting_for_move(sctx
, ino
)) {
3446 * If the current inode is an ancestor of ino in the
3447 * parent root, we need to delay the rename of the
3448 * current inode, otherwise don't delayed the rename
3449 * because we can end up with a circular dependency
3450 * of renames, resulting in some directories never
3451 * getting the respective rename operations issued in
3452 * the send stream or getting into infinite path build
3455 ret
= is_ancestor(sctx
->parent_root
,
3456 sctx
->cur_ino
, sctx
->cur_inode_gen
,
3461 fs_path_reset(path_before
);
3462 fs_path_reset(path_after
);
3464 ret
= get_first_ref(sctx
->send_root
, ino
, &parent_ino_after
,
3468 ret
= get_first_ref(sctx
->parent_root
, ino
, &parent_ino_before
,
3470 if (ret
< 0 && ret
!= -ENOENT
) {
3472 } else if (ret
== -ENOENT
) {
3477 len1
= fs_path_len(path_before
);
3478 len2
= fs_path_len(path_after
);
3479 if (ino
> sctx
->cur_ino
&&
3480 (parent_ino_before
!= parent_ino_after
|| len1
!= len2
||
3481 memcmp(path_before
->start
, path_after
->start
, len1
))) {
3485 ino
= parent_ino_after
;
3489 fs_path_free(path_before
);
3490 fs_path_free(path_after
);
3493 ret
= add_pending_dir_move(sctx
,
3495 sctx
->cur_inode_gen
,
3498 &sctx
->deleted_refs
,
3508 * This does all the move/link/unlink/rmdir magic.
3510 static int process_recorded_refs(struct send_ctx
*sctx
, int *pending_move
)
3513 struct recorded_ref
*cur
;
3514 struct recorded_ref
*cur2
;
3515 struct list_head check_dirs
;
3516 struct fs_path
*valid_path
= NULL
;
3519 int did_overwrite
= 0;
3521 u64 last_dir_ino_rm
= 0;
3522 bool can_rename
= true;
3524 verbose_printk("btrfs: process_recorded_refs %llu\n", sctx
->cur_ino
);
3527 * This should never happen as the root dir always has the same ref
3528 * which is always '..'
3530 BUG_ON(sctx
->cur_ino
<= BTRFS_FIRST_FREE_OBJECTID
);
3531 INIT_LIST_HEAD(&check_dirs
);
3533 valid_path
= fs_path_alloc();
3540 * First, check if the first ref of the current inode was overwritten
3541 * before. If yes, we know that the current inode was already orphanized
3542 * and thus use the orphan name. If not, we can use get_cur_path to
3543 * get the path of the first ref as it would like while receiving at
3544 * this point in time.
3545 * New inodes are always orphan at the beginning, so force to use the
3546 * orphan name in this case.
3547 * The first ref is stored in valid_path and will be updated if it
3548 * gets moved around.
3550 if (!sctx
->cur_inode_new
) {
3551 ret
= did_overwrite_first_ref(sctx
, sctx
->cur_ino
,
3552 sctx
->cur_inode_gen
);
3558 if (sctx
->cur_inode_new
|| did_overwrite
) {
3559 ret
= gen_unique_name(sctx
, sctx
->cur_ino
,
3560 sctx
->cur_inode_gen
, valid_path
);
3565 ret
= get_cur_path(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
,
3571 list_for_each_entry(cur
, &sctx
->new_refs
, list
) {
3573 * We may have refs where the parent directory does not exist
3574 * yet. This happens if the parent directories inum is higher
3575 * the the current inum. To handle this case, we create the
3576 * parent directory out of order. But we need to check if this
3577 * did already happen before due to other refs in the same dir.
3579 ret
= get_cur_inode_state(sctx
, cur
->dir
, cur
->dir_gen
);
3582 if (ret
== inode_state_will_create
) {
3585 * First check if any of the current inodes refs did
3586 * already create the dir.
3588 list_for_each_entry(cur2
, &sctx
->new_refs
, list
) {
3591 if (cur2
->dir
== cur
->dir
) {
3598 * If that did not happen, check if a previous inode
3599 * did already create the dir.
3602 ret
= did_create_dir(sctx
, cur
->dir
);
3606 ret
= send_create_inode(sctx
, cur
->dir
);
3613 * Check if this new ref would overwrite the first ref of
3614 * another unprocessed inode. If yes, orphanize the
3615 * overwritten inode. If we find an overwritten ref that is
3616 * not the first ref, simply unlink it.
3618 ret
= will_overwrite_ref(sctx
, cur
->dir
, cur
->dir_gen
,
3619 cur
->name
, cur
->name_len
,
3620 &ow_inode
, &ow_gen
);
3624 ret
= is_first_ref(sctx
->parent_root
,
3625 ow_inode
, cur
->dir
, cur
->name
,
3630 struct name_cache_entry
*nce
;
3632 ret
= orphanize_inode(sctx
, ow_inode
, ow_gen
,
3637 * Make sure we clear our orphanized inode's
3638 * name from the name cache. This is because the
3639 * inode ow_inode might be an ancestor of some
3640 * other inode that will be orphanized as well
3641 * later and has an inode number greater than
3642 * sctx->send_progress. We need to prevent
3643 * future name lookups from using the old name
3644 * and get instead the orphan name.
3646 nce
= name_cache_search(sctx
, ow_inode
, ow_gen
);
3648 name_cache_delete(sctx
, nce
);
3652 ret
= send_unlink(sctx
, cur
->full_path
);
3658 if (S_ISDIR(sctx
->cur_inode_mode
) && sctx
->parent_root
) {
3659 ret
= wait_for_dest_dir_move(sctx
, cur
, is_orphan
);
3668 if (S_ISDIR(sctx
->cur_inode_mode
) && sctx
->parent_root
&&
3670 ret
= wait_for_parent_move(sctx
, cur
, is_orphan
);
3680 * link/move the ref to the new place. If we have an orphan
3681 * inode, move it and update valid_path. If not, link or move
3682 * it depending on the inode mode.
3684 if (is_orphan
&& can_rename
) {
3685 ret
= send_rename(sctx
, valid_path
, cur
->full_path
);
3689 ret
= fs_path_copy(valid_path
, cur
->full_path
);
3692 } else if (can_rename
) {
3693 if (S_ISDIR(sctx
->cur_inode_mode
)) {
3695 * Dirs can't be linked, so move it. For moved
3696 * dirs, we always have one new and one deleted
3697 * ref. The deleted ref is ignored later.
3699 ret
= send_rename(sctx
, valid_path
,
3702 ret
= fs_path_copy(valid_path
,
3707 ret
= send_link(sctx
, cur
->full_path
,
3713 ret
= dup_ref(cur
, &check_dirs
);
3718 if (S_ISDIR(sctx
->cur_inode_mode
) && sctx
->cur_inode_deleted
) {
3720 * Check if we can already rmdir the directory. If not,
3721 * orphanize it. For every dir item inside that gets deleted
3722 * later, we do this check again and rmdir it then if possible.
3723 * See the use of check_dirs for more details.
3725 ret
= can_rmdir(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
,
3730 ret
= send_rmdir(sctx
, valid_path
);
3733 } else if (!is_orphan
) {
3734 ret
= orphanize_inode(sctx
, sctx
->cur_ino
,
3735 sctx
->cur_inode_gen
, valid_path
);
3741 list_for_each_entry(cur
, &sctx
->deleted_refs
, list
) {
3742 ret
= dup_ref(cur
, &check_dirs
);
3746 } else if (S_ISDIR(sctx
->cur_inode_mode
) &&
3747 !list_empty(&sctx
->deleted_refs
)) {
3749 * We have a moved dir. Add the old parent to check_dirs
3751 cur
= list_entry(sctx
->deleted_refs
.next
, struct recorded_ref
,
3753 ret
= dup_ref(cur
, &check_dirs
);
3756 } else if (!S_ISDIR(sctx
->cur_inode_mode
)) {
3758 * We have a non dir inode. Go through all deleted refs and
3759 * unlink them if they were not already overwritten by other
3762 list_for_each_entry(cur
, &sctx
->deleted_refs
, list
) {
3763 ret
= did_overwrite_ref(sctx
, cur
->dir
, cur
->dir_gen
,
3764 sctx
->cur_ino
, sctx
->cur_inode_gen
,
3765 cur
->name
, cur
->name_len
);
3769 ret
= send_unlink(sctx
, cur
->full_path
);
3773 ret
= dup_ref(cur
, &check_dirs
);
3778 * If the inode is still orphan, unlink the orphan. This may
3779 * happen when a previous inode did overwrite the first ref
3780 * of this inode and no new refs were added for the current
3781 * inode. Unlinking does not mean that the inode is deleted in
3782 * all cases. There may still be links to this inode in other
3786 ret
= send_unlink(sctx
, valid_path
);
3793 * We did collect all parent dirs where cur_inode was once located. We
3794 * now go through all these dirs and check if they are pending for
3795 * deletion and if it's finally possible to perform the rmdir now.
3796 * We also update the inode stats of the parent dirs here.
3798 list_for_each_entry(cur
, &check_dirs
, list
) {
3800 * In case we had refs into dirs that were not processed yet,
3801 * we don't need to do the utime and rmdir logic for these dirs.
3802 * The dir will be processed later.
3804 if (cur
->dir
> sctx
->cur_ino
)
3807 ret
= get_cur_inode_state(sctx
, cur
->dir
, cur
->dir_gen
);
3811 if (ret
== inode_state_did_create
||
3812 ret
== inode_state_no_change
) {
3813 /* TODO delayed utimes */
3814 ret
= send_utimes(sctx
, cur
->dir
, cur
->dir_gen
);
3817 } else if (ret
== inode_state_did_delete
&&
3818 cur
->dir
!= last_dir_ino_rm
) {
3819 ret
= can_rmdir(sctx
, cur
->dir
, cur
->dir_gen
,
3824 ret
= get_cur_path(sctx
, cur
->dir
,
3825 cur
->dir_gen
, valid_path
);
3828 ret
= send_rmdir(sctx
, valid_path
);
3831 last_dir_ino_rm
= cur
->dir
;
3839 __free_recorded_refs(&check_dirs
);
3840 free_recorded_refs(sctx
);
3841 fs_path_free(valid_path
);
3845 static int record_ref(struct btrfs_root
*root
, int num
, u64 dir
, int index
,
3846 struct fs_path
*name
, void *ctx
, struct list_head
*refs
)
3849 struct send_ctx
*sctx
= ctx
;
3853 p
= fs_path_alloc();
3857 ret
= get_inode_info(root
, dir
, NULL
, &gen
, NULL
, NULL
,
3862 ret
= get_cur_path(sctx
, dir
, gen
, p
);
3865 ret
= fs_path_add_path(p
, name
);
3869 ret
= __record_ref(refs
, dir
, gen
, p
);
3877 static int __record_new_ref(int num
, u64 dir
, int index
,
3878 struct fs_path
*name
,
3881 struct send_ctx
*sctx
= ctx
;
3882 return record_ref(sctx
->send_root
, num
, dir
, index
, name
,
3883 ctx
, &sctx
->new_refs
);
3887 static int __record_deleted_ref(int num
, u64 dir
, int index
,
3888 struct fs_path
*name
,
3891 struct send_ctx
*sctx
= ctx
;
3892 return record_ref(sctx
->parent_root
, num
, dir
, index
, name
,
3893 ctx
, &sctx
->deleted_refs
);
3896 static int record_new_ref(struct send_ctx
*sctx
)
3900 ret
= iterate_inode_ref(sctx
->send_root
, sctx
->left_path
,
3901 sctx
->cmp_key
, 0, __record_new_ref
, sctx
);
3910 static int record_deleted_ref(struct send_ctx
*sctx
)
3914 ret
= iterate_inode_ref(sctx
->parent_root
, sctx
->right_path
,
3915 sctx
->cmp_key
, 0, __record_deleted_ref
, sctx
);
3924 struct find_ref_ctx
{
3927 struct btrfs_root
*root
;
3928 struct fs_path
*name
;
3932 static int __find_iref(int num
, u64 dir
, int index
,
3933 struct fs_path
*name
,
3936 struct find_ref_ctx
*ctx
= ctx_
;
3940 if (dir
== ctx
->dir
&& fs_path_len(name
) == fs_path_len(ctx
->name
) &&
3941 strncmp(name
->start
, ctx
->name
->start
, fs_path_len(name
)) == 0) {
3943 * To avoid doing extra lookups we'll only do this if everything
3946 ret
= get_inode_info(ctx
->root
, dir
, NULL
, &dir_gen
, NULL
,
3950 if (dir_gen
!= ctx
->dir_gen
)
3952 ctx
->found_idx
= num
;
3958 static int find_iref(struct btrfs_root
*root
,
3959 struct btrfs_path
*path
,
3960 struct btrfs_key
*key
,
3961 u64 dir
, u64 dir_gen
, struct fs_path
*name
)
3964 struct find_ref_ctx ctx
;
3968 ctx
.dir_gen
= dir_gen
;
3972 ret
= iterate_inode_ref(root
, path
, key
, 0, __find_iref
, &ctx
);
3976 if (ctx
.found_idx
== -1)
3979 return ctx
.found_idx
;
3982 static int __record_changed_new_ref(int num
, u64 dir
, int index
,
3983 struct fs_path
*name
,
3988 struct send_ctx
*sctx
= ctx
;
3990 ret
= get_inode_info(sctx
->send_root
, dir
, NULL
, &dir_gen
, NULL
,
3995 ret
= find_iref(sctx
->parent_root
, sctx
->right_path
,
3996 sctx
->cmp_key
, dir
, dir_gen
, name
);
3998 ret
= __record_new_ref(num
, dir
, index
, name
, sctx
);
4005 static int __record_changed_deleted_ref(int num
, u64 dir
, int index
,
4006 struct fs_path
*name
,
4011 struct send_ctx
*sctx
= ctx
;
4013 ret
= get_inode_info(sctx
->parent_root
, dir
, NULL
, &dir_gen
, NULL
,
4018 ret
= find_iref(sctx
->send_root
, sctx
->left_path
, sctx
->cmp_key
,
4019 dir
, dir_gen
, name
);
4021 ret
= __record_deleted_ref(num
, dir
, index
, name
, sctx
);
4028 static int record_changed_ref(struct send_ctx
*sctx
)
4032 ret
= iterate_inode_ref(sctx
->send_root
, sctx
->left_path
,
4033 sctx
->cmp_key
, 0, __record_changed_new_ref
, sctx
);
4036 ret
= iterate_inode_ref(sctx
->parent_root
, sctx
->right_path
,
4037 sctx
->cmp_key
, 0, __record_changed_deleted_ref
, sctx
);
4047 * Record and process all refs at once. Needed when an inode changes the
4048 * generation number, which means that it was deleted and recreated.
4050 static int process_all_refs(struct send_ctx
*sctx
,
4051 enum btrfs_compare_tree_result cmd
)
4054 struct btrfs_root
*root
;
4055 struct btrfs_path
*path
;
4056 struct btrfs_key key
;
4057 struct btrfs_key found_key
;
4058 struct extent_buffer
*eb
;
4060 iterate_inode_ref_t cb
;
4061 int pending_move
= 0;
4063 path
= alloc_path_for_send();
4067 if (cmd
== BTRFS_COMPARE_TREE_NEW
) {
4068 root
= sctx
->send_root
;
4069 cb
= __record_new_ref
;
4070 } else if (cmd
== BTRFS_COMPARE_TREE_DELETED
) {
4071 root
= sctx
->parent_root
;
4072 cb
= __record_deleted_ref
;
4074 btrfs_err(sctx
->send_root
->fs_info
,
4075 "Wrong command %d in process_all_refs", cmd
);
4080 key
.objectid
= sctx
->cmp_key
->objectid
;
4081 key
.type
= BTRFS_INODE_REF_KEY
;
4083 ret
= btrfs_search_slot(NULL
, root
, &key
, path
, 0, 0);
4088 eb
= path
->nodes
[0];
4089 slot
= path
->slots
[0];
4090 if (slot
>= btrfs_header_nritems(eb
)) {
4091 ret
= btrfs_next_leaf(root
, path
);
4099 btrfs_item_key_to_cpu(eb
, &found_key
, slot
);
4101 if (found_key
.objectid
!= key
.objectid
||
4102 (found_key
.type
!= BTRFS_INODE_REF_KEY
&&
4103 found_key
.type
!= BTRFS_INODE_EXTREF_KEY
))
4106 ret
= iterate_inode_ref(root
, path
, &found_key
, 0, cb
, sctx
);
4112 btrfs_release_path(path
);
4114 ret
= process_recorded_refs(sctx
, &pending_move
);
4115 /* Only applicable to an incremental send. */
4116 ASSERT(pending_move
== 0);
4119 btrfs_free_path(path
);
4123 static int send_set_xattr(struct send_ctx
*sctx
,
4124 struct fs_path
*path
,
4125 const char *name
, int name_len
,
4126 const char *data
, int data_len
)
4130 ret
= begin_cmd(sctx
, BTRFS_SEND_C_SET_XATTR
);
4134 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, path
);
4135 TLV_PUT_STRING(sctx
, BTRFS_SEND_A_XATTR_NAME
, name
, name_len
);
4136 TLV_PUT(sctx
, BTRFS_SEND_A_XATTR_DATA
, data
, data_len
);
4138 ret
= send_cmd(sctx
);
4145 static int send_remove_xattr(struct send_ctx
*sctx
,
4146 struct fs_path
*path
,
4147 const char *name
, int name_len
)
4151 ret
= begin_cmd(sctx
, BTRFS_SEND_C_REMOVE_XATTR
);
4155 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, path
);
4156 TLV_PUT_STRING(sctx
, BTRFS_SEND_A_XATTR_NAME
, name
, name_len
);
4158 ret
= send_cmd(sctx
);
4165 static int __process_new_xattr(int num
, struct btrfs_key
*di_key
,
4166 const char *name
, int name_len
,
4167 const char *data
, int data_len
,
4171 struct send_ctx
*sctx
= ctx
;
4173 posix_acl_xattr_header dummy_acl
;
4175 p
= fs_path_alloc();
4180 * This hack is needed because empty acl's are stored as zero byte
4181 * data in xattrs. Problem with that is, that receiving these zero byte
4182 * acl's will fail later. To fix this, we send a dummy acl list that
4183 * only contains the version number and no entries.
4185 if (!strncmp(name
, XATTR_NAME_POSIX_ACL_ACCESS
, name_len
) ||
4186 !strncmp(name
, XATTR_NAME_POSIX_ACL_DEFAULT
, name_len
)) {
4187 if (data_len
== 0) {
4188 dummy_acl
.a_version
=
4189 cpu_to_le32(POSIX_ACL_XATTR_VERSION
);
4190 data
= (char *)&dummy_acl
;
4191 data_len
= sizeof(dummy_acl
);
4195 ret
= get_cur_path(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
, p
);
4199 ret
= send_set_xattr(sctx
, p
, name
, name_len
, data
, data_len
);
4206 static int __process_deleted_xattr(int num
, struct btrfs_key
*di_key
,
4207 const char *name
, int name_len
,
4208 const char *data
, int data_len
,
4212 struct send_ctx
*sctx
= ctx
;
4215 p
= fs_path_alloc();
4219 ret
= get_cur_path(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
, p
);
4223 ret
= send_remove_xattr(sctx
, p
, name
, name_len
);
4230 static int process_new_xattr(struct send_ctx
*sctx
)
4234 ret
= iterate_dir_item(sctx
->send_root
, sctx
->left_path
,
4235 sctx
->cmp_key
, __process_new_xattr
, sctx
);
4240 static int process_deleted_xattr(struct send_ctx
*sctx
)
4244 ret
= iterate_dir_item(sctx
->parent_root
, sctx
->right_path
,
4245 sctx
->cmp_key
, __process_deleted_xattr
, sctx
);
4250 struct find_xattr_ctx
{
4258 static int __find_xattr(int num
, struct btrfs_key
*di_key
,
4259 const char *name
, int name_len
,
4260 const char *data
, int data_len
,
4261 u8 type
, void *vctx
)
4263 struct find_xattr_ctx
*ctx
= vctx
;
4265 if (name_len
== ctx
->name_len
&&
4266 strncmp(name
, ctx
->name
, name_len
) == 0) {
4267 ctx
->found_idx
= num
;
4268 ctx
->found_data_len
= data_len
;
4269 ctx
->found_data
= kmemdup(data
, data_len
, GFP_NOFS
);
4270 if (!ctx
->found_data
)
4277 static int find_xattr(struct btrfs_root
*root
,
4278 struct btrfs_path
*path
,
4279 struct btrfs_key
*key
,
4280 const char *name
, int name_len
,
4281 char **data
, int *data_len
)
4284 struct find_xattr_ctx ctx
;
4287 ctx
.name_len
= name_len
;
4289 ctx
.found_data
= NULL
;
4290 ctx
.found_data_len
= 0;
4292 ret
= iterate_dir_item(root
, path
, key
, __find_xattr
, &ctx
);
4296 if (ctx
.found_idx
== -1)
4299 *data
= ctx
.found_data
;
4300 *data_len
= ctx
.found_data_len
;
4302 kfree(ctx
.found_data
);
4304 return ctx
.found_idx
;
4308 static int __process_changed_new_xattr(int num
, struct btrfs_key
*di_key
,
4309 const char *name
, int name_len
,
4310 const char *data
, int data_len
,
4314 struct send_ctx
*sctx
= ctx
;
4315 char *found_data
= NULL
;
4316 int found_data_len
= 0;
4318 ret
= find_xattr(sctx
->parent_root
, sctx
->right_path
,
4319 sctx
->cmp_key
, name
, name_len
, &found_data
,
4321 if (ret
== -ENOENT
) {
4322 ret
= __process_new_xattr(num
, di_key
, name
, name_len
, data
,
4323 data_len
, type
, ctx
);
4324 } else if (ret
>= 0) {
4325 if (data_len
!= found_data_len
||
4326 memcmp(data
, found_data
, data_len
)) {
4327 ret
= __process_new_xattr(num
, di_key
, name
, name_len
,
4328 data
, data_len
, type
, ctx
);
4338 static int __process_changed_deleted_xattr(int num
, struct btrfs_key
*di_key
,
4339 const char *name
, int name_len
,
4340 const char *data
, int data_len
,
4344 struct send_ctx
*sctx
= ctx
;
4346 ret
= find_xattr(sctx
->send_root
, sctx
->left_path
, sctx
->cmp_key
,
4347 name
, name_len
, NULL
, NULL
);
4349 ret
= __process_deleted_xattr(num
, di_key
, name
, name_len
, data
,
4350 data_len
, type
, ctx
);
4357 static int process_changed_xattr(struct send_ctx
*sctx
)
4361 ret
= iterate_dir_item(sctx
->send_root
, sctx
->left_path
,
4362 sctx
->cmp_key
, __process_changed_new_xattr
, sctx
);
4365 ret
= iterate_dir_item(sctx
->parent_root
, sctx
->right_path
,
4366 sctx
->cmp_key
, __process_changed_deleted_xattr
, sctx
);
4372 static int process_all_new_xattrs(struct send_ctx
*sctx
)
4375 struct btrfs_root
*root
;
4376 struct btrfs_path
*path
;
4377 struct btrfs_key key
;
4378 struct btrfs_key found_key
;
4379 struct extent_buffer
*eb
;
4382 path
= alloc_path_for_send();
4386 root
= sctx
->send_root
;
4388 key
.objectid
= sctx
->cmp_key
->objectid
;
4389 key
.type
= BTRFS_XATTR_ITEM_KEY
;
4391 ret
= btrfs_search_slot(NULL
, root
, &key
, path
, 0, 0);
4396 eb
= path
->nodes
[0];
4397 slot
= path
->slots
[0];
4398 if (slot
>= btrfs_header_nritems(eb
)) {
4399 ret
= btrfs_next_leaf(root
, path
);
4402 } else if (ret
> 0) {
4409 btrfs_item_key_to_cpu(eb
, &found_key
, slot
);
4410 if (found_key
.objectid
!= key
.objectid
||
4411 found_key
.type
!= key
.type
) {
4416 ret
= iterate_dir_item(root
, path
, &found_key
,
4417 __process_new_xattr
, sctx
);
4425 btrfs_free_path(path
);
4429 static ssize_t
fill_read_buf(struct send_ctx
*sctx
, u64 offset
, u32 len
)
4431 struct btrfs_root
*root
= sctx
->send_root
;
4432 struct btrfs_fs_info
*fs_info
= root
->fs_info
;
4433 struct inode
*inode
;
4436 struct btrfs_key key
;
4437 pgoff_t index
= offset
>> PAGE_CACHE_SHIFT
;
4439 unsigned pg_offset
= offset
& ~PAGE_CACHE_MASK
;
4442 key
.objectid
= sctx
->cur_ino
;
4443 key
.type
= BTRFS_INODE_ITEM_KEY
;
4446 inode
= btrfs_iget(fs_info
->sb
, &key
, root
, NULL
);
4448 return PTR_ERR(inode
);
4450 if (offset
+ len
> i_size_read(inode
)) {
4451 if (offset
> i_size_read(inode
))
4454 len
= offset
- i_size_read(inode
);
4459 last_index
= (offset
+ len
- 1) >> PAGE_CACHE_SHIFT
;
4461 /* initial readahead */
4462 memset(&sctx
->ra
, 0, sizeof(struct file_ra_state
));
4463 file_ra_state_init(&sctx
->ra
, inode
->i_mapping
);
4464 btrfs_force_ra(inode
->i_mapping
, &sctx
->ra
, NULL
, index
,
4465 last_index
- index
+ 1);
4467 while (index
<= last_index
) {
4468 unsigned cur_len
= min_t(unsigned, len
,
4469 PAGE_CACHE_SIZE
- pg_offset
);
4470 page
= find_or_create_page(inode
->i_mapping
, index
, GFP_NOFS
);
4476 if (!PageUptodate(page
)) {
4477 btrfs_readpage(NULL
, page
);
4479 if (!PageUptodate(page
)) {
4481 page_cache_release(page
);
4488 memcpy(sctx
->read_buf
+ ret
, addr
+ pg_offset
, cur_len
);
4491 page_cache_release(page
);
4503 * Read some bytes from the current inode/file and send a write command to
4506 static int send_write(struct send_ctx
*sctx
, u64 offset
, u32 len
)
4510 ssize_t num_read
= 0;
4512 p
= fs_path_alloc();
4516 verbose_printk("btrfs: send_write offset=%llu, len=%d\n", offset
, len
);
4518 num_read
= fill_read_buf(sctx
, offset
, len
);
4519 if (num_read
<= 0) {
4525 ret
= begin_cmd(sctx
, BTRFS_SEND_C_WRITE
);
4529 ret
= get_cur_path(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
, p
);
4533 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
4534 TLV_PUT_U64(sctx
, BTRFS_SEND_A_FILE_OFFSET
, offset
);
4535 TLV_PUT(sctx
, BTRFS_SEND_A_DATA
, sctx
->read_buf
, num_read
);
4537 ret
= send_cmd(sctx
);
4548 * Send a clone command to user space.
4550 static int send_clone(struct send_ctx
*sctx
,
4551 u64 offset
, u32 len
,
4552 struct clone_root
*clone_root
)
4558 verbose_printk("btrfs: send_clone offset=%llu, len=%d, clone_root=%llu, "
4559 "clone_inode=%llu, clone_offset=%llu\n", offset
, len
,
4560 clone_root
->root
->objectid
, clone_root
->ino
,
4561 clone_root
->offset
);
4563 p
= fs_path_alloc();
4567 ret
= begin_cmd(sctx
, BTRFS_SEND_C_CLONE
);
4571 ret
= get_cur_path(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
, p
);
4575 TLV_PUT_U64(sctx
, BTRFS_SEND_A_FILE_OFFSET
, offset
);
4576 TLV_PUT_U64(sctx
, BTRFS_SEND_A_CLONE_LEN
, len
);
4577 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
4579 if (clone_root
->root
== sctx
->send_root
) {
4580 ret
= get_inode_info(sctx
->send_root
, clone_root
->ino
, NULL
,
4581 &gen
, NULL
, NULL
, NULL
, NULL
);
4584 ret
= get_cur_path(sctx
, clone_root
->ino
, gen
, p
);
4586 ret
= get_inode_path(clone_root
->root
, clone_root
->ino
, p
);
4592 * If the parent we're using has a received_uuid set then use that as
4593 * our clone source as that is what we will look for when doing a
4596 * This covers the case that we create a snapshot off of a received
4597 * subvolume and then use that as the parent and try to receive on a
4600 if (!btrfs_is_empty_uuid(clone_root
->root
->root_item
.received_uuid
))
4601 TLV_PUT_UUID(sctx
, BTRFS_SEND_A_CLONE_UUID
,
4602 clone_root
->root
->root_item
.received_uuid
);
4604 TLV_PUT_UUID(sctx
, BTRFS_SEND_A_CLONE_UUID
,
4605 clone_root
->root
->root_item
.uuid
);
4606 TLV_PUT_U64(sctx
, BTRFS_SEND_A_CLONE_CTRANSID
,
4607 le64_to_cpu(clone_root
->root
->root_item
.ctransid
));
4608 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_CLONE_PATH
, p
);
4609 TLV_PUT_U64(sctx
, BTRFS_SEND_A_CLONE_OFFSET
,
4610 clone_root
->offset
);
4612 ret
= send_cmd(sctx
);
4621 * Send an update extent command to user space.
4623 static int send_update_extent(struct send_ctx
*sctx
,
4624 u64 offset
, u32 len
)
4629 p
= fs_path_alloc();
4633 ret
= begin_cmd(sctx
, BTRFS_SEND_C_UPDATE_EXTENT
);
4637 ret
= get_cur_path(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
, p
);
4641 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
4642 TLV_PUT_U64(sctx
, BTRFS_SEND_A_FILE_OFFSET
, offset
);
4643 TLV_PUT_U64(sctx
, BTRFS_SEND_A_SIZE
, len
);
4645 ret
= send_cmd(sctx
);
4653 static int send_hole(struct send_ctx
*sctx
, u64 end
)
4655 struct fs_path
*p
= NULL
;
4656 u64 offset
= sctx
->cur_inode_last_extent
;
4660 p
= fs_path_alloc();
4663 ret
= get_cur_path(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
, p
);
4665 goto tlv_put_failure
;
4666 memset(sctx
->read_buf
, 0, BTRFS_SEND_READ_SIZE
);
4667 while (offset
< end
) {
4668 len
= min_t(u64
, end
- offset
, BTRFS_SEND_READ_SIZE
);
4670 ret
= begin_cmd(sctx
, BTRFS_SEND_C_WRITE
);
4673 TLV_PUT_PATH(sctx
, BTRFS_SEND_A_PATH
, p
);
4674 TLV_PUT_U64(sctx
, BTRFS_SEND_A_FILE_OFFSET
, offset
);
4675 TLV_PUT(sctx
, BTRFS_SEND_A_DATA
, sctx
->read_buf
, len
);
4676 ret
= send_cmd(sctx
);
4686 static int send_extent_data(struct send_ctx
*sctx
,
4692 if (sctx
->flags
& BTRFS_SEND_FLAG_NO_FILE_DATA
)
4693 return send_update_extent(sctx
, offset
, len
);
4695 while (sent
< len
) {
4696 u64 size
= len
- sent
;
4699 if (size
> BTRFS_SEND_READ_SIZE
)
4700 size
= BTRFS_SEND_READ_SIZE
;
4701 ret
= send_write(sctx
, offset
+ sent
, size
);
4711 static int clone_range(struct send_ctx
*sctx
,
4712 struct clone_root
*clone_root
,
4713 const u64 disk_byte
,
4718 struct btrfs_path
*path
;
4719 struct btrfs_key key
;
4722 path
= alloc_path_for_send();
4727 * We can't send a clone operation for the entire range if we find
4728 * extent items in the respective range in the source file that
4729 * refer to different extents or if we find holes.
4730 * So check for that and do a mix of clone and regular write/copy
4731 * operations if needed.
4735 * mkfs.btrfs -f /dev/sda
4736 * mount /dev/sda /mnt
4737 * xfs_io -f -c "pwrite -S 0xaa 0K 100K" /mnt/foo
4738 * cp --reflink=always /mnt/foo /mnt/bar
4739 * xfs_io -c "pwrite -S 0xbb 50K 50K" /mnt/foo
4740 * btrfs subvolume snapshot -r /mnt /mnt/snap
4742 * If when we send the snapshot and we are processing file bar (which
4743 * has a higher inode number than foo) we blindly send a clone operation
4744 * for the [0, 100K[ range from foo to bar, the receiver ends up getting
4745 * a file bar that matches the content of file foo - iow, doesn't match
4746 * the content from bar in the original filesystem.
4748 key
.objectid
= clone_root
->ino
;
4749 key
.type
= BTRFS_EXTENT_DATA_KEY
;
4750 key
.offset
= clone_root
->offset
;
4751 ret
= btrfs_search_slot(NULL
, clone_root
->root
, &key
, path
, 0, 0);
4754 if (ret
> 0 && path
->slots
[0] > 0) {
4755 btrfs_item_key_to_cpu(path
->nodes
[0], &key
, path
->slots
[0] - 1);
4756 if (key
.objectid
== clone_root
->ino
&&
4757 key
.type
== BTRFS_EXTENT_DATA_KEY
)
4762 struct extent_buffer
*leaf
= path
->nodes
[0];
4763 int slot
= path
->slots
[0];
4764 struct btrfs_file_extent_item
*ei
;
4769 if (slot
>= btrfs_header_nritems(leaf
)) {
4770 ret
= btrfs_next_leaf(clone_root
->root
, path
);
4778 btrfs_item_key_to_cpu(leaf
, &key
, slot
);
4781 * We might have an implicit trailing hole (NO_HOLES feature
4782 * enabled). We deal with it after leaving this loop.
4784 if (key
.objectid
!= clone_root
->ino
||
4785 key
.type
!= BTRFS_EXTENT_DATA_KEY
)
4788 ei
= btrfs_item_ptr(leaf
, slot
, struct btrfs_file_extent_item
);
4789 type
= btrfs_file_extent_type(leaf
, ei
);
4790 if (type
== BTRFS_FILE_EXTENT_INLINE
) {
4791 ext_len
= btrfs_file_extent_inline_len(leaf
, slot
, ei
);
4792 ext_len
= PAGE_CACHE_ALIGN(ext_len
);
4794 ext_len
= btrfs_file_extent_num_bytes(leaf
, ei
);
4797 if (key
.offset
+ ext_len
<= clone_root
->offset
)
4800 if (key
.offset
> clone_root
->offset
) {
4801 /* Implicit hole, NO_HOLES feature enabled. */
4802 u64 hole_len
= key
.offset
- clone_root
->offset
;
4806 ret
= send_extent_data(sctx
, offset
, hole_len
);
4814 clone_root
->offset
+= hole_len
;
4815 data_offset
+= hole_len
;
4818 if (key
.offset
>= clone_root
->offset
+ len
)
4821 clone_len
= min_t(u64
, ext_len
, len
);
4823 if (btrfs_file_extent_disk_bytenr(leaf
, ei
) == disk_byte
&&
4824 btrfs_file_extent_offset(leaf
, ei
) == data_offset
)
4825 ret
= send_clone(sctx
, offset
, clone_len
, clone_root
);
4827 ret
= send_extent_data(sctx
, offset
, clone_len
);
4835 offset
+= clone_len
;
4836 clone_root
->offset
+= clone_len
;
4837 data_offset
+= clone_len
;
4843 ret
= send_extent_data(sctx
, offset
, len
);
4847 btrfs_free_path(path
);
4851 static int send_write_or_clone(struct send_ctx
*sctx
,
4852 struct btrfs_path
*path
,
4853 struct btrfs_key
*key
,
4854 struct clone_root
*clone_root
)
4857 struct btrfs_file_extent_item
*ei
;
4858 u64 offset
= key
->offset
;
4861 u64 bs
= sctx
->send_root
->fs_info
->sb
->s_blocksize
;
4863 ei
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
4864 struct btrfs_file_extent_item
);
4865 type
= btrfs_file_extent_type(path
->nodes
[0], ei
);
4866 if (type
== BTRFS_FILE_EXTENT_INLINE
) {
4867 len
= btrfs_file_extent_inline_len(path
->nodes
[0],
4868 path
->slots
[0], ei
);
4870 * it is possible the inline item won't cover the whole page,
4871 * but there may be items after this page. Make
4872 * sure to send the whole thing
4874 len
= PAGE_CACHE_ALIGN(len
);
4876 len
= btrfs_file_extent_num_bytes(path
->nodes
[0], ei
);
4879 if (offset
+ len
> sctx
->cur_inode_size
)
4880 len
= sctx
->cur_inode_size
- offset
;
4886 if (clone_root
&& IS_ALIGNED(offset
+ len
, bs
)) {
4890 disk_byte
= btrfs_file_extent_disk_bytenr(path
->nodes
[0], ei
);
4891 data_offset
= btrfs_file_extent_offset(path
->nodes
[0], ei
);
4892 ret
= clone_range(sctx
, clone_root
, disk_byte
, data_offset
,
4895 ret
= send_extent_data(sctx
, offset
, len
);
4901 static int is_extent_unchanged(struct send_ctx
*sctx
,
4902 struct btrfs_path
*left_path
,
4903 struct btrfs_key
*ekey
)
4906 struct btrfs_key key
;
4907 struct btrfs_path
*path
= NULL
;
4908 struct extent_buffer
*eb
;
4910 struct btrfs_key found_key
;
4911 struct btrfs_file_extent_item
*ei
;
4916 u64 left_offset_fixed
;
4924 path
= alloc_path_for_send();
4928 eb
= left_path
->nodes
[0];
4929 slot
= left_path
->slots
[0];
4930 ei
= btrfs_item_ptr(eb
, slot
, struct btrfs_file_extent_item
);
4931 left_type
= btrfs_file_extent_type(eb
, ei
);
4933 if (left_type
!= BTRFS_FILE_EXTENT_REG
) {
4937 left_disknr
= btrfs_file_extent_disk_bytenr(eb
, ei
);
4938 left_len
= btrfs_file_extent_num_bytes(eb
, ei
);
4939 left_offset
= btrfs_file_extent_offset(eb
, ei
);
4940 left_gen
= btrfs_file_extent_generation(eb
, ei
);
4943 * Following comments will refer to these graphics. L is the left
4944 * extents which we are checking at the moment. 1-8 are the right
4945 * extents that we iterate.
4948 * |-1-|-2a-|-3-|-4-|-5-|-6-|
4951 * |--1--|-2b-|...(same as above)
4953 * Alternative situation. Happens on files where extents got split.
4955 * |-----------7-----------|-6-|
4957 * Alternative situation. Happens on files which got larger.
4960 * Nothing follows after 8.
4963 key
.objectid
= ekey
->objectid
;
4964 key
.type
= BTRFS_EXTENT_DATA_KEY
;
4965 key
.offset
= ekey
->offset
;
4966 ret
= btrfs_search_slot_for_read(sctx
->parent_root
, &key
, path
, 0, 0);
4975 * Handle special case where the right side has no extents at all.
4977 eb
= path
->nodes
[0];
4978 slot
= path
->slots
[0];
4979 btrfs_item_key_to_cpu(eb
, &found_key
, slot
);
4980 if (found_key
.objectid
!= key
.objectid
||
4981 found_key
.type
!= key
.type
) {
4982 /* If we're a hole then just pretend nothing changed */
4983 ret
= (left_disknr
) ? 0 : 1;
4988 * We're now on 2a, 2b or 7.
4991 while (key
.offset
< ekey
->offset
+ left_len
) {
4992 ei
= btrfs_item_ptr(eb
, slot
, struct btrfs_file_extent_item
);
4993 right_type
= btrfs_file_extent_type(eb
, ei
);
4994 if (right_type
!= BTRFS_FILE_EXTENT_REG
) {
4999 right_disknr
= btrfs_file_extent_disk_bytenr(eb
, ei
);
5000 right_len
= btrfs_file_extent_num_bytes(eb
, ei
);
5001 right_offset
= btrfs_file_extent_offset(eb
, ei
);
5002 right_gen
= btrfs_file_extent_generation(eb
, ei
);
5005 * Are we at extent 8? If yes, we know the extent is changed.
5006 * This may only happen on the first iteration.
5008 if (found_key
.offset
+ right_len
<= ekey
->offset
) {
5009 /* If we're a hole just pretend nothing changed */
5010 ret
= (left_disknr
) ? 0 : 1;
5014 left_offset_fixed
= left_offset
;
5015 if (key
.offset
< ekey
->offset
) {
5016 /* Fix the right offset for 2a and 7. */
5017 right_offset
+= ekey
->offset
- key
.offset
;
5019 /* Fix the left offset for all behind 2a and 2b */
5020 left_offset_fixed
+= key
.offset
- ekey
->offset
;
5024 * Check if we have the same extent.
5026 if (left_disknr
!= right_disknr
||
5027 left_offset_fixed
!= right_offset
||
5028 left_gen
!= right_gen
) {
5034 * Go to the next extent.
5036 ret
= btrfs_next_item(sctx
->parent_root
, path
);
5040 eb
= path
->nodes
[0];
5041 slot
= path
->slots
[0];
5042 btrfs_item_key_to_cpu(eb
, &found_key
, slot
);
5044 if (ret
|| found_key
.objectid
!= key
.objectid
||
5045 found_key
.type
!= key
.type
) {
5046 key
.offset
+= right_len
;
5049 if (found_key
.offset
!= key
.offset
+ right_len
) {
5057 * We're now behind the left extent (treat as unchanged) or at the end
5058 * of the right side (treat as changed).
5060 if (key
.offset
>= ekey
->offset
+ left_len
)
5067 btrfs_free_path(path
);
5071 static int get_last_extent(struct send_ctx
*sctx
, u64 offset
)
5073 struct btrfs_path
*path
;
5074 struct btrfs_root
*root
= sctx
->send_root
;
5075 struct btrfs_file_extent_item
*fi
;
5076 struct btrfs_key key
;
5081 path
= alloc_path_for_send();
5085 sctx
->cur_inode_last_extent
= 0;
5087 key
.objectid
= sctx
->cur_ino
;
5088 key
.type
= BTRFS_EXTENT_DATA_KEY
;
5089 key
.offset
= offset
;
5090 ret
= btrfs_search_slot_for_read(root
, &key
, path
, 0, 1);
5094 btrfs_item_key_to_cpu(path
->nodes
[0], &key
, path
->slots
[0]);
5095 if (key
.objectid
!= sctx
->cur_ino
|| key
.type
!= BTRFS_EXTENT_DATA_KEY
)
5098 fi
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
5099 struct btrfs_file_extent_item
);
5100 type
= btrfs_file_extent_type(path
->nodes
[0], fi
);
5101 if (type
== BTRFS_FILE_EXTENT_INLINE
) {
5102 u64 size
= btrfs_file_extent_inline_len(path
->nodes
[0],
5103 path
->slots
[0], fi
);
5104 extent_end
= ALIGN(key
.offset
+ size
,
5105 sctx
->send_root
->sectorsize
);
5107 extent_end
= key
.offset
+
5108 btrfs_file_extent_num_bytes(path
->nodes
[0], fi
);
5110 sctx
->cur_inode_last_extent
= extent_end
;
5112 btrfs_free_path(path
);
5116 static int maybe_send_hole(struct send_ctx
*sctx
, struct btrfs_path
*path
,
5117 struct btrfs_key
*key
)
5119 struct btrfs_file_extent_item
*fi
;
5124 if (sctx
->cur_ino
!= key
->objectid
|| !need_send_hole(sctx
))
5127 if (sctx
->cur_inode_last_extent
== (u64
)-1) {
5128 ret
= get_last_extent(sctx
, key
->offset
- 1);
5133 fi
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
5134 struct btrfs_file_extent_item
);
5135 type
= btrfs_file_extent_type(path
->nodes
[0], fi
);
5136 if (type
== BTRFS_FILE_EXTENT_INLINE
) {
5137 u64 size
= btrfs_file_extent_inline_len(path
->nodes
[0],
5138 path
->slots
[0], fi
);
5139 extent_end
= ALIGN(key
->offset
+ size
,
5140 sctx
->send_root
->sectorsize
);
5142 extent_end
= key
->offset
+
5143 btrfs_file_extent_num_bytes(path
->nodes
[0], fi
);
5146 if (path
->slots
[0] == 0 &&
5147 sctx
->cur_inode_last_extent
< key
->offset
) {
5149 * We might have skipped entire leafs that contained only
5150 * file extent items for our current inode. These leafs have
5151 * a generation number smaller (older) than the one in the
5152 * current leaf and the leaf our last extent came from, and
5153 * are located between these 2 leafs.
5155 ret
= get_last_extent(sctx
, key
->offset
- 1);
5160 if (sctx
->cur_inode_last_extent
< key
->offset
)
5161 ret
= send_hole(sctx
, key
->offset
);
5162 sctx
->cur_inode_last_extent
= extent_end
;
5166 static int process_extent(struct send_ctx
*sctx
,
5167 struct btrfs_path
*path
,
5168 struct btrfs_key
*key
)
5170 struct clone_root
*found_clone
= NULL
;
5173 if (S_ISLNK(sctx
->cur_inode_mode
))
5176 if (sctx
->parent_root
&& !sctx
->cur_inode_new
) {
5177 ret
= is_extent_unchanged(sctx
, path
, key
);
5185 struct btrfs_file_extent_item
*ei
;
5188 ei
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
5189 struct btrfs_file_extent_item
);
5190 type
= btrfs_file_extent_type(path
->nodes
[0], ei
);
5191 if (type
== BTRFS_FILE_EXTENT_PREALLOC
||
5192 type
== BTRFS_FILE_EXTENT_REG
) {
5194 * The send spec does not have a prealloc command yet,
5195 * so just leave a hole for prealloc'ed extents until
5196 * we have enough commands queued up to justify rev'ing
5199 if (type
== BTRFS_FILE_EXTENT_PREALLOC
) {
5204 /* Have a hole, just skip it. */
5205 if (btrfs_file_extent_disk_bytenr(path
->nodes
[0], ei
) == 0) {
5212 ret
= find_extent_clone(sctx
, path
, key
->objectid
, key
->offset
,
5213 sctx
->cur_inode_size
, &found_clone
);
5214 if (ret
!= -ENOENT
&& ret
< 0)
5217 ret
= send_write_or_clone(sctx
, path
, key
, found_clone
);
5221 ret
= maybe_send_hole(sctx
, path
, key
);
5226 static int process_all_extents(struct send_ctx
*sctx
)
5229 struct btrfs_root
*root
;
5230 struct btrfs_path
*path
;
5231 struct btrfs_key key
;
5232 struct btrfs_key found_key
;
5233 struct extent_buffer
*eb
;
5236 root
= sctx
->send_root
;
5237 path
= alloc_path_for_send();
5241 key
.objectid
= sctx
->cmp_key
->objectid
;
5242 key
.type
= BTRFS_EXTENT_DATA_KEY
;
5244 ret
= btrfs_search_slot(NULL
, root
, &key
, path
, 0, 0);
5249 eb
= path
->nodes
[0];
5250 slot
= path
->slots
[0];
5252 if (slot
>= btrfs_header_nritems(eb
)) {
5253 ret
= btrfs_next_leaf(root
, path
);
5256 } else if (ret
> 0) {
5263 btrfs_item_key_to_cpu(eb
, &found_key
, slot
);
5265 if (found_key
.objectid
!= key
.objectid
||
5266 found_key
.type
!= key
.type
) {
5271 ret
= process_extent(sctx
, path
, &found_key
);
5279 btrfs_free_path(path
);
5283 static int process_recorded_refs_if_needed(struct send_ctx
*sctx
, int at_end
,
5285 int *refs_processed
)
5289 if (sctx
->cur_ino
== 0)
5291 if (!at_end
&& sctx
->cur_ino
== sctx
->cmp_key
->objectid
&&
5292 sctx
->cmp_key
->type
<= BTRFS_INODE_EXTREF_KEY
)
5294 if (list_empty(&sctx
->new_refs
) && list_empty(&sctx
->deleted_refs
))
5297 ret
= process_recorded_refs(sctx
, pending_move
);
5301 *refs_processed
= 1;
5306 static int finish_inode_if_needed(struct send_ctx
*sctx
, int at_end
)
5317 int pending_move
= 0;
5318 int refs_processed
= 0;
5320 ret
= process_recorded_refs_if_needed(sctx
, at_end
, &pending_move
,
5326 * We have processed the refs and thus need to advance send_progress.
5327 * Now, calls to get_cur_xxx will take the updated refs of the current
5328 * inode into account.
5330 * On the other hand, if our current inode is a directory and couldn't
5331 * be moved/renamed because its parent was renamed/moved too and it has
5332 * a higher inode number, we can only move/rename our current inode
5333 * after we moved/renamed its parent. Therefore in this case operate on
5334 * the old path (pre move/rename) of our current inode, and the
5335 * move/rename will be performed later.
5337 if (refs_processed
&& !pending_move
)
5338 sctx
->send_progress
= sctx
->cur_ino
+ 1;
5340 if (sctx
->cur_ino
== 0 || sctx
->cur_inode_deleted
)
5342 if (!at_end
&& sctx
->cmp_key
->objectid
== sctx
->cur_ino
)
5345 ret
= get_inode_info(sctx
->send_root
, sctx
->cur_ino
, NULL
, NULL
,
5346 &left_mode
, &left_uid
, &left_gid
, NULL
);
5350 if (!sctx
->parent_root
|| sctx
->cur_inode_new
) {
5352 if (!S_ISLNK(sctx
->cur_inode_mode
))
5355 ret
= get_inode_info(sctx
->parent_root
, sctx
->cur_ino
,
5356 NULL
, NULL
, &right_mode
, &right_uid
,
5361 if (left_uid
!= right_uid
|| left_gid
!= right_gid
)
5363 if (!S_ISLNK(sctx
->cur_inode_mode
) && left_mode
!= right_mode
)
5367 if (S_ISREG(sctx
->cur_inode_mode
)) {
5368 if (need_send_hole(sctx
)) {
5369 if (sctx
->cur_inode_last_extent
== (u64
)-1 ||
5370 sctx
->cur_inode_last_extent
<
5371 sctx
->cur_inode_size
) {
5372 ret
= get_last_extent(sctx
, (u64
)-1);
5376 if (sctx
->cur_inode_last_extent
<
5377 sctx
->cur_inode_size
) {
5378 ret
= send_hole(sctx
, sctx
->cur_inode_size
);
5383 ret
= send_truncate(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
,
5384 sctx
->cur_inode_size
);
5390 ret
= send_chown(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
,
5391 left_uid
, left_gid
);
5396 ret
= send_chmod(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
,
5403 * If other directory inodes depended on our current directory
5404 * inode's move/rename, now do their move/rename operations.
5406 if (!is_waiting_for_move(sctx
, sctx
->cur_ino
)) {
5407 ret
= apply_children_dir_moves(sctx
);
5411 * Need to send that every time, no matter if it actually
5412 * changed between the two trees as we have done changes to
5413 * the inode before. If our inode is a directory and it's
5414 * waiting to be moved/renamed, we will send its utimes when
5415 * it's moved/renamed, therefore we don't need to do it here.
5417 sctx
->send_progress
= sctx
->cur_ino
+ 1;
5418 ret
= send_utimes(sctx
, sctx
->cur_ino
, sctx
->cur_inode_gen
);
5427 static int changed_inode(struct send_ctx
*sctx
,
5428 enum btrfs_compare_tree_result result
)
5431 struct btrfs_key
*key
= sctx
->cmp_key
;
5432 struct btrfs_inode_item
*left_ii
= NULL
;
5433 struct btrfs_inode_item
*right_ii
= NULL
;
5437 sctx
->cur_ino
= key
->objectid
;
5438 sctx
->cur_inode_new_gen
= 0;
5439 sctx
->cur_inode_last_extent
= (u64
)-1;
5442 * Set send_progress to current inode. This will tell all get_cur_xxx
5443 * functions that the current inode's refs are not updated yet. Later,
5444 * when process_recorded_refs is finished, it is set to cur_ino + 1.
5446 sctx
->send_progress
= sctx
->cur_ino
;
5448 if (result
== BTRFS_COMPARE_TREE_NEW
||
5449 result
== BTRFS_COMPARE_TREE_CHANGED
) {
5450 left_ii
= btrfs_item_ptr(sctx
->left_path
->nodes
[0],
5451 sctx
->left_path
->slots
[0],
5452 struct btrfs_inode_item
);
5453 left_gen
= btrfs_inode_generation(sctx
->left_path
->nodes
[0],
5456 right_ii
= btrfs_item_ptr(sctx
->right_path
->nodes
[0],
5457 sctx
->right_path
->slots
[0],
5458 struct btrfs_inode_item
);
5459 right_gen
= btrfs_inode_generation(sctx
->right_path
->nodes
[0],
5462 if (result
== BTRFS_COMPARE_TREE_CHANGED
) {
5463 right_ii
= btrfs_item_ptr(sctx
->right_path
->nodes
[0],
5464 sctx
->right_path
->slots
[0],
5465 struct btrfs_inode_item
);
5467 right_gen
= btrfs_inode_generation(sctx
->right_path
->nodes
[0],
5471 * The cur_ino = root dir case is special here. We can't treat
5472 * the inode as deleted+reused because it would generate a
5473 * stream that tries to delete/mkdir the root dir.
5475 if (left_gen
!= right_gen
&&
5476 sctx
->cur_ino
!= BTRFS_FIRST_FREE_OBJECTID
)
5477 sctx
->cur_inode_new_gen
= 1;
5480 if (result
== BTRFS_COMPARE_TREE_NEW
) {
5481 sctx
->cur_inode_gen
= left_gen
;
5482 sctx
->cur_inode_new
= 1;
5483 sctx
->cur_inode_deleted
= 0;
5484 sctx
->cur_inode_size
= btrfs_inode_size(
5485 sctx
->left_path
->nodes
[0], left_ii
);
5486 sctx
->cur_inode_mode
= btrfs_inode_mode(
5487 sctx
->left_path
->nodes
[0], left_ii
);
5488 sctx
->cur_inode_rdev
= btrfs_inode_rdev(
5489 sctx
->left_path
->nodes
[0], left_ii
);
5490 if (sctx
->cur_ino
!= BTRFS_FIRST_FREE_OBJECTID
)
5491 ret
= send_create_inode_if_needed(sctx
);
5492 } else if (result
== BTRFS_COMPARE_TREE_DELETED
) {
5493 sctx
->cur_inode_gen
= right_gen
;
5494 sctx
->cur_inode_new
= 0;
5495 sctx
->cur_inode_deleted
= 1;
5496 sctx
->cur_inode_size
= btrfs_inode_size(
5497 sctx
->right_path
->nodes
[0], right_ii
);
5498 sctx
->cur_inode_mode
= btrfs_inode_mode(
5499 sctx
->right_path
->nodes
[0], right_ii
);
5500 } else if (result
== BTRFS_COMPARE_TREE_CHANGED
) {
5502 * We need to do some special handling in case the inode was
5503 * reported as changed with a changed generation number. This
5504 * means that the original inode was deleted and new inode
5505 * reused the same inum. So we have to treat the old inode as
5506 * deleted and the new one as new.
5508 if (sctx
->cur_inode_new_gen
) {
5510 * First, process the inode as if it was deleted.
5512 sctx
->cur_inode_gen
= right_gen
;
5513 sctx
->cur_inode_new
= 0;
5514 sctx
->cur_inode_deleted
= 1;
5515 sctx
->cur_inode_size
= btrfs_inode_size(
5516 sctx
->right_path
->nodes
[0], right_ii
);
5517 sctx
->cur_inode_mode
= btrfs_inode_mode(
5518 sctx
->right_path
->nodes
[0], right_ii
);
5519 ret
= process_all_refs(sctx
,
5520 BTRFS_COMPARE_TREE_DELETED
);
5525 * Now process the inode as if it was new.
5527 sctx
->cur_inode_gen
= left_gen
;
5528 sctx
->cur_inode_new
= 1;
5529 sctx
->cur_inode_deleted
= 0;
5530 sctx
->cur_inode_size
= btrfs_inode_size(
5531 sctx
->left_path
->nodes
[0], left_ii
);
5532 sctx
->cur_inode_mode
= btrfs_inode_mode(
5533 sctx
->left_path
->nodes
[0], left_ii
);
5534 sctx
->cur_inode_rdev
= btrfs_inode_rdev(
5535 sctx
->left_path
->nodes
[0], left_ii
);
5536 ret
= send_create_inode_if_needed(sctx
);
5540 ret
= process_all_refs(sctx
, BTRFS_COMPARE_TREE_NEW
);
5544 * Advance send_progress now as we did not get into
5545 * process_recorded_refs_if_needed in the new_gen case.
5547 sctx
->send_progress
= sctx
->cur_ino
+ 1;
5550 * Now process all extents and xattrs of the inode as if
5551 * they were all new.
5553 ret
= process_all_extents(sctx
);
5556 ret
= process_all_new_xattrs(sctx
);
5560 sctx
->cur_inode_gen
= left_gen
;
5561 sctx
->cur_inode_new
= 0;
5562 sctx
->cur_inode_new_gen
= 0;
5563 sctx
->cur_inode_deleted
= 0;
5564 sctx
->cur_inode_size
= btrfs_inode_size(
5565 sctx
->left_path
->nodes
[0], left_ii
);
5566 sctx
->cur_inode_mode
= btrfs_inode_mode(
5567 sctx
->left_path
->nodes
[0], left_ii
);
5576 * We have to process new refs before deleted refs, but compare_trees gives us
5577 * the new and deleted refs mixed. To fix this, we record the new/deleted refs
5578 * first and later process them in process_recorded_refs.
5579 * For the cur_inode_new_gen case, we skip recording completely because
5580 * changed_inode did already initiate processing of refs. The reason for this is
5581 * that in this case, compare_tree actually compares the refs of 2 different
5582 * inodes. To fix this, process_all_refs is used in changed_inode to handle all
5583 * refs of the right tree as deleted and all refs of the left tree as new.
5585 static int changed_ref(struct send_ctx
*sctx
,
5586 enum btrfs_compare_tree_result result
)
5590 BUG_ON(sctx
->cur_ino
!= sctx
->cmp_key
->objectid
);
5592 if (!sctx
->cur_inode_new_gen
&&
5593 sctx
->cur_ino
!= BTRFS_FIRST_FREE_OBJECTID
) {
5594 if (result
== BTRFS_COMPARE_TREE_NEW
)
5595 ret
= record_new_ref(sctx
);
5596 else if (result
== BTRFS_COMPARE_TREE_DELETED
)
5597 ret
= record_deleted_ref(sctx
);
5598 else if (result
== BTRFS_COMPARE_TREE_CHANGED
)
5599 ret
= record_changed_ref(sctx
);
5606 * Process new/deleted/changed xattrs. We skip processing in the
5607 * cur_inode_new_gen case because changed_inode did already initiate processing
5608 * of xattrs. The reason is the same as in changed_ref
5610 static int changed_xattr(struct send_ctx
*sctx
,
5611 enum btrfs_compare_tree_result result
)
5615 BUG_ON(sctx
->cur_ino
!= sctx
->cmp_key
->objectid
);
5617 if (!sctx
->cur_inode_new_gen
&& !sctx
->cur_inode_deleted
) {
5618 if (result
== BTRFS_COMPARE_TREE_NEW
)
5619 ret
= process_new_xattr(sctx
);
5620 else if (result
== BTRFS_COMPARE_TREE_DELETED
)
5621 ret
= process_deleted_xattr(sctx
);
5622 else if (result
== BTRFS_COMPARE_TREE_CHANGED
)
5623 ret
= process_changed_xattr(sctx
);
5630 * Process new/deleted/changed extents. We skip processing in the
5631 * cur_inode_new_gen case because changed_inode did already initiate processing
5632 * of extents. The reason is the same as in changed_ref
5634 static int changed_extent(struct send_ctx
*sctx
,
5635 enum btrfs_compare_tree_result result
)
5639 BUG_ON(sctx
->cur_ino
!= sctx
->cmp_key
->objectid
);
5641 if (!sctx
->cur_inode_new_gen
&& !sctx
->cur_inode_deleted
) {
5642 if (result
!= BTRFS_COMPARE_TREE_DELETED
)
5643 ret
= process_extent(sctx
, sctx
->left_path
,
5650 static int dir_changed(struct send_ctx
*sctx
, u64 dir
)
5652 u64 orig_gen
, new_gen
;
5655 ret
= get_inode_info(sctx
->send_root
, dir
, NULL
, &new_gen
, NULL
, NULL
,
5660 ret
= get_inode_info(sctx
->parent_root
, dir
, NULL
, &orig_gen
, NULL
,
5665 return (orig_gen
!= new_gen
) ? 1 : 0;
5668 static int compare_refs(struct send_ctx
*sctx
, struct btrfs_path
*path
,
5669 struct btrfs_key
*key
)
5671 struct btrfs_inode_extref
*extref
;
5672 struct extent_buffer
*leaf
;
5673 u64 dirid
= 0, last_dirid
= 0;
5680 /* Easy case, just check this one dirid */
5681 if (key
->type
== BTRFS_INODE_REF_KEY
) {
5682 dirid
= key
->offset
;
5684 ret
= dir_changed(sctx
, dirid
);
5688 leaf
= path
->nodes
[0];
5689 item_size
= btrfs_item_size_nr(leaf
, path
->slots
[0]);
5690 ptr
= btrfs_item_ptr_offset(leaf
, path
->slots
[0]);
5691 while (cur_offset
< item_size
) {
5692 extref
= (struct btrfs_inode_extref
*)(ptr
+
5694 dirid
= btrfs_inode_extref_parent(leaf
, extref
);
5695 ref_name_len
= btrfs_inode_extref_name_len(leaf
, extref
);
5696 cur_offset
+= ref_name_len
+ sizeof(*extref
);
5697 if (dirid
== last_dirid
)
5699 ret
= dir_changed(sctx
, dirid
);
5709 * Updates compare related fields in sctx and simply forwards to the actual
5710 * changed_xxx functions.
5712 static int changed_cb(struct btrfs_root
*left_root
,
5713 struct btrfs_root
*right_root
,
5714 struct btrfs_path
*left_path
,
5715 struct btrfs_path
*right_path
,
5716 struct btrfs_key
*key
,
5717 enum btrfs_compare_tree_result result
,
5721 struct send_ctx
*sctx
= ctx
;
5723 if (result
== BTRFS_COMPARE_TREE_SAME
) {
5724 if (key
->type
== BTRFS_INODE_REF_KEY
||
5725 key
->type
== BTRFS_INODE_EXTREF_KEY
) {
5726 ret
= compare_refs(sctx
, left_path
, key
);
5731 } else if (key
->type
== BTRFS_EXTENT_DATA_KEY
) {
5732 return maybe_send_hole(sctx
, left_path
, key
);
5736 result
= BTRFS_COMPARE_TREE_CHANGED
;
5740 sctx
->left_path
= left_path
;
5741 sctx
->right_path
= right_path
;
5742 sctx
->cmp_key
= key
;
5744 ret
= finish_inode_if_needed(sctx
, 0);
5748 /* Ignore non-FS objects */
5749 if (key
->objectid
== BTRFS_FREE_INO_OBJECTID
||
5750 key
->objectid
== BTRFS_FREE_SPACE_OBJECTID
)
5753 if (key
->type
== BTRFS_INODE_ITEM_KEY
)
5754 ret
= changed_inode(sctx
, result
);
5755 else if (key
->type
== BTRFS_INODE_REF_KEY
||
5756 key
->type
== BTRFS_INODE_EXTREF_KEY
)
5757 ret
= changed_ref(sctx
, result
);
5758 else if (key
->type
== BTRFS_XATTR_ITEM_KEY
)
5759 ret
= changed_xattr(sctx
, result
);
5760 else if (key
->type
== BTRFS_EXTENT_DATA_KEY
)
5761 ret
= changed_extent(sctx
, result
);
5767 static int full_send_tree(struct send_ctx
*sctx
)
5770 struct btrfs_root
*send_root
= sctx
->send_root
;
5771 struct btrfs_key key
;
5772 struct btrfs_key found_key
;
5773 struct btrfs_path
*path
;
5774 struct extent_buffer
*eb
;
5777 path
= alloc_path_for_send();
5781 key
.objectid
= BTRFS_FIRST_FREE_OBJECTID
;
5782 key
.type
= BTRFS_INODE_ITEM_KEY
;
5785 ret
= btrfs_search_slot_for_read(send_root
, &key
, path
, 1, 0);
5792 eb
= path
->nodes
[0];
5793 slot
= path
->slots
[0];
5794 btrfs_item_key_to_cpu(eb
, &found_key
, slot
);
5796 ret
= changed_cb(send_root
, NULL
, path
, NULL
,
5797 &found_key
, BTRFS_COMPARE_TREE_NEW
, sctx
);
5801 key
.objectid
= found_key
.objectid
;
5802 key
.type
= found_key
.type
;
5803 key
.offset
= found_key
.offset
+ 1;
5805 ret
= btrfs_next_item(send_root
, path
);
5815 ret
= finish_inode_if_needed(sctx
, 1);
5818 btrfs_free_path(path
);
5822 static int send_subvol(struct send_ctx
*sctx
)
5826 if (!(sctx
->flags
& BTRFS_SEND_FLAG_OMIT_STREAM_HEADER
)) {
5827 ret
= send_header(sctx
);
5832 ret
= send_subvol_begin(sctx
);
5836 if (sctx
->parent_root
) {
5837 ret
= btrfs_compare_trees(sctx
->send_root
, sctx
->parent_root
,
5841 ret
= finish_inode_if_needed(sctx
, 1);
5845 ret
= full_send_tree(sctx
);
5851 free_recorded_refs(sctx
);
5856 * If orphan cleanup did remove any orphans from a root, it means the tree
5857 * was modified and therefore the commit root is not the same as the current
5858 * root anymore. This is a problem, because send uses the commit root and
5859 * therefore can see inode items that don't exist in the current root anymore,
5860 * and for example make calls to btrfs_iget, which will do tree lookups based
5861 * on the current root and not on the commit root. Those lookups will fail,
5862 * returning a -ESTALE error, and making send fail with that error. So make
5863 * sure a send does not see any orphans we have just removed, and that it will
5864 * see the same inodes regardless of whether a transaction commit happened
5865 * before it started (meaning that the commit root will be the same as the
5866 * current root) or not.
5868 static int ensure_commit_roots_uptodate(struct send_ctx
*sctx
)
5871 struct btrfs_trans_handle
*trans
= NULL
;
5874 if (sctx
->parent_root
&&
5875 sctx
->parent_root
->node
!= sctx
->parent_root
->commit_root
)
5878 for (i
= 0; i
< sctx
->clone_roots_cnt
; i
++)
5879 if (sctx
->clone_roots
[i
].root
->node
!=
5880 sctx
->clone_roots
[i
].root
->commit_root
)
5884 return btrfs_end_transaction(trans
, sctx
->send_root
);
5889 /* Use any root, all fs roots will get their commit roots updated. */
5891 trans
= btrfs_join_transaction(sctx
->send_root
);
5893 return PTR_ERR(trans
);
5897 return btrfs_commit_transaction(trans
, sctx
->send_root
);
5900 static void btrfs_root_dec_send_in_progress(struct btrfs_root
* root
)
5902 spin_lock(&root
->root_item_lock
);
5903 root
->send_in_progress
--;
5905 * Not much left to do, we don't know why it's unbalanced and
5906 * can't blindly reset it to 0.
5908 if (root
->send_in_progress
< 0)
5909 btrfs_err(root
->fs_info
,
5910 "send_in_progres unbalanced %d root %llu",
5911 root
->send_in_progress
, root
->root_key
.objectid
);
5912 spin_unlock(&root
->root_item_lock
);
5915 long btrfs_ioctl_send(struct file
*mnt_file
, void __user
*arg_
)
5918 struct btrfs_root
*send_root
;
5919 struct btrfs_root
*clone_root
;
5920 struct btrfs_fs_info
*fs_info
;
5921 struct btrfs_ioctl_send_args
*arg
= NULL
;
5922 struct btrfs_key key
;
5923 struct send_ctx
*sctx
= NULL
;
5925 u64
*clone_sources_tmp
= NULL
;
5926 int clone_sources_to_rollback
= 0;
5927 int sort_clone_roots
= 0;
5930 if (!capable(CAP_SYS_ADMIN
))
5933 send_root
= BTRFS_I(file_inode(mnt_file
))->root
;
5934 fs_info
= send_root
->fs_info
;
5937 * The subvolume must remain read-only during send, protect against
5938 * making it RW. This also protects against deletion.
5940 spin_lock(&send_root
->root_item_lock
);
5941 send_root
->send_in_progress
++;
5942 spin_unlock(&send_root
->root_item_lock
);
5945 * This is done when we lookup the root, it should already be complete
5946 * by the time we get here.
5948 WARN_ON(send_root
->orphan_cleanup_state
!= ORPHAN_CLEANUP_DONE
);
5951 * Userspace tools do the checks and warn the user if it's
5954 if (!btrfs_root_readonly(send_root
)) {
5959 arg
= memdup_user(arg_
, sizeof(*arg
));
5966 if (!access_ok(VERIFY_READ
, arg
->clone_sources
,
5967 sizeof(*arg
->clone_sources
) *
5968 arg
->clone_sources_count
)) {
5973 if (arg
->flags
& ~BTRFS_SEND_FLAG_MASK
) {
5978 sctx
= kzalloc(sizeof(struct send_ctx
), GFP_NOFS
);
5984 INIT_LIST_HEAD(&sctx
->new_refs
);
5985 INIT_LIST_HEAD(&sctx
->deleted_refs
);
5986 INIT_RADIX_TREE(&sctx
->name_cache
, GFP_NOFS
);
5987 INIT_LIST_HEAD(&sctx
->name_cache_list
);
5989 sctx
->flags
= arg
->flags
;
5991 sctx
->send_filp
= fget(arg
->send_fd
);
5992 if (!sctx
->send_filp
) {
5997 sctx
->send_root
= send_root
;
5999 * Unlikely but possible, if the subvolume is marked for deletion but
6000 * is slow to remove the directory entry, send can still be started
6002 if (btrfs_root_dead(sctx
->send_root
)) {
6007 sctx
->clone_roots_cnt
= arg
->clone_sources_count
;
6009 sctx
->send_max_size
= BTRFS_SEND_BUF_SIZE
;
6010 sctx
->send_buf
= vmalloc(sctx
->send_max_size
);
6011 if (!sctx
->send_buf
) {
6016 sctx
->read_buf
= vmalloc(BTRFS_SEND_READ_SIZE
);
6017 if (!sctx
->read_buf
) {
6022 sctx
->pending_dir_moves
= RB_ROOT
;
6023 sctx
->waiting_dir_moves
= RB_ROOT
;
6024 sctx
->orphan_dirs
= RB_ROOT
;
6026 sctx
->clone_roots
= vzalloc(sizeof(struct clone_root
) *
6027 (arg
->clone_sources_count
+ 1));
6028 if (!sctx
->clone_roots
) {
6033 if (arg
->clone_sources_count
) {
6034 clone_sources_tmp
= vmalloc(arg
->clone_sources_count
*
6035 sizeof(*arg
->clone_sources
));
6036 if (!clone_sources_tmp
) {
6041 ret
= copy_from_user(clone_sources_tmp
, arg
->clone_sources
,
6042 arg
->clone_sources_count
*
6043 sizeof(*arg
->clone_sources
));
6049 for (i
= 0; i
< arg
->clone_sources_count
; i
++) {
6050 key
.objectid
= clone_sources_tmp
[i
];
6051 key
.type
= BTRFS_ROOT_ITEM_KEY
;
6052 key
.offset
= (u64
)-1;
6054 index
= srcu_read_lock(&fs_info
->subvol_srcu
);
6056 clone_root
= btrfs_read_fs_root_no_name(fs_info
, &key
);
6057 if (IS_ERR(clone_root
)) {
6058 srcu_read_unlock(&fs_info
->subvol_srcu
, index
);
6059 ret
= PTR_ERR(clone_root
);
6062 spin_lock(&clone_root
->root_item_lock
);
6063 if (!btrfs_root_readonly(clone_root
) ||
6064 btrfs_root_dead(clone_root
)) {
6065 spin_unlock(&clone_root
->root_item_lock
);
6066 srcu_read_unlock(&fs_info
->subvol_srcu
, index
);
6070 clone_root
->send_in_progress
++;
6071 spin_unlock(&clone_root
->root_item_lock
);
6072 srcu_read_unlock(&fs_info
->subvol_srcu
, index
);
6074 sctx
->clone_roots
[i
].root
= clone_root
;
6075 clone_sources_to_rollback
= i
+ 1;
6077 vfree(clone_sources_tmp
);
6078 clone_sources_tmp
= NULL
;
6081 if (arg
->parent_root
) {
6082 key
.objectid
= arg
->parent_root
;
6083 key
.type
= BTRFS_ROOT_ITEM_KEY
;
6084 key
.offset
= (u64
)-1;
6086 index
= srcu_read_lock(&fs_info
->subvol_srcu
);
6088 sctx
->parent_root
= btrfs_read_fs_root_no_name(fs_info
, &key
);
6089 if (IS_ERR(sctx
->parent_root
)) {
6090 srcu_read_unlock(&fs_info
->subvol_srcu
, index
);
6091 ret
= PTR_ERR(sctx
->parent_root
);
6095 spin_lock(&sctx
->parent_root
->root_item_lock
);
6096 sctx
->parent_root
->send_in_progress
++;
6097 if (!btrfs_root_readonly(sctx
->parent_root
) ||
6098 btrfs_root_dead(sctx
->parent_root
)) {
6099 spin_unlock(&sctx
->parent_root
->root_item_lock
);
6100 srcu_read_unlock(&fs_info
->subvol_srcu
, index
);
6104 spin_unlock(&sctx
->parent_root
->root_item_lock
);
6106 srcu_read_unlock(&fs_info
->subvol_srcu
, index
);
6110 * Clones from send_root are allowed, but only if the clone source
6111 * is behind the current send position. This is checked while searching
6112 * for possible clone sources.
6114 sctx
->clone_roots
[sctx
->clone_roots_cnt
++].root
= sctx
->send_root
;
6116 /* We do a bsearch later */
6117 sort(sctx
->clone_roots
, sctx
->clone_roots_cnt
,
6118 sizeof(*sctx
->clone_roots
), __clone_root_cmp_sort
,
6120 sort_clone_roots
= 1;
6122 ret
= ensure_commit_roots_uptodate(sctx
);
6126 current
->journal_info
= BTRFS_SEND_TRANS_STUB
;
6127 ret
= send_subvol(sctx
);
6128 current
->journal_info
= NULL
;
6132 if (!(sctx
->flags
& BTRFS_SEND_FLAG_OMIT_END_CMD
)) {
6133 ret
= begin_cmd(sctx
, BTRFS_SEND_C_END
);
6136 ret
= send_cmd(sctx
);
6142 WARN_ON(sctx
&& !ret
&& !RB_EMPTY_ROOT(&sctx
->pending_dir_moves
));
6143 while (sctx
&& !RB_EMPTY_ROOT(&sctx
->pending_dir_moves
)) {
6145 struct pending_dir_move
*pm
;
6147 n
= rb_first(&sctx
->pending_dir_moves
);
6148 pm
= rb_entry(n
, struct pending_dir_move
, node
);
6149 while (!list_empty(&pm
->list
)) {
6150 struct pending_dir_move
*pm2
;
6152 pm2
= list_first_entry(&pm
->list
,
6153 struct pending_dir_move
, list
);
6154 free_pending_move(sctx
, pm2
);
6156 free_pending_move(sctx
, pm
);
6159 WARN_ON(sctx
&& !ret
&& !RB_EMPTY_ROOT(&sctx
->waiting_dir_moves
));
6160 while (sctx
&& !RB_EMPTY_ROOT(&sctx
->waiting_dir_moves
)) {
6162 struct waiting_dir_move
*dm
;
6164 n
= rb_first(&sctx
->waiting_dir_moves
);
6165 dm
= rb_entry(n
, struct waiting_dir_move
, node
);
6166 rb_erase(&dm
->node
, &sctx
->waiting_dir_moves
);
6170 WARN_ON(sctx
&& !ret
&& !RB_EMPTY_ROOT(&sctx
->orphan_dirs
));
6171 while (sctx
&& !RB_EMPTY_ROOT(&sctx
->orphan_dirs
)) {
6173 struct orphan_dir_info
*odi
;
6175 n
= rb_first(&sctx
->orphan_dirs
);
6176 odi
= rb_entry(n
, struct orphan_dir_info
, node
);
6177 free_orphan_dir_info(sctx
, odi
);
6180 if (sort_clone_roots
) {
6181 for (i
= 0; i
< sctx
->clone_roots_cnt
; i
++)
6182 btrfs_root_dec_send_in_progress(
6183 sctx
->clone_roots
[i
].root
);
6185 for (i
= 0; sctx
&& i
< clone_sources_to_rollback
; i
++)
6186 btrfs_root_dec_send_in_progress(
6187 sctx
->clone_roots
[i
].root
);
6189 btrfs_root_dec_send_in_progress(send_root
);
6191 if (sctx
&& !IS_ERR_OR_NULL(sctx
->parent_root
))
6192 btrfs_root_dec_send_in_progress(sctx
->parent_root
);
6195 vfree(clone_sources_tmp
);
6198 if (sctx
->send_filp
)
6199 fput(sctx
->send_filp
);
6201 vfree(sctx
->clone_roots
);
6202 vfree(sctx
->send_buf
);
6203 vfree(sctx
->read_buf
);
6205 name_cache_free(sctx
);