Free request in fuse_reply_data()
[fuse.git] / include / fuse.h
blobb05152d7dbc663b88e3a5a3cc7a0533be6a1e6c7
1 /*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
5 This program can be distributed under the terms of the GNU LGPLv2.
6 See the file COPYING.LIB.
7 */
9 #ifndef _FUSE_H_
10 #define _FUSE_H_
12 /** @file
14 * This file defines the library interface of FUSE
16 * IMPORTANT: you should define FUSE_USE_VERSION before including this
17 * header. To use the newest API define it to 26 (recommended for any
18 * new application), to use the old API define it to 21 (default) 22
19 * or 25, to use the even older 1.X API define it to 11.
22 #ifndef FUSE_USE_VERSION
23 #define FUSE_USE_VERSION 21
24 #endif
26 #include "fuse_common.h"
28 #include <fcntl.h>
29 #include <time.h>
30 #include <utime.h>
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #include <sys/statvfs.h>
34 #include <sys/uio.h>
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
40 /* ----------------------------------------------------------- *
41 * Basic FUSE API *
42 * ----------------------------------------------------------- */
44 /** Handle for a FUSE filesystem */
45 struct fuse;
47 /** Structure containing a raw command */
48 struct fuse_cmd;
50 /** Function to add an entry in a readdir() operation
52 * @param buf the buffer passed to the readdir() operation
53 * @param name the file name of the directory entry
54 * @param stat file attributes, can be NULL
55 * @param off offset of the next entry or zero
56 * @return 1 if buffer is full, zero otherwise
58 typedef int (*fuse_fill_dir_t) (void *buf, const char *name,
59 const struct stat *stbuf, off_t off);
61 /* Used by deprecated getdir() method */
62 typedef struct fuse_dirhandle *fuse_dirh_t;
63 typedef int (*fuse_dirfil_t) (fuse_dirh_t h, const char *name, int type,
64 ino_t ino);
66 /**
67 * The file system operations:
69 * Most of these should work very similarly to the well known UNIX
70 * file system operations. A major exception is that instead of
71 * returning an error in 'errno', the operation should return the
72 * negated error value (-errno) directly.
74 * All methods are optional, but some are essential for a useful
75 * filesystem (e.g. getattr). Open, flush, release, fsync, opendir,
76 * releasedir, fsyncdir, access, create, ftruncate, fgetattr, lock,
77 * init and destroy are special purpose methods, without which a full
78 * featured filesystem can still be implemented.
80 * Almost all operations take a path which can be of any length.
82 * Changed in fuse 2.8.0 (regardless of API version)
83 * Previously, paths were limited to a length of PATH_MAX.
85 * See http://fuse.sourceforge.net/wiki/ for more information. There
86 * is also a snapshot of the relevant wiki pages in the doc/ folder.
88 struct fuse_operations {
89 /** Get file attributes.
91 * Similar to stat(). The 'st_dev' and 'st_blksize' fields are
92 * ignored. The 'st_ino' field is ignored except if the 'use_ino'
93 * mount option is given.
95 int (*getattr) (const char *, struct stat *);
97 /** Read the target of a symbolic link
99 * The buffer should be filled with a null terminated string. The
100 * buffer size argument includes the space for the terminating
101 * null character. If the linkname is too long to fit in the
102 * buffer, it should be truncated. The return value should be 0
103 * for success.
105 int (*readlink) (const char *, char *, size_t);
107 /* Deprecated, use readdir() instead */
108 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t);
110 /** Create a file node
112 * This is called for creation of all non-directory, non-symlink
113 * nodes. If the filesystem defines a create() method, then for
114 * regular files that will be called instead.
116 int (*mknod) (const char *, mode_t, dev_t);
118 /** Create a directory
120 * Note that the mode argument may not have the type specification
121 * bits set, i.e. S_ISDIR(mode) can be false. To obtain the
122 * correct directory type bits use mode|S_IFDIR
123 * */
124 int (*mkdir) (const char *, mode_t);
126 /** Remove a file */
127 int (*unlink) (const char *);
129 /** Remove a directory */
130 int (*rmdir) (const char *);
132 /** Create a symbolic link */
133 int (*symlink) (const char *, const char *);
135 /** Rename a file */
136 int (*rename) (const char *, const char *);
138 /** Create a hard link to a file */
139 int (*link) (const char *, const char *);
141 /** Change the permission bits of a file */
142 int (*chmod) (const char *, mode_t);
144 /** Change the owner and group of a file */
145 int (*chown) (const char *, uid_t, gid_t);
147 /** Change the size of a file */
148 int (*truncate) (const char *, off_t);
150 /** Change the access and/or modification times of a file
152 * Deprecated, use utimens() instead.
154 int (*utime) (const char *, struct utimbuf *);
156 /** File open operation
158 * No creation (O_CREAT, O_EXCL) and by default also no
159 * truncation (O_TRUNC) flags will be passed to open(). If an
160 * application specifies O_TRUNC, fuse first calls truncate()
161 * and then open(). Only if 'atomic_o_trunc' has been
162 * specified and kernel version is 2.6.24 or later, O_TRUNC is
163 * passed on to open.
165 * Unless the 'default_permissions' mount option is given,
166 * open should check if the operation is permitted for the
167 * given flags. Optionally open may also return an arbitrary
168 * filehandle in the fuse_file_info structure, which will be
169 * passed to all file operations.
171 * Changed in version 2.2
173 int (*open) (const char *, struct fuse_file_info *);
175 /** Read data from an open file
177 * Read should return exactly the number of bytes requested except
178 * on EOF or error, otherwise the rest of the data will be
179 * substituted with zeroes. An exception to this is when the
180 * 'direct_io' mount option is specified, in which case the return
181 * value of the read system call will reflect the return value of
182 * this operation.
184 * Changed in version 2.2
186 int (*read) (const char *, char *, size_t, off_t,
187 struct fuse_file_info *);
189 /** Write data to an open file
191 * Write should return exactly the number of bytes requested
192 * except on error. An exception to this is when the 'direct_io'
193 * mount option is specified (see read operation).
195 * Changed in version 2.2
197 int (*write) (const char *, const char *, size_t, off_t,
198 struct fuse_file_info *);
200 /** Get file system statistics
202 * The 'f_frsize', 'f_favail', 'f_fsid' and 'f_flag' fields are ignored
204 * Replaced 'struct statfs' parameter with 'struct statvfs' in
205 * version 2.5
207 int (*statfs) (const char *, struct statvfs *);
209 /** Possibly flush cached data
211 * BIG NOTE: This is not equivalent to fsync(). It's not a
212 * request to sync dirty data.
214 * Flush is called on each close() of a file descriptor. So if a
215 * filesystem wants to return write errors in close() and the file
216 * has cached dirty data, this is a good place to write back data
217 * and return any errors. Since many applications ignore close()
218 * errors this is not always useful.
220 * NOTE: The flush() method may be called more than once for each
221 * open(). This happens if more than one file descriptor refers
222 * to an opened file due to dup(), dup2() or fork() calls. It is
223 * not possible to determine if a flush is final, so each flush
224 * should be treated equally. Multiple write-flush sequences are
225 * relatively rare, so this shouldn't be a problem.
227 * Filesystems shouldn't assume that flush will always be called
228 * after some writes, or that if will be called at all.
230 * Changed in version 2.2
232 int (*flush) (const char *, struct fuse_file_info *);
234 /** Release an open file
236 * Release is called when there are no more references to an open
237 * file: all file descriptors are closed and all memory mappings
238 * are unmapped.
240 * For every open() call there will be exactly one release() call
241 * with the same flags and file descriptor. It is possible to
242 * have a file opened more than once, in which case only the last
243 * release will mean, that no more reads/writes will happen on the
244 * file. The return value of release is ignored.
246 * Changed in version 2.2
248 int (*release) (const char *, struct fuse_file_info *);
250 /** Synchronize file contents
252 * If the datasync parameter is non-zero, then only the user data
253 * should be flushed, not the meta data.
255 * Changed in version 2.2
257 int (*fsync) (const char *, int, struct fuse_file_info *);
259 /** Set extended attributes */
260 int (*setxattr) (const char *, const char *, const char *, size_t, int);
262 /** Get extended attributes */
263 int (*getxattr) (const char *, const char *, char *, size_t);
265 /** List extended attributes */
266 int (*listxattr) (const char *, char *, size_t);
268 /** Remove extended attributes */
269 int (*removexattr) (const char *, const char *);
271 /** Open directory
273 * Unless the 'default_permissions' mount option is given,
274 * this method should check if opendir is permitted for this
275 * directory. Optionally opendir may also return an arbitrary
276 * filehandle in the fuse_file_info structure, which will be
277 * passed to readdir, closedir and fsyncdir.
279 * Introduced in version 2.3
281 int (*opendir) (const char *, struct fuse_file_info *);
283 /** Read directory
285 * This supersedes the old getdir() interface. New applications
286 * should use this.
288 * The filesystem may choose between two modes of operation:
290 * 1) The readdir implementation ignores the offset parameter, and
291 * passes zero to the filler function's offset. The filler
292 * function will not return '1' (unless an error happens), so the
293 * whole directory is read in a single readdir operation. This
294 * works just like the old getdir() method.
296 * 2) The readdir implementation keeps track of the offsets of the
297 * directory entries. It uses the offset parameter and always
298 * passes non-zero offset to the filler function. When the buffer
299 * is full (or an error happens) the filler function will return
300 * '1'.
302 * Introduced in version 2.3
304 int (*readdir) (const char *, void *, fuse_fill_dir_t, off_t,
305 struct fuse_file_info *);
307 /** Release directory
309 * Introduced in version 2.3
311 int (*releasedir) (const char *, struct fuse_file_info *);
313 /** Synchronize directory contents
315 * If the datasync parameter is non-zero, then only the user data
316 * should be flushed, not the meta data
318 * Introduced in version 2.3
320 int (*fsyncdir) (const char *, int, struct fuse_file_info *);
323 * Initialize filesystem
325 * The return value will passed in the private_data field of
326 * fuse_context to all file operations and as a parameter to the
327 * destroy() method.
329 * Introduced in version 2.3
330 * Changed in version 2.6
332 void *(*init) (struct fuse_conn_info *conn);
335 * Clean up filesystem
337 * Called on filesystem exit.
339 * Introduced in version 2.3
341 void (*destroy) (void *);
344 * Check file access permissions
346 * This will be called for the access() system call. If the
347 * 'default_permissions' mount option is given, this method is not
348 * called.
350 * This method is not called under Linux kernel versions 2.4.x
352 * Introduced in version 2.5
354 int (*access) (const char *, int);
357 * Create and open a file
359 * If the file does not exist, first create it with the specified
360 * mode, and then open it.
362 * If this method is not implemented or under Linux kernel
363 * versions earlier than 2.6.15, the mknod() and open() methods
364 * will be called instead.
366 * Introduced in version 2.5
368 int (*create) (const char *, mode_t, struct fuse_file_info *);
371 * Change the size of an open file
373 * This method is called instead of the truncate() method if the
374 * truncation was invoked from an ftruncate() system call.
376 * If this method is not implemented or under Linux kernel
377 * versions earlier than 2.6.15, the truncate() method will be
378 * called instead.
380 * Introduced in version 2.5
382 int (*ftruncate) (const char *, off_t, struct fuse_file_info *);
385 * Get attributes from an open file
387 * This method is called instead of the getattr() method if the
388 * file information is available.
390 * Currently this is only called after the create() method if that
391 * is implemented (see above). Later it may be called for
392 * invocations of fstat() too.
394 * Introduced in version 2.5
396 int (*fgetattr) (const char *, struct stat *, struct fuse_file_info *);
399 * Perform POSIX file locking operation
401 * The cmd argument will be either F_GETLK, F_SETLK or F_SETLKW.
403 * For the meaning of fields in 'struct flock' see the man page
404 * for fcntl(2). The l_whence field will always be set to
405 * SEEK_SET.
407 * For checking lock ownership, the 'fuse_file_info->owner'
408 * argument must be used.
410 * For F_GETLK operation, the library will first check currently
411 * held locks, and if a conflicting lock is found it will return
412 * information without calling this method. This ensures, that
413 * for local locks the l_pid field is correctly filled in. The
414 * results may not be accurate in case of race conditions and in
415 * the presence of hard links, but it's unlikely that an
416 * application would rely on accurate GETLK results in these
417 * cases. If a conflicting lock is not found, this method will be
418 * called, and the filesystem may fill out l_pid by a meaningful
419 * value, or it may leave this field zero.
421 * For F_SETLK and F_SETLKW the l_pid field will be set to the pid
422 * of the process performing the locking operation.
424 * Note: if this method is not implemented, the kernel will still
425 * allow file locking to work locally. Hence it is only
426 * interesting for network filesystems and similar.
428 * Introduced in version 2.6
430 int (*lock) (const char *, struct fuse_file_info *, int cmd,
431 struct flock *);
434 * Change the access and modification times of a file with
435 * nanosecond resolution
437 * This supersedes the old utime() interface. New applications
438 * should use this.
440 * See the utimensat(2) man page for details.
442 * Introduced in version 2.6
444 int (*utimens) (const char *, const struct timespec tv[2]);
447 * Map block index within file to block index within device
449 * Note: This makes sense only for block device backed filesystems
450 * mounted with the 'blkdev' option
452 * Introduced in version 2.6
454 int (*bmap) (const char *, size_t blocksize, uint64_t *idx);
457 * Flag indicating that the filesystem can accept a NULL path
458 * as the first argument for the following operations:
460 * read, write, flush, release, fsync, readdir, releasedir,
461 * fsyncdir, ftruncate, fgetattr, lock, ioctl and poll
463 * If this flag is set these operations continue to work on
464 * unlinked files even if "-ohard_remove" option was specified.
466 unsigned int flag_nullpath_ok:1;
469 * Flag indicating that the path need not be calculated for
470 * the following operations:
472 * read, write, flush, release, fsync, readdir, releasedir,
473 * fsyncdir, ftruncate, fgetattr, lock, ioctl and poll
475 * Closely related to flag_nullpath_ok, but if this flag is
476 * set then the path will not be calculaged even if the file
477 * wasn't unlinked. However the path can still be non-NULL if
478 * it needs to be calculated for some other reason.
480 unsigned int flag_nopath:1;
483 * Reserved flags, don't set
485 unsigned int flag_reserved:30;
488 * Ioctl
490 * flags will have FUSE_IOCTL_COMPAT set for 32bit ioctls in
491 * 64bit environment. The size and direction of data is
492 * determined by _IOC_*() decoding of cmd. For _IOC_NONE,
493 * data will be NULL, for _IOC_WRITE data is out area, for
494 * _IOC_READ in area and if both are set in/out area. In all
495 * non-NULL cases, the area is of _IOC_SIZE(cmd) bytes.
497 * Introduced in version 2.8
499 int (*ioctl) (const char *, int cmd, void *arg,
500 struct fuse_file_info *, unsigned int flags, void *data);
503 * Poll for IO readiness events
505 * Note: If ph is non-NULL, the client should notify
506 * when IO readiness events occur by calling
507 * fuse_notify_poll() with the specified ph.
509 * Regardless of the number of times poll with a non-NULL ph
510 * is received, single notification is enough to clear all.
511 * Notifying more times incurs overhead but doesn't harm
512 * correctness.
514 * The callee is responsible for destroying ph with
515 * fuse_pollhandle_destroy() when no longer in use.
517 * Introduced in version 2.8
519 int (*poll) (const char *, struct fuse_file_info *,
520 struct fuse_pollhandle *ph, unsigned *reventsp);
522 /** Write contents of buffer to an open file
524 * Similar to the write() method, but data is supplied in a
525 * generic buffer. Use fuse_buf_copy() to transfer data to
526 * the destination.
528 * Introduced in version 2.9
530 int (*write_buf) (const char *, struct fuse_bufvec *buf, off_t off,
531 struct fuse_file_info *);
533 /** Store data from an open file in a buffer
535 * Similar to the read() method, but data is stored and
536 * returned in a generic buffer.
538 * No actual copying of data has to take place, the source
539 * file descriptor may simply be stored in the buffer for
540 * later data transfer.
542 * The buffer must be allocated dynamically and stored at the
543 * location pointed to by bufp. If the buffer contains memory
544 * regions, they too must be allocated using malloc(). The
545 * allocated memory will be freed by the caller.
547 * Introduced in version 2.9
549 int (*read_buf) (const char *, struct fuse_bufvec **bufp,
550 size_t size, off_t off, struct fuse_file_info *);
552 * Perform BSD file locking operation
554 * The op argument will be either LOCK_SH, LOCK_EX or LOCK_UN
556 * Nonblocking requests will be indicated by ORing LOCK_NB to
557 * the above operations
559 * For more information see the flock(2) manual page.
561 * Additionally fi->owner will be set to a value unique to
562 * this open file. This same value will be supplied to
563 * ->release() when the file is released.
565 * Note: if this method is not implemented, the kernel will still
566 * allow file locking to work locally. Hence it is only
567 * interesting for network filesystems and similar.
569 * Introduced in version 2.9
571 int (*flock) (const char *, struct fuse_file_info *, int op);
574 /** Extra context that may be needed by some filesystems
576 * The uid, gid and pid fields are not filled in case of a writepage
577 * operation.
579 struct fuse_context {
580 /** Pointer to the fuse object */
581 struct fuse *fuse;
583 /** User ID of the calling process */
584 uid_t uid;
586 /** Group ID of the calling process */
587 gid_t gid;
589 /** Thread ID of the calling process */
590 pid_t pid;
592 /** Private filesystem data */
593 void *private_data;
595 /** Umask of the calling process (introduced in version 2.8) */
596 mode_t umask;
600 * Main function of FUSE.
602 * This is for the lazy. This is all that has to be called from the
603 * main() function.
605 * This function does the following:
606 * - parses command line options (-d -s and -h)
607 * - passes relevant mount options to the fuse_mount()
608 * - installs signal handlers for INT, HUP, TERM and PIPE
609 * - registers an exit handler to unmount the filesystem on program exit
610 * - creates a fuse handle
611 * - registers the operations
612 * - calls either the single-threaded or the multi-threaded event loop
614 * Note: this is currently implemented as a macro.
616 * @param argc the argument counter passed to the main() function
617 * @param argv the argument vector passed to the main() function
618 * @param op the file system operation
619 * @param user_data user data supplied in the context during the init() method
620 * @return 0 on success, nonzero on failure
623 int fuse_main(int argc, char *argv[], const struct fuse_operations *op,
624 void *user_data);
626 #define fuse_main(argc, argv, op, user_data) \
627 fuse_main_real(argc, argv, op, sizeof(*(op)), user_data)
629 /* ----------------------------------------------------------- *
630 * More detailed API *
631 * ----------------------------------------------------------- */
634 * Create a new FUSE filesystem.
636 * @param ch the communication channel
637 * @param args argument vector
638 * @param op the filesystem operations
639 * @param op_size the size of the fuse_operations structure
640 * @param user_data user data supplied in the context during the init() method
641 * @return the created FUSE handle
643 struct fuse *fuse_new(struct fuse_chan *ch, struct fuse_args *args,
644 const struct fuse_operations *op, size_t op_size,
645 void *user_data);
648 * Destroy the FUSE handle.
650 * The communication channel attached to the handle is also destroyed.
652 * NOTE: This function does not unmount the filesystem. If this is
653 * needed, call fuse_unmount() before calling this function.
655 * @param f the FUSE handle
657 void fuse_destroy(struct fuse *f);
660 * FUSE event loop.
662 * Requests from the kernel are processed, and the appropriate
663 * operations are called.
665 * @param f the FUSE handle
666 * @return 0 if no error occurred, -1 otherwise
668 int fuse_loop(struct fuse *f);
671 * Exit from event loop
673 * @param f the FUSE handle
675 void fuse_exit(struct fuse *f);
678 * FUSE event loop with multiple threads
680 * Requests from the kernel are processed, and the appropriate
681 * operations are called. Request are processed in parallel by
682 * distributing them between multiple threads.
684 * Calling this function requires the pthreads library to be linked to
685 * the application.
687 * @param f the FUSE handle
688 * @return 0 if no error occurred, -1 otherwise
690 int fuse_loop_mt(struct fuse *f);
693 * Get the current context
695 * The context is only valid for the duration of a filesystem
696 * operation, and thus must not be stored and used later.
698 * @return the context
700 struct fuse_context *fuse_get_context(void);
703 * Get the current supplementary group IDs for the current request
705 * Similar to the getgroups(2) system call, except the return value is
706 * always the total number of group IDs, even if it is larger than the
707 * specified size.
709 * The current fuse kernel module in linux (as of 2.6.30) doesn't pass
710 * the group list to userspace, hence this function needs to parse
711 * "/proc/$TID/task/$TID/status" to get the group IDs.
713 * This feature may not be supported on all operating systems. In
714 * such a case this function will return -ENOSYS.
716 * @param size size of given array
717 * @param list array of group IDs to be filled in
718 * @return the total number of supplementary group IDs or -errno on failure
720 int fuse_getgroups(int size, gid_t list[]);
723 * Check if the current request has already been interrupted
725 * @return 1 if the request has been interrupted, 0 otherwise
727 int fuse_interrupted(void);
730 * Obsolete, doesn't do anything
732 * @return -EINVAL
734 int fuse_invalidate(struct fuse *f, const char *path);
736 /* Deprecated, don't use */
737 int fuse_is_lib_option(const char *opt);
740 * The real main function
742 * Do not call this directly, use fuse_main()
744 int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
745 size_t op_size, void *user_data);
748 * Start the cleanup thread when using option "remember".
750 * This is done automatically by fuse_loop_mt()
751 * @param fuse struct fuse pointer for fuse instance
752 * @return 0 on success and -1 on error
754 int fuse_start_cleanup_thread(struct fuse *fuse);
757 * Stop the cleanup thread when using option "remember".
759 * This is done automatically by fuse_loop_mt()
760 * @param fuse struct fuse pointer for fuse instance
762 void fuse_stop_cleanup_thread(struct fuse *fuse);
765 * Iterate over cache removing stale entries
766 * use in conjunction with "-oremember"
768 * NOTE: This is already done for the standard sessions
770 * @param fuse struct fuse pointer for fuse instance
771 * @return the number of seconds until the next cleanup
773 int fuse_clean_cache(struct fuse *fuse);
776 * Stacking API
780 * Fuse filesystem object
782 * This is opaque object represents a filesystem layer
784 struct fuse_fs;
787 * These functions call the relevant filesystem operation, and return
788 * the result.
790 * If the operation is not defined, they return -ENOSYS, with the
791 * exception of fuse_fs_open, fuse_fs_release, fuse_fs_opendir,
792 * fuse_fs_releasedir and fuse_fs_statfs, which return 0.
795 int fuse_fs_getattr(struct fuse_fs *fs, const char *path, struct stat *buf);
796 int fuse_fs_fgetattr(struct fuse_fs *fs, const char *path, struct stat *buf,
797 struct fuse_file_info *fi);
798 int fuse_fs_rename(struct fuse_fs *fs, const char *oldpath,
799 const char *newpath);
800 int fuse_fs_unlink(struct fuse_fs *fs, const char *path);
801 int fuse_fs_rmdir(struct fuse_fs *fs, const char *path);
802 int fuse_fs_symlink(struct fuse_fs *fs, const char *linkname,
803 const char *path);
804 int fuse_fs_link(struct fuse_fs *fs, const char *oldpath, const char *newpath);
805 int fuse_fs_release(struct fuse_fs *fs, const char *path,
806 struct fuse_file_info *fi);
807 int fuse_fs_open(struct fuse_fs *fs, const char *path,
808 struct fuse_file_info *fi);
809 int fuse_fs_read(struct fuse_fs *fs, const char *path, char *buf, size_t size,
810 off_t off, struct fuse_file_info *fi);
811 int fuse_fs_read_buf(struct fuse_fs *fs, const char *path,
812 struct fuse_bufvec **bufp, size_t size, off_t off,
813 struct fuse_file_info *fi);
814 int fuse_fs_write(struct fuse_fs *fs, const char *path, const char *buf,
815 size_t size, off_t off, struct fuse_file_info *fi);
816 int fuse_fs_write_buf(struct fuse_fs *fs, const char *path,
817 struct fuse_bufvec *buf, off_t off,
818 struct fuse_file_info *fi);
819 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync,
820 struct fuse_file_info *fi);
821 int fuse_fs_flush(struct fuse_fs *fs, const char *path,
822 struct fuse_file_info *fi);
823 int fuse_fs_statfs(struct fuse_fs *fs, const char *path, struct statvfs *buf);
824 int fuse_fs_opendir(struct fuse_fs *fs, const char *path,
825 struct fuse_file_info *fi);
826 int fuse_fs_readdir(struct fuse_fs *fs, const char *path, void *buf,
827 fuse_fill_dir_t filler, off_t off,
828 struct fuse_file_info *fi);
829 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync,
830 struct fuse_file_info *fi);
831 int fuse_fs_releasedir(struct fuse_fs *fs, const char *path,
832 struct fuse_file_info *fi);
833 int fuse_fs_create(struct fuse_fs *fs, const char *path, mode_t mode,
834 struct fuse_file_info *fi);
835 int fuse_fs_lock(struct fuse_fs *fs, const char *path,
836 struct fuse_file_info *fi, int cmd, struct flock *lock);
837 int fuse_fs_flock(struct fuse_fs *fs, const char *path,
838 struct fuse_file_info *fi, int op);
839 int fuse_fs_chmod(struct fuse_fs *fs, const char *path, mode_t mode);
840 int fuse_fs_chown(struct fuse_fs *fs, const char *path, uid_t uid, gid_t gid);
841 int fuse_fs_truncate(struct fuse_fs *fs, const char *path, off_t size);
842 int fuse_fs_ftruncate(struct fuse_fs *fs, const char *path, off_t size,
843 struct fuse_file_info *fi);
844 int fuse_fs_utimens(struct fuse_fs *fs, const char *path,
845 const struct timespec tv[2]);
846 int fuse_fs_access(struct fuse_fs *fs, const char *path, int mask);
847 int fuse_fs_readlink(struct fuse_fs *fs, const char *path, char *buf,
848 size_t len);
849 int fuse_fs_mknod(struct fuse_fs *fs, const char *path, mode_t mode,
850 dev_t rdev);
851 int fuse_fs_mkdir(struct fuse_fs *fs, const char *path, mode_t mode);
852 int fuse_fs_setxattr(struct fuse_fs *fs, const char *path, const char *name,
853 const char *value, size_t size, int flags);
854 int fuse_fs_getxattr(struct fuse_fs *fs, const char *path, const char *name,
855 char *value, size_t size);
856 int fuse_fs_listxattr(struct fuse_fs *fs, const char *path, char *list,
857 size_t size);
858 int fuse_fs_removexattr(struct fuse_fs *fs, const char *path,
859 const char *name);
860 int fuse_fs_bmap(struct fuse_fs *fs, const char *path, size_t blocksize,
861 uint64_t *idx);
862 int fuse_fs_ioctl(struct fuse_fs *fs, const char *path, int cmd, void *arg,
863 struct fuse_file_info *fi, unsigned int flags, void *data);
864 int fuse_fs_poll(struct fuse_fs *fs, const char *path,
865 struct fuse_file_info *fi, struct fuse_pollhandle *ph,
866 unsigned *reventsp);
867 void fuse_fs_init(struct fuse_fs *fs, struct fuse_conn_info *conn);
868 void fuse_fs_destroy(struct fuse_fs *fs);
870 int fuse_notify_poll(struct fuse_pollhandle *ph);
873 * Create a new fuse filesystem object
875 * This is usually called from the factory of a fuse module to create
876 * a new instance of a filesystem.
878 * @param op the filesystem operations
879 * @param op_size the size of the fuse_operations structure
880 * @param user_data user data supplied in the context during the init() method
881 * @return a new filesystem object
883 struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size,
884 void *user_data);
887 * Filesystem module
889 * Filesystem modules are registered with the FUSE_REGISTER_MODULE()
890 * macro.
892 * If the "-omodules=modname:..." option is present, filesystem
893 * objects are created and pushed onto the stack with the 'factory'
894 * function.
896 struct fuse_module {
898 * Name of filesystem
900 const char *name;
903 * Factory for creating filesystem objects
905 * The function may use and remove options from 'args' that belong
906 * to this module.
908 * For now the 'fs' vector always contains exactly one filesystem.
909 * This is the filesystem which will be below the newly created
910 * filesystem in the stack.
912 * @param args the command line arguments
913 * @param fs NULL terminated filesystem object vector
914 * @return the new filesystem object
916 struct fuse_fs *(*factory)(struct fuse_args *args,
917 struct fuse_fs *fs[]);
919 struct fuse_module *next;
920 struct fusemod_so *so;
921 int ctr;
925 * Register a filesystem module
927 * This function is used by FUSE_REGISTER_MODULE and there's usually
928 * no need to call it directly
930 void fuse_register_module(struct fuse_module *mod);
933 * Register filesystem module
935 * For the parameters, see description of the fields in 'struct
936 * fuse_module'
938 #define FUSE_REGISTER_MODULE(name_, factory_) \
939 static __attribute__((constructor)) void name_ ## _register(void) \
941 static struct fuse_module mod = \
942 { #name_, factory_, NULL, NULL, 0 }; \
943 fuse_register_module(&mod); \
947 /* ----------------------------------------------------------- *
948 * Advanced API for event handling, don't worry about this... *
949 * ----------------------------------------------------------- */
951 /* NOTE: the following functions are deprecated, and will be removed
952 from the 3.0 API. Use the lowlevel session functions instead */
954 /** Function type used to process commands */
955 typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
957 /** This is the part of fuse_main() before the event loop */
958 struct fuse *fuse_setup(int argc, char *argv[],
959 const struct fuse_operations *op, size_t op_size,
960 char **mountpoint, int *multithreaded,
961 void *user_data);
963 /** This is the part of fuse_main() after the event loop */
964 void fuse_teardown(struct fuse *fuse, char *mountpoint);
966 /** Read a single command. If none are read, return NULL */
967 struct fuse_cmd *fuse_read_cmd(struct fuse *f);
969 /** Process a single command */
970 void fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd);
972 /** Multi threaded event loop, which calls the custom command
973 processor function */
974 int fuse_loop_mt_proc(struct fuse *f, fuse_processor_t proc, void *data);
976 /** Return the exited flag, which indicates if fuse_exit() has been
977 called */
978 int fuse_exited(struct fuse *f);
980 /** This function is obsolete and implemented as a no-op */
981 void fuse_set_getcontext_func(struct fuse_context *(*func)(void));
983 /** Get session from fuse object */
984 struct fuse_session *fuse_get_session(struct fuse *f);
986 /* ----------------------------------------------------------- *
987 * Compatibility stuff *
988 * ----------------------------------------------------------- */
990 #if FUSE_USE_VERSION < 26
991 # include "fuse_compat.h"
992 # undef fuse_main
993 # if FUSE_USE_VERSION == 25
994 # define fuse_main(argc, argv, op) \
995 fuse_main_real_compat25(argc, argv, op, sizeof(*(op)))
996 # define fuse_new fuse_new_compat25
997 # define fuse_setup fuse_setup_compat25
998 # define fuse_teardown fuse_teardown_compat22
999 # define fuse_operations fuse_operations_compat25
1000 # elif FUSE_USE_VERSION == 22
1001 # define fuse_main(argc, argv, op) \
1002 fuse_main_real_compat22(argc, argv, op, sizeof(*(op)))
1003 # define fuse_new fuse_new_compat22
1004 # define fuse_setup fuse_setup_compat22
1005 # define fuse_teardown fuse_teardown_compat22
1006 # define fuse_operations fuse_operations_compat22
1007 # define fuse_file_info fuse_file_info_compat
1008 # elif FUSE_USE_VERSION == 24
1009 # error Compatibility with high-level API version 24 not supported
1010 # else
1011 # define fuse_dirfil_t fuse_dirfil_t_compat
1012 # define __fuse_read_cmd fuse_read_cmd
1013 # define __fuse_process_cmd fuse_process_cmd
1014 # define __fuse_loop_mt fuse_loop_mt_proc
1015 # if FUSE_USE_VERSION == 21
1016 # define fuse_operations fuse_operations_compat2
1017 # define fuse_main fuse_main_compat2
1018 # define fuse_new fuse_new_compat2
1019 # define __fuse_setup fuse_setup_compat2
1020 # define __fuse_teardown fuse_teardown_compat22
1021 # define __fuse_exited fuse_exited
1022 # define __fuse_set_getcontext_func fuse_set_getcontext_func
1023 # else
1024 # define fuse_statfs fuse_statfs_compat1
1025 # define fuse_operations fuse_operations_compat1
1026 # define fuse_main fuse_main_compat1
1027 # define fuse_new fuse_new_compat1
1028 # define FUSE_DEBUG FUSE_DEBUG_COMPAT1
1029 # endif
1030 # endif
1031 #endif
1033 #ifdef __cplusplus
1035 #endif
1037 #endif /* _FUSE_H_ */