You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

483 lines
12 KiB

  1. /*
  2. FUSE: Filesystem in Userspace
  3. Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
  4. This program can be distributed under the terms of the GNU LGPLv2.
  5. See the file COPYING.LIB.
  6. */
  7. /** @file */
  8. #if !defined(_FUSE_H_) && !defined(_FUSE_LOWLEVEL_H_)
  9. #error "Never include <fuse_common.h> directly; use <fuse.h> or <fuse_lowlevel.h> instead."
  10. #endif
  11. #ifndef _FUSE_COMMON_H_
  12. #define _FUSE_COMMON_H_
  13. #include "extern_c.h"
  14. #include "fuse_opt.h"
  15. #include "fuse_timeouts.h"
  16. #include <stdint.h>
  17. #include <sys/types.h>
  18. /** Major version of FUSE library interface */
  19. #define FUSE_MAJOR_VERSION 2
  20. /** Minor version of FUSE library interface */
  21. #define FUSE_MINOR_VERSION 9
  22. #define FUSE_MAKE_VERSION(maj, min) ((maj) * 10 + (min))
  23. #define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
  24. /* This interface uses 64 bit off_t */
  25. #if _FILE_OFFSET_BITS != 64
  26. #error Please add -D_FILE_OFFSET_BITS=64 to your compile flags!
  27. #endif
  28. #define FUSE_DEFAULT_MAX_PAGES_PER_REQ 32
  29. #define FUSE_MAX_MAX_PAGES 256
  30. EXTERN_C_BEGIN
  31. /**
  32. * Information about open files
  33. *
  34. * Changed in version 2.5
  35. */
  36. typedef struct fuse_file_info_t fuse_file_info_t;
  37. struct fuse_file_info_t
  38. {
  39. /** Open flags. Available in open() and release() */
  40. int flags;
  41. /** In case of a write operation indicates if this was caused by a
  42. writepage */
  43. uint32_t writepage : 1;
  44. /** Can be filled in by open, to use direct I/O on this file.
  45. Introduced in version 2.4 */
  46. uint32_t direct_io : 1;
  47. /** Can be filled in by open, to indicate, that cached file data
  48. need not be invalidated. Introduced in version 2.4 */
  49. uint32_t keep_cache : 1;
  50. /** Indicates a flush operation. Set in flush operation, also
  51. maybe set in highlevel lock operation and lowlevel release
  52. operation. Introduced in version 2.6 */
  53. uint32_t flush : 1;
  54. /** Can be filled in by open, to indicate that the file is not
  55. seekable. Introduced in version 2.8 */
  56. uint32_t nonseekable : 1;
  57. /* Indicates that flock locks for this file should be
  58. released. If set, lock_owner shall contain a valid value.
  59. May only be set in ->release(). Introduced in version
  60. 2.9 */
  61. uint32_t flock_release : 1;
  62. /* Requests the kernel to cache entries returned by readdir */
  63. uint32_t cache_readdir : 1;
  64. uint32_t auto_cache : 1;
  65. uint32_t parallel_direct_writes:1;
  66. uint32_t noflush:1;
  67. /** File handle. May be filled in by filesystem in open().
  68. Available in all other file operations */
  69. uint64_t fh;
  70. /** Lock owner id. Available in locking operations and flush */
  71. uint64_t lock_owner;
  72. };
  73. /**
  74. * Capability bits for 'fuse_conn_info.capable' and 'fuse_conn_info.want'
  75. *
  76. * FUSE_CAP_ASYNC_READ: filesystem supports asynchronous read requests
  77. * FUSE_CAP_POSIX_LOCKS: filesystem supports "remote" locking
  78. * FUSE_CAP_ATOMIC_O_TRUNC: filesystem handles the O_TRUNC open flag
  79. * FUSE_CAP_EXPORT_SUPPORT: filesystem handles lookups of "." and ".."
  80. * FUSE_CAP_BIG_WRITES: filesystem can handle write size larger than 4kB
  81. * FUSE_CAP_DONT_MASK: don't apply umask to file mode on create operations
  82. * FUSE_CAP_IOCTL_DIR: ioctl support on directories
  83. * FUSE_CAP_CACHE_SYMLINKS: cache READLINK responses
  84. */
  85. #define FUSE_CAP_ASYNC_READ (1 << 0)
  86. #define FUSE_CAP_POSIX_LOCKS (1 << 1)
  87. #define FUSE_CAP_ATOMIC_O_TRUNC (1 << 3)
  88. #define FUSE_CAP_EXPORT_SUPPORT (1 << 4)
  89. #define FUSE_CAP_BIG_WRITES (1 << 5)
  90. #define FUSE_CAP_DONT_MASK (1 << 6)
  91. #define FUSE_CAP_FLOCK_LOCKS (1 << 10)
  92. #define FUSE_CAP_IOCTL_DIR (1 << 11)
  93. #define FUSE_CAP_READDIR_PLUS (1 << 13)
  94. #define FUSE_CAP_READDIR_PLUS_AUTO (1 << 14)
  95. #define FUSE_CAP_ASYNC_DIO (1 << 15)
  96. #define FUSE_CAP_WRITEBACK_CACHE (1 << 16)
  97. #define FUSE_CAP_PARALLEL_DIROPS (1 << 18)
  98. #define FUSE_CAP_POSIX_ACL (1 << 19)
  99. #define FUSE_CAP_CACHE_SYMLINKS (1 << 20)
  100. #define FUSE_CAP_MAX_PAGES (1 << 21)
  101. #define FUSE_CAP_SETXATTR_EXT (1 << 22)
  102. /**
  103. * Ioctl flags
  104. *
  105. * FUSE_IOCTL_COMPAT: 32bit compat ioctl on 64bit machine
  106. * FUSE_IOCTL_UNRESTRICTED: not restricted to well-formed ioctls, retry allowed
  107. * FUSE_IOCTL_RETRY: retry with new iovecs
  108. * FUSE_IOCTL_DIR: is a directory
  109. *
  110. * FUSE_IOCTL_MAX_IOV: maximum of in_iovecs + out_iovecs
  111. */
  112. #define FUSE_IOCTL_COMPAT (1 << 0)
  113. #define FUSE_IOCTL_UNRESTRICTED (1 << 1)
  114. #define FUSE_IOCTL_RETRY (1 << 2)
  115. #define FUSE_IOCTL_DIR (1 << 4)
  116. #define FUSE_IOCTL_MAX_IOV 256
  117. /**
  118. * Connection information, passed to the ->init() method
  119. *
  120. * Some of the elements are read-write, these can be changed to
  121. * indicate the value requested by the filesystem. The requested
  122. * value must usually be smaller than the indicated value.
  123. */
  124. struct fuse_conn_info {
  125. /**
  126. * Major version of the protocol (read-only)
  127. */
  128. unsigned proto_major;
  129. /**
  130. * Minor version of the protocol (read-only)
  131. */
  132. unsigned proto_minor;
  133. /**
  134. * Maximum size of the write buffer
  135. */
  136. unsigned max_write;
  137. /**
  138. * Maximum readahead
  139. */
  140. unsigned max_readahead;
  141. /**
  142. * Capability flags, that the kernel supports
  143. */
  144. unsigned capable;
  145. /**
  146. * Capability flags, that the filesystem wants to enable
  147. */
  148. unsigned want;
  149. /**
  150. * Maximum number of backgrounded requests
  151. */
  152. unsigned max_background;
  153. /**
  154. * Kernel congestion threshold parameter
  155. */
  156. unsigned congestion_threshold;
  157. /**
  158. * Max pages
  159. */
  160. uint16_t max_pages;
  161. /**
  162. * For future use.
  163. */
  164. unsigned reserved[22];
  165. };
  166. struct fuse_session;
  167. struct fuse_chan;
  168. struct fuse_pollhandle_t;
  169. typedef struct fuse_pollhandle_t fuse_pollhandle_t;
  170. /**
  171. * Create a FUSE mountpoint
  172. *
  173. * Returns a control file descriptor suitable for passing to
  174. * fuse_new()
  175. *
  176. * @param mountpoint the mount point path
  177. * @param args argument vector
  178. * @return the communication channel on success, NULL on failure
  179. */
  180. struct fuse_chan *fuse_mount(const char *mountpoint,
  181. struct fuse_args *args);
  182. /**
  183. * Umount a FUSE mountpoint
  184. *
  185. * @param mountpoint the mount point path
  186. * @param ch the communication channel
  187. */
  188. void fuse_unmount(const char *mountpoint, struct fuse_chan *ch);
  189. /**
  190. * Parse common options
  191. *
  192. * The following options are parsed:
  193. *
  194. * '-f' foreground
  195. * '-d' '-odebug' foreground, but keep the debug option
  196. * '-h' '--help' help
  197. * '-ho' help without header
  198. * '-ofsname=..' file system name, if not present, then set to the program
  199. * name
  200. *
  201. * All parameters may be NULL
  202. *
  203. * @param args argument vector
  204. * @param mountpoint the returned mountpoint, should be freed after use
  205. * @param foreground set to 1 if one of the relevant options is present
  206. * @return 0 on success, -1 on failure
  207. */
  208. int fuse_parse_cmdline(struct fuse_args *args,
  209. char **mountpoint,
  210. int *foreground);
  211. /**
  212. * Go into the background
  213. *
  214. * @param foreground if true, stay in the foreground
  215. * @return 0 on success, -1 on failure
  216. */
  217. int fuse_daemonize(int foreground);
  218. /**
  219. * Get the version of the library
  220. *
  221. * @return the version
  222. */
  223. int fuse_version(void);
  224. /**
  225. * Destroy poll handle
  226. *
  227. * @param ph the poll handle
  228. */
  229. void fuse_pollhandle_destroy(fuse_pollhandle_t *ph);
  230. /* ----------------------------------------------------------- *
  231. * Data buffer *
  232. * ----------------------------------------------------------- */
  233. /**
  234. * Buffer flags
  235. */
  236. enum fuse_buf_flags {
  237. /**
  238. * Buffer contains a file descriptor
  239. *
  240. * If this flag is set, the .fd field is valid, otherwise the
  241. * .mem fields is valid.
  242. */
  243. FUSE_BUF_IS_FD = (1 << 1),
  244. /**
  245. * Seek on the file descriptor
  246. *
  247. * If this flag is set then the .pos field is valid and is
  248. * used to seek to the given offset before performing
  249. * operation on file descriptor.
  250. */
  251. FUSE_BUF_FD_SEEK = (1 << 2),
  252. /**
  253. * Retry operation on file descriptor
  254. *
  255. * If this flag is set then retry operation on file descriptor
  256. * until .size bytes have been copied or an error or EOF is
  257. * detected.
  258. */
  259. FUSE_BUF_FD_RETRY = (1 << 3),
  260. };
  261. /**
  262. * Buffer copy flags
  263. */
  264. enum fuse_buf_copy_flags {
  265. /**
  266. * Don't use splice(2)
  267. *
  268. * Always fall back to using read and write instead of
  269. * splice(2) to copy data from one file descriptor to another.
  270. *
  271. * If this flag is not set, then only fall back if splice is
  272. * unavailable.
  273. */
  274. FUSE_BUF_NO_SPLICE = (1 << 1),
  275. /**
  276. * Force splice
  277. *
  278. * Always use splice(2) to copy data from one file descriptor
  279. * to another. If splice is not available, return -EINVAL.
  280. */
  281. FUSE_BUF_FORCE_SPLICE = (1 << 2),
  282. /**
  283. * Try to move data with splice.
  284. *
  285. * If splice is used, try to move pages from the source to the
  286. * destination instead of copying. See documentation of
  287. * SPLICE_F_MOVE in splice(2) man page.
  288. */
  289. FUSE_BUF_SPLICE_MOVE = (1 << 3),
  290. /**
  291. * Don't block on the pipe when copying data with splice
  292. *
  293. * Makes the operations on the pipe non-blocking (if the pipe
  294. * is full or empty). See SPLICE_F_NONBLOCK in the splice(2)
  295. * man page.
  296. */
  297. FUSE_BUF_SPLICE_NONBLOCK= (1 << 4),
  298. };
  299. /**
  300. * Single data buffer
  301. *
  302. * Generic data buffer for I/O, extended attributes, etc... Data may
  303. * be supplied as a memory pointer or as a file descriptor
  304. */
  305. struct fuse_buf {
  306. /**
  307. * Size of data in bytes
  308. */
  309. size_t size;
  310. /**
  311. * Buffer flags
  312. */
  313. enum fuse_buf_flags flags;
  314. /**
  315. * Memory pointer
  316. *
  317. * Used unless FUSE_BUF_IS_FD flag is set.
  318. */
  319. void *mem;
  320. /**
  321. * File descriptor
  322. *
  323. * Used if FUSE_BUF_IS_FD flag is set.
  324. */
  325. int fd;
  326. /**
  327. * File position
  328. *
  329. * Used if FUSE_BUF_FD_SEEK flag is set.
  330. */
  331. off_t pos;
  332. };
  333. /**
  334. * Data buffer vector
  335. *
  336. * An array of data buffers, each containing a memory pointer or a
  337. * file descriptor.
  338. *
  339. * Allocate dynamically to add more than one buffer.
  340. */
  341. struct fuse_bufvec {
  342. /**
  343. * Number of buffers in the array
  344. */
  345. size_t count;
  346. /**
  347. * Index of current buffer within the array
  348. */
  349. size_t idx;
  350. /**
  351. * Current offset within the current buffer
  352. */
  353. size_t off;
  354. /**
  355. * Array of buffers
  356. */
  357. struct fuse_buf buf[1];
  358. };
  359. /* Initialize bufvec with a single buffer of given size */
  360. #define FUSE_BUFVEC_INIT(size__) \
  361. ((struct fuse_bufvec) { \
  362. /* .count= */ 1, \
  363. /* .idx = */ 0, \
  364. /* .off = */ 0, \
  365. /* .buf = */ { /* [0] = */ { \
  366. /* .size = */ (size__), \
  367. /* .flags = */ (enum fuse_buf_flags) 0, \
  368. /* .mem = */ NULL, \
  369. /* .fd = */ -1, \
  370. /* .pos = */ 0, \
  371. } } \
  372. } )
  373. /**
  374. * Get total size of data in a fuse buffer vector
  375. *
  376. * @param bufv buffer vector
  377. * @return size of data
  378. */
  379. size_t fuse_buf_size(const struct fuse_bufvec *bufv);
  380. /**
  381. * Copy data from one buffer vector to another
  382. *
  383. * @param dst destination buffer vector
  384. * @param src source buffer vector
  385. * @param flags flags controlling the copy
  386. * @return actual number of bytes copied or -errno on error
  387. */
  388. ssize_t fuse_buf_copy(struct fuse_bufvec *dst, struct fuse_bufvec *src,
  389. enum fuse_buf_copy_flags flags);
  390. /* ----------------------------------------------------------- *
  391. * Signal handling *
  392. * ----------------------------------------------------------- */
  393. /**
  394. * Exit session on HUP, TERM and INT signals and ignore PIPE signal
  395. *
  396. * Stores session in a global variable. May only be called once per
  397. * process until fuse_remove_signal_handlers() is called.
  398. *
  399. * @param se the session to exit
  400. * @return 0 on success, -1 on failure
  401. */
  402. int fuse_set_signal_handlers(struct fuse_session *se);
  403. /**
  404. * Restore default signal handlers
  405. *
  406. * Resets global session. After this fuse_set_signal_handlers() may
  407. * be called again.
  408. *
  409. * @param se the same session as given in fuse_set_signal_handlers()
  410. */
  411. void fuse_remove_signal_handlers(struct fuse_session *se);
  412. EXTERN_C_END
  413. #endif /* _FUSE_COMMON_H_ */