blob: 7d4fa5b25b87996b925da0cbd5a3bc1e9b38c97c [file] [log] [blame]
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi71421252006-06-25 05:48:52 -07003 Copyright (C) 2001-2006 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 Szeredic79e3222007-10-18 03:06:59 -070018 */
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070019
20#include <asm/types.h>
Jan Engelhardt3e8c54f2006-06-25 05:48:49 -070021#include <linux/major.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070022
23/** Version number of this interface */
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070024#define FUSE_KERNEL_VERSION 7
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070025
26/** Minor version number of this interface */
Miklos Szeredic79e3222007-10-18 03:06:59 -070027#define FUSE_KERNEL_MINOR_VERSION 9
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070028
29/** The node ID of the root inode */
30#define FUSE_ROOT_ID 1
31
Miklos Szeredi334f4852005-09-09 13:10:27 -070032/** The major number of the fuse character device */
Jan Engelhardt3e8c54f2006-06-25 05:48:49 -070033#define FUSE_MAJOR MISC_MAJOR
Miklos Szeredi334f4852005-09-09 13:10:27 -070034
35/** The minor number of the fuse character device */
36#define FUSE_MINOR 229
37
Miklos Szeredi06663262005-09-09 13:10:32 -070038/* Make sure all structures are padded to 64bit boundary, so 32bit
39 userspace works under 64bit kernels */
40
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070041struct fuse_attr {
42 __u64 ino;
43 __u64 size;
44 __u64 blocks;
45 __u64 atime;
46 __u64 mtime;
47 __u64 ctime;
48 __u32 atimensec;
49 __u32 mtimensec;
50 __u32 ctimensec;
51 __u32 mode;
52 __u32 nlink;
53 __u32 uid;
54 __u32 gid;
55 __u32 rdev;
56};
57
Miklos Szeredie5e55582005-09-09 13:10:28 -070058struct fuse_kstatfs {
59 __u64 blocks;
60 __u64 bfree;
61 __u64 bavail;
62 __u64 files;
63 __u64 ffree;
64 __u32 bsize;
65 __u32 namelen;
Miklos Szeredide5f1202006-01-06 00:19:37 -080066 __u32 frsize;
67 __u32 padding;
68 __u32 spare[6];
Miklos Szeredie5e55582005-09-09 13:10:28 -070069};
70
Miklos Szeredi71421252006-06-25 05:48:52 -070071struct fuse_file_lock {
72 __u64 start;
73 __u64 end;
74 __u32 type;
75 __u32 pid; /* tgid */
76};
77
Miklos Szeredi9cd68452006-02-01 03:04:40 -080078/**
79 * Bitmasks for fuse_setattr_in.valid
80 */
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070081#define FATTR_MODE (1 << 0)
82#define FATTR_UID (1 << 1)
83#define FATTR_GID (1 << 2)
84#define FATTR_SIZE (1 << 3)
85#define FATTR_ATIME (1 << 4)
86#define FATTR_MTIME (1 << 5)
Miklos Szeredibefc6492005-11-07 00:59:52 -080087#define FATTR_FH (1 << 6)
Miklos Szeredi17637cb2007-10-18 03:07:01 -070088#define FATTR_ATIME_NOW (1 << 7)
89#define FATTR_MTIME_NOW (1 << 8)
Miklos Szeredif3332112007-10-18 03:07:04 -070090#define FATTR_LOCKOWNER (1 << 9)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070091
Miklos Szeredi45323fb2005-09-09 13:10:37 -070092/**
93 * Flags returned by the OPEN request
94 *
95 * FOPEN_DIRECT_IO: bypass page cache for this open file
96 * FOPEN_KEEP_CACHE: don't invalidate the data cache on open
97 */
98#define FOPEN_DIRECT_IO (1 << 0)
99#define FOPEN_KEEP_CACHE (1 << 1)
100
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800101/**
102 * INIT request/reply flags
103 */
104#define FUSE_ASYNC_READ (1 << 0)
Miklos Szeredi71421252006-06-25 05:48:52 -0700105#define FUSE_POSIX_LOCKS (1 << 1)
Miklos Szeredic79e3222007-10-18 03:06:59 -0700106#define FUSE_FILE_OPS (1 << 2)
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700107#define FUSE_ATOMIC_O_TRUNC (1 << 3)
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800108
Miklos Szeredie9168c12006-12-06 20:35:38 -0800109/**
110 * Release flags
111 */
112#define FUSE_RELEASE_FLUSH (1 << 0)
113
Miklos Szeredic79e3222007-10-18 03:06:59 -0700114/**
115 * Getattr flags
116 */
117#define FUSE_GETATTR_FH (1 << 0)
118
Miklos Szeredia9ff4f82007-10-18 03:07:02 -0700119/**
120 * Lock flags
121 */
122#define FUSE_LK_FLOCK (1 << 0)
123
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700124/**
125 * WRITE flags
126 *
127 * FUSE_WRITE_CACHE: delayed write from page cache, file handle is guessed
Miklos Szeredif3332112007-10-18 03:07:04 -0700128 * FUSE_WRITE_LOCKOWNER: lock_owner field is valid
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700129 */
130#define FUSE_WRITE_CACHE (1 << 0)
Miklos Szeredif3332112007-10-18 03:07:04 -0700131#define FUSE_WRITE_LOCKOWNER (1 << 1)
132
133/**
134 * Read flags
135 */
136#define FUSE_READ_LOCKOWNER (1 << 1)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700137
Miklos Szeredi334f4852005-09-09 13:10:27 -0700138enum fuse_opcode {
Miklos Szeredie5e55582005-09-09 13:10:28 -0700139 FUSE_LOOKUP = 1,
140 FUSE_FORGET = 2, /* no reply */
141 FUSE_GETATTR = 3,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700142 FUSE_SETATTR = 4,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700143 FUSE_READLINK = 5,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700144 FUSE_SYMLINK = 6,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700145 FUSE_MKNOD = 8,
146 FUSE_MKDIR = 9,
147 FUSE_UNLINK = 10,
148 FUSE_RMDIR = 11,
149 FUSE_RENAME = 12,
150 FUSE_LINK = 13,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700151 FUSE_OPEN = 14,
152 FUSE_READ = 15,
153 FUSE_WRITE = 16,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700154 FUSE_STATFS = 17,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700155 FUSE_RELEASE = 18,
156 FUSE_FSYNC = 20,
Miklos Szeredi92a87802005-09-09 13:10:31 -0700157 FUSE_SETXATTR = 21,
158 FUSE_GETXATTR = 22,
159 FUSE_LISTXATTR = 23,
160 FUSE_REMOVEXATTR = 24,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700161 FUSE_FLUSH = 25,
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700162 FUSE_INIT = 26,
163 FUSE_OPENDIR = 27,
164 FUSE_READDIR = 28,
Miklos Szeredi82547982005-09-09 13:10:38 -0700165 FUSE_RELEASEDIR = 29,
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800166 FUSE_FSYNCDIR = 30,
Miklos Szeredi71421252006-06-25 05:48:52 -0700167 FUSE_GETLK = 31,
168 FUSE_SETLK = 32,
169 FUSE_SETLKW = 33,
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800170 FUSE_ACCESS = 34,
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700171 FUSE_CREATE = 35,
172 FUSE_INTERRUPT = 36,
Miklos Szeredib2d22722006-12-06 20:35:51 -0800173 FUSE_BMAP = 37,
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800174 FUSE_DESTROY = 38,
Miklos Szeredi334f4852005-09-09 13:10:27 -0700175};
176
Miklos Szeredi1d3d7522006-01-06 00:19:40 -0800177/* The read buffer is required to be at least 8k, but may be much larger */
178#define FUSE_MIN_READ_BUFFER 8192
Miklos Szeredie5e55582005-09-09 13:10:28 -0700179
180struct fuse_entry_out {
181 __u64 nodeid; /* Inode ID */
182 __u64 generation; /* Inode generation: nodeid:gen must
183 be unique for the fs's lifetime */
184 __u64 entry_valid; /* Cache timeout for the name */
185 __u64 attr_valid; /* Cache timeout for the attributes */
186 __u32 entry_valid_nsec;
187 __u32 attr_valid_nsec;
188 struct fuse_attr attr;
189};
190
191struct fuse_forget_in {
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700192 __u64 nlookup;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700193};
194
Miklos Szeredic79e3222007-10-18 03:06:59 -0700195struct fuse_getattr_in {
196 __u32 getattr_flags;
197 __u32 dummy;
198 __u64 fh;
199};
200
Miklos Szeredie5e55582005-09-09 13:10:28 -0700201struct fuse_attr_out {
202 __u64 attr_valid; /* Cache timeout for the attributes */
203 __u32 attr_valid_nsec;
204 __u32 dummy;
205 struct fuse_attr attr;
206};
207
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700208struct fuse_mknod_in {
209 __u32 mode;
210 __u32 rdev;
211};
212
213struct fuse_mkdir_in {
214 __u32 mode;
Miklos Szeredi06663262005-09-09 13:10:32 -0700215 __u32 padding;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700216};
217
218struct fuse_rename_in {
219 __u64 newdir;
220};
221
222struct fuse_link_in {
223 __u64 oldnodeid;
224};
225
226struct fuse_setattr_in {
227 __u32 valid;
Miklos Szeredi06663262005-09-09 13:10:32 -0700228 __u32 padding;
Miklos Szeredibefc6492005-11-07 00:59:52 -0800229 __u64 fh;
230 __u64 size;
Miklos Szeredif3332112007-10-18 03:07:04 -0700231 __u64 lock_owner;
Miklos Szeredibefc6492005-11-07 00:59:52 -0800232 __u64 atime;
233 __u64 mtime;
234 __u64 unused2;
235 __u32 atimensec;
236 __u32 mtimensec;
237 __u32 unused3;
238 __u32 mode;
239 __u32 unused4;
240 __u32 uid;
241 __u32 gid;
242 __u32 unused5;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700243};
244
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700245struct fuse_open_in {
246 __u32 flags;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800247 __u32 mode;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700248};
249
250struct fuse_open_out {
251 __u64 fh;
252 __u32 open_flags;
Miklos Szeredi06663262005-09-09 13:10:32 -0700253 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700254};
255
256struct fuse_release_in {
257 __u64 fh;
258 __u32 flags;
Miklos Szeredie9168c12006-12-06 20:35:38 -0800259 __u32 release_flags;
260 __u64 lock_owner;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700261};
262
263struct fuse_flush_in {
264 __u64 fh;
Miklos Szeredie9168c12006-12-06 20:35:38 -0800265 __u32 unused;
Miklos Szeredi06663262005-09-09 13:10:32 -0700266 __u32 padding;
Miklos Szeredi71421252006-06-25 05:48:52 -0700267 __u64 lock_owner;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700268};
269
270struct fuse_read_in {
271 __u64 fh;
272 __u64 offset;
273 __u32 size;
Miklos Szeredif3332112007-10-18 03:07:04 -0700274 __u32 read_flags;
275 __u64 lock_owner;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700276};
277
Miklos Szeredif3332112007-10-18 03:07:04 -0700278#define FUSE_COMPAT_WRITE_IN_SIZE 24
279
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700280struct fuse_write_in {
281 __u64 fh;
282 __u64 offset;
283 __u32 size;
284 __u32 write_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700285 __u64 lock_owner;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700286};
287
288struct fuse_write_out {
289 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700290 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700291};
292
Miklos Szeredide5f1202006-01-06 00:19:37 -0800293#define FUSE_COMPAT_STATFS_SIZE 48
294
Miklos Szeredie5e55582005-09-09 13:10:28 -0700295struct fuse_statfs_out {
296 struct fuse_kstatfs st;
297};
298
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700299struct fuse_fsync_in {
300 __u64 fh;
301 __u32 fsync_flags;
Miklos Szeredi06663262005-09-09 13:10:32 -0700302 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700303};
304
Miklos Szeredi92a87802005-09-09 13:10:31 -0700305struct fuse_setxattr_in {
306 __u32 size;
307 __u32 flags;
308};
309
310struct fuse_getxattr_in {
311 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700312 __u32 padding;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700313};
314
315struct fuse_getxattr_out {
316 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700317 __u32 padding;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700318};
319
Miklos Szeredi71421252006-06-25 05:48:52 -0700320struct fuse_lk_in {
321 __u64 fh;
322 __u64 owner;
323 struct fuse_file_lock lk;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -0700324 __u32 lk_flags;
325 __u32 padding;
Miklos Szeredi71421252006-06-25 05:48:52 -0700326};
327
328struct fuse_lk_out {
329 struct fuse_file_lock lk;
330};
331
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800332struct fuse_access_in {
333 __u32 mask;
334 __u32 padding;
335};
336
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800337struct fuse_init_in {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700338 __u32 major;
339 __u32 minor;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800340 __u32 max_readahead;
341 __u32 flags;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700342};
343
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800344struct fuse_init_out {
345 __u32 major;
346 __u32 minor;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800347 __u32 max_readahead;
348 __u32 flags;
349 __u32 unused;
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800350 __u32 max_write;
351};
352
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700353struct fuse_interrupt_in {
354 __u64 unique;
355};
356
Miklos Szeredib2d22722006-12-06 20:35:51 -0800357struct fuse_bmap_in {
358 __u64 block;
359 __u32 blocksize;
360 __u32 padding;
361};
362
363struct fuse_bmap_out {
364 __u64 block;
365};
366
Miklos Szeredi334f4852005-09-09 13:10:27 -0700367struct fuse_in_header {
368 __u32 len;
369 __u32 opcode;
370 __u64 unique;
371 __u64 nodeid;
372 __u32 uid;
373 __u32 gid;
374 __u32 pid;
Miklos Szeredi06663262005-09-09 13:10:32 -0700375 __u32 padding;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700376};
377
378struct fuse_out_header {
379 __u32 len;
380 __s32 error;
381 __u64 unique;
382};
383
Miklos Szeredie5e55582005-09-09 13:10:28 -0700384struct fuse_dirent {
385 __u64 ino;
386 __u64 off;
387 __u32 namelen;
388 __u32 type;
389 char name[0];
390};
391
Andrew Morton21f3da92007-07-15 23:39:50 -0700392#define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
Miklos Szeredie5e55582005-09-09 13:10:28 -0700393#define FUSE_DIRENT_ALIGN(x) (((x) + sizeof(__u64) - 1) & ~(sizeof(__u64) - 1))
394#define FUSE_DIRENT_SIZE(d) \
395 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)