blob: 21e6df1cc70f407a85e486d2e26ec7254a6d399b [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;
Prem Karat4d630552011-05-06 18:35:32 +0530201 kfree(s);
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600202 goto free_and_return;
203 }
Prem Karat4d630552011-05-06 18:35:32 +0530204 kfree(s);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600205 break;
206 case Opt_legacy:
Sripathi Kodi342fee12010-03-05 18:50:14 +0000207 clnt->proto_version = p9_proto_legacy;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600208 break;
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000209 case Opt_version:
Prem Karat4d630552011-05-06 18:35:32 +0530210 s = match_strdup(&args[0]);
211 if (!s) {
212 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800213 p9_debug(P9_DEBUG_ERROR,
214 "problem allocating copy of version arg\n");
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000215 goto free_and_return;
Prem Karat4d630552011-05-06 18:35:32 +0530216 }
217 ret = get_protocol_version(s);
218 if (ret == -EINVAL) {
219 kfree(s);
220 goto free_and_return;
221 }
222 kfree(s);
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000223 clnt->proto_version = ret;
224 break;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600225 default:
226 continue;
227 }
228 }
Tejun Heo72029fe2008-09-24 16:22:23 -0500229
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600230free_and_return:
Chengguang Xu9421c3e2018-04-05 16:20:01 -0700231 v9fs_put_trans(clnt->trans_mod);
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600232 kfree(tmp_options);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600233 return ret;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600234}
235
Rashika05a782d2014-02-09 19:57:33 +0530236static struct p9_fcall *p9_fcall_alloc(int alloc_msize)
Simon Derr53873202013-06-21 15:32:36 +0200237{
238 struct p9_fcall *fc;
239 fc = kmalloc(sizeof(struct p9_fcall) + alloc_msize, GFP_NOFS);
240 if (!fc)
241 return NULL;
242 fc->capacity = alloc_msize;
243 fc->sdata = (char *) fc + sizeof(struct p9_fcall);
244 return fc;
245}
246
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500247/**
248 * p9_tag_alloc - lookup/allocate a request by tag
249 * @c: client session to lookup tag within
250 * @tag: numeric id for transaction
251 *
252 * this is a simple array lookup, but will grow the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300253 * request_slots as necessary to accommodate transaction
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500254 * ids which did not previously have a slot.
255 *
256 * this code relies on the client spinlock to manage locks, its
257 * possible we should switch to something else, but I'd rather
258 * stick with something low-overhead for the common case.
259 *
260 */
261
Dan Carpenteref6b0802011-08-26 19:57:40 +0300262static struct p9_req_t *
263p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500264{
265 unsigned long flags;
266 int row, col;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500267 struct p9_req_t *req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530268 int alloc_msize = min(c->msize, max_size);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500269
270 /* This looks up the original request by tag so we know which
271 * buffer to read the data into */
272 tag++;
273
274 if (tag >= c->max_tag) {
275 spin_lock_irqsave(&c->lock, flags);
276 /* check again since original check was outside of lock */
277 while (tag >= c->max_tag) {
278 row = (tag / P9_ROW_MAXTAG);
279 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
280 sizeof(struct p9_req_t), GFP_ATOMIC);
281
282 if (!c->reqs[row]) {
Joe Perches5d385152011-11-28 10:40:46 -0800283 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergene45c5402008-10-22 18:54:47 -0500284 spin_unlock_irqrestore(&c->lock, flags);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500285 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500286 }
287 for (col = 0; col < P9_ROW_MAXTAG; col++) {
288 c->reqs[row][col].status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500289 c->reqs[row][col].tc = NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500290 }
291 c->max_tag += P9_ROW_MAXTAG;
292 }
293 spin_unlock_irqrestore(&c->lock, flags);
294 }
295 row = tag / P9_ROW_MAXTAG;
296 col = tag % P9_ROW_MAXTAG;
297
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500298 req = &c->reqs[row][col];
Simon Derr53873202013-06-21 15:32:36 +0200299 if (!req->wq) {
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530300 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
Simon Derrea071aa2013-06-21 15:32:34 +0200301 if (!req->wq)
302 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500303 init_waitqueue_head(req->wq);
Simon Derrea071aa2013-06-21 15:32:34 +0200304 }
Simon Derrea071aa2013-06-21 15:32:34 +0200305
Simon Derr53873202013-06-21 15:32:36 +0200306 if (!req->tc)
307 req->tc = p9_fcall_alloc(alloc_msize);
308 if (!req->rc)
309 req->rc = p9_fcall_alloc(alloc_msize);
310 if (!req->tc || !req->rc)
311 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500312
313 p9pdu_reset(req->tc);
314 p9pdu_reset(req->rc);
315
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500316 req->tc->tag = tag-1;
317 req->status = REQ_STATUS_ALLOC;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500318
Simon Derrea071aa2013-06-21 15:32:34 +0200319 return req;
320
321grow_failed:
322 pr_err("Couldn't grow tag array\n");
323 kfree(req->tc);
324 kfree(req->rc);
325 kfree(req->wq);
326 req->tc = req->rc = NULL;
327 req->wq = NULL;
328 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500329}
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500330
331/**
332 * p9_tag_lookup - lookup a request by tag
333 * @c: client session to lookup tag within
334 * @tag: numeric id for transaction
335 *
336 */
337
338struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
339{
340 int row, col;
341
342 /* This looks up the original request by tag so we know which
343 * buffer to read the data into */
344 tag++;
345
Eric Van Hensbergenb85f7d922011-07-13 19:12:18 -0500346 if(tag >= c->max_tag)
347 return NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500348
349 row = tag / P9_ROW_MAXTAG;
350 col = tag % P9_ROW_MAXTAG;
351
352 return &c->reqs[row][col];
353}
354EXPORT_SYMBOL(p9_tag_lookup);
355
356/**
357 * p9_tag_init - setup tags structure and contents
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600358 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500359 *
360 * This initializes the tags structure for each client instance.
361 *
362 */
363
364static int p9_tag_init(struct p9_client *c)
365{
366 int err = 0;
367
368 c->tagpool = p9_idpool_create();
369 if (IS_ERR(c->tagpool)) {
370 err = PTR_ERR(c->tagpool);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500371 goto error;
372 }
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000373 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
374 if (err < 0) {
375 p9_idpool_destroy(c->tagpool);
376 goto error;
377 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500378 c->max_tag = 0;
379error:
380 return err;
381}
382
383/**
384 * p9_tag_cleanup - cleans up tags structure and reclaims resources
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600385 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500386 *
387 * This frees resources associated with the tags structure
388 *
389 */
390static void p9_tag_cleanup(struct p9_client *c)
391{
392 int row, col;
393
394 /* check to insure all requests are idle */
395 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
396 for (col = 0; col < P9_ROW_MAXTAG; col++) {
397 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
Joe Perches5d385152011-11-28 10:40:46 -0800398 p9_debug(P9_DEBUG_MUX,
399 "Attempting to cleanup non-free tag %d,%d\n",
400 row, col);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500401 /* TODO: delay execution of cleanup */
402 return;
403 }
404 }
405 }
406
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000407 if (c->tagpool) {
408 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500409 p9_idpool_destroy(c->tagpool);
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000410 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500411
412 /* free requests associated with tags */
413 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500414 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500415 kfree(c->reqs[row][col].wq);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500416 kfree(c->reqs[row][col].tc);
417 kfree(c->reqs[row][col].rc);
418 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500419 kfree(c->reqs[row]);
420 }
421 c->max_tag = 0;
422}
423
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500424/**
425 * p9_free_req - free a request and clean-up as necessary
426 * c: client state
427 * r: request to release
428 *
429 */
430
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500431static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500432{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500433 int tag = r->tc->tag;
Joe Perches5d385152011-11-28 10:40:46 -0800434 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500435
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500436 r->status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500437 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
438 p9_idpool_put(tag, c->tagpool);
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500439}
440
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500441/**
442 * p9_client_cb - call back from transport to client
443 * c: client state
444 * req: request received
445 *
446 */
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100447void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500448{
Joe Perches5d385152011-11-28 10:40:46 -0800449 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100450
451 /*
452 * This barrier is needed to make sure any change made to req before
453 * the other thread wakes up will indeed be seen by the waiting side.
454 */
455 smp_wmb();
456 req->status = status;
457
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500458 wake_up(req->wq);
Joe Perches5d385152011-11-28 10:40:46 -0800459 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500460}
461EXPORT_SYMBOL(p9_client_cb);
462
463/**
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500464 * p9_parse_header - parse header arguments out of a packet
465 * @pdu: packet to parse
466 * @size: size of packet
467 * @type: type of request
468 * @tag: tag of packet
469 * @rewind: set if we need to rewind offset afterwards
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500470 */
471
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500472int
473p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
474 int rewind)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500475{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500476 int8_t r_type;
477 int16_t r_tag;
478 int32_t r_size;
479 int offset = pdu->offset;
480 int err;
481
482 pdu->offset = 0;
483 if (pdu->size == 0)
484 pdu->size = 7;
485
486 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
487 if (err)
488 goto rewind_and_exit;
489
490 pdu->size = r_size;
491 pdu->id = r_type;
492 pdu->tag = r_tag;
493
Joe Perches5d385152011-11-28 10:40:46 -0800494 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
495 pdu->size, pdu->id, pdu->tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500496
497 if (type)
498 *type = r_type;
499 if (tag)
500 *tag = r_tag;
501 if (size)
502 *size = r_size;
503
504
505rewind_and_exit:
506 if (rewind)
507 pdu->offset = offset;
508 return err;
509}
510EXPORT_SYMBOL(p9_parse_header);
511
512/**
513 * p9_check_errors - check 9p packet for error return and process it
514 * @c: current client instance
515 * @req: request to parse and check for error conditions
516 *
517 * returns error code if one is discovered, otherwise returns 0
518 *
519 * this will have to be more complicated if we have multiple
520 * error packet types
521 */
522
523static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
524{
525 int8_t type;
526 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800527 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500528
529 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530530 /*
531 * dump the response from server
532 * This should be after check errors which poplulate pdu_fcall.
533 */
534 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500535 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800536 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500537 return err;
538 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800539 if (type != P9_RERROR && type != P9_RLERROR)
540 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500541
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800542 if (!p9_is_proto_dotl(c)) {
543 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800544 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530545 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800546 if (err)
547 goto out_err;
548
Arnd Bergmann287980e2016-05-27 23:23:25 +0200549 if (p9_is_proto_dotu(c) && ecode < 512)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500550 err = -ecode;
551
Arnd Bergmann287980e2016-05-27 23:23:25 +0200552 if (!err) {
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800553 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500554
Joe Perches5d385152011-11-28 10:40:46 -0800555 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
556 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800557 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530558 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800559 } else {
560 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
561 err = -ecode;
562
Joe Perches5d385152011-11-28 10:40:46 -0800563 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800564 }
565
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500566 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530567
568out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800569 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530570
571 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500572}
573
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530574/**
575 * p9_check_zc_errors - check 9p packet for error return and process it
576 * @c: current client instance
577 * @req: request to parse and check for error conditions
578 * @in_hdrlen: Size of response protocol buffer.
579 *
580 * returns error code if one is discovered, otherwise returns 0
581 *
582 * this will have to be more complicated if we have multiple
583 * error packet types
584 */
585
586static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
Al Viro4f3b35c2015-04-01 19:57:53 -0400587 struct iov_iter *uidata, int in_hdrlen)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530588{
589 int err;
590 int ecode;
591 int8_t type;
592 char *ename = NULL;
593
594 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530595 /*
596 * dump the response from server
597 * This should be after parse_header which poplulate pdu_fcall.
598 */
599 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530600 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800601 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530602 return err;
603 }
604
605 if (type != P9_RERROR && type != P9_RLERROR)
606 return 0;
607
608 if (!p9_is_proto_dotl(c)) {
609 /* Error is reported in string format */
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530610 int len;
611 /* 7 = header size for RERROR; */
612 int inline_len = in_hdrlen - 7;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530613
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530614 len = req->rc->size - req->rc->offset;
615 if (len > (P9_ZC_HDR_SZ - 7)) {
616 err = -EFAULT;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530617 goto out_err;
618 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530619
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530620 ename = &req->rc->sdata[req->rc->offset];
621 if (len > inline_len) {
622 /* We have error in external buffer */
Al Viro1c512a72017-02-17 23:16:09 -0500623 if (!copy_from_iter_full(ename + inline_len,
624 len - inline_len, uidata)) {
Al Viro4f3b35c2015-04-01 19:57:53 -0400625 err = -EFAULT;
626 goto out_err;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530627 }
628 }
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530629 ename = NULL;
630 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
631 &ename, &ecode);
632 if (err)
633 goto out_err;
634
Arnd Bergmann287980e2016-05-27 23:23:25 +0200635 if (p9_is_proto_dotu(c) && ecode < 512)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530636 err = -ecode;
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530637
Arnd Bergmann287980e2016-05-27 23:23:25 +0200638 if (!err) {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530639 err = p9_errstr2errno(ename, strlen(ename));
640
Joe Perches5d385152011-11-28 10:40:46 -0800641 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
642 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530643 }
644 kfree(ename);
645 } else {
646 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
647 err = -ecode;
648
Joe Perches5d385152011-11-28 10:40:46 -0800649 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530650 }
651 return err;
652
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530653out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800654 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530655 return err;
656}
657
Rob Landleyaca00762011-05-08 18:46:38 +0000658static struct p9_req_t *
659p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
660
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500661/**
662 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600663 * @c: client state
664 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500665 *
Rob Landleyaca00762011-05-08 18:46:38 +0000666 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500667 * the flush request to the original request. The current
668 * code only supports a single flush request although the protocol
669 * allows for multiple flush requests to be sent for a single request.
670 *
671 */
672
673static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
674{
675 struct p9_req_t *req;
676 int16_t oldtag;
677 int err;
678
679 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
680 if (err)
681 return err;
682
Joe Perches5d385152011-11-28 10:40:46 -0800683 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500684
685 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
686 if (IS_ERR(req))
687 return PTR_ERR(req);
688
Simon Derr1cff3302013-06-21 15:32:42 +0200689 /*
690 * if we haven't received a response for oldreq,
Andi Shyti60ff7792013-07-25 10:54:24 +0200691 * remove it from the list
Simon Derr1cff3302013-06-21 15:32:42 +0200692 */
Simon Derr0bfd6842014-03-10 16:38:52 +0100693 if (oldreq->status == REQ_STATUS_SENT)
Simon Derrafd8d652014-03-10 16:38:49 +0100694 if (c->trans_mod->cancelled)
695 c->trans_mod->cancelled(c, oldreq);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500696
697 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500698 return 0;
699}
700
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530701static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
702 int8_t type, int req_size,
703 const char *fmt, va_list ap)
704{
705 int tag, err;
706 struct p9_req_t *req;
707
Joe Perches5d385152011-11-28 10:40:46 -0800708 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530709
710 /* we allow for any status other than disconnected */
711 if (c->status == Disconnected)
712 return ERR_PTR(-EIO);
713
714 /* if status is begin_disconnected we allow only clunk request */
715 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
716 return ERR_PTR(-EIO);
717
718 tag = P9_NOTAG;
719 if (type != P9_TVERSION) {
720 tag = p9_idpool_get(c->tagpool);
721 if (tag < 0)
722 return ERR_PTR(-ENOMEM);
723 }
724
725 req = p9_tag_alloc(c, tag, req_size);
726 if (IS_ERR(req))
727 return req;
728
729 /* marshall the data */
730 p9pdu_prepare(req->tc, tag, type);
731 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
732 if (err)
733 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530734 p9pdu_finalize(c, req->tc);
735 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530736 return req;
737reterr:
738 p9_free_req(c, req);
739 return ERR_PTR(err);
740}
741
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500742/**
743 * p9_client_rpc - issue a request and wait for a response
744 * @c: client session
745 * @type: type of request
746 * @fmt: protocol format string (see protocol.c)
747 *
748 * Returns request structure (which client must free using p9_free_req)
749 */
750
751static struct p9_req_t *
752p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
753{
754 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530755 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500756 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530757 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500758
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530759 va_start(ap, fmt);
760 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
761 va_end(ap);
762 if (IS_ERR(req))
763 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500764
765 if (signal_pending(current)) {
766 sigpending = 1;
767 clear_thread_flag(TIF_SIGPENDING);
768 } else
769 sigpending = 0;
770
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500771 err = c->trans_mod->request(c, req);
772 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530773 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700774 c->status = Disconnected;
Greg Kurza8522242018-04-05 16:19:44 -0700775 goto recalc_sigpending;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500776 }
Jim Garlicka314f272012-02-01 12:48:53 -0800777again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530778 /* Wait for the response */
Tuomas Tynkkynen9523fea2017-09-06 17:59:08 +0300779 err = wait_event_killable(*req->wq, req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500780
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100781 /*
782 * Make sure our req is coherent with regard to updates in other
783 * threads - echoes to wmb() in the callback
784 */
785 smp_rmb();
786
Jim Garlicka314f272012-02-01 12:48:53 -0800787 if ((err == -ERESTARTSYS) && (c->status == Connected)
788 && (type == P9_TFLUSH)) {
789 sigpending = 1;
790 clear_thread_flag(TIF_SIGPENDING);
791 goto again;
792 }
793
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500794 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800795 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500796 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500797 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500798 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800799 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500800 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500801 clear_thread_flag(TIF_SIGPENDING);
802
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500803 if (c->trans_mod->cancel(c, req))
804 p9_client_flush(c, req);
805
806 /* if we received the response anyway, don't signal error */
807 if (req->status == REQ_STATUS_RCVD)
808 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500809 }
Greg Kurza8522242018-04-05 16:19:44 -0700810recalc_sigpending:
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500811 if (sigpending) {
812 spin_lock_irqsave(&current->sighand->siglock, flags);
813 recalc_sigpending();
814 spin_unlock_irqrestore(&current->sighand->siglock, flags);
815 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500816 if (err < 0)
817 goto reterr;
818
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500819 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530820 trace_9p_client_res(c, type, req->rc->tag, err);
821 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500822 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530823reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530824 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200825 return ERR_PTR(safe_errno(err));
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530826}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500827
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530828/**
829 * p9_client_zc_rpc - issue a request and wait for a response
830 * @c: client session
831 * @type: type of request
Al Viro4f3b35c2015-04-01 19:57:53 -0400832 * @uidata: destination for zero copy read
833 * @uodata: source for zero copy write
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530834 * @inlen: read buffer size
835 * @olen: write buffer size
836 * @hdrlen: reader header size, This is the size of response protocol data
837 * @fmt: protocol format string (see protocol.c)
838 *
839 * Returns request structure (which client must free using p9_free_req)
840 */
841static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
Al Viro4f3b35c2015-04-01 19:57:53 -0400842 struct iov_iter *uidata,
843 struct iov_iter *uodata,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530844 int inlen, int olen, int in_hdrlen,
Al Viro4f3b35c2015-04-01 19:57:53 -0400845 const char *fmt, ...)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530846{
847 va_list ap;
848 int sigpending, err;
849 unsigned long flags;
850 struct p9_req_t *req;
851
852 va_start(ap, fmt);
853 /*
854 * We allocate a inline protocol data of only 4k bytes.
855 * The actual content is passed in zero-copy fashion.
856 */
857 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
858 va_end(ap);
859 if (IS_ERR(req))
860 return req;
861
862 if (signal_pending(current)) {
863 sigpending = 1;
864 clear_thread_flag(TIF_SIGPENDING);
865 } else
866 sigpending = 0;
867
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530868 err = c->trans_mod->zc_request(c, req, uidata, uodata,
Al Viro4f3b35c2015-04-01 19:57:53 -0400869 inlen, olen, in_hdrlen);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530870 if (err < 0) {
871 if (err == -EIO)
872 c->status = Disconnected;
Al Viroa84b69c2015-07-04 16:04:19 -0400873 if (err != -ERESTARTSYS)
Greg Kurza8522242018-04-05 16:19:44 -0700874 goto recalc_sigpending;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530875 }
876 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800877 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530878 err = req->t_err;
879 }
880 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800881 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530882 sigpending = 1;
883 clear_thread_flag(TIF_SIGPENDING);
884
885 if (c->trans_mod->cancel(c, req))
886 p9_client_flush(c, req);
887
888 /* if we received the response anyway, don't signal error */
889 if (req->status == REQ_STATUS_RCVD)
890 err = 0;
891 }
Greg Kurza8522242018-04-05 16:19:44 -0700892recalc_sigpending:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530893 if (sigpending) {
894 spin_lock_irqsave(&current->sighand->siglock, flags);
895 recalc_sigpending();
896 spin_unlock_irqrestore(&current->sighand->siglock, flags);
897 }
898 if (err < 0)
899 goto reterr;
900
Al Viro4f3b35c2015-04-01 19:57:53 -0400901 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530902 trace_9p_client_res(c, type, req->rc->tag, err);
903 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530904 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500905reterr:
906 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200907 return ERR_PTR(safe_errno(err));
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500908}
909
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500910static struct p9_fid *p9_fid_create(struct p9_client *clnt)
911{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500912 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500913 struct p9_fid *fid;
Tom Tuckercac23d62008-10-23 16:31:02 -0500914 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500915
Joe Perches5d385152011-11-28 10:40:46 -0800916 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500917 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
918 if (!fid)
919 return ERR_PTR(-ENOMEM);
920
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500921 ret = p9_idpool_get(clnt->fidpool);
Roel Kluin24e94de2009-01-18 21:32:11 -0800922 if (ret < 0) {
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500923 ret = -ENOSPC;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500924 goto error;
925 }
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500926 fid->fid = ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500927
928 memset(&fid->qid, 0, sizeof(struct p9_qid));
929 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100930 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500931 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600932 fid->rdir = NULL;
Tom Tuckercac23d62008-10-23 16:31:02 -0500933 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500934 list_add(&fid->flist, &clnt->fidlist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500935 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500936
937 return fid;
938
939error:
940 kfree(fid);
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500941 return ERR_PTR(ret);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500942}
943
944static void p9_fid_destroy(struct p9_fid *fid)
945{
946 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500947 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500948
Joe Perches5d385152011-11-28 10:40:46 -0800949 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500950 clnt = fid->clnt;
951 p9_idpool_put(fid->fid, clnt->fidpool);
Tom Tuckercac23d62008-10-23 16:31:02 -0500952 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500953 list_del(&fid->flist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500954 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600955 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500956 kfree(fid);
957}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600958
stephen hemminger32a875a2010-10-19 06:48:16 +0000959static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500960{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500961 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500962 struct p9_req_t *req;
963 char *version;
964 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500965
Joe Perches5d385152011-11-28 10:40:46 -0800966 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
967 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000968
969 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000970 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000971 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000972 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000973 break;
974 case p9_proto_2000u:
975 req = p9_client_rpc(c, P9_TVERSION, "ds",
976 c->msize, "9P2000.u");
977 break;
978 case p9_proto_legacy:
979 req = p9_client_rpc(c, P9_TVERSION, "ds",
980 c->msize, "9P2000");
981 break;
982 default:
983 return -EINVAL;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000984 }
985
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500986 if (IS_ERR(req))
987 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500988
Sripathi Kodi342fee12010-03-05 18:50:14 +0000989 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500990 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800991 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530992 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500993 goto error;
994 }
995
Joe Perches5d385152011-11-28 10:40:46 -0800996 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000997 if (!strncmp(version, "9P2000.L", 8))
998 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000999 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +00001000 c->proto_version = p9_proto_2000u;
1001 else if (!strncmp(version, "9P2000", 6))
1002 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001003 else {
1004 err = -EREMOTEIO;
1005 goto error;
1006 }
1007
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001008 if (msize < c->msize)
1009 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001010
1011error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001012 kfree(version);
1013 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001014
1015 return err;
1016}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001017
1018struct p9_client *p9_client_create(const char *dev_name, char *options)
1019{
1020 int err;
1021 struct p9_client *clnt;
Will Deacon50192ab2013-08-21 18:24:47 +01001022 char *client_id;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001023
1024 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001025 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1026 if (!clnt)
1027 return ERR_PTR(-ENOMEM);
1028
Tejun Heo72029fe2008-09-24 16:22:23 -05001029 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001030 clnt->trans = NULL;
Will Deacon50192ab2013-08-21 18:24:47 +01001031
1032 client_id = utsname()->nodename;
1033 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1034
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001035 spin_lock_init(&clnt->lock);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001036 INIT_LIST_HEAD(&clnt->fidlist);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001037
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001038 err = p9_tag_init(clnt);
1039 if (err < 0)
1040 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001041
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001042 err = parse_opts(options, clnt);
1043 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001044 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001045
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001046 if (!clnt->trans_mod)
1047 clnt->trans_mod = v9fs_get_default_trans();
1048
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001049 if (clnt->trans_mod == NULL) {
1050 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001051 p9_debug(P9_DEBUG_ERROR,
1052 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001053 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001054 }
1055
1056 clnt->fidpool = p9_idpool_create();
1057 if (IS_ERR(clnt->fidpool)) {
1058 err = PTR_ERR(clnt->fidpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001059 goto put_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001060 }
1061
Joe Perches5d385152011-11-28 10:40:46 -08001062 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1063 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001064
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001065 err = clnt->trans_mod->create(clnt, dev_name, options);
1066 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001067 goto destroy_fidpool;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001068
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001069 if (clnt->msize > clnt->trans_mod->maxsize)
1070 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001071
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001072 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001073 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001074 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001075
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001076 return clnt;
1077
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001078close_trans:
1079 clnt->trans_mod->close(clnt);
1080destroy_fidpool:
1081 p9_idpool_destroy(clnt->fidpool);
1082put_trans:
1083 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001084destroy_tagpool:
1085 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001086free_client:
1087 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001088 return ERR_PTR(err);
1089}
1090EXPORT_SYMBOL(p9_client_create);
1091
1092void p9_client_destroy(struct p9_client *clnt)
1093{
1094 struct p9_fid *fid, *fidptr;
1095
Joe Perches5d385152011-11-28 10:40:46 -08001096 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001097
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001098 if (clnt->trans_mod)
1099 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001100
Tejun Heo72029fe2008-09-24 16:22:23 -05001101 v9fs_put_trans(clnt->trans_mod);
1102
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001103 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
Joe Perches5d385152011-11-28 10:40:46 -08001104 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001105 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001106 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001107
Eric Van Hensbergen0af88872007-07-13 16:47:58 -05001108 if (clnt->fidpool)
1109 p9_idpool_destroy(clnt->fidpool);
1110
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001111 p9_tag_cleanup(clnt);
1112
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001113 kfree(clnt);
1114}
1115EXPORT_SYMBOL(p9_client_destroy);
1116
1117void p9_client_disconnect(struct p9_client *clnt)
1118{
Joe Perches5d385152011-11-28 10:40:46 -08001119 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001120 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001121}
1122EXPORT_SYMBOL(p9_client_disconnect);
1123
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001124void p9_client_begin_disconnect(struct p9_client *clnt)
1125{
Joe Perches5d385152011-11-28 10:40:46 -08001126 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001127 clnt->status = BeginDisconnect;
1128}
1129EXPORT_SYMBOL(p9_client_begin_disconnect);
1130
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001131struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Al Viro7880b432017-01-12 04:01:17 -05001132 const char *uname, kuid_t n_uname, const char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001133{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301134 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001135 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001136 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001137 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001138
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001139
Joe Perches5d385152011-11-28 10:40:46 -08001140 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1141 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001142 fid = p9_fid_create(clnt);
1143 if (IS_ERR(fid)) {
1144 err = PTR_ERR(fid);
1145 fid = NULL;
1146 goto error;
1147 }
Al Viro21c9f5c2015-04-02 21:47:49 -04001148 fid->uid = n_uname;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001149
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001150 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001151 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1152 if (IS_ERR(req)) {
1153 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001154 goto error;
1155 }
1156
Sripathi Kodi342fee12010-03-05 18:50:14 +00001157 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001158 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301159 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001160 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001161 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001162 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001163
Joe Perches5d385152011-11-28 10:40:46 -08001164 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1165 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001166
1167 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1168
1169 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001170 return fid;
1171
1172error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001173 if (fid)
1174 p9_fid_destroy(fid);
1175 return ERR_PTR(err);
1176}
1177EXPORT_SYMBOL(p9_client_attach);
1178
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301179struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
Al Viro7880b432017-01-12 04:01:17 -05001180 const unsigned char * const *wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001181{
1182 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001183 struct p9_client *clnt;
1184 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001185 struct p9_qid *wqids;
1186 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301187 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001188
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001189 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001190 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001191 clnt = oldfid->clnt;
1192 if (clone) {
1193 fid = p9_fid_create(clnt);
1194 if (IS_ERR(fid)) {
1195 err = PTR_ERR(fid);
1196 fid = NULL;
1197 goto error;
1198 }
1199
1200 fid->uid = oldfid->uid;
1201 } else
1202 fid = oldfid;
1203
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001204
Joe Perches5d385152011-11-28 10:40:46 -08001205 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1206 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001207
1208 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1209 nwname, wnames);
1210 if (IS_ERR(req)) {
1211 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001212 goto error;
1213 }
1214
Sripathi Kodi342fee12010-03-05 18:50:14 +00001215 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001216 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301217 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001218 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001219 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001220 }
1221 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001222
Joe Perches5d385152011-11-28 10:40:46 -08001223 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001224
1225 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001226 err = -ENOENT;
1227 goto clunk_fid;
1228 }
1229
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001230 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001231 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001232 count, wqids[count].type,
1233 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001234 wqids[count].version);
1235
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001236 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001237 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001238 else
1239 fid->qid = oldfid->qid;
1240
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001241 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001242 return fid;
1243
1244clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001245 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001246 p9_client_clunk(fid);
1247 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001248
1249error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001250 if (fid && (fid != oldfid))
1251 p9_fid_destroy(fid);
1252
1253 return ERR_PTR(err);
1254}
1255EXPORT_SYMBOL(p9_client_walk);
1256
1257int p9_client_open(struct p9_fid *fid, int mode)
1258{
1259 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001260 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001261 struct p9_req_t *req;
1262 struct p9_qid qid;
1263 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001264
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001265 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001266 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301267 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1268 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001269
1270 if (fid->mode != -1)
1271 return -EINVAL;
1272
M. Mohan Kumaref565472010-06-22 19:47:50 +05301273 if (p9_is_proto_dotl(clnt))
1274 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1275 else
1276 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001277 if (IS_ERR(req)) {
1278 err = PTR_ERR(req);
1279 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001280 }
1281
Sripathi Kodi342fee12010-03-05 18:50:14 +00001282 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001283 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301284 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001285 goto free_and_error;
1286 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001287
Joe Perches5d385152011-11-28 10:40:46 -08001288 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301289 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1290 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001291
1292 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001293 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001294
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001295free_and_error:
1296 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001297error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001298 return err;
1299}
1300EXPORT_SYMBOL(p9_client_open);
1301
Al Viro7880b432017-01-12 04:01:17 -05001302int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001303 kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001304{
1305 int err = 0;
1306 struct p9_client *clnt;
1307 struct p9_req_t *req;
1308 int iounit;
1309
Joe Perches5d385152011-11-28 10:40:46 -08001310 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001311 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001312 ofid->fid, name, flags, mode,
1313 from_kgid(&init_user_ns, gid));
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001314 clnt = ofid->clnt;
1315
1316 if (ofid->mode != -1)
1317 return -EINVAL;
1318
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001319 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001320 mode, gid);
1321 if (IS_ERR(req)) {
1322 err = PTR_ERR(req);
1323 goto error;
1324 }
1325
1326 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1327 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301328 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001329 goto free_and_error;
1330 }
1331
Joe Perches5d385152011-11-28 10:40:46 -08001332 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001333 qid->type,
1334 (unsigned long long)qid->path,
1335 qid->version, iounit);
1336
1337 ofid->mode = mode;
1338 ofid->iounit = iounit;
1339
1340free_and_error:
1341 p9_free_req(clnt, req);
1342error:
1343 return err;
1344}
1345EXPORT_SYMBOL(p9_client_create_dotl);
1346
Al Viro7880b432017-01-12 04:01:17 -05001347int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001348 char *extension)
1349{
1350 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001351 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001352 struct p9_req_t *req;
1353 struct p9_qid qid;
1354 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001355
Joe Perches5d385152011-11-28 10:40:46 -08001356 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001357 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001358 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001359 clnt = fid->clnt;
1360
1361 if (fid->mode != -1)
1362 return -EINVAL;
1363
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001364 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1365 mode, extension);
1366 if (IS_ERR(req)) {
1367 err = PTR_ERR(req);
1368 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001369 }
1370
Sripathi Kodi342fee12010-03-05 18:50:14 +00001371 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001372 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301373 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001374 goto free_and_error;
1375 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001376
Joe Perches5d385152011-11-28 10:40:46 -08001377 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001378 qid.type,
1379 (unsigned long long)qid.path,
1380 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001381
1382 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001383 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001384
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001385free_and_error:
1386 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001387error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001388 return err;
1389}
1390EXPORT_SYMBOL(p9_client_fcreate);
1391
Al Viro7880b432017-01-12 04:01:17 -05001392int p9_client_symlink(struct p9_fid *dfid, const char *name,
1393 const char *symtgt, kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001394{
1395 int err = 0;
1396 struct p9_client *clnt;
1397 struct p9_req_t *req;
1398
Joe Perches5d385152011-11-28 10:40:46 -08001399 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001400 dfid->fid, name, symtgt);
1401 clnt = dfid->clnt;
1402
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001403 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001404 gid);
1405 if (IS_ERR(req)) {
1406 err = PTR_ERR(req);
1407 goto error;
1408 }
1409
1410 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1411 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301412 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001413 goto free_and_error;
1414 }
1415
Joe Perches5d385152011-11-28 10:40:46 -08001416 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001417 qid->type, (unsigned long long)qid->path, qid->version);
1418
1419free_and_error:
1420 p9_free_req(clnt, req);
1421error:
1422 return err;
1423}
1424EXPORT_SYMBOL(p9_client_symlink);
1425
Al Viro7880b432017-01-12 04:01:17 -05001426int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001427{
1428 struct p9_client *clnt;
1429 struct p9_req_t *req;
1430
Joe Perches5d385152011-11-28 10:40:46 -08001431 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001432 dfid->fid, oldfid->fid, newname);
1433 clnt = dfid->clnt;
1434 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1435 newname);
1436 if (IS_ERR(req))
1437 return PTR_ERR(req);
1438
Joe Perches5d385152011-11-28 10:40:46 -08001439 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001440 p9_free_req(clnt, req);
1441 return 0;
1442}
1443EXPORT_SYMBOL(p9_client_link);
1444
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001445int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001446{
1447 int err;
1448 struct p9_client *clnt;
1449 struct p9_req_t *req;
1450
Joe Perches5d385152011-11-28 10:40:46 -08001451 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001452 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001453 err = 0;
1454 clnt = fid->clnt;
1455
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001456 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001457 if (IS_ERR(req)) {
1458 err = PTR_ERR(req);
1459 goto error;
1460 }
1461
Joe Perches5d385152011-11-28 10:40:46 -08001462 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001463
1464 p9_free_req(clnt, req);
1465
1466error:
1467 return err;
1468}
1469EXPORT_SYMBOL(p9_client_fsync);
1470
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001471int p9_client_clunk(struct p9_fid *fid)
1472{
1473 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001474 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001475 struct p9_req_t *req;
Jim Garlick208f3c22012-02-26 14:49:57 -06001476 int retries = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001477
jvrao8e44a082010-08-25 16:27:06 +00001478 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001479 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1480 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001481 dump_stack();
1482 return 0;
1483 }
1484
Jim Garlick208f3c22012-02-26 14:49:57 -06001485again:
1486 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1487 retries);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001488 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001489 clnt = fid->clnt;
1490
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001491 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1492 if (IS_ERR(req)) {
1493 err = PTR_ERR(req);
1494 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001495 }
1496
Joe Perches5d385152011-11-28 10:40:46 -08001497 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001498
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001499 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001500error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001501 /*
1502 * Fid is not valid even after a failed clunk
Jim Garlick208f3c22012-02-26 14:49:57 -06001503 * If interrupted, retry once then give up and
1504 * leak fid until umount.
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001505 */
Jim Garlick208f3c22012-02-26 14:49:57 -06001506 if (err == -ERESTARTSYS) {
1507 if (retries++ == 0)
1508 goto again;
1509 } else
1510 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001511 return err;
1512}
1513EXPORT_SYMBOL(p9_client_clunk);
1514
1515int p9_client_remove(struct p9_fid *fid)
1516{
1517 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001518 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001519 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001520
Joe Perches5d385152011-11-28 10:40:46 -08001521 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001522 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001523 clnt = fid->clnt;
1524
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001525 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1526 if (IS_ERR(req)) {
1527 err = PTR_ERR(req);
1528 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001529 }
1530
Joe Perches5d385152011-11-28 10:40:46 -08001531 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001532
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001533 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001534error:
Jim Garlick208f3c22012-02-26 14:49:57 -06001535 if (err == -ERESTARTSYS)
1536 p9_client_clunk(fid);
1537 else
1538 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001539 return err;
1540}
1541EXPORT_SYMBOL(p9_client_remove);
1542
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301543int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1544{
1545 int err = 0;
1546 struct p9_req_t *req;
1547 struct p9_client *clnt;
1548
Joe Perches5d385152011-11-28 10:40:46 -08001549 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301550 dfid->fid, name, flags);
1551
1552 clnt = dfid->clnt;
1553 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1554 if (IS_ERR(req)) {
1555 err = PTR_ERR(req);
1556 goto error;
1557 }
Joe Perches5d385152011-11-28 10:40:46 -08001558 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301559
1560 p9_free_req(clnt, req);
1561error:
1562 return err;
1563}
1564EXPORT_SYMBOL(p9_client_unlinkat);
1565
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001566int
Al Viroe1200fe62015-04-01 23:42:28 -04001567p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001568{
Al Viroe1200fe62015-04-01 23:42:28 -04001569 struct p9_client *clnt = fid->clnt;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301570 struct p9_req_t *req;
Al Viroe1200fe62015-04-01 23:42:28 -04001571 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001572 *err = 0;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301573
Joe Perches5d385152011-11-28 10:40:46 -08001574 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Al Viroe1200fe62015-04-01 23:42:28 -04001575 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001576
Al Viroe1200fe62015-04-01 23:42:28 -04001577 while (iov_iter_count(to)) {
1578 int count = iov_iter_count(to);
1579 int rsize, non_zc = 0;
1580 char *dataptr;
1581
1582 rsize = fid->iounit;
1583 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1584 rsize = clnt->msize - P9_IOHDRSZ;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001585
Al Viroe1200fe62015-04-01 23:42:28 -04001586 if (count < rsize)
1587 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001588
Al Viroe1200fe62015-04-01 23:42:28 -04001589 /* Don't bother zerocopy for small IO (< 1024) */
1590 if (clnt->trans_mod->zc_request && rsize > 1024) {
1591 /*
1592 * response header len is 11
1593 * PDU Header(7) + IO Size (4)
1594 */
1595 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1596 0, 11, "dqd", fid->fid,
1597 offset, rsize);
1598 } else {
1599 non_zc = 1;
1600 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1601 rsize);
1602 }
1603 if (IS_ERR(req)) {
1604 *err = PTR_ERR(req);
1605 break;
1606 }
1607
1608 *err = p9pdu_readf(req->rc, clnt->proto_version,
1609 "D", &count, &dataptr);
1610 if (*err) {
1611 trace_9p_protocol_dump(clnt, req->rc);
1612 p9_free_req(clnt, req);
1613 break;
1614 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001615 if (rsize < count) {
1616 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1617 count = rsize;
1618 }
Al Viroe1200fe62015-04-01 23:42:28 -04001619
1620 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1621 if (!count) {
1622 p9_free_req(clnt, req);
1623 break;
1624 }
1625
1626 if (non_zc) {
1627 int n = copy_to_iter(dataptr, count, to);
1628 total += n;
1629 offset += n;
1630 if (n != count) {
1631 *err = -EFAULT;
1632 p9_free_req(clnt, req);
1633 break;
1634 }
1635 } else {
1636 iov_iter_advance(to, count);
1637 total += count;
1638 offset += count;
1639 }
1640 p9_free_req(clnt, req);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001641 }
Al Viroe1200fe62015-04-01 23:42:28 -04001642 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001643}
1644EXPORT_SYMBOL(p9_client_read);
1645
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001646int
Al Viro070b3652015-04-01 20:17:51 -04001647p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001648{
Al Viro070b3652015-04-01 20:17:51 -04001649 struct p9_client *clnt = fid->clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001650 struct p9_req_t *req;
Al Viro070b3652015-04-01 20:17:51 -04001651 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001652 *err = 0;
Al Viro4f3b35c2015-04-01 19:57:53 -04001653
Al Viro070b3652015-04-01 20:17:51 -04001654 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1655 fid->fid, (unsigned long long) offset,
1656 iov_iter_count(from));
1657
1658 while (iov_iter_count(from)) {
1659 int count = iov_iter_count(from);
1660 int rsize = fid->iounit;
1661 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1662 rsize = clnt->msize - P9_IOHDRSZ;
1663
1664 if (count < rsize)
1665 rsize = count;
1666
1667 /* Don't bother zerocopy for small IO (< 1024) */
1668 if (clnt->trans_mod->zc_request && rsize > 1024) {
1669 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1670 rsize, P9_ZC_HDR_SZ, "dqd",
1671 fid->fid, offset, rsize);
1672 } else {
1673 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1674 offset, rsize, from);
1675 }
1676 if (IS_ERR(req)) {
1677 *err = PTR_ERR(req);
1678 break;
1679 }
1680
1681 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1682 if (*err) {
1683 trace_9p_protocol_dump(clnt, req->rc);
1684 p9_free_req(clnt, req);
Al Viro67e808f2015-07-04 16:11:05 -04001685 break;
Al Viro070b3652015-04-01 20:17:51 -04001686 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001687 if (rsize < count) {
1688 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1689 count = rsize;
1690 }
Al Viro070b3652015-04-01 20:17:51 -04001691
1692 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1693
1694 p9_free_req(clnt, req);
1695 iov_iter_advance(from, count);
1696 total += count;
1697 offset += count;
Al Viro4f3b35c2015-04-01 19:57:53 -04001698 }
Al Viro070b3652015-04-01 20:17:51 -04001699 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001700}
1701EXPORT_SYMBOL(p9_client_write);
1702
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001703struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001704{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001705 int err;
1706 struct p9_client *clnt;
1707 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1708 struct p9_req_t *req;
1709 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001710
Joe Perches5d385152011-11-28 10:40:46 -08001711 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001712
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001713 if (!ret)
1714 return ERR_PTR(-ENOMEM);
1715
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001716 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001717 clnt = fid->clnt;
1718
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001719 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1720 if (IS_ERR(req)) {
1721 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001722 goto error;
1723 }
1724
Sripathi Kodi342fee12010-03-05 18:50:14 +00001725 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001726 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301727 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001728 p9_free_req(clnt, req);
1729 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001730 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001731
Joe Perches5d385152011-11-28 10:40:46 -08001732 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001733 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1734 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1735 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1736 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001737 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001738 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1739 ret->atime, ret->mtime, (unsigned long long)ret->length,
1740 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001741 from_kuid(&init_user_ns, ret->n_uid),
1742 from_kgid(&init_user_ns, ret->n_gid),
1743 from_kuid(&init_user_ns, ret->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001744
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001745 p9_free_req(clnt, req);
1746 return ret;
1747
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001748error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001749 kfree(ret);
1750 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001751}
1752EXPORT_SYMBOL(p9_client_stat);
1753
Sripathi Kodif0853122010-07-12 20:07:23 +05301754struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1755 u64 request_mask)
1756{
1757 int err;
1758 struct p9_client *clnt;
1759 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1760 GFP_KERNEL);
1761 struct p9_req_t *req;
1762
Joe Perches5d385152011-11-28 10:40:46 -08001763 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301764 fid->fid, request_mask);
1765
1766 if (!ret)
1767 return ERR_PTR(-ENOMEM);
1768
1769 err = 0;
1770 clnt = fid->clnt;
1771
1772 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1773 if (IS_ERR(req)) {
1774 err = PTR_ERR(req);
1775 goto error;
1776 }
1777
1778 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1779 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301780 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301781 p9_free_req(clnt, req);
1782 goto error;
1783 }
1784
Joe Perches5d385152011-11-28 10:40:46 -08001785 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301786 "<<< RGETATTR st_result_mask=%lld\n"
1787 "<<< qid=%x.%llx.%x\n"
1788 "<<< st_mode=%8.8x st_nlink=%llu\n"
1789 "<<< st_uid=%d st_gid=%d\n"
1790 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1791 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1792 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1793 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1794 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1795 "<<< st_gen=%lld st_data_version=%lld",
1796 ret->st_result_mask, ret->qid.type, ret->qid.path,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001797 ret->qid.version, ret->st_mode, ret->st_nlink,
1798 from_kuid(&init_user_ns, ret->st_uid),
1799 from_kgid(&init_user_ns, ret->st_gid),
1800 ret->st_rdev, ret->st_size, ret->st_blksize,
Sripathi Kodif0853122010-07-12 20:07:23 +05301801 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1802 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1803 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1804 ret->st_gen, ret->st_data_version);
1805
1806 p9_free_req(clnt, req);
1807 return ret;
1808
1809error:
1810 kfree(ret);
1811 return ERR_PTR(err);
1812}
1813EXPORT_SYMBOL(p9_client_getattr_dotl);
1814
Sripathi Kodi342fee12010-03-05 18:50:14 +00001815static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001816{
1817 int ret;
1818
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001819 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001820 /* size[2] type[2] dev[4] qid[13] */
1821 /* mode[4] atime[4] mtime[4] length[8]*/
1822 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001823 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001824
1825 if (wst->name)
1826 ret += strlen(wst->name);
1827 if (wst->uid)
1828 ret += strlen(wst->uid);
1829 if (wst->gid)
1830 ret += strlen(wst->gid);
1831 if (wst->muid)
1832 ret += strlen(wst->muid);
1833
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001834 if ((proto_version == p9_proto_2000u) ||
1835 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001836 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1837 if (wst->extension)
1838 ret += strlen(wst->extension);
1839 }
1840
1841 return ret;
1842}
1843
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001844int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1845{
1846 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001847 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001848 struct p9_client *clnt;
1849
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001850 err = 0;
1851 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001852 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001853 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1854 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001855 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1856 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1857 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1858 " uid=%d gid=%d n_muid=%d\n",
1859 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001860 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1861 wst->atime, wst->mtime, (unsigned long long)wst->length,
1862 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001863 from_kuid(&init_user_ns, wst->n_uid),
1864 from_kgid(&init_user_ns, wst->n_gid),
1865 from_kuid(&init_user_ns, wst->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001866
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001867 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001868 if (IS_ERR(req)) {
1869 err = PTR_ERR(req);
1870 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001871 }
1872
Joe Perches5d385152011-11-28 10:40:46 -08001873 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001874
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001875 p9_free_req(clnt, req);
1876error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001877 return err;
1878}
1879EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001880
Sripathi Kodi87d78452010-06-18 11:50:10 +05301881int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1882{
1883 int err;
1884 struct p9_req_t *req;
1885 struct p9_client *clnt;
1886
1887 err = 0;
1888 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001889 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1890 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301891 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1892 " atime_sec=%lld atime_nsec=%lld\n"
1893 " mtime_sec=%lld mtime_nsec=%lld\n",
Eric W. Biederman447c5092013-01-29 16:18:50 -08001894 p9attr->valid, p9attr->mode,
1895 from_kuid(&init_user_ns, p9attr->uid),
1896 from_kgid(&init_user_ns, p9attr->gid),
Sripathi Kodi87d78452010-06-18 11:50:10 +05301897 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1898 p9attr->mtime_sec, p9attr->mtime_nsec);
1899
1900 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1901
1902 if (IS_ERR(req)) {
1903 err = PTR_ERR(req);
1904 goto error;
1905 }
Joe Perches5d385152011-11-28 10:40:46 -08001906 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301907 p9_free_req(clnt, req);
1908error:
1909 return err;
1910}
1911EXPORT_SYMBOL(p9_client_setattr);
1912
Sripathi Kodibda8e772010-03-25 12:45:30 +00001913int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1914{
1915 int err;
1916 struct p9_req_t *req;
1917 struct p9_client *clnt;
1918
1919 err = 0;
1920 clnt = fid->clnt;
1921
Joe Perches5d385152011-11-28 10:40:46 -08001922 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001923
1924 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1925 if (IS_ERR(req)) {
1926 err = PTR_ERR(req);
1927 goto error;
1928 }
1929
1930 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1931 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1932 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1933 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301934 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001935 p9_free_req(clnt, req);
1936 goto error;
1937 }
1938
Joe Perches5d385152011-11-28 10:40:46 -08001939 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001940 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1941 "fsid %llu namelen %ld\n",
1942 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1943 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1944 sb->fsid, (long int)sb->namelen);
1945
1946 p9_free_req(clnt, req);
1947error:
1948 return err;
1949}
1950EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001951
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301952int p9_client_rename(struct p9_fid *fid,
1953 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001954{
1955 int err;
1956 struct p9_req_t *req;
1957 struct p9_client *clnt;
1958
1959 err = 0;
1960 clnt = fid->clnt;
1961
Joe Perches5d385152011-11-28 10:40:46 -08001962 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001963 fid->fid, newdirfid->fid, name);
1964
1965 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1966 newdirfid->fid, name);
1967 if (IS_ERR(req)) {
1968 err = PTR_ERR(req);
1969 goto error;
1970 }
1971
Joe Perches5d385152011-11-28 10:40:46 -08001972 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001973
1974 p9_free_req(clnt, req);
1975error:
1976 return err;
1977}
1978EXPORT_SYMBOL(p9_client_rename);
1979
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301980int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1981 struct p9_fid *newdirfid, const char *new_name)
1982{
1983 int err;
1984 struct p9_req_t *req;
1985 struct p9_client *clnt;
1986
1987 err = 0;
1988 clnt = olddirfid->clnt;
1989
Joe Perches5d385152011-11-28 10:40:46 -08001990 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301991 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1992 newdirfid->fid, new_name);
1993
1994 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1995 old_name, newdirfid->fid, new_name);
1996 if (IS_ERR(req)) {
1997 err = PTR_ERR(req);
1998 goto error;
1999 }
2000
Joe Perches5d385152011-11-28 10:40:46 -08002001 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05302002 newdirfid->fid, new_name);
2003
2004 p9_free_req(clnt, req);
2005error:
2006 return err;
2007}
2008EXPORT_SYMBOL(p9_client_renameat);
2009
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302010/*
2011 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
2012 */
2013struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
2014 const char *attr_name, u64 *attr_size)
2015{
2016 int err;
2017 struct p9_req_t *req;
2018 struct p9_client *clnt;
2019 struct p9_fid *attr_fid;
2020
2021 err = 0;
2022 clnt = file_fid->clnt;
2023 attr_fid = p9_fid_create(clnt);
2024 if (IS_ERR(attr_fid)) {
2025 err = PTR_ERR(attr_fid);
2026 attr_fid = NULL;
2027 goto error;
2028 }
Joe Perches5d385152011-11-28 10:40:46 -08002029 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302030 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2031 file_fid->fid, attr_fid->fid, attr_name);
2032
2033 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2034 file_fid->fid, attr_fid->fid, attr_name);
2035 if (IS_ERR(req)) {
2036 err = PTR_ERR(req);
2037 goto error;
2038 }
2039 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2040 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302041 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302042 p9_free_req(clnt, req);
2043 goto clunk_fid;
2044 }
2045 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08002046 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302047 attr_fid->fid, *attr_size);
2048 return attr_fid;
2049clunk_fid:
2050 p9_client_clunk(attr_fid);
2051 attr_fid = NULL;
2052error:
2053 if (attr_fid && (attr_fid != file_fid))
2054 p9_fid_destroy(attr_fid);
2055
2056 return ERR_PTR(err);
2057}
2058EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2059
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302060int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2061 u64 attr_size, int flags)
2062{
2063 int err;
2064 struct p9_req_t *req;
2065 struct p9_client *clnt;
2066
Joe Perches5d385152011-11-28 10:40:46 -08002067 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302068 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2069 fid->fid, name, (long long)attr_size, flags);
2070 err = 0;
2071 clnt = fid->clnt;
2072 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2073 fid->fid, name, attr_size, flags);
2074 if (IS_ERR(req)) {
2075 err = PTR_ERR(req);
2076 goto error;
2077 }
Joe Perches5d385152011-11-28 10:40:46 -08002078 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302079 p9_free_req(clnt, req);
2080error:
2081 return err;
2082}
2083EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2084
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002085int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2086{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302087 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002088 struct p9_client *clnt;
2089 struct p9_req_t *req;
2090 char *dataptr;
Al Viro4f3b35c2015-04-01 19:57:53 -04002091 struct kvec kv = {.iov_base = data, .iov_len = count};
2092 struct iov_iter to;
2093
2094 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002095
Joe Perches5d385152011-11-28 10:40:46 -08002096 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00002097 fid->fid, (unsigned long long) offset, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002098
2099 err = 0;
2100 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002101
2102 rsize = fid->iounit;
2103 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2104 rsize = clnt->msize - P9_READDIRHDRSZ;
2105
2106 if (count < rsize)
2107 rsize = count;
2108
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302109 /* Don't bother zerocopy for small IO (< 1024) */
2110 if (clnt->trans_mod->zc_request && rsize > 1024) {
2111 /*
2112 * response header len is 11
2113 * PDU Header(7) + IO Size (4)
2114 */
Al Viro4f3b35c2015-04-01 19:57:53 -04002115 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2116 11, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002117 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302118 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002119 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302120 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002121 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002122 if (IS_ERR(req)) {
2123 err = PTR_ERR(req);
2124 goto error;
2125 }
2126
2127 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2128 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302129 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002130 goto free_and_error;
2131 }
Al Viro71d6ad02017-04-14 17:22:18 -04002132 if (rsize < count) {
2133 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2134 count = rsize;
2135 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002136
Joe Perches5d385152011-11-28 10:40:46 -08002137 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002138
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302139 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002140 memmove(data, dataptr, count);
2141
2142 p9_free_req(clnt, req);
2143 return count;
2144
2145free_and_error:
2146 p9_free_req(clnt, req);
2147error:
2148 return err;
2149}
2150EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302151
Al Viro7880b432017-01-12 04:01:17 -05002152int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002153 dev_t rdev, kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302154{
2155 int err;
2156 struct p9_client *clnt;
2157 struct p9_req_t *req;
2158
2159 err = 0;
2160 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002161 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302162 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002163 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302164 MAJOR(rdev), MINOR(rdev), gid);
2165 if (IS_ERR(req))
2166 return PTR_ERR(req);
2167
2168 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2169 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302170 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302171 goto error;
2172 }
Joe Perches5d385152011-11-28 10:40:46 -08002173 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302174 (unsigned long long)qid->path, qid->version);
2175
2176error:
2177 p9_free_req(clnt, req);
2178 return err;
2179
2180}
2181EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302182
Al Viro7880b432017-01-12 04:01:17 -05002183int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002184 kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302185{
2186 int err;
2187 struct p9_client *clnt;
2188 struct p9_req_t *req;
2189
2190 err = 0;
2191 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002192 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002193 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2194 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302195 gid);
2196 if (IS_ERR(req))
2197 return PTR_ERR(req);
2198
2199 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2200 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302201 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302202 goto error;
2203 }
Joe Perches5d385152011-11-28 10:40:46 -08002204 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302205 (unsigned long long)qid->path, qid->version);
2206
2207error:
2208 p9_free_req(clnt, req);
2209 return err;
2210
2211}
2212EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302213
2214int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2215{
2216 int err;
2217 struct p9_client *clnt;
2218 struct p9_req_t *req;
2219
2220 err = 0;
2221 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002222 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302223 "start %lld length %lld proc_id %d client_id %s\n",
2224 fid->fid, flock->type, flock->flags, flock->start,
2225 flock->length, flock->proc_id, flock->client_id);
2226
2227 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2228 flock->flags, flock->start, flock->length,
2229 flock->proc_id, flock->client_id);
2230
2231 if (IS_ERR(req))
2232 return PTR_ERR(req);
2233
2234 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2235 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302236 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302237 goto error;
2238 }
Joe Perches5d385152011-11-28 10:40:46 -08002239 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302240error:
2241 p9_free_req(clnt, req);
2242 return err;
2243
2244}
2245EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302246
2247int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2248{
2249 int err;
2250 struct p9_client *clnt;
2251 struct p9_req_t *req;
2252
2253 err = 0;
2254 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002255 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302256 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2257 glock->start, glock->length, glock->proc_id, glock->client_id);
2258
2259 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2260 glock->start, glock->length, glock->proc_id, glock->client_id);
2261
2262 if (IS_ERR(req))
2263 return PTR_ERR(req);
2264
2265 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2266 &glock->start, &glock->length, &glock->proc_id,
2267 &glock->client_id);
2268 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302269 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302270 goto error;
2271 }
Joe Perches5d385152011-11-28 10:40:46 -08002272 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302273 "proc_id %d client_id %s\n", glock->type, glock->start,
2274 glock->length, glock->proc_id, glock->client_id);
2275error:
2276 p9_free_req(clnt, req);
2277 return err;
2278}
2279EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302280
2281int p9_client_readlink(struct p9_fid *fid, char **target)
2282{
2283 int err;
2284 struct p9_client *clnt;
2285 struct p9_req_t *req;
2286
2287 err = 0;
2288 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002289 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302290
2291 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2292 if (IS_ERR(req))
2293 return PTR_ERR(req);
2294
2295 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2296 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302297 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302298 goto error;
2299 }
Joe Perches5d385152011-11-28 10:40:46 -08002300 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302301error:
2302 p9_free_req(clnt, req);
2303 return err;
2304}
2305EXPORT_SYMBOL(p9_client_readlink);