1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18#ifndef __XFS_FS_H__
19#define __XFS_FS_H__
20
21
22
23
24
25
26
27
28
29
30#ifndef HAVE_DIOATTR
31struct dioattr {
32 __u32 d_mem;
33 __u32 d_miniosz;
34 __u32 d_maxiosz;
35};
36#endif
37
38
39
40
41#ifndef HAVE_FSXATTR
42struct fsxattr {
43 __u32 fsx_xflags;
44 __u32 fsx_extsize;
45 __u32 fsx_nextents;
46 __u32 fsx_projid;
47 unsigned char fsx_pad[12];
48};
49#endif
50
51
52
53
54
55
56#define XFS_XFLAG_REALTIME 0x00000001
57#define XFS_XFLAG_PREALLOC 0x00000002
58#define XFS_XFLAG_IMMUTABLE 0x00000008
59#define XFS_XFLAG_APPEND 0x00000010
60#define XFS_XFLAG_SYNC 0x00000020
61#define XFS_XFLAG_NOATIME 0x00000040
62#define XFS_XFLAG_NODUMP 0x00000080
63#define XFS_XFLAG_RTINHERIT 0x00000100
64#define XFS_XFLAG_PROJINHERIT 0x00000200
65#define XFS_XFLAG_NOSYMLINKS 0x00000400
66#define XFS_XFLAG_EXTSIZE 0x00000800
67#define XFS_XFLAG_EXTSZINHERIT 0x00001000
68#define XFS_XFLAG_NODEFRAG 0x00002000
69#define XFS_XFLAG_FILESTREAM 0x00004000
70#define XFS_XFLAG_HASATTR 0x80000000
71
72
73
74
75
76
77
78
79#ifndef HAVE_GETBMAP
80struct getbmap {
81 __s64 bmv_offset;
82 __s64 bmv_block;
83 __s64 bmv_length;
84 __s32 bmv_count;
85 __s32 bmv_entries;
86};
87#endif
88
89
90
91
92
93
94
95
96
97
98#ifndef HAVE_GETBMAPX
99struct getbmapx {
100 __s64 bmv_offset;
101 __s64 bmv_block;
102 __s64 bmv_length;
103 __s32 bmv_count;
104 __s32 bmv_entries;
105 __s32 bmv_iflags;
106 __s32 bmv_oflags;
107 __s32 bmv_unused1;
108 __s32 bmv_unused2;
109};
110#endif
111
112
113#define BMV_IF_ATTRFORK 0x1
114#define BMV_IF_NO_DMAPI_READ 0x2
115#define BMV_IF_PREALLOC 0x4
116#define BMV_IF_VALID (BMV_IF_ATTRFORK|BMV_IF_NO_DMAPI_READ|BMV_IF_PREALLOC)
117#ifdef __KERNEL__
118#define BMV_IF_EXTENDED 0x40000000
119#endif
120
121
122#define BMV_OF_PREALLOC 0x1
123
124
125#define GETBMAP_CONVERT(p1,p2) { \
126 p2.bmv_offset = p1.bmv_offset; \
127 p2.bmv_block = p1.bmv_block; \
128 p2.bmv_length = p1.bmv_length; \
129 p2.bmv_count = p1.bmv_count; \
130 p2.bmv_entries = p1.bmv_entries; }
131
132
133
134
135
136
137
138
139
140#ifndef HAVE_FSDMIDATA
141struct fsdmidata {
142 __u32 fsd_dmevmask;
143 __u16 fsd_padding;
144 __u16 fsd_dmstate;
145};
146#endif
147
148
149
150
151
152typedef struct xfs_flock64 {
153 __s16 l_type;
154 __s16 l_whence;
155 __s64 l_start;
156 __s64 l_len;
157 __s32 l_sysid;
158 __u32 l_pid;
159 __s32 l_pad[4];
160} xfs_flock64_t;
161
162
163
164
165typedef struct xfs_fsop_geom_v1 {
166 __u32 blocksize;
167 __u32 rtextsize;
168 __u32 agblocks;
169 __u32 agcount;
170 __u32 logblocks;
171 __u32 sectsize;
172 __u32 inodesize;
173 __u32 imaxpct;
174 __u64 datablocks;
175 __u64 rtblocks;
176 __u64 rtextents;
177 __u64 logstart;
178 unsigned char uuid[16];
179 __u32 sunit;
180 __u32 swidth;
181 __s32 version;
182 __u32 flags;
183 __u32 logsectsize;
184 __u32 rtsectsize;
185 __u32 dirblocksize;
186} xfs_fsop_geom_v1_t;
187
188
189
190
191typedef struct xfs_fsop_geom {
192 __u32 blocksize;
193 __u32 rtextsize;
194 __u32 agblocks;
195 __u32 agcount;
196 __u32 logblocks;
197 __u32 sectsize;
198 __u32 inodesize;
199 __u32 imaxpct;
200 __u64 datablocks;
201 __u64 rtblocks;
202 __u64 rtextents;
203 __u64 logstart;
204 unsigned char uuid[16];
205 __u32 sunit;
206 __u32 swidth;
207 __s32 version;
208 __u32 flags;
209 __u32 logsectsize;
210 __u32 rtsectsize;
211 __u32 dirblocksize;
212 __u32 logsunit;
213} xfs_fsop_geom_t;
214
215
216typedef struct xfs_fsop_counts {
217 __u64 freedata;
218 __u64 freertx;
219 __u64 freeino;
220 __u64 allocino;
221} xfs_fsop_counts_t;
222
223
224typedef struct xfs_fsop_resblks {
225 __u64 resblks;
226 __u64 resblks_avail;
227} xfs_fsop_resblks_t;
228
229#define XFS_FSOP_GEOM_VERSION 0
230
231#define XFS_FSOP_GEOM_FLAGS_ATTR 0x0001
232#define XFS_FSOP_GEOM_FLAGS_NLINK 0x0002
233#define XFS_FSOP_GEOM_FLAGS_QUOTA 0x0004
234#define XFS_FSOP_GEOM_FLAGS_IALIGN 0x0008
235#define XFS_FSOP_GEOM_FLAGS_DALIGN 0x0010
236#define XFS_FSOP_GEOM_FLAGS_SHARED 0x0020
237#define XFS_FSOP_GEOM_FLAGS_EXTFLG 0x0040
238#define XFS_FSOP_GEOM_FLAGS_DIRV2 0x0080
239#define XFS_FSOP_GEOM_FLAGS_LOGV2 0x0100
240#define XFS_FSOP_GEOM_FLAGS_SECTOR 0x0200
241#define XFS_FSOP_GEOM_FLAGS_ATTR2 0x0400
242#define XFS_FSOP_GEOM_FLAGS_LAZYSB 0x4000
243
244
245
246
247
248#define XFS_MIN_AG_BLOCKS 64
249#define XFS_MIN_LOG_BLOCKS 512
250#define XFS_MAX_LOG_BLOCKS (64 * 1024)
251#define XFS_MIN_LOG_BYTES (256 * 1024)
252#define XFS_MAX_LOG_BYTES (128 * 1024 * 1024)
253
254
255
256
257typedef struct xfs_growfs_data {
258 __u64 newblocks;
259 __u32 imaxpct;
260} xfs_growfs_data_t;
261
262typedef struct xfs_growfs_log {
263 __u32 newblocks;
264 __u32 isint;
265} xfs_growfs_log_t;
266
267typedef struct xfs_growfs_rt {
268 __u64 newblocks;
269 __u32 extsize;
270} xfs_growfs_rt_t;
271
272
273
274
275
276typedef struct xfs_bstime {
277 time_t tv_sec;
278 __s32 tv_nsec;
279} xfs_bstime_t;
280
281typedef struct xfs_bstat {
282 __u64 bs_ino;
283 __u16 bs_mode;
284 __u16 bs_nlink;
285 __u32 bs_uid;
286 __u32 bs_gid;
287 __u32 bs_rdev;
288 __s32 bs_blksize;
289 __s64 bs_size;
290 xfs_bstime_t bs_atime;
291 xfs_bstime_t bs_mtime;
292 xfs_bstime_t bs_ctime;
293 int64_t bs_blocks;
294 __u32 bs_xflags;
295 __s32 bs_extsize;
296 __s32 bs_extents;
297 __u32 bs_gen;
298 __u16 bs_projid;
299 unsigned char bs_pad[14];
300 __u32 bs_dmevmask;
301 __u16 bs_dmstate;
302 __u16 bs_aextents;
303} xfs_bstat_t;
304
305
306
307
308typedef struct xfs_fsop_bulkreq {
309 __u64 __user *lastip;
310 __s32 icount;
311 void __user *ubuffer;
312 __s32 __user *ocount;
313} xfs_fsop_bulkreq_t;
314
315
316
317
318
319typedef struct xfs_inogrp {
320 __u64 xi_startino;
321 __s32 xi_alloccount;
322 __u64 xi_allocmask;
323} xfs_inogrp_t;
324
325
326
327
328
329typedef struct xfs_error_injection {
330 __s32 fd;
331 __s32 errtag;
332} xfs_error_injection_t;
333
334
335
336
337
338typedef struct xfs_fsop_handlereq {
339 __u32 fd;
340 void __user *path;
341 __u32 oflags;
342 void __user *ihandle;
343 __u32 ihandlen;
344 void __user *ohandle;
345 __u32 __user *ohandlen;
346} xfs_fsop_handlereq_t;
347
348
349
350
351
352
353
354
355typedef struct xfs_fsop_setdm_handlereq {
356 struct xfs_fsop_handlereq hreq;
357 struct fsdmidata __user *data;
358} xfs_fsop_setdm_handlereq_t;
359
360typedef struct xfs_attrlist_cursor {
361 __u32 opaque[4];
362} xfs_attrlist_cursor_t;
363
364typedef struct xfs_fsop_attrlist_handlereq {
365 struct xfs_fsop_handlereq hreq;
366 struct xfs_attrlist_cursor pos;
367 __u32 flags;
368 __u32 buflen;
369 void __user *buffer;
370} xfs_fsop_attrlist_handlereq_t;
371
372typedef struct xfs_attr_multiop {
373 __u32 am_opcode;
374 __s32 am_error;
375 void __user *am_attrname;
376 void __user *am_attrvalue;
377 __u32 am_length;
378 __u32 am_flags;
379} xfs_attr_multiop_t;
380
381typedef struct xfs_fsop_attrmulti_handlereq {
382 struct xfs_fsop_handlereq hreq;
383 __u32 opcount;
384 struct xfs_attr_multiop __user *ops;
385} xfs_fsop_attrmulti_handlereq_t;
386
387
388
389
390typedef struct { __u32 val[2]; } xfs_fsid_t;
391
392typedef struct xfs_fid {
393 __u16 fid_len;
394 __u16 fid_pad;
395 __u32 fid_gen;
396 __u64 fid_ino;
397} xfs_fid_t;
398
399typedef struct xfs_handle {
400 union {
401 __s64 align;
402 xfs_fsid_t _ha_fsid;
403 } ha_u;
404 xfs_fid_t ha_fid;
405} xfs_handle_t;
406#define ha_fsid ha_u._ha_fsid
407
408#define XFS_HSIZE(handle) (((char *) &(handle).ha_fid.fid_pad \
409 - (char *) &(handle)) \
410 + (handle).ha_fid.fid_len)
411
412
413
414
415#define XFS_FSOP_GOING_FLAGS_DEFAULT 0x0
416#define XFS_FSOP_GOING_FLAGS_LOGFLUSH 0x1
417#define XFS_FSOP_GOING_FLAGS_NOLOGFLUSH 0x2
418
419
420
421
422#define XFS_IOC_GETXFLAGS FS_IOC_GETFLAGS
423#define XFS_IOC_SETXFLAGS FS_IOC_SETFLAGS
424#define XFS_IOC_GETVERSION FS_IOC_GETVERSION
425
426#define XFS_IOC32_GETXFLAGS FS_IOC32_GETFLAGS
427#define XFS_IOC32_SETXFLAGS FS_IOC32_SETFLAGS
428#define XFS_IOC32_GETVERSION FS_IOC32_GETVERSION
429
430
431
432
433
434
435#define XFS_IOC_ALLOCSP _IOW ('X', 10, struct xfs_flock64)
436#define XFS_IOC_FREESP _IOW ('X', 11, struct xfs_flock64)
437#define XFS_IOC_DIOINFO _IOR ('X', 30, struct dioattr)
438#define XFS_IOC_FSGETXATTR _IOR ('X', 31, struct fsxattr)
439#define XFS_IOC_FSSETXATTR _IOW ('X', 32, struct fsxattr)
440#define XFS_IOC_ALLOCSP64 _IOW ('X', 36, struct xfs_flock64)
441#define XFS_IOC_FREESP64 _IOW ('X', 37, struct xfs_flock64)
442#define XFS_IOC_GETBMAP _IOWR('X', 38, struct getbmap)
443#define XFS_IOC_FSSETDM _IOW ('X', 39, struct fsdmidata)
444#define XFS_IOC_RESVSP _IOW ('X', 40, struct xfs_flock64)
445#define XFS_IOC_UNRESVSP _IOW ('X', 41, struct xfs_flock64)
446#define XFS_IOC_RESVSP64 _IOW ('X', 42, struct xfs_flock64)
447#define XFS_IOC_UNRESVSP64 _IOW ('X', 43, struct xfs_flock64)
448#define XFS_IOC_GETBMAPA _IOWR('X', 44, struct getbmap)
449#define XFS_IOC_FSGETXATTRA _IOR ('X', 45, struct fsxattr)
450
451
452#define XFS_IOC_GETBMAPX _IOWR('X', 56, struct getbmap)
453
454
455
456
457#define XFS_IOC_FSGEOMETRY_V1 _IOR ('X', 100, struct xfs_fsop_geom_v1)
458#define XFS_IOC_FSBULKSTAT _IOWR('X', 101, struct xfs_fsop_bulkreq)
459#define XFS_IOC_FSBULKSTAT_SINGLE _IOWR('X', 102, struct xfs_fsop_bulkreq)
460#define XFS_IOC_FSINUMBERS _IOWR('X', 103, struct xfs_fsop_bulkreq)
461#define XFS_IOC_PATH_TO_FSHANDLE _IOWR('X', 104, struct xfs_fsop_handlereq)
462#define XFS_IOC_PATH_TO_HANDLE _IOWR('X', 105, struct xfs_fsop_handlereq)
463#define XFS_IOC_FD_TO_HANDLE _IOWR('X', 106, struct xfs_fsop_handlereq)
464#define XFS_IOC_OPEN_BY_HANDLE _IOWR('X', 107, struct xfs_fsop_handlereq)
465#define XFS_IOC_READLINK_BY_HANDLE _IOWR('X', 108, struct xfs_fsop_handlereq)
466#define XFS_IOC_SWAPEXT _IOWR('X', 109, struct xfs_swapext)
467#define XFS_IOC_FSGROWFSDATA _IOW ('X', 110, struct xfs_growfs_data)
468#define XFS_IOC_FSGROWFSLOG _IOW ('X', 111, struct xfs_growfs_log)
469#define XFS_IOC_FSGROWFSRT _IOW ('X', 112, struct xfs_growfs_rt)
470#define XFS_IOC_FSCOUNTS _IOR ('X', 113, struct xfs_fsop_counts)
471#define XFS_IOC_SET_RESBLKS _IOWR('X', 114, struct xfs_fsop_resblks)
472#define XFS_IOC_GET_RESBLKS _IOR ('X', 115, struct xfs_fsop_resblks)
473#define XFS_IOC_ERROR_INJECTION _IOW ('X', 116, struct xfs_error_injection)
474#define XFS_IOC_ERROR_CLEARALL _IOW ('X', 117, struct xfs_error_injection)
475
476#define XFS_IOC_FREEZE _IOWR('X', 119, int)
477#define XFS_IOC_THAW _IOWR('X', 120, int)
478#define XFS_IOC_FSSETDM_BY_HANDLE _IOW ('X', 121, struct xfs_fsop_setdm_handlereq)
479#define XFS_IOC_ATTRLIST_BY_HANDLE _IOW ('X', 122, struct xfs_fsop_attrlist_handlereq)
480#define XFS_IOC_ATTRMULTI_BY_HANDLE _IOW ('X', 123, struct xfs_fsop_attrmulti_handlereq)
481#define XFS_IOC_FSGEOMETRY _IOR ('X', 124, struct xfs_fsop_geom)
482#define XFS_IOC_GOINGDOWN _IOR ('X', 125, __uint32_t)
483
484
485
486#ifndef HAVE_BBMACROS
487
488
489
490
491
492#define BBSHIFT 9
493#define BBSIZE (1<<BBSHIFT)
494#define BBMASK (BBSIZE-1)
495#define BTOBB(bytes) (((__u64)(bytes) + BBSIZE - 1) >> BBSHIFT)
496#define BTOBBT(bytes) ((__u64)(bytes) >> BBSHIFT)
497#define BBTOB(bbs) ((bbs) << BBSHIFT)
498#endif
499
500#endif
501