Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / os / fs / btrfs_ioctl.h
1 /*
2  * Copyright (C) 2007 Oracle.  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 #ifndef __IOCTL_
20 #define __IOCTL_
21
22 #if defined(__linux__)
23 #include <linux/ioctl.h>
24 #elif defined(__FreeBSD__)
25 #include <sys/ioctl.h>
26 #endif
27
28 #define BTRFS_IOCTL_MAGIC 0x94
29 #define BTRFS_VOL_NAME_MAX 255
30
31 /* this should be 4k */
32 #define BTRFS_PATH_NAME_MAX 4087
33 struct btrfs_ioctl_vol_args {
34         __s64 fd;
35         char name[BTRFS_PATH_NAME_MAX + 1];
36 };
37
38 #define BTRFS_SUBVOL_CREATE_ASYNC       (1ULL << 0)
39
40 #define BTRFS_SUBVOL_NAME_MAX 4039
41 struct btrfs_ioctl_vol_args_v2 {
42         __s64 fd;
43         __u64 transid;
44         __u64 flags;
45         __u64 unused[4];
46         char name[BTRFS_SUBVOL_NAME_MAX + 1];
47 };
48
49 #define BTRFS_INO_LOOKUP_PATH_MAX 4080
50 struct btrfs_ioctl_ino_lookup_args {
51         __u64 treeid;
52         __u64 objectid;
53         char name[BTRFS_INO_LOOKUP_PATH_MAX];
54 };
55
56 struct btrfs_ioctl_search_key {
57         /* which root are we searching.  0 is the tree of tree roots */
58         __u64 tree_id;
59
60         /* keys returned will be >= min and <= max */
61         __u64 min_objectid;
62         __u64 max_objectid;
63
64         /* keys returned will be >= min and <= max */
65         __u64 min_offset;
66         __u64 max_offset;
67
68         /* max and min transids to search for */
69         __u64 min_transid;
70         __u64 max_transid;
71
72         /* keys returned will be >= min and <= max */
73         __u32 min_type;
74         __u32 max_type;
75
76         /*
77          * how many items did userland ask for, and how many are we
78          * returning
79          */
80         __u32 nr_items;
81
82         /* align to 64 bits */
83         __u32 unused;
84
85         /* some extra for later */
86         __u64 unused1;
87         __u64 unused2;
88         __u64 unused3;
89         __u64 unused4;
90 };
91
92 struct btrfs_ioctl_search_header {
93         __u64 transid;
94         __u64 objectid;
95         __u64 offset;
96         __u32 type;
97         __u32 len;
98 };
99
100 #define BTRFS_SEARCH_ARGS_BUFSIZE (4096 - sizeof(struct btrfs_ioctl_search_key))
101 /*
102  * the buf is an array of search headers where
103  * each header is followed by the actual item
104  * the type field is expanded to 32 bits for alignment
105  */
106 struct btrfs_ioctl_search_args {
107         struct btrfs_ioctl_search_key key;
108         char buf[BTRFS_SEARCH_ARGS_BUFSIZE];
109 };
110
111 struct btrfs_ioctl_clone_range_args {
112   __s64 src_fd;
113   __u64 src_offset, src_length;
114   __u64 dest_offset;
115 };
116
117 /* flags for the defrag range ioctl */
118 #define BTRFS_DEFRAG_RANGE_COMPRESS 1
119 #define BTRFS_DEFRAG_RANGE_START_IO 2
120
121 struct btrfs_ioctl_defrag_range_args {
122         /* start of the defrag operation */
123         __u64 start;
124
125         /* number of bytes to defrag, use (u64)-1 to say all */
126         __u64 len;
127
128         /*
129          * flags for the operation, which can include turning
130          * on compression for this one defrag
131          */
132         __u64 flags;
133
134         /*
135          * any extent bigger than this will be considered
136          * already defragged.  Use 0 to take the kernel default
137          * Use 1 to say every single extent must be rewritten
138          */
139         __u32 extent_thresh;
140
141         /* spare for later */
142         __u32 unused[5];
143 };
144
145 struct btrfs_ioctl_space_info {
146         __u64 flags;
147         __u64 total_bytes;
148         __u64 used_bytes;
149 };
150
151 struct btrfs_ioctl_space_args {
152         __u64 space_slots;
153         __u64 total_spaces;
154         struct btrfs_ioctl_space_info spaces[0];
155 };
156
157 #define BTRFS_IOC_SNAP_CREATE _IOW(BTRFS_IOCTL_MAGIC, 1, \
158                                    struct btrfs_ioctl_vol_args)
159 #define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
160                                    struct btrfs_ioctl_vol_args)
161 #define BTRFS_IOC_RESIZE _IOW(BTRFS_IOCTL_MAGIC, 3, \
162                                    struct btrfs_ioctl_vol_args)
163 #define BTRFS_IOC_SCAN_DEV _IOW(BTRFS_IOCTL_MAGIC, 4, \
164                                    struct btrfs_ioctl_vol_args)
165 /* trans start and trans end are dangerous, and only for
166  * use by applications that know how to avoid the
167  * resulting deadlocks
168  */
169 #define BTRFS_IOC_TRANS_START  _IO(BTRFS_IOCTL_MAGIC, 6)
170 #define BTRFS_IOC_TRANS_END    _IO(BTRFS_IOCTL_MAGIC, 7)
171 #define BTRFS_IOC_SYNC         _IO(BTRFS_IOCTL_MAGIC, 8)
172
173 #define BTRFS_IOC_CLONE        _IOW(BTRFS_IOCTL_MAGIC, 9, int)
174 #define BTRFS_IOC_ADD_DEV _IOW(BTRFS_IOCTL_MAGIC, 10, \
175                                    struct btrfs_ioctl_vol_args)
176 #define BTRFS_IOC_RM_DEV _IOW(BTRFS_IOCTL_MAGIC, 11, \
177                                    struct btrfs_ioctl_vol_args)
178 #define BTRFS_IOC_BALANCE _IOW(BTRFS_IOCTL_MAGIC, 12, \
179                                    struct btrfs_ioctl_vol_args)
180
181 #define BTRFS_IOC_CLONE_RANGE _IOW(BTRFS_IOCTL_MAGIC, 13, \
182                                   struct btrfs_ioctl_clone_range_args)
183
184 #define BTRFS_IOC_SUBVOL_CREATE _IOW(BTRFS_IOCTL_MAGIC, 14, \
185                                    struct btrfs_ioctl_vol_args)
186 #define BTRFS_IOC_SNAP_DESTROY _IOW(BTRFS_IOCTL_MAGIC, 15, \
187                                 struct btrfs_ioctl_vol_args)
188 #define BTRFS_IOC_DEFRAG_RANGE _IOW(BTRFS_IOCTL_MAGIC, 16, \
189                                 struct btrfs_ioctl_defrag_range_args)
190 #define BTRFS_IOC_TREE_SEARCH _IOWR(BTRFS_IOCTL_MAGIC, 17, \
191                                    struct btrfs_ioctl_search_args)
192 #define BTRFS_IOC_INO_LOOKUP _IOWR(BTRFS_IOCTL_MAGIC, 18, \
193                                    struct btrfs_ioctl_ino_lookup_args)
194 #define BTRFS_IOC_DEFAULT_SUBVOL _IOW(BTRFS_IOCTL_MAGIC, 19, u64)
195 #define BTRFS_IOC_SPACE_INFO _IOWR(BTRFS_IOCTL_MAGIC, 20, \
196                                     struct btrfs_ioctl_space_args)
197 #define BTRFS_IOC_START_SYNC _IOR(BTRFS_IOCTL_MAGIC, 24, __u64)
198 #define BTRFS_IOC_WAIT_SYNC  _IOW(BTRFS_IOCTL_MAGIC, 22, __u64)
199 #define BTRFS_IOC_SNAP_CREATE_V2 _IOW(BTRFS_IOCTL_MAGIC, 23, \
200                                    struct btrfs_ioctl_vol_args_v2)
201 #endif