]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/fuse.h
fuse: cleanup: add fuse_get_attr_version()
[mirror_ubuntu-artful-kernel.git] / include / linux / fuse.h
CommitLineData
d8a5ba45
MS
1/*
2 FUSE: Filesystem in Userspace
71421259 3 Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu>
d8a5ba45
MS
4
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
c79e322f
MS
9/*
10 * This file defines the kernel interface of FUSE
11 *
12 * Protocol changelog:
13 *
14 * 7.9:
15 * - new fuse_getattr_in input argument of GETATTR
a9ff4f87 16 * - add lk_flags in fuse_lk_in
f3332114 17 * - add lock_owner field to fuse_setattr_in, fuse_read_in and fuse_write_in
0e9663ee 18 * - add blksize field to fuse_attr
c79e322f 19 */
d8a5ba45
MS
20
21#include <asm/types.h>
3e8c54fa 22#include <linux/major.h>
d8a5ba45
MS
23
24/** Version number of this interface */
9e6268db 25#define FUSE_KERNEL_VERSION 7
d8a5ba45
MS
26
27/** Minor version number of this interface */
c79e322f 28#define FUSE_KERNEL_MINOR_VERSION 9
d8a5ba45
MS
29
30/** The node ID of the root inode */
31#define FUSE_ROOT_ID 1
32
334f485d 33/** The major number of the fuse character device */
3e8c54fa 34#define FUSE_MAJOR MISC_MAJOR
334f485d
MS
35
36/** The minor number of the fuse character device */
37#define FUSE_MINOR 229
38
06663267
MS
39/* Make sure all structures are padded to 64bit boundary, so 32bit
40 userspace works under 64bit kernels */
41
d8a5ba45
MS
42struct fuse_attr {
43 __u64 ino;
44 __u64 size;
45 __u64 blocks;
46 __u64 atime;
47 __u64 mtime;
48 __u64 ctime;
49 __u32 atimensec;
50 __u32 mtimensec;
51 __u32 ctimensec;
52 __u32 mode;
53 __u32 nlink;
54 __u32 uid;
55 __u32 gid;
56 __u32 rdev;
0e9663ee
MS
57 __u32 blksize;
58 __u32 padding;
d8a5ba45
MS
59};
60
e5e5558e
MS
61struct fuse_kstatfs {
62 __u64 blocks;
63 __u64 bfree;
64 __u64 bavail;
65 __u64 files;
66 __u64 ffree;
67 __u32 bsize;
68 __u32 namelen;
de5f1202
MS
69 __u32 frsize;
70 __u32 padding;
71 __u32 spare[6];
e5e5558e
MS
72};
73
71421259
MS
74struct fuse_file_lock {
75 __u64 start;
76 __u64 end;
77 __u32 type;
78 __u32 pid; /* tgid */
79};
80
9cd68455
MS
81/**
82 * Bitmasks for fuse_setattr_in.valid
83 */
9e6268db
MS
84#define FATTR_MODE (1 << 0)
85#define FATTR_UID (1 << 1)
86#define FATTR_GID (1 << 2)
87#define FATTR_SIZE (1 << 3)
88#define FATTR_ATIME (1 << 4)
89#define FATTR_MTIME (1 << 5)
befc649c 90#define FATTR_FH (1 << 6)
17637cba
MS
91#define FATTR_ATIME_NOW (1 << 7)
92#define FATTR_MTIME_NOW (1 << 8)
f3332114 93#define FATTR_LOCKOWNER (1 << 9)
9e6268db 94
45323fb7
MS
95/**
96 * Flags returned by the OPEN request
97 *
98 * FOPEN_DIRECT_IO: bypass page cache for this open file
99 * FOPEN_KEEP_CACHE: don't invalidate the data cache on open
100 */
101#define FOPEN_DIRECT_IO (1 << 0)
102#define FOPEN_KEEP_CACHE (1 << 1)
103
9cd68455
MS
104/**
105 * INIT request/reply flags
106 */
107#define FUSE_ASYNC_READ (1 << 0)
71421259 108#define FUSE_POSIX_LOCKS (1 << 1)
c79e322f 109#define FUSE_FILE_OPS (1 << 2)
6ff958ed 110#define FUSE_ATOMIC_O_TRUNC (1 << 3)
9cd68455 111
e9168c18
MS
112/**
113 * Release flags
114 */
115#define FUSE_RELEASE_FLUSH (1 << 0)
116
c79e322f
MS
117/**
118 * Getattr flags
119 */
120#define FUSE_GETATTR_FH (1 << 0)
121
a9ff4f87
MS
122/**
123 * Lock flags
124 */
125#define FUSE_LK_FLOCK (1 << 0)
126
b25e82e5
MS
127/**
128 * WRITE flags
129 *
130 * FUSE_WRITE_CACHE: delayed write from page cache, file handle is guessed
f3332114 131 * FUSE_WRITE_LOCKOWNER: lock_owner field is valid
b25e82e5
MS
132 */
133#define FUSE_WRITE_CACHE (1 << 0)
f3332114
MS
134#define FUSE_WRITE_LOCKOWNER (1 << 1)
135
136/**
137 * Read flags
138 */
139#define FUSE_READ_LOCKOWNER (1 << 1)
b25e82e5 140
334f485d 141enum fuse_opcode {
e5e5558e
MS
142 FUSE_LOOKUP = 1,
143 FUSE_FORGET = 2, /* no reply */
144 FUSE_GETATTR = 3,
9e6268db 145 FUSE_SETATTR = 4,
e5e5558e 146 FUSE_READLINK = 5,
9e6268db 147 FUSE_SYMLINK = 6,
9e6268db
MS
148 FUSE_MKNOD = 8,
149 FUSE_MKDIR = 9,
150 FUSE_UNLINK = 10,
151 FUSE_RMDIR = 11,
152 FUSE_RENAME = 12,
153 FUSE_LINK = 13,
b6aeaded
MS
154 FUSE_OPEN = 14,
155 FUSE_READ = 15,
156 FUSE_WRITE = 16,
e5e5558e 157 FUSE_STATFS = 17,
b6aeaded
MS
158 FUSE_RELEASE = 18,
159 FUSE_FSYNC = 20,
92a8780e
MS
160 FUSE_SETXATTR = 21,
161 FUSE_GETXATTR = 22,
162 FUSE_LISTXATTR = 23,
163 FUSE_REMOVEXATTR = 24,
b6aeaded 164 FUSE_FLUSH = 25,
04730fef
MS
165 FUSE_INIT = 26,
166 FUSE_OPENDIR = 27,
167 FUSE_READDIR = 28,
82547981 168 FUSE_RELEASEDIR = 29,
31d40d74 169 FUSE_FSYNCDIR = 30,
71421259
MS
170 FUSE_GETLK = 31,
171 FUSE_SETLK = 32,
172 FUSE_SETLKW = 33,
fd72faac 173 FUSE_ACCESS = 34,
a4d27e75
MS
174 FUSE_CREATE = 35,
175 FUSE_INTERRUPT = 36,
b2d2272f 176 FUSE_BMAP = 37,
0ec7ca41 177 FUSE_DESTROY = 38,
334f485d
MS
178};
179
1d3d752b
MS
180/* The read buffer is required to be at least 8k, but may be much larger */
181#define FUSE_MIN_READ_BUFFER 8192
e5e5558e 182
0e9663ee
MS
183#define FUSE_COMPAT_ENTRY_OUT_SIZE 120
184
e5e5558e
MS
185struct fuse_entry_out {
186 __u64 nodeid; /* Inode ID */
187 __u64 generation; /* Inode generation: nodeid:gen must
188 be unique for the fs's lifetime */
189 __u64 entry_valid; /* Cache timeout for the name */
190 __u64 attr_valid; /* Cache timeout for the attributes */
191 __u32 entry_valid_nsec;
192 __u32 attr_valid_nsec;
193 struct fuse_attr attr;
194};
195
196struct fuse_forget_in {
9e6268db 197 __u64 nlookup;
e5e5558e
MS
198};
199
c79e322f
MS
200struct fuse_getattr_in {
201 __u32 getattr_flags;
202 __u32 dummy;
203 __u64 fh;
204};
205
0e9663ee
MS
206#define FUSE_COMPAT_ATTR_OUT_SIZE 96
207
e5e5558e
MS
208struct fuse_attr_out {
209 __u64 attr_valid; /* Cache timeout for the attributes */
210 __u32 attr_valid_nsec;
211 __u32 dummy;
212 struct fuse_attr attr;
213};
214
9e6268db
MS
215struct fuse_mknod_in {
216 __u32 mode;
217 __u32 rdev;
218};
219
220struct fuse_mkdir_in {
221 __u32 mode;
06663267 222 __u32 padding;
9e6268db
MS
223};
224
225struct fuse_rename_in {
226 __u64 newdir;
227};
228
229struct fuse_link_in {
230 __u64 oldnodeid;
231};
232
233struct fuse_setattr_in {
234 __u32 valid;
06663267 235 __u32 padding;
befc649c
MS
236 __u64 fh;
237 __u64 size;
f3332114 238 __u64 lock_owner;
befc649c
MS
239 __u64 atime;
240 __u64 mtime;
241 __u64 unused2;
242 __u32 atimensec;
243 __u32 mtimensec;
244 __u32 unused3;
245 __u32 mode;
246 __u32 unused4;
247 __u32 uid;
248 __u32 gid;
249 __u32 unused5;
9e6268db
MS
250};
251
b6aeaded
MS
252struct fuse_open_in {
253 __u32 flags;
fd72faac 254 __u32 mode;
b6aeaded
MS
255};
256
257struct fuse_open_out {
258 __u64 fh;
259 __u32 open_flags;
06663267 260 __u32 padding;
b6aeaded
MS
261};
262
263struct fuse_release_in {
264 __u64 fh;
265 __u32 flags;
e9168c18
MS
266 __u32 release_flags;
267 __u64 lock_owner;
b6aeaded
MS
268};
269
270struct fuse_flush_in {
271 __u64 fh;
e9168c18 272 __u32 unused;
06663267 273 __u32 padding;
71421259 274 __u64 lock_owner;
b6aeaded
MS
275};
276
277struct fuse_read_in {
278 __u64 fh;
279 __u64 offset;
280 __u32 size;
f3332114
MS
281 __u32 read_flags;
282 __u64 lock_owner;
b6aeaded
MS
283};
284
f3332114
MS
285#define FUSE_COMPAT_WRITE_IN_SIZE 24
286
b6aeaded
MS
287struct fuse_write_in {
288 __u64 fh;
289 __u64 offset;
290 __u32 size;
291 __u32 write_flags;
f3332114 292 __u64 lock_owner;
b6aeaded
MS
293};
294
295struct fuse_write_out {
296 __u32 size;
06663267 297 __u32 padding;
b6aeaded
MS
298};
299
de5f1202
MS
300#define FUSE_COMPAT_STATFS_SIZE 48
301
e5e5558e
MS
302struct fuse_statfs_out {
303 struct fuse_kstatfs st;
304};
305
b6aeaded
MS
306struct fuse_fsync_in {
307 __u64 fh;
308 __u32 fsync_flags;
06663267 309 __u32 padding;
b6aeaded
MS
310};
311
92a8780e
MS
312struct fuse_setxattr_in {
313 __u32 size;
314 __u32 flags;
315};
316
317struct fuse_getxattr_in {
318 __u32 size;
06663267 319 __u32 padding;
92a8780e
MS
320};
321
322struct fuse_getxattr_out {
323 __u32 size;
06663267 324 __u32 padding;
92a8780e
MS
325};
326
71421259
MS
327struct fuse_lk_in {
328 __u64 fh;
329 __u64 owner;
330 struct fuse_file_lock lk;
a9ff4f87
MS
331 __u32 lk_flags;
332 __u32 padding;
71421259
MS
333};
334
335struct fuse_lk_out {
336 struct fuse_file_lock lk;
337};
338
31d40d74
MS
339struct fuse_access_in {
340 __u32 mask;
341 __u32 padding;
342};
343
3ec870d5 344struct fuse_init_in {
334f485d
MS
345 __u32 major;
346 __u32 minor;
9cd68455
MS
347 __u32 max_readahead;
348 __u32 flags;
334f485d
MS
349};
350
3ec870d5
MS
351struct fuse_init_out {
352 __u32 major;
353 __u32 minor;
9cd68455
MS
354 __u32 max_readahead;
355 __u32 flags;
356 __u32 unused;
3ec870d5
MS
357 __u32 max_write;
358};
359
a4d27e75
MS
360struct fuse_interrupt_in {
361 __u64 unique;
362};
363
b2d2272f
MS
364struct fuse_bmap_in {
365 __u64 block;
366 __u32 blocksize;
367 __u32 padding;
368};
369
370struct fuse_bmap_out {
371 __u64 block;
372};
373
334f485d
MS
374struct fuse_in_header {
375 __u32 len;
376 __u32 opcode;
377 __u64 unique;
378 __u64 nodeid;
379 __u32 uid;
380 __u32 gid;
381 __u32 pid;
06663267 382 __u32 padding;
334f485d
MS
383};
384
385struct fuse_out_header {
386 __u32 len;
387 __s32 error;
388 __u64 unique;
389};
390
e5e5558e
MS
391struct fuse_dirent {
392 __u64 ino;
393 __u64 off;
394 __u32 namelen;
395 __u32 type;
396 char name[0];
397};
398
21f3da95 399#define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
e5e5558e
MS
400#define FUSE_DIRENT_ALIGN(x) (((x) + sizeof(__u64) - 1) & ~(sizeof(__u64) - 1))
401#define FUSE_DIRENT_SIZE(d) \
402 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)