blob: deae53a7dffc868d66efbcc01bba141b97d97128 [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
Stephen Hemmingerc69f297d2018-07-24 12:29:10 -0700336 if (tag >= c->max_tag)
Eric Van Hensbergenb85f7d922011-07-13 19:12:18 -0500337 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;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500472
473 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
474 if (err)
475 goto rewind_and_exit;
476
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500477 if (type)
478 *type = r_type;
479 if (tag)
480 *tag = r_tag;
481 if (size)
482 *size = r_size;
483
Tomas Bortolif9845792018-07-23 17:44:04 +0200484 if (pdu->size != r_size || r_size < 7) {
485 err = -EINVAL;
486 goto rewind_and_exit;
487 }
488
489 pdu->id = r_type;
490 pdu->tag = r_tag;
491
492 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
493 pdu->size, pdu->id, pdu->tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500494
495rewind_and_exit:
496 if (rewind)
497 pdu->offset = offset;
498 return err;
499}
500EXPORT_SYMBOL(p9_parse_header);
501
502/**
503 * p9_check_errors - check 9p packet for error return and process it
504 * @c: current client instance
505 * @req: request to parse and check for error conditions
506 *
507 * returns error code if one is discovered, otherwise returns 0
508 *
509 * this will have to be more complicated if we have multiple
510 * error packet types
511 */
512
513static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
514{
515 int8_t type;
516 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800517 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500518
519 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Tomas Bortolif9845792018-07-23 17:44:04 +0200520 if (req->rc->size >= c->msize) {
521 p9_debug(P9_DEBUG_ERROR,
522 "requested packet size too big: %d\n",
523 req->rc->size);
524 return -EIO;
525 }
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530526 /*
527 * dump the response from server
528 * This should be after check errors which poplulate pdu_fcall.
529 */
530 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500531 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800532 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500533 return err;
534 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800535 if (type != P9_RERROR && type != P9_RLERROR)
536 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500537
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800538 if (!p9_is_proto_dotl(c)) {
539 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800540 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530541 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800542 if (err)
543 goto out_err;
544
Arnd Bergmann287980e2016-05-27 23:23:25 +0200545 if (p9_is_proto_dotu(c) && ecode < 512)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500546 err = -ecode;
547
Arnd Bergmann287980e2016-05-27 23:23:25 +0200548 if (!err) {
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800549 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500550
Joe Perches5d385152011-11-28 10:40:46 -0800551 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
552 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800553 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530554 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800555 } else {
556 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
557 err = -ecode;
558
Joe Perches5d385152011-11-28 10:40:46 -0800559 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800560 }
561
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500562 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530563
564out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800565 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530566
567 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500568}
569
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530570/**
571 * p9_check_zc_errors - check 9p packet for error return and process it
572 * @c: current client instance
573 * @req: request to parse and check for error conditions
574 * @in_hdrlen: Size of response protocol buffer.
575 *
576 * returns error code if one is discovered, otherwise returns 0
577 *
578 * this will have to be more complicated if we have multiple
579 * error packet types
580 */
581
582static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
Al Viro4f3b35c2015-04-01 19:57:53 -0400583 struct iov_iter *uidata, int in_hdrlen)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530584{
585 int err;
586 int ecode;
587 int8_t type;
588 char *ename = NULL;
589
590 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530591 /*
592 * dump the response from server
593 * This should be after parse_header which poplulate pdu_fcall.
594 */
595 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530596 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800597 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530598 return err;
599 }
600
601 if (type != P9_RERROR && type != P9_RLERROR)
602 return 0;
603
604 if (!p9_is_proto_dotl(c)) {
605 /* Error is reported in string format */
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530606 int len;
607 /* 7 = header size for RERROR; */
608 int inline_len = in_hdrlen - 7;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530609
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530610 len = req->rc->size - req->rc->offset;
611 if (len > (P9_ZC_HDR_SZ - 7)) {
612 err = -EFAULT;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530613 goto out_err;
614 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530615
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530616 ename = &req->rc->sdata[req->rc->offset];
617 if (len > inline_len) {
618 /* We have error in external buffer */
Al Viro1c512a72017-02-17 23:16:09 -0500619 if (!copy_from_iter_full(ename + inline_len,
620 len - inline_len, uidata)) {
Al Viro4f3b35c2015-04-01 19:57:53 -0400621 err = -EFAULT;
622 goto out_err;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530623 }
624 }
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530625 ename = NULL;
626 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
627 &ename, &ecode);
628 if (err)
629 goto out_err;
630
Arnd Bergmann287980e2016-05-27 23:23:25 +0200631 if (p9_is_proto_dotu(c) && ecode < 512)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530632 err = -ecode;
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530633
Arnd Bergmann287980e2016-05-27 23:23:25 +0200634 if (!err) {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530635 err = p9_errstr2errno(ename, strlen(ename));
636
Joe Perches5d385152011-11-28 10:40:46 -0800637 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
638 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530639 }
640 kfree(ename);
641 } else {
642 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
643 err = -ecode;
644
Joe Perches5d385152011-11-28 10:40:46 -0800645 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530646 }
647 return err;
648
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530649out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800650 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530651 return err;
652}
653
Rob Landleyaca00762011-05-08 18:46:38 +0000654static struct p9_req_t *
655p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
656
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500657/**
658 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600659 * @c: client state
660 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500661 *
Rob Landleyaca00762011-05-08 18:46:38 +0000662 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500663 * the flush request to the original request. The current
664 * code only supports a single flush request although the protocol
665 * allows for multiple flush requests to be sent for a single request.
666 *
667 */
668
669static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
670{
671 struct p9_req_t *req;
672 int16_t oldtag;
673 int err;
674
675 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
676 if (err)
677 return err;
678
Joe Perches5d385152011-11-28 10:40:46 -0800679 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500680
681 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
682 if (IS_ERR(req))
683 return PTR_ERR(req);
684
Simon Derr1cff3302013-06-21 15:32:42 +0200685 /*
686 * if we haven't received a response for oldreq,
Andi Shyti60ff7792013-07-25 10:54:24 +0200687 * remove it from the list
Simon Derr1cff3302013-06-21 15:32:42 +0200688 */
Simon Derr0bfd6842014-03-10 16:38:52 +0100689 if (oldreq->status == REQ_STATUS_SENT)
Simon Derrafd8d652014-03-10 16:38:49 +0100690 if (c->trans_mod->cancelled)
691 c->trans_mod->cancelled(c, oldreq);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500692
693 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500694 return 0;
695}
696
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530697static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
698 int8_t type, int req_size,
699 const char *fmt, va_list ap)
700{
701 int tag, err;
702 struct p9_req_t *req;
703
Joe Perches5d385152011-11-28 10:40:46 -0800704 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530705
706 /* we allow for any status other than disconnected */
707 if (c->status == Disconnected)
708 return ERR_PTR(-EIO);
709
710 /* if status is begin_disconnected we allow only clunk request */
711 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
712 return ERR_PTR(-EIO);
713
714 tag = P9_NOTAG;
715 if (type != P9_TVERSION) {
716 tag = p9_idpool_get(c->tagpool);
717 if (tag < 0)
718 return ERR_PTR(-ENOMEM);
719 }
720
721 req = p9_tag_alloc(c, tag, req_size);
722 if (IS_ERR(req))
723 return req;
724
725 /* marshall the data */
726 p9pdu_prepare(req->tc, tag, type);
727 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
728 if (err)
729 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530730 p9pdu_finalize(c, req->tc);
731 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530732 return req;
733reterr:
734 p9_free_req(c, req);
735 return ERR_PTR(err);
736}
737
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500738/**
739 * p9_client_rpc - issue a request and wait for a response
740 * @c: client session
741 * @type: type of request
742 * @fmt: protocol format string (see protocol.c)
743 *
744 * Returns request structure (which client must free using p9_free_req)
745 */
746
747static struct p9_req_t *
748p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
749{
750 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530751 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500752 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530753 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500754
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530755 va_start(ap, fmt);
756 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
757 va_end(ap);
758 if (IS_ERR(req))
759 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500760
761 if (signal_pending(current)) {
762 sigpending = 1;
763 clear_thread_flag(TIF_SIGPENDING);
764 } else
765 sigpending = 0;
766
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500767 err = c->trans_mod->request(c, req);
768 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530769 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700770 c->status = Disconnected;
Greg Kurza8522242018-04-05 16:19:44 -0700771 goto recalc_sigpending;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500772 }
Jim Garlicka314f272012-02-01 12:48:53 -0800773again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530774 /* Wait for the response */
Matthew Wilcox2557d0c2018-07-11 14:02:23 -0700775 err = wait_event_killable(req->wq, req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500776
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100777 /*
778 * Make sure our req is coherent with regard to updates in other
779 * threads - echoes to wmb() in the callback
780 */
781 smp_rmb();
782
Jim Garlicka314f272012-02-01 12:48:53 -0800783 if ((err == -ERESTARTSYS) && (c->status == Connected)
784 && (type == P9_TFLUSH)) {
785 sigpending = 1;
786 clear_thread_flag(TIF_SIGPENDING);
787 goto again;
788 }
789
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500790 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800791 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500792 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500793 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500794 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800795 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500796 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500797 clear_thread_flag(TIF_SIGPENDING);
798
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500799 if (c->trans_mod->cancel(c, req))
800 p9_client_flush(c, req);
801
802 /* if we received the response anyway, don't signal error */
803 if (req->status == REQ_STATUS_RCVD)
804 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500805 }
Greg Kurza8522242018-04-05 16:19:44 -0700806recalc_sigpending:
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500807 if (sigpending) {
808 spin_lock_irqsave(&current->sighand->siglock, flags);
809 recalc_sigpending();
810 spin_unlock_irqrestore(&current->sighand->siglock, flags);
811 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500812 if (err < 0)
813 goto reterr;
814
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500815 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530816 trace_9p_client_res(c, type, req->rc->tag, err);
817 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500818 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530819reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530820 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200821 return ERR_PTR(safe_errno(err));
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530822}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500823
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530824/**
825 * p9_client_zc_rpc - issue a request and wait for a response
826 * @c: client session
827 * @type: type of request
Al Viro4f3b35c2015-04-01 19:57:53 -0400828 * @uidata: destination for zero copy read
829 * @uodata: source for zero copy write
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530830 * @inlen: read buffer size
831 * @olen: write buffer size
832 * @hdrlen: reader header size, This is the size of response protocol data
833 * @fmt: protocol format string (see protocol.c)
834 *
835 * Returns request structure (which client must free using p9_free_req)
836 */
837static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
Al Viro4f3b35c2015-04-01 19:57:53 -0400838 struct iov_iter *uidata,
839 struct iov_iter *uodata,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530840 int inlen, int olen, int in_hdrlen,
Al Viro4f3b35c2015-04-01 19:57:53 -0400841 const char *fmt, ...)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530842{
843 va_list ap;
844 int sigpending, err;
845 unsigned long flags;
846 struct p9_req_t *req;
847
848 va_start(ap, fmt);
849 /*
850 * We allocate a inline protocol data of only 4k bytes.
851 * The actual content is passed in zero-copy fashion.
852 */
853 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
854 va_end(ap);
855 if (IS_ERR(req))
856 return req;
857
858 if (signal_pending(current)) {
859 sigpending = 1;
860 clear_thread_flag(TIF_SIGPENDING);
861 } else
862 sigpending = 0;
863
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530864 err = c->trans_mod->zc_request(c, req, uidata, uodata,
Al Viro4f3b35c2015-04-01 19:57:53 -0400865 inlen, olen, in_hdrlen);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530866 if (err < 0) {
867 if (err == -EIO)
868 c->status = Disconnected;
Al Viroa84b69c2015-07-04 16:04:19 -0400869 if (err != -ERESTARTSYS)
Greg Kurza8522242018-04-05 16:19:44 -0700870 goto recalc_sigpending;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530871 }
872 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800873 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530874 err = req->t_err;
875 }
876 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800877 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530878 sigpending = 1;
879 clear_thread_flag(TIF_SIGPENDING);
880
881 if (c->trans_mod->cancel(c, req))
882 p9_client_flush(c, req);
883
884 /* if we received the response anyway, don't signal error */
885 if (req->status == REQ_STATUS_RCVD)
886 err = 0;
887 }
Greg Kurza8522242018-04-05 16:19:44 -0700888recalc_sigpending:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530889 if (sigpending) {
890 spin_lock_irqsave(&current->sighand->siglock, flags);
891 recalc_sigpending();
892 spin_unlock_irqrestore(&current->sighand->siglock, flags);
893 }
894 if (err < 0)
895 goto reterr;
896
Al Viro4f3b35c2015-04-01 19:57:53 -0400897 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530898 trace_9p_client_res(c, type, req->rc->tag, err);
899 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530900 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500901reterr:
902 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200903 return ERR_PTR(safe_errno(err));
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500904}
905
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500906static struct p9_fid *p9_fid_create(struct p9_client *clnt)
907{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500908 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500909 struct p9_fid *fid;
910
Joe Perches5d385152011-11-28 10:40:46 -0800911 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500912 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
913 if (!fid)
Matthew Wilcoxb5303be2018-07-11 14:02:21 -0700914 return NULL;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500915
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500916 memset(&fid->qid, 0, sizeof(struct p9_qid));
917 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100918 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500919 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600920 fid->rdir = NULL;
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -0700921 fid->fid = 0;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500922
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -0700923 idr_preload(GFP_KERNEL);
924 spin_lock_irq(&clnt->lock);
925 ret = idr_alloc_u32(&clnt->fids, fid, &fid->fid, P9_NOFID - 1,
926 GFP_NOWAIT);
927 spin_unlock_irq(&clnt->lock);
928 idr_preload_end();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500929
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -0700930 if (!ret)
931 return fid;
932
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500933 kfree(fid);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -0700934 return NULL;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500935}
936
937static void p9_fid_destroy(struct p9_fid *fid)
938{
939 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500940 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500941
Joe Perches5d385152011-11-28 10:40:46 -0800942 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500943 clnt = fid->clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500944 spin_lock_irqsave(&clnt->lock, flags);
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -0700945 idr_remove(&clnt->fids, fid->fid);
Tom Tuckercac23d62008-10-23 16:31:02 -0500946 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600947 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500948 kfree(fid);
949}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600950
stephen hemminger32a875a2010-10-19 06:48:16 +0000951static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500952{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500953 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500954 struct p9_req_t *req;
Tomas Bortoli79136902018-07-10 00:29:43 +0200955 char *version = NULL;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500956 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500957
Joe Perches5d385152011-11-28 10:40:46 -0800958 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
959 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000960
961 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000962 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000963 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000964 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000965 break;
966 case p9_proto_2000u:
967 req = p9_client_rpc(c, P9_TVERSION, "ds",
968 c->msize, "9P2000.u");
969 break;
970 case p9_proto_legacy:
971 req = p9_client_rpc(c, P9_TVERSION, "ds",
972 c->msize, "9P2000");
973 break;
974 default:
975 return -EINVAL;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000976 }
977
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500978 if (IS_ERR(req))
979 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500980
Sripathi Kodi342fee12010-03-05 18:50:14 +0000981 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500982 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800983 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530984 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500985 goto error;
986 }
987
Joe Perches5d385152011-11-28 10:40:46 -0800988 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000989 if (!strncmp(version, "9P2000.L", 8))
990 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000991 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +0000992 c->proto_version = p9_proto_2000u;
993 else if (!strncmp(version, "9P2000", 6))
994 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500995 else {
996 err = -EREMOTEIO;
997 goto error;
998 }
999
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001000 if (msize < c->msize)
1001 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001002
1003error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001004 kfree(version);
1005 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001006
1007 return err;
1008}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001009
1010struct p9_client *p9_client_create(const char *dev_name, char *options)
1011{
1012 int err;
1013 struct p9_client *clnt;
Will Deacon50192ab2013-08-21 18:24:47 +01001014 char *client_id;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001015
1016 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001017 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1018 if (!clnt)
1019 return ERR_PTR(-ENOMEM);
1020
Tejun Heo72029fe2008-09-24 16:22:23 -05001021 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001022 clnt->trans = NULL;
Will Deacon50192ab2013-08-21 18:24:47 +01001023
1024 client_id = utsname()->nodename;
1025 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1026
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001027 spin_lock_init(&clnt->lock);
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -07001028 idr_init(&clnt->fids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001029
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001030 err = p9_tag_init(clnt);
1031 if (err < 0)
1032 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001033
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001034 err = parse_opts(options, clnt);
1035 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001036 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001037
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001038 if (!clnt->trans_mod)
1039 clnt->trans_mod = v9fs_get_default_trans();
1040
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001041 if (clnt->trans_mod == NULL) {
1042 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001043 p9_debug(P9_DEBUG_ERROR,
1044 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001045 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001046 }
1047
Joe Perches5d385152011-11-28 10:40:46 -08001048 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1049 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001050
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001051 err = clnt->trans_mod->create(clnt, dev_name, options);
1052 if (err)
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -07001053 goto put_trans;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001054
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001055 if (clnt->msize > clnt->trans_mod->maxsize)
1056 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001057
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001058 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001059 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001060 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001061
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001062 return clnt;
1063
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001064close_trans:
1065 clnt->trans_mod->close(clnt);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001066put_trans:
1067 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001068destroy_tagpool:
1069 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001070free_client:
1071 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001072 return ERR_PTR(err);
1073}
1074EXPORT_SYMBOL(p9_client_create);
1075
1076void p9_client_destroy(struct p9_client *clnt)
1077{
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -07001078 struct p9_fid *fid;
1079 int id;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001080
Joe Perches5d385152011-11-28 10:40:46 -08001081 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001082
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001083 if (clnt->trans_mod)
1084 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001085
Tejun Heo72029fe2008-09-24 16:22:23 -05001086 v9fs_put_trans(clnt->trans_mod);
1087
Matthew Wilcoxf28cdf02018-07-11 14:02:22 -07001088 idr_for_each_entry(&clnt->fids, fid, id) {
Joe Perches5d385152011-11-28 10:40:46 -08001089 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001090 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001091 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001092
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001093 p9_tag_cleanup(clnt);
1094
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001095 kfree(clnt);
1096}
1097EXPORT_SYMBOL(p9_client_destroy);
1098
1099void p9_client_disconnect(struct p9_client *clnt)
1100{
Joe Perches5d385152011-11-28 10:40:46 -08001101 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001102 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001103}
1104EXPORT_SYMBOL(p9_client_disconnect);
1105
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001106void p9_client_begin_disconnect(struct p9_client *clnt)
1107{
Joe Perches5d385152011-11-28 10:40:46 -08001108 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001109 clnt->status = BeginDisconnect;
1110}
1111EXPORT_SYMBOL(p9_client_begin_disconnect);
1112
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001113struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Al Viro7880b432017-01-12 04:01:17 -05001114 const char *uname, kuid_t n_uname, const char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001115{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301116 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001117 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001118 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001119 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001120
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001121
Joe Perches5d385152011-11-28 10:40:46 -08001122 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1123 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001124 fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07001125 if (!fid) {
1126 err = -ENOMEM;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001127 goto error;
1128 }
Al Viro21c9f5c2015-04-02 21:47:49 -04001129 fid->uid = n_uname;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001130
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001131 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001132 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1133 if (IS_ERR(req)) {
1134 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001135 goto error;
1136 }
1137
Sripathi Kodi342fee12010-03-05 18:50:14 +00001138 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001139 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301140 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001141 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001142 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001143 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001144
Joe Perches5d385152011-11-28 10:40:46 -08001145 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1146 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001147
1148 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1149
1150 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001151 return fid;
1152
1153error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001154 if (fid)
1155 p9_fid_destroy(fid);
1156 return ERR_PTR(err);
1157}
1158EXPORT_SYMBOL(p9_client_attach);
1159
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301160struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
Al Viro7880b432017-01-12 04:01:17 -05001161 const unsigned char * const *wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001162{
1163 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001164 struct p9_client *clnt;
1165 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001166 struct p9_qid *wqids;
1167 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301168 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001169
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001170 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001171 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001172 clnt = oldfid->clnt;
1173 if (clone) {
1174 fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07001175 if (!fid) {
1176 err = -ENOMEM;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001177 goto error;
1178 }
1179
1180 fid->uid = oldfid->uid;
1181 } else
1182 fid = oldfid;
1183
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001184
Joe Perches5d385152011-11-28 10:40:46 -08001185 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1186 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001187
1188 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1189 nwname, wnames);
1190 if (IS_ERR(req)) {
1191 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001192 goto error;
1193 }
1194
Sripathi Kodi342fee12010-03-05 18:50:14 +00001195 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001196 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301197 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001198 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001199 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001200 }
1201 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001202
Joe Perches5d385152011-11-28 10:40:46 -08001203 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001204
1205 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001206 err = -ENOENT;
1207 goto clunk_fid;
1208 }
1209
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001210 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001211 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001212 count, wqids[count].type,
1213 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001214 wqids[count].version);
1215
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001216 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001217 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001218 else
1219 fid->qid = oldfid->qid;
1220
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001221 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001222 return fid;
1223
1224clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001225 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001226 p9_client_clunk(fid);
1227 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001228
1229error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001230 if (fid && (fid != oldfid))
1231 p9_fid_destroy(fid);
1232
1233 return ERR_PTR(err);
1234}
1235EXPORT_SYMBOL(p9_client_walk);
1236
1237int p9_client_open(struct p9_fid *fid, int mode)
1238{
1239 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001240 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001241 struct p9_req_t *req;
1242 struct p9_qid qid;
1243 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001244
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001245 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001246 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301247 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1248 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001249
1250 if (fid->mode != -1)
1251 return -EINVAL;
1252
M. Mohan Kumaref565472010-06-22 19:47:50 +05301253 if (p9_is_proto_dotl(clnt))
1254 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1255 else
1256 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001257 if (IS_ERR(req)) {
1258 err = PTR_ERR(req);
1259 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001260 }
1261
Sripathi Kodi342fee12010-03-05 18:50:14 +00001262 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001263 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301264 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001265 goto free_and_error;
1266 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001267
Joe Perches5d385152011-11-28 10:40:46 -08001268 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301269 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1270 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001271
1272 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001273 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001274
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001275free_and_error:
1276 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001277error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001278 return err;
1279}
1280EXPORT_SYMBOL(p9_client_open);
1281
Al Viro7880b432017-01-12 04:01:17 -05001282int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001283 kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001284{
1285 int err = 0;
1286 struct p9_client *clnt;
1287 struct p9_req_t *req;
1288 int iounit;
1289
Joe Perches5d385152011-11-28 10:40:46 -08001290 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001291 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001292 ofid->fid, name, flags, mode,
1293 from_kgid(&init_user_ns, gid));
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001294 clnt = ofid->clnt;
1295
1296 if (ofid->mode != -1)
1297 return -EINVAL;
1298
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001299 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001300 mode, gid);
1301 if (IS_ERR(req)) {
1302 err = PTR_ERR(req);
1303 goto error;
1304 }
1305
1306 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1307 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301308 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001309 goto free_and_error;
1310 }
1311
Joe Perches5d385152011-11-28 10:40:46 -08001312 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001313 qid->type,
1314 (unsigned long long)qid->path,
1315 qid->version, iounit);
1316
1317 ofid->mode = mode;
1318 ofid->iounit = iounit;
1319
1320free_and_error:
1321 p9_free_req(clnt, req);
1322error:
1323 return err;
1324}
1325EXPORT_SYMBOL(p9_client_create_dotl);
1326
Al Viro7880b432017-01-12 04:01:17 -05001327int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001328 char *extension)
1329{
1330 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001331 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001332 struct p9_req_t *req;
1333 struct p9_qid qid;
1334 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001335
Joe Perches5d385152011-11-28 10:40:46 -08001336 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001337 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001338 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001339 clnt = fid->clnt;
1340
1341 if (fid->mode != -1)
1342 return -EINVAL;
1343
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001344 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1345 mode, extension);
1346 if (IS_ERR(req)) {
1347 err = PTR_ERR(req);
1348 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001349 }
1350
Sripathi Kodi342fee12010-03-05 18:50:14 +00001351 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001352 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301353 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001354 goto free_and_error;
1355 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001356
Joe Perches5d385152011-11-28 10:40:46 -08001357 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001358 qid.type,
1359 (unsigned long long)qid.path,
1360 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001361
1362 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001363 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001364
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001365free_and_error:
1366 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001367error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001368 return err;
1369}
1370EXPORT_SYMBOL(p9_client_fcreate);
1371
Al Viro7880b432017-01-12 04:01:17 -05001372int p9_client_symlink(struct p9_fid *dfid, const char *name,
1373 const char *symtgt, kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001374{
1375 int err = 0;
1376 struct p9_client *clnt;
1377 struct p9_req_t *req;
1378
Joe Perches5d385152011-11-28 10:40:46 -08001379 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001380 dfid->fid, name, symtgt);
1381 clnt = dfid->clnt;
1382
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001383 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001384 gid);
1385 if (IS_ERR(req)) {
1386 err = PTR_ERR(req);
1387 goto error;
1388 }
1389
1390 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1391 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301392 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001393 goto free_and_error;
1394 }
1395
Joe Perches5d385152011-11-28 10:40:46 -08001396 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001397 qid->type, (unsigned long long)qid->path, qid->version);
1398
1399free_and_error:
1400 p9_free_req(clnt, req);
1401error:
1402 return err;
1403}
1404EXPORT_SYMBOL(p9_client_symlink);
1405
Al Viro7880b432017-01-12 04:01:17 -05001406int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001407{
1408 struct p9_client *clnt;
1409 struct p9_req_t *req;
1410
Joe Perches5d385152011-11-28 10:40:46 -08001411 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001412 dfid->fid, oldfid->fid, newname);
1413 clnt = dfid->clnt;
1414 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1415 newname);
1416 if (IS_ERR(req))
1417 return PTR_ERR(req);
1418
Joe Perches5d385152011-11-28 10:40:46 -08001419 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001420 p9_free_req(clnt, req);
1421 return 0;
1422}
1423EXPORT_SYMBOL(p9_client_link);
1424
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001425int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001426{
1427 int err;
1428 struct p9_client *clnt;
1429 struct p9_req_t *req;
1430
Joe Perches5d385152011-11-28 10:40:46 -08001431 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001432 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001433 err = 0;
1434 clnt = fid->clnt;
1435
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001436 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001437 if (IS_ERR(req)) {
1438 err = PTR_ERR(req);
1439 goto error;
1440 }
1441
Joe Perches5d385152011-11-28 10:40:46 -08001442 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001443
1444 p9_free_req(clnt, req);
1445
1446error:
1447 return err;
1448}
1449EXPORT_SYMBOL(p9_client_fsync);
1450
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001451int p9_client_clunk(struct p9_fid *fid)
1452{
1453 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001454 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001455 struct p9_req_t *req;
Jim Garlick208f3c22012-02-26 14:49:57 -06001456 int retries = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001457
jvrao8e44a082010-08-25 16:27:06 +00001458 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001459 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1460 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001461 dump_stack();
1462 return 0;
1463 }
1464
Jim Garlick208f3c22012-02-26 14:49:57 -06001465again:
1466 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1467 retries);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001468 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001469 clnt = fid->clnt;
1470
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001471 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1472 if (IS_ERR(req)) {
1473 err = PTR_ERR(req);
1474 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001475 }
1476
Joe Perches5d385152011-11-28 10:40:46 -08001477 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001478
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001479 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001480error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001481 /*
1482 * Fid is not valid even after a failed clunk
Jim Garlick208f3c22012-02-26 14:49:57 -06001483 * If interrupted, retry once then give up and
1484 * leak fid until umount.
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001485 */
Jim Garlick208f3c22012-02-26 14:49:57 -06001486 if (err == -ERESTARTSYS) {
1487 if (retries++ == 0)
1488 goto again;
1489 } else
1490 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001491 return err;
1492}
1493EXPORT_SYMBOL(p9_client_clunk);
1494
1495int p9_client_remove(struct p9_fid *fid)
1496{
1497 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001498 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001499 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001500
Joe Perches5d385152011-11-28 10:40:46 -08001501 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001502 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001503 clnt = fid->clnt;
1504
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001505 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1506 if (IS_ERR(req)) {
1507 err = PTR_ERR(req);
1508 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001509 }
1510
Joe Perches5d385152011-11-28 10:40:46 -08001511 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001512
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001513 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001514error:
Jim Garlick208f3c22012-02-26 14:49:57 -06001515 if (err == -ERESTARTSYS)
1516 p9_client_clunk(fid);
1517 else
1518 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001519 return err;
1520}
1521EXPORT_SYMBOL(p9_client_remove);
1522
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301523int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1524{
1525 int err = 0;
1526 struct p9_req_t *req;
1527 struct p9_client *clnt;
1528
Joe Perches5d385152011-11-28 10:40:46 -08001529 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301530 dfid->fid, name, flags);
1531
1532 clnt = dfid->clnt;
1533 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1534 if (IS_ERR(req)) {
1535 err = PTR_ERR(req);
1536 goto error;
1537 }
Joe Perches5d385152011-11-28 10:40:46 -08001538 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301539
1540 p9_free_req(clnt, req);
1541error:
1542 return err;
1543}
1544EXPORT_SYMBOL(p9_client_unlinkat);
1545
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001546int
Al Viroe1200fe62015-04-01 23:42:28 -04001547p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001548{
Al Viroe1200fe62015-04-01 23:42:28 -04001549 struct p9_client *clnt = fid->clnt;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301550 struct p9_req_t *req;
Al Viroe1200fe62015-04-01 23:42:28 -04001551 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001552 *err = 0;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301553
Joe Perches5d385152011-11-28 10:40:46 -08001554 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Al Viroe1200fe62015-04-01 23:42:28 -04001555 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001556
Al Viroe1200fe62015-04-01 23:42:28 -04001557 while (iov_iter_count(to)) {
1558 int count = iov_iter_count(to);
1559 int rsize, non_zc = 0;
1560 char *dataptr;
Stephen Hemmingerc69f297d2018-07-24 12:29:10 -07001561
Al Viroe1200fe62015-04-01 23:42:28 -04001562 rsize = fid->iounit;
1563 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1564 rsize = clnt->msize - P9_IOHDRSZ;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001565
Al Viroe1200fe62015-04-01 23:42:28 -04001566 if (count < rsize)
1567 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001568
Al Viroe1200fe62015-04-01 23:42:28 -04001569 /* Don't bother zerocopy for small IO (< 1024) */
1570 if (clnt->trans_mod->zc_request && rsize > 1024) {
1571 /*
1572 * response header len is 11
1573 * PDU Header(7) + IO Size (4)
1574 */
1575 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1576 0, 11, "dqd", fid->fid,
1577 offset, rsize);
1578 } else {
1579 non_zc = 1;
1580 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1581 rsize);
1582 }
1583 if (IS_ERR(req)) {
1584 *err = PTR_ERR(req);
1585 break;
1586 }
1587
1588 *err = p9pdu_readf(req->rc, clnt->proto_version,
1589 "D", &count, &dataptr);
1590 if (*err) {
1591 trace_9p_protocol_dump(clnt, req->rc);
1592 p9_free_req(clnt, req);
1593 break;
1594 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001595 if (rsize < count) {
1596 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1597 count = rsize;
1598 }
Al Viroe1200fe62015-04-01 23:42:28 -04001599
1600 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1601 if (!count) {
1602 p9_free_req(clnt, req);
1603 break;
1604 }
1605
1606 if (non_zc) {
1607 int n = copy_to_iter(dataptr, count, to);
1608 total += n;
1609 offset += n;
1610 if (n != count) {
1611 *err = -EFAULT;
1612 p9_free_req(clnt, req);
1613 break;
1614 }
1615 } else {
1616 iov_iter_advance(to, count);
1617 total += count;
1618 offset += count;
1619 }
1620 p9_free_req(clnt, req);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001621 }
Al Viroe1200fe62015-04-01 23:42:28 -04001622 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001623}
1624EXPORT_SYMBOL(p9_client_read);
1625
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001626int
Al Viro070b3652015-04-01 20:17:51 -04001627p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001628{
Al Viro070b3652015-04-01 20:17:51 -04001629 struct p9_client *clnt = fid->clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001630 struct p9_req_t *req;
Al Viro070b3652015-04-01 20:17:51 -04001631 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001632 *err = 0;
Al Viro4f3b35c2015-04-01 19:57:53 -04001633
Al Viro070b3652015-04-01 20:17:51 -04001634 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1635 fid->fid, (unsigned long long) offset,
1636 iov_iter_count(from));
1637
1638 while (iov_iter_count(from)) {
1639 int count = iov_iter_count(from);
1640 int rsize = fid->iounit;
1641 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1642 rsize = clnt->msize - P9_IOHDRSZ;
1643
1644 if (count < rsize)
1645 rsize = count;
1646
1647 /* Don't bother zerocopy for small IO (< 1024) */
1648 if (clnt->trans_mod->zc_request && rsize > 1024) {
1649 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1650 rsize, P9_ZC_HDR_SZ, "dqd",
1651 fid->fid, offset, rsize);
1652 } else {
1653 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1654 offset, rsize, from);
1655 }
1656 if (IS_ERR(req)) {
1657 *err = PTR_ERR(req);
1658 break;
1659 }
1660
1661 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1662 if (*err) {
1663 trace_9p_protocol_dump(clnt, req->rc);
1664 p9_free_req(clnt, req);
Al Viro67e808f2015-07-04 16:11:05 -04001665 break;
Al Viro070b3652015-04-01 20:17:51 -04001666 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001667 if (rsize < count) {
1668 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1669 count = rsize;
1670 }
Al Viro070b3652015-04-01 20:17:51 -04001671
1672 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1673
1674 p9_free_req(clnt, req);
1675 iov_iter_advance(from, count);
1676 total += count;
1677 offset += count;
Al Viro4f3b35c2015-04-01 19:57:53 -04001678 }
Al Viro070b3652015-04-01 20:17:51 -04001679 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001680}
1681EXPORT_SYMBOL(p9_client_write);
1682
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001683struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001684{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001685 int err;
1686 struct p9_client *clnt;
1687 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1688 struct p9_req_t *req;
1689 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001690
Joe Perches5d385152011-11-28 10:40:46 -08001691 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001692
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001693 if (!ret)
1694 return ERR_PTR(-ENOMEM);
1695
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001696 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001697 clnt = fid->clnt;
1698
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001699 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1700 if (IS_ERR(req)) {
1701 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001702 goto error;
1703 }
1704
Sripathi Kodi342fee12010-03-05 18:50:14 +00001705 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001706 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301707 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001708 p9_free_req(clnt, req);
1709 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001710 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001711
Joe Perches5d385152011-11-28 10:40:46 -08001712 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001713 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1714 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1715 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1716 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001717 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001718 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1719 ret->atime, ret->mtime, (unsigned long long)ret->length,
1720 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001721 from_kuid(&init_user_ns, ret->n_uid),
1722 from_kgid(&init_user_ns, ret->n_gid),
1723 from_kuid(&init_user_ns, ret->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001724
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001725 p9_free_req(clnt, req);
1726 return ret;
1727
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001728error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001729 kfree(ret);
1730 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001731}
1732EXPORT_SYMBOL(p9_client_stat);
1733
Sripathi Kodif0853122010-07-12 20:07:23 +05301734struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1735 u64 request_mask)
1736{
1737 int err;
1738 struct p9_client *clnt;
1739 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1740 GFP_KERNEL);
1741 struct p9_req_t *req;
1742
Joe Perches5d385152011-11-28 10:40:46 -08001743 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301744 fid->fid, request_mask);
1745
1746 if (!ret)
1747 return ERR_PTR(-ENOMEM);
1748
1749 err = 0;
1750 clnt = fid->clnt;
1751
1752 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1753 if (IS_ERR(req)) {
1754 err = PTR_ERR(req);
1755 goto error;
1756 }
1757
1758 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1759 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301760 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301761 p9_free_req(clnt, req);
1762 goto error;
1763 }
1764
Joe Perches5d385152011-11-28 10:40:46 -08001765 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301766 "<<< RGETATTR st_result_mask=%lld\n"
1767 "<<< qid=%x.%llx.%x\n"
1768 "<<< st_mode=%8.8x st_nlink=%llu\n"
1769 "<<< st_uid=%d st_gid=%d\n"
1770 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1771 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1772 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1773 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1774 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
piaojun64ad31f2018-07-10 14:56:26 +08001775 "<<< st_gen=%lld st_data_version=%lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301776 ret->st_result_mask, ret->qid.type, ret->qid.path,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001777 ret->qid.version, ret->st_mode, ret->st_nlink,
1778 from_kuid(&init_user_ns, ret->st_uid),
1779 from_kgid(&init_user_ns, ret->st_gid),
1780 ret->st_rdev, ret->st_size, ret->st_blksize,
Sripathi Kodif0853122010-07-12 20:07:23 +05301781 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1782 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1783 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1784 ret->st_gen, ret->st_data_version);
1785
1786 p9_free_req(clnt, req);
1787 return ret;
1788
1789error:
1790 kfree(ret);
1791 return ERR_PTR(err);
1792}
1793EXPORT_SYMBOL(p9_client_getattr_dotl);
1794
Sripathi Kodi342fee12010-03-05 18:50:14 +00001795static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001796{
1797 int ret;
1798
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001799 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001800 /* size[2] type[2] dev[4] qid[13] */
1801 /* mode[4] atime[4] mtime[4] length[8]*/
1802 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001803 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001804
1805 if (wst->name)
1806 ret += strlen(wst->name);
1807 if (wst->uid)
1808 ret += strlen(wst->uid);
1809 if (wst->gid)
1810 ret += strlen(wst->gid);
1811 if (wst->muid)
1812 ret += strlen(wst->muid);
1813
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001814 if ((proto_version == p9_proto_2000u) ||
1815 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001816 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1817 if (wst->extension)
1818 ret += strlen(wst->extension);
1819 }
1820
1821 return ret;
1822}
1823
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001824int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1825{
1826 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001827 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001828 struct p9_client *clnt;
1829
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001830 err = 0;
1831 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001832 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001833 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1834 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001835 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1836 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1837 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1838 " uid=%d gid=%d n_muid=%d\n",
1839 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001840 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1841 wst->atime, wst->mtime, (unsigned long long)wst->length,
1842 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001843 from_kuid(&init_user_ns, wst->n_uid),
1844 from_kgid(&init_user_ns, wst->n_gid),
1845 from_kuid(&init_user_ns, wst->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001846
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001847 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001848 if (IS_ERR(req)) {
1849 err = PTR_ERR(req);
1850 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001851 }
1852
Joe Perches5d385152011-11-28 10:40:46 -08001853 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001854
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001855 p9_free_req(clnt, req);
1856error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001857 return err;
1858}
1859EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001860
Sripathi Kodi87d78452010-06-18 11:50:10 +05301861int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1862{
1863 int err;
1864 struct p9_req_t *req;
1865 struct p9_client *clnt;
1866
1867 err = 0;
1868 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001869 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1870 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301871 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1872 " atime_sec=%lld atime_nsec=%lld\n"
1873 " mtime_sec=%lld mtime_nsec=%lld\n",
Eric W. Biederman447c5092013-01-29 16:18:50 -08001874 p9attr->valid, p9attr->mode,
1875 from_kuid(&init_user_ns, p9attr->uid),
1876 from_kgid(&init_user_ns, p9attr->gid),
Sripathi Kodi87d78452010-06-18 11:50:10 +05301877 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1878 p9attr->mtime_sec, p9attr->mtime_nsec);
1879
1880 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1881
1882 if (IS_ERR(req)) {
1883 err = PTR_ERR(req);
1884 goto error;
1885 }
Joe Perches5d385152011-11-28 10:40:46 -08001886 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301887 p9_free_req(clnt, req);
1888error:
1889 return err;
1890}
1891EXPORT_SYMBOL(p9_client_setattr);
1892
Sripathi Kodibda8e772010-03-25 12:45:30 +00001893int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1894{
1895 int err;
1896 struct p9_req_t *req;
1897 struct p9_client *clnt;
1898
1899 err = 0;
1900 clnt = fid->clnt;
1901
Joe Perches5d385152011-11-28 10:40:46 -08001902 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001903
1904 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1905 if (IS_ERR(req)) {
1906 err = PTR_ERR(req);
1907 goto error;
1908 }
1909
1910 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1911 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1912 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1913 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301914 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001915 p9_free_req(clnt, req);
1916 goto error;
1917 }
1918
Joe Perches5d385152011-11-28 10:40:46 -08001919 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001920 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1921 "fsid %llu namelen %ld\n",
1922 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1923 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1924 sb->fsid, (long int)sb->namelen);
1925
1926 p9_free_req(clnt, req);
1927error:
1928 return err;
1929}
1930EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001931
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301932int p9_client_rename(struct p9_fid *fid,
1933 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001934{
1935 int err;
1936 struct p9_req_t *req;
1937 struct p9_client *clnt;
1938
1939 err = 0;
1940 clnt = fid->clnt;
1941
Joe Perches5d385152011-11-28 10:40:46 -08001942 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001943 fid->fid, newdirfid->fid, name);
1944
1945 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1946 newdirfid->fid, name);
1947 if (IS_ERR(req)) {
1948 err = PTR_ERR(req);
1949 goto error;
1950 }
1951
Joe Perches5d385152011-11-28 10:40:46 -08001952 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001953
1954 p9_free_req(clnt, req);
1955error:
1956 return err;
1957}
1958EXPORT_SYMBOL(p9_client_rename);
1959
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301960int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1961 struct p9_fid *newdirfid, const char *new_name)
1962{
1963 int err;
1964 struct p9_req_t *req;
1965 struct p9_client *clnt;
1966
1967 err = 0;
1968 clnt = olddirfid->clnt;
1969
Joe Perches5d385152011-11-28 10:40:46 -08001970 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301971 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1972 newdirfid->fid, new_name);
1973
1974 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1975 old_name, newdirfid->fid, new_name);
1976 if (IS_ERR(req)) {
1977 err = PTR_ERR(req);
1978 goto error;
1979 }
1980
Joe Perches5d385152011-11-28 10:40:46 -08001981 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301982 newdirfid->fid, new_name);
1983
1984 p9_free_req(clnt, req);
1985error:
1986 return err;
1987}
1988EXPORT_SYMBOL(p9_client_renameat);
1989
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05301990/*
1991 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1992 */
1993struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1994 const char *attr_name, u64 *attr_size)
1995{
1996 int err;
1997 struct p9_req_t *req;
1998 struct p9_client *clnt;
1999 struct p9_fid *attr_fid;
2000
2001 err = 0;
2002 clnt = file_fid->clnt;
2003 attr_fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07002004 if (!attr_fid) {
2005 err = -ENOMEM;
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302006 goto error;
2007 }
Joe Perches5d385152011-11-28 10:40:46 -08002008 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302009 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2010 file_fid->fid, attr_fid->fid, attr_name);
2011
2012 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2013 file_fid->fid, attr_fid->fid, attr_name);
2014 if (IS_ERR(req)) {
2015 err = PTR_ERR(req);
2016 goto error;
2017 }
2018 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2019 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302020 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302021 p9_free_req(clnt, req);
2022 goto clunk_fid;
2023 }
2024 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08002025 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302026 attr_fid->fid, *attr_size);
2027 return attr_fid;
2028clunk_fid:
2029 p9_client_clunk(attr_fid);
2030 attr_fid = NULL;
2031error:
2032 if (attr_fid && (attr_fid != file_fid))
2033 p9_fid_destroy(attr_fid);
2034
2035 return ERR_PTR(err);
2036}
2037EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2038
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302039int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2040 u64 attr_size, int flags)
2041{
2042 int err;
2043 struct p9_req_t *req;
2044 struct p9_client *clnt;
2045
Joe Perches5d385152011-11-28 10:40:46 -08002046 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302047 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2048 fid->fid, name, (long long)attr_size, flags);
2049 err = 0;
2050 clnt = fid->clnt;
2051 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2052 fid->fid, name, attr_size, flags);
2053 if (IS_ERR(req)) {
2054 err = PTR_ERR(req);
2055 goto error;
2056 }
Joe Perches5d385152011-11-28 10:40:46 -08002057 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302058 p9_free_req(clnt, req);
2059error:
2060 return err;
2061}
2062EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2063
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002064int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2065{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302066 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002067 struct p9_client *clnt;
2068 struct p9_req_t *req;
2069 char *dataptr;
Al Viro4f3b35c2015-04-01 19:57:53 -04002070 struct kvec kv = {.iov_base = data, .iov_len = count};
2071 struct iov_iter to;
2072
2073 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002074
Joe Perches5d385152011-11-28 10:40:46 -08002075 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00002076 fid->fid, (unsigned long long) offset, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002077
2078 err = 0;
2079 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002080
2081 rsize = fid->iounit;
2082 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2083 rsize = clnt->msize - P9_READDIRHDRSZ;
2084
2085 if (count < rsize)
2086 rsize = count;
2087
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302088 /* Don't bother zerocopy for small IO (< 1024) */
2089 if (clnt->trans_mod->zc_request && rsize > 1024) {
2090 /*
2091 * response header len is 11
2092 * PDU Header(7) + IO Size (4)
2093 */
Al Viro4f3b35c2015-04-01 19:57:53 -04002094 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2095 11, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002096 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302097 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002098 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302099 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002100 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002101 if (IS_ERR(req)) {
2102 err = PTR_ERR(req);
2103 goto error;
2104 }
2105
2106 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2107 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302108 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002109 goto free_and_error;
2110 }
Al Viro71d6ad02017-04-14 17:22:18 -04002111 if (rsize < count) {
2112 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2113 count = rsize;
2114 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002115
Joe Perches5d385152011-11-28 10:40:46 -08002116 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002117
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302118 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002119 memmove(data, dataptr, count);
2120
2121 p9_free_req(clnt, req);
2122 return count;
2123
2124free_and_error:
2125 p9_free_req(clnt, req);
2126error:
2127 return err;
2128}
2129EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302130
Al Viro7880b432017-01-12 04:01:17 -05002131int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002132 dev_t rdev, kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302133{
2134 int err;
2135 struct p9_client *clnt;
2136 struct p9_req_t *req;
2137
2138 err = 0;
2139 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002140 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302141 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002142 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302143 MAJOR(rdev), MINOR(rdev), gid);
2144 if (IS_ERR(req))
2145 return PTR_ERR(req);
2146
2147 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2148 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302149 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302150 goto error;
2151 }
Joe Perches5d385152011-11-28 10:40:46 -08002152 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302153 (unsigned long long)qid->path, qid->version);
2154
2155error:
2156 p9_free_req(clnt, req);
2157 return err;
2158
2159}
2160EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302161
Al Viro7880b432017-01-12 04:01:17 -05002162int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002163 kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302164{
2165 int err;
2166 struct p9_client *clnt;
2167 struct p9_req_t *req;
2168
2169 err = 0;
2170 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002171 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002172 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2173 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302174 gid);
2175 if (IS_ERR(req))
2176 return PTR_ERR(req);
2177
2178 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2179 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302180 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302181 goto error;
2182 }
Joe Perches5d385152011-11-28 10:40:46 -08002183 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302184 (unsigned long long)qid->path, qid->version);
2185
2186error:
2187 p9_free_req(clnt, req);
2188 return err;
2189
2190}
2191EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302192
2193int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2194{
2195 int err;
2196 struct p9_client *clnt;
2197 struct p9_req_t *req;
2198
2199 err = 0;
2200 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002201 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302202 "start %lld length %lld proc_id %d client_id %s\n",
2203 fid->fid, flock->type, flock->flags, flock->start,
2204 flock->length, flock->proc_id, flock->client_id);
2205
2206 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2207 flock->flags, flock->start, flock->length,
2208 flock->proc_id, flock->client_id);
2209
2210 if (IS_ERR(req))
2211 return PTR_ERR(req);
2212
2213 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2214 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302215 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302216 goto error;
2217 }
Joe Perches5d385152011-11-28 10:40:46 -08002218 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302219error:
2220 p9_free_req(clnt, req);
2221 return err;
2222
2223}
2224EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302225
2226int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2227{
2228 int err;
2229 struct p9_client *clnt;
2230 struct p9_req_t *req;
2231
2232 err = 0;
2233 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002234 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302235 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2236 glock->start, glock->length, glock->proc_id, glock->client_id);
2237
2238 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2239 glock->start, glock->length, glock->proc_id, glock->client_id);
2240
2241 if (IS_ERR(req))
2242 return PTR_ERR(req);
2243
2244 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2245 &glock->start, &glock->length, &glock->proc_id,
2246 &glock->client_id);
2247 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302248 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302249 goto error;
2250 }
Joe Perches5d385152011-11-28 10:40:46 -08002251 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302252 "proc_id %d client_id %s\n", glock->type, glock->start,
2253 glock->length, glock->proc_id, glock->client_id);
2254error:
2255 p9_free_req(clnt, req);
2256 return err;
2257}
2258EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302259
2260int p9_client_readlink(struct p9_fid *fid, char **target)
2261{
2262 int err;
2263 struct p9_client *clnt;
2264 struct p9_req_t *req;
2265
2266 err = 0;
2267 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002268 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302269
2270 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2271 if (IS_ERR(req))
2272 return PTR_ERR(req);
2273
2274 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2275 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302276 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302277 goto error;
2278 }
Joe Perches5d385152011-11-28 10:40:46 -08002279 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176c2010-09-28 19:59:25 +05302280error:
2281 p9_free_req(clnt, req);
2282 return err;
2283}
2284EXPORT_SYMBOL(p9_client_readlink);