blob: 899830fb8ede8f2b42562336042cb749ed972ed0 [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001/*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
4
5 This program can be distributed under the terms of the GNU LGPLv2.
6 See the file COPYING.LIB.
7*/
8
9#ifndef _FUSE_H_
10#define _FUSE_H_
11
12/** @file
13 *
14 * This file defines the library interface of FUSE
15 *
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.
20 */
21
22#ifndef FUSE_USE_VERSION
23#define FUSE_USE_VERSION 28
24#endif
25
26#include "fuse_common.h"
27
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>
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40/* ----------------------------------------------------------- *
41 * Basic FUSE API *
42 * ----------------------------------------------------------- */
43
44/** Handle for a FUSE filesystem */
45struct fuse;
46
47/** Structure containing a raw command */
48struct fuse_cmd;
49
50/** Function to add an entry in a readdir() operation
51 *
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
57 */
58typedef int (*fuse_fill_dir_t) (void *buf, const char *name,
59 const struct stat *stbuf, off64_t off);
60
61/* Used by deprecated getdir() method */
62typedef struct fuse_dirhandle *fuse_dirh_t;
63typedef int (*fuse_dirfil_t) (fuse_dirh_t h, const char *name, int type,
64 ino_t ino);
65
66/**
67 * The file system operations:
68 *
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.
73 *
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.
79 *
80 * Almost all operations take a path which can be of any length.
81 *
82 * Changed in fuse 2.8.0 (regardless of API version)
83 * Previously, paths were limited to a length of PATH_MAX.
84 *
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.
87 */
88struct fuse_operations {
89 /** Get file attributes.
90 *
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.
94 */
95 int (*getattr) (const char *, struct stat *);
96
97 /** Read the target of a symbolic link
98 *
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.
104 */
105 int (*readlink) (const char *, char *, size_t);
106
107 /* Deprecated, use readdir() instead */
108 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t);
109
110 /** Create a file node
111 *
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.
115 */
116 int (*mknod) (const char *, mode_t, dev_t);
117
118 /** Create a directory
119 *
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);
125
126 /** Remove a file */
127 int (*unlink) (const char *);
128
129 /** Remove a directory */
130 int (*rmdir) (const char *);
131
132 /** Create a symbolic link */
133 int (*symlink) (const char *, const char *);
134
135 /** Rename a file */
136 int (*rename) (const char *, const char *);
137
138 /** Create a hard link to a file */
139 int (*link) (const char *, const char *);
140
141 /** Change the permission bits of a file */
142 int (*chmod) (const char *, mode_t);
143
144 /** Change the owner and group of a file */
145 int (*chown) (const char *, uid_t, gid_t);
146
147 /** Change the size of a file */
148 int (*truncate) (const char *, off64_t);
149
150 /** Change the access and/or modification times of a file
151 *
152 * Deprecated, use utimens() instead.
153 */
154 int (*utime) (const char *, struct utimbuf *);
155
156 /** File open operation
157 *
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.
164 *
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.
170 *
171 * Changed in version 2.2
172 */
173 int (*open) (const char *, struct fuse_file_info *);
174
175 /** Read data from an open file
176 *
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.
183 *
184 * Changed in version 2.2
185 */
186 int (*read) (const char *, char *, size_t, off64_t,
187 struct fuse_file_info *);
188
189 /** Write data to an open file
190 *
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).
194 *
195 * Changed in version 2.2
196 */
197 int (*write) (const char *, const char *, size_t, off64_t,
198 struct fuse_file_info *);
199
200 /** Get file system statistics
201 *
202 * The 'f_frsize', 'f_favail', 'f_fsid' and 'f_flag' fields are ignored
203 *
204 * Replaced 'struct statfs' parameter with 'struct statvfs' in
205 * version 2.5
206 */
207 int (*statfs) (const char *, struct statvfs *);
208
209 /** Possibly flush cached data
210 *
211 * BIG NOTE: This is not equivalent to fsync(). It's not a
212 * request to sync dirty data.
213 *
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.
219 *
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.
226 *
227 * Filesystems shouldn't assume that flush will always be called
228 * after some writes, or that if will be called at all.
229 *
230 * Changed in version 2.2
231 */
232 int (*flush) (const char *, struct fuse_file_info *);
233
234 /** Release an open file
235 *
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.
239 *
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.
245 *
246 * Changed in version 2.2
247 */
248 int (*release) (const char *, struct fuse_file_info *);
249
250 /** Synchronize file contents
251 *
252 * If the datasync parameter is non-zero, then only the user data
253 * should be flushed, not the meta data.
254 *
255 * Changed in version 2.2
256 */
257 int (*fsync) (const char *, int, struct fuse_file_info *);
258
259 /** Set extended attributes */
260 int (*setxattr) (const char *, const char *, const char *, size_t, int);
261
262 /** Get extended attributes */
263 int (*getxattr) (const char *, const char *, char *, size_t);
264
265 /** List extended attributes */
266 int (*listxattr) (const char *, char *, size_t);
267
268 /** Remove extended attributes */
269 int (*removexattr) (const char *, const char *);
270
271 /** Open directory
272 *
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.
278 *
279 * Introduced in version 2.3
280 */
281 int (*opendir) (const char *, struct fuse_file_info *);
282
283 /** Read directory
284 *
285 * This supersedes the old getdir() interface. New applications
286 * should use this.
287 *
288 * The filesystem may choose between two modes of operation:
289 *
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.
295 *
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'.
301 *
302 * Introduced in version 2.3
303 */
304 int (*readdir) (const char *, void *, fuse_fill_dir_t, off64_t,
305 struct fuse_file_info *);
306
307 /** Release directory
308 *
309 * Introduced in version 2.3
310 */
311 int (*releasedir) (const char *, struct fuse_file_info *);
312
313 /** Synchronize directory contents
314 *
315 * If the datasync parameter is non-zero, then only the user data
316 * should be flushed, not the meta data
317 *
318 * Introduced in version 2.3
319 */
320 int (*fsyncdir) (const char *, int, struct fuse_file_info *);
321
322 /**
323 * Initialize filesystem
324 *
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.
328 *
329 * Introduced in version 2.3
330 * Changed in version 2.6
331 */
332 void *(*init) (struct fuse_conn_info *conn);
333
334 /**
335 * Clean up filesystem
336 *
337 * Called on filesystem exit.
338 *
339 * Introduced in version 2.3
340 */
341 void (*destroy) (void *);
342
343 /**
344 * Check file access permissions
345 *
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.
349 *
350 * This method is not called under Linux kernel versions 2.4.x
351 *
352 * Introduced in version 2.5
353 */
354 int (*access) (const char *, int);
355
356 /**
357 * Create and open a file
358 *
359 * If the file does not exist, first create it with the specified
360 * mode, and then open it.
361 *
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.
365 *
366 * Introduced in version 2.5
367 */
368 int (*create) (const char *, mode_t, struct fuse_file_info *);
369
370 /**
371 * Change the size of an open file
372 *
373 * This method is called instead of the truncate() method if the
374 * truncation was invoked from an ftruncate() system call.
375 *
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.
379 *
380 * Introduced in version 2.5
381 */
382 int (*ftruncate) (const char *, off64_t, struct fuse_file_info *);
383
384 /**
385 * Get attributes from an open file
386 *
387 * This method is called instead of the getattr() method if the
388 * file information is available.
389 *
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.
393 *
394 * Introduced in version 2.5
395 */
396 int (*fgetattr) (const char *, struct stat *, struct fuse_file_info *);
397
398 /**
399 * Perform POSIX file locking operation
400 *
401 * The cmd argument will be either F_GETLK, F_SETLK or F_SETLKW.
402 *
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.
406 *
407 * For checking lock ownership, the 'fuse_file_info->owner'
408 * argument must be used.
409 *
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 unlikly 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.
420 *
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.
423 *
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.
427 *
428 * Introduced in version 2.6
429 */
430 int (*lock) (const char *, struct fuse_file_info *, int cmd,
431 struct flock *);
432
433 /**
434 * Change the access and modification times of a file with
435 * nanosecond resolution
436 *
437 * Introduced in version 2.6
438 */
439 int (*utimens) (const char *, const struct timespec tv[2]);
440
441 /**
442 * Map block index within file to block index within device
443 *
444 * Note: This makes sense only for block device backed filesystems
445 * mounted with the 'blkdev' option
446 *
447 * Introduced in version 2.6
448 */
449 int (*bmap) (const char *, size_t blocksize, uint64_t *idx);
450
451 /**
452 * Flag indicating, that the filesystem can accept a NULL path
453 * as the first argument for the following operations:
454 *
455 * read, write, flush, release, fsync, readdir, releasedir,
456 * fsyncdir, ftruncate, fgetattr and lock
457 */
458 unsigned int flag_nullpath_ok : 1;
459
460 /**
461 * Reserved flags, don't set
462 */
463 unsigned int flag_reserved : 31;
464
465 /**
466 * Ioctl
467 *
468 * flags will have FUSE_IOCTL_COMPAT set for 32bit ioctls in
469 * 64bit environment. The size and direction of data is
470 * determined by _IOC_*() decoding of cmd. For _IOC_NONE,
471 * data will be NULL, for _IOC_WRITE data is out area, for
472 * _IOC_READ in area and if both are set in/out area. In all
473 * non-NULL cases, the area is of _IOC_SIZE(cmd) bytes.
474 *
475 * Introduced in version 2.8
476 */
477 int (*ioctl) (const char *, int cmd, void *arg,
478 struct fuse_file_info *, unsigned int flags, void *data);
479
480 /**
481 * Poll for IO readiness events
482 *
483 * Note: If ph is non-NULL, the client should notify
484 * when IO readiness events occur by calling
485 * fuse_notify_poll() with the specified ph.
486 *
487 * Regardless of the number of times poll with a non-NULL ph
488 * is received, single notification is enough to clear all.
489 * Notifying more times incurs overhead but doesn't harm
490 * correctness.
491 *
492 * The callee is responsible for destroying ph with
493 * fuse_pollhandle_destroy() when no longer in use.
494 *
495 * Introduced in version 2.8
496 */
497 int (*poll) (const char *, struct fuse_file_info *,
498 struct fuse_pollhandle *ph, unsigned *reventsp);
499};
500
501/** Extra context that may be needed by some filesystems
502 *
503 * The uid, gid and pid fields are not filled in case of a writepage
504 * operation.
505 */
506struct fuse_context {
507 /** Pointer to the fuse object */
508 struct fuse *fuse;
509
510 /** User ID of the calling process */
511 uid_t uid;
512
513 /** Group ID of the calling process */
514 gid_t gid;
515
516 /** Thread ID of the calling process */
517 pid_t pid;
518
519 /** Private filesystem data */
520 void *private_data;
521
522 /** Umask of the calling process (introduced in version 2.8) */
523 mode_t umask;
524};
525
526/**
527 * Main function of FUSE.
528 *
529 * This is for the lazy. This is all that has to be called from the
530 * main() function.
531 *
532 * This function does the following:
533 * - parses command line options (-d -s and -h)
534 * - passes relevant mount options to the fuse_mount()
535 * - installs signal handlers for INT, HUP, TERM and PIPE
536 * - registers an exit handler to unmount the filesystem on program exit
537 * - creates a fuse handle
538 * - registers the operations
539 * - calls either the single-threaded or the multi-threaded event loop
540 *
541 * Note: this is currently implemented as a macro.
542 *
543 * @param argc the argument counter passed to the main() function
544 * @param argv the argument vector passed to the main() function
545 * @param op the file system operation
546 * @param user_data user data supplied in the context during the init() method
547 * @return 0 on success, nonzero on failure
548 */
549/*
550 int fuse_main(int argc, char *argv[], const struct fuse_operations *op,
551 void *user_data);
552*/
553#define fuse_main(argc, argv, op, user_data) \
554 fuse_main_real(argc, argv, op, sizeof(*(op)), user_data)
555
556/* ----------------------------------------------------------- *
557 * More detailed API *
558 * ----------------------------------------------------------- */
559
560/**
561 * Create a new FUSE filesystem.
562 *
563 * @param ch the communication channel
564 * @param args argument vector
565 * @param op the filesystem operations
566 * @param op_size the size of the fuse_operations structure
567 * @param user_data user data supplied in the context during the init() method
568 * @return the created FUSE handle
569 */
570struct fuse *fuse_new(struct fuse_chan *ch, struct fuse_args *args,
571 const struct fuse_operations *op, size_t op_size,
572 void *user_data);
573
574/**
575 * Destroy the FUSE handle.
576 *
577 * The communication channel attached to the handle is also destroyed.
578 *
579 * NOTE: This function does not unmount the filesystem. If this is
580 * needed, call fuse_unmount() before calling this function.
581 *
582 * @param f the FUSE handle
583 */
584void fuse_destroy(struct fuse *f);
585
586/**
587 * FUSE event loop.
588 *
589 * Requests from the kernel are processed, and the appropriate
590 * operations are called.
591 *
592 * @param f the FUSE handle
593 * @return 0 if no error occurred, -1 otherwise
594 */
595int fuse_loop(struct fuse *f);
596
597/**
598 * Exit from event loop
599 *
600 * @param f the FUSE handle
601 */
602void fuse_exit(struct fuse *f);
603
604/**
605 * FUSE event loop with multiple threads
606 *
607 * Requests from the kernel are processed, and the appropriate
608 * operations are called. Request are processed in parallel by
609 * distributing them between multiple threads.
610 *
611 * Calling this function requires the pthreads library to be linked to
612 * the application.
613 *
614 * @param f the FUSE handle
615 * @return 0 if no error occurred, -1 otherwise
616 */
617int fuse_loop_mt(struct fuse *f);
618
619/**
620 * Get the current context
621 *
622 * The context is only valid for the duration of a filesystem
623 * operation, and thus must not be stored and used later.
624 *
625 * @return the context
626 */
627struct fuse_context *fuse_get_context(void);
628
629/**
630 * Get the current supplementary group IDs for the current request
631 *
632 * Similar to the getgroups(2) system call, except the return value is
633 * always the total number of group IDs, even if it is larger than the
634 * specified size.
635 *
636 * The current fuse kernel module in linux (as of 2.6.30) doesn't pass
637 * the group list to userspace, hence this function needs to parse
638 * "/proc/$TID/task/$TID/status" to get the group IDs.
639 *
640 * This feature may not be supported on all operating systems. In
641 * such a case this function will return -ENOSYS.
642 *
643 * @param size size of given array
644 * @param list array of group IDs to be filled in
645 * @return the total number of supplementary group IDs or -errno on failure
646 */
647int fuse_getgroups(int size, gid_t list[]);
648
649/**
650 * Check if the current request has already been interrupted
651 *
652 * @return 1 if the request has been interrupted, 0 otherwise
653 */
654int fuse_interrupted(void);
655
656/**
657 * Obsolete, doesn't do anything
658 *
659 * @return -EINVAL
660 */
661int fuse_invalidate(struct fuse *f, const char *path);
662
663/* Deprecated, don't use */
664int fuse_is_lib_option(const char *opt);
665
666/**
667 * The real main function
668 *
669 * Do not call this directly, use fuse_main()
670 */
671int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
672 size_t op_size, void *user_data);
673
674/*
675 * Stacking API
676 */
677
678/**
679 * Fuse filesystem object
680 *
681 * This is opaque object represents a filesystem layer
682 */
683struct fuse_fs;
684
685/*
686 * These functions call the relevant filesystem operation, and return
687 * the result.
688 *
689 * If the operation is not defined, they return -ENOSYS, with the
690 * exception of fuse_fs_open, fuse_fs_release, fuse_fs_opendir,
691 * fuse_fs_releasedir and fuse_fs_statfs, which return 0.
692 */
693
694int fuse_fs_getattr(struct fuse_fs *fs, const char *path, struct stat *buf);
695int fuse_fs_fgetattr(struct fuse_fs *fs, const char *path, struct stat *buf,
696 struct fuse_file_info *fi);
697int fuse_fs_rename(struct fuse_fs *fs, const char *oldpath,
698 const char *newpath);
699int fuse_fs_unlink(struct fuse_fs *fs, const char *path);
700int fuse_fs_rmdir(struct fuse_fs *fs, const char *path);
701int fuse_fs_symlink(struct fuse_fs *fs, const char *linkname,
702 const char *path);
703int fuse_fs_link(struct fuse_fs *fs, const char *oldpath, const char *newpath);
704int fuse_fs_release(struct fuse_fs *fs, const char *path,
705 struct fuse_file_info *fi);
706int fuse_fs_open(struct fuse_fs *fs, const char *path,
707 struct fuse_file_info *fi);
708int fuse_fs_read(struct fuse_fs *fs, const char *path, char *buf, size_t size,
709 off64_t off, struct fuse_file_info *fi);
710int fuse_fs_write(struct fuse_fs *fs, const char *path, const char *buf,
711 size_t size, off64_t off, struct fuse_file_info *fi);
712int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync,
713 struct fuse_file_info *fi);
714int fuse_fs_flush(struct fuse_fs *fs, const char *path,
715 struct fuse_file_info *fi);
716int fuse_fs_statfs(struct fuse_fs *fs, const char *path, struct statvfs *buf);
717int fuse_fs_opendir(struct fuse_fs *fs, const char *path,
718 struct fuse_file_info *fi);
719int fuse_fs_readdir(struct fuse_fs *fs, const char *path, void *buf,
720 fuse_fill_dir_t filler, off64_t off,
721 struct fuse_file_info *fi);
722int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync,
723 struct fuse_file_info *fi);
724int fuse_fs_releasedir(struct fuse_fs *fs, const char *path,
725 struct fuse_file_info *fi);
726int fuse_fs_create(struct fuse_fs *fs, const char *path, mode_t mode,
727 struct fuse_file_info *fi);
728int fuse_fs_lock(struct fuse_fs *fs, const char *path,
729 struct fuse_file_info *fi, int cmd, struct flock *lock);
730int fuse_fs_chmod(struct fuse_fs *fs, const char *path, mode_t mode);
731int fuse_fs_chown(struct fuse_fs *fs, const char *path, uid_t uid, gid_t gid);
732int fuse_fs_truncate(struct fuse_fs *fs, const char *path, off64_t size);
733int fuse_fs_ftruncate(struct fuse_fs *fs, const char *path, off64_t size,
734 struct fuse_file_info *fi);
735int fuse_fs_utimens(struct fuse_fs *fs, const char *path,
736 const struct timespec tv[2]);
737int fuse_fs_access(struct fuse_fs *fs, const char *path, int mask);
738int fuse_fs_readlink(struct fuse_fs *fs, const char *path, char *buf,
739 size_t len);
740int fuse_fs_mknod(struct fuse_fs *fs, const char *path, mode_t mode,
741 dev_t rdev);
742int fuse_fs_mkdir(struct fuse_fs *fs, const char *path, mode_t mode);
743int fuse_fs_setxattr(struct fuse_fs *fs, const char *path, const char *name,
744 const char *value, size_t size, int flags);
745int fuse_fs_getxattr(struct fuse_fs *fs, const char *path, const char *name,
746 char *value, size_t size);
747int fuse_fs_listxattr(struct fuse_fs *fs, const char *path, char *list,
748 size_t size);
749int fuse_fs_removexattr(struct fuse_fs *fs, const char *path,
750 const char *name);
751int fuse_fs_bmap(struct fuse_fs *fs, const char *path, size_t blocksize,
752 uint64_t *idx);
753int fuse_fs_ioctl(struct fuse_fs *fs, const char *path, int cmd, void *arg,
754 struct fuse_file_info *fi, unsigned int flags, void *data);
755int fuse_fs_poll(struct fuse_fs *fs, const char *path,
756 struct fuse_file_info *fi, struct fuse_pollhandle *ph,
757 unsigned *reventsp);
758void fuse_fs_init(struct fuse_fs *fs, struct fuse_conn_info *conn);
759void fuse_fs_destroy(struct fuse_fs *fs);
760
761int fuse_notify_poll(struct fuse_pollhandle *ph);
762
763/**
764 * Create a new fuse filesystem object
765 *
766 * This is usually called from the factory of a fuse module to create
767 * a new instance of a filesystem.
768 *
769 * @param op the filesystem operations
770 * @param op_size the size of the fuse_operations structure
771 * @param user_data user data supplied in the context during the init() method
772 * @return a new filesystem object
773 */
774struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size,
775 void *user_data);
776
777/**
778 * Filesystem module
779 *
780 * Filesystem modules are registered with the FUSE_REGISTER_MODULE()
781 * macro.
782 *
783 * If the "-omodules=modname:..." option is present, filesystem
784 * objects are created and pushed onto the stack with the 'factory'
785 * function.
786 */
787struct fuse_module {
788 /**
789 * Name of filesystem
790 */
791 const char *name;
792
793 /**
794 * Factory for creating filesystem objects
795 *
796 * The function may use and remove options from 'args' that belong
797 * to this module.
798 *
799 * For now the 'fs' vector always contains exactly one filesystem.
800 * This is the filesystem which will be below the newly created
801 * filesystem in the stack.
802 *
803 * @param args the command line arguments
804 * @param fs NULL terminated filesystem object vector
805 * @return the new filesystem object
806 */
807 struct fuse_fs *(*factory)(struct fuse_args *args,
808 struct fuse_fs *fs[]);
809
810 struct fuse_module *next;
811 struct fusemod_so *so;
812 int ctr;
813};
814
815/**
816 * Register a filesystem module
817 *
818 * This function is used by FUSE_REGISTER_MODULE and there's usually
819 * no need to call it directly
820 */
821void fuse_register_module(struct fuse_module *mod);
822
823/**
824 * Register filesystem module
825 *
826 * For the parameters, see description of the fields in 'struct
827 * fuse_module'
828 */
829#define FUSE_REGISTER_MODULE(name_, factory_) \
830 static __attribute__((constructor)) void name_ ## _register(void) \
831 { \
832 static struct fuse_module mod = \
833 { #name_, factory_, NULL, NULL, 0 }; \
834 fuse_register_module(&mod); \
835 }
836
837
838/* ----------------------------------------------------------- *
839 * Advanced API for event handling, don't worry about this... *
840 * ----------------------------------------------------------- */
841
842/* NOTE: the following functions are deprecated, and will be removed
843 from the 3.0 API. Use the lowlevel session functions instead */
844
845/** Function type used to process commands */
846typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
847
848/** This is the part of fuse_main() before the event loop */
849struct fuse *fuse_setup(int argc, char *argv[],
850 const struct fuse_operations *op, size_t op_size,
851 char **mountpoint, int *multithreaded,
852 void *user_data);
853
854/** This is the part of fuse_main() after the event loop */
855void fuse_teardown(struct fuse *fuse, char *mountpoint);
856
857/** Read a single command. If none are read, return NULL */
858struct fuse_cmd *fuse_read_cmd(struct fuse *f);
859
860/** Process a single command */
861void fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd);
862
863/** Multi threaded event loop, which calls the custom command
864 processor function */
865int fuse_loop_mt_proc(struct fuse *f, fuse_processor_t proc, void *data);
866
867/** Return the exited flag, which indicates if fuse_exit() has been
868 called */
869int fuse_exited(struct fuse *f);
870
871/** This function is obsolete and implemented as a no-op */
872void fuse_set_getcontext_func(struct fuse_context *(*func)(void));
873
874/** Get session from fuse object */
875struct fuse_session *fuse_get_session(struct fuse *f);
876
877/* ----------------------------------------------------------- *
878 * Compatibility stuff *
879 * ----------------------------------------------------------- */
880
881#if FUSE_USE_VERSION < 26
882# include "fuse_compat.h"
883# undef fuse_main
884# if FUSE_USE_VERSION == 25
885# define fuse_main(argc, argv, op) \
886 fuse_main_real_compat25(argc, argv, op, sizeof(*(op)))
887# define fuse_new fuse_new_compat25
888# define fuse_setup fuse_setup_compat25
889# define fuse_teardown fuse_teardown_compat22
890# define fuse_operations fuse_operations_compat25
891# elif FUSE_USE_VERSION == 22
892# define fuse_main(argc, argv, op) \
893 fuse_main_real_compat22(argc, argv, op, sizeof(*(op)))
894# define fuse_new fuse_new_compat22
895# define fuse_setup fuse_setup_compat22
896# define fuse_teardown fuse_teardown_compat22
897# define fuse_operations fuse_operations_compat22
898# define fuse_file_info fuse_file_info_compat
899# elif FUSE_USE_VERSION == 24
900# error Compatibility with high-level API version 24 not supported
901# else
902# define fuse_dirfil_t fuse_dirfil_t_compat
903# define __fuse_read_cmd fuse_read_cmd
904# define __fuse_process_cmd fuse_process_cmd
905# define __fuse_loop_mt fuse_loop_mt_proc
906# if FUSE_USE_VERSION == 21
907# define fuse_operations fuse_operations_compat2
908# define fuse_main fuse_main_compat2
909# define fuse_new fuse_new_compat2
910# define __fuse_setup fuse_setup_compat2
911# define __fuse_teardown fuse_teardown_compat22
912# define __fuse_exited fuse_exited
913# define __fuse_set_getcontext_func fuse_set_getcontext_func
914# else
915# define fuse_statfs fuse_statfs_compat1
916# define fuse_operations fuse_operations_compat1
917# define fuse_main fuse_main_compat1
918# define fuse_new fuse_new_compat1
919# define FUSE_DEBUG FUSE_DEBUG_COMPAT1
920# endif
921# endif
922#endif
923
924#ifdef __cplusplus
925}
926#endif
927
928#endif /* _FUSE_H_ */