blob: d9041b279baf348db7bba7f04c2b3d7c9d54f0a9 [file] [log] [blame]
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi95da8602006-01-06 18:29:40 +00003 Copyright (C) 2001-2006 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
Miklos Szeredia039f8f2006-02-24 16:21:58 +000015 header. To use the newest API define it to 26 (recommended for any
16 new application), to use the old API define it to 21 (default) 22
17 or 25, to use the even older 1.X API define it to 11. */
Miklos Szeredic706ad92005-11-07 15:30:48 +000018
19#ifndef FUSE_USE_VERSION
20#define FUSE_USE_VERSION 21
21#endif
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +000022
Miklos Szeredi76c17522005-07-13 14:08:19 +000023#include "fuse_common.h"
24
Miklos Szeredi9a5c11d2006-07-30 17:33:40 +000025#include <fcntl.h>
26#include <utime.h>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000027#include <sys/types.h>
28#include <sys/stat.h>
Miklos Szeredi52cb09d2005-11-07 11:59:00 +000029#include <sys/statvfs.h>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000030
Miklos Szeredi8fb48fe2004-11-08 14:48:52 +000031#ifdef __cplusplus
32extern "C" {
33#endif
34
Miklos Szeredicc8c9752001-11-21 10:03:39 +000035/* ----------------------------------------------------------- *
36 * Basic FUSE API *
37 * ----------------------------------------------------------- */
38
Miklos Szeredi2df1c042001-11-06 15:07:17 +000039/** Handle for a FUSE filesystem */
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000040struct fuse;
Miklos Szeredi2df1c042001-11-06 15:07:17 +000041
Miklos Szeredia1482422005-08-14 23:00:27 +000042/** Structure containing a raw command */
43struct fuse_cmd;
44
Miklos Szeredi18fce982005-04-01 21:07:35 +000045/** Function to add an entry in a readdir() operation
46 *
47 * @param buf the buffer passed to the readdir() operation
48 * @param name the file name of the directory entry
Miklos Szerediab974562005-04-07 15:40:21 +000049 * @param stat file attributes, can be NULL
50 * @param off offset of the next entry or zero
51 * @return 1 if buffer is full, zero otherwise
Miklos Szeredi18fce982005-04-01 21:07:35 +000052 */
Miklos Szerediab974562005-04-07 15:40:21 +000053typedef int (*fuse_fill_dir_t) (void *buf, const char *name,
Miklos Szeredif6e0ec62005-08-03 09:11:06 +000054 const struct stat *stbuf, off_t off);
Miklos Szerediab974562005-04-07 15:40:21 +000055
56/* Used by deprecated getdir() method */
57typedef struct fuse_dirhandle *fuse_dirh_t;
58typedef int (*fuse_dirfil_t) (fuse_dirh_t h, const char *name, int type,
59 ino_t ino);
Miklos Szeredi18fce982005-04-01 21:07:35 +000060
Miklos Szeredi2df1c042001-11-06 15:07:17 +000061/**
62 * The file system operations:
63 *
64 * Most of these should work very similarly to the well known UNIX
Miklos Szeredid59bb9d2004-12-07 10:04:24 +000065 * file system operations. A major exception is that instead of
66 * returning an error in 'errno', the operation should return the
Miklos Szeredie5183742005-02-02 11:14:04 +000067 * negated error value (-errno) directly.
Miklos Szeredie56818b2004-12-12 11:45:24 +000068 *
69 * All methods are optional, but some are essential for a useful
Miklos Szeredi31066bb2005-08-01 14:49:31 +000070 * filesystem (e.g. getattr). Open, flush, release, fsync, opendir,
Miklos Szeredi3ded1a32006-08-18 18:43:50 +000071 * releasedir, fsyncdir, access, create, ftruncate, fgetattr, lock,
72 * init and destroy are special purpose methods, without which a full
73 * featured filesystem can still be implemented.
Miklos Szeredie2e4ac22004-05-18 08:45:28 +000074 */
Miklos Szeredia181e612001-11-06 12:03:23 +000075struct fuse_operations {
Miklos Szeredid59bb9d2004-12-07 10:04:24 +000076 /** Get file attributes.
77 *
78 * Similar to stat(). The 'st_dev' and 'st_blksize' fields are
79 * ignored. The 'st_ino' field is ignored except if the 'use_ino'
80 * mount option is given.
81 */
82 int (*getattr) (const char *, struct stat *);
83
84 /** Read the target of a symbolic link
Miklos Szeredie5183742005-02-02 11:14:04 +000085 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +000086 * The buffer should be filled with a null terminated string. The
87 * buffer size argument includes the space for the terminating
88 * null character. If the linkname is too long to fit in the
89 * buffer, it should be truncated. The return value should be 0
90 * for success.
91 */
92 int (*readlink) (const char *, char *, size_t);
93
Miklos Szerediab974562005-04-07 15:40:21 +000094 /* Deprecated, use readdir() instead */
Miklos Szeredid59bb9d2004-12-07 10:04:24 +000095 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t);
96
97 /** Create a file node
98 *
Miklos Szeredib052a1a2006-06-28 14:51:20 +000099 * If the filesystem doesn't define a create() operation, mknod()
100 * will be called for creation of all non-directory, non-symlink
101 * nodes.
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000102 */
103 int (*mknod) (const char *, mode_t, dev_t);
104
105 /** Create a directory */
106 int (*mkdir) (const char *, mode_t);
107
108 /** Remove a file */
109 int (*unlink) (const char *);
110
111 /** Remove a directory */
112 int (*rmdir) (const char *);
113
114 /** Create a symbolic link */
115 int (*symlink) (const char *, const char *);
116
117 /** Rename a file */
118 int (*rename) (const char *, const char *);
119
120 /** Create a hard link to a file */
121 int (*link) (const char *, const char *);
Miklos Szeredie5183742005-02-02 11:14:04 +0000122
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000123 /** Change the permission bits of a file */
124 int (*chmod) (const char *, mode_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000125
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000126 /** Change the owner and group of a file */
127 int (*chown) (const char *, uid_t, gid_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000128
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000129 /** Change the size of a file */
130 int (*truncate) (const char *, off_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000131
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000132 /** Change the access and/or modification times of a file */
133 int (*utime) (const char *, struct utimbuf *);
Miklos Szeredie5183742005-02-02 11:14:04 +0000134
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000135 /** File open operation
136 *
Miklos Szeredib75d4b92005-10-11 10:12:08 +0000137 * No creation, or truncation flags (O_CREAT, O_EXCL, O_TRUNC)
Miklos Szeredifa848662005-09-08 15:16:14 +0000138 * will be passed to open(). Open should check if the operation
139 * is permitted for the given flags. Optionally open may also
Miklos Szeredib75d4b92005-10-11 10:12:08 +0000140 * return an arbitrary filehandle in the fuse_file_info structure,
Miklos Szeredifa848662005-09-08 15:16:14 +0000141 * which will be passed to all file operations.
Miklos Szeredi31066bb2005-08-01 14:49:31 +0000142 *
Miklos Szeredi437d8112005-07-06 09:14:20 +0000143 * Changed in version 2.2
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000144 */
145 int (*open) (const char *, struct fuse_file_info *);
146
147 /** Read data from an open file
148 *
149 * Read should return exactly the number of bytes requested except
150 * on EOF or error, otherwise the rest of the data will be
151 * substituted with zeroes. An exception to this is when the
152 * 'direct_io' mount option is specified, in which case the return
153 * value of the read system call will reflect the return value of
154 * this operation.
Miklos Szeredi437d8112005-07-06 09:14:20 +0000155 *
156 * Changed in version 2.2
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000157 */
158 int (*read) (const char *, char *, size_t, off_t, struct fuse_file_info *);
159
Miklos Szeredie5183742005-02-02 11:14:04 +0000160 /** Write data to an open file
161 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000162 * Write should return exactly the number of bytes requested
163 * except on error. An exception to this is when the 'direct_io'
164 * mount option is specified (see read operation).
Miklos Szeredi437d8112005-07-06 09:14:20 +0000165 *
166 * Changed in version 2.2
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000167 */
168 int (*write) (const char *, const char *, size_t, off_t,
169 struct fuse_file_info *);
170
Miklos Szeredic706ad92005-11-07 15:30:48 +0000171 /** Just a placeholder, don't set */
Miklos Szeredi3a770472005-11-11 21:32:42 +0000172 /** Get file system statistics
173 *
174 * The 'f_frsize', 'f_favail', 'f_fsid' and 'f_flag' fields are ignored
175 *
176 * Replaced 'struct statfs' parameter with 'struct statvfs' in
177 * version 2.5
178 */
179 int (*statfs) (const char *, struct statvfs *);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000180
Miklos Szeredie5183742005-02-02 11:14:04 +0000181 /** Possibly flush cached data
182 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000183 * BIG NOTE: This is not equivalent to fsync(). It's not a
Miklos Szeredie56818b2004-12-12 11:45:24 +0000184 * request to sync dirty data.
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000185 *
186 * Flush is called on each close() of a file descriptor. So if a
187 * filesystem wants to return write errors in close() and the file
188 * has cached dirty data, this is a good place to write back data
Miklos Szeredie56818b2004-12-12 11:45:24 +0000189 * and return any errors. Since many applications ignore close()
190 * errors this is not always useful.
Miklos Szeredie5183742005-02-02 11:14:04 +0000191 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000192 * NOTE: The flush() method may be called more than once for each
193 * open(). This happens if more than one file descriptor refers
194 * to an opened file due to dup(), dup2() or fork() calls. It is
195 * not possible to determine if a flush is final, so each flush
196 * should be treated equally. Multiple write-flush sequences are
197 * relatively rare, so this shouldn't be a problem.
Miklos Szeredi9b813af2005-07-21 07:59:37 +0000198 *
Miklos Szeredib75d4b92005-10-11 10:12:08 +0000199 * Filesystems shouldn't assume that flush will always be called
Miklos Szeredi7f54fb42005-10-10 08:42:17 +0000200 * after some writes, or that if will be called at all.
201 *
Miklos Szeredi437d8112005-07-06 09:14:20 +0000202 * Changed in version 2.2
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000203 */
204 int (*flush) (const char *, struct fuse_file_info *);
205
206 /** Release an open file
Miklos Szeredie5183742005-02-02 11:14:04 +0000207 *
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000208 * Release is called when there are no more references to an open
209 * file: all file descriptors are closed and all memory mappings
210 * are unmapped.
211 *
212 * For every open() call there will be exactly one release() call
Miklos Szeredie56818b2004-12-12 11:45:24 +0000213 * with the same flags and file descriptor. It is possible to
214 * have a file opened more than once, in which case only the last
215 * release will mean, that no more reads/writes will happen on the
216 * file. The return value of release is ignored.
Miklos Szeredi437d8112005-07-06 09:14:20 +0000217 *
218 * Changed in version 2.2
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000219 */
220 int (*release) (const char *, struct fuse_file_info *);
221
222 /** Synchronize file contents
223 *
224 * If the datasync parameter is non-zero, then only the user data
225 * should be flushed, not the meta data.
Miklos Szeredi437d8112005-07-06 09:14:20 +0000226 *
227 * Changed in version 2.2
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000228 */
229 int (*fsync) (const char *, int, struct fuse_file_info *);
Miklos Szeredie5183742005-02-02 11:14:04 +0000230
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000231 /** Set extended attributes */
232 int (*setxattr) (const char *, const char *, const char *, size_t, int);
Miklos Szeredie5183742005-02-02 11:14:04 +0000233
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000234 /** Get extended attributes */
235 int (*getxattr) (const char *, const char *, char *, size_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000236
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000237 /** List extended attributes */
238 int (*listxattr) (const char *, char *, size_t);
Miklos Szeredie5183742005-02-02 11:14:04 +0000239
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000240 /** Remove extended attributes */
Miklos Szeredi3ed84232004-03-30 15:17:26 +0000241 int (*removexattr) (const char *, const char *);
Miklos Szeredif43f0632005-02-28 11:46:56 +0000242
Miklos Szeredi009b8782005-08-01 13:36:53 +0000243 /** Open directory
Miklos Szeredi437d8112005-07-06 09:14:20 +0000244 *
Miklos Szeredifa848662005-09-08 15:16:14 +0000245 * This method should check if the open operation is permitted for
246 * this directory
247 *
Miklos Szeredi437d8112005-07-06 09:14:20 +0000248 * Introduced in version 2.3
Miklos Szeredif43f0632005-02-28 11:46:56 +0000249 */
250 int (*opendir) (const char *, struct fuse_file_info *);
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000251
Miklos Szeredi18fce982005-04-01 21:07:35 +0000252 /** Read directory
253 *
Miklos Szerediab974562005-04-07 15:40:21 +0000254 * This supersedes the old getdir() interface. New applications
255 * should use this.
256 *
257 * The filesystem may choose between two modes of operation:
Miklos Szeredi21019c92005-05-09 11:22:41 +0000258 *
Miklos Szerediab974562005-04-07 15:40:21 +0000259 * 1) The readdir implementation ignores the offset parameter, and
260 * passes zero to the filler function's offset. The filler
261 * function will not return '1' (unless an error happens), so the
262 * whole directory is read in a single readdir operation. This
263 * works just like the old getdir() method.
264 *
265 * 2) The readdir implementation keeps track of the offsets of the
266 * directory entries. It uses the offset parameter and always
267 * passes non-zero offset to the filler function. When the buffer
268 * is full (or an error happens) the filler function will return
269 * '1'.
Miklos Szeredi9b813af2005-07-21 07:59:37 +0000270 *
Miklos Szeredi437d8112005-07-06 09:14:20 +0000271 * Introduced in version 2.3
Miklos Szeredi18fce982005-04-01 21:07:35 +0000272 */
Miklos Szerediab974562005-04-07 15:40:21 +0000273 int (*readdir) (const char *, void *, fuse_fill_dir_t, off_t,
Miklos Szeredi18fce982005-04-01 21:07:35 +0000274 struct fuse_file_info *);
275
Miklos Szeredi9b813af2005-07-21 07:59:37 +0000276 /** Release directory
Miklos Szeredi437d8112005-07-06 09:14:20 +0000277 *
278 * Introduced in version 2.3
279 */
Miklos Szeredi18fce982005-04-01 21:07:35 +0000280 int (*releasedir) (const char *, struct fuse_file_info *);
281
Miklos Szeredi4283ee72005-03-21 12:09:04 +0000282 /** Synchronize directory contents
283 *
284 * If the datasync parameter is non-zero, then only the user data
Miklos Szeredi18fce982005-04-01 21:07:35 +0000285 * should be flushed, not the meta data
Miklos Szeredi437d8112005-07-06 09:14:20 +0000286 *
287 * Introduced in version 2.3
Miklos Szeredi4283ee72005-03-21 12:09:04 +0000288 */
289 int (*fsyncdir) (const char *, int, struct fuse_file_info *);
290
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000291 /**
292 * Initialize filesystem
293 *
294 * The return value will passed in the private_data field of
295 * fuse_context to all file operations and as a parameter to the
296 * destroy() method.
Miklos Szeredi9b813af2005-07-21 07:59:37 +0000297 *
Miklos Szeredi437d8112005-07-06 09:14:20 +0000298 * Introduced in version 2.3
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000299 */
Miklos Szeredi065f2222006-01-20 15:15:21 +0000300 void *(*init) (struct fuse_conn_info *conn);
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000301
302 /**
303 * Clean up filesystem
Miklos Szeredi18fce982005-04-01 21:07:35 +0000304 *
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000305 * Called on filesystem exit.
Miklos Szeredi9b813af2005-07-21 07:59:37 +0000306 *
Miklos Szeredi437d8112005-07-06 09:14:20 +0000307 * Introduced in version 2.3
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000308 */
309 void (*destroy) (void *);
Miklos Szeredib0b13d12005-10-26 12:53:25 +0000310
311 /**
312 * Check file access permissions
313 *
Miklos Szeredid9079a72005-10-26 15:29:06 +0000314 * This will be called for the access() system call. If the
315 * 'default_permissions' mount option is given, this method is not
316 * called.
317 *
318 * This method is not called under Linux kernel versions 2.4.x
Miklos Szeredib0b13d12005-10-26 12:53:25 +0000319 *
320 * Introduced in version 2.5
321 */
322 int (*access) (const char *, int);
Miklos Szeredid9079a72005-10-26 15:29:06 +0000323
324 /**
325 * Create and open a file
326 *
327 * If the file does not exist, first create it with the specified
328 * mode, and then open it.
329 *
330 * If this method is not implemented or under Linux kernel
331 * versions earlier than 2.6.15, the mknod() and open() methods
332 * will be called instead.
333 *
334 * Introduced in version 2.5
335 */
336 int (*create) (const char *, mode_t, struct fuse_file_info *);
Miklos Szeredi11509ce2005-10-26 16:04:04 +0000337
338 /**
339 * Change the size of an open file
340 *
341 * This method is called instead of the truncate() method if the
342 * truncation was invoked from an ftruncate() system call.
343 *
344 * If this method is not implemented or under Linux kernel
345 * versions earlier than 2.6.15, the truncate() method will be
346 * called instead.
347 *
348 * Introduced in version 2.5
349 */
350 int (*ftruncate) (const char *, off_t, struct fuse_file_info *);
Miklos Szeredif7eec032005-10-28 13:09:50 +0000351
352 /**
353 * Get attributes from an open file
354 *
355 * This method is called instead of the getattr() method if the
356 * file information is available.
357 *
358 * Currently this is only called after the create() method if that
359 * is implemented (see above). Later it may be called for
360 * invocations of fstat() too.
361 *
362 * Introduced in version 2.5
363 */
364 int (*fgetattr) (const char *, struct stat *, struct fuse_file_info *);
Miklos Szeredi9a5c11d2006-07-30 17:33:40 +0000365
Miklos Szeredi3ded1a32006-08-18 18:43:50 +0000366 /**
367 * Perform POSIX file locking operation
368 *
369 * The cmd argument will be either F_GETLK, F_SETLK or F_SETLKW.
370 *
371 * For the meaning of fields in 'struct flock' see the man page
372 * for fcntl(2). The l_whence field will always be set to
373 * SEEK_SET.
374 *
375 * Unlike fcntl, the l_pid will be set in F_SETLK and F_SETLKW,
376 * and should be used by the filesystem to initialize this field
377 * in F_GETLK.
378 *
379 * For checking lock ownership, the 'owner' argument must be used.
380 *
381 * Note: if this method is not implemented, the kernel will still
382 * allow file locking to work locally. Hence it is only
383 * interesting for network filesystems and similar.
384 *
385 * Introduced in version 2.6
386 */
Miklos Szeredi9a5c11d2006-07-30 17:33:40 +0000387 int (*lock) (const char *, struct fuse_file_info *, int cmd,
388 struct flock *, uint64_t owner);
Miklos Szeredia181e612001-11-06 12:03:23 +0000389};
390
Miklos Szeredie5183742005-02-02 11:14:04 +0000391/** Extra context that may be needed by some filesystems
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000392 *
393 * The uid, gid and pid fields are not filled in case of a writepage
394 * operation.
395 */
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000396struct fuse_context {
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000397 /** Pointer to the fuse object */
Miklos Szeredid169f312004-09-22 08:48:26 +0000398 struct fuse *fuse;
Miklos Szeredie5183742005-02-02 11:14:04 +0000399
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000400 /** User ID of the calling process */
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000401 uid_t uid;
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000402
403 /** Group ID of the calling process */
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000404 gid_t gid;
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000405
406 /** Thread ID of the calling process */
Miklos Szeredi1f18db52004-09-27 06:54:49 +0000407 pid_t pid;
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000408
Miklos Szeredi159bd7e2005-02-28 17:32:16 +0000409 /** Private filesystem data */
Miklos Szeredi8fb48fe2004-11-08 14:48:52 +0000410 void *private_data;
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000411};
412
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000413/*
Miklos Szeredi0e535082003-10-13 10:08:06 +0000414 * Main function of FUSE.
415 *
416 * This is for the lazy. This is all that has to be called from the
417 * main() function.
Miklos Szeredie5183742005-02-02 11:14:04 +0000418 *
Miklos Szeredi0e535082003-10-13 10:08:06 +0000419 * This function does the following:
Miklos Szeredi307242f2004-01-26 11:28:44 +0000420 * - parses command line options (-d -s and -h)
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000421 * - passes relevant mount options to the fuse_mount()
Miklos Szeredi0e535082003-10-13 10:08:06 +0000422 * - installs signal handlers for INT, HUP, TERM and PIPE
423 * - registers an exit handler to unmount the filesystem on program exit
Miklos Szeredi0e535082003-10-13 10:08:06 +0000424 * - creates a fuse handle
425 * - registers the operations
426 * - calls either the single-threaded or the multi-threaded event loop
427 *
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000428 * Note: this is currently implemented as a macro.
429 *
Miklos Szeredi0e535082003-10-13 10:08:06 +0000430 * @param argc the argument counter passed to the main() function
431 * @param argv the argument vector passed to the main() function
Miklos Szeredie5183742005-02-02 11:14:04 +0000432 * @param op the file system operation
Miklos Szeredi6f385412006-03-17 15:05:40 +0000433 * @param user_data user data set in context for init() method
Miklos Szeredi5dc8a802004-10-21 09:35:10 +0000434 * @return 0 on success, nonzero on failure
Miklos Szeredi0e535082003-10-13 10:08:06 +0000435 */
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000436/*
Miklos Szeredi6f385412006-03-17 15:05:40 +0000437int fuse_main(int argc, char *argv[], const struct fuse_operations *op,
438 void *user_data);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000439*/
Miklos Szeredi6f385412006-03-17 15:05:40 +0000440#define fuse_main(argc, argv, op, user_data) \
441 fuse_main_real(argc, argv, op, sizeof(*(op)), user_data)
Miklos Szeredi891b8742004-07-29 09:27:49 +0000442
Miklos Szeredi0e535082003-10-13 10:08:06 +0000443/* ----------------------------------------------------------- *
444 * More detailed API *
445 * ----------------------------------------------------------- */
446
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000447/**
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000448 * Create a new FUSE filesystem.
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000449 *
Miklos Szeredi6f385412006-03-17 15:05:40 +0000450 * @param ch the communication channel
Miklos Szeredi95da8602006-01-06 18:29:40 +0000451 * @param args argument vector
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000452 * @param op the operations
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000453 * @param op_size the size of the fuse_operations structure
Miklos Szeredi6f385412006-03-17 15:05:40 +0000454 * @param user_data user data set in context for init() method
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000455 * @return the created FUSE handle
456 */
Miklos Szeredi6f385412006-03-17 15:05:40 +0000457struct fuse *fuse_new(struct fuse_chan *ch, struct fuse_args *args,
458 const struct fuse_operations *op, size_t op_size,
459 void *user_data);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000460
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000461/**
Miklos Szeredie5183742005-02-02 11:14:04 +0000462 * Destroy the FUSE handle.
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000463 *
464 * The filesystem is not unmounted.
465 *
466 * @param f the FUSE handle
467 */
468void fuse_destroy(struct fuse *f);
469
470/**
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000471 * FUSE event loop.
472 *
Miklos Szeredib75d4b92005-10-11 10:12:08 +0000473 * Requests from the kernel are processed, and the appropriate
Miklos Szeredie5183742005-02-02 11:14:04 +0000474 * operations are called.
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000475 *
476 * @param f the FUSE handle
Miklos Szeredib75d4b92005-10-11 10:12:08 +0000477 * @return 0 if no error occurred, -1 otherwise
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000478 */
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000479int fuse_loop(struct fuse *f);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000480
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000481/**
482 * Exit from event loop
483 *
484 * @param f the FUSE handle
485 */
486void fuse_exit(struct fuse *f);
487
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000488/**
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000489 * FUSE event loop with multiple threads
490 *
Miklos Szeredib75d4b92005-10-11 10:12:08 +0000491 * Requests from the kernel are processed, and the appropriate
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000492 * operations are called. Request are processed in parallel by
493 * distributing them between multiple threads.
494 *
495 * Calling this function requires the pthreads library to be linked to
496 * the application.
497 *
498 * @param f the FUSE handle
Miklos Szeredib75d4b92005-10-11 10:12:08 +0000499 * @return 0 if no error occurred, -1 otherwise
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000500 */
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000501int fuse_loop_mt(struct fuse *f);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000502
503/**
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000504 * Get the current context
Miklos Szeredie5183742005-02-02 11:14:04 +0000505 *
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000506 * The context is only valid for the duration of a filesystem
507 * operation, and thus must not be stored and used later.
508 *
509 * @param f the FUSE handle
Miklos Szeredie5183742005-02-02 11:14:04 +0000510 * @return the context
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000511 */
Miklos Szeredid169f312004-09-22 08:48:26 +0000512struct fuse_context *fuse_get_context(void);
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000513
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000514/**
Miklos Szeredi76c17522005-07-13 14:08:19 +0000515 * Obsolete, doesn't do anything
Miklos Szeredi9b813af2005-07-21 07:59:37 +0000516 *
Miklos Szeredibd10a7b2005-07-15 09:59:59 +0000517 * @return -EINVAL
Miklos Szeredi5dc8a802004-10-21 09:35:10 +0000518 */
519int fuse_invalidate(struct fuse *f, const char *path);
520
Miklos Szeredi95da8602006-01-06 18:29:40 +0000521/* Deprecated, don't use */
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000522int fuse_is_lib_option(const char *opt);
523
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000524/**
525 * The real main function
Miklos Szeredie5183742005-02-02 11:14:04 +0000526 *
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000527 * Do not call this directly, use fuse_main()
528 */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000529int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
Miklos Szeredi6f385412006-03-17 15:05:40 +0000530 size_t op_size, void *user_data);
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000531
Miklos Szeredicc8c9752001-11-21 10:03:39 +0000532/* ----------------------------------------------------------- *
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000533 * Advanced API for event handling, don't worry about this... *
534 * ----------------------------------------------------------- */
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000535
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000536/** Function type used to process commands */
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000537typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000538
539/** This is the part of fuse_main() before the event loop */
Miklos Szeredi60c69a22006-01-07 08:51:19 +0000540struct fuse *fuse_setup(int argc, char *argv[],
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000541 const struct fuse_operations *op, size_t op_size,
Miklos Szeredi6f385412006-03-17 15:05:40 +0000542 char **mountpoint, int *multithreaded,
543 void *user_data);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000544
545/** This is the part of fuse_main() after the event loop */
Miklos Szeredi6f385412006-03-17 15:05:40 +0000546void fuse_teardown(struct fuse *fuse, char *mountpoint);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000547
548/** Read a single command. If none are read, return NULL */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000549struct fuse_cmd *fuse_read_cmd(struct fuse *f);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000550
551/** Process a single command */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000552void fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000553
554/** Multi threaded event loop, which calls the custom command
555 processor function */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000556int fuse_loop_mt_proc(struct fuse *f, fuse_processor_t proc, void *data);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000557
558/** Return the exited flag, which indicates if fuse_exit() has been
559 called */
Miklos Szeredie2aa2e22005-07-15 13:31:36 +0000560int fuse_exited(struct fuse *f);
Miklos Szeredid59bb9d2004-12-07 10:04:24 +0000561
562/** Set function which can be used to get the current context */
Miklos Szeredif458b8c2004-12-07 16:46:42 +0000563void fuse_set_getcontext_func(struct fuse_context *(*func)(void));
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000564
Miklos Szeredi6f385412006-03-17 15:05:40 +0000565/** Get session from fuse object */
566struct fuse_session *fuse_get_session(struct fuse *f);
567
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000568/* ----------------------------------------------------------- *
569 * Compatibility stuff *
570 * ----------------------------------------------------------- */
571
Miklos Szeredi87c77932006-03-10 10:18:20 +0000572#if FUSE_USE_VERSION < 26
Miklos Szeredie56818b2004-12-12 11:45:24 +0000573# include "fuse_compat.h"
Miklos Szeredic706ad92005-11-07 15:30:48 +0000574# undef fuse_main
Miklos Szeredi065f2222006-01-20 15:15:21 +0000575# if FUSE_USE_VERSION == 25
Miklos Szeredi065f2222006-01-20 15:15:21 +0000576# define fuse_main(argc, argv, op) \
577 fuse_main_real_compat25(argc, argv, op, sizeof(*(op)))
578# define fuse_new fuse_new_compat25
579# define fuse_setup fuse_setup_compat25
Miklos Szeredi6f385412006-03-17 15:05:40 +0000580# define fuse_teardown fuse_teardown_compat25
Miklos Szeredi065f2222006-01-20 15:15:21 +0000581# define fuse_operations fuse_operations_compat25
582# elif FUSE_USE_VERSION == 22
Miklos Szeredi3a770472005-11-11 21:32:42 +0000583# define fuse_main(argc, argv, op) \
584 fuse_main_real_compat22(argc, argv, op, sizeof(*(op)))
585# define fuse_new fuse_new_compat22
586# define fuse_setup fuse_setup_compat22
Miklos Szeredic706ad92005-11-07 15:30:48 +0000587# define fuse_operations fuse_operations_compat22
Miklos Szeredi3a770472005-11-11 21:32:42 +0000588# define fuse_file_info fuse_file_info_compat22
Miklos Szeredi87c77932006-03-10 10:18:20 +0000589# elif FUSE_USE_VERSION == 24
590# error Compatibility with high-level API version 24 not supported
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000591# else
Miklos Szeredic706ad92005-11-07 15:30:48 +0000592# define fuse_dirfil_t fuse_dirfil_t_compat
593# define __fuse_read_cmd fuse_read_cmd
594# define __fuse_process_cmd fuse_process_cmd
595# define __fuse_loop_mt fuse_loop_mt_proc
596# if FUSE_USE_VERSION == 21
Miklos Szeredic706ad92005-11-07 15:30:48 +0000597# define fuse_operations fuse_operations_compat2
598# define fuse_main fuse_main_compat2
599# define fuse_new fuse_new_compat2
600# define __fuse_setup fuse_setup_compat2
601# define __fuse_teardown fuse_teardown
602# define __fuse_exited fuse_exited
603# define __fuse_set_getcontext_func fuse_set_getcontext_func
604# else
Miklos Szeredic706ad92005-11-07 15:30:48 +0000605# define fuse_statfs fuse_statfs_compat1
606# define fuse_operations fuse_operations_compat1
607# define fuse_main fuse_main_compat1
608# define fuse_new fuse_new_compat1
Miklos Szeredic706ad92005-11-07 15:30:48 +0000609# define FUSE_DEBUG FUSE_DEBUG_COMPAT1
610# endif
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000611# endif
Miklos Szeredi0b6a0ad2004-12-04 00:40:50 +0000612#endif
613
Miklos Szerediacd4e062001-12-08 20:29:20 +0000614#ifdef __cplusplus
615}
616#endif
617
618#endif /* _FUSE_H_ */