blob: c6b97e58cf8455c120c486192e9d38eb9834343a [file] [log] [blame]
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001/*
2 * include/net/9p/client.h
3 *
4 * 9P Client Definitions
5 *
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06006 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05007 * 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
26#ifndef NET_9P_CLIENT_H
27#define NET_9P_CLIENT_H
28
Will Deacon50192ab2013-08-21 18:24:47 +010029#include <linux/utsname.h>
30
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050031/* Number of requests per row */
32#define P9_ROW_MAXTAG 255
33
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000034/** enum p9_proto_versions - 9P protocol versions
35 * @p9_proto_legacy: 9P Legacy mode, pre-9P2000.u
36 * @p9_proto_2000u: 9P2000.u extension
Sripathi Kodi45bc21e2010-03-08 17:33:04 +000037 * @p9_proto_2000L: 9P2000.L extension
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000038 */
39
40enum p9_proto_versions{
Prem Karat4d630552011-05-06 18:35:32 +053041 p9_proto_legacy,
42 p9_proto_2000u,
43 p9_proto_2000L,
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000044};
45
46
Eric Van Hensbergenee443992008-03-05 07:08:09 -060047/**
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050048 * enum p9_trans_status - different states of underlying transports
49 * @Connected: transport is connected and healthy
50 * @Disconnected: transport has been disconnected
51 * @Hung: transport is connected by wedged
52 *
53 * This enumeration details the various states a transport
54 * instatiation can be in.
55 */
56
57enum p9_trans_status {
58 Connected,
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -050059 BeginDisconnect,
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050060 Disconnected,
61 Hung,
62};
63
64/**
Rob Landleyaca00762011-05-08 18:46:38 +000065 * enum p9_req_status_t - status of a request
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050066 * @REQ_STATUS_IDLE: request slot unused
67 * @REQ_STATUS_ALLOC: request has been allocated but not sent
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -050068 * @REQ_STATUS_UNSENT: request waiting to be sent
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050069 * @REQ_STATUS_SENT: request sent to server
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050070 * @REQ_STATUS_RCVD: response received from server
71 * @REQ_STATUS_FLSHD: request has been flushed
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -050072 * @REQ_STATUS_ERROR: request encountered an error on the client side
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050073 *
74 * The @REQ_STATUS_IDLE state is used to mark a request slot as unused
75 * but use is actually tracked by the idpool structure which handles tag
76 * id allocation.
77 *
78 */
79
80enum p9_req_status_t {
81 REQ_STATUS_IDLE,
82 REQ_STATUS_ALLOC,
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -050083 REQ_STATUS_UNSENT,
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050084 REQ_STATUS_SENT,
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050085 REQ_STATUS_RCVD,
86 REQ_STATUS_FLSHD,
87 REQ_STATUS_ERROR,
88};
89
90/**
91 * struct p9_req_t - request slots
92 * @status: status of this request slot
93 * @t_err: transport error
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -050094 * @flush_tag: tag of request being flushed (for flush requests)
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050095 * @wq: wait_queue for the client to block on for this request
96 * @tc: the request fcall structure
97 * @rc: the response fcall structure
98 * @aux: transport specific data (provided for trans_fd migration)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -050099 * @req_list: link for higher level objects to chain requests
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500100 *
101 * Transport use an array to track outstanding requests
102 * instead of a list. While this may incurr overhead during initial
103 * allocation or expansion, it makes request lookup much easier as the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300104 * tag id is a index into an array. (We use tag+1 so that we can accommodate
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500105 * the -1 tag for the T_VERSION request).
106 * This also has the nice effect of only having to allocate wait_queues
107 * once, instead of constantly allocating and freeing them. Its possible
108 * other resources could benefit from this scheme as well.
109 *
110 */
111
112struct p9_req_t {
113 int status;
114 int t_err;
115 wait_queue_head_t *wq;
116 struct p9_fcall *tc;
117 struct p9_fcall *rc;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500118 void *aux;
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500119
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500120 struct list_head req_list;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500121};
122
123/**
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600124 * struct p9_client - per client instance state
125 * @lock: protect @fidlist
126 * @msize: maximum data size negotiated by protocol
127 * @dotu: extension flags negotiated by protocol
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000128 * @proto_version: 9P protocol version to use
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600129 * @trans_mod: module API instantiated with this client
130 * @trans: tranport instance state and API
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600131 * @fidpool: fid handle accounting for session
132 * @fidlist: List of active fid handles
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500133 * @tagpool - transaction id accounting for session
134 * @reqs - 2D array of requests
135 * @max_tag - current maximum tag id allocated
Will Deacon50192ab2013-08-21 18:24:47 +0100136 * @name - node name used as client id
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600137 *
138 * The client structure is used to keep track of various per-client
139 * state that has been instantiated.
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500140 * In order to minimize per-transaction overhead we use a
141 * simple array to lookup requests instead of a hash table
142 * or linked list. In order to support larger number of
143 * transactions, we make this a 2D array, allocating new rows
144 * when we need to grow the total number of the transactions.
145 *
146 * Each row is 256 requests and we'll support up to 256 rows for
147 * a total of 64k concurrent requests per session.
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600148 *
149 * Bugs: duplicated data and potentially unnecessary elements.
150 */
151
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500152struct p9_client {
153 spinlock_t lock; /* protect client structure */
Dan Carpenteref6b0802011-08-26 19:57:40 +0300154 unsigned int msize;
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000155 unsigned char proto_version;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600156 struct p9_trans_module *trans_mod;
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500157 enum p9_trans_status status;
158 void *trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500159
160 struct p9_idpool *fidpool;
161 struct list_head fidlist;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500162
163 struct p9_idpool *tagpool;
164 struct p9_req_t *reqs[P9_ROW_MAXTAG];
165 int max_tag;
Will Deacon50192ab2013-08-21 18:24:47 +0100166
167 char name[__NEW_UTS_LEN + 1];
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500168};
169
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600170/**
171 * struct p9_fid - file system entity handle
172 * @clnt: back pointer to instantiating &p9_client
173 * @fid: numeric identifier for this handle
174 * @mode: current mode of this fid (enum?)
175 * @qid: the &p9_qid server identifier this handle points to
176 * @iounit: the server reported maximum transaction size for this file
177 * @uid: the numeric uid of the local user who owns this handle
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600178 * @rdir: readdir accounting structure (allocated on demand)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600179 * @flist: per-client-instance fid tracking
180 * @dlist: per-dentry fid tracking
181 *
182 * TODO: This needs lots of explanation.
183 */
184
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500185struct p9_fid {
186 struct p9_client *clnt;
187 u32 fid;
188 int mode;
189 struct p9_qid qid;
190 u32 iounit;
Eric W. Biedermanb4642552013-01-30 11:48:53 -0800191 kuid_t uid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500192
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600193 void *rdir;
194
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500195 struct list_head flist;
Al Viroc4d30962013-02-27 22:51:08 -0500196 struct hlist_node dlist; /* list of all fids attached to a dentry */
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500197};
198
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000199/**
200 * struct p9_dirent - directory entry structure
201 * @qid: The p9 server qid for this dirent
202 * @d_off: offset to the next dirent
203 * @d_type: type of file
204 * @d_name: file name
205 */
206
207struct p9_dirent {
208 struct p9_qid qid;
209 u64 d_off;
210 unsigned char d_type;
211 char d_name[256];
212};
213
Al Viro070b3652015-04-01 20:17:51 -0400214struct iov_iter;
215
Sripathi Kodibda8e772010-03-25 12:45:30 +0000216int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb);
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +0530217int p9_client_rename(struct p9_fid *fid, struct p9_fid *newdirfid,
218 const char *name);
219int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
220 struct p9_fid *newdirfid, const char *new_name);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600221struct p9_client *p9_client_create(const char *dev_name, char *options);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500222void p9_client_destroy(struct p9_client *clnt);
223void p9_client_disconnect(struct p9_client *clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -0500224void p9_client_begin_disconnect(struct p9_client *clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500225struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -0800226 char *uname, kuid_t n_uname, char *aname);
Harsh Prateek Borab76225e2011-03-31 15:49:39 +0530227struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
228 char **wnames, int clone);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500229int p9_client_open(struct p9_fid *fid, int mode);
230int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
231 char *extension);
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -0700232int p9_client_link(struct p9_fid *fid, struct p9_fid *oldfid, char *newname);
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -0800233int p9_client_symlink(struct p9_fid *fid, char *name, char *symname, kgid_t gid,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -0700234 struct p9_qid *qid);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -0700235int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -0800236 kgid_t gid, struct p9_qid *qid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500237int p9_client_clunk(struct p9_fid *fid);
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -0700238int p9_client_fsync(struct p9_fid *fid, int datasync);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500239int p9_client_remove(struct p9_fid *fid);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530240int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags);
Al Viroe1200fe62015-04-01 23:42:28 -0400241int p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err);
Al Viro070b3652015-04-01 20:17:51 -0400242int p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000243int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530244int p9dirent_read(struct p9_client *clnt, char *buf, int len,
245 struct p9_dirent *dirent);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500246struct p9_wstat *p9_client_stat(struct p9_fid *fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500247int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst);
Sripathi Kodi87d78452010-06-18 11:50:10 +0530248int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *attr);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500249
Sripathi Kodif0853122010-07-12 20:07:23 +0530250struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
251 u64 request_mask);
252
M. Mohan Kumar4b435162010-06-16 14:27:01 +0530253int p9_client_mknod_dotl(struct p9_fid *oldfid, char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -0800254 dev_t rdev, kgid_t gid, struct p9_qid *);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +0530255int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -0800256 kgid_t gid, struct p9_qid *);
M. Mohan Kumara0990272010-09-27 11:34:24 +0530257int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530258int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *fl);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500259struct p9_req_t *p9_tag_lookup(struct p9_client *, u16);
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100260void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500261
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500262int p9_parse_header(struct p9_fcall *, int32_t *, int8_t *, int16_t *, int);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530263int p9stat_read(struct p9_client *, char *, int, struct p9_wstat *);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500264void p9stat_free(struct p9_wstat *);
265
Sripathi Kodi342fee12010-03-05 18:50:14 +0000266int p9_is_proto_dotu(struct p9_client *clnt);
267int p9_is_proto_dotl(struct p9_client *clnt);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +0530268struct p9_fid *p9_client_xattrwalk(struct p9_fid *, const char *, u64 *);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +0530269int p9_client_xattrcreate(struct p9_fid *, const char *, u64, int);
M. Mohan Kumar329176c2010-09-28 19:59:25 +0530270int p9_client_readlink(struct p9_fid *fid, char **target);
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500271
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500272#endif /* NET_9P_CLIENT_H */