2 * Copyright (C) 2012 Alexander Block. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #include <uuid/uuid.h>
23 #include "send-stream.h"
27 struct btrfs_send_stream {
29 char read_buf[BTRFS_SEND_BUF_SIZE];
32 struct btrfs_cmd_header *cmd_hdr;
33 struct btrfs_tlv_header *cmd_attrs[BTRFS_SEND_A_MAX + 1];
36 struct btrfs_send_ops *ops;
40 static int read_buf(struct btrfs_send_stream *sctx, char *buf, size_t len)
48 rbytes = read(sctx->fd, buf + pos, len - pos);
51 error("read from stream failed: %s",
69 * Reads a single command from kernel space and decodes the TLV's into
72 static int read_cmd(struct btrfs_send_stream *sctx)
82 memset(sctx->cmd_attrs, 0, sizeof(sctx->cmd_attrs));
84 ASSERT(sizeof(*sctx->cmd_hdr) <= sizeof(sctx->read_buf));
85 ret = read_buf(sctx, sctx->read_buf, sizeof(*sctx->cmd_hdr));
90 error("unexpected EOF in stream");
94 sctx->cmd_hdr = (struct btrfs_cmd_header *)sctx->read_buf;
95 cmd = le16_to_cpu(sctx->cmd_hdr->cmd);
96 cmd_len = le32_to_cpu(sctx->cmd_hdr->len);
98 if (cmd_len + sizeof(*sctx->cmd_hdr) >= sizeof(sctx->read_buf)) {
100 error("command length %u too big for buffer %zu",
101 cmd_len, sizeof(sctx->read_buf));
105 data = sctx->read_buf + sizeof(*sctx->cmd_hdr);
106 ret = read_buf(sctx, data, cmd_len);
111 error("unexpected EOF in stream");
115 crc = le32_to_cpu(sctx->cmd_hdr->crc);
116 sctx->cmd_hdr->crc = 0;
118 crc2 = crc32c(0, (unsigned char*)sctx->read_buf,
119 sizeof(*sctx->cmd_hdr) + cmd_len);
123 error("crc32 mismatch in command");
128 while (pos < cmd_len) {
129 struct btrfs_tlv_header *tlv_hdr;
133 tlv_hdr = (struct btrfs_tlv_header *)data;
134 tlv_type = le16_to_cpu(tlv_hdr->tlv_type);
135 tlv_len = le16_to_cpu(tlv_hdr->tlv_len);
137 if (tlv_type == 0 || tlv_type > BTRFS_SEND_A_MAX
138 || tlv_len > BTRFS_SEND_BUF_SIZE) {
139 error("invalid tlv in cmd tlv_type = %hu, tlv_len = %hu",
145 sctx->cmd_attrs[tlv_type] = tlv_hdr;
147 data += sizeof(*tlv_hdr) + tlv_len;
148 pos += sizeof(*tlv_hdr) + tlv_len;
158 static int tlv_get(struct btrfs_send_stream *sctx, int attr, void **data, int *len)
161 struct btrfs_tlv_header *h;
163 if (attr <= 0 || attr > BTRFS_SEND_A_MAX) {
164 error("invalid attribute requested, attr = %d", attr);
169 h = sctx->cmd_attrs[attr];
171 error("attribute %d requested but not present", attr);
176 *len = le16_to_cpu(h->tlv_len);
185 #define __TLV_GOTO_FAIL(expr) \
186 if ((ret = expr) < 0) \
189 #define __TLV_DO_WHILE_GOTO_FAIL(expr) \
191 __TLV_GOTO_FAIL(expr) \
195 #define TLV_GET(s, attr, data, len) \
196 __TLV_DO_WHILE_GOTO_FAIL(tlv_get(s, attr, data, len))
198 #define TLV_CHECK_LEN(expected, got) \
200 if (expected != got) { \
201 error("invalid size for attribute, " \
202 "expected = %d, got = %d", \
203 (int)expected, (int)got); \
205 goto tlv_get_failed; \
209 #define TLV_GET_INT(s, attr, bits, v) \
213 TLV_GET(s, attr, (void**)&__tmp, &__len); \
214 TLV_CHECK_LEN(sizeof(*__tmp), __len); \
215 *v = get_unaligned_le##bits(__tmp); \
218 #define TLV_GET_U8(s, attr, v) TLV_GET_INT(s, attr, 8, v)
219 #define TLV_GET_U16(s, attr, v) TLV_GET_INT(s, attr, 16, v)
220 #define TLV_GET_U32(s, attr, v) TLV_GET_INT(s, attr, 32, v)
221 #define TLV_GET_U64(s, attr, v) TLV_GET_INT(s, attr, 64, v)
223 static int tlv_get_string(struct btrfs_send_stream *sctx, int attr, char **str)
229 TLV_GET(sctx, attr, &data, &len);
231 *str = malloc(len + 1);
235 memcpy(*str, data, len);
242 #define TLV_GET_STRING(s, attr, str) \
243 __TLV_DO_WHILE_GOTO_FAIL(tlv_get_string(s, attr, str))
245 static int tlv_get_timespec(struct btrfs_send_stream *sctx,
246 int attr, struct timespec *ts)
250 struct btrfs_timespec *bts;
252 TLV_GET(sctx, attr, (void**)&bts, &len);
253 TLV_CHECK_LEN(sizeof(*bts), len);
255 ts->tv_sec = le64_to_cpu(bts->sec);
256 ts->tv_nsec = le32_to_cpu(bts->nsec);
262 #define TLV_GET_TIMESPEC(s, attr, ts) \
263 __TLV_DO_WHILE_GOTO_FAIL(tlv_get_timespec(s, attr, ts))
265 static int tlv_get_uuid(struct btrfs_send_stream *sctx, int attr, u8 *uuid)
271 TLV_GET(sctx, attr, &data, &len);
272 TLV_CHECK_LEN(BTRFS_UUID_SIZE, len);
273 memcpy(uuid, data, BTRFS_UUID_SIZE);
280 #define TLV_GET_UUID(s, attr, uuid) \
281 __TLV_DO_WHILE_GOTO_FAIL(tlv_get_uuid(s, attr, uuid))
283 static int read_and_process_cmd(struct btrfs_send_stream *sctx)
287 char *path_to = NULL;
288 char *clone_path = NULL;
289 char *xattr_name = NULL;
290 void *xattr_data = NULL;
295 u8 uuid[BTRFS_UUID_SIZE];
296 u8 clone_uuid[BTRFS_UUID_SIZE];
308 ret = read_cmd(sctx);
313 case BTRFS_SEND_C_SUBVOL:
314 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
315 TLV_GET_UUID(sctx, BTRFS_SEND_A_UUID, uuid);
316 TLV_GET_U64(sctx, BTRFS_SEND_A_CTRANSID, &ctransid);
317 ret = sctx->ops->subvol(path, uuid, ctransid, sctx->user);
319 case BTRFS_SEND_C_SNAPSHOT:
320 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
321 TLV_GET_UUID(sctx, BTRFS_SEND_A_UUID, uuid);
322 TLV_GET_U64(sctx, BTRFS_SEND_A_CTRANSID, &ctransid);
323 TLV_GET_UUID(sctx, BTRFS_SEND_A_CLONE_UUID, clone_uuid);
324 TLV_GET_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID, &clone_ctransid);
325 ret = sctx->ops->snapshot(path, uuid, ctransid, clone_uuid,
326 clone_ctransid, sctx->user);
328 case BTRFS_SEND_C_MKFILE:
329 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
330 ret = sctx->ops->mkfile(path, sctx->user);
332 case BTRFS_SEND_C_MKDIR:
333 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
334 ret = sctx->ops->mkdir(path, sctx->user);
336 case BTRFS_SEND_C_MKNOD:
337 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
338 TLV_GET_U64(sctx, BTRFS_SEND_A_MODE, &mode);
339 TLV_GET_U64(sctx, BTRFS_SEND_A_RDEV, &dev);
340 ret = sctx->ops->mknod(path, mode, dev, sctx->user);
342 case BTRFS_SEND_C_MKFIFO:
343 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
344 ret = sctx->ops->mkfifo(path, sctx->user);
346 case BTRFS_SEND_C_MKSOCK:
347 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
348 ret = sctx->ops->mksock(path, sctx->user);
350 case BTRFS_SEND_C_SYMLINK:
351 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
352 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH_LINK, &path_to);
353 ret = sctx->ops->symlink(path, path_to, sctx->user);
355 case BTRFS_SEND_C_RENAME:
356 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
357 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH_TO, &path_to);
358 ret = sctx->ops->rename(path, path_to, sctx->user);
360 case BTRFS_SEND_C_LINK:
361 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
362 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH_LINK, &path_to);
363 ret = sctx->ops->link(path, path_to, sctx->user);
365 case BTRFS_SEND_C_UNLINK:
366 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
367 ret = sctx->ops->unlink(path, sctx->user);
369 case BTRFS_SEND_C_RMDIR:
370 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
371 ret = sctx->ops->rmdir(path, sctx->user);
373 case BTRFS_SEND_C_WRITE:
374 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
375 TLV_GET_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, &offset);
376 TLV_GET(sctx, BTRFS_SEND_A_DATA, &data, &len);
377 ret = sctx->ops->write(path, data, offset, len, sctx->user);
379 case BTRFS_SEND_C_CLONE:
380 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
381 TLV_GET_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, &offset);
382 TLV_GET_U64(sctx, BTRFS_SEND_A_CLONE_LEN, &len);
383 TLV_GET_UUID(sctx, BTRFS_SEND_A_CLONE_UUID, clone_uuid);
384 TLV_GET_U64(sctx, BTRFS_SEND_A_CLONE_CTRANSID, &clone_ctransid);
385 TLV_GET_STRING(sctx, BTRFS_SEND_A_CLONE_PATH, &clone_path);
386 TLV_GET_U64(sctx, BTRFS_SEND_A_CLONE_OFFSET, &clone_offset);
387 ret = sctx->ops->clone(path, offset, len, clone_uuid,
388 clone_ctransid, clone_path, clone_offset,
391 case BTRFS_SEND_C_SET_XATTR:
392 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
393 TLV_GET_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, &xattr_name);
394 TLV_GET(sctx, BTRFS_SEND_A_XATTR_DATA, &xattr_data, &xattr_len);
395 ret = sctx->ops->set_xattr(path, xattr_name, xattr_data,
396 xattr_len, sctx->user);
398 case BTRFS_SEND_C_REMOVE_XATTR:
399 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
400 TLV_GET_STRING(sctx, BTRFS_SEND_A_XATTR_NAME, &xattr_name);
401 ret = sctx->ops->remove_xattr(path, xattr_name, sctx->user);
403 case BTRFS_SEND_C_TRUNCATE:
404 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
405 TLV_GET_U64(sctx, BTRFS_SEND_A_SIZE, &tmp);
406 ret = sctx->ops->truncate(path, tmp, sctx->user);
408 case BTRFS_SEND_C_CHMOD:
409 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
410 TLV_GET_U64(sctx, BTRFS_SEND_A_MODE, &tmp);
411 ret = sctx->ops->chmod(path, tmp, sctx->user);
413 case BTRFS_SEND_C_CHOWN:
414 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
415 TLV_GET_U64(sctx, BTRFS_SEND_A_UID, &tmp);
416 TLV_GET_U64(sctx, BTRFS_SEND_A_GID, &tmp2);
417 ret = sctx->ops->chown(path, tmp, tmp2, sctx->user);
419 case BTRFS_SEND_C_UTIMES:
420 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
421 TLV_GET_TIMESPEC(sctx, BTRFS_SEND_A_ATIME, &at);
422 TLV_GET_TIMESPEC(sctx, BTRFS_SEND_A_MTIME, &mt);
423 TLV_GET_TIMESPEC(sctx, BTRFS_SEND_A_CTIME, &ct);
424 ret = sctx->ops->utimes(path, &at, &mt, &ct, sctx->user);
426 case BTRFS_SEND_C_UPDATE_EXTENT:
427 TLV_GET_STRING(sctx, BTRFS_SEND_A_PATH, &path);
428 TLV_GET_U64(sctx, BTRFS_SEND_A_FILE_OFFSET, &offset);
429 TLV_GET_U64(sctx, BTRFS_SEND_A_SIZE, &tmp);
430 ret = sctx->ops->update_extent(path, offset, tmp, sctx->user);
432 case BTRFS_SEND_C_END:
447 * If max_errors is 0, then don't stop processing the stream if one of the
448 * callbacks in btrfs_send_ops structure returns an error. If greater than
449 * zero, stop after max_errors errors happened.
451 int btrfs_read_and_process_send_stream(int fd,
452 struct btrfs_send_ops *ops, void *user,
457 struct btrfs_send_stream sctx;
458 struct btrfs_stream_header hdr;
466 ret = read_buf(&sctx, (char*)&hdr, sizeof(hdr));
474 if (strcmp(hdr.magic, BTRFS_SEND_STREAM_MAGIC)) {
476 error("unexpected header");
480 sctx.version = le32_to_cpu(hdr.version);
481 if (sctx.version > BTRFS_SEND_STREAM_VERSION) {
483 error("stream version %d not supported, please use newer version",
489 ret = read_and_process_cmd(&sctx);
493 if (max_errors > 0 && errors >= max_errors)
495 } else if (ret > 0) {
503 if (last_err && !ret)