blob: 464cff52686092c0f862f551b2db53ed3050b629 [file] [log] [blame]
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1f55ed02008-12-01 19:14:02 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
Miklos Szeredic79e3222007-10-18 03:06:59 -07009/*
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
Miklos Szeredia9ff4f82007-10-18 03:07:02 -070016 * - add lk_flags in fuse_lk_in
Miklos Szeredif3332112007-10-18 03:07:04 -070017 * - add lock_owner field to fuse_setattr_in, fuse_read_in and fuse_write_in
Miklos Szeredi0e9663e2007-10-18 03:07:05 -070018 * - add blksize field to fuse_attr
Miklos Szeredia6643092007-11-28 16:22:00 -080019 * - add file flags field to fuse_read_in and fuse_write_in
Tejun Heoa7c1b992008-10-16 16:08:57 +020020 *
21 * 7.10
22 * - add nonseekable open flag
Miklos Szeredi1f55ed02008-12-01 19:14:02 +010023 *
24 * 7.11
25 * - add IOCTL message
26 * - add unsolicited notification support
27 * - add POLL message and NOTIFY_POLL notification
Miklos Szeredie0a43dd2009-06-30 20:12:23 +020028 *
29 * 7.12
30 * - add umask flag to input argument of open, mknod and mkdir
John Muir3b463ae2009-05-31 11:13:57 -040031 * - add notification messages for invalidation of inodes and
32 * directory entries
Csaba Henk7a6d3c82009-07-01 17:28:41 -070033 *
34 * 7.13
35 * - make max number of background requests and congestion threshold
36 * tunables
Miklos Szeredidd3bb142010-05-25 15:06:06 +020037 *
38 * 7.14
39 * - add splice support to fuse device
Miklos Szeredia1d75f22010-07-12 14:41:40 +020040 *
41 * 7.15
42 * - add store notify
Miklos Szeredi2d45ba32010-07-12 14:41:40 +020043 * - add retrieve notify
Miklos Szeredi02c048b2010-12-07 20:16:56 +010044 *
45 * 7.16
46 * - add BATCH_FORGET request
Miklos Szeredi1baa26b2010-12-07 20:16:56 +010047 * - FUSE_IOCTL_UNRESTRICTED shall now return with array of 'struct
48 * fuse_ioctl_iovec' instead of ambiguous 'struct iovec'
49 * - add FUSE_IOCTL_32BIT flag
Miklos Szeredi37fb3a32011-08-08 16:08:08 +020050 *
51 * 7.17
52 * - add FUSE_FLOCK_LOCKS and FUSE_RELEASE_FLOCK_UNLOCK
Miklos Szeredic79e3222007-10-18 03:06:59 -070053 */
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070054
Tejun Heo29d434b2008-10-16 16:08:57 +020055#ifndef _LINUX_FUSE_H
56#define _LINUX_FUSE_H
57
Miklos Szeredi1f55ed02008-12-01 19:14:02 +010058#include <linux/types.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070059
Miklos Szeredi37d217f2009-07-08 18:17:58 +020060/*
61 * Version negotiation:
62 *
63 * Both the kernel and userspace send the version they support in the
64 * INIT request and reply respectively.
65 *
66 * If the major versions match then both shall use the smallest
67 * of the two minor versions for communication.
68 *
69 * If the kernel supports a larger major version, then userspace shall
70 * reply with the major version it supports, ignore the rest of the
71 * INIT message and expect a new INIT message from the kernel with a
72 * matching major version.
73 *
74 * If the library supports a larger major version, then it shall fall
75 * back to the major protocol version sent by the kernel for
76 * communication and reply with that major version (and an arbitrary
77 * supported minor version).
78 */
79
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070080/** Version number of this interface */
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070081#define FUSE_KERNEL_VERSION 7
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070082
83/** Minor version number of this interface */
Miklos Szeredi37fb3a32011-08-08 16:08:08 +020084#define FUSE_KERNEL_MINOR_VERSION 17
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070085
86/** The node ID of the root inode */
87#define FUSE_ROOT_ID 1
88
Miklos Szeredi06663262005-09-09 13:10:32 -070089/* Make sure all structures are padded to 64bit boundary, so 32bit
90 userspace works under 64bit kernels */
91
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070092struct fuse_attr {
93 __u64 ino;
94 __u64 size;
95 __u64 blocks;
96 __u64 atime;
97 __u64 mtime;
98 __u64 ctime;
99 __u32 atimensec;
100 __u32 mtimensec;
101 __u32 ctimensec;
102 __u32 mode;
103 __u32 nlink;
104 __u32 uid;
105 __u32 gid;
106 __u32 rdev;
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700107 __u32 blksize;
108 __u32 padding;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700109};
110
Miklos Szeredie5e55582005-09-09 13:10:28 -0700111struct fuse_kstatfs {
112 __u64 blocks;
113 __u64 bfree;
114 __u64 bavail;
115 __u64 files;
116 __u64 ffree;
117 __u32 bsize;
118 __u32 namelen;
Miklos Szeredide5f1202006-01-06 00:19:37 -0800119 __u32 frsize;
120 __u32 padding;
121 __u32 spare[6];
Miklos Szeredie5e55582005-09-09 13:10:28 -0700122};
123
Miklos Szeredi71421252006-06-25 05:48:52 -0700124struct fuse_file_lock {
125 __u64 start;
126 __u64 end;
127 __u32 type;
128 __u32 pid; /* tgid */
129};
130
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800131/**
132 * Bitmasks for fuse_setattr_in.valid
133 */
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700134#define FATTR_MODE (1 << 0)
135#define FATTR_UID (1 << 1)
136#define FATTR_GID (1 << 2)
137#define FATTR_SIZE (1 << 3)
138#define FATTR_ATIME (1 << 4)
139#define FATTR_MTIME (1 << 5)
Miklos Szeredibefc6492005-11-07 00:59:52 -0800140#define FATTR_FH (1 << 6)
Miklos Szeredi17637cb2007-10-18 03:07:01 -0700141#define FATTR_ATIME_NOW (1 << 7)
142#define FATTR_MTIME_NOW (1 << 8)
Miklos Szeredif3332112007-10-18 03:07:04 -0700143#define FATTR_LOCKOWNER (1 << 9)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700144
Miklos Szeredi45323fb2005-09-09 13:10:37 -0700145/**
146 * Flags returned by the OPEN request
147 *
148 * FOPEN_DIRECT_IO: bypass page cache for this open file
149 * FOPEN_KEEP_CACHE: don't invalidate the data cache on open
Tejun Heoa7c1b992008-10-16 16:08:57 +0200150 * FOPEN_NONSEEKABLE: the file is not seekable
Miklos Szeredi45323fb2005-09-09 13:10:37 -0700151 */
152#define FOPEN_DIRECT_IO (1 << 0)
153#define FOPEN_KEEP_CACHE (1 << 1)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200154#define FOPEN_NONSEEKABLE (1 << 2)
Miklos Szeredi45323fb2005-09-09 13:10:37 -0700155
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800156/**
157 * INIT request/reply flags
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700158 *
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200159 * FUSE_POSIX_LOCKS: remote locking for POSIX file locks
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700160 * FUSE_EXPORT_SUPPORT: filesystem handles lookups of "." and ".."
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200161 * FUSE_DONT_MASK: don't apply umask to file mode on create operations
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200162 * FUSE_FLOCK_LOCKS: remote locking for BSD style file locks
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800163 */
164#define FUSE_ASYNC_READ (1 << 0)
Miklos Szeredi71421252006-06-25 05:48:52 -0700165#define FUSE_POSIX_LOCKS (1 << 1)
Miklos Szeredic79e3222007-10-18 03:06:59 -0700166#define FUSE_FILE_OPS (1 << 2)
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700167#define FUSE_ATOMIC_O_TRUNC (1 << 3)
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700168#define FUSE_EXPORT_SUPPORT (1 << 4)
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700169#define FUSE_BIG_WRITES (1 << 5)
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200170#define FUSE_DONT_MASK (1 << 6)
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200171#define FUSE_FLOCK_LOCKS (1 << 10)
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800172
Miklos Szeredie9168c12006-12-06 20:35:38 -0800173/**
Tejun Heo151060a2009-04-14 10:54:54 +0900174 * CUSE INIT request/reply flags
175 *
176 * CUSE_UNRESTRICTED_IOCTL: use unrestricted ioctl
177 */
178#define CUSE_UNRESTRICTED_IOCTL (1 << 0)
179
180/**
Miklos Szeredie9168c12006-12-06 20:35:38 -0800181 * Release flags
182 */
183#define FUSE_RELEASE_FLUSH (1 << 0)
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200184#define FUSE_RELEASE_FLOCK_UNLOCK (1 << 1)
Miklos Szeredie9168c12006-12-06 20:35:38 -0800185
Miklos Szeredic79e3222007-10-18 03:06:59 -0700186/**
187 * Getattr flags
188 */
189#define FUSE_GETATTR_FH (1 << 0)
190
Miklos Szeredia9ff4f82007-10-18 03:07:02 -0700191/**
192 * Lock flags
193 */
194#define FUSE_LK_FLOCK (1 << 0)
195
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700196/**
197 * WRITE flags
198 *
199 * FUSE_WRITE_CACHE: delayed write from page cache, file handle is guessed
Miklos Szeredif3332112007-10-18 03:07:04 -0700200 * FUSE_WRITE_LOCKOWNER: lock_owner field is valid
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700201 */
202#define FUSE_WRITE_CACHE (1 << 0)
Miklos Szeredif3332112007-10-18 03:07:04 -0700203#define FUSE_WRITE_LOCKOWNER (1 << 1)
204
205/**
206 * Read flags
207 */
208#define FUSE_READ_LOCKOWNER (1 << 1)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700209
Tejun Heo59efec72008-11-26 12:03:55 +0100210/**
211 * Ioctl flags
212 *
213 * FUSE_IOCTL_COMPAT: 32bit compat ioctl on 64bit machine
214 * FUSE_IOCTL_UNRESTRICTED: not restricted to well-formed ioctls, retry allowed
215 * FUSE_IOCTL_RETRY: retry with new iovecs
Miklos Szeredi1baa26b2010-12-07 20:16:56 +0100216 * FUSE_IOCTL_32BIT: 32bit ioctl
Tejun Heo59efec72008-11-26 12:03:55 +0100217 *
218 * FUSE_IOCTL_MAX_IOV: maximum of in_iovecs + out_iovecs
219 */
220#define FUSE_IOCTL_COMPAT (1 << 0)
221#define FUSE_IOCTL_UNRESTRICTED (1 << 1)
222#define FUSE_IOCTL_RETRY (1 << 2)
Miklos Szeredi1baa26b2010-12-07 20:16:56 +0100223#define FUSE_IOCTL_32BIT (1 << 3)
Tejun Heo59efec72008-11-26 12:03:55 +0100224
225#define FUSE_IOCTL_MAX_IOV 256
226
Tejun Heo95668a62008-11-26 12:03:55 +0100227/**
228 * Poll flags
229 *
230 * FUSE_POLL_SCHEDULE_NOTIFY: request poll notify
231 */
232#define FUSE_POLL_SCHEDULE_NOTIFY (1 << 0)
233
Miklos Szeredi334f4852005-09-09 13:10:27 -0700234enum fuse_opcode {
Miklos Szeredie5e55582005-09-09 13:10:28 -0700235 FUSE_LOOKUP = 1,
236 FUSE_FORGET = 2, /* no reply */
237 FUSE_GETATTR = 3,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700238 FUSE_SETATTR = 4,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700239 FUSE_READLINK = 5,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700240 FUSE_SYMLINK = 6,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700241 FUSE_MKNOD = 8,
242 FUSE_MKDIR = 9,
243 FUSE_UNLINK = 10,
244 FUSE_RMDIR = 11,
245 FUSE_RENAME = 12,
246 FUSE_LINK = 13,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700247 FUSE_OPEN = 14,
248 FUSE_READ = 15,
249 FUSE_WRITE = 16,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700250 FUSE_STATFS = 17,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700251 FUSE_RELEASE = 18,
252 FUSE_FSYNC = 20,
Miklos Szeredi92a87802005-09-09 13:10:31 -0700253 FUSE_SETXATTR = 21,
254 FUSE_GETXATTR = 22,
255 FUSE_LISTXATTR = 23,
256 FUSE_REMOVEXATTR = 24,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700257 FUSE_FLUSH = 25,
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700258 FUSE_INIT = 26,
259 FUSE_OPENDIR = 27,
260 FUSE_READDIR = 28,
Miklos Szeredi82547982005-09-09 13:10:38 -0700261 FUSE_RELEASEDIR = 29,
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800262 FUSE_FSYNCDIR = 30,
Miklos Szeredi71421252006-06-25 05:48:52 -0700263 FUSE_GETLK = 31,
264 FUSE_SETLK = 32,
265 FUSE_SETLKW = 33,
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800266 FUSE_ACCESS = 34,
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700267 FUSE_CREATE = 35,
268 FUSE_INTERRUPT = 36,
Miklos Szeredib2d22722006-12-06 20:35:51 -0800269 FUSE_BMAP = 37,
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800270 FUSE_DESTROY = 38,
Tejun Heo59efec72008-11-26 12:03:55 +0100271 FUSE_IOCTL = 39,
Tejun Heo95668a62008-11-26 12:03:55 +0100272 FUSE_POLL = 40,
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200273 FUSE_NOTIFY_REPLY = 41,
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100274 FUSE_BATCH_FORGET = 42,
Tejun Heo151060a2009-04-14 10:54:54 +0900275
276 /* CUSE specific operations */
277 CUSE_INIT = 4096,
Miklos Szeredi334f4852005-09-09 13:10:27 -0700278};
279
Tejun Heo85993962008-11-26 12:03:55 +0100280enum fuse_notify_code {
Tejun Heo95668a62008-11-26 12:03:55 +0100281 FUSE_NOTIFY_POLL = 1,
John Muir3b463ae2009-05-31 11:13:57 -0400282 FUSE_NOTIFY_INVAL_INODE = 2,
283 FUSE_NOTIFY_INVAL_ENTRY = 3,
Miklos Szeredia1d75f22010-07-12 14:41:40 +0200284 FUSE_NOTIFY_STORE = 4,
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200285 FUSE_NOTIFY_RETRIEVE = 5,
Tejun Heo85993962008-11-26 12:03:55 +0100286 FUSE_NOTIFY_CODE_MAX,
287};
288
Miklos Szeredi1d3d7522006-01-06 00:19:40 -0800289/* The read buffer is required to be at least 8k, but may be much larger */
290#define FUSE_MIN_READ_BUFFER 8192
Miklos Szeredie5e55582005-09-09 13:10:28 -0700291
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700292#define FUSE_COMPAT_ENTRY_OUT_SIZE 120
293
Miklos Szeredie5e55582005-09-09 13:10:28 -0700294struct fuse_entry_out {
295 __u64 nodeid; /* Inode ID */
296 __u64 generation; /* Inode generation: nodeid:gen must
297 be unique for the fs's lifetime */
298 __u64 entry_valid; /* Cache timeout for the name */
299 __u64 attr_valid; /* Cache timeout for the attributes */
300 __u32 entry_valid_nsec;
301 __u32 attr_valid_nsec;
302 struct fuse_attr attr;
303};
304
305struct fuse_forget_in {
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700306 __u64 nlookup;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700307};
308
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100309struct fuse_forget_one {
310 __u64 nodeid;
311 __u64 nlookup;
312};
313
314struct fuse_batch_forget_in {
315 __u32 count;
316 __u32 dummy;
317};
318
Miklos Szeredic79e3222007-10-18 03:06:59 -0700319struct fuse_getattr_in {
320 __u32 getattr_flags;
321 __u32 dummy;
322 __u64 fh;
323};
324
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700325#define FUSE_COMPAT_ATTR_OUT_SIZE 96
326
Miklos Szeredie5e55582005-09-09 13:10:28 -0700327struct fuse_attr_out {
328 __u64 attr_valid; /* Cache timeout for the attributes */
329 __u32 attr_valid_nsec;
330 __u32 dummy;
331 struct fuse_attr attr;
332};
333
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200334#define FUSE_COMPAT_MKNOD_IN_SIZE 8
335
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700336struct fuse_mknod_in {
337 __u32 mode;
338 __u32 rdev;
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200339 __u32 umask;
340 __u32 padding;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700341};
342
343struct fuse_mkdir_in {
344 __u32 mode;
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200345 __u32 umask;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700346};
347
348struct fuse_rename_in {
349 __u64 newdir;
350};
351
352struct fuse_link_in {
353 __u64 oldnodeid;
354};
355
356struct fuse_setattr_in {
357 __u32 valid;
Miklos Szeredi06663262005-09-09 13:10:32 -0700358 __u32 padding;
Miklos Szeredibefc6492005-11-07 00:59:52 -0800359 __u64 fh;
360 __u64 size;
Miklos Szeredif3332112007-10-18 03:07:04 -0700361 __u64 lock_owner;
Miklos Szeredibefc6492005-11-07 00:59:52 -0800362 __u64 atime;
363 __u64 mtime;
364 __u64 unused2;
365 __u32 atimensec;
366 __u32 mtimensec;
367 __u32 unused3;
368 __u32 mode;
369 __u32 unused4;
370 __u32 uid;
371 __u32 gid;
372 __u32 unused5;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700373};
374
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700375struct fuse_open_in {
376 __u32 flags;
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200377 __u32 unused;
378};
379
380struct fuse_create_in {
381 __u32 flags;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800382 __u32 mode;
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200383 __u32 umask;
384 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700385};
386
387struct fuse_open_out {
388 __u64 fh;
389 __u32 open_flags;
Miklos Szeredi06663262005-09-09 13:10:32 -0700390 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700391};
392
393struct fuse_release_in {
394 __u64 fh;
395 __u32 flags;
Miklos Szeredie9168c12006-12-06 20:35:38 -0800396 __u32 release_flags;
397 __u64 lock_owner;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700398};
399
400struct fuse_flush_in {
401 __u64 fh;
Miklos Szeredie9168c12006-12-06 20:35:38 -0800402 __u32 unused;
Miklos Szeredi06663262005-09-09 13:10:32 -0700403 __u32 padding;
Miklos Szeredi71421252006-06-25 05:48:52 -0700404 __u64 lock_owner;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700405};
406
407struct fuse_read_in {
408 __u64 fh;
409 __u64 offset;
410 __u32 size;
Miklos Szeredif3332112007-10-18 03:07:04 -0700411 __u32 read_flags;
412 __u64 lock_owner;
Miklos Szeredia6643092007-11-28 16:22:00 -0800413 __u32 flags;
414 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700415};
416
Miklos Szeredif3332112007-10-18 03:07:04 -0700417#define FUSE_COMPAT_WRITE_IN_SIZE 24
418
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700419struct fuse_write_in {
420 __u64 fh;
421 __u64 offset;
422 __u32 size;
423 __u32 write_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700424 __u64 lock_owner;
Miklos Szeredia6643092007-11-28 16:22:00 -0800425 __u32 flags;
426 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700427};
428
429struct fuse_write_out {
430 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700431 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700432};
433
Miklos Szeredide5f1202006-01-06 00:19:37 -0800434#define FUSE_COMPAT_STATFS_SIZE 48
435
Miklos Szeredie5e55582005-09-09 13:10:28 -0700436struct fuse_statfs_out {
437 struct fuse_kstatfs st;
438};
439
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700440struct fuse_fsync_in {
441 __u64 fh;
442 __u32 fsync_flags;
Miklos Szeredi06663262005-09-09 13:10:32 -0700443 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700444};
445
Miklos Szeredi92a87802005-09-09 13:10:31 -0700446struct fuse_setxattr_in {
447 __u32 size;
448 __u32 flags;
449};
450
451struct fuse_getxattr_in {
452 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700453 __u32 padding;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700454};
455
456struct fuse_getxattr_out {
457 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700458 __u32 padding;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700459};
460
Miklos Szeredi71421252006-06-25 05:48:52 -0700461struct fuse_lk_in {
462 __u64 fh;
463 __u64 owner;
464 struct fuse_file_lock lk;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -0700465 __u32 lk_flags;
466 __u32 padding;
Miklos Szeredi71421252006-06-25 05:48:52 -0700467};
468
469struct fuse_lk_out {
470 struct fuse_file_lock lk;
471};
472
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800473struct fuse_access_in {
474 __u32 mask;
475 __u32 padding;
476};
477
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800478struct fuse_init_in {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700479 __u32 major;
480 __u32 minor;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800481 __u32 max_readahead;
482 __u32 flags;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700483};
484
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800485struct fuse_init_out {
486 __u32 major;
487 __u32 minor;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800488 __u32 max_readahead;
489 __u32 flags;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700490 __u16 max_background;
491 __u16 congestion_threshold;
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800492 __u32 max_write;
493};
494
Tejun Heo151060a2009-04-14 10:54:54 +0900495#define CUSE_INIT_INFO_MAX 4096
496
497struct cuse_init_in {
498 __u32 major;
499 __u32 minor;
500 __u32 unused;
501 __u32 flags;
502};
503
504struct cuse_init_out {
505 __u32 major;
506 __u32 minor;
507 __u32 unused;
508 __u32 flags;
509 __u32 max_read;
510 __u32 max_write;
511 __u32 dev_major; /* chardev major */
512 __u32 dev_minor; /* chardev minor */
513 __u32 spare[10];
514};
515
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700516struct fuse_interrupt_in {
517 __u64 unique;
518};
519
Miklos Szeredib2d22722006-12-06 20:35:51 -0800520struct fuse_bmap_in {
521 __u64 block;
522 __u32 blocksize;
523 __u32 padding;
524};
525
526struct fuse_bmap_out {
527 __u64 block;
528};
529
Tejun Heo59efec72008-11-26 12:03:55 +0100530struct fuse_ioctl_in {
531 __u64 fh;
532 __u32 flags;
533 __u32 cmd;
534 __u64 arg;
535 __u32 in_size;
536 __u32 out_size;
537};
538
Miklos Szeredi1baa26b2010-12-07 20:16:56 +0100539struct fuse_ioctl_iovec {
540 __u64 base;
541 __u64 len;
542};
543
Tejun Heo59efec72008-11-26 12:03:55 +0100544struct fuse_ioctl_out {
545 __s32 result;
546 __u32 flags;
547 __u32 in_iovs;
548 __u32 out_iovs;
549};
550
Tejun Heo95668a62008-11-26 12:03:55 +0100551struct fuse_poll_in {
552 __u64 fh;
553 __u64 kh;
554 __u32 flags;
555 __u32 padding;
556};
557
558struct fuse_poll_out {
559 __u32 revents;
560 __u32 padding;
561};
562
563struct fuse_notify_poll_wakeup_out {
564 __u64 kh;
565};
566
Miklos Szeredi334f4852005-09-09 13:10:27 -0700567struct fuse_in_header {
568 __u32 len;
569 __u32 opcode;
570 __u64 unique;
571 __u64 nodeid;
572 __u32 uid;
573 __u32 gid;
574 __u32 pid;
Miklos Szeredi06663262005-09-09 13:10:32 -0700575 __u32 padding;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700576};
577
578struct fuse_out_header {
579 __u32 len;
580 __s32 error;
581 __u64 unique;
582};
583
Miklos Szeredie5e55582005-09-09 13:10:28 -0700584struct fuse_dirent {
585 __u64 ino;
586 __u64 off;
587 __u32 namelen;
588 __u32 type;
589 char name[0];
590};
591
Andrew Morton21f3da92007-07-15 23:39:50 -0700592#define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
Miklos Szeredie5e55582005-09-09 13:10:28 -0700593#define FUSE_DIRENT_ALIGN(x) (((x) + sizeof(__u64) - 1) & ~(sizeof(__u64) - 1))
594#define FUSE_DIRENT_SIZE(d) \
595 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)
Tejun Heo29d434b2008-10-16 16:08:57 +0200596
John Muir3b463ae2009-05-31 11:13:57 -0400597struct fuse_notify_inval_inode_out {
598 __u64 ino;
599 __s64 off;
600 __s64 len;
601};
602
603struct fuse_notify_inval_entry_out {
604 __u64 parent;
605 __u32 namelen;
606 __u32 padding;
607};
608
Miklos Szeredia1d75f22010-07-12 14:41:40 +0200609struct fuse_notify_store_out {
610 __u64 nodeid;
611 __u64 offset;
612 __u32 size;
613 __u32 padding;
614};
615
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200616struct fuse_notify_retrieve_out {
617 __u64 notify_unique;
618 __u64 nodeid;
619 __u64 offset;
620 __u32 size;
621 __u32 padding;
622};
623
624/* Matches the size of fuse_write_in */
625struct fuse_notify_retrieve_in {
626 __u64 dummy1;
627 __u64 offset;
628 __u32 size;
629 __u32 dummy2;
630 __u64 dummy3;
631 __u64 dummy4;
632};
633
Tejun Heo29d434b2008-10-16 16:08:57 +0200634#endif /* _LINUX_FUSE_H */