blob: 265635dc990812a319dcd632131e8c9f79051f1d [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 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
Miklos Szeredic79e3222007-10-18 03:06:59 -070020 */
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070021
22#include <asm/types.h>
Jan Engelhardt3e8c54f2006-06-25 05:48:49 -070023#include <linux/major.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070024
25/** Version number of this interface */
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070026#define FUSE_KERNEL_VERSION 7
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070027
28/** Minor version number of this interface */
Miklos Szeredic79e3222007-10-18 03:06:59 -070029#define FUSE_KERNEL_MINOR_VERSION 9
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070030
31/** The node ID of the root inode */
32#define FUSE_ROOT_ID 1
33
Miklos Szeredi334f4852005-09-09 13:10:27 -070034/** The major number of the fuse character device */
Jan Engelhardt3e8c54f2006-06-25 05:48:49 -070035#define FUSE_MAJOR MISC_MAJOR
Miklos Szeredi334f4852005-09-09 13:10:27 -070036
37/** The minor number of the fuse character device */
38#define FUSE_MINOR 229
39
Miklos Szeredi06663262005-09-09 13:10:32 -070040/* Make sure all structures are padded to 64bit boundary, so 32bit
41 userspace works under 64bit kernels */
42
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070043struct fuse_attr {
44 __u64 ino;
45 __u64 size;
46 __u64 blocks;
47 __u64 atime;
48 __u64 mtime;
49 __u64 ctime;
50 __u32 atimensec;
51 __u32 mtimensec;
52 __u32 ctimensec;
53 __u32 mode;
54 __u32 nlink;
55 __u32 uid;
56 __u32 gid;
57 __u32 rdev;
Miklos Szeredi0e9663e2007-10-18 03:07:05 -070058 __u32 blksize;
59 __u32 padding;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070060};
61
Miklos Szeredie5e55582005-09-09 13:10:28 -070062struct fuse_kstatfs {
63 __u64 blocks;
64 __u64 bfree;
65 __u64 bavail;
66 __u64 files;
67 __u64 ffree;
68 __u32 bsize;
69 __u32 namelen;
Miklos Szeredide5f1202006-01-06 00:19:37 -080070 __u32 frsize;
71 __u32 padding;
72 __u32 spare[6];
Miklos Szeredie5e55582005-09-09 13:10:28 -070073};
74
Miklos Szeredi71421252006-06-25 05:48:52 -070075struct fuse_file_lock {
76 __u64 start;
77 __u64 end;
78 __u32 type;
79 __u32 pid; /* tgid */
80};
81
Miklos Szeredi9cd68452006-02-01 03:04:40 -080082/**
83 * Bitmasks for fuse_setattr_in.valid
84 */
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070085#define FATTR_MODE (1 << 0)
86#define FATTR_UID (1 << 1)
87#define FATTR_GID (1 << 2)
88#define FATTR_SIZE (1 << 3)
89#define FATTR_ATIME (1 << 4)
90#define FATTR_MTIME (1 << 5)
Miklos Szeredibefc6492005-11-07 00:59:52 -080091#define FATTR_FH (1 << 6)
Miklos Szeredi17637cb2007-10-18 03:07:01 -070092#define FATTR_ATIME_NOW (1 << 7)
93#define FATTR_MTIME_NOW (1 << 8)
Miklos Szeredif3332112007-10-18 03:07:04 -070094#define FATTR_LOCKOWNER (1 << 9)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070095
Miklos Szeredi45323fb2005-09-09 13:10:37 -070096/**
97 * Flags returned by the OPEN request
98 *
99 * FOPEN_DIRECT_IO: bypass page cache for this open file
100 * FOPEN_KEEP_CACHE: don't invalidate the data cache on open
101 */
102#define FOPEN_DIRECT_IO (1 << 0)
103#define FOPEN_KEEP_CACHE (1 << 1)
104
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800105/**
106 * INIT request/reply flags
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700107 *
108 * FUSE_EXPORT_SUPPORT: filesystem handles lookups of "." and ".."
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800109 */
110#define FUSE_ASYNC_READ (1 << 0)
Miklos Szeredi71421252006-06-25 05:48:52 -0700111#define FUSE_POSIX_LOCKS (1 << 1)
Miklos Szeredic79e3222007-10-18 03:06:59 -0700112#define FUSE_FILE_OPS (1 << 2)
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700113#define FUSE_ATOMIC_O_TRUNC (1 << 3)
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700114#define FUSE_EXPORT_SUPPORT (1 << 4)
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700115#define FUSE_BIG_WRITES (1 << 5)
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800116
Miklos Szeredie9168c12006-12-06 20:35:38 -0800117/**
118 * Release flags
119 */
120#define FUSE_RELEASE_FLUSH (1 << 0)
121
Miklos Szeredic79e3222007-10-18 03:06:59 -0700122/**
123 * Getattr flags
124 */
125#define FUSE_GETATTR_FH (1 << 0)
126
Miklos Szeredia9ff4f82007-10-18 03:07:02 -0700127/**
128 * Lock flags
129 */
130#define FUSE_LK_FLOCK (1 << 0)
131
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700132/**
133 * WRITE flags
134 *
135 * FUSE_WRITE_CACHE: delayed write from page cache, file handle is guessed
Miklos Szeredif3332112007-10-18 03:07:04 -0700136 * FUSE_WRITE_LOCKOWNER: lock_owner field is valid
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700137 */
138#define FUSE_WRITE_CACHE (1 << 0)
Miklos Szeredif3332112007-10-18 03:07:04 -0700139#define FUSE_WRITE_LOCKOWNER (1 << 1)
140
141/**
142 * Read flags
143 */
144#define FUSE_READ_LOCKOWNER (1 << 1)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700145
Miklos Szeredi334f4852005-09-09 13:10:27 -0700146enum fuse_opcode {
Miklos Szeredie5e55582005-09-09 13:10:28 -0700147 FUSE_LOOKUP = 1,
148 FUSE_FORGET = 2, /* no reply */
149 FUSE_GETATTR = 3,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700150 FUSE_SETATTR = 4,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700151 FUSE_READLINK = 5,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700152 FUSE_SYMLINK = 6,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700153 FUSE_MKNOD = 8,
154 FUSE_MKDIR = 9,
155 FUSE_UNLINK = 10,
156 FUSE_RMDIR = 11,
157 FUSE_RENAME = 12,
158 FUSE_LINK = 13,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700159 FUSE_OPEN = 14,
160 FUSE_READ = 15,
161 FUSE_WRITE = 16,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700162 FUSE_STATFS = 17,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700163 FUSE_RELEASE = 18,
164 FUSE_FSYNC = 20,
Miklos Szeredi92a87802005-09-09 13:10:31 -0700165 FUSE_SETXATTR = 21,
166 FUSE_GETXATTR = 22,
167 FUSE_LISTXATTR = 23,
168 FUSE_REMOVEXATTR = 24,
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700169 FUSE_FLUSH = 25,
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700170 FUSE_INIT = 26,
171 FUSE_OPENDIR = 27,
172 FUSE_READDIR = 28,
Miklos Szeredi82547982005-09-09 13:10:38 -0700173 FUSE_RELEASEDIR = 29,
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800174 FUSE_FSYNCDIR = 30,
Miklos Szeredi71421252006-06-25 05:48:52 -0700175 FUSE_GETLK = 31,
176 FUSE_SETLK = 32,
177 FUSE_SETLKW = 33,
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800178 FUSE_ACCESS = 34,
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700179 FUSE_CREATE = 35,
180 FUSE_INTERRUPT = 36,
Miklos Szeredib2d22722006-12-06 20:35:51 -0800181 FUSE_BMAP = 37,
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800182 FUSE_DESTROY = 38,
Miklos Szeredi334f4852005-09-09 13:10:27 -0700183};
184
Miklos Szeredi1d3d7522006-01-06 00:19:40 -0800185/* The read buffer is required to be at least 8k, but may be much larger */
186#define FUSE_MIN_READ_BUFFER 8192
Miklos Szeredie5e55582005-09-09 13:10:28 -0700187
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700188#define FUSE_COMPAT_ENTRY_OUT_SIZE 120
189
Miklos Szeredie5e55582005-09-09 13:10:28 -0700190struct fuse_entry_out {
191 __u64 nodeid; /* Inode ID */
192 __u64 generation; /* Inode generation: nodeid:gen must
193 be unique for the fs's lifetime */
194 __u64 entry_valid; /* Cache timeout for the name */
195 __u64 attr_valid; /* Cache timeout for the attributes */
196 __u32 entry_valid_nsec;
197 __u32 attr_valid_nsec;
198 struct fuse_attr attr;
199};
200
201struct fuse_forget_in {
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700202 __u64 nlookup;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700203};
204
Miklos Szeredic79e3222007-10-18 03:06:59 -0700205struct fuse_getattr_in {
206 __u32 getattr_flags;
207 __u32 dummy;
208 __u64 fh;
209};
210
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700211#define FUSE_COMPAT_ATTR_OUT_SIZE 96
212
Miklos Szeredie5e55582005-09-09 13:10:28 -0700213struct fuse_attr_out {
214 __u64 attr_valid; /* Cache timeout for the attributes */
215 __u32 attr_valid_nsec;
216 __u32 dummy;
217 struct fuse_attr attr;
218};
219
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700220struct fuse_mknod_in {
221 __u32 mode;
222 __u32 rdev;
223};
224
225struct fuse_mkdir_in {
226 __u32 mode;
Miklos Szeredi06663262005-09-09 13:10:32 -0700227 __u32 padding;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700228};
229
230struct fuse_rename_in {
231 __u64 newdir;
232};
233
234struct fuse_link_in {
235 __u64 oldnodeid;
236};
237
238struct fuse_setattr_in {
239 __u32 valid;
Miklos Szeredi06663262005-09-09 13:10:32 -0700240 __u32 padding;
Miklos Szeredibefc6492005-11-07 00:59:52 -0800241 __u64 fh;
242 __u64 size;
Miklos Szeredif3332112007-10-18 03:07:04 -0700243 __u64 lock_owner;
Miklos Szeredibefc6492005-11-07 00:59:52 -0800244 __u64 atime;
245 __u64 mtime;
246 __u64 unused2;
247 __u32 atimensec;
248 __u32 mtimensec;
249 __u32 unused3;
250 __u32 mode;
251 __u32 unused4;
252 __u32 uid;
253 __u32 gid;
254 __u32 unused5;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700255};
256
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700257struct fuse_open_in {
258 __u32 flags;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800259 __u32 mode;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700260};
261
262struct fuse_open_out {
263 __u64 fh;
264 __u32 open_flags;
Miklos Szeredi06663262005-09-09 13:10:32 -0700265 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700266};
267
268struct fuse_release_in {
269 __u64 fh;
270 __u32 flags;
Miklos Szeredie9168c12006-12-06 20:35:38 -0800271 __u32 release_flags;
272 __u64 lock_owner;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700273};
274
275struct fuse_flush_in {
276 __u64 fh;
Miklos Szeredie9168c12006-12-06 20:35:38 -0800277 __u32 unused;
Miklos Szeredi06663262005-09-09 13:10:32 -0700278 __u32 padding;
Miklos Szeredi71421252006-06-25 05:48:52 -0700279 __u64 lock_owner;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700280};
281
282struct fuse_read_in {
283 __u64 fh;
284 __u64 offset;
285 __u32 size;
Miklos Szeredif3332112007-10-18 03:07:04 -0700286 __u32 read_flags;
287 __u64 lock_owner;
Miklos Szeredia6643092007-11-28 16:22:00 -0800288 __u32 flags;
289 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700290};
291
Miklos Szeredif3332112007-10-18 03:07:04 -0700292#define FUSE_COMPAT_WRITE_IN_SIZE 24
293
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700294struct fuse_write_in {
295 __u64 fh;
296 __u64 offset;
297 __u32 size;
298 __u32 write_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700299 __u64 lock_owner;
Miklos Szeredia6643092007-11-28 16:22:00 -0800300 __u32 flags;
301 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700302};
303
304struct fuse_write_out {
305 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700306 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700307};
308
Miklos Szeredide5f1202006-01-06 00:19:37 -0800309#define FUSE_COMPAT_STATFS_SIZE 48
310
Miklos Szeredie5e55582005-09-09 13:10:28 -0700311struct fuse_statfs_out {
312 struct fuse_kstatfs st;
313};
314
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700315struct fuse_fsync_in {
316 __u64 fh;
317 __u32 fsync_flags;
Miklos Szeredi06663262005-09-09 13:10:32 -0700318 __u32 padding;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700319};
320
Miklos Szeredi92a87802005-09-09 13:10:31 -0700321struct fuse_setxattr_in {
322 __u32 size;
323 __u32 flags;
324};
325
326struct fuse_getxattr_in {
327 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700328 __u32 padding;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700329};
330
331struct fuse_getxattr_out {
332 __u32 size;
Miklos Szeredi06663262005-09-09 13:10:32 -0700333 __u32 padding;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700334};
335
Miklos Szeredi71421252006-06-25 05:48:52 -0700336struct fuse_lk_in {
337 __u64 fh;
338 __u64 owner;
339 struct fuse_file_lock lk;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -0700340 __u32 lk_flags;
341 __u32 padding;
Miklos Szeredi71421252006-06-25 05:48:52 -0700342};
343
344struct fuse_lk_out {
345 struct fuse_file_lock lk;
346};
347
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800348struct fuse_access_in {
349 __u32 mask;
350 __u32 padding;
351};
352
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800353struct fuse_init_in {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700354 __u32 major;
355 __u32 minor;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800356 __u32 max_readahead;
357 __u32 flags;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700358};
359
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800360struct fuse_init_out {
361 __u32 major;
362 __u32 minor;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800363 __u32 max_readahead;
364 __u32 flags;
365 __u32 unused;
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800366 __u32 max_write;
367};
368
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700369struct fuse_interrupt_in {
370 __u64 unique;
371};
372
Miklos Szeredib2d22722006-12-06 20:35:51 -0800373struct fuse_bmap_in {
374 __u64 block;
375 __u32 blocksize;
376 __u32 padding;
377};
378
379struct fuse_bmap_out {
380 __u64 block;
381};
382
Miklos Szeredi334f4852005-09-09 13:10:27 -0700383struct fuse_in_header {
384 __u32 len;
385 __u32 opcode;
386 __u64 unique;
387 __u64 nodeid;
388 __u32 uid;
389 __u32 gid;
390 __u32 pid;
Miklos Szeredi06663262005-09-09 13:10:32 -0700391 __u32 padding;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700392};
393
394struct fuse_out_header {
395 __u32 len;
396 __s32 error;
397 __u64 unique;
398};
399
Miklos Szeredie5e55582005-09-09 13:10:28 -0700400struct fuse_dirent {
401 __u64 ino;
402 __u64 off;
403 __u32 namelen;
404 __u32 type;
405 char name[0];
406};
407
Andrew Morton21f3da92007-07-15 23:39:50 -0700408#define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
Miklos Szeredie5e55582005-09-09 13:10:28 -0700409#define FUSE_DIRENT_ALIGN(x) (((x) + sizeof(__u64) - 1) & ~(sizeof(__u64) - 1))
410#define FUSE_DIRENT_SIZE(d) \
411 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)