blob: 0efc2e2f253cb19ba5daa78117272bc8d13d9e73 [file] [log] [blame]
Alexander Block31db9f72012-07-25 23:19:24 +02001/*
2 * Copyright (C) 2012 Alexander Block. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/bsearch.h>
20#include <linux/fs.h>
21#include <linux/file.h>
22#include <linux/sort.h>
23#include <linux/mount.h>
24#include <linux/xattr.h>
25#include <linux/posix_acl_xattr.h>
26#include <linux/radix-tree.h>
27#include <linux/crc32c.h>
Stephen Rothwella1857eb2012-07-27 10:11:13 +100028#include <linux/vmalloc.h>
Alexander Block31db9f72012-07-25 23:19:24 +020029
30#include "send.h"
31#include "backref.h"
32#include "locking.h"
33#include "disk-io.h"
34#include "btrfs_inode.h"
35#include "transaction.h"
36
37static int g_verbose = 0;
38
39#define verbose_printk(...) if (g_verbose) printk(__VA_ARGS__)
40
41/*
42 * A fs_path is a helper to dynamically build path names with unknown size.
43 * It reallocates the internal buffer on demand.
44 * It allows fast adding of path elements on the right side (normal path) and
45 * fast adding to the left side (reversed path). A reversed path can also be
46 * unreversed if needed.
47 */
48struct fs_path {
49 union {
50 struct {
51 char *start;
52 char *end;
53 char *prepared;
54
55 char *buf;
56 int buf_len;
57 int reversed:1;
58 int virtual_mem:1;
59 char inline_buf[];
60 };
61 char pad[PAGE_SIZE];
62 };
63};
64#define FS_PATH_INLINE_SIZE \
65 (sizeof(struct fs_path) - offsetof(struct fs_path, inline_buf))
66
67
68/* reused for each extent */
69struct clone_root {
70 struct btrfs_root *root;
71 u64 ino;
72 u64 offset;
73
74 u64 found_refs;
75};
76
77#define SEND_CTX_MAX_NAME_CACHE_SIZE 128
78#define SEND_CTX_NAME_CACHE_CLEAN_SIZE (SEND_CTX_MAX_NAME_CACHE_SIZE * 2)
79
80struct send_ctx {
81 struct file *send_filp;
82 loff_t send_off;
83 char *send_buf;
84 u32 send_size;
85 u32 send_max_size;
86 u64 total_send_size;
87 u64 cmd_send_size[BTRFS_SEND_C_MAX + 1];
Mark Fashehcb95e7b2013-02-04 20:54:57 +000088 u64 flags; /* 'flags' member of btrfs_ioctl_send_args is u64 */
Alexander Block31db9f72012-07-25 23:19:24 +020089
90 struct vfsmount *mnt;
91
92 struct btrfs_root *send_root;
93 struct btrfs_root *parent_root;
94 struct clone_root *clone_roots;
95 int clone_roots_cnt;
96
97 /* current state of the compare_tree call */
98 struct btrfs_path *left_path;
99 struct btrfs_path *right_path;
100 struct btrfs_key *cmp_key;
101
102 /*
103 * infos of the currently processed inode. In case of deleted inodes,
104 * these are the values from the deleted inode.
105 */
106 u64 cur_ino;
107 u64 cur_inode_gen;
108 int cur_inode_new;
109 int cur_inode_new_gen;
110 int cur_inode_deleted;
Alexander Block31db9f72012-07-25 23:19:24 +0200111 u64 cur_inode_size;
112 u64 cur_inode_mode;
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
123 struct file *cur_inode_filp;
124 char *read_buf;
125};
126
127struct name_cache_entry {
128 struct list_head list;
Alexander Block7e0926f2012-07-28 14:20:58 +0200129 /*
130 * radix_tree has only 32bit entries but we need to handle 64bit inums.
131 * We use the lower 32bit of the 64bit inum to store it in the tree. If
132 * more then one inum would fall into the same entry, we use radix_list
133 * to store the additional entries. radix_list is also used to store
134 * entries where two entries have the same inum but different
135 * generations.
136 */
137 struct list_head radix_list;
Alexander Block31db9f72012-07-25 23:19:24 +0200138 u64 ino;
139 u64 gen;
140 u64 parent_ino;
141 u64 parent_gen;
142 int ret;
143 int need_later_update;
144 int name_len;
145 char name[];
146};
147
148static void fs_path_reset(struct fs_path *p)
149{
150 if (p->reversed) {
151 p->start = p->buf + p->buf_len - 1;
152 p->end = p->start;
153 *p->start = 0;
154 } else {
155 p->start = p->buf;
156 p->end = p->start;
157 *p->start = 0;
158 }
159}
160
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000161static struct fs_path *fs_path_alloc(void)
Alexander Block31db9f72012-07-25 23:19:24 +0200162{
163 struct fs_path *p;
164
165 p = kmalloc(sizeof(*p), GFP_NOFS);
166 if (!p)
167 return NULL;
168 p->reversed = 0;
169 p->virtual_mem = 0;
170 p->buf = p->inline_buf;
171 p->buf_len = FS_PATH_INLINE_SIZE;
172 fs_path_reset(p);
173 return p;
174}
175
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000176static struct fs_path *fs_path_alloc_reversed(void)
Alexander Block31db9f72012-07-25 23:19:24 +0200177{
178 struct fs_path *p;
179
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000180 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +0200181 if (!p)
182 return NULL;
183 p->reversed = 1;
184 fs_path_reset(p);
185 return p;
186}
187
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000188static void fs_path_free(struct fs_path *p)
Alexander Block31db9f72012-07-25 23:19:24 +0200189{
190 if (!p)
191 return;
192 if (p->buf != p->inline_buf) {
193 if (p->virtual_mem)
194 vfree(p->buf);
195 else
196 kfree(p->buf);
197 }
198 kfree(p);
199}
200
201static int fs_path_len(struct fs_path *p)
202{
203 return p->end - p->start;
204}
205
206static int fs_path_ensure_buf(struct fs_path *p, int len)
207{
208 char *tmp_buf;
209 int path_len;
210 int old_buf_len;
211
212 len++;
213
214 if (p->buf_len >= len)
215 return 0;
216
217 path_len = p->end - p->start;
218 old_buf_len = p->buf_len;
219 len = PAGE_ALIGN(len);
220
221 if (p->buf == p->inline_buf) {
222 tmp_buf = kmalloc(len, GFP_NOFS);
223 if (!tmp_buf) {
224 tmp_buf = vmalloc(len);
225 if (!tmp_buf)
226 return -ENOMEM;
227 p->virtual_mem = 1;
228 }
229 memcpy(tmp_buf, p->buf, p->buf_len);
230 p->buf = tmp_buf;
231 p->buf_len = len;
232 } else {
233 if (p->virtual_mem) {
234 tmp_buf = vmalloc(len);
235 if (!tmp_buf)
236 return -ENOMEM;
237 memcpy(tmp_buf, p->buf, p->buf_len);
238 vfree(p->buf);
239 } else {
240 tmp_buf = krealloc(p->buf, len, GFP_NOFS);
241 if (!tmp_buf) {
242 tmp_buf = vmalloc(len);
243 if (!tmp_buf)
244 return -ENOMEM;
245 memcpy(tmp_buf, p->buf, p->buf_len);
246 kfree(p->buf);
247 p->virtual_mem = 1;
248 }
249 }
250 p->buf = tmp_buf;
251 p->buf_len = len;
252 }
253 if (p->reversed) {
254 tmp_buf = p->buf + old_buf_len - path_len - 1;
255 p->end = p->buf + p->buf_len - 1;
256 p->start = p->end - path_len;
257 memmove(p->start, tmp_buf, path_len + 1);
258 } else {
259 p->start = p->buf;
260 p->end = p->start + path_len;
261 }
262 return 0;
263}
264
265static int fs_path_prepare_for_add(struct fs_path *p, int name_len)
266{
267 int ret;
268 int new_len;
269
270 new_len = p->end - p->start + name_len;
271 if (p->start != p->end)
272 new_len++;
273 ret = fs_path_ensure_buf(p, new_len);
274 if (ret < 0)
275 goto out;
276
277 if (p->reversed) {
278 if (p->start != p->end)
279 *--p->start = '/';
280 p->start -= name_len;
281 p->prepared = p->start;
282 } else {
283 if (p->start != p->end)
284 *p->end++ = '/';
285 p->prepared = p->end;
286 p->end += name_len;
287 *p->end = 0;
288 }
289
290out:
291 return ret;
292}
293
294static int fs_path_add(struct fs_path *p, const char *name, int name_len)
295{
296 int ret;
297
298 ret = fs_path_prepare_for_add(p, name_len);
299 if (ret < 0)
300 goto out;
301 memcpy(p->prepared, name, name_len);
302 p->prepared = NULL;
303
304out:
305 return ret;
306}
307
308static int fs_path_add_path(struct fs_path *p, struct fs_path *p2)
309{
310 int ret;
311
312 ret = fs_path_prepare_for_add(p, p2->end - p2->start);
313 if (ret < 0)
314 goto out;
315 memcpy(p->prepared, p2->start, p2->end - p2->start);
316 p->prepared = NULL;
317
318out:
319 return ret;
320}
321
322static int fs_path_add_from_extent_buffer(struct fs_path *p,
323 struct extent_buffer *eb,
324 unsigned long off, int len)
325{
326 int ret;
327
328 ret = fs_path_prepare_for_add(p, len);
329 if (ret < 0)
330 goto out;
331
332 read_extent_buffer(eb, p->prepared, off, len);
333 p->prepared = NULL;
334
335out:
336 return ret;
337}
338
Alexander Block9ea3ef52012-07-28 11:08:09 +0200339#if 0
Alexander Block31db9f72012-07-25 23:19:24 +0200340static void fs_path_remove(struct fs_path *p)
341{
342 BUG_ON(p->reversed);
343 while (p->start != p->end && *p->end != '/')
344 p->end--;
345 *p->end = 0;
346}
Alexander Block9ea3ef52012-07-28 11:08:09 +0200347#endif
Alexander Block31db9f72012-07-25 23:19:24 +0200348
349static int fs_path_copy(struct fs_path *p, struct fs_path *from)
350{
351 int ret;
352
353 p->reversed = from->reversed;
354 fs_path_reset(p);
355
356 ret = fs_path_add_path(p, from);
357
358 return ret;
359}
360
361
362static void fs_path_unreverse(struct fs_path *p)
363{
364 char *tmp;
365 int len;
366
367 if (!p->reversed)
368 return;
369
370 tmp = p->start;
371 len = p->end - p->start;
372 p->start = p->buf;
373 p->end = p->start + len;
374 memmove(p->start, tmp, len + 1);
375 p->reversed = 0;
376}
377
378static struct btrfs_path *alloc_path_for_send(void)
379{
380 struct btrfs_path *path;
381
382 path = btrfs_alloc_path();
383 if (!path)
384 return NULL;
385 path->search_commit_root = 1;
386 path->skip_locking = 1;
387 return path;
388}
389
Eric Sandeen48a3b632013-04-25 20:41:01 +0000390static int write_buf(struct file *filp, const void *buf, u32 len, loff_t *off)
Alexander Block31db9f72012-07-25 23:19:24 +0200391{
392 int ret;
393 mm_segment_t old_fs;
394 u32 pos = 0;
395
396 old_fs = get_fs();
397 set_fs(KERNEL_DS);
398
399 while (pos < len) {
Anand Jain1bcea352012-09-14 00:04:21 -0600400 ret = vfs_write(filp, (char *)buf + pos, len - pos, off);
Alexander Block31db9f72012-07-25 23:19:24 +0200401 /* TODO handle that correctly */
402 /*if (ret == -ERESTARTSYS) {
403 continue;
404 }*/
405 if (ret < 0)
406 goto out;
407 if (ret == 0) {
408 ret = -EIO;
409 goto out;
410 }
411 pos += ret;
412 }
413
414 ret = 0;
415
416out:
417 set_fs(old_fs);
418 return ret;
419}
420
421static int tlv_put(struct send_ctx *sctx, u16 attr, const void *data, int len)
422{
423 struct btrfs_tlv_header *hdr;
424 int total_len = sizeof(*hdr) + len;
425 int left = sctx->send_max_size - sctx->send_size;
426
427 if (unlikely(left < total_len))
428 return -EOVERFLOW;
429
430 hdr = (struct btrfs_tlv_header *) (sctx->send_buf + sctx->send_size);
431 hdr->tlv_type = cpu_to_le16(attr);
432 hdr->tlv_len = cpu_to_le16(len);
433 memcpy(hdr + 1, data, len);
434 sctx->send_size += total_len;
435
436 return 0;
437}
438
439#if 0
440static int tlv_put_u8(struct send_ctx *sctx, u16 attr, u8 value)
441{
442 return tlv_put(sctx, attr, &value, sizeof(value));
443}
444
445static int tlv_put_u16(struct send_ctx *sctx, u16 attr, u16 value)
446{
447 __le16 tmp = cpu_to_le16(value);
448 return tlv_put(sctx, attr, &tmp, sizeof(tmp));
449}
450
451static int tlv_put_u32(struct send_ctx *sctx, u16 attr, u32 value)
452{
453 __le32 tmp = cpu_to_le32(value);
454 return tlv_put(sctx, attr, &tmp, sizeof(tmp));
455}
456#endif
457
458static int tlv_put_u64(struct send_ctx *sctx, u16 attr, u64 value)
459{
460 __le64 tmp = cpu_to_le64(value);
461 return tlv_put(sctx, attr, &tmp, sizeof(tmp));
462}
463
464static int tlv_put_string(struct send_ctx *sctx, u16 attr,
465 const char *str, int len)
466{
467 if (len == -1)
468 len = strlen(str);
469 return tlv_put(sctx, attr, str, len);
470}
471
472static int tlv_put_uuid(struct send_ctx *sctx, u16 attr,
473 const u8 *uuid)
474{
475 return tlv_put(sctx, attr, uuid, BTRFS_UUID_SIZE);
476}
477
478#if 0
479static int tlv_put_timespec(struct send_ctx *sctx, u16 attr,
480 struct timespec *ts)
481{
482 struct btrfs_timespec bts;
483 bts.sec = cpu_to_le64(ts->tv_sec);
484 bts.nsec = cpu_to_le32(ts->tv_nsec);
485 return tlv_put(sctx, attr, &bts, sizeof(bts));
486}
487#endif
488
489static int tlv_put_btrfs_timespec(struct send_ctx *sctx, u16 attr,
490 struct extent_buffer *eb,
491 struct btrfs_timespec *ts)
492{
493 struct btrfs_timespec bts;
494 read_extent_buffer(eb, &bts, (unsigned long)ts, sizeof(bts));
495 return tlv_put(sctx, attr, &bts, sizeof(bts));
496}
497
498
499#define TLV_PUT(sctx, attrtype, attrlen, data) \
500 do { \
501 ret = tlv_put(sctx, attrtype, attrlen, data); \
502 if (ret < 0) \
503 goto tlv_put_failure; \
504 } while (0)
505
506#define TLV_PUT_INT(sctx, attrtype, bits, value) \
507 do { \
508 ret = tlv_put_u##bits(sctx, attrtype, value); \
509 if (ret < 0) \
510 goto tlv_put_failure; \
511 } while (0)
512
513#define TLV_PUT_U8(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 8, data)
514#define TLV_PUT_U16(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 16, data)
515#define TLV_PUT_U32(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 32, data)
516#define TLV_PUT_U64(sctx, attrtype, data) TLV_PUT_INT(sctx, attrtype, 64, data)
517#define TLV_PUT_STRING(sctx, attrtype, str, len) \
518 do { \
519 ret = tlv_put_string(sctx, attrtype, str, len); \
520 if (ret < 0) \
521 goto tlv_put_failure; \
522 } while (0)
523#define TLV_PUT_PATH(sctx, attrtype, p) \
524 do { \
525 ret = tlv_put_string(sctx, attrtype, p->start, \
526 p->end - p->start); \
527 if (ret < 0) \
528 goto tlv_put_failure; \
529 } while(0)
530#define TLV_PUT_UUID(sctx, attrtype, uuid) \
531 do { \
532 ret = tlv_put_uuid(sctx, attrtype, uuid); \
533 if (ret < 0) \
534 goto tlv_put_failure; \
535 } while (0)
536#define TLV_PUT_TIMESPEC(sctx, attrtype, ts) \
537 do { \
538 ret = tlv_put_timespec(sctx, attrtype, ts); \
539 if (ret < 0) \
540 goto tlv_put_failure; \
541 } while (0)
542#define TLV_PUT_BTRFS_TIMESPEC(sctx, attrtype, eb, ts) \
543 do { \
544 ret = tlv_put_btrfs_timespec(sctx, attrtype, eb, ts); \
545 if (ret < 0) \
546 goto tlv_put_failure; \
547 } while (0)
548
549static int send_header(struct send_ctx *sctx)
550{
551 struct btrfs_stream_header hdr;
552
553 strcpy(hdr.magic, BTRFS_SEND_STREAM_MAGIC);
554 hdr.version = cpu_to_le32(BTRFS_SEND_STREAM_VERSION);
555
Anand Jain1bcea352012-09-14 00:04:21 -0600556 return write_buf(sctx->send_filp, &hdr, sizeof(hdr),
557 &sctx->send_off);
Alexander Block31db9f72012-07-25 23:19:24 +0200558}
559
560/*
561 * For each command/item we want to send to userspace, we call this function.
562 */
563static int begin_cmd(struct send_ctx *sctx, int cmd)
564{
565 struct btrfs_cmd_header *hdr;
566
567 if (!sctx->send_buf) {
568 WARN_ON(1);
569 return -EINVAL;
570 }
571
572 BUG_ON(sctx->send_size);
573
574 sctx->send_size += sizeof(*hdr);
575 hdr = (struct btrfs_cmd_header *)sctx->send_buf;
576 hdr->cmd = cpu_to_le16(cmd);
577
578 return 0;
579}
580
581static int send_cmd(struct send_ctx *sctx)
582{
583 int ret;
584 struct btrfs_cmd_header *hdr;
585 u32 crc;
586
587 hdr = (struct btrfs_cmd_header *)sctx->send_buf;
588 hdr->len = cpu_to_le32(sctx->send_size - sizeof(*hdr));
589 hdr->crc = 0;
590
591 crc = crc32c(0, (unsigned char *)sctx->send_buf, sctx->send_size);
592 hdr->crc = cpu_to_le32(crc);
593
Anand Jain1bcea352012-09-14 00:04:21 -0600594 ret = write_buf(sctx->send_filp, sctx->send_buf, sctx->send_size,
595 &sctx->send_off);
Alexander Block31db9f72012-07-25 23:19:24 +0200596
597 sctx->total_send_size += sctx->send_size;
598 sctx->cmd_send_size[le16_to_cpu(hdr->cmd)] += sctx->send_size;
599 sctx->send_size = 0;
600
601 return ret;
602}
603
604/*
605 * Sends a move instruction to user space
606 */
607static int send_rename(struct send_ctx *sctx,
608 struct fs_path *from, struct fs_path *to)
609{
610 int ret;
611
612verbose_printk("btrfs: send_rename %s -> %s\n", from->start, to->start);
613
614 ret = begin_cmd(sctx, BTRFS_SEND_C_RENAME);
615 if (ret < 0)
616 goto out;
617
618 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, from);
619 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_TO, to);
620
621 ret = send_cmd(sctx);
622
623tlv_put_failure:
624out:
625 return ret;
626}
627
628/*
629 * Sends a link instruction to user space
630 */
631static int send_link(struct send_ctx *sctx,
632 struct fs_path *path, struct fs_path *lnk)
633{
634 int ret;
635
636verbose_printk("btrfs: send_link %s -> %s\n", path->start, lnk->start);
637
638 ret = begin_cmd(sctx, BTRFS_SEND_C_LINK);
639 if (ret < 0)
640 goto out;
641
642 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
643 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, lnk);
644
645 ret = send_cmd(sctx);
646
647tlv_put_failure:
648out:
649 return ret;
650}
651
652/*
653 * Sends an unlink instruction to user space
654 */
655static int send_unlink(struct send_ctx *sctx, struct fs_path *path)
656{
657 int ret;
658
659verbose_printk("btrfs: send_unlink %s\n", path->start);
660
661 ret = begin_cmd(sctx, BTRFS_SEND_C_UNLINK);
662 if (ret < 0)
663 goto out;
664
665 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
666
667 ret = send_cmd(sctx);
668
669tlv_put_failure:
670out:
671 return ret;
672}
673
674/*
675 * Sends a rmdir instruction to user space
676 */
677static int send_rmdir(struct send_ctx *sctx, struct fs_path *path)
678{
679 int ret;
680
681verbose_printk("btrfs: send_rmdir %s\n", path->start);
682
683 ret = begin_cmd(sctx, BTRFS_SEND_C_RMDIR);
684 if (ret < 0)
685 goto out;
686
687 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
688
689 ret = send_cmd(sctx);
690
691tlv_put_failure:
692out:
693 return ret;
694}
695
696/*
697 * Helper function to retrieve some fields from an inode item.
698 */
699static int get_inode_info(struct btrfs_root *root,
700 u64 ino, u64 *size, u64 *gen,
Alexander Block85a7b332012-07-26 23:39:10 +0200701 u64 *mode, u64 *uid, u64 *gid,
702 u64 *rdev)
Alexander Block31db9f72012-07-25 23:19:24 +0200703{
704 int ret;
705 struct btrfs_inode_item *ii;
706 struct btrfs_key key;
707 struct btrfs_path *path;
708
709 path = alloc_path_for_send();
710 if (!path)
711 return -ENOMEM;
712
713 key.objectid = ino;
714 key.type = BTRFS_INODE_ITEM_KEY;
715 key.offset = 0;
716 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
717 if (ret < 0)
718 goto out;
719 if (ret) {
720 ret = -ENOENT;
721 goto out;
722 }
723
724 ii = btrfs_item_ptr(path->nodes[0], path->slots[0],
725 struct btrfs_inode_item);
726 if (size)
727 *size = btrfs_inode_size(path->nodes[0], ii);
728 if (gen)
729 *gen = btrfs_inode_generation(path->nodes[0], ii);
730 if (mode)
731 *mode = btrfs_inode_mode(path->nodes[0], ii);
732 if (uid)
733 *uid = btrfs_inode_uid(path->nodes[0], ii);
734 if (gid)
735 *gid = btrfs_inode_gid(path->nodes[0], ii);
Alexander Block85a7b332012-07-26 23:39:10 +0200736 if (rdev)
737 *rdev = btrfs_inode_rdev(path->nodes[0], ii);
Alexander Block31db9f72012-07-25 23:19:24 +0200738
739out:
740 btrfs_free_path(path);
741 return ret;
742}
743
744typedef int (*iterate_inode_ref_t)(int num, u64 dir, int index,
745 struct fs_path *p,
746 void *ctx);
747
748/*
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000749 * Helper function to iterate the entries in ONE btrfs_inode_ref or
750 * btrfs_inode_extref.
Alexander Block31db9f72012-07-25 23:19:24 +0200751 * The iterate callback may return a non zero value to stop iteration. This can
752 * be a negative value for error codes or 1 to simply stop it.
753 *
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000754 * path must point to the INODE_REF or INODE_EXTREF when called.
Alexander Block31db9f72012-07-25 23:19:24 +0200755 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000756static int iterate_inode_ref(struct btrfs_root *root, struct btrfs_path *path,
Alexander Block31db9f72012-07-25 23:19:24 +0200757 struct btrfs_key *found_key, int resolve,
758 iterate_inode_ref_t iterate, void *ctx)
759{
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000760 struct extent_buffer *eb = path->nodes[0];
Alexander Block31db9f72012-07-25 23:19:24 +0200761 struct btrfs_item *item;
762 struct btrfs_inode_ref *iref;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000763 struct btrfs_inode_extref *extref;
Alexander Block31db9f72012-07-25 23:19:24 +0200764 struct btrfs_path *tmp_path;
765 struct fs_path *p;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000766 u32 cur = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200767 u32 total;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000768 int slot = path->slots[0];
Alexander Block31db9f72012-07-25 23:19:24 +0200769 u32 name_len;
770 char *start;
771 int ret = 0;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000772 int num = 0;
Alexander Block31db9f72012-07-25 23:19:24 +0200773 int index;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000774 u64 dir;
775 unsigned long name_off;
776 unsigned long elem_size;
777 unsigned long ptr;
Alexander Block31db9f72012-07-25 23:19:24 +0200778
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000779 p = fs_path_alloc_reversed();
Alexander Block31db9f72012-07-25 23:19:24 +0200780 if (!p)
781 return -ENOMEM;
782
783 tmp_path = alloc_path_for_send();
784 if (!tmp_path) {
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000785 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +0200786 return -ENOMEM;
787 }
788
Alexander Block31db9f72012-07-25 23:19:24 +0200789
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000790 if (found_key->type == BTRFS_INODE_REF_KEY) {
791 ptr = (unsigned long)btrfs_item_ptr(eb, slot,
792 struct btrfs_inode_ref);
793 item = btrfs_item_nr(eb, slot);
794 total = btrfs_item_size(eb, item);
795 elem_size = sizeof(*iref);
796 } else {
797 ptr = btrfs_item_ptr_offset(eb, slot);
798 total = btrfs_item_size_nr(eb, slot);
799 elem_size = sizeof(*extref);
800 }
801
Alexander Block31db9f72012-07-25 23:19:24 +0200802 while (cur < total) {
803 fs_path_reset(p);
804
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000805 if (found_key->type == BTRFS_INODE_REF_KEY) {
806 iref = (struct btrfs_inode_ref *)(ptr + cur);
807 name_len = btrfs_inode_ref_name_len(eb, iref);
808 name_off = (unsigned long)(iref + 1);
809 index = btrfs_inode_ref_index(eb, iref);
810 dir = found_key->offset;
811 } else {
812 extref = (struct btrfs_inode_extref *)(ptr + cur);
813 name_len = btrfs_inode_extref_name_len(eb, extref);
814 name_off = (unsigned long)&extref->name;
815 index = btrfs_inode_extref_index(eb, extref);
816 dir = btrfs_inode_extref_parent(eb, extref);
817 }
818
Alexander Block31db9f72012-07-25 23:19:24 +0200819 if (resolve) {
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000820 start = btrfs_ref_to_path(root, tmp_path, name_len,
821 name_off, eb, dir,
822 p->buf, p->buf_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200823 if (IS_ERR(start)) {
824 ret = PTR_ERR(start);
825 goto out;
826 }
827 if (start < p->buf) {
828 /* overflow , try again with larger buffer */
829 ret = fs_path_ensure_buf(p,
830 p->buf_len + p->buf - start);
831 if (ret < 0)
832 goto out;
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000833 start = btrfs_ref_to_path(root, tmp_path,
834 name_len, name_off,
835 eb, dir,
836 p->buf, p->buf_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200837 if (IS_ERR(start)) {
838 ret = PTR_ERR(start);
839 goto out;
840 }
841 BUG_ON(start < p->buf);
842 }
843 p->start = start;
844 } else {
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000845 ret = fs_path_add_from_extent_buffer(p, eb, name_off,
846 name_len);
Alexander Block31db9f72012-07-25 23:19:24 +0200847 if (ret < 0)
848 goto out;
849 }
850
Jan Schmidt96b5bd72012-10-15 08:30:45 +0000851 cur += elem_size + name_len;
852 ret = iterate(num, dir, index, p, ctx);
Alexander Block31db9f72012-07-25 23:19:24 +0200853 if (ret)
854 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +0200855 num++;
856 }
857
858out:
859 btrfs_free_path(tmp_path);
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000860 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +0200861 return ret;
862}
863
864typedef int (*iterate_dir_item_t)(int num, struct btrfs_key *di_key,
865 const char *name, int name_len,
866 const char *data, int data_len,
867 u8 type, void *ctx);
868
869/*
870 * Helper function to iterate the entries in ONE btrfs_dir_item.
871 * The iterate callback may return a non zero value to stop iteration. This can
872 * be a negative value for error codes or 1 to simply stop it.
873 *
874 * path must point to the dir item when called.
875 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000876static int iterate_dir_item(struct btrfs_root *root, struct btrfs_path *path,
Alexander Block31db9f72012-07-25 23:19:24 +0200877 struct btrfs_key *found_key,
878 iterate_dir_item_t iterate, void *ctx)
879{
880 int ret = 0;
881 struct extent_buffer *eb;
882 struct btrfs_item *item;
883 struct btrfs_dir_item *di;
Alexander Block31db9f72012-07-25 23:19:24 +0200884 struct btrfs_key di_key;
885 char *buf = NULL;
886 char *buf2 = NULL;
887 int buf_len;
888 int buf_virtual = 0;
889 u32 name_len;
890 u32 data_len;
891 u32 cur;
892 u32 len;
893 u32 total;
894 int slot;
895 int num;
896 u8 type;
897
898 buf_len = PAGE_SIZE;
899 buf = kmalloc(buf_len, GFP_NOFS);
900 if (!buf) {
901 ret = -ENOMEM;
902 goto out;
903 }
904
Alexander Block31db9f72012-07-25 23:19:24 +0200905 eb = path->nodes[0];
906 slot = path->slots[0];
907 item = btrfs_item_nr(eb, slot);
908 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
909 cur = 0;
910 len = 0;
911 total = btrfs_item_size(eb, item);
912
913 num = 0;
914 while (cur < total) {
915 name_len = btrfs_dir_name_len(eb, di);
916 data_len = btrfs_dir_data_len(eb, di);
917 type = btrfs_dir_type(eb, di);
918 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
919
920 if (name_len + data_len > buf_len) {
921 buf_len = PAGE_ALIGN(name_len + data_len);
922 if (buf_virtual) {
923 buf2 = vmalloc(buf_len);
924 if (!buf2) {
925 ret = -ENOMEM;
926 goto out;
927 }
928 vfree(buf);
929 } else {
930 buf2 = krealloc(buf, buf_len, GFP_NOFS);
931 if (!buf2) {
932 buf2 = vmalloc(buf_len);
933 if (!buf2) {
934 ret = -ENOMEM;
935 goto out;
936 }
937 kfree(buf);
938 buf_virtual = 1;
939 }
940 }
941
942 buf = buf2;
943 buf2 = NULL;
944 }
945
946 read_extent_buffer(eb, buf, (unsigned long)(di + 1),
947 name_len + data_len);
948
949 len = sizeof(*di) + name_len + data_len;
950 di = (struct btrfs_dir_item *)((char *)di + len);
951 cur += len;
952
953 ret = iterate(num, &di_key, buf, name_len, buf + name_len,
954 data_len, type, ctx);
955 if (ret < 0)
956 goto out;
957 if (ret) {
958 ret = 0;
959 goto out;
960 }
961
962 num++;
963 }
964
965out:
Alexander Block31db9f72012-07-25 23:19:24 +0200966 if (buf_virtual)
967 vfree(buf);
968 else
969 kfree(buf);
970 return ret;
971}
972
973static int __copy_first_ref(int num, u64 dir, int index,
974 struct fs_path *p, void *ctx)
975{
976 int ret;
977 struct fs_path *pt = ctx;
978
979 ret = fs_path_copy(pt, p);
980 if (ret < 0)
981 return ret;
982
983 /* we want the first only */
984 return 1;
985}
986
987/*
988 * Retrieve the first path of an inode. If an inode has more then one
989 * ref/hardlink, this is ignored.
990 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +0000991static int get_inode_path(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +0200992 u64 ino, struct fs_path *path)
993{
994 int ret;
995 struct btrfs_key key, found_key;
996 struct btrfs_path *p;
997
998 p = alloc_path_for_send();
999 if (!p)
1000 return -ENOMEM;
1001
1002 fs_path_reset(path);
1003
1004 key.objectid = ino;
1005 key.type = BTRFS_INODE_REF_KEY;
1006 key.offset = 0;
1007
1008 ret = btrfs_search_slot_for_read(root, &key, p, 1, 0);
1009 if (ret < 0)
1010 goto out;
1011 if (ret) {
1012 ret = 1;
1013 goto out;
1014 }
1015 btrfs_item_key_to_cpu(p->nodes[0], &found_key, p->slots[0]);
1016 if (found_key.objectid != ino ||
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001017 (found_key.type != BTRFS_INODE_REF_KEY &&
1018 found_key.type != BTRFS_INODE_EXTREF_KEY)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001019 ret = -ENOENT;
1020 goto out;
1021 }
1022
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001023 ret = iterate_inode_ref(root, p, &found_key, 1,
1024 __copy_first_ref, path);
Alexander Block31db9f72012-07-25 23:19:24 +02001025 if (ret < 0)
1026 goto out;
1027 ret = 0;
1028
1029out:
1030 btrfs_free_path(p);
1031 return ret;
1032}
1033
1034struct backref_ctx {
1035 struct send_ctx *sctx;
1036
1037 /* number of total found references */
1038 u64 found;
1039
1040 /*
1041 * used for clones found in send_root. clones found behind cur_objectid
1042 * and cur_offset are not considered as allowed clones.
1043 */
1044 u64 cur_objectid;
1045 u64 cur_offset;
1046
1047 /* may be truncated in case it's the last extent in a file */
1048 u64 extent_len;
1049
1050 /* Just to check for bugs in backref resolving */
Alexander Blockee849c02012-07-28 12:42:05 +02001051 int found_itself;
Alexander Block31db9f72012-07-25 23:19:24 +02001052};
1053
1054static int __clone_root_cmp_bsearch(const void *key, const void *elt)
1055{
Jan Schmidt995e01b2012-08-13 02:52:38 -06001056 u64 root = (u64)(uintptr_t)key;
Alexander Block31db9f72012-07-25 23:19:24 +02001057 struct clone_root *cr = (struct clone_root *)elt;
1058
1059 if (root < cr->root->objectid)
1060 return -1;
1061 if (root > cr->root->objectid)
1062 return 1;
1063 return 0;
1064}
1065
1066static int __clone_root_cmp_sort(const void *e1, const void *e2)
1067{
1068 struct clone_root *cr1 = (struct clone_root *)e1;
1069 struct clone_root *cr2 = (struct clone_root *)e2;
1070
1071 if (cr1->root->objectid < cr2->root->objectid)
1072 return -1;
1073 if (cr1->root->objectid > cr2->root->objectid)
1074 return 1;
1075 return 0;
1076}
1077
1078/*
1079 * Called for every backref that is found for the current extent.
Alexander Block766702e2012-07-28 14:11:31 +02001080 * Results are collected in sctx->clone_roots->ino/offset/found_refs
Alexander Block31db9f72012-07-25 23:19:24 +02001081 */
1082static int __iterate_backrefs(u64 ino, u64 offset, u64 root, void *ctx_)
1083{
1084 struct backref_ctx *bctx = ctx_;
1085 struct clone_root *found;
1086 int ret;
1087 u64 i_size;
1088
1089 /* First check if the root is in the list of accepted clone sources */
Jan Schmidt995e01b2012-08-13 02:52:38 -06001090 found = bsearch((void *)(uintptr_t)root, bctx->sctx->clone_roots,
Alexander Block31db9f72012-07-25 23:19:24 +02001091 bctx->sctx->clone_roots_cnt,
1092 sizeof(struct clone_root),
1093 __clone_root_cmp_bsearch);
1094 if (!found)
1095 return 0;
1096
1097 if (found->root == bctx->sctx->send_root &&
1098 ino == bctx->cur_objectid &&
1099 offset == bctx->cur_offset) {
Alexander Blockee849c02012-07-28 12:42:05 +02001100 bctx->found_itself = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02001101 }
1102
1103 /*
Alexander Block766702e2012-07-28 14:11:31 +02001104 * There are inodes that have extents that lie behind its i_size. Don't
Alexander Block31db9f72012-07-25 23:19:24 +02001105 * accept clones from these extents.
1106 */
Alexander Block85a7b332012-07-26 23:39:10 +02001107 ret = get_inode_info(found->root, ino, &i_size, NULL, NULL, NULL, NULL,
1108 NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001109 if (ret < 0)
1110 return ret;
1111
1112 if (offset + bctx->extent_len > i_size)
1113 return 0;
1114
1115 /*
1116 * Make sure we don't consider clones from send_root that are
1117 * behind the current inode/offset.
1118 */
1119 if (found->root == bctx->sctx->send_root) {
1120 /*
1121 * TODO for the moment we don't accept clones from the inode
1122 * that is currently send. We may change this when
1123 * BTRFS_IOC_CLONE_RANGE supports cloning from and to the same
1124 * file.
1125 */
1126 if (ino >= bctx->cur_objectid)
1127 return 0;
Alexander Blocke938c8a2012-07-28 16:33:49 +02001128#if 0
1129 if (ino > bctx->cur_objectid)
Alexander Block31db9f72012-07-25 23:19:24 +02001130 return 0;
Alexander Blocke938c8a2012-07-28 16:33:49 +02001131 if (offset + bctx->extent_len > bctx->cur_offset)
1132 return 0;
1133#endif
Alexander Block31db9f72012-07-25 23:19:24 +02001134 }
1135
1136 bctx->found++;
1137 found->found_refs++;
1138 if (ino < found->ino) {
1139 found->ino = ino;
1140 found->offset = offset;
1141 } else if (found->ino == ino) {
1142 /*
1143 * same extent found more then once in the same file.
1144 */
1145 if (found->offset > offset + bctx->extent_len)
1146 found->offset = offset;
1147 }
1148
1149 return 0;
1150}
1151
1152/*
Alexander Block766702e2012-07-28 14:11:31 +02001153 * Given an inode, offset and extent item, it finds a good clone for a clone
1154 * instruction. Returns -ENOENT when none could be found. The function makes
1155 * sure that the returned clone is usable at the point where sending is at the
1156 * moment. This means, that no clones are accepted which lie behind the current
1157 * inode+offset.
1158 *
Alexander Block31db9f72012-07-25 23:19:24 +02001159 * path must point to the extent item when called.
1160 */
1161static int find_extent_clone(struct send_ctx *sctx,
1162 struct btrfs_path *path,
1163 u64 ino, u64 data_offset,
1164 u64 ino_size,
1165 struct clone_root **found)
1166{
1167 int ret;
1168 int extent_type;
1169 u64 logical;
Chris Mason74dd17fb2012-08-07 16:25:13 -04001170 u64 disk_byte;
Alexander Block31db9f72012-07-25 23:19:24 +02001171 u64 num_bytes;
1172 u64 extent_item_pos;
Liu Bo69917e42012-09-07 20:01:28 -06001173 u64 flags = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02001174 struct btrfs_file_extent_item *fi;
1175 struct extent_buffer *eb = path->nodes[0];
Alexander Block35075bb2012-07-28 12:44:34 +02001176 struct backref_ctx *backref_ctx = NULL;
Alexander Block31db9f72012-07-25 23:19:24 +02001177 struct clone_root *cur_clone_root;
1178 struct btrfs_key found_key;
1179 struct btrfs_path *tmp_path;
Chris Mason74dd17fb2012-08-07 16:25:13 -04001180 int compressed;
Alexander Block31db9f72012-07-25 23:19:24 +02001181 u32 i;
1182
1183 tmp_path = alloc_path_for_send();
1184 if (!tmp_path)
1185 return -ENOMEM;
1186
Alexander Block35075bb2012-07-28 12:44:34 +02001187 backref_ctx = kmalloc(sizeof(*backref_ctx), GFP_NOFS);
1188 if (!backref_ctx) {
1189 ret = -ENOMEM;
1190 goto out;
1191 }
1192
Alexander Block31db9f72012-07-25 23:19:24 +02001193 if (data_offset >= ino_size) {
1194 /*
1195 * There may be extents that lie behind the file's size.
1196 * I at least had this in combination with snapshotting while
1197 * writing large files.
1198 */
1199 ret = 0;
1200 goto out;
1201 }
1202
1203 fi = btrfs_item_ptr(eb, path->slots[0],
1204 struct btrfs_file_extent_item);
1205 extent_type = btrfs_file_extent_type(eb, fi);
1206 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1207 ret = -ENOENT;
1208 goto out;
1209 }
Chris Mason74dd17fb2012-08-07 16:25:13 -04001210 compressed = btrfs_file_extent_compression(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001211
1212 num_bytes = btrfs_file_extent_num_bytes(eb, fi);
Chris Mason74dd17fb2012-08-07 16:25:13 -04001213 disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
1214 if (disk_byte == 0) {
Alexander Block31db9f72012-07-25 23:19:24 +02001215 ret = -ENOENT;
1216 goto out;
1217 }
Chris Mason74dd17fb2012-08-07 16:25:13 -04001218 logical = disk_byte + btrfs_file_extent_offset(eb, fi);
Alexander Block31db9f72012-07-25 23:19:24 +02001219
Liu Bo69917e42012-09-07 20:01:28 -06001220 ret = extent_from_logical(sctx->send_root->fs_info, disk_byte, tmp_path,
1221 &found_key, &flags);
Alexander Block31db9f72012-07-25 23:19:24 +02001222 btrfs_release_path(tmp_path);
1223
1224 if (ret < 0)
1225 goto out;
Liu Bo69917e42012-09-07 20:01:28 -06001226 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Alexander Block31db9f72012-07-25 23:19:24 +02001227 ret = -EIO;
1228 goto out;
1229 }
1230
1231 /*
1232 * Setup the clone roots.
1233 */
1234 for (i = 0; i < sctx->clone_roots_cnt; i++) {
1235 cur_clone_root = sctx->clone_roots + i;
1236 cur_clone_root->ino = (u64)-1;
1237 cur_clone_root->offset = 0;
1238 cur_clone_root->found_refs = 0;
1239 }
1240
Alexander Block35075bb2012-07-28 12:44:34 +02001241 backref_ctx->sctx = sctx;
1242 backref_ctx->found = 0;
1243 backref_ctx->cur_objectid = ino;
1244 backref_ctx->cur_offset = data_offset;
1245 backref_ctx->found_itself = 0;
1246 backref_ctx->extent_len = num_bytes;
Alexander Block31db9f72012-07-25 23:19:24 +02001247
1248 /*
1249 * The last extent of a file may be too large due to page alignment.
1250 * We need to adjust extent_len in this case so that the checks in
1251 * __iterate_backrefs work.
1252 */
1253 if (data_offset + num_bytes >= ino_size)
Alexander Block35075bb2012-07-28 12:44:34 +02001254 backref_ctx->extent_len = ino_size - data_offset;
Alexander Block31db9f72012-07-25 23:19:24 +02001255
1256 /*
1257 * Now collect all backrefs.
1258 */
Chris Mason74dd17fb2012-08-07 16:25:13 -04001259 if (compressed == BTRFS_COMPRESS_NONE)
1260 extent_item_pos = logical - found_key.objectid;
1261 else
1262 extent_item_pos = 0;
1263
Alexander Block31db9f72012-07-25 23:19:24 +02001264 extent_item_pos = logical - found_key.objectid;
1265 ret = iterate_extent_inodes(sctx->send_root->fs_info,
1266 found_key.objectid, extent_item_pos, 1,
Alexander Block35075bb2012-07-28 12:44:34 +02001267 __iterate_backrefs, backref_ctx);
Chris Mason74dd17fb2012-08-07 16:25:13 -04001268
Alexander Block31db9f72012-07-25 23:19:24 +02001269 if (ret < 0)
1270 goto out;
1271
Alexander Block35075bb2012-07-28 12:44:34 +02001272 if (!backref_ctx->found_itself) {
Alexander Block31db9f72012-07-25 23:19:24 +02001273 /* found a bug in backref code? */
1274 ret = -EIO;
1275 printk(KERN_ERR "btrfs: ERROR did not find backref in "
1276 "send_root. inode=%llu, offset=%llu, "
Chris Mason74dd17fb2012-08-07 16:25:13 -04001277 "disk_byte=%llu found extent=%llu\n",
1278 ino, data_offset, disk_byte, found_key.objectid);
Alexander Block31db9f72012-07-25 23:19:24 +02001279 goto out;
1280 }
1281
1282verbose_printk(KERN_DEBUG "btrfs: find_extent_clone: data_offset=%llu, "
1283 "ino=%llu, "
1284 "num_bytes=%llu, logical=%llu\n",
1285 data_offset, ino, num_bytes, logical);
1286
Alexander Block35075bb2012-07-28 12:44:34 +02001287 if (!backref_ctx->found)
Alexander Block31db9f72012-07-25 23:19:24 +02001288 verbose_printk("btrfs: no clones found\n");
1289
1290 cur_clone_root = NULL;
1291 for (i = 0; i < sctx->clone_roots_cnt; i++) {
1292 if (sctx->clone_roots[i].found_refs) {
1293 if (!cur_clone_root)
1294 cur_clone_root = sctx->clone_roots + i;
1295 else if (sctx->clone_roots[i].root == sctx->send_root)
1296 /* prefer clones from send_root over others */
1297 cur_clone_root = sctx->clone_roots + i;
Alexander Block31db9f72012-07-25 23:19:24 +02001298 }
1299
1300 }
1301
1302 if (cur_clone_root) {
1303 *found = cur_clone_root;
1304 ret = 0;
1305 } else {
1306 ret = -ENOENT;
1307 }
1308
1309out:
1310 btrfs_free_path(tmp_path);
Alexander Block35075bb2012-07-28 12:44:34 +02001311 kfree(backref_ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02001312 return ret;
1313}
1314
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001315static int read_symlink(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001316 u64 ino,
1317 struct fs_path *dest)
1318{
1319 int ret;
1320 struct btrfs_path *path;
1321 struct btrfs_key key;
1322 struct btrfs_file_extent_item *ei;
1323 u8 type;
1324 u8 compression;
1325 unsigned long off;
1326 int len;
1327
1328 path = alloc_path_for_send();
1329 if (!path)
1330 return -ENOMEM;
1331
1332 key.objectid = ino;
1333 key.type = BTRFS_EXTENT_DATA_KEY;
1334 key.offset = 0;
1335 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1336 if (ret < 0)
1337 goto out;
1338 BUG_ON(ret);
1339
1340 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
1341 struct btrfs_file_extent_item);
1342 type = btrfs_file_extent_type(path->nodes[0], ei);
1343 compression = btrfs_file_extent_compression(path->nodes[0], ei);
1344 BUG_ON(type != BTRFS_FILE_EXTENT_INLINE);
1345 BUG_ON(compression);
1346
1347 off = btrfs_file_extent_inline_start(ei);
1348 len = btrfs_file_extent_inline_len(path->nodes[0], ei);
1349
1350 ret = fs_path_add_from_extent_buffer(dest, path->nodes[0], off, len);
Alexander Block31db9f72012-07-25 23:19:24 +02001351
1352out:
1353 btrfs_free_path(path);
1354 return ret;
1355}
1356
1357/*
1358 * Helper function to generate a file name that is unique in the root of
1359 * send_root and parent_root. This is used to generate names for orphan inodes.
1360 */
1361static int gen_unique_name(struct send_ctx *sctx,
1362 u64 ino, u64 gen,
1363 struct fs_path *dest)
1364{
1365 int ret = 0;
1366 struct btrfs_path *path;
1367 struct btrfs_dir_item *di;
1368 char tmp[64];
1369 int len;
1370 u64 idx = 0;
1371
1372 path = alloc_path_for_send();
1373 if (!path)
1374 return -ENOMEM;
1375
1376 while (1) {
1377 len = snprintf(tmp, sizeof(tmp) - 1, "o%llu-%llu-%llu",
1378 ino, gen, idx);
1379 if (len >= sizeof(tmp)) {
1380 /* should really not happen */
1381 ret = -EOVERFLOW;
1382 goto out;
1383 }
1384
1385 di = btrfs_lookup_dir_item(NULL, sctx->send_root,
1386 path, BTRFS_FIRST_FREE_OBJECTID,
1387 tmp, strlen(tmp), 0);
1388 btrfs_release_path(path);
1389 if (IS_ERR(di)) {
1390 ret = PTR_ERR(di);
1391 goto out;
1392 }
1393 if (di) {
1394 /* not unique, try again */
1395 idx++;
1396 continue;
1397 }
1398
1399 if (!sctx->parent_root) {
1400 /* unique */
1401 ret = 0;
1402 break;
1403 }
1404
1405 di = btrfs_lookup_dir_item(NULL, sctx->parent_root,
1406 path, BTRFS_FIRST_FREE_OBJECTID,
1407 tmp, strlen(tmp), 0);
1408 btrfs_release_path(path);
1409 if (IS_ERR(di)) {
1410 ret = PTR_ERR(di);
1411 goto out;
1412 }
1413 if (di) {
1414 /* not unique, try again */
1415 idx++;
1416 continue;
1417 }
1418 /* unique */
1419 break;
1420 }
1421
1422 ret = fs_path_add(dest, tmp, strlen(tmp));
1423
1424out:
1425 btrfs_free_path(path);
1426 return ret;
1427}
1428
1429enum inode_state {
1430 inode_state_no_change,
1431 inode_state_will_create,
1432 inode_state_did_create,
1433 inode_state_will_delete,
1434 inode_state_did_delete,
1435};
1436
1437static int get_cur_inode_state(struct send_ctx *sctx, u64 ino, u64 gen)
1438{
1439 int ret;
1440 int left_ret;
1441 int right_ret;
1442 u64 left_gen;
1443 u64 right_gen;
1444
1445 ret = get_inode_info(sctx->send_root, ino, NULL, &left_gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001446 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001447 if (ret < 0 && ret != -ENOENT)
1448 goto out;
1449 left_ret = ret;
1450
1451 if (!sctx->parent_root) {
1452 right_ret = -ENOENT;
1453 } else {
1454 ret = get_inode_info(sctx->parent_root, ino, NULL, &right_gen,
Alexander Block85a7b332012-07-26 23:39:10 +02001455 NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001456 if (ret < 0 && ret != -ENOENT)
1457 goto out;
1458 right_ret = ret;
1459 }
1460
1461 if (!left_ret && !right_ret) {
Alexander Blocke938c8a2012-07-28 16:33:49 +02001462 if (left_gen == gen && right_gen == gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02001463 ret = inode_state_no_change;
Alexander Blocke938c8a2012-07-28 16:33:49 +02001464 } else if (left_gen == gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02001465 if (ino < sctx->send_progress)
1466 ret = inode_state_did_create;
1467 else
1468 ret = inode_state_will_create;
1469 } else if (right_gen == gen) {
1470 if (ino < sctx->send_progress)
1471 ret = inode_state_did_delete;
1472 else
1473 ret = inode_state_will_delete;
1474 } else {
1475 ret = -ENOENT;
1476 }
1477 } else if (!left_ret) {
1478 if (left_gen == gen) {
1479 if (ino < sctx->send_progress)
1480 ret = inode_state_did_create;
1481 else
1482 ret = inode_state_will_create;
1483 } else {
1484 ret = -ENOENT;
1485 }
1486 } else if (!right_ret) {
1487 if (right_gen == gen) {
1488 if (ino < sctx->send_progress)
1489 ret = inode_state_did_delete;
1490 else
1491 ret = inode_state_will_delete;
1492 } else {
1493 ret = -ENOENT;
1494 }
1495 } else {
1496 ret = -ENOENT;
1497 }
1498
1499out:
1500 return ret;
1501}
1502
1503static int is_inode_existent(struct send_ctx *sctx, u64 ino, u64 gen)
1504{
1505 int ret;
1506
1507 ret = get_cur_inode_state(sctx, ino, gen);
1508 if (ret < 0)
1509 goto out;
1510
1511 if (ret == inode_state_no_change ||
1512 ret == inode_state_did_create ||
1513 ret == inode_state_will_delete)
1514 ret = 1;
1515 else
1516 ret = 0;
1517
1518out:
1519 return ret;
1520}
1521
1522/*
1523 * Helper function to lookup a dir item in a dir.
1524 */
1525static int lookup_dir_item_inode(struct btrfs_root *root,
1526 u64 dir, const char *name, int name_len,
1527 u64 *found_inode,
1528 u8 *found_type)
1529{
1530 int ret = 0;
1531 struct btrfs_dir_item *di;
1532 struct btrfs_key key;
1533 struct btrfs_path *path;
1534
1535 path = alloc_path_for_send();
1536 if (!path)
1537 return -ENOMEM;
1538
1539 di = btrfs_lookup_dir_item(NULL, root, path,
1540 dir, name, name_len, 0);
1541 if (!di) {
1542 ret = -ENOENT;
1543 goto out;
1544 }
1545 if (IS_ERR(di)) {
1546 ret = PTR_ERR(di);
1547 goto out;
1548 }
1549 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1550 *found_inode = key.objectid;
1551 *found_type = btrfs_dir_type(path->nodes[0], di);
1552
1553out:
1554 btrfs_free_path(path);
1555 return ret;
1556}
1557
Alexander Block766702e2012-07-28 14:11:31 +02001558/*
1559 * Looks up the first btrfs_inode_ref of a given ino. It returns the parent dir,
1560 * generation of the parent dir and the name of the dir entry.
1561 */
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001562static int get_first_ref(struct btrfs_root *root, u64 ino,
Alexander Block31db9f72012-07-25 23:19:24 +02001563 u64 *dir, u64 *dir_gen, struct fs_path *name)
1564{
1565 int ret;
1566 struct btrfs_key key;
1567 struct btrfs_key found_key;
1568 struct btrfs_path *path;
Alexander Block31db9f72012-07-25 23:19:24 +02001569 int len;
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001570 u64 parent_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001571
1572 path = alloc_path_for_send();
1573 if (!path)
1574 return -ENOMEM;
1575
1576 key.objectid = ino;
1577 key.type = BTRFS_INODE_REF_KEY;
1578 key.offset = 0;
1579
1580 ret = btrfs_search_slot_for_read(root, &key, path, 1, 0);
1581 if (ret < 0)
1582 goto out;
1583 if (!ret)
1584 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1585 path->slots[0]);
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001586 if (ret || found_key.objectid != ino ||
1587 (found_key.type != BTRFS_INODE_REF_KEY &&
1588 found_key.type != BTRFS_INODE_EXTREF_KEY)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001589 ret = -ENOENT;
1590 goto out;
1591 }
1592
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001593 if (key.type == BTRFS_INODE_REF_KEY) {
1594 struct btrfs_inode_ref *iref;
1595 iref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1596 struct btrfs_inode_ref);
1597 len = btrfs_inode_ref_name_len(path->nodes[0], iref);
1598 ret = fs_path_add_from_extent_buffer(name, path->nodes[0],
1599 (unsigned long)(iref + 1),
1600 len);
1601 parent_dir = found_key.offset;
1602 } else {
1603 struct btrfs_inode_extref *extref;
1604 extref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1605 struct btrfs_inode_extref);
1606 len = btrfs_inode_extref_name_len(path->nodes[0], extref);
1607 ret = fs_path_add_from_extent_buffer(name, path->nodes[0],
1608 (unsigned long)&extref->name, len);
1609 parent_dir = btrfs_inode_extref_parent(path->nodes[0], extref);
1610 }
Alexander Block31db9f72012-07-25 23:19:24 +02001611 if (ret < 0)
1612 goto out;
1613 btrfs_release_path(path);
1614
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001615 ret = get_inode_info(root, parent_dir, NULL, dir_gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001616 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001617 if (ret < 0)
1618 goto out;
1619
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001620 *dir = parent_dir;
Alexander Block31db9f72012-07-25 23:19:24 +02001621
1622out:
1623 btrfs_free_path(path);
1624 return ret;
1625}
1626
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001627static int is_first_ref(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02001628 u64 ino, u64 dir,
1629 const char *name, int name_len)
1630{
1631 int ret;
1632 struct fs_path *tmp_name;
1633 u64 tmp_dir;
1634 u64 tmp_dir_gen;
1635
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001636 tmp_name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02001637 if (!tmp_name)
1638 return -ENOMEM;
1639
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001640 ret = get_first_ref(root, ino, &tmp_dir, &tmp_dir_gen, tmp_name);
Alexander Block31db9f72012-07-25 23:19:24 +02001641 if (ret < 0)
1642 goto out;
1643
Alexander Blockb9291af2012-07-28 11:07:18 +02001644 if (dir != tmp_dir || name_len != fs_path_len(tmp_name)) {
Alexander Block31db9f72012-07-25 23:19:24 +02001645 ret = 0;
1646 goto out;
1647 }
1648
Alexander Blocke938c8a2012-07-28 16:33:49 +02001649 ret = !memcmp(tmp_name->start, name, name_len);
Alexander Block31db9f72012-07-25 23:19:24 +02001650
1651out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001652 fs_path_free(tmp_name);
Alexander Block31db9f72012-07-25 23:19:24 +02001653 return ret;
1654}
1655
Alexander Block766702e2012-07-28 14:11:31 +02001656/*
1657 * Used by process_recorded_refs to determine if a new ref would overwrite an
1658 * already existing ref. In case it detects an overwrite, it returns the
1659 * inode/gen in who_ino/who_gen.
1660 * When an overwrite is detected, process_recorded_refs does proper orphanizing
1661 * to make sure later references to the overwritten inode are possible.
1662 * Orphanizing is however only required for the first ref of an inode.
1663 * process_recorded_refs does an additional is_first_ref check to see if
1664 * orphanizing is really required.
1665 */
Alexander Block31db9f72012-07-25 23:19:24 +02001666static int will_overwrite_ref(struct send_ctx *sctx, u64 dir, u64 dir_gen,
1667 const char *name, int name_len,
1668 u64 *who_ino, u64 *who_gen)
1669{
1670 int ret = 0;
Josef Bacikebdad912013-08-06 16:47:48 -04001671 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +02001672 u64 other_inode = 0;
1673 u8 other_type = 0;
1674
1675 if (!sctx->parent_root)
1676 goto out;
1677
1678 ret = is_inode_existent(sctx, dir, dir_gen);
1679 if (ret <= 0)
1680 goto out;
1681
Josef Bacikebdad912013-08-06 16:47:48 -04001682 /*
1683 * If we have a parent root we need to verify that the parent dir was
1684 * not delted and then re-created, if it was then we have no overwrite
1685 * and we can just unlink this entry.
1686 */
1687 if (sctx->parent_root) {
1688 ret = get_inode_info(sctx->parent_root, dir, NULL, &gen, NULL,
1689 NULL, NULL, NULL);
1690 if (ret < 0 && ret != -ENOENT)
1691 goto out;
1692 if (ret) {
1693 ret = 0;
1694 goto out;
1695 }
1696 if (gen != dir_gen)
1697 goto out;
1698 }
1699
Alexander Block31db9f72012-07-25 23:19:24 +02001700 ret = lookup_dir_item_inode(sctx->parent_root, dir, name, name_len,
1701 &other_inode, &other_type);
1702 if (ret < 0 && ret != -ENOENT)
1703 goto out;
1704 if (ret) {
1705 ret = 0;
1706 goto out;
1707 }
1708
Alexander Block766702e2012-07-28 14:11:31 +02001709 /*
1710 * Check if the overwritten ref was already processed. If yes, the ref
1711 * was already unlinked/moved, so we can safely assume that we will not
1712 * overwrite anything at this point in time.
1713 */
Alexander Block31db9f72012-07-25 23:19:24 +02001714 if (other_inode > sctx->send_progress) {
1715 ret = get_inode_info(sctx->parent_root, other_inode, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001716 who_gen, NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001717 if (ret < 0)
1718 goto out;
1719
1720 ret = 1;
1721 *who_ino = other_inode;
1722 } else {
1723 ret = 0;
1724 }
1725
1726out:
1727 return ret;
1728}
1729
Alexander Block766702e2012-07-28 14:11:31 +02001730/*
1731 * Checks if the ref was overwritten by an already processed inode. This is
1732 * used by __get_cur_name_and_parent to find out if the ref was orphanized and
1733 * thus the orphan name needs be used.
1734 * process_recorded_refs also uses it to avoid unlinking of refs that were
1735 * overwritten.
1736 */
Alexander Block31db9f72012-07-25 23:19:24 +02001737static int did_overwrite_ref(struct send_ctx *sctx,
1738 u64 dir, u64 dir_gen,
1739 u64 ino, u64 ino_gen,
1740 const char *name, int name_len)
1741{
1742 int ret = 0;
1743 u64 gen;
1744 u64 ow_inode;
1745 u8 other_type;
1746
1747 if (!sctx->parent_root)
1748 goto out;
1749
1750 ret = is_inode_existent(sctx, dir, dir_gen);
1751 if (ret <= 0)
1752 goto out;
1753
1754 /* check if the ref was overwritten by another ref */
1755 ret = lookup_dir_item_inode(sctx->send_root, dir, name, name_len,
1756 &ow_inode, &other_type);
1757 if (ret < 0 && ret != -ENOENT)
1758 goto out;
1759 if (ret) {
1760 /* was never and will never be overwritten */
1761 ret = 0;
1762 goto out;
1763 }
1764
1765 ret = get_inode_info(sctx->send_root, ow_inode, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02001766 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02001767 if (ret < 0)
1768 goto out;
1769
1770 if (ow_inode == ino && gen == ino_gen) {
1771 ret = 0;
1772 goto out;
1773 }
1774
1775 /* we know that it is or will be overwritten. check this now */
1776 if (ow_inode < sctx->send_progress)
1777 ret = 1;
1778 else
1779 ret = 0;
1780
1781out:
1782 return ret;
1783}
1784
Alexander Block766702e2012-07-28 14:11:31 +02001785/*
1786 * Same as did_overwrite_ref, but also checks if it is the first ref of an inode
1787 * that got overwritten. This is used by process_recorded_refs to determine
1788 * if it has to use the path as returned by get_cur_path or the orphan name.
1789 */
Alexander Block31db9f72012-07-25 23:19:24 +02001790static int did_overwrite_first_ref(struct send_ctx *sctx, u64 ino, u64 gen)
1791{
1792 int ret = 0;
1793 struct fs_path *name = NULL;
1794 u64 dir;
1795 u64 dir_gen;
1796
1797 if (!sctx->parent_root)
1798 goto out;
1799
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001800 name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02001801 if (!name)
1802 return -ENOMEM;
1803
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001804 ret = get_first_ref(sctx->parent_root, ino, &dir, &dir_gen, name);
Alexander Block31db9f72012-07-25 23:19:24 +02001805 if (ret < 0)
1806 goto out;
1807
1808 ret = did_overwrite_ref(sctx, dir, dir_gen, ino, gen,
1809 name->start, fs_path_len(name));
Alexander Block31db9f72012-07-25 23:19:24 +02001810
1811out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001812 fs_path_free(name);
Alexander Block31db9f72012-07-25 23:19:24 +02001813 return ret;
1814}
1815
Alexander Block766702e2012-07-28 14:11:31 +02001816/*
1817 * Insert a name cache entry. On 32bit kernels the radix tree index is 32bit,
1818 * so we need to do some special handling in case we have clashes. This function
1819 * takes care of this with the help of name_cache_entry::radix_list.
Alexander Block5dc67d02012-08-01 12:07:43 +02001820 * In case of error, nce is kfreed.
Alexander Block766702e2012-07-28 14:11:31 +02001821 */
Alexander Block31db9f72012-07-25 23:19:24 +02001822static int name_cache_insert(struct send_ctx *sctx,
1823 struct name_cache_entry *nce)
1824{
1825 int ret = 0;
Alexander Block7e0926f2012-07-28 14:20:58 +02001826 struct list_head *nce_head;
Alexander Block31db9f72012-07-25 23:19:24 +02001827
Alexander Block7e0926f2012-07-28 14:20:58 +02001828 nce_head = radix_tree_lookup(&sctx->name_cache,
1829 (unsigned long)nce->ino);
1830 if (!nce_head) {
1831 nce_head = kmalloc(sizeof(*nce_head), GFP_NOFS);
Tsutomu Itohcfa7a9c2012-12-17 06:38:51 +00001832 if (!nce_head) {
1833 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02001834 return -ENOMEM;
Tsutomu Itohcfa7a9c2012-12-17 06:38:51 +00001835 }
Alexander Block7e0926f2012-07-28 14:20:58 +02001836 INIT_LIST_HEAD(nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02001837
Alexander Block7e0926f2012-07-28 14:20:58 +02001838 ret = radix_tree_insert(&sctx->name_cache, nce->ino, nce_head);
Alexander Block5dc67d02012-08-01 12:07:43 +02001839 if (ret < 0) {
1840 kfree(nce_head);
1841 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02001842 return ret;
Alexander Block5dc67d02012-08-01 12:07:43 +02001843 }
Alexander Block31db9f72012-07-25 23:19:24 +02001844 }
Alexander Block7e0926f2012-07-28 14:20:58 +02001845 list_add_tail(&nce->radix_list, nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02001846 list_add_tail(&nce->list, &sctx->name_cache_list);
1847 sctx->name_cache_size++;
1848
1849 return ret;
1850}
1851
1852static void name_cache_delete(struct send_ctx *sctx,
1853 struct name_cache_entry *nce)
1854{
Alexander Block7e0926f2012-07-28 14:20:58 +02001855 struct list_head *nce_head;
Alexander Block31db9f72012-07-25 23:19:24 +02001856
Alexander Block7e0926f2012-07-28 14:20:58 +02001857 nce_head = radix_tree_lookup(&sctx->name_cache,
1858 (unsigned long)nce->ino);
1859 BUG_ON(!nce_head);
Alexander Block31db9f72012-07-25 23:19:24 +02001860
Alexander Block7e0926f2012-07-28 14:20:58 +02001861 list_del(&nce->radix_list);
Alexander Block31db9f72012-07-25 23:19:24 +02001862 list_del(&nce->list);
Alexander Block31db9f72012-07-25 23:19:24 +02001863 sctx->name_cache_size--;
Alexander Block7e0926f2012-07-28 14:20:58 +02001864
1865 if (list_empty(nce_head)) {
1866 radix_tree_delete(&sctx->name_cache, (unsigned long)nce->ino);
1867 kfree(nce_head);
1868 }
Alexander Block31db9f72012-07-25 23:19:24 +02001869}
1870
1871static struct name_cache_entry *name_cache_search(struct send_ctx *sctx,
1872 u64 ino, u64 gen)
1873{
Alexander Block7e0926f2012-07-28 14:20:58 +02001874 struct list_head *nce_head;
1875 struct name_cache_entry *cur;
Alexander Block31db9f72012-07-25 23:19:24 +02001876
Alexander Block7e0926f2012-07-28 14:20:58 +02001877 nce_head = radix_tree_lookup(&sctx->name_cache, (unsigned long)ino);
1878 if (!nce_head)
Alexander Block31db9f72012-07-25 23:19:24 +02001879 return NULL;
1880
Alexander Block7e0926f2012-07-28 14:20:58 +02001881 list_for_each_entry(cur, nce_head, radix_list) {
1882 if (cur->ino == ino && cur->gen == gen)
1883 return cur;
1884 }
Alexander Block31db9f72012-07-25 23:19:24 +02001885 return NULL;
1886}
1887
Alexander Block766702e2012-07-28 14:11:31 +02001888/*
1889 * Removes the entry from the list and adds it back to the end. This marks the
1890 * entry as recently used so that name_cache_clean_unused does not remove it.
1891 */
Alexander Block31db9f72012-07-25 23:19:24 +02001892static void name_cache_used(struct send_ctx *sctx, struct name_cache_entry *nce)
1893{
1894 list_del(&nce->list);
1895 list_add_tail(&nce->list, &sctx->name_cache_list);
1896}
1897
Alexander Block766702e2012-07-28 14:11:31 +02001898/*
1899 * Remove some entries from the beginning of name_cache_list.
1900 */
Alexander Block31db9f72012-07-25 23:19:24 +02001901static void name_cache_clean_unused(struct send_ctx *sctx)
1902{
1903 struct name_cache_entry *nce;
1904
1905 if (sctx->name_cache_size < SEND_CTX_NAME_CACHE_CLEAN_SIZE)
1906 return;
1907
1908 while (sctx->name_cache_size > SEND_CTX_MAX_NAME_CACHE_SIZE) {
1909 nce = list_entry(sctx->name_cache_list.next,
1910 struct name_cache_entry, list);
1911 name_cache_delete(sctx, nce);
1912 kfree(nce);
1913 }
1914}
1915
1916static void name_cache_free(struct send_ctx *sctx)
1917{
1918 struct name_cache_entry *nce;
Alexander Block31db9f72012-07-25 23:19:24 +02001919
Alexander Blocke938c8a2012-07-28 16:33:49 +02001920 while (!list_empty(&sctx->name_cache_list)) {
1921 nce = list_entry(sctx->name_cache_list.next,
1922 struct name_cache_entry, list);
Alexander Block31db9f72012-07-25 23:19:24 +02001923 name_cache_delete(sctx, nce);
Alexander Block17589bd2012-07-28 14:13:35 +02001924 kfree(nce);
Alexander Block31db9f72012-07-25 23:19:24 +02001925 }
1926}
1927
Alexander Block766702e2012-07-28 14:11:31 +02001928/*
1929 * Used by get_cur_path for each ref up to the root.
1930 * Returns 0 if it succeeded.
1931 * Returns 1 if the inode is not existent or got overwritten. In that case, the
1932 * name is an orphan name. This instructs get_cur_path to stop iterating. If 1
1933 * is returned, parent_ino/parent_gen are not guaranteed to be valid.
1934 * Returns <0 in case of error.
1935 */
Alexander Block31db9f72012-07-25 23:19:24 +02001936static int __get_cur_name_and_parent(struct send_ctx *sctx,
1937 u64 ino, u64 gen,
1938 u64 *parent_ino,
1939 u64 *parent_gen,
1940 struct fs_path *dest)
1941{
1942 int ret;
1943 int nce_ret;
1944 struct btrfs_path *path = NULL;
1945 struct name_cache_entry *nce = NULL;
1946
Alexander Block766702e2012-07-28 14:11:31 +02001947 /*
1948 * First check if we already did a call to this function with the same
1949 * ino/gen. If yes, check if the cache entry is still up-to-date. If yes
1950 * return the cached result.
1951 */
Alexander Block31db9f72012-07-25 23:19:24 +02001952 nce = name_cache_search(sctx, ino, gen);
1953 if (nce) {
1954 if (ino < sctx->send_progress && nce->need_later_update) {
1955 name_cache_delete(sctx, nce);
1956 kfree(nce);
1957 nce = NULL;
1958 } else {
1959 name_cache_used(sctx, nce);
1960 *parent_ino = nce->parent_ino;
1961 *parent_gen = nce->parent_gen;
1962 ret = fs_path_add(dest, nce->name, nce->name_len);
1963 if (ret < 0)
1964 goto out;
1965 ret = nce->ret;
1966 goto out;
1967 }
1968 }
1969
1970 path = alloc_path_for_send();
1971 if (!path)
1972 return -ENOMEM;
1973
Alexander Block766702e2012-07-28 14:11:31 +02001974 /*
1975 * If the inode is not existent yet, add the orphan name and return 1.
1976 * This should only happen for the parent dir that we determine in
1977 * __record_new_ref
1978 */
Alexander Block31db9f72012-07-25 23:19:24 +02001979 ret = is_inode_existent(sctx, ino, gen);
1980 if (ret < 0)
1981 goto out;
1982
1983 if (!ret) {
1984 ret = gen_unique_name(sctx, ino, gen, dest);
1985 if (ret < 0)
1986 goto out;
1987 ret = 1;
1988 goto out_cache;
1989 }
1990
Alexander Block766702e2012-07-28 14:11:31 +02001991 /*
1992 * Depending on whether the inode was already processed or not, use
1993 * send_root or parent_root for ref lookup.
1994 */
Alexander Block31db9f72012-07-25 23:19:24 +02001995 if (ino < sctx->send_progress)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001996 ret = get_first_ref(sctx->send_root, ino,
1997 parent_ino, parent_gen, dest);
Alexander Block31db9f72012-07-25 23:19:24 +02001998 else
Tsutomu Itoh924794c2013-05-08 07:51:52 +00001999 ret = get_first_ref(sctx->parent_root, ino,
2000 parent_ino, parent_gen, dest);
Alexander Block31db9f72012-07-25 23:19:24 +02002001 if (ret < 0)
2002 goto out;
2003
Alexander Block766702e2012-07-28 14:11:31 +02002004 /*
2005 * Check if the ref was overwritten by an inode's ref that was processed
2006 * earlier. If yes, treat as orphan and return 1.
2007 */
Alexander Block31db9f72012-07-25 23:19:24 +02002008 ret = did_overwrite_ref(sctx, *parent_ino, *parent_gen, ino, gen,
2009 dest->start, dest->end - dest->start);
2010 if (ret < 0)
2011 goto out;
2012 if (ret) {
2013 fs_path_reset(dest);
2014 ret = gen_unique_name(sctx, ino, gen, dest);
2015 if (ret < 0)
2016 goto out;
2017 ret = 1;
2018 }
2019
2020out_cache:
Alexander Block766702e2012-07-28 14:11:31 +02002021 /*
2022 * Store the result of the lookup in the name cache.
2023 */
Alexander Block31db9f72012-07-25 23:19:24 +02002024 nce = kmalloc(sizeof(*nce) + fs_path_len(dest) + 1, GFP_NOFS);
2025 if (!nce) {
2026 ret = -ENOMEM;
2027 goto out;
2028 }
2029
2030 nce->ino = ino;
2031 nce->gen = gen;
2032 nce->parent_ino = *parent_ino;
2033 nce->parent_gen = *parent_gen;
2034 nce->name_len = fs_path_len(dest);
2035 nce->ret = ret;
2036 strcpy(nce->name, dest->start);
Alexander Block31db9f72012-07-25 23:19:24 +02002037
2038 if (ino < sctx->send_progress)
2039 nce->need_later_update = 0;
2040 else
2041 nce->need_later_update = 1;
2042
2043 nce_ret = name_cache_insert(sctx, nce);
2044 if (nce_ret < 0)
2045 ret = nce_ret;
2046 name_cache_clean_unused(sctx);
2047
2048out:
2049 btrfs_free_path(path);
2050 return ret;
2051}
2052
2053/*
2054 * Magic happens here. This function returns the first ref to an inode as it
2055 * would look like while receiving the stream at this point in time.
2056 * We walk the path up to the root. For every inode in between, we check if it
2057 * was already processed/sent. If yes, we continue with the parent as found
2058 * in send_root. If not, we continue with the parent as found in parent_root.
2059 * If we encounter an inode that was deleted at this point in time, we use the
2060 * inodes "orphan" name instead of the real name and stop. Same with new inodes
2061 * that were not created yet and overwritten inodes/refs.
2062 *
2063 * When do we have have orphan inodes:
2064 * 1. When an inode is freshly created and thus no valid refs are available yet
2065 * 2. When a directory lost all it's refs (deleted) but still has dir items
2066 * inside which were not processed yet (pending for move/delete). If anyone
2067 * tried to get the path to the dir items, it would get a path inside that
2068 * orphan directory.
2069 * 3. When an inode is moved around or gets new links, it may overwrite the ref
2070 * of an unprocessed inode. If in that case the first ref would be
2071 * overwritten, the overwritten inode gets "orphanized". Later when we
2072 * process this overwritten inode, it is restored at a new place by moving
2073 * the orphan inode.
2074 *
2075 * sctx->send_progress tells this function at which point in time receiving
2076 * would be.
2077 */
2078static int get_cur_path(struct send_ctx *sctx, u64 ino, u64 gen,
2079 struct fs_path *dest)
2080{
2081 int ret = 0;
2082 struct fs_path *name = NULL;
2083 u64 parent_inode = 0;
2084 u64 parent_gen = 0;
2085 int stop = 0;
2086
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002087 name = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002088 if (!name) {
2089 ret = -ENOMEM;
2090 goto out;
2091 }
2092
2093 dest->reversed = 1;
2094 fs_path_reset(dest);
2095
2096 while (!stop && ino != BTRFS_FIRST_FREE_OBJECTID) {
2097 fs_path_reset(name);
2098
2099 ret = __get_cur_name_and_parent(sctx, ino, gen,
2100 &parent_inode, &parent_gen, name);
2101 if (ret < 0)
2102 goto out;
2103 if (ret)
2104 stop = 1;
2105
2106 ret = fs_path_add_path(dest, name);
2107 if (ret < 0)
2108 goto out;
2109
2110 ino = parent_inode;
2111 gen = parent_gen;
2112 }
2113
2114out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002115 fs_path_free(name);
Alexander Block31db9f72012-07-25 23:19:24 +02002116 if (!ret)
2117 fs_path_unreverse(dest);
2118 return ret;
2119}
2120
2121/*
2122 * Called for regular files when sending extents data. Opens a struct file
2123 * to read from the file.
2124 */
2125static int open_cur_inode_file(struct send_ctx *sctx)
2126{
2127 int ret = 0;
2128 struct btrfs_key key;
Linus Torvaldse2aed8d2012-07-26 14:48:55 -07002129 struct path path;
Alexander Block31db9f72012-07-25 23:19:24 +02002130 struct inode *inode;
2131 struct dentry *dentry;
2132 struct file *filp;
2133 int new = 0;
2134
2135 if (sctx->cur_inode_filp)
2136 goto out;
2137
2138 key.objectid = sctx->cur_ino;
2139 key.type = BTRFS_INODE_ITEM_KEY;
2140 key.offset = 0;
2141
2142 inode = btrfs_iget(sctx->send_root->fs_info->sb, &key, sctx->send_root,
2143 &new);
2144 if (IS_ERR(inode)) {
2145 ret = PTR_ERR(inode);
2146 goto out;
2147 }
2148
2149 dentry = d_obtain_alias(inode);
2150 inode = NULL;
2151 if (IS_ERR(dentry)) {
2152 ret = PTR_ERR(dentry);
2153 goto out;
2154 }
2155
Linus Torvaldse2aed8d2012-07-26 14:48:55 -07002156 path.mnt = sctx->mnt;
2157 path.dentry = dentry;
2158 filp = dentry_open(&path, O_RDONLY | O_LARGEFILE, current_cred());
2159 dput(dentry);
Alexander Block31db9f72012-07-25 23:19:24 +02002160 dentry = NULL;
Alexander Block31db9f72012-07-25 23:19:24 +02002161 if (IS_ERR(filp)) {
2162 ret = PTR_ERR(filp);
2163 goto out;
2164 }
2165 sctx->cur_inode_filp = filp;
2166
2167out:
2168 /*
2169 * no xxxput required here as every vfs op
2170 * does it by itself on failure
2171 */
2172 return ret;
2173}
2174
2175/*
2176 * Closes the struct file that was created in open_cur_inode_file
2177 */
2178static int close_cur_inode_file(struct send_ctx *sctx)
2179{
2180 int ret = 0;
2181
2182 if (!sctx->cur_inode_filp)
2183 goto out;
2184
2185 ret = filp_close(sctx->cur_inode_filp, NULL);
2186 sctx->cur_inode_filp = NULL;
2187
2188out:
2189 return ret;
2190}
2191
2192/*
2193 * Sends a BTRFS_SEND_C_SUBVOL command/item to userspace
2194 */
2195static int send_subvol_begin(struct send_ctx *sctx)
2196{
2197 int ret;
2198 struct btrfs_root *send_root = sctx->send_root;
2199 struct btrfs_root *parent_root = sctx->parent_root;
2200 struct btrfs_path *path;
2201 struct btrfs_key key;
2202 struct btrfs_root_ref *ref;
2203 struct extent_buffer *leaf;
2204 char *name = NULL;
2205 int namelen;
2206
2207 path = alloc_path_for_send();
2208 if (!path)
2209 return -ENOMEM;
2210
2211 name = kmalloc(BTRFS_PATH_NAME_MAX, GFP_NOFS);
2212 if (!name) {
2213 btrfs_free_path(path);
2214 return -ENOMEM;
2215 }
2216
2217 key.objectid = send_root->objectid;
2218 key.type = BTRFS_ROOT_BACKREF_KEY;
2219 key.offset = 0;
2220
2221 ret = btrfs_search_slot_for_read(send_root->fs_info->tree_root,
2222 &key, path, 1, 0);
2223 if (ret < 0)
2224 goto out;
2225 if (ret) {
2226 ret = -ENOENT;
2227 goto out;
2228 }
2229
2230 leaf = path->nodes[0];
2231 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2232 if (key.type != BTRFS_ROOT_BACKREF_KEY ||
2233 key.objectid != send_root->objectid) {
2234 ret = -ENOENT;
2235 goto out;
2236 }
2237 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
2238 namelen = btrfs_root_ref_name_len(leaf, ref);
2239 read_extent_buffer(leaf, name, (unsigned long)(ref + 1), namelen);
2240 btrfs_release_path(path);
2241
Alexander Block31db9f72012-07-25 23:19:24 +02002242 if (parent_root) {
2243 ret = begin_cmd(sctx, BTRFS_SEND_C_SNAPSHOT);
2244 if (ret < 0)
2245 goto out;
2246 } else {
2247 ret = begin_cmd(sctx, BTRFS_SEND_C_SUBVOL);
2248 if (ret < 0)
2249 goto out;
2250 }
2251
2252 TLV_PUT_STRING(sctx, BTRFS_SEND_A_PATH, name, namelen);
2253 TLV_PUT_UUID(sctx, BTRFS_SEND_A_UUID,
2254 sctx->send_root->root_item.uuid);
2255 TLV_PUT_U64(sctx, BTRFS_SEND_A_CTRANSID,
2256 sctx->send_root->root_item.ctransid);
2257 if (parent_root) {
2258 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
2259 sctx->parent_root->root_item.uuid);
2260 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID,
2261 sctx->parent_root->root_item.ctransid);
2262 }
2263
2264 ret = send_cmd(sctx);
2265
2266tlv_put_failure:
2267out:
2268 btrfs_free_path(path);
2269 kfree(name);
2270 return ret;
2271}
2272
2273static int send_truncate(struct send_ctx *sctx, u64 ino, u64 gen, u64 size)
2274{
2275 int ret = 0;
2276 struct fs_path *p;
2277
2278verbose_printk("btrfs: send_truncate %llu size=%llu\n", ino, size);
2279
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002280 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002281 if (!p)
2282 return -ENOMEM;
2283
2284 ret = begin_cmd(sctx, BTRFS_SEND_C_TRUNCATE);
2285 if (ret < 0)
2286 goto out;
2287
2288 ret = get_cur_path(sctx, ino, gen, p);
2289 if (ret < 0)
2290 goto out;
2291 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2292 TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, size);
2293
2294 ret = send_cmd(sctx);
2295
2296tlv_put_failure:
2297out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002298 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002299 return ret;
2300}
2301
2302static int send_chmod(struct send_ctx *sctx, u64 ino, u64 gen, u64 mode)
2303{
2304 int ret = 0;
2305 struct fs_path *p;
2306
2307verbose_printk("btrfs: send_chmod %llu mode=%llu\n", ino, mode);
2308
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002309 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002310 if (!p)
2311 return -ENOMEM;
2312
2313 ret = begin_cmd(sctx, BTRFS_SEND_C_CHMOD);
2314 if (ret < 0)
2315 goto out;
2316
2317 ret = get_cur_path(sctx, ino, gen, p);
2318 if (ret < 0)
2319 goto out;
2320 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2321 TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode & 07777);
2322
2323 ret = send_cmd(sctx);
2324
2325tlv_put_failure:
2326out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002327 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002328 return ret;
2329}
2330
2331static int send_chown(struct send_ctx *sctx, u64 ino, u64 gen, u64 uid, u64 gid)
2332{
2333 int ret = 0;
2334 struct fs_path *p;
2335
2336verbose_printk("btrfs: send_chown %llu uid=%llu, gid=%llu\n", ino, uid, gid);
2337
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002338 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002339 if (!p)
2340 return -ENOMEM;
2341
2342 ret = begin_cmd(sctx, BTRFS_SEND_C_CHOWN);
2343 if (ret < 0)
2344 goto out;
2345
2346 ret = get_cur_path(sctx, ino, gen, p);
2347 if (ret < 0)
2348 goto out;
2349 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2350 TLV_PUT_U64(sctx, BTRFS_SEND_A_UID, uid);
2351 TLV_PUT_U64(sctx, BTRFS_SEND_A_GID, gid);
2352
2353 ret = send_cmd(sctx);
2354
2355tlv_put_failure:
2356out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002357 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002358 return ret;
2359}
2360
2361static int send_utimes(struct send_ctx *sctx, u64 ino, u64 gen)
2362{
2363 int ret = 0;
2364 struct fs_path *p = NULL;
2365 struct btrfs_inode_item *ii;
2366 struct btrfs_path *path = NULL;
2367 struct extent_buffer *eb;
2368 struct btrfs_key key;
2369 int slot;
2370
2371verbose_printk("btrfs: send_utimes %llu\n", ino);
2372
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002373 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002374 if (!p)
2375 return -ENOMEM;
2376
2377 path = alloc_path_for_send();
2378 if (!path) {
2379 ret = -ENOMEM;
2380 goto out;
2381 }
2382
2383 key.objectid = ino;
2384 key.type = BTRFS_INODE_ITEM_KEY;
2385 key.offset = 0;
2386 ret = btrfs_search_slot(NULL, sctx->send_root, &key, path, 0, 0);
2387 if (ret < 0)
2388 goto out;
2389
2390 eb = path->nodes[0];
2391 slot = path->slots[0];
2392 ii = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
2393
2394 ret = begin_cmd(sctx, BTRFS_SEND_C_UTIMES);
2395 if (ret < 0)
2396 goto out;
2397
2398 ret = get_cur_path(sctx, ino, gen, p);
2399 if (ret < 0)
2400 goto out;
2401 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
2402 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_ATIME, eb,
2403 btrfs_inode_atime(ii));
2404 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_MTIME, eb,
2405 btrfs_inode_mtime(ii));
2406 TLV_PUT_BTRFS_TIMESPEC(sctx, BTRFS_SEND_A_CTIME, eb,
2407 btrfs_inode_ctime(ii));
Alexander Block766702e2012-07-28 14:11:31 +02002408 /* TODO Add otime support when the otime patches get into upstream */
Alexander Block31db9f72012-07-25 23:19:24 +02002409
2410 ret = send_cmd(sctx);
2411
2412tlv_put_failure:
2413out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002414 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002415 btrfs_free_path(path);
2416 return ret;
2417}
2418
2419/*
2420 * Sends a BTRFS_SEND_C_MKXXX or SYMLINK command to user space. We don't have
2421 * a valid path yet because we did not process the refs yet. So, the inode
2422 * is created as orphan.
2423 */
Alexander Block1f4692d2012-07-28 10:42:24 +02002424static int send_create_inode(struct send_ctx *sctx, u64 ino)
Alexander Block31db9f72012-07-25 23:19:24 +02002425{
2426 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02002427 struct fs_path *p;
Alexander Block31db9f72012-07-25 23:19:24 +02002428 int cmd;
Alexander Block1f4692d2012-07-28 10:42:24 +02002429 u64 gen;
Alexander Block31db9f72012-07-25 23:19:24 +02002430 u64 mode;
Alexander Block1f4692d2012-07-28 10:42:24 +02002431 u64 rdev;
Alexander Block31db9f72012-07-25 23:19:24 +02002432
Alexander Block1f4692d2012-07-28 10:42:24 +02002433verbose_printk("btrfs: send_create_inode %llu\n", ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002434
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002435 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002436 if (!p)
2437 return -ENOMEM;
2438
Alexander Block1f4692d2012-07-28 10:42:24 +02002439 ret = get_inode_info(sctx->send_root, ino, NULL, &gen, &mode, NULL,
2440 NULL, &rdev);
2441 if (ret < 0)
2442 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02002443
Alexander Blocke938c8a2012-07-28 16:33:49 +02002444 if (S_ISREG(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002445 cmd = BTRFS_SEND_C_MKFILE;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002446 } else if (S_ISDIR(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002447 cmd = BTRFS_SEND_C_MKDIR;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002448 } else if (S_ISLNK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002449 cmd = BTRFS_SEND_C_SYMLINK;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002450 } else if (S_ISCHR(mode) || S_ISBLK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002451 cmd = BTRFS_SEND_C_MKNOD;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002452 } else if (S_ISFIFO(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002453 cmd = BTRFS_SEND_C_MKFIFO;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002454 } else if (S_ISSOCK(mode)) {
Alexander Block31db9f72012-07-25 23:19:24 +02002455 cmd = BTRFS_SEND_C_MKSOCK;
Alexander Blocke938c8a2012-07-28 16:33:49 +02002456 } else {
Alexander Block31db9f72012-07-25 23:19:24 +02002457 printk(KERN_WARNING "btrfs: unexpected inode type %o",
2458 (int)(mode & S_IFMT));
2459 ret = -ENOTSUPP;
2460 goto out;
2461 }
2462
2463 ret = begin_cmd(sctx, cmd);
2464 if (ret < 0)
2465 goto out;
2466
Alexander Block1f4692d2012-07-28 10:42:24 +02002467 ret = gen_unique_name(sctx, ino, gen, p);
Alexander Block31db9f72012-07-25 23:19:24 +02002468 if (ret < 0)
2469 goto out;
2470
2471 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
Alexander Block1f4692d2012-07-28 10:42:24 +02002472 TLV_PUT_U64(sctx, BTRFS_SEND_A_INO, ino);
Alexander Block31db9f72012-07-25 23:19:24 +02002473
2474 if (S_ISLNK(mode)) {
2475 fs_path_reset(p);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002476 ret = read_symlink(sctx->send_root, ino, p);
Alexander Block31db9f72012-07-25 23:19:24 +02002477 if (ret < 0)
2478 goto out;
2479 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH_LINK, p);
2480 } else if (S_ISCHR(mode) || S_ISBLK(mode) ||
2481 S_ISFIFO(mode) || S_ISSOCK(mode)) {
Arne Jansend79e5042012-10-15 18:28:46 +00002482 TLV_PUT_U64(sctx, BTRFS_SEND_A_RDEV, new_encode_dev(rdev));
2483 TLV_PUT_U64(sctx, BTRFS_SEND_A_MODE, mode);
Alexander Block31db9f72012-07-25 23:19:24 +02002484 }
2485
2486 ret = send_cmd(sctx);
2487 if (ret < 0)
2488 goto out;
2489
2490
2491tlv_put_failure:
2492out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002493 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02002494 return ret;
2495}
2496
Alexander Block1f4692d2012-07-28 10:42:24 +02002497/*
2498 * We need some special handling for inodes that get processed before the parent
2499 * directory got created. See process_recorded_refs for details.
2500 * This function does the check if we already created the dir out of order.
2501 */
2502static int did_create_dir(struct send_ctx *sctx, u64 dir)
2503{
2504 int ret = 0;
2505 struct btrfs_path *path = NULL;
2506 struct btrfs_key key;
2507 struct btrfs_key found_key;
2508 struct btrfs_key di_key;
2509 struct extent_buffer *eb;
2510 struct btrfs_dir_item *di;
2511 int slot;
2512
2513 path = alloc_path_for_send();
2514 if (!path) {
2515 ret = -ENOMEM;
2516 goto out;
2517 }
2518
2519 key.objectid = dir;
2520 key.type = BTRFS_DIR_INDEX_KEY;
2521 key.offset = 0;
2522 while (1) {
2523 ret = btrfs_search_slot_for_read(sctx->send_root, &key, path,
2524 1, 0);
2525 if (ret < 0)
2526 goto out;
2527 if (!ret) {
2528 eb = path->nodes[0];
2529 slot = path->slots[0];
2530 btrfs_item_key_to_cpu(eb, &found_key, slot);
2531 }
2532 if (ret || found_key.objectid != key.objectid ||
2533 found_key.type != key.type) {
2534 ret = 0;
2535 goto out;
2536 }
2537
2538 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
2539 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
2540
2541 if (di_key.objectid < sctx->send_progress) {
2542 ret = 1;
2543 goto out;
2544 }
2545
2546 key.offset = found_key.offset + 1;
2547 btrfs_release_path(path);
2548 }
2549
2550out:
2551 btrfs_free_path(path);
2552 return ret;
2553}
2554
2555/*
2556 * Only creates the inode if it is:
2557 * 1. Not a directory
2558 * 2. Or a directory which was not created already due to out of order
2559 * directories. See did_create_dir and process_recorded_refs for details.
2560 */
2561static int send_create_inode_if_needed(struct send_ctx *sctx)
2562{
2563 int ret;
2564
2565 if (S_ISDIR(sctx->cur_inode_mode)) {
2566 ret = did_create_dir(sctx, sctx->cur_ino);
2567 if (ret < 0)
2568 goto out;
2569 if (ret) {
2570 ret = 0;
2571 goto out;
2572 }
2573 }
2574
2575 ret = send_create_inode(sctx, sctx->cur_ino);
2576 if (ret < 0)
2577 goto out;
2578
2579out:
2580 return ret;
2581}
2582
Alexander Block31db9f72012-07-25 23:19:24 +02002583struct recorded_ref {
2584 struct list_head list;
2585 char *dir_path;
2586 char *name;
2587 struct fs_path *full_path;
2588 u64 dir;
2589 u64 dir_gen;
2590 int dir_path_len;
2591 int name_len;
2592};
2593
2594/*
2595 * We need to process new refs before deleted refs, but compare_tree gives us
2596 * everything mixed. So we first record all refs and later process them.
2597 * This function is a helper to record one ref.
2598 */
2599static int record_ref(struct list_head *head, u64 dir,
2600 u64 dir_gen, struct fs_path *path)
2601{
2602 struct recorded_ref *ref;
2603 char *tmp;
2604
2605 ref = kmalloc(sizeof(*ref), GFP_NOFS);
2606 if (!ref)
2607 return -ENOMEM;
2608
2609 ref->dir = dir;
2610 ref->dir_gen = dir_gen;
2611 ref->full_path = path;
2612
2613 tmp = strrchr(ref->full_path->start, '/');
2614 if (!tmp) {
2615 ref->name_len = ref->full_path->end - ref->full_path->start;
2616 ref->name = ref->full_path->start;
2617 ref->dir_path_len = 0;
2618 ref->dir_path = ref->full_path->start;
2619 } else {
2620 tmp++;
2621 ref->name_len = ref->full_path->end - tmp;
2622 ref->name = tmp;
2623 ref->dir_path = ref->full_path->start;
2624 ref->dir_path_len = ref->full_path->end -
2625 ref->full_path->start - 1 - ref->name_len;
2626 }
2627
2628 list_add_tail(&ref->list, head);
2629 return 0;
2630}
2631
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002632static void __free_recorded_refs(struct list_head *head)
Alexander Block31db9f72012-07-25 23:19:24 +02002633{
2634 struct recorded_ref *cur;
Alexander Block31db9f72012-07-25 23:19:24 +02002635
Alexander Blocke938c8a2012-07-28 16:33:49 +02002636 while (!list_empty(head)) {
2637 cur = list_entry(head->next, struct recorded_ref, list);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002638 fs_path_free(cur->full_path);
Alexander Blocke938c8a2012-07-28 16:33:49 +02002639 list_del(&cur->list);
Alexander Block31db9f72012-07-25 23:19:24 +02002640 kfree(cur);
2641 }
Alexander Block31db9f72012-07-25 23:19:24 +02002642}
2643
2644static void free_recorded_refs(struct send_ctx *sctx)
2645{
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002646 __free_recorded_refs(&sctx->new_refs);
2647 __free_recorded_refs(&sctx->deleted_refs);
Alexander Block31db9f72012-07-25 23:19:24 +02002648}
2649
2650/*
Alexander Block766702e2012-07-28 14:11:31 +02002651 * Renames/moves a file/dir to its orphan name. Used when the first
Alexander Block31db9f72012-07-25 23:19:24 +02002652 * ref of an unprocessed inode gets overwritten and for all non empty
2653 * directories.
2654 */
2655static int orphanize_inode(struct send_ctx *sctx, u64 ino, u64 gen,
2656 struct fs_path *path)
2657{
2658 int ret;
2659 struct fs_path *orphan;
2660
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002661 orphan = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002662 if (!orphan)
2663 return -ENOMEM;
2664
2665 ret = gen_unique_name(sctx, ino, gen, orphan);
2666 if (ret < 0)
2667 goto out;
2668
2669 ret = send_rename(sctx, path, orphan);
2670
2671out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002672 fs_path_free(orphan);
Alexander Block31db9f72012-07-25 23:19:24 +02002673 return ret;
2674}
2675
2676/*
2677 * Returns 1 if a directory can be removed at this point in time.
2678 * We check this by iterating all dir items and checking if the inode behind
2679 * the dir item was already processed.
2680 */
2681static int can_rmdir(struct send_ctx *sctx, u64 dir, u64 send_progress)
2682{
2683 int ret = 0;
2684 struct btrfs_root *root = sctx->parent_root;
2685 struct btrfs_path *path;
2686 struct btrfs_key key;
2687 struct btrfs_key found_key;
2688 struct btrfs_key loc;
2689 struct btrfs_dir_item *di;
2690
Alexander Block6d85ed02012-08-01 14:48:59 +02002691 /*
2692 * Don't try to rmdir the top/root subvolume dir.
2693 */
2694 if (dir == BTRFS_FIRST_FREE_OBJECTID)
2695 return 0;
2696
Alexander Block31db9f72012-07-25 23:19:24 +02002697 path = alloc_path_for_send();
2698 if (!path)
2699 return -ENOMEM;
2700
2701 key.objectid = dir;
2702 key.type = BTRFS_DIR_INDEX_KEY;
2703 key.offset = 0;
2704
2705 while (1) {
2706 ret = btrfs_search_slot_for_read(root, &key, path, 1, 0);
2707 if (ret < 0)
2708 goto out;
2709 if (!ret) {
2710 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2711 path->slots[0]);
2712 }
2713 if (ret || found_key.objectid != key.objectid ||
2714 found_key.type != key.type) {
2715 break;
2716 }
2717
2718 di = btrfs_item_ptr(path->nodes[0], path->slots[0],
2719 struct btrfs_dir_item);
2720 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &loc);
2721
2722 if (loc.objectid > send_progress) {
2723 ret = 0;
2724 goto out;
2725 }
2726
2727 btrfs_release_path(path);
2728 key.offset = found_key.offset + 1;
2729 }
2730
2731 ret = 1;
2732
2733out:
2734 btrfs_free_path(path);
2735 return ret;
2736}
2737
Alexander Block31db9f72012-07-25 23:19:24 +02002738/*
2739 * This does all the move/link/unlink/rmdir magic.
2740 */
2741static int process_recorded_refs(struct send_ctx *sctx)
2742{
2743 int ret = 0;
2744 struct recorded_ref *cur;
Alexander Block1f4692d2012-07-28 10:42:24 +02002745 struct recorded_ref *cur2;
Alexander Block31db9f72012-07-25 23:19:24 +02002746 struct ulist *check_dirs = NULL;
2747 struct ulist_iterator uit;
2748 struct ulist_node *un;
2749 struct fs_path *valid_path = NULL;
Chris Masonb24baf62012-07-25 19:21:10 -04002750 u64 ow_inode = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02002751 u64 ow_gen;
2752 int did_overwrite = 0;
2753 int is_orphan = 0;
2754
2755verbose_printk("btrfs: process_recorded_refs %llu\n", sctx->cur_ino);
2756
Alexander Block6d85ed02012-08-01 14:48:59 +02002757 /*
2758 * This should never happen as the root dir always has the same ref
2759 * which is always '..'
2760 */
2761 BUG_ON(sctx->cur_ino <= BTRFS_FIRST_FREE_OBJECTID);
2762
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002763 valid_path = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02002764 if (!valid_path) {
2765 ret = -ENOMEM;
2766 goto out;
2767 }
2768
2769 check_dirs = ulist_alloc(GFP_NOFS);
2770 if (!check_dirs) {
2771 ret = -ENOMEM;
2772 goto out;
2773 }
2774
2775 /*
2776 * First, check if the first ref of the current inode was overwritten
2777 * before. If yes, we know that the current inode was already orphanized
2778 * and thus use the orphan name. If not, we can use get_cur_path to
2779 * get the path of the first ref as it would like while receiving at
2780 * this point in time.
2781 * New inodes are always orphan at the beginning, so force to use the
2782 * orphan name in this case.
2783 * The first ref is stored in valid_path and will be updated if it
2784 * gets moved around.
2785 */
2786 if (!sctx->cur_inode_new) {
2787 ret = did_overwrite_first_ref(sctx, sctx->cur_ino,
2788 sctx->cur_inode_gen);
2789 if (ret < 0)
2790 goto out;
2791 if (ret)
2792 did_overwrite = 1;
2793 }
2794 if (sctx->cur_inode_new || did_overwrite) {
2795 ret = gen_unique_name(sctx, sctx->cur_ino,
2796 sctx->cur_inode_gen, valid_path);
2797 if (ret < 0)
2798 goto out;
2799 is_orphan = 1;
2800 } else {
2801 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen,
2802 valid_path);
2803 if (ret < 0)
2804 goto out;
2805 }
2806
2807 list_for_each_entry(cur, &sctx->new_refs, list) {
2808 /*
Alexander Block1f4692d2012-07-28 10:42:24 +02002809 * We may have refs where the parent directory does not exist
2810 * yet. This happens if the parent directories inum is higher
2811 * the the current inum. To handle this case, we create the
2812 * parent directory out of order. But we need to check if this
2813 * did already happen before due to other refs in the same dir.
2814 */
2815 ret = get_cur_inode_state(sctx, cur->dir, cur->dir_gen);
2816 if (ret < 0)
2817 goto out;
2818 if (ret == inode_state_will_create) {
2819 ret = 0;
2820 /*
2821 * First check if any of the current inodes refs did
2822 * already create the dir.
2823 */
2824 list_for_each_entry(cur2, &sctx->new_refs, list) {
2825 if (cur == cur2)
2826 break;
2827 if (cur2->dir == cur->dir) {
2828 ret = 1;
2829 break;
2830 }
2831 }
2832
2833 /*
2834 * If that did not happen, check if a previous inode
2835 * did already create the dir.
2836 */
2837 if (!ret)
2838 ret = did_create_dir(sctx, cur->dir);
2839 if (ret < 0)
2840 goto out;
2841 if (!ret) {
2842 ret = send_create_inode(sctx, cur->dir);
2843 if (ret < 0)
2844 goto out;
2845 }
2846 }
2847
2848 /*
Alexander Block31db9f72012-07-25 23:19:24 +02002849 * Check if this new ref would overwrite the first ref of
2850 * another unprocessed inode. If yes, orphanize the
2851 * overwritten inode. If we find an overwritten ref that is
2852 * not the first ref, simply unlink it.
2853 */
2854 ret = will_overwrite_ref(sctx, cur->dir, cur->dir_gen,
2855 cur->name, cur->name_len,
2856 &ow_inode, &ow_gen);
2857 if (ret < 0)
2858 goto out;
2859 if (ret) {
Tsutomu Itoh924794c2013-05-08 07:51:52 +00002860 ret = is_first_ref(sctx->parent_root,
2861 ow_inode, cur->dir, cur->name,
2862 cur->name_len);
Alexander Block31db9f72012-07-25 23:19:24 +02002863 if (ret < 0)
2864 goto out;
2865 if (ret) {
2866 ret = orphanize_inode(sctx, ow_inode, ow_gen,
2867 cur->full_path);
2868 if (ret < 0)
2869 goto out;
2870 } else {
2871 ret = send_unlink(sctx, cur->full_path);
2872 if (ret < 0)
2873 goto out;
2874 }
2875 }
2876
2877 /*
2878 * link/move the ref to the new place. If we have an orphan
2879 * inode, move it and update valid_path. If not, link or move
2880 * it depending on the inode mode.
2881 */
Alexander Block1f4692d2012-07-28 10:42:24 +02002882 if (is_orphan) {
Alexander Block31db9f72012-07-25 23:19:24 +02002883 ret = send_rename(sctx, valid_path, cur->full_path);
2884 if (ret < 0)
2885 goto out;
2886 is_orphan = 0;
2887 ret = fs_path_copy(valid_path, cur->full_path);
2888 if (ret < 0)
2889 goto out;
2890 } else {
2891 if (S_ISDIR(sctx->cur_inode_mode)) {
2892 /*
2893 * Dirs can't be linked, so move it. For moved
2894 * dirs, we always have one new and one deleted
2895 * ref. The deleted ref is ignored later.
2896 */
2897 ret = send_rename(sctx, valid_path,
2898 cur->full_path);
2899 if (ret < 0)
2900 goto out;
2901 ret = fs_path_copy(valid_path, cur->full_path);
2902 if (ret < 0)
2903 goto out;
2904 } else {
2905 ret = send_link(sctx, cur->full_path,
2906 valid_path);
2907 if (ret < 0)
2908 goto out;
2909 }
2910 }
2911 ret = ulist_add(check_dirs, cur->dir, cur->dir_gen,
2912 GFP_NOFS);
2913 if (ret < 0)
2914 goto out;
2915 }
2916
2917 if (S_ISDIR(sctx->cur_inode_mode) && sctx->cur_inode_deleted) {
2918 /*
2919 * Check if we can already rmdir the directory. If not,
2920 * orphanize it. For every dir item inside that gets deleted
2921 * later, we do this check again and rmdir it then if possible.
2922 * See the use of check_dirs for more details.
2923 */
2924 ret = can_rmdir(sctx, sctx->cur_ino, sctx->cur_ino);
2925 if (ret < 0)
2926 goto out;
2927 if (ret) {
2928 ret = send_rmdir(sctx, valid_path);
2929 if (ret < 0)
2930 goto out;
2931 } else if (!is_orphan) {
2932 ret = orphanize_inode(sctx, sctx->cur_ino,
2933 sctx->cur_inode_gen, valid_path);
2934 if (ret < 0)
2935 goto out;
2936 is_orphan = 1;
2937 }
2938
2939 list_for_each_entry(cur, &sctx->deleted_refs, list) {
2940 ret = ulist_add(check_dirs, cur->dir, cur->dir_gen,
2941 GFP_NOFS);
2942 if (ret < 0)
2943 goto out;
2944 }
Alexander Blockccf16262012-07-28 11:46:29 +02002945 } else if (S_ISDIR(sctx->cur_inode_mode) &&
2946 !list_empty(&sctx->deleted_refs)) {
2947 /*
2948 * We have a moved dir. Add the old parent to check_dirs
2949 */
2950 cur = list_entry(sctx->deleted_refs.next, struct recorded_ref,
2951 list);
2952 ret = ulist_add(check_dirs, cur->dir, cur->dir_gen,
2953 GFP_NOFS);
2954 if (ret < 0)
2955 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02002956 } else if (!S_ISDIR(sctx->cur_inode_mode)) {
2957 /*
2958 * We have a non dir inode. Go through all deleted refs and
2959 * unlink them if they were not already overwritten by other
2960 * inodes.
2961 */
2962 list_for_each_entry(cur, &sctx->deleted_refs, list) {
2963 ret = did_overwrite_ref(sctx, cur->dir, cur->dir_gen,
2964 sctx->cur_ino, sctx->cur_inode_gen,
2965 cur->name, cur->name_len);
2966 if (ret < 0)
2967 goto out;
2968 if (!ret) {
Alexander Block1f4692d2012-07-28 10:42:24 +02002969 ret = send_unlink(sctx, cur->full_path);
2970 if (ret < 0)
2971 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02002972 }
2973 ret = ulist_add(check_dirs, cur->dir, cur->dir_gen,
2974 GFP_NOFS);
2975 if (ret < 0)
2976 goto out;
2977 }
2978
2979 /*
2980 * If the inode is still orphan, unlink the orphan. This may
2981 * happen when a previous inode did overwrite the first ref
2982 * of this inode and no new refs were added for the current
Alexander Block766702e2012-07-28 14:11:31 +02002983 * inode. Unlinking does not mean that the inode is deleted in
2984 * all cases. There may still be links to this inode in other
2985 * places.
Alexander Block31db9f72012-07-25 23:19:24 +02002986 */
Alexander Block1f4692d2012-07-28 10:42:24 +02002987 if (is_orphan) {
Alexander Block31db9f72012-07-25 23:19:24 +02002988 ret = send_unlink(sctx, valid_path);
2989 if (ret < 0)
2990 goto out;
2991 }
2992 }
2993
2994 /*
2995 * We did collect all parent dirs where cur_inode was once located. We
2996 * now go through all these dirs and check if they are pending for
2997 * deletion and if it's finally possible to perform the rmdir now.
2998 * We also update the inode stats of the parent dirs here.
2999 */
3000 ULIST_ITER_INIT(&uit);
3001 while ((un = ulist_next(check_dirs, &uit))) {
Alexander Block766702e2012-07-28 14:11:31 +02003002 /*
3003 * In case we had refs into dirs that were not processed yet,
3004 * we don't need to do the utime and rmdir logic for these dirs.
3005 * The dir will be processed later.
3006 */
Alexander Block31db9f72012-07-25 23:19:24 +02003007 if (un->val > sctx->cur_ino)
3008 continue;
3009
3010 ret = get_cur_inode_state(sctx, un->val, un->aux);
3011 if (ret < 0)
3012 goto out;
3013
3014 if (ret == inode_state_did_create ||
3015 ret == inode_state_no_change) {
3016 /* TODO delayed utimes */
3017 ret = send_utimes(sctx, un->val, un->aux);
3018 if (ret < 0)
3019 goto out;
3020 } else if (ret == inode_state_did_delete) {
3021 ret = can_rmdir(sctx, un->val, sctx->cur_ino);
3022 if (ret < 0)
3023 goto out;
3024 if (ret) {
3025 ret = get_cur_path(sctx, un->val, un->aux,
3026 valid_path);
3027 if (ret < 0)
3028 goto out;
3029 ret = send_rmdir(sctx, valid_path);
3030 if (ret < 0)
3031 goto out;
3032 }
3033 }
3034 }
3035
Alexander Block31db9f72012-07-25 23:19:24 +02003036 ret = 0;
3037
3038out:
3039 free_recorded_refs(sctx);
3040 ulist_free(check_dirs);
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003041 fs_path_free(valid_path);
Alexander Block31db9f72012-07-25 23:19:24 +02003042 return ret;
3043}
3044
3045static int __record_new_ref(int num, u64 dir, int index,
3046 struct fs_path *name,
3047 void *ctx)
3048{
3049 int ret = 0;
3050 struct send_ctx *sctx = ctx;
3051 struct fs_path *p;
3052 u64 gen;
3053
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003054 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003055 if (!p)
3056 return -ENOMEM;
3057
3058 ret = get_inode_info(sctx->send_root, dir, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02003059 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02003060 if (ret < 0)
3061 goto out;
3062
Alexander Block31db9f72012-07-25 23:19:24 +02003063 ret = get_cur_path(sctx, dir, gen, p);
3064 if (ret < 0)
3065 goto out;
3066 ret = fs_path_add_path(p, name);
3067 if (ret < 0)
3068 goto out;
3069
3070 ret = record_ref(&sctx->new_refs, dir, gen, p);
3071
3072out:
3073 if (ret)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003074 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02003075 return ret;
3076}
3077
3078static int __record_deleted_ref(int num, u64 dir, int index,
3079 struct fs_path *name,
3080 void *ctx)
3081{
3082 int ret = 0;
3083 struct send_ctx *sctx = ctx;
3084 struct fs_path *p;
3085 u64 gen;
3086
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003087 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003088 if (!p)
3089 return -ENOMEM;
3090
3091 ret = get_inode_info(sctx->parent_root, dir, NULL, &gen, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02003092 NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02003093 if (ret < 0)
3094 goto out;
3095
3096 ret = get_cur_path(sctx, dir, gen, p);
3097 if (ret < 0)
3098 goto out;
3099 ret = fs_path_add_path(p, name);
3100 if (ret < 0)
3101 goto out;
3102
3103 ret = record_ref(&sctx->deleted_refs, dir, gen, p);
3104
3105out:
3106 if (ret)
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003107 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02003108 return ret;
3109}
3110
3111static int record_new_ref(struct send_ctx *sctx)
3112{
3113 int ret;
3114
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003115 ret = iterate_inode_ref(sctx->send_root, sctx->left_path,
3116 sctx->cmp_key, 0, __record_new_ref, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02003117 if (ret < 0)
3118 goto out;
3119 ret = 0;
3120
3121out:
3122 return ret;
3123}
3124
3125static int record_deleted_ref(struct send_ctx *sctx)
3126{
3127 int ret;
3128
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003129 ret = iterate_inode_ref(sctx->parent_root, sctx->right_path,
3130 sctx->cmp_key, 0, __record_deleted_ref, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02003131 if (ret < 0)
3132 goto out;
3133 ret = 0;
3134
3135out:
3136 return ret;
3137}
3138
3139struct find_ref_ctx {
3140 u64 dir;
3141 struct fs_path *name;
3142 int found_idx;
3143};
3144
3145static int __find_iref(int num, u64 dir, int index,
3146 struct fs_path *name,
3147 void *ctx_)
3148{
3149 struct find_ref_ctx *ctx = ctx_;
3150
3151 if (dir == ctx->dir && fs_path_len(name) == fs_path_len(ctx->name) &&
3152 strncmp(name->start, ctx->name->start, fs_path_len(name)) == 0) {
3153 ctx->found_idx = num;
3154 return 1;
3155 }
3156 return 0;
3157}
3158
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003159static int find_iref(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02003160 struct btrfs_path *path,
3161 struct btrfs_key *key,
3162 u64 dir, struct fs_path *name)
3163{
3164 int ret;
3165 struct find_ref_ctx ctx;
3166
3167 ctx.dir = dir;
3168 ctx.name = name;
3169 ctx.found_idx = -1;
3170
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003171 ret = iterate_inode_ref(root, path, key, 0, __find_iref, &ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02003172 if (ret < 0)
3173 return ret;
3174
3175 if (ctx.found_idx == -1)
3176 return -ENOENT;
3177
3178 return ctx.found_idx;
3179}
3180
3181static int __record_changed_new_ref(int num, u64 dir, int index,
3182 struct fs_path *name,
3183 void *ctx)
3184{
3185 int ret;
3186 struct send_ctx *sctx = ctx;
3187
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003188 ret = find_iref(sctx->parent_root, sctx->right_path,
Alexander Block31db9f72012-07-25 23:19:24 +02003189 sctx->cmp_key, dir, name);
3190 if (ret == -ENOENT)
3191 ret = __record_new_ref(num, dir, index, name, sctx);
3192 else if (ret > 0)
3193 ret = 0;
3194
3195 return ret;
3196}
3197
3198static int __record_changed_deleted_ref(int num, u64 dir, int index,
3199 struct fs_path *name,
3200 void *ctx)
3201{
3202 int ret;
3203 struct send_ctx *sctx = ctx;
3204
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003205 ret = find_iref(sctx->send_root, sctx->left_path, sctx->cmp_key,
Alexander Block31db9f72012-07-25 23:19:24 +02003206 dir, name);
3207 if (ret == -ENOENT)
3208 ret = __record_deleted_ref(num, dir, index, name, sctx);
3209 else if (ret > 0)
3210 ret = 0;
3211
3212 return ret;
3213}
3214
3215static int record_changed_ref(struct send_ctx *sctx)
3216{
3217 int ret = 0;
3218
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003219 ret = iterate_inode_ref(sctx->send_root, sctx->left_path,
Alexander Block31db9f72012-07-25 23:19:24 +02003220 sctx->cmp_key, 0, __record_changed_new_ref, sctx);
3221 if (ret < 0)
3222 goto out;
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003223 ret = iterate_inode_ref(sctx->parent_root, sctx->right_path,
Alexander Block31db9f72012-07-25 23:19:24 +02003224 sctx->cmp_key, 0, __record_changed_deleted_ref, sctx);
3225 if (ret < 0)
3226 goto out;
3227 ret = 0;
3228
3229out:
3230 return ret;
3231}
3232
3233/*
3234 * Record and process all refs at once. Needed when an inode changes the
3235 * generation number, which means that it was deleted and recreated.
3236 */
3237static int process_all_refs(struct send_ctx *sctx,
3238 enum btrfs_compare_tree_result cmd)
3239{
3240 int ret;
3241 struct btrfs_root *root;
3242 struct btrfs_path *path;
3243 struct btrfs_key key;
3244 struct btrfs_key found_key;
3245 struct extent_buffer *eb;
3246 int slot;
3247 iterate_inode_ref_t cb;
3248
3249 path = alloc_path_for_send();
3250 if (!path)
3251 return -ENOMEM;
3252
3253 if (cmd == BTRFS_COMPARE_TREE_NEW) {
3254 root = sctx->send_root;
3255 cb = __record_new_ref;
3256 } else if (cmd == BTRFS_COMPARE_TREE_DELETED) {
3257 root = sctx->parent_root;
3258 cb = __record_deleted_ref;
3259 } else {
3260 BUG();
3261 }
3262
3263 key.objectid = sctx->cmp_key->objectid;
3264 key.type = BTRFS_INODE_REF_KEY;
3265 key.offset = 0;
3266 while (1) {
3267 ret = btrfs_search_slot_for_read(root, &key, path, 1, 0);
Alexander Blocke938c8a2012-07-28 16:33:49 +02003268 if (ret < 0)
Alexander Block31db9f72012-07-25 23:19:24 +02003269 goto out;
Alexander Blocke938c8a2012-07-28 16:33:49 +02003270 if (ret)
Alexander Block31db9f72012-07-25 23:19:24 +02003271 break;
Alexander Block31db9f72012-07-25 23:19:24 +02003272
3273 eb = path->nodes[0];
3274 slot = path->slots[0];
3275 btrfs_item_key_to_cpu(eb, &found_key, slot);
3276
3277 if (found_key.objectid != key.objectid ||
Jan Schmidt96b5bd72012-10-15 08:30:45 +00003278 (found_key.type != BTRFS_INODE_REF_KEY &&
3279 found_key.type != BTRFS_INODE_EXTREF_KEY))
Alexander Block31db9f72012-07-25 23:19:24 +02003280 break;
Alexander Block31db9f72012-07-25 23:19:24 +02003281
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003282 ret = iterate_inode_ref(root, path, &found_key, 0, cb, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02003283 btrfs_release_path(path);
3284 if (ret < 0)
3285 goto out;
3286
3287 key.offset = found_key.offset + 1;
3288 }
Alexander Blocke938c8a2012-07-28 16:33:49 +02003289 btrfs_release_path(path);
Alexander Block31db9f72012-07-25 23:19:24 +02003290
3291 ret = process_recorded_refs(sctx);
3292
3293out:
3294 btrfs_free_path(path);
3295 return ret;
3296}
3297
3298static int send_set_xattr(struct send_ctx *sctx,
3299 struct fs_path *path,
3300 const char *name, int name_len,
3301 const char *data, int data_len)
3302{
3303 int ret = 0;
3304
3305 ret = begin_cmd(sctx, BTRFS_SEND_C_SET_XATTR);
3306 if (ret < 0)
3307 goto out;
3308
3309 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
3310 TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len);
3311 TLV_PUT(sctx, BTRFS_SEND_A_XATTR_DATA, data, data_len);
3312
3313 ret = send_cmd(sctx);
3314
3315tlv_put_failure:
3316out:
3317 return ret;
3318}
3319
3320static int send_remove_xattr(struct send_ctx *sctx,
3321 struct fs_path *path,
3322 const char *name, int name_len)
3323{
3324 int ret = 0;
3325
3326 ret = begin_cmd(sctx, BTRFS_SEND_C_REMOVE_XATTR);
3327 if (ret < 0)
3328 goto out;
3329
3330 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, path);
3331 TLV_PUT_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, name, name_len);
3332
3333 ret = send_cmd(sctx);
3334
3335tlv_put_failure:
3336out:
3337 return ret;
3338}
3339
3340static int __process_new_xattr(int num, struct btrfs_key *di_key,
3341 const char *name, int name_len,
3342 const char *data, int data_len,
3343 u8 type, void *ctx)
3344{
3345 int ret;
3346 struct send_ctx *sctx = ctx;
3347 struct fs_path *p;
3348 posix_acl_xattr_header dummy_acl;
3349
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003350 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003351 if (!p)
3352 return -ENOMEM;
3353
3354 /*
3355 * This hack is needed because empty acl's are stored as zero byte
3356 * data in xattrs. Problem with that is, that receiving these zero byte
3357 * acl's will fail later. To fix this, we send a dummy acl list that
3358 * only contains the version number and no entries.
3359 */
3360 if (!strncmp(name, XATTR_NAME_POSIX_ACL_ACCESS, name_len) ||
3361 !strncmp(name, XATTR_NAME_POSIX_ACL_DEFAULT, name_len)) {
3362 if (data_len == 0) {
3363 dummy_acl.a_version =
3364 cpu_to_le32(POSIX_ACL_XATTR_VERSION);
3365 data = (char *)&dummy_acl;
3366 data_len = sizeof(dummy_acl);
3367 }
3368 }
3369
3370 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
3371 if (ret < 0)
3372 goto out;
3373
3374 ret = send_set_xattr(sctx, p, name, name_len, data, data_len);
3375
3376out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003377 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02003378 return ret;
3379}
3380
3381static int __process_deleted_xattr(int num, struct btrfs_key *di_key,
3382 const char *name, int name_len,
3383 const char *data, int data_len,
3384 u8 type, void *ctx)
3385{
3386 int ret;
3387 struct send_ctx *sctx = ctx;
3388 struct fs_path *p;
3389
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003390 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003391 if (!p)
3392 return -ENOMEM;
3393
3394 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
3395 if (ret < 0)
3396 goto out;
3397
3398 ret = send_remove_xattr(sctx, p, name, name_len);
3399
3400out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003401 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02003402 return ret;
3403}
3404
3405static int process_new_xattr(struct send_ctx *sctx)
3406{
3407 int ret = 0;
3408
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003409 ret = iterate_dir_item(sctx->send_root, sctx->left_path,
3410 sctx->cmp_key, __process_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02003411
3412 return ret;
3413}
3414
3415static int process_deleted_xattr(struct send_ctx *sctx)
3416{
3417 int ret;
3418
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003419 ret = iterate_dir_item(sctx->parent_root, sctx->right_path,
3420 sctx->cmp_key, __process_deleted_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02003421
3422 return ret;
3423}
3424
3425struct find_xattr_ctx {
3426 const char *name;
3427 int name_len;
3428 int found_idx;
3429 char *found_data;
3430 int found_data_len;
3431};
3432
3433static int __find_xattr(int num, struct btrfs_key *di_key,
3434 const char *name, int name_len,
3435 const char *data, int data_len,
3436 u8 type, void *vctx)
3437{
3438 struct find_xattr_ctx *ctx = vctx;
3439
3440 if (name_len == ctx->name_len &&
3441 strncmp(name, ctx->name, name_len) == 0) {
3442 ctx->found_idx = num;
3443 ctx->found_data_len = data_len;
Thomas Meyera5959bc2013-06-01 09:37:50 +00003444 ctx->found_data = kmemdup(data, data_len, GFP_NOFS);
Alexander Block31db9f72012-07-25 23:19:24 +02003445 if (!ctx->found_data)
3446 return -ENOMEM;
Alexander Block31db9f72012-07-25 23:19:24 +02003447 return 1;
3448 }
3449 return 0;
3450}
3451
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003452static int find_xattr(struct btrfs_root *root,
Alexander Block31db9f72012-07-25 23:19:24 +02003453 struct btrfs_path *path,
3454 struct btrfs_key *key,
3455 const char *name, int name_len,
3456 char **data, int *data_len)
3457{
3458 int ret;
3459 struct find_xattr_ctx ctx;
3460
3461 ctx.name = name;
3462 ctx.name_len = name_len;
3463 ctx.found_idx = -1;
3464 ctx.found_data = NULL;
3465 ctx.found_data_len = 0;
3466
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003467 ret = iterate_dir_item(root, path, key, __find_xattr, &ctx);
Alexander Block31db9f72012-07-25 23:19:24 +02003468 if (ret < 0)
3469 return ret;
3470
3471 if (ctx.found_idx == -1)
3472 return -ENOENT;
3473 if (data) {
3474 *data = ctx.found_data;
3475 *data_len = ctx.found_data_len;
3476 } else {
3477 kfree(ctx.found_data);
3478 }
3479 return ctx.found_idx;
3480}
3481
3482
3483static int __process_changed_new_xattr(int num, struct btrfs_key *di_key,
3484 const char *name, int name_len,
3485 const char *data, int data_len,
3486 u8 type, void *ctx)
3487{
3488 int ret;
3489 struct send_ctx *sctx = ctx;
3490 char *found_data = NULL;
3491 int found_data_len = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02003492
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003493 ret = find_xattr(sctx->parent_root, sctx->right_path,
3494 sctx->cmp_key, name, name_len, &found_data,
3495 &found_data_len);
Alexander Block31db9f72012-07-25 23:19:24 +02003496 if (ret == -ENOENT) {
3497 ret = __process_new_xattr(num, di_key, name, name_len, data,
3498 data_len, type, ctx);
3499 } else if (ret >= 0) {
3500 if (data_len != found_data_len ||
3501 memcmp(data, found_data, data_len)) {
3502 ret = __process_new_xattr(num, di_key, name, name_len,
3503 data, data_len, type, ctx);
3504 } else {
3505 ret = 0;
3506 }
3507 }
3508
3509 kfree(found_data);
Alexander Block31db9f72012-07-25 23:19:24 +02003510 return ret;
3511}
3512
3513static int __process_changed_deleted_xattr(int num, struct btrfs_key *di_key,
3514 const char *name, int name_len,
3515 const char *data, int data_len,
3516 u8 type, void *ctx)
3517{
3518 int ret;
3519 struct send_ctx *sctx = ctx;
3520
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003521 ret = find_xattr(sctx->send_root, sctx->left_path, sctx->cmp_key,
3522 name, name_len, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02003523 if (ret == -ENOENT)
3524 ret = __process_deleted_xattr(num, di_key, name, name_len, data,
3525 data_len, type, ctx);
3526 else if (ret >= 0)
3527 ret = 0;
3528
3529 return ret;
3530}
3531
3532static int process_changed_xattr(struct send_ctx *sctx)
3533{
3534 int ret = 0;
3535
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003536 ret = iterate_dir_item(sctx->send_root, sctx->left_path,
Alexander Block31db9f72012-07-25 23:19:24 +02003537 sctx->cmp_key, __process_changed_new_xattr, sctx);
3538 if (ret < 0)
3539 goto out;
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003540 ret = iterate_dir_item(sctx->parent_root, sctx->right_path,
Alexander Block31db9f72012-07-25 23:19:24 +02003541 sctx->cmp_key, __process_changed_deleted_xattr, sctx);
3542
3543out:
3544 return ret;
3545}
3546
3547static int process_all_new_xattrs(struct send_ctx *sctx)
3548{
3549 int ret;
3550 struct btrfs_root *root;
3551 struct btrfs_path *path;
3552 struct btrfs_key key;
3553 struct btrfs_key found_key;
3554 struct extent_buffer *eb;
3555 int slot;
3556
3557 path = alloc_path_for_send();
3558 if (!path)
3559 return -ENOMEM;
3560
3561 root = sctx->send_root;
3562
3563 key.objectid = sctx->cmp_key->objectid;
3564 key.type = BTRFS_XATTR_ITEM_KEY;
3565 key.offset = 0;
3566 while (1) {
3567 ret = btrfs_search_slot_for_read(root, &key, path, 1, 0);
3568 if (ret < 0)
3569 goto out;
3570 if (ret) {
3571 ret = 0;
3572 goto out;
3573 }
3574
3575 eb = path->nodes[0];
3576 slot = path->slots[0];
3577 btrfs_item_key_to_cpu(eb, &found_key, slot);
3578
3579 if (found_key.objectid != key.objectid ||
3580 found_key.type != key.type) {
3581 ret = 0;
3582 goto out;
3583 }
3584
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003585 ret = iterate_dir_item(root, path, &found_key,
3586 __process_new_xattr, sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02003587 if (ret < 0)
3588 goto out;
3589
3590 btrfs_release_path(path);
3591 key.offset = found_key.offset + 1;
3592 }
3593
3594out:
3595 btrfs_free_path(path);
3596 return ret;
3597}
3598
3599/*
3600 * Read some bytes from the current inode/file and send a write command to
3601 * user space.
3602 */
3603static int send_write(struct send_ctx *sctx, u64 offset, u32 len)
3604{
3605 int ret = 0;
3606 struct fs_path *p;
3607 loff_t pos = offset;
Alexander Blocke938c8a2012-07-28 16:33:49 +02003608 int num_read = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02003609 mm_segment_t old_fs;
3610
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003611 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003612 if (!p)
3613 return -ENOMEM;
3614
3615 /*
3616 * vfs normally only accepts user space buffers for security reasons.
3617 * we only read from the file and also only provide the read_buf buffer
3618 * to vfs. As this buffer does not come from a user space call, it's
3619 * ok to temporary allow kernel space buffers.
3620 */
3621 old_fs = get_fs();
3622 set_fs(KERNEL_DS);
3623
3624verbose_printk("btrfs: send_write offset=%llu, len=%d\n", offset, len);
3625
3626 ret = open_cur_inode_file(sctx);
3627 if (ret < 0)
3628 goto out;
3629
3630 ret = vfs_read(sctx->cur_inode_filp, sctx->read_buf, len, &pos);
3631 if (ret < 0)
3632 goto out;
Alexander Blocke938c8a2012-07-28 16:33:49 +02003633 num_read = ret;
3634 if (!num_read)
Alexander Block31db9f72012-07-25 23:19:24 +02003635 goto out;
3636
3637 ret = begin_cmd(sctx, BTRFS_SEND_C_WRITE);
3638 if (ret < 0)
3639 goto out;
3640
3641 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
3642 if (ret < 0)
3643 goto out;
3644
3645 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
3646 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
Alexander Blocke938c8a2012-07-28 16:33:49 +02003647 TLV_PUT(sctx, BTRFS_SEND_A_DATA, sctx->read_buf, num_read);
Alexander Block31db9f72012-07-25 23:19:24 +02003648
3649 ret = send_cmd(sctx);
3650
3651tlv_put_failure:
3652out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003653 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02003654 set_fs(old_fs);
3655 if (ret < 0)
3656 return ret;
Alexander Blocke938c8a2012-07-28 16:33:49 +02003657 return num_read;
Alexander Block31db9f72012-07-25 23:19:24 +02003658}
3659
3660/*
3661 * Send a clone command to user space.
3662 */
3663static int send_clone(struct send_ctx *sctx,
3664 u64 offset, u32 len,
3665 struct clone_root *clone_root)
3666{
3667 int ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02003668 struct fs_path *p;
3669 u64 gen;
3670
3671verbose_printk("btrfs: send_clone offset=%llu, len=%d, clone_root=%llu, "
3672 "clone_inode=%llu, clone_offset=%llu\n", offset, len,
3673 clone_root->root->objectid, clone_root->ino,
3674 clone_root->offset);
3675
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003676 p = fs_path_alloc();
Alexander Block31db9f72012-07-25 23:19:24 +02003677 if (!p)
3678 return -ENOMEM;
3679
3680 ret = begin_cmd(sctx, BTRFS_SEND_C_CLONE);
3681 if (ret < 0)
3682 goto out;
3683
3684 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
3685 if (ret < 0)
3686 goto out;
3687
3688 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
3689 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_LEN, len);
3690 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
3691
Alexander Blocke938c8a2012-07-28 16:33:49 +02003692 if (clone_root->root == sctx->send_root) {
Alexander Block31db9f72012-07-25 23:19:24 +02003693 ret = get_inode_info(sctx->send_root, clone_root->ino, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02003694 &gen, NULL, NULL, NULL, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02003695 if (ret < 0)
3696 goto out;
3697 ret = get_cur_path(sctx, clone_root->ino, gen, p);
3698 } else {
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003699 ret = get_inode_path(clone_root->root, clone_root->ino, p);
Alexander Block31db9f72012-07-25 23:19:24 +02003700 }
3701 if (ret < 0)
3702 goto out;
3703
3704 TLV_PUT_UUID(sctx, BTRFS_SEND_A_CLONE_UUID,
Alexander Blocke938c8a2012-07-28 16:33:49 +02003705 clone_root->root->root_item.uuid);
Alexander Block31db9f72012-07-25 23:19:24 +02003706 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID,
Alexander Blocke938c8a2012-07-28 16:33:49 +02003707 clone_root->root->root_item.ctransid);
Alexander Block31db9f72012-07-25 23:19:24 +02003708 TLV_PUT_PATH(sctx, BTRFS_SEND_A_CLONE_PATH, p);
3709 TLV_PUT_U64(sctx, BTRFS_SEND_A_CLONE_OFFSET,
3710 clone_root->offset);
3711
3712 ret = send_cmd(sctx);
3713
3714tlv_put_failure:
3715out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003716 fs_path_free(p);
Alexander Block31db9f72012-07-25 23:19:24 +02003717 return ret;
3718}
3719
Mark Fashehcb95e7b2013-02-04 20:54:57 +00003720/*
3721 * Send an update extent command to user space.
3722 */
3723static int send_update_extent(struct send_ctx *sctx,
3724 u64 offset, u32 len)
3725{
3726 int ret = 0;
3727 struct fs_path *p;
3728
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003729 p = fs_path_alloc();
Mark Fashehcb95e7b2013-02-04 20:54:57 +00003730 if (!p)
3731 return -ENOMEM;
3732
3733 ret = begin_cmd(sctx, BTRFS_SEND_C_UPDATE_EXTENT);
3734 if (ret < 0)
3735 goto out;
3736
3737 ret = get_cur_path(sctx, sctx->cur_ino, sctx->cur_inode_gen, p);
3738 if (ret < 0)
3739 goto out;
3740
3741 TLV_PUT_PATH(sctx, BTRFS_SEND_A_PATH, p);
3742 TLV_PUT_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, offset);
3743 TLV_PUT_U64(sctx, BTRFS_SEND_A_SIZE, len);
3744
3745 ret = send_cmd(sctx);
3746
3747tlv_put_failure:
3748out:
Tsutomu Itoh924794c2013-05-08 07:51:52 +00003749 fs_path_free(p);
Mark Fashehcb95e7b2013-02-04 20:54:57 +00003750 return ret;
3751}
3752
Alexander Block31db9f72012-07-25 23:19:24 +02003753static int send_write_or_clone(struct send_ctx *sctx,
3754 struct btrfs_path *path,
3755 struct btrfs_key *key,
3756 struct clone_root *clone_root)
3757{
3758 int ret = 0;
3759 struct btrfs_file_extent_item *ei;
3760 u64 offset = key->offset;
3761 u64 pos = 0;
3762 u64 len;
3763 u32 l;
3764 u8 type;
3765
3766 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3767 struct btrfs_file_extent_item);
3768 type = btrfs_file_extent_type(path->nodes[0], ei);
Chris Mason74dd17fb2012-08-07 16:25:13 -04003769 if (type == BTRFS_FILE_EXTENT_INLINE) {
Alexander Block31db9f72012-07-25 23:19:24 +02003770 len = btrfs_file_extent_inline_len(path->nodes[0], ei);
Chris Mason74dd17fb2012-08-07 16:25:13 -04003771 /*
3772 * it is possible the inline item won't cover the whole page,
3773 * but there may be items after this page. Make
3774 * sure to send the whole thing
3775 */
3776 len = PAGE_CACHE_ALIGN(len);
3777 } else {
Alexander Block31db9f72012-07-25 23:19:24 +02003778 len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
Chris Mason74dd17fb2012-08-07 16:25:13 -04003779 }
Alexander Block31db9f72012-07-25 23:19:24 +02003780
3781 if (offset + len > sctx->cur_inode_size)
3782 len = sctx->cur_inode_size - offset;
3783 if (len == 0) {
3784 ret = 0;
3785 goto out;
3786 }
3787
Mark Fashehcb95e7b2013-02-04 20:54:57 +00003788 if (clone_root) {
3789 ret = send_clone(sctx, offset, len, clone_root);
3790 } else if (sctx->flags & BTRFS_SEND_FLAG_NO_FILE_DATA) {
3791 ret = send_update_extent(sctx, offset, len);
3792 } else {
Alexander Block31db9f72012-07-25 23:19:24 +02003793 while (pos < len) {
3794 l = len - pos;
3795 if (l > BTRFS_SEND_READ_SIZE)
3796 l = BTRFS_SEND_READ_SIZE;
3797 ret = send_write(sctx, pos + offset, l);
3798 if (ret < 0)
3799 goto out;
3800 if (!ret)
3801 break;
3802 pos += ret;
3803 }
3804 ret = 0;
Alexander Block31db9f72012-07-25 23:19:24 +02003805 }
Alexander Block31db9f72012-07-25 23:19:24 +02003806out:
3807 return ret;
3808}
3809
3810static int is_extent_unchanged(struct send_ctx *sctx,
3811 struct btrfs_path *left_path,
3812 struct btrfs_key *ekey)
3813{
3814 int ret = 0;
3815 struct btrfs_key key;
3816 struct btrfs_path *path = NULL;
3817 struct extent_buffer *eb;
3818 int slot;
3819 struct btrfs_key found_key;
3820 struct btrfs_file_extent_item *ei;
3821 u64 left_disknr;
3822 u64 right_disknr;
3823 u64 left_offset;
3824 u64 right_offset;
3825 u64 left_offset_fixed;
3826 u64 left_len;
3827 u64 right_len;
Chris Mason74dd17fb2012-08-07 16:25:13 -04003828 u64 left_gen;
3829 u64 right_gen;
Alexander Block31db9f72012-07-25 23:19:24 +02003830 u8 left_type;
3831 u8 right_type;
3832
3833 path = alloc_path_for_send();
3834 if (!path)
3835 return -ENOMEM;
3836
3837 eb = left_path->nodes[0];
3838 slot = left_path->slots[0];
Alexander Block31db9f72012-07-25 23:19:24 +02003839 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
3840 left_type = btrfs_file_extent_type(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02003841
3842 if (left_type != BTRFS_FILE_EXTENT_REG) {
3843 ret = 0;
3844 goto out;
3845 }
Chris Mason74dd17fb2012-08-07 16:25:13 -04003846 left_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
3847 left_len = btrfs_file_extent_num_bytes(eb, ei);
3848 left_offset = btrfs_file_extent_offset(eb, ei);
3849 left_gen = btrfs_file_extent_generation(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02003850
3851 /*
3852 * Following comments will refer to these graphics. L is the left
3853 * extents which we are checking at the moment. 1-8 are the right
3854 * extents that we iterate.
3855 *
3856 * |-----L-----|
3857 * |-1-|-2a-|-3-|-4-|-5-|-6-|
3858 *
3859 * |-----L-----|
3860 * |--1--|-2b-|...(same as above)
3861 *
3862 * Alternative situation. Happens on files where extents got split.
3863 * |-----L-----|
3864 * |-----------7-----------|-6-|
3865 *
3866 * Alternative situation. Happens on files which got larger.
3867 * |-----L-----|
3868 * |-8-|
3869 * Nothing follows after 8.
3870 */
3871
3872 key.objectid = ekey->objectid;
3873 key.type = BTRFS_EXTENT_DATA_KEY;
3874 key.offset = ekey->offset;
3875 ret = btrfs_search_slot_for_read(sctx->parent_root, &key, path, 0, 0);
3876 if (ret < 0)
3877 goto out;
3878 if (ret) {
3879 ret = 0;
3880 goto out;
3881 }
3882
3883 /*
3884 * Handle special case where the right side has no extents at all.
3885 */
3886 eb = path->nodes[0];
3887 slot = path->slots[0];
3888 btrfs_item_key_to_cpu(eb, &found_key, slot);
3889 if (found_key.objectid != key.objectid ||
3890 found_key.type != key.type) {
3891 ret = 0;
3892 goto out;
3893 }
3894
3895 /*
3896 * We're now on 2a, 2b or 7.
3897 */
3898 key = found_key;
3899 while (key.offset < ekey->offset + left_len) {
3900 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
3901 right_type = btrfs_file_extent_type(eb, ei);
3902 right_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
3903 right_len = btrfs_file_extent_num_bytes(eb, ei);
3904 right_offset = btrfs_file_extent_offset(eb, ei);
Chris Mason74dd17fb2012-08-07 16:25:13 -04003905 right_gen = btrfs_file_extent_generation(eb, ei);
Alexander Block31db9f72012-07-25 23:19:24 +02003906
3907 if (right_type != BTRFS_FILE_EXTENT_REG) {
3908 ret = 0;
3909 goto out;
3910 }
3911
3912 /*
3913 * Are we at extent 8? If yes, we know the extent is changed.
3914 * This may only happen on the first iteration.
3915 */
Alexander Blockd8347fa2012-08-01 12:49:15 +02003916 if (found_key.offset + right_len <= ekey->offset) {
Alexander Block31db9f72012-07-25 23:19:24 +02003917 ret = 0;
3918 goto out;
3919 }
3920
3921 left_offset_fixed = left_offset;
3922 if (key.offset < ekey->offset) {
3923 /* Fix the right offset for 2a and 7. */
3924 right_offset += ekey->offset - key.offset;
3925 } else {
3926 /* Fix the left offset for all behind 2a and 2b */
3927 left_offset_fixed += key.offset - ekey->offset;
3928 }
3929
3930 /*
3931 * Check if we have the same extent.
3932 */
Alexander Block39540962012-08-01 12:46:05 +02003933 if (left_disknr != right_disknr ||
Chris Mason74dd17fb2012-08-07 16:25:13 -04003934 left_offset_fixed != right_offset ||
3935 left_gen != right_gen) {
Alexander Block31db9f72012-07-25 23:19:24 +02003936 ret = 0;
3937 goto out;
3938 }
3939
3940 /*
3941 * Go to the next extent.
3942 */
3943 ret = btrfs_next_item(sctx->parent_root, path);
3944 if (ret < 0)
3945 goto out;
3946 if (!ret) {
3947 eb = path->nodes[0];
3948 slot = path->slots[0];
3949 btrfs_item_key_to_cpu(eb, &found_key, slot);
3950 }
3951 if (ret || found_key.objectid != key.objectid ||
3952 found_key.type != key.type) {
3953 key.offset += right_len;
3954 break;
Jan Schmidtadaa4b82013-03-21 14:30:23 +00003955 }
3956 if (found_key.offset != key.offset + right_len) {
3957 ret = 0;
3958 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02003959 }
3960 key = found_key;
3961 }
3962
3963 /*
3964 * We're now behind the left extent (treat as unchanged) or at the end
3965 * of the right side (treat as changed).
3966 */
3967 if (key.offset >= ekey->offset + left_len)
3968 ret = 1;
3969 else
3970 ret = 0;
3971
3972
3973out:
3974 btrfs_free_path(path);
3975 return ret;
3976}
3977
3978static int process_extent(struct send_ctx *sctx,
3979 struct btrfs_path *path,
3980 struct btrfs_key *key)
3981{
3982 int ret = 0;
3983 struct clone_root *found_clone = NULL;
3984
3985 if (S_ISLNK(sctx->cur_inode_mode))
3986 return 0;
3987
3988 if (sctx->parent_root && !sctx->cur_inode_new) {
3989 ret = is_extent_unchanged(sctx, path, key);
3990 if (ret < 0)
3991 goto out;
3992 if (ret) {
3993 ret = 0;
3994 goto out;
3995 }
3996 }
3997
3998 ret = find_extent_clone(sctx, path, key->objectid, key->offset,
3999 sctx->cur_inode_size, &found_clone);
4000 if (ret != -ENOENT && ret < 0)
4001 goto out;
4002
4003 ret = send_write_or_clone(sctx, path, key, found_clone);
4004
4005out:
4006 return ret;
4007}
4008
4009static int process_all_extents(struct send_ctx *sctx)
4010{
4011 int ret;
4012 struct btrfs_root *root;
4013 struct btrfs_path *path;
4014 struct btrfs_key key;
4015 struct btrfs_key found_key;
4016 struct extent_buffer *eb;
4017 int slot;
4018
4019 root = sctx->send_root;
4020 path = alloc_path_for_send();
4021 if (!path)
4022 return -ENOMEM;
4023
4024 key.objectid = sctx->cmp_key->objectid;
4025 key.type = BTRFS_EXTENT_DATA_KEY;
4026 key.offset = 0;
4027 while (1) {
4028 ret = btrfs_search_slot_for_read(root, &key, path, 1, 0);
4029 if (ret < 0)
4030 goto out;
4031 if (ret) {
4032 ret = 0;
4033 goto out;
4034 }
4035
4036 eb = path->nodes[0];
4037 slot = path->slots[0];
4038 btrfs_item_key_to_cpu(eb, &found_key, slot);
4039
4040 if (found_key.objectid != key.objectid ||
4041 found_key.type != key.type) {
4042 ret = 0;
4043 goto out;
4044 }
4045
4046 ret = process_extent(sctx, path, &found_key);
4047 if (ret < 0)
4048 goto out;
4049
4050 btrfs_release_path(path);
4051 key.offset = found_key.offset + 1;
4052 }
4053
4054out:
4055 btrfs_free_path(path);
4056 return ret;
4057}
4058
4059static int process_recorded_refs_if_needed(struct send_ctx *sctx, int at_end)
4060{
4061 int ret = 0;
4062
4063 if (sctx->cur_ino == 0)
4064 goto out;
4065 if (!at_end && sctx->cur_ino == sctx->cmp_key->objectid &&
Jan Schmidt96b5bd72012-10-15 08:30:45 +00004066 sctx->cmp_key->type <= BTRFS_INODE_EXTREF_KEY)
Alexander Block31db9f72012-07-25 23:19:24 +02004067 goto out;
4068 if (list_empty(&sctx->new_refs) && list_empty(&sctx->deleted_refs))
4069 goto out;
4070
4071 ret = process_recorded_refs(sctx);
Alexander Blocke479d9b2012-07-28 16:09:35 +02004072 if (ret < 0)
4073 goto out;
4074
4075 /*
4076 * We have processed the refs and thus need to advance send_progress.
4077 * Now, calls to get_cur_xxx will take the updated refs of the current
4078 * inode into account.
4079 */
4080 sctx->send_progress = sctx->cur_ino + 1;
Alexander Block31db9f72012-07-25 23:19:24 +02004081
4082out:
4083 return ret;
4084}
4085
4086static int finish_inode_if_needed(struct send_ctx *sctx, int at_end)
4087{
4088 int ret = 0;
4089 u64 left_mode;
4090 u64 left_uid;
4091 u64 left_gid;
4092 u64 right_mode;
4093 u64 right_uid;
4094 u64 right_gid;
4095 int need_chmod = 0;
4096 int need_chown = 0;
4097
4098 ret = process_recorded_refs_if_needed(sctx, at_end);
4099 if (ret < 0)
4100 goto out;
4101
4102 if (sctx->cur_ino == 0 || sctx->cur_inode_deleted)
4103 goto out;
4104 if (!at_end && sctx->cmp_key->objectid == sctx->cur_ino)
4105 goto out;
4106
4107 ret = get_inode_info(sctx->send_root, sctx->cur_ino, NULL, NULL,
Alexander Block85a7b332012-07-26 23:39:10 +02004108 &left_mode, &left_uid, &left_gid, NULL);
Alexander Block31db9f72012-07-25 23:19:24 +02004109 if (ret < 0)
4110 goto out;
4111
Alex Lyakase2d044f2012-10-17 13:52:47 +00004112 if (!sctx->parent_root || sctx->cur_inode_new) {
4113 need_chown = 1;
4114 if (!S_ISLNK(sctx->cur_inode_mode))
Alexander Block31db9f72012-07-25 23:19:24 +02004115 need_chmod = 1;
Alex Lyakase2d044f2012-10-17 13:52:47 +00004116 } else {
4117 ret = get_inode_info(sctx->parent_root, sctx->cur_ino,
4118 NULL, NULL, &right_mode, &right_uid,
4119 &right_gid, NULL);
4120 if (ret < 0)
4121 goto out;
Alexander Block31db9f72012-07-25 23:19:24 +02004122
Alex Lyakase2d044f2012-10-17 13:52:47 +00004123 if (left_uid != right_uid || left_gid != right_gid)
4124 need_chown = 1;
4125 if (!S_ISLNK(sctx->cur_inode_mode) && left_mode != right_mode)
4126 need_chmod = 1;
Alexander Block31db9f72012-07-25 23:19:24 +02004127 }
4128
4129 if (S_ISREG(sctx->cur_inode_mode)) {
4130 ret = send_truncate(sctx, sctx->cur_ino, sctx->cur_inode_gen,
4131 sctx->cur_inode_size);
4132 if (ret < 0)
4133 goto out;
4134 }
4135
4136 if (need_chown) {
4137 ret = send_chown(sctx, sctx->cur_ino, sctx->cur_inode_gen,
4138 left_uid, left_gid);
4139 if (ret < 0)
4140 goto out;
4141 }
4142 if (need_chmod) {
4143 ret = send_chmod(sctx, sctx->cur_ino, sctx->cur_inode_gen,
4144 left_mode);
4145 if (ret < 0)
4146 goto out;
4147 }
4148
4149 /*
4150 * Need to send that every time, no matter if it actually changed
4151 * between the two trees as we have done changes to the inode before.
4152 */
4153 ret = send_utimes(sctx, sctx->cur_ino, sctx->cur_inode_gen);
4154 if (ret < 0)
4155 goto out;
4156
4157out:
4158 return ret;
4159}
4160
4161static int changed_inode(struct send_ctx *sctx,
4162 enum btrfs_compare_tree_result result)
4163{
4164 int ret = 0;
4165 struct btrfs_key *key = sctx->cmp_key;
4166 struct btrfs_inode_item *left_ii = NULL;
4167 struct btrfs_inode_item *right_ii = NULL;
4168 u64 left_gen = 0;
4169 u64 right_gen = 0;
4170
4171 ret = close_cur_inode_file(sctx);
4172 if (ret < 0)
4173 goto out;
4174
4175 sctx->cur_ino = key->objectid;
4176 sctx->cur_inode_new_gen = 0;
Alexander Blocke479d9b2012-07-28 16:09:35 +02004177
4178 /*
4179 * Set send_progress to current inode. This will tell all get_cur_xxx
4180 * functions that the current inode's refs are not updated yet. Later,
4181 * when process_recorded_refs is finished, it is set to cur_ino + 1.
4182 */
Alexander Block31db9f72012-07-25 23:19:24 +02004183 sctx->send_progress = sctx->cur_ino;
4184
4185 if (result == BTRFS_COMPARE_TREE_NEW ||
4186 result == BTRFS_COMPARE_TREE_CHANGED) {
4187 left_ii = btrfs_item_ptr(sctx->left_path->nodes[0],
4188 sctx->left_path->slots[0],
4189 struct btrfs_inode_item);
4190 left_gen = btrfs_inode_generation(sctx->left_path->nodes[0],
4191 left_ii);
4192 } else {
4193 right_ii = btrfs_item_ptr(sctx->right_path->nodes[0],
4194 sctx->right_path->slots[0],
4195 struct btrfs_inode_item);
4196 right_gen = btrfs_inode_generation(sctx->right_path->nodes[0],
4197 right_ii);
4198 }
4199 if (result == BTRFS_COMPARE_TREE_CHANGED) {
4200 right_ii = btrfs_item_ptr(sctx->right_path->nodes[0],
4201 sctx->right_path->slots[0],
4202 struct btrfs_inode_item);
4203
4204 right_gen = btrfs_inode_generation(sctx->right_path->nodes[0],
4205 right_ii);
Alexander Block6d85ed02012-08-01 14:48:59 +02004206
4207 /*
4208 * The cur_ino = root dir case is special here. We can't treat
4209 * the inode as deleted+reused because it would generate a
4210 * stream that tries to delete/mkdir the root dir.
4211 */
4212 if (left_gen != right_gen &&
4213 sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID)
Alexander Block31db9f72012-07-25 23:19:24 +02004214 sctx->cur_inode_new_gen = 1;
4215 }
4216
4217 if (result == BTRFS_COMPARE_TREE_NEW) {
4218 sctx->cur_inode_gen = left_gen;
4219 sctx->cur_inode_new = 1;
4220 sctx->cur_inode_deleted = 0;
4221 sctx->cur_inode_size = btrfs_inode_size(
4222 sctx->left_path->nodes[0], left_ii);
4223 sctx->cur_inode_mode = btrfs_inode_mode(
4224 sctx->left_path->nodes[0], left_ii);
4225 if (sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID)
Alexander Block1f4692d2012-07-28 10:42:24 +02004226 ret = send_create_inode_if_needed(sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004227 } else if (result == BTRFS_COMPARE_TREE_DELETED) {
4228 sctx->cur_inode_gen = right_gen;
4229 sctx->cur_inode_new = 0;
4230 sctx->cur_inode_deleted = 1;
4231 sctx->cur_inode_size = btrfs_inode_size(
4232 sctx->right_path->nodes[0], right_ii);
4233 sctx->cur_inode_mode = btrfs_inode_mode(
4234 sctx->right_path->nodes[0], right_ii);
4235 } else if (result == BTRFS_COMPARE_TREE_CHANGED) {
Alexander Block766702e2012-07-28 14:11:31 +02004236 /*
4237 * We need to do some special handling in case the inode was
4238 * reported as changed with a changed generation number. This
4239 * means that the original inode was deleted and new inode
4240 * reused the same inum. So we have to treat the old inode as
4241 * deleted and the new one as new.
4242 */
Alexander Block31db9f72012-07-25 23:19:24 +02004243 if (sctx->cur_inode_new_gen) {
Alexander Block766702e2012-07-28 14:11:31 +02004244 /*
4245 * First, process the inode as if it was deleted.
4246 */
Alexander Block31db9f72012-07-25 23:19:24 +02004247 sctx->cur_inode_gen = right_gen;
4248 sctx->cur_inode_new = 0;
4249 sctx->cur_inode_deleted = 1;
4250 sctx->cur_inode_size = btrfs_inode_size(
4251 sctx->right_path->nodes[0], right_ii);
4252 sctx->cur_inode_mode = btrfs_inode_mode(
4253 sctx->right_path->nodes[0], right_ii);
4254 ret = process_all_refs(sctx,
4255 BTRFS_COMPARE_TREE_DELETED);
4256 if (ret < 0)
4257 goto out;
4258
Alexander Block766702e2012-07-28 14:11:31 +02004259 /*
4260 * Now process the inode as if it was new.
4261 */
Alexander Block31db9f72012-07-25 23:19:24 +02004262 sctx->cur_inode_gen = left_gen;
4263 sctx->cur_inode_new = 1;
4264 sctx->cur_inode_deleted = 0;
4265 sctx->cur_inode_size = btrfs_inode_size(
4266 sctx->left_path->nodes[0], left_ii);
4267 sctx->cur_inode_mode = btrfs_inode_mode(
4268 sctx->left_path->nodes[0], left_ii);
Alexander Block1f4692d2012-07-28 10:42:24 +02004269 ret = send_create_inode_if_needed(sctx);
Alexander Block31db9f72012-07-25 23:19:24 +02004270 if (ret < 0)
4271 goto out;
4272
4273 ret = process_all_refs(sctx, BTRFS_COMPARE_TREE_NEW);
4274 if (ret < 0)
4275 goto out;
Alexander Blocke479d9b2012-07-28 16:09:35 +02004276 /*
4277 * Advance send_progress now as we did not get into
4278 * process_recorded_refs_if_needed in the new_gen case.
4279 */
4280 sctx->send_progress = sctx->cur_ino + 1;
Alexander Block766702e2012-07-28 14:11:31 +02004281
4282 /*
4283 * Now process all extents and xattrs of the inode as if
4284 * they were all new.
4285 */
Alexander Block31db9f72012-07-25 23:19:24 +02004286 ret = process_all_extents(sctx);
4287 if (ret < 0)
4288 goto out;
4289 ret = process_all_new_xattrs(sctx);
4290 if (ret < 0)
4291 goto out;
4292 } else {
4293 sctx->cur_inode_gen = left_gen;
4294 sctx->cur_inode_new = 0;
4295 sctx->cur_inode_new_gen = 0;
4296 sctx->cur_inode_deleted = 0;
4297 sctx->cur_inode_size = btrfs_inode_size(
4298 sctx->left_path->nodes[0], left_ii);
4299 sctx->cur_inode_mode = btrfs_inode_mode(
4300 sctx->left_path->nodes[0], left_ii);
4301 }
4302 }
4303
4304out:
4305 return ret;
4306}
4307
Alexander Block766702e2012-07-28 14:11:31 +02004308/*
4309 * We have to process new refs before deleted refs, but compare_trees gives us
4310 * the new and deleted refs mixed. To fix this, we record the new/deleted refs
4311 * first and later process them in process_recorded_refs.
4312 * For the cur_inode_new_gen case, we skip recording completely because
4313 * changed_inode did already initiate processing of refs. The reason for this is
4314 * that in this case, compare_tree actually compares the refs of 2 different
4315 * inodes. To fix this, process_all_refs is used in changed_inode to handle all
4316 * refs of the right tree as deleted and all refs of the left tree as new.
4317 */
Alexander Block31db9f72012-07-25 23:19:24 +02004318static int changed_ref(struct send_ctx *sctx,
4319 enum btrfs_compare_tree_result result)
4320{
4321 int ret = 0;
4322
4323 BUG_ON(sctx->cur_ino != sctx->cmp_key->objectid);
4324
4325 if (!sctx->cur_inode_new_gen &&
4326 sctx->cur_ino != BTRFS_FIRST_FREE_OBJECTID) {
4327 if (result == BTRFS_COMPARE_TREE_NEW)
4328 ret = record_new_ref(sctx);
4329 else if (result == BTRFS_COMPARE_TREE_DELETED)
4330 ret = record_deleted_ref(sctx);
4331 else if (result == BTRFS_COMPARE_TREE_CHANGED)
4332 ret = record_changed_ref(sctx);
4333 }
4334
4335 return ret;
4336}
4337
Alexander Block766702e2012-07-28 14:11:31 +02004338/*
4339 * Process new/deleted/changed xattrs. We skip processing in the
4340 * cur_inode_new_gen case because changed_inode did already initiate processing
4341 * of xattrs. The reason is the same as in changed_ref
4342 */
Alexander Block31db9f72012-07-25 23:19:24 +02004343static int changed_xattr(struct send_ctx *sctx,
4344 enum btrfs_compare_tree_result result)
4345{
4346 int ret = 0;
4347
4348 BUG_ON(sctx->cur_ino != sctx->cmp_key->objectid);
4349
4350 if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) {
4351 if (result == BTRFS_COMPARE_TREE_NEW)
4352 ret = process_new_xattr(sctx);
4353 else if (result == BTRFS_COMPARE_TREE_DELETED)
4354 ret = process_deleted_xattr(sctx);
4355 else if (result == BTRFS_COMPARE_TREE_CHANGED)
4356 ret = process_changed_xattr(sctx);
4357 }
4358
4359 return ret;
4360}
4361
Alexander Block766702e2012-07-28 14:11:31 +02004362/*
4363 * Process new/deleted/changed extents. We skip processing in the
4364 * cur_inode_new_gen case because changed_inode did already initiate processing
4365 * of extents. The reason is the same as in changed_ref
4366 */
Alexander Block31db9f72012-07-25 23:19:24 +02004367static int changed_extent(struct send_ctx *sctx,
4368 enum btrfs_compare_tree_result result)
4369{
4370 int ret = 0;
4371
4372 BUG_ON(sctx->cur_ino != sctx->cmp_key->objectid);
4373
4374 if (!sctx->cur_inode_new_gen && !sctx->cur_inode_deleted) {
4375 if (result != BTRFS_COMPARE_TREE_DELETED)
4376 ret = process_extent(sctx, sctx->left_path,
4377 sctx->cmp_key);
4378 }
4379
4380 return ret;
4381}
4382
Alexander Block766702e2012-07-28 14:11:31 +02004383/*
4384 * Updates compare related fields in sctx and simply forwards to the actual
4385 * changed_xxx functions.
4386 */
Alexander Block31db9f72012-07-25 23:19:24 +02004387static int changed_cb(struct btrfs_root *left_root,
4388 struct btrfs_root *right_root,
4389 struct btrfs_path *left_path,
4390 struct btrfs_path *right_path,
4391 struct btrfs_key *key,
4392 enum btrfs_compare_tree_result result,
4393 void *ctx)
4394{
4395 int ret = 0;
4396 struct send_ctx *sctx = ctx;
4397
4398 sctx->left_path = left_path;
4399 sctx->right_path = right_path;
4400 sctx->cmp_key = key;
4401
4402 ret = finish_inode_if_needed(sctx, 0);
4403 if (ret < 0)
4404 goto out;
4405
Alexander Block2981e222012-08-01 14:47:03 +02004406 /* Ignore non-FS objects */
4407 if (key->objectid == BTRFS_FREE_INO_OBJECTID ||
4408 key->objectid == BTRFS_FREE_SPACE_OBJECTID)
4409 goto out;
4410
Alexander Block31db9f72012-07-25 23:19:24 +02004411 if (key->type == BTRFS_INODE_ITEM_KEY)
4412 ret = changed_inode(sctx, result);
Jan Schmidt96b5bd72012-10-15 08:30:45 +00004413 else if (key->type == BTRFS_INODE_REF_KEY ||
4414 key->type == BTRFS_INODE_EXTREF_KEY)
Alexander Block31db9f72012-07-25 23:19:24 +02004415 ret = changed_ref(sctx, result);
4416 else if (key->type == BTRFS_XATTR_ITEM_KEY)
4417 ret = changed_xattr(sctx, result);
4418 else if (key->type == BTRFS_EXTENT_DATA_KEY)
4419 ret = changed_extent(sctx, result);
4420
4421out:
4422 return ret;
4423}
4424
4425static int full_send_tree(struct send_ctx *sctx)
4426{
4427 int ret;
4428 struct btrfs_trans_handle *trans = NULL;
4429 struct btrfs_root *send_root = sctx->send_root;
4430 struct btrfs_key key;
4431 struct btrfs_key found_key;
4432 struct btrfs_path *path;
4433 struct extent_buffer *eb;
4434 int slot;
4435 u64 start_ctransid;
4436 u64 ctransid;
4437
4438 path = alloc_path_for_send();
4439 if (!path)
4440 return -ENOMEM;
4441
Anand Jain5f3ab902012-12-07 09:28:54 +00004442 spin_lock(&send_root->root_item_lock);
Alexander Block31db9f72012-07-25 23:19:24 +02004443 start_ctransid = btrfs_root_ctransid(&send_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00004444 spin_unlock(&send_root->root_item_lock);
Alexander Block31db9f72012-07-25 23:19:24 +02004445
4446 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
4447 key.type = BTRFS_INODE_ITEM_KEY;
4448 key.offset = 0;
4449
4450join_trans:
4451 /*
4452 * We need to make sure the transaction does not get committed
4453 * while we do anything on commit roots. Join a transaction to prevent
4454 * this.
4455 */
4456 trans = btrfs_join_transaction(send_root);
4457 if (IS_ERR(trans)) {
4458 ret = PTR_ERR(trans);
4459 trans = NULL;
4460 goto out;
4461 }
4462
4463 /*
Alexander Block766702e2012-07-28 14:11:31 +02004464 * Make sure the tree has not changed after re-joining. We detect this
4465 * by comparing start_ctransid and ctransid. They should always match.
Alexander Block31db9f72012-07-25 23:19:24 +02004466 */
Anand Jain5f3ab902012-12-07 09:28:54 +00004467 spin_lock(&send_root->root_item_lock);
Alexander Block31db9f72012-07-25 23:19:24 +02004468 ctransid = btrfs_root_ctransid(&send_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00004469 spin_unlock(&send_root->root_item_lock);
Alexander Block31db9f72012-07-25 23:19:24 +02004470
4471 if (ctransid != start_ctransid) {
4472 WARN(1, KERN_WARNING "btrfs: the root that you're trying to "
4473 "send was modified in between. This is "
4474 "probably a bug.\n");
4475 ret = -EIO;
4476 goto out;
4477 }
4478
4479 ret = btrfs_search_slot_for_read(send_root, &key, path, 1, 0);
4480 if (ret < 0)
4481 goto out;
4482 if (ret)
4483 goto out_finish;
4484
4485 while (1) {
4486 /*
4487 * When someone want to commit while we iterate, end the
4488 * joined transaction and rejoin.
4489 */
4490 if (btrfs_should_end_transaction(trans, send_root)) {
4491 ret = btrfs_end_transaction(trans, send_root);
4492 trans = NULL;
4493 if (ret < 0)
4494 goto out;
4495 btrfs_release_path(path);
4496 goto join_trans;
4497 }
4498
4499 eb = path->nodes[0];
4500 slot = path->slots[0];
4501 btrfs_item_key_to_cpu(eb, &found_key, slot);
4502
4503 ret = changed_cb(send_root, NULL, path, NULL,
4504 &found_key, BTRFS_COMPARE_TREE_NEW, sctx);
4505 if (ret < 0)
4506 goto out;
4507
4508 key.objectid = found_key.objectid;
4509 key.type = found_key.type;
4510 key.offset = found_key.offset + 1;
4511
4512 ret = btrfs_next_item(send_root, path);
4513 if (ret < 0)
4514 goto out;
4515 if (ret) {
4516 ret = 0;
4517 break;
4518 }
4519 }
4520
4521out_finish:
4522 ret = finish_inode_if_needed(sctx, 1);
4523
4524out:
4525 btrfs_free_path(path);
4526 if (trans) {
4527 if (!ret)
4528 ret = btrfs_end_transaction(trans, send_root);
4529 else
4530 btrfs_end_transaction(trans, send_root);
4531 }
4532 return ret;
4533}
4534
4535static int send_subvol(struct send_ctx *sctx)
4536{
4537 int ret;
4538
Stefan Behrensc2c71322013-04-10 17:10:52 +00004539 if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_STREAM_HEADER)) {
4540 ret = send_header(sctx);
4541 if (ret < 0)
4542 goto out;
4543 }
Alexander Block31db9f72012-07-25 23:19:24 +02004544
4545 ret = send_subvol_begin(sctx);
4546 if (ret < 0)
4547 goto out;
4548
4549 if (sctx->parent_root) {
4550 ret = btrfs_compare_trees(sctx->send_root, sctx->parent_root,
4551 changed_cb, sctx);
4552 if (ret < 0)
4553 goto out;
4554 ret = finish_inode_if_needed(sctx, 1);
4555 if (ret < 0)
4556 goto out;
4557 } else {
4558 ret = full_send_tree(sctx);
4559 if (ret < 0)
4560 goto out;
4561 }
4562
4563out:
4564 if (!ret)
4565 ret = close_cur_inode_file(sctx);
4566 else
4567 close_cur_inode_file(sctx);
4568
4569 free_recorded_refs(sctx);
4570 return ret;
4571}
4572
4573long btrfs_ioctl_send(struct file *mnt_file, void __user *arg_)
4574{
4575 int ret = 0;
4576 struct btrfs_root *send_root;
4577 struct btrfs_root *clone_root;
4578 struct btrfs_fs_info *fs_info;
4579 struct btrfs_ioctl_send_args *arg = NULL;
4580 struct btrfs_key key;
Alexander Block31db9f72012-07-25 23:19:24 +02004581 struct send_ctx *sctx = NULL;
4582 u32 i;
4583 u64 *clone_sources_tmp = NULL;
4584
4585 if (!capable(CAP_SYS_ADMIN))
4586 return -EPERM;
4587
Al Viro496ad9a2013-01-23 17:07:38 -05004588 send_root = BTRFS_I(file_inode(mnt_file))->root;
Alexander Block31db9f72012-07-25 23:19:24 +02004589 fs_info = send_root->fs_info;
4590
Josef Bacik139f8072013-05-20 11:26:50 -04004591 /*
4592 * This is done when we lookup the root, it should already be complete
4593 * by the time we get here.
4594 */
4595 WARN_ON(send_root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE);
4596
4597 /*
4598 * If we just created this root we need to make sure that the orphan
4599 * cleanup has been done and committed since we search the commit root,
4600 * so check its commit root transid with our otransid and if they match
4601 * commit the transaction to make sure everything is updated.
4602 */
4603 down_read(&send_root->fs_info->extent_commit_sem);
4604 if (btrfs_header_generation(send_root->commit_root) ==
4605 btrfs_root_otransid(&send_root->root_item)) {
4606 struct btrfs_trans_handle *trans;
4607
4608 up_read(&send_root->fs_info->extent_commit_sem);
4609
4610 trans = btrfs_attach_transaction_barrier(send_root);
4611 if (IS_ERR(trans)) {
4612 if (PTR_ERR(trans) != -ENOENT) {
4613 ret = PTR_ERR(trans);
4614 goto out;
4615 }
4616 /* ENOENT means theres no transaction */
4617 } else {
4618 ret = btrfs_commit_transaction(trans, send_root);
4619 if (ret)
4620 goto out;
4621 }
4622 } else {
4623 up_read(&send_root->fs_info->extent_commit_sem);
4624 }
4625
Alexander Block31db9f72012-07-25 23:19:24 +02004626 arg = memdup_user(arg_, sizeof(*arg));
4627 if (IS_ERR(arg)) {
4628 ret = PTR_ERR(arg);
4629 arg = NULL;
4630 goto out;
4631 }
4632
4633 if (!access_ok(VERIFY_READ, arg->clone_sources,
4634 sizeof(*arg->clone_sources *
4635 arg->clone_sources_count))) {
4636 ret = -EFAULT;
4637 goto out;
4638 }
4639
Stefan Behrensc2c71322013-04-10 17:10:52 +00004640 if (arg->flags & ~BTRFS_SEND_FLAG_MASK) {
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004641 ret = -EINVAL;
4642 goto out;
4643 }
4644
Alexander Block31db9f72012-07-25 23:19:24 +02004645 sctx = kzalloc(sizeof(struct send_ctx), GFP_NOFS);
4646 if (!sctx) {
4647 ret = -ENOMEM;
4648 goto out;
4649 }
4650
4651 INIT_LIST_HEAD(&sctx->new_refs);
4652 INIT_LIST_HEAD(&sctx->deleted_refs);
4653 INIT_RADIX_TREE(&sctx->name_cache, GFP_NOFS);
4654 INIT_LIST_HEAD(&sctx->name_cache_list);
4655
Mark Fashehcb95e7b2013-02-04 20:54:57 +00004656 sctx->flags = arg->flags;
4657
Alexander Block31db9f72012-07-25 23:19:24 +02004658 sctx->send_filp = fget(arg->send_fd);
Tsutomu Itohecc7ada2013-04-19 01:04:46 +00004659 if (!sctx->send_filp) {
4660 ret = -EBADF;
Alexander Block31db9f72012-07-25 23:19:24 +02004661 goto out;
4662 }
4663
4664 sctx->mnt = mnt_file->f_path.mnt;
4665
4666 sctx->send_root = send_root;
4667 sctx->clone_roots_cnt = arg->clone_sources_count;
4668
4669 sctx->send_max_size = BTRFS_SEND_BUF_SIZE;
4670 sctx->send_buf = vmalloc(sctx->send_max_size);
4671 if (!sctx->send_buf) {
4672 ret = -ENOMEM;
4673 goto out;
4674 }
4675
4676 sctx->read_buf = vmalloc(BTRFS_SEND_READ_SIZE);
4677 if (!sctx->read_buf) {
4678 ret = -ENOMEM;
4679 goto out;
4680 }
4681
4682 sctx->clone_roots = vzalloc(sizeof(struct clone_root) *
4683 (arg->clone_sources_count + 1));
4684 if (!sctx->clone_roots) {
4685 ret = -ENOMEM;
4686 goto out;
4687 }
4688
4689 if (arg->clone_sources_count) {
4690 clone_sources_tmp = vmalloc(arg->clone_sources_count *
4691 sizeof(*arg->clone_sources));
4692 if (!clone_sources_tmp) {
4693 ret = -ENOMEM;
4694 goto out;
4695 }
4696
4697 ret = copy_from_user(clone_sources_tmp, arg->clone_sources,
4698 arg->clone_sources_count *
4699 sizeof(*arg->clone_sources));
4700 if (ret) {
4701 ret = -EFAULT;
4702 goto out;
4703 }
4704
4705 for (i = 0; i < arg->clone_sources_count; i++) {
4706 key.objectid = clone_sources_tmp[i];
4707 key.type = BTRFS_ROOT_ITEM_KEY;
4708 key.offset = (u64)-1;
4709 clone_root = btrfs_read_fs_root_no_name(fs_info, &key);
Alexander Block31db9f72012-07-25 23:19:24 +02004710 if (IS_ERR(clone_root)) {
4711 ret = PTR_ERR(clone_root);
4712 goto out;
4713 }
4714 sctx->clone_roots[i].root = clone_root;
4715 }
4716 vfree(clone_sources_tmp);
4717 clone_sources_tmp = NULL;
4718 }
4719
4720 if (arg->parent_root) {
4721 key.objectid = arg->parent_root;
4722 key.type = BTRFS_ROOT_ITEM_KEY;
4723 key.offset = (u64)-1;
4724 sctx->parent_root = btrfs_read_fs_root_no_name(fs_info, &key);
Stefan Behrensb1b19592013-05-13 14:42:57 +00004725 if (IS_ERR(sctx->parent_root)) {
4726 ret = PTR_ERR(sctx->parent_root);
Alexander Block31db9f72012-07-25 23:19:24 +02004727 goto out;
4728 }
4729 }
4730
4731 /*
4732 * Clones from send_root are allowed, but only if the clone source
4733 * is behind the current send position. This is checked while searching
4734 * for possible clone sources.
4735 */
4736 sctx->clone_roots[sctx->clone_roots_cnt++].root = sctx->send_root;
4737
4738 /* We do a bsearch later */
4739 sort(sctx->clone_roots, sctx->clone_roots_cnt,
4740 sizeof(*sctx->clone_roots), __clone_root_cmp_sort,
4741 NULL);
4742
4743 ret = send_subvol(sctx);
4744 if (ret < 0)
4745 goto out;
4746
Stefan Behrensc2c71322013-04-10 17:10:52 +00004747 if (!(sctx->flags & BTRFS_SEND_FLAG_OMIT_END_CMD)) {
4748 ret = begin_cmd(sctx, BTRFS_SEND_C_END);
4749 if (ret < 0)
4750 goto out;
4751 ret = send_cmd(sctx);
4752 if (ret < 0)
4753 goto out;
4754 }
Alexander Block31db9f72012-07-25 23:19:24 +02004755
4756out:
Alexander Block31db9f72012-07-25 23:19:24 +02004757 kfree(arg);
4758 vfree(clone_sources_tmp);
4759
4760 if (sctx) {
4761 if (sctx->send_filp)
4762 fput(sctx->send_filp);
4763
4764 vfree(sctx->clone_roots);
4765 vfree(sctx->send_buf);
4766 vfree(sctx->read_buf);
4767
4768 name_cache_free(sctx);
4769
4770 kfree(sctx);
4771 }
4772
4773 return ret;
4774}