blob: 35ec49ffb7319e54425e1a42b6e8417fe2b28930 [file] [log] [blame]
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi149f6072005-01-10 12:29:28 +00003 Copyright (C) 2001-2005 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00004
Miklos Szeredi8b39a9f2002-10-25 12:41:16 +00005 This program can be distributed under the terms of the GNU LGPL.
6 See the file COPYING.LIB.
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00007*/
8
Miklos Szerediacd4e062001-12-08 20:29:20 +00009#ifndef _FUSE_H_
10#define _FUSE_H_
11
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000012/* This file defines the library interface of FUSE */
13
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +000014/* IMPORTANT: you should define FUSE_USE_VERSION before including this
15 header. To use the new API define it to 22 (recommended for any
Miklos Szeredid59bb9d2004-12-07 10:04:24 +000016 new application), to use the old API define it to 21 (this is the
17 default), to use the even older 1.X API define it to 11. */
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +000018
19#ifndef FUSE_USE_VERSION
20#define FUSE_USE_VERSION 21
21#endif
22
Miklos Szeredi2f3d9402003-12-15 12:11:33 +000023/** Major version of FUSE library interface */
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +000024#define FUSE_MAJOR_VERSION 2
Miklos Szeredi2f3d9402003-12-15 12:11:33 +000025
26/** Minor version of FUSE library interface */
Miklos Szeredif43f0632005-02-28 11:46:56 +000027#define FUSE_MINOR_VERSION 3
Miklos Szeredi2f3d9402003-12-15 12:11:33 +000028
Miklos Szeredi87f30a92004-04-13 10:49:54 +000029/* This interface uses 64 bit off_t */
30#if _FILE_OFFSET_BITS != 64
31#error Please add -D_FILE_OFFSET_BITS=64 to your compile flags!
32#endif
Miklos Szeredi5f054812002-12-03 18:45:21 +000033
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000034#include <sys/types.h>
35#include <sys/stat.h>
Miklos Szeredi18e75e42004-02-19 14:23:27 +000036#include <sys/statfs.h>
Miklos Szeredi5e183482001-10-31 14:52:35 +000037#include <utime.h>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000038
Miklos Szeredi8fb48fe2004-11-08 14:48:52 +000039#ifdef __cplusplus
40extern "C" {
41#endif
42
Miklos Szeredicc8c9752001-11-21 10:03:39 +000043/* ----------------------------------------------------------- *
44 * Basic FUSE API *
45 * ----------------------------------------------------------- */
46
Miklos Szeredi2df1c042001-11-06 15:07:17 +000047/** Handle for a FUSE filesystem */
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000048struct fuse;
Miklos Szeredi2df1c042001-11-06 15:07:17 +000049
50/** Handle for a getdir() operation */
Miklos Szeredia181e612001-11-06 12:03:23 +000051typedef struct fuse_dirhandle *fuse_dirh_t;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000052
Miklos Szeredif08ace02003-10-22 11:11:57 +000053/** Function to add an entry in a getdir() operation
Miklos Szeredie5183742005-02-02 11:14:04 +000054 *
Miklos Szeredif08ace02003-10-22 11:11:57 +000055 * @param h the handle passed to the getdir() operation
56 * @param name the file name of the directory entry
57 * @param type the file type (0 if unknown) see <dirent.h>
Miklos Szeredi8fb48fe2004-11-08 14:48:52 +000058 * @param ino the inode number, ignored if "use_ino" mount option is
59 * not specified
Miklos Szeredif08ace02003-10-22 11:11:57 +000060 * @return 0 on success, -errno on error
61 */
Miklos Szeredid507c732004-11-08 17:32:25 +000062typedef int (*fuse_dirfil_t) (fuse_dirh_t h, const char *name, int type,
63 ino_t ino);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000064
Miklos Szeredi18fce982005-04-01 21:07:35 +000065/** Function to add an entry in a readdir() operation
66 *
67 * @param buf the buffer passed to the readdir() operation
68 * @param name the file name of the directory entry
69 * @param type the file type (0 if unknown) see <dirent.h>
70 * @param ino the inode number, ignored if "use_ino" mount option is
71 * not specified
72 * @param off offset of the next entry
73 * @return 0 on success, 1 if buffer is full
74 */
75typedef int (*fuse_dirfil5_t) (void *buf, const char *name, int type,
76 ino_t ino, off_t off);
77
Miklos Szeredifb28c5e2004-11-26 12:15:06 +000078/** Information about open files */
79struct fuse_file_info {
80 /** Open flags. Available in open() and release() */
81 int flags;
82
83 /** File handle. May be filled in by filesystem in open().
84 Available in all other file operations */
85 unsigned long fh;
Miklos Szeredid59bb9d2004-12-07 10:04:24 +000086
87 /** In case of a write operation indicates if this was caused by a
88 writepage */
89 int writepage;
Miklos Szeredifb28c5e2004-11-26 12:15:06 +000090};
91
Miklos Szeredi2df1c042001-11-06 15:07:17 +000092/**
93 * The file system operations:
94 *
95 * Most of these should work very similarly to the well known UNIX
Miklos Szeredid59bb9d2004-12-07 10:04:24 +000096 * file system operations. A major exception is that instead of
97 * returning an error in 'errno', the operation should return the
Miklos Szeredie5183742005-02-02 11:14:04 +000098 * negated error value (-errno) directly.
Miklos Szeredie56818b2004-12-12 11:45:24 +000099 *
100 * All methods are optional, but some are essential for a useful
Miklos Szeredi18fce982005-04-01 21:07:35 +0000101 * filesystem (e.g. getattr). Flush, release, fsync, opendir,
102 * readdir, releasedir, fsyncdir, init and destroy are special purpose
103 * methods, without which a full featured filesystem can still be
104 * implemented.
Miklos Szeredie2e4ac22004-05-18 08:45:28 +0000105 */
Miklos Szeredia181e612001-11-06 12:03:23 +0000106struct fuse_operations {
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000107 /** Get file attributes.
108 *
109 * Similar to stat(). The 'st_dev' and 'st_blksize' fields are
110 * ignored. The 'st_ino' field is ignored except if the 'use_ino'
111 * mount option is given.
112 */
113 int (*getattr) (const char *, struct stat *);
114
115 /** Read the target of a symbolic link
Miklos Szeredie5183742005-02-02 11:14:04 +0000116 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000117 * The buffer should be filled with a null terminated string. The
118 * buffer size argument includes the space for the terminating
119 * null character. If the linkname is too long to fit in the
120 * buffer, it should be truncated. The return value should be 0
121 * for success.
122 */
123 int (*readlink) (const char *, char *, size_t);
124
125 /** Read the contents of a directory
126 *
127 * This operation is the opendir(), readdir(), ..., closedir()
128 * sequence in one call. For each directory entry the filldir
129 * function should be called.
130 */
131 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t);
132
133 /** Create a file node
134 *
135 * There is no create() operation, mknod() will be called for
136 * creation of all non-directory, non-symlink nodes.
137 */
138 int (*mknod) (const char *, mode_t, dev_t);
139
140 /** Create a directory */
141 int (*mkdir) (const char *, mode_t);
142
143 /** Remove a file */
144 int (*unlink) (const char *);
145
146 /** Remove a directory */
147 int (*rmdir) (const char *);
148
149 /** Create a symbolic link */
150 int (*symlink) (const char *, const char *);
151
152 /** Rename a file */
153 int (*rename) (const char *, const char *);
154
155 /** Create a hard link to a file */
156 int (*link) (const char *, const char *);
Miklos Szeredie5183742005-02-02 11:14:04 +0000157
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000158 /** Change the permission bits of a file */
159 int (*chmod) (const char *, mode_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000160
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000161 /** Change the owner and group of a file */
162 int (*chown) (const char *, uid_t, gid_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000163
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000164 /** Change the size of a file */
165 int (*truncate) (const char *, off_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000166
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000167 /** Change the access and/or modification times of a file */
168 int (*utime) (const char *, struct utimbuf *);
Miklos Szeredie5183742005-02-02 11:14:04 +0000169
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000170 /** File open operation
171 *
172 * No creation, or trunctation flags (O_CREAT, O_EXCL, O_TRUNC)
173 * will be passed to open(). Open should check if the operation
174 * is permitted for the given flags. Optionally open may also
175 * return an arbitary filehandle in the fuse_file_info structure,
176 * which will be passed to all file operations.
177 */
178 int (*open) (const char *, struct fuse_file_info *);
179
180 /** Read data from an open file
181 *
182 * Read should return exactly the number of bytes requested except
183 * on EOF or error, otherwise the rest of the data will be
184 * substituted with zeroes. An exception to this is when the
185 * 'direct_io' mount option is specified, in which case the return
186 * value of the read system call will reflect the return value of
187 * this operation.
188 */
189 int (*read) (const char *, char *, size_t, off_t, struct fuse_file_info *);
190
Miklos Szeredie5183742005-02-02 11:14:04 +0000191 /** Write data to an open file
192 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000193 * Write should return exactly the number of bytes requested
194 * except on error. An exception to this is when the 'direct_io'
195 * mount option is specified (see read operation).
196 */
197 int (*write) (const char *, const char *, size_t, off_t,
198 struct fuse_file_info *);
199
200 /** Get file system statistics
Miklos Szeredie5183742005-02-02 11:14:04 +0000201 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000202 * The 'f_type' and 'f_fsid' fields are ignored
203 */
204 int (*statfs) (const char *, struct statfs *);
205
Miklos Szeredie5183742005-02-02 11:14:04 +0000206 /** Possibly flush cached data
207 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000208 * BIG NOTE: This is not equivalent to fsync(). It's not a
Miklos Szeredie56818b2004-12-12 11:45:24 +0000209 * request to sync dirty data.
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000210 *
211 * Flush is called on each close() of a file descriptor. So if a
212 * filesystem wants to return write errors in close() and the file
213 * has cached dirty data, this is a good place to write back data
Miklos Szeredie56818b2004-12-12 11:45:24 +0000214 * and return any errors. Since many applications ignore close()
215 * errors this is not always useful.
Miklos Szeredie5183742005-02-02 11:14:04 +0000216 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000217 * NOTE: The flush() method may be called more than once for each
218 * open(). This happens if more than one file descriptor refers
219 * to an opened file due to dup(), dup2() or fork() calls. It is
220 * not possible to determine if a flush is final, so each flush
221 * should be treated equally. Multiple write-flush sequences are
222 * relatively rare, so this shouldn't be a problem.
223 */
224 int (*flush) (const char *, struct fuse_file_info *);
225
226 /** Release an open file
Miklos Szeredie5183742005-02-02 11:14:04 +0000227 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000228 * Release is called when there are no more references to an open
229 * file: all file descriptors are closed and all memory mappings
230 * are unmapped.
231 *
232 * For every open() call there will be exactly one release() call
Miklos Szeredie56818b2004-12-12 11:45:24 +0000233 * with the same flags and file descriptor. It is possible to
234 * have a file opened more than once, in which case only the last
235 * release will mean, that no more reads/writes will happen on the
236 * file. The return value of release is ignored.
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000237 */
238 int (*release) (const char *, struct fuse_file_info *);
239
240 /** Synchronize file contents
241 *
242 * If the datasync parameter is non-zero, then only the user data
243 * should be flushed, not the meta data.
244 */
245 int (*fsync) (const char *, int, struct fuse_file_info *);
Miklos Szeredie5183742005-02-02 11:14:04 +0000246
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000247 /** Set extended attributes */
248 int (*setxattr) (const char *, const char *, const char *, size_t, int);
Miklos Szeredie5183742005-02-02 11:14:04 +0000249
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000250 /** Get extended attributes */
251 int (*getxattr) (const char *, const char *, char *, size_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000252
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000253 /** List extended attributes */
254 int (*listxattr) (const char *, char *, size_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000255
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000256 /** Remove extended attributes */
Miklos Szeredi3ed84232004-03-30 15:17:26 +0000257 int (*removexattr) (const char *, const char *);
Miklos Szeredif43f0632005-02-28 11:46:56 +0000258
259 /** Open direcory
Miklos Szeredi18fce982005-04-01 21:07:35 +0000260 *
Miklos Szeredif43f0632005-02-28 11:46:56 +0000261 * This method should check if the open operation is permitted for
Miklos Szeredi18fce982005-04-01 21:07:35 +0000262 * this directory
Miklos Szeredif43f0632005-02-28 11:46:56 +0000263 */
264 int (*opendir) (const char *, struct fuse_file_info *);
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000265
Miklos Szeredi18fce982005-04-01 21:07:35 +0000266 /** Read directory
267 *
268 * This is an alternative inteface to getdir(), and if defined
269 * getdir() will not be called
270 */
271 int (*readdir) (const char *, void *, fuse_dirfil5_t, off_t,
272 struct fuse_file_info *);
273
274 /** Release directory */
275 int (*releasedir) (const char *, struct fuse_file_info *);
276
Miklos Szeredi4283ee72005-03-21 12:09:04 +0000277 /** Synchronize directory contents
278 *
279 * If the datasync parameter is non-zero, then only the user data
Miklos Szeredi18fce982005-04-01 21:07:35 +0000280 * should be flushed, not the meta data
Miklos Szeredi4283ee72005-03-21 12:09:04 +0000281 */
282 int (*fsyncdir) (const char *, int, struct fuse_file_info *);
283
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000284 /**
285 * Initialize filesystem
286 *
287 * The return value will passed in the private_data field of
288 * fuse_context to all file operations and as a parameter to the
289 * destroy() method.
290 */
291 void *(*init) (void);
292
293 /**
294 * Clean up filesystem
Miklos Szeredi18fce982005-04-01 21:07:35 +0000295 *
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000296 * Called on filesystem exit.
297 */
298 void (*destroy) (void *);
Miklos Szeredia181e612001-11-06 12:03:23 +0000299};
300
Miklos Szeredie5183742005-02-02 11:14:04 +0000301/** Extra context that may be needed by some filesystems
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000302 *
303 * The uid, gid and pid fields are not filled in case of a writepage
304 * operation.
305 */
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000306struct fuse_context {
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000307 /** Pointer to the fuse object */
Miklos Szeredid169f312004-09-22 08:48:26 +0000308 struct fuse *fuse;
Miklos Szeredie5183742005-02-02 11:14:04 +0000309
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000310 /** User ID of the calling process */
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000311 uid_t uid;
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000312
313 /** Group ID of the calling process */
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000314 gid_t gid;
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000315
316 /** Thread ID of the calling process */
Miklos Szeredi1f18db52004-09-27 06:54:49 +0000317 pid_t pid;
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000318
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000319 /** Private filesystem data */
Miklos Szeredi8fb48fe2004-11-08 14:48:52 +0000320 void *private_data;
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000321};
322
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000323/*
Miklos Szeredi0e535082003-10-13 10:08:06 +0000324 * Main function of FUSE.
325 *
326 * This is for the lazy. This is all that has to be called from the
327 * main() function.
Miklos Szeredie5183742005-02-02 11:14:04 +0000328 *
Miklos Szeredi0e535082003-10-13 10:08:06 +0000329 * This function does the following:
Miklos Szeredi307242f2004-01-26 11:28:44 +0000330 * - parses command line options (-d -s and -h)
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000331 * - passes relevant mount options to the fuse_mount()
Miklos Szeredi0e535082003-10-13 10:08:06 +0000332 * - installs signal handlers for INT, HUP, TERM and PIPE
333 * - registers an exit handler to unmount the filesystem on program exit
Miklos Szeredi0e535082003-10-13 10:08:06 +0000334 * - creates a fuse handle
335 * - registers the operations
336 * - calls either the single-threaded or the multi-threaded event loop
337 *
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000338 * Note: this is currently implemented as a macro.
339 *
Miklos Szeredi0e535082003-10-13 10:08:06 +0000340 * @param argc the argument counter passed to the main() function
341 * @param argv the argument vector passed to the main() function
Miklos Szeredie5183742005-02-02 11:14:04 +0000342 * @param op the file system operation
Miklos Szeredi5dc8a802004-10-21 09:35:10 +0000343 * @return 0 on success, nonzero on failure
Miklos Szeredi0e535082003-10-13 10:08:06 +0000344 */
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000345/*
346int fuse_main(int argc, char *argv[], const struct fuse_operations *op);
347*/
348#define fuse_main(argc, argv, op) \
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000349 fuse_main_real(argc, argv, op, sizeof(*(op)))
Miklos Szeredi891b8742004-07-29 09:27:49 +0000350
Miklos Szeredi0e535082003-10-13 10:08:06 +0000351/* ----------------------------------------------------------- *
352 * More detailed API *
353 * ----------------------------------------------------------- */
354
355/*
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000356 * Create a FUSE mountpoint
357 *
358 * Returns a control file descriptor suitable for passing to
359 * fuse_new()
360 *
361 * @param mountpoint the mount point path
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000362 * @param opts a comma separated list of mount options. Can be NULL.
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000363 * @return the control file descriptor on success, -1 on failure
364 */
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000365int fuse_mount(const char *mountpoint, const char *opts);
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000366
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000367/*
368 * Umount a FUSE mountpoint
369 *
370 * @param mountpoint the mount point path
371 */
372void fuse_unmount(const char *mountpoint);
373
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000374/**
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000375 * Create a new FUSE filesystem.
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000376 *
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000377 * @param fd the control file descriptor
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000378 * @param opts mount options to be used by the library
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000379 * @param op the operations
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000380 * @param op_size the size of the fuse_operations structure
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000381 * @return the created FUSE handle
382 */
Miklos Szeredie5183742005-02-02 11:14:04 +0000383struct fuse *fuse_new(int fd, const char *opts,
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000384 const struct fuse_operations *op, size_t op_size);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000385
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000386/**
Miklos Szeredie5183742005-02-02 11:14:04 +0000387 * Destroy the FUSE handle.
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000388 *
389 * The filesystem is not unmounted.
390 *
391 * @param f the FUSE handle
392 */
393void fuse_destroy(struct fuse *f);
394
395/**
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000396 * FUSE event loop.
397 *
398 * Requests from the kernel are processed, and the apropriate
Miklos Szeredie5183742005-02-02 11:14:04 +0000399 * operations are called.
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000400 *
401 * @param f the FUSE handle
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000402 * @return 0 if no error occured, -1 otherwise
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000403 */
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000404int fuse_loop(struct fuse *f);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000405
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000406/**
407 * Exit from event loop
408 *
409 * @param f the FUSE handle
410 */
411void fuse_exit(struct fuse *f);
412
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000413/**
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000414 * FUSE event loop with multiple threads
415 *
416 * Requests from the kernel are processed, and the apropriate
417 * operations are called. Request are processed in parallel by
418 * distributing them between multiple threads.
419 *
420 * Calling this function requires the pthreads library to be linked to
421 * the application.
422 *
423 * @param f the FUSE handle
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000424 * @return 0 if no error occured, -1 otherwise
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000425 */
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000426int fuse_loop_mt(struct fuse *f);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000427
428/**
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000429 * Get the current context
Miklos Szeredie5183742005-02-02 11:14:04 +0000430 *
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000431 * The context is only valid for the duration of a filesystem
432 * operation, and thus must not be stored and used later.
433 *
434 * @param f the FUSE handle
Miklos Szeredie5183742005-02-02 11:14:04 +0000435 * @return the context
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000436 */
Miklos Szeredid169f312004-09-22 08:48:26 +0000437struct fuse_context *fuse_get_context(void);
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000438
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000439/**
Miklos Szeredi5dc8a802004-10-21 09:35:10 +0000440 * Invalidate cached data of a file.
441 *
442 * Useful if the 'kernel_cache' mount option is given, since in that
443 * case the cache is not invalidated on file open.
444 *
445 * @return 0 on success or -errno on failure
446 */
447int fuse_invalidate(struct fuse *f, const char *path);
448
449/**
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000450 * Check whether a mount option should be passed to the kernel or the
451 * library
452 *
453 * @param opt the option to check
454 * @return 1 if it is a library option, 0 otherwise
455 */
456int fuse_is_lib_option(const char *opt);
457
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000458/**
459 * The real main function
Miklos Szeredie5183742005-02-02 11:14:04 +0000460 *
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000461 * Do not call this directly, use fuse_main()
462 */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000463int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
464 size_t op_size);
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000465
Miklos Szeredicc8c9752001-11-21 10:03:39 +0000466/* ----------------------------------------------------------- *
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000467 * Advanced API for event handling, don't worry about this... *
468 * ----------------------------------------------------------- */
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000469
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000470/** Structure containing a raw command */
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000471struct fuse_cmd;
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000472
473/** Function type used to process commands */
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000474typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000475
476/** This is the part of fuse_main() before the event loop */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000477struct fuse *fuse_setup(int argc, char *argv[],
478 const struct fuse_operations *op, size_t op_size,
Miklos Szeredi5dc8a802004-10-21 09:35:10 +0000479 char **mountpoint, int *multithreaded, int *fd);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000480
481/** This is the part of fuse_main() after the event loop */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000482void fuse_teardown(struct fuse *fuse, int fd, char *mountpoint);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000483
484/** Read a single command. If none are read, return NULL */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000485struct fuse_cmd *fuse_read_cmd(struct fuse *f);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000486
487/** Process a single command */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000488void fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000489
490/** Multi threaded event loop, which calls the custom command
491 processor function */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000492int fuse_loop_mt_proc(struct fuse *f, fuse_processor_t proc, void *data);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000493
494/** Return the exited flag, which indicates if fuse_exit() has been
495 called */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000496int fuse_exited(struct fuse* f);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000497
498/** Set function which can be used to get the current context */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000499void fuse_set_getcontext_func(struct fuse_context *(*func)(void));
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000500
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000501/* ----------------------------------------------------------- *
502 * Compatibility stuff *
503 * ----------------------------------------------------------- */
504
505#if FUSE_USE_VERSION == 21 || FUSE_USE_VERSION == 11
Miklos Szeredie56818b2004-12-12 11:45:24 +0000506# include "fuse_compat.h"
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000507# define fuse_dirfil_t fuse_dirfil_t_compat
508# define __fuse_read_cmd fuse_read_cmd
509# define __fuse_process_cmd fuse_process_cmd
510# define __fuse_loop_mt fuse_loop_mt_proc
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000511# undef fuse_main
512# undef FUSE_MINOR_VERSION
513# undef FUSE_MAJOR_VERSION
514# if FUSE_USE_VERSION == 21
515# define FUSE_MAJOR_VERSION 2
516# define FUSE_MINOR_VERSION 1
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000517# define fuse_operations fuse_operations_compat2
518# define fuse_main fuse_main_compat2
519# define fuse_new fuse_new_compat2
520# define __fuse_setup fuse_setup_compat2
521# define __fuse_teardown fuse_teardown
522# define __fuse_exited fuse_exited
523# define __fuse_set_getcontext_func fuse_set_getcontext_func
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000524# else
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000525# define FUSE_MAJOR_VERSION 1
526# define FUSE_MINOR_VERSION 1
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000527# define fuse_statfs fuse_statfs_compat1
528# define fuse_operations fuse_operations_compat1
529# define fuse_main fuse_main_compat1
530# define fuse_new fuse_new_compat1
531# define fuse_mount fuse_mount_compat1
532# define FUSE_DEBUG FUSE_DEBUG_COMPAT1
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000533# endif
Miklos Szeredi799993c2004-12-04 21:20:05 +0000534#elif FUSE_USE_VERSION < 22
535# error Compatibility with API version other than 21 and 11 not supported
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000536#endif
537
Miklos Szerediacd4e062001-12-08 20:29:20 +0000538#ifdef __cplusplus
539}
540#endif
541
542#endif /* _FUSE_H_ */