blob: 33717b1b84d8bf97c282caf91105461ac751d9c2 [file] [log] [blame]
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001/*
2 * net/9p/clnt.c
3 *
4 * 9P Client
5 *
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06006 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05007 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
23 *
24 */
25
Joe Perches5d385152011-11-28 10:40:46 -080026#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050028#include <linux/module.h>
29#include <linux/errno.h>
30#include <linux/fs.h>
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060031#include <linux/poll.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050032#include <linux/idr.h>
33#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010035#include <linux/sched/signal.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050036#include <linux/uaccess.h>
Al Viro4f3b35c2015-04-01 19:57:53 -040037#include <linux/uio.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050038#include <net/9p/9p.h>
Eric Van Hensbergenfb0466c2007-10-17 14:31:07 -050039#include <linux/parser.h>
David Howellsc4fac912017-07-05 16:25:37 +010040#include <linux/seq_file.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050041#include <net/9p/client.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050042#include <net/9p/transport.h>
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -050043#include "protocol.h"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050044
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +053045#define CREATE_TRACE_POINTS
46#include <trace/events/9p.h>
47
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060048/*
49 * Client Option Parsing (code inspired by NFS code)
50 * - a little lazy - parse all client options
51 */
52
53enum {
54 Opt_msize,
55 Opt_trans,
56 Opt_legacy,
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000057 Opt_version,
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060058 Opt_err,
59};
60
Steven Whitehousea447c092008-10-13 10:46:57 +010061static const match_table_t tokens = {
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060062 {Opt_msize, "msize=%u"},
63 {Opt_legacy, "noextend"},
64 {Opt_trans, "trans=%s"},
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +000065 {Opt_version, "version=%s"},
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -060066 {Opt_err, NULL},
67};
68
Sripathi Kodi342fee12010-03-05 18:50:14 +000069inline int p9_is_proto_dotl(struct p9_client *clnt)
70{
Eric Dumazeta02cec22010-09-22 20:43:57 +000071 return clnt->proto_version == p9_proto_2000L;
Sripathi Kodi342fee12010-03-05 18:50:14 +000072}
73EXPORT_SYMBOL(p9_is_proto_dotl);
74
75inline int p9_is_proto_dotu(struct p9_client *clnt)
76{
Eric Dumazeta02cec22010-09-22 20:43:57 +000077 return clnt->proto_version == p9_proto_2000u;
Sripathi Kodi342fee12010-03-05 18:50:14 +000078}
79EXPORT_SYMBOL(p9_is_proto_dotu);
80
David Howellsc4fac912017-07-05 16:25:37 +010081int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)
82{
83 if (clnt->msize != 8192)
84 seq_printf(m, ",msize=%u", clnt->msize);
Tuomas Tynkkynen61b272c2017-11-19 11:28:43 +020085 seq_printf(m, ",trans=%s", clnt->trans_mod->name);
David Howellsc4fac912017-07-05 16:25:37 +010086
87 switch (clnt->proto_version) {
88 case p9_proto_legacy:
89 seq_puts(m, ",noextend");
90 break;
91 case p9_proto_2000u:
92 seq_puts(m, ",version=9p2000.u");
93 break;
94 case p9_proto_2000L:
95 /* Default */
96 break;
97 }
98
99 if (clnt->trans_mod->show_options)
100 return clnt->trans_mod->show_options(m, clnt);
101 return 0;
102}
103EXPORT_SYMBOL(p9_show_client_options);
104
Simon Derr43def352012-08-10 15:52:06 +0200105/*
106 * Some error codes are taken directly from the server replies,
107 * make sure they are valid.
108 */
109static int safe_errno(int err)
110{
111 if ((err > 0) || (err < -MAX_ERRNO)) {
112 p9_debug(P9_DEBUG_ERROR, "Invalid error code %d\n", err);
113 return -EPROTO;
114 }
115 return err;
116}
117
118
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000119/* Interpret mount option for protocol version */
Prem Karat4d630552011-05-06 18:35:32 +0530120static int get_protocol_version(char *s)
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000121{
Dan Carpenter3dc9fef2010-04-05 14:37:28 -0500122 int version = -EINVAL;
123
Prem Karat4d630552011-05-06 18:35:32 +0530124 if (!strcmp(s, "9p2000")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000125 version = p9_proto_legacy;
Joe Perches5d385152011-11-28 10:40:46 -0800126 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
Prem Karat4d630552011-05-06 18:35:32 +0530127 } else if (!strcmp(s, "9p2000.u")) {
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000128 version = p9_proto_2000u;
Joe Perches5d385152011-11-28 10:40:46 -0800129 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
Prem Karat4d630552011-05-06 18:35:32 +0530130 } else if (!strcmp(s, "9p2000.L")) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000131 version = p9_proto_2000L;
Joe Perches5d385152011-11-28 10:40:46 -0800132 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
Prem Karat4d630552011-05-06 18:35:32 +0530133 } else
Joe Perches5d385152011-11-28 10:40:46 -0800134 pr_info("Unknown protocol version %s\n", s);
Prem Karat4d630552011-05-06 18:35:32 +0530135
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000136 return version;
137}
138
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600139/**
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600140 * parse_options - parse mount options into client structure
141 * @opts: options string passed from mount
142 * @clnt: existing v9fs client information
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600143 *
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600144 * Return 0 upon success, -ERRNO upon failure
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600145 */
146
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600147static int parse_opts(char *opts, struct p9_client *clnt)
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600148{
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600149 char *options, *tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600150 char *p;
151 substring_t args[MAX_OPT_ARGS];
152 int option;
Prem Karat4d630552011-05-06 18:35:32 +0530153 char *s;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600154 int ret = 0;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600155
Aneesh Kumar K.V095e7992013-05-20 12:20:54 +0530156 clnt->proto_version = p9_proto_2000L;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600157 clnt->msize = 8192;
158
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600159 if (!opts)
160 return 0;
161
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600162 tmp_options = kstrdup(opts, GFP_KERNEL);
163 if (!tmp_options) {
Joe Perches5d385152011-11-28 10:40:46 -0800164 p9_debug(P9_DEBUG_ERROR,
165 "failed to allocate copy of option string\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600166 return -ENOMEM;
167 }
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600168 options = tmp_options;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600169
170 while ((p = strsep(&options, ",")) != NULL) {
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530171 int token, r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600172 if (!*p)
173 continue;
174 token = match_token(p, tokens, args);
Aneesh Kumar K.V4d5077f2011-08-30 12:19:34 +0530175 switch (token) {
176 case Opt_msize:
177 r = match_int(&args[0], &option);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600178 if (r < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800179 p9_debug(P9_DEBUG_ERROR,
180 "integer field, but no integer?\n");
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600181 ret = r;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600182 continue;
183 }
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600184 clnt->msize = option;
185 break;
186 case Opt_trans:
Prem Karat4d630552011-05-06 18:35:32 +0530187 s = match_strdup(&args[0]);
188 if (!s) {
189 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800190 p9_debug(P9_DEBUG_ERROR,
191 "problem allocating copy of trans arg\n");
Prem Karat4d630552011-05-06 18:35:32 +0530192 goto free_and_return;
Chengguang Xu9421c3e2018-04-05 16:20:01 -0700193 }
194
195 v9fs_put_trans(clnt->trans_mod);
Prem Karat4d630552011-05-06 18:35:32 +0530196 clnt->trans_mod = v9fs_get_trans_by_name(s);
197 if (clnt->trans_mod == NULL) {
Joe Perches5d385152011-11-28 10:40:46 -0800198 pr_info("Could not find request transport: %s\n",
199 s);
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600200 ret = -EINVAL;
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600201 }
Prem Karat4d630552011-05-06 18:35:32 +0530202 kfree(s);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600203 break;
204 case Opt_legacy:
Sripathi Kodi342fee12010-03-05 18:50:14 +0000205 clnt->proto_version = p9_proto_legacy;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600206 break;
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000207 case Opt_version:
Prem Karat4d630552011-05-06 18:35:32 +0530208 s = match_strdup(&args[0]);
209 if (!s) {
210 ret = -ENOMEM;
Joe Perches5d385152011-11-28 10:40:46 -0800211 p9_debug(P9_DEBUG_ERROR,
212 "problem allocating copy of version arg\n");
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000213 goto free_and_return;
Prem Karat4d630552011-05-06 18:35:32 +0530214 }
Chengguang Xu8d856c72018-06-07 17:05:03 -0700215 r = get_protocol_version(s);
216 if (r < 0)
217 ret = r;
218 else
219 clnt->proto_version = r;
Prem Karat4d630552011-05-06 18:35:32 +0530220 kfree(s);
Sripathi Kodi0fb80ab2010-03-05 18:49:11 +0000221 break;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600222 default:
223 continue;
224 }
225 }
Tejun Heo72029fe2008-09-24 16:22:23 -0500226
Eric Van Hensbergen349d3bb2010-01-15 19:01:10 -0600227free_and_return:
piaojunc290fba2018-07-13 16:59:06 -0700228 if (ret)
229 v9fs_put_trans(clnt->trans_mod);
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600230 kfree(tmp_options);
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -0600231 return ret;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600232}
233
Rashika05a782d2014-02-09 19:57:33 +0530234static struct p9_fcall *p9_fcall_alloc(int alloc_msize)
Simon Derr53873202013-06-21 15:32:36 +0200235{
236 struct p9_fcall *fc;
237 fc = kmalloc(sizeof(struct p9_fcall) + alloc_msize, GFP_NOFS);
238 if (!fc)
239 return NULL;
240 fc->capacity = alloc_msize;
241 fc->sdata = (char *) fc + sizeof(struct p9_fcall);
242 return fc;
243}
244
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500245/**
246 * p9_tag_alloc - lookup/allocate a request by tag
247 * @c: client session to lookup tag within
248 * @tag: numeric id for transaction
249 *
250 * this is a simple array lookup, but will grow the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300251 * request_slots as necessary to accommodate transaction
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500252 * ids which did not previously have a slot.
253 *
254 * this code relies on the client spinlock to manage locks, its
255 * possible we should switch to something else, but I'd rather
256 * stick with something low-overhead for the common case.
257 *
258 */
259
Dan Carpenteref6b0802011-08-26 19:57:40 +0300260static struct p9_req_t *
261p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500262{
263 unsigned long flags;
264 int row, col;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500265 struct p9_req_t *req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530266 int alloc_msize = min(c->msize, max_size);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500267
268 /* This looks up the original request by tag so we know which
269 * buffer to read the data into */
270 tag++;
271
272 if (tag >= c->max_tag) {
273 spin_lock_irqsave(&c->lock, flags);
274 /* check again since original check was outside of lock */
275 while (tag >= c->max_tag) {
276 row = (tag / P9_ROW_MAXTAG);
277 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
278 sizeof(struct p9_req_t), GFP_ATOMIC);
279
280 if (!c->reqs[row]) {
Joe Perches5d385152011-11-28 10:40:46 -0800281 pr_err("Couldn't grow tag array\n");
Eric Van Hensbergene45c5402008-10-22 18:54:47 -0500282 spin_unlock_irqrestore(&c->lock, flags);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500283 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500284 }
285 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Matthew Wilcox2557d0c2018-07-11 14:02:23 -0700286 req = &c->reqs[row][col];
287 req->status = REQ_STATUS_IDLE;
288 init_waitqueue_head(&req->wq);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500289 }
290 c->max_tag += P9_ROW_MAXTAG;
291 }
292 spin_unlock_irqrestore(&c->lock, flags);
293 }
294 row = tag / P9_ROW_MAXTAG;
295 col = tag % P9_ROW_MAXTAG;
296
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500297 req = &c->reqs[row][col];
Simon Derr53873202013-06-21 15:32:36 +0200298 if (!req->tc)
299 req->tc = p9_fcall_alloc(alloc_msize);
300 if (!req->rc)
301 req->rc = p9_fcall_alloc(alloc_msize);
302 if (!req->tc || !req->rc)
303 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500304
305 p9pdu_reset(req->tc);
306 p9pdu_reset(req->rc);
307
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500308 req->tc->tag = tag-1;
309 req->status = REQ_STATUS_ALLOC;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500310
Simon Derrea071aa2013-06-21 15:32:34 +0200311 return req;
312
313grow_failed:
314 pr_err("Couldn't grow tag array\n");
315 kfree(req->tc);
316 kfree(req->rc);
Simon Derrea071aa2013-06-21 15:32:34 +0200317 req->tc = req->rc = NULL;
Simon Derrea071aa2013-06-21 15:32:34 +0200318 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500319}
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500320
321/**
322 * p9_tag_lookup - lookup a request by tag
323 * @c: client session to lookup tag within
324 * @tag: numeric id for transaction
325 *
326 */
327
328struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
329{
330 int row, col;
331
332 /* This looks up the original request by tag so we know which
333 * buffer to read the data into */
334 tag++;
335
Eric Van Hensbergenb85f7d922011-07-13 19:12:18 -0500336 if(tag >= c->max_tag)
337 return NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500338
339 row = tag / P9_ROW_MAXTAG;
340 col = tag % P9_ROW_MAXTAG;
341
342 return &c->reqs[row][col];
343}
344EXPORT_SYMBOL(p9_tag_lookup);
345
346/**
347 * p9_tag_init - setup tags structure and contents
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600348 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500349 *
350 * This initializes the tags structure for each client instance.
351 *
352 */
353
354static int p9_tag_init(struct p9_client *c)
355{
356 int err = 0;
357
358 c->tagpool = p9_idpool_create();
359 if (IS_ERR(c->tagpool)) {
360 err = PTR_ERR(c->tagpool);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500361 goto error;
362 }
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000363 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
364 if (err < 0) {
365 p9_idpool_destroy(c->tagpool);
366 goto error;
367 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500368 c->max_tag = 0;
369error:
370 return err;
371}
372
373/**
374 * p9_tag_cleanup - cleans up tags structure and reclaims resources
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600375 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500376 *
377 * This frees resources associated with the tags structure
378 *
379 */
380static void p9_tag_cleanup(struct p9_client *c)
381{
382 int row, col;
383
384 /* check to insure all requests are idle */
385 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
386 for (col = 0; col < P9_ROW_MAXTAG; col++) {
387 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
Joe Perches5d385152011-11-28 10:40:46 -0800388 p9_debug(P9_DEBUG_MUX,
389 "Attempting to cleanup non-free tag %d,%d\n",
390 row, col);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500391 /* TODO: delay execution of cleanup */
392 return;
393 }
394 }
395 }
396
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000397 if (c->tagpool) {
398 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500399 p9_idpool_destroy(c->tagpool);
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000400 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500401
402 /* free requests associated with tags */
403 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500404 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500405 kfree(c->reqs[row][col].tc);
406 kfree(c->reqs[row][col].rc);
407 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500408 kfree(c->reqs[row]);
409 }
410 c->max_tag = 0;
411}
412
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500413/**
414 * p9_free_req - free a request and clean-up as necessary
415 * c: client state
416 * r: request to release
417 *
418 */
419
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500420static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500421{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500422 int tag = r->tc->tag;
Joe Perches5d385152011-11-28 10:40:46 -0800423 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500424
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500425 r->status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500426 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
427 p9_idpool_put(tag, c->tagpool);
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500428}
429
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500430/**
431 * p9_client_cb - call back from transport to client
432 * c: client state
433 * req: request received
434 *
435 */
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100436void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500437{
Joe Perches5d385152011-11-28 10:40:46 -0800438 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100439
440 /*
441 * This barrier is needed to make sure any change made to req before
Matthew Wilcox2d58f632018-07-11 14:02:20 -0700442 * the status change is visible to another thread
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100443 */
444 smp_wmb();
445 req->status = status;
446
Matthew Wilcox2557d0c2018-07-11 14:02:23 -0700447 wake_up(&req->wq);
Joe Perches5d385152011-11-28 10:40:46 -0800448 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500449}
450EXPORT_SYMBOL(p9_client_cb);
451
452/**
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500453 * p9_parse_header - parse header arguments out of a packet
454 * @pdu: packet to parse
455 * @size: size of packet
456 * @type: type of request
457 * @tag: tag of packet
458 * @rewind: set if we need to rewind offset afterwards
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500459 */
460
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500461int
462p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
463 int rewind)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500464{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500465 int8_t r_type;
466 int16_t r_tag;
467 int32_t r_size;
468 int offset = pdu->offset;
469 int err;
470
471 pdu->offset = 0;
472 if (pdu->size == 0)
473 pdu->size = 7;
474
475 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
476 if (err)
477 goto rewind_and_exit;
478
479 pdu->size = r_size;
480 pdu->id = r_type;
481 pdu->tag = r_tag;
482
Joe Perches5d385152011-11-28 10:40:46 -0800483 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
484 pdu->size, pdu->id, pdu->tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500485
486 if (type)
487 *type = r_type;
488 if (tag)
489 *tag = r_tag;
490 if (size)
491 *size = r_size;
492
493
494rewind_and_exit:
495 if (rewind)
496 pdu->offset = offset;
497 return err;
498}
499EXPORT_SYMBOL(p9_parse_header);
500
501/**
502 * p9_check_errors - check 9p packet for error return and process it
503 * @c: current client instance
504 * @req: request to parse and check for error conditions
505 *
506 * returns error code if one is discovered, otherwise returns 0
507 *
508 * this will have to be more complicated if we have multiple
509 * error packet types
510 */
511
512static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
513{
514 int8_t type;
515 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800516 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500517
518 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530519 /*
520 * dump the response from server
521 * This should be after check errors which poplulate pdu_fcall.
522 */
523 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500524 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800525 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500526 return err;
527 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800528 if (type != P9_RERROR && type != P9_RLERROR)
529 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500530
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800531 if (!p9_is_proto_dotl(c)) {
532 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800533 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530534 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800535 if (err)
536 goto out_err;
537
Arnd Bergmann287980e2016-05-27 23:23:25 +0200538 if (p9_is_proto_dotu(c) && ecode < 512)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500539 err = -ecode;
540
Arnd Bergmann287980e2016-05-27 23:23:25 +0200541 if (!err) {
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800542 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500543
Joe Perches5d385152011-11-28 10:40:46 -0800544 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
545 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800546 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530547 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800548 } else {
549 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
550 err = -ecode;
551
Joe Perches5d385152011-11-28 10:40:46 -0800552 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800553 }
554
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500555 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530556
557out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800558 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530559
560 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500561}
562
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530563/**
564 * p9_check_zc_errors - check 9p packet for error return and process it
565 * @c: current client instance
566 * @req: request to parse and check for error conditions
567 * @in_hdrlen: Size of response protocol buffer.
568 *
569 * returns error code if one is discovered, otherwise returns 0
570 *
571 * this will have to be more complicated if we have multiple
572 * error packet types
573 */
574
575static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
Al Viro4f3b35c2015-04-01 19:57:53 -0400576 struct iov_iter *uidata, int in_hdrlen)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530577{
578 int err;
579 int ecode;
580 int8_t type;
581 char *ename = NULL;
582
583 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530584 /*
585 * dump the response from server
586 * This should be after parse_header which poplulate pdu_fcall.
587 */
588 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530589 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800590 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530591 return err;
592 }
593
594 if (type != P9_RERROR && type != P9_RLERROR)
595 return 0;
596
597 if (!p9_is_proto_dotl(c)) {
598 /* Error is reported in string format */
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530599 int len;
600 /* 7 = header size for RERROR; */
601 int inline_len = in_hdrlen - 7;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530602
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530603 len = req->rc->size - req->rc->offset;
604 if (len > (P9_ZC_HDR_SZ - 7)) {
605 err = -EFAULT;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530606 goto out_err;
607 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530608
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530609 ename = &req->rc->sdata[req->rc->offset];
610 if (len > inline_len) {
611 /* We have error in external buffer */
Al Viro1c512a72017-02-17 23:16:09 -0500612 if (!copy_from_iter_full(ename + inline_len,
613 len - inline_len, uidata)) {
Al Viro4f3b35c2015-04-01 19:57:53 -0400614 err = -EFAULT;
615 goto out_err;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530616 }
617 }
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530618 ename = NULL;
619 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
620 &ename, &ecode);
621 if (err)
622 goto out_err;
623
Arnd Bergmann287980e2016-05-27 23:23:25 +0200624 if (p9_is_proto_dotu(c) && ecode < 512)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530625 err = -ecode;
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530626
Arnd Bergmann287980e2016-05-27 23:23:25 +0200627 if (!err) {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530628 err = p9_errstr2errno(ename, strlen(ename));
629
Joe Perches5d385152011-11-28 10:40:46 -0800630 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
631 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530632 }
633 kfree(ename);
634 } else {
635 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
636 err = -ecode;
637
Joe Perches5d385152011-11-28 10:40:46 -0800638 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530639 }
640 return err;
641
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530642out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800643 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530644 return err;
645}
646
Rob Landleyaca00762011-05-08 18:46:38 +0000647static struct p9_req_t *
648p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
649
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500650/**
651 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600652 * @c: client state
653 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500654 *
Rob Landleyaca00762011-05-08 18:46:38 +0000655 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500656 * the flush request to the original request. The current
657 * code only supports a single flush request although the protocol
658 * allows for multiple flush requests to be sent for a single request.
659 *
660 */
661
662static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
663{
664 struct p9_req_t *req;
665 int16_t oldtag;
666 int err;
667
668 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
669 if (err)
670 return err;
671
Joe Perches5d385152011-11-28 10:40:46 -0800672 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500673
674 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
675 if (IS_ERR(req))
676 return PTR_ERR(req);
677
Simon Derr1cff3302013-06-21 15:32:42 +0200678 /*
679 * if we haven't received a response for oldreq,
Andi Shyti60ff7792013-07-25 10:54:24 +0200680 * remove it from the list
Simon Derr1cff3302013-06-21 15:32:42 +0200681 */
Simon Derr0bfd6842014-03-10 16:38:52 +0100682 if (oldreq->status == REQ_STATUS_SENT)
Simon Derrafd8d652014-03-10 16:38:49 +0100683 if (c->trans_mod->cancelled)
684 c->trans_mod->cancelled(c, oldreq);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500685
686 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500687 return 0;
688}
689
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530690static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
691 int8_t type, int req_size,
692 const char *fmt, va_list ap)
693{
694 int tag, err;
695 struct p9_req_t *req;
696
Joe Perches5d385152011-11-28 10:40:46 -0800697 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530698
699 /* we allow for any status other than disconnected */
700 if (c->status == Disconnected)
701 return ERR_PTR(-EIO);
702
703 /* if status is begin_disconnected we allow only clunk request */
704 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
705 return ERR_PTR(-EIO);
706
707 tag = P9_NOTAG;
708 if (type != P9_TVERSION) {
709 tag = p9_idpool_get(c->tagpool);
710 if (tag < 0)
711 return ERR_PTR(-ENOMEM);
712 }
713
714 req = p9_tag_alloc(c, tag, req_size);
715 if (IS_ERR(req))
716 return req;
717
718 /* marshall the data */
719 p9pdu_prepare(req->tc, tag, type);
720 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
721 if (err)
722 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530723 p9pdu_finalize(c, req->tc);
724 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530725 return req;
726reterr:
727 p9_free_req(c, req);
728 return ERR_PTR(err);
729}
730
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500731/**
732 * p9_client_rpc - issue a request and wait for a response
733 * @c: client session
734 * @type: type of request
735 * @fmt: protocol format string (see protocol.c)
736 *
737 * Returns request structure (which client must free using p9_free_req)
738 */
739
740static struct p9_req_t *
741p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
742{
743 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530744 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500745 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530746 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500747
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530748 va_start(ap, fmt);
749 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
750 va_end(ap);
751 if (IS_ERR(req))
752 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500753
754 if (signal_pending(current)) {
755 sigpending = 1;
756 clear_thread_flag(TIF_SIGPENDING);
757 } else
758 sigpending = 0;
759
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500760 err = c->trans_mod->request(c, req);
761 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530762 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700763 c->status = Disconnected;
Greg Kurza8522242018-04-05 16:19:44 -0700764 goto recalc_sigpending;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500765 }
Jim Garlicka314f272012-02-01 12:48:53 -0800766again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530767 /* Wait for the response */
Matthew Wilcox2557d0c2018-07-11 14:02:23 -0700768 err = wait_event_killable(req->wq, req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500769
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100770 /*
771 * Make sure our req is coherent with regard to updates in other
772 * threads - echoes to wmb() in the callback
773 */
774 smp_rmb();
775
Jim Garlicka314f272012-02-01 12:48:53 -0800776 if ((err == -ERESTARTSYS) && (c->status == Connected)
777 && (type == P9_TFLUSH)) {
778 sigpending = 1;
779 clear_thread_flag(TIF_SIGPENDING);
780 goto again;
781 }
782
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500783 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800784 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500785 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500786 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500787 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800788 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500789 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500790 clear_thread_flag(TIF_SIGPENDING);
791
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500792 if (c->trans_mod->cancel(c, req))
793 p9_client_flush(c, req);
794
795 /* if we received the response anyway, don't signal error */
796 if (req->status == REQ_STATUS_RCVD)
797 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500798 }
Greg Kurza8522242018-04-05 16:19:44 -0700799recalc_sigpending:
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500800 if (sigpending) {
801 spin_lock_irqsave(&current->sighand->siglock, flags);
802 recalc_sigpending();
803 spin_unlock_irqrestore(&current->sighand->siglock, flags);
804 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500805 if (err < 0)
806 goto reterr;
807
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500808 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530809 trace_9p_client_res(c, type, req->rc->tag, err);
810 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500811 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530812reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530813 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200814 return ERR_PTR(safe_errno(err));
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530815}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500816
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530817/**
818 * p9_client_zc_rpc - issue a request and wait for a response
819 * @c: client session
820 * @type: type of request
Al Viro4f3b35c2015-04-01 19:57:53 -0400821 * @uidata: destination for zero copy read
822 * @uodata: source for zero copy write
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530823 * @inlen: read buffer size
824 * @olen: write buffer size
825 * @hdrlen: reader header size, This is the size of response protocol data
826 * @fmt: protocol format string (see protocol.c)
827 *
828 * Returns request structure (which client must free using p9_free_req)
829 */
830static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
Al Viro4f3b35c2015-04-01 19:57:53 -0400831 struct iov_iter *uidata,
832 struct iov_iter *uodata,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530833 int inlen, int olen, int in_hdrlen,
Al Viro4f3b35c2015-04-01 19:57:53 -0400834 const char *fmt, ...)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530835{
836 va_list ap;
837 int sigpending, err;
838 unsigned long flags;
839 struct p9_req_t *req;
840
841 va_start(ap, fmt);
842 /*
843 * We allocate a inline protocol data of only 4k bytes.
844 * The actual content is passed in zero-copy fashion.
845 */
846 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
847 va_end(ap);
848 if (IS_ERR(req))
849 return req;
850
851 if (signal_pending(current)) {
852 sigpending = 1;
853 clear_thread_flag(TIF_SIGPENDING);
854 } else
855 sigpending = 0;
856
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530857 err = c->trans_mod->zc_request(c, req, uidata, uodata,
Al Viro4f3b35c2015-04-01 19:57:53 -0400858 inlen, olen, in_hdrlen);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530859 if (err < 0) {
860 if (err == -EIO)
861 c->status = Disconnected;
Al Viroa84b69c2015-07-04 16:04:19 -0400862 if (err != -ERESTARTSYS)
Greg Kurza8522242018-04-05 16:19:44 -0700863 goto recalc_sigpending;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530864 }
865 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800866 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530867 err = req->t_err;
868 }
869 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800870 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530871 sigpending = 1;
872 clear_thread_flag(TIF_SIGPENDING);
873
874 if (c->trans_mod->cancel(c, req))
875 p9_client_flush(c, req);
876
877 /* if we received the response anyway, don't signal error */
878 if (req->status == REQ_STATUS_RCVD)
879 err = 0;
880 }
Greg Kurza8522242018-04-05 16:19:44 -0700881recalc_sigpending:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530882 if (sigpending) {
883 spin_lock_irqsave(&current->sighand->siglock, flags);
884 recalc_sigpending();
885 spin_unlock_irqrestore(&current->sighand->siglock, flags);
886 }
887 if (err < 0)
888 goto reterr;
889
Al Viro4f3b35c2015-04-01 19:57:53 -0400890 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530891 trace_9p_client_res(c, type, req->rc->tag, err);
892 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530893 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500894reterr:
895 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200896 return ERR_PTR(safe_errno(err));
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500897}
898
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500899static struct p9_fid *p9_fid_create(struct p9_client *clnt)
900{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500901 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500902 struct p9_fid *fid;
903
Joe Perches5d385152011-11-28 10:40:46 -0800904 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500905 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
906 if (!fid)
Matthew Wilcoxb5303be2018-07-11 14:02:21 -0700907 return NULL;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500908
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500909 memset(&fid->qid, 0, sizeof(struct p9_qid));
910 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100911 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500912 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600913 fid->rdir = NULL;
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -0700914 fid->fid = 0;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500915
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -0700916 idr_preload(GFP_KERNEL);
917 spin_lock_irq(&clnt->lock);
918 ret = idr_alloc_u32(&clnt->fids, fid, &fid->fid, P9_NOFID - 1,
919 GFP_NOWAIT);
920 spin_unlock_irq(&clnt->lock);
921 idr_preload_end();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500922
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -0700923 if (!ret)
924 return fid;
925
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500926 kfree(fid);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -0700927 return NULL;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500928}
929
930static void p9_fid_destroy(struct p9_fid *fid)
931{
932 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500933 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500934
Joe Perches5d385152011-11-28 10:40:46 -0800935 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500936 clnt = fid->clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500937 spin_lock_irqsave(&clnt->lock, flags);
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -0700938 idr_remove(&clnt->fids, fid->fid);
Tom Tuckercac23d62008-10-23 16:31:02 -0500939 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600940 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500941 kfree(fid);
942}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600943
stephen hemminger32a875a2010-10-19 06:48:16 +0000944static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500945{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500946 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500947 struct p9_req_t *req;
Tomas Bortoli79136902018-07-10 00:29:43 +0200948 char *version = NULL;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500949 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500950
Joe Perches5d385152011-11-28 10:40:46 -0800951 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
952 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000953
954 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000955 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000956 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000957 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000958 break;
959 case p9_proto_2000u:
960 req = p9_client_rpc(c, P9_TVERSION, "ds",
961 c->msize, "9P2000.u");
962 break;
963 case p9_proto_legacy:
964 req = p9_client_rpc(c, P9_TVERSION, "ds",
965 c->msize, "9P2000");
966 break;
967 default:
968 return -EINVAL;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000969 }
970
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500971 if (IS_ERR(req))
972 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500973
Sripathi Kodi342fee12010-03-05 18:50:14 +0000974 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500975 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800976 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530977 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500978 goto error;
979 }
980
Joe Perches5d385152011-11-28 10:40:46 -0800981 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000982 if (!strncmp(version, "9P2000.L", 8))
983 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000984 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +0000985 c->proto_version = p9_proto_2000u;
986 else if (!strncmp(version, "9P2000", 6))
987 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500988 else {
989 err = -EREMOTEIO;
990 goto error;
991 }
992
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500993 if (msize < c->msize)
994 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500995
996error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500997 kfree(version);
998 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500999
1000 return err;
1001}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001002
1003struct p9_client *p9_client_create(const char *dev_name, char *options)
1004{
1005 int err;
1006 struct p9_client *clnt;
Will Deacon50192ab2013-08-21 18:24:47 +01001007 char *client_id;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001008
1009 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001010 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1011 if (!clnt)
1012 return ERR_PTR(-ENOMEM);
1013
Tejun Heo72029fe2008-09-24 16:22:23 -05001014 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001015 clnt->trans = NULL;
Will Deacon50192ab2013-08-21 18:24:47 +01001016
1017 client_id = utsname()->nodename;
1018 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1019
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001020 spin_lock_init(&clnt->lock);
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -07001021 idr_init(&clnt->fids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001022
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001023 err = p9_tag_init(clnt);
1024 if (err < 0)
1025 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001026
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001027 err = parse_opts(options, clnt);
1028 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001029 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001030
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001031 if (!clnt->trans_mod)
1032 clnt->trans_mod = v9fs_get_default_trans();
1033
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001034 if (clnt->trans_mod == NULL) {
1035 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001036 p9_debug(P9_DEBUG_ERROR,
1037 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001038 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001039 }
1040
Joe Perches5d385152011-11-28 10:40:46 -08001041 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1042 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001043
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001044 err = clnt->trans_mod->create(clnt, dev_name, options);
1045 if (err)
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -07001046 goto put_trans;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001047
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001048 if (clnt->msize > clnt->trans_mod->maxsize)
1049 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001050
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001051 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001052 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001053 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001054
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001055 return clnt;
1056
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001057close_trans:
1058 clnt->trans_mod->close(clnt);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001059put_trans:
1060 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001061destroy_tagpool:
1062 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001063free_client:
1064 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001065 return ERR_PTR(err);
1066}
1067EXPORT_SYMBOL(p9_client_create);
1068
1069void p9_client_destroy(struct p9_client *clnt)
1070{
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -07001071 struct p9_fid *fid;
1072 int id;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001073
Joe Perches5d385152011-11-28 10:40:46 -08001074 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001075
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001076 if (clnt->trans_mod)
1077 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001078
Tejun Heo72029fe2008-09-24 16:22:23 -05001079 v9fs_put_trans(clnt->trans_mod);
1080
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -07001081 idr_for_each_entry(&clnt->fids, fid, id) {
Joe Perches5d385152011-11-28 10:40:46 -08001082 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001083 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001084 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001085
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001086 p9_tag_cleanup(clnt);
1087
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001088 kfree(clnt);
1089}
1090EXPORT_SYMBOL(p9_client_destroy);
1091
1092void p9_client_disconnect(struct p9_client *clnt)
1093{
Joe Perches5d385152011-11-28 10:40:46 -08001094 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001095 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001096}
1097EXPORT_SYMBOL(p9_client_disconnect);
1098
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001099void p9_client_begin_disconnect(struct p9_client *clnt)
1100{
Joe Perches5d385152011-11-28 10:40:46 -08001101 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001102 clnt->status = BeginDisconnect;
1103}
1104EXPORT_SYMBOL(p9_client_begin_disconnect);
1105
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001106struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Al Viro7880b432017-01-12 04:01:17 -05001107 const char *uname, kuid_t n_uname, const char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001108{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301109 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001110 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001111 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001112 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001113
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001114
Joe Perches5d385152011-11-28 10:40:46 -08001115 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1116 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001117 fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07001118 if (!fid) {
1119 err = -ENOMEM;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001120 goto error;
1121 }
Al Viro21c9f5c2015-04-02 21:47:49 -04001122 fid->uid = n_uname;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001123
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001124 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001125 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1126 if (IS_ERR(req)) {
1127 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001128 goto error;
1129 }
1130
Sripathi Kodi342fee12010-03-05 18:50:14 +00001131 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001132 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301133 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001134 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001135 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001136 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001137
Joe Perches5d385152011-11-28 10:40:46 -08001138 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1139 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001140
1141 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1142
1143 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001144 return fid;
1145
1146error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001147 if (fid)
1148 p9_fid_destroy(fid);
1149 return ERR_PTR(err);
1150}
1151EXPORT_SYMBOL(p9_client_attach);
1152
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301153struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
Al Viro7880b432017-01-12 04:01:17 -05001154 const unsigned char * const *wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001155{
1156 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001157 struct p9_client *clnt;
1158 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001159 struct p9_qid *wqids;
1160 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301161 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001162
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001163 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001164 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001165 clnt = oldfid->clnt;
1166 if (clone) {
1167 fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07001168 if (!fid) {
1169 err = -ENOMEM;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001170 goto error;
1171 }
1172
1173 fid->uid = oldfid->uid;
1174 } else
1175 fid = oldfid;
1176
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001177
Joe Perches5d385152011-11-28 10:40:46 -08001178 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1179 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001180
1181 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1182 nwname, wnames);
1183 if (IS_ERR(req)) {
1184 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001185 goto error;
1186 }
1187
Sripathi Kodi342fee12010-03-05 18:50:14 +00001188 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001189 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301190 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001191 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001192 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001193 }
1194 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001195
Joe Perches5d385152011-11-28 10:40:46 -08001196 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001197
1198 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001199 err = -ENOENT;
1200 goto clunk_fid;
1201 }
1202
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001203 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001204 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001205 count, wqids[count].type,
1206 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001207 wqids[count].version);
1208
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001209 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001210 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001211 else
1212 fid->qid = oldfid->qid;
1213
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001214 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001215 return fid;
1216
1217clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001218 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001219 p9_client_clunk(fid);
1220 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001221
1222error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001223 if (fid && (fid != oldfid))
1224 p9_fid_destroy(fid);
1225
1226 return ERR_PTR(err);
1227}
1228EXPORT_SYMBOL(p9_client_walk);
1229
1230int p9_client_open(struct p9_fid *fid, int mode)
1231{
1232 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001233 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001234 struct p9_req_t *req;
1235 struct p9_qid qid;
1236 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001237
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001238 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001239 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301240 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1241 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001242
1243 if (fid->mode != -1)
1244 return -EINVAL;
1245
M. Mohan Kumaref565472010-06-22 19:47:50 +05301246 if (p9_is_proto_dotl(clnt))
1247 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1248 else
1249 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001250 if (IS_ERR(req)) {
1251 err = PTR_ERR(req);
1252 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001253 }
1254
Sripathi Kodi342fee12010-03-05 18:50:14 +00001255 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001256 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301257 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001258 goto free_and_error;
1259 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001260
Joe Perches5d385152011-11-28 10:40:46 -08001261 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301262 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1263 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001264
1265 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001266 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001267
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001268free_and_error:
1269 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001270error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001271 return err;
1272}
1273EXPORT_SYMBOL(p9_client_open);
1274
Al Viro7880b432017-01-12 04:01:17 -05001275int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001276 kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001277{
1278 int err = 0;
1279 struct p9_client *clnt;
1280 struct p9_req_t *req;
1281 int iounit;
1282
Joe Perches5d385152011-11-28 10:40:46 -08001283 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001284 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001285 ofid->fid, name, flags, mode,
1286 from_kgid(&init_user_ns, gid));
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001287 clnt = ofid->clnt;
1288
1289 if (ofid->mode != -1)
1290 return -EINVAL;
1291
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001292 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001293 mode, gid);
1294 if (IS_ERR(req)) {
1295 err = PTR_ERR(req);
1296 goto error;
1297 }
1298
1299 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1300 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301301 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001302 goto free_and_error;
1303 }
1304
Joe Perches5d385152011-11-28 10:40:46 -08001305 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001306 qid->type,
1307 (unsigned long long)qid->path,
1308 qid->version, iounit);
1309
1310 ofid->mode = mode;
1311 ofid->iounit = iounit;
1312
1313free_and_error:
1314 p9_free_req(clnt, req);
1315error:
1316 return err;
1317}
1318EXPORT_SYMBOL(p9_client_create_dotl);
1319
Al Viro7880b432017-01-12 04:01:17 -05001320int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001321 char *extension)
1322{
1323 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001324 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001325 struct p9_req_t *req;
1326 struct p9_qid qid;
1327 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001328
Joe Perches5d385152011-11-28 10:40:46 -08001329 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001330 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001331 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001332 clnt = fid->clnt;
1333
1334 if (fid->mode != -1)
1335 return -EINVAL;
1336
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001337 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1338 mode, extension);
1339 if (IS_ERR(req)) {
1340 err = PTR_ERR(req);
1341 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001342 }
1343
Sripathi Kodi342fee12010-03-05 18:50:14 +00001344 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001345 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301346 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001347 goto free_and_error;
1348 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001349
Joe Perches5d385152011-11-28 10:40:46 -08001350 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001351 qid.type,
1352 (unsigned long long)qid.path,
1353 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001354
1355 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001356 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001357
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001358free_and_error:
1359 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001360error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001361 return err;
1362}
1363EXPORT_SYMBOL(p9_client_fcreate);
1364
Al Viro7880b432017-01-12 04:01:17 -05001365int p9_client_symlink(struct p9_fid *dfid, const char *name,
1366 const char *symtgt, kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001367{
1368 int err = 0;
1369 struct p9_client *clnt;
1370 struct p9_req_t *req;
1371
Joe Perches5d385152011-11-28 10:40:46 -08001372 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001373 dfid->fid, name, symtgt);
1374 clnt = dfid->clnt;
1375
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001376 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001377 gid);
1378 if (IS_ERR(req)) {
1379 err = PTR_ERR(req);
1380 goto error;
1381 }
1382
1383 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1384 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301385 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001386 goto free_and_error;
1387 }
1388
Joe Perches5d385152011-11-28 10:40:46 -08001389 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001390 qid->type, (unsigned long long)qid->path, qid->version);
1391
1392free_and_error:
1393 p9_free_req(clnt, req);
1394error:
1395 return err;
1396}
1397EXPORT_SYMBOL(p9_client_symlink);
1398
Al Viro7880b432017-01-12 04:01:17 -05001399int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001400{
1401 struct p9_client *clnt;
1402 struct p9_req_t *req;
1403
Joe Perches5d385152011-11-28 10:40:46 -08001404 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001405 dfid->fid, oldfid->fid, newname);
1406 clnt = dfid->clnt;
1407 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1408 newname);
1409 if (IS_ERR(req))
1410 return PTR_ERR(req);
1411
Joe Perches5d385152011-11-28 10:40:46 -08001412 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001413 p9_free_req(clnt, req);
1414 return 0;
1415}
1416EXPORT_SYMBOL(p9_client_link);
1417
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001418int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001419{
1420 int err;
1421 struct p9_client *clnt;
1422 struct p9_req_t *req;
1423
Joe Perches5d385152011-11-28 10:40:46 -08001424 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001425 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001426 err = 0;
1427 clnt = fid->clnt;
1428
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001429 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001430 if (IS_ERR(req)) {
1431 err = PTR_ERR(req);
1432 goto error;
1433 }
1434
Joe Perches5d385152011-11-28 10:40:46 -08001435 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001436
1437 p9_free_req(clnt, req);
1438
1439error:
1440 return err;
1441}
1442EXPORT_SYMBOL(p9_client_fsync);
1443
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001444int p9_client_clunk(struct p9_fid *fid)
1445{
1446 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001447 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001448 struct p9_req_t *req;
Jim Garlick208f3c22012-02-26 14:49:57 -06001449 int retries = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001450
jvrao8e44a082010-08-25 16:27:06 +00001451 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001452 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1453 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001454 dump_stack();
1455 return 0;
1456 }
1457
Jim Garlick208f3c22012-02-26 14:49:57 -06001458again:
1459 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1460 retries);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001461 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001462 clnt = fid->clnt;
1463
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001464 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1465 if (IS_ERR(req)) {
1466 err = PTR_ERR(req);
1467 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001468 }
1469
Joe Perches5d385152011-11-28 10:40:46 -08001470 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001471
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001472 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001473error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001474 /*
1475 * Fid is not valid even after a failed clunk
Jim Garlick208f3c22012-02-26 14:49:57 -06001476 * If interrupted, retry once then give up and
1477 * leak fid until umount.
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001478 */
Jim Garlick208f3c22012-02-26 14:49:57 -06001479 if (err == -ERESTARTSYS) {
1480 if (retries++ == 0)
1481 goto again;
1482 } else
1483 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001484 return err;
1485}
1486EXPORT_SYMBOL(p9_client_clunk);
1487
1488int p9_client_remove(struct p9_fid *fid)
1489{
1490 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001491 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001492 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001493
Joe Perches5d385152011-11-28 10:40:46 -08001494 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001495 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001496 clnt = fid->clnt;
1497
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001498 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1499 if (IS_ERR(req)) {
1500 err = PTR_ERR(req);
1501 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001502 }
1503
Joe Perches5d385152011-11-28 10:40:46 -08001504 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001505
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001506 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001507error:
Jim Garlick208f3c22012-02-26 14:49:57 -06001508 if (err == -ERESTARTSYS)
1509 p9_client_clunk(fid);
1510 else
1511 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001512 return err;
1513}
1514EXPORT_SYMBOL(p9_client_remove);
1515
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301516int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1517{
1518 int err = 0;
1519 struct p9_req_t *req;
1520 struct p9_client *clnt;
1521
Joe Perches5d385152011-11-28 10:40:46 -08001522 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301523 dfid->fid, name, flags);
1524
1525 clnt = dfid->clnt;
1526 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1527 if (IS_ERR(req)) {
1528 err = PTR_ERR(req);
1529 goto error;
1530 }
Joe Perches5d385152011-11-28 10:40:46 -08001531 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301532
1533 p9_free_req(clnt, req);
1534error:
1535 return err;
1536}
1537EXPORT_SYMBOL(p9_client_unlinkat);
1538
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001539int
Al Viroe1200fe62015-04-01 23:42:28 -04001540p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001541{
Al Viroe1200fe62015-04-01 23:42:28 -04001542 struct p9_client *clnt = fid->clnt;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301543 struct p9_req_t *req;
Al Viroe1200fe62015-04-01 23:42:28 -04001544 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001545 *err = 0;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301546
Joe Perches5d385152011-11-28 10:40:46 -08001547 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Al Viroe1200fe62015-04-01 23:42:28 -04001548 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001549
Al Viroe1200fe62015-04-01 23:42:28 -04001550 while (iov_iter_count(to)) {
1551 int count = iov_iter_count(to);
1552 int rsize, non_zc = 0;
1553 char *dataptr;
1554
1555 rsize = fid->iounit;
1556 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1557 rsize = clnt->msize - P9_IOHDRSZ;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001558
Al Viroe1200fe62015-04-01 23:42:28 -04001559 if (count < rsize)
1560 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001561
Al Viroe1200fe62015-04-01 23:42:28 -04001562 /* Don't bother zerocopy for small IO (< 1024) */
1563 if (clnt->trans_mod->zc_request && rsize > 1024) {
1564 /*
1565 * response header len is 11
1566 * PDU Header(7) + IO Size (4)
1567 */
1568 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1569 0, 11, "dqd", fid->fid,
1570 offset, rsize);
1571 } else {
1572 non_zc = 1;
1573 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1574 rsize);
1575 }
1576 if (IS_ERR(req)) {
1577 *err = PTR_ERR(req);
1578 break;
1579 }
1580
1581 *err = p9pdu_readf(req->rc, clnt->proto_version,
1582 "D", &count, &dataptr);
1583 if (*err) {
1584 trace_9p_protocol_dump(clnt, req->rc);
1585 p9_free_req(clnt, req);
1586 break;
1587 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001588 if (rsize < count) {
1589 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1590 count = rsize;
1591 }
Al Viroe1200fe62015-04-01 23:42:28 -04001592
1593 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1594 if (!count) {
1595 p9_free_req(clnt, req);
1596 break;
1597 }
1598
1599 if (non_zc) {
1600 int n = copy_to_iter(dataptr, count, to);
1601 total += n;
1602 offset += n;
1603 if (n != count) {
1604 *err = -EFAULT;
1605 p9_free_req(clnt, req);
1606 break;
1607 }
1608 } else {
1609 iov_iter_advance(to, count);
1610 total += count;
1611 offset += count;
1612 }
1613 p9_free_req(clnt, req);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001614 }
Al Viroe1200fe62015-04-01 23:42:28 -04001615 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001616}
1617EXPORT_SYMBOL(p9_client_read);
1618
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001619int
Al Viro070b3652015-04-01 20:17:51 -04001620p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001621{
Al Viro070b3652015-04-01 20:17:51 -04001622 struct p9_client *clnt = fid->clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001623 struct p9_req_t *req;
Al Viro070b3652015-04-01 20:17:51 -04001624 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001625 *err = 0;
Al Viro4f3b35c2015-04-01 19:57:53 -04001626
Al Viro070b3652015-04-01 20:17:51 -04001627 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1628 fid->fid, (unsigned long long) offset,
1629 iov_iter_count(from));
1630
1631 while (iov_iter_count(from)) {
1632 int count = iov_iter_count(from);
1633 int rsize = fid->iounit;
1634 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1635 rsize = clnt->msize - P9_IOHDRSZ;
1636
1637 if (count < rsize)
1638 rsize = count;
1639
1640 /* Don't bother zerocopy for small IO (< 1024) */
1641 if (clnt->trans_mod->zc_request && rsize > 1024) {
1642 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1643 rsize, P9_ZC_HDR_SZ, "dqd",
1644 fid->fid, offset, rsize);
1645 } else {
1646 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1647 offset, rsize, from);
1648 }
1649 if (IS_ERR(req)) {
1650 *err = PTR_ERR(req);
1651 break;
1652 }
1653
1654 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1655 if (*err) {
1656 trace_9p_protocol_dump(clnt, req->rc);
1657 p9_free_req(clnt, req);
Al Viro67e808f2015-07-04 16:11:05 -04001658 break;
Al Viro070b3652015-04-01 20:17:51 -04001659 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001660 if (rsize < count) {
1661 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1662 count = rsize;
1663 }
Al Viro070b3652015-04-01 20:17:51 -04001664
1665 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1666
1667 p9_free_req(clnt, req);
1668 iov_iter_advance(from, count);
1669 total += count;
1670 offset += count;
Al Viro4f3b35c2015-04-01 19:57:53 -04001671 }
Al Viro070b3652015-04-01 20:17:51 -04001672 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001673}
1674EXPORT_SYMBOL(p9_client_write);
1675
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001676struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001677{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001678 int err;
1679 struct p9_client *clnt;
1680 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1681 struct p9_req_t *req;
1682 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001683
Joe Perches5d385152011-11-28 10:40:46 -08001684 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001685
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001686 if (!ret)
1687 return ERR_PTR(-ENOMEM);
1688
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001689 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001690 clnt = fid->clnt;
1691
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001692 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1693 if (IS_ERR(req)) {
1694 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001695 goto error;
1696 }
1697
Sripathi Kodi342fee12010-03-05 18:50:14 +00001698 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001699 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301700 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001701 p9_free_req(clnt, req);
1702 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001703 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001704
Joe Perches5d385152011-11-28 10:40:46 -08001705 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001706 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1707 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1708 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1709 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001710 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001711 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1712 ret->atime, ret->mtime, (unsigned long long)ret->length,
1713 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001714 from_kuid(&init_user_ns, ret->n_uid),
1715 from_kgid(&init_user_ns, ret->n_gid),
1716 from_kuid(&init_user_ns, ret->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001717
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001718 p9_free_req(clnt, req);
1719 return ret;
1720
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001721error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001722 kfree(ret);
1723 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001724}
1725EXPORT_SYMBOL(p9_client_stat);
1726
Sripathi Kodif0853122010-07-12 20:07:23 +05301727struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1728 u64 request_mask)
1729{
1730 int err;
1731 struct p9_client *clnt;
1732 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1733 GFP_KERNEL);
1734 struct p9_req_t *req;
1735
Joe Perches5d385152011-11-28 10:40:46 -08001736 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301737 fid->fid, request_mask);
1738
1739 if (!ret)
1740 return ERR_PTR(-ENOMEM);
1741
1742 err = 0;
1743 clnt = fid->clnt;
1744
1745 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1746 if (IS_ERR(req)) {
1747 err = PTR_ERR(req);
1748 goto error;
1749 }
1750
1751 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1752 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301753 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301754 p9_free_req(clnt, req);
1755 goto error;
1756 }
1757
Joe Perches5d385152011-11-28 10:40:46 -08001758 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301759 "<<< RGETATTR st_result_mask=%lld\n"
1760 "<<< qid=%x.%llx.%x\n"
1761 "<<< st_mode=%8.8x st_nlink=%llu\n"
1762 "<<< st_uid=%d st_gid=%d\n"
1763 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1764 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1765 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1766 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1767 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
piaojun64ad31f2018-07-10 14:56:26 +08001768 "<<< st_gen=%lld st_data_version=%lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301769 ret->st_result_mask, ret->qid.type, ret->qid.path,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001770 ret->qid.version, ret->st_mode, ret->st_nlink,
1771 from_kuid(&init_user_ns, ret->st_uid),
1772 from_kgid(&init_user_ns, ret->st_gid),
1773 ret->st_rdev, ret->st_size, ret->st_blksize,
Sripathi Kodif0853122010-07-12 20:07:23 +05301774 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1775 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1776 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1777 ret->st_gen, ret->st_data_version);
1778
1779 p9_free_req(clnt, req);
1780 return ret;
1781
1782error:
1783 kfree(ret);
1784 return ERR_PTR(err);
1785}
1786EXPORT_SYMBOL(p9_client_getattr_dotl);
1787
Sripathi Kodi342fee12010-03-05 18:50:14 +00001788static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001789{
1790 int ret;
1791
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001792 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001793 /* size[2] type[2] dev[4] qid[13] */
1794 /* mode[4] atime[4] mtime[4] length[8]*/
1795 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001796 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001797
1798 if (wst->name)
1799 ret += strlen(wst->name);
1800 if (wst->uid)
1801 ret += strlen(wst->uid);
1802 if (wst->gid)
1803 ret += strlen(wst->gid);
1804 if (wst->muid)
1805 ret += strlen(wst->muid);
1806
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001807 if ((proto_version == p9_proto_2000u) ||
1808 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001809 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1810 if (wst->extension)
1811 ret += strlen(wst->extension);
1812 }
1813
1814 return ret;
1815}
1816
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001817int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1818{
1819 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001820 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001821 struct p9_client *clnt;
1822
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001823 err = 0;
1824 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001825 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001826 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1827 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001828 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1829 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1830 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1831 " uid=%d gid=%d n_muid=%d\n",
1832 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001833 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1834 wst->atime, wst->mtime, (unsigned long long)wst->length,
1835 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001836 from_kuid(&init_user_ns, wst->n_uid),
1837 from_kgid(&init_user_ns, wst->n_gid),
1838 from_kuid(&init_user_ns, wst->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001839
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001840 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001841 if (IS_ERR(req)) {
1842 err = PTR_ERR(req);
1843 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001844 }
1845
Joe Perches5d385152011-11-28 10:40:46 -08001846 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001847
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001848 p9_free_req(clnt, req);
1849error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001850 return err;
1851}
1852EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001853
Sripathi Kodi87d78452010-06-18 11:50:10 +05301854int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1855{
1856 int err;
1857 struct p9_req_t *req;
1858 struct p9_client *clnt;
1859
1860 err = 0;
1861 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001862 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1863 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301864 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1865 " atime_sec=%lld atime_nsec=%lld\n"
1866 " mtime_sec=%lld mtime_nsec=%lld\n",
Eric W. Biederman447c5092013-01-29 16:18:50 -08001867 p9attr->valid, p9attr->mode,
1868 from_kuid(&init_user_ns, p9attr->uid),
1869 from_kgid(&init_user_ns, p9attr->gid),
Sripathi Kodi87d78452010-06-18 11:50:10 +05301870 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1871 p9attr->mtime_sec, p9attr->mtime_nsec);
1872
1873 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1874
1875 if (IS_ERR(req)) {
1876 err = PTR_ERR(req);
1877 goto error;
1878 }
Joe Perches5d385152011-11-28 10:40:46 -08001879 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301880 p9_free_req(clnt, req);
1881error:
1882 return err;
1883}
1884EXPORT_SYMBOL(p9_client_setattr);
1885
Sripathi Kodibda8e772010-03-25 12:45:30 +00001886int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1887{
1888 int err;
1889 struct p9_req_t *req;
1890 struct p9_client *clnt;
1891
1892 err = 0;
1893 clnt = fid->clnt;
1894
Joe Perches5d385152011-11-28 10:40:46 -08001895 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001896
1897 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1898 if (IS_ERR(req)) {
1899 err = PTR_ERR(req);
1900 goto error;
1901 }
1902
1903 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1904 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1905 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1906 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301907 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001908 p9_free_req(clnt, req);
1909 goto error;
1910 }
1911
Joe Perches5d385152011-11-28 10:40:46 -08001912 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001913 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1914 "fsid %llu namelen %ld\n",
1915 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1916 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1917 sb->fsid, (long int)sb->namelen);
1918
1919 p9_free_req(clnt, req);
1920error:
1921 return err;
1922}
1923EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001924
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301925int p9_client_rename(struct p9_fid *fid,
1926 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001927{
1928 int err;
1929 struct p9_req_t *req;
1930 struct p9_client *clnt;
1931
1932 err = 0;
1933 clnt = fid->clnt;
1934
Joe Perches5d385152011-11-28 10:40:46 -08001935 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001936 fid->fid, newdirfid->fid, name);
1937
1938 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1939 newdirfid->fid, name);
1940 if (IS_ERR(req)) {
1941 err = PTR_ERR(req);
1942 goto error;
1943 }
1944
Joe Perches5d385152011-11-28 10:40:46 -08001945 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001946
1947 p9_free_req(clnt, req);
1948error:
1949 return err;
1950}
1951EXPORT_SYMBOL(p9_client_rename);
1952
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301953int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1954 struct p9_fid *newdirfid, const char *new_name)
1955{
1956 int err;
1957 struct p9_req_t *req;
1958 struct p9_client *clnt;
1959
1960 err = 0;
1961 clnt = olddirfid->clnt;
1962
Joe Perches5d385152011-11-28 10:40:46 -08001963 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301964 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1965 newdirfid->fid, new_name);
1966
1967 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1968 old_name, newdirfid->fid, new_name);
1969 if (IS_ERR(req)) {
1970 err = PTR_ERR(req);
1971 goto error;
1972 }
1973
Joe Perches5d385152011-11-28 10:40:46 -08001974 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301975 newdirfid->fid, new_name);
1976
1977 p9_free_req(clnt, req);
1978error:
1979 return err;
1980}
1981EXPORT_SYMBOL(p9_client_renameat);
1982
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301983/*
1984 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1985 */
1986struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1987 const char *attr_name, u64 *attr_size)
1988{
1989 int err;
1990 struct p9_req_t *req;
1991 struct p9_client *clnt;
1992 struct p9_fid *attr_fid;
1993
1994 err = 0;
1995 clnt = file_fid->clnt;
1996 attr_fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07001997 if (!attr_fid) {
1998 err = -ENOMEM;
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301999 goto error;
2000 }
Joe Perches5d385152011-11-28 10:40:46 -08002001 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302002 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2003 file_fid->fid, attr_fid->fid, attr_name);
2004
2005 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2006 file_fid->fid, attr_fid->fid, attr_name);
2007 if (IS_ERR(req)) {
2008 err = PTR_ERR(req);
2009 goto error;
2010 }
2011 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2012 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302013 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302014 p9_free_req(clnt, req);
2015 goto clunk_fid;
2016 }
2017 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08002018 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302019 attr_fid->fid, *attr_size);
2020 return attr_fid;
2021clunk_fid:
2022 p9_client_clunk(attr_fid);
2023 attr_fid = NULL;
2024error:
2025 if (attr_fid && (attr_fid != file_fid))
2026 p9_fid_destroy(attr_fid);
2027
2028 return ERR_PTR(err);
2029}
2030EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2031
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302032int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2033 u64 attr_size, int flags)
2034{
2035 int err;
2036 struct p9_req_t *req;
2037 struct p9_client *clnt;
2038
Joe Perches5d385152011-11-28 10:40:46 -08002039 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302040 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2041 fid->fid, name, (long long)attr_size, flags);
2042 err = 0;
2043 clnt = fid->clnt;
2044 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2045 fid->fid, name, attr_size, flags);
2046 if (IS_ERR(req)) {
2047 err = PTR_ERR(req);
2048 goto error;
2049 }
Joe Perches5d385152011-11-28 10:40:46 -08002050 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302051 p9_free_req(clnt, req);
2052error:
2053 return err;
2054}
2055EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2056
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002057int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2058{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302059 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002060 struct p9_client *clnt;
2061 struct p9_req_t *req;
2062 char *dataptr;
Al Viro4f3b35c2015-04-01 19:57:53 -04002063 struct kvec kv = {.iov_base = data, .iov_len = count};
2064 struct iov_iter to;
2065
2066 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002067
Joe Perches5d385152011-11-28 10:40:46 -08002068 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00002069 fid->fid, (unsigned long long) offset, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002070
2071 err = 0;
2072 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002073
2074 rsize = fid->iounit;
2075 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2076 rsize = clnt->msize - P9_READDIRHDRSZ;
2077
2078 if (count < rsize)
2079 rsize = count;
2080
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302081 /* Don't bother zerocopy for small IO (< 1024) */
2082 if (clnt->trans_mod->zc_request && rsize > 1024) {
2083 /*
2084 * response header len is 11
2085 * PDU Header(7) + IO Size (4)
2086 */
Al Viro4f3b35c2015-04-01 19:57:53 -04002087 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2088 11, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002089 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302090 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002091 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302092 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002093 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002094 if (IS_ERR(req)) {
2095 err = PTR_ERR(req);
2096 goto error;
2097 }
2098
2099 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2100 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302101 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002102 goto free_and_error;
2103 }
Al Viro71d6ad02017-04-14 17:22:18 -04002104 if (rsize < count) {
2105 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2106 count = rsize;
2107 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002108
Joe Perches5d385152011-11-28 10:40:46 -08002109 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002110
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302111 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002112 memmove(data, dataptr, count);
2113
2114 p9_free_req(clnt, req);
2115 return count;
2116
2117free_and_error:
2118 p9_free_req(clnt, req);
2119error:
2120 return err;
2121}
2122EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302123
Al Viro7880b432017-01-12 04:01:17 -05002124int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002125 dev_t rdev, kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302126{
2127 int err;
2128 struct p9_client *clnt;
2129 struct p9_req_t *req;
2130
2131 err = 0;
2132 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002133 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302134 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002135 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302136 MAJOR(rdev), MINOR(rdev), gid);
2137 if (IS_ERR(req))
2138 return PTR_ERR(req);
2139
2140 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2141 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302142 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302143 goto error;
2144 }
Joe Perches5d385152011-11-28 10:40:46 -08002145 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302146 (unsigned long long)qid->path, qid->version);
2147
2148error:
2149 p9_free_req(clnt, req);
2150 return err;
2151
2152}
2153EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302154
Al Viro7880b432017-01-12 04:01:17 -05002155int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002156 kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302157{
2158 int err;
2159 struct p9_client *clnt;
2160 struct p9_req_t *req;
2161
2162 err = 0;
2163 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002164 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002165 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2166 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302167 gid);
2168 if (IS_ERR(req))
2169 return PTR_ERR(req);
2170
2171 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2172 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302173 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302174 goto error;
2175 }
Joe Perches5d385152011-11-28 10:40:46 -08002176 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302177 (unsigned long long)qid->path, qid->version);
2178
2179error:
2180 p9_free_req(clnt, req);
2181 return err;
2182
2183}
2184EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302185
2186int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2187{
2188 int err;
2189 struct p9_client *clnt;
2190 struct p9_req_t *req;
2191
2192 err = 0;
2193 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002194 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302195 "start %lld length %lld proc_id %d client_id %s\n",
2196 fid->fid, flock->type, flock->flags, flock->start,
2197 flock->length, flock->proc_id, flock->client_id);
2198
2199 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2200 flock->flags, flock->start, flock->length,
2201 flock->proc_id, flock->client_id);
2202
2203 if (IS_ERR(req))
2204 return PTR_ERR(req);
2205
2206 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2207 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302208 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302209 goto error;
2210 }
Joe Perches5d385152011-11-28 10:40:46 -08002211 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302212error:
2213 p9_free_req(clnt, req);
2214 return err;
2215
2216}
2217EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302218
2219int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2220{
2221 int err;
2222 struct p9_client *clnt;
2223 struct p9_req_t *req;
2224
2225 err = 0;
2226 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002227 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302228 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2229 glock->start, glock->length, glock->proc_id, glock->client_id);
2230
2231 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2232 glock->start, glock->length, glock->proc_id, glock->client_id);
2233
2234 if (IS_ERR(req))
2235 return PTR_ERR(req);
2236
2237 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2238 &glock->start, &glock->length, &glock->proc_id,
2239 &glock->client_id);
2240 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302241 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302242 goto error;
2243 }
Joe Perches5d385152011-11-28 10:40:46 -08002244 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302245 "proc_id %d client_id %s\n", glock->type, glock->start,
2246 glock->length, glock->proc_id, glock->client_id);
2247error:
2248 p9_free_req(clnt, req);
2249 return err;
2250}
2251EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302252
2253int p9_client_readlink(struct p9_fid *fid, char **target)
2254{
2255 int err;
2256 struct p9_client *clnt;
2257 struct p9_req_t *req;
2258
2259 err = 0;
2260 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002261 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302262
2263 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2264 if (IS_ERR(req))
2265 return PTR_ERR(req);
2266
2267 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2268 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302269 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302270 goto error;
2271 }
Joe Perches5d385152011-11-28 10:40:46 -08002272 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302273error:
2274 p9_free_req(clnt, req);
2275 return err;
2276}
2277EXPORT_SYMBOL(p9_client_readlink);