fuse_i.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. /*
  2. FUSE: Filesystem in Userspace
  3. Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu>
  4. This program can be distributed under the terms of the GNU GPL.
  5. See the file COPYING.
  6. */
  7. #include <linux/fuse.h>
  8. #include <linux/fs.h>
  9. #include <linux/wait.h>
  10. #include <linux/list.h>
  11. #include <linux/spinlock.h>
  12. #include <linux/mm.h>
  13. #include <linux/backing-dev.h>
  14. #include <asm/semaphore.h>
  15. /** Max number of pages that can be used in a single read request */
  16. #define FUSE_MAX_PAGES_PER_REQ 32
  17. /** Maximum number of outstanding background requests */
  18. #define FUSE_MAX_BACKGROUND 10
  19. /** It could be as large as PATH_MAX, but would that have any uses? */
  20. #define FUSE_NAME_MAX 1024
  21. /** If the FUSE_DEFAULT_PERMISSIONS flag is given, the filesystem
  22. module will check permissions based on the file mode. Otherwise no
  23. permission checking is done in the kernel */
  24. #define FUSE_DEFAULT_PERMISSIONS (1 << 0)
  25. /** If the FUSE_ALLOW_OTHER flag is given, then not only the user
  26. doing the mount will be allowed to access the filesystem */
  27. #define FUSE_ALLOW_OTHER (1 << 1)
  28. /** FUSE inode */
  29. struct fuse_inode {
  30. /** Inode data */
  31. struct inode inode;
  32. /** Unique ID, which identifies the inode between userspace
  33. * and kernel */
  34. u64 nodeid;
  35. /** Number of lookups on this inode */
  36. u64 nlookup;
  37. /** The request used for sending the FORGET message */
  38. struct fuse_req *forget_req;
  39. /** Time in jiffies until the file attributes are valid */
  40. unsigned long i_time;
  41. };
  42. /** FUSE specific file data */
  43. struct fuse_file {
  44. /** Request reserved for flush and release */
  45. struct fuse_req *release_req;
  46. /** File handle used by userspace */
  47. u64 fh;
  48. };
  49. /** One input argument of a request */
  50. struct fuse_in_arg {
  51. unsigned size;
  52. const void *value;
  53. };
  54. /** The request input */
  55. struct fuse_in {
  56. /** The request header */
  57. struct fuse_in_header h;
  58. /** True if the data for the last argument is in req->pages */
  59. unsigned argpages:1;
  60. /** Number of arguments */
  61. unsigned numargs;
  62. /** Array of arguments */
  63. struct fuse_in_arg args[3];
  64. };
  65. /** One output argument of a request */
  66. struct fuse_arg {
  67. unsigned size;
  68. void *value;
  69. };
  70. /** The request output */
  71. struct fuse_out {
  72. /** Header returned from userspace */
  73. struct fuse_out_header h;
  74. /*
  75. * The following bitfields are not changed during the request
  76. * processing
  77. */
  78. /** Last argument is variable length (can be shorter than
  79. arg->size) */
  80. unsigned argvar:1;
  81. /** Last argument is a list of pages to copy data to */
  82. unsigned argpages:1;
  83. /** Zero partially or not copied pages */
  84. unsigned page_zeroing:1;
  85. /** Number or arguments */
  86. unsigned numargs;
  87. /** Array of arguments */
  88. struct fuse_arg args[3];
  89. };
  90. /** The request state */
  91. enum fuse_req_state {
  92. FUSE_REQ_INIT = 0,
  93. FUSE_REQ_PENDING,
  94. FUSE_REQ_READING,
  95. FUSE_REQ_SENT,
  96. FUSE_REQ_FINISHED
  97. };
  98. struct fuse_conn;
  99. /**
  100. * A request to the client
  101. */
  102. struct fuse_req {
  103. /** This can be on either pending processing or io lists in
  104. fuse_conn */
  105. struct list_head list;
  106. /** Entry on the background list */
  107. struct list_head bg_entry;
  108. /** refcount */
  109. atomic_t count;
  110. /*
  111. * The following bitfields are either set once before the
  112. * request is queued or setting/clearing them is protected by
  113. * fuse_conn->lock
  114. */
  115. /** True if the request has reply */
  116. unsigned isreply:1;
  117. /** The request was interrupted */
  118. unsigned interrupted:1;
  119. /** Request is sent in the background */
  120. unsigned background:1;
  121. /** Data is being copied to/from the request */
  122. unsigned locked:1;
  123. /** Request is counted as "waiting" */
  124. unsigned waiting:1;
  125. /** State of the request */
  126. enum fuse_req_state state;
  127. /** The request input */
  128. struct fuse_in in;
  129. /** The request output */
  130. struct fuse_out out;
  131. /** Used to wake up the task waiting for completion of request*/
  132. wait_queue_head_t waitq;
  133. /** Data for asynchronous requests */
  134. union {
  135. struct fuse_forget_in forget_in;
  136. struct fuse_release_in release_in;
  137. struct fuse_init_in init_in;
  138. struct fuse_init_out init_out;
  139. struct fuse_read_in read_in;
  140. } misc;
  141. /** page vector */
  142. struct page *pages[FUSE_MAX_PAGES_PER_REQ];
  143. /** number of pages in vector */
  144. unsigned num_pages;
  145. /** offset of data on first page */
  146. unsigned page_offset;
  147. /** Inode used in the request */
  148. struct inode *inode;
  149. /** Second inode used in the request (or NULL) */
  150. struct inode *inode2;
  151. /** File used in the request (or NULL) */
  152. struct file *file;
  153. /** Request completion callback */
  154. void (*end)(struct fuse_conn *, struct fuse_req *);
  155. };
  156. /**
  157. * A Fuse connection.
  158. *
  159. * This structure is created, when the filesystem is mounted, and is
  160. * destroyed, when the client device is closed and the filesystem is
  161. * unmounted.
  162. */
  163. struct fuse_conn {
  164. /** Lock protecting accessess to members of this structure */
  165. spinlock_t lock;
  166. /** The user id for this mount */
  167. uid_t user_id;
  168. /** The group id for this mount */
  169. gid_t group_id;
  170. /** The fuse mount flags for this mount */
  171. unsigned flags;
  172. /** Maximum read size */
  173. unsigned max_read;
  174. /** Maximum write size */
  175. unsigned max_write;
  176. /** Readers of the connection are waiting on this */
  177. wait_queue_head_t waitq;
  178. /** The list of pending requests */
  179. struct list_head pending;
  180. /** The list of requests being processed */
  181. struct list_head processing;
  182. /** The list of requests under I/O */
  183. struct list_head io;
  184. /** Requests put in the background (RELEASE or any other
  185. interrupted request) */
  186. struct list_head background;
  187. /** Number of requests currently in the background */
  188. unsigned num_background;
  189. /** Flag indicating if connection is blocked. This will be
  190. the case before the INIT reply is received, and if there
  191. are too many outstading backgrounds requests */
  192. int blocked;
  193. /** waitq for blocked connection */
  194. wait_queue_head_t blocked_waitq;
  195. /** The next unique request id */
  196. u64 reqctr;
  197. /** Connection established, cleared on umount, connection
  198. abort and device release */
  199. unsigned connected;
  200. /** Connection failed (version mismatch). Cannot race with
  201. setting other bitfields since it is only set once in INIT
  202. reply, before any other request, and never cleared */
  203. unsigned conn_error : 1;
  204. /** Do readpages asynchronously? Only set in INIT */
  205. unsigned async_read : 1;
  206. /*
  207. * The following bitfields are only for optimization purposes
  208. * and hence races in setting them will not cause malfunction
  209. */
  210. /** Is fsync not implemented by fs? */
  211. unsigned no_fsync : 1;
  212. /** Is fsyncdir not implemented by fs? */
  213. unsigned no_fsyncdir : 1;
  214. /** Is flush not implemented by fs? */
  215. unsigned no_flush : 1;
  216. /** Is setxattr not implemented by fs? */
  217. unsigned no_setxattr : 1;
  218. /** Is getxattr not implemented by fs? */
  219. unsigned no_getxattr : 1;
  220. /** Is listxattr not implemented by fs? */
  221. unsigned no_listxattr : 1;
  222. /** Is removexattr not implemented by fs? */
  223. unsigned no_removexattr : 1;
  224. /** Is access not implemented by fs? */
  225. unsigned no_access : 1;
  226. /** Is create not implemented by fs? */
  227. unsigned no_create : 1;
  228. /** The number of requests waiting for completion */
  229. atomic_t num_waiting;
  230. /** Negotiated minor version */
  231. unsigned minor;
  232. /** Backing dev info */
  233. struct backing_dev_info bdi;
  234. /** kobject */
  235. struct kobject kobj;
  236. /** O_ASYNC requests */
  237. struct fasync_struct *fasync;
  238. };
  239. static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb)
  240. {
  241. return sb->s_fs_info;
  242. }
  243. static inline struct fuse_conn *get_fuse_conn(struct inode *inode)
  244. {
  245. return get_fuse_conn_super(inode->i_sb);
  246. }
  247. static inline struct fuse_conn *get_fuse_conn_kobj(struct kobject *obj)
  248. {
  249. return container_of(obj, struct fuse_conn, kobj);
  250. }
  251. static inline struct fuse_inode *get_fuse_inode(struct inode *inode)
  252. {
  253. return container_of(inode, struct fuse_inode, inode);
  254. }
  255. static inline u64 get_node_id(struct inode *inode)
  256. {
  257. return get_fuse_inode(inode)->nodeid;
  258. }
  259. /** Device operations */
  260. extern const struct file_operations fuse_dev_operations;
  261. /**
  262. * Get a filled in inode
  263. */
  264. struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid,
  265. int generation, struct fuse_attr *attr);
  266. /**
  267. * Send FORGET command
  268. */
  269. void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
  270. unsigned long nodeid, u64 nlookup);
  271. /**
  272. * Initialize READ or READDIR request
  273. */
  274. void fuse_read_fill(struct fuse_req *req, struct file *file,
  275. struct inode *inode, loff_t pos, size_t count, int opcode);
  276. /**
  277. * Send OPEN or OPENDIR request
  278. */
  279. int fuse_open_common(struct inode *inode, struct file *file, int isdir);
  280. struct fuse_file *fuse_file_alloc(void);
  281. void fuse_file_free(struct fuse_file *ff);
  282. void fuse_finish_open(struct inode *inode, struct file *file,
  283. struct fuse_file *ff, struct fuse_open_out *outarg);
  284. /**
  285. * Send a RELEASE request
  286. */
  287. void fuse_send_release(struct fuse_conn *fc, struct fuse_file *ff,
  288. u64 nodeid, struct inode *inode, int flags, int isdir);
  289. /**
  290. * Send RELEASE or RELEASEDIR request
  291. */
  292. int fuse_release_common(struct inode *inode, struct file *file, int isdir);
  293. /**
  294. * Send FSYNC or FSYNCDIR request
  295. */
  296. int fuse_fsync_common(struct file *file, struct dentry *de, int datasync,
  297. int isdir);
  298. /**
  299. * Initialize file operations on a regular file
  300. */
  301. void fuse_init_file_inode(struct inode *inode);
  302. /**
  303. * Initialize inode operations on regular files and special files
  304. */
  305. void fuse_init_common(struct inode *inode);
  306. /**
  307. * Initialize inode and file operations on a directory
  308. */
  309. void fuse_init_dir(struct inode *inode);
  310. /**
  311. * Initialize inode operations on a symlink
  312. */
  313. void fuse_init_symlink(struct inode *inode);
  314. /**
  315. * Change attributes of an inode
  316. */
  317. void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr);
  318. /**
  319. * Initialize the client device
  320. */
  321. int fuse_dev_init(void);
  322. /**
  323. * Cleanup the client device
  324. */
  325. void fuse_dev_cleanup(void);
  326. /**
  327. * Allocate a request
  328. */
  329. struct fuse_req *fuse_request_alloc(void);
  330. /**
  331. * Free a request
  332. */
  333. void fuse_request_free(struct fuse_req *req);
  334. /**
  335. * Reinitialize a request, the preallocated flag is left unmodified
  336. */
  337. void fuse_reset_request(struct fuse_req *req);
  338. /**
  339. * Reserve a preallocated request
  340. */
  341. struct fuse_req *fuse_get_req(struct fuse_conn *fc);
  342. /**
  343. * Decrement reference count of a request. If count goes to zero free
  344. * the request.
  345. */
  346. void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req);
  347. /**
  348. * Send a request (synchronous)
  349. */
  350. void request_send(struct fuse_conn *fc, struct fuse_req *req);
  351. /**
  352. * Send a request with no reply
  353. */
  354. void request_send_noreply(struct fuse_conn *fc, struct fuse_req *req);
  355. /**
  356. * Send a request in the background
  357. */
  358. void request_send_background(struct fuse_conn *fc, struct fuse_req *req);
  359. /**
  360. * Remove request from the the background list
  361. */
  362. void fuse_remove_background(struct fuse_conn *fc, struct fuse_req *req);
  363. /** Abort all requests */
  364. void fuse_abort_conn(struct fuse_conn *fc);
  365. /**
  366. * Get the attributes of a file
  367. */
  368. int fuse_do_getattr(struct inode *inode);
  369. /**
  370. * Invalidate inode attributes
  371. */
  372. void fuse_invalidate_attr(struct inode *inode);