[PATCH] FUSE: atomic create+open
[deliverable/linux.git] / 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 3
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 };
57
58 #define FATTR_MODE (1 << 0)
59 #define FATTR_UID (1 << 1)
60 #define FATTR_GID (1 << 2)
61 #define FATTR_SIZE (1 << 3)
62 #define FATTR_ATIME (1 << 4)
63 #define FATTR_MTIME (1 << 5)
64
65 /**
66 * Flags returned by the OPEN request
67 *
68 * FOPEN_DIRECT_IO: bypass page cache for this open file
69 * FOPEN_KEEP_CACHE: don't invalidate the data cache on open
70 */
71 #define FOPEN_DIRECT_IO (1 << 0)
72 #define FOPEN_KEEP_CACHE (1 << 1)
73
74 enum fuse_opcode {
75 FUSE_LOOKUP = 1,
76 FUSE_FORGET = 2, /* no reply */
77 FUSE_GETATTR = 3,
78 FUSE_SETATTR = 4,
79 FUSE_READLINK = 5,
80 FUSE_SYMLINK = 6,
81 FUSE_MKNOD = 8,
82 FUSE_MKDIR = 9,
83 FUSE_UNLINK = 10,
84 FUSE_RMDIR = 11,
85 FUSE_RENAME = 12,
86 FUSE_LINK = 13,
87 FUSE_OPEN = 14,
88 FUSE_READ = 15,
89 FUSE_WRITE = 16,
90 FUSE_STATFS = 17,
91 FUSE_RELEASE = 18,
92 FUSE_FSYNC = 20,
93 FUSE_SETXATTR = 21,
94 FUSE_GETXATTR = 22,
95 FUSE_LISTXATTR = 23,
96 FUSE_REMOVEXATTR = 24,
97 FUSE_FLUSH = 25,
98 FUSE_INIT = 26,
99 FUSE_OPENDIR = 27,
100 FUSE_READDIR = 28,
101 FUSE_RELEASEDIR = 29,
102 FUSE_FSYNCDIR = 30,
103 FUSE_ACCESS = 34,
104 FUSE_CREATE = 35
105 };
106
107 /* Conservative buffer size for the client */
108 #define FUSE_MAX_IN 8192
109
110 #define FUSE_NAME_MAX 1024
111 #define FUSE_SYMLINK_MAX 4096
112 #define FUSE_XATTR_SIZE_MAX 4096
113
114 struct fuse_entry_out {
115 __u64 nodeid; /* Inode ID */
116 __u64 generation; /* Inode generation: nodeid:gen must
117 be unique for the fs's lifetime */
118 __u64 entry_valid; /* Cache timeout for the name */
119 __u64 attr_valid; /* Cache timeout for the attributes */
120 __u32 entry_valid_nsec;
121 __u32 attr_valid_nsec;
122 struct fuse_attr attr;
123 };
124
125 struct fuse_forget_in {
126 __u64 nlookup;
127 };
128
129 struct fuse_attr_out {
130 __u64 attr_valid; /* Cache timeout for the attributes */
131 __u32 attr_valid_nsec;
132 __u32 dummy;
133 struct fuse_attr attr;
134 };
135
136 struct fuse_mknod_in {
137 __u32 mode;
138 __u32 rdev;
139 };
140
141 struct fuse_mkdir_in {
142 __u32 mode;
143 __u32 padding;
144 };
145
146 struct fuse_rename_in {
147 __u64 newdir;
148 };
149
150 struct fuse_link_in {
151 __u64 oldnodeid;
152 };
153
154 struct fuse_setattr_in {
155 __u32 valid;
156 __u32 padding;
157 struct fuse_attr attr;
158 };
159
160 struct fuse_open_in {
161 __u32 flags;
162 __u32 mode;
163 };
164
165 struct fuse_open_out {
166 __u64 fh;
167 __u32 open_flags;
168 __u32 padding;
169 };
170
171 struct fuse_release_in {
172 __u64 fh;
173 __u32 flags;
174 __u32 padding;
175 };
176
177 struct fuse_flush_in {
178 __u64 fh;
179 __u32 flush_flags;
180 __u32 padding;
181 };
182
183 struct fuse_read_in {
184 __u64 fh;
185 __u64 offset;
186 __u32 size;
187 __u32 padding;
188 };
189
190 struct fuse_write_in {
191 __u64 fh;
192 __u64 offset;
193 __u32 size;
194 __u32 write_flags;
195 };
196
197 struct fuse_write_out {
198 __u32 size;
199 __u32 padding;
200 };
201
202 struct fuse_statfs_out {
203 struct fuse_kstatfs st;
204 };
205
206 struct fuse_fsync_in {
207 __u64 fh;
208 __u32 fsync_flags;
209 __u32 padding;
210 };
211
212 struct fuse_setxattr_in {
213 __u32 size;
214 __u32 flags;
215 };
216
217 struct fuse_getxattr_in {
218 __u32 size;
219 __u32 padding;
220 };
221
222 struct fuse_getxattr_out {
223 __u32 size;
224 __u32 padding;
225 };
226
227 struct fuse_access_in {
228 __u32 mask;
229 __u32 padding;
230 };
231
232 struct fuse_init_in_out {
233 __u32 major;
234 __u32 minor;
235 };
236
237 struct fuse_in_header {
238 __u32 len;
239 __u32 opcode;
240 __u64 unique;
241 __u64 nodeid;
242 __u32 uid;
243 __u32 gid;
244 __u32 pid;
245 __u32 padding;
246 };
247
248 struct fuse_out_header {
249 __u32 len;
250 __s32 error;
251 __u64 unique;
252 };
253
254 struct fuse_dirent {
255 __u64 ino;
256 __u64 off;
257 __u32 namelen;
258 __u32 type;
259 char name[0];
260 };
261
262 #define FUSE_NAME_OFFSET ((unsigned) ((struct fuse_dirent *) 0)->name)
263 #define FUSE_DIRENT_ALIGN(x) (((x) + sizeof(__u64) - 1) & ~(sizeof(__u64) - 1))
264 #define FUSE_DIRENT_SIZE(d) \
265 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)
This page took 0.053027 seconds and 5 git commands to generate.