[PATCH] fuse: add frsize to statfs reply
[safe/jmp/linux-2.6] / include / linux / fuse.h
1 /*
2     FUSE: Filesystem in Userspace
3     Copyright (C) 2001-2005  Miklos Szeredi <miklos@szeredi.hu>
4
5     This program can be distributed under the terms of the GNU GPL.
6     See the file COPYING.
7 */
8
9 /* This file defines the kernel interface of FUSE */
10
11 #include <asm/types.h>
12
13 /** Version number of this interface */
14 #define FUSE_KERNEL_VERSION 7
15
16 /** Minor version number of this interface */
17 #define FUSE_KERNEL_MINOR_VERSION 4
18
19 /** The node ID of the root inode */
20 #define FUSE_ROOT_ID 1
21
22 /** The major number of the fuse character device */
23 #define FUSE_MAJOR 10
24
25 /** The minor number of the fuse character device */
26 #define FUSE_MINOR 229
27
28 /* Make sure all structures are padded to 64bit boundary, so 32bit
29    userspace works under 64bit kernels */
30
31 struct fuse_attr {
32         __u64   ino;
33         __u64   size;
34         __u64   blocks;
35         __u64   atime;
36         __u64   mtime;
37         __u64   ctime;
38         __u32   atimensec;
39         __u32   mtimensec;
40         __u32   ctimensec;
41         __u32   mode;
42         __u32   nlink;
43         __u32   uid;
44         __u32   gid;
45         __u32   rdev;
46 };
47
48 struct fuse_kstatfs {
49         __u64   blocks;
50         __u64   bfree;
51         __u64   bavail;
52         __u64   files;
53         __u64   ffree;
54         __u32   bsize;
55         __u32   namelen;
56         __u32   frsize;
57         __u32   padding;
58         __u32   spare[6];
59 };
60
61 #define FATTR_MODE      (1 << 0)
62 #define FATTR_UID       (1 << 1)
63 #define FATTR_GID       (1 << 2)
64 #define FATTR_SIZE      (1 << 3)
65 #define FATTR_ATIME     (1 << 4)
66 #define FATTR_MTIME     (1 << 5)
67 #define FATTR_FH        (1 << 6)
68
69 /**
70  * Flags returned by the OPEN request
71  *
72  * FOPEN_DIRECT_IO: bypass page cache for this open file
73  * FOPEN_KEEP_CACHE: don't invalidate the data cache on open
74  */
75 #define FOPEN_DIRECT_IO         (1 << 0)
76 #define FOPEN_KEEP_CACHE        (1 << 1)
77
78 enum fuse_opcode {
79         FUSE_LOOKUP        = 1,
80         FUSE_FORGET        = 2,  /* no reply */
81         FUSE_GETATTR       = 3,
82         FUSE_SETATTR       = 4,
83         FUSE_READLINK      = 5,
84         FUSE_SYMLINK       = 6,
85         FUSE_MKNOD         = 8,
86         FUSE_MKDIR         = 9,
87         FUSE_UNLINK        = 10,
88         FUSE_RMDIR         = 11,
89         FUSE_RENAME        = 12,
90         FUSE_LINK          = 13,
91         FUSE_OPEN          = 14,
92         FUSE_READ          = 15,
93         FUSE_WRITE         = 16,
94         FUSE_STATFS        = 17,
95         FUSE_RELEASE       = 18,
96         FUSE_FSYNC         = 20,
97         FUSE_SETXATTR      = 21,
98         FUSE_GETXATTR      = 22,
99         FUSE_LISTXATTR     = 23,
100         FUSE_REMOVEXATTR   = 24,
101         FUSE_FLUSH         = 25,
102         FUSE_INIT          = 26,
103         FUSE_OPENDIR       = 27,
104         FUSE_READDIR       = 28,
105         FUSE_RELEASEDIR    = 29,
106         FUSE_FSYNCDIR      = 30,
107         FUSE_ACCESS        = 34,
108         FUSE_CREATE        = 35
109 };
110
111 /* Conservative buffer size for the client */
112 #define FUSE_MAX_IN 8192
113
114 #define FUSE_NAME_MAX 1024
115 #define FUSE_SYMLINK_MAX 4096
116 #define FUSE_XATTR_SIZE_MAX 4096
117
118 struct fuse_entry_out {
119         __u64   nodeid;         /* Inode ID */
120         __u64   generation;     /* Inode generation: nodeid:gen must
121                                    be unique for the fs's lifetime */
122         __u64   entry_valid;    /* Cache timeout for the name */
123         __u64   attr_valid;     /* Cache timeout for the attributes */
124         __u32   entry_valid_nsec;
125         __u32   attr_valid_nsec;
126         struct fuse_attr attr;
127 };
128
129 struct fuse_forget_in {
130         __u64   nlookup;
131 };
132
133 struct fuse_attr_out {
134         __u64   attr_valid;     /* Cache timeout for the attributes */
135         __u32   attr_valid_nsec;
136         __u32   dummy;
137         struct fuse_attr attr;
138 };
139
140 struct fuse_mknod_in {
141         __u32   mode;
142         __u32   rdev;
143 };
144
145 struct fuse_mkdir_in {
146         __u32   mode;
147         __u32   padding;
148 };
149
150 struct fuse_rename_in {
151         __u64   newdir;
152 };
153
154 struct fuse_link_in {
155         __u64   oldnodeid;
156 };
157
158 struct fuse_setattr_in {
159         __u32   valid;
160         __u32   padding;
161         __u64   fh;
162         __u64   size;
163         __u64   unused1;
164         __u64   atime;
165         __u64   mtime;
166         __u64   unused2;
167         __u32   atimensec;
168         __u32   mtimensec;
169         __u32   unused3;
170         __u32   mode;
171         __u32   unused4;
172         __u32   uid;
173         __u32   gid;
174         __u32   unused5;
175 };
176
177 struct fuse_open_in {
178         __u32   flags;
179         __u32   mode;
180 };
181
182 struct fuse_open_out {
183         __u64   fh;
184         __u32   open_flags;
185         __u32   padding;
186 };
187
188 struct fuse_release_in {
189         __u64   fh;
190         __u32   flags;
191         __u32   padding;
192 };
193
194 struct fuse_flush_in {
195         __u64   fh;
196         __u32   flush_flags;
197         __u32   padding;
198 };
199
200 struct fuse_read_in {
201         __u64   fh;
202         __u64   offset;
203         __u32   size;
204         __u32   padding;
205 };
206
207 struct fuse_write_in {
208         __u64   fh;
209         __u64   offset;
210         __u32   size;
211         __u32   write_flags;
212 };
213
214 struct fuse_write_out {
215         __u32   size;
216         __u32   padding;
217 };
218
219 #define FUSE_COMPAT_STATFS_SIZE 48
220
221 struct fuse_statfs_out {
222         struct fuse_kstatfs st;
223 };
224
225 struct fuse_fsync_in {
226         __u64   fh;
227         __u32   fsync_flags;
228         __u32   padding;
229 };
230
231 struct fuse_setxattr_in {
232         __u32   size;
233         __u32   flags;
234 };
235
236 struct fuse_getxattr_in {
237         __u32   size;
238         __u32   padding;
239 };
240
241 struct fuse_getxattr_out {
242         __u32   size;
243         __u32   padding;
244 };
245
246 struct fuse_access_in {
247         __u32   mask;
248         __u32   padding;
249 };
250
251 struct fuse_init_in_out {
252         __u32   major;
253         __u32   minor;
254 };
255
256 struct fuse_in_header {
257         __u32   len;
258         __u32   opcode;
259         __u64   unique;
260         __u64   nodeid;
261         __u32   uid;
262         __u32   gid;
263         __u32   pid;
264         __u32   padding;
265 };
266
267 struct fuse_out_header {
268         __u32   len;
269         __s32   error;
270         __u64   unique;
271 };
272
273 struct fuse_dirent {
274         __u64   ino;
275         __u64   off;
276         __u32   namelen;
277         __u32   type;
278         char name[0];
279 };
280
281 #define FUSE_NAME_OFFSET ((unsigned) ((struct fuse_dirent *) 0)->name)
282 #define FUSE_DIRENT_ALIGN(x) (((x) + sizeof(__u64) - 1) & ~(sizeof(__u64) - 1))
283 #define FUSE_DIRENT_SIZE(d) \
284         FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)