blob: 18c5271910dc2c1e1715efcd2b448b7cee6a844b [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>
Ingo Molnar3f07c012017-02-08 18:51:30 +010035#include <linux/sched/signal.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050036#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>
David Howellsc4fac912017-07-05 16:25:37 +010040#include <linux/seq_file.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050041#include <net/9p/client.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050042#include <net/9p/transport.h>
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -050043#include "protocol.h"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050044
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +053045#define CREATE_TRACE_POINTS
46#include <trace/events/9p.h>
47
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060048/*
49 * Client Option Parsing (code inspired by NFS code)
50 * - a little lazy - parse all client options
51 */
52
53enum {
54 Opt_msize,
55 Opt_trans,
56 Opt_legacy,
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000057 Opt_version,
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060058 Opt_err,
59};
60
Steven Whitehousea447c092008-10-13 10:46:57 +010061static const match_table_t tokens = {
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060062 {Opt_msize, "msize=%u"},
63 {Opt_legacy, "noextend"},
64 {Opt_trans, "trans=%s"},
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000065 {Opt_version, "version=%s"},
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060066 {Opt_err, NULL},
67};
68
Sripathi Kodi342fee12010-03-05 18:50:14 +000069inline int p9_is_proto_dotl(struct p9_client *clnt)
70{
Eric Dumazeta02cec22010-09-22 20:43:57 +000071 return clnt->proto_version == p9_proto_2000L;
Sripathi Kodi342fee12010-03-05 18:50:14 +000072}
73EXPORT_SYMBOL(p9_is_proto_dotl);
74
75inline int p9_is_proto_dotu(struct p9_client *clnt)
76{
Eric Dumazeta02cec22010-09-22 20:43:57 +000077 return clnt->proto_version == p9_proto_2000u;
Sripathi Kodi342fee12010-03-05 18:50:14 +000078}
79EXPORT_SYMBOL(p9_is_proto_dotu);
80
David Howellsc4fac912017-07-05 16:25:37 +010081int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)
82{
83 if (clnt->msize != 8192)
84 seq_printf(m, ",msize=%u", clnt->msize);
Tuomas Tynkkynen61b272c2017-11-19 11:28:43 +020085 seq_printf(m, ",trans=%s", clnt->trans_mod->name);
David Howellsc4fac912017-07-05 16:25:37 +010086
87 switch (clnt->proto_version) {
88 case p9_proto_legacy:
89 seq_puts(m, ",noextend");
90 break;
91 case p9_proto_2000u:
92 seq_puts(m, ",version=9p2000.u");
93 break;
94 case p9_proto_2000L:
95 /* Default */
96 break;
97 }
98
99 if (clnt->trans_mod->show_options)
100 return clnt->trans_mod->show_options(m, clnt);
101 return 0;
102}
103EXPORT_SYMBOL(p9_show_client_options);
104
Simon Derr43def352012-08-10 15:52:06 +0200105/*
106 * Some error codes are taken directly from the server replies,
107 * make sure they are valid.
108 */
109static int safe_errno(int err)
110{
111 if ((err > 0) || (err < -MAX_ERRNO)) {
112 p9_debug(P9_DEBUG_ERROR, "Invalid error code %d\n", err);
113 return -EPROTO;
114 }
115 return err;
116}
117
118
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000119/* Interpret mount option for protocol version */
Prem Karat4d630552011-05-06 18:35:32 +0530120static int get_protocol_version(char *s)
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000121{
Dan Carpenter3dc9fef2010-04-05 14:37:28 -0500122 int version = -EINVAL;
123
Prem Karat4d630552011-05-06 18:35:32 +0530124 if (!strcmp(s, "9p2000")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000125 version = p9_proto_legacy;
Joe Perches5d385152011-11-28 10:40:46 -0800126 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
Prem Karat4d630552011-05-06 18:35:32 +0530127 } else if (!strcmp(s, "9p2000.u")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000128 version = p9_proto_2000u;
Joe Perches5d385152011-11-28 10:40:46 -0800129 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
Prem Karat4d630552011-05-06 18:35:32 +0530130 } else if (!strcmp(s, "9p2000.L")) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000131 version = p9_proto_2000L;
Joe Perches5d385152011-11-28 10:40:46 -0800132 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
Prem Karat4d630552011-05-06 18:35:32 +0530133 } else
Joe Perches5d385152011-11-28 10:40:46 -0800134 pr_info("Unknown protocol version %s\n", s);
Prem Karat4d630552011-05-06 18:35:32 +0530135
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000136 return version;
137}
138
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600139/**
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600140 * parse_options - parse mount options into client structure
141 * @opts: options string passed from mount
142 * @clnt: existing v9fs client information
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600143 *
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600144 * Return 0 upon success, -ERRNO upon failure
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600145 */
146
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600147static int parse_opts(char *opts, struct p9_client *clnt)
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600148{
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600149 char *options, *tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600150 char *p;
151 substring_t args[MAX_OPT_ARGS];
152 int option;
Prem Karat4d630552011-05-06 18:35:32 +0530153 char *s;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600154 int ret = 0;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600155
Aneesh Kumar K.V095e7992013-05-20 12:20:54 +0530156 clnt->proto_version = p9_proto_2000L;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600157 clnt->msize = 8192;
158
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600159 if (!opts)
160 return 0;
161
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600162 tmp_options = kstrdup(opts, GFP_KERNEL);
163 if (!tmp_options) {
Joe Perches5d385152011-11-28 10:40:46 -0800164 p9_debug(P9_DEBUG_ERROR,
165 "failed to allocate copy of option string\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600166 return -ENOMEM;
167 }
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600168 options = tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600169
170 while ((p = strsep(&options, ",")) != NULL) {
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530171 int token, r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600172 if (!*p)
173 continue;
174 token = match_token(p, tokens, args);
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530175 switch (token) {
176 case Opt_msize:
177 r = match_int(&args[0], &option);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600178 if (r < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800179 p9_debug(P9_DEBUG_ERROR,
180 "integer field, but no integer?\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600181 ret = r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600182 continue;
183 }
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600184 clnt->msize = option;
185 break;
186 case Opt_trans:
Prem Karat4d630552011-05-06 18:35:32 +0530187 s = match_strdup(&args[0]);
188 if (!s) {
189 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800190 p9_debug(P9_DEBUG_ERROR,
191 "problem allocating copy of trans arg\n");
Prem Karat4d630552011-05-06 18:35:32 +0530192 goto free_and_return;
Chengguang Xu9421c3e2018-04-05 16:20:01 -0700193 }
194
195 v9fs_put_trans(clnt->trans_mod);
Prem Karat4d630552011-05-06 18:35:32 +0530196 clnt->trans_mod = v9fs_get_trans_by_name(s);
197 if (clnt->trans_mod == NULL) {
Joe Perches5d385152011-11-28 10:40:46 -0800198 pr_info("Could not find request transport: %s\n",
199 s);
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600200 ret = -EINVAL;
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600201 }
Prem Karat4d630552011-05-06 18:35:32 +0530202 kfree(s);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600203 break;
204 case Opt_legacy:
Sripathi Kodi342fee12010-03-05 18:50:14 +0000205 clnt->proto_version = p9_proto_legacy;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600206 break;
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000207 case Opt_version:
Prem Karat4d630552011-05-06 18:35:32 +0530208 s = match_strdup(&args[0]);
209 if (!s) {
210 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800211 p9_debug(P9_DEBUG_ERROR,
212 "problem allocating copy of version arg\n");
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000213 goto free_and_return;
Prem Karat4d630552011-05-06 18:35:32 +0530214 }
Chengguang Xu8d856c72018-06-07 17:05:03 -0700215 r = get_protocol_version(s);
216 if (r < 0)
217 ret = r;
218 else
219 clnt->proto_version = r;
Prem Karat4d630552011-05-06 18:35:32 +0530220 kfree(s);
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000221 break;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600222 default:
223 continue;
224 }
225 }
Tejun Heo72029fe2008-09-24 16:22:23 -0500226
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600227free_and_return:
Chengguang Xu9421c3e2018-04-05 16:20:01 -0700228 v9fs_put_trans(clnt->trans_mod);
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600229 kfree(tmp_options);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600230 return ret;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600231}
232
Rashika05a782d2014-02-09 19:57:33 +0530233static struct p9_fcall *p9_fcall_alloc(int alloc_msize)
Simon Derr53873202013-06-21 15:32:36 +0200234{
235 struct p9_fcall *fc;
236 fc = kmalloc(sizeof(struct p9_fcall) + alloc_msize, GFP_NOFS);
237 if (!fc)
238 return NULL;
239 fc->capacity = alloc_msize;
240 fc->sdata = (char *) fc + sizeof(struct p9_fcall);
241 return fc;
242}
243
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500244/**
245 * p9_tag_alloc - lookup/allocate a request by tag
246 * @c: client session to lookup tag within
247 * @tag: numeric id for transaction
248 *
249 * this is a simple array lookup, but will grow the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300250 * request_slots as necessary to accommodate transaction
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500251 * ids which did not previously have a slot.
252 *
253 * this code relies on the client spinlock to manage locks, its
254 * possible we should switch to something else, but I'd rather
255 * stick with something low-overhead for the common case.
256 *
257 */
258
Dan Carpenteref6b0802011-08-26 19:57:40 +0300259static struct p9_req_t *
260p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500261{
262 unsigned long flags;
263 int row, col;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500264 struct p9_req_t *req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530265 int alloc_msize = min(c->msize, max_size);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500266
267 /* This looks up the original request by tag so we know which
268 * buffer to read the data into */
269 tag++;
270
271 if (tag >= c->max_tag) {
272 spin_lock_irqsave(&c->lock, flags);
273 /* check again since original check was outside of lock */
274 while (tag >= c->max_tag) {
275 row = (tag / P9_ROW_MAXTAG);
276 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
277 sizeof(struct p9_req_t), GFP_ATOMIC);
278
279 if (!c->reqs[row]) {
Joe Perches5d385152011-11-28 10:40:46 -0800280 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergene45c5402008-10-22 18:54:47 -0500281 spin_unlock_irqrestore(&c->lock, flags);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500282 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500283 }
284 for (col = 0; col < P9_ROW_MAXTAG; col++) {
285 c->reqs[row][col].status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500286 c->reqs[row][col].tc = NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500287 }
288 c->max_tag += P9_ROW_MAXTAG;
289 }
290 spin_unlock_irqrestore(&c->lock, flags);
291 }
292 row = tag / P9_ROW_MAXTAG;
293 col = tag % P9_ROW_MAXTAG;
294
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500295 req = &c->reqs[row][col];
Simon Derr53873202013-06-21 15:32:36 +0200296 if (!req->wq) {
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530297 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
Simon Derrea071aa2013-06-21 15:32:34 +0200298 if (!req->wq)
299 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500300 init_waitqueue_head(req->wq);
Simon Derrea071aa2013-06-21 15:32:34 +0200301 }
Simon Derrea071aa2013-06-21 15:32:34 +0200302
Simon Derr53873202013-06-21 15:32:36 +0200303 if (!req->tc)
304 req->tc = p9_fcall_alloc(alloc_msize);
305 if (!req->rc)
306 req->rc = p9_fcall_alloc(alloc_msize);
307 if (!req->tc || !req->rc)
308 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500309
310 p9pdu_reset(req->tc);
311 p9pdu_reset(req->rc);
312
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500313 req->tc->tag = tag-1;
314 req->status = REQ_STATUS_ALLOC;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500315
Simon Derrea071aa2013-06-21 15:32:34 +0200316 return req;
317
318grow_failed:
319 pr_err("Couldn't grow tag array\n");
320 kfree(req->tc);
321 kfree(req->rc);
322 kfree(req->wq);
323 req->tc = req->rc = NULL;
324 req->wq = NULL;
325 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500326}
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500327
328/**
329 * p9_tag_lookup - lookup a request by tag
330 * @c: client session to lookup tag within
331 * @tag: numeric id for transaction
332 *
333 */
334
335struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
336{
337 int row, col;
338
339 /* This looks up the original request by tag so we know which
340 * buffer to read the data into */
341 tag++;
342
Eric Van Hensbergenb85f7d922011-07-13 19:12:18 -0500343 if(tag >= c->max_tag)
344 return NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500345
346 row = tag / P9_ROW_MAXTAG;
347 col = tag % P9_ROW_MAXTAG;
348
349 return &c->reqs[row][col];
350}
351EXPORT_SYMBOL(p9_tag_lookup);
352
353/**
354 * p9_tag_init - setup tags structure and contents
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600355 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500356 *
357 * This initializes the tags structure for each client instance.
358 *
359 */
360
361static int p9_tag_init(struct p9_client *c)
362{
363 int err = 0;
364
365 c->tagpool = p9_idpool_create();
366 if (IS_ERR(c->tagpool)) {
367 err = PTR_ERR(c->tagpool);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500368 goto error;
369 }
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000370 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
371 if (err < 0) {
372 p9_idpool_destroy(c->tagpool);
373 goto error;
374 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500375 c->max_tag = 0;
376error:
377 return err;
378}
379
380/**
381 * p9_tag_cleanup - cleans up tags structure and reclaims resources
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600382 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500383 *
384 * This frees resources associated with the tags structure
385 *
386 */
387static void p9_tag_cleanup(struct p9_client *c)
388{
389 int row, col;
390
391 /* check to insure all requests are idle */
392 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
393 for (col = 0; col < P9_ROW_MAXTAG; col++) {
394 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
Joe Perches5d385152011-11-28 10:40:46 -0800395 p9_debug(P9_DEBUG_MUX,
396 "Attempting to cleanup non-free tag %d,%d\n",
397 row, col);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500398 /* TODO: delay execution of cleanup */
399 return;
400 }
401 }
402 }
403
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000404 if (c->tagpool) {
405 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500406 p9_idpool_destroy(c->tagpool);
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000407 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500408
409 /* free requests associated with tags */
410 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500411 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500412 kfree(c->reqs[row][col].wq);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500413 kfree(c->reqs[row][col].tc);
414 kfree(c->reqs[row][col].rc);
415 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500416 kfree(c->reqs[row]);
417 }
418 c->max_tag = 0;
419}
420
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500421/**
422 * p9_free_req - free a request and clean-up as necessary
423 * c: client state
424 * r: request to release
425 *
426 */
427
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500428static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500429{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500430 int tag = r->tc->tag;
Joe Perches5d385152011-11-28 10:40:46 -0800431 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500432
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500433 r->status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500434 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
435 p9_idpool_put(tag, c->tagpool);
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500436}
437
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500438/**
439 * p9_client_cb - call back from transport to client
440 * c: client state
441 * req: request received
442 *
443 */
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100444void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500445{
Joe Perches5d385152011-11-28 10:40:46 -0800446 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100447
448 /*
449 * This barrier is needed to make sure any change made to req before
450 * the other thread wakes up will indeed be seen by the waiting side.
451 */
452 smp_wmb();
453 req->status = status;
454
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500455 wake_up(req->wq);
Joe Perches5d385152011-11-28 10:40:46 -0800456 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500457}
458EXPORT_SYMBOL(p9_client_cb);
459
460/**
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500461 * p9_parse_header - parse header arguments out of a packet
462 * @pdu: packet to parse
463 * @size: size of packet
464 * @type: type of request
465 * @tag: tag of packet
466 * @rewind: set if we need to rewind offset afterwards
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500467 */
468
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500469int
470p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
471 int rewind)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500472{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500473 int8_t r_type;
474 int16_t r_tag;
475 int32_t r_size;
476 int offset = pdu->offset;
477 int err;
478
479 pdu->offset = 0;
480 if (pdu->size == 0)
481 pdu->size = 7;
482
483 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
484 if (err)
485 goto rewind_and_exit;
486
487 pdu->size = r_size;
488 pdu->id = r_type;
489 pdu->tag = r_tag;
490
Joe Perches5d385152011-11-28 10:40:46 -0800491 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
492 pdu->size, pdu->id, pdu->tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500493
494 if (type)
495 *type = r_type;
496 if (tag)
497 *tag = r_tag;
498 if (size)
499 *size = r_size;
500
501
502rewind_and_exit:
503 if (rewind)
504 pdu->offset = offset;
505 return err;
506}
507EXPORT_SYMBOL(p9_parse_header);
508
509/**
510 * p9_check_errors - check 9p packet for error return and process it
511 * @c: current client instance
512 * @req: request to parse and check for error conditions
513 *
514 * returns error code if one is discovered, otherwise returns 0
515 *
516 * this will have to be more complicated if we have multiple
517 * error packet types
518 */
519
520static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
521{
522 int8_t type;
523 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800524 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500525
526 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530527 /*
528 * dump the response from server
529 * This should be after check errors which poplulate pdu_fcall.
530 */
531 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500532 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800533 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500534 return err;
535 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800536 if (type != P9_RERROR && type != P9_RLERROR)
537 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500538
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800539 if (!p9_is_proto_dotl(c)) {
540 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800541 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530542 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800543 if (err)
544 goto out_err;
545
Arnd Bergmann287980e2016-05-27 23:23:25 +0200546 if (p9_is_proto_dotu(c) && ecode < 512)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500547 err = -ecode;
548
Arnd Bergmann287980e2016-05-27 23:23:25 +0200549 if (!err) {
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800550 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500551
Joe Perches5d385152011-11-28 10:40:46 -0800552 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
553 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800554 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530555 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800556 } else {
557 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
558 err = -ecode;
559
Joe Perches5d385152011-11-28 10:40:46 -0800560 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800561 }
562
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500563 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530564
565out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800566 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530567
568 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500569}
570
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530571/**
572 * p9_check_zc_errors - check 9p packet for error return and process it
573 * @c: current client instance
574 * @req: request to parse and check for error conditions
575 * @in_hdrlen: Size of response protocol buffer.
576 *
577 * returns error code if one is discovered, otherwise returns 0
578 *
579 * this will have to be more complicated if we have multiple
580 * error packet types
581 */
582
583static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
Al Viro4f3b35c2015-04-01 19:57:53 -0400584 struct iov_iter *uidata, int in_hdrlen)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530585{
586 int err;
587 int ecode;
588 int8_t type;
589 char *ename = NULL;
590
591 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530592 /*
593 * dump the response from server
594 * This should be after parse_header which poplulate pdu_fcall.
595 */
596 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530597 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800598 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530599 return err;
600 }
601
602 if (type != P9_RERROR && type != P9_RLERROR)
603 return 0;
604
605 if (!p9_is_proto_dotl(c)) {
606 /* Error is reported in string format */
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530607 int len;
608 /* 7 = header size for RERROR; */
609 int inline_len = in_hdrlen - 7;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530610
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530611 len = req->rc->size - req->rc->offset;
612 if (len > (P9_ZC_HDR_SZ - 7)) {
613 err = -EFAULT;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530614 goto out_err;
615 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530616
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530617 ename = &req->rc->sdata[req->rc->offset];
618 if (len > inline_len) {
619 /* We have error in external buffer */
Al Viro1c512a72017-02-17 23:16:09 -0500620 if (!copy_from_iter_full(ename + inline_len,
621 len - inline_len, uidata)) {
Al Viro4f3b35c2015-04-01 19:57:53 -0400622 err = -EFAULT;
623 goto out_err;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530624 }
625 }
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530626 ename = NULL;
627 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
628 &ename, &ecode);
629 if (err)
630 goto out_err;
631
Arnd Bergmann287980e2016-05-27 23:23:25 +0200632 if (p9_is_proto_dotu(c) && ecode < 512)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530633 err = -ecode;
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530634
Arnd Bergmann287980e2016-05-27 23:23:25 +0200635 if (!err) {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530636 err = p9_errstr2errno(ename, strlen(ename));
637
Joe Perches5d385152011-11-28 10:40:46 -0800638 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
639 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530640 }
641 kfree(ename);
642 } else {
643 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
644 err = -ecode;
645
Joe Perches5d385152011-11-28 10:40:46 -0800646 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530647 }
648 return err;
649
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530650out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800651 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530652 return err;
653}
654
Rob Landleyaca00762011-05-08 18:46:38 +0000655static struct p9_req_t *
656p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
657
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500658/**
659 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600660 * @c: client state
661 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500662 *
Rob Landleyaca00762011-05-08 18:46:38 +0000663 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500664 * the flush request to the original request. The current
665 * code only supports a single flush request although the protocol
666 * allows for multiple flush requests to be sent for a single request.
667 *
668 */
669
670static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
671{
672 struct p9_req_t *req;
673 int16_t oldtag;
674 int err;
675
676 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
677 if (err)
678 return err;
679
Joe Perches5d385152011-11-28 10:40:46 -0800680 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500681
682 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
683 if (IS_ERR(req))
684 return PTR_ERR(req);
685
Simon Derr1cff3302013-06-21 15:32:42 +0200686 /*
687 * if we haven't received a response for oldreq,
Andi Shyti60ff7792013-07-25 10:54:24 +0200688 * remove it from the list
Simon Derr1cff3302013-06-21 15:32:42 +0200689 */
Simon Derr0bfd6842014-03-10 16:38:52 +0100690 if (oldreq->status == REQ_STATUS_SENT)
Simon Derrafd8d652014-03-10 16:38:49 +0100691 if (c->trans_mod->cancelled)
692 c->trans_mod->cancelled(c, oldreq);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500693
694 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500695 return 0;
696}
697
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530698static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
699 int8_t type, int req_size,
700 const char *fmt, va_list ap)
701{
702 int tag, err;
703 struct p9_req_t *req;
704
Joe Perches5d385152011-11-28 10:40:46 -0800705 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530706
707 /* we allow for any status other than disconnected */
708 if (c->status == Disconnected)
709 return ERR_PTR(-EIO);
710
711 /* if status is begin_disconnected we allow only clunk request */
712 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
713 return ERR_PTR(-EIO);
714
715 tag = P9_NOTAG;
716 if (type != P9_TVERSION) {
717 tag = p9_idpool_get(c->tagpool);
718 if (tag < 0)
719 return ERR_PTR(-ENOMEM);
720 }
721
722 req = p9_tag_alloc(c, tag, req_size);
723 if (IS_ERR(req))
724 return req;
725
726 /* marshall the data */
727 p9pdu_prepare(req->tc, tag, type);
728 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
729 if (err)
730 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530731 p9pdu_finalize(c, req->tc);
732 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530733 return req;
734reterr:
735 p9_free_req(c, req);
736 return ERR_PTR(err);
737}
738
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500739/**
740 * p9_client_rpc - issue a request and wait for a response
741 * @c: client session
742 * @type: type of request
743 * @fmt: protocol format string (see protocol.c)
744 *
745 * Returns request structure (which client must free using p9_free_req)
746 */
747
748static struct p9_req_t *
749p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
750{
751 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530752 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500753 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530754 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500755
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530756 va_start(ap, fmt);
757 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
758 va_end(ap);
759 if (IS_ERR(req))
760 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500761
762 if (signal_pending(current)) {
763 sigpending = 1;
764 clear_thread_flag(TIF_SIGPENDING);
765 } else
766 sigpending = 0;
767
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500768 err = c->trans_mod->request(c, req);
769 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530770 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700771 c->status = Disconnected;
Greg Kurza8522242018-04-05 16:19:44 -0700772 goto recalc_sigpending;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500773 }
Jim Garlicka314f272012-02-01 12:48:53 -0800774again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530775 /* Wait for the response */
Tuomas Tynkkynen9523fea2017-09-06 17:59:08 +0300776 err = wait_event_killable(*req->wq, req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500777
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100778 /*
779 * Make sure our req is coherent with regard to updates in other
780 * threads - echoes to wmb() in the callback
781 */
782 smp_rmb();
783
Jim Garlicka314f272012-02-01 12:48:53 -0800784 if ((err == -ERESTARTSYS) && (c->status == Connected)
785 && (type == P9_TFLUSH)) {
786 sigpending = 1;
787 clear_thread_flag(TIF_SIGPENDING);
788 goto again;
789 }
790
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500791 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800792 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500793 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500794 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500795 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800796 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500797 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500798 clear_thread_flag(TIF_SIGPENDING);
799
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500800 if (c->trans_mod->cancel(c, req))
801 p9_client_flush(c, req);
802
803 /* if we received the response anyway, don't signal error */
804 if (req->status == REQ_STATUS_RCVD)
805 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500806 }
Greg Kurza8522242018-04-05 16:19:44 -0700807recalc_sigpending:
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500808 if (sigpending) {
809 spin_lock_irqsave(&current->sighand->siglock, flags);
810 recalc_sigpending();
811 spin_unlock_irqrestore(&current->sighand->siglock, flags);
812 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500813 if (err < 0)
814 goto reterr;
815
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500816 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530817 trace_9p_client_res(c, type, req->rc->tag, err);
818 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500819 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530820reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530821 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200822 return ERR_PTR(safe_errno(err));
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530823}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500824
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530825/**
826 * p9_client_zc_rpc - issue a request and wait for a response
827 * @c: client session
828 * @type: type of request
Al Viro4f3b35c2015-04-01 19:57:53 -0400829 * @uidata: destination for zero copy read
830 * @uodata: source for zero copy write
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530831 * @inlen: read buffer size
832 * @olen: write buffer size
833 * @hdrlen: reader header size, This is the size of response protocol data
834 * @fmt: protocol format string (see protocol.c)
835 *
836 * Returns request structure (which client must free using p9_free_req)
837 */
838static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
Al Viro4f3b35c2015-04-01 19:57:53 -0400839 struct iov_iter *uidata,
840 struct iov_iter *uodata,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530841 int inlen, int olen, int in_hdrlen,
Al Viro4f3b35c2015-04-01 19:57:53 -0400842 const char *fmt, ...)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530843{
844 va_list ap;
845 int sigpending, err;
846 unsigned long flags;
847 struct p9_req_t *req;
848
849 va_start(ap, fmt);
850 /*
851 * We allocate a inline protocol data of only 4k bytes.
852 * The actual content is passed in zero-copy fashion.
853 */
854 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
855 va_end(ap);
856 if (IS_ERR(req))
857 return req;
858
859 if (signal_pending(current)) {
860 sigpending = 1;
861 clear_thread_flag(TIF_SIGPENDING);
862 } else
863 sigpending = 0;
864
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530865 err = c->trans_mod->zc_request(c, req, uidata, uodata,
Al Viro4f3b35c2015-04-01 19:57:53 -0400866 inlen, olen, in_hdrlen);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530867 if (err < 0) {
868 if (err == -EIO)
869 c->status = Disconnected;
Al Viroa84b69c2015-07-04 16:04:19 -0400870 if (err != -ERESTARTSYS)
Greg Kurza8522242018-04-05 16:19:44 -0700871 goto recalc_sigpending;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530872 }
873 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800874 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530875 err = req->t_err;
876 }
877 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800878 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530879 sigpending = 1;
880 clear_thread_flag(TIF_SIGPENDING);
881
882 if (c->trans_mod->cancel(c, req))
883 p9_client_flush(c, req);
884
885 /* if we received the response anyway, don't signal error */
886 if (req->status == REQ_STATUS_RCVD)
887 err = 0;
888 }
Greg Kurza8522242018-04-05 16:19:44 -0700889recalc_sigpending:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530890 if (sigpending) {
891 spin_lock_irqsave(&current->sighand->siglock, flags);
892 recalc_sigpending();
893 spin_unlock_irqrestore(&current->sighand->siglock, flags);
894 }
895 if (err < 0)
896 goto reterr;
897
Al Viro4f3b35c2015-04-01 19:57:53 -0400898 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530899 trace_9p_client_res(c, type, req->rc->tag, err);
900 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530901 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500902reterr:
903 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200904 return ERR_PTR(safe_errno(err));
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500905}
906
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500907static struct p9_fid *p9_fid_create(struct p9_client *clnt)
908{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500909 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500910 struct p9_fid *fid;
Tom Tuckercac23d62008-10-23 16:31:02 -0500911 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500912
Joe Perches5d385152011-11-28 10:40:46 -0800913 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500914 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
915 if (!fid)
916 return ERR_PTR(-ENOMEM);
917
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500918 ret = p9_idpool_get(clnt->fidpool);
Roel Kluin24e94de2009-01-18 21:32:11 -0800919 if (ret < 0) {
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500920 ret = -ENOSPC;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500921 goto error;
922 }
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500923 fid->fid = ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500924
925 memset(&fid->qid, 0, sizeof(struct p9_qid));
926 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100927 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500928 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600929 fid->rdir = NULL;
Tom Tuckercac23d62008-10-23 16:31:02 -0500930 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500931 list_add(&fid->flist, &clnt->fidlist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500932 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500933
934 return fid;
935
936error:
937 kfree(fid);
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500938 return ERR_PTR(ret);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500939}
940
941static void p9_fid_destroy(struct p9_fid *fid)
942{
943 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500944 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500945
Joe Perches5d385152011-11-28 10:40:46 -0800946 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500947 clnt = fid->clnt;
948 p9_idpool_put(fid->fid, clnt->fidpool);
Tom Tuckercac23d62008-10-23 16:31:02 -0500949 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500950 list_del(&fid->flist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500951 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600952 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500953 kfree(fid);
954}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600955
stephen hemminger32a875a2010-10-19 06:48:16 +0000956static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500957{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500958 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500959 struct p9_req_t *req;
960 char *version;
961 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500962
Joe Perches5d385152011-11-28 10:40:46 -0800963 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
964 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000965
966 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000967 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000968 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000969 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000970 break;
971 case p9_proto_2000u:
972 req = p9_client_rpc(c, P9_TVERSION, "ds",
973 c->msize, "9P2000.u");
974 break;
975 case p9_proto_legacy:
976 req = p9_client_rpc(c, P9_TVERSION, "ds",
977 c->msize, "9P2000");
978 break;
979 default:
980 return -EINVAL;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000981 }
982
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500983 if (IS_ERR(req))
984 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500985
Sripathi Kodi342fee12010-03-05 18:50:14 +0000986 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500987 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800988 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530989 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500990 goto error;
991 }
992
Joe Perches5d385152011-11-28 10:40:46 -0800993 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000994 if (!strncmp(version, "9P2000.L", 8))
995 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000996 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +0000997 c->proto_version = p9_proto_2000u;
998 else if (!strncmp(version, "9P2000", 6))
999 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001000 else {
1001 err = -EREMOTEIO;
1002 goto error;
1003 }
1004
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001005 if (msize < c->msize)
1006 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001007
1008error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001009 kfree(version);
1010 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001011
1012 return err;
1013}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001014
1015struct p9_client *p9_client_create(const char *dev_name, char *options)
1016{
1017 int err;
1018 struct p9_client *clnt;
Will Deacon50192ab2013-08-21 18:24:47 +01001019 char *client_id;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001020
1021 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001022 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1023 if (!clnt)
1024 return ERR_PTR(-ENOMEM);
1025
Tejun Heo72029fe2008-09-24 16:22:23 -05001026 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001027 clnt->trans = NULL;
Will Deacon50192ab2013-08-21 18:24:47 +01001028
1029 client_id = utsname()->nodename;
1030 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1031
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001032 spin_lock_init(&clnt->lock);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001033 INIT_LIST_HEAD(&clnt->fidlist);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001034
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001035 err = p9_tag_init(clnt);
1036 if (err < 0)
1037 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001038
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001039 err = parse_opts(options, clnt);
1040 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001041 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001042
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001043 if (!clnt->trans_mod)
1044 clnt->trans_mod = v9fs_get_default_trans();
1045
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001046 if (clnt->trans_mod == NULL) {
1047 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001048 p9_debug(P9_DEBUG_ERROR,
1049 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001050 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001051 }
1052
1053 clnt->fidpool = p9_idpool_create();
1054 if (IS_ERR(clnt->fidpool)) {
1055 err = PTR_ERR(clnt->fidpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001056 goto put_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001057 }
1058
Joe Perches5d385152011-11-28 10:40:46 -08001059 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1060 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001061
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001062 err = clnt->trans_mod->create(clnt, dev_name, options);
1063 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001064 goto destroy_fidpool;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001065
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001066 if (clnt->msize > clnt->trans_mod->maxsize)
1067 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001068
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001069 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001070 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001071 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001072
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001073 return clnt;
1074
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001075close_trans:
1076 clnt->trans_mod->close(clnt);
1077destroy_fidpool:
1078 p9_idpool_destroy(clnt->fidpool);
1079put_trans:
1080 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001081destroy_tagpool:
1082 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001083free_client:
1084 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001085 return ERR_PTR(err);
1086}
1087EXPORT_SYMBOL(p9_client_create);
1088
1089void p9_client_destroy(struct p9_client *clnt)
1090{
1091 struct p9_fid *fid, *fidptr;
1092
Joe Perches5d385152011-11-28 10:40:46 -08001093 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001094
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001095 if (clnt->trans_mod)
1096 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001097
Tejun Heo72029fe2008-09-24 16:22:23 -05001098 v9fs_put_trans(clnt->trans_mod);
1099
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001100 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
Joe Perches5d385152011-11-28 10:40:46 -08001101 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001102 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001103 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001104
Eric Van Hensbergen0af88872007-07-13 16:47:58 -05001105 if (clnt->fidpool)
1106 p9_idpool_destroy(clnt->fidpool);
1107
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001108 p9_tag_cleanup(clnt);
1109
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001110 kfree(clnt);
1111}
1112EXPORT_SYMBOL(p9_client_destroy);
1113
1114void p9_client_disconnect(struct p9_client *clnt)
1115{
Joe Perches5d385152011-11-28 10:40:46 -08001116 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001117 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001118}
1119EXPORT_SYMBOL(p9_client_disconnect);
1120
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001121void p9_client_begin_disconnect(struct p9_client *clnt)
1122{
Joe Perches5d385152011-11-28 10:40:46 -08001123 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001124 clnt->status = BeginDisconnect;
1125}
1126EXPORT_SYMBOL(p9_client_begin_disconnect);
1127
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001128struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Al Viro7880b432017-01-12 04:01:17 -05001129 const char *uname, kuid_t n_uname, const char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001130{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301131 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001132 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001133 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001134 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001135
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001136
Joe Perches5d385152011-11-28 10:40:46 -08001137 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1138 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001139 fid = p9_fid_create(clnt);
1140 if (IS_ERR(fid)) {
1141 err = PTR_ERR(fid);
1142 fid = NULL;
1143 goto error;
1144 }
Al Viro21c9f5c2015-04-02 21:47:49 -04001145 fid->uid = n_uname;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001146
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001147 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001148 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1149 if (IS_ERR(req)) {
1150 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001151 goto error;
1152 }
1153
Sripathi Kodi342fee12010-03-05 18:50:14 +00001154 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001155 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301156 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001157 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001158 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001159 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001160
Joe Perches5d385152011-11-28 10:40:46 -08001161 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1162 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001163
1164 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1165
1166 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001167 return fid;
1168
1169error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001170 if (fid)
1171 p9_fid_destroy(fid);
1172 return ERR_PTR(err);
1173}
1174EXPORT_SYMBOL(p9_client_attach);
1175
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301176struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
Al Viro7880b432017-01-12 04:01:17 -05001177 const unsigned char * const *wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001178{
1179 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001180 struct p9_client *clnt;
1181 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001182 struct p9_qid *wqids;
1183 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301184 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001185
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001186 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001187 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001188 clnt = oldfid->clnt;
1189 if (clone) {
1190 fid = p9_fid_create(clnt);
1191 if (IS_ERR(fid)) {
1192 err = PTR_ERR(fid);
1193 fid = NULL;
1194 goto error;
1195 }
1196
1197 fid->uid = oldfid->uid;
1198 } else
1199 fid = oldfid;
1200
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001201
Joe Perches5d385152011-11-28 10:40:46 -08001202 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1203 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001204
1205 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1206 nwname, wnames);
1207 if (IS_ERR(req)) {
1208 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001209 goto error;
1210 }
1211
Sripathi Kodi342fee12010-03-05 18:50:14 +00001212 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001213 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301214 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001215 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001216 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001217 }
1218 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001219
Joe Perches5d385152011-11-28 10:40:46 -08001220 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001221
1222 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001223 err = -ENOENT;
1224 goto clunk_fid;
1225 }
1226
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001227 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001228 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001229 count, wqids[count].type,
1230 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001231 wqids[count].version);
1232
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001233 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001234 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001235 else
1236 fid->qid = oldfid->qid;
1237
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001238 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001239 return fid;
1240
1241clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001242 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001243 p9_client_clunk(fid);
1244 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001245
1246error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001247 if (fid && (fid != oldfid))
1248 p9_fid_destroy(fid);
1249
1250 return ERR_PTR(err);
1251}
1252EXPORT_SYMBOL(p9_client_walk);
1253
1254int p9_client_open(struct p9_fid *fid, int mode)
1255{
1256 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001257 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001258 struct p9_req_t *req;
1259 struct p9_qid qid;
1260 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001261
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001262 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001263 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301264 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1265 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001266
1267 if (fid->mode != -1)
1268 return -EINVAL;
1269
M. Mohan Kumaref565472010-06-22 19:47:50 +05301270 if (p9_is_proto_dotl(clnt))
1271 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1272 else
1273 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001274 if (IS_ERR(req)) {
1275 err = PTR_ERR(req);
1276 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001277 }
1278
Sripathi Kodi342fee12010-03-05 18:50:14 +00001279 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001280 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301281 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001282 goto free_and_error;
1283 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001284
Joe Perches5d385152011-11-28 10:40:46 -08001285 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301286 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1287 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001288
1289 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001290 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001291
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001292free_and_error:
1293 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001294error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001295 return err;
1296}
1297EXPORT_SYMBOL(p9_client_open);
1298
Al Viro7880b432017-01-12 04:01:17 -05001299int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001300 kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001301{
1302 int err = 0;
1303 struct p9_client *clnt;
1304 struct p9_req_t *req;
1305 int iounit;
1306
Joe Perches5d385152011-11-28 10:40:46 -08001307 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001308 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001309 ofid->fid, name, flags, mode,
1310 from_kgid(&init_user_ns, gid));
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001311 clnt = ofid->clnt;
1312
1313 if (ofid->mode != -1)
1314 return -EINVAL;
1315
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001316 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001317 mode, gid);
1318 if (IS_ERR(req)) {
1319 err = PTR_ERR(req);
1320 goto error;
1321 }
1322
1323 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1324 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301325 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001326 goto free_and_error;
1327 }
1328
Joe Perches5d385152011-11-28 10:40:46 -08001329 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001330 qid->type,
1331 (unsigned long long)qid->path,
1332 qid->version, iounit);
1333
1334 ofid->mode = mode;
1335 ofid->iounit = iounit;
1336
1337free_and_error:
1338 p9_free_req(clnt, req);
1339error:
1340 return err;
1341}
1342EXPORT_SYMBOL(p9_client_create_dotl);
1343
Al Viro7880b432017-01-12 04:01:17 -05001344int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001345 char *extension)
1346{
1347 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001348 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001349 struct p9_req_t *req;
1350 struct p9_qid qid;
1351 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001352
Joe Perches5d385152011-11-28 10:40:46 -08001353 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001354 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001355 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001356 clnt = fid->clnt;
1357
1358 if (fid->mode != -1)
1359 return -EINVAL;
1360
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001361 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1362 mode, extension);
1363 if (IS_ERR(req)) {
1364 err = PTR_ERR(req);
1365 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001366 }
1367
Sripathi Kodi342fee12010-03-05 18:50:14 +00001368 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001369 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301370 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001371 goto free_and_error;
1372 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001373
Joe Perches5d385152011-11-28 10:40:46 -08001374 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001375 qid.type,
1376 (unsigned long long)qid.path,
1377 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001378
1379 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001380 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001381
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001382free_and_error:
1383 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001384error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001385 return err;
1386}
1387EXPORT_SYMBOL(p9_client_fcreate);
1388
Al Viro7880b432017-01-12 04:01:17 -05001389int p9_client_symlink(struct p9_fid *dfid, const char *name,
1390 const char *symtgt, kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001391{
1392 int err = 0;
1393 struct p9_client *clnt;
1394 struct p9_req_t *req;
1395
Joe Perches5d385152011-11-28 10:40:46 -08001396 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001397 dfid->fid, name, symtgt);
1398 clnt = dfid->clnt;
1399
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001400 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001401 gid);
1402 if (IS_ERR(req)) {
1403 err = PTR_ERR(req);
1404 goto error;
1405 }
1406
1407 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1408 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301409 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001410 goto free_and_error;
1411 }
1412
Joe Perches5d385152011-11-28 10:40:46 -08001413 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001414 qid->type, (unsigned long long)qid->path, qid->version);
1415
1416free_and_error:
1417 p9_free_req(clnt, req);
1418error:
1419 return err;
1420}
1421EXPORT_SYMBOL(p9_client_symlink);
1422
Al Viro7880b432017-01-12 04:01:17 -05001423int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001424{
1425 struct p9_client *clnt;
1426 struct p9_req_t *req;
1427
Joe Perches5d385152011-11-28 10:40:46 -08001428 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001429 dfid->fid, oldfid->fid, newname);
1430 clnt = dfid->clnt;
1431 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1432 newname);
1433 if (IS_ERR(req))
1434 return PTR_ERR(req);
1435
Joe Perches5d385152011-11-28 10:40:46 -08001436 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001437 p9_free_req(clnt, req);
1438 return 0;
1439}
1440EXPORT_SYMBOL(p9_client_link);
1441
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001442int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001443{
1444 int err;
1445 struct p9_client *clnt;
1446 struct p9_req_t *req;
1447
Joe Perches5d385152011-11-28 10:40:46 -08001448 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001449 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001450 err = 0;
1451 clnt = fid->clnt;
1452
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001453 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001454 if (IS_ERR(req)) {
1455 err = PTR_ERR(req);
1456 goto error;
1457 }
1458
Joe Perches5d385152011-11-28 10:40:46 -08001459 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001460
1461 p9_free_req(clnt, req);
1462
1463error:
1464 return err;
1465}
1466EXPORT_SYMBOL(p9_client_fsync);
1467
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001468int p9_client_clunk(struct p9_fid *fid)
1469{
1470 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001471 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001472 struct p9_req_t *req;
Jim Garlick208f3c22012-02-26 14:49:57 -06001473 int retries = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001474
jvrao8e44a082010-08-25 16:27:06 +00001475 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001476 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1477 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001478 dump_stack();
1479 return 0;
1480 }
1481
Jim Garlick208f3c22012-02-26 14:49:57 -06001482again:
1483 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1484 retries);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001485 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001486 clnt = fid->clnt;
1487
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001488 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1489 if (IS_ERR(req)) {
1490 err = PTR_ERR(req);
1491 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001492 }
1493
Joe Perches5d385152011-11-28 10:40:46 -08001494 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001495
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001496 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001497error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001498 /*
1499 * Fid is not valid even after a failed clunk
Jim Garlick208f3c22012-02-26 14:49:57 -06001500 * If interrupted, retry once then give up and
1501 * leak fid until umount.
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001502 */
Jim Garlick208f3c22012-02-26 14:49:57 -06001503 if (err == -ERESTARTSYS) {
1504 if (retries++ == 0)
1505 goto again;
1506 } else
1507 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001508 return err;
1509}
1510EXPORT_SYMBOL(p9_client_clunk);
1511
1512int p9_client_remove(struct p9_fid *fid)
1513{
1514 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001515 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001516 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001517
Joe Perches5d385152011-11-28 10:40:46 -08001518 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001519 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001520 clnt = fid->clnt;
1521
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001522 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1523 if (IS_ERR(req)) {
1524 err = PTR_ERR(req);
1525 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001526 }
1527
Joe Perches5d385152011-11-28 10:40:46 -08001528 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001529
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001530 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001531error:
Jim Garlick208f3c22012-02-26 14:49:57 -06001532 if (err == -ERESTARTSYS)
1533 p9_client_clunk(fid);
1534 else
1535 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001536 return err;
1537}
1538EXPORT_SYMBOL(p9_client_remove);
1539
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301540int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1541{
1542 int err = 0;
1543 struct p9_req_t *req;
1544 struct p9_client *clnt;
1545
Joe Perches5d385152011-11-28 10:40:46 -08001546 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301547 dfid->fid, name, flags);
1548
1549 clnt = dfid->clnt;
1550 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1551 if (IS_ERR(req)) {
1552 err = PTR_ERR(req);
1553 goto error;
1554 }
Joe Perches5d385152011-11-28 10:40:46 -08001555 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301556
1557 p9_free_req(clnt, req);
1558error:
1559 return err;
1560}
1561EXPORT_SYMBOL(p9_client_unlinkat);
1562
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001563int
Al Viroe1200fe62015-04-01 23:42:28 -04001564p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001565{
Al Viroe1200fe62015-04-01 23:42:28 -04001566 struct p9_client *clnt = fid->clnt;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301567 struct p9_req_t *req;
Al Viroe1200fe62015-04-01 23:42:28 -04001568 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001569 *err = 0;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301570
Joe Perches5d385152011-11-28 10:40:46 -08001571 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Al Viroe1200fe62015-04-01 23:42:28 -04001572 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001573
Al Viroe1200fe62015-04-01 23:42:28 -04001574 while (iov_iter_count(to)) {
1575 int count = iov_iter_count(to);
1576 int rsize, non_zc = 0;
1577 char *dataptr;
1578
1579 rsize = fid->iounit;
1580 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1581 rsize = clnt->msize - P9_IOHDRSZ;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001582
Al Viroe1200fe62015-04-01 23:42:28 -04001583 if (count < rsize)
1584 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001585
Al Viroe1200fe62015-04-01 23:42:28 -04001586 /* Don't bother zerocopy for small IO (< 1024) */
1587 if (clnt->trans_mod->zc_request && rsize > 1024) {
1588 /*
1589 * response header len is 11
1590 * PDU Header(7) + IO Size (4)
1591 */
1592 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1593 0, 11, "dqd", fid->fid,
1594 offset, rsize);
1595 } else {
1596 non_zc = 1;
1597 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1598 rsize);
1599 }
1600 if (IS_ERR(req)) {
1601 *err = PTR_ERR(req);
1602 break;
1603 }
1604
1605 *err = p9pdu_readf(req->rc, clnt->proto_version,
1606 "D", &count, &dataptr);
1607 if (*err) {
1608 trace_9p_protocol_dump(clnt, req->rc);
1609 p9_free_req(clnt, req);
1610 break;
1611 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001612 if (rsize < count) {
1613 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1614 count = rsize;
1615 }
Al Viroe1200fe62015-04-01 23:42:28 -04001616
1617 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1618 if (!count) {
1619 p9_free_req(clnt, req);
1620 break;
1621 }
1622
1623 if (non_zc) {
1624 int n = copy_to_iter(dataptr, count, to);
1625 total += n;
1626 offset += n;
1627 if (n != count) {
1628 *err = -EFAULT;
1629 p9_free_req(clnt, req);
1630 break;
1631 }
1632 } else {
1633 iov_iter_advance(to, count);
1634 total += count;
1635 offset += count;
1636 }
1637 p9_free_req(clnt, req);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001638 }
Al Viroe1200fe62015-04-01 23:42:28 -04001639 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001640}
1641EXPORT_SYMBOL(p9_client_read);
1642
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001643int
Al Viro070b3652015-04-01 20:17:51 -04001644p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001645{
Al Viro070b3652015-04-01 20:17:51 -04001646 struct p9_client *clnt = fid->clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001647 struct p9_req_t *req;
Al Viro070b3652015-04-01 20:17:51 -04001648 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001649 *err = 0;
Al Viro4f3b35c2015-04-01 19:57:53 -04001650
Al Viro070b3652015-04-01 20:17:51 -04001651 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1652 fid->fid, (unsigned long long) offset,
1653 iov_iter_count(from));
1654
1655 while (iov_iter_count(from)) {
1656 int count = iov_iter_count(from);
1657 int rsize = fid->iounit;
1658 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1659 rsize = clnt->msize - P9_IOHDRSZ;
1660
1661 if (count < rsize)
1662 rsize = count;
1663
1664 /* Don't bother zerocopy for small IO (< 1024) */
1665 if (clnt->trans_mod->zc_request && rsize > 1024) {
1666 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1667 rsize, P9_ZC_HDR_SZ, "dqd",
1668 fid->fid, offset, rsize);
1669 } else {
1670 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1671 offset, rsize, from);
1672 }
1673 if (IS_ERR(req)) {
1674 *err = PTR_ERR(req);
1675 break;
1676 }
1677
1678 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1679 if (*err) {
1680 trace_9p_protocol_dump(clnt, req->rc);
1681 p9_free_req(clnt, req);
Al Viro67e808f2015-07-04 16:11:05 -04001682 break;
Al Viro070b3652015-04-01 20:17:51 -04001683 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001684 if (rsize < count) {
1685 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1686 count = rsize;
1687 }
Al Viro070b3652015-04-01 20:17:51 -04001688
1689 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1690
1691 p9_free_req(clnt, req);
1692 iov_iter_advance(from, count);
1693 total += count;
1694 offset += count;
Al Viro4f3b35c2015-04-01 19:57:53 -04001695 }
Al Viro070b3652015-04-01 20:17:51 -04001696 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001697}
1698EXPORT_SYMBOL(p9_client_write);
1699
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001700struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001701{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001702 int err;
1703 struct p9_client *clnt;
1704 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1705 struct p9_req_t *req;
1706 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001707
Joe Perches5d385152011-11-28 10:40:46 -08001708 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001709
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001710 if (!ret)
1711 return ERR_PTR(-ENOMEM);
1712
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001713 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001714 clnt = fid->clnt;
1715
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001716 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1717 if (IS_ERR(req)) {
1718 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001719 goto error;
1720 }
1721
Sripathi Kodi342fee12010-03-05 18:50:14 +00001722 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001723 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301724 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001725 p9_free_req(clnt, req);
1726 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001727 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001728
Joe Perches5d385152011-11-28 10:40:46 -08001729 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001730 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1731 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1732 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1733 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001734 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001735 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1736 ret->atime, ret->mtime, (unsigned long long)ret->length,
1737 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001738 from_kuid(&init_user_ns, ret->n_uid),
1739 from_kgid(&init_user_ns, ret->n_gid),
1740 from_kuid(&init_user_ns, ret->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001741
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001742 p9_free_req(clnt, req);
1743 return ret;
1744
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001745error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001746 kfree(ret);
1747 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001748}
1749EXPORT_SYMBOL(p9_client_stat);
1750
Sripathi Kodif0853122010-07-12 20:07:23 +05301751struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1752 u64 request_mask)
1753{
1754 int err;
1755 struct p9_client *clnt;
1756 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1757 GFP_KERNEL);
1758 struct p9_req_t *req;
1759
Joe Perches5d385152011-11-28 10:40:46 -08001760 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301761 fid->fid, request_mask);
1762
1763 if (!ret)
1764 return ERR_PTR(-ENOMEM);
1765
1766 err = 0;
1767 clnt = fid->clnt;
1768
1769 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1770 if (IS_ERR(req)) {
1771 err = PTR_ERR(req);
1772 goto error;
1773 }
1774
1775 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1776 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301777 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301778 p9_free_req(clnt, req);
1779 goto error;
1780 }
1781
Joe Perches5d385152011-11-28 10:40:46 -08001782 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301783 "<<< RGETATTR st_result_mask=%lld\n"
1784 "<<< qid=%x.%llx.%x\n"
1785 "<<< st_mode=%8.8x st_nlink=%llu\n"
1786 "<<< st_uid=%d st_gid=%d\n"
1787 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1788 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1789 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1790 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1791 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1792 "<<< st_gen=%lld st_data_version=%lld",
1793 ret->st_result_mask, ret->qid.type, ret->qid.path,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001794 ret->qid.version, ret->st_mode, ret->st_nlink,
1795 from_kuid(&init_user_ns, ret->st_uid),
1796 from_kgid(&init_user_ns, ret->st_gid),
1797 ret->st_rdev, ret->st_size, ret->st_blksize,
Sripathi Kodif0853122010-07-12 20:07:23 +05301798 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1799 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1800 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1801 ret->st_gen, ret->st_data_version);
1802
1803 p9_free_req(clnt, req);
1804 return ret;
1805
1806error:
1807 kfree(ret);
1808 return ERR_PTR(err);
1809}
1810EXPORT_SYMBOL(p9_client_getattr_dotl);
1811
Sripathi Kodi342fee12010-03-05 18:50:14 +00001812static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001813{
1814 int ret;
1815
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001816 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001817 /* size[2] type[2] dev[4] qid[13] */
1818 /* mode[4] atime[4] mtime[4] length[8]*/
1819 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001820 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001821
1822 if (wst->name)
1823 ret += strlen(wst->name);
1824 if (wst->uid)
1825 ret += strlen(wst->uid);
1826 if (wst->gid)
1827 ret += strlen(wst->gid);
1828 if (wst->muid)
1829 ret += strlen(wst->muid);
1830
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001831 if ((proto_version == p9_proto_2000u) ||
1832 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001833 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1834 if (wst->extension)
1835 ret += strlen(wst->extension);
1836 }
1837
1838 return ret;
1839}
1840
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001841int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1842{
1843 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001844 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001845 struct p9_client *clnt;
1846
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001847 err = 0;
1848 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001849 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001850 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1851 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001852 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1853 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1854 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1855 " uid=%d gid=%d n_muid=%d\n",
1856 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001857 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1858 wst->atime, wst->mtime, (unsigned long long)wst->length,
1859 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001860 from_kuid(&init_user_ns, wst->n_uid),
1861 from_kgid(&init_user_ns, wst->n_gid),
1862 from_kuid(&init_user_ns, wst->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001863
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001864 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001865 if (IS_ERR(req)) {
1866 err = PTR_ERR(req);
1867 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001868 }
1869
Joe Perches5d385152011-11-28 10:40:46 -08001870 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001871
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001872 p9_free_req(clnt, req);
1873error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001874 return err;
1875}
1876EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001877
Sripathi Kodi87d78452010-06-18 11:50:10 +05301878int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1879{
1880 int err;
1881 struct p9_req_t *req;
1882 struct p9_client *clnt;
1883
1884 err = 0;
1885 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001886 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1887 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301888 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1889 " atime_sec=%lld atime_nsec=%lld\n"
1890 " mtime_sec=%lld mtime_nsec=%lld\n",
Eric W. Biederman447c5092013-01-29 16:18:50 -08001891 p9attr->valid, p9attr->mode,
1892 from_kuid(&init_user_ns, p9attr->uid),
1893 from_kgid(&init_user_ns, p9attr->gid),
Sripathi Kodi87d78452010-06-18 11:50:10 +05301894 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1895 p9attr->mtime_sec, p9attr->mtime_nsec);
1896
1897 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1898
1899 if (IS_ERR(req)) {
1900 err = PTR_ERR(req);
1901 goto error;
1902 }
Joe Perches5d385152011-11-28 10:40:46 -08001903 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301904 p9_free_req(clnt, req);
1905error:
1906 return err;
1907}
1908EXPORT_SYMBOL(p9_client_setattr);
1909
Sripathi Kodibda8e772010-03-25 12:45:30 +00001910int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1911{
1912 int err;
1913 struct p9_req_t *req;
1914 struct p9_client *clnt;
1915
1916 err = 0;
1917 clnt = fid->clnt;
1918
Joe Perches5d385152011-11-28 10:40:46 -08001919 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001920
1921 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1922 if (IS_ERR(req)) {
1923 err = PTR_ERR(req);
1924 goto error;
1925 }
1926
1927 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1928 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1929 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1930 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301931 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001932 p9_free_req(clnt, req);
1933 goto error;
1934 }
1935
Joe Perches5d385152011-11-28 10:40:46 -08001936 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001937 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1938 "fsid %llu namelen %ld\n",
1939 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1940 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1941 sb->fsid, (long int)sb->namelen);
1942
1943 p9_free_req(clnt, req);
1944error:
1945 return err;
1946}
1947EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001948
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301949int p9_client_rename(struct p9_fid *fid,
1950 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001951{
1952 int err;
1953 struct p9_req_t *req;
1954 struct p9_client *clnt;
1955
1956 err = 0;
1957 clnt = fid->clnt;
1958
Joe Perches5d385152011-11-28 10:40:46 -08001959 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001960 fid->fid, newdirfid->fid, name);
1961
1962 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1963 newdirfid->fid, name);
1964 if (IS_ERR(req)) {
1965 err = PTR_ERR(req);
1966 goto error;
1967 }
1968
Joe Perches5d385152011-11-28 10:40:46 -08001969 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001970
1971 p9_free_req(clnt, req);
1972error:
1973 return err;
1974}
1975EXPORT_SYMBOL(p9_client_rename);
1976
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301977int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1978 struct p9_fid *newdirfid, const char *new_name)
1979{
1980 int err;
1981 struct p9_req_t *req;
1982 struct p9_client *clnt;
1983
1984 err = 0;
1985 clnt = olddirfid->clnt;
1986
Joe Perches5d385152011-11-28 10:40:46 -08001987 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301988 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1989 newdirfid->fid, new_name);
1990
1991 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1992 old_name, newdirfid->fid, new_name);
1993 if (IS_ERR(req)) {
1994 err = PTR_ERR(req);
1995 goto error;
1996 }
1997
Joe Perches5d385152011-11-28 10:40:46 -08001998 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301999 newdirfid->fid, new_name);
2000
2001 p9_free_req(clnt, req);
2002error:
2003 return err;
2004}
2005EXPORT_SYMBOL(p9_client_renameat);
2006
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302007/*
2008 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
2009 */
2010struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
2011 const char *attr_name, u64 *attr_size)
2012{
2013 int err;
2014 struct p9_req_t *req;
2015 struct p9_client *clnt;
2016 struct p9_fid *attr_fid;
2017
2018 err = 0;
2019 clnt = file_fid->clnt;
2020 attr_fid = p9_fid_create(clnt);
2021 if (IS_ERR(attr_fid)) {
2022 err = PTR_ERR(attr_fid);
2023 attr_fid = NULL;
2024 goto error;
2025 }
Joe Perches5d385152011-11-28 10:40:46 -08002026 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302027 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2028 file_fid->fid, attr_fid->fid, attr_name);
2029
2030 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2031 file_fid->fid, attr_fid->fid, attr_name);
2032 if (IS_ERR(req)) {
2033 err = PTR_ERR(req);
2034 goto error;
2035 }
2036 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2037 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302038 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302039 p9_free_req(clnt, req);
2040 goto clunk_fid;
2041 }
2042 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08002043 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302044 attr_fid->fid, *attr_size);
2045 return attr_fid;
2046clunk_fid:
2047 p9_client_clunk(attr_fid);
2048 attr_fid = NULL;
2049error:
2050 if (attr_fid && (attr_fid != file_fid))
2051 p9_fid_destroy(attr_fid);
2052
2053 return ERR_PTR(err);
2054}
2055EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2056
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302057int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2058 u64 attr_size, int flags)
2059{
2060 int err;
2061 struct p9_req_t *req;
2062 struct p9_client *clnt;
2063
Joe Perches5d385152011-11-28 10:40:46 -08002064 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302065 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2066 fid->fid, name, (long long)attr_size, flags);
2067 err = 0;
2068 clnt = fid->clnt;
2069 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2070 fid->fid, name, attr_size, flags);
2071 if (IS_ERR(req)) {
2072 err = PTR_ERR(req);
2073 goto error;
2074 }
Joe Perches5d385152011-11-28 10:40:46 -08002075 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302076 p9_free_req(clnt, req);
2077error:
2078 return err;
2079}
2080EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2081
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002082int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2083{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302084 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002085 struct p9_client *clnt;
2086 struct p9_req_t *req;
2087 char *dataptr;
Al Viro4f3b35c2015-04-01 19:57:53 -04002088 struct kvec kv = {.iov_base = data, .iov_len = count};
2089 struct iov_iter to;
2090
2091 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002092
Joe Perches5d385152011-11-28 10:40:46 -08002093 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00002094 fid->fid, (unsigned long long) offset, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002095
2096 err = 0;
2097 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002098
2099 rsize = fid->iounit;
2100 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2101 rsize = clnt->msize - P9_READDIRHDRSZ;
2102
2103 if (count < rsize)
2104 rsize = count;
2105
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302106 /* Don't bother zerocopy for small IO (< 1024) */
2107 if (clnt->trans_mod->zc_request && rsize > 1024) {
2108 /*
2109 * response header len is 11
2110 * PDU Header(7) + IO Size (4)
2111 */
Al Viro4f3b35c2015-04-01 19:57:53 -04002112 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2113 11, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002114 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302115 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002116 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302117 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002118 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002119 if (IS_ERR(req)) {
2120 err = PTR_ERR(req);
2121 goto error;
2122 }
2123
2124 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2125 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302126 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002127 goto free_and_error;
2128 }
Al Viro71d6ad02017-04-14 17:22:18 -04002129 if (rsize < count) {
2130 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2131 count = rsize;
2132 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002133
Joe Perches5d385152011-11-28 10:40:46 -08002134 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002135
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302136 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002137 memmove(data, dataptr, count);
2138
2139 p9_free_req(clnt, req);
2140 return count;
2141
2142free_and_error:
2143 p9_free_req(clnt, req);
2144error:
2145 return err;
2146}
2147EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302148
Al Viro7880b432017-01-12 04:01:17 -05002149int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002150 dev_t rdev, kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302151{
2152 int err;
2153 struct p9_client *clnt;
2154 struct p9_req_t *req;
2155
2156 err = 0;
2157 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002158 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302159 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002160 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302161 MAJOR(rdev), MINOR(rdev), gid);
2162 if (IS_ERR(req))
2163 return PTR_ERR(req);
2164
2165 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2166 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302167 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302168 goto error;
2169 }
Joe Perches5d385152011-11-28 10:40:46 -08002170 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302171 (unsigned long long)qid->path, qid->version);
2172
2173error:
2174 p9_free_req(clnt, req);
2175 return err;
2176
2177}
2178EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302179
Al Viro7880b432017-01-12 04:01:17 -05002180int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002181 kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302182{
2183 int err;
2184 struct p9_client *clnt;
2185 struct p9_req_t *req;
2186
2187 err = 0;
2188 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002189 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002190 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2191 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302192 gid);
2193 if (IS_ERR(req))
2194 return PTR_ERR(req);
2195
2196 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2197 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302198 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302199 goto error;
2200 }
Joe Perches5d385152011-11-28 10:40:46 -08002201 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302202 (unsigned long long)qid->path, qid->version);
2203
2204error:
2205 p9_free_req(clnt, req);
2206 return err;
2207
2208}
2209EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302210
2211int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2212{
2213 int err;
2214 struct p9_client *clnt;
2215 struct p9_req_t *req;
2216
2217 err = 0;
2218 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002219 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302220 "start %lld length %lld proc_id %d client_id %s\n",
2221 fid->fid, flock->type, flock->flags, flock->start,
2222 flock->length, flock->proc_id, flock->client_id);
2223
2224 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2225 flock->flags, flock->start, flock->length,
2226 flock->proc_id, flock->client_id);
2227
2228 if (IS_ERR(req))
2229 return PTR_ERR(req);
2230
2231 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2232 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302233 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302234 goto error;
2235 }
Joe Perches5d385152011-11-28 10:40:46 -08002236 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302237error:
2238 p9_free_req(clnt, req);
2239 return err;
2240
2241}
2242EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302243
2244int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2245{
2246 int err;
2247 struct p9_client *clnt;
2248 struct p9_req_t *req;
2249
2250 err = 0;
2251 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002252 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302253 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2254 glock->start, glock->length, glock->proc_id, glock->client_id);
2255
2256 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2257 glock->start, glock->length, glock->proc_id, glock->client_id);
2258
2259 if (IS_ERR(req))
2260 return PTR_ERR(req);
2261
2262 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2263 &glock->start, &glock->length, &glock->proc_id,
2264 &glock->client_id);
2265 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302266 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302267 goto error;
2268 }
Joe Perches5d385152011-11-28 10:40:46 -08002269 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302270 "proc_id %d client_id %s\n", glock->type, glock->start,
2271 glock->length, glock->proc_id, glock->client_id);
2272error:
2273 p9_free_req(clnt, req);
2274 return err;
2275}
2276EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302277
2278int p9_client_readlink(struct p9_fid *fid, char **target)
2279{
2280 int err;
2281 struct p9_client *clnt;
2282 struct p9_req_t *req;
2283
2284 err = 0;
2285 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002286 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302287
2288 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2289 if (IS_ERR(req))
2290 return PTR_ERR(req);
2291
2292 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2293 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302294 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302295 goto error;
2296 }
Joe Perches5d385152011-11-28 10:40:46 -08002297 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302298error:
2299 p9_free_req(clnt, req);
2300 return err;
2301}
2302EXPORT_SYMBOL(p9_client_readlink);