client.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  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. #include <linux/idr.h>
  29. /* Number of requests per row */
  30. #define P9_ROW_MAXTAG 255
  31. /** enum p9_proto_versions - 9P protocol versions
  32. * @p9_proto_legacy: 9P Legacy mode, pre-9P2000.u
  33. * @p9_proto_2000u: 9P2000.u extension
  34. * @p9_proto_2000L: 9P2000.L extension
  35. */
  36. enum p9_proto_versions{
  37. p9_proto_legacy,
  38. p9_proto_2000u,
  39. p9_proto_2000L,
  40. };
  41. /**
  42. * enum p9_trans_status - different states of underlying transports
  43. * @Connected: transport is connected and healthy
  44. * @Disconnected: transport has been disconnected
  45. * @Hung: transport is connected by wedged
  46. *
  47. * This enumeration details the various states a transport
  48. * instatiation can be in.
  49. */
  50. enum p9_trans_status {
  51. Connected,
  52. BeginDisconnect,
  53. Disconnected,
  54. Hung,
  55. };
  56. /**
  57. * enum p9_req_status_t - status of a request
  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. enum p9_req_status_t {
  66. REQ_STATUS_ALLOC,
  67. REQ_STATUS_UNSENT,
  68. REQ_STATUS_SENT,
  69. REQ_STATUS_RCVD,
  70. REQ_STATUS_FLSHD,
  71. REQ_STATUS_ERROR,
  72. };
  73. /**
  74. * struct p9_req_t - request slots
  75. * @status: status of this request slot
  76. * @t_err: transport error
  77. * @wq: wait_queue for the client to block on for this request
  78. * @tc: the request fcall structure
  79. * @rc: the response fcall structure
  80. * @aux: transport specific data (provided for trans_fd migration)
  81. * @req_list: link for higher level objects to chain requests
  82. */
  83. struct p9_req_t {
  84. int status;
  85. int t_err;
  86. struct kref refcount;
  87. wait_queue_head_t wq;
  88. struct p9_fcall tc;
  89. struct p9_fcall rc;
  90. void *aux;
  91. struct list_head req_list;
  92. };
  93. /**
  94. * struct p9_client - per client instance state
  95. * @lock: protect @fids and @reqs
  96. * @msize: maximum data size negotiated by protocol
  97. * @proto_version: 9P protocol version to use
  98. * @trans_mod: module API instantiated with this client
  99. * @status: connection state
  100. * @trans: tranport instance state and API
  101. * @fids: All active FID handles
  102. * @reqs: All active requests.
  103. * @name: node name used as client id
  104. *
  105. * The client structure is used to keep track of various per-client
  106. * state that has been instantiated.
  107. */
  108. struct p9_client {
  109. spinlock_t lock;
  110. unsigned int msize;
  111. unsigned char proto_version;
  112. struct p9_trans_module *trans_mod;
  113. enum p9_trans_status status;
  114. void *trans;
  115. struct kmem_cache *fcall_cache;
  116. union {
  117. struct {
  118. int rfd;
  119. int wfd;
  120. } fd;
  121. struct {
  122. u16 port;
  123. bool privport;
  124. } tcp;
  125. } trans_opts;
  126. struct idr fids;
  127. struct idr reqs;
  128. char name[__NEW_UTS_LEN + 1];
  129. };
  130. /**
  131. * struct p9_fid - file system entity handle
  132. * @clnt: back pointer to instantiating &p9_client
  133. * @fid: numeric identifier for this handle
  134. * @mode: current mode of this fid (enum?)
  135. * @qid: the &p9_qid server identifier this handle points to
  136. * @iounit: the server reported maximum transaction size for this file
  137. * @uid: the numeric uid of the local user who owns this handle
  138. * @rdir: readdir accounting structure (allocated on demand)
  139. * @dlist: per-dentry fid tracking
  140. *
  141. * TODO: This needs lots of explanation.
  142. */
  143. struct p9_fid {
  144. struct p9_client *clnt;
  145. u32 fid;
  146. int mode;
  147. struct p9_qid qid;
  148. u32 iounit;
  149. kuid_t uid;
  150. void *rdir;
  151. struct hlist_node dlist; /* list of all fids attached to a dentry */
  152. };
  153. /**
  154. * struct p9_dirent - directory entry structure
  155. * @qid: The p9 server qid for this dirent
  156. * @d_off: offset to the next dirent
  157. * @d_type: type of file
  158. * @d_name: file name
  159. */
  160. struct p9_dirent {
  161. struct p9_qid qid;
  162. u64 d_off;
  163. unsigned char d_type;
  164. char d_name[256];
  165. };
  166. struct iov_iter;
  167. int p9_show_client_options(struct seq_file *m, struct p9_client *clnt);
  168. int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb);
  169. int p9_client_rename(struct p9_fid *fid, struct p9_fid *newdirfid,
  170. const char *name);
  171. int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
  172. struct p9_fid *newdirfid, const char *new_name);
  173. struct p9_client *p9_client_create(const char *dev_name, char *options);
  174. void p9_client_destroy(struct p9_client *clnt);
  175. void p9_client_disconnect(struct p9_client *clnt);
  176. void p9_client_begin_disconnect(struct p9_client *clnt);
  177. struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
  178. const char *uname, kuid_t n_uname, const char *aname);
  179. struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
  180. const unsigned char * const *wnames, int clone);
  181. int p9_client_open(struct p9_fid *fid, int mode);
  182. int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
  183. char *extension);
  184. int p9_client_link(struct p9_fid *fid, struct p9_fid *oldfid, const char *newname);
  185. int p9_client_symlink(struct p9_fid *fid, const char *name, const char *symname,
  186. kgid_t gid, struct p9_qid *qid);
  187. int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
  188. kgid_t gid, struct p9_qid *qid);
  189. int p9_client_clunk(struct p9_fid *fid);
  190. int p9_client_fsync(struct p9_fid *fid, int datasync);
  191. int p9_client_remove(struct p9_fid *fid);
  192. int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags);
  193. int p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err);
  194. int p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err);
  195. int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset);
  196. int p9dirent_read(struct p9_client *clnt, char *buf, int len,
  197. struct p9_dirent *dirent);
  198. struct p9_wstat *p9_client_stat(struct p9_fid *fid);
  199. int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst);
  200. int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *attr);
  201. struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
  202. u64 request_mask);
  203. int p9_client_mknod_dotl(struct p9_fid *oldfid, const char *name, int mode,
  204. dev_t rdev, kgid_t gid, struct p9_qid *);
  205. int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
  206. kgid_t gid, struct p9_qid *);
  207. int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status);
  208. int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *fl);
  209. void p9_fcall_fini(struct p9_fcall *fc);
  210. struct p9_req_t *p9_tag_lookup(struct p9_client *, u16);
  211. static inline void p9_req_get(struct p9_req_t *r)
  212. {
  213. kref_get(&r->refcount);
  214. }
  215. static inline int p9_req_try_get(struct p9_req_t *r)
  216. {
  217. return kref_get_unless_zero(&r->refcount);
  218. }
  219. int p9_req_put(struct p9_req_t *r);
  220. void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status);
  221. int p9_parse_header(struct p9_fcall *, int32_t *, int8_t *, int16_t *, int);
  222. int p9stat_read(struct p9_client *, char *, int, struct p9_wstat *);
  223. void p9stat_free(struct p9_wstat *);
  224. int p9_is_proto_dotu(struct p9_client *clnt);
  225. int p9_is_proto_dotl(struct p9_client *clnt);
  226. struct p9_fid *p9_client_xattrwalk(struct p9_fid *, const char *, u64 *);
  227. int p9_client_xattrcreate(struct p9_fid *, const char *, u64, int);
  228. int p9_client_readlink(struct p9_fid *fid, char **target);
  229. int p9_client_init(void);
  230. void p9_client_exit(void);
  231. #endif /* NET_9P_CLIENT_H */