1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2012 Alexander Block. All rights reserved.
4 * Copyright (C) 2012 STRATO. All rights reserved.
10 #include <linux/types.h>
12 #define BTRFS_SEND_STREAM_MAGIC "btrfs-stream"
13 /* Conditional support for the upcoming protocol version. */
14 #ifdef CONFIG_BTRFS_DEBUG
15 #define BTRFS_SEND_STREAM_VERSION 3
17 #define BTRFS_SEND_STREAM_VERSION 2
21 * In send stream v1, no command is larger than 64K. In send stream v2, no
22 * limit should be assumed, the buffer size is set to be a header with
23 * compressed extent size.
25 #define BTRFS_SEND_BUF_SIZE_V1 SZ_64K
26 #define BTRFS_SEND_BUF_SIZE_V2 ALIGN(SZ_16K + BTRFS_MAX_COMPRESSED, PAGE_SIZE)
29 struct btrfs_ioctl_send_args;
42 struct btrfs_stream_header {
43 char magic[sizeof(BTRFS_SEND_STREAM_MAGIC)];
45 } __attribute__ ((__packed__));
47 struct btrfs_cmd_header {
48 /* len excluding the header */
51 /* crc including the header with zero crc field */
53 } __attribute__ ((__packed__));
55 struct btrfs_tlv_header {
57 /* len excluding the header */
59 } __attribute__ ((__packed__));
63 BTRFS_SEND_C_UNSPEC = 0,
66 BTRFS_SEND_C_SUBVOL = 1,
67 BTRFS_SEND_C_SNAPSHOT = 2,
69 BTRFS_SEND_C_MKFILE = 3,
70 BTRFS_SEND_C_MKDIR = 4,
71 BTRFS_SEND_C_MKNOD = 5,
72 BTRFS_SEND_C_MKFIFO = 6,
73 BTRFS_SEND_C_MKSOCK = 7,
74 BTRFS_SEND_C_SYMLINK = 8,
76 BTRFS_SEND_C_RENAME = 9,
77 BTRFS_SEND_C_LINK = 10,
78 BTRFS_SEND_C_UNLINK = 11,
79 BTRFS_SEND_C_RMDIR = 12,
81 BTRFS_SEND_C_SET_XATTR = 13,
82 BTRFS_SEND_C_REMOVE_XATTR = 14,
84 BTRFS_SEND_C_WRITE = 15,
85 BTRFS_SEND_C_CLONE = 16,
87 BTRFS_SEND_C_TRUNCATE = 17,
88 BTRFS_SEND_C_CHMOD = 18,
89 BTRFS_SEND_C_CHOWN = 19,
90 BTRFS_SEND_C_UTIMES = 20,
92 BTRFS_SEND_C_END = 21,
93 BTRFS_SEND_C_UPDATE_EXTENT = 22,
94 BTRFS_SEND_C_MAX_V1 = 22,
97 BTRFS_SEND_C_FALLOCATE = 23,
98 BTRFS_SEND_C_FILEATTR = 24,
99 BTRFS_SEND_C_ENCODED_WRITE = 25,
100 BTRFS_SEND_C_MAX_V2 = 25,
103 BTRFS_SEND_C_ENABLE_VERITY = 26,
104 BTRFS_SEND_C_MAX_V3 = 26,
106 BTRFS_SEND_C_MAX = 26,
109 /* attributes in send stream */
111 BTRFS_SEND_A_UNSPEC = 0,
114 BTRFS_SEND_A_UUID = 1,
115 BTRFS_SEND_A_CTRANSID = 2,
117 BTRFS_SEND_A_INO = 3,
118 BTRFS_SEND_A_SIZE = 4,
119 BTRFS_SEND_A_MODE = 5,
120 BTRFS_SEND_A_UID = 6,
121 BTRFS_SEND_A_GID = 7,
122 BTRFS_SEND_A_RDEV = 8,
123 BTRFS_SEND_A_CTIME = 9,
124 BTRFS_SEND_A_MTIME = 10,
125 BTRFS_SEND_A_ATIME = 11,
126 BTRFS_SEND_A_OTIME = 12,
128 BTRFS_SEND_A_XATTR_NAME = 13,
129 BTRFS_SEND_A_XATTR_DATA = 14,
131 BTRFS_SEND_A_PATH = 15,
132 BTRFS_SEND_A_PATH_TO = 16,
133 BTRFS_SEND_A_PATH_LINK = 17,
135 BTRFS_SEND_A_FILE_OFFSET = 18,
137 * As of send stream v2, this attribute is special: it must be the last
138 * attribute in a command, its header contains only the type, and its
139 * length is implicitly the remaining length of the command.
141 BTRFS_SEND_A_DATA = 19,
143 BTRFS_SEND_A_CLONE_UUID = 20,
144 BTRFS_SEND_A_CLONE_CTRANSID = 21,
145 BTRFS_SEND_A_CLONE_PATH = 22,
146 BTRFS_SEND_A_CLONE_OFFSET = 23,
147 BTRFS_SEND_A_CLONE_LEN = 24,
149 BTRFS_SEND_A_MAX_V1 = 24,
152 BTRFS_SEND_A_FALLOCATE_MODE = 25,
155 * File attributes from the FS_*_FL namespace (i_flags, xflags),
156 * translated to BTRFS_INODE_* bits (BTRFS_INODE_FLAG_MASK) and stored
157 * in btrfs_inode_item::flags (represented by btrfs_inode::flags and
158 * btrfs_inode::ro_flags).
160 BTRFS_SEND_A_FILEATTR = 26,
162 BTRFS_SEND_A_UNENCODED_FILE_LEN = 27,
163 BTRFS_SEND_A_UNENCODED_LEN = 28,
164 BTRFS_SEND_A_UNENCODED_OFFSET = 29,
166 * COMPRESSION and ENCRYPTION default to NONE (0) if omitted from
167 * BTRFS_SEND_C_ENCODED_WRITE.
169 BTRFS_SEND_A_COMPRESSION = 30,
170 BTRFS_SEND_A_ENCRYPTION = 31,
171 BTRFS_SEND_A_MAX_V2 = 31,
174 BTRFS_SEND_A_VERITY_ALGORITHM = 32,
175 BTRFS_SEND_A_VERITY_BLOCK_SIZE = 33,
176 BTRFS_SEND_A_VERITY_SALT_DATA = 34,
177 BTRFS_SEND_A_VERITY_SIG_DATA = 35,
178 BTRFS_SEND_A_MAX_V3 = 35,
180 __BTRFS_SEND_A_MAX = 35,
183 long btrfs_ioctl_send(struct inode *inode, struct btrfs_ioctl_send_args *arg);