client.h 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. /*
  2. * include/net/9p/client.h
  3. *
  4. * 9P Client Definitions
  5. *
  6. * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
  7. * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to:
  20. * Free Software Foundation
  21. * 51 Franklin Street, Fifth Floor
  22. * Boston, MA 02111-1301 USA
  23. *
  24. */
  25. #ifndef NET_9P_CLIENT_H
  26. #define NET_9P_CLIENT_H
  27. #include <linux/utsname.h>
  28. /* Number of requests per row */
  29. #define P9_ROW_MAXTAG 255
  30. /** enum p9_proto_versions - 9P protocol versions
  31. * @p9_proto_legacy: 9P Legacy mode, pre-9P2000.u
  32. * @p9_proto_2000u: 9P2000.u extension
  33. * @p9_proto_2000L: 9P2000.L extension
  34. */
  35. enum p9_proto_versions{
  36. p9_proto_legacy,
  37. p9_proto_2000u,
  38. p9_proto_2000L,
  39. };
  40. /**
  41. * enum p9_trans_status - different states of underlying transports
  42. * @Connected: transport is connected and healthy
  43. * @Disconnected: transport has been disconnected
  44. * @Hung: transport is connected by wedged
  45. *
  46. * This enumeration details the various states a transport
  47. * instatiation can be in.
  48. */
  49. enum p9_trans_status {
  50. Connected,
  51. BeginDisconnect,
  52. Disconnected,
  53. Hung,
  54. };
  55. /**
  56. * enum p9_req_status_t - status of a request
  57. * @REQ_STATUS_IDLE: request slot unused
  58. * @REQ_STATUS_ALLOC: request has been allocated but not sent
  59. * @REQ_STATUS_UNSENT: request waiting to be sent
  60. * @REQ_STATUS_SENT: request sent to server
  61. * @REQ_STATUS_RCVD: response received from server
  62. * @REQ_STATUS_FLSHD: request has been flushed
  63. * @REQ_STATUS_ERROR: request encountered an error on the client side
  64. *
  65. * The @REQ_STATUS_IDLE state is used to mark a request slot as unused
  66. * but use is actually tracked by the idpool structure which handles tag
  67. * id allocation.
  68. *
  69. */
  70. enum p9_req_status_t {
  71. REQ_STATUS_IDLE,
  72. REQ_STATUS_ALLOC,
  73. REQ_STATUS_UNSENT,
  74. REQ_STATUS_SENT,
  75. REQ_STATUS_RCVD,
  76. REQ_STATUS_FLSHD,
  77. REQ_STATUS_ERROR,
  78. };
  79. /**
  80. * struct p9_req_t - request slots
  81. * @status: status of this request slot
  82. * @t_err: transport error
  83. * @flush_tag: tag of request being flushed (for flush requests)
  84. * @wq: wait_queue for the client to block on for this request
  85. * @tc: the request fcall structure
  86. * @rc: the response fcall structure
  87. * @aux: transport specific data (provided for trans_fd migration)
  88. * @req_list: link for higher level objects to chain requests
  89. *
  90. * Transport use an array to track outstanding requests
  91. * instead of a list. While this may incurr overhead during initial
  92. * allocation or expansion, it makes request lookup much easier as the
  93. * tag id is a index into an array. (We use tag+1 so that we can accommodate
  94. * the -1 tag for the T_VERSION request).
  95. * This also has the nice effect of only having to allocate wait_queues
  96. * once, instead of constantly allocating and freeing them. Its possible
  97. * other resources could benefit from this scheme as well.
  98. *
  99. */
  100. struct p9_req_t {
  101. int status;
  102. int t_err;
  103. wait_queue_head_t *wq;
  104. struct p9_fcall *tc;
  105. struct p9_fcall *rc;
  106. void *aux;
  107. struct list_head req_list;
  108. };
  109. /**
  110. * struct p9_client - per client instance state
  111. * @lock: protect @fidlist
  112. * @msize: maximum data size negotiated by protocol
  113. * @dotu: extension flags negotiated by protocol
  114. * @proto_version: 9P protocol version to use
  115. * @trans_mod: module API instantiated with this client
  116. * @trans: tranport instance state and API
  117. * @fidpool: fid handle accounting for session
  118. * @fidlist: List of active fid handles
  119. * @tagpool - transaction id accounting for session
  120. * @reqs - 2D array of requests
  121. * @max_tag - current maximum tag id allocated
  122. * @name - node name used as client id
  123. *
  124. * The client structure is used to keep track of various per-client
  125. * state that has been instantiated.
  126. * In order to minimize per-transaction overhead we use a
  127. * simple array to lookup requests instead of a hash table
  128. * or linked list. In order to support larger number of
  129. * transactions, we make this a 2D array, allocating new rows
  130. * when we need to grow the total number of the transactions.
  131. *
  132. * Each row is 256 requests and we'll support up to 256 rows for
  133. * a total of 64k concurrent requests per session.
  134. *
  135. * Bugs: duplicated data and potentially unnecessary elements.
  136. */
  137. struct p9_client {
  138. spinlock_t lock; /* protect client structure */
  139. unsigned int msize;
  140. unsigned char proto_version;
  141. struct p9_trans_module *trans_mod;
  142. enum p9_trans_status status;
  143. void *trans;
  144. struct p9_idpool *fidpool;
  145. struct list_head fidlist;
  146. struct p9_idpool *tagpool;
  147. struct p9_req_t *reqs[P9_ROW_MAXTAG];
  148. int max_tag;
  149. char name[__NEW_UTS_LEN + 1];
  150. };
  151. /**
  152. * struct p9_fid - file system entity handle
  153. * @clnt: back pointer to instantiating &p9_client
  154. * @fid: numeric identifier for this handle
  155. * @mode: current mode of this fid (enum?)
  156. * @qid: the &p9_qid server identifier this handle points to
  157. * @iounit: the server reported maximum transaction size for this file
  158. * @uid: the numeric uid of the local user who owns this handle
  159. * @rdir: readdir accounting structure (allocated on demand)
  160. * @flist: per-client-instance fid tracking
  161. * @dlist: per-dentry fid tracking
  162. *
  163. * TODO: This needs lots of explanation.
  164. */
  165. struct p9_fid {
  166. struct p9_client *clnt;
  167. u32 fid;
  168. int mode;
  169. struct p9_qid qid;
  170. u32 iounit;
  171. kuid_t uid;
  172. void *rdir;
  173. struct list_head flist;
  174. struct hlist_node dlist; /* list of all fids attached to a dentry */
  175. };
  176. /**
  177. * struct p9_dirent - directory entry structure
  178. * @qid: The p9 server qid for this dirent
  179. * @d_off: offset to the next dirent
  180. * @d_type: type of file
  181. * @d_name: file name
  182. */
  183. struct p9_dirent {
  184. struct p9_qid qid;
  185. u64 d_off;
  186. unsigned char d_type;
  187. char d_name[256];
  188. };
  189. struct iov_iter;
  190. int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb);
  191. int p9_client_rename(struct p9_fid *fid, struct p9_fid *newdirfid,
  192. const char *name);
  193. int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
  194. struct p9_fid *newdirfid, const char *new_name);
  195. struct p9_client *p9_client_create(const char *dev_name, char *options);
  196. void p9_client_destroy(struct p9_client *clnt);
  197. void p9_client_disconnect(struct p9_client *clnt);
  198. void p9_client_begin_disconnect(struct p9_client *clnt);
  199. struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
  200. char *uname, kuid_t n_uname, char *aname);
  201. struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
  202. char **wnames, int clone);
  203. int p9_client_open(struct p9_fid *fid, int mode);
  204. int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
  205. char *extension);
  206. int p9_client_link(struct p9_fid *fid, struct p9_fid *oldfid, char *newname);
  207. int p9_client_symlink(struct p9_fid *fid, char *name, char *symname, kgid_t gid,
  208. struct p9_qid *qid);
  209. int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
  210. kgid_t gid, struct p9_qid *qid);
  211. int p9_client_clunk(struct p9_fid *fid);
  212. int p9_client_fsync(struct p9_fid *fid, int datasync);
  213. int p9_client_remove(struct p9_fid *fid);
  214. int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags);
  215. int p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err);
  216. int p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err);
  217. int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset);
  218. int p9dirent_read(struct p9_client *clnt, char *buf, int len,
  219. struct p9_dirent *dirent);
  220. struct p9_wstat *p9_client_stat(struct p9_fid *fid);
  221. int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst);
  222. int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *attr);
  223. struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
  224. u64 request_mask);
  225. int p9_client_mknod_dotl(struct p9_fid *oldfid, char *name, int mode,
  226. dev_t rdev, kgid_t gid, struct p9_qid *);
  227. int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode,
  228. kgid_t gid, struct p9_qid *);
  229. int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status);
  230. int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *fl);
  231. struct p9_req_t *p9_tag_lookup(struct p9_client *, u16);
  232. void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status);
  233. int p9_parse_header(struct p9_fcall *, int32_t *, int8_t *, int16_t *, int);
  234. int p9stat_read(struct p9_client *, char *, int, struct p9_wstat *);
  235. void p9stat_free(struct p9_wstat *);
  236. int p9_is_proto_dotu(struct p9_client *clnt);
  237. int p9_is_proto_dotl(struct p9_client *clnt);
  238. struct p9_fid *p9_client_xattrwalk(struct p9_fid *, const char *, u64 *);
  239. int p9_client_xattrcreate(struct p9_fid *, const char *, u64, int);
  240. int p9_client_readlink(struct p9_fid *fid, char **target);
  241. #endif /* NET_9P_CLIENT_H */