blob: 5d449f83013fed6b3ff5fe57787b9c84f0b635cc [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Ben Cheng655a7c02013-10-16 16:09:24 -07007#ifndef _UAPI_LINUX_BTRFS_H
8#define _UAPI_LINUX_BTRFS_H
Christopher Ferris8b7fdc92023-02-21 13:36:32 -08009#ifdef __cplusplus
10extern "C" {
11#endif
Ben Cheng655a7c02013-10-16 16:09:24 -070012#include <linux/types.h>
13#include <linux/ioctl.h>
Christopher Ferris8b7fdc92023-02-21 13:36:32 -080014#include <linux/fs.h>
Ben Cheng655a7c02013-10-16 16:09:24 -070015#define BTRFS_IOCTL_MAGIC 0x94
16#define BTRFS_VOL_NAME_MAX 255
Christopher Ferris106b3a82016-08-24 12:15:38 -070017#define BTRFS_LABEL_SIZE 256
Ben Cheng655a7c02013-10-16 16:09:24 -070018#define BTRFS_PATH_NAME_MAX 4087
Christopher Ferris106b3a82016-08-24 12:15:38 -070019struct btrfs_ioctl_vol_args {
Tao Baod7db5942015-01-28 10:07:51 -080020 __s64 fd;
21 char name[BTRFS_PATH_NAME_MAX + 1];
Ben Cheng655a7c02013-10-16 16:09:24 -070022};
Christopher Ferris106b3a82016-08-24 12:15:38 -070023#define BTRFS_DEVICE_PATH_NAME_MAX 1024
Christopher Ferris76a1d452018-06-27 14:12:29 -070024#define BTRFS_SUBVOL_NAME_MAX 4039
25#define BTRFS_SUBVOL_CREATE_ASYNC (1ULL << 0)
26#define BTRFS_SUBVOL_RDONLY (1ULL << 1)
27#define BTRFS_SUBVOL_QGROUP_INHERIT (1ULL << 2)
Christopher Ferris106b3a82016-08-24 12:15:38 -070028#define BTRFS_DEVICE_SPEC_BY_ID (1ULL << 3)
Christopher Ferrisaf09c702020-06-01 20:29:29 -070029#define BTRFS_SUBVOL_SPEC_BY_ID (1ULL << 4)
30#define BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED (BTRFS_SUBVOL_RDONLY | BTRFS_SUBVOL_QGROUP_INHERIT | BTRFS_DEVICE_SPEC_BY_ID | BTRFS_SUBVOL_SPEC_BY_ID)
Ben Cheng655a7c02013-10-16 16:09:24 -070031#define BTRFS_FSID_SIZE 16
Ben Cheng655a7c02013-10-16 16:09:24 -070032#define BTRFS_UUID_SIZE 16
Christopher Ferrisba8d4f42014-09-03 19:56:49 -070033#define BTRFS_UUID_UNPARSED_SIZE 37
Christopher Ferris106b3a82016-08-24 12:15:38 -070034#define BTRFS_QGROUP_LIMIT_MAX_RFER (1ULL << 0)
35#define BTRFS_QGROUP_LIMIT_MAX_EXCL (1ULL << 1)
Christopher Ferris106b3a82016-08-24 12:15:38 -070036#define BTRFS_QGROUP_LIMIT_RSV_RFER (1ULL << 2)
37#define BTRFS_QGROUP_LIMIT_RSV_EXCL (1ULL << 3)
38#define BTRFS_QGROUP_LIMIT_RFER_CMPR (1ULL << 4)
39#define BTRFS_QGROUP_LIMIT_EXCL_CMPR (1ULL << 5)
Christopher Ferris106b3a82016-08-24 12:15:38 -070040struct btrfs_qgroup_limit {
Tao Baod7db5942015-01-28 10:07:51 -080041 __u64 flags;
42 __u64 max_rfer;
43 __u64 max_excl;
Christopher Ferris106b3a82016-08-24 12:15:38 -070044 __u64 rsv_rfer;
Tao Baod7db5942015-01-28 10:07:51 -080045 __u64 rsv_excl;
Ben Cheng655a7c02013-10-16 16:09:24 -070046};
Christopher Ferris106b3a82016-08-24 12:15:38 -070047#define BTRFS_QGROUP_INHERIT_SET_LIMITS (1ULL << 0)
Ben Cheng655a7c02013-10-16 16:09:24 -070048struct btrfs_qgroup_inherit {
Tao Baod7db5942015-01-28 10:07:51 -080049 __u64 flags;
Tao Baod7db5942015-01-28 10:07:51 -080050 __u64 num_qgroups;
51 __u64 num_ref_copies;
52 __u64 num_excl_copies;
53 struct btrfs_qgroup_limit lim;
Christopher Ferris7447a1c2022-10-04 18:24:44 -070054 __u64 qgroups[];
Ben Cheng655a7c02013-10-16 16:09:24 -070055};
56struct btrfs_ioctl_qgroup_limit_args {
Tao Baod7db5942015-01-28 10:07:51 -080057 __u64 qgroupid;
Tao Baod7db5942015-01-28 10:07:51 -080058 struct btrfs_qgroup_limit lim;
Ben Cheng655a7c02013-10-16 16:09:24 -070059};
Christopher Ferrisaf09c702020-06-01 20:29:29 -070060#define BTRFS_DEVICE_REMOVE_ARGS_MASK (BTRFS_DEVICE_SPEC_BY_ID)
61#define BTRFS_SUBVOL_CREATE_ARGS_MASK (BTRFS_SUBVOL_RDONLY | BTRFS_SUBVOL_QGROUP_INHERIT)
62#define BTRFS_SUBVOL_DELETE_ARGS_MASK (BTRFS_SUBVOL_SPEC_BY_ID)
Christopher Ferris106b3a82016-08-24 12:15:38 -070063struct btrfs_ioctl_vol_args_v2 {
Tao Baod7db5942015-01-28 10:07:51 -080064 __s64 fd;
65 __u64 transid;
66 __u64 flags;
Christopher Ferris106b3a82016-08-24 12:15:38 -070067 union {
Tao Baod7db5942015-01-28 10:07:51 -080068 struct {
69 __u64 size;
Elliott Hughes0f0c18f2023-03-29 15:53:31 -070070 struct btrfs_qgroup_inherit * qgroup_inherit;
Christopher Ferris106b3a82016-08-24 12:15:38 -070071 };
Tao Baod7db5942015-01-28 10:07:51 -080072 __u64 unused[4];
73 };
Christopher Ferris106b3a82016-08-24 12:15:38 -070074 union {
Christopher Ferris106b3a82016-08-24 12:15:38 -070075 char name[BTRFS_SUBVOL_NAME_MAX + 1];
76 __u64 devid;
Christopher Ferrisaf09c702020-06-01 20:29:29 -070077 __u64 subvolid;
Christopher Ferris106b3a82016-08-24 12:15:38 -070078 };
Ben Cheng655a7c02013-10-16 16:09:24 -070079};
Christopher Ferrisba8d4f42014-09-03 19:56:49 -070080struct btrfs_scrub_progress {
Tao Baod7db5942015-01-28 10:07:51 -080081 __u64 data_extents_scrubbed;
82 __u64 tree_extents_scrubbed;
83 __u64 data_bytes_scrubbed;
Tao Baod7db5942015-01-28 10:07:51 -080084 __u64 tree_bytes_scrubbed;
85 __u64 read_errors;
86 __u64 csum_errors;
87 __u64 verify_errors;
Tao Baod7db5942015-01-28 10:07:51 -080088 __u64 no_csum;
89 __u64 csum_discards;
90 __u64 super_errors;
91 __u64 malloc_errors;
Tao Baod7db5942015-01-28 10:07:51 -080092 __u64 uncorrectable_errors;
93 __u64 corrected_errors;
94 __u64 last_physical;
95 __u64 unverified_errors;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -070096};
Ben Cheng655a7c02013-10-16 16:09:24 -070097#define BTRFS_SCRUB_READONLY 1
Christopher Ferris37c3f3c2023-07-10 10:59:05 -070098#define BTRFS_SCRUB_SUPPORTED_FLAGS (BTRFS_SCRUB_READONLY)
Ben Cheng655a7c02013-10-16 16:09:24 -070099struct btrfs_ioctl_scrub_args {
Tao Baod7db5942015-01-28 10:07:51 -0800100 __u64 devid;
Tao Baod7db5942015-01-28 10:07:51 -0800101 __u64 start;
102 __u64 end;
103 __u64 flags;
104 struct btrfs_scrub_progress progress;
Tao Baod7db5942015-01-28 10:07:51 -0800105 __u64 unused[(1024 - 32 - sizeof(struct btrfs_scrub_progress)) / 8];
Ben Cheng655a7c02013-10-16 16:09:24 -0700106};
107#define BTRFS_IOCTL_DEV_REPLACE_CONT_READING_FROM_SRCDEV_MODE_ALWAYS 0
108#define BTRFS_IOCTL_DEV_REPLACE_CONT_READING_FROM_SRCDEV_MODE_AVOID 1
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700109struct btrfs_ioctl_dev_replace_start_params {
Tao Baod7db5942015-01-28 10:07:51 -0800110 __u64 srcdevid;
111 __u64 cont_reading_from_srcdev_mode;
112 __u8 srcdev_name[BTRFS_DEVICE_PATH_NAME_MAX + 1];
Tao Baod7db5942015-01-28 10:07:51 -0800113 __u8 tgtdev_name[BTRFS_DEVICE_PATH_NAME_MAX + 1];
Ben Cheng655a7c02013-10-16 16:09:24 -0700114};
115#define BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED 0
116#define BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED 1
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700117#define BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED 2
Ben Cheng655a7c02013-10-16 16:09:24 -0700118#define BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED 3
119#define BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED 4
120struct btrfs_ioctl_dev_replace_status_params {
Tao Baod7db5942015-01-28 10:07:51 -0800121 __u64 replace_state;
122 __u64 progress_1000;
123 __u64 time_started;
124 __u64 time_stopped;
Tao Baod7db5942015-01-28 10:07:51 -0800125 __u64 num_write_errors;
126 __u64 num_uncorrectable_read_errors;
Ben Cheng655a7c02013-10-16 16:09:24 -0700127};
128#define BTRFS_IOCTL_DEV_REPLACE_CMD_START 0
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700129#define BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700130#define BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL 2
131#define BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR 0
132#define BTRFS_IOCTL_DEV_REPLACE_RESULT_NOT_STARTED 1
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700133#define BTRFS_IOCTL_DEV_REPLACE_RESULT_ALREADY_STARTED 2
Christopher Ferris05d08e92016-02-04 13:16:38 -0800134#define BTRFS_IOCTL_DEV_REPLACE_RESULT_SCRUB_INPROGRESS 3
Ben Cheng655a7c02013-10-16 16:09:24 -0700135struct btrfs_ioctl_dev_replace_args {
Tao Baod7db5942015-01-28 10:07:51 -0800136 __u64 cmd;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800137 __u64 result;
Tao Baod7db5942015-01-28 10:07:51 -0800138 union {
139 struct btrfs_ioctl_dev_replace_start_params start;
140 struct btrfs_ioctl_dev_replace_status_params status;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800141 };
Tao Baod7db5942015-01-28 10:07:51 -0800142 __u64 spare[64];
Ben Cheng655a7c02013-10-16 16:09:24 -0700143};
144struct btrfs_ioctl_dev_info_args {
Christopher Ferris05d08e92016-02-04 13:16:38 -0800145 __u64 devid;
Tao Baod7db5942015-01-28 10:07:51 -0800146 __u8 uuid[BTRFS_UUID_SIZE];
147 __u64 bytes_used;
148 __u64 total_bytes;
Christopher Ferrisb7cef6d2023-05-09 19:04:15 +0000149 __u8 fsid[BTRFS_UUID_SIZE];
150 __u64 unused[377];
Tao Baod7db5942015-01-28 10:07:51 -0800151 __u8 path[BTRFS_DEVICE_PATH_NAME_MAX];
Ben Cheng655a7c02013-10-16 16:09:24 -0700152};
Christopher Ferris25c18d42020-10-14 17:42:58 -0700153#define BTRFS_FS_INFO_FLAG_CSUM_INFO (1 << 0)
154#define BTRFS_FS_INFO_FLAG_GENERATION (1 << 1)
155#define BTRFS_FS_INFO_FLAG_METADATA_UUID (1 << 2)
Ben Cheng655a7c02013-10-16 16:09:24 -0700156struct btrfs_ioctl_fs_info_args {
Christopher Ferris05d08e92016-02-04 13:16:38 -0800157 __u64 max_id;
Tao Baod7db5942015-01-28 10:07:51 -0800158 __u64 num_devices;
159 __u8 fsid[BTRFS_FSID_SIZE];
160 __u32 nodesize;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800161 __u32 sectorsize;
Tao Baod7db5942015-01-28 10:07:51 -0800162 __u32 clone_alignment;
Christopher Ferris25c18d42020-10-14 17:42:58 -0700163 __u16 csum_type;
164 __u16 csum_size;
165 __u64 flags;
166 __u64 generation;
167 __u8 metadata_uuid[BTRFS_FSID_SIZE];
168 __u8 reserved[944];
Christopher Ferris05d08e92016-02-04 13:16:38 -0800169};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700170#define BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE (1ULL << 0)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800171#define BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE_VALID (1ULL << 1)
Christopher Ferris2abfa9e2021-11-01 16:26:06 -0700172#define BTRFS_FEATURE_COMPAT_RO_VERITY (1ULL << 2)
Christopher Ferris6cd53a52022-12-12 23:39:16 +0000173#define BTRFS_FEATURE_COMPAT_RO_BLOCK_GROUP_TREE (1ULL << 3)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700174#define BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF (1ULL << 0)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800175#define BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL (1ULL << 1)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700176#define BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS (1ULL << 2)
177#define BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO (1ULL << 3)
Christopher Ferris1308ad32017-11-14 17:32:13 -0800178#define BTRFS_FEATURE_INCOMPAT_COMPRESS_ZSTD (1ULL << 4)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800179#define BTRFS_FEATURE_INCOMPAT_BIG_METADATA (1ULL << 5)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700180#define BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF (1ULL << 6)
181#define BTRFS_FEATURE_INCOMPAT_RAID56 (1ULL << 7)
182#define BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA (1ULL << 8)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800183#define BTRFS_FEATURE_INCOMPAT_NO_HOLES (1ULL << 9)
Christopher Ferrisd842e432019-03-07 10:21:59 -0800184#define BTRFS_FEATURE_INCOMPAT_METADATA_UUID (1ULL << 10)
Christopher Ferrisd32ca142020-02-04 16:16:51 -0800185#define BTRFS_FEATURE_INCOMPAT_RAID1C34 (1ULL << 11)
Christopher Ferris05667cd2021-02-16 16:01:34 -0800186#define BTRFS_FEATURE_INCOMPAT_ZONED (1ULL << 12)
Christopher Ferris10a76e62022-06-08 13:31:52 -0700187#define BTRFS_FEATURE_INCOMPAT_EXTENT_TREE_V2 (1ULL << 13)
Christopher Ferris0f795212024-01-17 14:17:28 -0800188#define BTRFS_FEATURE_INCOMPAT_RAID_STRIPE_TREE (1ULL << 14)
189#define BTRFS_FEATURE_INCOMPAT_SIMPLE_QUOTA (1ULL << 16)
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700190struct btrfs_ioctl_feature_flags {
Tao Baod7db5942015-01-28 10:07:51 -0800191 __u64 compat_flags;
192 __u64 compat_ro_flags;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800193 __u64 incompat_flags;
Christopher Ferrisba8d4f42014-09-03 19:56:49 -0700194};
Christopher Ferris38062f92014-07-09 15:33:25 -0700195#define BTRFS_BALANCE_CTL_PAUSE 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700196#define BTRFS_BALANCE_CTL_CANCEL 2
Christopher Ferris49f525c2016-12-12 14:55:36 -0800197struct btrfs_balance_args {
Tao Baod7db5942015-01-28 10:07:51 -0800198 __u64 profiles;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800199 union {
Christopher Ferris525ce912017-07-26 13:12:53 -0700200 __u64 usage;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800201 struct {
Christopher Ferris525ce912017-07-26 13:12:53 -0700202 __u32 usage_min;
203 __u32 usage_max;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800204 };
Christopher Ferris49f525c2016-12-12 14:55:36 -0800205 };
Tao Baod7db5942015-01-28 10:07:51 -0800206 __u64 devid;
207 __u64 pstart;
Tao Baod7db5942015-01-28 10:07:51 -0800208 __u64 pend;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800209 __u64 vstart;
Tao Baod7db5942015-01-28 10:07:51 -0800210 __u64 vend;
211 __u64 target;
Tao Baod7db5942015-01-28 10:07:51 -0800212 __u64 flags;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800213 union {
Christopher Ferris05d08e92016-02-04 13:16:38 -0800214 __u64 limit;
215 struct {
216 __u32 limit_min;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800217 __u32 limit_max;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800218 };
219 };
Christopher Ferris525ce912017-07-26 13:12:53 -0700220 __u32 stripes_min;
221 __u32 stripes_max;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800222 __u64 unused[6];
223} __attribute__((__packed__));
Ben Cheng655a7c02013-10-16 16:09:24 -0700224struct btrfs_balance_progress {
Christopher Ferris49f525c2016-12-12 14:55:36 -0800225 __u64 expected;
Tao Baod7db5942015-01-28 10:07:51 -0800226 __u64 considered;
227 __u64 completed;
Ben Cheng655a7c02013-10-16 16:09:24 -0700228};
Christopher Ferris49f525c2016-12-12 14:55:36 -0800229#define BTRFS_BALANCE_DATA (1ULL << 0)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700230#define BTRFS_BALANCE_SYSTEM (1ULL << 1)
231#define BTRFS_BALANCE_METADATA (1ULL << 2)
232#define BTRFS_BALANCE_TYPE_MASK (BTRFS_BALANCE_DATA | BTRFS_BALANCE_SYSTEM | BTRFS_BALANCE_METADATA)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800233#define BTRFS_BALANCE_FORCE (1ULL << 3)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700234#define BTRFS_BALANCE_RESUME (1ULL << 4)
235#define BTRFS_BALANCE_ARGS_PROFILES (1ULL << 0)
236#define BTRFS_BALANCE_ARGS_USAGE (1ULL << 1)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800237#define BTRFS_BALANCE_ARGS_DEVID (1ULL << 2)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700238#define BTRFS_BALANCE_ARGS_DRANGE (1ULL << 3)
239#define BTRFS_BALANCE_ARGS_VRANGE (1ULL << 4)
240#define BTRFS_BALANCE_ARGS_LIMIT (1ULL << 5)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800241#define BTRFS_BALANCE_ARGS_LIMIT_RANGE (1ULL << 6)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700242#define BTRFS_BALANCE_ARGS_STRIPES_RANGE (1ULL << 7)
243#define BTRFS_BALANCE_ARGS_USAGE_RANGE (1ULL << 10)
244#define BTRFS_BALANCE_ARGS_MASK (BTRFS_BALANCE_ARGS_PROFILES | BTRFS_BALANCE_ARGS_USAGE | BTRFS_BALANCE_ARGS_DEVID | BTRFS_BALANCE_ARGS_DRANGE | BTRFS_BALANCE_ARGS_VRANGE | BTRFS_BALANCE_ARGS_LIMIT | BTRFS_BALANCE_ARGS_LIMIT_RANGE | BTRFS_BALANCE_ARGS_STRIPES_RANGE | BTRFS_BALANCE_ARGS_USAGE_RANGE)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800245#define BTRFS_BALANCE_ARGS_CONVERT (1ULL << 8)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700246#define BTRFS_BALANCE_ARGS_SOFT (1ULL << 9)
Ben Cheng655a7c02013-10-16 16:09:24 -0700247#define BTRFS_BALANCE_STATE_RUNNING (1ULL << 0)
Christopher Ferris38062f92014-07-09 15:33:25 -0700248#define BTRFS_BALANCE_STATE_PAUSE_REQ (1ULL << 1)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800249#define BTRFS_BALANCE_STATE_CANCEL_REQ (1ULL << 2)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700250struct btrfs_ioctl_balance_args {
Tao Baod7db5942015-01-28 10:07:51 -0800251 __u64 flags;
252 __u64 state;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800253 struct btrfs_balance_args data;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700254 struct btrfs_balance_args meta;
Tao Baod7db5942015-01-28 10:07:51 -0800255 struct btrfs_balance_args sys;
256 struct btrfs_balance_progress stat;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800257 __u64 unused[72];
Christopher Ferris106b3a82016-08-24 12:15:38 -0700258};
Ben Cheng655a7c02013-10-16 16:09:24 -0700259#define BTRFS_INO_LOOKUP_PATH_MAX 4080
Christopher Ferris38062f92014-07-09 15:33:25 -0700260struct btrfs_ioctl_ino_lookup_args {
Christopher Ferris49f525c2016-12-12 14:55:36 -0800261 __u64 treeid;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700262 __u64 objectid;
Tao Baod7db5942015-01-28 10:07:51 -0800263 char name[BTRFS_INO_LOOKUP_PATH_MAX];
Christopher Ferris38062f92014-07-09 15:33:25 -0700264};
Christopher Ferris9ce28842018-10-25 12:11:39 -0700265#define BTRFS_INO_LOOKUP_USER_PATH_MAX (4080 - BTRFS_VOL_NAME_MAX - 1)
266struct btrfs_ioctl_ino_lookup_user_args {
267 __u64 dirid;
268 __u64 treeid;
269 char name[BTRFS_VOL_NAME_MAX + 1];
270 char path[BTRFS_INO_LOOKUP_USER_PATH_MAX];
271};
Christopher Ferris49f525c2016-12-12 14:55:36 -0800272struct btrfs_ioctl_search_key {
Christopher Ferris106b3a82016-08-24 12:15:38 -0700273 __u64 tree_id;
Tao Baod7db5942015-01-28 10:07:51 -0800274 __u64 min_objectid;
275 __u64 max_objectid;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800276 __u64 min_offset;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700277 __u64 max_offset;
Tao Baod7db5942015-01-28 10:07:51 -0800278 __u64 min_transid;
279 __u64 max_transid;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800280 __u32 min_type;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700281 __u32 max_type;
Tao Baod7db5942015-01-28 10:07:51 -0800282 __u32 nr_items;
283 __u32 unused;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800284 __u64 unused1;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700285 __u64 unused2;
Tao Baod7db5942015-01-28 10:07:51 -0800286 __u64 unused3;
287 __u64 unused4;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800288};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700289struct btrfs_ioctl_search_header {
Tao Baod7db5942015-01-28 10:07:51 -0800290 __u64 transid;
291 __u64 objectid;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800292 __u64 offset;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700293 __u32 type;
Tao Baod7db5942015-01-28 10:07:51 -0800294 __u32 len;
Christopher Ferris8b7fdc92023-02-21 13:36:32 -0800295} __attribute__((__may_alias__));
Christopher Ferris49f525c2016-12-12 14:55:36 -0800296#define BTRFS_SEARCH_ARGS_BUFSIZE (4096 - sizeof(struct btrfs_ioctl_search_key))
Christopher Ferris106b3a82016-08-24 12:15:38 -0700297struct btrfs_ioctl_search_args {
Tao Baod7db5942015-01-28 10:07:51 -0800298 struct btrfs_ioctl_search_key key;
299 char buf[BTRFS_SEARCH_ARGS_BUFSIZE];
Christopher Ferris49f525c2016-12-12 14:55:36 -0800300};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700301struct btrfs_ioctl_search_args_v2 {
Tao Baod7db5942015-01-28 10:07:51 -0800302 struct btrfs_ioctl_search_key key;
303 __u64 buf_size;
Christopher Ferris7447a1c2022-10-04 18:24:44 -0700304 __u64 buf[];
Christopher Ferris106b3a82016-08-24 12:15:38 -0700305};
Ben Cheng655a7c02013-10-16 16:09:24 -0700306struct btrfs_ioctl_clone_range_args {
Tao Baod7db5942015-01-28 10:07:51 -0800307 __s64 src_fd;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800308 __u64 src_offset, src_length;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700309 __u64 dest_offset;
Ben Cheng655a7c02013-10-16 16:09:24 -0700310};
311#define BTRFS_DEFRAG_RANGE_COMPRESS 1
Christopher Ferris49f525c2016-12-12 14:55:36 -0800312#define BTRFS_DEFRAG_RANGE_START_IO 2
Christopher Ferrisb830ddf2024-03-28 11:48:08 -0700313#define BTRFS_DEFRAG_RANGE_FLAGS_SUPP (BTRFS_DEFRAG_RANGE_COMPRESS | BTRFS_DEFRAG_RANGE_START_IO)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700314struct btrfs_ioctl_defrag_range_args {
315 __u64 start;
316 __u64 len;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800317 __u64 flags;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700318 __u32 extent_thresh;
319 __u32 compress_type;
320 __u32 unused[4];
Christopher Ferris49f525c2016-12-12 14:55:36 -0800321};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700322#define BTRFS_SAME_DATA_DIFFERS 1
Christopher Ferris38062f92014-07-09 15:33:25 -0700323struct btrfs_ioctl_same_extent_info {
Tao Baod7db5942015-01-28 10:07:51 -0800324 __s64 fd;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800325 __u64 logical_offset;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700326 __u64 bytes_deduped;
Tao Baod7db5942015-01-28 10:07:51 -0800327 __s32 status;
328 __u32 reserved;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800329};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700330struct btrfs_ioctl_same_args {
Tao Baod7db5942015-01-28 10:07:51 -0800331 __u64 logical_offset;
332 __u64 length;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800333 __u16 dest_count;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700334 __u16 reserved1;
Tao Baod7db5942015-01-28 10:07:51 -0800335 __u32 reserved2;
Christopher Ferris7447a1c2022-10-04 18:24:44 -0700336 struct btrfs_ioctl_same_extent_info info[];
Christopher Ferris49f525c2016-12-12 14:55:36 -0800337};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700338struct btrfs_ioctl_space_info {
Tao Baod7db5942015-01-28 10:07:51 -0800339 __u64 flags;
340 __u64 total_bytes;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800341 __u64 used_bytes;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700342};
Ben Cheng655a7c02013-10-16 16:09:24 -0700343struct btrfs_ioctl_space_args {
Tao Baod7db5942015-01-28 10:07:51 -0800344 __u64 space_slots;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800345 __u64 total_spaces;
Christopher Ferris7447a1c2022-10-04 18:24:44 -0700346 struct btrfs_ioctl_space_info spaces[];
Ben Cheng655a7c02013-10-16 16:09:24 -0700347};
348struct btrfs_data_container {
Christopher Ferris49f525c2016-12-12 14:55:36 -0800349 __u32 bytes_left;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700350 __u32 bytes_missing;
Tao Baod7db5942015-01-28 10:07:51 -0800351 __u32 elem_cnt;
352 __u32 elem_missed;
Christopher Ferris7447a1c2022-10-04 18:24:44 -0700353 __u64 val[];
Christopher Ferris106b3a82016-08-24 12:15:38 -0700354};
Ben Cheng655a7c02013-10-16 16:09:24 -0700355struct btrfs_ioctl_ino_path_args {
Tao Baod7db5942015-01-28 10:07:51 -0800356 __u64 inum;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800357 __u64 size;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700358 __u64 reserved[4];
Tao Baod7db5942015-01-28 10:07:51 -0800359 __u64 fspath;
Ben Cheng655a7c02013-10-16 16:09:24 -0700360};
Christopher Ferris49f525c2016-12-12 14:55:36 -0800361struct btrfs_ioctl_logical_ino_args {
Christopher Ferris106b3a82016-08-24 12:15:38 -0700362 __u64 logical;
Tao Baod7db5942015-01-28 10:07:51 -0800363 __u64 size;
Christopher Ferris934ec942018-01-31 15:29:16 -0800364 __u64 reserved[3];
365 __u64 flags;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800366 __u64 inodes;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700367};
Christopher Ferris934ec942018-01-31 15:29:16 -0800368#define BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET (1ULL << 0)
Ben Cheng655a7c02013-10-16 16:09:24 -0700369enum btrfs_dev_stat_values {
Tao Baod7db5942015-01-28 10:07:51 -0800370 BTRFS_DEV_STAT_WRITE_ERRS,
Christopher Ferris49f525c2016-12-12 14:55:36 -0800371 BTRFS_DEV_STAT_READ_ERRS,
Christopher Ferris106b3a82016-08-24 12:15:38 -0700372 BTRFS_DEV_STAT_FLUSH_ERRS,
Tao Baod7db5942015-01-28 10:07:51 -0800373 BTRFS_DEV_STAT_CORRUPTION_ERRS,
374 BTRFS_DEV_STAT_GENERATION_ERRS,
Christopher Ferris49f525c2016-12-12 14:55:36 -0800375 BTRFS_DEV_STAT_VALUES_MAX
Christopher Ferris106b3a82016-08-24 12:15:38 -0700376};
Ben Cheng655a7c02013-10-16 16:09:24 -0700377#define BTRFS_DEV_STATS_RESET (1ULL << 0)
378struct btrfs_ioctl_get_dev_stats {
Christopher Ferris49f525c2016-12-12 14:55:36 -0800379 __u64 devid;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700380 __u64 nr_items;
Tao Baod7db5942015-01-28 10:07:51 -0800381 __u64 flags;
382 __u64 values[BTRFS_DEV_STAT_VALUES_MAX];
Christopher Ferris49f525c2016-12-12 14:55:36 -0800383 __u64 unused[128 - 2 - BTRFS_DEV_STAT_VALUES_MAX];
Christopher Ferris106b3a82016-08-24 12:15:38 -0700384};
Ben Cheng655a7c02013-10-16 16:09:24 -0700385#define BTRFS_QUOTA_CTL_ENABLE 1
386#define BTRFS_QUOTA_CTL_DISABLE 2
Christopher Ferris49f525c2016-12-12 14:55:36 -0800387#define BTRFS_QUOTA_CTL_RESCAN__NOTUSED 3
Christopher Ferris0f795212024-01-17 14:17:28 -0800388#define BTRFS_QUOTA_CTL_ENABLE_SIMPLE_QUOTA 4
Christopher Ferris106b3a82016-08-24 12:15:38 -0700389struct btrfs_ioctl_quota_ctl_args {
Tao Baod7db5942015-01-28 10:07:51 -0800390 __u64 cmd;
391 __u64 status;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800392};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700393struct btrfs_ioctl_quota_rescan_args {
Tao Baod7db5942015-01-28 10:07:51 -0800394 __u64 flags;
395 __u64 progress;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800396 __u64 reserved[6];
Christopher Ferris106b3a82016-08-24 12:15:38 -0700397};
Ben Cheng655a7c02013-10-16 16:09:24 -0700398struct btrfs_ioctl_qgroup_assign_args {
Tao Baod7db5942015-01-28 10:07:51 -0800399 __u64 assign;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800400 __u64 src;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700401 __u64 dst;
Ben Cheng655a7c02013-10-16 16:09:24 -0700402};
403struct btrfs_ioctl_qgroup_create_args {
Christopher Ferris49f525c2016-12-12 14:55:36 -0800404 __u64 create;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700405 __u64 qgroupid;
Ben Cheng655a7c02013-10-16 16:09:24 -0700406};
407struct btrfs_ioctl_timespec {
Christopher Ferris49f525c2016-12-12 14:55:36 -0800408 __u64 sec;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700409 __u32 nsec;
Ben Cheng655a7c02013-10-16 16:09:24 -0700410};
411struct btrfs_ioctl_received_subvol_args {
Christopher Ferris49f525c2016-12-12 14:55:36 -0800412 char uuid[BTRFS_UUID_SIZE];
Christopher Ferris106b3a82016-08-24 12:15:38 -0700413 __u64 stransid;
Tao Baod7db5942015-01-28 10:07:51 -0800414 __u64 rtransid;
415 struct btrfs_ioctl_timespec stime;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800416 struct btrfs_ioctl_timespec rtime;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700417 __u64 flags;
Tao Baod7db5942015-01-28 10:07:51 -0800418 __u64 reserved[16];
Ben Cheng655a7c02013-10-16 16:09:24 -0700419};
Christopher Ferris49f525c2016-12-12 14:55:36 -0800420#define BTRFS_SEND_FLAG_NO_FILE_DATA 0x1
Christopher Ferris106b3a82016-08-24 12:15:38 -0700421#define BTRFS_SEND_FLAG_OMIT_STREAM_HEADER 0x2
Ben Cheng655a7c02013-10-16 16:09:24 -0700422#define BTRFS_SEND_FLAG_OMIT_END_CMD 0x4
Christopher Ferrisa4792612022-01-10 13:51:15 -0800423#define BTRFS_SEND_FLAG_VERSION 0x8
Christopher Ferris7447a1c2022-10-04 18:24:44 -0700424#define BTRFS_SEND_FLAG_COMPRESSED 0x10
425#define BTRFS_SEND_FLAG_MASK (BTRFS_SEND_FLAG_NO_FILE_DATA | BTRFS_SEND_FLAG_OMIT_STREAM_HEADER | BTRFS_SEND_FLAG_OMIT_END_CMD | BTRFS_SEND_FLAG_VERSION | BTRFS_SEND_FLAG_COMPRESSED)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800426struct btrfs_ioctl_send_args {
Christopher Ferris106b3a82016-08-24 12:15:38 -0700427 __s64 send_fd;
Tao Baod7db5942015-01-28 10:07:51 -0800428 __u64 clone_sources_count;
Elliott Hughes0f0c18f2023-03-29 15:53:31 -0700429 __u64 * clone_sources;
Christopher Ferris49f525c2016-12-12 14:55:36 -0800430 __u64 parent_root;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700431 __u64 flags;
Christopher Ferrisa4792612022-01-10 13:51:15 -0800432 __u32 version;
433 __u8 reserved[28];
Ben Cheng655a7c02013-10-16 16:09:24 -0700434};
Christopher Ferris9ce28842018-10-25 12:11:39 -0700435struct btrfs_ioctl_get_subvol_info_args {
436 __u64 treeid;
437 char name[BTRFS_VOL_NAME_MAX + 1];
438 __u64 parent_id;
439 __u64 dirid;
440 __u64 generation;
441 __u64 flags;
442 __u8 uuid[BTRFS_UUID_SIZE];
443 __u8 parent_uuid[BTRFS_UUID_SIZE];
444 __u8 received_uuid[BTRFS_UUID_SIZE];
445 __u64 ctransid;
446 __u64 otransid;
447 __u64 stransid;
448 __u64 rtransid;
449 struct btrfs_ioctl_timespec ctime;
450 struct btrfs_ioctl_timespec otime;
451 struct btrfs_ioctl_timespec stime;
452 struct btrfs_ioctl_timespec rtime;
453 __u64 reserved[8];
454};
455#define BTRFS_MAX_ROOTREF_BUFFER_NUM 255
456struct btrfs_ioctl_get_subvol_rootref_args {
457 __u64 min_treeid;
458 struct {
459 __u64 treeid;
460 __u64 dirid;
461 } rootref[BTRFS_MAX_ROOTREF_BUFFER_NUM];
462 __u8 num_items;
463 __u8 align[7];
464};
Christopher Ferris10a76e62022-06-08 13:31:52 -0700465struct btrfs_ioctl_encoded_io_args {
Elliott Hughes0f0c18f2023-03-29 15:53:31 -0700466 const struct iovec * iov;
Christopher Ferris10a76e62022-06-08 13:31:52 -0700467 unsigned long iovcnt;
468 __s64 offset;
469 __u64 flags;
470 __u64 len;
471 __u64 unencoded_len;
472 __u64 unencoded_offset;
473 __u32 compression;
474 __u32 encryption;
475 __u8 reserved[64];
476};
477#define BTRFS_ENCODED_IO_COMPRESSION_NONE 0
478#define BTRFS_ENCODED_IO_COMPRESSION_ZLIB 1
479#define BTRFS_ENCODED_IO_COMPRESSION_ZSTD 2
480#define BTRFS_ENCODED_IO_COMPRESSION_LZO_4K 3
481#define BTRFS_ENCODED_IO_COMPRESSION_LZO_8K 4
482#define BTRFS_ENCODED_IO_COMPRESSION_LZO_16K 5
483#define BTRFS_ENCODED_IO_COMPRESSION_LZO_32K 6
484#define BTRFS_ENCODED_IO_COMPRESSION_LZO_64K 7
485#define BTRFS_ENCODED_IO_COMPRESSION_TYPES 8
486#define BTRFS_ENCODED_IO_ENCRYPTION_NONE 0
487#define BTRFS_ENCODED_IO_ENCRYPTION_TYPES 1
Christopher Ferris49f525c2016-12-12 14:55:36 -0800488enum btrfs_err_code {
Christopher Ferris106b3a82016-08-24 12:15:38 -0700489 BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET = 1,
Tao Baod7db5942015-01-28 10:07:51 -0800490 BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
491 BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
Christopher Ferris49f525c2016-12-12 14:55:36 -0800492 BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
Christopher Ferris106b3a82016-08-24 12:15:38 -0700493 BTRFS_ERROR_DEV_TGT_REPLACE,
Tao Baod7db5942015-01-28 10:07:51 -0800494 BTRFS_ERROR_DEV_MISSING_NOT_FOUND,
495 BTRFS_ERROR_DEV_ONLY_WRITABLE,
Christopher Ferrisd32ca142020-02-04 16:16:51 -0800496 BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS,
497 BTRFS_ERROR_DEV_RAID1C3_MIN_NOT_MET,
498 BTRFS_ERROR_DEV_RAID1C4_MIN_NOT_MET,
Christopher Ferris106b3a82016-08-24 12:15:38 -0700499};
Tao Baod7db5942015-01-28 10:07:51 -0800500#define BTRFS_IOC_SNAP_CREATE _IOW(BTRFS_IOCTL_MAGIC, 1, struct btrfs_ioctl_vol_args)
501#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, struct btrfs_ioctl_vol_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800502#define BTRFS_IOC_RESIZE _IOW(BTRFS_IOCTL_MAGIC, 3, struct btrfs_ioctl_vol_args)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700503#define BTRFS_IOC_SCAN_DEV _IOW(BTRFS_IOCTL_MAGIC, 4, struct btrfs_ioctl_vol_args)
Christopher Ferris24f97eb2019-05-20 12:58:13 -0700504#define BTRFS_IOC_FORGET_DEV _IOW(BTRFS_IOCTL_MAGIC, 5, struct btrfs_ioctl_vol_args)
Ben Cheng655a7c02013-10-16 16:09:24 -0700505#define BTRFS_IOC_TRANS_START _IO(BTRFS_IOCTL_MAGIC, 6)
Elliott Hughes8cb52b02013-11-21 13:43:23 -0800506#define BTRFS_IOC_TRANS_END _IO(BTRFS_IOCTL_MAGIC, 7)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800507#define BTRFS_IOC_SYNC _IO(BTRFS_IOCTL_MAGIC, 8)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700508#define BTRFS_IOC_CLONE _IOW(BTRFS_IOCTL_MAGIC, 9, int)
Tao Baod7db5942015-01-28 10:07:51 -0800509#define BTRFS_IOC_ADD_DEV _IOW(BTRFS_IOCTL_MAGIC, 10, struct btrfs_ioctl_vol_args)
510#define BTRFS_IOC_RM_DEV _IOW(BTRFS_IOCTL_MAGIC, 11, struct btrfs_ioctl_vol_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800511#define BTRFS_IOC_BALANCE _IOW(BTRFS_IOCTL_MAGIC, 12, struct btrfs_ioctl_vol_args)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700512#define BTRFS_IOC_CLONE_RANGE _IOW(BTRFS_IOCTL_MAGIC, 13, struct btrfs_ioctl_clone_range_args)
Tao Baod7db5942015-01-28 10:07:51 -0800513#define BTRFS_IOC_SUBVOL_CREATE _IOW(BTRFS_IOCTL_MAGIC, 14, struct btrfs_ioctl_vol_args)
514#define BTRFS_IOC_SNAP_DESTROY _IOW(BTRFS_IOCTL_MAGIC, 15, struct btrfs_ioctl_vol_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800515#define BTRFS_IOC_DEFRAG_RANGE _IOW(BTRFS_IOCTL_MAGIC, 16, struct btrfs_ioctl_defrag_range_args)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700516#define BTRFS_IOC_TREE_SEARCH _IOWR(BTRFS_IOCTL_MAGIC, 17, struct btrfs_ioctl_search_args)
Tao Baod7db5942015-01-28 10:07:51 -0800517#define BTRFS_IOC_TREE_SEARCH_V2 _IOWR(BTRFS_IOCTL_MAGIC, 17, struct btrfs_ioctl_search_args_v2)
518#define BTRFS_IOC_INO_LOOKUP _IOWR(BTRFS_IOCTL_MAGIC, 18, struct btrfs_ioctl_ino_lookup_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800519#define BTRFS_IOC_DEFAULT_SUBVOL _IOW(BTRFS_IOCTL_MAGIC, 19, __u64)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700520#define BTRFS_IOC_SPACE_INFO _IOWR(BTRFS_IOCTL_MAGIC, 20, struct btrfs_ioctl_space_args)
Ben Cheng655a7c02013-10-16 16:09:24 -0700521#define BTRFS_IOC_START_SYNC _IOR(BTRFS_IOCTL_MAGIC, 24, __u64)
522#define BTRFS_IOC_WAIT_SYNC _IOW(BTRFS_IOCTL_MAGIC, 22, __u64)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800523#define BTRFS_IOC_SNAP_CREATE_V2 _IOW(BTRFS_IOCTL_MAGIC, 23, struct btrfs_ioctl_vol_args_v2)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700524#define BTRFS_IOC_SUBVOL_CREATE_V2 _IOW(BTRFS_IOCTL_MAGIC, 24, struct btrfs_ioctl_vol_args_v2)
Ben Cheng655a7c02013-10-16 16:09:24 -0700525#define BTRFS_IOC_SUBVOL_GETFLAGS _IOR(BTRFS_IOCTL_MAGIC, 25, __u64)
526#define BTRFS_IOC_SUBVOL_SETFLAGS _IOW(BTRFS_IOCTL_MAGIC, 26, __u64)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800527#define BTRFS_IOC_SCRUB _IOWR(BTRFS_IOCTL_MAGIC, 27, struct btrfs_ioctl_scrub_args)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700528#define BTRFS_IOC_SCRUB_CANCEL _IO(BTRFS_IOCTL_MAGIC, 28)
Tao Baod7db5942015-01-28 10:07:51 -0800529#define BTRFS_IOC_SCRUB_PROGRESS _IOWR(BTRFS_IOCTL_MAGIC, 29, struct btrfs_ioctl_scrub_args)
530#define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, struct btrfs_ioctl_dev_info_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800531#define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, struct btrfs_ioctl_fs_info_args)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700532#define BTRFS_IOC_BALANCE_V2 _IOWR(BTRFS_IOCTL_MAGIC, 32, struct btrfs_ioctl_balance_args)
Ben Cheng655a7c02013-10-16 16:09:24 -0700533#define BTRFS_IOC_BALANCE_CTL _IOW(BTRFS_IOCTL_MAGIC, 33, int)
Tao Baod7db5942015-01-28 10:07:51 -0800534#define BTRFS_IOC_BALANCE_PROGRESS _IOR(BTRFS_IOCTL_MAGIC, 34, struct btrfs_ioctl_balance_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800535#define BTRFS_IOC_INO_PATHS _IOWR(BTRFS_IOCTL_MAGIC, 35, struct btrfs_ioctl_ino_path_args)
536#define BTRFS_IOC_LOGICAL_INO _IOWR(BTRFS_IOCTL_MAGIC, 36, struct btrfs_ioctl_logical_ino_args)
Tao Baod7db5942015-01-28 10:07:51 -0800537#define BTRFS_IOC_SET_RECEIVED_SUBVOL _IOWR(BTRFS_IOCTL_MAGIC, 37, struct btrfs_ioctl_received_subvol_args)
Ben Cheng655a7c02013-10-16 16:09:24 -0700538#define BTRFS_IOC_SEND _IOW(BTRFS_IOCTL_MAGIC, 38, struct btrfs_ioctl_send_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800539#define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, struct btrfs_ioctl_vol_args)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700540#define BTRFS_IOC_QUOTA_CTL _IOWR(BTRFS_IOCTL_MAGIC, 40, struct btrfs_ioctl_quota_ctl_args)
Tao Baod7db5942015-01-28 10:07:51 -0800541#define BTRFS_IOC_QGROUP_ASSIGN _IOW(BTRFS_IOCTL_MAGIC, 41, struct btrfs_ioctl_qgroup_assign_args)
542#define BTRFS_IOC_QGROUP_CREATE _IOW(BTRFS_IOCTL_MAGIC, 42, struct btrfs_ioctl_qgroup_create_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800543#define BTRFS_IOC_QGROUP_LIMIT _IOR(BTRFS_IOCTL_MAGIC, 43, struct btrfs_ioctl_qgroup_limit_args)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700544#define BTRFS_IOC_QUOTA_RESCAN _IOW(BTRFS_IOCTL_MAGIC, 44, struct btrfs_ioctl_quota_rescan_args)
Tao Baod7db5942015-01-28 10:07:51 -0800545#define BTRFS_IOC_QUOTA_RESCAN_STATUS _IOR(BTRFS_IOCTL_MAGIC, 45, struct btrfs_ioctl_quota_rescan_args)
Christopher Ferris38062f92014-07-09 15:33:25 -0700546#define BTRFS_IOC_QUOTA_RESCAN_WAIT _IO(BTRFS_IOCTL_MAGIC, 46)
Christopher Ferris9584fa42019-12-09 15:36:13 -0800547#define BTRFS_IOC_GET_FSLABEL FS_IOC_GETFSLABEL
548#define BTRFS_IOC_SET_FSLABEL FS_IOC_SETFSLABEL
Tao Baod7db5942015-01-28 10:07:51 -0800549#define BTRFS_IOC_GET_DEV_STATS _IOWR(BTRFS_IOCTL_MAGIC, 52, struct btrfs_ioctl_get_dev_stats)
550#define BTRFS_IOC_DEV_REPLACE _IOWR(BTRFS_IOCTL_MAGIC, 53, struct btrfs_ioctl_dev_replace_args)
Christopher Ferris49f525c2016-12-12 14:55:36 -0800551#define BTRFS_IOC_FILE_EXTENT_SAME _IOWR(BTRFS_IOCTL_MAGIC, 54, struct btrfs_ioctl_same_args)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700552#define BTRFS_IOC_GET_FEATURES _IOR(BTRFS_IOCTL_MAGIC, 57, struct btrfs_ioctl_feature_flags)
Tao Baod7db5942015-01-28 10:07:51 -0800553#define BTRFS_IOC_SET_FEATURES _IOW(BTRFS_IOCTL_MAGIC, 57, struct btrfs_ioctl_feature_flags[2])
554#define BTRFS_IOC_GET_SUPPORTED_FEATURES _IOR(BTRFS_IOCTL_MAGIC, 57, struct btrfs_ioctl_feature_flags[3])
Christopher Ferris49f525c2016-12-12 14:55:36 -0800555#define BTRFS_IOC_RM_DEV_V2 _IOW(BTRFS_IOCTL_MAGIC, 58, struct btrfs_ioctl_vol_args_v2)
Christopher Ferris934ec942018-01-31 15:29:16 -0800556#define BTRFS_IOC_LOGICAL_INO_V2 _IOWR(BTRFS_IOCTL_MAGIC, 59, struct btrfs_ioctl_logical_ino_args)
Christopher Ferris9ce28842018-10-25 12:11:39 -0700557#define BTRFS_IOC_GET_SUBVOL_INFO _IOR(BTRFS_IOCTL_MAGIC, 60, struct btrfs_ioctl_get_subvol_info_args)
558#define BTRFS_IOC_GET_SUBVOL_ROOTREF _IOWR(BTRFS_IOCTL_MAGIC, 61, struct btrfs_ioctl_get_subvol_rootref_args)
559#define BTRFS_IOC_INO_LOOKUP_USER _IOWR(BTRFS_IOCTL_MAGIC, 62, struct btrfs_ioctl_ino_lookup_user_args)
Christopher Ferrisaf09c702020-06-01 20:29:29 -0700560#define BTRFS_IOC_SNAP_DESTROY_V2 _IOW(BTRFS_IOCTL_MAGIC, 63, struct btrfs_ioctl_vol_args_v2)
Christopher Ferris10a76e62022-06-08 13:31:52 -0700561#define BTRFS_IOC_ENCODED_READ _IOR(BTRFS_IOCTL_MAGIC, 64, struct btrfs_ioctl_encoded_io_args)
562#define BTRFS_IOC_ENCODED_WRITE _IOW(BTRFS_IOCTL_MAGIC, 64, struct btrfs_ioctl_encoded_io_args)
Christopher Ferris8b7fdc92023-02-21 13:36:32 -0800563#ifdef __cplusplus
564}
565#endif
Christopher Ferris38062f92014-07-09 15:33:25 -0700566#endif