blob: 3c68a8e2ae74b7eec3e628e9bfc50b3111f38e1d [file] [log] [blame]
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi2e6b6f22004-07-07 19:19:53 +00003 Copyright (C) 2001-2004 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 Szeredi2f3d9402003-12-15 12:11:33 +000014/** Major version of FUSE library interface */
Miklos Szeredi18e75e42004-02-19 14:23:27 +000015#define FUSE_MAJOR_VERSION 2
Miklos Szeredi2f3d9402003-12-15 12:11:33 +000016
17/** Minor version of FUSE library interface */
Miklos Szeredi203afbf2004-06-03 13:21:08 +000018#define FUSE_MINOR_VERSION 0
Miklos Szeredi2f3d9402003-12-15 12:11:33 +000019
Miklos Szeredi87f30a92004-04-13 10:49:54 +000020/* This interface uses 64 bit off_t */
21#if _FILE_OFFSET_BITS != 64
22#error Please add -D_FILE_OFFSET_BITS=64 to your compile flags!
23#endif
Miklos Szeredi5f054812002-12-03 18:45:21 +000024
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000025#include <sys/types.h>
26#include <sys/stat.h>
Miklos Szeredi18e75e42004-02-19 14:23:27 +000027#include <sys/statfs.h>
Miklos Szeredi5e183482001-10-31 14:52:35 +000028#include <utime.h>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000029
Miklos Szeredicc8c9752001-11-21 10:03:39 +000030/* ----------------------------------------------------------- *
31 * Basic FUSE API *
32 * ----------------------------------------------------------- */
33
Miklos Szeredi2df1c042001-11-06 15:07:17 +000034/** Handle for a FUSE filesystem */
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000035struct fuse;
Miklos Szeredi2df1c042001-11-06 15:07:17 +000036
37/** Handle for a getdir() operation */
Miklos Szeredia181e612001-11-06 12:03:23 +000038typedef struct fuse_dirhandle *fuse_dirh_t;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000039
Miklos Szeredif08ace02003-10-22 11:11:57 +000040/** Function to add an entry in a getdir() operation
41 *
42 * @param h the handle passed to the getdir() operation
43 * @param name the file name of the directory entry
44 * @param type the file type (0 if unknown) see <dirent.h>
45 * @return 0 on success, -errno on error
46 */
47typedef int (*fuse_dirfil_t) (fuse_dirh_t h, const char *name, int type);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000048
Miklos Szeredi2df1c042001-11-06 15:07:17 +000049/**
50 * The file system operations:
51 *
52 * Most of these should work very similarly to the well known UNIX
53 * file system operations. Exceptions are:
54 *
Miklos Szeredi2df1c042001-11-06 15:07:17 +000055 * - All operations should return the negated error value (-errno) on
56 * error.
57 *
Miklos Szeredi05033042001-11-13 16:11:35 +000058 * - Getattr() doesn't need to fill in the following fields:
59 * st_ino
60 * st_dev
61 * st_blksize
62 *
Miklos Szeredi0a7077f2001-11-11 18:20:17 +000063 * - readlink() should fill the buffer with a null terminated string. The
64 * buffer size argument includes the space for the terminating null
65 * character. If the linkname is too long to fit in the buffer, it should
66 * be truncated. The return value should be 0 for success.
Miklos Szeredi2df1c042001-11-06 15:07:17 +000067 *
68 * - getdir() is the opendir(), readdir(), ..., closedir() sequence
69 * in one call. For each directory entry the filldir parameter should
70 * be called.
71 *
72 * - There is no create() operation, mknod() will be called for
73 * creation of all non directory, non symlink nodes.
74 *
75 * - open() should not return a filehandle, but 0 on success. No
76 * creation, or trunctation flags (O_CREAT, O_EXCL, O_TRUNC) will be
77 * passed to open(). Open should only check if the operation is
78 * permitted for the given flags.
79 *
80 * - read(), write() are not passed a filehandle, but rather a
81 * pathname. The offset of the read and write is passed as the last
Miklos Szeredi307242f2004-01-26 11:28:44 +000082 * argument, like the pread() and pwrite() system calls. (NOTE:
83 * read() should always return the number of bytes requested, except
84 * at end of file)
Miklos Szeredic8ba2372002-12-10 12:26:00 +000085 *
86 * - release() is called when an open file has:
87 * 1) all file descriptors closed
88 * 2) all memory mappings unmapped
Miklos Szeredie2e4ac22004-05-18 08:45:28 +000089 * For every open() call there will be exactly one release() call
90 * with the same flags. It is possible to have a file opened more
91 * than once, in which case only the last release will mean, that no
92 * more reads/writes will happen on the file. The return value of
Miklos Szeredibd7661b2004-07-23 17:16:29 +000093 * release is ignored. Implementing this method is optional.
Miklos Szeredie2e4ac22004-05-18 08:45:28 +000094 *
95 * - flush() is called when close() has been called on an open file.
96 * NOTE: this does not mean that the file is released (e.g. after
97 * fork() an open file will have two references which both must be
Miklos Szeredibd7661b2004-07-23 17:16:29 +000098 * closed before the file is released). The flush() method may be
Miklos Szeredie2e4ac22004-05-18 08:45:28 +000099 * called more than once for each open(). The return value of
100 * flush() is passed on to the close() system call. Implementing
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000101 * this method is optional.
Miklos Szeredi5e43f2c2003-12-12 14:06:41 +0000102 *
103 * - fsync() has a boolean 'datasync' parameter which if TRUE then do
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000104 * an fdatasync() operation. Implementing this method is optional.
Miklos Szeredie2e4ac22004-05-18 08:45:28 +0000105 */
Miklos Szeredia181e612001-11-06 12:03:23 +0000106struct fuse_operations {
Miklos Szeredi3ed84232004-03-30 15:17:26 +0000107 int (*getattr) (const char *, struct stat *);
108 int (*readlink) (const char *, char *, size_t);
109 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t);
110 int (*mknod) (const char *, mode_t, dev_t);
111 int (*mkdir) (const char *, mode_t);
112 int (*unlink) (const char *);
113 int (*rmdir) (const char *);
114 int (*symlink) (const char *, const char *);
115 int (*rename) (const char *, const char *);
116 int (*link) (const char *, const char *);
117 int (*chmod) (const char *, mode_t);
118 int (*chown) (const char *, uid_t, gid_t);
119 int (*truncate) (const char *, off_t);
120 int (*utime) (const char *, struct utimbuf *);
121 int (*open) (const char *, int);
122 int (*read) (const char *, char *, size_t, off_t);
123 int (*write) (const char *, const char *, size_t, off_t);
124 int (*statfs) (const char *, struct statfs *);
Miklos Szeredie2e4ac22004-05-18 08:45:28 +0000125 int (*flush) (const char *);
Miklos Szeredi3ed84232004-03-30 15:17:26 +0000126 int (*release) (const char *, int);
127 int (*fsync) (const char *, int);
128 int (*setxattr) (const char *, const char *, const char *, size_t, int);
129 int (*getxattr) (const char *, const char *, char *, size_t);
130 int (*listxattr) (const char *, char *, size_t);
131 int (*removexattr) (const char *, const char *);
Miklos Szeredia181e612001-11-06 12:03:23 +0000132};
133
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000134/** Extra context that may be needed by some filesystems */
135struct fuse_context {
Miklos Szeredid169f312004-09-22 08:48:26 +0000136 struct fuse *fuse;
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000137 uid_t uid;
138 gid_t gid;
Miklos Szeredi1f18db52004-09-27 06:54:49 +0000139 pid_t pid;
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000140};
141
Miklos Szerediacd4e062001-12-08 20:29:20 +0000142#ifdef __cplusplus
143extern "C" {
144#endif
Miklos Szeredicc8c9752001-11-21 10:03:39 +0000145
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000146/*
Miklos Szeredi0e535082003-10-13 10:08:06 +0000147 * Main function of FUSE.
148 *
149 * This is for the lazy. This is all that has to be called from the
150 * main() function.
151 *
152 * This function does the following:
Miklos Szeredi307242f2004-01-26 11:28:44 +0000153 * - parses command line options (-d -s and -h)
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000154 * - passes relevant mount options to the fuse_mount()
Miklos Szeredi0e535082003-10-13 10:08:06 +0000155 * - installs signal handlers for INT, HUP, TERM and PIPE
156 * - registers an exit handler to unmount the filesystem on program exit
Miklos Szeredi0e535082003-10-13 10:08:06 +0000157 * - creates a fuse handle
158 * - registers the operations
159 * - calls either the single-threaded or the multi-threaded event loop
160 *
161 * @param argc the argument counter passed to the main() function
162 * @param argv the argument vector passed to the main() function
163 * @param op the file system operation
164 */
165void fuse_main(int argc, char *argv[], const struct fuse_operations *op);
166
Miklos Szeredi891b8742004-07-29 09:27:49 +0000167/**
168 * Invalidate cached data of a file.
169 *
170 * Useful if the 'kernel_cache' mount option is given, since in that
171 * case the cache is not invalidated on file open.
172 *
173 * @return 0 on success or -errno on failure
174 */
175int fuse_invalidate(struct fuse *f, const char *path);
176
Miklos Szeredi0e535082003-10-13 10:08:06 +0000177/* ----------------------------------------------------------- *
178 * More detailed API *
179 * ----------------------------------------------------------- */
180
181/*
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000182 * Create a FUSE mountpoint
183 *
184 * Returns a control file descriptor suitable for passing to
185 * fuse_new()
186 *
187 * @param mountpoint the mount point path
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000188 * @param opts a comma separated list of mount options. Can be NULL.
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000189 * @return the control file descriptor on success, -1 on failure
190 */
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000191int fuse_mount(const char *mountpoint, const char *opts);
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000192
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000193/*
194 * Umount a FUSE mountpoint
195 *
196 * @param mountpoint the mount point path
197 */
198void fuse_unmount(const char *mountpoint);
199
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000200/**
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000201 * Create a new FUSE filesystem.
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000202 *
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000203 * @param fd the control file descriptor
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000204 * @param opts mount options to be used by the library
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000205 * @param op the operations
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000206 * @return the created FUSE handle
207 */
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000208struct fuse *fuse_new(int fd, const char *opts,
209 const struct fuse_operations *op);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000210
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000211/**
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000212 * Destroy the FUSE handle.
213 *
214 * The filesystem is not unmounted.
215 *
216 * @param f the FUSE handle
217 */
218void fuse_destroy(struct fuse *f);
219
220/**
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000221 * FUSE event loop.
222 *
223 * Requests from the kernel are processed, and the apropriate
224 * operations are called.
225 *
226 * @param f the FUSE handle
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000227 * @return 0 if no error occured, -1 otherwise
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000228 */
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000229int fuse_loop(struct fuse *f);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000230
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000231/**
232 * Exit from event loop
233 *
234 * @param f the FUSE handle
235 */
236void fuse_exit(struct fuse *f);
237
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000238/**
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000239 * FUSE event loop with multiple threads
240 *
241 * Requests from the kernel are processed, and the apropriate
242 * operations are called. Request are processed in parallel by
243 * distributing them between multiple threads.
244 *
245 * Calling this function requires the pthreads library to be linked to
246 * the application.
247 *
248 * @param f the FUSE handle
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000249 * @return 0 if no error occured, -1 otherwise
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000250 */
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000251int fuse_loop_mt(struct fuse *f);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000252
253/**
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000254 * Get the current context
255 *
256 * The context is only valid for the duration of a filesystem
257 * operation, and thus must not be stored and used later.
258 *
259 * @param f the FUSE handle
260 * @return the context
261 */
Miklos Szeredid169f312004-09-22 08:48:26 +0000262struct fuse_context *fuse_get_context(void);
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000263
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000264/**
265 * Check whether a mount option should be passed to the kernel or the
266 * library
267 *
268 * @param opt the option to check
269 * @return 1 if it is a library option, 0 otherwise
270 */
271int fuse_is_lib_option(const char *opt);
272
273
Miklos Szeredicc8c9752001-11-21 10:03:39 +0000274/* ----------------------------------------------------------- *
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000275 * Advanced API for event handling, don't worry about this... *
276 * ----------------------------------------------------------- */
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000277
278struct fuse_cmd;
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000279typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000280struct fuse_cmd *__fuse_read_cmd(struct fuse *f);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000281void __fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd);
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000282int __fuse_loop_mt(struct fuse *f, fuse_processor_t proc, void *data);
Miklos Szeredi65cf7c72004-06-30 11:34:56 +0000283int __fuse_exited(struct fuse* f);
Miklos Szeredid169f312004-09-22 08:48:26 +0000284void __fuse_set_getcontext_func(struct fuse_context *(*func)(void));
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000285
Miklos Szerediacd4e062001-12-08 20:29:20 +0000286#ifdef __cplusplus
287}
288#endif
289
290#endif /* _FUSE_H_ */