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.

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