btrfs-progs: receive: use static buffer for write_path
[platform/upstream/btrfs-progs.git] / cmds-receive.c
1 /*
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 "kerncompat.h"
20
21 #include <unistd.h>
22 #include <stdint.h>
23 #include <dirent.h>
24 #include <fcntl.h>
25 #include <pthread.h>
26 #include <math.h>
27 #include <ftw.h>
28 #include <wait.h>
29 #include <assert.h>
30 #include <getopt.h>
31
32 #include <sys/stat.h>
33 #include <sys/types.h>
34 #include <sys/ioctl.h>
35 #include <sys/time.h>
36 #include <sys/types.h>
37 #include <sys/xattr.h>
38 #include <uuid/uuid.h>
39
40 #include "ctree.h"
41 #include "ioctl.h"
42 #include "commands.h"
43 #include "utils.h"
44 #include "list.h"
45 #include "btrfs-list.h"
46
47 #include "send.h"
48 #include "send-stream.h"
49 #include "send-utils.h"
50
51 static int g_verbose = 0;
52
53 struct btrfs_receive
54 {
55         int mnt_fd;
56         int dest_dir_fd;
57
58         int write_fd;
59         char write_path[PATH_MAX];
60
61         char *root_path;
62         char *dest_dir_path; /* relative to root_path */
63         char *full_subvol_path;
64         char *full_root_path;
65         int dest_dir_chroot;
66
67         struct subvol_info cur_subvol;
68
69         struct subvol_uuid_search sus;
70
71         int honor_end_cmd;
72
73         /*
74          * Buffer to store capabilities from security.capabilities xattr,
75          * usually 20 bytes, but make same room for potentially larger
76          * encodings. Must be set only once per file, denoted by length > 0.
77          */
78         char cached_capabilities[64];
79         int cached_capabilities_len;
80 };
81
82 static int finish_subvol(struct btrfs_receive *r)
83 {
84         int ret;
85         int subvol_fd = -1;
86         struct btrfs_ioctl_received_subvol_args rs_args;
87         char uuid_str[BTRFS_UUID_UNPARSED_SIZE];
88         u64 flags;
89
90         if (r->cur_subvol.path == NULL)
91                 return 0;
92
93         subvol_fd = openat(r->mnt_fd, r->cur_subvol.path,
94                         O_RDONLY | O_NOATIME);
95         if (subvol_fd < 0) {
96                 ret = -errno;
97                 fprintf(stderr, "ERROR: open %s failed. %s\n",
98                                 r->cur_subvol.path, strerror(-ret));
99                 goto out;
100         }
101
102         memset(&rs_args, 0, sizeof(rs_args));
103         memcpy(rs_args.uuid, r->cur_subvol.received_uuid, BTRFS_UUID_SIZE);
104         rs_args.stransid = r->cur_subvol.stransid;
105
106         if (g_verbose >= 1) {
107                 uuid_unparse((u8*)rs_args.uuid, uuid_str);
108                 fprintf(stderr, "BTRFS_IOC_SET_RECEIVED_SUBVOL uuid=%s, "
109                                 "stransid=%llu\n", uuid_str, rs_args.stransid);
110         }
111
112         ret = ioctl(subvol_fd, BTRFS_IOC_SET_RECEIVED_SUBVOL, &rs_args);
113         if (ret < 0) {
114                 ret = -errno;
115                 fprintf(stderr, "ERROR: BTRFS_IOC_SET_RECEIVED_SUBVOL failed. %s\n",
116                                 strerror(-ret));
117                 goto out;
118         }
119         r->cur_subvol.rtransid = rs_args.rtransid;
120
121         ret = ioctl(subvol_fd, BTRFS_IOC_SUBVOL_GETFLAGS, &flags);
122         if (ret < 0) {
123                 ret = -errno;
124                 fprintf(stderr, "ERROR: BTRFS_IOC_SUBVOL_GETFLAGS failed. %s\n",
125                                 strerror(-ret));
126                 goto out;
127         }
128
129         flags |= BTRFS_SUBVOL_RDONLY;
130
131         ret = ioctl(subvol_fd, BTRFS_IOC_SUBVOL_SETFLAGS, &flags);
132         if (ret < 0) {
133                 ret = -errno;
134                 fprintf(stderr, "ERROR: failed to make subvolume read only. "
135                                 "%s\n", strerror(-ret));
136                 goto out;
137         }
138
139         ret = 0;
140
141 out:
142         if (r->cur_subvol.path) {
143                 free(r->cur_subvol.path);
144                 r->cur_subvol.path = NULL;
145         }
146         if (subvol_fd != -1)
147                 close(subvol_fd);
148         return ret;
149 }
150
151 static int process_subvol(const char *path, const u8 *uuid, u64 ctransid,
152                           void *user)
153 {
154         int ret;
155         struct btrfs_receive *r = user;
156         struct btrfs_ioctl_vol_args args_v1;
157         char uuid_str[BTRFS_UUID_UNPARSED_SIZE];
158
159         ret = finish_subvol(r);
160         if (ret < 0)
161                 goto out;
162
163         BUG_ON(r->cur_subvol.path);
164
165         if (strlen(r->dest_dir_path) == 0)
166                 r->cur_subvol.path = strdup(path);
167         else
168                 r->cur_subvol.path = path_cat(r->dest_dir_path, path);
169         free(r->full_subvol_path);
170         r->full_subvol_path = path_cat3(r->root_path, r->dest_dir_path, path);
171
172         fprintf(stderr, "At subvol %s\n", path);
173
174         memcpy(r->cur_subvol.received_uuid, uuid, BTRFS_UUID_SIZE);
175         r->cur_subvol.stransid = ctransid;
176
177         if (g_verbose) {
178                 uuid_unparse((u8*)r->cur_subvol.received_uuid, uuid_str);
179                 fprintf(stderr, "receiving subvol %s uuid=%s, stransid=%llu\n",
180                                 path, uuid_str,
181                                 r->cur_subvol.stransid);
182         }
183
184         memset(&args_v1, 0, sizeof(args_v1));
185         strncpy_null(args_v1.name, path);
186         ret = ioctl(r->dest_dir_fd, BTRFS_IOC_SUBVOL_CREATE, &args_v1);
187         if (ret < 0) {
188                 ret = -errno;
189                 fprintf(stderr, "ERROR: creating subvolume %s failed. "
190                                 "%s\n", path, strerror(-ret));
191                 goto out;
192         }
193
194 out:
195         return ret;
196 }
197
198 static int process_snapshot(const char *path, const u8 *uuid, u64 ctransid,
199                             const u8 *parent_uuid, u64 parent_ctransid,
200                             void *user)
201 {
202         int ret;
203         struct btrfs_receive *r = user;
204         char uuid_str[BTRFS_UUID_UNPARSED_SIZE];
205         struct btrfs_ioctl_vol_args_v2 args_v2;
206         struct subvol_info *parent_subvol = NULL;
207
208         ret = finish_subvol(r);
209         if (ret < 0)
210                 goto out;
211
212         BUG_ON(r->cur_subvol.path);
213
214         if (strlen(r->dest_dir_path) == 0)
215                 r->cur_subvol.path = strdup(path);
216         else
217                 r->cur_subvol.path = path_cat(r->dest_dir_path, path);
218         free(r->full_subvol_path);
219         r->full_subvol_path = path_cat3(r->root_path, r->dest_dir_path, path);
220
221         fprintf(stdout, "At snapshot %s\n", path);
222
223         memcpy(r->cur_subvol.received_uuid, uuid, BTRFS_UUID_SIZE);
224         r->cur_subvol.stransid = ctransid;
225
226         if (g_verbose) {
227                 uuid_unparse((u8*)r->cur_subvol.received_uuid, uuid_str);
228                 fprintf(stderr, "receiving snapshot %s uuid=%s, "
229                                 "ctransid=%llu ", path, uuid_str,
230                                 r->cur_subvol.stransid);
231                 uuid_unparse(parent_uuid, uuid_str);
232                 fprintf(stderr, "parent_uuid=%s, parent_ctransid=%llu\n",
233                                 uuid_str, parent_ctransid);
234         }
235
236         memset(&args_v2, 0, sizeof(args_v2));
237         strncpy_null(args_v2.name, path);
238
239         parent_subvol = subvol_uuid_search(&r->sus, 0, parent_uuid,
240                         parent_ctransid, NULL, subvol_search_by_received_uuid);
241         if (!parent_subvol) {
242                 parent_subvol = subvol_uuid_search(&r->sus, 0, parent_uuid,
243                                 parent_ctransid, NULL, subvol_search_by_uuid);
244         }
245         if (!parent_subvol) {
246                 ret = -ENOENT;
247                 fprintf(stderr, "ERROR: could not find parent subvolume\n");
248                 goto out;
249         }
250
251         /*
252          * The path is resolved from the root subvol, but we could be in some
253          * subvolume under the root subvolume, so try and adjust the path to be
254          * relative to our root path.
255          */
256         if (r->full_root_path) {
257                 size_t root_len;
258                 size_t sub_len;
259
260                 root_len = strlen(r->full_root_path);
261                 sub_len = strlen(parent_subvol->path);
262
263                 /* First make sure the parent subvol is actually in our path */
264                 if (sub_len < root_len ||
265                     strstr(parent_subvol->path, r->full_root_path) == NULL) {
266                         fprintf(stderr, "ERROR: parent subvol is not reachable"
267                                 " from inside the root subvol.\n");
268                         ret = -ENOENT;
269                         goto out;
270                 }
271
272                 if (sub_len == root_len) {
273                         parent_subvol->path[0] = '/';
274                         parent_subvol->path[1] = '\0';
275                 } else {
276                         /*
277                          * root path is foo/bar
278                          * subvol path is foo/bar/baz
279                          *
280                          * we need to have baz be the path, so we need to move
281                          * the bit after foo/bar/, so path + root_len + 1, and
282                          * move the part we care about, so sub_len - root_len -
283                          * 1.
284                          */
285                         memmove(parent_subvol->path,
286                                 parent_subvol->path + root_len + 1,
287                                 sub_len - root_len - 1);
288                         parent_subvol->path[sub_len - root_len - 1] = '\0';
289                 }
290         }
291         /*if (rs_args.ctransid > rs_args.rtransid) {
292                 if (!r->force) {
293                         ret = -EINVAL;
294                         fprintf(stderr, "ERROR: subvolume %s was modified after it was received.\n", r->subvol_parent_name);
295                         goto out;
296                 } else {
297                         fprintf(stderr, "WARNING: subvolume %s was modified after it was received.\n", r->subvol_parent_name);
298                 }
299         }*/
300
301         if (strlen(parent_subvol->path) == 0)
302                 args_v2.fd = dup(r->mnt_fd);
303         else
304                 args_v2.fd = openat(r->mnt_fd, parent_subvol->path,
305                                 O_RDONLY | O_NOATIME);
306         if (args_v2.fd < 0) {
307                 ret = -errno;
308                 if (errno != ENOENT)
309                         fprintf(stderr, "ERROR: open %s failed. %s\n",
310                                         parent_subvol->path, strerror(-ret));
311                 else
312                         fprintf(stderr,
313                                 "It seems that you have changed your default "
314                                 "subvolume or you specify other subvolume to\n"
315                                 "mount btrfs, try to remount this btrfs filesystem "
316                                 "with fs tree, and run btrfs receive again!\n");
317                 goto out;
318         }
319
320         ret = ioctl(r->dest_dir_fd, BTRFS_IOC_SNAP_CREATE_V2, &args_v2);
321         close(args_v2.fd);
322         if (ret < 0) {
323                 ret = -errno;
324                 fprintf(stderr, "ERROR: creating snapshot %s -> %s "
325                                 "failed. %s\n", parent_subvol->path,
326                                 path, strerror(-ret));
327                 goto out;
328         }
329
330 out:
331         if (parent_subvol) {
332                 free(parent_subvol->path);
333                 free(parent_subvol);
334         }
335         return ret;
336 }
337
338 static int process_mkfile(const char *path, void *user)
339 {
340         int ret;
341         struct btrfs_receive *r = user;
342         char full_path[PATH_MAX];
343
344         ret = path_cat_out(full_path, r->full_subvol_path, path);
345         if (ret < 0) {
346                 fprintf(stderr, "ERROR: mkfile: path invalid: %s\n", path);
347                 goto out;
348         }
349
350         if (g_verbose >= 2)
351                 fprintf(stderr, "mkfile %s\n", path);
352
353         ret = creat(full_path, 0600);
354         if (ret < 0) {
355                 ret = -errno;
356                 fprintf(stderr, "ERROR: mkfile %s failed. %s\n", path,
357                                 strerror(-ret));
358                 goto out;
359         }
360         close(ret);
361         ret = 0;
362
363 out:
364         return ret;
365 }
366
367 static int process_mkdir(const char *path, void *user)
368 {
369         int ret;
370         struct btrfs_receive *r = user;
371         char full_path[PATH_MAX];
372
373         ret = path_cat_out(full_path, r->full_subvol_path, path);
374         if (ret < 0) {
375                 fprintf(stderr, "ERROR: mkdir: path invalid: %s\n", path);
376                 goto out;
377         }
378
379         if (g_verbose >= 2)
380                 fprintf(stderr, "mkdir %s\n", path);
381
382         ret = mkdir(full_path, 0700);
383         if (ret < 0) {
384                 ret = -errno;
385                 fprintf(stderr, "ERROR: mkdir %s failed. %s\n", path,
386                                 strerror(-ret));
387         }
388
389 out:
390         return ret;
391 }
392
393 static int process_mknod(const char *path, u64 mode, u64 dev, void *user)
394 {
395         int ret;
396         struct btrfs_receive *r = user;
397         char full_path[PATH_MAX];
398
399         ret = path_cat_out(full_path, r->full_subvol_path, path);
400         if (ret < 0) {
401                 fprintf(stderr, "ERROR: mknod: path invalid: %s\n", path);
402                 goto out;
403         }
404
405         if (g_verbose >= 2)
406                 fprintf(stderr, "mknod %s mode=%llu, dev=%llu\n",
407                                 path, mode, dev);
408
409         ret = mknod(full_path, mode & S_IFMT, dev);
410         if (ret < 0) {
411                 ret = -errno;
412                 fprintf(stderr, "ERROR: mknod %s failed. %s\n", path,
413                                 strerror(-ret));
414         }
415
416 out:
417         return ret;
418 }
419
420 static int process_mkfifo(const char *path, void *user)
421 {
422         int ret;
423         struct btrfs_receive *r = user;
424         char full_path[PATH_MAX];
425
426         ret = path_cat_out(full_path, r->full_subvol_path, path);
427         if (ret < 0) {
428                 fprintf(stderr, "ERROR: mkfifo: path invalid: %s\n", path);
429                 goto out;
430         }
431
432         if (g_verbose >= 2)
433                 fprintf(stderr, "mkfifo %s\n", path);
434
435         ret = mkfifo(full_path, 0600);
436         if (ret < 0) {
437                 ret = -errno;
438                 fprintf(stderr, "ERROR: mkfifo %s failed. %s\n", path,
439                                 strerror(-ret));
440         }
441
442 out:
443         return ret;
444 }
445
446 static int process_mksock(const char *path, void *user)
447 {
448         int ret;
449         struct btrfs_receive *r = user;
450         char full_path[PATH_MAX];
451
452         ret = path_cat_out(full_path, r->full_subvol_path, path);
453         if (ret < 0) {
454                 fprintf(stderr, "ERROR: mksock: path invalid: %s\n", path);
455                 goto out;
456         }
457
458         if (g_verbose >= 2)
459                 fprintf(stderr, "mksock %s\n", path);
460
461         ret = mknod(full_path, 0600 | S_IFSOCK, 0);
462         if (ret < 0) {
463                 ret = -errno;
464                 fprintf(stderr, "ERROR: mknod %s failed. %s\n", path,
465                                 strerror(-ret));
466         }
467
468 out:
469         return ret;
470 }
471
472 static int process_symlink(const char *path, const char *lnk, void *user)
473 {
474         int ret;
475         struct btrfs_receive *r = user;
476         char full_path[PATH_MAX];
477
478         ret = path_cat_out(full_path, r->full_subvol_path, path);
479         if (ret < 0) {
480                 fprintf(stderr, "ERROR: symlink: path invalid: %s\n", path);
481                 goto out;
482         }
483
484         if (g_verbose >= 2)
485                 fprintf(stderr, "symlink %s -> %s\n", path, lnk);
486
487         ret = symlink(lnk, full_path);
488         if (ret < 0) {
489                 ret = -errno;
490                 fprintf(stderr, "ERROR: symlink %s -> %s failed. %s\n", path,
491                                 lnk, strerror(-ret));
492         }
493
494 out:
495         return ret;
496 }
497
498 static int process_rename(const char *from, const char *to, void *user)
499 {
500         int ret;
501         struct btrfs_receive *r = user;
502         char full_from[PATH_MAX];
503         char full_to[PATH_MAX];
504
505         ret = path_cat_out(full_from, r->full_subvol_path, from);
506         if (ret < 0) {
507                 fprintf(stderr, "ERROR: rename: source path invalid: %s\n",
508                                 from);
509                 goto out;
510         }
511
512         ret = path_cat_out(full_to, r->full_subvol_path, to);
513         if (ret < 0) {
514                 fprintf(stderr, "ERROR: rename: target path invalid: %s\n",
515                                 to);
516                 goto out;
517         }
518
519         if (g_verbose >= 2)
520                 fprintf(stderr, "rename %s -> %s\n", from, to);
521
522         ret = rename(full_from, full_to);
523         if (ret < 0) {
524                 ret = -errno;
525                 fprintf(stderr, "ERROR: rename %s -> %s failed. %s\n", from,
526                                 to, strerror(-ret));
527         }
528
529 out:
530         return ret;
531 }
532
533 static int process_link(const char *path, const char *lnk, void *user)
534 {
535         int ret;
536         struct btrfs_receive *r = user;
537         char full_path[PATH_MAX];
538         char full_link_path[PATH_MAX];
539
540         ret = path_cat_out(full_path, r->full_subvol_path, path);
541         if (ret < 0) {
542                 fprintf(stderr, "ERROR: link: source path invalid: %s\n",
543                                 full_path);
544                 goto out;
545         }
546
547         ret = path_cat_out(full_link_path, r->full_subvol_path, lnk);
548         if (ret < 0) {
549                 fprintf(stderr, "ERROR: link: target path invalid: %s\n",
550                                 full_link_path);
551                 goto out;
552         }
553
554         if (g_verbose >= 2)
555                 fprintf(stderr, "link %s -> %s\n", path, lnk);
556
557         ret = link(full_link_path, full_path);
558         if (ret < 0) {
559                 ret = -errno;
560                 fprintf(stderr, "ERROR: link %s -> %s failed. %s\n", path,
561                                 lnk, strerror(-ret));
562         }
563
564 out:
565         return ret;
566 }
567
568
569 static int process_unlink(const char *path, void *user)
570 {
571         int ret;
572         struct btrfs_receive *r = user;
573         char full_path[PATH_MAX];
574
575         ret = path_cat_out(full_path, r->full_subvol_path, path);
576         if (ret < 0) {
577                 fprintf(stderr, "ERROR: unlink: path invalid: %s\n", path);
578                 goto out;
579         }
580
581         if (g_verbose >= 2)
582                 fprintf(stderr, "unlink %s\n", path);
583
584         ret = unlink(full_path);
585         if (ret < 0) {
586                 ret = -errno;
587                 fprintf(stderr, "ERROR: unlink %s failed. %s\n", path,
588                                 strerror(-ret));
589         }
590
591 out:
592         return ret;
593 }
594
595 static int process_rmdir(const char *path, void *user)
596 {
597         int ret;
598         struct btrfs_receive *r = user;
599         char full_path[PATH_MAX];
600
601         ret = path_cat_out(full_path, r->full_subvol_path, path);
602         if (ret < 0) {
603                 fprintf(stderr, "ERROR: rmdir: path invalid: %s\n", path);
604                 goto out;
605         }
606
607         if (g_verbose >= 2)
608                 fprintf(stderr, "rmdir %s\n", path);
609
610         ret = rmdir(full_path);
611         if (ret < 0) {
612                 ret = -errno;
613                 fprintf(stderr, "ERROR: rmdir %s failed. %s\n", path,
614                                 strerror(-ret));
615         }
616
617 out:
618         return ret;
619 }
620
621 static int open_inode_for_write(struct btrfs_receive *r, const char *path)
622 {
623         int ret = 0;
624
625         if (r->write_fd != -1) {
626                 if (strcmp(r->write_path, path) == 0)
627                         goto out;
628                 close(r->write_fd);
629                 r->write_fd = -1;
630         }
631
632         r->write_fd = open(path, O_RDWR);
633         if (r->write_fd < 0) {
634                 ret = -errno;
635                 fprintf(stderr, "ERROR: open %s failed. %s\n", path,
636                                 strerror(-ret));
637                 goto out;
638         }
639         strncpy_null(r->write_path, path);
640
641 out:
642         return ret;
643 }
644
645 static void close_inode_for_write(struct btrfs_receive *r)
646 {
647         if(r->write_fd == -1)
648                 return;
649
650         close(r->write_fd);
651         r->write_fd = -1;
652         r->write_path[0] = 0;
653 }
654
655 static int process_write(const char *path, const void *data, u64 offset,
656                          u64 len, void *user)
657 {
658         int ret = 0;
659         struct btrfs_receive *r = user;
660         char full_path[PATH_MAX];
661         u64 pos = 0;
662         int w;
663
664         ret = path_cat_out(full_path, r->full_subvol_path, path);
665         if (ret < 0) {
666                 fprintf(stderr, "ERROR: write: path invalid: %s\n", path);
667                 goto out;
668         }
669
670         ret = open_inode_for_write(r, full_path);
671         if (ret < 0)
672                 goto out;
673
674         while (pos < len) {
675                 w = pwrite(r->write_fd, (char*)data + pos, len - pos,
676                                 offset + pos);
677                 if (w < 0) {
678                         ret = -errno;
679                         fprintf(stderr, "ERROR: writing to %s failed. %s\n",
680                                         path, strerror(-ret));
681                         goto out;
682                 }
683                 pos += w;
684         }
685
686 out:
687         return ret;
688 }
689
690 static int process_clone(const char *path, u64 offset, u64 len,
691                          const u8 *clone_uuid, u64 clone_ctransid,
692                          const char *clone_path, u64 clone_offset,
693                          void *user)
694 {
695         int ret;
696         struct btrfs_receive *r = user;
697         struct btrfs_ioctl_clone_range_args clone_args;
698         struct subvol_info *si = NULL;
699         char full_path[PATH_MAX];
700         char *subvol_path = NULL;
701         char full_clone_path[PATH_MAX];
702         int clone_fd = -1;
703
704         ret = path_cat_out(full_path, r->full_subvol_path, path);
705         if (ret < 0) {
706                 fprintf(stderr, "ERROR: clone: source path invalid: %s\n",
707                                 path);
708                 goto out;
709         }
710
711         ret = open_inode_for_write(r, full_path);
712         if (ret < 0)
713                 goto out;
714
715         si = subvol_uuid_search(&r->sus, 0, clone_uuid, clone_ctransid, NULL,
716                         subvol_search_by_received_uuid);
717         if (!si) {
718                 if (memcmp(clone_uuid, r->cur_subvol.received_uuid,
719                                 BTRFS_UUID_SIZE) == 0) {
720                         /* TODO check generation of extent */
721                         subvol_path = strdup(r->cur_subvol.path);
722                 } else {
723                         ret = -ENOENT;
724                         fprintf(stderr, "ERROR: did not find source subvol.\n");
725                         goto out;
726                 }
727         } else {
728                 /*if (rs_args.ctransid > rs_args.rtransid) {
729                         if (!r->force) {
730                                 ret = -EINVAL;
731                                 fprintf(stderr, "ERROR: subvolume %s was "
732                                                 "modified after it was "
733                                                 "received.\n",
734                                                 r->subvol_parent_name);
735                                 goto out;
736                         } else {
737                                 fprintf(stderr, "WARNING: subvolume %s was "
738                                                 "modified after it was "
739                                                 "received.\n",
740                                                 r->subvol_parent_name);
741                         }
742                 }*/
743                 subvol_path = strdup(si->path);
744         }
745
746         ret = path_cat_out(full_clone_path, subvol_path, clone_path);
747         if (ret < 0) {
748                 fprintf(stderr, "ERROR: clone: target path invalid: %s\n",
749                                 clone_path);
750                 goto out;
751         }
752
753         clone_fd = openat(r->mnt_fd, full_clone_path, O_RDONLY | O_NOATIME);
754         if (clone_fd < 0) {
755                 ret = -errno;
756                 fprintf(stderr, "ERROR: failed to open %s. %s\n",
757                                 full_clone_path, strerror(-ret));
758                 goto out;
759         }
760
761         clone_args.src_fd = clone_fd;
762         clone_args.src_offset = clone_offset;
763         clone_args.src_length = len;
764         clone_args.dest_offset = offset;
765         ret = ioctl(r->write_fd, BTRFS_IOC_CLONE_RANGE, &clone_args);
766         if (ret) {
767                 ret = -errno;
768                 fprintf(stderr, "ERROR: failed to clone extents to %s\n%s\n",
769                                 path, strerror(-ret));
770                 goto out;
771         }
772
773 out:
774         if (si) {
775                 free(si->path);
776                 free(si);
777         }
778         free(subvol_path);
779         if (clone_fd != -1)
780                 close(clone_fd);
781         return ret;
782 }
783
784
785 static int process_set_xattr(const char *path, const char *name,
786                              const void *data, int len, void *user)
787 {
788         int ret = 0;
789         struct btrfs_receive *r = user;
790         char full_path[PATH_MAX];
791
792         ret = path_cat_out(full_path, r->full_subvol_path, path);
793         if (ret < 0) {
794                 fprintf(stderr, "ERROR: set_xattr: path invalid: %s\n", path);
795                 goto out;
796         }
797
798         if (strcmp("security.capability", name) == 0) {
799                 if (g_verbose >= 3)
800                         fprintf(stderr, "set_xattr: cache capabilities\n");
801                 if (r->cached_capabilities_len)
802                         fprintf(stderr,
803                           "WARNING: capabilities set multiple times per file: %s\n",
804                                 full_path);
805                 if (len > sizeof(r->cached_capabilities)) {
806                         fprintf(stderr,
807                           "ERROR: capabilities encoded to %d bytes, buffer too small\n",
808                                 len);
809                         ret = -E2BIG;
810                         goto out;
811                 }
812                 r->cached_capabilities_len = len;
813                 memcpy(r->cached_capabilities, data, len);
814         }
815
816         if (g_verbose >= 2) {
817                 fprintf(stderr, "set_xattr %s - name=%s data_len=%d "
818                                 "data=%.*s\n", path, name, len,
819                                 len, (char*)data);
820         }
821
822         ret = lsetxattr(full_path, name, data, len, 0);
823         if (ret < 0) {
824                 ret = -errno;
825                 fprintf(stderr, "ERROR: lsetxattr %s %s=%.*s failed. %s\n",
826                                 path, name, len, (char*)data, strerror(-ret));
827                 goto out;
828         }
829
830 out:
831         return ret;
832 }
833
834 static int process_remove_xattr(const char *path, const char *name, void *user)
835 {
836         int ret = 0;
837         struct btrfs_receive *r = user;
838         char full_path[PATH_MAX];
839
840         ret = path_cat_out(full_path, r->full_subvol_path, path);
841         if (ret < 0) {
842                 fprintf(stderr, "ERROR: remove_xattr: path invalid: %s\n",
843                                 path);
844                 goto out;
845         }
846
847         if (g_verbose >= 2) {
848                 fprintf(stderr, "remove_xattr %s - name=%s\n",
849                                 path, name);
850         }
851
852         ret = lremovexattr(full_path, name);
853         if (ret < 0) {
854                 ret = -errno;
855                 fprintf(stderr, "ERROR: lremovexattr %s %s failed. %s\n",
856                                 path, name, strerror(-ret));
857                 goto out;
858         }
859
860 out:
861         return ret;
862 }
863
864 static int process_truncate(const char *path, u64 size, void *user)
865 {
866         int ret = 0;
867         struct btrfs_receive *r = user;
868         char full_path[PATH_MAX];
869
870         ret = path_cat_out(full_path, r->full_subvol_path, path);
871         if (ret < 0) {
872                 fprintf(stderr, "ERROR: truncate: path invalid: %s\n", path);
873                 goto out;
874         }
875
876         if (g_verbose >= 2)
877                 fprintf(stderr, "truncate %s size=%llu\n", path, size);
878
879         ret = truncate(full_path, size);
880         if (ret < 0) {
881                 ret = -errno;
882                 fprintf(stderr, "ERROR: truncate %s failed. %s\n",
883                                 path, strerror(-ret));
884                 goto out;
885         }
886
887 out:
888         return ret;
889 }
890
891 static int process_chmod(const char *path, u64 mode, void *user)
892 {
893         int ret = 0;
894         struct btrfs_receive *r = user;
895         char full_path[PATH_MAX];
896
897         ret = path_cat_out(full_path, r->full_subvol_path, path);
898         if (ret < 0) {
899                 fprintf(stderr, "ERROR: chmod: path invalid: %s\n", path);
900                 goto out;
901         }
902
903         if (g_verbose >= 2)
904                 fprintf(stderr, "chmod %s - mode=0%o\n", path, (int)mode);
905
906         ret = chmod(full_path, mode);
907         if (ret < 0) {
908                 ret = -errno;
909                 fprintf(stderr, "ERROR: chmod %s failed. %s\n",
910                                 path, strerror(-ret));
911                 goto out;
912         }
913
914 out:
915         return ret;
916 }
917
918 static int process_chown(const char *path, u64 uid, u64 gid, void *user)
919 {
920         int ret = 0;
921         struct btrfs_receive *r = user;
922         char full_path[PATH_MAX];
923
924         ret = path_cat_out(full_path, r->full_subvol_path, path);
925         if (ret < 0) {
926                 fprintf(stderr, "ERROR: chown: path invalid: %s\n", path);
927                 goto out;
928         }
929
930         if (g_verbose >= 2)
931                 fprintf(stderr, "chown %s - uid=%llu, gid=%llu\n", path,
932                                 uid, gid);
933
934         ret = lchown(full_path, uid, gid);
935         if (ret < 0) {
936                 ret = -errno;
937                 fprintf(stderr, "ERROR: chown %s failed. %s\n",
938                                 path, strerror(-ret));
939                 goto out;
940         }
941
942         if (r->cached_capabilities_len) {
943                 if (g_verbose >= 2)
944                         fprintf(stderr, "chown: restore capabilities\n");
945                 ret = lsetxattr(full_path, "security.capability",
946                                 r->cached_capabilities,
947                                 r->cached_capabilities_len, 0);
948                 memset(r->cached_capabilities, 0,
949                                 sizeof(r->cached_capabilities));
950                 r->cached_capabilities_len = 0;
951                 if (ret < 0) {
952                         ret = -errno;
953                         fprintf(stderr, "ERROR: restoring capabilities %s: %s\n",
954                                         path, strerror(-ret));
955                         goto out;
956                 }
957         }
958
959 out:
960         return ret;
961 }
962
963 static int process_utimes(const char *path, struct timespec *at,
964                           struct timespec *mt, struct timespec *ct,
965                           void *user)
966 {
967         int ret = 0;
968         struct btrfs_receive *r = user;
969         char full_path[PATH_MAX];
970         struct timespec tv[2];
971
972         ret = path_cat_out(full_path, r->full_subvol_path, path);
973         if (ret < 0) {
974                 fprintf(stderr, "ERROR: utimes: path invalid: %s\n", path);
975                 goto out;
976         }
977
978         if (g_verbose >= 2)
979                 fprintf(stderr, "utimes %s\n", path);
980
981         tv[0] = *at;
982         tv[1] = *mt;
983         ret = utimensat(AT_FDCWD, full_path, tv, AT_SYMLINK_NOFOLLOW);
984         if (ret < 0) {
985                 ret = -errno;
986                 fprintf(stderr, "ERROR: utimes %s failed. %s\n",
987                                 path, strerror(-ret));
988                 goto out;
989         }
990
991 out:
992         return ret;
993 }
994
995 static int process_update_extent(const char *path, u64 offset, u64 len,
996                 void *user)
997 {
998         if (g_verbose >= 2)
999                 fprintf(stderr, "update_extent %s: offset=%llu, len=%llu\n",
1000                                 path, (unsigned long long)offset,
1001                                 (unsigned long long)len);
1002
1003         /*
1004          * Sent with BTRFS_SEND_FLAG_NO_FILE_DATA, nothing to do.
1005          */
1006
1007         return 0;
1008 }
1009
1010 static struct btrfs_send_ops send_ops = {
1011         .subvol = process_subvol,
1012         .snapshot = process_snapshot,
1013         .mkfile = process_mkfile,
1014         .mkdir = process_mkdir,
1015         .mknod = process_mknod,
1016         .mkfifo = process_mkfifo,
1017         .mksock = process_mksock,
1018         .symlink = process_symlink,
1019         .rename = process_rename,
1020         .link = process_link,
1021         .unlink = process_unlink,
1022         .rmdir = process_rmdir,
1023         .write = process_write,
1024         .clone = process_clone,
1025         .set_xattr = process_set_xattr,
1026         .remove_xattr = process_remove_xattr,
1027         .truncate = process_truncate,
1028         .chmod = process_chmod,
1029         .chown = process_chown,
1030         .utimes = process_utimes,
1031         .update_extent = process_update_extent,
1032 };
1033
1034 static int do_receive(struct btrfs_receive *r, const char *tomnt,
1035                       char *realmnt, int r_fd, u64 max_errors)
1036 {
1037         u64 subvol_id;
1038         int ret;
1039         char *dest_dir_full_path;
1040         char root_subvol_path[PATH_MAX];
1041         int end = 0;
1042
1043         dest_dir_full_path = realpath(tomnt, NULL);
1044         if (!dest_dir_full_path) {
1045                 ret = -errno;
1046                 fprintf(stderr, "ERROR: realpath(%s) failed. %s\n", tomnt,
1047                         strerror(-ret));
1048                 goto out;
1049         }
1050         r->dest_dir_fd = open(dest_dir_full_path, O_RDONLY | O_NOATIME);
1051         if (r->dest_dir_fd < 0) {
1052                 ret = -errno;
1053                 fprintf(stderr,
1054                         "ERROR: failed to open destination directory %s. %s\n",
1055                         dest_dir_full_path, strerror(-ret));
1056                 goto out;
1057         }
1058
1059         if (realmnt[0]) {
1060                 r->root_path = realmnt;
1061         } else {
1062                 ret = find_mount_root(dest_dir_full_path, &r->root_path);
1063                 if (ret < 0) {
1064                         fprintf(stderr,
1065                                 "ERROR: failed to determine mount point for %s: %s\n",
1066                                 dest_dir_full_path, strerror(-ret));
1067                         ret = -EINVAL;
1068                         goto out;
1069                 }
1070                 if (ret > 0) {
1071                         fprintf(stderr,
1072                         "ERROR: %s doesn't belong to btrfs mount point\n",
1073                         dest_dir_full_path);
1074                         ret = -EINVAL;
1075                         goto out;
1076                 }
1077         }
1078         r->mnt_fd = open(r->root_path, O_RDONLY | O_NOATIME);
1079         if (r->mnt_fd < 0) {
1080                 ret = -errno;
1081                 fprintf(stderr, "ERROR: failed to open %s. %s\n", r->root_path,
1082                         strerror(-ret));
1083                 goto out;
1084         }
1085
1086         /*
1087          * If we use -m or a default subvol we want to resolve the path to the
1088          * subvolume we're sitting in so that we can adjust the paths of any
1089          * subvols we want to receive in.
1090          */
1091         ret = btrfs_list_get_path_rootid(r->mnt_fd, &subvol_id);
1092         if (ret) {
1093                 fprintf(stderr, "ERROR: couldn't resolve our subvolid %d\n",
1094                         ret);
1095                 goto out;
1096         }
1097
1098         root_subvol_path[0] = 0;
1099         ret = btrfs_subvolid_resolve(r->mnt_fd, root_subvol_path,
1100                                      PATH_MAX, subvol_id);
1101         if (ret) {
1102                 fprintf(stderr, "ERROR: couldn't resolve our subvol path\n");
1103                 goto out;
1104         }
1105
1106         /*
1107          * Ok we're inside of a subvol off of the root subvol, we need to
1108          * actually set full_root_path.
1109          */
1110         if (strlen(root_subvol_path))
1111                 r->full_root_path = root_subvol_path;
1112
1113         if (r->dest_dir_chroot) {
1114                 if (chroot(dest_dir_full_path)) {
1115                         ret = -errno;
1116                         fprintf(stderr,
1117                                 "ERROR: failed to chroot to %s, %s\n",
1118                                 dest_dir_full_path,
1119                                 strerror(-ret));
1120                         goto out;
1121                 }
1122                 if (chdir("/")) {
1123                         ret = -errno;
1124                         fprintf(stderr,
1125                                 "ERROR: failed to chdir to /, %s\n",
1126                                 strerror(-ret));
1127                         goto out;
1128                 }
1129                 fprintf(stderr, "Chroot to %s\n", dest_dir_full_path);
1130                 r->root_path = strdup("/");
1131                 r->dest_dir_path = r->root_path;
1132         } else {
1133                 /*
1134                  * find_mount_root returns a root_path that is a subpath of
1135                  * dest_dir_full_path. Now get the other part of root_path,
1136                  * which is the destination dir relative to root_path.
1137                  */
1138                 r->dest_dir_path = dest_dir_full_path + strlen(r->root_path);
1139                 while (r->dest_dir_path[0] == '/')
1140                         r->dest_dir_path++;
1141         }
1142
1143         ret = subvol_uuid_search_init(r->mnt_fd, &r->sus);
1144         if (ret < 0)
1145                 goto out;
1146
1147         while (!end) {
1148                 if (r->cached_capabilities_len) {
1149                         if (g_verbose >= 3)
1150                                 fprintf(stderr, "clear cached capabilities\n");
1151                         memset(r->cached_capabilities, 0,
1152                                         sizeof(r->cached_capabilities));
1153                         r->cached_capabilities_len = 0;
1154                 }
1155
1156                 ret = btrfs_read_and_process_send_stream(r_fd, &send_ops, r,
1157                                                          r->honor_end_cmd,
1158                                                          max_errors);
1159                 if (ret < 0)
1160                         goto out;
1161                 if (ret)
1162                         end = 1;
1163
1164                 close_inode_for_write(r);
1165                 ret = finish_subvol(r);
1166                 if (ret < 0)
1167                         goto out;
1168         }
1169         ret = 0;
1170
1171 out:
1172         if (r->write_fd != -1) {
1173                 close(r->write_fd);
1174                 r->write_fd = -1;
1175         }
1176         free(r->root_path);
1177         r->root_path = NULL;
1178         free(r->full_subvol_path);
1179         r->full_subvol_path = NULL;
1180         r->dest_dir_path = NULL;
1181         free(dest_dir_full_path);
1182         if (r->cur_subvol.path) {
1183                 free(r->cur_subvol.path);
1184                 r->cur_subvol.path = NULL;
1185         }
1186         subvol_uuid_search_finit(&r->sus);
1187         if (r->mnt_fd != -1) {
1188                 close(r->mnt_fd);
1189                 r->mnt_fd = -1;
1190         }
1191         if (r->dest_dir_fd != -1) {
1192                 close(r->dest_dir_fd);
1193                 r->dest_dir_fd = -1;
1194         }
1195
1196         return ret;
1197 }
1198
1199 int cmd_receive(int argc, char **argv)
1200 {
1201         char *tomnt = NULL;
1202         char fromfile[PATH_MAX];
1203         char realmnt[PATH_MAX];
1204         struct btrfs_receive r;
1205         int receive_fd = fileno(stdin);
1206         u64 max_errors = 1;
1207         int ret = 0;
1208
1209         memset(&r, 0, sizeof(r));
1210         r.mnt_fd = -1;
1211         r.write_fd = -1;
1212         r.dest_dir_fd = -1;
1213         r.dest_dir_chroot = 0;
1214         realmnt[0] = 0;
1215         fromfile[0] = 0;
1216
1217         while (1) {
1218                 int c;
1219                 static const struct option long_opts[] = {
1220                         { "max-errors", required_argument, NULL, 'E' },
1221                         { "chroot", no_argument, NULL, 'C' },
1222                         { NULL, 0, NULL, 0 }
1223                 };
1224
1225                 c = getopt_long(argc, argv, "Cevf:m:", long_opts, NULL);
1226                 if (c < 0)
1227                         break;
1228
1229                 switch (c) {
1230                 case 'v':
1231                         g_verbose++;
1232                         break;
1233                 case 'f':
1234                         if (arg_copy_path(fromfile, optarg, sizeof(fromfile))) {
1235                                 fprintf(stderr,
1236                                     "ERROR: input file path too long (%zu)\n",
1237                                     strlen(optarg));
1238                                 ret = 1;
1239                                 goto out;
1240                         }
1241                         break;
1242                 case 'e':
1243                         r.honor_end_cmd = 1;
1244                         break;
1245                 case 'C':
1246                         r.dest_dir_chroot = 1;
1247                         break;
1248                 case 'E':
1249                         max_errors = arg_strtou64(optarg);
1250                         break;
1251                 case 'm':
1252                         if (arg_copy_path(realmnt, optarg, sizeof(realmnt))) {
1253                                 fprintf(stderr,
1254                                     "ERROR: mount point path too long (%zu)\n",
1255                                     strlen(optarg));
1256                                 ret = 1;
1257                                 goto out;
1258                         }
1259                         break;
1260                 case '?':
1261                 default:
1262                         fprintf(stderr, "ERROR: receive args invalid.\n");
1263                         return 1;
1264                 }
1265         }
1266
1267         if (check_argc_exact(argc - optind, 1))
1268                 usage(cmd_receive_usage);
1269
1270         tomnt = argv[optind];
1271
1272         if (fromfile[0]) {
1273                 receive_fd = open(fromfile, O_RDONLY | O_NOATIME);
1274                 if (receive_fd < 0) {
1275                         fprintf(stderr, "ERROR: failed to open %s\n", fromfile);
1276                         goto out;
1277                 }
1278         }
1279
1280         ret = do_receive(&r, tomnt, realmnt, receive_fd, max_errors);
1281
1282 out:
1283
1284         return !!ret;
1285 }
1286
1287 const char * const cmd_receive_usage[] = {
1288         "btrfs receive [-ve] [-f <infile>] [--max-errors <N>] <mount>",
1289         "Receive subvolumes from stdin.",
1290         "Receives one or more subvolumes that were previously",
1291         "sent with btrfs send. The received subvolumes are stored",
1292         "into <mount>.",
1293         "btrfs receive will fail in case a receiving subvolume",
1294         "already exists. It will also fail in case a previously",
1295         "received subvolume was changed after it was received.",
1296         "After receiving a subvolume, it is immediately set to",
1297         "read only.\n",
1298         "-v               Enable verbose debug output. Each",
1299         "                 occurrence of this option increases the",
1300         "                 verbose level more.",
1301         "-f <infile>      By default, btrfs receive uses stdin",
1302         "                 to receive the subvolumes. Use this",
1303         "                 option to specify a file to use instead.",
1304         "-e               Terminate after receiving an <end cmd>",
1305         "                 in the data stream. Without this option,",
1306         "                 the receiver terminates only if an error",
1307         "                 is recognized or on EOF.",
1308         "-C|--chroot      confine the process to <mount> using chroot",
1309         "--max-errors <N> Terminate as soon as N errors happened while",
1310         "                 processing commands from the send stream.",
1311         "                 Default value is 1. A value of 0 means no limit.",
1312         "-m <mountpoint>  The root mount point of the destination fs.",
1313         "                 If you do not have /proc use this to tell us where ",
1314         "                 this file system is mounted.",
1315         NULL
1316 };