diff options
Diffstat (limited to 'include/net/9p/client.h')
-rw-r--r-- | include/net/9p/client.h | 124 |
1 files changed, 110 insertions, 14 deletions
diff --git a/include/net/9p/client.h b/include/net/9p/client.h index c936dd14de41..1f17f3d93727 100644 --- a/include/net/9p/client.h +++ b/include/net/9p/client.h | |||
@@ -26,6 +26,87 @@ | |||
26 | #ifndef NET_9P_CLIENT_H | 26 | #ifndef NET_9P_CLIENT_H |
27 | #define NET_9P_CLIENT_H | 27 | #define NET_9P_CLIENT_H |
28 | 28 | ||
29 | /* Number of requests per row */ | ||
30 | #define P9_ROW_MAXTAG 255 | ||
31 | |||
32 | /** | ||
33 | * enum p9_trans_status - different states of underlying transports | ||
34 | * @Connected: transport is connected and healthy | ||
35 | * @Disconnected: transport has been disconnected | ||
36 | * @Hung: transport is connected by wedged | ||
37 | * | ||
38 | * This enumeration details the various states a transport | ||
39 | * instatiation can be in. | ||
40 | */ | ||
41 | |||
42 | enum p9_trans_status { | ||
43 | Connected, | ||
44 | Disconnected, | ||
45 | Hung, | ||
46 | }; | ||
47 | |||
48 | /** | ||
49 | * enum p9_req_status_t - virtio request status | ||
50 | * @REQ_STATUS_IDLE: request slot unused | ||
51 | * @REQ_STATUS_ALLOC: request has been allocated but not sent | ||
52 | * @REQ_STATUS_UNSENT: request waiting to be sent | ||
53 | * @REQ_STATUS_SENT: request sent to server | ||
54 | * @REQ_STATUS_FLSH: a flush has been sent for this request | ||
55 | * @REQ_STATUS_RCVD: response received from server | ||
56 | * @REQ_STATUS_FLSHD: request has been flushed | ||
57 | * @REQ_STATUS_ERROR: request encountered an error on the client side | ||
58 | * | ||
59 | * The @REQ_STATUS_IDLE state is used to mark a request slot as unused | ||
60 | * but use is actually tracked by the idpool structure which handles tag | ||
61 | * id allocation. | ||
62 | * | ||
63 | */ | ||
64 | |||
65 | enum p9_req_status_t { | ||
66 | REQ_STATUS_IDLE, | ||
67 | REQ_STATUS_ALLOC, | ||
68 | REQ_STATUS_UNSENT, | ||
69 | REQ_STATUS_SENT, | ||
70 | REQ_STATUS_FLSH, | ||
71 | REQ_STATUS_RCVD, | ||
72 | REQ_STATUS_FLSHD, | ||
73 | REQ_STATUS_ERROR, | ||
74 | }; | ||
75 | |||
76 | /** | ||
77 | * struct p9_req_t - request slots | ||
78 | * @status: status of this request slot | ||
79 | * @t_err: transport error | ||
80 | * @flush_tag: tag of request being flushed (for flush requests) | ||
81 | * @wq: wait_queue for the client to block on for this request | ||
82 | * @tc: the request fcall structure | ||
83 | * @rc: the response fcall structure | ||
84 | * @aux: transport specific data (provided for trans_fd migration) | ||
85 | * @req_list: link for higher level objects to chain requests | ||
86 | * | ||
87 | * Transport use an array to track outstanding requests | ||
88 | * instead of a list. While this may incurr overhead during initial | ||
89 | * allocation or expansion, it makes request lookup much easier as the | ||
90 | * tag id is a index into an array. (We use tag+1 so that we can accomodate | ||
91 | * the -1 tag for the T_VERSION request). | ||
92 | * This also has the nice effect of only having to allocate wait_queues | ||
93 | * once, instead of constantly allocating and freeing them. Its possible | ||
94 | * other resources could benefit from this scheme as well. | ||
95 | * | ||
96 | */ | ||
97 | |||
98 | struct p9_req_t { | ||
99 | int status; | ||
100 | int t_err; | ||
101 | u16 flush_tag; | ||
102 | wait_queue_head_t *wq; | ||
103 | struct p9_fcall *tc; | ||
104 | struct p9_fcall *rc; | ||
105 | void *aux; | ||
106 | |||
107 | struct list_head req_list; | ||
108 | }; | ||
109 | |||
29 | /** | 110 | /** |
30 | * struct p9_client - per client instance state | 111 | * struct p9_client - per client instance state |
31 | * @lock: protect @fidlist | 112 | * @lock: protect @fidlist |
@@ -36,9 +117,20 @@ | |||
36 | * @conn: connection state information used by trans_fd | 117 | * @conn: connection state information used by trans_fd |
37 | * @fidpool: fid handle accounting for session | 118 | * @fidpool: fid handle accounting for session |
38 | * @fidlist: List of active fid handles | 119 | * @fidlist: List of active fid handles |
120 | * @tagpool - transaction id accounting for session | ||
121 | * @reqs - 2D array of requests | ||
122 | * @max_tag - current maximum tag id allocated | ||
39 | * | 123 | * |
40 | * The client structure is used to keep track of various per-client | 124 | * The client structure is used to keep track of various per-client |
41 | * state that has been instantiated. | 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. | ||
42 | * | 134 | * |
43 | * Bugs: duplicated data and potentially unnecessary elements. | 135 | * Bugs: duplicated data and potentially unnecessary elements. |
44 | */ | 136 | */ |
@@ -48,11 +140,16 @@ struct p9_client { | |||
48 | int msize; | 140 | int msize; |
49 | unsigned char dotu; | 141 | unsigned char dotu; |
50 | struct p9_trans_module *trans_mod; | 142 | struct p9_trans_module *trans_mod; |
51 | struct p9_trans *trans; | 143 | enum p9_trans_status status; |
144 | void *trans; | ||
52 | struct p9_conn *conn; | 145 | struct p9_conn *conn; |
53 | 146 | ||
54 | struct p9_idpool *fidpool; | 147 | struct p9_idpool *fidpool; |
55 | struct list_head fidlist; | 148 | struct list_head fidlist; |
149 | |||
150 | struct p9_idpool *tagpool; | ||
151 | struct p9_req_t *reqs[P9_ROW_MAXTAG]; | ||
152 | int max_tag; | ||
56 | }; | 153 | }; |
57 | 154 | ||
58 | /** | 155 | /** |
@@ -65,8 +162,6 @@ struct p9_client { | |||
65 | * @uid: the numeric uid of the local user who owns this handle | 162 | * @uid: the numeric uid of the local user who owns this handle |
66 | * @aux: transport specific information (unused?) | 163 | * @aux: transport specific information (unused?) |
67 | * @rdir_fpos: tracks offset of file position when reading directory contents | 164 | * @rdir_fpos: tracks offset of file position when reading directory contents |
68 | * @rdir_pos: (unused?) | ||
69 | * @rdir_fcall: holds response of last directory read request | ||
70 | * @flist: per-client-instance fid tracking | 165 | * @flist: per-client-instance fid tracking |
71 | * @dlist: per-dentry fid tracking | 166 | * @dlist: per-dentry fid tracking |
72 | * | 167 | * |
@@ -83,8 +178,6 @@ struct p9_fid { | |||
83 | void *aux; | 178 | void *aux; |
84 | 179 | ||
85 | int rdir_fpos; | 180 | int rdir_fpos; |
86 | int rdir_pos; | ||
87 | struct p9_fcall *rdir_fcall; | ||
88 | struct list_head flist; | 181 | struct list_head flist; |
89 | struct list_head dlist; /* list of all fids attached to a dentry */ | 182 | struct list_head dlist; /* list of all fids attached to a dentry */ |
90 | }; | 183 | }; |
@@ -103,15 +196,18 @@ int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode, | |||
103 | char *extension); | 196 | char *extension); |
104 | int p9_client_clunk(struct p9_fid *fid); | 197 | int p9_client_clunk(struct p9_fid *fid); |
105 | int p9_client_remove(struct p9_fid *fid); | 198 | int p9_client_remove(struct p9_fid *fid); |
106 | int p9_client_read(struct p9_fid *fid, char *data, u64 offset, u32 count); | 199 | int p9_client_read(struct p9_fid *fid, char *data, char __user *udata, |
107 | int p9_client_readn(struct p9_fid *fid, char *data, u64 offset, u32 count); | 200 | u64 offset, u32 count); |
108 | int p9_client_write(struct p9_fid *fid, char *data, u64 offset, u32 count); | 201 | int p9_client_write(struct p9_fid *fid, char *data, const char __user *udata, |
109 | int p9_client_uread(struct p9_fid *fid, char __user *data, u64 offset, | 202 | u64 offset, u32 count); |
110 | u32 count); | 203 | struct p9_wstat *p9_client_stat(struct p9_fid *fid); |
111 | int p9_client_uwrite(struct p9_fid *fid, const char __user *data, u64 offset, | ||
112 | u32 count); | ||
113 | struct p9_stat *p9_client_stat(struct p9_fid *fid); | ||
114 | int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst); | 204 | int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst); |
115 | struct p9_stat *p9_client_dirread(struct p9_fid *fid, u64 offset); | 205 | |
206 | struct p9_req_t *p9_tag_lookup(struct p9_client *, u16); | ||
207 | void p9_client_cb(struct p9_client *c, struct p9_req_t *req); | ||
208 | |||
209 | int p9stat_read(char *, int, struct p9_wstat *, int); | ||
210 | void p9stat_free(struct p9_wstat *); | ||
211 | |||
116 | 212 | ||
117 | #endif /* NET_9P_CLIENT_H */ | 213 | #endif /* NET_9P_CLIENT_H */ |