blob: 32df0a3de2772267d026328154f5d400ae2331ce [file] [log] [blame]
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001/*
2 * net/9p/clnt.c
3 *
4 * 9P Client
5 *
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06006 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05007 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
23 *
24 */
25
Joe Perches5d385152011-11-28 10:40:46 -080026#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050028#include <linux/module.h>
29#include <linux/errno.h>
30#include <linux/fs.h>
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060031#include <linux/poll.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050032#include <linux/idr.h>
33#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050035#include <linux/sched.h>
36#include <linux/uaccess.h>
37#include <net/9p/9p.h>
Eric Van Hensbergenfb0466c2007-10-17 14:31:07 -050038#include <linux/parser.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050039#include <net/9p/client.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050040#include <net/9p/transport.h>
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -050041#include "protocol.h"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050042
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +053043#define CREATE_TRACE_POINTS
44#include <trace/events/9p.h>
45
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060046/*
47 * Client Option Parsing (code inspired by NFS code)
48 * - a little lazy - parse all client options
49 */
50
51enum {
52 Opt_msize,
53 Opt_trans,
54 Opt_legacy,
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000055 Opt_version,
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060056 Opt_err,
57};
58
Steven Whitehousea447c092008-10-13 10:46:57 +010059static const match_table_t tokens = {
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060060 {Opt_msize, "msize=%u"},
61 {Opt_legacy, "noextend"},
62 {Opt_trans, "trans=%s"},
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000063 {Opt_version, "version=%s"},
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060064 {Opt_err, NULL},
65};
66
Sripathi Kodi342fee12010-03-05 18:50:14 +000067inline int p9_is_proto_dotl(struct p9_client *clnt)
68{
Eric Dumazeta02cec22010-09-22 20:43:57 +000069 return clnt->proto_version == p9_proto_2000L;
Sripathi Kodi342fee12010-03-05 18:50:14 +000070}
71EXPORT_SYMBOL(p9_is_proto_dotl);
72
73inline int p9_is_proto_dotu(struct p9_client *clnt)
74{
Eric Dumazeta02cec22010-09-22 20:43:57 +000075 return clnt->proto_version == p9_proto_2000u;
Sripathi Kodi342fee12010-03-05 18:50:14 +000076}
77EXPORT_SYMBOL(p9_is_proto_dotu);
78
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000079/* Interpret mount option for protocol version */
Prem Karat4d630552011-05-06 18:35:32 +053080static int get_protocol_version(char *s)
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000081{
Dan Carpenter3dc9fef2010-04-05 14:37:28 -050082 int version = -EINVAL;
83
Prem Karat4d630552011-05-06 18:35:32 +053084 if (!strcmp(s, "9p2000")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000085 version = p9_proto_legacy;
Joe Perches5d385152011-11-28 10:40:46 -080086 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
Prem Karat4d630552011-05-06 18:35:32 +053087 } else if (!strcmp(s, "9p2000.u")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000088 version = p9_proto_2000u;
Joe Perches5d385152011-11-28 10:40:46 -080089 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
Prem Karat4d630552011-05-06 18:35:32 +053090 } else if (!strcmp(s, "9p2000.L")) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +000091 version = p9_proto_2000L;
Joe Perches5d385152011-11-28 10:40:46 -080092 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
Prem Karat4d630552011-05-06 18:35:32 +053093 } else
Joe Perches5d385152011-11-28 10:40:46 -080094 pr_info("Unknown protocol version %s\n", s);
Prem Karat4d630552011-05-06 18:35:32 +053095
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000096 return version;
97}
98
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060099/**
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600100 * parse_options - parse mount options into client structure
101 * @opts: options string passed from mount
102 * @clnt: existing v9fs client information
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600103 *
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600104 * Return 0 upon success, -ERRNO upon failure
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600105 */
106
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600107static int parse_opts(char *opts, struct p9_client *clnt)
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600108{
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600109 char *options, *tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600110 char *p;
111 substring_t args[MAX_OPT_ARGS];
112 int option;
Prem Karat4d630552011-05-06 18:35:32 +0530113 char *s;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600114 int ret = 0;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600115
Sripathi Kodi342fee12010-03-05 18:50:14 +0000116 clnt->proto_version = p9_proto_2000u;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600117 clnt->msize = 8192;
118
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600119 if (!opts)
120 return 0;
121
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600122 tmp_options = kstrdup(opts, GFP_KERNEL);
123 if (!tmp_options) {
Joe Perches5d385152011-11-28 10:40:46 -0800124 p9_debug(P9_DEBUG_ERROR,
125 "failed to allocate copy of option string\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600126 return -ENOMEM;
127 }
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600128 options = tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600129
130 while ((p = strsep(&options, ",")) != NULL) {
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530131 int token, r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600132 if (!*p)
133 continue;
134 token = match_token(p, tokens, args);
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530135 switch (token) {
136 case Opt_msize:
137 r = match_int(&args[0], &option);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600138 if (r < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800139 p9_debug(P9_DEBUG_ERROR,
140 "integer field, but no integer?\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600141 ret = r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600142 continue;
143 }
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600144 clnt->msize = option;
145 break;
146 case Opt_trans:
Prem Karat4d630552011-05-06 18:35:32 +0530147 s = match_strdup(&args[0]);
148 if (!s) {
149 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800150 p9_debug(P9_DEBUG_ERROR,
151 "problem allocating copy of trans arg\n");
Prem Karat4d630552011-05-06 18:35:32 +0530152 goto free_and_return;
153 }
154 clnt->trans_mod = v9fs_get_trans_by_name(s);
155 if (clnt->trans_mod == NULL) {
Joe Perches5d385152011-11-28 10:40:46 -0800156 pr_info("Could not find request transport: %s\n",
157 s);
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600158 ret = -EINVAL;
Prem Karat4d630552011-05-06 18:35:32 +0530159 kfree(s);
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600160 goto free_and_return;
161 }
Prem Karat4d630552011-05-06 18:35:32 +0530162 kfree(s);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600163 break;
164 case Opt_legacy:
Sripathi Kodi342fee12010-03-05 18:50:14 +0000165 clnt->proto_version = p9_proto_legacy;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600166 break;
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000167 case Opt_version:
Prem Karat4d630552011-05-06 18:35:32 +0530168 s = match_strdup(&args[0]);
169 if (!s) {
170 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800171 p9_debug(P9_DEBUG_ERROR,
172 "problem allocating copy of version arg\n");
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000173 goto free_and_return;
Prem Karat4d630552011-05-06 18:35:32 +0530174 }
175 ret = get_protocol_version(s);
176 if (ret == -EINVAL) {
177 kfree(s);
178 goto free_and_return;
179 }
180 kfree(s);
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000181 clnt->proto_version = ret;
182 break;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600183 default:
184 continue;
185 }
186 }
Tejun Heo72029fe2008-09-24 16:22:23 -0500187
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600188free_and_return:
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600189 kfree(tmp_options);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600190 return ret;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600191}
192
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500193/**
194 * p9_tag_alloc - lookup/allocate a request by tag
195 * @c: client session to lookup tag within
196 * @tag: numeric id for transaction
197 *
198 * this is a simple array lookup, but will grow the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300199 * request_slots as necessary to accommodate transaction
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500200 * ids which did not previously have a slot.
201 *
202 * this code relies on the client spinlock to manage locks, its
203 * possible we should switch to something else, but I'd rather
204 * stick with something low-overhead for the common case.
205 *
206 */
207
Dan Carpenteref6b0802011-08-26 19:57:40 +0300208static struct p9_req_t *
209p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500210{
211 unsigned long flags;
212 int row, col;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500213 struct p9_req_t *req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530214 int alloc_msize = min(c->msize, max_size);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500215
216 /* This looks up the original request by tag so we know which
217 * buffer to read the data into */
218 tag++;
219
220 if (tag >= c->max_tag) {
221 spin_lock_irqsave(&c->lock, flags);
222 /* check again since original check was outside of lock */
223 while (tag >= c->max_tag) {
224 row = (tag / P9_ROW_MAXTAG);
225 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
226 sizeof(struct p9_req_t), GFP_ATOMIC);
227
228 if (!c->reqs[row]) {
Joe Perches5d385152011-11-28 10:40:46 -0800229 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergene45c5402008-10-22 18:54:47 -0500230 spin_unlock_irqrestore(&c->lock, flags);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500231 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500232 }
233 for (col = 0; col < P9_ROW_MAXTAG; col++) {
234 c->reqs[row][col].status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500235 c->reqs[row][col].tc = NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500236 }
237 c->max_tag += P9_ROW_MAXTAG;
238 }
239 spin_unlock_irqrestore(&c->lock, flags);
240 }
241 row = tag / P9_ROW_MAXTAG;
242 col = tag % P9_ROW_MAXTAG;
243
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500244 req = &c->reqs[row][col];
245 if (!req->tc) {
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530246 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500247 if (!req->wq) {
Joe Perches5d385152011-11-28 10:40:46 -0800248 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500249 return ERR_PTR(-ENOMEM);
250 }
251 init_waitqueue_head(req->wq);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530252 req->tc = kmalloc(sizeof(struct p9_fcall) + alloc_msize,
253 GFP_NOFS);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530254 req->rc = kmalloc(sizeof(struct p9_fcall) + alloc_msize,
255 GFP_NOFS);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500256 if ((!req->tc) || (!req->rc)) {
Joe Perches5d385152011-11-28 10:40:46 -0800257 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500258 kfree(req->tc);
259 kfree(req->rc);
Tom Tucker45abdf12008-10-23 16:33:25 -0500260 kfree(req->wq);
261 req->tc = req->rc = NULL;
262 req->wq = NULL;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500263 return ERR_PTR(-ENOMEM);
264 }
Dan Carpenter5635fd02011-08-26 19:55:59 +0300265 req->tc->capacity = alloc_msize;
266 req->rc->capacity = alloc_msize;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500267 req->tc->sdata = (char *) req->tc + sizeof(struct p9_fcall);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500268 req->rc->sdata = (char *) req->rc + sizeof(struct p9_fcall);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500269 }
270
271 p9pdu_reset(req->tc);
272 p9pdu_reset(req->rc);
273
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500274 req->tc->tag = tag-1;
275 req->status = REQ_STATUS_ALLOC;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500276
277 return &c->reqs[row][col];
278}
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500279
280/**
281 * p9_tag_lookup - lookup a request by tag
282 * @c: client session to lookup tag within
283 * @tag: numeric id for transaction
284 *
285 */
286
287struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
288{
289 int row, col;
290
291 /* This looks up the original request by tag so we know which
292 * buffer to read the data into */
293 tag++;
294
Eric Van Hensbergenb85f7d92011-07-13 19:12:18 -0500295 if(tag >= c->max_tag)
296 return NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500297
298 row = tag / P9_ROW_MAXTAG;
299 col = tag % P9_ROW_MAXTAG;
300
301 return &c->reqs[row][col];
302}
303EXPORT_SYMBOL(p9_tag_lookup);
304
305/**
306 * p9_tag_init - setup tags structure and contents
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600307 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500308 *
309 * This initializes the tags structure for each client instance.
310 *
311 */
312
313static int p9_tag_init(struct p9_client *c)
314{
315 int err = 0;
316
317 c->tagpool = p9_idpool_create();
318 if (IS_ERR(c->tagpool)) {
319 err = PTR_ERR(c->tagpool);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500320 goto error;
321 }
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000322 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
323 if (err < 0) {
324 p9_idpool_destroy(c->tagpool);
325 goto error;
326 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500327 c->max_tag = 0;
328error:
329 return err;
330}
331
332/**
333 * p9_tag_cleanup - cleans up tags structure and reclaims resources
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600334 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500335 *
336 * This frees resources associated with the tags structure
337 *
338 */
339static void p9_tag_cleanup(struct p9_client *c)
340{
341 int row, col;
342
343 /* check to insure all requests are idle */
344 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
345 for (col = 0; col < P9_ROW_MAXTAG; col++) {
346 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
Joe Perches5d385152011-11-28 10:40:46 -0800347 p9_debug(P9_DEBUG_MUX,
348 "Attempting to cleanup non-free tag %d,%d\n",
349 row, col);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500350 /* TODO: delay execution of cleanup */
351 return;
352 }
353 }
354 }
355
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000356 if (c->tagpool) {
357 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500358 p9_idpool_destroy(c->tagpool);
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000359 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500360
361 /* free requests associated with tags */
362 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500363 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500364 kfree(c->reqs[row][col].wq);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500365 kfree(c->reqs[row][col].tc);
366 kfree(c->reqs[row][col].rc);
367 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500368 kfree(c->reqs[row]);
369 }
370 c->max_tag = 0;
371}
372
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500373/**
374 * p9_free_req - free a request and clean-up as necessary
375 * c: client state
376 * r: request to release
377 *
378 */
379
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500380static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500381{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500382 int tag = r->tc->tag;
Joe Perches5d385152011-11-28 10:40:46 -0800383 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500384
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500385 r->status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500386 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
387 p9_idpool_put(tag, c->tagpool);
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500388}
389
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500390/**
391 * p9_client_cb - call back from transport to client
392 * c: client state
393 * req: request received
394 *
395 */
396void p9_client_cb(struct p9_client *c, struct p9_req_t *req)
397{
Joe Perches5d385152011-11-28 10:40:46 -0800398 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500399 wake_up(req->wq);
Joe Perches5d385152011-11-28 10:40:46 -0800400 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500401}
402EXPORT_SYMBOL(p9_client_cb);
403
404/**
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500405 * p9_parse_header - parse header arguments out of a packet
406 * @pdu: packet to parse
407 * @size: size of packet
408 * @type: type of request
409 * @tag: tag of packet
410 * @rewind: set if we need to rewind offset afterwards
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500411 */
412
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500413int
414p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
415 int rewind)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500416{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500417 int8_t r_type;
418 int16_t r_tag;
419 int32_t r_size;
420 int offset = pdu->offset;
421 int err;
422
423 pdu->offset = 0;
424 if (pdu->size == 0)
425 pdu->size = 7;
426
427 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
428 if (err)
429 goto rewind_and_exit;
430
431 pdu->size = r_size;
432 pdu->id = r_type;
433 pdu->tag = r_tag;
434
Joe Perches5d385152011-11-28 10:40:46 -0800435 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
436 pdu->size, pdu->id, pdu->tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500437
438 if (type)
439 *type = r_type;
440 if (tag)
441 *tag = r_tag;
442 if (size)
443 *size = r_size;
444
445
446rewind_and_exit:
447 if (rewind)
448 pdu->offset = offset;
449 return err;
450}
451EXPORT_SYMBOL(p9_parse_header);
452
453/**
454 * p9_check_errors - check 9p packet for error return and process it
455 * @c: current client instance
456 * @req: request to parse and check for error conditions
457 *
458 * returns error code if one is discovered, otherwise returns 0
459 *
460 * this will have to be more complicated if we have multiple
461 * error packet types
462 */
463
464static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
465{
466 int8_t type;
467 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800468 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500469
470 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530471 /*
472 * dump the response from server
473 * This should be after check errors which poplulate pdu_fcall.
474 */
475 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500476 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800477 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500478 return err;
479 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800480 if (type != P9_RERROR && type != P9_RLERROR)
481 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500482
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800483 if (!p9_is_proto_dotl(c)) {
484 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800485 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530486 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800487 if (err)
488 goto out_err;
489
490 if (p9_is_proto_dotu(c))
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500491 err = -ecode;
492
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800493 if (!err || !IS_ERR_VALUE(err)) {
494 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500495
Joe Perches5d385152011-11-28 10:40:46 -0800496 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
497 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800498 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530499 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800500 } else {
501 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
502 err = -ecode;
503
Joe Perches5d385152011-11-28 10:40:46 -0800504 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800505 }
506
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500507 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530508
509out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800510 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530511
512 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500513}
514
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530515/**
516 * p9_check_zc_errors - check 9p packet for error return and process it
517 * @c: current client instance
518 * @req: request to parse and check for error conditions
519 * @in_hdrlen: Size of response protocol buffer.
520 *
521 * returns error code if one is discovered, otherwise returns 0
522 *
523 * this will have to be more complicated if we have multiple
524 * error packet types
525 */
526
527static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
528 char *uidata, int in_hdrlen, int kern_buf)
529{
530 int err;
531 int ecode;
532 int8_t type;
533 char *ename = NULL;
534
535 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530536 /*
537 * dump the response from server
538 * This should be after parse_header which poplulate pdu_fcall.
539 */
540 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530541 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800542 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530543 return err;
544 }
545
546 if (type != P9_RERROR && type != P9_RLERROR)
547 return 0;
548
549 if (!p9_is_proto_dotl(c)) {
550 /* Error is reported in string format */
551 uint16_t len;
552 /* 7 = header size for RERROR, 2 is the size of string len; */
553 int inline_len = in_hdrlen - (7 + 2);
554
555 /* Read the size of error string */
556 err = p9pdu_readf(req->rc, c->proto_version, "w", &len);
557 if (err)
558 goto out_err;
559
560 ename = kmalloc(len + 1, GFP_NOFS);
561 if (!ename) {
562 err = -ENOMEM;
563 goto out_err;
564 }
565 if (len <= inline_len) {
566 /* We have error in protocol buffer itself */
567 if (pdu_read(req->rc, ename, len)) {
568 err = -EFAULT;
569 goto out_free;
570
571 }
572 } else {
573 /*
574 * Part of the data is in user space buffer.
575 */
576 if (pdu_read(req->rc, ename, inline_len)) {
577 err = -EFAULT;
578 goto out_free;
579
580 }
581 if (kern_buf) {
582 memcpy(ename + inline_len, uidata,
583 len - inline_len);
584 } else {
585 err = copy_from_user(ename + inline_len,
586 uidata, len - inline_len);
587 if (err) {
588 err = -EFAULT;
589 goto out_free;
590 }
591 }
592 }
593 ename[len] = 0;
594 if (p9_is_proto_dotu(c)) {
595 /* For dotu we also have error code */
596 err = p9pdu_readf(req->rc,
597 c->proto_version, "d", &ecode);
598 if (err)
599 goto out_free;
600 err = -ecode;
601 }
602 if (!err || !IS_ERR_VALUE(err)) {
603 err = p9_errstr2errno(ename, strlen(ename));
604
Joe Perches5d385152011-11-28 10:40:46 -0800605 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
606 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530607 }
608 kfree(ename);
609 } else {
610 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
611 err = -ecode;
612
Joe Perches5d385152011-11-28 10:40:46 -0800613 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530614 }
615 return err;
616
617out_free:
618 kfree(ename);
619out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800620 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530621 return err;
622}
623
Rob Landleyaca00762011-05-08 18:46:38 +0000624static struct p9_req_t *
625p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
626
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500627/**
628 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600629 * @c: client state
630 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500631 *
Rob Landleyaca00762011-05-08 18:46:38 +0000632 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500633 * the flush request to the original request. The current
634 * code only supports a single flush request although the protocol
635 * allows for multiple flush requests to be sent for a single request.
636 *
637 */
638
639static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
640{
641 struct p9_req_t *req;
642 int16_t oldtag;
643 int err;
644
645 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
646 if (err)
647 return err;
648
Joe Perches5d385152011-11-28 10:40:46 -0800649 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500650
651 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
652 if (IS_ERR(req))
653 return PTR_ERR(req);
654
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500655
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500656 /* if we haven't received a response for oldreq,
657 remove it from the list. */
658 spin_lock(&c->lock);
659 if (oldreq->status == REQ_STATUS_FLSH)
660 list_del(&oldreq->req_list);
661 spin_unlock(&c->lock);
662
663 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500664 return 0;
665}
666
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530667static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
668 int8_t type, int req_size,
669 const char *fmt, va_list ap)
670{
671 int tag, err;
672 struct p9_req_t *req;
673
Joe Perches5d385152011-11-28 10:40:46 -0800674 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530675
676 /* we allow for any status other than disconnected */
677 if (c->status == Disconnected)
678 return ERR_PTR(-EIO);
679
680 /* if status is begin_disconnected we allow only clunk request */
681 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
682 return ERR_PTR(-EIO);
683
684 tag = P9_NOTAG;
685 if (type != P9_TVERSION) {
686 tag = p9_idpool_get(c->tagpool);
687 if (tag < 0)
688 return ERR_PTR(-ENOMEM);
689 }
690
691 req = p9_tag_alloc(c, tag, req_size);
692 if (IS_ERR(req))
693 return req;
694
695 /* marshall the data */
696 p9pdu_prepare(req->tc, tag, type);
697 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
698 if (err)
699 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530700 p9pdu_finalize(c, req->tc);
701 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530702 return req;
703reterr:
704 p9_free_req(c, req);
705 return ERR_PTR(err);
706}
707
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500708/**
709 * p9_client_rpc - issue a request and wait for a response
710 * @c: client session
711 * @type: type of request
712 * @fmt: protocol format string (see protocol.c)
713 *
714 * Returns request structure (which client must free using p9_free_req)
715 */
716
717static struct p9_req_t *
718p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
719{
720 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530721 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500722 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530723 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500724
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530725 va_start(ap, fmt);
726 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
727 va_end(ap);
728 if (IS_ERR(req))
729 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500730
731 if (signal_pending(current)) {
732 sigpending = 1;
733 clear_thread_flag(TIF_SIGPENDING);
734 } else
735 sigpending = 0;
736
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500737 err = c->trans_mod->request(c, req);
738 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530739 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700740 c->status = Disconnected;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500741 goto reterr;
742 }
Jim Garlicka314f272012-02-01 12:48:53 -0800743again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530744 /* Wait for the response */
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500745 err = wait_event_interruptible(*req->wq,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530746 req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500747
Jim Garlicka314f272012-02-01 12:48:53 -0800748 if ((err == -ERESTARTSYS) && (c->status == Connected)
749 && (type == P9_TFLUSH)) {
750 sigpending = 1;
751 clear_thread_flag(TIF_SIGPENDING);
752 goto again;
753 }
754
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500755 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800756 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500757 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500758 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500759 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800760 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500761 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500762 clear_thread_flag(TIF_SIGPENDING);
763
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500764 if (c->trans_mod->cancel(c, req))
765 p9_client_flush(c, req);
766
767 /* if we received the response anyway, don't signal error */
768 if (req->status == REQ_STATUS_RCVD)
769 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500770 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500771 if (sigpending) {
772 spin_lock_irqsave(&current->sighand->siglock, flags);
773 recalc_sigpending();
774 spin_unlock_irqrestore(&current->sighand->siglock, flags);
775 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500776 if (err < 0)
777 goto reterr;
778
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500779 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530780 trace_9p_client_res(c, type, req->rc->tag, err);
781 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500782 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530783reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530784 p9_free_req(c, req);
785 return ERR_PTR(err);
786}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500787
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530788/**
789 * p9_client_zc_rpc - issue a request and wait for a response
790 * @c: client session
791 * @type: type of request
792 * @uidata: user bffer that should be ued for zero copy read
793 * @uodata: user buffer that shoud be user for zero copy write
794 * @inlen: read buffer size
795 * @olen: write buffer size
796 * @hdrlen: reader header size, This is the size of response protocol data
797 * @fmt: protocol format string (see protocol.c)
798 *
799 * Returns request structure (which client must free using p9_free_req)
800 */
801static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
802 char *uidata, char *uodata,
803 int inlen, int olen, int in_hdrlen,
804 int kern_buf, const char *fmt, ...)
805{
806 va_list ap;
807 int sigpending, err;
808 unsigned long flags;
809 struct p9_req_t *req;
810
811 va_start(ap, fmt);
812 /*
813 * We allocate a inline protocol data of only 4k bytes.
814 * The actual content is passed in zero-copy fashion.
815 */
816 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
817 va_end(ap);
818 if (IS_ERR(req))
819 return req;
820
821 if (signal_pending(current)) {
822 sigpending = 1;
823 clear_thread_flag(TIF_SIGPENDING);
824 } else
825 sigpending = 0;
826
827 /* If we are called with KERNEL_DS force kern_buf */
828 if (segment_eq(get_fs(), KERNEL_DS))
829 kern_buf = 1;
830
831 err = c->trans_mod->zc_request(c, req, uidata, uodata,
832 inlen, olen, in_hdrlen, kern_buf);
833 if (err < 0) {
834 if (err == -EIO)
835 c->status = Disconnected;
José Adolfo Galdámez9cc712e2015-10-21 21:52:13 -0600836 if (err != -ERESTARTSYS)
837 goto reterr;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530838 }
839 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800840 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530841 err = req->t_err;
842 }
843 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800844 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530845 sigpending = 1;
846 clear_thread_flag(TIF_SIGPENDING);
847
848 if (c->trans_mod->cancel(c, req))
849 p9_client_flush(c, req);
850
851 /* if we received the response anyway, don't signal error */
852 if (req->status == REQ_STATUS_RCVD)
853 err = 0;
854 }
855 if (sigpending) {
856 spin_lock_irqsave(&current->sighand->siglock, flags);
857 recalc_sigpending();
858 spin_unlock_irqrestore(&current->sighand->siglock, flags);
859 }
860 if (err < 0)
861 goto reterr;
862
863 err = p9_check_zc_errors(c, req, uidata, in_hdrlen, kern_buf);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530864 trace_9p_client_res(c, type, req->rc->tag, err);
865 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530866 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500867reterr:
868 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500869 return ERR_PTR(err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500870}
871
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500872static struct p9_fid *p9_fid_create(struct p9_client *clnt)
873{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500874 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500875 struct p9_fid *fid;
Tom Tuckercac23d62008-10-23 16:31:02 -0500876 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500877
Joe Perches5d385152011-11-28 10:40:46 -0800878 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500879 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
880 if (!fid)
881 return ERR_PTR(-ENOMEM);
882
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500883 ret = p9_idpool_get(clnt->fidpool);
Roel Kluin24e94de2009-01-18 21:32:11 -0800884 if (ret < 0) {
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500885 ret = -ENOSPC;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500886 goto error;
887 }
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500888 fid->fid = ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500889
890 memset(&fid->qid, 0, sizeof(struct p9_qid));
891 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100892 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500893 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600894 fid->rdir = NULL;
Tom Tuckercac23d62008-10-23 16:31:02 -0500895 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500896 list_add(&fid->flist, &clnt->fidlist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500897 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500898
899 return fid;
900
901error:
902 kfree(fid);
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500903 return ERR_PTR(ret);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500904}
905
906static void p9_fid_destroy(struct p9_fid *fid)
907{
908 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500909 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500910
Joe Perches5d385152011-11-28 10:40:46 -0800911 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500912 clnt = fid->clnt;
913 p9_idpool_put(fid->fid, clnt->fidpool);
Tom Tuckercac23d62008-10-23 16:31:02 -0500914 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500915 list_del(&fid->flist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500916 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600917 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500918 kfree(fid);
919}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600920
stephen hemminger32a875a2010-10-19 06:48:16 +0000921static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500922{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500923 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500924 struct p9_req_t *req;
925 char *version;
926 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500927
Joe Perches5d385152011-11-28 10:40:46 -0800928 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
929 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000930
931 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000932 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000933 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000934 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000935 break;
936 case p9_proto_2000u:
937 req = p9_client_rpc(c, P9_TVERSION, "ds",
938 c->msize, "9P2000.u");
939 break;
940 case p9_proto_legacy:
941 req = p9_client_rpc(c, P9_TVERSION, "ds",
942 c->msize, "9P2000");
943 break;
944 default:
945 return -EINVAL;
946 break;
947 }
948
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500949 if (IS_ERR(req))
950 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500951
Sripathi Kodi342fee12010-03-05 18:50:14 +0000952 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500953 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800954 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530955 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500956 goto error;
957 }
958
Joe Perches5d385152011-11-28 10:40:46 -0800959 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000960 if (!strncmp(version, "9P2000.L", 8))
961 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000962 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +0000963 c->proto_version = p9_proto_2000u;
964 else if (!strncmp(version, "9P2000", 6))
965 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500966 else {
967 err = -EREMOTEIO;
968 goto error;
969 }
970
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500971 if (msize < c->msize)
972 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500973
974error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500975 kfree(version);
976 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500977
978 return err;
979}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500980
981struct p9_client *p9_client_create(const char *dev_name, char *options)
982{
983 int err;
984 struct p9_client *clnt;
985
986 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500987 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
988 if (!clnt)
989 return ERR_PTR(-ENOMEM);
990
Tejun Heo72029fe2008-09-24 16:22:23 -0500991 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600992 clnt->trans = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500993 spin_lock_init(&clnt->lock);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500994 INIT_LIST_HEAD(&clnt->fidlist);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500995
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000996 err = p9_tag_init(clnt);
997 if (err < 0)
998 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500999
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001000 err = parse_opts(options, clnt);
1001 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001002 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001003
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001004 if (!clnt->trans_mod)
1005 clnt->trans_mod = v9fs_get_default_trans();
1006
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001007 if (clnt->trans_mod == NULL) {
1008 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001009 p9_debug(P9_DEBUG_ERROR,
1010 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001011 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001012 }
1013
1014 clnt->fidpool = p9_idpool_create();
1015 if (IS_ERR(clnt->fidpool)) {
1016 err = PTR_ERR(clnt->fidpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001017 goto put_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001018 }
1019
Joe Perches5d385152011-11-28 10:40:46 -08001020 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1021 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001022
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001023 err = clnt->trans_mod->create(clnt, dev_name, options);
1024 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001025 goto destroy_fidpool;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001026
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001027 if (clnt->msize > clnt->trans_mod->maxsize)
1028 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001029
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001030 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001031 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001032 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001033
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001034 return clnt;
1035
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001036close_trans:
1037 clnt->trans_mod->close(clnt);
1038destroy_fidpool:
1039 p9_idpool_destroy(clnt->fidpool);
1040put_trans:
1041 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001042destroy_tagpool:
1043 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001044free_client:
1045 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001046 return ERR_PTR(err);
1047}
1048EXPORT_SYMBOL(p9_client_create);
1049
1050void p9_client_destroy(struct p9_client *clnt)
1051{
1052 struct p9_fid *fid, *fidptr;
1053
Joe Perches5d385152011-11-28 10:40:46 -08001054 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001055
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001056 if (clnt->trans_mod)
1057 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001058
Tejun Heo72029fe2008-09-24 16:22:23 -05001059 v9fs_put_trans(clnt->trans_mod);
1060
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001061 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
Joe Perches5d385152011-11-28 10:40:46 -08001062 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001063 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001064 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001065
Eric Van Hensbergen0af88872007-07-13 16:47:58 -05001066 if (clnt->fidpool)
1067 p9_idpool_destroy(clnt->fidpool);
1068
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001069 p9_tag_cleanup(clnt);
1070
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001071 kfree(clnt);
1072}
1073EXPORT_SYMBOL(p9_client_destroy);
1074
1075void p9_client_disconnect(struct p9_client *clnt)
1076{
Joe Perches5d385152011-11-28 10:40:46 -08001077 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001078 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001079}
1080EXPORT_SYMBOL(p9_client_disconnect);
1081
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001082void p9_client_begin_disconnect(struct p9_client *clnt)
1083{
Joe Perches5d385152011-11-28 10:40:46 -08001084 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001085 clnt->status = BeginDisconnect;
1086}
1087EXPORT_SYMBOL(p9_client_begin_disconnect);
1088
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001089struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Latchesar Ionkovba176742007-10-17 14:31:07 -05001090 char *uname, u32 n_uname, char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001091{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301092 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001093 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001094 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001095 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001096
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001097
Joe Perches5d385152011-11-28 10:40:46 -08001098 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1099 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001100 fid = p9_fid_create(clnt);
1101 if (IS_ERR(fid)) {
1102 err = PTR_ERR(fid);
1103 fid = NULL;
1104 goto error;
1105 }
1106
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001107 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?d", fid->fid,
1108 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1109 if (IS_ERR(req)) {
1110 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001111 goto error;
1112 }
1113
Sripathi Kodi342fee12010-03-05 18:50:14 +00001114 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001115 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301116 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001117 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001118 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001119 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001120
Joe Perches5d385152011-11-28 10:40:46 -08001121 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1122 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001123
1124 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1125
1126 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001127 return fid;
1128
1129error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001130 if (fid)
1131 p9_fid_destroy(fid);
1132 return ERR_PTR(err);
1133}
1134EXPORT_SYMBOL(p9_client_attach);
1135
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301136struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1137 char **wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001138{
1139 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001140 struct p9_client *clnt;
1141 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001142 struct p9_qid *wqids;
1143 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301144 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001145
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001146 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001147 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001148 clnt = oldfid->clnt;
1149 if (clone) {
1150 fid = p9_fid_create(clnt);
1151 if (IS_ERR(fid)) {
1152 err = PTR_ERR(fid);
1153 fid = NULL;
1154 goto error;
1155 }
1156
1157 fid->uid = oldfid->uid;
1158 } else
1159 fid = oldfid;
1160
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001161
Joe Perches5d385152011-11-28 10:40:46 -08001162 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1163 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001164
1165 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1166 nwname, wnames);
1167 if (IS_ERR(req)) {
1168 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001169 goto error;
1170 }
1171
Sripathi Kodi342fee12010-03-05 18:50:14 +00001172 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001173 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301174 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001175 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001176 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001177 }
1178 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001179
Joe Perches5d385152011-11-28 10:40:46 -08001180 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001181
1182 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001183 err = -ENOENT;
1184 goto clunk_fid;
1185 }
1186
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001187 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001188 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001189 count, wqids[count].type,
1190 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001191 wqids[count].version);
1192
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001193 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001194 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001195 else
1196 fid->qid = oldfid->qid;
1197
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001198 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001199 return fid;
1200
1201clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001202 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001203 p9_client_clunk(fid);
1204 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001205
1206error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001207 if (fid && (fid != oldfid))
1208 p9_fid_destroy(fid);
1209
1210 return ERR_PTR(err);
1211}
1212EXPORT_SYMBOL(p9_client_walk);
1213
1214int p9_client_open(struct p9_fid *fid, int mode)
1215{
1216 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001217 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001218 struct p9_req_t *req;
1219 struct p9_qid qid;
1220 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001221
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001222 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001223 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301224 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1225 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001226
1227 if (fid->mode != -1)
1228 return -EINVAL;
1229
M. Mohan Kumaref565472010-06-22 19:47:50 +05301230 if (p9_is_proto_dotl(clnt))
1231 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1232 else
1233 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001234 if (IS_ERR(req)) {
1235 err = PTR_ERR(req);
1236 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001237 }
1238
Sripathi Kodi342fee12010-03-05 18:50:14 +00001239 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001240 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301241 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001242 goto free_and_error;
1243 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001244
Joe Perches5d385152011-11-28 10:40:46 -08001245 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301246 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1247 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001248
1249 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001250 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001251
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001252free_and_error:
1253 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001254error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001255 return err;
1256}
1257EXPORT_SYMBOL(p9_client_open);
1258
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001259int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
1260 gid_t gid, struct p9_qid *qid)
1261{
1262 int err = 0;
1263 struct p9_client *clnt;
1264 struct p9_req_t *req;
1265 int iounit;
1266
Joe Perches5d385152011-11-28 10:40:46 -08001267 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001268 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1269 ofid->fid, name, flags, mode, gid);
1270 clnt = ofid->clnt;
1271
1272 if (ofid->mode != -1)
1273 return -EINVAL;
1274
1275 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddd", ofid->fid, name, flags,
1276 mode, gid);
1277 if (IS_ERR(req)) {
1278 err = PTR_ERR(req);
1279 goto error;
1280 }
1281
1282 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1283 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301284 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001285 goto free_and_error;
1286 }
1287
Joe Perches5d385152011-11-28 10:40:46 -08001288 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001289 qid->type,
1290 (unsigned long long)qid->path,
1291 qid->version, iounit);
1292
1293 ofid->mode = mode;
1294 ofid->iounit = iounit;
1295
1296free_and_error:
1297 p9_free_req(clnt, req);
1298error:
1299 return err;
1300}
1301EXPORT_SYMBOL(p9_client_create_dotl);
1302
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001303int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
1304 char *extension)
1305{
1306 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001307 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001308 struct p9_req_t *req;
1309 struct p9_qid qid;
1310 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001311
Joe Perches5d385152011-11-28 10:40:46 -08001312 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001313 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001314 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001315 clnt = fid->clnt;
1316
1317 if (fid->mode != -1)
1318 return -EINVAL;
1319
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001320 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1321 mode, extension);
1322 if (IS_ERR(req)) {
1323 err = PTR_ERR(req);
1324 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001325 }
1326
Sripathi Kodi342fee12010-03-05 18:50:14 +00001327 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001328 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301329 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001330 goto free_and_error;
1331 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001332
Joe Perches5d385152011-11-28 10:40:46 -08001333 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001334 qid.type,
1335 (unsigned long long)qid.path,
1336 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001337
1338 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001339 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001340
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001341free_and_error:
1342 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001343error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001344 return err;
1345}
1346EXPORT_SYMBOL(p9_client_fcreate);
1347
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001348int p9_client_symlink(struct p9_fid *dfid, char *name, char *symtgt, gid_t gid,
1349 struct p9_qid *qid)
1350{
1351 int err = 0;
1352 struct p9_client *clnt;
1353 struct p9_req_t *req;
1354
Joe Perches5d385152011-11-28 10:40:46 -08001355 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001356 dfid->fid, name, symtgt);
1357 clnt = dfid->clnt;
1358
1359 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssd", dfid->fid, name, symtgt,
1360 gid);
1361 if (IS_ERR(req)) {
1362 err = PTR_ERR(req);
1363 goto error;
1364 }
1365
1366 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1367 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301368 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001369 goto free_and_error;
1370 }
1371
Joe Perches5d385152011-11-28 10:40:46 -08001372 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001373 qid->type, (unsigned long long)qid->path, qid->version);
1374
1375free_and_error:
1376 p9_free_req(clnt, req);
1377error:
1378 return err;
1379}
1380EXPORT_SYMBOL(p9_client_symlink);
1381
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001382int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, char *newname)
1383{
1384 struct p9_client *clnt;
1385 struct p9_req_t *req;
1386
Joe Perches5d385152011-11-28 10:40:46 -08001387 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001388 dfid->fid, oldfid->fid, newname);
1389 clnt = dfid->clnt;
1390 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1391 newname);
1392 if (IS_ERR(req))
1393 return PTR_ERR(req);
1394
Joe Perches5d385152011-11-28 10:40:46 -08001395 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001396 p9_free_req(clnt, req);
1397 return 0;
1398}
1399EXPORT_SYMBOL(p9_client_link);
1400
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001401int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001402{
1403 int err;
1404 struct p9_client *clnt;
1405 struct p9_req_t *req;
1406
Joe Perches5d385152011-11-28 10:40:46 -08001407 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001408 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001409 err = 0;
1410 clnt = fid->clnt;
1411
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001412 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001413 if (IS_ERR(req)) {
1414 err = PTR_ERR(req);
1415 goto error;
1416 }
1417
Joe Perches5d385152011-11-28 10:40:46 -08001418 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001419
1420 p9_free_req(clnt, req);
1421
1422error:
1423 return err;
1424}
1425EXPORT_SYMBOL(p9_client_fsync);
1426
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001427int p9_client_clunk(struct p9_fid *fid)
1428{
1429 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001430 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001431 struct p9_req_t *req;
Jim Garlick208f3c22012-02-26 14:49:57 -06001432 int retries = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001433
jvrao8e44a082010-08-25 16:27:06 +00001434 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001435 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1436 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001437 dump_stack();
1438 return 0;
1439 }
1440
Jim Garlick208f3c22012-02-26 14:49:57 -06001441again:
1442 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1443 retries);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001444 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001445 clnt = fid->clnt;
1446
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001447 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1448 if (IS_ERR(req)) {
1449 err = PTR_ERR(req);
1450 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001451 }
1452
Joe Perches5d385152011-11-28 10:40:46 -08001453 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001454
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001455 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001456error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001457 /*
1458 * Fid is not valid even after a failed clunk
Jim Garlick208f3c22012-02-26 14:49:57 -06001459 * If interrupted, retry once then give up and
1460 * leak fid until umount.
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001461 */
Jim Garlick208f3c22012-02-26 14:49:57 -06001462 if (err == -ERESTARTSYS) {
1463 if (retries++ == 0)
1464 goto again;
1465 } else
1466 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001467 return err;
1468}
1469EXPORT_SYMBOL(p9_client_clunk);
1470
1471int p9_client_remove(struct p9_fid *fid)
1472{
1473 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001474 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001475 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001476
Joe Perches5d385152011-11-28 10:40:46 -08001477 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001478 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001479 clnt = fid->clnt;
1480
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001481 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1482 if (IS_ERR(req)) {
1483 err = PTR_ERR(req);
1484 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001485 }
1486
Joe Perches5d385152011-11-28 10:40:46 -08001487 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001488
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001489 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001490error:
Jim Garlick208f3c22012-02-26 14:49:57 -06001491 if (err == -ERESTARTSYS)
1492 p9_client_clunk(fid);
1493 else
1494 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001495 return err;
1496}
1497EXPORT_SYMBOL(p9_client_remove);
1498
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301499int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1500{
1501 int err = 0;
1502 struct p9_req_t *req;
1503 struct p9_client *clnt;
1504
Joe Perches5d385152011-11-28 10:40:46 -08001505 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301506 dfid->fid, name, flags);
1507
1508 clnt = dfid->clnt;
1509 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1510 if (IS_ERR(req)) {
1511 err = PTR_ERR(req);
1512 goto error;
1513 }
Joe Perches5d385152011-11-28 10:40:46 -08001514 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301515
1516 p9_free_req(clnt, req);
1517error:
1518 return err;
1519}
1520EXPORT_SYMBOL(p9_client_unlinkat);
1521
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001522int
1523p9_client_read(struct p9_fid *fid, char *data, char __user *udata, u64 offset,
1524 u32 count)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001525{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001526 char *dataptr;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301527 int kernel_buf = 0;
1528 struct p9_req_t *req;
1529 struct p9_client *clnt;
1530 int err, rsize, non_zc = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001531
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301532
Joe Perches5d385152011-11-28 10:40:46 -08001533 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301534 fid->fid, (long long unsigned) offset, count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001535 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001536 clnt = fid->clnt;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001537
1538 rsize = fid->iounit;
1539 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1540 rsize = clnt->msize - P9_IOHDRSZ;
1541
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001542 if (count < rsize)
1543 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001544
Rob Landleyaca00762011-05-08 18:46:38 +00001545 /* Don't bother zerocopy for small IO (< 1024) */
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301546 if (clnt->trans_mod->zc_request && rsize > 1024) {
1547 char *indata;
1548 if (data) {
1549 kernel_buf = 1;
1550 indata = data;
1551 } else
1552 indata = (char *)udata;
1553 /*
1554 * response header len is 11
1555 * PDU Header(7) + IO Size (4)
1556 */
1557 req = p9_client_zc_rpc(clnt, P9_TREAD, indata, NULL, rsize, 0,
1558 11, kernel_buf, "dqd", fid->fid,
1559 offset, rsize);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001560 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301561 non_zc = 1;
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001562 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301563 rsize);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001564 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001565 if (IS_ERR(req)) {
1566 err = PTR_ERR(req);
1567 goto error;
1568 }
1569
Sripathi Kodi342fee12010-03-05 18:50:14 +00001570 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001571 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301572 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001573 goto free_and_error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001574 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001575
Joe Perches5d385152011-11-28 10:40:46 -08001576 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001577
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301578 if (non_zc) {
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001579 if (data) {
1580 memmove(data, dataptr, count);
1581 } else {
1582 err = copy_to_user(udata, dataptr, count);
1583 if (err) {
1584 err = -EFAULT;
1585 goto free_and_error;
1586 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001587 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001588 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001589 p9_free_req(clnt, req);
1590 return count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001591
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001592free_and_error:
1593 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001594error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001595 return err;
1596}
1597EXPORT_SYMBOL(p9_client_read);
1598
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001599int
1600p9_client_write(struct p9_fid *fid, char *data, const char __user *udata,
1601 u64 offset, u32 count)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001602{
David S. Miller095d3da2011-04-12 15:58:41 -07001603 int err, rsize;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301604 int kernel_buf = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001605 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001606 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001607
Joe Perches5d385152011-11-28 10:40:46 -08001608 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001609 fid->fid, (long long unsigned) offset, count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001610 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001611 clnt = fid->clnt;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001612
1613 rsize = fid->iounit;
1614 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1615 rsize = clnt->msize - P9_IOHDRSZ;
1616
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001617 if (count < rsize)
1618 rsize = count;
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001619
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301620 /* Don't bother zerocopy for small IO (< 1024) */
1621 if (clnt->trans_mod->zc_request && rsize > 1024) {
1622 char *odata;
1623 if (data) {
1624 kernel_buf = 1;
1625 odata = data;
1626 } else
1627 odata = (char *)udata;
1628 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, odata, 0, rsize,
1629 P9_ZC_HDR_SZ, kernel_buf, "dqd",
1630 fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001631 } else {
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001632 if (data)
1633 req = p9_client_rpc(clnt, P9_TWRITE, "dqD", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301634 offset, rsize, data);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001635 else
1636 req = p9_client_rpc(clnt, P9_TWRITE, "dqU", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301637 offset, rsize, udata);
Venkateswararao Jujjuri (JV)1fc52482011-02-13 16:23:59 -08001638 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001639 if (IS_ERR(req)) {
1640 err = PTR_ERR(req);
1641 goto error;
1642 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001643
Sripathi Kodi342fee12010-03-05 18:50:14 +00001644 err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001645 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301646 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001647 goto free_and_error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001648 }
1649
Joe Perches5d385152011-11-28 10:40:46 -08001650 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001651
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001652 p9_free_req(clnt, req);
1653 return count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001654
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001655free_and_error:
1656 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001657error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001658 return err;
1659}
1660EXPORT_SYMBOL(p9_client_write);
1661
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001662struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001663{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001664 int err;
1665 struct p9_client *clnt;
1666 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1667 struct p9_req_t *req;
1668 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001669
Joe Perches5d385152011-11-28 10:40:46 -08001670 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001671
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001672 if (!ret)
1673 return ERR_PTR(-ENOMEM);
1674
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001675 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001676 clnt = fid->clnt;
1677
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001678 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1679 if (IS_ERR(req)) {
1680 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001681 goto error;
1682 }
1683
Sripathi Kodi342fee12010-03-05 18:50:14 +00001684 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001685 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301686 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001687 p9_free_req(clnt, req);
1688 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001689 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001690
Joe Perches5d385152011-11-28 10:40:46 -08001691 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001692 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1693 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1694 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1695 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001696 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001697 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1698 ret->atime, ret->mtime, (unsigned long long)ret->length,
1699 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001700 ret->n_uid, ret->n_gid, ret->n_muid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001701
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001702 p9_free_req(clnt, req);
1703 return ret;
1704
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001705error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001706 kfree(ret);
1707 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001708}
1709EXPORT_SYMBOL(p9_client_stat);
1710
Sripathi Kodif0853122010-07-12 20:07:23 +05301711struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1712 u64 request_mask)
1713{
1714 int err;
1715 struct p9_client *clnt;
1716 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1717 GFP_KERNEL);
1718 struct p9_req_t *req;
1719
Joe Perches5d385152011-11-28 10:40:46 -08001720 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301721 fid->fid, request_mask);
1722
1723 if (!ret)
1724 return ERR_PTR(-ENOMEM);
1725
1726 err = 0;
1727 clnt = fid->clnt;
1728
1729 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1730 if (IS_ERR(req)) {
1731 err = PTR_ERR(req);
1732 goto error;
1733 }
1734
1735 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1736 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301737 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301738 p9_free_req(clnt, req);
1739 goto error;
1740 }
1741
Joe Perches5d385152011-11-28 10:40:46 -08001742 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301743 "<<< RGETATTR st_result_mask=%lld\n"
1744 "<<< qid=%x.%llx.%x\n"
1745 "<<< st_mode=%8.8x st_nlink=%llu\n"
1746 "<<< st_uid=%d st_gid=%d\n"
1747 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1748 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1749 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1750 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1751 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1752 "<<< st_gen=%lld st_data_version=%lld",
1753 ret->st_result_mask, ret->qid.type, ret->qid.path,
1754 ret->qid.version, ret->st_mode, ret->st_nlink, ret->st_uid,
1755 ret->st_gid, ret->st_rdev, ret->st_size, ret->st_blksize,
1756 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1757 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1758 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1759 ret->st_gen, ret->st_data_version);
1760
1761 p9_free_req(clnt, req);
1762 return ret;
1763
1764error:
1765 kfree(ret);
1766 return ERR_PTR(err);
1767}
1768EXPORT_SYMBOL(p9_client_getattr_dotl);
1769
Sripathi Kodi342fee12010-03-05 18:50:14 +00001770static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001771{
1772 int ret;
1773
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001774 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001775 /* size[2] type[2] dev[4] qid[13] */
1776 /* mode[4] atime[4] mtime[4] length[8]*/
1777 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001778 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001779
1780 if (wst->name)
1781 ret += strlen(wst->name);
1782 if (wst->uid)
1783 ret += strlen(wst->uid);
1784 if (wst->gid)
1785 ret += strlen(wst->gid);
1786 if (wst->muid)
1787 ret += strlen(wst->muid);
1788
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001789 if ((proto_version == p9_proto_2000u) ||
1790 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001791 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1792 if (wst->extension)
1793 ret += strlen(wst->extension);
1794 }
1795
1796 return ret;
1797}
1798
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001799int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1800{
1801 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001802 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001803 struct p9_client *clnt;
1804
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001805 err = 0;
1806 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001807 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001808 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1809 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001810 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1811 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1812 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1813 " uid=%d gid=%d n_muid=%d\n",
1814 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001815 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1816 wst->atime, wst->mtime, (unsigned long long)wst->length,
1817 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001818 wst->n_uid, wst->n_gid, wst->n_muid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001819
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001820 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001821 if (IS_ERR(req)) {
1822 err = PTR_ERR(req);
1823 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001824 }
1825
Joe Perches5d385152011-11-28 10:40:46 -08001826 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001827
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001828 p9_free_req(clnt, req);
1829error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001830 return err;
1831}
1832EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001833
Sripathi Kodi87d78452010-06-18 11:50:10 +05301834int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1835{
1836 int err;
1837 struct p9_req_t *req;
1838 struct p9_client *clnt;
1839
1840 err = 0;
1841 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001842 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1843 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301844 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1845 " atime_sec=%lld atime_nsec=%lld\n"
1846 " mtime_sec=%lld mtime_nsec=%lld\n",
1847 p9attr->valid, p9attr->mode, p9attr->uid, p9attr->gid,
1848 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1849 p9attr->mtime_sec, p9attr->mtime_nsec);
1850
1851 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1852
1853 if (IS_ERR(req)) {
1854 err = PTR_ERR(req);
1855 goto error;
1856 }
Joe Perches5d385152011-11-28 10:40:46 -08001857 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301858 p9_free_req(clnt, req);
1859error:
1860 return err;
1861}
1862EXPORT_SYMBOL(p9_client_setattr);
1863
Sripathi Kodibda8e772010-03-25 12:45:30 +00001864int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1865{
1866 int err;
1867 struct p9_req_t *req;
1868 struct p9_client *clnt;
1869
1870 err = 0;
1871 clnt = fid->clnt;
1872
Joe Perches5d385152011-11-28 10:40:46 -08001873 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001874
1875 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1876 if (IS_ERR(req)) {
1877 err = PTR_ERR(req);
1878 goto error;
1879 }
1880
1881 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1882 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1883 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1884 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301885 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001886 p9_free_req(clnt, req);
1887 goto error;
1888 }
1889
Joe Perches5d385152011-11-28 10:40:46 -08001890 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001891 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1892 "fsid %llu namelen %ld\n",
1893 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1894 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1895 sb->fsid, (long int)sb->namelen);
1896
1897 p9_free_req(clnt, req);
1898error:
1899 return err;
1900}
1901EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001902
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301903int p9_client_rename(struct p9_fid *fid,
1904 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001905{
1906 int err;
1907 struct p9_req_t *req;
1908 struct p9_client *clnt;
1909
1910 err = 0;
1911 clnt = fid->clnt;
1912
Joe Perches5d385152011-11-28 10:40:46 -08001913 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001914 fid->fid, newdirfid->fid, name);
1915
1916 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1917 newdirfid->fid, name);
1918 if (IS_ERR(req)) {
1919 err = PTR_ERR(req);
1920 goto error;
1921 }
1922
Joe Perches5d385152011-11-28 10:40:46 -08001923 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001924
1925 p9_free_req(clnt, req);
1926error:
1927 return err;
1928}
1929EXPORT_SYMBOL(p9_client_rename);
1930
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301931int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1932 struct p9_fid *newdirfid, const char *new_name)
1933{
1934 int err;
1935 struct p9_req_t *req;
1936 struct p9_client *clnt;
1937
1938 err = 0;
1939 clnt = olddirfid->clnt;
1940
Joe Perches5d385152011-11-28 10:40:46 -08001941 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301942 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1943 newdirfid->fid, new_name);
1944
1945 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1946 old_name, newdirfid->fid, new_name);
1947 if (IS_ERR(req)) {
1948 err = PTR_ERR(req);
1949 goto error;
1950 }
1951
Joe Perches5d385152011-11-28 10:40:46 -08001952 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301953 newdirfid->fid, new_name);
1954
1955 p9_free_req(clnt, req);
1956error:
1957 return err;
1958}
1959EXPORT_SYMBOL(p9_client_renameat);
1960
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301961/*
1962 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1963 */
1964struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1965 const char *attr_name, u64 *attr_size)
1966{
1967 int err;
1968 struct p9_req_t *req;
1969 struct p9_client *clnt;
1970 struct p9_fid *attr_fid;
1971
1972 err = 0;
1973 clnt = file_fid->clnt;
1974 attr_fid = p9_fid_create(clnt);
1975 if (IS_ERR(attr_fid)) {
1976 err = PTR_ERR(attr_fid);
1977 attr_fid = NULL;
1978 goto error;
1979 }
Joe Perches5d385152011-11-28 10:40:46 -08001980 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301981 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1982 file_fid->fid, attr_fid->fid, attr_name);
1983
1984 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
1985 file_fid->fid, attr_fid->fid, attr_name);
1986 if (IS_ERR(req)) {
1987 err = PTR_ERR(req);
1988 goto error;
1989 }
1990 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
1991 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301992 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301993 p9_free_req(clnt, req);
1994 goto clunk_fid;
1995 }
1996 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08001997 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301998 attr_fid->fid, *attr_size);
1999 return attr_fid;
2000clunk_fid:
2001 p9_client_clunk(attr_fid);
2002 attr_fid = NULL;
2003error:
2004 if (attr_fid && (attr_fid != file_fid))
2005 p9_fid_destroy(attr_fid);
2006
2007 return ERR_PTR(err);
2008}
2009EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2010
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302011int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2012 u64 attr_size, int flags)
2013{
2014 int err;
2015 struct p9_req_t *req;
2016 struct p9_client *clnt;
2017
Joe Perches5d385152011-11-28 10:40:46 -08002018 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302019 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2020 fid->fid, name, (long long)attr_size, flags);
2021 err = 0;
2022 clnt = fid->clnt;
2023 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2024 fid->fid, name, attr_size, flags);
2025 if (IS_ERR(req)) {
2026 err = PTR_ERR(req);
2027 goto error;
2028 }
Joe Perches5d385152011-11-28 10:40:46 -08002029 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302030 p9_free_req(clnt, req);
2031error:
2032 return err;
2033}
2034EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2035
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002036int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2037{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302038 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002039 struct p9_client *clnt;
2040 struct p9_req_t *req;
2041 char *dataptr;
2042
Joe Perches5d385152011-11-28 10:40:46 -08002043 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002044 fid->fid, (long long unsigned) offset, count);
2045
2046 err = 0;
2047 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002048
2049 rsize = fid->iounit;
2050 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2051 rsize = clnt->msize - P9_READDIRHDRSZ;
2052
2053 if (count < rsize)
2054 rsize = count;
2055
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302056 /* Don't bother zerocopy for small IO (< 1024) */
2057 if (clnt->trans_mod->zc_request && rsize > 1024) {
2058 /*
2059 * response header len is 11
2060 * PDU Header(7) + IO Size (4)
2061 */
2062 req = p9_client_zc_rpc(clnt, P9_TREADDIR, data, NULL, rsize, 0,
2063 11, 1, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002064 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302065 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002066 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302067 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002068 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002069 if (IS_ERR(req)) {
2070 err = PTR_ERR(req);
2071 goto error;
2072 }
2073
2074 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2075 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302076 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002077 goto free_and_error;
2078 }
2079
Joe Perches5d385152011-11-28 10:40:46 -08002080 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002081
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302082 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002083 memmove(data, dataptr, count);
2084
2085 p9_free_req(clnt, req);
2086 return count;
2087
2088free_and_error:
2089 p9_free_req(clnt, req);
2090error:
2091 return err;
2092}
2093EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302094
2095int p9_client_mknod_dotl(struct p9_fid *fid, char *name, int mode,
2096 dev_t rdev, gid_t gid, struct p9_qid *qid)
2097{
2098 int err;
2099 struct p9_client *clnt;
2100 struct p9_req_t *req;
2101
2102 err = 0;
2103 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002104 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302105 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2106 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddd", fid->fid, name, mode,
2107 MAJOR(rdev), MINOR(rdev), gid);
2108 if (IS_ERR(req))
2109 return PTR_ERR(req);
2110
2111 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2112 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302113 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302114 goto error;
2115 }
Joe Perches5d385152011-11-28 10:40:46 -08002116 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302117 (unsigned long long)qid->path, qid->version);
2118
2119error:
2120 p9_free_req(clnt, req);
2121 return err;
2122
2123}
2124EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302125
2126int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode,
2127 gid_t gid, struct p9_qid *qid)
2128{
2129 int err;
2130 struct p9_client *clnt;
2131 struct p9_req_t *req;
2132
2133 err = 0;
2134 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002135 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302136 fid->fid, name, mode, gid);
2137 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdd", fid->fid, name, mode,
2138 gid);
2139 if (IS_ERR(req))
2140 return PTR_ERR(req);
2141
2142 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2143 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302144 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302145 goto error;
2146 }
Joe Perches5d385152011-11-28 10:40:46 -08002147 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302148 (unsigned long long)qid->path, qid->version);
2149
2150error:
2151 p9_free_req(clnt, req);
2152 return err;
2153
2154}
2155EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302156
2157int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2158{
2159 int err;
2160 struct p9_client *clnt;
2161 struct p9_req_t *req;
2162
2163 err = 0;
2164 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002165 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302166 "start %lld length %lld proc_id %d client_id %s\n",
2167 fid->fid, flock->type, flock->flags, flock->start,
2168 flock->length, flock->proc_id, flock->client_id);
2169
2170 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2171 flock->flags, flock->start, flock->length,
2172 flock->proc_id, flock->client_id);
2173
2174 if (IS_ERR(req))
2175 return PTR_ERR(req);
2176
2177 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2178 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302179 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302180 goto error;
2181 }
Joe Perches5d385152011-11-28 10:40:46 -08002182 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302183error:
2184 p9_free_req(clnt, req);
2185 return err;
2186
2187}
2188EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302189
2190int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2191{
2192 int err;
2193 struct p9_client *clnt;
2194 struct p9_req_t *req;
2195
2196 err = 0;
2197 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002198 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302199 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2200 glock->start, glock->length, glock->proc_id, glock->client_id);
2201
2202 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2203 glock->start, glock->length, glock->proc_id, glock->client_id);
2204
2205 if (IS_ERR(req))
2206 return PTR_ERR(req);
2207
2208 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2209 &glock->start, &glock->length, &glock->proc_id,
2210 &glock->client_id);
2211 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302212 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302213 goto error;
2214 }
Joe Perches5d385152011-11-28 10:40:46 -08002215 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302216 "proc_id %d client_id %s\n", glock->type, glock->start,
2217 glock->length, glock->proc_id, glock->client_id);
2218error:
2219 p9_free_req(clnt, req);
2220 return err;
2221}
2222EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302223
2224int p9_client_readlink(struct p9_fid *fid, char **target)
2225{
2226 int err;
2227 struct p9_client *clnt;
2228 struct p9_req_t *req;
2229
2230 err = 0;
2231 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002232 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302233
2234 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2235 if (IS_ERR(req))
2236 return PTR_ERR(req);
2237
2238 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2239 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302240 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302241 goto error;
2242 }
Joe Perches5d385152011-11-28 10:40:46 -08002243 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302244error:
2245 p9_free_req(clnt, req);
2246 return err;
2247}
2248EXPORT_SYMBOL(p9_client_readlink);