David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Alexander Block. All rights reserved. |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/bsearch.h> |
| 7 | #include <linux/fs.h> |
| 8 | #include <linux/file.h> |
| 9 | #include <linux/sort.h> |
| 10 | #include <linux/mount.h> |
| 11 | #include <linux/xattr.h> |
| 12 | #include <linux/posix_acl_xattr.h> |
| 13 | #include <linux/radix-tree.h> |
Stephen Rothwell | a1857eb | 2012-07-27 10:11:13 +1000 | [diff] [blame] | 14 | #include <linux/vmalloc.h> |
Andy Shevchenko | ed84885 | 2013-08-21 10:32:13 +0300 | [diff] [blame] | 15 | #include <linux/string.h> |
Josef Bacik | 2351f43 | 2017-09-27 10:43:13 -0400 | [diff] [blame] | 16 | #include <linux/compat.h> |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 17 | #include <linux/crc32c.h> |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 18 | |
| 19 | #include "send.h" |
| 20 | #include "backref.h" |
| 21 | #include "locking.h" |
| 22 | #include "disk-io.h" |
| 23 | #include "btrfs_inode.h" |
| 24 | #include "transaction.h" |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 25 | #include "compression.h" |
Marcos Paulo de Souza | 89efda5 | 2020-05-10 23:15:07 -0300 | [diff] [blame] | 26 | #include "xattr.h" |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 27 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 28 | /* |
Filipe Manana | fd0ddbe | 2019-10-30 12:23:01 +0000 | [diff] [blame] | 29 | * Maximum number of references an extent can have in order for us to attempt to |
| 30 | * issue clone operations instead of write operations. This currently exists to |
| 31 | * avoid hitting limitations of the backreference walking code (taking a lot of |
| 32 | * time and using too much memory for extents with large number of references). |
| 33 | */ |
| 34 | #define SEND_MAX_EXTENT_REFS 64 |
| 35 | |
| 36 | /* |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 37 | * A fs_path is a helper to dynamically build path names with unknown size. |
| 38 | * It reallocates the internal buffer on demand. |
| 39 | * It allows fast adding of path elements on the right side (normal path) and |
| 40 | * fast adding to the left side (reversed path). A reversed path can also be |
| 41 | * unreversed if needed. |
| 42 | */ |
| 43 | struct fs_path { |
| 44 | union { |
| 45 | struct { |
| 46 | char *start; |
| 47 | char *end; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 48 | |
| 49 | char *buf; |
David Sterba | 1f5a7ff | 2014-02-03 19:23:47 +0100 | [diff] [blame] | 50 | unsigned short buf_len:15; |
| 51 | unsigned short reversed:1; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 52 | char inline_buf[]; |
| 53 | }; |
David Sterba | ace0105 | 2014-02-05 16:17:34 +0100 | [diff] [blame] | 54 | /* |
| 55 | * Average path length does not exceed 200 bytes, we'll have |
| 56 | * better packing in the slab and higher chance to satisfy |
| 57 | * a allocation later during send. |
| 58 | */ |
| 59 | char pad[256]; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 60 | }; |
| 61 | }; |
| 62 | #define FS_PATH_INLINE_SIZE \ |
| 63 | (sizeof(struct fs_path) - offsetof(struct fs_path, inline_buf)) |
| 64 | |
| 65 | |
| 66 | /* reused for each extent */ |
| 67 | struct clone_root { |
| 68 | struct btrfs_root *root; |
| 69 | u64 ino; |
| 70 | u64 offset; |
| 71 | |
| 72 | u64 found_refs; |
| 73 | }; |
| 74 | |
| 75 | #define SEND_CTX_MAX_NAME_CACHE_SIZE 128 |
| 76 | #define SEND_CTX_NAME_CACHE_CLEAN_SIZE (SEND_CTX_MAX_NAME_CACHE_SIZE * 2) |
| 77 | |
| 78 | struct send_ctx { |
| 79 | struct file *send_filp; |
| 80 | loff_t send_off; |
| 81 | char *send_buf; |
| 82 | u32 send_size; |
| 83 | u32 send_max_size; |
| 84 | u64 total_send_size; |
| 85 | u64 cmd_send_size[BTRFS_SEND_C_MAX + 1]; |
Mark Fasheh | cb95e7b | 2013-02-04 20:54:57 +0000 | [diff] [blame] | 86 | u64 flags; /* 'flags' member of btrfs_ioctl_send_args is u64 */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 87 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 88 | struct btrfs_root *send_root; |
| 89 | struct btrfs_root *parent_root; |
| 90 | struct clone_root *clone_roots; |
| 91 | int clone_roots_cnt; |
| 92 | |
| 93 | /* current state of the compare_tree call */ |
| 94 | struct btrfs_path *left_path; |
| 95 | struct btrfs_path *right_path; |
| 96 | struct btrfs_key *cmp_key; |
| 97 | |
| 98 | /* |
| 99 | * infos of the currently processed inode. In case of deleted inodes, |
| 100 | * these are the values from the deleted inode. |
| 101 | */ |
| 102 | u64 cur_ino; |
| 103 | u64 cur_inode_gen; |
| 104 | int cur_inode_new; |
| 105 | int cur_inode_new_gen; |
| 106 | int cur_inode_deleted; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 107 | u64 cur_inode_size; |
| 108 | u64 cur_inode_mode; |
Liu Bo | 644d194 | 2014-02-27 17:29:01 +0800 | [diff] [blame] | 109 | u64 cur_inode_rdev; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 110 | u64 cur_inode_last_extent; |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 111 | u64 cur_inode_next_write_offset; |
Filipe Manana | 46b2f45 | 2018-07-24 11:54:04 +0100 | [diff] [blame] | 112 | bool ignore_cur_inode; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 113 | |
| 114 | u64 send_progress; |
| 115 | |
| 116 | struct list_head new_refs; |
| 117 | struct list_head deleted_refs; |
| 118 | |
| 119 | struct radix_tree_root name_cache; |
| 120 | struct list_head name_cache_list; |
| 121 | int name_cache_size; |
| 122 | |
Liu Bo | 2131bcd | 2014-03-05 10:07:35 +0800 | [diff] [blame] | 123 | struct file_ra_state ra; |
| 124 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 125 | char *read_buf; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 126 | |
| 127 | /* |
| 128 | * We process inodes by their increasing order, so if before an |
| 129 | * incremental send we reverse the parent/child relationship of |
| 130 | * directories such that a directory with a lower inode number was |
| 131 | * the parent of a directory with a higher inode number, and the one |
| 132 | * becoming the new parent got renamed too, we can't rename/move the |
| 133 | * directory with lower inode number when we finish processing it - we |
| 134 | * must process the directory with higher inode number first, then |
| 135 | * rename/move it and then rename/move the directory with lower inode |
| 136 | * number. Example follows. |
| 137 | * |
| 138 | * Tree state when the first send was performed: |
| 139 | * |
| 140 | * . |
| 141 | * |-- a (ino 257) |
| 142 | * |-- b (ino 258) |
| 143 | * | |
| 144 | * | |
| 145 | * |-- c (ino 259) |
| 146 | * | |-- d (ino 260) |
| 147 | * | |
| 148 | * |-- c2 (ino 261) |
| 149 | * |
| 150 | * Tree state when the second (incremental) send is performed: |
| 151 | * |
| 152 | * . |
| 153 | * |-- a (ino 257) |
| 154 | * |-- b (ino 258) |
| 155 | * |-- c2 (ino 261) |
| 156 | * |-- d2 (ino 260) |
| 157 | * |-- cc (ino 259) |
| 158 | * |
| 159 | * The sequence of steps that lead to the second state was: |
| 160 | * |
| 161 | * mv /a/b/c/d /a/b/c2/d2 |
| 162 | * mv /a/b/c /a/b/c2/d2/cc |
| 163 | * |
| 164 | * "c" has lower inode number, but we can't move it (2nd mv operation) |
| 165 | * before we move "d", which has higher inode number. |
| 166 | * |
| 167 | * So we just memorize which move/rename operations must be performed |
| 168 | * later when their respective parent is processed and moved/renamed. |
| 169 | */ |
| 170 | |
| 171 | /* Indexed by parent directory inode number. */ |
| 172 | struct rb_root pending_dir_moves; |
| 173 | |
| 174 | /* |
| 175 | * Reverse index, indexed by the inode number of a directory that |
| 176 | * is waiting for the move/rename of its immediate parent before its |
| 177 | * own move/rename can be performed. |
| 178 | */ |
| 179 | struct rb_root waiting_dir_moves; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 180 | |
| 181 | /* |
| 182 | * A directory that is going to be rm'ed might have a child directory |
| 183 | * which is in the pending directory moves index above. In this case, |
| 184 | * the directory can only be removed after the move/rename of its child |
| 185 | * is performed. Example: |
| 186 | * |
| 187 | * Parent snapshot: |
| 188 | * |
| 189 | * . (ino 256) |
| 190 | * |-- a/ (ino 257) |
| 191 | * |-- b/ (ino 258) |
| 192 | * |-- c/ (ino 259) |
| 193 | * | |-- x/ (ino 260) |
| 194 | * | |
| 195 | * |-- y/ (ino 261) |
| 196 | * |
| 197 | * Send snapshot: |
| 198 | * |
| 199 | * . (ino 256) |
| 200 | * |-- a/ (ino 257) |
| 201 | * |-- b/ (ino 258) |
| 202 | * |-- YY/ (ino 261) |
| 203 | * |-- x/ (ino 260) |
| 204 | * |
| 205 | * Sequence of steps that lead to the send snapshot: |
| 206 | * rm -f /a/b/c/foo.txt |
| 207 | * mv /a/b/y /a/b/YY |
| 208 | * mv /a/b/c/x /a/b/YY |
| 209 | * rmdir /a/b/c |
| 210 | * |
| 211 | * When the child is processed, its move/rename is delayed until its |
| 212 | * parent is processed (as explained above), but all other operations |
| 213 | * like update utimes, chown, chgrp, etc, are performed and the paths |
| 214 | * that it uses for those operations must use the orphanized name of |
| 215 | * its parent (the directory we're going to rm later), so we need to |
| 216 | * memorize that name. |
| 217 | * |
| 218 | * Indexed by the inode number of the directory to be deleted. |
| 219 | */ |
| 220 | struct rb_root orphan_dirs; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 221 | }; |
| 222 | |
| 223 | struct pending_dir_move { |
| 224 | struct rb_node node; |
| 225 | struct list_head list; |
| 226 | u64 parent_ino; |
| 227 | u64 ino; |
| 228 | u64 gen; |
| 229 | struct list_head update_refs; |
| 230 | }; |
| 231 | |
| 232 | struct waiting_dir_move { |
| 233 | struct rb_node node; |
| 234 | u64 ino; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 235 | /* |
| 236 | * There might be some directory that could not be removed because it |
| 237 | * was waiting for this directory inode to be moved first. Therefore |
| 238 | * after this directory is moved, we can try to rmdir the ino rmdir_ino. |
| 239 | */ |
| 240 | u64 rmdir_ino; |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 241 | bool orphanized; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 242 | }; |
| 243 | |
| 244 | struct orphan_dir_info { |
| 245 | struct rb_node node; |
| 246 | u64 ino; |
| 247 | u64 gen; |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 248 | u64 last_dir_index_offset; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 249 | }; |
| 250 | |
| 251 | struct name_cache_entry { |
| 252 | struct list_head list; |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 253 | /* |
| 254 | * radix_tree has only 32bit entries but we need to handle 64bit inums. |
| 255 | * We use the lower 32bit of the 64bit inum to store it in the tree. If |
| 256 | * more then one inum would fall into the same entry, we use radix_list |
| 257 | * to store the additional entries. radix_list is also used to store |
| 258 | * entries where two entries have the same inum but different |
| 259 | * generations. |
| 260 | */ |
| 261 | struct list_head radix_list; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 262 | u64 ino; |
| 263 | u64 gen; |
| 264 | u64 parent_ino; |
| 265 | u64 parent_gen; |
| 266 | int ret; |
| 267 | int need_later_update; |
| 268 | int name_len; |
| 269 | char name[]; |
| 270 | }; |
| 271 | |
David Sterba | 18d0f5c | 2019-08-21 19:12:59 +0200 | [diff] [blame] | 272 | #define ADVANCE 1 |
| 273 | #define ADVANCE_ONLY_NEXT -1 |
| 274 | |
| 275 | enum btrfs_compare_tree_result { |
| 276 | BTRFS_COMPARE_TREE_NEW, |
| 277 | BTRFS_COMPARE_TREE_DELETED, |
| 278 | BTRFS_COMPARE_TREE_CHANGED, |
| 279 | BTRFS_COMPARE_TREE_SAME, |
| 280 | }; |
David Sterba | 18d0f5c | 2019-08-21 19:12:59 +0200 | [diff] [blame] | 281 | |
David Sterba | e67c718 | 2018-02-19 17:24:18 +0100 | [diff] [blame] | 282 | __cold |
Filipe Manana | 9515558 | 2016-08-01 01:50:37 +0100 | [diff] [blame] | 283 | static void inconsistent_snapshot_error(struct send_ctx *sctx, |
| 284 | enum btrfs_compare_tree_result result, |
| 285 | const char *what) |
| 286 | { |
| 287 | const char *result_string; |
| 288 | |
| 289 | switch (result) { |
| 290 | case BTRFS_COMPARE_TREE_NEW: |
| 291 | result_string = "new"; |
| 292 | break; |
| 293 | case BTRFS_COMPARE_TREE_DELETED: |
| 294 | result_string = "deleted"; |
| 295 | break; |
| 296 | case BTRFS_COMPARE_TREE_CHANGED: |
| 297 | result_string = "updated"; |
| 298 | break; |
| 299 | case BTRFS_COMPARE_TREE_SAME: |
| 300 | ASSERT(0); |
| 301 | result_string = "unchanged"; |
| 302 | break; |
| 303 | default: |
| 304 | ASSERT(0); |
| 305 | result_string = "unexpected"; |
| 306 | } |
| 307 | |
| 308 | btrfs_err(sctx->send_root->fs_info, |
| 309 | "Send: inconsistent snapshot, found %s %s for inode %llu without updated inode item, send root is %llu, parent root is %llu", |
| 310 | result_string, what, sctx->cmp_key->objectid, |
| 311 | sctx->send_root->root_key.objectid, |
| 312 | (sctx->parent_root ? |
| 313 | sctx->parent_root->root_key.objectid : 0)); |
| 314 | } |
| 315 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 316 | static int is_waiting_for_move(struct send_ctx *sctx, u64 ino); |
| 317 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 318 | static struct waiting_dir_move * |
| 319 | get_waiting_dir_move(struct send_ctx *sctx, u64 ino); |
| 320 | |
| 321 | static int is_waiting_for_rm(struct send_ctx *sctx, u64 dir_ino); |
| 322 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 323 | static int need_send_hole(struct send_ctx *sctx) |
| 324 | { |
| 325 | return (sctx->parent_root && !sctx->cur_inode_new && |
| 326 | !sctx->cur_inode_new_gen && !sctx->cur_inode_deleted && |
| 327 | S_ISREG(sctx->cur_inode_mode)); |
| 328 | } |
| 329 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 330 | static void fs_path_reset(struct fs_path *p) |
| 331 | { |
| 332 | if (p->reversed) { |
| 333 | p->start = p->buf + p->buf_len - 1; |
| 334 | p->end = p->start; |
| 335 | *p->start = 0; |
| 336 | } else { |
| 337 | p->start = p->buf; |
| 338 | p->end = p->start; |
| 339 | *p->start = 0; |
| 340 | } |
| 341 | } |
| 342 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 343 | static struct fs_path *fs_path_alloc(void) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 344 | { |
| 345 | struct fs_path *p; |
| 346 | |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 347 | p = kmalloc(sizeof(*p), GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 348 | if (!p) |
| 349 | return NULL; |
| 350 | p->reversed = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 351 | p->buf = p->inline_buf; |
| 352 | p->buf_len = FS_PATH_INLINE_SIZE; |
| 353 | fs_path_reset(p); |
| 354 | return p; |
| 355 | } |
| 356 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 357 | static struct fs_path *fs_path_alloc_reversed(void) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 358 | { |
| 359 | struct fs_path *p; |
| 360 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 361 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 362 | if (!p) |
| 363 | return NULL; |
| 364 | p->reversed = 1; |
| 365 | fs_path_reset(p); |
| 366 | return p; |
| 367 | } |
| 368 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 369 | static void fs_path_free(struct fs_path *p) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 370 | { |
| 371 | if (!p) |
| 372 | return; |
David Sterba | ace0105 | 2014-02-05 16:17:34 +0100 | [diff] [blame] | 373 | if (p->buf != p->inline_buf) |
| 374 | kfree(p->buf); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 375 | kfree(p); |
| 376 | } |
| 377 | |
| 378 | static int fs_path_len(struct fs_path *p) |
| 379 | { |
| 380 | return p->end - p->start; |
| 381 | } |
| 382 | |
| 383 | static int fs_path_ensure_buf(struct fs_path *p, int len) |
| 384 | { |
| 385 | char *tmp_buf; |
| 386 | int path_len; |
| 387 | int old_buf_len; |
| 388 | |
| 389 | len++; |
| 390 | |
| 391 | if (p->buf_len >= len) |
| 392 | return 0; |
| 393 | |
Chris Mason | cfd4a53 | 2014-04-26 05:02:03 -0700 | [diff] [blame] | 394 | if (len > PATH_MAX) { |
| 395 | WARN_ON(1); |
| 396 | return -ENOMEM; |
| 397 | } |
| 398 | |
David Sterba | 1b2782c | 2014-02-25 19:32:59 +0100 | [diff] [blame] | 399 | path_len = p->end - p->start; |
| 400 | old_buf_len = p->buf_len; |
| 401 | |
David Sterba | ace0105 | 2014-02-05 16:17:34 +0100 | [diff] [blame] | 402 | /* |
| 403 | * First time the inline_buf does not suffice |
| 404 | */ |
Filipe Manana | 01a9a8a | 2014-05-21 17:38:13 +0100 | [diff] [blame] | 405 | if (p->buf == p->inline_buf) { |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 406 | tmp_buf = kmalloc(len, GFP_KERNEL); |
Filipe Manana | 01a9a8a | 2014-05-21 17:38:13 +0100 | [diff] [blame] | 407 | if (tmp_buf) |
| 408 | memcpy(tmp_buf, p->buf, old_buf_len); |
| 409 | } else { |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 410 | tmp_buf = krealloc(p->buf, len, GFP_KERNEL); |
Filipe Manana | 01a9a8a | 2014-05-21 17:38:13 +0100 | [diff] [blame] | 411 | } |
David Sterba | 9c9ca00 | 2014-02-25 19:33:08 +0100 | [diff] [blame] | 412 | if (!tmp_buf) |
| 413 | return -ENOMEM; |
| 414 | p->buf = tmp_buf; |
| 415 | /* |
| 416 | * The real size of the buffer is bigger, this will let the fast path |
| 417 | * happen most of the time |
| 418 | */ |
| 419 | p->buf_len = ksize(p->buf); |
David Sterba | ace0105 | 2014-02-05 16:17:34 +0100 | [diff] [blame] | 420 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 421 | if (p->reversed) { |
| 422 | tmp_buf = p->buf + old_buf_len - path_len - 1; |
| 423 | p->end = p->buf + p->buf_len - 1; |
| 424 | p->start = p->end - path_len; |
| 425 | memmove(p->start, tmp_buf, path_len + 1); |
| 426 | } else { |
| 427 | p->start = p->buf; |
| 428 | p->end = p->start + path_len; |
| 429 | } |
| 430 | return 0; |
| 431 | } |
| 432 | |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 433 | static int fs_path_prepare_for_add(struct fs_path *p, int name_len, |
| 434 | char **prepared) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 435 | { |
| 436 | int ret; |
| 437 | int new_len; |
| 438 | |
| 439 | new_len = p->end - p->start + name_len; |
| 440 | if (p->start != p->end) |
| 441 | new_len++; |
| 442 | ret = fs_path_ensure_buf(p, new_len); |
| 443 | if (ret < 0) |
| 444 | goto out; |
| 445 | |
| 446 | if (p->reversed) { |
| 447 | if (p->start != p->end) |
| 448 | *--p->start = '/'; |
| 449 | p->start -= name_len; |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 450 | *prepared = p->start; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 451 | } else { |
| 452 | if (p->start != p->end) |
| 453 | *p->end++ = '/'; |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 454 | *prepared = p->end; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 455 | p->end += name_len; |
| 456 | *p->end = 0; |
| 457 | } |
| 458 | |
| 459 | out: |
| 460 | return ret; |
| 461 | } |
| 462 | |
| 463 | static int fs_path_add(struct fs_path *p, const char *name, int name_len) |
| 464 | { |
| 465 | int ret; |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 466 | char *prepared; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 467 | |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 468 | ret = fs_path_prepare_for_add(p, name_len, &prepared); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 469 | if (ret < 0) |
| 470 | goto out; |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 471 | memcpy(prepared, name, name_len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 472 | |
| 473 | out: |
| 474 | return ret; |
| 475 | } |
| 476 | |
| 477 | static int fs_path_add_path(struct fs_path *p, struct fs_path *p2) |
| 478 | { |
| 479 | int ret; |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 480 | char *prepared; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 481 | |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 482 | ret = fs_path_prepare_for_add(p, p2->end - p2->start, &prepared); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 483 | if (ret < 0) |
| 484 | goto out; |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 485 | memcpy(prepared, p2->start, p2->end - p2->start); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 486 | |
| 487 | out: |
| 488 | return ret; |
| 489 | } |
| 490 | |
| 491 | static int fs_path_add_from_extent_buffer(struct fs_path *p, |
| 492 | struct extent_buffer *eb, |
| 493 | unsigned long off, int len) |
| 494 | { |
| 495 | int ret; |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 496 | char *prepared; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 497 | |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 498 | ret = fs_path_prepare_for_add(p, len, &prepared); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 499 | if (ret < 0) |
| 500 | goto out; |
| 501 | |
David Sterba | b23ab57 | 2014-02-03 19:23:19 +0100 | [diff] [blame] | 502 | read_extent_buffer(eb, prepared, off, len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 503 | |
| 504 | out: |
| 505 | return ret; |
| 506 | } |
| 507 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 508 | static int fs_path_copy(struct fs_path *p, struct fs_path *from) |
| 509 | { |
| 510 | int ret; |
| 511 | |
| 512 | p->reversed = from->reversed; |
| 513 | fs_path_reset(p); |
| 514 | |
| 515 | ret = fs_path_add_path(p, from); |
| 516 | |
| 517 | return ret; |
| 518 | } |
| 519 | |
| 520 | |
| 521 | static void fs_path_unreverse(struct fs_path *p) |
| 522 | { |
| 523 | char *tmp; |
| 524 | int len; |
| 525 | |
| 526 | if (!p->reversed) |
| 527 | return; |
| 528 | |
| 529 | tmp = p->start; |
| 530 | len = p->end - p->start; |
| 531 | p->start = p->buf; |
| 532 | p->end = p->start + len; |
| 533 | memmove(p->start, tmp, len + 1); |
| 534 | p->reversed = 0; |
| 535 | } |
| 536 | |
| 537 | static struct btrfs_path *alloc_path_for_send(void) |
| 538 | { |
| 539 | struct btrfs_path *path; |
| 540 | |
| 541 | path = btrfs_alloc_path(); |
| 542 | if (!path) |
| 543 | return NULL; |
| 544 | path->search_commit_root = 1; |
| 545 | path->skip_locking = 1; |
Josef Bacik | 3f8a18c | 2014-03-28 17:16:01 -0400 | [diff] [blame] | 546 | path->need_commit_sem = 1; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 547 | return path; |
| 548 | } |
| 549 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 550 | static int write_buf(struct file *filp, const void *buf, u32 len, loff_t *off) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 551 | { |
| 552 | int ret; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 553 | u32 pos = 0; |
| 554 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 555 | while (pos < len) { |
Christoph Hellwig | 8e93157 | 2017-09-01 17:39:19 +0200 | [diff] [blame] | 556 | ret = kernel_write(filp, buf + pos, len - pos, off); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 557 | /* TODO handle that correctly */ |
| 558 | /*if (ret == -ERESTARTSYS) { |
| 559 | continue; |
| 560 | }*/ |
| 561 | if (ret < 0) |
Christoph Hellwig | 8e93157 | 2017-09-01 17:39:19 +0200 | [diff] [blame] | 562 | return ret; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 563 | if (ret == 0) { |
Christoph Hellwig | 8e93157 | 2017-09-01 17:39:19 +0200 | [diff] [blame] | 564 | return -EIO; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 565 | } |
| 566 | pos += ret; |
| 567 | } |
| 568 | |
Christoph Hellwig | 8e93157 | 2017-09-01 17:39:19 +0200 | [diff] [blame] | 569 | return 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | static int tlv_put(struct send_ctx *sctx, u16 attr, const void *data, int len) |
| 573 | { |
| 574 | struct btrfs_tlv_header *hdr; |
| 575 | int total_len = sizeof(*hdr) + len; |
| 576 | int left = sctx->send_max_size - sctx->send_size; |
| 577 | |
| 578 | if (unlikely(left < total_len)) |
| 579 | return -EOVERFLOW; |
| 580 | |
| 581 | hdr = (struct btrfs_tlv_header *) (sctx->send_buf + sctx->send_size); |
| 582 | hdr->tlv_type = cpu_to_le16(attr); |
| 583 | hdr->tlv_len = cpu_to_le16(len); |
| 584 | memcpy(hdr + 1, data, len); |
| 585 | sctx->send_size += total_len; |
| 586 | |
| 587 | return 0; |
| 588 | } |
| 589 | |
David Sterba | 95bc79d | 2013-12-16 17:34:10 +0100 | [diff] [blame] | 590 | #define TLV_PUT_DEFINE_INT(bits) \ |
| 591 | static int tlv_put_u##bits(struct send_ctx *sctx, \ |
| 592 | u##bits attr, u##bits value) \ |
| 593 | { \ |
| 594 | __le##bits __tmp = cpu_to_le##bits(value); \ |
| 595 | return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \ |
| 596 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 597 | |
David Sterba | 95bc79d | 2013-12-16 17:34:10 +0100 | [diff] [blame] | 598 | TLV_PUT_DEFINE_INT(64) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 599 | |
| 600 | static int tlv_put_string(struct send_ctx *sctx, u16 attr, |
| 601 | const char *str, int len) |
| 602 | { |
| 603 | if (len == -1) |
| 604 | len = strlen(str); |
| 605 | return tlv_put(sctx, attr, str, len); |
| 606 | } |
| 607 | |
| 608 | static int tlv_put_uuid(struct send_ctx *sctx, u16 attr, |
| 609 | const u8 *uuid) |
| 610 | { |
| 611 | return tlv_put(sctx, attr, uuid, BTRFS_UUID_SIZE); |
| 612 | } |
| 613 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 614 | static int tlv_put_btrfs_timespec(struct send_ctx *sctx, u16 attr, |
| 615 | struct extent_buffer *eb, |
| 616 | struct btrfs_timespec *ts) |
| 617 | { |
| 618 | struct btrfs_timespec bts; |
| 619 | read_extent_buffer(eb, &bts, (unsigned long)ts, sizeof(bts)); |
| 620 | return tlv_put(sctx, attr, &bts, sizeof(bts)); |
| 621 | } |
| 622 | |
| 623 | |
Liu Bo | 895a72b | 2018-03-02 18:05:49 -0700 | [diff] [blame] | 624 | #define TLV_PUT(sctx, attrtype, data, attrlen) \ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 625 | do { \ |
Liu Bo | 895a72b | 2018-03-02 18:05:49 -0700 | [diff] [blame] | 626 | ret = tlv_put(sctx, attrtype, data, attrlen); \ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 627 | if (ret < 0) \ |
| 628 | goto tlv_put_failure; \ |
| 629 | } while (0) |
| 630 | |
| 631 | #define TLV_PUT_INT(sctx, attrtype, bits, value) \ |
| 632 | do { \ |
| 633 | ret = tlv_put_u##bits(sctx, attrtype, value); \ |
| 634 | if (ret < 0) \ |
| 635 | goto tlv_put_failure; \ |
| 636 | } while (0) |
| 637 | |
| 638 | #define TLV_PUT_U8(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 8, data) |
| 639 | #define TLV_PUT_U16(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 16, data) |
| 640 | #define TLV_PUT_U32(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 32, data) |
| 641 | #define TLV_PUT_U64(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 64, data) |
| 642 | #define TLV_PUT_STRING(sctx, attrtype, str, len) \ |
| 643 | do { \ |
| 644 | ret = tlv_put_string(sctx, attrtype, str, len); \ |
| 645 | if (ret < 0) \ |
| 646 | goto tlv_put_failure; \ |
| 647 | } while (0) |
| 648 | #define TLV_PUT_PATH(sctx, attrtype, p) \ |
| 649 | do { \ |
| 650 | ret = tlv_put_string(sctx, attrtype, p->start, \ |
| 651 | p->end - p->start); \ |
| 652 | if (ret < 0) \ |
| 653 | goto tlv_put_failure; \ |
| 654 | } while(0) |
| 655 | #define TLV_PUT_UUID(sctx, attrtype, uuid) \ |
| 656 | do { \ |
| 657 | ret = tlv_put_uuid(sctx, attrtype, uuid); \ |
| 658 | if (ret < 0) \ |
| 659 | goto tlv_put_failure; \ |
| 660 | } while (0) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 661 | #define TLV_PUT_BTRFS_TIMESPEC(sctx, attrtype, eb, ts) \ |
| 662 | do { \ |
| 663 | ret = tlv_put_btrfs_timespec(sctx, attrtype, eb, ts); \ |
| 664 | if (ret < 0) \ |
| 665 | goto tlv_put_failure; \ |
| 666 | } while (0) |
| 667 | |
| 668 | static int send_header(struct send_ctx *sctx) |
| 669 | { |
| 670 | struct btrfs_stream_header hdr; |
| 671 | |
| 672 | strcpy(hdr.magic, BTRFS_SEND_STREAM_MAGIC); |
| 673 | hdr.version = cpu_to_le32(BTRFS_SEND_STREAM_VERSION); |
| 674 | |
Anand Jain | 1bcea35 | 2012-09-14 00:04:21 -0600 | [diff] [blame] | 675 | return write_buf(sctx->send_filp, &hdr, sizeof(hdr), |
| 676 | &sctx->send_off); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | /* |
| 680 | * For each command/item we want to send to userspace, we call this function. |
| 681 | */ |
| 682 | static int begin_cmd(struct send_ctx *sctx, int cmd) |
| 683 | { |
| 684 | struct btrfs_cmd_header *hdr; |
| 685 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 686 | if (WARN_ON(!sctx->send_buf)) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 687 | return -EINVAL; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 688 | |
| 689 | BUG_ON(sctx->send_size); |
| 690 | |
| 691 | sctx->send_size += sizeof(*hdr); |
| 692 | hdr = (struct btrfs_cmd_header *)sctx->send_buf; |
| 693 | hdr->cmd = cpu_to_le16(cmd); |
| 694 | |
| 695 | return 0; |
| 696 | } |
| 697 | |
| 698 | static int send_cmd(struct send_ctx *sctx) |
| 699 | { |
| 700 | int ret; |
| 701 | struct btrfs_cmd_header *hdr; |
| 702 | u32 crc; |
| 703 | |
| 704 | hdr = (struct btrfs_cmd_header *)sctx->send_buf; |
| 705 | hdr->len = cpu_to_le32(sctx->send_size - sizeof(*hdr)); |
| 706 | hdr->crc = 0; |
| 707 | |
Johannes Thumshirn | 65019df | 2019-05-22 10:18:59 +0200 | [diff] [blame] | 708 | crc = btrfs_crc32c(0, (unsigned char *)sctx->send_buf, sctx->send_size); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 709 | hdr->crc = cpu_to_le32(crc); |
| 710 | |
Anand Jain | 1bcea35 | 2012-09-14 00:04:21 -0600 | [diff] [blame] | 711 | ret = write_buf(sctx->send_filp, sctx->send_buf, sctx->send_size, |
| 712 | &sctx->send_off); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 713 | |
| 714 | sctx->total_send_size += sctx->send_size; |
| 715 | sctx->cmd_send_size[le16_to_cpu(hdr->cmd)] += sctx->send_size; |
| 716 | sctx->send_size = 0; |
| 717 | |
| 718 | return ret; |
| 719 | } |
| 720 | |
| 721 | /* |
| 722 | * Sends a move instruction to user space |
| 723 | */ |
| 724 | static int send_rename(struct send_ctx *sctx, |
| 725 | struct fs_path *from, struct fs_path *to) |
| 726 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 727 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 728 | int ret; |
| 729 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 730 | btrfs_debug(fs_info, "send_rename %s -> %s", from->start, to->start); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 731 | |
| 732 | ret = begin_cmd(sctx, BTRFS_SEND_C_RENAME); |
| 733 | if (ret < 0) |
| 734 | goto out; |
| 735 | |
| 736 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, from); |
| 737 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_TO, to); |
| 738 | |
| 739 | ret = send_cmd(sctx); |
| 740 | |
| 741 | tlv_put_failure: |
| 742 | out: |
| 743 | return ret; |
| 744 | } |
| 745 | |
| 746 | /* |
| 747 | * Sends a link instruction to user space |
| 748 | */ |
| 749 | static int send_link(struct send_ctx *sctx, |
| 750 | struct fs_path *path, struct fs_path *lnk) |
| 751 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 752 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 753 | int ret; |
| 754 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 755 | btrfs_debug(fs_info, "send_link %s -> %s", path->start, lnk->start); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 756 | |
| 757 | ret = begin_cmd(sctx, BTRFS_SEND_C_LINK); |
| 758 | if (ret < 0) |
| 759 | goto out; |
| 760 | |
| 761 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path); |
| 762 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, lnk); |
| 763 | |
| 764 | ret = send_cmd(sctx); |
| 765 | |
| 766 | tlv_put_failure: |
| 767 | out: |
| 768 | return ret; |
| 769 | } |
| 770 | |
| 771 | /* |
| 772 | * Sends an unlink instruction to user space |
| 773 | */ |
| 774 | static int send_unlink(struct send_ctx *sctx, struct fs_path *path) |
| 775 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 776 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 777 | int ret; |
| 778 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 779 | btrfs_debug(fs_info, "send_unlink %s", path->start); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 780 | |
| 781 | ret = begin_cmd(sctx, BTRFS_SEND_C_UNLINK); |
| 782 | if (ret < 0) |
| 783 | goto out; |
| 784 | |
| 785 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path); |
| 786 | |
| 787 | ret = send_cmd(sctx); |
| 788 | |
| 789 | tlv_put_failure: |
| 790 | out: |
| 791 | return ret; |
| 792 | } |
| 793 | |
| 794 | /* |
| 795 | * Sends a rmdir instruction to user space |
| 796 | */ |
| 797 | static int send_rmdir(struct send_ctx *sctx, struct fs_path *path) |
| 798 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 799 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 800 | int ret; |
| 801 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 802 | btrfs_debug(fs_info, "send_rmdir %s", path->start); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 803 | |
| 804 | ret = begin_cmd(sctx, BTRFS_SEND_C_RMDIR); |
| 805 | if (ret < 0) |
| 806 | goto out; |
| 807 | |
| 808 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path); |
| 809 | |
| 810 | ret = send_cmd(sctx); |
| 811 | |
| 812 | tlv_put_failure: |
| 813 | out: |
| 814 | return ret; |
| 815 | } |
| 816 | |
| 817 | /* |
| 818 | * Helper function to retrieve some fields from an inode item. |
| 819 | */ |
Josef Bacik | 3f8a18c | 2014-03-28 17:16:01 -0400 | [diff] [blame] | 820 | static int __get_inode_info(struct btrfs_root *root, struct btrfs_path *path, |
| 821 | u64 ino, u64 *size, u64 *gen, u64 *mode, u64 *uid, |
| 822 | u64 *gid, u64 *rdev) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 823 | { |
| 824 | int ret; |
| 825 | struct btrfs_inode_item *ii; |
| 826 | struct btrfs_key key; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 827 | |
| 828 | key.objectid = ino; |
| 829 | key.type = BTRFS_INODE_ITEM_KEY; |
| 830 | key.offset = 0; |
| 831 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 832 | if (ret) { |
Josef Bacik | 3f8a18c | 2014-03-28 17:16:01 -0400 | [diff] [blame] | 833 | if (ret > 0) |
| 834 | ret = -ENOENT; |
| 835 | return ret; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | ii = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 839 | struct btrfs_inode_item); |
| 840 | if (size) |
| 841 | *size = btrfs_inode_size(path->nodes[0], ii); |
| 842 | if (gen) |
| 843 | *gen = btrfs_inode_generation(path->nodes[0], ii); |
| 844 | if (mode) |
| 845 | *mode = btrfs_inode_mode(path->nodes[0], ii); |
| 846 | if (uid) |
| 847 | *uid = btrfs_inode_uid(path->nodes[0], ii); |
| 848 | if (gid) |
| 849 | *gid = btrfs_inode_gid(path->nodes[0], ii); |
Alexander Block | 85a7b33 | 2012-07-26 23:39:10 +0200 | [diff] [blame] | 850 | if (rdev) |
| 851 | *rdev = btrfs_inode_rdev(path->nodes[0], ii); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 852 | |
Josef Bacik | 3f8a18c | 2014-03-28 17:16:01 -0400 | [diff] [blame] | 853 | return ret; |
| 854 | } |
| 855 | |
| 856 | static int get_inode_info(struct btrfs_root *root, |
| 857 | u64 ino, u64 *size, u64 *gen, |
| 858 | u64 *mode, u64 *uid, u64 *gid, |
| 859 | u64 *rdev) |
| 860 | { |
| 861 | struct btrfs_path *path; |
| 862 | int ret; |
| 863 | |
| 864 | path = alloc_path_for_send(); |
| 865 | if (!path) |
| 866 | return -ENOMEM; |
| 867 | ret = __get_inode_info(root, path, ino, size, gen, mode, uid, gid, |
| 868 | rdev); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 869 | btrfs_free_path(path); |
| 870 | return ret; |
| 871 | } |
| 872 | |
| 873 | typedef int (*iterate_inode_ref_t)(int num, u64 dir, int index, |
| 874 | struct fs_path *p, |
| 875 | void *ctx); |
| 876 | |
| 877 | /* |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 878 | * Helper function to iterate the entries in ONE btrfs_inode_ref or |
| 879 | * btrfs_inode_extref. |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 880 | * The iterate callback may return a non zero value to stop iteration. This can |
| 881 | * be a negative value for error codes or 1 to simply stop it. |
| 882 | * |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 883 | * path must point to the INODE_REF or INODE_EXTREF when called. |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 884 | */ |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 885 | static int iterate_inode_ref(struct btrfs_root *root, struct btrfs_path *path, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 886 | struct btrfs_key *found_key, int resolve, |
| 887 | iterate_inode_ref_t iterate, void *ctx) |
| 888 | { |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 889 | struct extent_buffer *eb = path->nodes[0]; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 890 | struct btrfs_item *item; |
| 891 | struct btrfs_inode_ref *iref; |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 892 | struct btrfs_inode_extref *extref; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 893 | struct btrfs_path *tmp_path; |
| 894 | struct fs_path *p; |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 895 | u32 cur = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 896 | u32 total; |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 897 | int slot = path->slots[0]; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 898 | u32 name_len; |
| 899 | char *start; |
| 900 | int ret = 0; |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 901 | int num = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 902 | int index; |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 903 | u64 dir; |
| 904 | unsigned long name_off; |
| 905 | unsigned long elem_size; |
| 906 | unsigned long ptr; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 907 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 908 | p = fs_path_alloc_reversed(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 909 | if (!p) |
| 910 | return -ENOMEM; |
| 911 | |
| 912 | tmp_path = alloc_path_for_send(); |
| 913 | if (!tmp_path) { |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 914 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 915 | return -ENOMEM; |
| 916 | } |
| 917 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 918 | |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 919 | if (found_key->type == BTRFS_INODE_REF_KEY) { |
| 920 | ptr = (unsigned long)btrfs_item_ptr(eb, slot, |
| 921 | struct btrfs_inode_ref); |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 922 | item = btrfs_item_nr(slot); |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 923 | total = btrfs_item_size(eb, item); |
| 924 | elem_size = sizeof(*iref); |
| 925 | } else { |
| 926 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 927 | total = btrfs_item_size_nr(eb, slot); |
| 928 | elem_size = sizeof(*extref); |
| 929 | } |
| 930 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 931 | while (cur < total) { |
| 932 | fs_path_reset(p); |
| 933 | |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 934 | if (found_key->type == BTRFS_INODE_REF_KEY) { |
| 935 | iref = (struct btrfs_inode_ref *)(ptr + cur); |
| 936 | name_len = btrfs_inode_ref_name_len(eb, iref); |
| 937 | name_off = (unsigned long)(iref + 1); |
| 938 | index = btrfs_inode_ref_index(eb, iref); |
| 939 | dir = found_key->offset; |
| 940 | } else { |
| 941 | extref = (struct btrfs_inode_extref *)(ptr + cur); |
| 942 | name_len = btrfs_inode_extref_name_len(eb, extref); |
| 943 | name_off = (unsigned long)&extref->name; |
| 944 | index = btrfs_inode_extref_index(eb, extref); |
| 945 | dir = btrfs_inode_extref_parent(eb, extref); |
| 946 | } |
| 947 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 948 | if (resolve) { |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 949 | start = btrfs_ref_to_path(root, tmp_path, name_len, |
| 950 | name_off, eb, dir, |
| 951 | p->buf, p->buf_len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 952 | if (IS_ERR(start)) { |
| 953 | ret = PTR_ERR(start); |
| 954 | goto out; |
| 955 | } |
| 956 | if (start < p->buf) { |
| 957 | /* overflow , try again with larger buffer */ |
| 958 | ret = fs_path_ensure_buf(p, |
| 959 | p->buf_len + p->buf - start); |
| 960 | if (ret < 0) |
| 961 | goto out; |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 962 | start = btrfs_ref_to_path(root, tmp_path, |
| 963 | name_len, name_off, |
| 964 | eb, dir, |
| 965 | p->buf, p->buf_len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 966 | if (IS_ERR(start)) { |
| 967 | ret = PTR_ERR(start); |
| 968 | goto out; |
| 969 | } |
| 970 | BUG_ON(start < p->buf); |
| 971 | } |
| 972 | p->start = start; |
| 973 | } else { |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 974 | ret = fs_path_add_from_extent_buffer(p, eb, name_off, |
| 975 | name_len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 976 | if (ret < 0) |
| 977 | goto out; |
| 978 | } |
| 979 | |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 980 | cur += elem_size + name_len; |
| 981 | ret = iterate(num, dir, index, p, ctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 982 | if (ret) |
| 983 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 984 | num++; |
| 985 | } |
| 986 | |
| 987 | out: |
| 988 | btrfs_free_path(tmp_path); |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 989 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 990 | return ret; |
| 991 | } |
| 992 | |
| 993 | typedef int (*iterate_dir_item_t)(int num, struct btrfs_key *di_key, |
| 994 | const char *name, int name_len, |
| 995 | const char *data, int data_len, |
| 996 | u8 type, void *ctx); |
| 997 | |
| 998 | /* |
| 999 | * Helper function to iterate the entries in ONE btrfs_dir_item. |
| 1000 | * The iterate callback may return a non zero value to stop iteration. This can |
| 1001 | * be a negative value for error codes or 1 to simply stop it. |
| 1002 | * |
| 1003 | * path must point to the dir item when called. |
| 1004 | */ |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 1005 | static int iterate_dir_item(struct btrfs_root *root, struct btrfs_path *path, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1006 | iterate_dir_item_t iterate, void *ctx) |
| 1007 | { |
| 1008 | int ret = 0; |
| 1009 | struct extent_buffer *eb; |
| 1010 | struct btrfs_item *item; |
| 1011 | struct btrfs_dir_item *di; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1012 | struct btrfs_key di_key; |
| 1013 | char *buf = NULL; |
Filipe Manana | 7e3ae33 | 2014-05-23 20:15:16 +0100 | [diff] [blame] | 1014 | int buf_len; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1015 | u32 name_len; |
| 1016 | u32 data_len; |
| 1017 | u32 cur; |
| 1018 | u32 len; |
| 1019 | u32 total; |
| 1020 | int slot; |
| 1021 | int num; |
| 1022 | u8 type; |
| 1023 | |
Filipe Manana | 4395e0c | 2014-08-20 10:45:45 +0100 | [diff] [blame] | 1024 | /* |
| 1025 | * Start with a small buffer (1 page). If later we end up needing more |
| 1026 | * space, which can happen for xattrs on a fs with a leaf size greater |
| 1027 | * then the page size, attempt to increase the buffer. Typically xattr |
| 1028 | * values are small. |
| 1029 | */ |
| 1030 | buf_len = PATH_MAX; |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 1031 | buf = kmalloc(buf_len, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1032 | if (!buf) { |
| 1033 | ret = -ENOMEM; |
| 1034 | goto out; |
| 1035 | } |
| 1036 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1037 | eb = path->nodes[0]; |
| 1038 | slot = path->slots[0]; |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 1039 | item = btrfs_item_nr(slot); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1040 | di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item); |
| 1041 | cur = 0; |
| 1042 | len = 0; |
| 1043 | total = btrfs_item_size(eb, item); |
| 1044 | |
| 1045 | num = 0; |
| 1046 | while (cur < total) { |
| 1047 | name_len = btrfs_dir_name_len(eb, di); |
| 1048 | data_len = btrfs_dir_data_len(eb, di); |
| 1049 | type = btrfs_dir_type(eb, di); |
| 1050 | btrfs_dir_item_key_to_cpu(eb, di, &di_key); |
| 1051 | |
Filipe Manana | 7e3ae33 | 2014-05-23 20:15:16 +0100 | [diff] [blame] | 1052 | if (type == BTRFS_FT_XATTR) { |
| 1053 | if (name_len > XATTR_NAME_MAX) { |
| 1054 | ret = -ENAMETOOLONG; |
| 1055 | goto out; |
| 1056 | } |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1057 | if (name_len + data_len > |
| 1058 | BTRFS_MAX_XATTR_SIZE(root->fs_info)) { |
Filipe Manana | 7e3ae33 | 2014-05-23 20:15:16 +0100 | [diff] [blame] | 1059 | ret = -E2BIG; |
| 1060 | goto out; |
| 1061 | } |
| 1062 | } else { |
| 1063 | /* |
| 1064 | * Path too long |
| 1065 | */ |
Filipe Manana | 4395e0c | 2014-08-20 10:45:45 +0100 | [diff] [blame] | 1066 | if (name_len + data_len > PATH_MAX) { |
Filipe Manana | 7e3ae33 | 2014-05-23 20:15:16 +0100 | [diff] [blame] | 1067 | ret = -ENAMETOOLONG; |
| 1068 | goto out; |
| 1069 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1070 | } |
| 1071 | |
Filipe Manana | 4395e0c | 2014-08-20 10:45:45 +0100 | [diff] [blame] | 1072 | if (name_len + data_len > buf_len) { |
| 1073 | buf_len = name_len + data_len; |
| 1074 | if (is_vmalloc_addr(buf)) { |
| 1075 | vfree(buf); |
| 1076 | buf = NULL; |
| 1077 | } else { |
| 1078 | char *tmp = krealloc(buf, buf_len, |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 1079 | GFP_KERNEL | __GFP_NOWARN); |
Filipe Manana | 4395e0c | 2014-08-20 10:45:45 +0100 | [diff] [blame] | 1080 | |
| 1081 | if (!tmp) |
| 1082 | kfree(buf); |
| 1083 | buf = tmp; |
| 1084 | } |
| 1085 | if (!buf) { |
David Sterba | f11f744 | 2017-05-31 18:40:02 +0200 | [diff] [blame] | 1086 | buf = kvmalloc(buf_len, GFP_KERNEL); |
Filipe Manana | 4395e0c | 2014-08-20 10:45:45 +0100 | [diff] [blame] | 1087 | if (!buf) { |
| 1088 | ret = -ENOMEM; |
| 1089 | goto out; |
| 1090 | } |
| 1091 | } |
| 1092 | } |
| 1093 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1094 | read_extent_buffer(eb, buf, (unsigned long)(di + 1), |
| 1095 | name_len + data_len); |
| 1096 | |
| 1097 | len = sizeof(*di) + name_len + data_len; |
| 1098 | di = (struct btrfs_dir_item *)((char *)di + len); |
| 1099 | cur += len; |
| 1100 | |
| 1101 | ret = iterate(num, &di_key, buf, name_len, buf + name_len, |
| 1102 | data_len, type, ctx); |
| 1103 | if (ret < 0) |
| 1104 | goto out; |
| 1105 | if (ret) { |
| 1106 | ret = 0; |
| 1107 | goto out; |
| 1108 | } |
| 1109 | |
| 1110 | num++; |
| 1111 | } |
| 1112 | |
| 1113 | out: |
Filipe Manana | 4395e0c | 2014-08-20 10:45:45 +0100 | [diff] [blame] | 1114 | kvfree(buf); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1115 | return ret; |
| 1116 | } |
| 1117 | |
| 1118 | static int __copy_first_ref(int num, u64 dir, int index, |
| 1119 | struct fs_path *p, void *ctx) |
| 1120 | { |
| 1121 | int ret; |
| 1122 | struct fs_path *pt = ctx; |
| 1123 | |
| 1124 | ret = fs_path_copy(pt, p); |
| 1125 | if (ret < 0) |
| 1126 | return ret; |
| 1127 | |
| 1128 | /* we want the first only */ |
| 1129 | return 1; |
| 1130 | } |
| 1131 | |
| 1132 | /* |
| 1133 | * Retrieve the first path of an inode. If an inode has more then one |
| 1134 | * ref/hardlink, this is ignored. |
| 1135 | */ |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 1136 | static int get_inode_path(struct btrfs_root *root, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1137 | u64 ino, struct fs_path *path) |
| 1138 | { |
| 1139 | int ret; |
| 1140 | struct btrfs_key key, found_key; |
| 1141 | struct btrfs_path *p; |
| 1142 | |
| 1143 | p = alloc_path_for_send(); |
| 1144 | if (!p) |
| 1145 | return -ENOMEM; |
| 1146 | |
| 1147 | fs_path_reset(path); |
| 1148 | |
| 1149 | key.objectid = ino; |
| 1150 | key.type = BTRFS_INODE_REF_KEY; |
| 1151 | key.offset = 0; |
| 1152 | |
| 1153 | ret = btrfs_search_slot_for_read(root, &key, p, 1, 0); |
| 1154 | if (ret < 0) |
| 1155 | goto out; |
| 1156 | if (ret) { |
| 1157 | ret = 1; |
| 1158 | goto out; |
| 1159 | } |
| 1160 | btrfs_item_key_to_cpu(p->nodes[0], &found_key, p->slots[0]); |
| 1161 | if (found_key.objectid != ino || |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 1162 | (found_key.type != BTRFS_INODE_REF_KEY && |
| 1163 | found_key.type != BTRFS_INODE_EXTREF_KEY)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1164 | ret = -ENOENT; |
| 1165 | goto out; |
| 1166 | } |
| 1167 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 1168 | ret = iterate_inode_ref(root, p, &found_key, 1, |
| 1169 | __copy_first_ref, path); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1170 | if (ret < 0) |
| 1171 | goto out; |
| 1172 | ret = 0; |
| 1173 | |
| 1174 | out: |
| 1175 | btrfs_free_path(p); |
| 1176 | return ret; |
| 1177 | } |
| 1178 | |
| 1179 | struct backref_ctx { |
| 1180 | struct send_ctx *sctx; |
| 1181 | |
| 1182 | /* number of total found references */ |
| 1183 | u64 found; |
| 1184 | |
| 1185 | /* |
| 1186 | * used for clones found in send_root. clones found behind cur_objectid |
| 1187 | * and cur_offset are not considered as allowed clones. |
| 1188 | */ |
| 1189 | u64 cur_objectid; |
| 1190 | u64 cur_offset; |
| 1191 | |
| 1192 | /* may be truncated in case it's the last extent in a file */ |
| 1193 | u64 extent_len; |
| 1194 | |
Filipe Manana | 619d8c4 | 2015-05-03 01:56:00 +0100 | [diff] [blame] | 1195 | /* data offset in the file extent item */ |
| 1196 | u64 data_offset; |
| 1197 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1198 | /* Just to check for bugs in backref resolving */ |
Alexander Block | ee849c0 | 2012-07-28 12:42:05 +0200 | [diff] [blame] | 1199 | int found_itself; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1200 | }; |
| 1201 | |
| 1202 | static int __clone_root_cmp_bsearch(const void *key, const void *elt) |
| 1203 | { |
Jan Schmidt | 995e01b | 2012-08-13 02:52:38 -0600 | [diff] [blame] | 1204 | u64 root = (u64)(uintptr_t)key; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1205 | struct clone_root *cr = (struct clone_root *)elt; |
| 1206 | |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 1207 | if (root < cr->root->root_key.objectid) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1208 | return -1; |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 1209 | if (root > cr->root->root_key.objectid) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1210 | return 1; |
| 1211 | return 0; |
| 1212 | } |
| 1213 | |
| 1214 | static int __clone_root_cmp_sort(const void *e1, const void *e2) |
| 1215 | { |
| 1216 | struct clone_root *cr1 = (struct clone_root *)e1; |
| 1217 | struct clone_root *cr2 = (struct clone_root *)e2; |
| 1218 | |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 1219 | if (cr1->root->root_key.objectid < cr2->root->root_key.objectid) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1220 | return -1; |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 1221 | if (cr1->root->root_key.objectid > cr2->root->root_key.objectid) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1222 | return 1; |
| 1223 | return 0; |
| 1224 | } |
| 1225 | |
| 1226 | /* |
| 1227 | * Called for every backref that is found for the current extent. |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 1228 | * Results are collected in sctx->clone_roots->ino/offset/found_refs |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1229 | */ |
| 1230 | static int __iterate_backrefs(u64 ino, u64 offset, u64 root, void *ctx_) |
| 1231 | { |
| 1232 | struct backref_ctx *bctx = ctx_; |
| 1233 | struct clone_root *found; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1234 | |
| 1235 | /* First check if the root is in the list of accepted clone sources */ |
Jan Schmidt | 995e01b | 2012-08-13 02:52:38 -0600 | [diff] [blame] | 1236 | found = bsearch((void *)(uintptr_t)root, bctx->sctx->clone_roots, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1237 | bctx->sctx->clone_roots_cnt, |
| 1238 | sizeof(struct clone_root), |
| 1239 | __clone_root_cmp_bsearch); |
| 1240 | if (!found) |
| 1241 | return 0; |
| 1242 | |
| 1243 | if (found->root == bctx->sctx->send_root && |
| 1244 | ino == bctx->cur_objectid && |
| 1245 | offset == bctx->cur_offset) { |
Alexander Block | ee849c0 | 2012-07-28 12:42:05 +0200 | [diff] [blame] | 1246 | bctx->found_itself = 1; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | /* |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1250 | * Make sure we don't consider clones from send_root that are |
| 1251 | * behind the current inode/offset. |
| 1252 | */ |
| 1253 | if (found->root == bctx->sctx->send_root) { |
| 1254 | /* |
Filipe Manana | 11f2069 | 2019-10-30 12:23:11 +0000 | [diff] [blame] | 1255 | * If the source inode was not yet processed we can't issue a |
| 1256 | * clone operation, as the source extent does not exist yet at |
| 1257 | * the destination of the stream. |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1258 | */ |
Filipe Manana | 11f2069 | 2019-10-30 12:23:11 +0000 | [diff] [blame] | 1259 | if (ino > bctx->cur_objectid) |
| 1260 | return 0; |
| 1261 | /* |
| 1262 | * We clone from the inode currently being sent as long as the |
| 1263 | * source extent is already processed, otherwise we could try |
| 1264 | * to clone from an extent that does not exist yet at the |
| 1265 | * destination of the stream. |
| 1266 | */ |
| 1267 | if (ino == bctx->cur_objectid && |
Filipe Manana | 9722b10 | 2020-01-29 17:09:53 +0000 | [diff] [blame] | 1268 | offset + bctx->extent_len > |
| 1269 | bctx->sctx->cur_inode_next_write_offset) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1270 | return 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1271 | } |
| 1272 | |
| 1273 | bctx->found++; |
| 1274 | found->found_refs++; |
| 1275 | if (ino < found->ino) { |
| 1276 | found->ino = ino; |
| 1277 | found->offset = offset; |
| 1278 | } else if (found->ino == ino) { |
| 1279 | /* |
| 1280 | * same extent found more then once in the same file. |
| 1281 | */ |
| 1282 | if (found->offset > offset + bctx->extent_len) |
| 1283 | found->offset = offset; |
| 1284 | } |
| 1285 | |
| 1286 | return 0; |
| 1287 | } |
| 1288 | |
| 1289 | /* |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 1290 | * Given an inode, offset and extent item, it finds a good clone for a clone |
| 1291 | * instruction. Returns -ENOENT when none could be found. The function makes |
| 1292 | * sure that the returned clone is usable at the point where sending is at the |
| 1293 | * moment. This means, that no clones are accepted which lie behind the current |
| 1294 | * inode+offset. |
| 1295 | * |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1296 | * path must point to the extent item when called. |
| 1297 | */ |
| 1298 | static int find_extent_clone(struct send_ctx *sctx, |
| 1299 | struct btrfs_path *path, |
| 1300 | u64 ino, u64 data_offset, |
| 1301 | u64 ino_size, |
| 1302 | struct clone_root **found) |
| 1303 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 1304 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1305 | int ret; |
| 1306 | int extent_type; |
| 1307 | u64 logical; |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 1308 | u64 disk_byte; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1309 | u64 num_bytes; |
| 1310 | u64 extent_item_pos; |
Liu Bo | 69917e4 | 2012-09-07 20:01:28 -0600 | [diff] [blame] | 1311 | u64 flags = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1312 | struct btrfs_file_extent_item *fi; |
| 1313 | struct extent_buffer *eb = path->nodes[0]; |
Alexander Block | 35075bb | 2012-07-28 12:44:34 +0200 | [diff] [blame] | 1314 | struct backref_ctx *backref_ctx = NULL; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1315 | struct clone_root *cur_clone_root; |
| 1316 | struct btrfs_key found_key; |
| 1317 | struct btrfs_path *tmp_path; |
Filipe Manana | fd0ddbe | 2019-10-30 12:23:01 +0000 | [diff] [blame] | 1318 | struct btrfs_extent_item *ei; |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 1319 | int compressed; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1320 | u32 i; |
| 1321 | |
| 1322 | tmp_path = alloc_path_for_send(); |
| 1323 | if (!tmp_path) |
| 1324 | return -ENOMEM; |
| 1325 | |
Josef Bacik | 3f8a18c | 2014-03-28 17:16:01 -0400 | [diff] [blame] | 1326 | /* We only use this path under the commit sem */ |
| 1327 | tmp_path->need_commit_sem = 0; |
| 1328 | |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 1329 | backref_ctx = kmalloc(sizeof(*backref_ctx), GFP_KERNEL); |
Alexander Block | 35075bb | 2012-07-28 12:44:34 +0200 | [diff] [blame] | 1330 | if (!backref_ctx) { |
| 1331 | ret = -ENOMEM; |
| 1332 | goto out; |
| 1333 | } |
| 1334 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1335 | if (data_offset >= ino_size) { |
| 1336 | /* |
| 1337 | * There may be extents that lie behind the file's size. |
| 1338 | * I at least had this in combination with snapshotting while |
| 1339 | * writing large files. |
| 1340 | */ |
| 1341 | ret = 0; |
| 1342 | goto out; |
| 1343 | } |
| 1344 | |
| 1345 | fi = btrfs_item_ptr(eb, path->slots[0], |
| 1346 | struct btrfs_file_extent_item); |
| 1347 | extent_type = btrfs_file_extent_type(eb, fi); |
| 1348 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
| 1349 | ret = -ENOENT; |
| 1350 | goto out; |
| 1351 | } |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 1352 | compressed = btrfs_file_extent_compression(eb, fi); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1353 | |
| 1354 | num_bytes = btrfs_file_extent_num_bytes(eb, fi); |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 1355 | disk_byte = btrfs_file_extent_disk_bytenr(eb, fi); |
| 1356 | if (disk_byte == 0) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1357 | ret = -ENOENT; |
| 1358 | goto out; |
| 1359 | } |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 1360 | logical = disk_byte + btrfs_file_extent_offset(eb, fi); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1361 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 1362 | down_read(&fs_info->commit_root_sem); |
| 1363 | ret = extent_from_logical(fs_info, disk_byte, tmp_path, |
Liu Bo | 69917e4 | 2012-09-07 20:01:28 -0600 | [diff] [blame] | 1364 | &found_key, &flags); |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 1365 | up_read(&fs_info->commit_root_sem); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1366 | |
| 1367 | if (ret < 0) |
| 1368 | goto out; |
Liu Bo | 69917e4 | 2012-09-07 20:01:28 -0600 | [diff] [blame] | 1369 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1370 | ret = -EIO; |
| 1371 | goto out; |
| 1372 | } |
| 1373 | |
Filipe Manana | fd0ddbe | 2019-10-30 12:23:01 +0000 | [diff] [blame] | 1374 | ei = btrfs_item_ptr(tmp_path->nodes[0], tmp_path->slots[0], |
| 1375 | struct btrfs_extent_item); |
| 1376 | /* |
| 1377 | * Backreference walking (iterate_extent_inodes() below) is currently |
| 1378 | * too expensive when an extent has a large number of references, both |
| 1379 | * in time spent and used memory. So for now just fallback to write |
| 1380 | * operations instead of clone operations when an extent has more than |
| 1381 | * a certain amount of references. |
| 1382 | */ |
| 1383 | if (btrfs_extent_refs(tmp_path->nodes[0], ei) > SEND_MAX_EXTENT_REFS) { |
| 1384 | ret = -ENOENT; |
| 1385 | goto out; |
| 1386 | } |
| 1387 | btrfs_release_path(tmp_path); |
| 1388 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1389 | /* |
| 1390 | * Setup the clone roots. |
| 1391 | */ |
| 1392 | for (i = 0; i < sctx->clone_roots_cnt; i++) { |
| 1393 | cur_clone_root = sctx->clone_roots + i; |
| 1394 | cur_clone_root->ino = (u64)-1; |
| 1395 | cur_clone_root->offset = 0; |
| 1396 | cur_clone_root->found_refs = 0; |
| 1397 | } |
| 1398 | |
Alexander Block | 35075bb | 2012-07-28 12:44:34 +0200 | [diff] [blame] | 1399 | backref_ctx->sctx = sctx; |
| 1400 | backref_ctx->found = 0; |
| 1401 | backref_ctx->cur_objectid = ino; |
| 1402 | backref_ctx->cur_offset = data_offset; |
| 1403 | backref_ctx->found_itself = 0; |
| 1404 | backref_ctx->extent_len = num_bytes; |
Filipe Manana | 619d8c4 | 2015-05-03 01:56:00 +0100 | [diff] [blame] | 1405 | /* |
| 1406 | * For non-compressed extents iterate_extent_inodes() gives us extent |
| 1407 | * offsets that already take into account the data offset, but not for |
| 1408 | * compressed extents, since the offset is logical and not relative to |
| 1409 | * the physical extent locations. We must take this into account to |
| 1410 | * avoid sending clone offsets that go beyond the source file's size, |
| 1411 | * which would result in the clone ioctl failing with -EINVAL on the |
| 1412 | * receiving end. |
| 1413 | */ |
| 1414 | if (compressed == BTRFS_COMPRESS_NONE) |
| 1415 | backref_ctx->data_offset = 0; |
| 1416 | else |
| 1417 | backref_ctx->data_offset = btrfs_file_extent_offset(eb, fi); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1418 | |
| 1419 | /* |
| 1420 | * The last extent of a file may be too large due to page alignment. |
| 1421 | * We need to adjust extent_len in this case so that the checks in |
| 1422 | * __iterate_backrefs work. |
| 1423 | */ |
| 1424 | if (data_offset + num_bytes >= ino_size) |
Alexander Block | 35075bb | 2012-07-28 12:44:34 +0200 | [diff] [blame] | 1425 | backref_ctx->extent_len = ino_size - data_offset; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1426 | |
| 1427 | /* |
| 1428 | * Now collect all backrefs. |
| 1429 | */ |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 1430 | if (compressed == BTRFS_COMPRESS_NONE) |
| 1431 | extent_item_pos = logical - found_key.objectid; |
| 1432 | else |
| 1433 | extent_item_pos = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1434 | ret = iterate_extent_inodes(fs_info, found_key.objectid, |
| 1435 | extent_item_pos, 1, __iterate_backrefs, |
Zygo Blaxell | c995ab3 | 2017-09-22 13:58:45 -0400 | [diff] [blame] | 1436 | backref_ctx, false); |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 1437 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1438 | if (ret < 0) |
| 1439 | goto out; |
| 1440 | |
Alexander Block | 35075bb | 2012-07-28 12:44:34 +0200 | [diff] [blame] | 1441 | if (!backref_ctx->found_itself) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1442 | /* found a bug in backref code? */ |
| 1443 | ret = -EIO; |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 1444 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 1445 | "did not find backref in send_root. inode=%llu, offset=%llu, disk_byte=%llu found extent=%llu", |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 1446 | ino, data_offset, disk_byte, found_key.objectid); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1447 | goto out; |
| 1448 | } |
| 1449 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 1450 | btrfs_debug(fs_info, |
| 1451 | "find_extent_clone: data_offset=%llu, ino=%llu, num_bytes=%llu, logical=%llu", |
| 1452 | data_offset, ino, num_bytes, logical); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1453 | |
Alexander Block | 35075bb | 2012-07-28 12:44:34 +0200 | [diff] [blame] | 1454 | if (!backref_ctx->found) |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 1455 | btrfs_debug(fs_info, "no clones found"); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1456 | |
| 1457 | cur_clone_root = NULL; |
| 1458 | for (i = 0; i < sctx->clone_roots_cnt; i++) { |
| 1459 | if (sctx->clone_roots[i].found_refs) { |
| 1460 | if (!cur_clone_root) |
| 1461 | cur_clone_root = sctx->clone_roots + i; |
| 1462 | else if (sctx->clone_roots[i].root == sctx->send_root) |
| 1463 | /* prefer clones from send_root over others */ |
| 1464 | cur_clone_root = sctx->clone_roots + i; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1465 | } |
| 1466 | |
| 1467 | } |
| 1468 | |
| 1469 | if (cur_clone_root) { |
| 1470 | *found = cur_clone_root; |
| 1471 | ret = 0; |
| 1472 | } else { |
| 1473 | ret = -ENOENT; |
| 1474 | } |
| 1475 | |
| 1476 | out: |
| 1477 | btrfs_free_path(tmp_path); |
Alexander Block | 35075bb | 2012-07-28 12:44:34 +0200 | [diff] [blame] | 1478 | kfree(backref_ctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1479 | return ret; |
| 1480 | } |
| 1481 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 1482 | static int read_symlink(struct btrfs_root *root, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1483 | u64 ino, |
| 1484 | struct fs_path *dest) |
| 1485 | { |
| 1486 | int ret; |
| 1487 | struct btrfs_path *path; |
| 1488 | struct btrfs_key key; |
| 1489 | struct btrfs_file_extent_item *ei; |
| 1490 | u8 type; |
| 1491 | u8 compression; |
| 1492 | unsigned long off; |
| 1493 | int len; |
| 1494 | |
| 1495 | path = alloc_path_for_send(); |
| 1496 | if (!path) |
| 1497 | return -ENOMEM; |
| 1498 | |
| 1499 | key.objectid = ino; |
| 1500 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 1501 | key.offset = 0; |
| 1502 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1503 | if (ret < 0) |
| 1504 | goto out; |
Filipe Manana | a879719 | 2015-12-31 18:07:59 +0000 | [diff] [blame] | 1505 | if (ret) { |
| 1506 | /* |
| 1507 | * An empty symlink inode. Can happen in rare error paths when |
| 1508 | * creating a symlink (transaction committed before the inode |
| 1509 | * eviction handler removed the symlink inode items and a crash |
| 1510 | * happened in between or the subvol was snapshoted in between). |
| 1511 | * Print an informative message to dmesg/syslog so that the user |
| 1512 | * can delete the symlink. |
| 1513 | */ |
| 1514 | btrfs_err(root->fs_info, |
| 1515 | "Found empty symlink inode %llu at root %llu", |
| 1516 | ino, root->root_key.objectid); |
| 1517 | ret = -EIO; |
| 1518 | goto out; |
| 1519 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1520 | |
| 1521 | ei = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 1522 | struct btrfs_file_extent_item); |
| 1523 | type = btrfs_file_extent_type(path->nodes[0], ei); |
| 1524 | compression = btrfs_file_extent_compression(path->nodes[0], ei); |
| 1525 | BUG_ON(type != BTRFS_FILE_EXTENT_INLINE); |
| 1526 | BUG_ON(compression); |
| 1527 | |
| 1528 | off = btrfs_file_extent_inline_start(ei); |
Qu Wenruo | e41ca58 | 2018-06-06 15:41:49 +0800 | [diff] [blame] | 1529 | len = btrfs_file_extent_ram_bytes(path->nodes[0], ei); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1530 | |
| 1531 | ret = fs_path_add_from_extent_buffer(dest, path->nodes[0], off, len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1532 | |
| 1533 | out: |
| 1534 | btrfs_free_path(path); |
| 1535 | return ret; |
| 1536 | } |
| 1537 | |
| 1538 | /* |
| 1539 | * Helper function to generate a file name that is unique in the root of |
| 1540 | * send_root and parent_root. This is used to generate names for orphan inodes. |
| 1541 | */ |
| 1542 | static int gen_unique_name(struct send_ctx *sctx, |
| 1543 | u64 ino, u64 gen, |
| 1544 | struct fs_path *dest) |
| 1545 | { |
| 1546 | int ret = 0; |
| 1547 | struct btrfs_path *path; |
| 1548 | struct btrfs_dir_item *di; |
| 1549 | char tmp[64]; |
| 1550 | int len; |
| 1551 | u64 idx = 0; |
| 1552 | |
| 1553 | path = alloc_path_for_send(); |
| 1554 | if (!path) |
| 1555 | return -ENOMEM; |
| 1556 | |
| 1557 | while (1) { |
Filipe David Borba Manana | f74b86d | 2014-01-21 23:36:38 +0000 | [diff] [blame] | 1558 | len = snprintf(tmp, sizeof(tmp), "o%llu-%llu-%llu", |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1559 | ino, gen, idx); |
David Sterba | 64792f2 | 2014-02-03 18:24:09 +0100 | [diff] [blame] | 1560 | ASSERT(len < sizeof(tmp)); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1561 | |
| 1562 | di = btrfs_lookup_dir_item(NULL, sctx->send_root, |
| 1563 | path, BTRFS_FIRST_FREE_OBJECTID, |
| 1564 | tmp, strlen(tmp), 0); |
| 1565 | btrfs_release_path(path); |
| 1566 | if (IS_ERR(di)) { |
| 1567 | ret = PTR_ERR(di); |
| 1568 | goto out; |
| 1569 | } |
| 1570 | if (di) { |
| 1571 | /* not unique, try again */ |
| 1572 | idx++; |
| 1573 | continue; |
| 1574 | } |
| 1575 | |
| 1576 | if (!sctx->parent_root) { |
| 1577 | /* unique */ |
| 1578 | ret = 0; |
| 1579 | break; |
| 1580 | } |
| 1581 | |
| 1582 | di = btrfs_lookup_dir_item(NULL, sctx->parent_root, |
| 1583 | path, BTRFS_FIRST_FREE_OBJECTID, |
| 1584 | tmp, strlen(tmp), 0); |
| 1585 | btrfs_release_path(path); |
| 1586 | if (IS_ERR(di)) { |
| 1587 | ret = PTR_ERR(di); |
| 1588 | goto out; |
| 1589 | } |
| 1590 | if (di) { |
| 1591 | /* not unique, try again */ |
| 1592 | idx++; |
| 1593 | continue; |
| 1594 | } |
| 1595 | /* unique */ |
| 1596 | break; |
| 1597 | } |
| 1598 | |
| 1599 | ret = fs_path_add(dest, tmp, strlen(tmp)); |
| 1600 | |
| 1601 | out: |
| 1602 | btrfs_free_path(path); |
| 1603 | return ret; |
| 1604 | } |
| 1605 | |
| 1606 | enum inode_state { |
| 1607 | inode_state_no_change, |
| 1608 | inode_state_will_create, |
| 1609 | inode_state_did_create, |
| 1610 | inode_state_will_delete, |
| 1611 | inode_state_did_delete, |
| 1612 | }; |
| 1613 | |
| 1614 | static int get_cur_inode_state(struct send_ctx *sctx, u64 ino, u64 gen) |
| 1615 | { |
| 1616 | int ret; |
| 1617 | int left_ret; |
| 1618 | int right_ret; |
| 1619 | u64 left_gen; |
| 1620 | u64 right_gen; |
| 1621 | |
| 1622 | ret = get_inode_info(sctx->send_root, ino, NULL, &left_gen, NULL, NULL, |
Alexander Block | 85a7b33 | 2012-07-26 23:39:10 +0200 | [diff] [blame] | 1623 | NULL, NULL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1624 | if (ret < 0 && ret != -ENOENT) |
| 1625 | goto out; |
| 1626 | left_ret = ret; |
| 1627 | |
| 1628 | if (!sctx->parent_root) { |
| 1629 | right_ret = -ENOENT; |
| 1630 | } else { |
| 1631 | ret = get_inode_info(sctx->parent_root, ino, NULL, &right_gen, |
Alexander Block | 85a7b33 | 2012-07-26 23:39:10 +0200 | [diff] [blame] | 1632 | NULL, NULL, NULL, NULL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1633 | if (ret < 0 && ret != -ENOENT) |
| 1634 | goto out; |
| 1635 | right_ret = ret; |
| 1636 | } |
| 1637 | |
| 1638 | if (!left_ret && !right_ret) { |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 1639 | if (left_gen == gen && right_gen == gen) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1640 | ret = inode_state_no_change; |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 1641 | } else if (left_gen == gen) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1642 | if (ino < sctx->send_progress) |
| 1643 | ret = inode_state_did_create; |
| 1644 | else |
| 1645 | ret = inode_state_will_create; |
| 1646 | } else if (right_gen == gen) { |
| 1647 | if (ino < sctx->send_progress) |
| 1648 | ret = inode_state_did_delete; |
| 1649 | else |
| 1650 | ret = inode_state_will_delete; |
| 1651 | } else { |
| 1652 | ret = -ENOENT; |
| 1653 | } |
| 1654 | } else if (!left_ret) { |
| 1655 | if (left_gen == gen) { |
| 1656 | if (ino < sctx->send_progress) |
| 1657 | ret = inode_state_did_create; |
| 1658 | else |
| 1659 | ret = inode_state_will_create; |
| 1660 | } else { |
| 1661 | ret = -ENOENT; |
| 1662 | } |
| 1663 | } else if (!right_ret) { |
| 1664 | if (right_gen == gen) { |
| 1665 | if (ino < sctx->send_progress) |
| 1666 | ret = inode_state_did_delete; |
| 1667 | else |
| 1668 | ret = inode_state_will_delete; |
| 1669 | } else { |
| 1670 | ret = -ENOENT; |
| 1671 | } |
| 1672 | } else { |
| 1673 | ret = -ENOENT; |
| 1674 | } |
| 1675 | |
| 1676 | out: |
| 1677 | return ret; |
| 1678 | } |
| 1679 | |
| 1680 | static int is_inode_existent(struct send_ctx *sctx, u64 ino, u64 gen) |
| 1681 | { |
| 1682 | int ret; |
| 1683 | |
Robbie Ko | 4dd9920 | 2017-01-05 16:24:55 +0800 | [diff] [blame] | 1684 | if (ino == BTRFS_FIRST_FREE_OBJECTID) |
| 1685 | return 1; |
| 1686 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1687 | ret = get_cur_inode_state(sctx, ino, gen); |
| 1688 | if (ret < 0) |
| 1689 | goto out; |
| 1690 | |
| 1691 | if (ret == inode_state_no_change || |
| 1692 | ret == inode_state_did_create || |
| 1693 | ret == inode_state_will_delete) |
| 1694 | ret = 1; |
| 1695 | else |
| 1696 | ret = 0; |
| 1697 | |
| 1698 | out: |
| 1699 | return ret; |
| 1700 | } |
| 1701 | |
| 1702 | /* |
| 1703 | * Helper function to lookup a dir item in a dir. |
| 1704 | */ |
| 1705 | static int lookup_dir_item_inode(struct btrfs_root *root, |
| 1706 | u64 dir, const char *name, int name_len, |
| 1707 | u64 *found_inode, |
| 1708 | u8 *found_type) |
| 1709 | { |
| 1710 | int ret = 0; |
| 1711 | struct btrfs_dir_item *di; |
| 1712 | struct btrfs_key key; |
| 1713 | struct btrfs_path *path; |
| 1714 | |
| 1715 | path = alloc_path_for_send(); |
| 1716 | if (!path) |
| 1717 | return -ENOMEM; |
| 1718 | |
| 1719 | di = btrfs_lookup_dir_item(NULL, root, path, |
| 1720 | dir, name, name_len, 0); |
Liu Bo | 3cf5068 | 2018-09-12 06:06:26 +0800 | [diff] [blame] | 1721 | if (IS_ERR_OR_NULL(di)) { |
| 1722 | ret = di ? PTR_ERR(di) : -ENOENT; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1723 | goto out; |
| 1724 | } |
| 1725 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key); |
Filipe Manana | 1af5607 | 2014-05-25 04:49:24 +0100 | [diff] [blame] | 1726 | if (key.type == BTRFS_ROOT_ITEM_KEY) { |
| 1727 | ret = -ENOENT; |
| 1728 | goto out; |
| 1729 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1730 | *found_inode = key.objectid; |
| 1731 | *found_type = btrfs_dir_type(path->nodes[0], di); |
| 1732 | |
| 1733 | out: |
| 1734 | btrfs_free_path(path); |
| 1735 | return ret; |
| 1736 | } |
| 1737 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 1738 | /* |
| 1739 | * Looks up the first btrfs_inode_ref of a given ino. It returns the parent dir, |
| 1740 | * generation of the parent dir and the name of the dir entry. |
| 1741 | */ |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 1742 | static int get_first_ref(struct btrfs_root *root, u64 ino, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1743 | u64 *dir, u64 *dir_gen, struct fs_path *name) |
| 1744 | { |
| 1745 | int ret; |
| 1746 | struct btrfs_key key; |
| 1747 | struct btrfs_key found_key; |
| 1748 | struct btrfs_path *path; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1749 | int len; |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 1750 | u64 parent_dir; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1751 | |
| 1752 | path = alloc_path_for_send(); |
| 1753 | if (!path) |
| 1754 | return -ENOMEM; |
| 1755 | |
| 1756 | key.objectid = ino; |
| 1757 | key.type = BTRFS_INODE_REF_KEY; |
| 1758 | key.offset = 0; |
| 1759 | |
| 1760 | ret = btrfs_search_slot_for_read(root, &key, path, 1, 0); |
| 1761 | if (ret < 0) |
| 1762 | goto out; |
| 1763 | if (!ret) |
| 1764 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1765 | path->slots[0]); |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 1766 | if (ret || found_key.objectid != ino || |
| 1767 | (found_key.type != BTRFS_INODE_REF_KEY && |
| 1768 | found_key.type != BTRFS_INODE_EXTREF_KEY)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1769 | ret = -ENOENT; |
| 1770 | goto out; |
| 1771 | } |
| 1772 | |
Filipe Manana | 51a6025 | 2014-05-13 22:01:02 +0100 | [diff] [blame] | 1773 | if (found_key.type == BTRFS_INODE_REF_KEY) { |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 1774 | struct btrfs_inode_ref *iref; |
| 1775 | iref = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 1776 | struct btrfs_inode_ref); |
| 1777 | len = btrfs_inode_ref_name_len(path->nodes[0], iref); |
| 1778 | ret = fs_path_add_from_extent_buffer(name, path->nodes[0], |
| 1779 | (unsigned long)(iref + 1), |
| 1780 | len); |
| 1781 | parent_dir = found_key.offset; |
| 1782 | } else { |
| 1783 | struct btrfs_inode_extref *extref; |
| 1784 | extref = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 1785 | struct btrfs_inode_extref); |
| 1786 | len = btrfs_inode_extref_name_len(path->nodes[0], extref); |
| 1787 | ret = fs_path_add_from_extent_buffer(name, path->nodes[0], |
| 1788 | (unsigned long)&extref->name, len); |
| 1789 | parent_dir = btrfs_inode_extref_parent(path->nodes[0], extref); |
| 1790 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1791 | if (ret < 0) |
| 1792 | goto out; |
| 1793 | btrfs_release_path(path); |
| 1794 | |
Filipe Manana | b46ab97 | 2014-03-21 12:46:54 +0000 | [diff] [blame] | 1795 | if (dir_gen) { |
| 1796 | ret = get_inode_info(root, parent_dir, NULL, dir_gen, NULL, |
| 1797 | NULL, NULL, NULL); |
| 1798 | if (ret < 0) |
| 1799 | goto out; |
| 1800 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1801 | |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 1802 | *dir = parent_dir; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1803 | |
| 1804 | out: |
| 1805 | btrfs_free_path(path); |
| 1806 | return ret; |
| 1807 | } |
| 1808 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 1809 | static int is_first_ref(struct btrfs_root *root, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1810 | u64 ino, u64 dir, |
| 1811 | const char *name, int name_len) |
| 1812 | { |
| 1813 | int ret; |
| 1814 | struct fs_path *tmp_name; |
| 1815 | u64 tmp_dir; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1816 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 1817 | tmp_name = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1818 | if (!tmp_name) |
| 1819 | return -ENOMEM; |
| 1820 | |
Filipe Manana | b46ab97 | 2014-03-21 12:46:54 +0000 | [diff] [blame] | 1821 | ret = get_first_ref(root, ino, &tmp_dir, NULL, tmp_name); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1822 | if (ret < 0) |
| 1823 | goto out; |
| 1824 | |
Alexander Block | b9291af | 2012-07-28 11:07:18 +0200 | [diff] [blame] | 1825 | if (dir != tmp_dir || name_len != fs_path_len(tmp_name)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1826 | ret = 0; |
| 1827 | goto out; |
| 1828 | } |
| 1829 | |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 1830 | ret = !memcmp(tmp_name->start, name, name_len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1831 | |
| 1832 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 1833 | fs_path_free(tmp_name); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1834 | return ret; |
| 1835 | } |
| 1836 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 1837 | /* |
| 1838 | * Used by process_recorded_refs to determine if a new ref would overwrite an |
| 1839 | * already existing ref. In case it detects an overwrite, it returns the |
| 1840 | * inode/gen in who_ino/who_gen. |
| 1841 | * When an overwrite is detected, process_recorded_refs does proper orphanizing |
| 1842 | * to make sure later references to the overwritten inode are possible. |
| 1843 | * Orphanizing is however only required for the first ref of an inode. |
| 1844 | * process_recorded_refs does an additional is_first_ref check to see if |
| 1845 | * orphanizing is really required. |
| 1846 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1847 | static int will_overwrite_ref(struct send_ctx *sctx, u64 dir, u64 dir_gen, |
| 1848 | const char *name, int name_len, |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 1849 | u64 *who_ino, u64 *who_gen, u64 *who_mode) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1850 | { |
| 1851 | int ret = 0; |
Josef Bacik | ebdad91 | 2013-08-06 16:47:48 -0400 | [diff] [blame] | 1852 | u64 gen; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1853 | u64 other_inode = 0; |
| 1854 | u8 other_type = 0; |
| 1855 | |
| 1856 | if (!sctx->parent_root) |
| 1857 | goto out; |
| 1858 | |
| 1859 | ret = is_inode_existent(sctx, dir, dir_gen); |
| 1860 | if (ret <= 0) |
| 1861 | goto out; |
| 1862 | |
Josef Bacik | ebdad91 | 2013-08-06 16:47:48 -0400 | [diff] [blame] | 1863 | /* |
| 1864 | * If we have a parent root we need to verify that the parent dir was |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 1865 | * not deleted and then re-created, if it was then we have no overwrite |
Josef Bacik | ebdad91 | 2013-08-06 16:47:48 -0400 | [diff] [blame] | 1866 | * and we can just unlink this entry. |
| 1867 | */ |
Robbie Ko | 4dd9920 | 2017-01-05 16:24:55 +0800 | [diff] [blame] | 1868 | if (sctx->parent_root && dir != BTRFS_FIRST_FREE_OBJECTID) { |
Josef Bacik | ebdad91 | 2013-08-06 16:47:48 -0400 | [diff] [blame] | 1869 | ret = get_inode_info(sctx->parent_root, dir, NULL, &gen, NULL, |
| 1870 | NULL, NULL, NULL); |
| 1871 | if (ret < 0 && ret != -ENOENT) |
| 1872 | goto out; |
| 1873 | if (ret) { |
| 1874 | ret = 0; |
| 1875 | goto out; |
| 1876 | } |
| 1877 | if (gen != dir_gen) |
| 1878 | goto out; |
| 1879 | } |
| 1880 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1881 | ret = lookup_dir_item_inode(sctx->parent_root, dir, name, name_len, |
| 1882 | &other_inode, &other_type); |
| 1883 | if (ret < 0 && ret != -ENOENT) |
| 1884 | goto out; |
| 1885 | if (ret) { |
| 1886 | ret = 0; |
| 1887 | goto out; |
| 1888 | } |
| 1889 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 1890 | /* |
| 1891 | * Check if the overwritten ref was already processed. If yes, the ref |
| 1892 | * was already unlinked/moved, so we can safely assume that we will not |
| 1893 | * overwrite anything at this point in time. |
| 1894 | */ |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 1895 | if (other_inode > sctx->send_progress || |
| 1896 | is_waiting_for_move(sctx, other_inode)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1897 | ret = get_inode_info(sctx->parent_root, other_inode, NULL, |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 1898 | who_gen, who_mode, NULL, NULL, NULL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1899 | if (ret < 0) |
| 1900 | goto out; |
| 1901 | |
| 1902 | ret = 1; |
| 1903 | *who_ino = other_inode; |
| 1904 | } else { |
| 1905 | ret = 0; |
| 1906 | } |
| 1907 | |
| 1908 | out: |
| 1909 | return ret; |
| 1910 | } |
| 1911 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 1912 | /* |
| 1913 | * Checks if the ref was overwritten by an already processed inode. This is |
| 1914 | * used by __get_cur_name_and_parent to find out if the ref was orphanized and |
| 1915 | * thus the orphan name needs be used. |
| 1916 | * process_recorded_refs also uses it to avoid unlinking of refs that were |
| 1917 | * overwritten. |
| 1918 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1919 | static int did_overwrite_ref(struct send_ctx *sctx, |
| 1920 | u64 dir, u64 dir_gen, |
| 1921 | u64 ino, u64 ino_gen, |
| 1922 | const char *name, int name_len) |
| 1923 | { |
| 1924 | int ret = 0; |
| 1925 | u64 gen; |
| 1926 | u64 ow_inode; |
| 1927 | u8 other_type; |
| 1928 | |
| 1929 | if (!sctx->parent_root) |
| 1930 | goto out; |
| 1931 | |
| 1932 | ret = is_inode_existent(sctx, dir, dir_gen); |
| 1933 | if (ret <= 0) |
| 1934 | goto out; |
| 1935 | |
Robbie Ko | 0191410 | 2017-01-05 16:24:58 +0800 | [diff] [blame] | 1936 | if (dir != BTRFS_FIRST_FREE_OBJECTID) { |
| 1937 | ret = get_inode_info(sctx->send_root, dir, NULL, &gen, NULL, |
| 1938 | NULL, NULL, NULL); |
| 1939 | if (ret < 0 && ret != -ENOENT) |
| 1940 | goto out; |
| 1941 | if (ret) { |
| 1942 | ret = 0; |
| 1943 | goto out; |
| 1944 | } |
| 1945 | if (gen != dir_gen) |
| 1946 | goto out; |
| 1947 | } |
| 1948 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1949 | /* check if the ref was overwritten by another ref */ |
| 1950 | ret = lookup_dir_item_inode(sctx->send_root, dir, name, name_len, |
| 1951 | &ow_inode, &other_type); |
| 1952 | if (ret < 0 && ret != -ENOENT) |
| 1953 | goto out; |
| 1954 | if (ret) { |
| 1955 | /* was never and will never be overwritten */ |
| 1956 | ret = 0; |
| 1957 | goto out; |
| 1958 | } |
| 1959 | |
| 1960 | ret = get_inode_info(sctx->send_root, ow_inode, NULL, &gen, NULL, NULL, |
Alexander Block | 85a7b33 | 2012-07-26 23:39:10 +0200 | [diff] [blame] | 1961 | NULL, NULL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1962 | if (ret < 0) |
| 1963 | goto out; |
| 1964 | |
| 1965 | if (ow_inode == ino && gen == ino_gen) { |
| 1966 | ret = 0; |
| 1967 | goto out; |
| 1968 | } |
| 1969 | |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 1970 | /* |
| 1971 | * We know that it is or will be overwritten. Check this now. |
| 1972 | * The current inode being processed might have been the one that caused |
Filipe Manana | b786f16 | 2015-09-26 15:30:23 +0100 | [diff] [blame] | 1973 | * inode 'ino' to be orphanized, therefore check if ow_inode matches |
| 1974 | * the current inode being processed. |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 1975 | */ |
Filipe Manana | b786f16 | 2015-09-26 15:30:23 +0100 | [diff] [blame] | 1976 | if ((ow_inode < sctx->send_progress) || |
| 1977 | (ino != sctx->cur_ino && ow_inode == sctx->cur_ino && |
| 1978 | gen == sctx->cur_inode_gen)) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1979 | ret = 1; |
| 1980 | else |
| 1981 | ret = 0; |
| 1982 | |
| 1983 | out: |
| 1984 | return ret; |
| 1985 | } |
| 1986 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 1987 | /* |
| 1988 | * Same as did_overwrite_ref, but also checks if it is the first ref of an inode |
| 1989 | * that got overwritten. This is used by process_recorded_refs to determine |
| 1990 | * if it has to use the path as returned by get_cur_path or the orphan name. |
| 1991 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 1992 | static int did_overwrite_first_ref(struct send_ctx *sctx, u64 ino, u64 gen) |
| 1993 | { |
| 1994 | int ret = 0; |
| 1995 | struct fs_path *name = NULL; |
| 1996 | u64 dir; |
| 1997 | u64 dir_gen; |
| 1998 | |
| 1999 | if (!sctx->parent_root) |
| 2000 | goto out; |
| 2001 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2002 | name = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2003 | if (!name) |
| 2004 | return -ENOMEM; |
| 2005 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2006 | ret = get_first_ref(sctx->parent_root, ino, &dir, &dir_gen, name); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2007 | if (ret < 0) |
| 2008 | goto out; |
| 2009 | |
| 2010 | ret = did_overwrite_ref(sctx, dir, dir_gen, ino, gen, |
| 2011 | name->start, fs_path_len(name)); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2012 | |
| 2013 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2014 | fs_path_free(name); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2015 | return ret; |
| 2016 | } |
| 2017 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2018 | /* |
| 2019 | * Insert a name cache entry. On 32bit kernels the radix tree index is 32bit, |
| 2020 | * so we need to do some special handling in case we have clashes. This function |
| 2021 | * takes care of this with the help of name_cache_entry::radix_list. |
Alexander Block | 5dc67d0 | 2012-08-01 12:07:43 +0200 | [diff] [blame] | 2022 | * In case of error, nce is kfreed. |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2023 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2024 | static int name_cache_insert(struct send_ctx *sctx, |
| 2025 | struct name_cache_entry *nce) |
| 2026 | { |
| 2027 | int ret = 0; |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2028 | struct list_head *nce_head; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2029 | |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2030 | nce_head = radix_tree_lookup(&sctx->name_cache, |
| 2031 | (unsigned long)nce->ino); |
| 2032 | if (!nce_head) { |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 2033 | nce_head = kmalloc(sizeof(*nce_head), GFP_KERNEL); |
Tsutomu Itoh | cfa7a9c | 2012-12-17 06:38:51 +0000 | [diff] [blame] | 2034 | if (!nce_head) { |
| 2035 | kfree(nce); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2036 | return -ENOMEM; |
Tsutomu Itoh | cfa7a9c | 2012-12-17 06:38:51 +0000 | [diff] [blame] | 2037 | } |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2038 | INIT_LIST_HEAD(nce_head); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2039 | |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2040 | ret = radix_tree_insert(&sctx->name_cache, nce->ino, nce_head); |
Alexander Block | 5dc67d0 | 2012-08-01 12:07:43 +0200 | [diff] [blame] | 2041 | if (ret < 0) { |
| 2042 | kfree(nce_head); |
| 2043 | kfree(nce); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2044 | return ret; |
Alexander Block | 5dc67d0 | 2012-08-01 12:07:43 +0200 | [diff] [blame] | 2045 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2046 | } |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2047 | list_add_tail(&nce->radix_list, nce_head); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2048 | list_add_tail(&nce->list, &sctx->name_cache_list); |
| 2049 | sctx->name_cache_size++; |
| 2050 | |
| 2051 | return ret; |
| 2052 | } |
| 2053 | |
| 2054 | static void name_cache_delete(struct send_ctx *sctx, |
| 2055 | struct name_cache_entry *nce) |
| 2056 | { |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2057 | struct list_head *nce_head; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2058 | |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2059 | nce_head = radix_tree_lookup(&sctx->name_cache, |
| 2060 | (unsigned long)nce->ino); |
David Sterba | 57fb891 | 2014-02-03 19:24:40 +0100 | [diff] [blame] | 2061 | if (!nce_head) { |
| 2062 | btrfs_err(sctx->send_root->fs_info, |
| 2063 | "name_cache_delete lookup failed ino %llu cache size %d, leaking memory", |
| 2064 | nce->ino, sctx->name_cache_size); |
| 2065 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2066 | |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2067 | list_del(&nce->radix_list); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2068 | list_del(&nce->list); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2069 | sctx->name_cache_size--; |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2070 | |
David Sterba | 57fb891 | 2014-02-03 19:24:40 +0100 | [diff] [blame] | 2071 | /* |
| 2072 | * We may not get to the final release of nce_head if the lookup fails |
| 2073 | */ |
| 2074 | if (nce_head && list_empty(nce_head)) { |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2075 | radix_tree_delete(&sctx->name_cache, (unsigned long)nce->ino); |
| 2076 | kfree(nce_head); |
| 2077 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2078 | } |
| 2079 | |
| 2080 | static struct name_cache_entry *name_cache_search(struct send_ctx *sctx, |
| 2081 | u64 ino, u64 gen) |
| 2082 | { |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2083 | struct list_head *nce_head; |
| 2084 | struct name_cache_entry *cur; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2085 | |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2086 | nce_head = radix_tree_lookup(&sctx->name_cache, (unsigned long)ino); |
| 2087 | if (!nce_head) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2088 | return NULL; |
| 2089 | |
Alexander Block | 7e0926f | 2012-07-28 14:20:58 +0200 | [diff] [blame] | 2090 | list_for_each_entry(cur, nce_head, radix_list) { |
| 2091 | if (cur->ino == ino && cur->gen == gen) |
| 2092 | return cur; |
| 2093 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2094 | return NULL; |
| 2095 | } |
| 2096 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2097 | /* |
| 2098 | * Removes the entry from the list and adds it back to the end. This marks the |
| 2099 | * entry as recently used so that name_cache_clean_unused does not remove it. |
| 2100 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2101 | static void name_cache_used(struct send_ctx *sctx, struct name_cache_entry *nce) |
| 2102 | { |
| 2103 | list_del(&nce->list); |
| 2104 | list_add_tail(&nce->list, &sctx->name_cache_list); |
| 2105 | } |
| 2106 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2107 | /* |
| 2108 | * Remove some entries from the beginning of name_cache_list. |
| 2109 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2110 | static void name_cache_clean_unused(struct send_ctx *sctx) |
| 2111 | { |
| 2112 | struct name_cache_entry *nce; |
| 2113 | |
| 2114 | if (sctx->name_cache_size < SEND_CTX_NAME_CACHE_CLEAN_SIZE) |
| 2115 | return; |
| 2116 | |
| 2117 | while (sctx->name_cache_size > SEND_CTX_MAX_NAME_CACHE_SIZE) { |
| 2118 | nce = list_entry(sctx->name_cache_list.next, |
| 2119 | struct name_cache_entry, list); |
| 2120 | name_cache_delete(sctx, nce); |
| 2121 | kfree(nce); |
| 2122 | } |
| 2123 | } |
| 2124 | |
| 2125 | static void name_cache_free(struct send_ctx *sctx) |
| 2126 | { |
| 2127 | struct name_cache_entry *nce; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2128 | |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2129 | while (!list_empty(&sctx->name_cache_list)) { |
| 2130 | nce = list_entry(sctx->name_cache_list.next, |
| 2131 | struct name_cache_entry, list); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2132 | name_cache_delete(sctx, nce); |
Alexander Block | 17589bd | 2012-07-28 14:13:35 +0200 | [diff] [blame] | 2133 | kfree(nce); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2134 | } |
| 2135 | } |
| 2136 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2137 | /* |
| 2138 | * Used by get_cur_path for each ref up to the root. |
| 2139 | * Returns 0 if it succeeded. |
| 2140 | * Returns 1 if the inode is not existent or got overwritten. In that case, the |
| 2141 | * name is an orphan name. This instructs get_cur_path to stop iterating. If 1 |
| 2142 | * is returned, parent_ino/parent_gen are not guaranteed to be valid. |
| 2143 | * Returns <0 in case of error. |
| 2144 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2145 | static int __get_cur_name_and_parent(struct send_ctx *sctx, |
| 2146 | u64 ino, u64 gen, |
| 2147 | u64 *parent_ino, |
| 2148 | u64 *parent_gen, |
| 2149 | struct fs_path *dest) |
| 2150 | { |
| 2151 | int ret; |
| 2152 | int nce_ret; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2153 | struct name_cache_entry *nce = NULL; |
| 2154 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2155 | /* |
| 2156 | * First check if we already did a call to this function with the same |
| 2157 | * ino/gen. If yes, check if the cache entry is still up-to-date. If yes |
| 2158 | * return the cached result. |
| 2159 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2160 | nce = name_cache_search(sctx, ino, gen); |
| 2161 | if (nce) { |
| 2162 | if (ino < sctx->send_progress && nce->need_later_update) { |
| 2163 | name_cache_delete(sctx, nce); |
| 2164 | kfree(nce); |
| 2165 | nce = NULL; |
| 2166 | } else { |
| 2167 | name_cache_used(sctx, nce); |
| 2168 | *parent_ino = nce->parent_ino; |
| 2169 | *parent_gen = nce->parent_gen; |
| 2170 | ret = fs_path_add(dest, nce->name, nce->name_len); |
| 2171 | if (ret < 0) |
| 2172 | goto out; |
| 2173 | ret = nce->ret; |
| 2174 | goto out; |
| 2175 | } |
| 2176 | } |
| 2177 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2178 | /* |
| 2179 | * If the inode is not existent yet, add the orphan name and return 1. |
| 2180 | * This should only happen for the parent dir that we determine in |
| 2181 | * __record_new_ref |
| 2182 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2183 | ret = is_inode_existent(sctx, ino, gen); |
| 2184 | if (ret < 0) |
| 2185 | goto out; |
| 2186 | |
| 2187 | if (!ret) { |
| 2188 | ret = gen_unique_name(sctx, ino, gen, dest); |
| 2189 | if (ret < 0) |
| 2190 | goto out; |
| 2191 | ret = 1; |
| 2192 | goto out_cache; |
| 2193 | } |
| 2194 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2195 | /* |
| 2196 | * Depending on whether the inode was already processed or not, use |
| 2197 | * send_root or parent_root for ref lookup. |
| 2198 | */ |
Filipe Manana | bf0d1f4 | 2014-02-21 00:01:32 +0000 | [diff] [blame] | 2199 | if (ino < sctx->send_progress) |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2200 | ret = get_first_ref(sctx->send_root, ino, |
| 2201 | parent_ino, parent_gen, dest); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2202 | else |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2203 | ret = get_first_ref(sctx->parent_root, ino, |
| 2204 | parent_ino, parent_gen, dest); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2205 | if (ret < 0) |
| 2206 | goto out; |
| 2207 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2208 | /* |
| 2209 | * Check if the ref was overwritten by an inode's ref that was processed |
| 2210 | * earlier. If yes, treat as orphan and return 1. |
| 2211 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2212 | ret = did_overwrite_ref(sctx, *parent_ino, *parent_gen, ino, gen, |
| 2213 | dest->start, dest->end - dest->start); |
| 2214 | if (ret < 0) |
| 2215 | goto out; |
| 2216 | if (ret) { |
| 2217 | fs_path_reset(dest); |
| 2218 | ret = gen_unique_name(sctx, ino, gen, dest); |
| 2219 | if (ret < 0) |
| 2220 | goto out; |
| 2221 | ret = 1; |
| 2222 | } |
| 2223 | |
| 2224 | out_cache: |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2225 | /* |
| 2226 | * Store the result of the lookup in the name cache. |
| 2227 | */ |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 2228 | nce = kmalloc(sizeof(*nce) + fs_path_len(dest) + 1, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2229 | if (!nce) { |
| 2230 | ret = -ENOMEM; |
| 2231 | goto out; |
| 2232 | } |
| 2233 | |
| 2234 | nce->ino = ino; |
| 2235 | nce->gen = gen; |
| 2236 | nce->parent_ino = *parent_ino; |
| 2237 | nce->parent_gen = *parent_gen; |
| 2238 | nce->name_len = fs_path_len(dest); |
| 2239 | nce->ret = ret; |
| 2240 | strcpy(nce->name, dest->start); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2241 | |
| 2242 | if (ino < sctx->send_progress) |
| 2243 | nce->need_later_update = 0; |
| 2244 | else |
| 2245 | nce->need_later_update = 1; |
| 2246 | |
| 2247 | nce_ret = name_cache_insert(sctx, nce); |
| 2248 | if (nce_ret < 0) |
| 2249 | ret = nce_ret; |
| 2250 | name_cache_clean_unused(sctx); |
| 2251 | |
| 2252 | out: |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2253 | return ret; |
| 2254 | } |
| 2255 | |
| 2256 | /* |
| 2257 | * Magic happens here. This function returns the first ref to an inode as it |
| 2258 | * would look like while receiving the stream at this point in time. |
| 2259 | * We walk the path up to the root. For every inode in between, we check if it |
| 2260 | * was already processed/sent. If yes, we continue with the parent as found |
| 2261 | * in send_root. If not, we continue with the parent as found in parent_root. |
| 2262 | * If we encounter an inode that was deleted at this point in time, we use the |
| 2263 | * inodes "orphan" name instead of the real name and stop. Same with new inodes |
| 2264 | * that were not created yet and overwritten inodes/refs. |
| 2265 | * |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 2266 | * When do we have orphan inodes: |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2267 | * 1. When an inode is freshly created and thus no valid refs are available yet |
| 2268 | * 2. When a directory lost all it's refs (deleted) but still has dir items |
| 2269 | * inside which were not processed yet (pending for move/delete). If anyone |
| 2270 | * tried to get the path to the dir items, it would get a path inside that |
| 2271 | * orphan directory. |
| 2272 | * 3. When an inode is moved around or gets new links, it may overwrite the ref |
| 2273 | * of an unprocessed inode. If in that case the first ref would be |
| 2274 | * overwritten, the overwritten inode gets "orphanized". Later when we |
| 2275 | * process this overwritten inode, it is restored at a new place by moving |
| 2276 | * the orphan inode. |
| 2277 | * |
| 2278 | * sctx->send_progress tells this function at which point in time receiving |
| 2279 | * would be. |
| 2280 | */ |
| 2281 | static int get_cur_path(struct send_ctx *sctx, u64 ino, u64 gen, |
| 2282 | struct fs_path *dest) |
| 2283 | { |
| 2284 | int ret = 0; |
| 2285 | struct fs_path *name = NULL; |
| 2286 | u64 parent_inode = 0; |
| 2287 | u64 parent_gen = 0; |
| 2288 | int stop = 0; |
| 2289 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2290 | name = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2291 | if (!name) { |
| 2292 | ret = -ENOMEM; |
| 2293 | goto out; |
| 2294 | } |
| 2295 | |
| 2296 | dest->reversed = 1; |
| 2297 | fs_path_reset(dest); |
| 2298 | |
| 2299 | while (!stop && ino != BTRFS_FIRST_FREE_OBJECTID) { |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 2300 | struct waiting_dir_move *wdm; |
| 2301 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2302 | fs_path_reset(name); |
| 2303 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2304 | if (is_waiting_for_rm(sctx, ino)) { |
| 2305 | ret = gen_unique_name(sctx, ino, gen, name); |
| 2306 | if (ret < 0) |
| 2307 | goto out; |
| 2308 | ret = fs_path_add_path(dest, name); |
| 2309 | break; |
| 2310 | } |
| 2311 | |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 2312 | wdm = get_waiting_dir_move(sctx, ino); |
| 2313 | if (wdm && wdm->orphanized) { |
| 2314 | ret = gen_unique_name(sctx, ino, gen, name); |
| 2315 | stop = 1; |
| 2316 | } else if (wdm) { |
Filipe Manana | bf0d1f4 | 2014-02-21 00:01:32 +0000 | [diff] [blame] | 2317 | ret = get_first_ref(sctx->parent_root, ino, |
| 2318 | &parent_inode, &parent_gen, name); |
| 2319 | } else { |
| 2320 | ret = __get_cur_name_and_parent(sctx, ino, gen, |
| 2321 | &parent_inode, |
| 2322 | &parent_gen, name); |
| 2323 | if (ret) |
| 2324 | stop = 1; |
| 2325 | } |
| 2326 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2327 | if (ret < 0) |
| 2328 | goto out; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 2329 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2330 | ret = fs_path_add_path(dest, name); |
| 2331 | if (ret < 0) |
| 2332 | goto out; |
| 2333 | |
| 2334 | ino = parent_inode; |
| 2335 | gen = parent_gen; |
| 2336 | } |
| 2337 | |
| 2338 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2339 | fs_path_free(name); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2340 | if (!ret) |
| 2341 | fs_path_unreverse(dest); |
| 2342 | return ret; |
| 2343 | } |
| 2344 | |
| 2345 | /* |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2346 | * Sends a BTRFS_SEND_C_SUBVOL command/item to userspace |
| 2347 | */ |
| 2348 | static int send_subvol_begin(struct send_ctx *sctx) |
| 2349 | { |
| 2350 | int ret; |
| 2351 | struct btrfs_root *send_root = sctx->send_root; |
| 2352 | struct btrfs_root *parent_root = sctx->parent_root; |
| 2353 | struct btrfs_path *path; |
| 2354 | struct btrfs_key key; |
| 2355 | struct btrfs_root_ref *ref; |
| 2356 | struct extent_buffer *leaf; |
| 2357 | char *name = NULL; |
| 2358 | int namelen; |
| 2359 | |
Wang Shilong | ffcfaf8 | 2014-01-15 00:26:43 +0800 | [diff] [blame] | 2360 | path = btrfs_alloc_path(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2361 | if (!path) |
| 2362 | return -ENOMEM; |
| 2363 | |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 2364 | name = kmalloc(BTRFS_PATH_NAME_MAX, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2365 | if (!name) { |
| 2366 | btrfs_free_path(path); |
| 2367 | return -ENOMEM; |
| 2368 | } |
| 2369 | |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 2370 | key.objectid = send_root->root_key.objectid; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2371 | key.type = BTRFS_ROOT_BACKREF_KEY; |
| 2372 | key.offset = 0; |
| 2373 | |
| 2374 | ret = btrfs_search_slot_for_read(send_root->fs_info->tree_root, |
| 2375 | &key, path, 1, 0); |
| 2376 | if (ret < 0) |
| 2377 | goto out; |
| 2378 | if (ret) { |
| 2379 | ret = -ENOENT; |
| 2380 | goto out; |
| 2381 | } |
| 2382 | |
| 2383 | leaf = path->nodes[0]; |
| 2384 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2385 | if (key.type != BTRFS_ROOT_BACKREF_KEY || |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 2386 | key.objectid != send_root->root_key.objectid) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2387 | ret = -ENOENT; |
| 2388 | goto out; |
| 2389 | } |
| 2390 | ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref); |
| 2391 | namelen = btrfs_root_ref_name_len(leaf, ref); |
| 2392 | read_extent_buffer(leaf, name, (unsigned long)(ref + 1), namelen); |
| 2393 | btrfs_release_path(path); |
| 2394 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2395 | if (parent_root) { |
| 2396 | ret = begin_cmd(sctx, BTRFS_SEND_C_SNAPSHOT); |
| 2397 | if (ret < 0) |
| 2398 | goto out; |
| 2399 | } else { |
| 2400 | ret = begin_cmd(sctx, BTRFS_SEND_C_SUBVOL); |
| 2401 | if (ret < 0) |
| 2402 | goto out; |
| 2403 | } |
| 2404 | |
| 2405 | TLV_PUT_STRING(sctx, BTRFS_SEND_A_PATH, name, namelen); |
Robin Ruede | b96b1db | 2015-09-30 21:23:33 +0200 | [diff] [blame] | 2406 | |
| 2407 | if (!btrfs_is_empty_uuid(sctx->send_root->root_item.received_uuid)) |
| 2408 | TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID, |
| 2409 | sctx->send_root->root_item.received_uuid); |
| 2410 | else |
| 2411 | TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID, |
| 2412 | sctx->send_root->root_item.uuid); |
| 2413 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2414 | TLV_PUT_U64(sctx, BTRFS_SEND_A_CTRANSID, |
Filipe David Borba Manana | 5a0f4e2 | 2013-12-03 15:55:48 +0000 | [diff] [blame] | 2415 | le64_to_cpu(sctx->send_root->root_item.ctransid)); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2416 | if (parent_root) { |
Josef Bacik | 37b8d27 | 2015-06-04 17:17:25 -0400 | [diff] [blame] | 2417 | if (!btrfs_is_empty_uuid(parent_root->root_item.received_uuid)) |
| 2418 | TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID, |
| 2419 | parent_root->root_item.received_uuid); |
| 2420 | else |
| 2421 | TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID, |
| 2422 | parent_root->root_item.uuid); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2423 | TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID, |
Filipe David Borba Manana | 5a0f4e2 | 2013-12-03 15:55:48 +0000 | [diff] [blame] | 2424 | le64_to_cpu(sctx->parent_root->root_item.ctransid)); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2425 | } |
| 2426 | |
| 2427 | ret = send_cmd(sctx); |
| 2428 | |
| 2429 | tlv_put_failure: |
| 2430 | out: |
| 2431 | btrfs_free_path(path); |
| 2432 | kfree(name); |
| 2433 | return ret; |
| 2434 | } |
| 2435 | |
| 2436 | static int send_truncate(struct send_ctx *sctx, u64 ino, u64 gen, u64 size) |
| 2437 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2438 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2439 | int ret = 0; |
| 2440 | struct fs_path *p; |
| 2441 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2442 | btrfs_debug(fs_info, "send_truncate %llu size=%llu", ino, size); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2443 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2444 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2445 | if (!p) |
| 2446 | return -ENOMEM; |
| 2447 | |
| 2448 | ret = begin_cmd(sctx, BTRFS_SEND_C_TRUNCATE); |
| 2449 | if (ret < 0) |
| 2450 | goto out; |
| 2451 | |
| 2452 | ret = get_cur_path(sctx, ino, gen, p); |
| 2453 | if (ret < 0) |
| 2454 | goto out; |
| 2455 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
| 2456 | TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, size); |
| 2457 | |
| 2458 | ret = send_cmd(sctx); |
| 2459 | |
| 2460 | tlv_put_failure: |
| 2461 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2462 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2463 | return ret; |
| 2464 | } |
| 2465 | |
| 2466 | static int send_chmod(struct send_ctx *sctx, u64 ino, u64 gen, u64 mode) |
| 2467 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2468 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2469 | int ret = 0; |
| 2470 | struct fs_path *p; |
| 2471 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2472 | btrfs_debug(fs_info, "send_chmod %llu mode=%llu", ino, mode); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2473 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2474 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2475 | if (!p) |
| 2476 | return -ENOMEM; |
| 2477 | |
| 2478 | ret = begin_cmd(sctx, BTRFS_SEND_C_CHMOD); |
| 2479 | if (ret < 0) |
| 2480 | goto out; |
| 2481 | |
| 2482 | ret = get_cur_path(sctx, ino, gen, p); |
| 2483 | if (ret < 0) |
| 2484 | goto out; |
| 2485 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
| 2486 | TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode & 07777); |
| 2487 | |
| 2488 | ret = send_cmd(sctx); |
| 2489 | |
| 2490 | tlv_put_failure: |
| 2491 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2492 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2493 | return ret; |
| 2494 | } |
| 2495 | |
| 2496 | static int send_chown(struct send_ctx *sctx, u64 ino, u64 gen, u64 uid, u64 gid) |
| 2497 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2498 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2499 | int ret = 0; |
| 2500 | struct fs_path *p; |
| 2501 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2502 | btrfs_debug(fs_info, "send_chown %llu uid=%llu, gid=%llu", |
| 2503 | ino, uid, gid); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2504 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2505 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2506 | if (!p) |
| 2507 | return -ENOMEM; |
| 2508 | |
| 2509 | ret = begin_cmd(sctx, BTRFS_SEND_C_CHOWN); |
| 2510 | if (ret < 0) |
| 2511 | goto out; |
| 2512 | |
| 2513 | ret = get_cur_path(sctx, ino, gen, p); |
| 2514 | if (ret < 0) |
| 2515 | goto out; |
| 2516 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
| 2517 | TLV_PUT_U64(sctx, BTRFS_SEND_A_UID, uid); |
| 2518 | TLV_PUT_U64(sctx, BTRFS_SEND_A_GID, gid); |
| 2519 | |
| 2520 | ret = send_cmd(sctx); |
| 2521 | |
| 2522 | tlv_put_failure: |
| 2523 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2524 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2525 | return ret; |
| 2526 | } |
| 2527 | |
| 2528 | static int send_utimes(struct send_ctx *sctx, u64 ino, u64 gen) |
| 2529 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2530 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2531 | int ret = 0; |
| 2532 | struct fs_path *p = NULL; |
| 2533 | struct btrfs_inode_item *ii; |
| 2534 | struct btrfs_path *path = NULL; |
| 2535 | struct extent_buffer *eb; |
| 2536 | struct btrfs_key key; |
| 2537 | int slot; |
| 2538 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2539 | btrfs_debug(fs_info, "send_utimes %llu", ino); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2540 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2541 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2542 | if (!p) |
| 2543 | return -ENOMEM; |
| 2544 | |
| 2545 | path = alloc_path_for_send(); |
| 2546 | if (!path) { |
| 2547 | ret = -ENOMEM; |
| 2548 | goto out; |
| 2549 | } |
| 2550 | |
| 2551 | key.objectid = ino; |
| 2552 | key.type = BTRFS_INODE_ITEM_KEY; |
| 2553 | key.offset = 0; |
| 2554 | ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0); |
Filipe Manana | 15b253e | 2016-07-02 05:43:46 +0100 | [diff] [blame] | 2555 | if (ret > 0) |
| 2556 | ret = -ENOENT; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2557 | if (ret < 0) |
| 2558 | goto out; |
| 2559 | |
| 2560 | eb = path->nodes[0]; |
| 2561 | slot = path->slots[0]; |
| 2562 | ii = btrfs_item_ptr(eb, slot, struct btrfs_inode_item); |
| 2563 | |
| 2564 | ret = begin_cmd(sctx, BTRFS_SEND_C_UTIMES); |
| 2565 | if (ret < 0) |
| 2566 | goto out; |
| 2567 | |
| 2568 | ret = get_cur_path(sctx, ino, gen, p); |
| 2569 | if (ret < 0) |
| 2570 | goto out; |
| 2571 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 2572 | TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_ATIME, eb, &ii->atime); |
| 2573 | TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_MTIME, eb, &ii->mtime); |
| 2574 | TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_CTIME, eb, &ii->ctime); |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2575 | /* TODO Add otime support when the otime patches get into upstream */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2576 | |
| 2577 | ret = send_cmd(sctx); |
| 2578 | |
| 2579 | tlv_put_failure: |
| 2580 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2581 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2582 | btrfs_free_path(path); |
| 2583 | return ret; |
| 2584 | } |
| 2585 | |
| 2586 | /* |
| 2587 | * Sends a BTRFS_SEND_C_MKXXX or SYMLINK command to user space. We don't have |
| 2588 | * a valid path yet because we did not process the refs yet. So, the inode |
| 2589 | * is created as orphan. |
| 2590 | */ |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2591 | static int send_create_inode(struct send_ctx *sctx, u64 ino) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2592 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2593 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2594 | int ret = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2595 | struct fs_path *p; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2596 | int cmd; |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2597 | u64 gen; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2598 | u64 mode; |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2599 | u64 rdev; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2600 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 2601 | btrfs_debug(fs_info, "send_create_inode %llu", ino); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2602 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2603 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2604 | if (!p) |
| 2605 | return -ENOMEM; |
| 2606 | |
Liu Bo | 644d194 | 2014-02-27 17:29:01 +0800 | [diff] [blame] | 2607 | if (ino != sctx->cur_ino) { |
| 2608 | ret = get_inode_info(sctx->send_root, ino, NULL, &gen, &mode, |
| 2609 | NULL, NULL, &rdev); |
| 2610 | if (ret < 0) |
| 2611 | goto out; |
| 2612 | } else { |
| 2613 | gen = sctx->cur_inode_gen; |
| 2614 | mode = sctx->cur_inode_mode; |
| 2615 | rdev = sctx->cur_inode_rdev; |
| 2616 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2617 | |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2618 | if (S_ISREG(mode)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2619 | cmd = BTRFS_SEND_C_MKFILE; |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2620 | } else if (S_ISDIR(mode)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2621 | cmd = BTRFS_SEND_C_MKDIR; |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2622 | } else if (S_ISLNK(mode)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2623 | cmd = BTRFS_SEND_C_SYMLINK; |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2624 | } else if (S_ISCHR(mode) || S_ISBLK(mode)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2625 | cmd = BTRFS_SEND_C_MKNOD; |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2626 | } else if (S_ISFIFO(mode)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2627 | cmd = BTRFS_SEND_C_MKFIFO; |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2628 | } else if (S_ISSOCK(mode)) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2629 | cmd = BTRFS_SEND_C_MKSOCK; |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2630 | } else { |
David Sterba | f14d104 | 2015-10-08 11:37:06 +0200 | [diff] [blame] | 2631 | btrfs_warn(sctx->send_root->fs_info, "unexpected inode type %o", |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2632 | (int)(mode & S_IFMT)); |
Tsutomu Itoh | ca6842b | 2016-01-22 09:13:25 +0900 | [diff] [blame] | 2633 | ret = -EOPNOTSUPP; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2634 | goto out; |
| 2635 | } |
| 2636 | |
| 2637 | ret = begin_cmd(sctx, cmd); |
| 2638 | if (ret < 0) |
| 2639 | goto out; |
| 2640 | |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2641 | ret = gen_unique_name(sctx, ino, gen, p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2642 | if (ret < 0) |
| 2643 | goto out; |
| 2644 | |
| 2645 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2646 | TLV_PUT_U64(sctx, BTRFS_SEND_A_INO, ino); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2647 | |
| 2648 | if (S_ISLNK(mode)) { |
| 2649 | fs_path_reset(p); |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2650 | ret = read_symlink(sctx->send_root, ino, p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2651 | if (ret < 0) |
| 2652 | goto out; |
| 2653 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, p); |
| 2654 | } else if (S_ISCHR(mode) || S_ISBLK(mode) || |
| 2655 | S_ISFIFO(mode) || S_ISSOCK(mode)) { |
Arne Jansen | d79e504 | 2012-10-15 18:28:46 +0000 | [diff] [blame] | 2656 | TLV_PUT_U64(sctx, BTRFS_SEND_A_RDEV, new_encode_dev(rdev)); |
| 2657 | TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2658 | } |
| 2659 | |
| 2660 | ret = send_cmd(sctx); |
| 2661 | if (ret < 0) |
| 2662 | goto out; |
| 2663 | |
| 2664 | |
| 2665 | tlv_put_failure: |
| 2666 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2667 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2668 | return ret; |
| 2669 | } |
| 2670 | |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2671 | /* |
| 2672 | * We need some special handling for inodes that get processed before the parent |
| 2673 | * directory got created. See process_recorded_refs for details. |
| 2674 | * This function does the check if we already created the dir out of order. |
| 2675 | */ |
| 2676 | static int did_create_dir(struct send_ctx *sctx, u64 dir) |
| 2677 | { |
| 2678 | int ret = 0; |
| 2679 | struct btrfs_path *path = NULL; |
| 2680 | struct btrfs_key key; |
| 2681 | struct btrfs_key found_key; |
| 2682 | struct btrfs_key di_key; |
| 2683 | struct extent_buffer *eb; |
| 2684 | struct btrfs_dir_item *di; |
| 2685 | int slot; |
| 2686 | |
| 2687 | path = alloc_path_for_send(); |
| 2688 | if (!path) { |
| 2689 | ret = -ENOMEM; |
| 2690 | goto out; |
| 2691 | } |
| 2692 | |
| 2693 | key.objectid = dir; |
| 2694 | key.type = BTRFS_DIR_INDEX_KEY; |
| 2695 | key.offset = 0; |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 2696 | ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0); |
| 2697 | if (ret < 0) |
| 2698 | goto out; |
| 2699 | |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2700 | while (1) { |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 2701 | eb = path->nodes[0]; |
| 2702 | slot = path->slots[0]; |
| 2703 | if (slot >= btrfs_header_nritems(eb)) { |
| 2704 | ret = btrfs_next_leaf(sctx->send_root, path); |
| 2705 | if (ret < 0) { |
| 2706 | goto out; |
| 2707 | } else if (ret > 0) { |
| 2708 | ret = 0; |
| 2709 | break; |
| 2710 | } |
| 2711 | continue; |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2712 | } |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 2713 | |
| 2714 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 2715 | if (found_key.objectid != key.objectid || |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2716 | found_key.type != key.type) { |
| 2717 | ret = 0; |
| 2718 | goto out; |
| 2719 | } |
| 2720 | |
| 2721 | di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item); |
| 2722 | btrfs_dir_item_key_to_cpu(eb, di, &di_key); |
| 2723 | |
Josef Bacik | a052541 | 2013-08-12 10:56:14 -0400 | [diff] [blame] | 2724 | if (di_key.type != BTRFS_ROOT_ITEM_KEY && |
| 2725 | di_key.objectid < sctx->send_progress) { |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2726 | ret = 1; |
| 2727 | goto out; |
| 2728 | } |
| 2729 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 2730 | path->slots[0]++; |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 2731 | } |
| 2732 | |
| 2733 | out: |
| 2734 | btrfs_free_path(path); |
| 2735 | return ret; |
| 2736 | } |
| 2737 | |
| 2738 | /* |
| 2739 | * Only creates the inode if it is: |
| 2740 | * 1. Not a directory |
| 2741 | * 2. Or a directory which was not created already due to out of order |
| 2742 | * directories. See did_create_dir and process_recorded_refs for details. |
| 2743 | */ |
| 2744 | static int send_create_inode_if_needed(struct send_ctx *sctx) |
| 2745 | { |
| 2746 | int ret; |
| 2747 | |
| 2748 | if (S_ISDIR(sctx->cur_inode_mode)) { |
| 2749 | ret = did_create_dir(sctx, sctx->cur_ino); |
| 2750 | if (ret < 0) |
| 2751 | goto out; |
| 2752 | if (ret) { |
| 2753 | ret = 0; |
| 2754 | goto out; |
| 2755 | } |
| 2756 | } |
| 2757 | |
| 2758 | ret = send_create_inode(sctx, sctx->cur_ino); |
| 2759 | if (ret < 0) |
| 2760 | goto out; |
| 2761 | |
| 2762 | out: |
| 2763 | return ret; |
| 2764 | } |
| 2765 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2766 | struct recorded_ref { |
| 2767 | struct list_head list; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2768 | char *name; |
| 2769 | struct fs_path *full_path; |
| 2770 | u64 dir; |
| 2771 | u64 dir_gen; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2772 | int name_len; |
| 2773 | }; |
| 2774 | |
Filipe Manana | fdb1388 | 2017-06-13 14:13:11 +0100 | [diff] [blame] | 2775 | static void set_ref_path(struct recorded_ref *ref, struct fs_path *path) |
| 2776 | { |
| 2777 | ref->full_path = path; |
| 2778 | ref->name = (char *)kbasename(ref->full_path->start); |
| 2779 | ref->name_len = ref->full_path->end - ref->name; |
| 2780 | } |
| 2781 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2782 | /* |
| 2783 | * We need to process new refs before deleted refs, but compare_tree gives us |
| 2784 | * everything mixed. So we first record all refs and later process them. |
| 2785 | * This function is a helper to record one ref. |
| 2786 | */ |
Liu Bo | a4d96d6 | 2014-03-03 21:31:03 +0800 | [diff] [blame] | 2787 | static int __record_ref(struct list_head *head, u64 dir, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2788 | u64 dir_gen, struct fs_path *path) |
| 2789 | { |
| 2790 | struct recorded_ref *ref; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2791 | |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 2792 | ref = kmalloc(sizeof(*ref), GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2793 | if (!ref) |
| 2794 | return -ENOMEM; |
| 2795 | |
| 2796 | ref->dir = dir; |
| 2797 | ref->dir_gen = dir_gen; |
Filipe Manana | fdb1388 | 2017-06-13 14:13:11 +0100 | [diff] [blame] | 2798 | set_ref_path(ref, path); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2799 | list_add_tail(&ref->list, head); |
| 2800 | return 0; |
| 2801 | } |
| 2802 | |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 2803 | static int dup_ref(struct recorded_ref *ref, struct list_head *list) |
| 2804 | { |
| 2805 | struct recorded_ref *new; |
| 2806 | |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 2807 | new = kmalloc(sizeof(*ref), GFP_KERNEL); |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 2808 | if (!new) |
| 2809 | return -ENOMEM; |
| 2810 | |
| 2811 | new->dir = ref->dir; |
| 2812 | new->dir_gen = ref->dir_gen; |
| 2813 | new->full_path = NULL; |
| 2814 | INIT_LIST_HEAD(&new->list); |
| 2815 | list_add_tail(&new->list, list); |
| 2816 | return 0; |
| 2817 | } |
| 2818 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2819 | static void __free_recorded_refs(struct list_head *head) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2820 | { |
| 2821 | struct recorded_ref *cur; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2822 | |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2823 | while (!list_empty(head)) { |
| 2824 | cur = list_entry(head->next, struct recorded_ref, list); |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2825 | fs_path_free(cur->full_path); |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 2826 | list_del(&cur->list); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2827 | kfree(cur); |
| 2828 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2829 | } |
| 2830 | |
| 2831 | static void free_recorded_refs(struct send_ctx *sctx) |
| 2832 | { |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2833 | __free_recorded_refs(&sctx->new_refs); |
| 2834 | __free_recorded_refs(&sctx->deleted_refs); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2835 | } |
| 2836 | |
| 2837 | /* |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 2838 | * Renames/moves a file/dir to its orphan name. Used when the first |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2839 | * ref of an unprocessed inode gets overwritten and for all non empty |
| 2840 | * directories. |
| 2841 | */ |
| 2842 | static int orphanize_inode(struct send_ctx *sctx, u64 ino, u64 gen, |
| 2843 | struct fs_path *path) |
| 2844 | { |
| 2845 | int ret; |
| 2846 | struct fs_path *orphan; |
| 2847 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2848 | orphan = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2849 | if (!orphan) |
| 2850 | return -ENOMEM; |
| 2851 | |
| 2852 | ret = gen_unique_name(sctx, ino, gen, orphan); |
| 2853 | if (ret < 0) |
| 2854 | goto out; |
| 2855 | |
| 2856 | ret = send_rename(sctx, path, orphan); |
| 2857 | |
| 2858 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 2859 | fs_path_free(orphan); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2860 | return ret; |
| 2861 | } |
| 2862 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2863 | static struct orphan_dir_info * |
| 2864 | add_orphan_dir_info(struct send_ctx *sctx, u64 dir_ino) |
| 2865 | { |
| 2866 | struct rb_node **p = &sctx->orphan_dirs.rb_node; |
| 2867 | struct rb_node *parent = NULL; |
| 2868 | struct orphan_dir_info *entry, *odi; |
| 2869 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2870 | while (*p) { |
| 2871 | parent = *p; |
| 2872 | entry = rb_entry(parent, struct orphan_dir_info, node); |
| 2873 | if (dir_ino < entry->ino) { |
| 2874 | p = &(*p)->rb_left; |
| 2875 | } else if (dir_ino > entry->ino) { |
| 2876 | p = &(*p)->rb_right; |
| 2877 | } else { |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2878 | return entry; |
| 2879 | } |
| 2880 | } |
| 2881 | |
Robbie Ko | 35c8eda | 2018-05-08 18:11:37 +0800 | [diff] [blame] | 2882 | odi = kmalloc(sizeof(*odi), GFP_KERNEL); |
| 2883 | if (!odi) |
| 2884 | return ERR_PTR(-ENOMEM); |
| 2885 | odi->ino = dir_ino; |
| 2886 | odi->gen = 0; |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 2887 | odi->last_dir_index_offset = 0; |
Robbie Ko | 35c8eda | 2018-05-08 18:11:37 +0800 | [diff] [blame] | 2888 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2889 | rb_link_node(&odi->node, parent, p); |
| 2890 | rb_insert_color(&odi->node, &sctx->orphan_dirs); |
| 2891 | return odi; |
| 2892 | } |
| 2893 | |
| 2894 | static struct orphan_dir_info * |
| 2895 | get_orphan_dir_info(struct send_ctx *sctx, u64 dir_ino) |
| 2896 | { |
| 2897 | struct rb_node *n = sctx->orphan_dirs.rb_node; |
| 2898 | struct orphan_dir_info *entry; |
| 2899 | |
| 2900 | while (n) { |
| 2901 | entry = rb_entry(n, struct orphan_dir_info, node); |
| 2902 | if (dir_ino < entry->ino) |
| 2903 | n = n->rb_left; |
| 2904 | else if (dir_ino > entry->ino) |
| 2905 | n = n->rb_right; |
| 2906 | else |
| 2907 | return entry; |
| 2908 | } |
| 2909 | return NULL; |
| 2910 | } |
| 2911 | |
| 2912 | static int is_waiting_for_rm(struct send_ctx *sctx, u64 dir_ino) |
| 2913 | { |
| 2914 | struct orphan_dir_info *odi = get_orphan_dir_info(sctx, dir_ino); |
| 2915 | |
| 2916 | return odi != NULL; |
| 2917 | } |
| 2918 | |
| 2919 | static void free_orphan_dir_info(struct send_ctx *sctx, |
| 2920 | struct orphan_dir_info *odi) |
| 2921 | { |
| 2922 | if (!odi) |
| 2923 | return; |
| 2924 | rb_erase(&odi->node, &sctx->orphan_dirs); |
| 2925 | kfree(odi); |
| 2926 | } |
| 2927 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2928 | /* |
| 2929 | * Returns 1 if a directory can be removed at this point in time. |
| 2930 | * We check this by iterating all dir items and checking if the inode behind |
| 2931 | * the dir item was already processed. |
| 2932 | */ |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2933 | static int can_rmdir(struct send_ctx *sctx, u64 dir, u64 dir_gen, |
| 2934 | u64 send_progress) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2935 | { |
| 2936 | int ret = 0; |
| 2937 | struct btrfs_root *root = sctx->parent_root; |
| 2938 | struct btrfs_path *path; |
| 2939 | struct btrfs_key key; |
| 2940 | struct btrfs_key found_key; |
| 2941 | struct btrfs_key loc; |
| 2942 | struct btrfs_dir_item *di; |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 2943 | struct orphan_dir_info *odi = NULL; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2944 | |
Alexander Block | 6d85ed05 | 2012-08-01 14:48:59 +0200 | [diff] [blame] | 2945 | /* |
| 2946 | * Don't try to rmdir the top/root subvolume dir. |
| 2947 | */ |
| 2948 | if (dir == BTRFS_FIRST_FREE_OBJECTID) |
| 2949 | return 0; |
| 2950 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2951 | path = alloc_path_for_send(); |
| 2952 | if (!path) |
| 2953 | return -ENOMEM; |
| 2954 | |
| 2955 | key.objectid = dir; |
| 2956 | key.type = BTRFS_DIR_INDEX_KEY; |
| 2957 | key.offset = 0; |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 2958 | |
| 2959 | odi = get_orphan_dir_info(sctx, dir); |
| 2960 | if (odi) |
| 2961 | key.offset = odi->last_dir_index_offset; |
| 2962 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 2963 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 2964 | if (ret < 0) |
| 2965 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2966 | |
| 2967 | while (1) { |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2968 | struct waiting_dir_move *dm; |
| 2969 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 2970 | if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) { |
| 2971 | ret = btrfs_next_leaf(root, path); |
| 2972 | if (ret < 0) |
| 2973 | goto out; |
| 2974 | else if (ret > 0) |
| 2975 | break; |
| 2976 | continue; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2977 | } |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 2978 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 2979 | path->slots[0]); |
| 2980 | if (found_key.objectid != key.objectid || |
| 2981 | found_key.type != key.type) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2982 | break; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 2983 | |
| 2984 | di = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2985 | struct btrfs_dir_item); |
| 2986 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &loc); |
| 2987 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2988 | dm = get_waiting_dir_move(sctx, loc.objectid); |
| 2989 | if (dm) { |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2990 | odi = add_orphan_dir_info(sctx, dir); |
| 2991 | if (IS_ERR(odi)) { |
| 2992 | ret = PTR_ERR(odi); |
| 2993 | goto out; |
| 2994 | } |
| 2995 | odi->gen = dir_gen; |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 2996 | odi->last_dir_index_offset = found_key.offset; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 2997 | dm->rmdir_ino = dir; |
| 2998 | ret = 0; |
| 2999 | goto out; |
| 3000 | } |
| 3001 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3002 | if (loc.objectid > send_progress) { |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 3003 | odi = add_orphan_dir_info(sctx, dir); |
| 3004 | if (IS_ERR(odi)) { |
| 3005 | ret = PTR_ERR(odi); |
| 3006 | goto out; |
| 3007 | } |
| 3008 | odi->gen = dir_gen; |
| 3009 | odi->last_dir_index_offset = found_key.offset; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3010 | ret = 0; |
| 3011 | goto out; |
| 3012 | } |
| 3013 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 3014 | path->slots[0]++; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3015 | } |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 3016 | free_orphan_dir_info(sctx, odi); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3017 | |
| 3018 | ret = 1; |
| 3019 | |
| 3020 | out: |
| 3021 | btrfs_free_path(path); |
| 3022 | return ret; |
| 3023 | } |
| 3024 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3025 | static int is_waiting_for_move(struct send_ctx *sctx, u64 ino) |
| 3026 | { |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3027 | struct waiting_dir_move *entry = get_waiting_dir_move(sctx, ino); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3028 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3029 | return entry != NULL; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3030 | } |
| 3031 | |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 3032 | static int add_waiting_dir_move(struct send_ctx *sctx, u64 ino, bool orphanized) |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3033 | { |
| 3034 | struct rb_node **p = &sctx->waiting_dir_moves.rb_node; |
| 3035 | struct rb_node *parent = NULL; |
| 3036 | struct waiting_dir_move *entry, *dm; |
| 3037 | |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 3038 | dm = kmalloc(sizeof(*dm), GFP_KERNEL); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3039 | if (!dm) |
| 3040 | return -ENOMEM; |
| 3041 | dm->ino = ino; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3042 | dm->rmdir_ino = 0; |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 3043 | dm->orphanized = orphanized; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3044 | |
| 3045 | while (*p) { |
| 3046 | parent = *p; |
| 3047 | entry = rb_entry(parent, struct waiting_dir_move, node); |
| 3048 | if (ino < entry->ino) { |
| 3049 | p = &(*p)->rb_left; |
| 3050 | } else if (ino > entry->ino) { |
| 3051 | p = &(*p)->rb_right; |
| 3052 | } else { |
| 3053 | kfree(dm); |
| 3054 | return -EEXIST; |
| 3055 | } |
| 3056 | } |
| 3057 | |
| 3058 | rb_link_node(&dm->node, parent, p); |
| 3059 | rb_insert_color(&dm->node, &sctx->waiting_dir_moves); |
| 3060 | return 0; |
| 3061 | } |
| 3062 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3063 | static struct waiting_dir_move * |
| 3064 | get_waiting_dir_move(struct send_ctx *sctx, u64 ino) |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3065 | { |
| 3066 | struct rb_node *n = sctx->waiting_dir_moves.rb_node; |
| 3067 | struct waiting_dir_move *entry; |
| 3068 | |
| 3069 | while (n) { |
| 3070 | entry = rb_entry(n, struct waiting_dir_move, node); |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3071 | if (ino < entry->ino) |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3072 | n = n->rb_left; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3073 | else if (ino > entry->ino) |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3074 | n = n->rb_right; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3075 | else |
| 3076 | return entry; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3077 | } |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3078 | return NULL; |
| 3079 | } |
| 3080 | |
| 3081 | static void free_waiting_dir_move(struct send_ctx *sctx, |
| 3082 | struct waiting_dir_move *dm) |
| 3083 | { |
| 3084 | if (!dm) |
| 3085 | return; |
| 3086 | rb_erase(&dm->node, &sctx->waiting_dir_moves); |
| 3087 | kfree(dm); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3088 | } |
| 3089 | |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3090 | static int add_pending_dir_move(struct send_ctx *sctx, |
| 3091 | u64 ino, |
| 3092 | u64 ino_gen, |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3093 | u64 parent_ino, |
| 3094 | struct list_head *new_refs, |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3095 | struct list_head *deleted_refs, |
| 3096 | const bool is_orphan) |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3097 | { |
| 3098 | struct rb_node **p = &sctx->pending_dir_moves.rb_node; |
| 3099 | struct rb_node *parent = NULL; |
Chris Mason | 73b802f | 2014-03-21 15:30:44 -0700 | [diff] [blame] | 3100 | struct pending_dir_move *entry = NULL, *pm; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3101 | struct recorded_ref *cur; |
| 3102 | int exists = 0; |
| 3103 | int ret; |
| 3104 | |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 3105 | pm = kmalloc(sizeof(*pm), GFP_KERNEL); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3106 | if (!pm) |
| 3107 | return -ENOMEM; |
| 3108 | pm->parent_ino = parent_ino; |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3109 | pm->ino = ino; |
| 3110 | pm->gen = ino_gen; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3111 | INIT_LIST_HEAD(&pm->list); |
| 3112 | INIT_LIST_HEAD(&pm->update_refs); |
| 3113 | RB_CLEAR_NODE(&pm->node); |
| 3114 | |
| 3115 | while (*p) { |
| 3116 | parent = *p; |
| 3117 | entry = rb_entry(parent, struct pending_dir_move, node); |
| 3118 | if (parent_ino < entry->parent_ino) { |
| 3119 | p = &(*p)->rb_left; |
| 3120 | } else if (parent_ino > entry->parent_ino) { |
| 3121 | p = &(*p)->rb_right; |
| 3122 | } else { |
| 3123 | exists = 1; |
| 3124 | break; |
| 3125 | } |
| 3126 | } |
| 3127 | |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3128 | list_for_each_entry(cur, deleted_refs, list) { |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3129 | ret = dup_ref(cur, &pm->update_refs); |
| 3130 | if (ret < 0) |
| 3131 | goto out; |
| 3132 | } |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3133 | list_for_each_entry(cur, new_refs, list) { |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3134 | ret = dup_ref(cur, &pm->update_refs); |
| 3135 | if (ret < 0) |
| 3136 | goto out; |
| 3137 | } |
| 3138 | |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 3139 | ret = add_waiting_dir_move(sctx, pm->ino, is_orphan); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3140 | if (ret) |
| 3141 | goto out; |
| 3142 | |
| 3143 | if (exists) { |
| 3144 | list_add_tail(&pm->list, &entry->list); |
| 3145 | } else { |
| 3146 | rb_link_node(&pm->node, parent, p); |
| 3147 | rb_insert_color(&pm->node, &sctx->pending_dir_moves); |
| 3148 | } |
| 3149 | ret = 0; |
| 3150 | out: |
| 3151 | if (ret) { |
| 3152 | __free_recorded_refs(&pm->update_refs); |
| 3153 | kfree(pm); |
| 3154 | } |
| 3155 | return ret; |
| 3156 | } |
| 3157 | |
| 3158 | static struct pending_dir_move *get_pending_dir_moves(struct send_ctx *sctx, |
| 3159 | u64 parent_ino) |
| 3160 | { |
| 3161 | struct rb_node *n = sctx->pending_dir_moves.rb_node; |
| 3162 | struct pending_dir_move *entry; |
| 3163 | |
| 3164 | while (n) { |
| 3165 | entry = rb_entry(n, struct pending_dir_move, node); |
| 3166 | if (parent_ino < entry->parent_ino) |
| 3167 | n = n->rb_left; |
| 3168 | else if (parent_ino > entry->parent_ino) |
| 3169 | n = n->rb_right; |
| 3170 | else |
| 3171 | return entry; |
| 3172 | } |
| 3173 | return NULL; |
| 3174 | } |
| 3175 | |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3176 | static int path_loop(struct send_ctx *sctx, struct fs_path *name, |
| 3177 | u64 ino, u64 gen, u64 *ancestor_ino) |
| 3178 | { |
| 3179 | int ret = 0; |
| 3180 | u64 parent_inode = 0; |
| 3181 | u64 parent_gen = 0; |
| 3182 | u64 start_ino = ino; |
| 3183 | |
| 3184 | *ancestor_ino = 0; |
| 3185 | while (ino != BTRFS_FIRST_FREE_OBJECTID) { |
| 3186 | fs_path_reset(name); |
| 3187 | |
| 3188 | if (is_waiting_for_rm(sctx, ino)) |
| 3189 | break; |
| 3190 | if (is_waiting_for_move(sctx, ino)) { |
| 3191 | if (*ancestor_ino == 0) |
| 3192 | *ancestor_ino = ino; |
| 3193 | ret = get_first_ref(sctx->parent_root, ino, |
| 3194 | &parent_inode, &parent_gen, name); |
| 3195 | } else { |
| 3196 | ret = __get_cur_name_and_parent(sctx, ino, gen, |
| 3197 | &parent_inode, |
| 3198 | &parent_gen, name); |
| 3199 | if (ret > 0) { |
| 3200 | ret = 0; |
| 3201 | break; |
| 3202 | } |
| 3203 | } |
| 3204 | if (ret < 0) |
| 3205 | break; |
| 3206 | if (parent_inode == start_ino) { |
| 3207 | ret = 1; |
| 3208 | if (*ancestor_ino == 0) |
| 3209 | *ancestor_ino = ino; |
| 3210 | break; |
| 3211 | } |
| 3212 | ino = parent_inode; |
| 3213 | gen = parent_gen; |
| 3214 | } |
| 3215 | return ret; |
| 3216 | } |
| 3217 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3218 | static int apply_dir_move(struct send_ctx *sctx, struct pending_dir_move *pm) |
| 3219 | { |
| 3220 | struct fs_path *from_path = NULL; |
| 3221 | struct fs_path *to_path = NULL; |
Filipe Manana | 2b863a1 | 2014-02-16 13:43:11 +0000 | [diff] [blame] | 3222 | struct fs_path *name = NULL; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3223 | u64 orig_progress = sctx->send_progress; |
| 3224 | struct recorded_ref *cur; |
Filipe Manana | 2b863a1 | 2014-02-16 13:43:11 +0000 | [diff] [blame] | 3225 | u64 parent_ino, parent_gen; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3226 | struct waiting_dir_move *dm = NULL; |
| 3227 | u64 rmdir_ino = 0; |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3228 | u64 ancestor; |
| 3229 | bool is_orphan; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3230 | int ret; |
| 3231 | |
Filipe Manana | 2b863a1 | 2014-02-16 13:43:11 +0000 | [diff] [blame] | 3232 | name = fs_path_alloc(); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3233 | from_path = fs_path_alloc(); |
Filipe Manana | 2b863a1 | 2014-02-16 13:43:11 +0000 | [diff] [blame] | 3234 | if (!name || !from_path) { |
| 3235 | ret = -ENOMEM; |
| 3236 | goto out; |
| 3237 | } |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3238 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3239 | dm = get_waiting_dir_move(sctx, pm->ino); |
| 3240 | ASSERT(dm); |
| 3241 | rmdir_ino = dm->rmdir_ino; |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3242 | is_orphan = dm->orphanized; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3243 | free_waiting_dir_move(sctx, dm); |
Filipe Manana | 2b863a1 | 2014-02-16 13:43:11 +0000 | [diff] [blame] | 3244 | |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3245 | if (is_orphan) { |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3246 | ret = gen_unique_name(sctx, pm->ino, |
| 3247 | pm->gen, from_path); |
| 3248 | } else { |
| 3249 | ret = get_first_ref(sctx->parent_root, pm->ino, |
| 3250 | &parent_ino, &parent_gen, name); |
| 3251 | if (ret < 0) |
| 3252 | goto out; |
| 3253 | ret = get_cur_path(sctx, parent_ino, parent_gen, |
| 3254 | from_path); |
| 3255 | if (ret < 0) |
| 3256 | goto out; |
| 3257 | ret = fs_path_add_path(from_path, name); |
| 3258 | } |
Filipe Manana | c992ec9 | 2014-03-22 17:15:24 +0000 | [diff] [blame] | 3259 | if (ret < 0) |
| 3260 | goto out; |
| 3261 | |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3262 | sctx->send_progress = sctx->cur_ino + 1; |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3263 | ret = path_loop(sctx, name, pm->ino, pm->gen, &ancestor); |
Filipe Manana | 7969e77 | 2016-06-17 17:13:36 +0100 | [diff] [blame] | 3264 | if (ret < 0) |
| 3265 | goto out; |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3266 | if (ret) { |
| 3267 | LIST_HEAD(deleted_refs); |
| 3268 | ASSERT(ancestor > BTRFS_FIRST_FREE_OBJECTID); |
| 3269 | ret = add_pending_dir_move(sctx, pm->ino, pm->gen, ancestor, |
| 3270 | &pm->update_refs, &deleted_refs, |
| 3271 | is_orphan); |
| 3272 | if (ret < 0) |
| 3273 | goto out; |
| 3274 | if (rmdir_ino) { |
| 3275 | dm = get_waiting_dir_move(sctx, pm->ino); |
| 3276 | ASSERT(dm); |
| 3277 | dm->rmdir_ino = rmdir_ino; |
| 3278 | } |
| 3279 | goto out; |
| 3280 | } |
Filipe Manana | c992ec9 | 2014-03-22 17:15:24 +0000 | [diff] [blame] | 3281 | fs_path_reset(name); |
| 3282 | to_path = name; |
| 3283 | name = NULL; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3284 | ret = get_cur_path(sctx, pm->ino, pm->gen, to_path); |
| 3285 | if (ret < 0) |
| 3286 | goto out; |
| 3287 | |
| 3288 | ret = send_rename(sctx, from_path, to_path); |
| 3289 | if (ret < 0) |
| 3290 | goto out; |
| 3291 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3292 | if (rmdir_ino) { |
| 3293 | struct orphan_dir_info *odi; |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 3294 | u64 gen; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3295 | |
| 3296 | odi = get_orphan_dir_info(sctx, rmdir_ino); |
| 3297 | if (!odi) { |
| 3298 | /* already deleted */ |
| 3299 | goto finish; |
| 3300 | } |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 3301 | gen = odi->gen; |
| 3302 | |
| 3303 | ret = can_rmdir(sctx, rmdir_ino, gen, sctx->cur_ino); |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3304 | if (ret < 0) |
| 3305 | goto out; |
| 3306 | if (!ret) |
| 3307 | goto finish; |
| 3308 | |
| 3309 | name = fs_path_alloc(); |
| 3310 | if (!name) { |
| 3311 | ret = -ENOMEM; |
| 3312 | goto out; |
| 3313 | } |
Robbie Ko | 0f96f51 | 2018-05-08 18:11:38 +0800 | [diff] [blame] | 3314 | ret = get_cur_path(sctx, rmdir_ino, gen, name); |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3315 | if (ret < 0) |
| 3316 | goto out; |
| 3317 | ret = send_rmdir(sctx, name); |
| 3318 | if (ret < 0) |
| 3319 | goto out; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3320 | } |
| 3321 | |
| 3322 | finish: |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3323 | ret = send_utimes(sctx, pm->ino, pm->gen); |
| 3324 | if (ret < 0) |
| 3325 | goto out; |
| 3326 | |
| 3327 | /* |
| 3328 | * After rename/move, need to update the utimes of both new parent(s) |
| 3329 | * and old parent(s). |
| 3330 | */ |
| 3331 | list_for_each_entry(cur, &pm->update_refs, list) { |
Robbie Ko | 764433a | 2015-06-23 18:39:50 +0800 | [diff] [blame] | 3332 | /* |
| 3333 | * The parent inode might have been deleted in the send snapshot |
| 3334 | */ |
| 3335 | ret = get_inode_info(sctx->send_root, cur->dir, NULL, |
| 3336 | NULL, NULL, NULL, NULL, NULL); |
| 3337 | if (ret == -ENOENT) { |
| 3338 | ret = 0; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 3339 | continue; |
Robbie Ko | 764433a | 2015-06-23 18:39:50 +0800 | [diff] [blame] | 3340 | } |
| 3341 | if (ret < 0) |
| 3342 | goto out; |
| 3343 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3344 | ret = send_utimes(sctx, cur->dir, cur->dir_gen); |
| 3345 | if (ret < 0) |
| 3346 | goto out; |
| 3347 | } |
| 3348 | |
| 3349 | out: |
Filipe Manana | 2b863a1 | 2014-02-16 13:43:11 +0000 | [diff] [blame] | 3350 | fs_path_free(name); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3351 | fs_path_free(from_path); |
| 3352 | fs_path_free(to_path); |
| 3353 | sctx->send_progress = orig_progress; |
| 3354 | |
| 3355 | return ret; |
| 3356 | } |
| 3357 | |
| 3358 | static void free_pending_move(struct send_ctx *sctx, struct pending_dir_move *m) |
| 3359 | { |
| 3360 | if (!list_empty(&m->list)) |
| 3361 | list_del(&m->list); |
| 3362 | if (!RB_EMPTY_NODE(&m->node)) |
| 3363 | rb_erase(&m->node, &sctx->pending_dir_moves); |
| 3364 | __free_recorded_refs(&m->update_refs); |
| 3365 | kfree(m); |
| 3366 | } |
| 3367 | |
Robbie Ko | a4390ae | 2018-11-14 18:32:37 +0000 | [diff] [blame] | 3368 | static void tail_append_pending_moves(struct send_ctx *sctx, |
| 3369 | struct pending_dir_move *moves, |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3370 | struct list_head *stack) |
| 3371 | { |
| 3372 | if (list_empty(&moves->list)) { |
| 3373 | list_add_tail(&moves->list, stack); |
| 3374 | } else { |
| 3375 | LIST_HEAD(list); |
| 3376 | list_splice_init(&moves->list, &list); |
| 3377 | list_add_tail(&moves->list, stack); |
| 3378 | list_splice_tail(&list, stack); |
| 3379 | } |
Robbie Ko | a4390ae | 2018-11-14 18:32:37 +0000 | [diff] [blame] | 3380 | if (!RB_EMPTY_NODE(&moves->node)) { |
| 3381 | rb_erase(&moves->node, &sctx->pending_dir_moves); |
| 3382 | RB_CLEAR_NODE(&moves->node); |
| 3383 | } |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3384 | } |
| 3385 | |
| 3386 | static int apply_children_dir_moves(struct send_ctx *sctx) |
| 3387 | { |
| 3388 | struct pending_dir_move *pm; |
| 3389 | struct list_head stack; |
| 3390 | u64 parent_ino = sctx->cur_ino; |
| 3391 | int ret = 0; |
| 3392 | |
| 3393 | pm = get_pending_dir_moves(sctx, parent_ino); |
| 3394 | if (!pm) |
| 3395 | return 0; |
| 3396 | |
| 3397 | INIT_LIST_HEAD(&stack); |
Robbie Ko | a4390ae | 2018-11-14 18:32:37 +0000 | [diff] [blame] | 3398 | tail_append_pending_moves(sctx, pm, &stack); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3399 | |
| 3400 | while (!list_empty(&stack)) { |
| 3401 | pm = list_first_entry(&stack, struct pending_dir_move, list); |
| 3402 | parent_ino = pm->ino; |
| 3403 | ret = apply_dir_move(sctx, pm); |
| 3404 | free_pending_move(sctx, pm); |
| 3405 | if (ret) |
| 3406 | goto out; |
| 3407 | pm = get_pending_dir_moves(sctx, parent_ino); |
| 3408 | if (pm) |
Robbie Ko | a4390ae | 2018-11-14 18:32:37 +0000 | [diff] [blame] | 3409 | tail_append_pending_moves(sctx, pm, &stack); |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3410 | } |
| 3411 | return 0; |
| 3412 | |
| 3413 | out: |
| 3414 | while (!list_empty(&stack)) { |
| 3415 | pm = list_first_entry(&stack, struct pending_dir_move, list); |
| 3416 | free_pending_move(sctx, pm); |
| 3417 | } |
| 3418 | return ret; |
| 3419 | } |
| 3420 | |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3421 | /* |
| 3422 | * We might need to delay a directory rename even when no ancestor directory |
| 3423 | * (in the send root) with a higher inode number than ours (sctx->cur_ino) was |
| 3424 | * renamed. This happens when we rename a directory to the old name (the name |
| 3425 | * in the parent root) of some other unrelated directory that got its rename |
| 3426 | * delayed due to some ancestor with higher number that got renamed. |
| 3427 | * |
| 3428 | * Example: |
| 3429 | * |
| 3430 | * Parent snapshot: |
| 3431 | * . (ino 256) |
| 3432 | * |---- a/ (ino 257) |
| 3433 | * | |---- file (ino 260) |
| 3434 | * | |
| 3435 | * |---- b/ (ino 258) |
| 3436 | * |---- c/ (ino 259) |
| 3437 | * |
| 3438 | * Send snapshot: |
| 3439 | * . (ino 256) |
| 3440 | * |---- a/ (ino 258) |
| 3441 | * |---- x/ (ino 259) |
| 3442 | * |---- y/ (ino 257) |
| 3443 | * |----- file (ino 260) |
| 3444 | * |
| 3445 | * Here we can not rename 258 from 'b' to 'a' without the rename of inode 257 |
| 3446 | * from 'a' to 'x/y' happening first, which in turn depends on the rename of |
| 3447 | * inode 259 from 'c' to 'x'. So the order of rename commands the send stream |
| 3448 | * must issue is: |
| 3449 | * |
| 3450 | * 1 - rename 259 from 'c' to 'x' |
| 3451 | * 2 - rename 257 from 'a' to 'x/y' |
| 3452 | * 3 - rename 258 from 'b' to 'a' |
| 3453 | * |
| 3454 | * Returns 1 if the rename of sctx->cur_ino needs to be delayed, 0 if it can |
| 3455 | * be done right away and < 0 on error. |
| 3456 | */ |
| 3457 | static int wait_for_dest_dir_move(struct send_ctx *sctx, |
| 3458 | struct recorded_ref *parent_ref, |
| 3459 | const bool is_orphan) |
| 3460 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3461 | struct btrfs_fs_info *fs_info = sctx->parent_root->fs_info; |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3462 | struct btrfs_path *path; |
| 3463 | struct btrfs_key key; |
| 3464 | struct btrfs_key di_key; |
| 3465 | struct btrfs_dir_item *di; |
| 3466 | u64 left_gen; |
| 3467 | u64 right_gen; |
| 3468 | int ret = 0; |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3469 | struct waiting_dir_move *wdm; |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3470 | |
| 3471 | if (RB_EMPTY_ROOT(&sctx->waiting_dir_moves)) |
| 3472 | return 0; |
| 3473 | |
| 3474 | path = alloc_path_for_send(); |
| 3475 | if (!path) |
| 3476 | return -ENOMEM; |
| 3477 | |
| 3478 | key.objectid = parent_ref->dir; |
| 3479 | key.type = BTRFS_DIR_ITEM_KEY; |
| 3480 | key.offset = btrfs_name_hash(parent_ref->name, parent_ref->name_len); |
| 3481 | |
| 3482 | ret = btrfs_search_slot(NULL, sctx->parent_root, &key, path, 0, 0); |
| 3483 | if (ret < 0) { |
| 3484 | goto out; |
| 3485 | } else if (ret > 0) { |
| 3486 | ret = 0; |
| 3487 | goto out; |
| 3488 | } |
| 3489 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3490 | di = btrfs_match_dir_item_name(fs_info, path, parent_ref->name, |
| 3491 | parent_ref->name_len); |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3492 | if (!di) { |
| 3493 | ret = 0; |
| 3494 | goto out; |
| 3495 | } |
| 3496 | /* |
| 3497 | * di_key.objectid has the number of the inode that has a dentry in the |
| 3498 | * parent directory with the same name that sctx->cur_ino is being |
| 3499 | * renamed to. We need to check if that inode is in the send root as |
| 3500 | * well and if it is currently marked as an inode with a pending rename, |
| 3501 | * if it is, we need to delay the rename of sctx->cur_ino as well, so |
| 3502 | * that it happens after that other inode is renamed. |
| 3503 | */ |
| 3504 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &di_key); |
| 3505 | if (di_key.type != BTRFS_INODE_ITEM_KEY) { |
| 3506 | ret = 0; |
| 3507 | goto out; |
| 3508 | } |
| 3509 | |
| 3510 | ret = get_inode_info(sctx->parent_root, di_key.objectid, NULL, |
| 3511 | &left_gen, NULL, NULL, NULL, NULL); |
| 3512 | if (ret < 0) |
| 3513 | goto out; |
| 3514 | ret = get_inode_info(sctx->send_root, di_key.objectid, NULL, |
| 3515 | &right_gen, NULL, NULL, NULL, NULL); |
| 3516 | if (ret < 0) { |
| 3517 | if (ret == -ENOENT) |
| 3518 | ret = 0; |
| 3519 | goto out; |
| 3520 | } |
| 3521 | |
| 3522 | /* Different inode, no need to delay the rename of sctx->cur_ino */ |
| 3523 | if (right_gen != left_gen) { |
| 3524 | ret = 0; |
| 3525 | goto out; |
| 3526 | } |
| 3527 | |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3528 | wdm = get_waiting_dir_move(sctx, di_key.objectid); |
| 3529 | if (wdm && !wdm->orphanized) { |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3530 | ret = add_pending_dir_move(sctx, |
| 3531 | sctx->cur_ino, |
| 3532 | sctx->cur_inode_gen, |
| 3533 | di_key.objectid, |
| 3534 | &sctx->new_refs, |
| 3535 | &sctx->deleted_refs, |
| 3536 | is_orphan); |
| 3537 | if (!ret) |
| 3538 | ret = 1; |
| 3539 | } |
| 3540 | out: |
| 3541 | btrfs_free_path(path); |
| 3542 | return ret; |
| 3543 | } |
| 3544 | |
Filipe Manana | 80aa602 | 2015-03-27 17:50:45 +0000 | [diff] [blame] | 3545 | /* |
Filipe Manana | ea37d59 | 2017-11-17 01:54:00 +0000 | [diff] [blame] | 3546 | * Check if inode ino2, or any of its ancestors, is inode ino1. |
| 3547 | * Return 1 if true, 0 if false and < 0 on error. |
| 3548 | */ |
| 3549 | static int check_ino_in_path(struct btrfs_root *root, |
| 3550 | const u64 ino1, |
| 3551 | const u64 ino1_gen, |
| 3552 | const u64 ino2, |
| 3553 | const u64 ino2_gen, |
| 3554 | struct fs_path *fs_path) |
| 3555 | { |
| 3556 | u64 ino = ino2; |
| 3557 | |
| 3558 | if (ino1 == ino2) |
| 3559 | return ino1_gen == ino2_gen; |
| 3560 | |
| 3561 | while (ino > BTRFS_FIRST_FREE_OBJECTID) { |
| 3562 | u64 parent; |
| 3563 | u64 parent_gen; |
| 3564 | int ret; |
| 3565 | |
| 3566 | fs_path_reset(fs_path); |
| 3567 | ret = get_first_ref(root, ino, &parent, &parent_gen, fs_path); |
| 3568 | if (ret < 0) |
| 3569 | return ret; |
| 3570 | if (parent == ino1) |
| 3571 | return parent_gen == ino1_gen; |
| 3572 | ino = parent; |
| 3573 | } |
| 3574 | return 0; |
| 3575 | } |
| 3576 | |
| 3577 | /* |
| 3578 | * Check if ino ino1 is an ancestor of inode ino2 in the given root for any |
| 3579 | * possible path (in case ino2 is not a directory and has multiple hard links). |
Filipe Manana | 80aa602 | 2015-03-27 17:50:45 +0000 | [diff] [blame] | 3580 | * Return 1 if true, 0 if false and < 0 on error. |
| 3581 | */ |
| 3582 | static int is_ancestor(struct btrfs_root *root, |
| 3583 | const u64 ino1, |
| 3584 | const u64 ino1_gen, |
| 3585 | const u64 ino2, |
| 3586 | struct fs_path *fs_path) |
| 3587 | { |
Filipe Manana | ea37d59 | 2017-11-17 01:54:00 +0000 | [diff] [blame] | 3588 | bool free_fs_path = false; |
Filipe Manana | 72c3668 | 2017-06-07 11:41:29 +0100 | [diff] [blame] | 3589 | int ret = 0; |
Filipe Manana | ea37d59 | 2017-11-17 01:54:00 +0000 | [diff] [blame] | 3590 | struct btrfs_path *path = NULL; |
| 3591 | struct btrfs_key key; |
Filipe Manana | 72c3668 | 2017-06-07 11:41:29 +0100 | [diff] [blame] | 3592 | |
| 3593 | if (!fs_path) { |
| 3594 | fs_path = fs_path_alloc(); |
| 3595 | if (!fs_path) |
| 3596 | return -ENOMEM; |
Filipe Manana | ea37d59 | 2017-11-17 01:54:00 +0000 | [diff] [blame] | 3597 | free_fs_path = true; |
Filipe Manana | 72c3668 | 2017-06-07 11:41:29 +0100 | [diff] [blame] | 3598 | } |
Filipe Manana | 80aa602 | 2015-03-27 17:50:45 +0000 | [diff] [blame] | 3599 | |
Filipe Manana | ea37d59 | 2017-11-17 01:54:00 +0000 | [diff] [blame] | 3600 | path = alloc_path_for_send(); |
| 3601 | if (!path) { |
| 3602 | ret = -ENOMEM; |
| 3603 | goto out; |
Filipe Manana | 80aa602 | 2015-03-27 17:50:45 +0000 | [diff] [blame] | 3604 | } |
Filipe Manana | ea37d59 | 2017-11-17 01:54:00 +0000 | [diff] [blame] | 3605 | |
| 3606 | key.objectid = ino2; |
| 3607 | key.type = BTRFS_INODE_REF_KEY; |
| 3608 | key.offset = 0; |
| 3609 | |
| 3610 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 3611 | if (ret < 0) |
| 3612 | goto out; |
| 3613 | |
| 3614 | while (true) { |
| 3615 | struct extent_buffer *leaf = path->nodes[0]; |
| 3616 | int slot = path->slots[0]; |
| 3617 | u32 cur_offset = 0; |
| 3618 | u32 item_size; |
| 3619 | |
| 3620 | if (slot >= btrfs_header_nritems(leaf)) { |
| 3621 | ret = btrfs_next_leaf(root, path); |
| 3622 | if (ret < 0) |
| 3623 | goto out; |
| 3624 | if (ret > 0) |
| 3625 | break; |
| 3626 | continue; |
| 3627 | } |
| 3628 | |
| 3629 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 3630 | if (key.objectid != ino2) |
| 3631 | break; |
| 3632 | if (key.type != BTRFS_INODE_REF_KEY && |
| 3633 | key.type != BTRFS_INODE_EXTREF_KEY) |
| 3634 | break; |
| 3635 | |
| 3636 | item_size = btrfs_item_size_nr(leaf, slot); |
| 3637 | while (cur_offset < item_size) { |
| 3638 | u64 parent; |
| 3639 | u64 parent_gen; |
| 3640 | |
| 3641 | if (key.type == BTRFS_INODE_EXTREF_KEY) { |
| 3642 | unsigned long ptr; |
| 3643 | struct btrfs_inode_extref *extref; |
| 3644 | |
| 3645 | ptr = btrfs_item_ptr_offset(leaf, slot); |
| 3646 | extref = (struct btrfs_inode_extref *) |
| 3647 | (ptr + cur_offset); |
| 3648 | parent = btrfs_inode_extref_parent(leaf, |
| 3649 | extref); |
| 3650 | cur_offset += sizeof(*extref); |
| 3651 | cur_offset += btrfs_inode_extref_name_len(leaf, |
| 3652 | extref); |
| 3653 | } else { |
| 3654 | parent = key.offset; |
| 3655 | cur_offset = item_size; |
| 3656 | } |
| 3657 | |
| 3658 | ret = get_inode_info(root, parent, NULL, &parent_gen, |
| 3659 | NULL, NULL, NULL, NULL); |
| 3660 | if (ret < 0) |
| 3661 | goto out; |
| 3662 | ret = check_ino_in_path(root, ino1, ino1_gen, |
| 3663 | parent, parent_gen, fs_path); |
| 3664 | if (ret) |
| 3665 | goto out; |
| 3666 | } |
| 3667 | path->slots[0]++; |
| 3668 | } |
| 3669 | ret = 0; |
Filipe Manana | 72c3668 | 2017-06-07 11:41:29 +0100 | [diff] [blame] | 3670 | out: |
Filipe Manana | ea37d59 | 2017-11-17 01:54:00 +0000 | [diff] [blame] | 3671 | btrfs_free_path(path); |
| 3672 | if (free_fs_path) |
Filipe Manana | 72c3668 | 2017-06-07 11:41:29 +0100 | [diff] [blame] | 3673 | fs_path_free(fs_path); |
| 3674 | return ret; |
Filipe Manana | 80aa602 | 2015-03-27 17:50:45 +0000 | [diff] [blame] | 3675 | } |
| 3676 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3677 | static int wait_for_parent_move(struct send_ctx *sctx, |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 3678 | struct recorded_ref *parent_ref, |
| 3679 | const bool is_orphan) |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3680 | { |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3681 | int ret = 0; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3682 | u64 ino = parent_ref->dir; |
Filipe Manana | fe9c798 | 2017-01-11 02:15:39 +0000 | [diff] [blame] | 3683 | u64 ino_gen = parent_ref->dir_gen; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3684 | u64 parent_ino_before, parent_ino_after; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3685 | struct fs_path *path_before = NULL; |
| 3686 | struct fs_path *path_after = NULL; |
| 3687 | int len1, len2; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3688 | |
| 3689 | path_after = fs_path_alloc(); |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3690 | path_before = fs_path_alloc(); |
| 3691 | if (!path_after || !path_before) { |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3692 | ret = -ENOMEM; |
| 3693 | goto out; |
| 3694 | } |
| 3695 | |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3696 | /* |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3697 | * Our current directory inode may not yet be renamed/moved because some |
| 3698 | * ancestor (immediate or not) has to be renamed/moved first. So find if |
| 3699 | * such ancestor exists and make sure our own rename/move happens after |
Filipe Manana | 80aa602 | 2015-03-27 17:50:45 +0000 | [diff] [blame] | 3700 | * that ancestor is processed to avoid path build infinite loops (done |
| 3701 | * at get_cur_path()). |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3702 | */ |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3703 | while (ino > BTRFS_FIRST_FREE_OBJECTID) { |
Filipe Manana | fe9c798 | 2017-01-11 02:15:39 +0000 | [diff] [blame] | 3704 | u64 parent_ino_after_gen; |
| 3705 | |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3706 | if (is_waiting_for_move(sctx, ino)) { |
Filipe Manana | 80aa602 | 2015-03-27 17:50:45 +0000 | [diff] [blame] | 3707 | /* |
| 3708 | * If the current inode is an ancestor of ino in the |
| 3709 | * parent root, we need to delay the rename of the |
| 3710 | * current inode, otherwise don't delayed the rename |
| 3711 | * because we can end up with a circular dependency |
| 3712 | * of renames, resulting in some directories never |
| 3713 | * getting the respective rename operations issued in |
| 3714 | * the send stream or getting into infinite path build |
| 3715 | * loops. |
| 3716 | */ |
| 3717 | ret = is_ancestor(sctx->parent_root, |
| 3718 | sctx->cur_ino, sctx->cur_inode_gen, |
| 3719 | ino, path_before); |
Filipe Manana | 4122ea6 | 2016-06-27 16:54:44 +0100 | [diff] [blame] | 3720 | if (ret) |
| 3721 | break; |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3722 | } |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3723 | |
| 3724 | fs_path_reset(path_before); |
| 3725 | fs_path_reset(path_after); |
| 3726 | |
| 3727 | ret = get_first_ref(sctx->send_root, ino, &parent_ino_after, |
Filipe Manana | fe9c798 | 2017-01-11 02:15:39 +0000 | [diff] [blame] | 3728 | &parent_ino_after_gen, path_after); |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3729 | if (ret < 0) |
| 3730 | goto out; |
| 3731 | ret = get_first_ref(sctx->parent_root, ino, &parent_ino_before, |
| 3732 | NULL, path_before); |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3733 | if (ret < 0 && ret != -ENOENT) { |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3734 | goto out; |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3735 | } else if (ret == -ENOENT) { |
Filipe Manana | bf8e8ca | 2014-10-02 19:17:32 +0100 | [diff] [blame] | 3736 | ret = 0; |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3737 | break; |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3738 | } |
| 3739 | |
| 3740 | len1 = fs_path_len(path_before); |
| 3741 | len2 = fs_path_len(path_after); |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3742 | if (ino > sctx->cur_ino && |
| 3743 | (parent_ino_before != parent_ino_after || len1 != len2 || |
| 3744 | memcmp(path_before->start, path_after->start, len1))) { |
Filipe Manana | fe9c798 | 2017-01-11 02:15:39 +0000 | [diff] [blame] | 3745 | u64 parent_ino_gen; |
| 3746 | |
| 3747 | ret = get_inode_info(sctx->parent_root, ino, NULL, |
| 3748 | &parent_ino_gen, NULL, NULL, NULL, |
| 3749 | NULL); |
| 3750 | if (ret < 0) |
| 3751 | goto out; |
| 3752 | if (ino_gen == parent_ino_gen) { |
| 3753 | ret = 1; |
| 3754 | break; |
| 3755 | } |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3756 | } |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3757 | ino = parent_ino_after; |
Filipe Manana | fe9c798 | 2017-01-11 02:15:39 +0000 | [diff] [blame] | 3758 | ino_gen = parent_ino_after_gen; |
Filipe Manana | bfa7e1f | 2014-03-19 14:20:54 +0000 | [diff] [blame] | 3759 | } |
| 3760 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3761 | out: |
| 3762 | fs_path_free(path_before); |
| 3763 | fs_path_free(path_after); |
| 3764 | |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3765 | if (ret == 1) { |
| 3766 | ret = add_pending_dir_move(sctx, |
| 3767 | sctx->cur_ino, |
| 3768 | sctx->cur_inode_gen, |
| 3769 | ino, |
| 3770 | &sctx->new_refs, |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3771 | &sctx->deleted_refs, |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 3772 | is_orphan); |
Filipe Manana | f959492 | 2014-03-27 20:14:01 +0000 | [diff] [blame] | 3773 | if (!ret) |
| 3774 | ret = 1; |
| 3775 | } |
| 3776 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3777 | return ret; |
| 3778 | } |
| 3779 | |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 3780 | static int update_ref_path(struct send_ctx *sctx, struct recorded_ref *ref) |
| 3781 | { |
| 3782 | int ret; |
| 3783 | struct fs_path *new_path; |
| 3784 | |
| 3785 | /* |
| 3786 | * Our reference's name member points to its full_path member string, so |
| 3787 | * we use here a new path. |
| 3788 | */ |
| 3789 | new_path = fs_path_alloc(); |
| 3790 | if (!new_path) |
| 3791 | return -ENOMEM; |
| 3792 | |
| 3793 | ret = get_cur_path(sctx, ref->dir, ref->dir_gen, new_path); |
| 3794 | if (ret < 0) { |
| 3795 | fs_path_free(new_path); |
| 3796 | return ret; |
| 3797 | } |
| 3798 | ret = fs_path_add(new_path, ref->name, ref->name_len); |
| 3799 | if (ret < 0) { |
| 3800 | fs_path_free(new_path); |
| 3801 | return ret; |
| 3802 | } |
| 3803 | |
| 3804 | fs_path_free(ref->full_path); |
| 3805 | set_ref_path(ref, new_path); |
| 3806 | |
| 3807 | return 0; |
| 3808 | } |
| 3809 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3810 | /* |
| 3811 | * This does all the move/link/unlink/rmdir magic. |
| 3812 | */ |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 3813 | static int process_recorded_refs(struct send_ctx *sctx, int *pending_move) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3814 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 3815 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3816 | int ret = 0; |
| 3817 | struct recorded_ref *cur; |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 3818 | struct recorded_ref *cur2; |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 3819 | struct list_head check_dirs; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3820 | struct fs_path *valid_path = NULL; |
Chris Mason | b24baf6 | 2012-07-25 19:21:10 -0400 | [diff] [blame] | 3821 | u64 ow_inode = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3822 | u64 ow_gen; |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 3823 | u64 ow_mode; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3824 | int did_overwrite = 0; |
| 3825 | int is_orphan = 0; |
Filipe Manana | 29d6d30 | 2014-02-16 21:01:39 +0000 | [diff] [blame] | 3826 | u64 last_dir_ino_rm = 0; |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 3827 | bool can_rename = true; |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 3828 | bool orphanized_dir = false; |
Filipe Manana | fdb1388 | 2017-06-13 14:13:11 +0100 | [diff] [blame] | 3829 | bool orphanized_ancestor = false; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3830 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 3831 | btrfs_debug(fs_info, "process_recorded_refs %llu", sctx->cur_ino); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3832 | |
Alexander Block | 6d85ed05 | 2012-08-01 14:48:59 +0200 | [diff] [blame] | 3833 | /* |
| 3834 | * This should never happen as the root dir always has the same ref |
| 3835 | * which is always '..' |
| 3836 | */ |
| 3837 | BUG_ON(sctx->cur_ino <= BTRFS_FIRST_FREE_OBJECTID); |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 3838 | INIT_LIST_HEAD(&check_dirs); |
Alexander Block | 6d85ed05 | 2012-08-01 14:48:59 +0200 | [diff] [blame] | 3839 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 3840 | valid_path = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3841 | if (!valid_path) { |
| 3842 | ret = -ENOMEM; |
| 3843 | goto out; |
| 3844 | } |
| 3845 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3846 | /* |
| 3847 | * First, check if the first ref of the current inode was overwritten |
| 3848 | * before. If yes, we know that the current inode was already orphanized |
| 3849 | * and thus use the orphan name. If not, we can use get_cur_path to |
| 3850 | * get the path of the first ref as it would like while receiving at |
| 3851 | * this point in time. |
| 3852 | * New inodes are always orphan at the beginning, so force to use the |
| 3853 | * orphan name in this case. |
| 3854 | * The first ref is stored in valid_path and will be updated if it |
| 3855 | * gets moved around. |
| 3856 | */ |
| 3857 | if (!sctx->cur_inode_new) { |
| 3858 | ret = did_overwrite_first_ref(sctx, sctx->cur_ino, |
| 3859 | sctx->cur_inode_gen); |
| 3860 | if (ret < 0) |
| 3861 | goto out; |
| 3862 | if (ret) |
| 3863 | did_overwrite = 1; |
| 3864 | } |
| 3865 | if (sctx->cur_inode_new || did_overwrite) { |
| 3866 | ret = gen_unique_name(sctx, sctx->cur_ino, |
| 3867 | sctx->cur_inode_gen, valid_path); |
| 3868 | if (ret < 0) |
| 3869 | goto out; |
| 3870 | is_orphan = 1; |
| 3871 | } else { |
| 3872 | ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, |
| 3873 | valid_path); |
| 3874 | if (ret < 0) |
| 3875 | goto out; |
| 3876 | } |
| 3877 | |
| 3878 | list_for_each_entry(cur, &sctx->new_refs, list) { |
| 3879 | /* |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 3880 | * We may have refs where the parent directory does not exist |
| 3881 | * yet. This happens if the parent directories inum is higher |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 3882 | * than the current inum. To handle this case, we create the |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 3883 | * parent directory out of order. But we need to check if this |
| 3884 | * did already happen before due to other refs in the same dir. |
| 3885 | */ |
| 3886 | ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen); |
| 3887 | if (ret < 0) |
| 3888 | goto out; |
| 3889 | if (ret == inode_state_will_create) { |
| 3890 | ret = 0; |
| 3891 | /* |
| 3892 | * First check if any of the current inodes refs did |
| 3893 | * already create the dir. |
| 3894 | */ |
| 3895 | list_for_each_entry(cur2, &sctx->new_refs, list) { |
| 3896 | if (cur == cur2) |
| 3897 | break; |
| 3898 | if (cur2->dir == cur->dir) { |
| 3899 | ret = 1; |
| 3900 | break; |
| 3901 | } |
| 3902 | } |
| 3903 | |
| 3904 | /* |
| 3905 | * If that did not happen, check if a previous inode |
| 3906 | * did already create the dir. |
| 3907 | */ |
| 3908 | if (!ret) |
| 3909 | ret = did_create_dir(sctx, cur->dir); |
| 3910 | if (ret < 0) |
| 3911 | goto out; |
| 3912 | if (!ret) { |
| 3913 | ret = send_create_inode(sctx, cur->dir); |
| 3914 | if (ret < 0) |
| 3915 | goto out; |
| 3916 | } |
| 3917 | } |
| 3918 | |
| 3919 | /* |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3920 | * Check if this new ref would overwrite the first ref of |
| 3921 | * another unprocessed inode. If yes, orphanize the |
| 3922 | * overwritten inode. If we find an overwritten ref that is |
| 3923 | * not the first ref, simply unlink it. |
| 3924 | */ |
| 3925 | ret = will_overwrite_ref(sctx, cur->dir, cur->dir_gen, |
| 3926 | cur->name, cur->name_len, |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 3927 | &ow_inode, &ow_gen, &ow_mode); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3928 | if (ret < 0) |
| 3929 | goto out; |
| 3930 | if (ret) { |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 3931 | ret = is_first_ref(sctx->parent_root, |
| 3932 | ow_inode, cur->dir, cur->name, |
| 3933 | cur->name_len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3934 | if (ret < 0) |
| 3935 | goto out; |
| 3936 | if (ret) { |
Filipe Manana | 8996a48 | 2015-03-12 15:16:20 +0000 | [diff] [blame] | 3937 | struct name_cache_entry *nce; |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3938 | struct waiting_dir_move *wdm; |
Filipe Manana | 8996a48 | 2015-03-12 15:16:20 +0000 | [diff] [blame] | 3939 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3940 | ret = orphanize_inode(sctx, ow_inode, ow_gen, |
| 3941 | cur->full_path); |
| 3942 | if (ret < 0) |
| 3943 | goto out; |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 3944 | if (S_ISDIR(ow_mode)) |
| 3945 | orphanized_dir = true; |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3946 | |
| 3947 | /* |
| 3948 | * If ow_inode has its rename operation delayed |
| 3949 | * make sure that its orphanized name is used in |
| 3950 | * the source path when performing its rename |
| 3951 | * operation. |
| 3952 | */ |
| 3953 | if (is_waiting_for_move(sctx, ow_inode)) { |
| 3954 | wdm = get_waiting_dir_move(sctx, |
| 3955 | ow_inode); |
| 3956 | ASSERT(wdm); |
| 3957 | wdm->orphanized = true; |
| 3958 | } |
| 3959 | |
Filipe Manana | 8996a48 | 2015-03-12 15:16:20 +0000 | [diff] [blame] | 3960 | /* |
| 3961 | * Make sure we clear our orphanized inode's |
| 3962 | * name from the name cache. This is because the |
| 3963 | * inode ow_inode might be an ancestor of some |
| 3964 | * other inode that will be orphanized as well |
| 3965 | * later and has an inode number greater than |
| 3966 | * sctx->send_progress. We need to prevent |
| 3967 | * future name lookups from using the old name |
| 3968 | * and get instead the orphan name. |
| 3969 | */ |
| 3970 | nce = name_cache_search(sctx, ow_inode, ow_gen); |
| 3971 | if (nce) { |
| 3972 | name_cache_delete(sctx, nce); |
| 3973 | kfree(nce); |
| 3974 | } |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3975 | |
| 3976 | /* |
| 3977 | * ow_inode might currently be an ancestor of |
| 3978 | * cur_ino, therefore compute valid_path (the |
| 3979 | * current path of cur_ino) again because it |
| 3980 | * might contain the pre-orphanization name of |
| 3981 | * ow_inode, which is no longer valid. |
| 3982 | */ |
Filipe Manana | 72c3668 | 2017-06-07 11:41:29 +0100 | [diff] [blame] | 3983 | ret = is_ancestor(sctx->parent_root, |
| 3984 | ow_inode, ow_gen, |
| 3985 | sctx->cur_ino, NULL); |
| 3986 | if (ret > 0) { |
Filipe Manana | fdb1388 | 2017-06-13 14:13:11 +0100 | [diff] [blame] | 3987 | orphanized_ancestor = true; |
Filipe Manana | 72c3668 | 2017-06-07 11:41:29 +0100 | [diff] [blame] | 3988 | fs_path_reset(valid_path); |
| 3989 | ret = get_cur_path(sctx, sctx->cur_ino, |
| 3990 | sctx->cur_inode_gen, |
| 3991 | valid_path); |
| 3992 | } |
Robbie Ko | 801bec3 | 2015-06-23 18:39:46 +0800 | [diff] [blame] | 3993 | if (ret < 0) |
| 3994 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 3995 | } else { |
| 3996 | ret = send_unlink(sctx, cur->full_path); |
| 3997 | if (ret < 0) |
| 3998 | goto out; |
| 3999 | } |
| 4000 | } |
| 4001 | |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 4002 | if (S_ISDIR(sctx->cur_inode_mode) && sctx->parent_root) { |
| 4003 | ret = wait_for_dest_dir_move(sctx, cur, is_orphan); |
| 4004 | if (ret < 0) |
| 4005 | goto out; |
| 4006 | if (ret == 1) { |
| 4007 | can_rename = false; |
| 4008 | *pending_move = 1; |
| 4009 | } |
| 4010 | } |
| 4011 | |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 4012 | if (S_ISDIR(sctx->cur_inode_mode) && sctx->parent_root && |
| 4013 | can_rename) { |
| 4014 | ret = wait_for_parent_move(sctx, cur, is_orphan); |
| 4015 | if (ret < 0) |
| 4016 | goto out; |
| 4017 | if (ret == 1) { |
| 4018 | can_rename = false; |
| 4019 | *pending_move = 1; |
| 4020 | } |
| 4021 | } |
| 4022 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4023 | /* |
| 4024 | * link/move the ref to the new place. If we have an orphan |
| 4025 | * inode, move it and update valid_path. If not, link or move |
| 4026 | * it depending on the inode mode. |
| 4027 | */ |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 4028 | if (is_orphan && can_rename) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4029 | ret = send_rename(sctx, valid_path, cur->full_path); |
| 4030 | if (ret < 0) |
| 4031 | goto out; |
| 4032 | is_orphan = 0; |
| 4033 | ret = fs_path_copy(valid_path, cur->full_path); |
| 4034 | if (ret < 0) |
| 4035 | goto out; |
Filipe Manana | 84471e2 | 2015-02-28 22:29:22 +0000 | [diff] [blame] | 4036 | } else if (can_rename) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4037 | if (S_ISDIR(sctx->cur_inode_mode)) { |
| 4038 | /* |
| 4039 | * Dirs can't be linked, so move it. For moved |
| 4040 | * dirs, we always have one new and one deleted |
| 4041 | * ref. The deleted ref is ignored later. |
| 4042 | */ |
Filipe Manana | 8b191a6 | 2015-04-09 14:09:14 +0100 | [diff] [blame] | 4043 | ret = send_rename(sctx, valid_path, |
| 4044 | cur->full_path); |
| 4045 | if (!ret) |
| 4046 | ret = fs_path_copy(valid_path, |
| 4047 | cur->full_path); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4048 | if (ret < 0) |
| 4049 | goto out; |
| 4050 | } else { |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 4051 | /* |
| 4052 | * We might have previously orphanized an inode |
| 4053 | * which is an ancestor of our current inode, |
| 4054 | * so our reference's full path, which was |
| 4055 | * computed before any such orphanizations, must |
| 4056 | * be updated. |
| 4057 | */ |
| 4058 | if (orphanized_dir) { |
| 4059 | ret = update_ref_path(sctx, cur); |
| 4060 | if (ret < 0) |
| 4061 | goto out; |
| 4062 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4063 | ret = send_link(sctx, cur->full_path, |
| 4064 | valid_path); |
| 4065 | if (ret < 0) |
| 4066 | goto out; |
| 4067 | } |
| 4068 | } |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4069 | ret = dup_ref(cur, &check_dirs); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4070 | if (ret < 0) |
| 4071 | goto out; |
| 4072 | } |
| 4073 | |
| 4074 | if (S_ISDIR(sctx->cur_inode_mode) && sctx->cur_inode_deleted) { |
| 4075 | /* |
| 4076 | * Check if we can already rmdir the directory. If not, |
| 4077 | * orphanize it. For every dir item inside that gets deleted |
| 4078 | * later, we do this check again and rmdir it then if possible. |
| 4079 | * See the use of check_dirs for more details. |
| 4080 | */ |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 4081 | ret = can_rmdir(sctx, sctx->cur_ino, sctx->cur_inode_gen, |
| 4082 | sctx->cur_ino); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4083 | if (ret < 0) |
| 4084 | goto out; |
| 4085 | if (ret) { |
| 4086 | ret = send_rmdir(sctx, valid_path); |
| 4087 | if (ret < 0) |
| 4088 | goto out; |
| 4089 | } else if (!is_orphan) { |
| 4090 | ret = orphanize_inode(sctx, sctx->cur_ino, |
| 4091 | sctx->cur_inode_gen, valid_path); |
| 4092 | if (ret < 0) |
| 4093 | goto out; |
| 4094 | is_orphan = 1; |
| 4095 | } |
| 4096 | |
| 4097 | list_for_each_entry(cur, &sctx->deleted_refs, list) { |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4098 | ret = dup_ref(cur, &check_dirs); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4099 | if (ret < 0) |
| 4100 | goto out; |
| 4101 | } |
Alexander Block | ccf1626 | 2012-07-28 11:46:29 +0200 | [diff] [blame] | 4102 | } else if (S_ISDIR(sctx->cur_inode_mode) && |
| 4103 | !list_empty(&sctx->deleted_refs)) { |
| 4104 | /* |
| 4105 | * We have a moved dir. Add the old parent to check_dirs |
| 4106 | */ |
| 4107 | cur = list_entry(sctx->deleted_refs.next, struct recorded_ref, |
| 4108 | list); |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4109 | ret = dup_ref(cur, &check_dirs); |
Alexander Block | ccf1626 | 2012-07-28 11:46:29 +0200 | [diff] [blame] | 4110 | if (ret < 0) |
| 4111 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4112 | } else if (!S_ISDIR(sctx->cur_inode_mode)) { |
| 4113 | /* |
| 4114 | * We have a non dir inode. Go through all deleted refs and |
| 4115 | * unlink them if they were not already overwritten by other |
| 4116 | * inodes. |
| 4117 | */ |
| 4118 | list_for_each_entry(cur, &sctx->deleted_refs, list) { |
| 4119 | ret = did_overwrite_ref(sctx, cur->dir, cur->dir_gen, |
| 4120 | sctx->cur_ino, sctx->cur_inode_gen, |
| 4121 | cur->name, cur->name_len); |
| 4122 | if (ret < 0) |
| 4123 | goto out; |
| 4124 | if (!ret) { |
Filipe Manana | fdb1388 | 2017-06-13 14:13:11 +0100 | [diff] [blame] | 4125 | /* |
| 4126 | * If we orphanized any ancestor before, we need |
| 4127 | * to recompute the full path for deleted names, |
| 4128 | * since any such path was computed before we |
| 4129 | * processed any references and orphanized any |
| 4130 | * ancestor inode. |
| 4131 | */ |
| 4132 | if (orphanized_ancestor) { |
Filipe Manana | f596278 | 2017-06-22 20:03:51 +0100 | [diff] [blame] | 4133 | ret = update_ref_path(sctx, cur); |
| 4134 | if (ret < 0) |
Filipe Manana | fdb1388 | 2017-06-13 14:13:11 +0100 | [diff] [blame] | 4135 | goto out; |
Filipe Manana | fdb1388 | 2017-06-13 14:13:11 +0100 | [diff] [blame] | 4136 | } |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 4137 | ret = send_unlink(sctx, cur->full_path); |
| 4138 | if (ret < 0) |
| 4139 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4140 | } |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4141 | ret = dup_ref(cur, &check_dirs); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4142 | if (ret < 0) |
| 4143 | goto out; |
| 4144 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4145 | /* |
| 4146 | * If the inode is still orphan, unlink the orphan. This may |
| 4147 | * happen when a previous inode did overwrite the first ref |
| 4148 | * of this inode and no new refs were added for the current |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 4149 | * inode. Unlinking does not mean that the inode is deleted in |
| 4150 | * all cases. There may still be links to this inode in other |
| 4151 | * places. |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4152 | */ |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 4153 | if (is_orphan) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4154 | ret = send_unlink(sctx, valid_path); |
| 4155 | if (ret < 0) |
| 4156 | goto out; |
| 4157 | } |
| 4158 | } |
| 4159 | |
| 4160 | /* |
| 4161 | * We did collect all parent dirs where cur_inode was once located. We |
| 4162 | * now go through all these dirs and check if they are pending for |
| 4163 | * deletion and if it's finally possible to perform the rmdir now. |
| 4164 | * We also update the inode stats of the parent dirs here. |
| 4165 | */ |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4166 | list_for_each_entry(cur, &check_dirs, list) { |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 4167 | /* |
| 4168 | * In case we had refs into dirs that were not processed yet, |
| 4169 | * we don't need to do the utime and rmdir logic for these dirs. |
| 4170 | * The dir will be processed later. |
| 4171 | */ |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4172 | if (cur->dir > sctx->cur_ino) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4173 | continue; |
| 4174 | |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4175 | ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4176 | if (ret < 0) |
| 4177 | goto out; |
| 4178 | |
| 4179 | if (ret == inode_state_did_create || |
| 4180 | ret == inode_state_no_change) { |
| 4181 | /* TODO delayed utimes */ |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4182 | ret = send_utimes(sctx, cur->dir, cur->dir_gen); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4183 | if (ret < 0) |
| 4184 | goto out; |
Filipe Manana | 29d6d30 | 2014-02-16 21:01:39 +0000 | [diff] [blame] | 4185 | } else if (ret == inode_state_did_delete && |
| 4186 | cur->dir != last_dir_ino_rm) { |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 4187 | ret = can_rmdir(sctx, cur->dir, cur->dir_gen, |
| 4188 | sctx->cur_ino); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4189 | if (ret < 0) |
| 4190 | goto out; |
| 4191 | if (ret) { |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4192 | ret = get_cur_path(sctx, cur->dir, |
| 4193 | cur->dir_gen, valid_path); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4194 | if (ret < 0) |
| 4195 | goto out; |
| 4196 | ret = send_rmdir(sctx, valid_path); |
| 4197 | if (ret < 0) |
| 4198 | goto out; |
Filipe Manana | 29d6d30 | 2014-02-16 21:01:39 +0000 | [diff] [blame] | 4199 | last_dir_ino_rm = cur->dir; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4200 | } |
| 4201 | } |
| 4202 | } |
| 4203 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4204 | ret = 0; |
| 4205 | |
| 4206 | out: |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4207 | __free_recorded_refs(&check_dirs); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4208 | free_recorded_refs(sctx); |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4209 | fs_path_free(valid_path); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4210 | return ret; |
| 4211 | } |
| 4212 | |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4213 | static int record_ref(struct btrfs_root *root, u64 dir, struct fs_path *name, |
| 4214 | void *ctx, struct list_head *refs) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4215 | { |
| 4216 | int ret = 0; |
| 4217 | struct send_ctx *sctx = ctx; |
| 4218 | struct fs_path *p; |
| 4219 | u64 gen; |
| 4220 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4221 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4222 | if (!p) |
| 4223 | return -ENOMEM; |
| 4224 | |
Liu Bo | a4d96d6 | 2014-03-03 21:31:03 +0800 | [diff] [blame] | 4225 | ret = get_inode_info(root, dir, NULL, &gen, NULL, NULL, |
Alexander Block | 85a7b33 | 2012-07-26 23:39:10 +0200 | [diff] [blame] | 4226 | NULL, NULL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4227 | if (ret < 0) |
| 4228 | goto out; |
| 4229 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4230 | ret = get_cur_path(sctx, dir, gen, p); |
| 4231 | if (ret < 0) |
| 4232 | goto out; |
| 4233 | ret = fs_path_add_path(p, name); |
| 4234 | if (ret < 0) |
| 4235 | goto out; |
| 4236 | |
Liu Bo | a4d96d6 | 2014-03-03 21:31:03 +0800 | [diff] [blame] | 4237 | ret = __record_ref(refs, dir, gen, p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4238 | |
| 4239 | out: |
| 4240 | if (ret) |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4241 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4242 | return ret; |
| 4243 | } |
| 4244 | |
Liu Bo | a4d96d6 | 2014-03-03 21:31:03 +0800 | [diff] [blame] | 4245 | static int __record_new_ref(int num, u64 dir, int index, |
| 4246 | struct fs_path *name, |
| 4247 | void *ctx) |
| 4248 | { |
| 4249 | struct send_ctx *sctx = ctx; |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4250 | return record_ref(sctx->send_root, dir, name, ctx, &sctx->new_refs); |
Liu Bo | a4d96d6 | 2014-03-03 21:31:03 +0800 | [diff] [blame] | 4251 | } |
| 4252 | |
| 4253 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4254 | static int __record_deleted_ref(int num, u64 dir, int index, |
| 4255 | struct fs_path *name, |
| 4256 | void *ctx) |
| 4257 | { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4258 | struct send_ctx *sctx = ctx; |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4259 | return record_ref(sctx->parent_root, dir, name, ctx, |
| 4260 | &sctx->deleted_refs); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4261 | } |
| 4262 | |
| 4263 | static int record_new_ref(struct send_ctx *sctx) |
| 4264 | { |
| 4265 | int ret; |
| 4266 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4267 | ret = iterate_inode_ref(sctx->send_root, sctx->left_path, |
| 4268 | sctx->cmp_key, 0, __record_new_ref, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4269 | if (ret < 0) |
| 4270 | goto out; |
| 4271 | ret = 0; |
| 4272 | |
| 4273 | out: |
| 4274 | return ret; |
| 4275 | } |
| 4276 | |
| 4277 | static int record_deleted_ref(struct send_ctx *sctx) |
| 4278 | { |
| 4279 | int ret; |
| 4280 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4281 | ret = iterate_inode_ref(sctx->parent_root, sctx->right_path, |
| 4282 | sctx->cmp_key, 0, __record_deleted_ref, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4283 | if (ret < 0) |
| 4284 | goto out; |
| 4285 | ret = 0; |
| 4286 | |
| 4287 | out: |
| 4288 | return ret; |
| 4289 | } |
| 4290 | |
| 4291 | struct find_ref_ctx { |
| 4292 | u64 dir; |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4293 | u64 dir_gen; |
| 4294 | struct btrfs_root *root; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4295 | struct fs_path *name; |
| 4296 | int found_idx; |
| 4297 | }; |
| 4298 | |
| 4299 | static int __find_iref(int num, u64 dir, int index, |
| 4300 | struct fs_path *name, |
| 4301 | void *ctx_) |
| 4302 | { |
| 4303 | struct find_ref_ctx *ctx = ctx_; |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4304 | u64 dir_gen; |
| 4305 | int ret; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4306 | |
| 4307 | if (dir == ctx->dir && fs_path_len(name) == fs_path_len(ctx->name) && |
| 4308 | strncmp(name->start, ctx->name->start, fs_path_len(name)) == 0) { |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4309 | /* |
| 4310 | * To avoid doing extra lookups we'll only do this if everything |
| 4311 | * else matches. |
| 4312 | */ |
| 4313 | ret = get_inode_info(ctx->root, dir, NULL, &dir_gen, NULL, |
| 4314 | NULL, NULL, NULL); |
| 4315 | if (ret) |
| 4316 | return ret; |
| 4317 | if (dir_gen != ctx->dir_gen) |
| 4318 | return 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4319 | ctx->found_idx = num; |
| 4320 | return 1; |
| 4321 | } |
| 4322 | return 0; |
| 4323 | } |
| 4324 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4325 | static int find_iref(struct btrfs_root *root, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4326 | struct btrfs_path *path, |
| 4327 | struct btrfs_key *key, |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4328 | u64 dir, u64 dir_gen, struct fs_path *name) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4329 | { |
| 4330 | int ret; |
| 4331 | struct find_ref_ctx ctx; |
| 4332 | |
| 4333 | ctx.dir = dir; |
| 4334 | ctx.name = name; |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4335 | ctx.dir_gen = dir_gen; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4336 | ctx.found_idx = -1; |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4337 | ctx.root = root; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4338 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4339 | ret = iterate_inode_ref(root, path, key, 0, __find_iref, &ctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4340 | if (ret < 0) |
| 4341 | return ret; |
| 4342 | |
| 4343 | if (ctx.found_idx == -1) |
| 4344 | return -ENOENT; |
| 4345 | |
| 4346 | return ctx.found_idx; |
| 4347 | } |
| 4348 | |
| 4349 | static int __record_changed_new_ref(int num, u64 dir, int index, |
| 4350 | struct fs_path *name, |
| 4351 | void *ctx) |
| 4352 | { |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4353 | u64 dir_gen; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4354 | int ret; |
| 4355 | struct send_ctx *sctx = ctx; |
| 4356 | |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4357 | ret = get_inode_info(sctx->send_root, dir, NULL, &dir_gen, NULL, |
| 4358 | NULL, NULL, NULL); |
| 4359 | if (ret) |
| 4360 | return ret; |
| 4361 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4362 | ret = find_iref(sctx->parent_root, sctx->right_path, |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4363 | sctx->cmp_key, dir, dir_gen, name); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4364 | if (ret == -ENOENT) |
| 4365 | ret = __record_new_ref(num, dir, index, name, sctx); |
| 4366 | else if (ret > 0) |
| 4367 | ret = 0; |
| 4368 | |
| 4369 | return ret; |
| 4370 | } |
| 4371 | |
| 4372 | static int __record_changed_deleted_ref(int num, u64 dir, int index, |
| 4373 | struct fs_path *name, |
| 4374 | void *ctx) |
| 4375 | { |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4376 | u64 dir_gen; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4377 | int ret; |
| 4378 | struct send_ctx *sctx = ctx; |
| 4379 | |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4380 | ret = get_inode_info(sctx->parent_root, dir, NULL, &dir_gen, NULL, |
| 4381 | NULL, NULL, NULL); |
| 4382 | if (ret) |
| 4383 | return ret; |
| 4384 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4385 | ret = find_iref(sctx->send_root, sctx->left_path, sctx->cmp_key, |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 4386 | dir, dir_gen, name); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4387 | if (ret == -ENOENT) |
| 4388 | ret = __record_deleted_ref(num, dir, index, name, sctx); |
| 4389 | else if (ret > 0) |
| 4390 | ret = 0; |
| 4391 | |
| 4392 | return ret; |
| 4393 | } |
| 4394 | |
| 4395 | static int record_changed_ref(struct send_ctx *sctx) |
| 4396 | { |
| 4397 | int ret = 0; |
| 4398 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4399 | ret = iterate_inode_ref(sctx->send_root, sctx->left_path, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4400 | sctx->cmp_key, 0, __record_changed_new_ref, sctx); |
| 4401 | if (ret < 0) |
| 4402 | goto out; |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4403 | ret = iterate_inode_ref(sctx->parent_root, sctx->right_path, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4404 | sctx->cmp_key, 0, __record_changed_deleted_ref, sctx); |
| 4405 | if (ret < 0) |
| 4406 | goto out; |
| 4407 | ret = 0; |
| 4408 | |
| 4409 | out: |
| 4410 | return ret; |
| 4411 | } |
| 4412 | |
| 4413 | /* |
| 4414 | * Record and process all refs at once. Needed when an inode changes the |
| 4415 | * generation number, which means that it was deleted and recreated. |
| 4416 | */ |
| 4417 | static int process_all_refs(struct send_ctx *sctx, |
| 4418 | enum btrfs_compare_tree_result cmd) |
| 4419 | { |
| 4420 | int ret; |
| 4421 | struct btrfs_root *root; |
| 4422 | struct btrfs_path *path; |
| 4423 | struct btrfs_key key; |
| 4424 | struct btrfs_key found_key; |
| 4425 | struct extent_buffer *eb; |
| 4426 | int slot; |
| 4427 | iterate_inode_ref_t cb; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 4428 | int pending_move = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4429 | |
| 4430 | path = alloc_path_for_send(); |
| 4431 | if (!path) |
| 4432 | return -ENOMEM; |
| 4433 | |
| 4434 | if (cmd == BTRFS_COMPARE_TREE_NEW) { |
| 4435 | root = sctx->send_root; |
| 4436 | cb = __record_new_ref; |
| 4437 | } else if (cmd == BTRFS_COMPARE_TREE_DELETED) { |
| 4438 | root = sctx->parent_root; |
| 4439 | cb = __record_deleted_ref; |
| 4440 | } else { |
David Sterba | 4d1a63b | 2014-02-03 19:24:19 +0100 | [diff] [blame] | 4441 | btrfs_err(sctx->send_root->fs_info, |
| 4442 | "Wrong command %d in process_all_refs", cmd); |
| 4443 | ret = -EINVAL; |
| 4444 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4445 | } |
| 4446 | |
| 4447 | key.objectid = sctx->cmp_key->objectid; |
| 4448 | key.type = BTRFS_INODE_REF_KEY; |
| 4449 | key.offset = 0; |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4450 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4451 | if (ret < 0) |
| 4452 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4453 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4454 | while (1) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4455 | eb = path->nodes[0]; |
| 4456 | slot = path->slots[0]; |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4457 | if (slot >= btrfs_header_nritems(eb)) { |
| 4458 | ret = btrfs_next_leaf(root, path); |
| 4459 | if (ret < 0) |
| 4460 | goto out; |
| 4461 | else if (ret > 0) |
| 4462 | break; |
| 4463 | continue; |
| 4464 | } |
| 4465 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4466 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 4467 | |
| 4468 | if (found_key.objectid != key.objectid || |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 4469 | (found_key.type != BTRFS_INODE_REF_KEY && |
| 4470 | found_key.type != BTRFS_INODE_EXTREF_KEY)) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4471 | break; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4472 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4473 | ret = iterate_inode_ref(root, path, &found_key, 0, cb, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4474 | if (ret < 0) |
| 4475 | goto out; |
| 4476 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4477 | path->slots[0]++; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4478 | } |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 4479 | btrfs_release_path(path); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4480 | |
Josef Bacik | 3dc09ec | 2016-08-24 11:57:52 -0400 | [diff] [blame] | 4481 | /* |
| 4482 | * We don't actually care about pending_move as we are simply |
| 4483 | * re-creating this inode and will be rename'ing it into place once we |
| 4484 | * rename the parent directory. |
| 4485 | */ |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 4486 | ret = process_recorded_refs(sctx, &pending_move); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4487 | out: |
| 4488 | btrfs_free_path(path); |
| 4489 | return ret; |
| 4490 | } |
| 4491 | |
| 4492 | static int send_set_xattr(struct send_ctx *sctx, |
| 4493 | struct fs_path *path, |
| 4494 | const char *name, int name_len, |
| 4495 | const char *data, int data_len) |
| 4496 | { |
| 4497 | int ret = 0; |
| 4498 | |
| 4499 | ret = begin_cmd(sctx, BTRFS_SEND_C_SET_XATTR); |
| 4500 | if (ret < 0) |
| 4501 | goto out; |
| 4502 | |
| 4503 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path); |
| 4504 | TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len); |
| 4505 | TLV_PUT(sctx, BTRFS_SEND_A_XATTR_DATA, data, data_len); |
| 4506 | |
| 4507 | ret = send_cmd(sctx); |
| 4508 | |
| 4509 | tlv_put_failure: |
| 4510 | out: |
| 4511 | return ret; |
| 4512 | } |
| 4513 | |
| 4514 | static int send_remove_xattr(struct send_ctx *sctx, |
| 4515 | struct fs_path *path, |
| 4516 | const char *name, int name_len) |
| 4517 | { |
| 4518 | int ret = 0; |
| 4519 | |
| 4520 | ret = begin_cmd(sctx, BTRFS_SEND_C_REMOVE_XATTR); |
| 4521 | if (ret < 0) |
| 4522 | goto out; |
| 4523 | |
| 4524 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path); |
| 4525 | TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len); |
| 4526 | |
| 4527 | ret = send_cmd(sctx); |
| 4528 | |
| 4529 | tlv_put_failure: |
| 4530 | out: |
| 4531 | return ret; |
| 4532 | } |
| 4533 | |
| 4534 | static int __process_new_xattr(int num, struct btrfs_key *di_key, |
| 4535 | const char *name, int name_len, |
| 4536 | const char *data, int data_len, |
| 4537 | u8 type, void *ctx) |
| 4538 | { |
| 4539 | int ret; |
| 4540 | struct send_ctx *sctx = ctx; |
| 4541 | struct fs_path *p; |
Andreas Gruenbacher | 2211d5b | 2016-09-27 13:03:22 +0200 | [diff] [blame] | 4542 | struct posix_acl_xattr_header dummy_acl; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4543 | |
Marcos Paulo de Souza | 89efda5 | 2020-05-10 23:15:07 -0300 | [diff] [blame] | 4544 | /* Capabilities are emitted by finish_inode_if_needed */ |
| 4545 | if (!strncmp(name, XATTR_NAME_CAPS, name_len)) |
| 4546 | return 0; |
| 4547 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4548 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4549 | if (!p) |
| 4550 | return -ENOMEM; |
| 4551 | |
| 4552 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 4553 | * This hack is needed because empty acls are stored as zero byte |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4554 | * data in xattrs. Problem with that is, that receiving these zero byte |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 4555 | * acls will fail later. To fix this, we send a dummy acl list that |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4556 | * only contains the version number and no entries. |
| 4557 | */ |
| 4558 | if (!strncmp(name, XATTR_NAME_POSIX_ACL_ACCESS, name_len) || |
| 4559 | !strncmp(name, XATTR_NAME_POSIX_ACL_DEFAULT, name_len)) { |
| 4560 | if (data_len == 0) { |
| 4561 | dummy_acl.a_version = |
| 4562 | cpu_to_le32(POSIX_ACL_XATTR_VERSION); |
| 4563 | data = (char *)&dummy_acl; |
| 4564 | data_len = sizeof(dummy_acl); |
| 4565 | } |
| 4566 | } |
| 4567 | |
| 4568 | ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p); |
| 4569 | if (ret < 0) |
| 4570 | goto out; |
| 4571 | |
| 4572 | ret = send_set_xattr(sctx, p, name, name_len, data, data_len); |
| 4573 | |
| 4574 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4575 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4576 | return ret; |
| 4577 | } |
| 4578 | |
| 4579 | static int __process_deleted_xattr(int num, struct btrfs_key *di_key, |
| 4580 | const char *name, int name_len, |
| 4581 | const char *data, int data_len, |
| 4582 | u8 type, void *ctx) |
| 4583 | { |
| 4584 | int ret; |
| 4585 | struct send_ctx *sctx = ctx; |
| 4586 | struct fs_path *p; |
| 4587 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4588 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4589 | if (!p) |
| 4590 | return -ENOMEM; |
| 4591 | |
| 4592 | ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p); |
| 4593 | if (ret < 0) |
| 4594 | goto out; |
| 4595 | |
| 4596 | ret = send_remove_xattr(sctx, p, name, name_len); |
| 4597 | |
| 4598 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4599 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4600 | return ret; |
| 4601 | } |
| 4602 | |
| 4603 | static int process_new_xattr(struct send_ctx *sctx) |
| 4604 | { |
| 4605 | int ret = 0; |
| 4606 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4607 | ret = iterate_dir_item(sctx->send_root, sctx->left_path, |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4608 | __process_new_xattr, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4609 | |
| 4610 | return ret; |
| 4611 | } |
| 4612 | |
| 4613 | static int process_deleted_xattr(struct send_ctx *sctx) |
| 4614 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 4615 | return iterate_dir_item(sctx->parent_root, sctx->right_path, |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4616 | __process_deleted_xattr, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4617 | } |
| 4618 | |
| 4619 | struct find_xattr_ctx { |
| 4620 | const char *name; |
| 4621 | int name_len; |
| 4622 | int found_idx; |
| 4623 | char *found_data; |
| 4624 | int found_data_len; |
| 4625 | }; |
| 4626 | |
| 4627 | static int __find_xattr(int num, struct btrfs_key *di_key, |
| 4628 | const char *name, int name_len, |
| 4629 | const char *data, int data_len, |
| 4630 | u8 type, void *vctx) |
| 4631 | { |
| 4632 | struct find_xattr_ctx *ctx = vctx; |
| 4633 | |
| 4634 | if (name_len == ctx->name_len && |
| 4635 | strncmp(name, ctx->name, name_len) == 0) { |
| 4636 | ctx->found_idx = num; |
| 4637 | ctx->found_data_len = data_len; |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 4638 | ctx->found_data = kmemdup(data, data_len, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4639 | if (!ctx->found_data) |
| 4640 | return -ENOMEM; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4641 | return 1; |
| 4642 | } |
| 4643 | return 0; |
| 4644 | } |
| 4645 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4646 | static int find_xattr(struct btrfs_root *root, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4647 | struct btrfs_path *path, |
| 4648 | struct btrfs_key *key, |
| 4649 | const char *name, int name_len, |
| 4650 | char **data, int *data_len) |
| 4651 | { |
| 4652 | int ret; |
| 4653 | struct find_xattr_ctx ctx; |
| 4654 | |
| 4655 | ctx.name = name; |
| 4656 | ctx.name_len = name_len; |
| 4657 | ctx.found_idx = -1; |
| 4658 | ctx.found_data = NULL; |
| 4659 | ctx.found_data_len = 0; |
| 4660 | |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4661 | ret = iterate_dir_item(root, path, __find_xattr, &ctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4662 | if (ret < 0) |
| 4663 | return ret; |
| 4664 | |
| 4665 | if (ctx.found_idx == -1) |
| 4666 | return -ENOENT; |
| 4667 | if (data) { |
| 4668 | *data = ctx.found_data; |
| 4669 | *data_len = ctx.found_data_len; |
| 4670 | } else { |
| 4671 | kfree(ctx.found_data); |
| 4672 | } |
| 4673 | return ctx.found_idx; |
| 4674 | } |
| 4675 | |
| 4676 | |
| 4677 | static int __process_changed_new_xattr(int num, struct btrfs_key *di_key, |
| 4678 | const char *name, int name_len, |
| 4679 | const char *data, int data_len, |
| 4680 | u8 type, void *ctx) |
| 4681 | { |
| 4682 | int ret; |
| 4683 | struct send_ctx *sctx = ctx; |
| 4684 | char *found_data = NULL; |
| 4685 | int found_data_len = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4686 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4687 | ret = find_xattr(sctx->parent_root, sctx->right_path, |
| 4688 | sctx->cmp_key, name, name_len, &found_data, |
| 4689 | &found_data_len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4690 | if (ret == -ENOENT) { |
| 4691 | ret = __process_new_xattr(num, di_key, name, name_len, data, |
| 4692 | data_len, type, ctx); |
| 4693 | } else if (ret >= 0) { |
| 4694 | if (data_len != found_data_len || |
| 4695 | memcmp(data, found_data, data_len)) { |
| 4696 | ret = __process_new_xattr(num, di_key, name, name_len, |
| 4697 | data, data_len, type, ctx); |
| 4698 | } else { |
| 4699 | ret = 0; |
| 4700 | } |
| 4701 | } |
| 4702 | |
| 4703 | kfree(found_data); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4704 | return ret; |
| 4705 | } |
| 4706 | |
| 4707 | static int __process_changed_deleted_xattr(int num, struct btrfs_key *di_key, |
| 4708 | const char *name, int name_len, |
| 4709 | const char *data, int data_len, |
| 4710 | u8 type, void *ctx) |
| 4711 | { |
| 4712 | int ret; |
| 4713 | struct send_ctx *sctx = ctx; |
| 4714 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4715 | ret = find_xattr(sctx->send_root, sctx->left_path, sctx->cmp_key, |
| 4716 | name, name_len, NULL, NULL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4717 | if (ret == -ENOENT) |
| 4718 | ret = __process_deleted_xattr(num, di_key, name, name_len, data, |
| 4719 | data_len, type, ctx); |
| 4720 | else if (ret >= 0) |
| 4721 | ret = 0; |
| 4722 | |
| 4723 | return ret; |
| 4724 | } |
| 4725 | |
| 4726 | static int process_changed_xattr(struct send_ctx *sctx) |
| 4727 | { |
| 4728 | int ret = 0; |
| 4729 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4730 | ret = iterate_dir_item(sctx->send_root, sctx->left_path, |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4731 | __process_changed_new_xattr, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4732 | if (ret < 0) |
| 4733 | goto out; |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4734 | ret = iterate_dir_item(sctx->parent_root, sctx->right_path, |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4735 | __process_changed_deleted_xattr, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4736 | |
| 4737 | out: |
| 4738 | return ret; |
| 4739 | } |
| 4740 | |
| 4741 | static int process_all_new_xattrs(struct send_ctx *sctx) |
| 4742 | { |
| 4743 | int ret; |
| 4744 | struct btrfs_root *root; |
| 4745 | struct btrfs_path *path; |
| 4746 | struct btrfs_key key; |
| 4747 | struct btrfs_key found_key; |
| 4748 | struct extent_buffer *eb; |
| 4749 | int slot; |
| 4750 | |
| 4751 | path = alloc_path_for_send(); |
| 4752 | if (!path) |
| 4753 | return -ENOMEM; |
| 4754 | |
| 4755 | root = sctx->send_root; |
| 4756 | |
| 4757 | key.objectid = sctx->cmp_key->objectid; |
| 4758 | key.type = BTRFS_XATTR_ITEM_KEY; |
| 4759 | key.offset = 0; |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4760 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4761 | if (ret < 0) |
| 4762 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4763 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4764 | while (1) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4765 | eb = path->nodes[0]; |
| 4766 | slot = path->slots[0]; |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4767 | if (slot >= btrfs_header_nritems(eb)) { |
| 4768 | ret = btrfs_next_leaf(root, path); |
| 4769 | if (ret < 0) { |
| 4770 | goto out; |
| 4771 | } else if (ret > 0) { |
| 4772 | ret = 0; |
| 4773 | break; |
| 4774 | } |
| 4775 | continue; |
| 4776 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4777 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4778 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4779 | if (found_key.objectid != key.objectid || |
| 4780 | found_key.type != key.type) { |
| 4781 | ret = 0; |
| 4782 | goto out; |
| 4783 | } |
| 4784 | |
Nikolay Borisov | a035751 | 2017-08-21 12:43:44 +0300 | [diff] [blame] | 4785 | ret = iterate_dir_item(root, path, __process_new_xattr, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4786 | if (ret < 0) |
| 4787 | goto out; |
| 4788 | |
Filipe David Borba Manana | dff6d0a | 2014-02-05 16:48:56 +0000 | [diff] [blame] | 4789 | path->slots[0]++; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4790 | } |
| 4791 | |
| 4792 | out: |
| 4793 | btrfs_free_path(path); |
| 4794 | return ret; |
| 4795 | } |
| 4796 | |
Omar Sandoval | a9b2e0d | 2020-08-21 00:39:51 -0700 | [diff] [blame^] | 4797 | static int fill_read_buf(struct send_ctx *sctx, u64 offset, u32 len) |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4798 | { |
| 4799 | struct btrfs_root *root = sctx->send_root; |
| 4800 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 4801 | struct inode *inode; |
| 4802 | struct page *page; |
| 4803 | char *addr; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4804 | pgoff_t index = offset >> PAGE_SHIFT; |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4805 | pgoff_t last_index; |
Johannes Thumshirn | 7073017 | 2018-12-05 15:23:03 +0100 | [diff] [blame] | 4806 | unsigned pg_offset = offset_in_page(offset); |
Omar Sandoval | a9b2e0d | 2020-08-21 00:39:51 -0700 | [diff] [blame^] | 4807 | int ret = 0; |
| 4808 | size_t read = 0; |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4809 | |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 4810 | inode = btrfs_iget(fs_info->sb, sctx->cur_ino, root); |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4811 | if (IS_ERR(inode)) |
| 4812 | return PTR_ERR(inode); |
| 4813 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4814 | last_index = (offset + len - 1) >> PAGE_SHIFT; |
Liu Bo | 2131bcd | 2014-03-05 10:07:35 +0800 | [diff] [blame] | 4815 | |
| 4816 | /* initial readahead */ |
| 4817 | memset(&sctx->ra, 0, sizeof(struct file_ra_state)); |
| 4818 | file_ra_state_init(&sctx->ra, inode->i_mapping); |
Liu Bo | 2131bcd | 2014-03-05 10:07:35 +0800 | [diff] [blame] | 4819 | |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4820 | while (index <= last_index) { |
| 4821 | unsigned cur_len = min_t(unsigned, len, |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4822 | PAGE_SIZE - pg_offset); |
Kuanling Huang | eef16ba | 2017-09-15 16:47:45 +0800 | [diff] [blame] | 4823 | |
| 4824 | page = find_lock_page(inode->i_mapping, index); |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4825 | if (!page) { |
Kuanling Huang | eef16ba | 2017-09-15 16:47:45 +0800 | [diff] [blame] | 4826 | page_cache_sync_readahead(inode->i_mapping, &sctx->ra, |
| 4827 | NULL, index, last_index + 1 - index); |
| 4828 | |
| 4829 | page = find_or_create_page(inode->i_mapping, index, |
| 4830 | GFP_KERNEL); |
| 4831 | if (!page) { |
| 4832 | ret = -ENOMEM; |
| 4833 | break; |
| 4834 | } |
| 4835 | } |
| 4836 | |
| 4837 | if (PageReadahead(page)) { |
| 4838 | page_cache_async_readahead(inode->i_mapping, &sctx->ra, |
| 4839 | NULL, page, index, last_index + 1 - index); |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4840 | } |
| 4841 | |
| 4842 | if (!PageUptodate(page)) { |
| 4843 | btrfs_readpage(NULL, page); |
| 4844 | lock_page(page); |
| 4845 | if (!PageUptodate(page)) { |
| 4846 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4847 | put_page(page); |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4848 | ret = -EIO; |
| 4849 | break; |
| 4850 | } |
| 4851 | } |
| 4852 | |
| 4853 | addr = kmap(page); |
Omar Sandoval | a9b2e0d | 2020-08-21 00:39:51 -0700 | [diff] [blame^] | 4854 | memcpy(sctx->read_buf + read, addr + pg_offset, cur_len); |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4855 | kunmap(page); |
| 4856 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4857 | put_page(page); |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4858 | index++; |
| 4859 | pg_offset = 0; |
| 4860 | len -= cur_len; |
Omar Sandoval | a9b2e0d | 2020-08-21 00:39:51 -0700 | [diff] [blame^] | 4861 | read += cur_len; |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4862 | } |
Josef Bacik | ed25909 | 2013-10-25 11:36:01 -0400 | [diff] [blame] | 4863 | iput(inode); |
| 4864 | return ret; |
| 4865 | } |
| 4866 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4867 | /* |
| 4868 | * Read some bytes from the current inode/file and send a write command to |
| 4869 | * user space. |
| 4870 | */ |
| 4871 | static int send_write(struct send_ctx *sctx, u64 offset, u32 len) |
| 4872 | { |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 4873 | struct btrfs_fs_info *fs_info = sctx->send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4874 | int ret = 0; |
| 4875 | struct fs_path *p; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4876 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4877 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4878 | if (!p) |
| 4879 | return -ENOMEM; |
| 4880 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 4881 | btrfs_debug(fs_info, "send_write offset=%llu, len=%d", offset, len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4882 | |
Omar Sandoval | a9b2e0d | 2020-08-21 00:39:51 -0700 | [diff] [blame^] | 4883 | ret = fill_read_buf(sctx, offset, len); |
| 4884 | if (ret < 0) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4885 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4886 | |
| 4887 | ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE); |
| 4888 | if (ret < 0) |
| 4889 | goto out; |
| 4890 | |
| 4891 | ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p); |
| 4892 | if (ret < 0) |
| 4893 | goto out; |
| 4894 | |
| 4895 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
| 4896 | TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset); |
Omar Sandoval | a9b2e0d | 2020-08-21 00:39:51 -0700 | [diff] [blame^] | 4897 | TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4898 | |
| 4899 | ret = send_cmd(sctx); |
| 4900 | |
| 4901 | tlv_put_failure: |
| 4902 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4903 | fs_path_free(p); |
Omar Sandoval | a9b2e0d | 2020-08-21 00:39:51 -0700 | [diff] [blame^] | 4904 | return ret; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4905 | } |
| 4906 | |
| 4907 | /* |
| 4908 | * Send a clone command to user space. |
| 4909 | */ |
| 4910 | static int send_clone(struct send_ctx *sctx, |
| 4911 | u64 offset, u32 len, |
| 4912 | struct clone_root *clone_root) |
| 4913 | { |
| 4914 | int ret = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4915 | struct fs_path *p; |
| 4916 | u64 gen; |
| 4917 | |
Jeff Mahoney | 04ab956 | 2016-09-20 10:05:03 -0400 | [diff] [blame] | 4918 | btrfs_debug(sctx->send_root->fs_info, |
| 4919 | "send_clone offset=%llu, len=%d, clone_root=%llu, clone_inode=%llu, clone_offset=%llu", |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 4920 | offset, len, clone_root->root->root_key.objectid, |
| 4921 | clone_root->ino, clone_root->offset); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4922 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4923 | p = fs_path_alloc(); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4924 | if (!p) |
| 4925 | return -ENOMEM; |
| 4926 | |
| 4927 | ret = begin_cmd(sctx, BTRFS_SEND_C_CLONE); |
| 4928 | if (ret < 0) |
| 4929 | goto out; |
| 4930 | |
| 4931 | ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p); |
| 4932 | if (ret < 0) |
| 4933 | goto out; |
| 4934 | |
| 4935 | TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset); |
| 4936 | TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_LEN, len); |
| 4937 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
| 4938 | |
Alexander Block | e938c8a | 2012-07-28 16:33:49 +0200 | [diff] [blame] | 4939 | if (clone_root->root == sctx->send_root) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4940 | ret = get_inode_info(sctx->send_root, clone_root->ino, NULL, |
Alexander Block | 85a7b33 | 2012-07-26 23:39:10 +0200 | [diff] [blame] | 4941 | &gen, NULL, NULL, NULL, NULL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4942 | if (ret < 0) |
| 4943 | goto out; |
| 4944 | ret = get_cur_path(sctx, clone_root->ino, gen, p); |
| 4945 | } else { |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4946 | ret = get_inode_path(clone_root->root, clone_root->ino, p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4947 | } |
| 4948 | if (ret < 0) |
| 4949 | goto out; |
| 4950 | |
Josef Bacik | 37b8d27 | 2015-06-04 17:17:25 -0400 | [diff] [blame] | 4951 | /* |
| 4952 | * If the parent we're using has a received_uuid set then use that as |
| 4953 | * our clone source as that is what we will look for when doing a |
| 4954 | * receive. |
| 4955 | * |
| 4956 | * This covers the case that we create a snapshot off of a received |
| 4957 | * subvolume and then use that as the parent and try to receive on a |
| 4958 | * different host. |
| 4959 | */ |
| 4960 | if (!btrfs_is_empty_uuid(clone_root->root->root_item.received_uuid)) |
| 4961 | TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID, |
| 4962 | clone_root->root->root_item.received_uuid); |
| 4963 | else |
| 4964 | TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID, |
| 4965 | clone_root->root->root_item.uuid); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4966 | TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID, |
Filipe David Borba Manana | 5a0f4e2 | 2013-12-03 15:55:48 +0000 | [diff] [blame] | 4967 | le64_to_cpu(clone_root->root->root_item.ctransid)); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4968 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_CLONE_PATH, p); |
| 4969 | TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_OFFSET, |
| 4970 | clone_root->offset); |
| 4971 | |
| 4972 | ret = send_cmd(sctx); |
| 4973 | |
| 4974 | tlv_put_failure: |
| 4975 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4976 | fs_path_free(p); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 4977 | return ret; |
| 4978 | } |
| 4979 | |
Mark Fasheh | cb95e7b | 2013-02-04 20:54:57 +0000 | [diff] [blame] | 4980 | /* |
| 4981 | * Send an update extent command to user space. |
| 4982 | */ |
| 4983 | static int send_update_extent(struct send_ctx *sctx, |
| 4984 | u64 offset, u32 len) |
| 4985 | { |
| 4986 | int ret = 0; |
| 4987 | struct fs_path *p; |
| 4988 | |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 4989 | p = fs_path_alloc(); |
Mark Fasheh | cb95e7b | 2013-02-04 20:54:57 +0000 | [diff] [blame] | 4990 | if (!p) |
| 4991 | return -ENOMEM; |
| 4992 | |
| 4993 | ret = begin_cmd(sctx, BTRFS_SEND_C_UPDATE_EXTENT); |
| 4994 | if (ret < 0) |
| 4995 | goto out; |
| 4996 | |
| 4997 | ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p); |
| 4998 | if (ret < 0) |
| 4999 | goto out; |
| 5000 | |
| 5001 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
| 5002 | TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset); |
| 5003 | TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, len); |
| 5004 | |
| 5005 | ret = send_cmd(sctx); |
| 5006 | |
| 5007 | tlv_put_failure: |
| 5008 | out: |
Tsutomu Itoh | 924794c | 2013-05-08 07:51:52 +0000 | [diff] [blame] | 5009 | fs_path_free(p); |
Mark Fasheh | cb95e7b | 2013-02-04 20:54:57 +0000 | [diff] [blame] | 5010 | return ret; |
| 5011 | } |
| 5012 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5013 | static int send_hole(struct send_ctx *sctx, u64 end) |
| 5014 | { |
| 5015 | struct fs_path *p = NULL; |
| 5016 | u64 offset = sctx->cur_inode_last_extent; |
| 5017 | u64 len; |
| 5018 | int ret = 0; |
| 5019 | |
Filipe Manana | 22d3151 | 2018-07-30 12:39:58 +0100 | [diff] [blame] | 5020 | /* |
| 5021 | * A hole that starts at EOF or beyond it. Since we do not yet support |
| 5022 | * fallocate (for extent preallocation and hole punching), sending a |
| 5023 | * write of zeroes starting at EOF or beyond would later require issuing |
| 5024 | * a truncate operation which would undo the write and achieve nothing. |
| 5025 | */ |
| 5026 | if (offset >= sctx->cur_inode_size) |
| 5027 | return 0; |
| 5028 | |
Filipe Manana | 6b1f72e5 | 2019-05-20 09:55:42 +0100 | [diff] [blame] | 5029 | /* |
| 5030 | * Don't go beyond the inode's i_size due to prealloc extents that start |
| 5031 | * after the i_size. |
| 5032 | */ |
| 5033 | end = min_t(u64, end, sctx->cur_inode_size); |
| 5034 | |
Filipe Manana | d4dfc0f | 2018-02-06 20:39:20 +0000 | [diff] [blame] | 5035 | if (sctx->flags & BTRFS_SEND_FLAG_NO_FILE_DATA) |
| 5036 | return send_update_extent(sctx, offset, end - offset); |
| 5037 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5038 | p = fs_path_alloc(); |
| 5039 | if (!p) |
| 5040 | return -ENOMEM; |
Filipe Manana | c715e15 | 2014-03-31 14:52:14 +0100 | [diff] [blame] | 5041 | ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p); |
| 5042 | if (ret < 0) |
| 5043 | goto tlv_put_failure; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5044 | memset(sctx->read_buf, 0, BTRFS_SEND_READ_SIZE); |
| 5045 | while (offset < end) { |
| 5046 | len = min_t(u64, end - offset, BTRFS_SEND_READ_SIZE); |
| 5047 | |
| 5048 | ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE); |
| 5049 | if (ret < 0) |
| 5050 | break; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5051 | TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p); |
| 5052 | TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset); |
| 5053 | TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, len); |
| 5054 | ret = send_cmd(sctx); |
| 5055 | if (ret < 0) |
| 5056 | break; |
| 5057 | offset += len; |
| 5058 | } |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 5059 | sctx->cur_inode_next_write_offset = offset; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5060 | tlv_put_failure: |
| 5061 | fs_path_free(p); |
| 5062 | return ret; |
| 5063 | } |
| 5064 | |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5065 | static int send_extent_data(struct send_ctx *sctx, |
| 5066 | const u64 offset, |
| 5067 | const u64 len) |
| 5068 | { |
| 5069 | u64 sent = 0; |
| 5070 | |
| 5071 | if (sctx->flags & BTRFS_SEND_FLAG_NO_FILE_DATA) |
| 5072 | return send_update_extent(sctx, offset, len); |
| 5073 | |
| 5074 | while (sent < len) { |
| 5075 | u64 size = len - sent; |
| 5076 | int ret; |
| 5077 | |
| 5078 | if (size > BTRFS_SEND_READ_SIZE) |
| 5079 | size = BTRFS_SEND_READ_SIZE; |
| 5080 | ret = send_write(sctx, offset + sent, size); |
| 5081 | if (ret < 0) |
| 5082 | return ret; |
Omar Sandoval | a9b2e0d | 2020-08-21 00:39:51 -0700 | [diff] [blame^] | 5083 | sent += size; |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5084 | } |
| 5085 | return 0; |
| 5086 | } |
| 5087 | |
Marcos Paulo de Souza | 89efda5 | 2020-05-10 23:15:07 -0300 | [diff] [blame] | 5088 | /* |
| 5089 | * Search for a capability xattr related to sctx->cur_ino. If the capability is |
| 5090 | * found, call send_set_xattr function to emit it. |
| 5091 | * |
| 5092 | * Return 0 if there isn't a capability, or when the capability was emitted |
| 5093 | * successfully, or < 0 if an error occurred. |
| 5094 | */ |
| 5095 | static int send_capabilities(struct send_ctx *sctx) |
| 5096 | { |
| 5097 | struct fs_path *fspath = NULL; |
| 5098 | struct btrfs_path *path; |
| 5099 | struct btrfs_dir_item *di; |
| 5100 | struct extent_buffer *leaf; |
| 5101 | unsigned long data_ptr; |
| 5102 | char *buf = NULL; |
| 5103 | int buf_len; |
| 5104 | int ret = 0; |
| 5105 | |
| 5106 | path = alloc_path_for_send(); |
| 5107 | if (!path) |
| 5108 | return -ENOMEM; |
| 5109 | |
| 5110 | di = btrfs_lookup_xattr(NULL, sctx->send_root, path, sctx->cur_ino, |
| 5111 | XATTR_NAME_CAPS, strlen(XATTR_NAME_CAPS), 0); |
| 5112 | if (!di) { |
| 5113 | /* There is no xattr for this inode */ |
| 5114 | goto out; |
| 5115 | } else if (IS_ERR(di)) { |
| 5116 | ret = PTR_ERR(di); |
| 5117 | goto out; |
| 5118 | } |
| 5119 | |
| 5120 | leaf = path->nodes[0]; |
| 5121 | buf_len = btrfs_dir_data_len(leaf, di); |
| 5122 | |
| 5123 | fspath = fs_path_alloc(); |
| 5124 | buf = kmalloc(buf_len, GFP_KERNEL); |
| 5125 | if (!fspath || !buf) { |
| 5126 | ret = -ENOMEM; |
| 5127 | goto out; |
| 5128 | } |
| 5129 | |
| 5130 | ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, fspath); |
| 5131 | if (ret < 0) |
| 5132 | goto out; |
| 5133 | |
| 5134 | data_ptr = (unsigned long)(di + 1) + btrfs_dir_name_len(leaf, di); |
| 5135 | read_extent_buffer(leaf, buf, data_ptr, buf_len); |
| 5136 | |
| 5137 | ret = send_set_xattr(sctx, fspath, XATTR_NAME_CAPS, |
| 5138 | strlen(XATTR_NAME_CAPS), buf, buf_len); |
| 5139 | out: |
| 5140 | kfree(buf); |
| 5141 | fs_path_free(fspath); |
| 5142 | btrfs_free_path(path); |
| 5143 | return ret; |
| 5144 | } |
| 5145 | |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5146 | static int clone_range(struct send_ctx *sctx, |
| 5147 | struct clone_root *clone_root, |
| 5148 | const u64 disk_byte, |
| 5149 | u64 data_offset, |
| 5150 | u64 offset, |
| 5151 | u64 len) |
| 5152 | { |
| 5153 | struct btrfs_path *path; |
| 5154 | struct btrfs_key key; |
| 5155 | int ret; |
Austin Kim | 431d398 | 2019-09-03 12:30:19 +0900 | [diff] [blame] | 5156 | u64 clone_src_i_size = 0; |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5157 | |
Filipe Manana | 72610b1 | 2017-08-10 22:54:51 +0100 | [diff] [blame] | 5158 | /* |
| 5159 | * Prevent cloning from a zero offset with a length matching the sector |
| 5160 | * size because in some scenarios this will make the receiver fail. |
| 5161 | * |
| 5162 | * For example, if in the source filesystem the extent at offset 0 |
| 5163 | * has a length of sectorsize and it was written using direct IO, then |
| 5164 | * it can never be an inline extent (even if compression is enabled). |
| 5165 | * Then this extent can be cloned in the original filesystem to a non |
| 5166 | * zero file offset, but it may not be possible to clone in the |
| 5167 | * destination filesystem because it can be inlined due to compression |
| 5168 | * on the destination filesystem (as the receiver's write operations are |
| 5169 | * always done using buffered IO). The same happens when the original |
| 5170 | * filesystem does not have compression enabled but the destination |
| 5171 | * filesystem has. |
| 5172 | */ |
| 5173 | if (clone_root->offset == 0 && |
| 5174 | len == sctx->send_root->fs_info->sectorsize) |
| 5175 | return send_extent_data(sctx, offset, len); |
| 5176 | |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5177 | path = alloc_path_for_send(); |
| 5178 | if (!path) |
| 5179 | return -ENOMEM; |
| 5180 | |
| 5181 | /* |
Robbie Ko | 040ee612 | 2019-03-29 18:03:27 +0800 | [diff] [blame] | 5182 | * There are inodes that have extents that lie behind its i_size. Don't |
| 5183 | * accept clones from these extents. |
| 5184 | */ |
| 5185 | ret = __get_inode_info(clone_root->root, path, clone_root->ino, |
| 5186 | &clone_src_i_size, NULL, NULL, NULL, NULL, NULL); |
| 5187 | btrfs_release_path(path); |
| 5188 | if (ret < 0) |
| 5189 | goto out; |
| 5190 | |
| 5191 | /* |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5192 | * We can't send a clone operation for the entire range if we find |
| 5193 | * extent items in the respective range in the source file that |
| 5194 | * refer to different extents or if we find holes. |
| 5195 | * So check for that and do a mix of clone and regular write/copy |
| 5196 | * operations if needed. |
| 5197 | * |
| 5198 | * Example: |
| 5199 | * |
| 5200 | * mkfs.btrfs -f /dev/sda |
| 5201 | * mount /dev/sda /mnt |
| 5202 | * xfs_io -f -c "pwrite -S 0xaa 0K 100K" /mnt/foo |
| 5203 | * cp --reflink=always /mnt/foo /mnt/bar |
| 5204 | * xfs_io -c "pwrite -S 0xbb 50K 50K" /mnt/foo |
| 5205 | * btrfs subvolume snapshot -r /mnt /mnt/snap |
| 5206 | * |
| 5207 | * If when we send the snapshot and we are processing file bar (which |
| 5208 | * has a higher inode number than foo) we blindly send a clone operation |
| 5209 | * for the [0, 100K[ range from foo to bar, the receiver ends up getting |
| 5210 | * a file bar that matches the content of file foo - iow, doesn't match |
| 5211 | * the content from bar in the original filesystem. |
| 5212 | */ |
| 5213 | key.objectid = clone_root->ino; |
| 5214 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 5215 | key.offset = clone_root->offset; |
| 5216 | ret = btrfs_search_slot(NULL, clone_root->root, &key, path, 0, 0); |
| 5217 | if (ret < 0) |
| 5218 | goto out; |
| 5219 | if (ret > 0 && path->slots[0] > 0) { |
| 5220 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0] - 1); |
| 5221 | if (key.objectid == clone_root->ino && |
| 5222 | key.type == BTRFS_EXTENT_DATA_KEY) |
| 5223 | path->slots[0]--; |
| 5224 | } |
| 5225 | |
| 5226 | while (true) { |
| 5227 | struct extent_buffer *leaf = path->nodes[0]; |
| 5228 | int slot = path->slots[0]; |
| 5229 | struct btrfs_file_extent_item *ei; |
| 5230 | u8 type; |
| 5231 | u64 ext_len; |
| 5232 | u64 clone_len; |
Robbie Ko | 040ee612 | 2019-03-29 18:03:27 +0800 | [diff] [blame] | 5233 | u64 clone_data_offset; |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5234 | |
| 5235 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5236 | ret = btrfs_next_leaf(clone_root->root, path); |
| 5237 | if (ret < 0) |
| 5238 | goto out; |
| 5239 | else if (ret > 0) |
| 5240 | break; |
| 5241 | continue; |
| 5242 | } |
| 5243 | |
| 5244 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 5245 | |
| 5246 | /* |
| 5247 | * We might have an implicit trailing hole (NO_HOLES feature |
| 5248 | * enabled). We deal with it after leaving this loop. |
| 5249 | */ |
| 5250 | if (key.objectid != clone_root->ino || |
| 5251 | key.type != BTRFS_EXTENT_DATA_KEY) |
| 5252 | break; |
| 5253 | |
| 5254 | ei = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); |
| 5255 | type = btrfs_file_extent_type(leaf, ei); |
| 5256 | if (type == BTRFS_FILE_EXTENT_INLINE) { |
Qu Wenruo | e41ca58 | 2018-06-06 15:41:49 +0800 | [diff] [blame] | 5257 | ext_len = btrfs_file_extent_ram_bytes(leaf, ei); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 5258 | ext_len = PAGE_ALIGN(ext_len); |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5259 | } else { |
| 5260 | ext_len = btrfs_file_extent_num_bytes(leaf, ei); |
| 5261 | } |
| 5262 | |
| 5263 | if (key.offset + ext_len <= clone_root->offset) |
| 5264 | goto next; |
| 5265 | |
| 5266 | if (key.offset > clone_root->offset) { |
| 5267 | /* Implicit hole, NO_HOLES feature enabled. */ |
| 5268 | u64 hole_len = key.offset - clone_root->offset; |
| 5269 | |
| 5270 | if (hole_len > len) |
| 5271 | hole_len = len; |
| 5272 | ret = send_extent_data(sctx, offset, hole_len); |
| 5273 | if (ret < 0) |
| 5274 | goto out; |
| 5275 | |
| 5276 | len -= hole_len; |
| 5277 | if (len == 0) |
| 5278 | break; |
| 5279 | offset += hole_len; |
| 5280 | clone_root->offset += hole_len; |
| 5281 | data_offset += hole_len; |
| 5282 | } |
| 5283 | |
| 5284 | if (key.offset >= clone_root->offset + len) |
| 5285 | break; |
| 5286 | |
Robbie Ko | 040ee612 | 2019-03-29 18:03:27 +0800 | [diff] [blame] | 5287 | if (key.offset >= clone_src_i_size) |
| 5288 | break; |
| 5289 | |
| 5290 | if (key.offset + ext_len > clone_src_i_size) |
| 5291 | ext_len = clone_src_i_size - key.offset; |
| 5292 | |
| 5293 | clone_data_offset = btrfs_file_extent_offset(leaf, ei); |
| 5294 | if (btrfs_file_extent_disk_bytenr(leaf, ei) == disk_byte) { |
| 5295 | clone_root->offset = key.offset; |
| 5296 | if (clone_data_offset < data_offset && |
| 5297 | clone_data_offset + ext_len > data_offset) { |
| 5298 | u64 extent_offset; |
| 5299 | |
| 5300 | extent_offset = data_offset - clone_data_offset; |
| 5301 | ext_len -= extent_offset; |
| 5302 | clone_data_offset += extent_offset; |
| 5303 | clone_root->offset += extent_offset; |
| 5304 | } |
| 5305 | } |
| 5306 | |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5307 | clone_len = min_t(u64, ext_len, len); |
| 5308 | |
| 5309 | if (btrfs_file_extent_disk_bytenr(leaf, ei) == disk_byte && |
Filipe Manana | 3c850b4 | 2019-05-20 09:57:00 +0100 | [diff] [blame] | 5310 | clone_data_offset == data_offset) { |
| 5311 | const u64 src_end = clone_root->offset + clone_len; |
| 5312 | const u64 sectorsize = SZ_64K; |
| 5313 | |
| 5314 | /* |
| 5315 | * We can't clone the last block, when its size is not |
| 5316 | * sector size aligned, into the middle of a file. If we |
| 5317 | * do so, the receiver will get a failure (-EINVAL) when |
| 5318 | * trying to clone or will silently corrupt the data in |
| 5319 | * the destination file if it's on a kernel without the |
| 5320 | * fix introduced by commit ac765f83f1397646 |
| 5321 | * ("Btrfs: fix data corruption due to cloning of eof |
| 5322 | * block). |
| 5323 | * |
| 5324 | * So issue a clone of the aligned down range plus a |
| 5325 | * regular write for the eof block, if we hit that case. |
| 5326 | * |
| 5327 | * Also, we use the maximum possible sector size, 64K, |
| 5328 | * because we don't know what's the sector size of the |
| 5329 | * filesystem that receives the stream, so we have to |
| 5330 | * assume the largest possible sector size. |
| 5331 | */ |
| 5332 | if (src_end == clone_src_i_size && |
| 5333 | !IS_ALIGNED(src_end, sectorsize) && |
| 5334 | offset + clone_len < sctx->cur_inode_size) { |
| 5335 | u64 slen; |
| 5336 | |
| 5337 | slen = ALIGN_DOWN(src_end - clone_root->offset, |
| 5338 | sectorsize); |
| 5339 | if (slen > 0) { |
| 5340 | ret = send_clone(sctx, offset, slen, |
| 5341 | clone_root); |
| 5342 | if (ret < 0) |
| 5343 | goto out; |
| 5344 | } |
| 5345 | ret = send_extent_data(sctx, offset + slen, |
| 5346 | clone_len - slen); |
| 5347 | } else { |
| 5348 | ret = send_clone(sctx, offset, clone_len, |
| 5349 | clone_root); |
| 5350 | } |
| 5351 | } else { |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5352 | ret = send_extent_data(sctx, offset, clone_len); |
Filipe Manana | 3c850b4 | 2019-05-20 09:57:00 +0100 | [diff] [blame] | 5353 | } |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5354 | |
| 5355 | if (ret < 0) |
| 5356 | goto out; |
| 5357 | |
| 5358 | len -= clone_len; |
| 5359 | if (len == 0) |
| 5360 | break; |
| 5361 | offset += clone_len; |
| 5362 | clone_root->offset += clone_len; |
| 5363 | data_offset += clone_len; |
| 5364 | next: |
| 5365 | path->slots[0]++; |
| 5366 | } |
| 5367 | |
| 5368 | if (len > 0) |
| 5369 | ret = send_extent_data(sctx, offset, len); |
| 5370 | else |
| 5371 | ret = 0; |
| 5372 | out: |
| 5373 | btrfs_free_path(path); |
| 5374 | return ret; |
| 5375 | } |
| 5376 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5377 | static int send_write_or_clone(struct send_ctx *sctx, |
| 5378 | struct btrfs_path *path, |
| 5379 | struct btrfs_key *key, |
| 5380 | struct clone_root *clone_root) |
| 5381 | { |
| 5382 | int ret = 0; |
| 5383 | struct btrfs_file_extent_item *ei; |
| 5384 | u64 offset = key->offset; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5385 | u64 len; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5386 | u8 type; |
Filipe David Borba Manana | 28e5dd8 | 2014-01-12 02:26:28 +0000 | [diff] [blame] | 5387 | u64 bs = sctx->send_root->fs_info->sb->s_blocksize; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5388 | |
| 5389 | ei = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 5390 | struct btrfs_file_extent_item); |
| 5391 | type = btrfs_file_extent_type(path->nodes[0], ei); |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 5392 | if (type == BTRFS_FILE_EXTENT_INLINE) { |
Qu Wenruo | e41ca58 | 2018-06-06 15:41:49 +0800 | [diff] [blame] | 5393 | len = btrfs_file_extent_ram_bytes(path->nodes[0], ei); |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 5394 | /* |
| 5395 | * it is possible the inline item won't cover the whole page, |
| 5396 | * but there may be items after this page. Make |
| 5397 | * sure to send the whole thing |
| 5398 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 5399 | len = PAGE_ALIGN(len); |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 5400 | } else { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5401 | len = btrfs_file_extent_num_bytes(path->nodes[0], ei); |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 5402 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5403 | |
Filipe Manana | a6aa10c7 | 2018-04-30 19:05:07 +0100 | [diff] [blame] | 5404 | if (offset >= sctx->cur_inode_size) { |
| 5405 | ret = 0; |
| 5406 | goto out; |
| 5407 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5408 | if (offset + len > sctx->cur_inode_size) |
| 5409 | len = sctx->cur_inode_size - offset; |
| 5410 | if (len == 0) { |
| 5411 | ret = 0; |
| 5412 | goto out; |
| 5413 | } |
| 5414 | |
Filipe David Borba Manana | 28e5dd8 | 2014-01-12 02:26:28 +0000 | [diff] [blame] | 5415 | if (clone_root && IS_ALIGNED(offset + len, bs)) { |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5416 | u64 disk_byte; |
| 5417 | u64 data_offset; |
| 5418 | |
| 5419 | disk_byte = btrfs_file_extent_disk_bytenr(path->nodes[0], ei); |
| 5420 | data_offset = btrfs_file_extent_offset(path->nodes[0], ei); |
| 5421 | ret = clone_range(sctx, clone_root, disk_byte, data_offset, |
| 5422 | offset, len); |
Mark Fasheh | cb95e7b | 2013-02-04 20:54:57 +0000 | [diff] [blame] | 5423 | } else { |
Filipe Manana | d906d49 | 2015-10-02 10:47:34 +0100 | [diff] [blame] | 5424 | ret = send_extent_data(sctx, offset, len); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5425 | } |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 5426 | sctx->cur_inode_next_write_offset = offset + len; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5427 | out: |
| 5428 | return ret; |
| 5429 | } |
| 5430 | |
| 5431 | static int is_extent_unchanged(struct send_ctx *sctx, |
| 5432 | struct btrfs_path *left_path, |
| 5433 | struct btrfs_key *ekey) |
| 5434 | { |
| 5435 | int ret = 0; |
| 5436 | struct btrfs_key key; |
| 5437 | struct btrfs_path *path = NULL; |
| 5438 | struct extent_buffer *eb; |
| 5439 | int slot; |
| 5440 | struct btrfs_key found_key; |
| 5441 | struct btrfs_file_extent_item *ei; |
| 5442 | u64 left_disknr; |
| 5443 | u64 right_disknr; |
| 5444 | u64 left_offset; |
| 5445 | u64 right_offset; |
| 5446 | u64 left_offset_fixed; |
| 5447 | u64 left_len; |
| 5448 | u64 right_len; |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 5449 | u64 left_gen; |
| 5450 | u64 right_gen; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5451 | u8 left_type; |
| 5452 | u8 right_type; |
| 5453 | |
| 5454 | path = alloc_path_for_send(); |
| 5455 | if (!path) |
| 5456 | return -ENOMEM; |
| 5457 | |
| 5458 | eb = left_path->nodes[0]; |
| 5459 | slot = left_path->slots[0]; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5460 | ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); |
| 5461 | left_type = btrfs_file_extent_type(eb, ei); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5462 | |
| 5463 | if (left_type != BTRFS_FILE_EXTENT_REG) { |
| 5464 | ret = 0; |
| 5465 | goto out; |
| 5466 | } |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 5467 | left_disknr = btrfs_file_extent_disk_bytenr(eb, ei); |
| 5468 | left_len = btrfs_file_extent_num_bytes(eb, ei); |
| 5469 | left_offset = btrfs_file_extent_offset(eb, ei); |
| 5470 | left_gen = btrfs_file_extent_generation(eb, ei); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5471 | |
| 5472 | /* |
| 5473 | * Following comments will refer to these graphics. L is the left |
| 5474 | * extents which we are checking at the moment. 1-8 are the right |
| 5475 | * extents that we iterate. |
| 5476 | * |
| 5477 | * |-----L-----| |
| 5478 | * |-1-|-2a-|-3-|-4-|-5-|-6-| |
| 5479 | * |
| 5480 | * |-----L-----| |
| 5481 | * |--1--|-2b-|...(same as above) |
| 5482 | * |
| 5483 | * Alternative situation. Happens on files where extents got split. |
| 5484 | * |-----L-----| |
| 5485 | * |-----------7-----------|-6-| |
| 5486 | * |
| 5487 | * Alternative situation. Happens on files which got larger. |
| 5488 | * |-----L-----| |
| 5489 | * |-8-| |
| 5490 | * Nothing follows after 8. |
| 5491 | */ |
| 5492 | |
| 5493 | key.objectid = ekey->objectid; |
| 5494 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 5495 | key.offset = ekey->offset; |
| 5496 | ret = btrfs_search_slot_for_read(sctx->parent_root, &key, path, 0, 0); |
| 5497 | if (ret < 0) |
| 5498 | goto out; |
| 5499 | if (ret) { |
| 5500 | ret = 0; |
| 5501 | goto out; |
| 5502 | } |
| 5503 | |
| 5504 | /* |
| 5505 | * Handle special case where the right side has no extents at all. |
| 5506 | */ |
| 5507 | eb = path->nodes[0]; |
| 5508 | slot = path->slots[0]; |
| 5509 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 5510 | if (found_key.objectid != key.objectid || |
| 5511 | found_key.type != key.type) { |
Josef Bacik | 57cfd46 | 2013-08-20 15:55:39 -0400 | [diff] [blame] | 5512 | /* If we're a hole then just pretend nothing changed */ |
| 5513 | ret = (left_disknr) ? 0 : 1; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5514 | goto out; |
| 5515 | } |
| 5516 | |
| 5517 | /* |
| 5518 | * We're now on 2a, 2b or 7. |
| 5519 | */ |
| 5520 | key = found_key; |
| 5521 | while (key.offset < ekey->offset + left_len) { |
| 5522 | ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); |
| 5523 | right_type = btrfs_file_extent_type(eb, ei); |
Filipe Manana | e1cbfd7 | 2017-04-04 20:31:00 +0100 | [diff] [blame] | 5524 | if (right_type != BTRFS_FILE_EXTENT_REG && |
| 5525 | right_type != BTRFS_FILE_EXTENT_INLINE) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5526 | ret = 0; |
| 5527 | goto out; |
| 5528 | } |
| 5529 | |
Filipe Manana | e1cbfd7 | 2017-04-04 20:31:00 +0100 | [diff] [blame] | 5530 | if (right_type == BTRFS_FILE_EXTENT_INLINE) { |
Qu Wenruo | e41ca58 | 2018-06-06 15:41:49 +0800 | [diff] [blame] | 5531 | right_len = btrfs_file_extent_ram_bytes(eb, ei); |
Filipe Manana | e1cbfd7 | 2017-04-04 20:31:00 +0100 | [diff] [blame] | 5532 | right_len = PAGE_ALIGN(right_len); |
| 5533 | } else { |
| 5534 | right_len = btrfs_file_extent_num_bytes(eb, ei); |
| 5535 | } |
Josef Bacik | 007d31f | 2013-10-31 16:49:02 -0400 | [diff] [blame] | 5536 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5537 | /* |
| 5538 | * Are we at extent 8? If yes, we know the extent is changed. |
| 5539 | * This may only happen on the first iteration. |
| 5540 | */ |
Alexander Block | d8347fa | 2012-08-01 12:49:15 +0200 | [diff] [blame] | 5541 | if (found_key.offset + right_len <= ekey->offset) { |
Josef Bacik | 57cfd46 | 2013-08-20 15:55:39 -0400 | [diff] [blame] | 5542 | /* If we're a hole just pretend nothing changed */ |
| 5543 | ret = (left_disknr) ? 0 : 1; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5544 | goto out; |
| 5545 | } |
| 5546 | |
Filipe Manana | e1cbfd7 | 2017-04-04 20:31:00 +0100 | [diff] [blame] | 5547 | /* |
| 5548 | * We just wanted to see if when we have an inline extent, what |
| 5549 | * follows it is a regular extent (wanted to check the above |
| 5550 | * condition for inline extents too). This should normally not |
| 5551 | * happen but it's possible for example when we have an inline |
| 5552 | * compressed extent representing data with a size matching |
| 5553 | * the page size (currently the same as sector size). |
| 5554 | */ |
| 5555 | if (right_type == BTRFS_FILE_EXTENT_INLINE) { |
| 5556 | ret = 0; |
| 5557 | goto out; |
| 5558 | } |
| 5559 | |
Filipe Manana | 24e52b1 | 2017-07-06 15:31:46 +0100 | [diff] [blame] | 5560 | right_disknr = btrfs_file_extent_disk_bytenr(eb, ei); |
| 5561 | right_offset = btrfs_file_extent_offset(eb, ei); |
| 5562 | right_gen = btrfs_file_extent_generation(eb, ei); |
| 5563 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5564 | left_offset_fixed = left_offset; |
| 5565 | if (key.offset < ekey->offset) { |
| 5566 | /* Fix the right offset for 2a and 7. */ |
| 5567 | right_offset += ekey->offset - key.offset; |
| 5568 | } else { |
| 5569 | /* Fix the left offset for all behind 2a and 2b */ |
| 5570 | left_offset_fixed += key.offset - ekey->offset; |
| 5571 | } |
| 5572 | |
| 5573 | /* |
| 5574 | * Check if we have the same extent. |
| 5575 | */ |
Alexander Block | 3954096 | 2012-08-01 12:46:05 +0200 | [diff] [blame] | 5576 | if (left_disknr != right_disknr || |
Chris Mason | 74dd17f | 2012-08-07 16:25:13 -0400 | [diff] [blame] | 5577 | left_offset_fixed != right_offset || |
| 5578 | left_gen != right_gen) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5579 | ret = 0; |
| 5580 | goto out; |
| 5581 | } |
| 5582 | |
| 5583 | /* |
| 5584 | * Go to the next extent. |
| 5585 | */ |
| 5586 | ret = btrfs_next_item(sctx->parent_root, path); |
| 5587 | if (ret < 0) |
| 5588 | goto out; |
| 5589 | if (!ret) { |
| 5590 | eb = path->nodes[0]; |
| 5591 | slot = path->slots[0]; |
| 5592 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 5593 | } |
| 5594 | if (ret || found_key.objectid != key.objectid || |
| 5595 | found_key.type != key.type) { |
| 5596 | key.offset += right_len; |
| 5597 | break; |
Jan Schmidt | adaa4b8 | 2013-03-21 14:30:23 +0000 | [diff] [blame] | 5598 | } |
| 5599 | if (found_key.offset != key.offset + right_len) { |
| 5600 | ret = 0; |
| 5601 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5602 | } |
| 5603 | key = found_key; |
| 5604 | } |
| 5605 | |
| 5606 | /* |
| 5607 | * We're now behind the left extent (treat as unchanged) or at the end |
| 5608 | * of the right side (treat as changed). |
| 5609 | */ |
| 5610 | if (key.offset >= ekey->offset + left_len) |
| 5611 | ret = 1; |
| 5612 | else |
| 5613 | ret = 0; |
| 5614 | |
| 5615 | |
| 5616 | out: |
| 5617 | btrfs_free_path(path); |
| 5618 | return ret; |
| 5619 | } |
| 5620 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5621 | static int get_last_extent(struct send_ctx *sctx, u64 offset) |
| 5622 | { |
| 5623 | struct btrfs_path *path; |
| 5624 | struct btrfs_root *root = sctx->send_root; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5625 | struct btrfs_key key; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5626 | int ret; |
| 5627 | |
| 5628 | path = alloc_path_for_send(); |
| 5629 | if (!path) |
| 5630 | return -ENOMEM; |
| 5631 | |
| 5632 | sctx->cur_inode_last_extent = 0; |
| 5633 | |
| 5634 | key.objectid = sctx->cur_ino; |
| 5635 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 5636 | key.offset = offset; |
| 5637 | ret = btrfs_search_slot_for_read(root, &key, path, 0, 1); |
| 5638 | if (ret < 0) |
| 5639 | goto out; |
| 5640 | ret = 0; |
| 5641 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 5642 | if (key.objectid != sctx->cur_ino || key.type != BTRFS_EXTENT_DATA_KEY) |
| 5643 | goto out; |
| 5644 | |
Filipe Manana | a5eeb3d | 2020-03-09 12:41:06 +0000 | [diff] [blame] | 5645 | sctx->cur_inode_last_extent = btrfs_file_extent_end(path); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5646 | out: |
| 5647 | btrfs_free_path(path); |
| 5648 | return ret; |
| 5649 | } |
| 5650 | |
Filipe Manana | 82bfb2e | 2017-02-14 17:56:32 +0000 | [diff] [blame] | 5651 | static int range_is_hole_in_parent(struct send_ctx *sctx, |
| 5652 | const u64 start, |
| 5653 | const u64 end) |
| 5654 | { |
| 5655 | struct btrfs_path *path; |
| 5656 | struct btrfs_key key; |
| 5657 | struct btrfs_root *root = sctx->parent_root; |
| 5658 | u64 search_start = start; |
| 5659 | int ret; |
| 5660 | |
| 5661 | path = alloc_path_for_send(); |
| 5662 | if (!path) |
| 5663 | return -ENOMEM; |
| 5664 | |
| 5665 | key.objectid = sctx->cur_ino; |
| 5666 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 5667 | key.offset = search_start; |
| 5668 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5669 | if (ret < 0) |
| 5670 | goto out; |
| 5671 | if (ret > 0 && path->slots[0] > 0) |
| 5672 | path->slots[0]--; |
| 5673 | |
| 5674 | while (search_start < end) { |
| 5675 | struct extent_buffer *leaf = path->nodes[0]; |
| 5676 | int slot = path->slots[0]; |
| 5677 | struct btrfs_file_extent_item *fi; |
| 5678 | u64 extent_end; |
| 5679 | |
| 5680 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5681 | ret = btrfs_next_leaf(root, path); |
| 5682 | if (ret < 0) |
| 5683 | goto out; |
| 5684 | else if (ret > 0) |
| 5685 | break; |
| 5686 | continue; |
| 5687 | } |
| 5688 | |
| 5689 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 5690 | if (key.objectid < sctx->cur_ino || |
| 5691 | key.type < BTRFS_EXTENT_DATA_KEY) |
| 5692 | goto next; |
| 5693 | if (key.objectid > sctx->cur_ino || |
| 5694 | key.type > BTRFS_EXTENT_DATA_KEY || |
| 5695 | key.offset >= end) |
| 5696 | break; |
| 5697 | |
| 5698 | fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); |
Filipe Manana | a5eeb3d | 2020-03-09 12:41:06 +0000 | [diff] [blame] | 5699 | extent_end = btrfs_file_extent_end(path); |
Filipe Manana | 82bfb2e | 2017-02-14 17:56:32 +0000 | [diff] [blame] | 5700 | if (extent_end <= start) |
| 5701 | goto next; |
| 5702 | if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0) { |
| 5703 | search_start = extent_end; |
| 5704 | goto next; |
| 5705 | } |
| 5706 | ret = 0; |
| 5707 | goto out; |
| 5708 | next: |
| 5709 | path->slots[0]++; |
| 5710 | } |
| 5711 | ret = 1; |
| 5712 | out: |
| 5713 | btrfs_free_path(path); |
| 5714 | return ret; |
| 5715 | } |
| 5716 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5717 | static int maybe_send_hole(struct send_ctx *sctx, struct btrfs_path *path, |
| 5718 | struct btrfs_key *key) |
| 5719 | { |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5720 | int ret = 0; |
| 5721 | |
| 5722 | if (sctx->cur_ino != key->objectid || !need_send_hole(sctx)) |
| 5723 | return 0; |
| 5724 | |
| 5725 | if (sctx->cur_inode_last_extent == (u64)-1) { |
| 5726 | ret = get_last_extent(sctx, key->offset - 1); |
| 5727 | if (ret) |
| 5728 | return ret; |
| 5729 | } |
| 5730 | |
Filipe David Borba Manana | bf54f41 | 2014-01-28 01:38:06 +0000 | [diff] [blame] | 5731 | if (path->slots[0] == 0 && |
| 5732 | sctx->cur_inode_last_extent < key->offset) { |
| 5733 | /* |
| 5734 | * We might have skipped entire leafs that contained only |
| 5735 | * file extent items for our current inode. These leafs have |
| 5736 | * a generation number smaller (older) than the one in the |
| 5737 | * current leaf and the leaf our last extent came from, and |
| 5738 | * are located between these 2 leafs. |
| 5739 | */ |
| 5740 | ret = get_last_extent(sctx, key->offset - 1); |
| 5741 | if (ret) |
| 5742 | return ret; |
| 5743 | } |
| 5744 | |
Filipe Manana | 82bfb2e | 2017-02-14 17:56:32 +0000 | [diff] [blame] | 5745 | if (sctx->cur_inode_last_extent < key->offset) { |
| 5746 | ret = range_is_hole_in_parent(sctx, |
| 5747 | sctx->cur_inode_last_extent, |
| 5748 | key->offset); |
| 5749 | if (ret < 0) |
| 5750 | return ret; |
| 5751 | else if (ret == 0) |
| 5752 | ret = send_hole(sctx, key->offset); |
| 5753 | else |
| 5754 | ret = 0; |
| 5755 | } |
Filipe Manana | a5eeb3d | 2020-03-09 12:41:06 +0000 | [diff] [blame] | 5756 | sctx->cur_inode_last_extent = btrfs_file_extent_end(path); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5757 | return ret; |
| 5758 | } |
| 5759 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5760 | static int process_extent(struct send_ctx *sctx, |
| 5761 | struct btrfs_path *path, |
| 5762 | struct btrfs_key *key) |
| 5763 | { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5764 | struct clone_root *found_clone = NULL; |
Josef Bacik | 57cfd46 | 2013-08-20 15:55:39 -0400 | [diff] [blame] | 5765 | int ret = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5766 | |
| 5767 | if (S_ISLNK(sctx->cur_inode_mode)) |
| 5768 | return 0; |
| 5769 | |
| 5770 | if (sctx->parent_root && !sctx->cur_inode_new) { |
| 5771 | ret = is_extent_unchanged(sctx, path, key); |
| 5772 | if (ret < 0) |
| 5773 | goto out; |
| 5774 | if (ret) { |
| 5775 | ret = 0; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5776 | goto out_hole; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5777 | } |
Josef Bacik | 57cfd46 | 2013-08-20 15:55:39 -0400 | [diff] [blame] | 5778 | } else { |
| 5779 | struct btrfs_file_extent_item *ei; |
| 5780 | u8 type; |
| 5781 | |
| 5782 | ei = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 5783 | struct btrfs_file_extent_item); |
| 5784 | type = btrfs_file_extent_type(path->nodes[0], ei); |
| 5785 | if (type == BTRFS_FILE_EXTENT_PREALLOC || |
| 5786 | type == BTRFS_FILE_EXTENT_REG) { |
| 5787 | /* |
| 5788 | * The send spec does not have a prealloc command yet, |
| 5789 | * so just leave a hole for prealloc'ed extents until |
| 5790 | * we have enough commands queued up to justify rev'ing |
| 5791 | * the send spec. |
| 5792 | */ |
| 5793 | if (type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 5794 | ret = 0; |
| 5795 | goto out; |
| 5796 | } |
| 5797 | |
| 5798 | /* Have a hole, just skip it. */ |
| 5799 | if (btrfs_file_extent_disk_bytenr(path->nodes[0], ei) == 0) { |
| 5800 | ret = 0; |
| 5801 | goto out; |
| 5802 | } |
| 5803 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5804 | } |
| 5805 | |
| 5806 | ret = find_extent_clone(sctx, path, key->objectid, key->offset, |
| 5807 | sctx->cur_inode_size, &found_clone); |
| 5808 | if (ret != -ENOENT && ret < 0) |
| 5809 | goto out; |
| 5810 | |
| 5811 | ret = send_write_or_clone(sctx, path, key, found_clone); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5812 | if (ret) |
| 5813 | goto out; |
| 5814 | out_hole: |
| 5815 | ret = maybe_send_hole(sctx, path, key); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5816 | out: |
| 5817 | return ret; |
| 5818 | } |
| 5819 | |
| 5820 | static int process_all_extents(struct send_ctx *sctx) |
| 5821 | { |
| 5822 | int ret; |
| 5823 | struct btrfs_root *root; |
| 5824 | struct btrfs_path *path; |
| 5825 | struct btrfs_key key; |
| 5826 | struct btrfs_key found_key; |
| 5827 | struct extent_buffer *eb; |
| 5828 | int slot; |
| 5829 | |
| 5830 | root = sctx->send_root; |
| 5831 | path = alloc_path_for_send(); |
| 5832 | if (!path) |
| 5833 | return -ENOMEM; |
| 5834 | |
| 5835 | key.objectid = sctx->cmp_key->objectid; |
| 5836 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 5837 | key.offset = 0; |
Filipe David Borba Manana | 7fdd29d | 2014-01-24 17:42:09 +0000 | [diff] [blame] | 5838 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5839 | if (ret < 0) |
| 5840 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5841 | |
Filipe David Borba Manana | 7fdd29d | 2014-01-24 17:42:09 +0000 | [diff] [blame] | 5842 | while (1) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5843 | eb = path->nodes[0]; |
| 5844 | slot = path->slots[0]; |
Filipe David Borba Manana | 7fdd29d | 2014-01-24 17:42:09 +0000 | [diff] [blame] | 5845 | |
| 5846 | if (slot >= btrfs_header_nritems(eb)) { |
| 5847 | ret = btrfs_next_leaf(root, path); |
| 5848 | if (ret < 0) { |
| 5849 | goto out; |
| 5850 | } else if (ret > 0) { |
| 5851 | ret = 0; |
| 5852 | break; |
| 5853 | } |
| 5854 | continue; |
| 5855 | } |
| 5856 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5857 | btrfs_item_key_to_cpu(eb, &found_key, slot); |
| 5858 | |
| 5859 | if (found_key.objectid != key.objectid || |
| 5860 | found_key.type != key.type) { |
| 5861 | ret = 0; |
| 5862 | goto out; |
| 5863 | } |
| 5864 | |
| 5865 | ret = process_extent(sctx, path, &found_key); |
| 5866 | if (ret < 0) |
| 5867 | goto out; |
| 5868 | |
Filipe David Borba Manana | 7fdd29d | 2014-01-24 17:42:09 +0000 | [diff] [blame] | 5869 | path->slots[0]++; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5870 | } |
| 5871 | |
| 5872 | out: |
| 5873 | btrfs_free_path(path); |
| 5874 | return ret; |
| 5875 | } |
| 5876 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 5877 | static int process_recorded_refs_if_needed(struct send_ctx *sctx, int at_end, |
| 5878 | int *pending_move, |
| 5879 | int *refs_processed) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5880 | { |
| 5881 | int ret = 0; |
| 5882 | |
| 5883 | if (sctx->cur_ino == 0) |
| 5884 | goto out; |
| 5885 | if (!at_end && sctx->cur_ino == sctx->cmp_key->objectid && |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 5886 | sctx->cmp_key->type <= BTRFS_INODE_EXTREF_KEY) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5887 | goto out; |
| 5888 | if (list_empty(&sctx->new_refs) && list_empty(&sctx->deleted_refs)) |
| 5889 | goto out; |
| 5890 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 5891 | ret = process_recorded_refs(sctx, pending_move); |
Alexander Block | e479d9b | 2012-07-28 16:09:35 +0200 | [diff] [blame] | 5892 | if (ret < 0) |
| 5893 | goto out; |
| 5894 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 5895 | *refs_processed = 1; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5896 | out: |
| 5897 | return ret; |
| 5898 | } |
| 5899 | |
| 5900 | static int finish_inode_if_needed(struct send_ctx *sctx, int at_end) |
| 5901 | { |
| 5902 | int ret = 0; |
| 5903 | u64 left_mode; |
| 5904 | u64 left_uid; |
| 5905 | u64 left_gid; |
| 5906 | u64 right_mode; |
| 5907 | u64 right_uid; |
| 5908 | u64 right_gid; |
| 5909 | int need_chmod = 0; |
| 5910 | int need_chown = 0; |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 5911 | int need_truncate = 1; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 5912 | int pending_move = 0; |
| 5913 | int refs_processed = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5914 | |
Filipe Manana | 46b2f45 | 2018-07-24 11:54:04 +0100 | [diff] [blame] | 5915 | if (sctx->ignore_cur_inode) |
| 5916 | return 0; |
| 5917 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 5918 | ret = process_recorded_refs_if_needed(sctx, at_end, &pending_move, |
| 5919 | &refs_processed); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5920 | if (ret < 0) |
| 5921 | goto out; |
| 5922 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 5923 | /* |
| 5924 | * We have processed the refs and thus need to advance send_progress. |
| 5925 | * Now, calls to get_cur_xxx will take the updated refs of the current |
| 5926 | * inode into account. |
| 5927 | * |
| 5928 | * On the other hand, if our current inode is a directory and couldn't |
| 5929 | * be moved/renamed because its parent was renamed/moved too and it has |
| 5930 | * a higher inode number, we can only move/rename our current inode |
| 5931 | * after we moved/renamed its parent. Therefore in this case operate on |
| 5932 | * the old path (pre move/rename) of our current inode, and the |
| 5933 | * move/rename will be performed later. |
| 5934 | */ |
| 5935 | if (refs_processed && !pending_move) |
| 5936 | sctx->send_progress = sctx->cur_ino + 1; |
| 5937 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5938 | if (sctx->cur_ino == 0 || sctx->cur_inode_deleted) |
| 5939 | goto out; |
| 5940 | if (!at_end && sctx->cmp_key->objectid == sctx->cur_ino) |
| 5941 | goto out; |
| 5942 | |
| 5943 | ret = get_inode_info(sctx->send_root, sctx->cur_ino, NULL, NULL, |
Alexander Block | 85a7b33 | 2012-07-26 23:39:10 +0200 | [diff] [blame] | 5944 | &left_mode, &left_uid, &left_gid, NULL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5945 | if (ret < 0) |
| 5946 | goto out; |
| 5947 | |
Alex Lyakas | e2d044f | 2012-10-17 13:52:47 +0000 | [diff] [blame] | 5948 | if (!sctx->parent_root || sctx->cur_inode_new) { |
| 5949 | need_chown = 1; |
| 5950 | if (!S_ISLNK(sctx->cur_inode_mode)) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5951 | need_chmod = 1; |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 5952 | if (sctx->cur_inode_next_write_offset == sctx->cur_inode_size) |
| 5953 | need_truncate = 0; |
Alex Lyakas | e2d044f | 2012-10-17 13:52:47 +0000 | [diff] [blame] | 5954 | } else { |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 5955 | u64 old_size; |
| 5956 | |
Alex Lyakas | e2d044f | 2012-10-17 13:52:47 +0000 | [diff] [blame] | 5957 | ret = get_inode_info(sctx->parent_root, sctx->cur_ino, |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 5958 | &old_size, NULL, &right_mode, &right_uid, |
Alex Lyakas | e2d044f | 2012-10-17 13:52:47 +0000 | [diff] [blame] | 5959 | &right_gid, NULL); |
| 5960 | if (ret < 0) |
| 5961 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5962 | |
Alex Lyakas | e2d044f | 2012-10-17 13:52:47 +0000 | [diff] [blame] | 5963 | if (left_uid != right_uid || left_gid != right_gid) |
| 5964 | need_chown = 1; |
| 5965 | if (!S_ISLNK(sctx->cur_inode_mode) && left_mode != right_mode) |
| 5966 | need_chmod = 1; |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 5967 | if ((old_size == sctx->cur_inode_size) || |
| 5968 | (sctx->cur_inode_size > old_size && |
| 5969 | sctx->cur_inode_next_write_offset == sctx->cur_inode_size)) |
| 5970 | need_truncate = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5971 | } |
| 5972 | |
| 5973 | if (S_ISREG(sctx->cur_inode_mode)) { |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5974 | if (need_send_hole(sctx)) { |
Filipe Manana | 766b5e5 | 2014-03-30 23:02:53 +0100 | [diff] [blame] | 5975 | if (sctx->cur_inode_last_extent == (u64)-1 || |
| 5976 | sctx->cur_inode_last_extent < |
| 5977 | sctx->cur_inode_size) { |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5978 | ret = get_last_extent(sctx, (u64)-1); |
| 5979 | if (ret) |
| 5980 | goto out; |
| 5981 | } |
| 5982 | if (sctx->cur_inode_last_extent < |
| 5983 | sctx->cur_inode_size) { |
| 5984 | ret = send_hole(sctx, sctx->cur_inode_size); |
| 5985 | if (ret) |
| 5986 | goto out; |
| 5987 | } |
| 5988 | } |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 5989 | if (need_truncate) { |
| 5990 | ret = send_truncate(sctx, sctx->cur_ino, |
| 5991 | sctx->cur_inode_gen, |
| 5992 | sctx->cur_inode_size); |
| 5993 | if (ret < 0) |
| 5994 | goto out; |
| 5995 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 5996 | } |
| 5997 | |
| 5998 | if (need_chown) { |
| 5999 | ret = send_chown(sctx, sctx->cur_ino, sctx->cur_inode_gen, |
| 6000 | left_uid, left_gid); |
| 6001 | if (ret < 0) |
| 6002 | goto out; |
| 6003 | } |
| 6004 | if (need_chmod) { |
| 6005 | ret = send_chmod(sctx, sctx->cur_ino, sctx->cur_inode_gen, |
| 6006 | left_mode); |
| 6007 | if (ret < 0) |
| 6008 | goto out; |
| 6009 | } |
| 6010 | |
Marcos Paulo de Souza | 89efda5 | 2020-05-10 23:15:07 -0300 | [diff] [blame] | 6011 | ret = send_capabilities(sctx); |
| 6012 | if (ret < 0) |
| 6013 | goto out; |
| 6014 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6015 | /* |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 6016 | * If other directory inodes depended on our current directory |
| 6017 | * inode's move/rename, now do their move/rename operations. |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6018 | */ |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 6019 | if (!is_waiting_for_move(sctx, sctx->cur_ino)) { |
| 6020 | ret = apply_children_dir_moves(sctx); |
| 6021 | if (ret) |
| 6022 | goto out; |
Filipe Manana | fcbd215 | 2014-03-03 12:28:40 +0000 | [diff] [blame] | 6023 | /* |
| 6024 | * Need to send that every time, no matter if it actually |
| 6025 | * changed between the two trees as we have done changes to |
| 6026 | * the inode before. If our inode is a directory and it's |
| 6027 | * waiting to be moved/renamed, we will send its utimes when |
| 6028 | * it's moved/renamed, therefore we don't need to do it here. |
| 6029 | */ |
| 6030 | sctx->send_progress = sctx->cur_ino + 1; |
| 6031 | ret = send_utimes(sctx, sctx->cur_ino, sctx->cur_inode_gen); |
| 6032 | if (ret < 0) |
| 6033 | goto out; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 6034 | } |
| 6035 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6036 | out: |
| 6037 | return ret; |
| 6038 | } |
| 6039 | |
Filipe Manana | 46b2f45 | 2018-07-24 11:54:04 +0100 | [diff] [blame] | 6040 | struct parent_paths_ctx { |
| 6041 | struct list_head *refs; |
| 6042 | struct send_ctx *sctx; |
| 6043 | }; |
| 6044 | |
| 6045 | static int record_parent_ref(int num, u64 dir, int index, struct fs_path *name, |
| 6046 | void *ctx) |
| 6047 | { |
| 6048 | struct parent_paths_ctx *ppctx = ctx; |
| 6049 | |
| 6050 | return record_ref(ppctx->sctx->parent_root, dir, name, ppctx->sctx, |
| 6051 | ppctx->refs); |
| 6052 | } |
| 6053 | |
| 6054 | /* |
| 6055 | * Issue unlink operations for all paths of the current inode found in the |
| 6056 | * parent snapshot. |
| 6057 | */ |
| 6058 | static int btrfs_unlink_all_paths(struct send_ctx *sctx) |
| 6059 | { |
| 6060 | LIST_HEAD(deleted_refs); |
| 6061 | struct btrfs_path *path; |
| 6062 | struct btrfs_key key; |
| 6063 | struct parent_paths_ctx ctx; |
| 6064 | int ret; |
| 6065 | |
| 6066 | path = alloc_path_for_send(); |
| 6067 | if (!path) |
| 6068 | return -ENOMEM; |
| 6069 | |
| 6070 | key.objectid = sctx->cur_ino; |
| 6071 | key.type = BTRFS_INODE_REF_KEY; |
| 6072 | key.offset = 0; |
| 6073 | ret = btrfs_search_slot(NULL, sctx->parent_root, &key, path, 0, 0); |
| 6074 | if (ret < 0) |
| 6075 | goto out; |
| 6076 | |
| 6077 | ctx.refs = &deleted_refs; |
| 6078 | ctx.sctx = sctx; |
| 6079 | |
| 6080 | while (true) { |
| 6081 | struct extent_buffer *eb = path->nodes[0]; |
| 6082 | int slot = path->slots[0]; |
| 6083 | |
| 6084 | if (slot >= btrfs_header_nritems(eb)) { |
| 6085 | ret = btrfs_next_leaf(sctx->parent_root, path); |
| 6086 | if (ret < 0) |
| 6087 | goto out; |
| 6088 | else if (ret > 0) |
| 6089 | break; |
| 6090 | continue; |
| 6091 | } |
| 6092 | |
| 6093 | btrfs_item_key_to_cpu(eb, &key, slot); |
| 6094 | if (key.objectid != sctx->cur_ino) |
| 6095 | break; |
| 6096 | if (key.type != BTRFS_INODE_REF_KEY && |
| 6097 | key.type != BTRFS_INODE_EXTREF_KEY) |
| 6098 | break; |
| 6099 | |
| 6100 | ret = iterate_inode_ref(sctx->parent_root, path, &key, 1, |
| 6101 | record_parent_ref, &ctx); |
| 6102 | if (ret < 0) |
| 6103 | goto out; |
| 6104 | |
| 6105 | path->slots[0]++; |
| 6106 | } |
| 6107 | |
| 6108 | while (!list_empty(&deleted_refs)) { |
| 6109 | struct recorded_ref *ref; |
| 6110 | |
| 6111 | ref = list_first_entry(&deleted_refs, struct recorded_ref, list); |
| 6112 | ret = send_unlink(sctx, ref->full_path); |
| 6113 | if (ret < 0) |
| 6114 | goto out; |
| 6115 | fs_path_free(ref->full_path); |
| 6116 | list_del(&ref->list); |
| 6117 | kfree(ref); |
| 6118 | } |
| 6119 | ret = 0; |
| 6120 | out: |
| 6121 | btrfs_free_path(path); |
| 6122 | if (ret) |
| 6123 | __free_recorded_refs(&deleted_refs); |
| 6124 | return ret; |
| 6125 | } |
| 6126 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6127 | static int changed_inode(struct send_ctx *sctx, |
| 6128 | enum btrfs_compare_tree_result result) |
| 6129 | { |
| 6130 | int ret = 0; |
| 6131 | struct btrfs_key *key = sctx->cmp_key; |
| 6132 | struct btrfs_inode_item *left_ii = NULL; |
| 6133 | struct btrfs_inode_item *right_ii = NULL; |
| 6134 | u64 left_gen = 0; |
| 6135 | u64 right_gen = 0; |
| 6136 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6137 | sctx->cur_ino = key->objectid; |
| 6138 | sctx->cur_inode_new_gen = 0; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 6139 | sctx->cur_inode_last_extent = (u64)-1; |
Filipe Manana | ffa7c42 | 2018-02-06 20:40:40 +0000 | [diff] [blame] | 6140 | sctx->cur_inode_next_write_offset = 0; |
Filipe Manana | 46b2f45 | 2018-07-24 11:54:04 +0100 | [diff] [blame] | 6141 | sctx->ignore_cur_inode = false; |
Alexander Block | e479d9b | 2012-07-28 16:09:35 +0200 | [diff] [blame] | 6142 | |
| 6143 | /* |
| 6144 | * Set send_progress to current inode. This will tell all get_cur_xxx |
| 6145 | * functions that the current inode's refs are not updated yet. Later, |
| 6146 | * when process_recorded_refs is finished, it is set to cur_ino + 1. |
| 6147 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6148 | sctx->send_progress = sctx->cur_ino; |
| 6149 | |
| 6150 | if (result == BTRFS_COMPARE_TREE_NEW || |
| 6151 | result == BTRFS_COMPARE_TREE_CHANGED) { |
| 6152 | left_ii = btrfs_item_ptr(sctx->left_path->nodes[0], |
| 6153 | sctx->left_path->slots[0], |
| 6154 | struct btrfs_inode_item); |
| 6155 | left_gen = btrfs_inode_generation(sctx->left_path->nodes[0], |
| 6156 | left_ii); |
| 6157 | } else { |
| 6158 | right_ii = btrfs_item_ptr(sctx->right_path->nodes[0], |
| 6159 | sctx->right_path->slots[0], |
| 6160 | struct btrfs_inode_item); |
| 6161 | right_gen = btrfs_inode_generation(sctx->right_path->nodes[0], |
| 6162 | right_ii); |
| 6163 | } |
| 6164 | if (result == BTRFS_COMPARE_TREE_CHANGED) { |
| 6165 | right_ii = btrfs_item_ptr(sctx->right_path->nodes[0], |
| 6166 | sctx->right_path->slots[0], |
| 6167 | struct btrfs_inode_item); |
| 6168 | |
| 6169 | right_gen = btrfs_inode_generation(sctx->right_path->nodes[0], |
| 6170 | right_ii); |
Alexander Block | 6d85ed05 | 2012-08-01 14:48:59 +0200 | [diff] [blame] | 6171 | |
| 6172 | /* |
| 6173 | * The cur_ino = root dir case is special here. We can't treat |
| 6174 | * the inode as deleted+reused because it would generate a |
| 6175 | * stream that tries to delete/mkdir the root dir. |
| 6176 | */ |
| 6177 | if (left_gen != right_gen && |
| 6178 | sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6179 | sctx->cur_inode_new_gen = 1; |
| 6180 | } |
| 6181 | |
Filipe Manana | 46b2f45 | 2018-07-24 11:54:04 +0100 | [diff] [blame] | 6182 | /* |
| 6183 | * Normally we do not find inodes with a link count of zero (orphans) |
| 6184 | * because the most common case is to create a snapshot and use it |
| 6185 | * for a send operation. However other less common use cases involve |
| 6186 | * using a subvolume and send it after turning it to RO mode just |
| 6187 | * after deleting all hard links of a file while holding an open |
| 6188 | * file descriptor against it or turning a RO snapshot into RW mode, |
| 6189 | * keep an open file descriptor against a file, delete it and then |
| 6190 | * turn the snapshot back to RO mode before using it for a send |
| 6191 | * operation. So if we find such cases, ignore the inode and all its |
| 6192 | * items completely if it's a new inode, or if it's a changed inode |
| 6193 | * make sure all its previous paths (from the parent snapshot) are all |
| 6194 | * unlinked and all other the inode items are ignored. |
| 6195 | */ |
| 6196 | if (result == BTRFS_COMPARE_TREE_NEW || |
| 6197 | result == BTRFS_COMPARE_TREE_CHANGED) { |
| 6198 | u32 nlinks; |
| 6199 | |
| 6200 | nlinks = btrfs_inode_nlink(sctx->left_path->nodes[0], left_ii); |
| 6201 | if (nlinks == 0) { |
| 6202 | sctx->ignore_cur_inode = true; |
| 6203 | if (result == BTRFS_COMPARE_TREE_CHANGED) |
| 6204 | ret = btrfs_unlink_all_paths(sctx); |
| 6205 | goto out; |
| 6206 | } |
| 6207 | } |
| 6208 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6209 | if (result == BTRFS_COMPARE_TREE_NEW) { |
| 6210 | sctx->cur_inode_gen = left_gen; |
| 6211 | sctx->cur_inode_new = 1; |
| 6212 | sctx->cur_inode_deleted = 0; |
| 6213 | sctx->cur_inode_size = btrfs_inode_size( |
| 6214 | sctx->left_path->nodes[0], left_ii); |
| 6215 | sctx->cur_inode_mode = btrfs_inode_mode( |
| 6216 | sctx->left_path->nodes[0], left_ii); |
Liu Bo | 644d194 | 2014-02-27 17:29:01 +0800 | [diff] [blame] | 6217 | sctx->cur_inode_rdev = btrfs_inode_rdev( |
| 6218 | sctx->left_path->nodes[0], left_ii); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6219 | if (sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID) |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 6220 | ret = send_create_inode_if_needed(sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6221 | } else if (result == BTRFS_COMPARE_TREE_DELETED) { |
| 6222 | sctx->cur_inode_gen = right_gen; |
| 6223 | sctx->cur_inode_new = 0; |
| 6224 | sctx->cur_inode_deleted = 1; |
| 6225 | sctx->cur_inode_size = btrfs_inode_size( |
| 6226 | sctx->right_path->nodes[0], right_ii); |
| 6227 | sctx->cur_inode_mode = btrfs_inode_mode( |
| 6228 | sctx->right_path->nodes[0], right_ii); |
| 6229 | } else if (result == BTRFS_COMPARE_TREE_CHANGED) { |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 6230 | /* |
| 6231 | * We need to do some special handling in case the inode was |
| 6232 | * reported as changed with a changed generation number. This |
| 6233 | * means that the original inode was deleted and new inode |
| 6234 | * reused the same inum. So we have to treat the old inode as |
| 6235 | * deleted and the new one as new. |
| 6236 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6237 | if (sctx->cur_inode_new_gen) { |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 6238 | /* |
| 6239 | * First, process the inode as if it was deleted. |
| 6240 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6241 | sctx->cur_inode_gen = right_gen; |
| 6242 | sctx->cur_inode_new = 0; |
| 6243 | sctx->cur_inode_deleted = 1; |
| 6244 | sctx->cur_inode_size = btrfs_inode_size( |
| 6245 | sctx->right_path->nodes[0], right_ii); |
| 6246 | sctx->cur_inode_mode = btrfs_inode_mode( |
| 6247 | sctx->right_path->nodes[0], right_ii); |
| 6248 | ret = process_all_refs(sctx, |
| 6249 | BTRFS_COMPARE_TREE_DELETED); |
| 6250 | if (ret < 0) |
| 6251 | goto out; |
| 6252 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 6253 | /* |
| 6254 | * Now process the inode as if it was new. |
| 6255 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6256 | sctx->cur_inode_gen = left_gen; |
| 6257 | sctx->cur_inode_new = 1; |
| 6258 | sctx->cur_inode_deleted = 0; |
| 6259 | sctx->cur_inode_size = btrfs_inode_size( |
| 6260 | sctx->left_path->nodes[0], left_ii); |
| 6261 | sctx->cur_inode_mode = btrfs_inode_mode( |
| 6262 | sctx->left_path->nodes[0], left_ii); |
Liu Bo | 644d194 | 2014-02-27 17:29:01 +0800 | [diff] [blame] | 6263 | sctx->cur_inode_rdev = btrfs_inode_rdev( |
| 6264 | sctx->left_path->nodes[0], left_ii); |
Alexander Block | 1f4692d | 2012-07-28 10:42:24 +0200 | [diff] [blame] | 6265 | ret = send_create_inode_if_needed(sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6266 | if (ret < 0) |
| 6267 | goto out; |
| 6268 | |
| 6269 | ret = process_all_refs(sctx, BTRFS_COMPARE_TREE_NEW); |
| 6270 | if (ret < 0) |
| 6271 | goto out; |
Alexander Block | e479d9b | 2012-07-28 16:09:35 +0200 | [diff] [blame] | 6272 | /* |
| 6273 | * Advance send_progress now as we did not get into |
| 6274 | * process_recorded_refs_if_needed in the new_gen case. |
| 6275 | */ |
| 6276 | sctx->send_progress = sctx->cur_ino + 1; |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 6277 | |
| 6278 | /* |
| 6279 | * Now process all extents and xattrs of the inode as if |
| 6280 | * they were all new. |
| 6281 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6282 | ret = process_all_extents(sctx); |
| 6283 | if (ret < 0) |
| 6284 | goto out; |
| 6285 | ret = process_all_new_xattrs(sctx); |
| 6286 | if (ret < 0) |
| 6287 | goto out; |
| 6288 | } else { |
| 6289 | sctx->cur_inode_gen = left_gen; |
| 6290 | sctx->cur_inode_new = 0; |
| 6291 | sctx->cur_inode_new_gen = 0; |
| 6292 | sctx->cur_inode_deleted = 0; |
| 6293 | sctx->cur_inode_size = btrfs_inode_size( |
| 6294 | sctx->left_path->nodes[0], left_ii); |
| 6295 | sctx->cur_inode_mode = btrfs_inode_mode( |
| 6296 | sctx->left_path->nodes[0], left_ii); |
| 6297 | } |
| 6298 | } |
| 6299 | |
| 6300 | out: |
| 6301 | return ret; |
| 6302 | } |
| 6303 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 6304 | /* |
| 6305 | * We have to process new refs before deleted refs, but compare_trees gives us |
| 6306 | * the new and deleted refs mixed. To fix this, we record the new/deleted refs |
| 6307 | * first and later process them in process_recorded_refs. |
| 6308 | * For the cur_inode_new_gen case, we skip recording completely because |
| 6309 | * changed_inode did already initiate processing of refs. The reason for this is |
| 6310 | * that in this case, compare_tree actually compares the refs of 2 different |
| 6311 | * inodes. To fix this, process_all_refs is used in changed_inode to handle all |
| 6312 | * refs of the right tree as deleted and all refs of the left tree as new. |
| 6313 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6314 | static int changed_ref(struct send_ctx *sctx, |
| 6315 | enum btrfs_compare_tree_result result) |
| 6316 | { |
| 6317 | int ret = 0; |
| 6318 | |
Filipe Manana | 9515558 | 2016-08-01 01:50:37 +0100 | [diff] [blame] | 6319 | if (sctx->cur_ino != sctx->cmp_key->objectid) { |
| 6320 | inconsistent_snapshot_error(sctx, result, "reference"); |
| 6321 | return -EIO; |
| 6322 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6323 | |
| 6324 | if (!sctx->cur_inode_new_gen && |
| 6325 | sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID) { |
| 6326 | if (result == BTRFS_COMPARE_TREE_NEW) |
| 6327 | ret = record_new_ref(sctx); |
| 6328 | else if (result == BTRFS_COMPARE_TREE_DELETED) |
| 6329 | ret = record_deleted_ref(sctx); |
| 6330 | else if (result == BTRFS_COMPARE_TREE_CHANGED) |
| 6331 | ret = record_changed_ref(sctx); |
| 6332 | } |
| 6333 | |
| 6334 | return ret; |
| 6335 | } |
| 6336 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 6337 | /* |
| 6338 | * Process new/deleted/changed xattrs. We skip processing in the |
| 6339 | * cur_inode_new_gen case because changed_inode did already initiate processing |
| 6340 | * of xattrs. The reason is the same as in changed_ref |
| 6341 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6342 | static int changed_xattr(struct send_ctx *sctx, |
| 6343 | enum btrfs_compare_tree_result result) |
| 6344 | { |
| 6345 | int ret = 0; |
| 6346 | |
Filipe Manana | 9515558 | 2016-08-01 01:50:37 +0100 | [diff] [blame] | 6347 | if (sctx->cur_ino != sctx->cmp_key->objectid) { |
| 6348 | inconsistent_snapshot_error(sctx, result, "xattr"); |
| 6349 | return -EIO; |
| 6350 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6351 | |
| 6352 | if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) { |
| 6353 | if (result == BTRFS_COMPARE_TREE_NEW) |
| 6354 | ret = process_new_xattr(sctx); |
| 6355 | else if (result == BTRFS_COMPARE_TREE_DELETED) |
| 6356 | ret = process_deleted_xattr(sctx); |
| 6357 | else if (result == BTRFS_COMPARE_TREE_CHANGED) |
| 6358 | ret = process_changed_xattr(sctx); |
| 6359 | } |
| 6360 | |
| 6361 | return ret; |
| 6362 | } |
| 6363 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 6364 | /* |
| 6365 | * Process new/deleted/changed extents. We skip processing in the |
| 6366 | * cur_inode_new_gen case because changed_inode did already initiate processing |
| 6367 | * of extents. The reason is the same as in changed_ref |
| 6368 | */ |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6369 | static int changed_extent(struct send_ctx *sctx, |
| 6370 | enum btrfs_compare_tree_result result) |
| 6371 | { |
| 6372 | int ret = 0; |
| 6373 | |
Filipe Manana | b4f9a1a | 2019-07-17 13:23:39 +0100 | [diff] [blame] | 6374 | /* |
| 6375 | * We have found an extent item that changed without the inode item |
| 6376 | * having changed. This can happen either after relocation (where the |
| 6377 | * disk_bytenr of an extent item is replaced at |
| 6378 | * relocation.c:replace_file_extents()) or after deduplication into a |
| 6379 | * file in both the parent and send snapshots (where an extent item can |
| 6380 | * get modified or replaced with a new one). Note that deduplication |
| 6381 | * updates the inode item, but it only changes the iversion (sequence |
| 6382 | * field in the inode item) of the inode, so if a file is deduplicated |
| 6383 | * the same amount of times in both the parent and send snapshots, its |
| 6384 | * iversion becames the same in both snapshots, whence the inode item is |
| 6385 | * the same on both snapshots. |
| 6386 | */ |
| 6387 | if (sctx->cur_ino != sctx->cmp_key->objectid) |
| 6388 | return 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6389 | |
| 6390 | if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) { |
| 6391 | if (result != BTRFS_COMPARE_TREE_DELETED) |
| 6392 | ret = process_extent(sctx, sctx->left_path, |
| 6393 | sctx->cmp_key); |
| 6394 | } |
| 6395 | |
| 6396 | return ret; |
| 6397 | } |
| 6398 | |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 6399 | static int dir_changed(struct send_ctx *sctx, u64 dir) |
| 6400 | { |
| 6401 | u64 orig_gen, new_gen; |
| 6402 | int ret; |
| 6403 | |
| 6404 | ret = get_inode_info(sctx->send_root, dir, NULL, &new_gen, NULL, NULL, |
| 6405 | NULL, NULL); |
| 6406 | if (ret) |
| 6407 | return ret; |
| 6408 | |
| 6409 | ret = get_inode_info(sctx->parent_root, dir, NULL, &orig_gen, NULL, |
| 6410 | NULL, NULL, NULL); |
| 6411 | if (ret) |
| 6412 | return ret; |
| 6413 | |
| 6414 | return (orig_gen != new_gen) ? 1 : 0; |
| 6415 | } |
| 6416 | |
| 6417 | static int compare_refs(struct send_ctx *sctx, struct btrfs_path *path, |
| 6418 | struct btrfs_key *key) |
| 6419 | { |
| 6420 | struct btrfs_inode_extref *extref; |
| 6421 | struct extent_buffer *leaf; |
| 6422 | u64 dirid = 0, last_dirid = 0; |
| 6423 | unsigned long ptr; |
| 6424 | u32 item_size; |
| 6425 | u32 cur_offset = 0; |
| 6426 | int ref_name_len; |
| 6427 | int ret = 0; |
| 6428 | |
| 6429 | /* Easy case, just check this one dirid */ |
| 6430 | if (key->type == BTRFS_INODE_REF_KEY) { |
| 6431 | dirid = key->offset; |
| 6432 | |
| 6433 | ret = dir_changed(sctx, dirid); |
| 6434 | goto out; |
| 6435 | } |
| 6436 | |
| 6437 | leaf = path->nodes[0]; |
| 6438 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 6439 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 6440 | while (cur_offset < item_size) { |
| 6441 | extref = (struct btrfs_inode_extref *)(ptr + |
| 6442 | cur_offset); |
| 6443 | dirid = btrfs_inode_extref_parent(leaf, extref); |
| 6444 | ref_name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 6445 | cur_offset += ref_name_len + sizeof(*extref); |
| 6446 | if (dirid == last_dirid) |
| 6447 | continue; |
| 6448 | ret = dir_changed(sctx, dirid); |
| 6449 | if (ret) |
| 6450 | break; |
| 6451 | last_dirid = dirid; |
| 6452 | } |
| 6453 | out: |
| 6454 | return ret; |
| 6455 | } |
| 6456 | |
Alexander Block | 766702e | 2012-07-28 14:11:31 +0200 | [diff] [blame] | 6457 | /* |
| 6458 | * Updates compare related fields in sctx and simply forwards to the actual |
| 6459 | * changed_xxx functions. |
| 6460 | */ |
Nikolay Borisov | ee8c494 | 2017-08-21 12:43:45 +0300 | [diff] [blame] | 6461 | static int changed_cb(struct btrfs_path *left_path, |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6462 | struct btrfs_path *right_path, |
| 6463 | struct btrfs_key *key, |
| 6464 | enum btrfs_compare_tree_result result, |
| 6465 | void *ctx) |
| 6466 | { |
| 6467 | int ret = 0; |
| 6468 | struct send_ctx *sctx = ctx; |
| 6469 | |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 6470 | if (result == BTRFS_COMPARE_TREE_SAME) { |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 6471 | if (key->type == BTRFS_INODE_REF_KEY || |
| 6472 | key->type == BTRFS_INODE_EXTREF_KEY) { |
| 6473 | ret = compare_refs(sctx, left_path, key); |
| 6474 | if (!ret) |
| 6475 | return 0; |
| 6476 | if (ret < 0) |
| 6477 | return ret; |
| 6478 | } else if (key->type == BTRFS_EXTENT_DATA_KEY) { |
| 6479 | return maybe_send_hole(sctx, left_path, key); |
| 6480 | } else { |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 6481 | return 0; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 6482 | } |
Josef Bacik | ba5e8f2 | 2013-08-16 16:52:55 -0400 | [diff] [blame] | 6483 | result = BTRFS_COMPARE_TREE_CHANGED; |
| 6484 | ret = 0; |
| 6485 | } |
| 6486 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6487 | sctx->left_path = left_path; |
| 6488 | sctx->right_path = right_path; |
| 6489 | sctx->cmp_key = key; |
| 6490 | |
| 6491 | ret = finish_inode_if_needed(sctx, 0); |
| 6492 | if (ret < 0) |
| 6493 | goto out; |
| 6494 | |
Alexander Block | 2981e22 | 2012-08-01 14:47:03 +0200 | [diff] [blame] | 6495 | /* Ignore non-FS objects */ |
| 6496 | if (key->objectid == BTRFS_FREE_INO_OBJECTID || |
| 6497 | key->objectid == BTRFS_FREE_SPACE_OBJECTID) |
| 6498 | goto out; |
| 6499 | |
Filipe Manana | 46b2f45 | 2018-07-24 11:54:04 +0100 | [diff] [blame] | 6500 | if (key->type == BTRFS_INODE_ITEM_KEY) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6501 | ret = changed_inode(sctx, result); |
Filipe Manana | 46b2f45 | 2018-07-24 11:54:04 +0100 | [diff] [blame] | 6502 | } else if (!sctx->ignore_cur_inode) { |
| 6503 | if (key->type == BTRFS_INODE_REF_KEY || |
| 6504 | key->type == BTRFS_INODE_EXTREF_KEY) |
| 6505 | ret = changed_ref(sctx, result); |
| 6506 | else if (key->type == BTRFS_XATTR_ITEM_KEY) |
| 6507 | ret = changed_xattr(sctx, result); |
| 6508 | else if (key->type == BTRFS_EXTENT_DATA_KEY) |
| 6509 | ret = changed_extent(sctx, result); |
| 6510 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6511 | |
| 6512 | out: |
| 6513 | return ret; |
| 6514 | } |
| 6515 | |
| 6516 | static int full_send_tree(struct send_ctx *sctx) |
| 6517 | { |
| 6518 | int ret; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6519 | struct btrfs_root *send_root = sctx->send_root; |
| 6520 | struct btrfs_key key; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6521 | struct btrfs_path *path; |
| 6522 | struct extent_buffer *eb; |
| 6523 | int slot; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6524 | |
| 6525 | path = alloc_path_for_send(); |
| 6526 | if (!path) |
| 6527 | return -ENOMEM; |
| 6528 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6529 | key.objectid = BTRFS_FIRST_FREE_OBJECTID; |
| 6530 | key.type = BTRFS_INODE_ITEM_KEY; |
| 6531 | key.offset = 0; |
| 6532 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6533 | ret = btrfs_search_slot_for_read(send_root, &key, path, 1, 0); |
| 6534 | if (ret < 0) |
| 6535 | goto out; |
| 6536 | if (ret) |
| 6537 | goto out_finish; |
| 6538 | |
| 6539 | while (1) { |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6540 | eb = path->nodes[0]; |
| 6541 | slot = path->slots[0]; |
Filipe Manana | ca5d2ba | 2018-07-23 09:10:09 +0100 | [diff] [blame] | 6542 | btrfs_item_key_to_cpu(eb, &key, slot); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6543 | |
Filipe Manana | ca5d2ba | 2018-07-23 09:10:09 +0100 | [diff] [blame] | 6544 | ret = changed_cb(path, NULL, &key, |
Nikolay Borisov | ee8c494 | 2017-08-21 12:43:45 +0300 | [diff] [blame] | 6545 | BTRFS_COMPARE_TREE_NEW, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6546 | if (ret < 0) |
| 6547 | goto out; |
| 6548 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6549 | ret = btrfs_next_item(send_root, path); |
| 6550 | if (ret < 0) |
| 6551 | goto out; |
| 6552 | if (ret) { |
| 6553 | ret = 0; |
| 6554 | break; |
| 6555 | } |
| 6556 | } |
| 6557 | |
| 6558 | out_finish: |
| 6559 | ret = finish_inode_if_needed(sctx, 1); |
| 6560 | |
| 6561 | out: |
| 6562 | btrfs_free_path(path); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6563 | return ret; |
| 6564 | } |
| 6565 | |
David Sterba | 18d0f5c | 2019-08-21 19:12:59 +0200 | [diff] [blame] | 6566 | static int tree_move_down(struct btrfs_path *path, int *level) |
| 6567 | { |
| 6568 | struct extent_buffer *eb; |
| 6569 | |
| 6570 | BUG_ON(*level == 0); |
| 6571 | eb = btrfs_read_node_slot(path->nodes[*level], path->slots[*level]); |
| 6572 | if (IS_ERR(eb)) |
| 6573 | return PTR_ERR(eb); |
| 6574 | |
| 6575 | path->nodes[*level - 1] = eb; |
| 6576 | path->slots[*level - 1] = 0; |
| 6577 | (*level)--; |
| 6578 | return 0; |
| 6579 | } |
| 6580 | |
| 6581 | static int tree_move_next_or_upnext(struct btrfs_path *path, |
| 6582 | int *level, int root_level) |
| 6583 | { |
| 6584 | int ret = 0; |
| 6585 | int nritems; |
| 6586 | nritems = btrfs_header_nritems(path->nodes[*level]); |
| 6587 | |
| 6588 | path->slots[*level]++; |
| 6589 | |
| 6590 | while (path->slots[*level] >= nritems) { |
| 6591 | if (*level == root_level) |
| 6592 | return -1; |
| 6593 | |
| 6594 | /* move upnext */ |
| 6595 | path->slots[*level] = 0; |
| 6596 | free_extent_buffer(path->nodes[*level]); |
| 6597 | path->nodes[*level] = NULL; |
| 6598 | (*level)++; |
| 6599 | path->slots[*level]++; |
| 6600 | |
| 6601 | nritems = btrfs_header_nritems(path->nodes[*level]); |
| 6602 | ret = 1; |
| 6603 | } |
| 6604 | return ret; |
| 6605 | } |
| 6606 | |
| 6607 | /* |
| 6608 | * Returns 1 if it had to move up and next. 0 is returned if it moved only next |
| 6609 | * or down. |
| 6610 | */ |
| 6611 | static int tree_advance(struct btrfs_path *path, |
| 6612 | int *level, int root_level, |
| 6613 | int allow_down, |
| 6614 | struct btrfs_key *key) |
| 6615 | { |
| 6616 | int ret; |
| 6617 | |
| 6618 | if (*level == 0 || !allow_down) { |
| 6619 | ret = tree_move_next_or_upnext(path, level, root_level); |
| 6620 | } else { |
| 6621 | ret = tree_move_down(path, level); |
| 6622 | } |
| 6623 | if (ret >= 0) { |
| 6624 | if (*level == 0) |
| 6625 | btrfs_item_key_to_cpu(path->nodes[*level], key, |
| 6626 | path->slots[*level]); |
| 6627 | else |
| 6628 | btrfs_node_key_to_cpu(path->nodes[*level], key, |
| 6629 | path->slots[*level]); |
| 6630 | } |
| 6631 | return ret; |
| 6632 | } |
| 6633 | |
| 6634 | static int tree_compare_item(struct btrfs_path *left_path, |
| 6635 | struct btrfs_path *right_path, |
| 6636 | char *tmp_buf) |
| 6637 | { |
| 6638 | int cmp; |
| 6639 | int len1, len2; |
| 6640 | unsigned long off1, off2; |
| 6641 | |
| 6642 | len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]); |
| 6643 | len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]); |
| 6644 | if (len1 != len2) |
| 6645 | return 1; |
| 6646 | |
| 6647 | off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]); |
| 6648 | off2 = btrfs_item_ptr_offset(right_path->nodes[0], |
| 6649 | right_path->slots[0]); |
| 6650 | |
| 6651 | read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1); |
| 6652 | |
| 6653 | cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1); |
| 6654 | if (cmp) |
| 6655 | return 1; |
| 6656 | return 0; |
| 6657 | } |
| 6658 | |
| 6659 | /* |
| 6660 | * This function compares two trees and calls the provided callback for |
| 6661 | * every changed/new/deleted item it finds. |
| 6662 | * If shared tree blocks are encountered, whole subtrees are skipped, making |
| 6663 | * the compare pretty fast on snapshotted subvolumes. |
| 6664 | * |
| 6665 | * This currently works on commit roots only. As commit roots are read only, |
| 6666 | * we don't do any locking. The commit roots are protected with transactions. |
| 6667 | * Transactions are ended and rejoined when a commit is tried in between. |
| 6668 | * |
| 6669 | * This function checks for modifications done to the trees while comparing. |
| 6670 | * If it detects a change, it aborts immediately. |
| 6671 | */ |
| 6672 | static int btrfs_compare_trees(struct btrfs_root *left_root, |
David Sterba | 1b51d6f | 2020-08-17 12:16:57 +0200 | [diff] [blame] | 6673 | struct btrfs_root *right_root, void *ctx) |
David Sterba | 18d0f5c | 2019-08-21 19:12:59 +0200 | [diff] [blame] | 6674 | { |
| 6675 | struct btrfs_fs_info *fs_info = left_root->fs_info; |
| 6676 | int ret; |
| 6677 | int cmp; |
| 6678 | struct btrfs_path *left_path = NULL; |
| 6679 | struct btrfs_path *right_path = NULL; |
| 6680 | struct btrfs_key left_key; |
| 6681 | struct btrfs_key right_key; |
| 6682 | char *tmp_buf = NULL; |
| 6683 | int left_root_level; |
| 6684 | int right_root_level; |
| 6685 | int left_level; |
| 6686 | int right_level; |
| 6687 | int left_end_reached; |
| 6688 | int right_end_reached; |
| 6689 | int advance_left; |
| 6690 | int advance_right; |
| 6691 | u64 left_blockptr; |
| 6692 | u64 right_blockptr; |
| 6693 | u64 left_gen; |
| 6694 | u64 right_gen; |
| 6695 | |
| 6696 | left_path = btrfs_alloc_path(); |
| 6697 | if (!left_path) { |
| 6698 | ret = -ENOMEM; |
| 6699 | goto out; |
| 6700 | } |
| 6701 | right_path = btrfs_alloc_path(); |
| 6702 | if (!right_path) { |
| 6703 | ret = -ENOMEM; |
| 6704 | goto out; |
| 6705 | } |
| 6706 | |
| 6707 | tmp_buf = kvmalloc(fs_info->nodesize, GFP_KERNEL); |
| 6708 | if (!tmp_buf) { |
| 6709 | ret = -ENOMEM; |
| 6710 | goto out; |
| 6711 | } |
| 6712 | |
| 6713 | left_path->search_commit_root = 1; |
| 6714 | left_path->skip_locking = 1; |
| 6715 | right_path->search_commit_root = 1; |
| 6716 | right_path->skip_locking = 1; |
| 6717 | |
| 6718 | /* |
| 6719 | * Strategy: Go to the first items of both trees. Then do |
| 6720 | * |
| 6721 | * If both trees are at level 0 |
| 6722 | * Compare keys of current items |
| 6723 | * If left < right treat left item as new, advance left tree |
| 6724 | * and repeat |
| 6725 | * If left > right treat right item as deleted, advance right tree |
| 6726 | * and repeat |
| 6727 | * If left == right do deep compare of items, treat as changed if |
| 6728 | * needed, advance both trees and repeat |
| 6729 | * If both trees are at the same level but not at level 0 |
| 6730 | * Compare keys of current nodes/leafs |
| 6731 | * If left < right advance left tree and repeat |
| 6732 | * If left > right advance right tree and repeat |
| 6733 | * If left == right compare blockptrs of the next nodes/leafs |
| 6734 | * If they match advance both trees but stay at the same level |
| 6735 | * and repeat |
| 6736 | * If they don't match advance both trees while allowing to go |
| 6737 | * deeper and repeat |
| 6738 | * If tree levels are different |
| 6739 | * Advance the tree that needs it and repeat |
| 6740 | * |
| 6741 | * Advancing a tree means: |
| 6742 | * If we are at level 0, try to go to the next slot. If that's not |
| 6743 | * possible, go one level up and repeat. Stop when we found a level |
| 6744 | * where we could go to the next slot. We may at this point be on a |
| 6745 | * node or a leaf. |
| 6746 | * |
| 6747 | * If we are not at level 0 and not on shared tree blocks, go one |
| 6748 | * level deeper. |
| 6749 | * |
| 6750 | * If we are not at level 0 and on shared tree blocks, go one slot to |
| 6751 | * the right if possible or go up and right. |
| 6752 | */ |
| 6753 | |
| 6754 | down_read(&fs_info->commit_root_sem); |
| 6755 | left_level = btrfs_header_level(left_root->commit_root); |
| 6756 | left_root_level = left_level; |
| 6757 | left_path->nodes[left_level] = |
| 6758 | btrfs_clone_extent_buffer(left_root->commit_root); |
| 6759 | if (!left_path->nodes[left_level]) { |
| 6760 | up_read(&fs_info->commit_root_sem); |
| 6761 | ret = -ENOMEM; |
| 6762 | goto out; |
| 6763 | } |
| 6764 | |
| 6765 | right_level = btrfs_header_level(right_root->commit_root); |
| 6766 | right_root_level = right_level; |
| 6767 | right_path->nodes[right_level] = |
| 6768 | btrfs_clone_extent_buffer(right_root->commit_root); |
| 6769 | if (!right_path->nodes[right_level]) { |
| 6770 | up_read(&fs_info->commit_root_sem); |
| 6771 | ret = -ENOMEM; |
| 6772 | goto out; |
| 6773 | } |
| 6774 | up_read(&fs_info->commit_root_sem); |
| 6775 | |
| 6776 | if (left_level == 0) |
| 6777 | btrfs_item_key_to_cpu(left_path->nodes[left_level], |
| 6778 | &left_key, left_path->slots[left_level]); |
| 6779 | else |
| 6780 | btrfs_node_key_to_cpu(left_path->nodes[left_level], |
| 6781 | &left_key, left_path->slots[left_level]); |
| 6782 | if (right_level == 0) |
| 6783 | btrfs_item_key_to_cpu(right_path->nodes[right_level], |
| 6784 | &right_key, right_path->slots[right_level]); |
| 6785 | else |
| 6786 | btrfs_node_key_to_cpu(right_path->nodes[right_level], |
| 6787 | &right_key, right_path->slots[right_level]); |
| 6788 | |
| 6789 | left_end_reached = right_end_reached = 0; |
| 6790 | advance_left = advance_right = 0; |
| 6791 | |
| 6792 | while (1) { |
Nikolay Borisov | 6af112b | 2019-09-04 19:33:58 +0300 | [diff] [blame] | 6793 | cond_resched(); |
David Sterba | 18d0f5c | 2019-08-21 19:12:59 +0200 | [diff] [blame] | 6794 | if (advance_left && !left_end_reached) { |
| 6795 | ret = tree_advance(left_path, &left_level, |
| 6796 | left_root_level, |
| 6797 | advance_left != ADVANCE_ONLY_NEXT, |
| 6798 | &left_key); |
| 6799 | if (ret == -1) |
| 6800 | left_end_reached = ADVANCE; |
| 6801 | else if (ret < 0) |
| 6802 | goto out; |
| 6803 | advance_left = 0; |
| 6804 | } |
| 6805 | if (advance_right && !right_end_reached) { |
| 6806 | ret = tree_advance(right_path, &right_level, |
| 6807 | right_root_level, |
| 6808 | advance_right != ADVANCE_ONLY_NEXT, |
| 6809 | &right_key); |
| 6810 | if (ret == -1) |
| 6811 | right_end_reached = ADVANCE; |
| 6812 | else if (ret < 0) |
| 6813 | goto out; |
| 6814 | advance_right = 0; |
| 6815 | } |
| 6816 | |
| 6817 | if (left_end_reached && right_end_reached) { |
| 6818 | ret = 0; |
| 6819 | goto out; |
| 6820 | } else if (left_end_reached) { |
| 6821 | if (right_level == 0) { |
| 6822 | ret = changed_cb(left_path, right_path, |
| 6823 | &right_key, |
| 6824 | BTRFS_COMPARE_TREE_DELETED, |
| 6825 | ctx); |
| 6826 | if (ret < 0) |
| 6827 | goto out; |
| 6828 | } |
| 6829 | advance_right = ADVANCE; |
| 6830 | continue; |
| 6831 | } else if (right_end_reached) { |
| 6832 | if (left_level == 0) { |
| 6833 | ret = changed_cb(left_path, right_path, |
| 6834 | &left_key, |
| 6835 | BTRFS_COMPARE_TREE_NEW, |
| 6836 | ctx); |
| 6837 | if (ret < 0) |
| 6838 | goto out; |
| 6839 | } |
| 6840 | advance_left = ADVANCE; |
| 6841 | continue; |
| 6842 | } |
| 6843 | |
| 6844 | if (left_level == 0 && right_level == 0) { |
| 6845 | cmp = btrfs_comp_cpu_keys(&left_key, &right_key); |
| 6846 | if (cmp < 0) { |
| 6847 | ret = changed_cb(left_path, right_path, |
| 6848 | &left_key, |
| 6849 | BTRFS_COMPARE_TREE_NEW, |
| 6850 | ctx); |
| 6851 | if (ret < 0) |
| 6852 | goto out; |
| 6853 | advance_left = ADVANCE; |
| 6854 | } else if (cmp > 0) { |
| 6855 | ret = changed_cb(left_path, right_path, |
| 6856 | &right_key, |
| 6857 | BTRFS_COMPARE_TREE_DELETED, |
| 6858 | ctx); |
| 6859 | if (ret < 0) |
| 6860 | goto out; |
| 6861 | advance_right = ADVANCE; |
| 6862 | } else { |
| 6863 | enum btrfs_compare_tree_result result; |
| 6864 | |
| 6865 | WARN_ON(!extent_buffer_uptodate(left_path->nodes[0])); |
| 6866 | ret = tree_compare_item(left_path, right_path, |
| 6867 | tmp_buf); |
| 6868 | if (ret) |
| 6869 | result = BTRFS_COMPARE_TREE_CHANGED; |
| 6870 | else |
| 6871 | result = BTRFS_COMPARE_TREE_SAME; |
| 6872 | ret = changed_cb(left_path, right_path, |
| 6873 | &left_key, result, ctx); |
| 6874 | if (ret < 0) |
| 6875 | goto out; |
| 6876 | advance_left = ADVANCE; |
| 6877 | advance_right = ADVANCE; |
| 6878 | } |
| 6879 | } else if (left_level == right_level) { |
| 6880 | cmp = btrfs_comp_cpu_keys(&left_key, &right_key); |
| 6881 | if (cmp < 0) { |
| 6882 | advance_left = ADVANCE; |
| 6883 | } else if (cmp > 0) { |
| 6884 | advance_right = ADVANCE; |
| 6885 | } else { |
| 6886 | left_blockptr = btrfs_node_blockptr( |
| 6887 | left_path->nodes[left_level], |
| 6888 | left_path->slots[left_level]); |
| 6889 | right_blockptr = btrfs_node_blockptr( |
| 6890 | right_path->nodes[right_level], |
| 6891 | right_path->slots[right_level]); |
| 6892 | left_gen = btrfs_node_ptr_generation( |
| 6893 | left_path->nodes[left_level], |
| 6894 | left_path->slots[left_level]); |
| 6895 | right_gen = btrfs_node_ptr_generation( |
| 6896 | right_path->nodes[right_level], |
| 6897 | right_path->slots[right_level]); |
| 6898 | if (left_blockptr == right_blockptr && |
| 6899 | left_gen == right_gen) { |
| 6900 | /* |
| 6901 | * As we're on a shared block, don't |
| 6902 | * allow to go deeper. |
| 6903 | */ |
| 6904 | advance_left = ADVANCE_ONLY_NEXT; |
| 6905 | advance_right = ADVANCE_ONLY_NEXT; |
| 6906 | } else { |
| 6907 | advance_left = ADVANCE; |
| 6908 | advance_right = ADVANCE; |
| 6909 | } |
| 6910 | } |
| 6911 | } else if (left_level < right_level) { |
| 6912 | advance_right = ADVANCE; |
| 6913 | } else { |
| 6914 | advance_left = ADVANCE; |
| 6915 | } |
| 6916 | } |
| 6917 | |
| 6918 | out: |
| 6919 | btrfs_free_path(left_path); |
| 6920 | btrfs_free_path(right_path); |
| 6921 | kvfree(tmp_buf); |
| 6922 | return ret; |
| 6923 | } |
| 6924 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6925 | static int send_subvol(struct send_ctx *sctx) |
| 6926 | { |
| 6927 | int ret; |
| 6928 | |
Stefan Behrens | c2c7132 | 2013-04-10 17:10:52 +0000 | [diff] [blame] | 6929 | if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_STREAM_HEADER)) { |
| 6930 | ret = send_header(sctx); |
| 6931 | if (ret < 0) |
| 6932 | goto out; |
| 6933 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6934 | |
| 6935 | ret = send_subvol_begin(sctx); |
| 6936 | if (ret < 0) |
| 6937 | goto out; |
| 6938 | |
| 6939 | if (sctx->parent_root) { |
David Sterba | 1b51d6f | 2020-08-17 12:16:57 +0200 | [diff] [blame] | 6940 | ret = btrfs_compare_trees(sctx->send_root, sctx->parent_root, sctx); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6941 | if (ret < 0) |
| 6942 | goto out; |
| 6943 | ret = finish_inode_if_needed(sctx, 1); |
| 6944 | if (ret < 0) |
| 6945 | goto out; |
| 6946 | } else { |
| 6947 | ret = full_send_tree(sctx); |
| 6948 | if (ret < 0) |
| 6949 | goto out; |
| 6950 | } |
| 6951 | |
| 6952 | out: |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 6953 | free_recorded_refs(sctx); |
| 6954 | return ret; |
| 6955 | } |
| 6956 | |
Filipe Manana | e5fa8f8 | 2014-10-21 11:11:41 +0100 | [diff] [blame] | 6957 | /* |
| 6958 | * If orphan cleanup did remove any orphans from a root, it means the tree |
| 6959 | * was modified and therefore the commit root is not the same as the current |
| 6960 | * root anymore. This is a problem, because send uses the commit root and |
| 6961 | * therefore can see inode items that don't exist in the current root anymore, |
| 6962 | * and for example make calls to btrfs_iget, which will do tree lookups based |
| 6963 | * on the current root and not on the commit root. Those lookups will fail, |
| 6964 | * returning a -ESTALE error, and making send fail with that error. So make |
| 6965 | * sure a send does not see any orphans we have just removed, and that it will |
| 6966 | * see the same inodes regardless of whether a transaction commit happened |
| 6967 | * before it started (meaning that the commit root will be the same as the |
| 6968 | * current root) or not. |
| 6969 | */ |
| 6970 | static int ensure_commit_roots_uptodate(struct send_ctx *sctx) |
| 6971 | { |
| 6972 | int i; |
| 6973 | struct btrfs_trans_handle *trans = NULL; |
| 6974 | |
| 6975 | again: |
| 6976 | if (sctx->parent_root && |
| 6977 | sctx->parent_root->node != sctx->parent_root->commit_root) |
| 6978 | goto commit_trans; |
| 6979 | |
| 6980 | for (i = 0; i < sctx->clone_roots_cnt; i++) |
| 6981 | if (sctx->clone_roots[i].root->node != |
| 6982 | sctx->clone_roots[i].root->commit_root) |
| 6983 | goto commit_trans; |
| 6984 | |
| 6985 | if (trans) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 6986 | return btrfs_end_transaction(trans); |
Filipe Manana | e5fa8f8 | 2014-10-21 11:11:41 +0100 | [diff] [blame] | 6987 | |
| 6988 | return 0; |
| 6989 | |
| 6990 | commit_trans: |
| 6991 | /* Use any root, all fs roots will get their commit roots updated. */ |
| 6992 | if (!trans) { |
| 6993 | trans = btrfs_join_transaction(sctx->send_root); |
| 6994 | if (IS_ERR(trans)) |
| 6995 | return PTR_ERR(trans); |
| 6996 | goto again; |
| 6997 | } |
| 6998 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 6999 | return btrfs_commit_transaction(trans); |
Filipe Manana | e5fa8f8 | 2014-10-21 11:11:41 +0100 | [diff] [blame] | 7000 | } |
| 7001 | |
Filipe Manana | 9f89d5d | 2019-04-15 09:29:36 +0100 | [diff] [blame] | 7002 | /* |
| 7003 | * Make sure any existing dellaloc is flushed for any root used by a send |
| 7004 | * operation so that we do not miss any data and we do not race with writeback |
| 7005 | * finishing and changing a tree while send is using the tree. This could |
| 7006 | * happen if a subvolume is in RW mode, has delalloc, is turned to RO mode and |
| 7007 | * a send operation then uses the subvolume. |
| 7008 | * After flushing delalloc ensure_commit_roots_uptodate() must be called. |
| 7009 | */ |
| 7010 | static int flush_delalloc_roots(struct send_ctx *sctx) |
| 7011 | { |
| 7012 | struct btrfs_root *root = sctx->parent_root; |
| 7013 | int ret; |
| 7014 | int i; |
| 7015 | |
| 7016 | if (root) { |
| 7017 | ret = btrfs_start_delalloc_snapshot(root); |
| 7018 | if (ret) |
| 7019 | return ret; |
| 7020 | btrfs_wait_ordered_extents(root, U64_MAX, 0, U64_MAX); |
| 7021 | } |
| 7022 | |
| 7023 | for (i = 0; i < sctx->clone_roots_cnt; i++) { |
| 7024 | root = sctx->clone_roots[i].root; |
| 7025 | ret = btrfs_start_delalloc_snapshot(root); |
| 7026 | if (ret) |
| 7027 | return ret; |
| 7028 | btrfs_wait_ordered_extents(root, U64_MAX, 0, U64_MAX); |
| 7029 | } |
| 7030 | |
| 7031 | return 0; |
| 7032 | } |
| 7033 | |
David Sterba | 66ef7d6 | 2013-12-17 15:07:20 +0100 | [diff] [blame] | 7034 | static void btrfs_root_dec_send_in_progress(struct btrfs_root* root) |
| 7035 | { |
| 7036 | spin_lock(&root->root_item_lock); |
| 7037 | root->send_in_progress--; |
| 7038 | /* |
| 7039 | * Not much left to do, we don't know why it's unbalanced and |
| 7040 | * can't blindly reset it to 0. |
| 7041 | */ |
| 7042 | if (root->send_in_progress < 0) |
| 7043 | btrfs_err(root->fs_info, |
Colin Ian King | f5686e3 | 2018-05-04 12:11:12 +0100 | [diff] [blame] | 7044 | "send_in_progress unbalanced %d root %llu", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7045 | root->send_in_progress, root->root_key.objectid); |
David Sterba | 66ef7d6 | 2013-12-17 15:07:20 +0100 | [diff] [blame] | 7046 | spin_unlock(&root->root_item_lock); |
| 7047 | } |
| 7048 | |
Filipe Manana | 62d54f3 | 2019-04-22 16:43:42 +0100 | [diff] [blame] | 7049 | static void dedupe_in_progress_warn(const struct btrfs_root *root) |
| 7050 | { |
| 7051 | btrfs_warn_rl(root->fs_info, |
| 7052 | "cannot use root %llu for send while deduplications on it are in progress (%d in progress)", |
| 7053 | root->root_key.objectid, root->dedupe_in_progress); |
| 7054 | } |
| 7055 | |
Josef Bacik | 2351f43 | 2017-09-27 10:43:13 -0400 | [diff] [blame] | 7056 | long btrfs_ioctl_send(struct file *mnt_file, struct btrfs_ioctl_send_args *arg) |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7057 | { |
| 7058 | int ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7059 | struct btrfs_root *send_root = BTRFS_I(file_inode(mnt_file))->root; |
| 7060 | struct btrfs_fs_info *fs_info = send_root->fs_info; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7061 | struct btrfs_root *clone_root; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7062 | struct send_ctx *sctx = NULL; |
| 7063 | u32 i; |
| 7064 | u64 *clone_sources_tmp = NULL; |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7065 | int clone_sources_to_rollback = 0; |
David Sterba | e55d115 | 2016-04-11 18:52:02 +0200 | [diff] [blame] | 7066 | unsigned alloc_size; |
Wang Shilong | 896c14f | 2014-01-07 17:25:18 +0800 | [diff] [blame] | 7067 | int sort_clone_roots = 0; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7068 | |
| 7069 | if (!capable(CAP_SYS_ADMIN)) |
| 7070 | return -EPERM; |
| 7071 | |
Josef Bacik | 139f807 | 2013-05-20 11:26:50 -0400 | [diff] [blame] | 7072 | /* |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7073 | * The subvolume must remain read-only during send, protect against |
David Sterba | 521e054 | 2014-04-15 16:41:44 +0200 | [diff] [blame] | 7074 | * making it RW. This also protects against deletion. |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7075 | */ |
| 7076 | spin_lock(&send_root->root_item_lock); |
Filipe Manana | 62d54f3 | 2019-04-22 16:43:42 +0100 | [diff] [blame] | 7077 | if (btrfs_root_readonly(send_root) && send_root->dedupe_in_progress) { |
| 7078 | dedupe_in_progress_warn(send_root); |
| 7079 | spin_unlock(&send_root->root_item_lock); |
| 7080 | return -EAGAIN; |
| 7081 | } |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7082 | send_root->send_in_progress++; |
| 7083 | spin_unlock(&send_root->root_item_lock); |
| 7084 | |
| 7085 | /* |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7086 | * Userspace tools do the checks and warn the user if it's |
| 7087 | * not RO. |
| 7088 | */ |
| 7089 | if (!btrfs_root_readonly(send_root)) { |
| 7090 | ret = -EPERM; |
| 7091 | goto out; |
| 7092 | } |
| 7093 | |
Dan Carpenter | 457ae72 | 2017-03-17 23:51:20 +0300 | [diff] [blame] | 7094 | /* |
| 7095 | * Check that we don't overflow at later allocations, we request |
| 7096 | * clone_sources_count + 1 items, and compare to unsigned long inside |
| 7097 | * access_ok. |
| 7098 | */ |
Dan Carpenter | f5ecec3 | 2016-04-13 09:40:59 +0300 | [diff] [blame] | 7099 | if (arg->clone_sources_count > |
Dan Carpenter | 457ae72 | 2017-03-17 23:51:20 +0300 | [diff] [blame] | 7100 | ULONG_MAX / sizeof(struct clone_root) - 1) { |
Dan Carpenter | f5ecec3 | 2016-04-13 09:40:59 +0300 | [diff] [blame] | 7101 | ret = -EINVAL; |
| 7102 | goto out; |
| 7103 | } |
| 7104 | |
Stefan Behrens | c2c7132 | 2013-04-10 17:10:52 +0000 | [diff] [blame] | 7105 | if (arg->flags & ~BTRFS_SEND_FLAG_MASK) { |
Mark Fasheh | cb95e7b | 2013-02-04 20:54:57 +0000 | [diff] [blame] | 7106 | ret = -EINVAL; |
| 7107 | goto out; |
| 7108 | } |
| 7109 | |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 7110 | sctx = kzalloc(sizeof(struct send_ctx), GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7111 | if (!sctx) { |
| 7112 | ret = -ENOMEM; |
| 7113 | goto out; |
| 7114 | } |
| 7115 | |
| 7116 | INIT_LIST_HEAD(&sctx->new_refs); |
| 7117 | INIT_LIST_HEAD(&sctx->deleted_refs); |
David Sterba | e780b0d | 2016-01-18 18:42:13 +0100 | [diff] [blame] | 7118 | INIT_RADIX_TREE(&sctx->name_cache, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7119 | INIT_LIST_HEAD(&sctx->name_cache_list); |
| 7120 | |
Mark Fasheh | cb95e7b | 2013-02-04 20:54:57 +0000 | [diff] [blame] | 7121 | sctx->flags = arg->flags; |
| 7122 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7123 | sctx->send_filp = fget(arg->send_fd); |
Tsutomu Itoh | ecc7ada | 2013-04-19 01:04:46 +0000 | [diff] [blame] | 7124 | if (!sctx->send_filp) { |
| 7125 | ret = -EBADF; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7126 | goto out; |
| 7127 | } |
| 7128 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7129 | sctx->send_root = send_root; |
David Sterba | 521e054 | 2014-04-15 16:41:44 +0200 | [diff] [blame] | 7130 | /* |
| 7131 | * Unlikely but possible, if the subvolume is marked for deletion but |
| 7132 | * is slow to remove the directory entry, send can still be started |
| 7133 | */ |
| 7134 | if (btrfs_root_dead(sctx->send_root)) { |
| 7135 | ret = -EPERM; |
| 7136 | goto out; |
| 7137 | } |
| 7138 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7139 | sctx->clone_roots_cnt = arg->clone_sources_count; |
| 7140 | |
| 7141 | sctx->send_max_size = BTRFS_SEND_BUF_SIZE; |
Michal Hocko | 752ade6 | 2017-05-08 15:57:27 -0700 | [diff] [blame] | 7142 | sctx->send_buf = kvmalloc(sctx->send_max_size, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7143 | if (!sctx->send_buf) { |
Michal Hocko | 752ade6 | 2017-05-08 15:57:27 -0700 | [diff] [blame] | 7144 | ret = -ENOMEM; |
| 7145 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7146 | } |
| 7147 | |
Michal Hocko | 752ade6 | 2017-05-08 15:57:27 -0700 | [diff] [blame] | 7148 | sctx->read_buf = kvmalloc(BTRFS_SEND_READ_SIZE, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7149 | if (!sctx->read_buf) { |
Michal Hocko | 752ade6 | 2017-05-08 15:57:27 -0700 | [diff] [blame] | 7150 | ret = -ENOMEM; |
| 7151 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7152 | } |
| 7153 | |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 7154 | sctx->pending_dir_moves = RB_ROOT; |
| 7155 | sctx->waiting_dir_moves = RB_ROOT; |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 7156 | sctx->orphan_dirs = RB_ROOT; |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 7157 | |
David Sterba | e55d115 | 2016-04-11 18:52:02 +0200 | [diff] [blame] | 7158 | alloc_size = sizeof(struct clone_root) * (arg->clone_sources_count + 1); |
| 7159 | |
David Sterba | 818e010 | 2017-05-31 18:40:02 +0200 | [diff] [blame] | 7160 | sctx->clone_roots = kzalloc(alloc_size, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7161 | if (!sctx->clone_roots) { |
David Sterba | 818e010 | 2017-05-31 18:40:02 +0200 | [diff] [blame] | 7162 | ret = -ENOMEM; |
| 7163 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7164 | } |
| 7165 | |
David Sterba | e55d115 | 2016-04-11 18:52:02 +0200 | [diff] [blame] | 7166 | alloc_size = arg->clone_sources_count * sizeof(*arg->clone_sources); |
| 7167 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7168 | if (arg->clone_sources_count) { |
Michal Hocko | 752ade6 | 2017-05-08 15:57:27 -0700 | [diff] [blame] | 7169 | clone_sources_tmp = kvmalloc(alloc_size, GFP_KERNEL); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7170 | if (!clone_sources_tmp) { |
Michal Hocko | 752ade6 | 2017-05-08 15:57:27 -0700 | [diff] [blame] | 7171 | ret = -ENOMEM; |
| 7172 | goto out; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7173 | } |
| 7174 | |
| 7175 | ret = copy_from_user(clone_sources_tmp, arg->clone_sources, |
David Sterba | e55d115 | 2016-04-11 18:52:02 +0200 | [diff] [blame] | 7176 | alloc_size); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7177 | if (ret) { |
| 7178 | ret = -EFAULT; |
| 7179 | goto out; |
| 7180 | } |
| 7181 | |
| 7182 | for (i = 0; i < arg->clone_sources_count; i++) { |
David Sterba | 56e9357 | 2020-05-15 19:35:55 +0200 | [diff] [blame] | 7183 | clone_root = btrfs_get_fs_root(fs_info, |
| 7184 | clone_sources_tmp[i], true); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7185 | if (IS_ERR(clone_root)) { |
| 7186 | ret = PTR_ERR(clone_root); |
| 7187 | goto out; |
| 7188 | } |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7189 | spin_lock(&clone_root->root_item_lock); |
Filipe Manana | 5cc2b17 | 2015-03-02 20:53:52 +0000 | [diff] [blame] | 7190 | if (!btrfs_root_readonly(clone_root) || |
| 7191 | btrfs_root_dead(clone_root)) { |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7192 | spin_unlock(&clone_root->root_item_lock); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 7193 | btrfs_put_root(clone_root); |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7194 | ret = -EPERM; |
| 7195 | goto out; |
| 7196 | } |
Filipe Manana | 62d54f3 | 2019-04-22 16:43:42 +0100 | [diff] [blame] | 7197 | if (clone_root->dedupe_in_progress) { |
| 7198 | dedupe_in_progress_warn(clone_root); |
| 7199 | spin_unlock(&clone_root->root_item_lock); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 7200 | btrfs_put_root(clone_root); |
Filipe Manana | 62d54f3 | 2019-04-22 16:43:42 +0100 | [diff] [blame] | 7201 | ret = -EAGAIN; |
| 7202 | goto out; |
| 7203 | } |
Filipe Manana | 2f1f465 | 2015-03-02 20:53:53 +0000 | [diff] [blame] | 7204 | clone_root->send_in_progress++; |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7205 | spin_unlock(&clone_root->root_item_lock); |
Wang Shilong | 18f687d | 2014-01-07 17:25:19 +0800 | [diff] [blame] | 7206 | |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7207 | sctx->clone_roots[i].root = clone_root; |
Filipe Manana | 2f1f465 | 2015-03-02 20:53:53 +0000 | [diff] [blame] | 7208 | clone_sources_to_rollback = i + 1; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7209 | } |
David Sterba | 2f91306 | 2016-04-11 18:40:08 +0200 | [diff] [blame] | 7210 | kvfree(clone_sources_tmp); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7211 | clone_sources_tmp = NULL; |
| 7212 | } |
| 7213 | |
| 7214 | if (arg->parent_root) { |
David Sterba | 56e9357 | 2020-05-15 19:35:55 +0200 | [diff] [blame] | 7215 | sctx->parent_root = btrfs_get_fs_root(fs_info, arg->parent_root, |
| 7216 | true); |
Stefan Behrens | b1b1959 | 2013-05-13 14:42:57 +0000 | [diff] [blame] | 7217 | if (IS_ERR(sctx->parent_root)) { |
| 7218 | ret = PTR_ERR(sctx->parent_root); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7219 | goto out; |
| 7220 | } |
Wang Shilong | 18f687d | 2014-01-07 17:25:19 +0800 | [diff] [blame] | 7221 | |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7222 | spin_lock(&sctx->parent_root->root_item_lock); |
| 7223 | sctx->parent_root->send_in_progress++; |
David Sterba | 521e054 | 2014-04-15 16:41:44 +0200 | [diff] [blame] | 7224 | if (!btrfs_root_readonly(sctx->parent_root) || |
| 7225 | btrfs_root_dead(sctx->parent_root)) { |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7226 | spin_unlock(&sctx->parent_root->root_item_lock); |
| 7227 | ret = -EPERM; |
| 7228 | goto out; |
| 7229 | } |
Filipe Manana | 62d54f3 | 2019-04-22 16:43:42 +0100 | [diff] [blame] | 7230 | if (sctx->parent_root->dedupe_in_progress) { |
| 7231 | dedupe_in_progress_warn(sctx->parent_root); |
| 7232 | spin_unlock(&sctx->parent_root->root_item_lock); |
Filipe Manana | 62d54f3 | 2019-04-22 16:43:42 +0100 | [diff] [blame] | 7233 | ret = -EAGAIN; |
| 7234 | goto out; |
| 7235 | } |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7236 | spin_unlock(&sctx->parent_root->root_item_lock); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7237 | } |
| 7238 | |
| 7239 | /* |
| 7240 | * Clones from send_root are allowed, but only if the clone source |
| 7241 | * is behind the current send position. This is checked while searching |
| 7242 | * for possible clone sources. |
| 7243 | */ |
Josef Bacik | 6f9a3da | 2020-01-24 09:32:48 -0500 | [diff] [blame] | 7244 | sctx->clone_roots[sctx->clone_roots_cnt++].root = |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 7245 | btrfs_grab_root(sctx->send_root); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7246 | |
| 7247 | /* We do a bsearch later */ |
| 7248 | sort(sctx->clone_roots, sctx->clone_roots_cnt, |
| 7249 | sizeof(*sctx->clone_roots), __clone_root_cmp_sort, |
| 7250 | NULL); |
Wang Shilong | 896c14f | 2014-01-07 17:25:18 +0800 | [diff] [blame] | 7251 | sort_clone_roots = 1; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7252 | |
Filipe Manana | 9f89d5d | 2019-04-15 09:29:36 +0100 | [diff] [blame] | 7253 | ret = flush_delalloc_roots(sctx); |
| 7254 | if (ret) |
| 7255 | goto out; |
| 7256 | |
Filipe Manana | e5fa8f8 | 2014-10-21 11:11:41 +0100 | [diff] [blame] | 7257 | ret = ensure_commit_roots_uptodate(sctx); |
| 7258 | if (ret) |
| 7259 | goto out; |
| 7260 | |
Filipe Manana | 9e96749 | 2019-04-22 16:44:09 +0100 | [diff] [blame] | 7261 | mutex_lock(&fs_info->balance_mutex); |
| 7262 | if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) { |
| 7263 | mutex_unlock(&fs_info->balance_mutex); |
| 7264 | btrfs_warn_rl(fs_info, |
| 7265 | "cannot run send because a balance operation is in progress"); |
| 7266 | ret = -EAGAIN; |
| 7267 | goto out; |
| 7268 | } |
| 7269 | fs_info->send_in_progress++; |
| 7270 | mutex_unlock(&fs_info->balance_mutex); |
| 7271 | |
David Sterba | 2755a0d | 2014-07-31 00:43:18 +0200 | [diff] [blame] | 7272 | current->journal_info = BTRFS_SEND_TRANS_STUB; |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7273 | ret = send_subvol(sctx); |
Josef Bacik | a26e8c9 | 2014-03-28 17:07:27 -0400 | [diff] [blame] | 7274 | current->journal_info = NULL; |
Filipe Manana | 9e96749 | 2019-04-22 16:44:09 +0100 | [diff] [blame] | 7275 | mutex_lock(&fs_info->balance_mutex); |
| 7276 | fs_info->send_in_progress--; |
| 7277 | mutex_unlock(&fs_info->balance_mutex); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7278 | if (ret < 0) |
| 7279 | goto out; |
| 7280 | |
Stefan Behrens | c2c7132 | 2013-04-10 17:10:52 +0000 | [diff] [blame] | 7281 | if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_END_CMD)) { |
| 7282 | ret = begin_cmd(sctx, BTRFS_SEND_C_END); |
| 7283 | if (ret < 0) |
| 7284 | goto out; |
| 7285 | ret = send_cmd(sctx); |
| 7286 | if (ret < 0) |
| 7287 | goto out; |
| 7288 | } |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7289 | |
| 7290 | out: |
Filipe David Borba Manana | 9f03740 | 2014-01-22 10:00:53 +0000 | [diff] [blame] | 7291 | WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->pending_dir_moves)); |
| 7292 | while (sctx && !RB_EMPTY_ROOT(&sctx->pending_dir_moves)) { |
| 7293 | struct rb_node *n; |
| 7294 | struct pending_dir_move *pm; |
| 7295 | |
| 7296 | n = rb_first(&sctx->pending_dir_moves); |
| 7297 | pm = rb_entry(n, struct pending_dir_move, node); |
| 7298 | while (!list_empty(&pm->list)) { |
| 7299 | struct pending_dir_move *pm2; |
| 7300 | |
| 7301 | pm2 = list_first_entry(&pm->list, |
| 7302 | struct pending_dir_move, list); |
| 7303 | free_pending_move(sctx, pm2); |
| 7304 | } |
| 7305 | free_pending_move(sctx, pm); |
| 7306 | } |
| 7307 | |
| 7308 | WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->waiting_dir_moves)); |
| 7309 | while (sctx && !RB_EMPTY_ROOT(&sctx->waiting_dir_moves)) { |
| 7310 | struct rb_node *n; |
| 7311 | struct waiting_dir_move *dm; |
| 7312 | |
| 7313 | n = rb_first(&sctx->waiting_dir_moves); |
| 7314 | dm = rb_entry(n, struct waiting_dir_move, node); |
| 7315 | rb_erase(&dm->node, &sctx->waiting_dir_moves); |
| 7316 | kfree(dm); |
| 7317 | } |
| 7318 | |
Filipe Manana | 9dc4421 | 2014-02-19 14:31:44 +0000 | [diff] [blame] | 7319 | WARN_ON(sctx && !ret && !RB_EMPTY_ROOT(&sctx->orphan_dirs)); |
| 7320 | while (sctx && !RB_EMPTY_ROOT(&sctx->orphan_dirs)) { |
| 7321 | struct rb_node *n; |
| 7322 | struct orphan_dir_info *odi; |
| 7323 | |
| 7324 | n = rb_first(&sctx->orphan_dirs); |
| 7325 | odi = rb_entry(n, struct orphan_dir_info, node); |
| 7326 | free_orphan_dir_info(sctx, odi); |
| 7327 | } |
| 7328 | |
Wang Shilong | 896c14f | 2014-01-07 17:25:18 +0800 | [diff] [blame] | 7329 | if (sort_clone_roots) { |
Josef Bacik | 6f9a3da | 2020-01-24 09:32:48 -0500 | [diff] [blame] | 7330 | for (i = 0; i < sctx->clone_roots_cnt; i++) { |
Wang Shilong | 896c14f | 2014-01-07 17:25:18 +0800 | [diff] [blame] | 7331 | btrfs_root_dec_send_in_progress( |
| 7332 | sctx->clone_roots[i].root); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 7333 | btrfs_put_root(sctx->clone_roots[i].root); |
Josef Bacik | 6f9a3da | 2020-01-24 09:32:48 -0500 | [diff] [blame] | 7334 | } |
Wang Shilong | 896c14f | 2014-01-07 17:25:18 +0800 | [diff] [blame] | 7335 | } else { |
Josef Bacik | 6f9a3da | 2020-01-24 09:32:48 -0500 | [diff] [blame] | 7336 | for (i = 0; sctx && i < clone_sources_to_rollback; i++) { |
Wang Shilong | 896c14f | 2014-01-07 17:25:18 +0800 | [diff] [blame] | 7337 | btrfs_root_dec_send_in_progress( |
| 7338 | sctx->clone_roots[i].root); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 7339 | btrfs_put_root(sctx->clone_roots[i].root); |
Josef Bacik | 6f9a3da | 2020-01-24 09:32:48 -0500 | [diff] [blame] | 7340 | } |
Wang Shilong | 896c14f | 2014-01-07 17:25:18 +0800 | [diff] [blame] | 7341 | |
| 7342 | btrfs_root_dec_send_in_progress(send_root); |
| 7343 | } |
Josef Bacik | 6f9a3da | 2020-01-24 09:32:48 -0500 | [diff] [blame] | 7344 | if (sctx && !IS_ERR_OR_NULL(sctx->parent_root)) { |
David Sterba | 66ef7d6 | 2013-12-17 15:07:20 +0100 | [diff] [blame] | 7345 | btrfs_root_dec_send_in_progress(sctx->parent_root); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 7346 | btrfs_put_root(sctx->parent_root); |
Josef Bacik | 6f9a3da | 2020-01-24 09:32:48 -0500 | [diff] [blame] | 7347 | } |
David Sterba | 2c68653 | 2013-12-16 17:34:17 +0100 | [diff] [blame] | 7348 | |
David Sterba | 2f91306 | 2016-04-11 18:40:08 +0200 | [diff] [blame] | 7349 | kvfree(clone_sources_tmp); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7350 | |
| 7351 | if (sctx) { |
| 7352 | if (sctx->send_filp) |
| 7353 | fput(sctx->send_filp); |
| 7354 | |
David Sterba | c03d01f | 2016-04-11 18:40:08 +0200 | [diff] [blame] | 7355 | kvfree(sctx->clone_roots); |
David Sterba | 6ff48ce | 2016-04-11 18:40:08 +0200 | [diff] [blame] | 7356 | kvfree(sctx->send_buf); |
David Sterba | eb5b75f | 2016-04-11 18:40:08 +0200 | [diff] [blame] | 7357 | kvfree(sctx->read_buf); |
Alexander Block | 31db9f7 | 2012-07-25 23:19:24 +0200 | [diff] [blame] | 7358 | |
| 7359 | name_cache_free(sctx); |
| 7360 | |
| 7361 | kfree(sctx); |
| 7362 | } |
| 7363 | |
| 7364 | return ret; |
| 7365 | } |