blob: f1517ca8aba3b476ceb9cfc406f6485424907d29 [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>
Al Viro4f3b35c2015-04-01 19:57:53 -040037#include <linux/uio.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050038#include <net/9p/9p.h>
Eric Van Hensbergenfb0466c2007-10-17 14:31:07 -050039#include <linux/parser.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050040#include <net/9p/client.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050041#include <net/9p/transport.h>
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -050042#include "protocol.h"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050043
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +053044#define CREATE_TRACE_POINTS
45#include <trace/events/9p.h>
46
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060047/*
48 * Client Option Parsing (code inspired by NFS code)
49 * - a little lazy - parse all client options
50 */
51
52enum {
53 Opt_msize,
54 Opt_trans,
55 Opt_legacy,
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000056 Opt_version,
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060057 Opt_err,
58};
59
Steven Whitehousea447c092008-10-13 10:46:57 +010060static const match_table_t tokens = {
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060061 {Opt_msize, "msize=%u"},
62 {Opt_legacy, "noextend"},
63 {Opt_trans, "trans=%s"},
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000064 {Opt_version, "version=%s"},
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060065 {Opt_err, NULL},
66};
67
Sripathi Kodi342fee12010-03-05 18:50:14 +000068inline int p9_is_proto_dotl(struct p9_client *clnt)
69{
Eric Dumazeta02cec22010-09-22 20:43:57 +000070 return clnt->proto_version == p9_proto_2000L;
Sripathi Kodi342fee12010-03-05 18:50:14 +000071}
72EXPORT_SYMBOL(p9_is_proto_dotl);
73
74inline int p9_is_proto_dotu(struct p9_client *clnt)
75{
Eric Dumazeta02cec22010-09-22 20:43:57 +000076 return clnt->proto_version == p9_proto_2000u;
Sripathi Kodi342fee12010-03-05 18:50:14 +000077}
78EXPORT_SYMBOL(p9_is_proto_dotu);
79
Simon Derr43def352012-08-10 15:52:06 +020080/*
81 * Some error codes are taken directly from the server replies,
82 * make sure they are valid.
83 */
84static int safe_errno(int err)
85{
86 if ((err > 0) || (err < -MAX_ERRNO)) {
87 p9_debug(P9_DEBUG_ERROR, "Invalid error code %d\n", err);
88 return -EPROTO;
89 }
90 return err;
91}
92
93
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000094/* Interpret mount option for protocol version */
Prem Karat4d630552011-05-06 18:35:32 +053095static int get_protocol_version(char *s)
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000096{
Dan Carpenter3dc9fef2010-04-05 14:37:28 -050097 int version = -EINVAL;
98
Prem Karat4d630552011-05-06 18:35:32 +053099 if (!strcmp(s, "9p2000")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000100 version = p9_proto_legacy;
Joe Perches5d385152011-11-28 10:40:46 -0800101 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
Prem Karat4d630552011-05-06 18:35:32 +0530102 } else if (!strcmp(s, "9p2000.u")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000103 version = p9_proto_2000u;
Joe Perches5d385152011-11-28 10:40:46 -0800104 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
Prem Karat4d630552011-05-06 18:35:32 +0530105 } else if (!strcmp(s, "9p2000.L")) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000106 version = p9_proto_2000L;
Joe Perches5d385152011-11-28 10:40:46 -0800107 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
Prem Karat4d630552011-05-06 18:35:32 +0530108 } else
Joe Perches5d385152011-11-28 10:40:46 -0800109 pr_info("Unknown protocol version %s\n", s);
Prem Karat4d630552011-05-06 18:35:32 +0530110
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000111 return version;
112}
113
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600114/**
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600115 * parse_options - parse mount options into client structure
116 * @opts: options string passed from mount
117 * @clnt: existing v9fs client information
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600118 *
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600119 * Return 0 upon success, -ERRNO upon failure
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600120 */
121
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600122static int parse_opts(char *opts, struct p9_client *clnt)
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600123{
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600124 char *options, *tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600125 char *p;
126 substring_t args[MAX_OPT_ARGS];
127 int option;
Prem Karat4d630552011-05-06 18:35:32 +0530128 char *s;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600129 int ret = 0;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600130
Aneesh Kumar K.V095e7992013-05-20 12:20:54 +0530131 clnt->proto_version = p9_proto_2000L;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600132 clnt->msize = 8192;
133
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600134 if (!opts)
135 return 0;
136
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600137 tmp_options = kstrdup(opts, GFP_KERNEL);
138 if (!tmp_options) {
Joe Perches5d385152011-11-28 10:40:46 -0800139 p9_debug(P9_DEBUG_ERROR,
140 "failed to allocate copy of option string\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600141 return -ENOMEM;
142 }
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600143 options = tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600144
145 while ((p = strsep(&options, ",")) != NULL) {
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530146 int token, r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600147 if (!*p)
148 continue;
149 token = match_token(p, tokens, args);
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530150 switch (token) {
151 case Opt_msize:
152 r = match_int(&args[0], &option);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600153 if (r < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800154 p9_debug(P9_DEBUG_ERROR,
155 "integer field, but no integer?\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600156 ret = r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600157 continue;
158 }
Dominique Martinet00f01942018-11-05 09:52:48 +0100159 if (option < 4096) {
160 p9_debug(P9_DEBUG_ERROR,
161 "msize should be at least 4k\n");
162 ret = -EINVAL;
163 continue;
164 }
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600165 clnt->msize = option;
166 break;
167 case Opt_trans:
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 trans arg\n");
Prem Karat4d630552011-05-06 18:35:32 +0530173 goto free_and_return;
174 }
175 clnt->trans_mod = v9fs_get_trans_by_name(s);
176 if (clnt->trans_mod == NULL) {
Joe Perches5d385152011-11-28 10:40:46 -0800177 pr_info("Could not find request transport: %s\n",
178 s);
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600179 ret = -EINVAL;
Prem Karat4d630552011-05-06 18:35:32 +0530180 kfree(s);
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600181 goto free_and_return;
182 }
Prem Karat4d630552011-05-06 18:35:32 +0530183 kfree(s);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600184 break;
185 case Opt_legacy:
Sripathi Kodi342fee12010-03-05 18:50:14 +0000186 clnt->proto_version = p9_proto_legacy;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600187 break;
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000188 case Opt_version:
Prem Karat4d630552011-05-06 18:35:32 +0530189 s = match_strdup(&args[0]);
190 if (!s) {
191 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800192 p9_debug(P9_DEBUG_ERROR,
193 "problem allocating copy of version arg\n");
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000194 goto free_and_return;
Prem Karat4d630552011-05-06 18:35:32 +0530195 }
196 ret = get_protocol_version(s);
197 if (ret == -EINVAL) {
198 kfree(s);
199 goto free_and_return;
200 }
201 kfree(s);
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000202 clnt->proto_version = ret;
203 break;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600204 default:
205 continue;
206 }
207 }
Tejun Heo72029fe2008-09-24 16:22:23 -0500208
Eric Van Hensbergen349d3bb82010-01-15 19:01:10 -0600209free_and_return:
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600210 kfree(tmp_options);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600211 return ret;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600212}
213
Rashika05a782d2014-02-09 19:57:33 +0530214static struct p9_fcall *p9_fcall_alloc(int alloc_msize)
Simon Derr53873202013-06-21 15:32:36 +0200215{
216 struct p9_fcall *fc;
217 fc = kmalloc(sizeof(struct p9_fcall) + alloc_msize, GFP_NOFS);
218 if (!fc)
219 return NULL;
220 fc->capacity = alloc_msize;
221 fc->sdata = (char *) fc + sizeof(struct p9_fcall);
222 return fc;
223}
224
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500225/**
226 * p9_tag_alloc - lookup/allocate a request by tag
227 * @c: client session to lookup tag within
228 * @tag: numeric id for transaction
229 *
230 * this is a simple array lookup, but will grow the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300231 * request_slots as necessary to accommodate transaction
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500232 * ids which did not previously have a slot.
233 *
234 * this code relies on the client spinlock to manage locks, its
235 * possible we should switch to something else, but I'd rather
236 * stick with something low-overhead for the common case.
237 *
238 */
239
Dan Carpenteref6b0802011-08-26 19:57:40 +0300240static struct p9_req_t *
241p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500242{
243 unsigned long flags;
244 int row, col;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500245 struct p9_req_t *req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530246 int alloc_msize = min(c->msize, max_size);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500247
248 /* This looks up the original request by tag so we know which
249 * buffer to read the data into */
250 tag++;
251
252 if (tag >= c->max_tag) {
253 spin_lock_irqsave(&c->lock, flags);
254 /* check again since original check was outside of lock */
255 while (tag >= c->max_tag) {
256 row = (tag / P9_ROW_MAXTAG);
257 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
258 sizeof(struct p9_req_t), GFP_ATOMIC);
259
260 if (!c->reqs[row]) {
Joe Perches5d385152011-11-28 10:40:46 -0800261 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergene45c5402008-10-22 18:54:47 -0500262 spin_unlock_irqrestore(&c->lock, flags);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500263 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500264 }
265 for (col = 0; col < P9_ROW_MAXTAG; col++) {
266 c->reqs[row][col].status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500267 c->reqs[row][col].tc = NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500268 }
269 c->max_tag += P9_ROW_MAXTAG;
270 }
271 spin_unlock_irqrestore(&c->lock, flags);
272 }
273 row = tag / P9_ROW_MAXTAG;
274 col = tag % P9_ROW_MAXTAG;
275
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500276 req = &c->reqs[row][col];
Simon Derr53873202013-06-21 15:32:36 +0200277 if (!req->wq) {
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530278 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
Simon Derrea071aa2013-06-21 15:32:34 +0200279 if (!req->wq)
280 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500281 init_waitqueue_head(req->wq);
Simon Derrea071aa2013-06-21 15:32:34 +0200282 }
Simon Derrea071aa2013-06-21 15:32:34 +0200283
Simon Derr53873202013-06-21 15:32:36 +0200284 if (!req->tc)
285 req->tc = p9_fcall_alloc(alloc_msize);
286 if (!req->rc)
287 req->rc = p9_fcall_alloc(alloc_msize);
288 if (!req->tc || !req->rc)
289 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500290
291 p9pdu_reset(req->tc);
292 p9pdu_reset(req->rc);
293
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500294 req->tc->tag = tag-1;
295 req->status = REQ_STATUS_ALLOC;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500296
Simon Derrea071aa2013-06-21 15:32:34 +0200297 return req;
298
299grow_failed:
300 pr_err("Couldn't grow tag array\n");
301 kfree(req->tc);
302 kfree(req->rc);
303 kfree(req->wq);
304 req->tc = req->rc = NULL;
305 req->wq = NULL;
306 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500307}
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500308
309/**
310 * p9_tag_lookup - lookup a request by tag
311 * @c: client session to lookup tag within
312 * @tag: numeric id for transaction
313 *
314 */
315
316struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
317{
318 int row, col;
319
320 /* This looks up the original request by tag so we know which
321 * buffer to read the data into */
322 tag++;
323
Eric Van Hensbergenb85f7d922011-07-13 19:12:18 -0500324 if(tag >= c->max_tag)
325 return NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500326
327 row = tag / P9_ROW_MAXTAG;
328 col = tag % P9_ROW_MAXTAG;
329
330 return &c->reqs[row][col];
331}
332EXPORT_SYMBOL(p9_tag_lookup);
333
334/**
335 * p9_tag_init - setup tags structure and contents
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600336 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500337 *
338 * This initializes the tags structure for each client instance.
339 *
340 */
341
342static int p9_tag_init(struct p9_client *c)
343{
344 int err = 0;
345
346 c->tagpool = p9_idpool_create();
347 if (IS_ERR(c->tagpool)) {
348 err = PTR_ERR(c->tagpool);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500349 goto error;
350 }
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000351 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
352 if (err < 0) {
353 p9_idpool_destroy(c->tagpool);
354 goto error;
355 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500356 c->max_tag = 0;
357error:
358 return err;
359}
360
361/**
362 * p9_tag_cleanup - cleans up tags structure and reclaims resources
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600363 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500364 *
365 * This frees resources associated with the tags structure
366 *
367 */
368static void p9_tag_cleanup(struct p9_client *c)
369{
370 int row, col;
371
372 /* check to insure all requests are idle */
373 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
374 for (col = 0; col < P9_ROW_MAXTAG; col++) {
375 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
Joe Perches5d385152011-11-28 10:40:46 -0800376 p9_debug(P9_DEBUG_MUX,
377 "Attempting to cleanup non-free tag %d,%d\n",
378 row, col);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500379 /* TODO: delay execution of cleanup */
380 return;
381 }
382 }
383 }
384
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000385 if (c->tagpool) {
386 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500387 p9_idpool_destroy(c->tagpool);
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000388 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500389
390 /* free requests associated with tags */
391 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500392 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500393 kfree(c->reqs[row][col].wq);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500394 kfree(c->reqs[row][col].tc);
395 kfree(c->reqs[row][col].rc);
396 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500397 kfree(c->reqs[row]);
398 }
399 c->max_tag = 0;
400}
401
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500402/**
403 * p9_free_req - free a request and clean-up as necessary
404 * c: client state
405 * r: request to release
406 *
407 */
408
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500409static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500410{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500411 int tag = r->tc->tag;
Joe Perches5d385152011-11-28 10:40:46 -0800412 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500413
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500414 r->status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500415 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
416 p9_idpool_put(tag, c->tagpool);
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500417}
418
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500419/**
420 * p9_client_cb - call back from transport to client
421 * c: client state
422 * req: request received
423 *
424 */
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100425void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500426{
Joe Perches5d385152011-11-28 10:40:46 -0800427 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100428
429 /*
430 * This barrier is needed to make sure any change made to req before
431 * the other thread wakes up will indeed be seen by the waiting side.
432 */
433 smp_wmb();
434 req->status = status;
435
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500436 wake_up(req->wq);
Joe Perches5d385152011-11-28 10:40:46 -0800437 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500438}
439EXPORT_SYMBOL(p9_client_cb);
440
441/**
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500442 * p9_parse_header - parse header arguments out of a packet
443 * @pdu: packet to parse
444 * @size: size of packet
445 * @type: type of request
446 * @tag: tag of packet
447 * @rewind: set if we need to rewind offset afterwards
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500448 */
449
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500450int
451p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
452 int rewind)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500453{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500454 int8_t r_type;
455 int16_t r_tag;
456 int32_t r_size;
457 int offset = pdu->offset;
458 int err;
459
460 pdu->offset = 0;
461 if (pdu->size == 0)
462 pdu->size = 7;
463
464 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
465 if (err)
466 goto rewind_and_exit;
467
468 pdu->size = r_size;
469 pdu->id = r_type;
470 pdu->tag = r_tag;
471
Joe Perches5d385152011-11-28 10:40:46 -0800472 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
473 pdu->size, pdu->id, pdu->tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500474
475 if (type)
476 *type = r_type;
477 if (tag)
478 *tag = r_tag;
479 if (size)
480 *size = r_size;
481
482
483rewind_and_exit:
484 if (rewind)
485 pdu->offset = offset;
486 return err;
487}
488EXPORT_SYMBOL(p9_parse_header);
489
490/**
491 * p9_check_errors - check 9p packet for error return and process it
492 * @c: current client instance
493 * @req: request to parse and check for error conditions
494 *
495 * returns error code if one is discovered, otherwise returns 0
496 *
497 * this will have to be more complicated if we have multiple
498 * error packet types
499 */
500
501static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
502{
503 int8_t type;
504 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800505 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500506
507 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530508 /*
509 * dump the response from server
510 * This should be after check errors which poplulate pdu_fcall.
511 */
512 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500513 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800514 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500515 return err;
516 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800517 if (type != P9_RERROR && type != P9_RLERROR)
518 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500519
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800520 if (!p9_is_proto_dotl(c)) {
521 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800522 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530523 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800524 if (err)
525 goto out_err;
526
Arnd Bergmann287980e2016-05-27 23:23:25 +0200527 if (p9_is_proto_dotu(c) && ecode < 512)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500528 err = -ecode;
529
Arnd Bergmann287980e2016-05-27 23:23:25 +0200530 if (!err) {
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800531 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500532
Joe Perches5d385152011-11-28 10:40:46 -0800533 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
534 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800535 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530536 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800537 } else {
538 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
539 err = -ecode;
540
Joe Perches5d385152011-11-28 10:40:46 -0800541 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800542 }
543
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500544 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530545
546out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800547 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530548
549 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500550}
551
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530552/**
553 * p9_check_zc_errors - check 9p packet for error return and process it
554 * @c: current client instance
555 * @req: request to parse and check for error conditions
556 * @in_hdrlen: Size of response protocol buffer.
557 *
558 * returns error code if one is discovered, otherwise returns 0
559 *
560 * this will have to be more complicated if we have multiple
561 * error packet types
562 */
563
564static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
Al Viro4f3b35c2015-04-01 19:57:53 -0400565 struct iov_iter *uidata, int in_hdrlen)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530566{
567 int err;
568 int ecode;
569 int8_t type;
570 char *ename = NULL;
571
572 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530573 /*
574 * dump the response from server
575 * This should be after parse_header which poplulate pdu_fcall.
576 */
577 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530578 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800579 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530580 return err;
581 }
582
583 if (type != P9_RERROR && type != P9_RLERROR)
584 return 0;
585
586 if (!p9_is_proto_dotl(c)) {
587 /* Error is reported in string format */
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530588 int len;
589 /* 7 = header size for RERROR; */
590 int inline_len = in_hdrlen - 7;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530591
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530592 len = req->rc->size - req->rc->offset;
593 if (len > (P9_ZC_HDR_SZ - 7)) {
594 err = -EFAULT;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530595 goto out_err;
596 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530597
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530598 ename = &req->rc->sdata[req->rc->offset];
599 if (len > inline_len) {
600 /* We have error in external buffer */
Al Viro4f3b35c2015-04-01 19:57:53 -0400601 err = copy_from_iter(ename + inline_len,
602 len - inline_len, uidata);
603 if (err != len - inline_len) {
604 err = -EFAULT;
605 goto out_err;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530606 }
607 }
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530608 ename = NULL;
609 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
610 &ename, &ecode);
611 if (err)
612 goto out_err;
613
Arnd Bergmann287980e2016-05-27 23:23:25 +0200614 if (p9_is_proto_dotu(c) && ecode < 512)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530615 err = -ecode;
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530616
Arnd Bergmann287980e2016-05-27 23:23:25 +0200617 if (!err) {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530618 err = p9_errstr2errno(ename, strlen(ename));
619
Joe Perches5d385152011-11-28 10:40:46 -0800620 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
621 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530622 }
623 kfree(ename);
624 } else {
625 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
626 err = -ecode;
627
Joe Perches5d385152011-11-28 10:40:46 -0800628 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530629 }
630 return err;
631
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530632out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800633 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530634 return err;
635}
636
Rob Landleyaca00762011-05-08 18:46:38 +0000637static struct p9_req_t *
638p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
639
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500640/**
641 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600642 * @c: client state
643 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500644 *
Rob Landleyaca00762011-05-08 18:46:38 +0000645 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500646 * the flush request to the original request. The current
647 * code only supports a single flush request although the protocol
648 * allows for multiple flush requests to be sent for a single request.
649 *
650 */
651
652static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
653{
654 struct p9_req_t *req;
655 int16_t oldtag;
656 int err;
657
658 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
659 if (err)
660 return err;
661
Joe Perches5d385152011-11-28 10:40:46 -0800662 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500663
664 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
665 if (IS_ERR(req))
666 return PTR_ERR(req);
667
Simon Derr1cff3302013-06-21 15:32:42 +0200668 /*
669 * if we haven't received a response for oldreq,
Andi Shyti60ff7792013-07-25 10:54:24 +0200670 * remove it from the list
Simon Derr1cff3302013-06-21 15:32:42 +0200671 */
Simon Derr0bfd6842014-03-10 16:38:52 +0100672 if (oldreq->status == REQ_STATUS_SENT)
Simon Derrafd8d652014-03-10 16:38:49 +0100673 if (c->trans_mod->cancelled)
674 c->trans_mod->cancelled(c, oldreq);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500675
676 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500677 return 0;
678}
679
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530680static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
681 int8_t type, int req_size,
682 const char *fmt, va_list ap)
683{
684 int tag, err;
685 struct p9_req_t *req;
686
Joe Perches5d385152011-11-28 10:40:46 -0800687 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530688
689 /* we allow for any status other than disconnected */
690 if (c->status == Disconnected)
691 return ERR_PTR(-EIO);
692
693 /* if status is begin_disconnected we allow only clunk request */
694 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
695 return ERR_PTR(-EIO);
696
697 tag = P9_NOTAG;
698 if (type != P9_TVERSION) {
699 tag = p9_idpool_get(c->tagpool);
700 if (tag < 0)
701 return ERR_PTR(-ENOMEM);
702 }
703
704 req = p9_tag_alloc(c, tag, req_size);
705 if (IS_ERR(req))
706 return req;
707
708 /* marshall the data */
709 p9pdu_prepare(req->tc, tag, type);
710 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
711 if (err)
712 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530713 p9pdu_finalize(c, req->tc);
714 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530715 return req;
716reterr:
717 p9_free_req(c, req);
718 return ERR_PTR(err);
719}
720
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500721/**
722 * p9_client_rpc - issue a request and wait for a response
723 * @c: client session
724 * @type: type of request
725 * @fmt: protocol format string (see protocol.c)
726 *
727 * Returns request structure (which client must free using p9_free_req)
728 */
729
730static struct p9_req_t *
731p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
732{
733 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530734 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500735 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530736 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500737
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530738 va_start(ap, fmt);
739 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
740 va_end(ap);
741 if (IS_ERR(req))
742 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500743
744 if (signal_pending(current)) {
745 sigpending = 1;
746 clear_thread_flag(TIF_SIGPENDING);
747 } else
748 sigpending = 0;
749
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500750 err = c->trans_mod->request(c, req);
751 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530752 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700753 c->status = Disconnected;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500754 goto reterr;
755 }
Jim Garlicka314f272012-02-01 12:48:53 -0800756again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530757 /* Wait for the response */
Tuomas Tynkkynen8bd466c2017-09-06 17:59:08 +0300758 err = wait_event_killable(*req->wq, req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500759
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100760 /*
761 * Make sure our req is coherent with regard to updates in other
762 * threads - echoes to wmb() in the callback
763 */
764 smp_rmb();
765
Jim Garlicka314f272012-02-01 12:48:53 -0800766 if ((err == -ERESTARTSYS) && (c->status == Connected)
767 && (type == P9_TFLUSH)) {
768 sigpending = 1;
769 clear_thread_flag(TIF_SIGPENDING);
770 goto again;
771 }
772
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500773 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800774 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500775 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500776 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500777 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800778 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500779 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500780 clear_thread_flag(TIF_SIGPENDING);
781
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500782 if (c->trans_mod->cancel(c, req))
783 p9_client_flush(c, req);
784
785 /* if we received the response anyway, don't signal error */
786 if (req->status == REQ_STATUS_RCVD)
787 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500788 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500789 if (sigpending) {
790 spin_lock_irqsave(&current->sighand->siglock, flags);
791 recalc_sigpending();
792 spin_unlock_irqrestore(&current->sighand->siglock, flags);
793 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500794 if (err < 0)
795 goto reterr;
796
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500797 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530798 trace_9p_client_res(c, type, req->rc->tag, err);
799 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500800 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530801reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530802 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200803 return ERR_PTR(safe_errno(err));
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530804}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500805
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530806/**
807 * p9_client_zc_rpc - issue a request and wait for a response
808 * @c: client session
809 * @type: type of request
Al Viro4f3b35c2015-04-01 19:57:53 -0400810 * @uidata: destination for zero copy read
811 * @uodata: source for zero copy write
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530812 * @inlen: read buffer size
813 * @olen: write buffer size
814 * @hdrlen: reader header size, This is the size of response protocol data
815 * @fmt: protocol format string (see protocol.c)
816 *
817 * Returns request structure (which client must free using p9_free_req)
818 */
819static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
Al Viro4f3b35c2015-04-01 19:57:53 -0400820 struct iov_iter *uidata,
821 struct iov_iter *uodata,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530822 int inlen, int olen, int in_hdrlen,
Al Viro4f3b35c2015-04-01 19:57:53 -0400823 const char *fmt, ...)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530824{
825 va_list ap;
826 int sigpending, err;
827 unsigned long flags;
828 struct p9_req_t *req;
829
830 va_start(ap, fmt);
831 /*
832 * We allocate a inline protocol data of only 4k bytes.
833 * The actual content is passed in zero-copy fashion.
834 */
835 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
836 va_end(ap);
837 if (IS_ERR(req))
838 return req;
839
840 if (signal_pending(current)) {
841 sigpending = 1;
842 clear_thread_flag(TIF_SIGPENDING);
843 } else
844 sigpending = 0;
845
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530846 err = c->trans_mod->zc_request(c, req, uidata, uodata,
Al Viro4f3b35c2015-04-01 19:57:53 -0400847 inlen, olen, in_hdrlen);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530848 if (err < 0) {
849 if (err == -EIO)
850 c->status = Disconnected;
Al Viroa84b69c2015-07-04 16:04:19 -0400851 if (err != -ERESTARTSYS)
852 goto reterr;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530853 }
854 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800855 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530856 err = req->t_err;
857 }
858 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800859 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530860 sigpending = 1;
861 clear_thread_flag(TIF_SIGPENDING);
862
863 if (c->trans_mod->cancel(c, req))
864 p9_client_flush(c, req);
865
866 /* if we received the response anyway, don't signal error */
867 if (req->status == REQ_STATUS_RCVD)
868 err = 0;
869 }
870 if (sigpending) {
871 spin_lock_irqsave(&current->sighand->siglock, flags);
872 recalc_sigpending();
873 spin_unlock_irqrestore(&current->sighand->siglock, flags);
874 }
875 if (err < 0)
876 goto reterr;
877
Al Viro4f3b35c2015-04-01 19:57:53 -0400878 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530879 trace_9p_client_res(c, type, req->rc->tag, err);
880 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530881 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500882reterr:
883 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200884 return ERR_PTR(safe_errno(err));
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500885}
886
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500887static struct p9_fid *p9_fid_create(struct p9_client *clnt)
888{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500889 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500890 struct p9_fid *fid;
Tom Tuckercac23d62008-10-23 16:31:02 -0500891 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500892
Joe Perches5d385152011-11-28 10:40:46 -0800893 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500894 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
895 if (!fid)
896 return ERR_PTR(-ENOMEM);
897
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500898 ret = p9_idpool_get(clnt->fidpool);
Roel Kluin24e94de2009-01-18 21:32:11 -0800899 if (ret < 0) {
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500900 ret = -ENOSPC;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500901 goto error;
902 }
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500903 fid->fid = ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500904
905 memset(&fid->qid, 0, sizeof(struct p9_qid));
906 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100907 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500908 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600909 fid->rdir = NULL;
Tom Tuckercac23d62008-10-23 16:31:02 -0500910 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500911 list_add(&fid->flist, &clnt->fidlist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500912 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500913
914 return fid;
915
916error:
917 kfree(fid);
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500918 return ERR_PTR(ret);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500919}
920
921static void p9_fid_destroy(struct p9_fid *fid)
922{
923 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500924 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500925
Joe Perches5d385152011-11-28 10:40:46 -0800926 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500927 clnt = fid->clnt;
928 p9_idpool_put(fid->fid, clnt->fidpool);
Tom Tuckercac23d62008-10-23 16:31:02 -0500929 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500930 list_del(&fid->flist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500931 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600932 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500933 kfree(fid);
934}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600935
stephen hemminger32a875a2010-10-19 06:48:16 +0000936static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500937{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500938 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500939 struct p9_req_t *req;
Tomas Bortolic53310d2018-07-10 00:29:43 +0200940 char *version = NULL;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500941 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500942
Joe Perches5d385152011-11-28 10:40:46 -0800943 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
944 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000945
946 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000947 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000948 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000949 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000950 break;
951 case p9_proto_2000u:
952 req = p9_client_rpc(c, P9_TVERSION, "ds",
953 c->msize, "9P2000.u");
954 break;
955 case p9_proto_legacy:
956 req = p9_client_rpc(c, P9_TVERSION, "ds",
957 c->msize, "9P2000");
958 break;
959 default:
960 return -EINVAL;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000961 }
962
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500963 if (IS_ERR(req))
964 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500965
Sripathi Kodi342fee12010-03-05 18:50:14 +0000966 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500967 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800968 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530969 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500970 goto error;
971 }
972
Joe Perches5d385152011-11-28 10:40:46 -0800973 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000974 if (!strncmp(version, "9P2000.L", 8))
975 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000976 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +0000977 c->proto_version = p9_proto_2000u;
978 else if (!strncmp(version, "9P2000", 6))
979 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500980 else {
Dominique Martinet00f01942018-11-05 09:52:48 +0100981 p9_debug(P9_DEBUG_ERROR,
982 "server returned an unknown version: %s\n", version);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500983 err = -EREMOTEIO;
984 goto error;
985 }
986
Dominique Martinet00f01942018-11-05 09:52:48 +0100987 if (msize < 4096) {
988 p9_debug(P9_DEBUG_ERROR,
989 "server returned a msize < 4096: %d\n", msize);
990 err = -EREMOTEIO;
991 goto error;
992 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500993 if (msize < c->msize)
994 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500995
996error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500997 kfree(version);
998 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500999
1000 return err;
1001}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001002
1003struct p9_client *p9_client_create(const char *dev_name, char *options)
1004{
1005 int err;
1006 struct p9_client *clnt;
Will Deacon50192ab2013-08-21 18:24:47 +01001007 char *client_id;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001008
1009 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001010 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1011 if (!clnt)
1012 return ERR_PTR(-ENOMEM);
1013
Tejun Heo72029fe2008-09-24 16:22:23 -05001014 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001015 clnt->trans = NULL;
Will Deacon50192ab2013-08-21 18:24:47 +01001016
1017 client_id = utsname()->nodename;
1018 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1019
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001020 spin_lock_init(&clnt->lock);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001021 INIT_LIST_HEAD(&clnt->fidlist);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001022
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001023 err = p9_tag_init(clnt);
1024 if (err < 0)
1025 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001026
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001027 err = parse_opts(options, clnt);
1028 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001029 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001030
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001031 if (!clnt->trans_mod)
1032 clnt->trans_mod = v9fs_get_default_trans();
1033
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001034 if (clnt->trans_mod == NULL) {
1035 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001036 p9_debug(P9_DEBUG_ERROR,
1037 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001038 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001039 }
1040
1041 clnt->fidpool = p9_idpool_create();
1042 if (IS_ERR(clnt->fidpool)) {
1043 err = PTR_ERR(clnt->fidpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001044 goto put_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001045 }
1046
Joe Perches5d385152011-11-28 10:40:46 -08001047 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1048 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001049
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001050 err = clnt->trans_mod->create(clnt, dev_name, options);
1051 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001052 goto destroy_fidpool;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001053
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001054 if (clnt->msize > clnt->trans_mod->maxsize)
1055 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001056
Dominique Martinet00f01942018-11-05 09:52:48 +01001057 if (clnt->msize < 4096) {
1058 p9_debug(P9_DEBUG_ERROR,
1059 "Please specify a msize of at least 4k\n");
1060 err = -EINVAL;
zhengbinb5d6f472019-03-13 16:01:37 +08001061 goto close_trans;
Dominique Martinet00f01942018-11-05 09:52:48 +01001062 }
1063
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001064 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001065 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001066 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001067
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001068 return clnt;
1069
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001070close_trans:
1071 clnt->trans_mod->close(clnt);
1072destroy_fidpool:
1073 p9_idpool_destroy(clnt->fidpool);
1074put_trans:
1075 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001076destroy_tagpool:
1077 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001078free_client:
1079 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001080 return ERR_PTR(err);
1081}
1082EXPORT_SYMBOL(p9_client_create);
1083
1084void p9_client_destroy(struct p9_client *clnt)
1085{
1086 struct p9_fid *fid, *fidptr;
1087
Joe Perches5d385152011-11-28 10:40:46 -08001088 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001089
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001090 if (clnt->trans_mod)
1091 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001092
Tejun Heo72029fe2008-09-24 16:22:23 -05001093 v9fs_put_trans(clnt->trans_mod);
1094
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001095 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
Joe Perches5d385152011-11-28 10:40:46 -08001096 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001097 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001098 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001099
Eric Van Hensbergen0af88872007-07-13 16:47:58 -05001100 if (clnt->fidpool)
1101 p9_idpool_destroy(clnt->fidpool);
1102
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001103 p9_tag_cleanup(clnt);
1104
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001105 kfree(clnt);
1106}
1107EXPORT_SYMBOL(p9_client_destroy);
1108
1109void p9_client_disconnect(struct p9_client *clnt)
1110{
Joe Perches5d385152011-11-28 10:40:46 -08001111 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001112 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001113}
1114EXPORT_SYMBOL(p9_client_disconnect);
1115
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001116void p9_client_begin_disconnect(struct p9_client *clnt)
1117{
Joe Perches5d385152011-11-28 10:40:46 -08001118 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001119 clnt->status = BeginDisconnect;
1120}
1121EXPORT_SYMBOL(p9_client_begin_disconnect);
1122
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001123struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001124 char *uname, kuid_t n_uname, char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001125{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301126 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001127 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001128 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001129 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001130
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001131
Joe Perches5d385152011-11-28 10:40:46 -08001132 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1133 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001134 fid = p9_fid_create(clnt);
1135 if (IS_ERR(fid)) {
1136 err = PTR_ERR(fid);
1137 fid = NULL;
1138 goto error;
1139 }
Al Viro21c9f5c2015-04-02 21:47:49 -04001140 fid->uid = n_uname;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001141
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001142 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001143 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1144 if (IS_ERR(req)) {
1145 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001146 goto error;
1147 }
1148
Sripathi Kodi342fee12010-03-05 18:50:14 +00001149 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001150 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301151 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001152 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001153 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001154 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001155
Joe Perches5d385152011-11-28 10:40:46 -08001156 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1157 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001158
1159 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1160
1161 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001162 return fid;
1163
1164error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001165 if (fid)
1166 p9_fid_destroy(fid);
1167 return ERR_PTR(err);
1168}
1169EXPORT_SYMBOL(p9_client_attach);
1170
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301171struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1172 char **wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001173{
1174 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001175 struct p9_client *clnt;
1176 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001177 struct p9_qid *wqids;
1178 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301179 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001180
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001181 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001182 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001183 clnt = oldfid->clnt;
1184 if (clone) {
1185 fid = p9_fid_create(clnt);
1186 if (IS_ERR(fid)) {
1187 err = PTR_ERR(fid);
1188 fid = NULL;
1189 goto error;
1190 }
1191
1192 fid->uid = oldfid->uid;
1193 } else
1194 fid = oldfid;
1195
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001196
Joe Perches5d385152011-11-28 10:40:46 -08001197 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1198 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001199
1200 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1201 nwname, wnames);
1202 if (IS_ERR(req)) {
1203 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001204 goto error;
1205 }
1206
Sripathi Kodi342fee12010-03-05 18:50:14 +00001207 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001208 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301209 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001210 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001211 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001212 }
1213 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001214
Joe Perches5d385152011-11-28 10:40:46 -08001215 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001216
1217 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001218 err = -ENOENT;
1219 goto clunk_fid;
1220 }
1221
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001222 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001223 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001224 count, wqids[count].type,
1225 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001226 wqids[count].version);
1227
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001228 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001229 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001230 else
1231 fid->qid = oldfid->qid;
1232
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001233 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001234 return fid;
1235
1236clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001237 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001238 p9_client_clunk(fid);
1239 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001240
1241error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001242 if (fid && (fid != oldfid))
1243 p9_fid_destroy(fid);
1244
1245 return ERR_PTR(err);
1246}
1247EXPORT_SYMBOL(p9_client_walk);
1248
1249int p9_client_open(struct p9_fid *fid, int mode)
1250{
1251 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001252 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001253 struct p9_req_t *req;
1254 struct p9_qid qid;
1255 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001256
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001257 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001258 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301259 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1260 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001261
1262 if (fid->mode != -1)
1263 return -EINVAL;
1264
M. Mohan Kumaref565472010-06-22 19:47:50 +05301265 if (p9_is_proto_dotl(clnt))
1266 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1267 else
1268 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001269 if (IS_ERR(req)) {
1270 err = PTR_ERR(req);
1271 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001272 }
1273
Sripathi Kodi342fee12010-03-05 18:50:14 +00001274 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001275 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301276 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001277 goto free_and_error;
1278 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001279
Joe Perches5d385152011-11-28 10:40:46 -08001280 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301281 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1282 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001283
1284 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001285 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001286
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001287free_and_error:
1288 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001289error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001290 return err;
1291}
1292EXPORT_SYMBOL(p9_client_open);
1293
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001294int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001295 kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001296{
1297 int err = 0;
1298 struct p9_client *clnt;
1299 struct p9_req_t *req;
1300 int iounit;
1301
Joe Perches5d385152011-11-28 10:40:46 -08001302 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001303 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001304 ofid->fid, name, flags, mode,
1305 from_kgid(&init_user_ns, gid));
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001306 clnt = ofid->clnt;
1307
1308 if (ofid->mode != -1)
1309 return -EINVAL;
1310
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001311 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001312 mode, gid);
1313 if (IS_ERR(req)) {
1314 err = PTR_ERR(req);
1315 goto error;
1316 }
1317
1318 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1319 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301320 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001321 goto free_and_error;
1322 }
1323
Joe Perches5d385152011-11-28 10:40:46 -08001324 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001325 qid->type,
1326 (unsigned long long)qid->path,
1327 qid->version, iounit);
1328
1329 ofid->mode = mode;
1330 ofid->iounit = iounit;
1331
1332free_and_error:
1333 p9_free_req(clnt, req);
1334error:
1335 return err;
1336}
1337EXPORT_SYMBOL(p9_client_create_dotl);
1338
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001339int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
1340 char *extension)
1341{
1342 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001343 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001344 struct p9_req_t *req;
1345 struct p9_qid qid;
1346 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001347
Joe Perches5d385152011-11-28 10:40:46 -08001348 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001349 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001350 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001351 clnt = fid->clnt;
1352
1353 if (fid->mode != -1)
1354 return -EINVAL;
1355
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001356 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1357 mode, extension);
1358 if (IS_ERR(req)) {
1359 err = PTR_ERR(req);
1360 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001361 }
1362
Sripathi Kodi342fee12010-03-05 18:50:14 +00001363 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001364 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301365 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001366 goto free_and_error;
1367 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001368
Joe Perches5d385152011-11-28 10:40:46 -08001369 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001370 qid.type,
1371 (unsigned long long)qid.path,
1372 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001373
1374 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001375 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001376
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001377free_and_error:
1378 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001379error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001380 return err;
1381}
1382EXPORT_SYMBOL(p9_client_fcreate);
1383
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001384int p9_client_symlink(struct p9_fid *dfid, char *name, char *symtgt, kgid_t gid,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001385 struct p9_qid *qid)
1386{
1387 int err = 0;
1388 struct p9_client *clnt;
1389 struct p9_req_t *req;
1390
Joe Perches5d385152011-11-28 10:40:46 -08001391 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001392 dfid->fid, name, symtgt);
1393 clnt = dfid->clnt;
1394
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001395 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001396 gid);
1397 if (IS_ERR(req)) {
1398 err = PTR_ERR(req);
1399 goto error;
1400 }
1401
1402 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1403 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301404 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001405 goto free_and_error;
1406 }
1407
Joe Perches5d385152011-11-28 10:40:46 -08001408 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001409 qid->type, (unsigned long long)qid->path, qid->version);
1410
1411free_and_error:
1412 p9_free_req(clnt, req);
1413error:
1414 return err;
1415}
1416EXPORT_SYMBOL(p9_client_symlink);
1417
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001418int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, char *newname)
1419{
1420 struct p9_client *clnt;
1421 struct p9_req_t *req;
1422
Joe Perches5d385152011-11-28 10:40:46 -08001423 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001424 dfid->fid, oldfid->fid, newname);
1425 clnt = dfid->clnt;
1426 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1427 newname);
1428 if (IS_ERR(req))
1429 return PTR_ERR(req);
1430
Joe Perches5d385152011-11-28 10:40:46 -08001431 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001432 p9_free_req(clnt, req);
1433 return 0;
1434}
1435EXPORT_SYMBOL(p9_client_link);
1436
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001437int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001438{
1439 int err;
1440 struct p9_client *clnt;
1441 struct p9_req_t *req;
1442
Joe Perches5d385152011-11-28 10:40:46 -08001443 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001444 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001445 err = 0;
1446 clnt = fid->clnt;
1447
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001448 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001449 if (IS_ERR(req)) {
1450 err = PTR_ERR(req);
1451 goto error;
1452 }
1453
Joe Perches5d385152011-11-28 10:40:46 -08001454 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001455
1456 p9_free_req(clnt, req);
1457
1458error:
1459 return err;
1460}
1461EXPORT_SYMBOL(p9_client_fsync);
1462
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001463int p9_client_clunk(struct p9_fid *fid)
1464{
1465 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001466 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001467 struct p9_req_t *req;
Jim Garlick208f3c22012-02-26 14:49:57 -06001468 int retries = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001469
jvrao8e44a082010-08-25 16:27:06 +00001470 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001471 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1472 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001473 dump_stack();
1474 return 0;
1475 }
1476
Jim Garlick208f3c22012-02-26 14:49:57 -06001477again:
1478 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1479 retries);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001480 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001481 clnt = fid->clnt;
1482
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001483 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1484 if (IS_ERR(req)) {
1485 err = PTR_ERR(req);
1486 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001487 }
1488
Joe Perches5d385152011-11-28 10:40:46 -08001489 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001490
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001491 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001492error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001493 /*
1494 * Fid is not valid even after a failed clunk
Jim Garlick208f3c22012-02-26 14:49:57 -06001495 * If interrupted, retry once then give up and
1496 * leak fid until umount.
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001497 */
Jim Garlick208f3c22012-02-26 14:49:57 -06001498 if (err == -ERESTARTSYS) {
1499 if (retries++ == 0)
1500 goto again;
1501 } else
1502 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001503 return err;
1504}
1505EXPORT_SYMBOL(p9_client_clunk);
1506
1507int p9_client_remove(struct p9_fid *fid)
1508{
1509 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001510 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001511 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001512
Joe Perches5d385152011-11-28 10:40:46 -08001513 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001514 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001515 clnt = fid->clnt;
1516
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001517 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1518 if (IS_ERR(req)) {
1519 err = PTR_ERR(req);
1520 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001521 }
1522
Joe Perches5d385152011-11-28 10:40:46 -08001523 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001524
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001525 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001526error:
Jim Garlick208f3c22012-02-26 14:49:57 -06001527 if (err == -ERESTARTSYS)
1528 p9_client_clunk(fid);
1529 else
1530 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001531 return err;
1532}
1533EXPORT_SYMBOL(p9_client_remove);
1534
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301535int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1536{
1537 int err = 0;
1538 struct p9_req_t *req;
1539 struct p9_client *clnt;
1540
Joe Perches5d385152011-11-28 10:40:46 -08001541 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301542 dfid->fid, name, flags);
1543
1544 clnt = dfid->clnt;
1545 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1546 if (IS_ERR(req)) {
1547 err = PTR_ERR(req);
1548 goto error;
1549 }
Joe Perches5d385152011-11-28 10:40:46 -08001550 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301551
1552 p9_free_req(clnt, req);
1553error:
1554 return err;
1555}
1556EXPORT_SYMBOL(p9_client_unlinkat);
1557
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001558int
Al Viroe1200fe62015-04-01 23:42:28 -04001559p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001560{
Al Viroe1200fe62015-04-01 23:42:28 -04001561 struct p9_client *clnt = fid->clnt;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301562 struct p9_req_t *req;
Al Viroe1200fe62015-04-01 23:42:28 -04001563 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001564 *err = 0;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301565
Joe Perches5d385152011-11-28 10:40:46 -08001566 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Al Viroe1200fe62015-04-01 23:42:28 -04001567 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001568
Al Viroe1200fe62015-04-01 23:42:28 -04001569 while (iov_iter_count(to)) {
1570 int count = iov_iter_count(to);
1571 int rsize, non_zc = 0;
1572 char *dataptr;
1573
1574 rsize = fid->iounit;
1575 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1576 rsize = clnt->msize - P9_IOHDRSZ;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001577
Al Viroe1200fe62015-04-01 23:42:28 -04001578 if (count < rsize)
1579 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001580
Al Viroe1200fe62015-04-01 23:42:28 -04001581 /* Don't bother zerocopy for small IO (< 1024) */
1582 if (clnt->trans_mod->zc_request && rsize > 1024) {
1583 /*
1584 * response header len is 11
1585 * PDU Header(7) + IO Size (4)
1586 */
1587 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1588 0, 11, "dqd", fid->fid,
1589 offset, rsize);
1590 } else {
1591 non_zc = 1;
1592 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1593 rsize);
1594 }
1595 if (IS_ERR(req)) {
1596 *err = PTR_ERR(req);
1597 break;
1598 }
1599
1600 *err = p9pdu_readf(req->rc, clnt->proto_version,
1601 "D", &count, &dataptr);
1602 if (*err) {
1603 trace_9p_protocol_dump(clnt, req->rc);
1604 p9_free_req(clnt, req);
1605 break;
1606 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001607 if (rsize < count) {
1608 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1609 count = rsize;
1610 }
Al Viroe1200fe62015-04-01 23:42:28 -04001611
1612 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1613 if (!count) {
1614 p9_free_req(clnt, req);
1615 break;
1616 }
1617
1618 if (non_zc) {
1619 int n = copy_to_iter(dataptr, count, to);
1620 total += n;
1621 offset += n;
1622 if (n != count) {
1623 *err = -EFAULT;
1624 p9_free_req(clnt, req);
1625 break;
1626 }
1627 } else {
1628 iov_iter_advance(to, count);
1629 total += count;
1630 offset += count;
1631 }
1632 p9_free_req(clnt, req);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001633 }
Al Viroe1200fe62015-04-01 23:42:28 -04001634 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001635}
1636EXPORT_SYMBOL(p9_client_read);
1637
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001638int
Al Viro070b3652015-04-01 20:17:51 -04001639p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001640{
Al Viro070b3652015-04-01 20:17:51 -04001641 struct p9_client *clnt = fid->clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001642 struct p9_req_t *req;
Al Viro070b3652015-04-01 20:17:51 -04001643 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001644 *err = 0;
Al Viro4f3b35c2015-04-01 19:57:53 -04001645
Al Viro070b3652015-04-01 20:17:51 -04001646 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1647 fid->fid, (unsigned long long) offset,
1648 iov_iter_count(from));
1649
1650 while (iov_iter_count(from)) {
1651 int count = iov_iter_count(from);
1652 int rsize = fid->iounit;
1653 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1654 rsize = clnt->msize - P9_IOHDRSZ;
1655
1656 if (count < rsize)
1657 rsize = count;
1658
1659 /* Don't bother zerocopy for small IO (< 1024) */
1660 if (clnt->trans_mod->zc_request && rsize > 1024) {
1661 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1662 rsize, P9_ZC_HDR_SZ, "dqd",
1663 fid->fid, offset, rsize);
1664 } else {
1665 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1666 offset, rsize, from);
1667 }
1668 if (IS_ERR(req)) {
1669 *err = PTR_ERR(req);
1670 break;
1671 }
1672
1673 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1674 if (*err) {
1675 trace_9p_protocol_dump(clnt, req->rc);
1676 p9_free_req(clnt, req);
Al Viro67e808f2015-07-04 16:11:05 -04001677 break;
Al Viro070b3652015-04-01 20:17:51 -04001678 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001679 if (rsize < count) {
1680 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1681 count = rsize;
1682 }
Al Viro070b3652015-04-01 20:17:51 -04001683
1684 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1685
1686 p9_free_req(clnt, req);
1687 iov_iter_advance(from, count);
1688 total += count;
1689 offset += count;
Al Viro4f3b35c2015-04-01 19:57:53 -04001690 }
Al Viro070b3652015-04-01 20:17:51 -04001691 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001692}
1693EXPORT_SYMBOL(p9_client_write);
1694
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001695struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001696{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001697 int err;
1698 struct p9_client *clnt;
1699 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1700 struct p9_req_t *req;
1701 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001702
Joe Perches5d385152011-11-28 10:40:46 -08001703 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001704
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001705 if (!ret)
1706 return ERR_PTR(-ENOMEM);
1707
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001708 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001709 clnt = fid->clnt;
1710
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001711 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1712 if (IS_ERR(req)) {
1713 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001714 goto error;
1715 }
1716
Sripathi Kodi342fee12010-03-05 18:50:14 +00001717 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001718 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301719 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001720 p9_free_req(clnt, req);
1721 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001722 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001723
Joe Perches5d385152011-11-28 10:40:46 -08001724 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001725 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1726 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1727 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1728 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001729 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001730 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1731 ret->atime, ret->mtime, (unsigned long long)ret->length,
1732 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001733 from_kuid(&init_user_ns, ret->n_uid),
1734 from_kgid(&init_user_ns, ret->n_gid),
1735 from_kuid(&init_user_ns, ret->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001736
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001737 p9_free_req(clnt, req);
1738 return ret;
1739
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001740error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001741 kfree(ret);
1742 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001743}
1744EXPORT_SYMBOL(p9_client_stat);
1745
Sripathi Kodif0853122010-07-12 20:07:23 +05301746struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1747 u64 request_mask)
1748{
1749 int err;
1750 struct p9_client *clnt;
1751 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1752 GFP_KERNEL);
1753 struct p9_req_t *req;
1754
Joe Perches5d385152011-11-28 10:40:46 -08001755 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301756 fid->fid, request_mask);
1757
1758 if (!ret)
1759 return ERR_PTR(-ENOMEM);
1760
1761 err = 0;
1762 clnt = fid->clnt;
1763
1764 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1765 if (IS_ERR(req)) {
1766 err = PTR_ERR(req);
1767 goto error;
1768 }
1769
1770 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1771 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301772 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301773 p9_free_req(clnt, req);
1774 goto error;
1775 }
1776
Joe Perches5d385152011-11-28 10:40:46 -08001777 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301778 "<<< RGETATTR st_result_mask=%lld\n"
1779 "<<< qid=%x.%llx.%x\n"
1780 "<<< st_mode=%8.8x st_nlink=%llu\n"
1781 "<<< st_uid=%d st_gid=%d\n"
1782 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1783 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1784 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1785 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1786 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1787 "<<< st_gen=%lld st_data_version=%lld",
1788 ret->st_result_mask, ret->qid.type, ret->qid.path,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001789 ret->qid.version, ret->st_mode, ret->st_nlink,
1790 from_kuid(&init_user_ns, ret->st_uid),
1791 from_kgid(&init_user_ns, ret->st_gid),
1792 ret->st_rdev, ret->st_size, ret->st_blksize,
Sripathi Kodif0853122010-07-12 20:07:23 +05301793 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1794 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1795 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1796 ret->st_gen, ret->st_data_version);
1797
1798 p9_free_req(clnt, req);
1799 return ret;
1800
1801error:
1802 kfree(ret);
1803 return ERR_PTR(err);
1804}
1805EXPORT_SYMBOL(p9_client_getattr_dotl);
1806
Sripathi Kodi342fee12010-03-05 18:50:14 +00001807static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001808{
1809 int ret;
1810
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001811 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001812 /* size[2] type[2] dev[4] qid[13] */
1813 /* mode[4] atime[4] mtime[4] length[8]*/
1814 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001815 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001816
1817 if (wst->name)
1818 ret += strlen(wst->name);
1819 if (wst->uid)
1820 ret += strlen(wst->uid);
1821 if (wst->gid)
1822 ret += strlen(wst->gid);
1823 if (wst->muid)
1824 ret += strlen(wst->muid);
1825
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001826 if ((proto_version == p9_proto_2000u) ||
1827 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001828 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1829 if (wst->extension)
1830 ret += strlen(wst->extension);
1831 }
1832
1833 return ret;
1834}
1835
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001836int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1837{
1838 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001839 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001840 struct p9_client *clnt;
1841
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001842 err = 0;
1843 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001844 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001845 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1846 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001847 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1848 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1849 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1850 " uid=%d gid=%d n_muid=%d\n",
1851 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001852 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1853 wst->atime, wst->mtime, (unsigned long long)wst->length,
1854 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001855 from_kuid(&init_user_ns, wst->n_uid),
1856 from_kgid(&init_user_ns, wst->n_gid),
1857 from_kuid(&init_user_ns, wst->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001858
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001859 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001860 if (IS_ERR(req)) {
1861 err = PTR_ERR(req);
1862 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001863 }
1864
Joe Perches5d385152011-11-28 10:40:46 -08001865 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001866
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001867 p9_free_req(clnt, req);
1868error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001869 return err;
1870}
1871EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001872
Sripathi Kodi87d78452010-06-18 11:50:10 +05301873int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1874{
1875 int err;
1876 struct p9_req_t *req;
1877 struct p9_client *clnt;
1878
1879 err = 0;
1880 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001881 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1882 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301883 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1884 " atime_sec=%lld atime_nsec=%lld\n"
1885 " mtime_sec=%lld mtime_nsec=%lld\n",
Eric W. Biederman447c5092013-01-29 16:18:50 -08001886 p9attr->valid, p9attr->mode,
1887 from_kuid(&init_user_ns, p9attr->uid),
1888 from_kgid(&init_user_ns, p9attr->gid),
Sripathi Kodi87d78452010-06-18 11:50:10 +05301889 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1890 p9attr->mtime_sec, p9attr->mtime_nsec);
1891
1892 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1893
1894 if (IS_ERR(req)) {
1895 err = PTR_ERR(req);
1896 goto error;
1897 }
Joe Perches5d385152011-11-28 10:40:46 -08001898 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301899 p9_free_req(clnt, req);
1900error:
1901 return err;
1902}
1903EXPORT_SYMBOL(p9_client_setattr);
1904
Sripathi Kodibda8e772010-03-25 12:45:30 +00001905int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1906{
1907 int err;
1908 struct p9_req_t *req;
1909 struct p9_client *clnt;
1910
1911 err = 0;
1912 clnt = fid->clnt;
1913
Joe Perches5d385152011-11-28 10:40:46 -08001914 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001915
1916 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1917 if (IS_ERR(req)) {
1918 err = PTR_ERR(req);
1919 goto error;
1920 }
1921
1922 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1923 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1924 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1925 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301926 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001927 p9_free_req(clnt, req);
1928 goto error;
1929 }
1930
Joe Perches5d385152011-11-28 10:40:46 -08001931 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001932 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1933 "fsid %llu namelen %ld\n",
1934 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1935 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1936 sb->fsid, (long int)sb->namelen);
1937
1938 p9_free_req(clnt, req);
1939error:
1940 return err;
1941}
1942EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001943
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301944int p9_client_rename(struct p9_fid *fid,
1945 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001946{
1947 int err;
1948 struct p9_req_t *req;
1949 struct p9_client *clnt;
1950
1951 err = 0;
1952 clnt = fid->clnt;
1953
Joe Perches5d385152011-11-28 10:40:46 -08001954 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001955 fid->fid, newdirfid->fid, name);
1956
1957 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1958 newdirfid->fid, name);
1959 if (IS_ERR(req)) {
1960 err = PTR_ERR(req);
1961 goto error;
1962 }
1963
Joe Perches5d385152011-11-28 10:40:46 -08001964 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001965
1966 p9_free_req(clnt, req);
1967error:
1968 return err;
1969}
1970EXPORT_SYMBOL(p9_client_rename);
1971
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301972int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1973 struct p9_fid *newdirfid, const char *new_name)
1974{
1975 int err;
1976 struct p9_req_t *req;
1977 struct p9_client *clnt;
1978
1979 err = 0;
1980 clnt = olddirfid->clnt;
1981
Joe Perches5d385152011-11-28 10:40:46 -08001982 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301983 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1984 newdirfid->fid, new_name);
1985
1986 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1987 old_name, newdirfid->fid, new_name);
1988 if (IS_ERR(req)) {
1989 err = PTR_ERR(req);
1990 goto error;
1991 }
1992
Joe Perches5d385152011-11-28 10:40:46 -08001993 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301994 newdirfid->fid, new_name);
1995
1996 p9_free_req(clnt, req);
1997error:
1998 return err;
1999}
2000EXPORT_SYMBOL(p9_client_renameat);
2001
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302002/*
2003 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
2004 */
2005struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
2006 const char *attr_name, u64 *attr_size)
2007{
2008 int err;
2009 struct p9_req_t *req;
2010 struct p9_client *clnt;
2011 struct p9_fid *attr_fid;
2012
2013 err = 0;
2014 clnt = file_fid->clnt;
2015 attr_fid = p9_fid_create(clnt);
2016 if (IS_ERR(attr_fid)) {
2017 err = PTR_ERR(attr_fid);
2018 attr_fid = NULL;
2019 goto error;
2020 }
Joe Perches5d385152011-11-28 10:40:46 -08002021 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302022 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2023 file_fid->fid, attr_fid->fid, attr_name);
2024
2025 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2026 file_fid->fid, attr_fid->fid, attr_name);
2027 if (IS_ERR(req)) {
2028 err = PTR_ERR(req);
2029 goto error;
2030 }
2031 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2032 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302033 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302034 p9_free_req(clnt, req);
2035 goto clunk_fid;
2036 }
2037 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08002038 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302039 attr_fid->fid, *attr_size);
2040 return attr_fid;
2041clunk_fid:
2042 p9_client_clunk(attr_fid);
2043 attr_fid = NULL;
2044error:
2045 if (attr_fid && (attr_fid != file_fid))
2046 p9_fid_destroy(attr_fid);
2047
2048 return ERR_PTR(err);
2049}
2050EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2051
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302052int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2053 u64 attr_size, int flags)
2054{
2055 int err;
2056 struct p9_req_t *req;
2057 struct p9_client *clnt;
2058
Joe Perches5d385152011-11-28 10:40:46 -08002059 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302060 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2061 fid->fid, name, (long long)attr_size, flags);
2062 err = 0;
2063 clnt = fid->clnt;
2064 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2065 fid->fid, name, attr_size, flags);
2066 if (IS_ERR(req)) {
2067 err = PTR_ERR(req);
2068 goto error;
2069 }
Joe Perches5d385152011-11-28 10:40:46 -08002070 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302071 p9_free_req(clnt, req);
2072error:
2073 return err;
2074}
2075EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2076
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002077int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2078{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302079 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002080 struct p9_client *clnt;
2081 struct p9_req_t *req;
2082 char *dataptr;
Al Viro4f3b35c2015-04-01 19:57:53 -04002083 struct kvec kv = {.iov_base = data, .iov_len = count};
2084 struct iov_iter to;
2085
2086 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002087
Joe Perches5d385152011-11-28 10:40:46 -08002088 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00002089 fid->fid, (unsigned long long) offset, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002090
2091 err = 0;
2092 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002093
2094 rsize = fid->iounit;
2095 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2096 rsize = clnt->msize - P9_READDIRHDRSZ;
2097
2098 if (count < rsize)
2099 rsize = count;
2100
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302101 /* Don't bother zerocopy for small IO (< 1024) */
2102 if (clnt->trans_mod->zc_request && rsize > 1024) {
2103 /*
2104 * response header len is 11
2105 * PDU Header(7) + IO Size (4)
2106 */
Al Viro4f3b35c2015-04-01 19:57:53 -04002107 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2108 11, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002109 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302110 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002111 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302112 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002113 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002114 if (IS_ERR(req)) {
2115 err = PTR_ERR(req);
2116 goto error;
2117 }
2118
2119 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2120 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302121 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002122 goto free_and_error;
2123 }
Al Virob2b93bb2017-04-14 17:22:18 -04002124 if (rsize < count) {
2125 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2126 count = rsize;
2127 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002128
Joe Perches5d385152011-11-28 10:40:46 -08002129 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002130
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302131 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002132 memmove(data, dataptr, count);
2133
2134 p9_free_req(clnt, req);
2135 return count;
2136
2137free_and_error:
2138 p9_free_req(clnt, req);
2139error:
2140 return err;
2141}
2142EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302143
2144int p9_client_mknod_dotl(struct p9_fid *fid, char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002145 dev_t rdev, kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302146{
2147 int err;
2148 struct p9_client *clnt;
2149 struct p9_req_t *req;
2150
2151 err = 0;
2152 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002153 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302154 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002155 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302156 MAJOR(rdev), MINOR(rdev), gid);
2157 if (IS_ERR(req))
2158 return PTR_ERR(req);
2159
2160 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2161 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302162 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302163 goto error;
2164 }
Joe Perches5d385152011-11-28 10:40:46 -08002165 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302166 (unsigned long long)qid->path, qid->version);
2167
2168error:
2169 p9_free_req(clnt, req);
2170 return err;
2171
2172}
2173EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302174
2175int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002176 kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302177{
2178 int err;
2179 struct p9_client *clnt;
2180 struct p9_req_t *req;
2181
2182 err = 0;
2183 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002184 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002185 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2186 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302187 gid);
2188 if (IS_ERR(req))
2189 return PTR_ERR(req);
2190
2191 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2192 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302193 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302194 goto error;
2195 }
Joe Perches5d385152011-11-28 10:40:46 -08002196 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302197 (unsigned long long)qid->path, qid->version);
2198
2199error:
2200 p9_free_req(clnt, req);
2201 return err;
2202
2203}
2204EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302205
2206int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2207{
2208 int err;
2209 struct p9_client *clnt;
2210 struct p9_req_t *req;
2211
2212 err = 0;
2213 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002214 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302215 "start %lld length %lld proc_id %d client_id %s\n",
2216 fid->fid, flock->type, flock->flags, flock->start,
2217 flock->length, flock->proc_id, flock->client_id);
2218
2219 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2220 flock->flags, flock->start, flock->length,
2221 flock->proc_id, flock->client_id);
2222
2223 if (IS_ERR(req))
2224 return PTR_ERR(req);
2225
2226 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2227 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302228 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302229 goto error;
2230 }
Joe Perches5d385152011-11-28 10:40:46 -08002231 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302232error:
2233 p9_free_req(clnt, req);
2234 return err;
2235
2236}
2237EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302238
2239int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2240{
2241 int err;
2242 struct p9_client *clnt;
2243 struct p9_req_t *req;
2244
2245 err = 0;
2246 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002247 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302248 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2249 glock->start, glock->length, glock->proc_id, glock->client_id);
2250
2251 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2252 glock->start, glock->length, glock->proc_id, glock->client_id);
2253
2254 if (IS_ERR(req))
2255 return PTR_ERR(req);
2256
2257 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2258 &glock->start, &glock->length, &glock->proc_id,
2259 &glock->client_id);
2260 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302261 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302262 goto error;
2263 }
Joe Perches5d385152011-11-28 10:40:46 -08002264 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302265 "proc_id %d client_id %s\n", glock->type, glock->start,
2266 glock->length, glock->proc_id, glock->client_id);
2267error:
2268 p9_free_req(clnt, req);
2269 return err;
2270}
2271EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302272
2273int p9_client_readlink(struct p9_fid *fid, char **target)
2274{
2275 int err;
2276 struct p9_client *clnt;
2277 struct p9_req_t *req;
2278
2279 err = 0;
2280 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002281 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302282
2283 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2284 if (IS_ERR(req))
2285 return PTR_ERR(req);
2286
2287 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2288 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302289 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302290 goto error;
2291 }
Joe Perches5d385152011-11-28 10:40:46 -08002292 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302293error:
2294 p9_free_req(clnt, req);
2295 return err;
2296}
2297EXPORT_SYMBOL(p9_client_readlink);