blob: 726b681a132b3cecae619ec4ce58c54bd3aa17c8 [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 Szeredi0e535082003-10-13 10:08:06 +0000174/* ----------------------------------------------------------- *
175 * More detailed API *
176 * ----------------------------------------------------------- */
177
178/*
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000179 * Create a FUSE mountpoint
180 *
181 * Returns a control file descriptor suitable for passing to
182 * fuse_new()
183 *
184 * @param mountpoint the mount point path
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000185 * @param opts a comma separated list of mount options. Can be NULL.
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000186 * @return the control file descriptor on success, -1 on failure
187 */
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000188int fuse_mount(const char *mountpoint, const char *opts);
Miklos Szeredia4b0c772002-04-19 15:57:02 +0000189
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000190/*
191 * Umount a FUSE mountpoint
192 *
193 * @param mountpoint the mount point path
194 */
195void fuse_unmount(const char *mountpoint);
196
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000197/**
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000198 * Create a new FUSE filesystem.
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000199 *
Miklos Szeredi8cffdb92001-11-09 14:49:18 +0000200 * @param fd the control file descriptor
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000201 * @param opts mount options to be used by the library
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000202 * @param op the operations
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000203 * @return the created FUSE handle
204 */
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000205struct fuse *fuse_new(int fd, const char *opts,
206 const struct fuse_operations *op);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000207
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000208/**
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000209 * Destroy the FUSE handle.
210 *
211 * The filesystem is not unmounted.
212 *
213 * @param f the FUSE handle
214 */
215void fuse_destroy(struct fuse *f);
216
217/**
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000218 * FUSE event loop.
219 *
220 * Requests from the kernel are processed, and the apropriate
221 * operations are called.
222 *
223 * @param f the FUSE handle
224 */
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000225void fuse_loop(struct fuse *f);
226
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000227/**
228 * Exit from event loop
229 *
230 * @param f the FUSE handle
231 */
232void fuse_exit(struct fuse *f);
233
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000234/**
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000235 * FUSE event loop with multiple threads
236 *
237 * Requests from the kernel are processed, and the apropriate
238 * operations are called. Request are processed in parallel by
239 * distributing them between multiple threads.
240 *
241 * Calling this function requires the pthreads library to be linked to
242 * the application.
243 *
244 * @param f the FUSE handle
245 */
246void fuse_loop_mt(struct fuse *f);
247
248/**
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000249 * Get the current context
250 *
251 * The context is only valid for the duration of a filesystem
252 * operation, and thus must not be stored and used later.
253 *
254 * @param f the FUSE handle
255 * @return the context
256 */
257struct fuse_context *fuse_get_context(struct fuse *f);
258
Miklos Szeredibd7661b2004-07-23 17:16:29 +0000259/**
260 * Check whether a mount option should be passed to the kernel or the
261 * library
262 *
263 * @param opt the option to check
264 * @return 1 if it is a library option, 0 otherwise
265 */
266int fuse_is_lib_option(const char *opt);
267
268
Miklos Szeredicc8c9752001-11-21 10:03:39 +0000269/* ----------------------------------------------------------- *
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000270 * Advanced API for event handling, don't worry about this... *
271 * ----------------------------------------------------------- */
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000272
273struct fuse_cmd;
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000274typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000275struct fuse_cmd *__fuse_read_cmd(struct fuse *f);
Miklos Szeredifff56ab2001-11-16 10:12:59 +0000276void __fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd);
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000277void __fuse_loop_mt(struct fuse *f, fuse_processor_t proc, void *data);
Miklos Szeredi65cf7c72004-06-30 11:34:56 +0000278int __fuse_exited(struct fuse* f);
Miklos Szeredif830a7f2001-11-16 17:46:45 +0000279
Miklos Szerediacd4e062001-12-08 20:29:20 +0000280#ifdef __cplusplus
281}
282#endif
283
284#endif /* _FUSE_H_ */