libfuse
fuse.h
Go to the documentation of this file.
1 /*
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 
19 #include "fuse_common.h"
20 
21 #include <fcntl.h>
22 #include <time.h>
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <sys/statvfs.h>
26 #include <sys/uio.h>
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32 /* ----------------------------------------------------------- *
33  * Basic FUSE API *
34  * ----------------------------------------------------------- */
35 
37 struct fuse;
38 
51  FUSE_READDIR_PLUS = (1 << 0),
52 };
53 
64  FUSE_FILL_DIR_PLUS = (1 << 1),
65 };
66 
82 typedef int (*fuse_fill_dir_t) (void *buf, const char *name,
83  const struct stat *stbuf, off_t off,
84  enum fuse_fill_dir_flags flags);
93 struct fuse_config {
98  int set_gid;
99  unsigned int gid;
100 
105  int set_uid;
106  unsigned int uid;
107 
112  int set_mode;
113  unsigned int umask;
114 
120 
130 
135  double attr_timeout;
136 
140  int intr;
141 
148 
159  int remember;
160 
178 
190  int use_ino;
191 
200 
219 
238 
246 
253  double ac_attr_timeout;
254 
266 
272  char *modules;
273  int debug;
274 };
275 
276 
311  int (*getattr) (const char *, struct stat *, struct fuse_file_info *fi);
312 
321  int (*readlink) (const char *, char *, size_t);
322 
329  int (*mknod) (const char *, mode_t, dev_t);
330 
337  int (*mkdir) (const char *, mode_t);
338 
340  int (*unlink) (const char *);
341 
343  int (*rmdir) (const char *);
344 
346  int (*symlink) (const char *, const char *);
347 
357  int (*rename) (const char *, const char *, unsigned int flags);
358 
360  int (*link) (const char *, const char *);
361 
367  int (*chmod) (const char *, mode_t, struct fuse_file_info *fi);
368 
377  int (*chown) (const char *, uid_t, gid_t, struct fuse_file_info *fi);
378 
387  int (*truncate) (const char *, off_t, struct fuse_file_info *fi);
388 
437  int (*open) (const char *, struct fuse_file_info *);
438 
448  int (*read) (const char *, char *, size_t, off_t,
449  struct fuse_file_info *);
450 
460  int (*write) (const char *, const char *, size_t, off_t,
461  struct fuse_file_info *);
462 
467  int (*statfs) (const char *, struct statvfs *);
468 
490  int (*flush) (const char *, struct fuse_file_info *);
491 
504  int (*release) (const char *, struct fuse_file_info *);
505 
511  int (*fsync) (const char *, int, struct fuse_file_info *);
512 
514  int (*setxattr) (const char *, const char *, const char *, size_t, int);
515 
517  int (*getxattr) (const char *, const char *, char *, size_t);
518 
520  int (*listxattr) (const char *, char *, size_t);
521 
523  int (*removexattr) (const char *, const char *);
524 
533  int (*opendir) (const char *, struct fuse_file_info *);
534 
550  int (*readdir) (const char *, void *, fuse_fill_dir_t, off_t,
551  struct fuse_file_info *, enum fuse_readdir_flags);
552 
555  int (*releasedir) (const char *, struct fuse_file_info *);
556 
562  int (*fsyncdir) (const char *, int, struct fuse_file_info *);
563 
572  void *(*init) (struct fuse_conn_info *conn,
573  struct fuse_config *cfg);
574 
580  void (*destroy) (void *private_data);
581 
591  int (*access) (const char *, int);
592 
603  int (*create) (const char *, mode_t, struct fuse_file_info *);
604 
635  int (*lock) (const char *, struct fuse_file_info *, int cmd,
636  struct flock *);
637 
650  int (*utimens) (const char *, const struct timespec tv[2],
651  struct fuse_file_info *fi);
652 
659  int (*bmap) (const char *, size_t blocksize, uint64_t *idx);
660 
674  int (*ioctl) (const char *, int cmd, void *arg,
675  struct fuse_file_info *, unsigned int flags, void *data);
676 
692  int (*poll) (const char *, struct fuse_file_info *,
693  struct fuse_pollhandle *ph, unsigned *reventsp);
694 
704  int (*write_buf) (const char *, struct fuse_bufvec *buf, off_t off,
705  struct fuse_file_info *);
706 
721  int (*read_buf) (const char *, struct fuse_bufvec **bufp,
722  size_t size, off_t off, struct fuse_file_info *);
741  int (*flock) (const char *, struct fuse_file_info *, int op);
742 
751  int (*fallocate) (const char *, int, off_t, off_t,
752  struct fuse_file_info *);
753 };
754 
760 struct fuse_context {
762  struct fuse *fuse;
763 
765  uid_t uid;
766 
768  gid_t gid;
769 
771  pid_t pid;
772 
775 
777  mode_t umask;
778 };
779 
825 /*
826  int fuse_main(int argc, char *argv[], const struct fuse_operations *op,
827  void *private_data);
828 */
829 #define fuse_main(argc, argv, op, private_data) \
830  fuse_main_real(argc, argv, op, sizeof(*(op)), private_data)
831 
832 /* ----------------------------------------------------------- *
833  * More detailed API *
834  * ----------------------------------------------------------- */
835 
847 void fuse_lib_help(struct fuse_args *args);
848 
876 #if FUSE_USE_VERSION == 30
877 struct fuse *fuse_new_30(struct fuse_args *args, const struct fuse_operations *op,
878  size_t op_size, void *private_data);
879 #define fuse_new(args, op, size, data) fuse_new_30(args, op, size, data)
880 #else
881 struct fuse *fuse_new(struct fuse_args *args, const struct fuse_operations *op,
882  size_t op_size, void *private_data);
883 #endif
884 
893 int fuse_mount(struct fuse *f, const char *mountpoint);
894 
902 void fuse_unmount(struct fuse *f);
903 
912 void fuse_destroy(struct fuse *f);
913 
929 int fuse_loop(struct fuse *f);
930 
939 void fuse_exit(struct fuse *f);
940 
972 #if FUSE_USE_VERSION < 32
973 int fuse_loop_mt_31(struct fuse *f, int clone_fd);
974 #define fuse_loop_mt(f, clone_fd) fuse_loop_mt_31(f, clone_fd)
975 #else
976 int fuse_loop_mt(struct fuse *f, struct fuse_loop_config *config);
977 #endif
978 
987 struct fuse_context *fuse_get_context(void);
988 
1007 int fuse_getgroups(int size, gid_t list[]);
1008 
1014 int fuse_interrupted(void);
1015 
1027 int fuse_invalidate_path(struct fuse *f, const char *path);
1028 
1034 int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
1035  size_t op_size, void *private_data);
1036 
1044 int fuse_start_cleanup_thread(struct fuse *fuse);
1045 
1052 void fuse_stop_cleanup_thread(struct fuse *fuse);
1053 
1063 int fuse_clean_cache(struct fuse *fuse);
1064 
1065 /*
1066  * Stacking API
1067  */
1068 
1074 struct fuse_fs;
1075 
1076 /*
1077  * These functions call the relevant filesystem operation, and return
1078  * the result.
1079  *
1080  * If the operation is not defined, they return -ENOSYS, with the
1081  * exception of fuse_fs_open, fuse_fs_release, fuse_fs_opendir,
1082  * fuse_fs_releasedir and fuse_fs_statfs, which return 0.
1083  */
1084 
1085 int fuse_fs_getattr(struct fuse_fs *fs, const char *path, struct stat *buf,
1086  struct fuse_file_info *fi);
1087 int fuse_fs_rename(struct fuse_fs *fs, const char *oldpath,
1088  const char *newpath, unsigned int flags);
1089 int fuse_fs_unlink(struct fuse_fs *fs, const char *path);
1090 int fuse_fs_rmdir(struct fuse_fs *fs, const char *path);
1091 int fuse_fs_symlink(struct fuse_fs *fs, const char *linkname,
1092  const char *path);
1093 int fuse_fs_link(struct fuse_fs *fs, const char *oldpath, const char *newpath);
1094 int fuse_fs_release(struct fuse_fs *fs, const char *path,
1095  struct fuse_file_info *fi);
1096 int fuse_fs_open(struct fuse_fs *fs, const char *path,
1097  struct fuse_file_info *fi);
1098 int fuse_fs_read(struct fuse_fs *fs, const char *path, char *buf, size_t size,
1099  off_t off, struct fuse_file_info *fi);
1100 int fuse_fs_read_buf(struct fuse_fs *fs, const char *path,
1101  struct fuse_bufvec **bufp, size_t size, off_t off,
1102  struct fuse_file_info *fi);
1103 int fuse_fs_write(struct fuse_fs *fs, const char *path, const char *buf,
1104  size_t size, off_t off, struct fuse_file_info *fi);
1105 int fuse_fs_write_buf(struct fuse_fs *fs, const char *path,
1106  struct fuse_bufvec *buf, off_t off,
1107  struct fuse_file_info *fi);
1108 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync,
1109  struct fuse_file_info *fi);
1110 int fuse_fs_flush(struct fuse_fs *fs, const char *path,
1111  struct fuse_file_info *fi);
1112 int fuse_fs_statfs(struct fuse_fs *fs, const char *path, struct statvfs *buf);
1113 int fuse_fs_opendir(struct fuse_fs *fs, const char *path,
1114  struct fuse_file_info *fi);
1115 int fuse_fs_readdir(struct fuse_fs *fs, const char *path, void *buf,
1116  fuse_fill_dir_t filler, off_t off,
1117  struct fuse_file_info *fi, enum fuse_readdir_flags flags);
1118 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync,
1119  struct fuse_file_info *fi);
1120 int fuse_fs_releasedir(struct fuse_fs *fs, const char *path,
1121  struct fuse_file_info *fi);
1122 int fuse_fs_create(struct fuse_fs *fs, const char *path, mode_t mode,
1123  struct fuse_file_info *fi);
1124 int fuse_fs_lock(struct fuse_fs *fs, const char *path,
1125  struct fuse_file_info *fi, int cmd, struct flock *lock);
1126 int fuse_fs_flock(struct fuse_fs *fs, const char *path,
1127  struct fuse_file_info *fi, int op);
1128 int fuse_fs_chmod(struct fuse_fs *fs, const char *path, mode_t mode,
1129  struct fuse_file_info *fi);
1130 int fuse_fs_chown(struct fuse_fs *fs, const char *path, uid_t uid, gid_t gid,
1131  struct fuse_file_info *fi);
1132 int fuse_fs_truncate(struct fuse_fs *fs, const char *path, off_t size,
1133  struct fuse_file_info *fi);
1134 int fuse_fs_utimens(struct fuse_fs *fs, const char *path,
1135  const struct timespec tv[2], struct fuse_file_info *fi);
1136 int fuse_fs_access(struct fuse_fs *fs, const char *path, int mask);
1137 int fuse_fs_readlink(struct fuse_fs *fs, const char *path, char *buf,
1138  size_t len);
1139 int fuse_fs_mknod(struct fuse_fs *fs, const char *path, mode_t mode,
1140  dev_t rdev);
1141 int fuse_fs_mkdir(struct fuse_fs *fs, const char *path, mode_t mode);
1142 int fuse_fs_setxattr(struct fuse_fs *fs, const char *path, const char *name,
1143  const char *value, size_t size, int flags);
1144 int fuse_fs_getxattr(struct fuse_fs *fs, const char *path, const char *name,
1145  char *value, size_t size);
1146 int fuse_fs_listxattr(struct fuse_fs *fs, const char *path, char *list,
1147  size_t size);
1148 int fuse_fs_removexattr(struct fuse_fs *fs, const char *path,
1149  const char *name);
1150 int fuse_fs_bmap(struct fuse_fs *fs, const char *path, size_t blocksize,
1151  uint64_t *idx);
1152 int fuse_fs_ioctl(struct fuse_fs *fs, const char *path, int cmd, void *arg,
1153  struct fuse_file_info *fi, unsigned int flags, void *data);
1154 int fuse_fs_poll(struct fuse_fs *fs, const char *path,
1155  struct fuse_file_info *fi, struct fuse_pollhandle *ph,
1156  unsigned *reventsp);
1157 int fuse_fs_fallocate(struct fuse_fs *fs, const char *path, int mode,
1158  off_t offset, off_t length, struct fuse_file_info *fi);
1159 void fuse_fs_init(struct fuse_fs *fs, struct fuse_conn_info *conn,
1160  struct fuse_config *cfg);
1161 void fuse_fs_destroy(struct fuse_fs *fs);
1162 
1163 int fuse_notify_poll(struct fuse_pollhandle *ph);
1164 
1178 struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size,
1179  void *private_data);
1180 
1195 typedef struct fuse_fs *(*fuse_module_factory_t)(struct fuse_args *args,
1196  struct fuse_fs *fs[]);
1207 #define FUSE_REGISTER_MODULE(name_, factory_) \
1208  fuse_module_factory_t fuse_module_ ## name_ ## _factory = factory_
1209 
1211 struct fuse_session *fuse_get_session(struct fuse *f);
1212 
1213 #ifdef __cplusplus
1214 }
1215 #endif
1216 
1217 #endif /* FUSE_H_ */
size_t off
Definition: fuse_common.h:668
int fuse_loop_mt_31(struct fuse *f, int clone_fd)
Definition: fuse.c:4402
int auto_cache
Definition: fuse.h:245
int(* fuse_fill_dir_t)(void *buf, const char *name, const struct stat *stbuf, off_t off, enum fuse_fill_dir_flags flags)
Definition: fuse.h:82
int set_gid
Definition: fuse.h:98
void fuse_exit(struct fuse *f)
Definition: fuse.c:4410
fuse_readdir_flags
Definition: fuse.h:42
int readdir_ino
Definition: fuse.h:199
int intr
Definition: fuse.h:140
int set_mode
Definition: fuse.h:112
struct fuse * fuse
Definition: fuse.h:762
int fuse_getgroups(int size, gid_t list[])
Definition: fuse.c:4425
int nullpath_ok
Definition: fuse.h:265
double negative_timeout
Definition: fuse.h:129
pid_t pid
Definition: fuse.h:771
int set_uid
Definition: fuse.h:105
int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op, size_t op_size, void *private_data)
Definition: helper.c:274
int remember
Definition: fuse.h:159
int use_ino
Definition: fuse.h:190
int fuse_start_cleanup_thread(struct fuse *fuse)
Definition: fuse.c:4666
int fuse_invalidate_path(struct fuse *f, const char *path)
Definition: fuse.c:4444
gid_t gid
Definition: fuse.h:768
void fuse_lib_help(struct fuse_args *args)
Definition: fuse.c:4508
mode_t umask
Definition: fuse.h:777
double attr_timeout
Definition: fuse.h:135
int direct_io
Definition: fuse.h:218
struct fuse_fs * fuse_fs_new(const struct fuse_operations *op, size_t op_size, void *private_data)
Definition: fuse.c:4618
int show_help
Definition: fuse.h:271
void fuse_destroy(struct fuse *f)
Definition: fuse.c:4865
void fuse_stop_cleanup_thread(struct fuse *fuse)
Definition: fuse.c:4674
int fuse_clean_cache(struct fuse *fuse)
Definition: fuse.c:4232
uid_t uid
Definition: fuse.h:765
struct fuse_session * fuse_get_session(struct fuse *f)
Definition: fuse.c:4317
int fuse_loop(struct fuse *f)
Definition: fuse.c:4374
struct fuse_context * fuse_get_context(void)
Definition: fuse.c:4415
int ac_attr_timeout_set
Definition: fuse.h:252
struct fuse_buf buf[1]
Definition: fuse_common.h:673
int fuse_interrupted(void)
Definition: fuse.c:4434
int fuse_mount(struct fuse *f, const char *mountpoint)
Definition: fuse.c:4912
fuse_fill_dir_flags
Definition: fuse.h:54
struct fuse * fuse_new(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *private_data)
double entry_timeout
Definition: fuse.h:119
void * private_data
Definition: fuse.h:774
int kernel_cache
Definition: fuse.h:237
int intr_signal
Definition: fuse.h:147
void fuse_unmount(struct fuse *f)
Definition: fuse.c:4917
int hard_remove
Definition: fuse.h:177