2 * Copyright (C) 2013 SUSE. All rights reserved.
4 * This code is adapted from cmds-send.c and cmds-receive.c,
7 * Copyright (C) 2012 Alexander Block. All rights reserved.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public
11 * License v2 as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this program; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 021110-1307, USA.
29 #include <sys/types.h>
32 #include <sys/ioctl.h>
37 #include <asm/types.h>
38 #include <uuid/uuid.h>
41 * This should be compilable without the rest of the btrfs-progs
42 * source distribution.
44 #if BTRFS_FLAT_INCLUDES
45 #include "send-utils.h"
46 #include "send-stream.h"
48 #include <btrfs/send-utils.h>
49 #include <btrfs/send-stream.h>
50 #endif /* BTRFS_FLAT_INCLUDES */
53 struct btrfs_ioctl_send_args io_send
= {0, };
54 static char *subvol_path
;
55 static char *root_path
;
58 char *full_subvol_path
;
64 printf("send-test <btrfs root> <subvol>\n");
69 static int print_subvol(const char *path
, const u8
*uuid
, u64 ctransid
,
72 struct recv_args
*r
= user
;
73 char uuid_str
[BTRFS_UUID_UNPARSED_SIZE
];
75 r
->full_subvol_path
= path_cat(r
->root_path
, path
);
76 uuid_unparse(uuid
, uuid_str
);
78 printf("subvol\t%s\t%llu\t%s\n", uuid_str
,
79 (unsigned long long)ctransid
, r
->full_subvol_path
);
84 static int print_snapshot(const char *path
, const u8
*uuid
, u64 ctransid
,
85 const u8
*parent_uuid
, u64 parent_ctransid
,
88 struct recv_args
*r
= user
;
89 char uuid_str
[BTRFS_UUID_UNPARSED_SIZE
];
90 char parent_uuid_str
[BTRFS_UUID_UNPARSED_SIZE
];
92 r
->full_subvol_path
= path_cat(r
->root_path
, path
);
93 uuid_unparse(uuid
, uuid_str
);
94 uuid_unparse(parent_uuid
, parent_uuid_str
);
96 printf("snapshot\t%s\t%llu\t%s\t%llu\t%s\n", uuid_str
,
97 (unsigned long long)ctransid
, parent_uuid_str
,
98 (unsigned long long)parent_ctransid
, r
->full_subvol_path
);
103 static int print_mkfile(const char *path
, void *user
)
105 struct recv_args
*r
= user
;
106 char *full_path
= path_cat(r
->full_subvol_path
, path
);
108 printf("mkfile\t%s\n", full_path
);
114 static int print_mkdir(const char *path
, void *user
)
116 struct recv_args
*r
= user
;
117 char *full_path
= path_cat(r
->full_subvol_path
, path
);
119 printf("mkdir\t%s\n", full_path
);
125 static int print_mknod(const char *path
, u64 mode
, u64 dev
, void *user
)
127 struct recv_args
*r
= user
;
128 char *full_path
= path_cat(r
->full_subvol_path
, path
);
130 printf("mknod\t%llo\t0x%llx\t%s\n", (unsigned long long)mode
,
131 (unsigned long long)dev
, full_path
);
137 static int print_mkfifo(const char *path
, void *user
)
139 struct recv_args
*r
= user
;
140 char *full_path
= path_cat(r
->full_subvol_path
, path
);
142 printf("mkfifo\t%s\n", full_path
);
148 static int print_mksock(const char *path
, void *user
)
150 struct recv_args
*r
= user
;
151 char *full_path
= path_cat(r
->full_subvol_path
, path
);
153 printf("mksock\t%s\n", full_path
);
159 static int print_symlink(const char *path
, const char *lnk
, void *user
)
161 struct recv_args
*r
= user
;
162 char *full_path
= path_cat(r
->full_subvol_path
, path
);
164 printf("symlink\t%s\t%s\n", lnk
, full_path
);
170 static int print_rename(const char *from
, const char *to
, void *user
)
172 struct recv_args
*r
= user
;
173 char *full_from
= path_cat(r
->full_subvol_path
, from
);
174 char *full_to
= path_cat(r
->full_subvol_path
, to
);
176 printf("rename\t%s\t%s\n", from
, to
);
183 static int print_link(const char *path
, const char *lnk
, void *user
)
185 struct recv_args
*r
= user
;
186 char *full_path
= path_cat(r
->full_subvol_path
, path
);
188 printf("link\t%s\t%s\n", lnk
, full_path
);
194 static int print_unlink(const char *path
, void *user
)
196 struct recv_args
*r
= user
;
197 char *full_path
= path_cat(r
->full_subvol_path
, path
);
199 printf("unlink\t%s\n", full_path
);
205 static int print_rmdir(const char *path
, void *user
)
207 struct recv_args
*r
= user
;
208 char *full_path
= path_cat(r
->full_subvol_path
, path
);
210 printf("rmdir\t%s\n", full_path
);
216 static int print_write(const char *path
, const void *data
, u64 offset
,
219 struct recv_args
*r
= user
;
220 char *full_path
= path_cat(r
->full_subvol_path
, path
);
222 printf("write\t%llu\t%llu\t%s\n", (unsigned long long)offset
,
223 (unsigned long long)len
, full_path
);
229 static int print_clone(const char *path
, u64 offset
, u64 len
,
230 const u8
*clone_uuid
, u64 clone_ctransid
,
231 const char *clone_path
, u64 clone_offset
,
234 struct recv_args
*r
= user
;
235 char *full_path
= path_cat(r
->full_subvol_path
, path
);
237 printf("clone\t%s\t%s\n", full_path
, clone_path
);
243 static int print_set_xattr(const char *path
, const char *name
,
244 const void *data
, int len
, void *user
)
246 struct recv_args
*r
= user
;
247 char *full_path
= path_cat(r
->full_subvol_path
, path
);
249 printf("set_xattr\t%s\t%s\t%d\n", full_path
,
256 static int print_remove_xattr(const char *path
, const char *name
, void *user
)
258 struct recv_args
*r
= user
;
259 char *full_path
= path_cat(r
->full_subvol_path
, path
);
261 printf("remove_xattr\t%s\t%s\n", full_path
, name
);
267 static int print_truncate(const char *path
, u64 size
, void *user
)
269 struct recv_args
*r
= user
;
270 char *full_path
= path_cat(r
->full_subvol_path
, path
);
272 printf("truncate\t%llu\t%s\n", (unsigned long long)size
, full_path
);
278 static int print_chmod(const char *path
, u64 mode
, void *user
)
280 struct recv_args
*r
= user
;
281 char *full_path
= path_cat(r
->full_subvol_path
, path
);
283 printf("chmod\t%llo\t%s\n", (unsigned long long)mode
, full_path
);
289 static int print_chown(const char *path
, u64 uid
, u64 gid
, void *user
)
291 struct recv_args
*r
= user
;
292 char *full_path
= path_cat(r
->full_subvol_path
, path
);
294 printf("chown\t%llu\t%llu\t%s\n", (unsigned long long)uid
,
295 (unsigned long long)gid
, full_path
);
301 static int print_utimes(const char *path
, struct timespec
*at
,
302 struct timespec
*mt
, struct timespec
*ct
,
305 struct recv_args
*r
= user
;
306 char *full_path
= path_cat(r
->full_subvol_path
, path
);
308 printf("utimes\t%s\n", full_path
);
314 static int print_update_extent(const char *path
, u64 offset
, u64 len
,
317 struct recv_args
*r
= user
;
318 char *full_path
= path_cat(r
->full_subvol_path
, path
);
320 printf("update_extent\t%s\t%llu\t%llu\n", full_path
, offset
, len
);
326 static struct btrfs_send_ops send_ops_print
= {
327 .subvol
= print_subvol
,
328 .snapshot
= print_snapshot
,
329 .mkfile
= print_mkfile
,
330 .mkdir
= print_mkdir
,
331 .mknod
= print_mknod
,
332 .mkfifo
= print_mkfifo
,
333 .mksock
= print_mksock
,
334 .symlink
= print_symlink
,
335 .rename
= print_rename
,
337 .unlink
= print_unlink
,
338 .rmdir
= print_rmdir
,
339 .write
= print_write
,
340 .clone
= print_clone
,
341 .set_xattr
= print_set_xattr
,
342 .remove_xattr
= print_remove_xattr
,
343 .truncate
= print_truncate
,
344 .chmod
= print_chmod
,
345 .chown
= print_chown
,
346 .utimes
= print_utimes
,
347 .update_extent
= print_update_extent
,
350 static void *process_thread(void *arg_
)
355 ret
= btrfs_read_and_process_send_stream(pipefd
[0],
356 &send_ops_print
, arg_
, 0);
367 int main(int argc
, char **argv
)
378 root_path
= realpath(argv
[1], NULL
);
384 subvol_path
= realpath(argv
[2], NULL
);
390 r
.full_subvol_path
= subvol_path
;
391 r
.root_path
= root_path
;
393 subvol_fd
= open(subvol_path
, O_RDONLY
|O_NOATIME
);
396 fprintf(stderr
, "ERROR: Subvolume open failed. %s\n",
404 fprintf(stderr
, "ERROR: pipe failed. %s\n", strerror(ret
));
408 ret
= pthread_create(&t_read
, NULL
, process_thread
, &r
);
411 fprintf(stderr
, "ERROR: pthread create failed. %s\n",
416 io_send
.send_fd
= pipefd
[1];
417 io_send
.clone_sources_count
= 0;
418 io_send
.clone_sources
= NULL
;
419 io_send
.parent_root
= 0;
420 io_send
.flags
= BTRFS_SEND_FLAG_NO_FILE_DATA
;
422 ret
= ioctl(subvol_fd
, BTRFS_IOC_SEND
, &io_send
);
425 fprintf(stderr
, "ERROR: send ioctl failed with %d: %s\n", ret
,
432 ret
= pthread_join(t_read
, &t_err
);
434 fprintf(stderr
, "ERROR: pthread_join failed: %s\n",
439 ret
= (long int)t_err
;
440 fprintf(stderr
, "ERROR: failed to process send stream, ret=%ld "
441 "(%s)\n", (long int)t_err
, strerror(ret
));