blob: 6efbb334c3ad786dffab48462852ef2d2de5b414 [file] [log] [blame]
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001/*
2 * net/9p/clnt.c
3 *
4 * 9P Client
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
Joe Perches5d385152011-11-28 10:40:46 -080026#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050028#include <linux/module.h>
29#include <linux/errno.h>
30#include <linux/fs.h>
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060031#include <linux/poll.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050032#include <linux/idr.h>
33#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050035#include <linux/sched.h>
36#include <linux/uaccess.h>
37#include <net/9p/9p.h>
Eric Van Hensbergenfb0466c2007-10-17 14:31:07 -050038#include <linux/parser.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050039#include <net/9p/client.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050040#include <net/9p/transport.h>
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -050041#include "protocol.h"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050042
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +053043#define CREATE_TRACE_POINTS
44#include <trace/events/9p.h>
45
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060046/*
47 * Client Option Parsing (code inspired by NFS code)
48 * - a little lazy - parse all client options
49 */
50
51enum {
52 Opt_msize,
53 Opt_trans,
54 Opt_legacy,
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000055 Opt_version,
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060056 Opt_err,
57};
58
Steven Whitehousea447c092008-10-13 10:46:57 +010059static const match_table_t tokens = {
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060060 {Opt_msize, "msize=%u"},
61 {Opt_legacy, "noextend"},
62 {Opt_trans, "trans=%s"},
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000063 {Opt_version, "version=%s"},
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060064 {Opt_err, NULL},
65};
66
Sripathi Kodi342fee12010-03-05 18:50:14 +000067inline int p9_is_proto_dotl(struct p9_client *clnt)
68{
Eric Dumazeta02cec22010-09-22 20:43:57 +000069 return clnt->proto_version == p9_proto_2000L;
Sripathi Kodi342fee12010-03-05 18:50:14 +000070}
71EXPORT_SYMBOL(p9_is_proto_dotl);
72
73inline int p9_is_proto_dotu(struct p9_client *clnt)
74{
Eric Dumazeta02cec22010-09-22 20:43:57 +000075 return clnt->proto_version == p9_proto_2000u;
Sripathi Kodi342fee12010-03-05 18:50:14 +000076}
77EXPORT_SYMBOL(p9_is_proto_dotu);
78
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000079/* Interpret mount option for protocol version */
Prem Karat4d630552011-05-06 18:35:32 +053080static int get_protocol_version(char *s)
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000081{
Dan Carpenter3dc9fef2010-04-05 14:37:28 -050082 int version = -EINVAL;
83
Prem Karat4d630552011-05-06 18:35:32 +053084 if (!strcmp(s, "9p2000")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000085 version = p9_proto_legacy;
Joe Perches5d385152011-11-28 10:40:46 -080086 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
Prem Karat4d630552011-05-06 18:35:32 +053087 } else if (!strcmp(s, "9p2000.u")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000088 version = p9_proto_2000u;
Joe Perches5d385152011-11-28 10:40:46 -080089 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
Prem Karat4d630552011-05-06 18:35:32 +053090 } else if (!strcmp(s, "9p2000.L")) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +000091 version = p9_proto_2000L;
Joe Perches5d385152011-11-28 10:40:46 -080092 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
Prem Karat4d630552011-05-06 18:35:32 +053093 } else
Joe Perches5d385152011-11-28 10:40:46 -080094 pr_info("Unknown protocol version %s\n", s);
Prem Karat4d630552011-05-06 18:35:32 +053095
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000096 return version;
97}
98
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060099/**
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600100 * parse_options - parse mount options into client structure
101 * @opts: options string passed from mount
102 * @clnt: existing v9fs client information
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600103 *
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600104 * Return 0 upon success, -ERRNO upon failure
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600105 */
106
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600107static int parse_opts(char *opts, struct p9_client *clnt)
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600108{
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600109 char *options, *tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600110 char *p;
111 substring_t args[MAX_OPT_ARGS];
112 int option;
Prem Karat4d630552011-05-06 18:35:32 +0530113 char *s;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600114 int ret = 0;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600115
Sripathi Kodi342fee12010-03-05 18:50:14 +0000116 clnt->proto_version = p9_proto_2000u;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600117 clnt->msize = 8192;
118
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600119 if (!opts)
120 return 0;
121
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600122 tmp_options = kstrdup(opts, GFP_KERNEL);
123 if (!tmp_options) {
Joe Perches5d385152011-11-28 10:40:46 -0800124 p9_debug(P9_DEBUG_ERROR,
125 "failed to allocate copy of option string\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600126 return -ENOMEM;
127 }
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600128 options = tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600129
130 while ((p = strsep(&options, ",")) != NULL) {
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530131 int token, r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600132 if (!*p)
133 continue;
134 token = match_token(p, tokens, args);
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530135 switch (token) {
136 case Opt_msize:
137 r = match_int(&args[0], &option);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600138 if (r < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800139 p9_debug(P9_DEBUG_ERROR,
140 "integer field, but no integer?\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600141 ret = r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600142 continue;
143 }
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600144 clnt->msize = option;
145 break;
146 case Opt_trans:
Prem Karat4d630552011-05-06 18:35:32 +0530147 s = match_strdup(&args[0]);
148 if (!s) {
149 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800150 p9_debug(P9_DEBUG_ERROR,
151 "problem allocating copy of trans arg\n");
Prem Karat4d630552011-05-06 18:35:32 +0530152 goto free_and_return;
153 }
154 clnt->trans_mod = v9fs_get_trans_by_name(s);
155 if (clnt->trans_mod == NULL) {
Joe Perches5d385152011-11-28 10:40:46 -0800156 pr_info("Could not find request transport: %s\n",
157 s);
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600158 ret = -EINVAL;
Prem Karat4d630552011-05-06 18:35:32 +0530159 kfree(s);
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600160 goto free_and_return;
161 }
Prem Karat4d630552011-05-06 18:35:32 +0530162 kfree(s);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600163 break;
164 case Opt_legacy:
Sripathi Kodi342fee12010-03-05 18:50:14 +0000165 clnt->proto_version = p9_proto_legacy;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600166 break;
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000167 case Opt_version:
Prem Karat4d630552011-05-06 18:35:32 +0530168 s = match_strdup(&args[0]);
169 if (!s) {
170 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800171 p9_debug(P9_DEBUG_ERROR,
172 "problem allocating copy of version arg\n");
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000173 goto free_and_return;
Prem Karat4d630552011-05-06 18:35:32 +0530174 }
175 ret = get_protocol_version(s);
176 if (ret == -EINVAL) {
177 kfree(s);
178 goto free_and_return;
179 }
180 kfree(s);
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000181 clnt->proto_version = ret;
182 break;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600183 default:
184 continue;
185 }
186 }
Tejun Heo72029fe2008-09-24 16:22:23 -0500187
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600188free_and_return:
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600189 kfree(tmp_options);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600190 return ret;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600191}
192
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500193/**
194 * p9_tag_alloc - lookup/allocate a request by tag
195 * @c: client session to lookup tag within
196 * @tag: numeric id for transaction
197 *
198 * this is a simple array lookup, but will grow the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300199 * request_slots as necessary to accommodate transaction
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500200 * ids which did not previously have a slot.
201 *
202 * this code relies on the client spinlock to manage locks, its
203 * possible we should switch to something else, but I'd rather
204 * stick with something low-overhead for the common case.
205 *
206 */
207
Dan Carpenteref6b0802011-08-26 19:57:40 +0300208static struct p9_req_t *
209p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500210{
211 unsigned long flags;
212 int row, col;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500213 struct p9_req_t *req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530214 int alloc_msize = min(c->msize, max_size);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500215
216 /* This looks up the original request by tag so we know which
217 * buffer to read the data into */
218 tag++;
219
220 if (tag >= c->max_tag) {
221 spin_lock_irqsave(&c->lock, flags);
222 /* check again since original check was outside of lock */
223 while (tag >= c->max_tag) {
224 row = (tag / P9_ROW_MAXTAG);
225 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
226 sizeof(struct p9_req_t), GFP_ATOMIC);
227
228 if (!c->reqs[row]) {
Joe Perches5d385152011-11-28 10:40:46 -0800229 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergene45c5402008-10-22 18:54:47 -0500230 spin_unlock_irqrestore(&c->lock, flags);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500231 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500232 }
233 for (col = 0; col < P9_ROW_MAXTAG; col++) {
234 c->reqs[row][col].status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500235 c->reqs[row][col].tc = NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500236 }
237 c->max_tag += P9_ROW_MAXTAG;
238 }
239 spin_unlock_irqrestore(&c->lock, flags);
240 }
241 row = tag / P9_ROW_MAXTAG;
242 col = tag % P9_ROW_MAXTAG;
243
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500244 req = &c->reqs[row][col];
245 if (!req->tc) {
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530246 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500247 if (!req->wq) {
Joe Perches5d385152011-11-28 10:40:46 -0800248 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500249 return ERR_PTR(-ENOMEM);
250 }
251 init_waitqueue_head(req->wq);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530252 req->tc = kmalloc(sizeof(struct p9_fcall) + alloc_msize,
253 GFP_NOFS);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530254 req->rc = kmalloc(sizeof(struct p9_fcall) + alloc_msize,
255 GFP_NOFS);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500256 if ((!req->tc) || (!req->rc)) {
Joe Perches5d385152011-11-28 10:40:46 -0800257 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500258 kfree(req->tc);
259 kfree(req->rc);
Tom Tucker45abdf12008-10-23 16:33:25 -0500260 kfree(req->wq);
261 req->tc = req->rc = NULL;
262 req->wq = NULL;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500263 return ERR_PTR(-ENOMEM);
264 }
Dan Carpenter5635fd02011-08-26 19:55:59 +0300265 req->tc->capacity = alloc_msize;
266 req->rc->capacity = alloc_msize;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500267 req->tc->sdata = (char *) req->tc + sizeof(struct p9_fcall);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500268 req->rc->sdata = (char *) req->rc + sizeof(struct p9_fcall);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500269 }
270
271 p9pdu_reset(req->tc);
272 p9pdu_reset(req->rc);
273
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500274 req->tc->tag = tag-1;
275 req->status = REQ_STATUS_ALLOC;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500276
277 return &c->reqs[row][col];
278}
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500279
280/**
281 * p9_tag_lookup - lookup a request by tag
282 * @c: client session to lookup tag within
283 * @tag: numeric id for transaction
284 *
285 */
286
287struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
288{
289 int row, col;
290
291 /* This looks up the original request by tag so we know which
292 * buffer to read the data into */
293 tag++;
294
Eric Van Hensbergenb85f7d922011-07-13 19:12:18 -0500295 if(tag >= c->max_tag)
296 return NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500297
298 row = tag / P9_ROW_MAXTAG;
299 col = tag % P9_ROW_MAXTAG;
300
301 return &c->reqs[row][col];
302}
303EXPORT_SYMBOL(p9_tag_lookup);
304
305/**
306 * p9_tag_init - setup tags structure and contents
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600307 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500308 *
309 * This initializes the tags structure for each client instance.
310 *
311 */
312
313static int p9_tag_init(struct p9_client *c)
314{
315 int err = 0;
316
317 c->tagpool = p9_idpool_create();
318 if (IS_ERR(c->tagpool)) {
319 err = PTR_ERR(c->tagpool);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500320 goto error;
321 }
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000322 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
323 if (err < 0) {
324 p9_idpool_destroy(c->tagpool);
325 goto error;
326 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500327 c->max_tag = 0;
328error:
329 return err;
330}
331
332/**
333 * p9_tag_cleanup - cleans up tags structure and reclaims resources
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600334 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500335 *
336 * This frees resources associated with the tags structure
337 *
338 */
339static void p9_tag_cleanup(struct p9_client *c)
340{
341 int row, col;
342
343 /* check to insure all requests are idle */
344 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
345 for (col = 0; col < P9_ROW_MAXTAG; col++) {
346 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
Joe Perches5d385152011-11-28 10:40:46 -0800347 p9_debug(P9_DEBUG_MUX,
348 "Attempting to cleanup non-free tag %d,%d\n",
349 row, col);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500350 /* TODO: delay execution of cleanup */
351 return;
352 }
353 }
354 }
355
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000356 if (c->tagpool) {
357 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500358 p9_idpool_destroy(c->tagpool);
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000359 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500360
361 /* free requests associated with tags */
362 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500363 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500364 kfree(c->reqs[row][col].wq);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500365 kfree(c->reqs[row][col].tc);
366 kfree(c->reqs[row][col].rc);
367 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500368 kfree(c->reqs[row]);
369 }
370 c->max_tag = 0;
371}
372
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500373/**
374 * p9_free_req - free a request and clean-up as necessary
375 * c: client state
376 * r: request to release
377 *
378 */
379
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500380static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500381{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500382 int tag = r->tc->tag;
Joe Perches5d385152011-11-28 10:40:46 -0800383 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500384
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500385 r->status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500386 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
387 p9_idpool_put(tag, c->tagpool);
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500388}
389
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500390/**
391 * p9_client_cb - call back from transport to client
392 * c: client state
393 * req: request received
394 *
395 */
396void p9_client_cb(struct p9_client *c, struct p9_req_t *req)
397{
Joe Perches5d385152011-11-28 10:40:46 -0800398 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500399 wake_up(req->wq);
Joe Perches5d385152011-11-28 10:40:46 -0800400 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500401}
402EXPORT_SYMBOL(p9_client_cb);
403
404/**
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500405 * p9_parse_header - parse header arguments out of a packet
406 * @pdu: packet to parse
407 * @size: size of packet
408 * @type: type of request
409 * @tag: tag of packet
410 * @rewind: set if we need to rewind offset afterwards
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500411 */
412
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500413int
414p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
415 int rewind)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500416{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500417 int8_t r_type;
418 int16_t r_tag;
419 int32_t r_size;
420 int offset = pdu->offset;
421 int err;
422
423 pdu->offset = 0;
424 if (pdu->size == 0)
425 pdu->size = 7;
426
427 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
428 if (err)
429 goto rewind_and_exit;
430
431 pdu->size = r_size;
432 pdu->id = r_type;
433 pdu->tag = r_tag;
434
Joe Perches5d385152011-11-28 10:40:46 -0800435 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
436 pdu->size, pdu->id, pdu->tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500437
438 if (type)
439 *type = r_type;
440 if (tag)
441 *tag = r_tag;
442 if (size)
443 *size = r_size;
444
445
446rewind_and_exit:
447 if (rewind)
448 pdu->offset = offset;
449 return err;
450}
451EXPORT_SYMBOL(p9_parse_header);
452
453/**
454 * p9_check_errors - check 9p packet for error return and process it
455 * @c: current client instance
456 * @req: request to parse and check for error conditions
457 *
458 * returns error code if one is discovered, otherwise returns 0
459 *
460 * this will have to be more complicated if we have multiple
461 * error packet types
462 */
463
464static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
465{
466 int8_t type;
467 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800468 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500469
470 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530471 /*
472 * dump the response from server
473 * This should be after check errors which poplulate pdu_fcall.
474 */
475 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500476 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800477 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500478 return err;
479 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800480 if (type != P9_RERROR && type != P9_RLERROR)
481 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500482
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800483 if (!p9_is_proto_dotl(c)) {
484 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800485 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530486 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800487 if (err)
488 goto out_err;
489
490 if (p9_is_proto_dotu(c))
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500491 err = -ecode;
492
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800493 if (!err || !IS_ERR_VALUE(err)) {
494 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500495
Joe Perches5d385152011-11-28 10:40:46 -0800496 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
497 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800498 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530499 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800500 } else {
501 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
502 err = -ecode;
503
Joe Perches5d385152011-11-28 10:40:46 -0800504 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800505 }
506
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500507 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530508
509out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800510 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530511
512 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500513}
514
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530515/**
516 * p9_check_zc_errors - check 9p packet for error return and process it
517 * @c: current client instance
518 * @req: request to parse and check for error conditions
519 * @in_hdrlen: Size of response protocol buffer.
520 *
521 * returns error code if one is discovered, otherwise returns 0
522 *
523 * this will have to be more complicated if we have multiple
524 * error packet types
525 */
526
527static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
528 char *uidata, int in_hdrlen, int kern_buf)
529{
530 int err;
531 int ecode;
532 int8_t type;
533 char *ename = NULL;
534
535 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530536 /*
537 * dump the response from server
538 * This should be after parse_header which poplulate pdu_fcall.
539 */
540 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530541 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800542 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530543 return err;
544 }
545
546 if (type != P9_RERROR && type != P9_RLERROR)
547 return 0;
548
549 if (!p9_is_proto_dotl(c)) {
550 /* Error is reported in string format */
551 uint16_t len;
552 /* 7 = header size for RERROR, 2 is the size of string len; */
553 int inline_len = in_hdrlen - (7 + 2);
554
555 /* Read the size of error string */
556 err = p9pdu_readf(req->rc, c->proto_version, "w", &len);
557 if (err)
558 goto out_err;
559
560 ename = kmalloc(len + 1, GFP_NOFS);
561 if (!ename) {
562 err = -ENOMEM;
563 goto out_err;
564 }
565 if (len <= inline_len) {
566 /* We have error in protocol buffer itself */
567 if (pdu_read(req->rc, ename, len)) {
568 err = -EFAULT;
569 goto out_free;
570
571 }
572 } else {
573 /*
574 * Part of the data is in user space buffer.
575 */
576 if (pdu_read(req->rc, ename, inline_len)) {
577 err = -EFAULT;
578 goto out_free;
579
580 }
581 if (kern_buf) {
582 memcpy(ename + inline_len, uidata,
583 len - inline_len);
584 } else {
585 err = copy_from_user(ename + inline_len,
586 uidata, len - inline_len);
587 if (err) {
588 err = -EFAULT;
589 goto out_free;
590 }
591 }
592 }
593 ename[len] = 0;
594 if (p9_is_proto_dotu(c)) {
595 /* For dotu we also have error code */
596 err = p9pdu_readf(req->rc,
597 c->proto_version, "d", &ecode);
598 if (err)
599 goto out_free;
600 err = -ecode;
601 }
602 if (!err || !IS_ERR_VALUE(err)) {
603 err = p9_errstr2errno(ename, strlen(ename));
604
Joe Perches5d385152011-11-28 10:40:46 -0800605 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
606 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530607 }
608 kfree(ename);
609 } else {
610 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
611 err = -ecode;
612
Joe Perches5d385152011-11-28 10:40:46 -0800613 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530614 }
615 return err;
616
617out_free:
618 kfree(ename);
619out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800620 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530621 return err;
622}
623
Rob Landleyaca00762011-05-08 18:46:38 +0000624static struct p9_req_t *
625p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
626
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500627/**
628 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600629 * @c: client state
630 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500631 *
Rob Landleyaca00762011-05-08 18:46:38 +0000632 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500633 * the flush request to the original request. The current
634 * code only supports a single flush request although the protocol
635 * allows for multiple flush requests to be sent for a single request.
636 *
637 */
638
639static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
640{
641 struct p9_req_t *req;
642 int16_t oldtag;
643 int err;
644
645 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
646 if (err)
647 return err;
648
Joe Perches5d385152011-11-28 10:40:46 -0800649 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500650
651 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
652 if (IS_ERR(req))
653 return PTR_ERR(req);
654
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500655
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500656 /* if we haven't received a response for oldreq,
657 remove it from the list. */
658 spin_lock(&c->lock);
659 if (oldreq->status == REQ_STATUS_FLSH)
660 list_del(&oldreq->req_list);
661 spin_unlock(&c->lock);
662
663 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500664 return 0;
665}
666
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530667static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
668 int8_t type, int req_size,
669 const char *fmt, va_list ap)
670{
671 int tag, err;
672 struct p9_req_t *req;
673
Joe Perches5d385152011-11-28 10:40:46 -0800674 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530675
676 /* we allow for any status other than disconnected */
677 if (c->status == Disconnected)
678 return ERR_PTR(-EIO);
679
680 /* if status is begin_disconnected we allow only clunk request */
681 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
682 return ERR_PTR(-EIO);
683
684 tag = P9_NOTAG;
685 if (type != P9_TVERSION) {
686 tag = p9_idpool_get(c->tagpool);
687 if (tag < 0)
688 return ERR_PTR(-ENOMEM);
689 }
690
691 req = p9_tag_alloc(c, tag, req_size);
692 if (IS_ERR(req))
693 return req;
694
695 /* marshall the data */
696 p9pdu_prepare(req->tc, tag, type);
697 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
698 if (err)
699 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530700 p9pdu_finalize(c, req->tc);
701 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530702 return req;
703reterr:
704 p9_free_req(c, req);
705 return ERR_PTR(err);
706}
707
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500708/**
709 * p9_client_rpc - issue a request and wait for a response
710 * @c: client session
711 * @type: type of request
712 * @fmt: protocol format string (see protocol.c)
713 *
714 * Returns request structure (which client must free using p9_free_req)
715 */
716
717static struct p9_req_t *
718p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
719{
720 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530721 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500722 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530723 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500724
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530725 va_start(ap, fmt);
726 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
727 va_end(ap);
728 if (IS_ERR(req))
729 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500730
731 if (signal_pending(current)) {
732 sigpending = 1;
733 clear_thread_flag(TIF_SIGPENDING);
734 } else
735 sigpending = 0;
736
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500737 err = c->trans_mod->request(c, req);
738 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530739 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700740 c->status = Disconnected;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500741 goto reterr;
742 }
Jim Garlicka314f272012-02-01 12:48:53 -0800743again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530744 /* Wait for the response */
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500745 err = wait_event_interruptible(*req->wq,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530746 req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500747
Jim Garlicka314f272012-02-01 12:48:53 -0800748 if ((err == -ERESTARTSYS) && (c->status == Connected)
749 && (type == P9_TFLUSH)) {
750 sigpending = 1;
751 clear_thread_flag(TIF_SIGPENDING);
752 goto again;
753 }
754
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500755 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800756 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500757 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500758 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500759 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800760 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500761 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500762 clear_thread_flag(TIF_SIGPENDING);
763
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500764 if (c->trans_mod->cancel(c, req))
765 p9_client_flush(c, req);
766
767 /* if we received the response anyway, don't signal error */
768 if (req->status == REQ_STATUS_RCVD)
769 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500770 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500771 if (sigpending) {
772 spin_lock_irqsave(&current->sighand->siglock, flags);
773 recalc_sigpending();
774 spin_unlock_irqrestore(&current->sighand->siglock, flags);
775 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500776 if (err < 0)
777 goto reterr;
778
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500779 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530780 trace_9p_client_res(c, type, req->rc->tag, err);
781 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500782 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530783reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530784 p9_free_req(c, req);
785 return ERR_PTR(err);
786}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500787
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530788/**
789 * p9_client_zc_rpc - issue a request and wait for a response
790 * @c: client session
791 * @type: type of request
792 * @uidata: user bffer that should be ued for zero copy read
793 * @uodata: user buffer that shoud be user for zero copy write
794 * @inlen: read buffer size
795 * @olen: write buffer size
796 * @hdrlen: reader header size, This is the size of response protocol data
797 * @fmt: protocol format string (see protocol.c)
798 *
799 * Returns request structure (which client must free using p9_free_req)
800 */
801static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
802 char *uidata, char *uodata,
803 int inlen, int olen, int in_hdrlen,
804 int kern_buf, const char *fmt, ...)
805{
806 va_list ap;
807 int sigpending, err;
808 unsigned long flags;
809 struct p9_req_t *req;
810
811 va_start(ap, fmt);
812 /*
813 * We allocate a inline protocol data of only 4k bytes.
814 * The actual content is passed in zero-copy fashion.
815 */
816 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
817 va_end(ap);
818 if (IS_ERR(req))
819 return req;
820
821 if (signal_pending(current)) {
822 sigpending = 1;
823 clear_thread_flag(TIF_SIGPENDING);
824 } else
825 sigpending = 0;
826
827 /* If we are called with KERNEL_DS force kern_buf */
828 if (segment_eq(get_fs(), KERNEL_DS))
829 kern_buf = 1;
830
831 err = c->trans_mod->zc_request(c, req, uidata, uodata,
832 inlen, olen, in_hdrlen, kern_buf);
833 if (err < 0) {
834 if (err == -EIO)
835 c->status = Disconnected;
836 goto reterr;
837 }
838 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800839 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530840 err = req->t_err;
841 }
842 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800843 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530844 sigpending = 1;
845 clear_thread_flag(TIF_SIGPENDING);
846
847 if (c->trans_mod->cancel(c, req))
848 p9_client_flush(c, req);
849
850 /* if we received the response anyway, don't signal error */
851 if (req->status == REQ_STATUS_RCVD)
852 err = 0;
853 }
854 if (sigpending) {
855 spin_lock_irqsave(&current->sighand->siglock, flags);
856 recalc_sigpending();
857 spin_unlock_irqrestore(&current->sighand->siglock, flags);
858 }
859 if (err < 0)
860 goto reterr;
861
862 err = p9_check_zc_errors(c, req, uidata, in_hdrlen, kern_buf);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530863 trace_9p_client_res(c, type, req->rc->tag, err);
864 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530865 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500866reterr:
867 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500868 return ERR_PTR(err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500869}
870
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500871static struct p9_fid *p9_fid_create(struct p9_client *clnt)
872{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500873 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500874 struct p9_fid *fid;
Tom Tuckercac23d62008-10-23 16:31:02 -0500875 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500876
Joe Perches5d385152011-11-28 10:40:46 -0800877 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500878 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
879 if (!fid)
880 return ERR_PTR(-ENOMEM);
881
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500882 ret = p9_idpool_get(clnt->fidpool);
Roel Kluin24e94de2009-01-18 21:32:11 -0800883 if (ret < 0) {
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500884 ret = -ENOSPC;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500885 goto error;
886 }
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500887 fid->fid = ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500888
889 memset(&fid->qid, 0, sizeof(struct p9_qid));
890 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100891 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500892 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600893 fid->rdir = NULL;
Tom Tuckercac23d62008-10-23 16:31:02 -0500894 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500895 list_add(&fid->flist, &clnt->fidlist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500896 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500897
898 return fid;
899
900error:
901 kfree(fid);
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500902 return ERR_PTR(ret);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500903}
904
905static void p9_fid_destroy(struct p9_fid *fid)
906{
907 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500908 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500909
Joe Perches5d385152011-11-28 10:40:46 -0800910 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500911 clnt = fid->clnt;
912 p9_idpool_put(fid->fid, clnt->fidpool);
Tom Tuckercac23d62008-10-23 16:31:02 -0500913 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500914 list_del(&fid->flist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500915 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600916 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500917 kfree(fid);
918}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600919
stephen hemminger32a875a2010-10-19 06:48:16 +0000920static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500921{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500922 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500923 struct p9_req_t *req;
924 char *version;
925 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500926
Joe Perches5d385152011-11-28 10:40:46 -0800927 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
928 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000929
930 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000931 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000932 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000933 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000934 break;
935 case p9_proto_2000u:
936 req = p9_client_rpc(c, P9_TVERSION, "ds",
937 c->msize, "9P2000.u");
938 break;
939 case p9_proto_legacy:
940 req = p9_client_rpc(c, P9_TVERSION, "ds",
941 c->msize, "9P2000");
942 break;
943 default:
944 return -EINVAL;
945 break;
946 }
947
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500948 if (IS_ERR(req))
949 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500950
Sripathi Kodi342fee12010-03-05 18:50:14 +0000951 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500952 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800953 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530954 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500955 goto error;
956 }
957
Joe Perches5d385152011-11-28 10:40:46 -0800958 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000959 if (!strncmp(version, "9P2000.L", 8))
960 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000961 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +0000962 c->proto_version = p9_proto_2000u;
963 else if (!strncmp(version, "9P2000", 6))
964 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500965 else {
966 err = -EREMOTEIO;
967 goto error;
968 }
969
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500970 if (msize < c->msize)
971 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500972
973error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500974 kfree(version);
975 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500976
977 return err;
978}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500979
980struct p9_client *p9_client_create(const char *dev_name, char *options)
981{
982 int err;
983 struct p9_client *clnt;
984
985 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500986 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
987 if (!clnt)
988 return ERR_PTR(-ENOMEM);
989
Tejun Heo72029fe2008-09-24 16:22:23 -0500990 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600991 clnt->trans = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500992 spin_lock_init(&clnt->lock);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500993 INIT_LIST_HEAD(&clnt->fidlist);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500994
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000995 err = p9_tag_init(clnt);
996 if (err < 0)
997 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500998
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600999 err = parse_opts(options, clnt);
1000 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001001 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001002
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001003 if (!clnt->trans_mod)
1004 clnt->trans_mod = v9fs_get_default_trans();
1005
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001006 if (clnt->trans_mod == NULL) {
1007 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001008 p9_debug(P9_DEBUG_ERROR,
1009 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001010 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001011 }
1012
1013 clnt->fidpool = p9_idpool_create();
1014 if (IS_ERR(clnt->fidpool)) {
1015 err = PTR_ERR(clnt->fidpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001016 goto put_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001017 }
1018
Joe Perches5d385152011-11-28 10:40:46 -08001019 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1020 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001021
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001022 err = clnt->trans_mod->create(clnt, dev_name, options);
1023 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001024 goto destroy_fidpool;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001025
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001026 if (clnt->msize > clnt->trans_mod->maxsize)
1027 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001028
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001029 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001030 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001031 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001032
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001033 return clnt;
1034
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001035close_trans:
1036 clnt->trans_mod->close(clnt);
1037destroy_fidpool:
1038 p9_idpool_destroy(clnt->fidpool);
1039put_trans:
1040 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001041destroy_tagpool:
1042 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001043free_client:
1044 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001045 return ERR_PTR(err);
1046}
1047EXPORT_SYMBOL(p9_client_create);
1048
1049void p9_client_destroy(struct p9_client *clnt)
1050{
1051 struct p9_fid *fid, *fidptr;
1052
Joe Perches5d385152011-11-28 10:40:46 -08001053 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001054
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001055 if (clnt->trans_mod)
1056 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001057
Tejun Heo72029fe2008-09-24 16:22:23 -05001058 v9fs_put_trans(clnt->trans_mod);
1059
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001060 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
Joe Perches5d385152011-11-28 10:40:46 -08001061 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001062 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001063 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001064
Eric Van Hensbergen0af88872007-07-13 16:47:58 -05001065 if (clnt->fidpool)
1066 p9_idpool_destroy(clnt->fidpool);
1067
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001068 p9_tag_cleanup(clnt);
1069
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001070 kfree(clnt);
1071}
1072EXPORT_SYMBOL(p9_client_destroy);
1073
1074void p9_client_disconnect(struct p9_client *clnt)
1075{
Joe Perches5d385152011-11-28 10:40:46 -08001076 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001077 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001078}
1079EXPORT_SYMBOL(p9_client_disconnect);
1080
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001081void p9_client_begin_disconnect(struct p9_client *clnt)
1082{
Joe Perches5d385152011-11-28 10:40:46 -08001083 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001084 clnt->status = BeginDisconnect;
1085}
1086EXPORT_SYMBOL(p9_client_begin_disconnect);
1087
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001088struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Latchesar Ionkovba176742007-10-17 14:31:07 -05001089 char *uname, u32 n_uname, char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001090{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301091 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001092 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001093 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001094 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001095
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001096
Joe Perches5d385152011-11-28 10:40:46 -08001097 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1098 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001099 fid = p9_fid_create(clnt);
1100 if (IS_ERR(fid)) {
1101 err = PTR_ERR(fid);
1102 fid = NULL;
1103 goto error;
1104 }
1105
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001106 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?d", fid->fid,
1107 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1108 if (IS_ERR(req)) {
1109 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001110 goto error;
1111 }
1112
Sripathi Kodi342fee12010-03-05 18:50:14 +00001113 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001114 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301115 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001116 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001117 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001118 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001119
Joe Perches5d385152011-11-28 10:40:46 -08001120 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1121 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001122
1123 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1124
1125 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001126 return fid;
1127
1128error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001129 if (fid)
1130 p9_fid_destroy(fid);
1131 return ERR_PTR(err);
1132}
1133EXPORT_SYMBOL(p9_client_attach);
1134
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301135struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1136 char **wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001137{
1138 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001139 struct p9_client *clnt;
1140 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001141 struct p9_qid *wqids;
1142 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301143 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001144
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001145 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001146 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001147 clnt = oldfid->clnt;
1148 if (clone) {
1149 fid = p9_fid_create(clnt);
1150 if (IS_ERR(fid)) {
1151 err = PTR_ERR(fid);
1152 fid = NULL;
1153 goto error;
1154 }
1155
1156 fid->uid = oldfid->uid;
1157 } else
1158 fid = oldfid;
1159
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001160
Joe Perches5d385152011-11-28 10:40:46 -08001161 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1162 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001163
1164 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1165 nwname, wnames);
1166 if (IS_ERR(req)) {
1167 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001168 goto error;
1169 }
1170
Sripathi Kodi342fee12010-03-05 18:50:14 +00001171 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001172 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301173 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001174 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001175 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001176 }
1177 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001178
Joe Perches5d385152011-11-28 10:40:46 -08001179 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001180
1181 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001182 err = -ENOENT;
1183 goto clunk_fid;
1184 }
1185
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001186 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001187 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001188 count, wqids[count].type,
1189 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001190 wqids[count].version);
1191
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001192 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001193 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001194 else
1195 fid->qid = oldfid->qid;
1196
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001197 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001198 return fid;
1199
1200clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001201 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001202 p9_client_clunk(fid);
1203 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001204
1205error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001206 if (fid && (fid != oldfid))
1207 p9_fid_destroy(fid);
1208
1209 return ERR_PTR(err);
1210}
1211EXPORT_SYMBOL(p9_client_walk);
1212
1213int p9_client_open(struct p9_fid *fid, int mode)
1214{
1215 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001216 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001217 struct p9_req_t *req;
1218 struct p9_qid qid;
1219 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001220
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001221 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001222 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301223 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1224 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001225
1226 if (fid->mode != -1)
1227 return -EINVAL;
1228
M. Mohan Kumaref565472010-06-22 19:47:50 +05301229 if (p9_is_proto_dotl(clnt))
1230 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1231 else
1232 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001233 if (IS_ERR(req)) {
1234 err = PTR_ERR(req);
1235 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001236 }
1237
Sripathi Kodi342fee12010-03-05 18:50:14 +00001238 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001239 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301240 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001241 goto free_and_error;
1242 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001243
Joe Perches5d385152011-11-28 10:40:46 -08001244 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301245 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1246 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001247
1248 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001249 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001250
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001251free_and_error:
1252 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001253error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001254 return err;
1255}
1256EXPORT_SYMBOL(p9_client_open);
1257
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001258int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
1259 gid_t gid, struct p9_qid *qid)
1260{
1261 int err = 0;
1262 struct p9_client *clnt;
1263 struct p9_req_t *req;
1264 int iounit;
1265
Joe Perches5d385152011-11-28 10:40:46 -08001266 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001267 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1268 ofid->fid, name, flags, mode, gid);
1269 clnt = ofid->clnt;
1270
1271 if (ofid->mode != -1)
1272 return -EINVAL;
1273
1274 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddd", ofid->fid, name, flags,
1275 mode, gid);
1276 if (IS_ERR(req)) {
1277 err = PTR_ERR(req);
1278 goto error;
1279 }
1280
1281 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1282 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301283 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001284 goto free_and_error;
1285 }
1286
Joe Perches5d385152011-11-28 10:40:46 -08001287 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001288 qid->type,
1289 (unsigned long long)qid->path,
1290 qid->version, iounit);
1291
1292 ofid->mode = mode;
1293 ofid->iounit = iounit;
1294
1295free_and_error:
1296 p9_free_req(clnt, req);
1297error:
1298 return err;
1299}
1300EXPORT_SYMBOL(p9_client_create_dotl);
1301
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001302int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
1303 char *extension)
1304{
1305 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001306 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001307 struct p9_req_t *req;
1308 struct p9_qid qid;
1309 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001310
Joe Perches5d385152011-11-28 10:40:46 -08001311 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001312 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001313 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001314 clnt = fid->clnt;
1315
1316 if (fid->mode != -1)
1317 return -EINVAL;
1318
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001319 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1320 mode, extension);
1321 if (IS_ERR(req)) {
1322 err = PTR_ERR(req);
1323 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001324 }
1325
Sripathi Kodi342fee12010-03-05 18:50:14 +00001326 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001327 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301328 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001329 goto free_and_error;
1330 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001331
Joe Perches5d385152011-11-28 10:40:46 -08001332 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001333 qid.type,
1334 (unsigned long long)qid.path,
1335 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001336
1337 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001338 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001339
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001340free_and_error:
1341 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001342error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001343 return err;
1344}
1345EXPORT_SYMBOL(p9_client_fcreate);
1346
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001347int p9_client_symlink(struct p9_fid *dfid, char *name, char *symtgt, gid_t gid,
1348 struct p9_qid *qid)
1349{
1350 int err = 0;
1351 struct p9_client *clnt;
1352 struct p9_req_t *req;
1353
Joe Perches5d385152011-11-28 10:40:46 -08001354 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001355 dfid->fid, name, symtgt);
1356 clnt = dfid->clnt;
1357
1358 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssd", dfid->fid, name, symtgt,
1359 gid);
1360 if (IS_ERR(req)) {
1361 err = PTR_ERR(req);
1362 goto error;
1363 }
1364
1365 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1366 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301367 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001368 goto free_and_error;
1369 }
1370
Joe Perches5d385152011-11-28 10:40:46 -08001371 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001372 qid->type, (unsigned long long)qid->path, qid->version);
1373
1374free_and_error:
1375 p9_free_req(clnt, req);
1376error:
1377 return err;
1378}
1379EXPORT_SYMBOL(p9_client_symlink);
1380
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001381int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, char *newname)
1382{
1383 struct p9_client *clnt;
1384 struct p9_req_t *req;
1385
Joe Perches5d385152011-11-28 10:40:46 -08001386 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001387 dfid->fid, oldfid->fid, newname);
1388 clnt = dfid->clnt;
1389 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1390 newname);
1391 if (IS_ERR(req))
1392 return PTR_ERR(req);
1393
Joe Perches5d385152011-11-28 10:40:46 -08001394 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001395 p9_free_req(clnt, req);
1396 return 0;
1397}
1398EXPORT_SYMBOL(p9_client_link);
1399
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001400int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001401{
1402 int err;
1403 struct p9_client *clnt;
1404 struct p9_req_t *req;
1405
Joe Perches5d385152011-11-28 10:40:46 -08001406 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001407 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001408 err = 0;
1409 clnt = fid->clnt;
1410
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001411 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001412 if (IS_ERR(req)) {
1413 err = PTR_ERR(req);
1414 goto error;
1415 }
1416
Joe Perches5d385152011-11-28 10:40:46 -08001417 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001418
1419 p9_free_req(clnt, req);
1420
1421error:
1422 return err;
1423}
1424EXPORT_SYMBOL(p9_client_fsync);
1425
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001426int p9_client_clunk(struct p9_fid *fid)
1427{
1428 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001429 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001430 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001431
jvrao8e44a082010-08-25 16:27:06 +00001432 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001433 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1434 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001435 dump_stack();
1436 return 0;
1437 }
1438
Joe Perches5d385152011-11-28 10:40:46 -08001439 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001440 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001441 clnt = fid->clnt;
1442
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001443 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1444 if (IS_ERR(req)) {
1445 err = PTR_ERR(req);
1446 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001447 }
1448
Joe Perches5d385152011-11-28 10:40:46 -08001449 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001450
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001451 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001452error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001453 /*
1454 * Fid is not valid even after a failed clunk
1455 */
1456 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001457 return err;
1458}
1459EXPORT_SYMBOL(p9_client_clunk);
1460
1461int p9_client_remove(struct p9_fid *fid)
1462{
1463 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001464 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001465 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001466
Joe Perches5d385152011-11-28 10:40:46 -08001467 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001468 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001469 clnt = fid->clnt;
1470
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001471 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1472 if (IS_ERR(req)) {
1473 err = PTR_ERR(req);
1474 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001475 }
1476
Joe Perches5d385152011-11-28 10:40:46 -08001477 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001478
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001479 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001480error:
Aneesh Kumar K.V0b1208b2010-07-02 12:21:20 +05301481 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001482 return err;
1483}
1484EXPORT_SYMBOL(p9_client_remove);
1485
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301486int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1487{
1488 int err = 0;
1489 struct p9_req_t *req;
1490 struct p9_client *clnt;
1491
Joe Perches5d385152011-11-28 10:40:46 -08001492 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301493 dfid->fid, name, flags);
1494
1495 clnt = dfid->clnt;
1496 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1497 if (IS_ERR(req)) {
1498 err = PTR_ERR(req);
1499 goto error;
1500 }
Joe Perches5d385152011-11-28 10:40:46 -08001501 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301502
1503 p9_free_req(clnt, req);
1504error:
1505 return err;
1506}
1507EXPORT_SYMBOL(p9_client_unlinkat);
1508
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001509int
1510p9_client_read(struct p9_fid *fid, char *data, char __user *udata, u64 offset,
1511 u32 count)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001512{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001513 char *dataptr;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301514 int kernel_buf = 0;
1515 struct p9_req_t *req;
1516 struct p9_client *clnt;
1517 int err, rsize, non_zc = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001518
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301519
Joe Perches5d385152011-11-28 10:40:46 -08001520 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301521 fid->fid, (long long unsigned) offset, count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001522 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001523 clnt = fid->clnt;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001524
1525 rsize = fid->iounit;
1526 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1527 rsize = clnt->msize - P9_IOHDRSZ;
1528
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001529 if (count < rsize)
1530 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001531
Rob Landleyaca00762011-05-08 18:46:38 +00001532 /* Don't bother zerocopy for small IO (< 1024) */
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301533 if (clnt->trans_mod->zc_request && rsize > 1024) {
1534 char *indata;
1535 if (data) {
1536 kernel_buf = 1;
1537 indata = data;
1538 } else
1539 indata = (char *)udata;
1540 /*
1541 * response header len is 11
1542 * PDU Header(7) + IO Size (4)
1543 */
1544 req = p9_client_zc_rpc(clnt, P9_TREAD, indata, NULL, rsize, 0,
1545 11, kernel_buf, "dqd", fid->fid,
1546 offset, rsize);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001547 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301548 non_zc = 1;
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001549 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301550 rsize);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001551 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001552 if (IS_ERR(req)) {
1553 err = PTR_ERR(req);
1554 goto error;
1555 }
1556
Sripathi Kodi342fee12010-03-05 18:50:14 +00001557 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001558 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301559 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001560 goto free_and_error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001561 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001562
Joe Perches5d385152011-11-28 10:40:46 -08001563 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001564
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301565 if (non_zc) {
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001566 if (data) {
1567 memmove(data, dataptr, count);
1568 } else {
1569 err = copy_to_user(udata, dataptr, count);
1570 if (err) {
1571 err = -EFAULT;
1572 goto free_and_error;
1573 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001574 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001575 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001576 p9_free_req(clnt, req);
1577 return count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001578
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001579free_and_error:
1580 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001581error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001582 return err;
1583}
1584EXPORT_SYMBOL(p9_client_read);
1585
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001586int
1587p9_client_write(struct p9_fid *fid, char *data, const char __user *udata,
1588 u64 offset, u32 count)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001589{
David S. Miller095d3da2011-04-12 15:58:41 -07001590 int err, rsize;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301591 int kernel_buf = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001592 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001593 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001594
Joe Perches5d385152011-11-28 10:40:46 -08001595 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001596 fid->fid, (long long unsigned) offset, count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001597 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001598 clnt = fid->clnt;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001599
1600 rsize = fid->iounit;
1601 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1602 rsize = clnt->msize - P9_IOHDRSZ;
1603
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001604 if (count < rsize)
1605 rsize = count;
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001606
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301607 /* Don't bother zerocopy for small IO (< 1024) */
1608 if (clnt->trans_mod->zc_request && rsize > 1024) {
1609 char *odata;
1610 if (data) {
1611 kernel_buf = 1;
1612 odata = data;
1613 } else
1614 odata = (char *)udata;
1615 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, odata, 0, rsize,
1616 P9_ZC_HDR_SZ, kernel_buf, "dqd",
1617 fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001618 } else {
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001619 if (data)
1620 req = p9_client_rpc(clnt, P9_TWRITE, "dqD", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301621 offset, rsize, data);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001622 else
1623 req = p9_client_rpc(clnt, P9_TWRITE, "dqU", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301624 offset, rsize, udata);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001625 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001626 if (IS_ERR(req)) {
1627 err = PTR_ERR(req);
1628 goto error;
1629 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001630
Sripathi Kodi342fee12010-03-05 18:50:14 +00001631 err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001632 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301633 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001634 goto free_and_error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001635 }
1636
Joe Perches5d385152011-11-28 10:40:46 -08001637 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001638
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001639 p9_free_req(clnt, req);
1640 return count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001641
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001642free_and_error:
1643 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001644error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001645 return err;
1646}
1647EXPORT_SYMBOL(p9_client_write);
1648
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001649struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001650{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001651 int err;
1652 struct p9_client *clnt;
1653 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1654 struct p9_req_t *req;
1655 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001656
Joe Perches5d385152011-11-28 10:40:46 -08001657 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001658
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001659 if (!ret)
1660 return ERR_PTR(-ENOMEM);
1661
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001662 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001663 clnt = fid->clnt;
1664
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001665 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1666 if (IS_ERR(req)) {
1667 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001668 goto error;
1669 }
1670
Sripathi Kodi342fee12010-03-05 18:50:14 +00001671 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001672 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301673 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001674 p9_free_req(clnt, req);
1675 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001676 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001677
Joe Perches5d385152011-11-28 10:40:46 -08001678 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001679 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1680 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1681 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1682 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001683 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001684 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1685 ret->atime, ret->mtime, (unsigned long long)ret->length,
1686 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001687 ret->n_uid, ret->n_gid, ret->n_muid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001688
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001689 p9_free_req(clnt, req);
1690 return ret;
1691
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001692error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001693 kfree(ret);
1694 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001695}
1696EXPORT_SYMBOL(p9_client_stat);
1697
Sripathi Kodif0853122010-07-12 20:07:23 +05301698struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1699 u64 request_mask)
1700{
1701 int err;
1702 struct p9_client *clnt;
1703 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1704 GFP_KERNEL);
1705 struct p9_req_t *req;
1706
Joe Perches5d385152011-11-28 10:40:46 -08001707 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301708 fid->fid, request_mask);
1709
1710 if (!ret)
1711 return ERR_PTR(-ENOMEM);
1712
1713 err = 0;
1714 clnt = fid->clnt;
1715
1716 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1717 if (IS_ERR(req)) {
1718 err = PTR_ERR(req);
1719 goto error;
1720 }
1721
1722 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1723 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301724 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301725 p9_free_req(clnt, req);
1726 goto error;
1727 }
1728
Joe Perches5d385152011-11-28 10:40:46 -08001729 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301730 "<<< RGETATTR st_result_mask=%lld\n"
1731 "<<< qid=%x.%llx.%x\n"
1732 "<<< st_mode=%8.8x st_nlink=%llu\n"
1733 "<<< st_uid=%d st_gid=%d\n"
1734 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1735 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1736 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1737 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1738 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1739 "<<< st_gen=%lld st_data_version=%lld",
1740 ret->st_result_mask, ret->qid.type, ret->qid.path,
1741 ret->qid.version, ret->st_mode, ret->st_nlink, ret->st_uid,
1742 ret->st_gid, ret->st_rdev, ret->st_size, ret->st_blksize,
1743 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1744 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1745 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1746 ret->st_gen, ret->st_data_version);
1747
1748 p9_free_req(clnt, req);
1749 return ret;
1750
1751error:
1752 kfree(ret);
1753 return ERR_PTR(err);
1754}
1755EXPORT_SYMBOL(p9_client_getattr_dotl);
1756
Sripathi Kodi342fee12010-03-05 18:50:14 +00001757static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001758{
1759 int ret;
1760
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001761 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001762 /* size[2] type[2] dev[4] qid[13] */
1763 /* mode[4] atime[4] mtime[4] length[8]*/
1764 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001765 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001766
1767 if (wst->name)
1768 ret += strlen(wst->name);
1769 if (wst->uid)
1770 ret += strlen(wst->uid);
1771 if (wst->gid)
1772 ret += strlen(wst->gid);
1773 if (wst->muid)
1774 ret += strlen(wst->muid);
1775
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001776 if ((proto_version == p9_proto_2000u) ||
1777 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001778 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1779 if (wst->extension)
1780 ret += strlen(wst->extension);
1781 }
1782
1783 return ret;
1784}
1785
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001786int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1787{
1788 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001789 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001790 struct p9_client *clnt;
1791
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001792 err = 0;
1793 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001794 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001795 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1796 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001797 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1798 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1799 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1800 " uid=%d gid=%d n_muid=%d\n",
1801 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001802 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1803 wst->atime, wst->mtime, (unsigned long long)wst->length,
1804 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001805 wst->n_uid, wst->n_gid, wst->n_muid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001806
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001807 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001808 if (IS_ERR(req)) {
1809 err = PTR_ERR(req);
1810 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001811 }
1812
Joe Perches5d385152011-11-28 10:40:46 -08001813 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001814
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001815 p9_free_req(clnt, req);
1816error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001817 return err;
1818}
1819EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001820
Sripathi Kodi87d78452010-06-18 11:50:10 +05301821int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1822{
1823 int err;
1824 struct p9_req_t *req;
1825 struct p9_client *clnt;
1826
1827 err = 0;
1828 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001829 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1830 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301831 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1832 " atime_sec=%lld atime_nsec=%lld\n"
1833 " mtime_sec=%lld mtime_nsec=%lld\n",
1834 p9attr->valid, p9attr->mode, p9attr->uid, p9attr->gid,
1835 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1836 p9attr->mtime_sec, p9attr->mtime_nsec);
1837
1838 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1839
1840 if (IS_ERR(req)) {
1841 err = PTR_ERR(req);
1842 goto error;
1843 }
Joe Perches5d385152011-11-28 10:40:46 -08001844 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301845 p9_free_req(clnt, req);
1846error:
1847 return err;
1848}
1849EXPORT_SYMBOL(p9_client_setattr);
1850
Sripathi Kodibda8e772010-03-25 12:45:30 +00001851int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1852{
1853 int err;
1854 struct p9_req_t *req;
1855 struct p9_client *clnt;
1856
1857 err = 0;
1858 clnt = fid->clnt;
1859
Joe Perches5d385152011-11-28 10:40:46 -08001860 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001861
1862 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1863 if (IS_ERR(req)) {
1864 err = PTR_ERR(req);
1865 goto error;
1866 }
1867
1868 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1869 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1870 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1871 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301872 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001873 p9_free_req(clnt, req);
1874 goto error;
1875 }
1876
Joe Perches5d385152011-11-28 10:40:46 -08001877 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001878 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1879 "fsid %llu namelen %ld\n",
1880 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1881 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1882 sb->fsid, (long int)sb->namelen);
1883
1884 p9_free_req(clnt, req);
1885error:
1886 return err;
1887}
1888EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001889
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301890int p9_client_rename(struct p9_fid *fid,
1891 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001892{
1893 int err;
1894 struct p9_req_t *req;
1895 struct p9_client *clnt;
1896
1897 err = 0;
1898 clnt = fid->clnt;
1899
Joe Perches5d385152011-11-28 10:40:46 -08001900 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001901 fid->fid, newdirfid->fid, name);
1902
1903 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1904 newdirfid->fid, name);
1905 if (IS_ERR(req)) {
1906 err = PTR_ERR(req);
1907 goto error;
1908 }
1909
Joe Perches5d385152011-11-28 10:40:46 -08001910 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001911
1912 p9_free_req(clnt, req);
1913error:
1914 return err;
1915}
1916EXPORT_SYMBOL(p9_client_rename);
1917
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301918int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1919 struct p9_fid *newdirfid, const char *new_name)
1920{
1921 int err;
1922 struct p9_req_t *req;
1923 struct p9_client *clnt;
1924
1925 err = 0;
1926 clnt = olddirfid->clnt;
1927
Joe Perches5d385152011-11-28 10:40:46 -08001928 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301929 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1930 newdirfid->fid, new_name);
1931
1932 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1933 old_name, newdirfid->fid, new_name);
1934 if (IS_ERR(req)) {
1935 err = PTR_ERR(req);
1936 goto error;
1937 }
1938
Joe Perches5d385152011-11-28 10:40:46 -08001939 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301940 newdirfid->fid, new_name);
1941
1942 p9_free_req(clnt, req);
1943error:
1944 return err;
1945}
1946EXPORT_SYMBOL(p9_client_renameat);
1947
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301948/*
1949 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1950 */
1951struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1952 const char *attr_name, u64 *attr_size)
1953{
1954 int err;
1955 struct p9_req_t *req;
1956 struct p9_client *clnt;
1957 struct p9_fid *attr_fid;
1958
1959 err = 0;
1960 clnt = file_fid->clnt;
1961 attr_fid = p9_fid_create(clnt);
1962 if (IS_ERR(attr_fid)) {
1963 err = PTR_ERR(attr_fid);
1964 attr_fid = NULL;
1965 goto error;
1966 }
Joe Perches5d385152011-11-28 10:40:46 -08001967 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301968 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1969 file_fid->fid, attr_fid->fid, attr_name);
1970
1971 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
1972 file_fid->fid, attr_fid->fid, attr_name);
1973 if (IS_ERR(req)) {
1974 err = PTR_ERR(req);
1975 goto error;
1976 }
1977 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
1978 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301979 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301980 p9_free_req(clnt, req);
1981 goto clunk_fid;
1982 }
1983 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08001984 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301985 attr_fid->fid, *attr_size);
1986 return attr_fid;
1987clunk_fid:
1988 p9_client_clunk(attr_fid);
1989 attr_fid = NULL;
1990error:
1991 if (attr_fid && (attr_fid != file_fid))
1992 p9_fid_destroy(attr_fid);
1993
1994 return ERR_PTR(err);
1995}
1996EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
1997
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05301998int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
1999 u64 attr_size, int flags)
2000{
2001 int err;
2002 struct p9_req_t *req;
2003 struct p9_client *clnt;
2004
Joe Perches5d385152011-11-28 10:40:46 -08002005 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302006 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2007 fid->fid, name, (long long)attr_size, flags);
2008 err = 0;
2009 clnt = fid->clnt;
2010 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2011 fid->fid, name, attr_size, flags);
2012 if (IS_ERR(req)) {
2013 err = PTR_ERR(req);
2014 goto error;
2015 }
Joe Perches5d385152011-11-28 10:40:46 -08002016 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302017 p9_free_req(clnt, req);
2018error:
2019 return err;
2020}
2021EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2022
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002023int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2024{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302025 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002026 struct p9_client *clnt;
2027 struct p9_req_t *req;
2028 char *dataptr;
2029
Joe Perches5d385152011-11-28 10:40:46 -08002030 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002031 fid->fid, (long long unsigned) offset, count);
2032
2033 err = 0;
2034 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002035
2036 rsize = fid->iounit;
2037 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2038 rsize = clnt->msize - P9_READDIRHDRSZ;
2039
2040 if (count < rsize)
2041 rsize = count;
2042
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302043 /* Don't bother zerocopy for small IO (< 1024) */
2044 if (clnt->trans_mod->zc_request && rsize > 1024) {
2045 /*
2046 * response header len is 11
2047 * PDU Header(7) + IO Size (4)
2048 */
2049 req = p9_client_zc_rpc(clnt, P9_TREADDIR, data, NULL, rsize, 0,
2050 11, 1, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002051 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302052 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002053 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302054 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002055 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002056 if (IS_ERR(req)) {
2057 err = PTR_ERR(req);
2058 goto error;
2059 }
2060
2061 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2062 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302063 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002064 goto free_and_error;
2065 }
2066
Joe Perches5d385152011-11-28 10:40:46 -08002067 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002068
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302069 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002070 memmove(data, dataptr, count);
2071
2072 p9_free_req(clnt, req);
2073 return count;
2074
2075free_and_error:
2076 p9_free_req(clnt, req);
2077error:
2078 return err;
2079}
2080EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302081
2082int p9_client_mknod_dotl(struct p9_fid *fid, char *name, int mode,
2083 dev_t rdev, gid_t gid, struct p9_qid *qid)
2084{
2085 int err;
2086 struct p9_client *clnt;
2087 struct p9_req_t *req;
2088
2089 err = 0;
2090 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002091 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302092 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2093 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddd", fid->fid, name, mode,
2094 MAJOR(rdev), MINOR(rdev), gid);
2095 if (IS_ERR(req))
2096 return PTR_ERR(req);
2097
2098 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2099 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302100 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302101 goto error;
2102 }
Joe Perches5d385152011-11-28 10:40:46 -08002103 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302104 (unsigned long long)qid->path, qid->version);
2105
2106error:
2107 p9_free_req(clnt, req);
2108 return err;
2109
2110}
2111EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302112
2113int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode,
2114 gid_t gid, struct p9_qid *qid)
2115{
2116 int err;
2117 struct p9_client *clnt;
2118 struct p9_req_t *req;
2119
2120 err = 0;
2121 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002122 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302123 fid->fid, name, mode, gid);
2124 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdd", fid->fid, name, mode,
2125 gid);
2126 if (IS_ERR(req))
2127 return PTR_ERR(req);
2128
2129 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2130 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302131 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302132 goto error;
2133 }
Joe Perches5d385152011-11-28 10:40:46 -08002134 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302135 (unsigned long long)qid->path, qid->version);
2136
2137error:
2138 p9_free_req(clnt, req);
2139 return err;
2140
2141}
2142EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302143
2144int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2145{
2146 int err;
2147 struct p9_client *clnt;
2148 struct p9_req_t *req;
2149
2150 err = 0;
2151 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002152 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302153 "start %lld length %lld proc_id %d client_id %s\n",
2154 fid->fid, flock->type, flock->flags, flock->start,
2155 flock->length, flock->proc_id, flock->client_id);
2156
2157 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2158 flock->flags, flock->start, flock->length,
2159 flock->proc_id, flock->client_id);
2160
2161 if (IS_ERR(req))
2162 return PTR_ERR(req);
2163
2164 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2165 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302166 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302167 goto error;
2168 }
Joe Perches5d385152011-11-28 10:40:46 -08002169 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302170error:
2171 p9_free_req(clnt, req);
2172 return err;
2173
2174}
2175EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302176
2177int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2178{
2179 int err;
2180 struct p9_client *clnt;
2181 struct p9_req_t *req;
2182
2183 err = 0;
2184 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002185 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302186 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2187 glock->start, glock->length, glock->proc_id, glock->client_id);
2188
2189 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2190 glock->start, glock->length, glock->proc_id, glock->client_id);
2191
2192 if (IS_ERR(req))
2193 return PTR_ERR(req);
2194
2195 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2196 &glock->start, &glock->length, &glock->proc_id,
2197 &glock->client_id);
2198 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302199 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302200 goto error;
2201 }
Joe Perches5d385152011-11-28 10:40:46 -08002202 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302203 "proc_id %d client_id %s\n", glock->type, glock->start,
2204 glock->length, glock->proc_id, glock->client_id);
2205error:
2206 p9_free_req(clnt, req);
2207 return err;
2208}
2209EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302210
2211int p9_client_readlink(struct p9_fid *fid, char **target)
2212{
2213 int err;
2214 struct p9_client *clnt;
2215 struct p9_req_t *req;
2216
2217 err = 0;
2218 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002219 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302220
2221 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2222 if (IS_ERR(req))
2223 return PTR_ERR(req);
2224
2225 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2226 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302227 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302228 goto error;
2229 }
Joe Perches5d385152011-11-28 10:40:46 -08002230 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302231error:
2232 p9_free_req(clnt, req);
2233 return err;
2234}
2235EXPORT_SYMBOL(p9_client_readlink);