blob: 34d41767093500ba7cda60a2a1990ede456f35bd [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
Simon Derr43def352012-08-10 15:52:06 +020079/*
80 * Some error codes are taken directly from the server replies,
81 * make sure they are valid.
82 */
83static int safe_errno(int err)
84{
85 if ((err > 0) || (err < -MAX_ERRNO)) {
86 p9_debug(P9_DEBUG_ERROR, "Invalid error code %d\n", err);
87 return -EPROTO;
88 }
89 return err;
90}
91
92
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000093/* Interpret mount option for protocol version */
Prem Karat4d630552011-05-06 18:35:32 +053094static int get_protocol_version(char *s)
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000095{
Dan Carpenter3dc9fef2010-04-05 14:37:28 -050096 int version = -EINVAL;
97
Prem Karat4d630552011-05-06 18:35:32 +053098 if (!strcmp(s, "9p2000")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000099 version = p9_proto_legacy;
Joe Perches5d385152011-11-28 10:40:46 -0800100 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
Prem Karat4d630552011-05-06 18:35:32 +0530101 } else if (!strcmp(s, "9p2000.u")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000102 version = p9_proto_2000u;
Joe Perches5d385152011-11-28 10:40:46 -0800103 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
Prem Karat4d630552011-05-06 18:35:32 +0530104 } else if (!strcmp(s, "9p2000.L")) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000105 version = p9_proto_2000L;
Joe Perches5d385152011-11-28 10:40:46 -0800106 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
Prem Karat4d630552011-05-06 18:35:32 +0530107 } else
Joe Perches5d385152011-11-28 10:40:46 -0800108 pr_info("Unknown protocol version %s\n", s);
Prem Karat4d630552011-05-06 18:35:32 +0530109
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000110 return version;
111}
112
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600113/**
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600114 * parse_options - parse mount options into client structure
115 * @opts: options string passed from mount
116 * @clnt: existing v9fs client information
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600117 *
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600118 * Return 0 upon success, -ERRNO upon failure
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600119 */
120
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600121static int parse_opts(char *opts, struct p9_client *clnt)
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600122{
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600123 char *options, *tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600124 char *p;
125 substring_t args[MAX_OPT_ARGS];
126 int option;
Prem Karat4d630552011-05-06 18:35:32 +0530127 char *s;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600128 int ret = 0;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600129
Sripathi Kodi342fee12010-03-05 18:50:14 +0000130 clnt->proto_version = p9_proto_2000u;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600131 clnt->msize = 8192;
132
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600133 if (!opts)
134 return 0;
135
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600136 tmp_options = kstrdup(opts, GFP_KERNEL);
137 if (!tmp_options) {
Joe Perches5d385152011-11-28 10:40:46 -0800138 p9_debug(P9_DEBUG_ERROR,
139 "failed to allocate copy of option string\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600140 return -ENOMEM;
141 }
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600142 options = tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600143
144 while ((p = strsep(&options, ",")) != NULL) {
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530145 int token, r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600146 if (!*p)
147 continue;
148 token = match_token(p, tokens, args);
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530149 switch (token) {
150 case Opt_msize:
151 r = match_int(&args[0], &option);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600152 if (r < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800153 p9_debug(P9_DEBUG_ERROR,
154 "integer field, but no integer?\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600155 ret = r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600156 continue;
157 }
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600158 clnt->msize = option;
159 break;
160 case Opt_trans:
Prem Karat4d630552011-05-06 18:35:32 +0530161 s = match_strdup(&args[0]);
162 if (!s) {
163 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800164 p9_debug(P9_DEBUG_ERROR,
165 "problem allocating copy of trans arg\n");
Prem Karat4d630552011-05-06 18:35:32 +0530166 goto free_and_return;
167 }
168 clnt->trans_mod = v9fs_get_trans_by_name(s);
169 if (clnt->trans_mod == NULL) {
Joe Perches5d385152011-11-28 10:40:46 -0800170 pr_info("Could not find request transport: %s\n",
171 s);
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600172 ret = -EINVAL;
Prem Karat4d630552011-05-06 18:35:32 +0530173 kfree(s);
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600174 goto free_and_return;
175 }
Prem Karat4d630552011-05-06 18:35:32 +0530176 kfree(s);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600177 break;
178 case Opt_legacy:
Sripathi Kodi342fee12010-03-05 18:50:14 +0000179 clnt->proto_version = p9_proto_legacy;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600180 break;
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000181 case Opt_version:
Prem Karat4d630552011-05-06 18:35:32 +0530182 s = match_strdup(&args[0]);
183 if (!s) {
184 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800185 p9_debug(P9_DEBUG_ERROR,
186 "problem allocating copy of version arg\n");
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000187 goto free_and_return;
Prem Karat4d630552011-05-06 18:35:32 +0530188 }
189 ret = get_protocol_version(s);
190 if (ret == -EINVAL) {
191 kfree(s);
192 goto free_and_return;
193 }
194 kfree(s);
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000195 clnt->proto_version = ret;
196 break;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600197 default:
198 continue;
199 }
200 }
Tejun Heo72029fe2008-09-24 16:22:23 -0500201
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600202free_and_return:
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600203 kfree(tmp_options);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600204 return ret;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600205}
206
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500207/**
208 * p9_tag_alloc - lookup/allocate a request by tag
209 * @c: client session to lookup tag within
210 * @tag: numeric id for transaction
211 *
212 * this is a simple array lookup, but will grow the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300213 * request_slots as necessary to accommodate transaction
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500214 * ids which did not previously have a slot.
215 *
216 * this code relies on the client spinlock to manage locks, its
217 * possible we should switch to something else, but I'd rather
218 * stick with something low-overhead for the common case.
219 *
220 */
221
Dan Carpenteref6b0802011-08-26 19:57:40 +0300222static struct p9_req_t *
223p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500224{
225 unsigned long flags;
226 int row, col;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500227 struct p9_req_t *req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530228 int alloc_msize = min(c->msize, max_size);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500229
230 /* This looks up the original request by tag so we know which
231 * buffer to read the data into */
232 tag++;
233
234 if (tag >= c->max_tag) {
235 spin_lock_irqsave(&c->lock, flags);
236 /* check again since original check was outside of lock */
237 while (tag >= c->max_tag) {
238 row = (tag / P9_ROW_MAXTAG);
239 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
240 sizeof(struct p9_req_t), GFP_ATOMIC);
241
242 if (!c->reqs[row]) {
Joe Perches5d385152011-11-28 10:40:46 -0800243 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergene45c5402008-10-22 18:54:47 -0500244 spin_unlock_irqrestore(&c->lock, flags);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500245 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500246 }
247 for (col = 0; col < P9_ROW_MAXTAG; col++) {
248 c->reqs[row][col].status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500249 c->reqs[row][col].tc = NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500250 }
251 c->max_tag += P9_ROW_MAXTAG;
252 }
253 spin_unlock_irqrestore(&c->lock, flags);
254 }
255 row = tag / P9_ROW_MAXTAG;
256 col = tag % P9_ROW_MAXTAG;
257
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500258 req = &c->reqs[row][col];
259 if (!req->tc) {
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530260 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500261 if (!req->wq) {
Joe Perches5d385152011-11-28 10:40:46 -0800262 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500263 return ERR_PTR(-ENOMEM);
264 }
265 init_waitqueue_head(req->wq);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530266 req->tc = kmalloc(sizeof(struct p9_fcall) + alloc_msize,
267 GFP_NOFS);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530268 req->rc = kmalloc(sizeof(struct p9_fcall) + alloc_msize,
269 GFP_NOFS);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500270 if ((!req->tc) || (!req->rc)) {
Joe Perches5d385152011-11-28 10:40:46 -0800271 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500272 kfree(req->tc);
273 kfree(req->rc);
Tom Tucker45abdf12008-10-23 16:33:25 -0500274 kfree(req->wq);
275 req->tc = req->rc = NULL;
276 req->wq = NULL;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500277 return ERR_PTR(-ENOMEM);
278 }
Dan Carpenter5635fd02011-08-26 19:55:59 +0300279 req->tc->capacity = alloc_msize;
280 req->rc->capacity = alloc_msize;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500281 req->tc->sdata = (char *) req->tc + sizeof(struct p9_fcall);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500282 req->rc->sdata = (char *) req->rc + sizeof(struct p9_fcall);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500283 }
284
285 p9pdu_reset(req->tc);
286 p9pdu_reset(req->rc);
287
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500288 req->tc->tag = tag-1;
289 req->status = REQ_STATUS_ALLOC;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500290
291 return &c->reqs[row][col];
292}
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500293
294/**
295 * p9_tag_lookup - lookup a request by tag
296 * @c: client session to lookup tag within
297 * @tag: numeric id for transaction
298 *
299 */
300
301struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
302{
303 int row, col;
304
305 /* This looks up the original request by tag so we know which
306 * buffer to read the data into */
307 tag++;
308
Eric Van Hensbergenb85f7d922011-07-13 19:12:18 -0500309 if(tag >= c->max_tag)
310 return NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500311
312 row = tag / P9_ROW_MAXTAG;
313 col = tag % P9_ROW_MAXTAG;
314
315 return &c->reqs[row][col];
316}
317EXPORT_SYMBOL(p9_tag_lookup);
318
319/**
320 * p9_tag_init - setup tags structure and contents
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600321 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500322 *
323 * This initializes the tags structure for each client instance.
324 *
325 */
326
327static int p9_tag_init(struct p9_client *c)
328{
329 int err = 0;
330
331 c->tagpool = p9_idpool_create();
332 if (IS_ERR(c->tagpool)) {
333 err = PTR_ERR(c->tagpool);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500334 goto error;
335 }
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000336 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
337 if (err < 0) {
338 p9_idpool_destroy(c->tagpool);
339 goto error;
340 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500341 c->max_tag = 0;
342error:
343 return err;
344}
345
346/**
347 * p9_tag_cleanup - cleans up tags structure and reclaims resources
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600348 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500349 *
350 * This frees resources associated with the tags structure
351 *
352 */
353static void p9_tag_cleanup(struct p9_client *c)
354{
355 int row, col;
356
357 /* check to insure all requests are idle */
358 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
359 for (col = 0; col < P9_ROW_MAXTAG; col++) {
360 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
Joe Perches5d385152011-11-28 10:40:46 -0800361 p9_debug(P9_DEBUG_MUX,
362 "Attempting to cleanup non-free tag %d,%d\n",
363 row, col);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500364 /* TODO: delay execution of cleanup */
365 return;
366 }
367 }
368 }
369
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000370 if (c->tagpool) {
371 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500372 p9_idpool_destroy(c->tagpool);
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000373 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500374
375 /* free requests associated with tags */
376 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500377 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500378 kfree(c->reqs[row][col].wq);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500379 kfree(c->reqs[row][col].tc);
380 kfree(c->reqs[row][col].rc);
381 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500382 kfree(c->reqs[row]);
383 }
384 c->max_tag = 0;
385}
386
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500387/**
388 * p9_free_req - free a request and clean-up as necessary
389 * c: client state
390 * r: request to release
391 *
392 */
393
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500394static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500395{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500396 int tag = r->tc->tag;
Joe Perches5d385152011-11-28 10:40:46 -0800397 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500398
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500399 r->status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500400 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
401 p9_idpool_put(tag, c->tagpool);
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500402}
403
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500404/**
405 * p9_client_cb - call back from transport to client
406 * c: client state
407 * req: request received
408 *
409 */
410void p9_client_cb(struct p9_client *c, struct p9_req_t *req)
411{
Joe Perches5d385152011-11-28 10:40:46 -0800412 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500413 wake_up(req->wq);
Joe Perches5d385152011-11-28 10:40:46 -0800414 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500415}
416EXPORT_SYMBOL(p9_client_cb);
417
418/**
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500419 * p9_parse_header - parse header arguments out of a packet
420 * @pdu: packet to parse
421 * @size: size of packet
422 * @type: type of request
423 * @tag: tag of packet
424 * @rewind: set if we need to rewind offset afterwards
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500425 */
426
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500427int
428p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
429 int rewind)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500430{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500431 int8_t r_type;
432 int16_t r_tag;
433 int32_t r_size;
434 int offset = pdu->offset;
435 int err;
436
437 pdu->offset = 0;
438 if (pdu->size == 0)
439 pdu->size = 7;
440
441 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
442 if (err)
443 goto rewind_and_exit;
444
445 pdu->size = r_size;
446 pdu->id = r_type;
447 pdu->tag = r_tag;
448
Joe Perches5d385152011-11-28 10:40:46 -0800449 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
450 pdu->size, pdu->id, pdu->tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500451
452 if (type)
453 *type = r_type;
454 if (tag)
455 *tag = r_tag;
456 if (size)
457 *size = r_size;
458
459
460rewind_and_exit:
461 if (rewind)
462 pdu->offset = offset;
463 return err;
464}
465EXPORT_SYMBOL(p9_parse_header);
466
467/**
468 * p9_check_errors - check 9p packet for error return and process it
469 * @c: current client instance
470 * @req: request to parse and check for error conditions
471 *
472 * returns error code if one is discovered, otherwise returns 0
473 *
474 * this will have to be more complicated if we have multiple
475 * error packet types
476 */
477
478static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
479{
480 int8_t type;
481 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800482 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500483
484 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530485 /*
486 * dump the response from server
487 * This should be after check errors which poplulate pdu_fcall.
488 */
489 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500490 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800491 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500492 return err;
493 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800494 if (type != P9_RERROR && type != P9_RLERROR)
495 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500496
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800497 if (!p9_is_proto_dotl(c)) {
498 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800499 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530500 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800501 if (err)
502 goto out_err;
503
504 if (p9_is_proto_dotu(c))
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500505 err = -ecode;
506
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800507 if (!err || !IS_ERR_VALUE(err)) {
508 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500509
Joe Perches5d385152011-11-28 10:40:46 -0800510 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
511 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800512 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530513 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800514 } else {
515 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
516 err = -ecode;
517
Joe Perches5d385152011-11-28 10:40:46 -0800518 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800519 }
520
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500521 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530522
523out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800524 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530525
526 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500527}
528
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530529/**
530 * p9_check_zc_errors - check 9p packet for error return and process it
531 * @c: current client instance
532 * @req: request to parse and check for error conditions
533 * @in_hdrlen: Size of response protocol buffer.
534 *
535 * returns error code if one is discovered, otherwise returns 0
536 *
537 * this will have to be more complicated if we have multiple
538 * error packet types
539 */
540
541static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
542 char *uidata, int in_hdrlen, int kern_buf)
543{
544 int err;
545 int ecode;
546 int8_t type;
547 char *ename = NULL;
548
549 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530550 /*
551 * dump the response from server
552 * This should be after parse_header which poplulate pdu_fcall.
553 */
554 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530555 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800556 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530557 return err;
558 }
559
560 if (type != P9_RERROR && type != P9_RLERROR)
561 return 0;
562
563 if (!p9_is_proto_dotl(c)) {
564 /* Error is reported in string format */
565 uint16_t len;
566 /* 7 = header size for RERROR, 2 is the size of string len; */
567 int inline_len = in_hdrlen - (7 + 2);
568
569 /* Read the size of error string */
570 err = p9pdu_readf(req->rc, c->proto_version, "w", &len);
571 if (err)
572 goto out_err;
573
574 ename = kmalloc(len + 1, GFP_NOFS);
575 if (!ename) {
576 err = -ENOMEM;
577 goto out_err;
578 }
579 if (len <= inline_len) {
580 /* We have error in protocol buffer itself */
581 if (pdu_read(req->rc, ename, len)) {
582 err = -EFAULT;
583 goto out_free;
584
585 }
586 } else {
587 /*
588 * Part of the data is in user space buffer.
589 */
590 if (pdu_read(req->rc, ename, inline_len)) {
591 err = -EFAULT;
592 goto out_free;
593
594 }
595 if (kern_buf) {
596 memcpy(ename + inline_len, uidata,
597 len - inline_len);
598 } else {
599 err = copy_from_user(ename + inline_len,
600 uidata, len - inline_len);
601 if (err) {
602 err = -EFAULT;
603 goto out_free;
604 }
605 }
606 }
607 ename[len] = 0;
608 if (p9_is_proto_dotu(c)) {
609 /* For dotu we also have error code */
610 err = p9pdu_readf(req->rc,
611 c->proto_version, "d", &ecode);
612 if (err)
613 goto out_free;
614 err = -ecode;
615 }
616 if (!err || !IS_ERR_VALUE(err)) {
617 err = p9_errstr2errno(ename, strlen(ename));
618
Joe Perches5d385152011-11-28 10:40:46 -0800619 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
620 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530621 }
622 kfree(ename);
623 } else {
624 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
625 err = -ecode;
626
Joe Perches5d385152011-11-28 10:40:46 -0800627 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530628 }
629 return err;
630
631out_free:
632 kfree(ename);
633out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800634 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530635 return err;
636}
637
Rob Landleyaca00762011-05-08 18:46:38 +0000638static struct p9_req_t *
639p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
640
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500641/**
642 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600643 * @c: client state
644 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500645 *
Rob Landleyaca00762011-05-08 18:46:38 +0000646 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500647 * the flush request to the original request. The current
648 * code only supports a single flush request although the protocol
649 * allows for multiple flush requests to be sent for a single request.
650 *
651 */
652
653static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
654{
655 struct p9_req_t *req;
656 int16_t oldtag;
657 int err;
658
659 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
660 if (err)
661 return err;
662
Joe Perches5d385152011-11-28 10:40:46 -0800663 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500664
665 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
666 if (IS_ERR(req))
667 return PTR_ERR(req);
668
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500669
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500670 /* if we haven't received a response for oldreq,
671 remove it from the list. */
672 spin_lock(&c->lock);
673 if (oldreq->status == REQ_STATUS_FLSH)
674 list_del(&oldreq->req_list);
675 spin_unlock(&c->lock);
676
677 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500678 return 0;
679}
680
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530681static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
682 int8_t type, int req_size,
683 const char *fmt, va_list ap)
684{
685 int tag, err;
686 struct p9_req_t *req;
687
Joe Perches5d385152011-11-28 10:40:46 -0800688 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530689
690 /* we allow for any status other than disconnected */
691 if (c->status == Disconnected)
692 return ERR_PTR(-EIO);
693
694 /* if status is begin_disconnected we allow only clunk request */
695 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
696 return ERR_PTR(-EIO);
697
698 tag = P9_NOTAG;
699 if (type != P9_TVERSION) {
700 tag = p9_idpool_get(c->tagpool);
701 if (tag < 0)
702 return ERR_PTR(-ENOMEM);
703 }
704
705 req = p9_tag_alloc(c, tag, req_size);
706 if (IS_ERR(req))
707 return req;
708
709 /* marshall the data */
710 p9pdu_prepare(req->tc, tag, type);
711 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
712 if (err)
713 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530714 p9pdu_finalize(c, req->tc);
715 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530716 return req;
717reterr:
718 p9_free_req(c, req);
719 return ERR_PTR(err);
720}
721
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500722/**
723 * p9_client_rpc - issue a request and wait for a response
724 * @c: client session
725 * @type: type of request
726 * @fmt: protocol format string (see protocol.c)
727 *
728 * Returns request structure (which client must free using p9_free_req)
729 */
730
731static struct p9_req_t *
732p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
733{
734 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530735 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500736 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530737 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500738
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530739 va_start(ap, fmt);
740 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
741 va_end(ap);
742 if (IS_ERR(req))
743 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500744
745 if (signal_pending(current)) {
746 sigpending = 1;
747 clear_thread_flag(TIF_SIGPENDING);
748 } else
749 sigpending = 0;
750
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500751 err = c->trans_mod->request(c, req);
752 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530753 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700754 c->status = Disconnected;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500755 goto reterr;
756 }
Jim Garlicka314f272012-02-01 12:48:53 -0800757again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530758 /* Wait for the response */
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500759 err = wait_event_interruptible(*req->wq,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530760 req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500761
Jim Garlicka314f272012-02-01 12:48:53 -0800762 if ((err == -ERESTARTSYS) && (c->status == Connected)
763 && (type == P9_TFLUSH)) {
764 sigpending = 1;
765 clear_thread_flag(TIF_SIGPENDING);
766 goto again;
767 }
768
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500769 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800770 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500771 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500772 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500773 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800774 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500775 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500776 clear_thread_flag(TIF_SIGPENDING);
777
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500778 if (c->trans_mod->cancel(c, req))
779 p9_client_flush(c, req);
780
781 /* if we received the response anyway, don't signal error */
782 if (req->status == REQ_STATUS_RCVD)
783 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500784 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500785 if (sigpending) {
786 spin_lock_irqsave(&current->sighand->siglock, flags);
787 recalc_sigpending();
788 spin_unlock_irqrestore(&current->sighand->siglock, flags);
789 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500790 if (err < 0)
791 goto reterr;
792
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500793 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530794 trace_9p_client_res(c, type, req->rc->tag, err);
795 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500796 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530797reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530798 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200799 return ERR_PTR(safe_errno(err));
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530800}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500801
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530802/**
803 * p9_client_zc_rpc - issue a request and wait for a response
804 * @c: client session
805 * @type: type of request
806 * @uidata: user bffer that should be ued for zero copy read
807 * @uodata: user buffer that shoud be user for zero copy write
808 * @inlen: read buffer size
809 * @olen: write buffer size
810 * @hdrlen: reader header size, This is the size of response protocol data
811 * @fmt: protocol format string (see protocol.c)
812 *
813 * Returns request structure (which client must free using p9_free_req)
814 */
815static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
816 char *uidata, char *uodata,
817 int inlen, int olen, int in_hdrlen,
818 int kern_buf, const char *fmt, ...)
819{
820 va_list ap;
821 int sigpending, err;
822 unsigned long flags;
823 struct p9_req_t *req;
824
825 va_start(ap, fmt);
826 /*
827 * We allocate a inline protocol data of only 4k bytes.
828 * The actual content is passed in zero-copy fashion.
829 */
830 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
831 va_end(ap);
832 if (IS_ERR(req))
833 return req;
834
835 if (signal_pending(current)) {
836 sigpending = 1;
837 clear_thread_flag(TIF_SIGPENDING);
838 } else
839 sigpending = 0;
840
841 /* If we are called with KERNEL_DS force kern_buf */
842 if (segment_eq(get_fs(), KERNEL_DS))
843 kern_buf = 1;
844
845 err = c->trans_mod->zc_request(c, req, uidata, uodata,
846 inlen, olen, in_hdrlen, kern_buf);
847 if (err < 0) {
848 if (err == -EIO)
849 c->status = Disconnected;
850 goto reterr;
851 }
852 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800853 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530854 err = req->t_err;
855 }
856 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800857 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530858 sigpending = 1;
859 clear_thread_flag(TIF_SIGPENDING);
860
861 if (c->trans_mod->cancel(c, req))
862 p9_client_flush(c, req);
863
864 /* if we received the response anyway, don't signal error */
865 if (req->status == REQ_STATUS_RCVD)
866 err = 0;
867 }
868 if (sigpending) {
869 spin_lock_irqsave(&current->sighand->siglock, flags);
870 recalc_sigpending();
871 spin_unlock_irqrestore(&current->sighand->siglock, flags);
872 }
873 if (err < 0)
874 goto reterr;
875
876 err = p9_check_zc_errors(c, req, uidata, in_hdrlen, kern_buf);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530877 trace_9p_client_res(c, type, req->rc->tag, err);
878 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530879 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500880reterr:
881 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200882 return ERR_PTR(safe_errno(err));
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500883}
884
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500885static struct p9_fid *p9_fid_create(struct p9_client *clnt)
886{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500887 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500888 struct p9_fid *fid;
Tom Tuckercac23d62008-10-23 16:31:02 -0500889 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500890
Joe Perches5d385152011-11-28 10:40:46 -0800891 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500892 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
893 if (!fid)
894 return ERR_PTR(-ENOMEM);
895
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500896 ret = p9_idpool_get(clnt->fidpool);
Roel Kluin24e94de2009-01-18 21:32:11 -0800897 if (ret < 0) {
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500898 ret = -ENOSPC;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500899 goto error;
900 }
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500901 fid->fid = ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500902
903 memset(&fid->qid, 0, sizeof(struct p9_qid));
904 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100905 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500906 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600907 fid->rdir = NULL;
Tom Tuckercac23d62008-10-23 16:31:02 -0500908 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500909 list_add(&fid->flist, &clnt->fidlist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500910 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500911
912 return fid;
913
914error:
915 kfree(fid);
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500916 return ERR_PTR(ret);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500917}
918
919static void p9_fid_destroy(struct p9_fid *fid)
920{
921 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500922 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500923
Joe Perches5d385152011-11-28 10:40:46 -0800924 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500925 clnt = fid->clnt;
926 p9_idpool_put(fid->fid, clnt->fidpool);
Tom Tuckercac23d62008-10-23 16:31:02 -0500927 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500928 list_del(&fid->flist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500929 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600930 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500931 kfree(fid);
932}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600933
stephen hemminger32a875a2010-10-19 06:48:16 +0000934static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500935{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500936 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500937 struct p9_req_t *req;
938 char *version;
939 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500940
Joe Perches5d385152011-11-28 10:40:46 -0800941 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
942 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000943
944 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000945 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000946 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000947 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000948 break;
949 case p9_proto_2000u:
950 req = p9_client_rpc(c, P9_TVERSION, "ds",
951 c->msize, "9P2000.u");
952 break;
953 case p9_proto_legacy:
954 req = p9_client_rpc(c, P9_TVERSION, "ds",
955 c->msize, "9P2000");
956 break;
957 default:
958 return -EINVAL;
959 break;
960 }
961
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500962 if (IS_ERR(req))
963 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500964
Sripathi Kodi342fee12010-03-05 18:50:14 +0000965 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500966 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800967 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530968 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500969 goto error;
970 }
971
Joe Perches5d385152011-11-28 10:40:46 -0800972 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000973 if (!strncmp(version, "9P2000.L", 8))
974 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000975 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +0000976 c->proto_version = p9_proto_2000u;
977 else if (!strncmp(version, "9P2000", 6))
978 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500979 else {
980 err = -EREMOTEIO;
981 goto error;
982 }
983
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500984 if (msize < c->msize)
985 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500986
987error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500988 kfree(version);
989 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500990
991 return err;
992}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500993
994struct p9_client *p9_client_create(const char *dev_name, char *options)
995{
996 int err;
997 struct p9_client *clnt;
998
999 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001000 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1001 if (!clnt)
1002 return ERR_PTR(-ENOMEM);
1003
Tejun Heo72029fe2008-09-24 16:22:23 -05001004 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001005 clnt->trans = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001006 spin_lock_init(&clnt->lock);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001007 INIT_LIST_HEAD(&clnt->fidlist);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001008
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001009 err = p9_tag_init(clnt);
1010 if (err < 0)
1011 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001012
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001013 err = parse_opts(options, clnt);
1014 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001015 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001016
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001017 if (!clnt->trans_mod)
1018 clnt->trans_mod = v9fs_get_default_trans();
1019
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001020 if (clnt->trans_mod == NULL) {
1021 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001022 p9_debug(P9_DEBUG_ERROR,
1023 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001024 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001025 }
1026
1027 clnt->fidpool = p9_idpool_create();
1028 if (IS_ERR(clnt->fidpool)) {
1029 err = PTR_ERR(clnt->fidpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001030 goto put_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001031 }
1032
Joe Perches5d385152011-11-28 10:40:46 -08001033 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1034 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001035
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001036 err = clnt->trans_mod->create(clnt, dev_name, options);
1037 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001038 goto destroy_fidpool;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001039
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001040 if (clnt->msize > clnt->trans_mod->maxsize)
1041 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001042
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001043 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001044 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001045 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001046
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001047 return clnt;
1048
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001049close_trans:
1050 clnt->trans_mod->close(clnt);
1051destroy_fidpool:
1052 p9_idpool_destroy(clnt->fidpool);
1053put_trans:
1054 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001055destroy_tagpool:
1056 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001057free_client:
1058 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001059 return ERR_PTR(err);
1060}
1061EXPORT_SYMBOL(p9_client_create);
1062
1063void p9_client_destroy(struct p9_client *clnt)
1064{
1065 struct p9_fid *fid, *fidptr;
1066
Joe Perches5d385152011-11-28 10:40:46 -08001067 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001068
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001069 if (clnt->trans_mod)
1070 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001071
Tejun Heo72029fe2008-09-24 16:22:23 -05001072 v9fs_put_trans(clnt->trans_mod);
1073
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001074 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
Joe Perches5d385152011-11-28 10:40:46 -08001075 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001076 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001077 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001078
Eric Van Hensbergen0af88872007-07-13 16:47:58 -05001079 if (clnt->fidpool)
1080 p9_idpool_destroy(clnt->fidpool);
1081
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001082 p9_tag_cleanup(clnt);
1083
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001084 kfree(clnt);
1085}
1086EXPORT_SYMBOL(p9_client_destroy);
1087
1088void p9_client_disconnect(struct p9_client *clnt)
1089{
Joe Perches5d385152011-11-28 10:40:46 -08001090 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001091 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001092}
1093EXPORT_SYMBOL(p9_client_disconnect);
1094
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001095void p9_client_begin_disconnect(struct p9_client *clnt)
1096{
Joe Perches5d385152011-11-28 10:40:46 -08001097 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001098 clnt->status = BeginDisconnect;
1099}
1100EXPORT_SYMBOL(p9_client_begin_disconnect);
1101
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001102struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Latchesar Ionkovba176742007-10-17 14:31:07 -05001103 char *uname, u32 n_uname, char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001104{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301105 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001106 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001107 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001108 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001109
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001110
Joe Perches5d385152011-11-28 10:40:46 -08001111 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1112 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001113 fid = p9_fid_create(clnt);
1114 if (IS_ERR(fid)) {
1115 err = PTR_ERR(fid);
1116 fid = NULL;
1117 goto error;
1118 }
1119
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001120 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?d", fid->fid,
1121 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1122 if (IS_ERR(req)) {
1123 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001124 goto error;
1125 }
1126
Sripathi Kodi342fee12010-03-05 18:50:14 +00001127 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001128 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301129 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001130 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001131 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001132 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001133
Joe Perches5d385152011-11-28 10:40:46 -08001134 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1135 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001136
1137 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1138
1139 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001140 return fid;
1141
1142error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001143 if (fid)
1144 p9_fid_destroy(fid);
1145 return ERR_PTR(err);
1146}
1147EXPORT_SYMBOL(p9_client_attach);
1148
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301149struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1150 char **wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001151{
1152 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001153 struct p9_client *clnt;
1154 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001155 struct p9_qid *wqids;
1156 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301157 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001158
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001159 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001160 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001161 clnt = oldfid->clnt;
1162 if (clone) {
1163 fid = p9_fid_create(clnt);
1164 if (IS_ERR(fid)) {
1165 err = PTR_ERR(fid);
1166 fid = NULL;
1167 goto error;
1168 }
1169
1170 fid->uid = oldfid->uid;
1171 } else
1172 fid = oldfid;
1173
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001174
Joe Perches5d385152011-11-28 10:40:46 -08001175 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1176 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001177
1178 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1179 nwname, wnames);
1180 if (IS_ERR(req)) {
1181 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001182 goto error;
1183 }
1184
Sripathi Kodi342fee12010-03-05 18:50:14 +00001185 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001186 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301187 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001188 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001189 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001190 }
1191 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001192
Joe Perches5d385152011-11-28 10:40:46 -08001193 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001194
1195 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001196 err = -ENOENT;
1197 goto clunk_fid;
1198 }
1199
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001200 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001201 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001202 count, wqids[count].type,
1203 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001204 wqids[count].version);
1205
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001206 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001207 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001208 else
1209 fid->qid = oldfid->qid;
1210
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001211 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001212 return fid;
1213
1214clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001215 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001216 p9_client_clunk(fid);
1217 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001218
1219error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001220 if (fid && (fid != oldfid))
1221 p9_fid_destroy(fid);
1222
1223 return ERR_PTR(err);
1224}
1225EXPORT_SYMBOL(p9_client_walk);
1226
1227int p9_client_open(struct p9_fid *fid, int mode)
1228{
1229 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001230 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001231 struct p9_req_t *req;
1232 struct p9_qid qid;
1233 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001234
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001235 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001236 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301237 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1238 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001239
1240 if (fid->mode != -1)
1241 return -EINVAL;
1242
M. Mohan Kumaref565472010-06-22 19:47:50 +05301243 if (p9_is_proto_dotl(clnt))
1244 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1245 else
1246 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001247 if (IS_ERR(req)) {
1248 err = PTR_ERR(req);
1249 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001250 }
1251
Sripathi Kodi342fee12010-03-05 18:50:14 +00001252 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001253 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301254 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001255 goto free_and_error;
1256 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001257
Joe Perches5d385152011-11-28 10:40:46 -08001258 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301259 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1260 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001261
1262 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001263 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001264
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001265free_and_error:
1266 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001267error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001268 return err;
1269}
1270EXPORT_SYMBOL(p9_client_open);
1271
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001272int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
1273 gid_t gid, struct p9_qid *qid)
1274{
1275 int err = 0;
1276 struct p9_client *clnt;
1277 struct p9_req_t *req;
1278 int iounit;
1279
Joe Perches5d385152011-11-28 10:40:46 -08001280 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001281 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1282 ofid->fid, name, flags, mode, gid);
1283 clnt = ofid->clnt;
1284
1285 if (ofid->mode != -1)
1286 return -EINVAL;
1287
1288 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddd", ofid->fid, name, flags,
1289 mode, gid);
1290 if (IS_ERR(req)) {
1291 err = PTR_ERR(req);
1292 goto error;
1293 }
1294
1295 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1296 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301297 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001298 goto free_and_error;
1299 }
1300
Joe Perches5d385152011-11-28 10:40:46 -08001301 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001302 qid->type,
1303 (unsigned long long)qid->path,
1304 qid->version, iounit);
1305
1306 ofid->mode = mode;
1307 ofid->iounit = iounit;
1308
1309free_and_error:
1310 p9_free_req(clnt, req);
1311error:
1312 return err;
1313}
1314EXPORT_SYMBOL(p9_client_create_dotl);
1315
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001316int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
1317 char *extension)
1318{
1319 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001320 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001321 struct p9_req_t *req;
1322 struct p9_qid qid;
1323 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001324
Joe Perches5d385152011-11-28 10:40:46 -08001325 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001326 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001327 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001328 clnt = fid->clnt;
1329
1330 if (fid->mode != -1)
1331 return -EINVAL;
1332
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001333 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1334 mode, extension);
1335 if (IS_ERR(req)) {
1336 err = PTR_ERR(req);
1337 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001338 }
1339
Sripathi Kodi342fee12010-03-05 18:50:14 +00001340 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001341 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301342 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001343 goto free_and_error;
1344 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001345
Joe Perches5d385152011-11-28 10:40:46 -08001346 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001347 qid.type,
1348 (unsigned long long)qid.path,
1349 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001350
1351 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001352 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001353
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001354free_and_error:
1355 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001356error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001357 return err;
1358}
1359EXPORT_SYMBOL(p9_client_fcreate);
1360
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001361int p9_client_symlink(struct p9_fid *dfid, char *name, char *symtgt, gid_t gid,
1362 struct p9_qid *qid)
1363{
1364 int err = 0;
1365 struct p9_client *clnt;
1366 struct p9_req_t *req;
1367
Joe Perches5d385152011-11-28 10:40:46 -08001368 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001369 dfid->fid, name, symtgt);
1370 clnt = dfid->clnt;
1371
1372 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssd", dfid->fid, name, symtgt,
1373 gid);
1374 if (IS_ERR(req)) {
1375 err = PTR_ERR(req);
1376 goto error;
1377 }
1378
1379 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1380 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301381 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001382 goto free_and_error;
1383 }
1384
Joe Perches5d385152011-11-28 10:40:46 -08001385 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001386 qid->type, (unsigned long long)qid->path, qid->version);
1387
1388free_and_error:
1389 p9_free_req(clnt, req);
1390error:
1391 return err;
1392}
1393EXPORT_SYMBOL(p9_client_symlink);
1394
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001395int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, char *newname)
1396{
1397 struct p9_client *clnt;
1398 struct p9_req_t *req;
1399
Joe Perches5d385152011-11-28 10:40:46 -08001400 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001401 dfid->fid, oldfid->fid, newname);
1402 clnt = dfid->clnt;
1403 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1404 newname);
1405 if (IS_ERR(req))
1406 return PTR_ERR(req);
1407
Joe Perches5d385152011-11-28 10:40:46 -08001408 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001409 p9_free_req(clnt, req);
1410 return 0;
1411}
1412EXPORT_SYMBOL(p9_client_link);
1413
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001414int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001415{
1416 int err;
1417 struct p9_client *clnt;
1418 struct p9_req_t *req;
1419
Joe Perches5d385152011-11-28 10:40:46 -08001420 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001421 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001422 err = 0;
1423 clnt = fid->clnt;
1424
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001425 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001426 if (IS_ERR(req)) {
1427 err = PTR_ERR(req);
1428 goto error;
1429 }
1430
Joe Perches5d385152011-11-28 10:40:46 -08001431 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001432
1433 p9_free_req(clnt, req);
1434
1435error:
1436 return err;
1437}
1438EXPORT_SYMBOL(p9_client_fsync);
1439
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001440int p9_client_clunk(struct p9_fid *fid)
1441{
1442 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001443 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001444 struct p9_req_t *req;
Jim Garlick208f3c22012-02-26 14:49:57 -06001445 int retries = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001446
jvrao8e44a082010-08-25 16:27:06 +00001447 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001448 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1449 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001450 dump_stack();
1451 return 0;
1452 }
1453
Jim Garlick208f3c22012-02-26 14:49:57 -06001454again:
1455 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1456 retries);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001457 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001458 clnt = fid->clnt;
1459
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001460 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1461 if (IS_ERR(req)) {
1462 err = PTR_ERR(req);
1463 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001464 }
1465
Joe Perches5d385152011-11-28 10:40:46 -08001466 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001467
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001468 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001469error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001470 /*
1471 * Fid is not valid even after a failed clunk
Jim Garlick208f3c22012-02-26 14:49:57 -06001472 * If interrupted, retry once then give up and
1473 * leak fid until umount.
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001474 */
Jim Garlick208f3c22012-02-26 14:49:57 -06001475 if (err == -ERESTARTSYS) {
1476 if (retries++ == 0)
1477 goto again;
1478 } else
1479 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001480 return err;
1481}
1482EXPORT_SYMBOL(p9_client_clunk);
1483
1484int p9_client_remove(struct p9_fid *fid)
1485{
1486 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001487 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001488 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001489
Joe Perches5d385152011-11-28 10:40:46 -08001490 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001491 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001492 clnt = fid->clnt;
1493
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001494 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1495 if (IS_ERR(req)) {
1496 err = PTR_ERR(req);
1497 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001498 }
1499
Joe Perches5d385152011-11-28 10:40:46 -08001500 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001501
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001502 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001503error:
Jim Garlick208f3c22012-02-26 14:49:57 -06001504 if (err == -ERESTARTSYS)
1505 p9_client_clunk(fid);
1506 else
1507 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001508 return err;
1509}
1510EXPORT_SYMBOL(p9_client_remove);
1511
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301512int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1513{
1514 int err = 0;
1515 struct p9_req_t *req;
1516 struct p9_client *clnt;
1517
Joe Perches5d385152011-11-28 10:40:46 -08001518 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301519 dfid->fid, name, flags);
1520
1521 clnt = dfid->clnt;
1522 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1523 if (IS_ERR(req)) {
1524 err = PTR_ERR(req);
1525 goto error;
1526 }
Joe Perches5d385152011-11-28 10:40:46 -08001527 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301528
1529 p9_free_req(clnt, req);
1530error:
1531 return err;
1532}
1533EXPORT_SYMBOL(p9_client_unlinkat);
1534
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001535int
1536p9_client_read(struct p9_fid *fid, char *data, char __user *udata, u64 offset,
1537 u32 count)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001538{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001539 char *dataptr;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301540 int kernel_buf = 0;
1541 struct p9_req_t *req;
1542 struct p9_client *clnt;
1543 int err, rsize, non_zc = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001544
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301545
Joe Perches5d385152011-11-28 10:40:46 -08001546 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00001547 fid->fid, (unsigned long long) offset, count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001548 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001549 clnt = fid->clnt;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001550
1551 rsize = fid->iounit;
1552 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1553 rsize = clnt->msize - P9_IOHDRSZ;
1554
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001555 if (count < rsize)
1556 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001557
Rob Landleyaca00762011-05-08 18:46:38 +00001558 /* Don't bother zerocopy for small IO (< 1024) */
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301559 if (clnt->trans_mod->zc_request && rsize > 1024) {
1560 char *indata;
1561 if (data) {
1562 kernel_buf = 1;
1563 indata = data;
1564 } else
Joe Perchesf07d9012012-06-04 07:16:14 +00001565 indata = (__force char *)udata;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301566 /*
1567 * response header len is 11
1568 * PDU Header(7) + IO Size (4)
1569 */
1570 req = p9_client_zc_rpc(clnt, P9_TREAD, indata, NULL, rsize, 0,
1571 11, kernel_buf, "dqd", fid->fid,
1572 offset, rsize);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001573 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301574 non_zc = 1;
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001575 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301576 rsize);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001577 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001578 if (IS_ERR(req)) {
1579 err = PTR_ERR(req);
1580 goto error;
1581 }
1582
Sripathi Kodi342fee12010-03-05 18:50:14 +00001583 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001584 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301585 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001586 goto free_and_error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001587 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001588
Joe Perches5d385152011-11-28 10:40:46 -08001589 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001590
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301591 if (non_zc) {
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001592 if (data) {
1593 memmove(data, dataptr, count);
1594 } else {
1595 err = copy_to_user(udata, dataptr, count);
1596 if (err) {
1597 err = -EFAULT;
1598 goto free_and_error;
1599 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001600 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001601 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001602 p9_free_req(clnt, req);
1603 return count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001604
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001605free_and_error:
1606 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001607error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001608 return err;
1609}
1610EXPORT_SYMBOL(p9_client_read);
1611
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001612int
1613p9_client_write(struct p9_fid *fid, char *data, const char __user *udata,
1614 u64 offset, u32 count)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001615{
David S. Miller095d3da2011-04-12 15:58:41 -07001616 int err, rsize;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301617 int kernel_buf = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001618 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001619 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001620
Joe Perches5d385152011-11-28 10:40:46 -08001621 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00001622 fid->fid, (unsigned long long) offset, count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001623 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001624 clnt = fid->clnt;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001625
1626 rsize = fid->iounit;
1627 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1628 rsize = clnt->msize - P9_IOHDRSZ;
1629
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001630 if (count < rsize)
1631 rsize = count;
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001632
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301633 /* Don't bother zerocopy for small IO (< 1024) */
1634 if (clnt->trans_mod->zc_request && rsize > 1024) {
1635 char *odata;
1636 if (data) {
1637 kernel_buf = 1;
1638 odata = data;
1639 } else
1640 odata = (char *)udata;
1641 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, odata, 0, rsize,
1642 P9_ZC_HDR_SZ, kernel_buf, "dqd",
1643 fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001644 } else {
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001645 if (data)
1646 req = p9_client_rpc(clnt, P9_TWRITE, "dqD", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301647 offset, rsize, data);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001648 else
1649 req = p9_client_rpc(clnt, P9_TWRITE, "dqU", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301650 offset, rsize, udata);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001651 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001652 if (IS_ERR(req)) {
1653 err = PTR_ERR(req);
1654 goto error;
1655 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001656
Sripathi Kodi342fee12010-03-05 18:50:14 +00001657 err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001658 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301659 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001660 goto free_and_error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001661 }
1662
Joe Perches5d385152011-11-28 10:40:46 -08001663 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001664
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001665 p9_free_req(clnt, req);
1666 return count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001667
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001668free_and_error:
1669 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001670error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001671 return err;
1672}
1673EXPORT_SYMBOL(p9_client_write);
1674
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001675struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001676{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001677 int err;
1678 struct p9_client *clnt;
1679 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1680 struct p9_req_t *req;
1681 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001682
Joe Perches5d385152011-11-28 10:40:46 -08001683 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001684
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001685 if (!ret)
1686 return ERR_PTR(-ENOMEM);
1687
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001688 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001689 clnt = fid->clnt;
1690
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001691 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1692 if (IS_ERR(req)) {
1693 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001694 goto error;
1695 }
1696
Sripathi Kodi342fee12010-03-05 18:50:14 +00001697 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001698 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301699 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001700 p9_free_req(clnt, req);
1701 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001702 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001703
Joe Perches5d385152011-11-28 10:40:46 -08001704 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001705 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1706 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1707 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1708 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001709 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001710 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1711 ret->atime, ret->mtime, (unsigned long long)ret->length,
1712 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001713 ret->n_uid, ret->n_gid, ret->n_muid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001714
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001715 p9_free_req(clnt, req);
1716 return ret;
1717
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001718error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001719 kfree(ret);
1720 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001721}
1722EXPORT_SYMBOL(p9_client_stat);
1723
Sripathi Kodif0853122010-07-12 20:07:23 +05301724struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1725 u64 request_mask)
1726{
1727 int err;
1728 struct p9_client *clnt;
1729 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1730 GFP_KERNEL);
1731 struct p9_req_t *req;
1732
Joe Perches5d385152011-11-28 10:40:46 -08001733 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301734 fid->fid, request_mask);
1735
1736 if (!ret)
1737 return ERR_PTR(-ENOMEM);
1738
1739 err = 0;
1740 clnt = fid->clnt;
1741
1742 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1743 if (IS_ERR(req)) {
1744 err = PTR_ERR(req);
1745 goto error;
1746 }
1747
1748 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1749 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301750 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301751 p9_free_req(clnt, req);
1752 goto error;
1753 }
1754
Joe Perches5d385152011-11-28 10:40:46 -08001755 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301756 "<<< RGETATTR st_result_mask=%lld\n"
1757 "<<< qid=%x.%llx.%x\n"
1758 "<<< st_mode=%8.8x st_nlink=%llu\n"
1759 "<<< st_uid=%d st_gid=%d\n"
1760 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1761 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1762 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1763 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1764 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1765 "<<< st_gen=%lld st_data_version=%lld",
1766 ret->st_result_mask, ret->qid.type, ret->qid.path,
1767 ret->qid.version, ret->st_mode, ret->st_nlink, ret->st_uid,
1768 ret->st_gid, ret->st_rdev, ret->st_size, ret->st_blksize,
1769 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1770 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1771 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1772 ret->st_gen, ret->st_data_version);
1773
1774 p9_free_req(clnt, req);
1775 return ret;
1776
1777error:
1778 kfree(ret);
1779 return ERR_PTR(err);
1780}
1781EXPORT_SYMBOL(p9_client_getattr_dotl);
1782
Sripathi Kodi342fee12010-03-05 18:50:14 +00001783static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001784{
1785 int ret;
1786
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001787 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001788 /* size[2] type[2] dev[4] qid[13] */
1789 /* mode[4] atime[4] mtime[4] length[8]*/
1790 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001791 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001792
1793 if (wst->name)
1794 ret += strlen(wst->name);
1795 if (wst->uid)
1796 ret += strlen(wst->uid);
1797 if (wst->gid)
1798 ret += strlen(wst->gid);
1799 if (wst->muid)
1800 ret += strlen(wst->muid);
1801
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001802 if ((proto_version == p9_proto_2000u) ||
1803 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001804 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1805 if (wst->extension)
1806 ret += strlen(wst->extension);
1807 }
1808
1809 return ret;
1810}
1811
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001812int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1813{
1814 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001815 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001816 struct p9_client *clnt;
1817
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001818 err = 0;
1819 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001820 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001821 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1822 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001823 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1824 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1825 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1826 " uid=%d gid=%d n_muid=%d\n",
1827 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001828 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1829 wst->atime, wst->mtime, (unsigned long long)wst->length,
1830 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001831 wst->n_uid, wst->n_gid, wst->n_muid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001832
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001833 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001834 if (IS_ERR(req)) {
1835 err = PTR_ERR(req);
1836 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001837 }
1838
Joe Perches5d385152011-11-28 10:40:46 -08001839 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001840
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001841 p9_free_req(clnt, req);
1842error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001843 return err;
1844}
1845EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001846
Sripathi Kodi87d78452010-06-18 11:50:10 +05301847int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1848{
1849 int err;
1850 struct p9_req_t *req;
1851 struct p9_client *clnt;
1852
1853 err = 0;
1854 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001855 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1856 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301857 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1858 " atime_sec=%lld atime_nsec=%lld\n"
1859 " mtime_sec=%lld mtime_nsec=%lld\n",
1860 p9attr->valid, p9attr->mode, p9attr->uid, p9attr->gid,
1861 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1862 p9attr->mtime_sec, p9attr->mtime_nsec);
1863
1864 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1865
1866 if (IS_ERR(req)) {
1867 err = PTR_ERR(req);
1868 goto error;
1869 }
Joe Perches5d385152011-11-28 10:40:46 -08001870 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301871 p9_free_req(clnt, req);
1872error:
1873 return err;
1874}
1875EXPORT_SYMBOL(p9_client_setattr);
1876
Sripathi Kodibda8e772010-03-25 12:45:30 +00001877int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1878{
1879 int err;
1880 struct p9_req_t *req;
1881 struct p9_client *clnt;
1882
1883 err = 0;
1884 clnt = fid->clnt;
1885
Joe Perches5d385152011-11-28 10:40:46 -08001886 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001887
1888 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1889 if (IS_ERR(req)) {
1890 err = PTR_ERR(req);
1891 goto error;
1892 }
1893
1894 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1895 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1896 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1897 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301898 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001899 p9_free_req(clnt, req);
1900 goto error;
1901 }
1902
Joe Perches5d385152011-11-28 10:40:46 -08001903 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001904 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1905 "fsid %llu namelen %ld\n",
1906 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1907 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1908 sb->fsid, (long int)sb->namelen);
1909
1910 p9_free_req(clnt, req);
1911error:
1912 return err;
1913}
1914EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001915
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301916int p9_client_rename(struct p9_fid *fid,
1917 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001918{
1919 int err;
1920 struct p9_req_t *req;
1921 struct p9_client *clnt;
1922
1923 err = 0;
1924 clnt = fid->clnt;
1925
Joe Perches5d385152011-11-28 10:40:46 -08001926 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001927 fid->fid, newdirfid->fid, name);
1928
1929 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1930 newdirfid->fid, name);
1931 if (IS_ERR(req)) {
1932 err = PTR_ERR(req);
1933 goto error;
1934 }
1935
Joe Perches5d385152011-11-28 10:40:46 -08001936 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001937
1938 p9_free_req(clnt, req);
1939error:
1940 return err;
1941}
1942EXPORT_SYMBOL(p9_client_rename);
1943
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301944int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1945 struct p9_fid *newdirfid, const char *new_name)
1946{
1947 int err;
1948 struct p9_req_t *req;
1949 struct p9_client *clnt;
1950
1951 err = 0;
1952 clnt = olddirfid->clnt;
1953
Joe Perches5d385152011-11-28 10:40:46 -08001954 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301955 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1956 newdirfid->fid, new_name);
1957
1958 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1959 old_name, newdirfid->fid, new_name);
1960 if (IS_ERR(req)) {
1961 err = PTR_ERR(req);
1962 goto error;
1963 }
1964
Joe Perches5d385152011-11-28 10:40:46 -08001965 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301966 newdirfid->fid, new_name);
1967
1968 p9_free_req(clnt, req);
1969error:
1970 return err;
1971}
1972EXPORT_SYMBOL(p9_client_renameat);
1973
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301974/*
1975 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1976 */
1977struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1978 const char *attr_name, u64 *attr_size)
1979{
1980 int err;
1981 struct p9_req_t *req;
1982 struct p9_client *clnt;
1983 struct p9_fid *attr_fid;
1984
1985 err = 0;
1986 clnt = file_fid->clnt;
1987 attr_fid = p9_fid_create(clnt);
1988 if (IS_ERR(attr_fid)) {
1989 err = PTR_ERR(attr_fid);
1990 attr_fid = NULL;
1991 goto error;
1992 }
Joe Perches5d385152011-11-28 10:40:46 -08001993 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301994 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1995 file_fid->fid, attr_fid->fid, attr_name);
1996
1997 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
1998 file_fid->fid, attr_fid->fid, attr_name);
1999 if (IS_ERR(req)) {
2000 err = PTR_ERR(req);
2001 goto error;
2002 }
2003 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2004 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302005 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302006 p9_free_req(clnt, req);
2007 goto clunk_fid;
2008 }
2009 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08002010 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302011 attr_fid->fid, *attr_size);
2012 return attr_fid;
2013clunk_fid:
2014 p9_client_clunk(attr_fid);
2015 attr_fid = NULL;
2016error:
2017 if (attr_fid && (attr_fid != file_fid))
2018 p9_fid_destroy(attr_fid);
2019
2020 return ERR_PTR(err);
2021}
2022EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2023
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302024int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2025 u64 attr_size, int flags)
2026{
2027 int err;
2028 struct p9_req_t *req;
2029 struct p9_client *clnt;
2030
Joe Perches5d385152011-11-28 10:40:46 -08002031 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302032 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2033 fid->fid, name, (long long)attr_size, flags);
2034 err = 0;
2035 clnt = fid->clnt;
2036 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2037 fid->fid, name, attr_size, flags);
2038 if (IS_ERR(req)) {
2039 err = PTR_ERR(req);
2040 goto error;
2041 }
Joe Perches5d385152011-11-28 10:40:46 -08002042 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302043 p9_free_req(clnt, req);
2044error:
2045 return err;
2046}
2047EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2048
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002049int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2050{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302051 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002052 struct p9_client *clnt;
2053 struct p9_req_t *req;
2054 char *dataptr;
2055
Joe Perches5d385152011-11-28 10:40:46 -08002056 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00002057 fid->fid, (unsigned long long) offset, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002058
2059 err = 0;
2060 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002061
2062 rsize = fid->iounit;
2063 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2064 rsize = clnt->msize - P9_READDIRHDRSZ;
2065
2066 if (count < rsize)
2067 rsize = count;
2068
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302069 /* Don't bother zerocopy for small IO (< 1024) */
2070 if (clnt->trans_mod->zc_request && rsize > 1024) {
2071 /*
2072 * response header len is 11
2073 * PDU Header(7) + IO Size (4)
2074 */
2075 req = p9_client_zc_rpc(clnt, P9_TREADDIR, data, NULL, rsize, 0,
2076 11, 1, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002077 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302078 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002079 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302080 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002081 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002082 if (IS_ERR(req)) {
2083 err = PTR_ERR(req);
2084 goto error;
2085 }
2086
2087 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2088 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302089 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002090 goto free_and_error;
2091 }
2092
Joe Perches5d385152011-11-28 10:40:46 -08002093 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002094
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302095 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002096 memmove(data, dataptr, count);
2097
2098 p9_free_req(clnt, req);
2099 return count;
2100
2101free_and_error:
2102 p9_free_req(clnt, req);
2103error:
2104 return err;
2105}
2106EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302107
2108int p9_client_mknod_dotl(struct p9_fid *fid, char *name, int mode,
2109 dev_t rdev, gid_t gid, struct p9_qid *qid)
2110{
2111 int err;
2112 struct p9_client *clnt;
2113 struct p9_req_t *req;
2114
2115 err = 0;
2116 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002117 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302118 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2119 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddd", fid->fid, name, mode,
2120 MAJOR(rdev), MINOR(rdev), gid);
2121 if (IS_ERR(req))
2122 return PTR_ERR(req);
2123
2124 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2125 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302126 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302127 goto error;
2128 }
Joe Perches5d385152011-11-28 10:40:46 -08002129 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302130 (unsigned long long)qid->path, qid->version);
2131
2132error:
2133 p9_free_req(clnt, req);
2134 return err;
2135
2136}
2137EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302138
2139int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode,
2140 gid_t gid, struct p9_qid *qid)
2141{
2142 int err;
2143 struct p9_client *clnt;
2144 struct p9_req_t *req;
2145
2146 err = 0;
2147 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002148 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302149 fid->fid, name, mode, gid);
2150 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdd", fid->fid, name, mode,
2151 gid);
2152 if (IS_ERR(req))
2153 return PTR_ERR(req);
2154
2155 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2156 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302157 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302158 goto error;
2159 }
Joe Perches5d385152011-11-28 10:40:46 -08002160 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302161 (unsigned long long)qid->path, qid->version);
2162
2163error:
2164 p9_free_req(clnt, req);
2165 return err;
2166
2167}
2168EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302169
2170int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2171{
2172 int err;
2173 struct p9_client *clnt;
2174 struct p9_req_t *req;
2175
2176 err = 0;
2177 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002178 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302179 "start %lld length %lld proc_id %d client_id %s\n",
2180 fid->fid, flock->type, flock->flags, flock->start,
2181 flock->length, flock->proc_id, flock->client_id);
2182
2183 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2184 flock->flags, flock->start, flock->length,
2185 flock->proc_id, flock->client_id);
2186
2187 if (IS_ERR(req))
2188 return PTR_ERR(req);
2189
2190 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2191 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302192 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302193 goto error;
2194 }
Joe Perches5d385152011-11-28 10:40:46 -08002195 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302196error:
2197 p9_free_req(clnt, req);
2198 return err;
2199
2200}
2201EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302202
2203int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2204{
2205 int err;
2206 struct p9_client *clnt;
2207 struct p9_req_t *req;
2208
2209 err = 0;
2210 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002211 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302212 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2213 glock->start, glock->length, glock->proc_id, glock->client_id);
2214
2215 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2216 glock->start, glock->length, glock->proc_id, glock->client_id);
2217
2218 if (IS_ERR(req))
2219 return PTR_ERR(req);
2220
2221 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2222 &glock->start, &glock->length, &glock->proc_id,
2223 &glock->client_id);
2224 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302225 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302226 goto error;
2227 }
Joe Perches5d385152011-11-28 10:40:46 -08002228 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302229 "proc_id %d client_id %s\n", glock->type, glock->start,
2230 glock->length, glock->proc_id, glock->client_id);
2231error:
2232 p9_free_req(clnt, req);
2233 return err;
2234}
2235EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302236
2237int p9_client_readlink(struct p9_fid *fid, char **target)
2238{
2239 int err;
2240 struct p9_client *clnt;
2241 struct p9_req_t *req;
2242
2243 err = 0;
2244 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002245 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302246
2247 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2248 if (IS_ERR(req))
2249 return PTR_ERR(req);
2250
2251 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2252 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302253 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302254 goto error;
2255 }
Joe Perches5d385152011-11-28 10:40:46 -08002256 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302257error:
2258 p9_free_req(clnt, req);
2259 return err;
2260}
2261EXPORT_SYMBOL(p9_client_readlink);