blob: 81ef0d41f30bea73419134853e15772231db8916 [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 {
136 uid_t uid;
137 gid_t gid;
138};
139
Miklos Szerediacd4e062001-12-08 20:29:20 +0000140#ifdef __cplusplus
141extern "C" {
142#endif
Miklos Szeredicc8c9752001-11-21 10:03:39 +0000143
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000144/*
Miklos Szeredi0e535082003-10-13 10:08:06 +0000145 * Main function of FUSE.
146 *
147 * This is for the lazy. This is all that has to be called from the
148 * main() function.
149 *
150 * This function does the following:
Miklos Szeredi307242f2004-01-26 11:28:44 +0000151 * - parses command line options (-d -s and -h)
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000152 * - passes relevant mount options to the fuse_mount()
Miklos Szeredi0e535082003-10-13 10:08:06 +0000153 * - installs signal handlers for INT, HUP, TERM and PIPE
154 * - registers an exit handler to unmount the filesystem on program exit
Miklos Szeredi0e535082003-10-13 10:08:06 +0000155 * - creates a fuse handle
156 * - registers the operations
157 * - calls either the single-threaded or the multi-threaded event loop
158 *
159 * @param argc the argument counter passed to the main() function
160 * @param argv the argument vector passed to the main() function
161 * @param op the file system operation
162 */
163void fuse_main(int argc, char *argv[], const struct fuse_operations *op);
164
Miklos Szeredi33c319c2004-02-25 09:19:29 +0000165/*
166 * Returns the fuse object created by fuse_main()
167 *
168 * This is useful when fuse_get_context() is used.
169 *
170 * @return the fuse object
171 */
172struct fuse *fuse_get(void);
173
Miklos Szeredi891b8742004-07-29 09:27:49 +0000174/**
175 * Invalidate cached data of a file.
176 *
177 * Useful if the 'kernel_cache' mount option is given, since in that
178 * case the cache is not invalidated on file open.
179 *
180 * @return 0 on success or -errno on failure
181 */
182int fuse_invalidate(struct fuse *f, const char *path);
183
Miklos Szeredi0e535082003-10-13 10:08:06 +0000184/* ----------------------------------------------------------- *
185 * More detailed API *
186 * ----------------------------------------------------------- */
187
188/*
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000189 * Create a FUSE mountpoint
190 *
191 * Returns a control file descriptor suitable for passing to
192 * fuse_new()
193 *
194 * @param mountpoint the mount point path
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000195 * @param opts a comma separated list of mount options. Can be NULL.
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000196 * @return the control file descriptor on success, -1 on failure
197 */
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000198int fuse_mount(const char *mountpoint, const char *opts);
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000199
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000200/*
201 * Umount a FUSE mountpoint
202 *
203 * @param mountpoint the mount point path
204 */
205void fuse_unmount(const char *mountpoint);
206
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000207/**
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000208 * Create a new FUSE filesystem.
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000209 *
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000210 * @param fd the control file descriptor
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000211 * @param opts mount options to be used by the library
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000212 * @param op the operations
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000213 * @return the created FUSE handle
214 */
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000215struct fuse *fuse_new(int fd, const char *opts,
216 const struct fuse_operations *op);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000217
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000218/**
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000219 * Destroy the FUSE handle.
220 *
221 * The filesystem is not unmounted.
222 *
223 * @param f the FUSE handle
224 */
225void fuse_destroy(struct fuse *f);
226
227/**
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000228 * FUSE event loop.
229 *
230 * Requests from the kernel are processed, and the apropriate
231 * operations are called.
232 *
233 * @param f the FUSE handle
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000234 * @return 0 if no error occured, -1 otherwise
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000235 */
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000236int fuse_loop(struct fuse *f);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000237
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000238/**
239 * Exit from event loop
240 *
241 * @param f the FUSE handle
242 */
243void fuse_exit(struct fuse *f);
244
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000245/**
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000246 * FUSE event loop with multiple threads
247 *
248 * Requests from the kernel are processed, and the apropriate
249 * operations are called. Request are processed in parallel by
250 * distributing them between multiple threads.
251 *
252 * Calling this function requires the pthreads library to be linked to
253 * the application.
254 *
255 * @param f the FUSE handle
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000256 * @return 0 if no error occured, -1 otherwise
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000257 */
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000258int fuse_loop_mt(struct fuse *f);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000259
260/**
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000261 * Get the current context
262 *
263 * The context is only valid for the duration of a filesystem
264 * operation, and thus must not be stored and used later.
265 *
266 * @param f the FUSE handle
267 * @return the context
268 */
269struct fuse_context *fuse_get_context(struct fuse *f);
270
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000271/**
272 * Check whether a mount option should be passed to the kernel or the
273 * library
274 *
275 * @param opt the option to check
276 * @return 1 if it is a library option, 0 otherwise
277 */
278int fuse_is_lib_option(const char *opt);
279
280
Miklos Szeredicc8c9752001-11-21 10:03:39 +0000281/* ----------------------------------------------------------- *
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000282 * Advanced API for event handling, don't worry about this... *
283 * ----------------------------------------------------------- */
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000284
285struct fuse_cmd;
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000286typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000287struct fuse_cmd *__fuse_read_cmd(struct fuse *f);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000288void __fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd);
Miklos Szeredib2cf9562004-09-16 08:42:40 +0000289int __fuse_loop_mt(struct fuse *f, fuse_processor_t proc, void *data);
Miklos Szeredi65cf7c72004-06-30 11:34:56 +0000290int __fuse_exited(struct fuse* f);
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000291
Miklos Szerediacd4e062001-12-08 20:29:20 +0000292#ifdef __cplusplus
293}
294#endif
295
296#endif /* _FUSE_H_ */