blob: 7c317d39bf6201e807f557ad7508d412b7e98011 [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++) {
286 c->reqs[row][col].status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500287 c->reqs[row][col].tc = NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500288 }
289 c->max_tag += P9_ROW_MAXTAG;
290 }
291 spin_unlock_irqrestore(&c->lock, flags);
292 }
293 row = tag / P9_ROW_MAXTAG;
294 col = tag % P9_ROW_MAXTAG;
295
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500296 req = &c->reqs[row][col];
Simon Derr53873202013-06-21 15:32:36 +0200297 if (!req->wq) {
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530298 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
Simon Derrea071aa2013-06-21 15:32:34 +0200299 if (!req->wq)
300 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500301 init_waitqueue_head(req->wq);
Simon Derrea071aa2013-06-21 15:32:34 +0200302 }
Simon Derrea071aa2013-06-21 15:32:34 +0200303
Simon Derr53873202013-06-21 15:32:36 +0200304 if (!req->tc)
305 req->tc = p9_fcall_alloc(alloc_msize);
306 if (!req->rc)
307 req->rc = p9_fcall_alloc(alloc_msize);
308 if (!req->tc || !req->rc)
309 goto grow_failed;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500310
311 p9pdu_reset(req->tc);
312 p9pdu_reset(req->rc);
313
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500314 req->tc->tag = tag-1;
315 req->status = REQ_STATUS_ALLOC;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500316
Simon Derrea071aa2013-06-21 15:32:34 +0200317 return req;
318
319grow_failed:
320 pr_err("Couldn't grow tag array\n");
321 kfree(req->tc);
322 kfree(req->rc);
323 kfree(req->wq);
324 req->tc = req->rc = NULL;
325 req->wq = NULL;
326 return ERR_PTR(-ENOMEM);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500327}
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500328
329/**
330 * p9_tag_lookup - lookup a request by tag
331 * @c: client session to lookup tag within
332 * @tag: numeric id for transaction
333 *
334 */
335
336struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
337{
338 int row, col;
339
340 /* This looks up the original request by tag so we know which
341 * buffer to read the data into */
342 tag++;
343
Eric Van Hensbergenb85f7d922011-07-13 19:12:18 -0500344 if(tag >= c->max_tag)
345 return NULL;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500346
347 row = tag / P9_ROW_MAXTAG;
348 col = tag % P9_ROW_MAXTAG;
349
350 return &c->reqs[row][col];
351}
352EXPORT_SYMBOL(p9_tag_lookup);
353
354/**
355 * p9_tag_init - setup tags structure and contents
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600356 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500357 *
358 * This initializes the tags structure for each client instance.
359 *
360 */
361
362static int p9_tag_init(struct p9_client *c)
363{
364 int err = 0;
365
366 c->tagpool = p9_idpool_create();
367 if (IS_ERR(c->tagpool)) {
368 err = PTR_ERR(c->tagpool);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500369 goto error;
370 }
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +0000371 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
372 if (err < 0) {
373 p9_idpool_destroy(c->tagpool);
374 goto error;
375 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500376 c->max_tag = 0;
377error:
378 return err;
379}
380
381/**
382 * p9_tag_cleanup - cleans up tags structure and reclaims resources
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600383 * @c: v9fs client struct
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500384 *
385 * This frees resources associated with the tags structure
386 *
387 */
388static void p9_tag_cleanup(struct p9_client *c)
389{
390 int row, col;
391
392 /* check to insure all requests are idle */
393 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
394 for (col = 0; col < P9_ROW_MAXTAG; col++) {
395 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
Joe Perches5d385152011-11-28 10:40:46 -0800396 p9_debug(P9_DEBUG_MUX,
397 "Attempting to cleanup non-free tag %d,%d\n",
398 row, col);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500399 /* TODO: delay execution of cleanup */
400 return;
401 }
402 }
403 }
404
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000405 if (c->tagpool) {
406 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500407 p9_idpool_destroy(c->tagpool);
Latchesar Ionkov62b2be52010-08-24 18:13:59 +0000408 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500409
410 /* free requests associated with tags */
411 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500412 for (col = 0; col < P9_ROW_MAXTAG; col++) {
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500413 kfree(c->reqs[row][col].wq);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500414 kfree(c->reqs[row][col].tc);
415 kfree(c->reqs[row][col].rc);
416 }
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500417 kfree(c->reqs[row]);
418 }
419 c->max_tag = 0;
420}
421
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500422/**
423 * p9_free_req - free a request and clean-up as necessary
424 * c: client state
425 * r: request to release
426 *
427 */
428
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500429static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500430{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500431 int tag = r->tc->tag;
Joe Perches5d385152011-11-28 10:40:46 -0800432 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500433
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500434 r->status = REQ_STATUS_IDLE;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500435 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
436 p9_idpool_put(tag, c->tagpool);
Eric Van Hensbergen673d62cd2008-10-13 18:45:22 -0500437}
438
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500439/**
440 * p9_client_cb - call back from transport to client
441 * c: client state
442 * req: request received
443 *
444 */
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100445void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500446{
Joe Perches5d385152011-11-28 10:40:46 -0800447 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100448
449 /*
450 * This barrier is needed to make sure any change made to req before
Matthew Wilcox2d58f632018-07-11 14:02:20 -0700451 * the status change is visible to another thread
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100452 */
453 smp_wmb();
454 req->status = status;
455
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500456 wake_up(req->wq);
Joe Perches5d385152011-11-28 10:40:46 -0800457 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500458}
459EXPORT_SYMBOL(p9_client_cb);
460
461/**
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500462 * p9_parse_header - parse header arguments out of a packet
463 * @pdu: packet to parse
464 * @size: size of packet
465 * @type: type of request
466 * @tag: tag of packet
467 * @rewind: set if we need to rewind offset afterwards
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500468 */
469
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500470int
471p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
472 int rewind)
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500473{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500474 int8_t r_type;
475 int16_t r_tag;
476 int32_t r_size;
477 int offset = pdu->offset;
478 int err;
479
480 pdu->offset = 0;
481 if (pdu->size == 0)
482 pdu->size = 7;
483
484 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
485 if (err)
486 goto rewind_and_exit;
487
488 pdu->size = r_size;
489 pdu->id = r_type;
490 pdu->tag = r_tag;
491
Joe Perches5d385152011-11-28 10:40:46 -0800492 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
495 if (type)
496 *type = r_type;
497 if (tag)
498 *tag = r_tag;
499 if (size)
500 *size = r_size;
501
502
503rewind_and_exit:
504 if (rewind)
505 pdu->offset = offset;
506 return err;
507}
508EXPORT_SYMBOL(p9_parse_header);
509
510/**
511 * p9_check_errors - check 9p packet for error return and process it
512 * @c: current client instance
513 * @req: request to parse and check for error conditions
514 *
515 * returns error code if one is discovered, otherwise returns 0
516 *
517 * this will have to be more complicated if we have multiple
518 * error packet types
519 */
520
521static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
522{
523 int8_t type;
524 int err;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800525 int ecode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500526
527 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530528 /*
529 * dump the response from server
530 * This should be after check errors which poplulate pdu_fcall.
531 */
532 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500533 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800534 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500535 return err;
536 }
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800537 if (type != P9_RERROR && type != P9_RLERROR)
538 return 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500539
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800540 if (!p9_is_proto_dotl(c)) {
541 char *ename;
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800542 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530543 &ename, &ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800544 if (err)
545 goto out_err;
546
Arnd Bergmann287980e2016-05-27 23:23:25 +0200547 if (p9_is_proto_dotu(c) && ecode < 512)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500548 err = -ecode;
549
Arnd Bergmann287980e2016-05-27 23:23:25 +0200550 if (!err) {
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800551 err = p9_errstr2errno(ename, strlen(ename));
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500552
Joe Perches5d385152011-11-28 10:40:46 -0800553 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
554 -ecode, ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800555 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530556 kfree(ename);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800557 } else {
558 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
559 err = -ecode;
560
Joe Perches5d385152011-11-28 10:40:46 -0800561 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Venkateswararao Jujjuri (JV)ca41bb32011-02-01 20:04:59 -0800562 }
563
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500564 return err;
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530565
566out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800567 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Arun R Bharadwaj4f7ebe82010-07-28 14:17:26 +0530568
569 return err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500570}
571
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530572/**
573 * p9_check_zc_errors - check 9p packet for error return and process it
574 * @c: current client instance
575 * @req: request to parse and check for error conditions
576 * @in_hdrlen: Size of response protocol buffer.
577 *
578 * returns error code if one is discovered, otherwise returns 0
579 *
580 * this will have to be more complicated if we have multiple
581 * error packet types
582 */
583
584static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
Al Viro4f3b35c2015-04-01 19:57:53 -0400585 struct iov_iter *uidata, int in_hdrlen)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530586{
587 int err;
588 int ecode;
589 int8_t type;
590 char *ename = NULL;
591
592 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530593 /*
594 * dump the response from server
595 * This should be after parse_header which poplulate pdu_fcall.
596 */
597 trace_9p_protocol_dump(c, req->rc);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530598 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800599 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530600 return err;
601 }
602
603 if (type != P9_RERROR && type != P9_RLERROR)
604 return 0;
605
606 if (!p9_is_proto_dotl(c)) {
607 /* Error is reported in string format */
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530608 int len;
609 /* 7 = header size for RERROR; */
610 int inline_len = in_hdrlen - 7;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530611
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530612 len = req->rc->size - req->rc->offset;
613 if (len > (P9_ZC_HDR_SZ - 7)) {
614 err = -EFAULT;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530615 goto out_err;
616 }
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530617
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530618 ename = &req->rc->sdata[req->rc->offset];
619 if (len > inline_len) {
620 /* We have error in external buffer */
Al Viro1c512a72017-02-17 23:16:09 -0500621 if (!copy_from_iter_full(ename + inline_len,
622 len - inline_len, uidata)) {
Al Viro4f3b35c2015-04-01 19:57:53 -0400623 err = -EFAULT;
624 goto out_err;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530625 }
626 }
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530627 ename = NULL;
628 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
629 &ename, &ecode);
630 if (err)
631 goto out_err;
632
Arnd Bergmann287980e2016-05-27 23:23:25 +0200633 if (p9_is_proto_dotu(c) && ecode < 512)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530634 err = -ecode;
Aneesh Kumar K.V42fe6482013-05-20 23:05:15 +0530635
Arnd Bergmann287980e2016-05-27 23:23:25 +0200636 if (!err) {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530637 err = p9_errstr2errno(ename, strlen(ename));
638
Joe Perches5d385152011-11-28 10:40:46 -0800639 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
640 -ecode, ename);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530641 }
642 kfree(ename);
643 } else {
644 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
645 err = -ecode;
646
Joe Perches5d385152011-11-28 10:40:46 -0800647 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530648 }
649 return err;
650
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530651out_err:
Joe Perches5d385152011-11-28 10:40:46 -0800652 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530653 return err;
654}
655
Rob Landleyaca00762011-05-08 18:46:38 +0000656static struct p9_req_t *
657p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
658
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500659/**
660 * p9_client_flush - flush (cancel) a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600661 * @c: client state
662 * @oldreq: request to cancel
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500663 *
Rob Landleyaca00762011-05-08 18:46:38 +0000664 * This sents a flush for a particular request and links
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500665 * the flush request to the original request. The current
666 * code only supports a single flush request although the protocol
667 * allows for multiple flush requests to be sent for a single request.
668 *
669 */
670
671static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
672{
673 struct p9_req_t *req;
674 int16_t oldtag;
675 int err;
676
677 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
678 if (err)
679 return err;
680
Joe Perches5d385152011-11-28 10:40:46 -0800681 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500682
683 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
684 if (IS_ERR(req))
685 return PTR_ERR(req);
686
Simon Derr1cff3302013-06-21 15:32:42 +0200687 /*
688 * if we haven't received a response for oldreq,
Andi Shyti60ff7792013-07-25 10:54:24 +0200689 * remove it from the list
Simon Derr1cff3302013-06-21 15:32:42 +0200690 */
Simon Derr0bfd6842014-03-10 16:38:52 +0100691 if (oldreq->status == REQ_STATUS_SENT)
Simon Derrafd8d652014-03-10 16:38:49 +0100692 if (c->trans_mod->cancelled)
693 c->trans_mod->cancelled(c, oldreq);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500694
695 p9_free_req(c, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500696 return 0;
697}
698
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530699static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
700 int8_t type, int req_size,
701 const char *fmt, va_list ap)
702{
703 int tag, err;
704 struct p9_req_t *req;
705
Joe Perches5d385152011-11-28 10:40:46 -0800706 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530707
708 /* we allow for any status other than disconnected */
709 if (c->status == Disconnected)
710 return ERR_PTR(-EIO);
711
712 /* if status is begin_disconnected we allow only clunk request */
713 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
714 return ERR_PTR(-EIO);
715
716 tag = P9_NOTAG;
717 if (type != P9_TVERSION) {
718 tag = p9_idpool_get(c->tagpool);
719 if (tag < 0)
720 return ERR_PTR(-ENOMEM);
721 }
722
723 req = p9_tag_alloc(c, tag, req_size);
724 if (IS_ERR(req))
725 return req;
726
727 /* marshall the data */
728 p9pdu_prepare(req->tc, tag, type);
729 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
730 if (err)
731 goto reterr;
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530732 p9pdu_finalize(c, req->tc);
733 trace_9p_client_req(c, type, tag);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530734 return req;
735reterr:
736 p9_free_req(c, req);
737 return ERR_PTR(err);
738}
739
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500740/**
741 * p9_client_rpc - issue a request and wait for a response
742 * @c: client session
743 * @type: type of request
744 * @fmt: protocol format string (see protocol.c)
745 *
746 * Returns request structure (which client must free using p9_free_req)
747 */
748
749static struct p9_req_t *
750p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
751{
752 va_list ap;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530753 int sigpending, err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500754 unsigned long flags;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530755 struct p9_req_t *req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500756
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530757 va_start(ap, fmt);
758 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
759 va_end(ap);
760 if (IS_ERR(req))
761 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500762
763 if (signal_pending(current)) {
764 sigpending = 1;
765 clear_thread_flag(TIF_SIGPENDING);
766 } else
767 sigpending = 0;
768
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500769 err = c->trans_mod->request(c, req);
770 if (err < 0) {
M. Mohan Kumar3cd79672011-04-15 13:59:33 +0530771 if (err != -ERESTARTSYS && err != -EFAULT)
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700772 c->status = Disconnected;
Greg Kurza8522242018-04-05 16:19:44 -0700773 goto recalc_sigpending;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500774 }
Jim Garlicka314f272012-02-01 12:48:53 -0800775again:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530776 /* Wait for the response */
Tuomas Tynkkynen9523fea2017-09-06 17:59:08 +0300777 err = wait_event_killable(*req->wq, req->status >= REQ_STATUS_RCVD);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500778
Dominique Martinet2b6e72e2014-01-17 18:31:00 +0100779 /*
780 * Make sure our req is coherent with regard to updates in other
781 * threads - echoes to wmb() in the callback
782 */
783 smp_rmb();
784
Jim Garlicka314f272012-02-01 12:48:53 -0800785 if ((err == -ERESTARTSYS) && (c->status == Connected)
786 && (type == P9_TFLUSH)) {
787 sigpending = 1;
788 clear_thread_flag(TIF_SIGPENDING);
789 goto again;
790 }
791
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500792 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800793 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500794 err = req->t_err;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500795 }
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500796 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800797 p9_debug(P9_DEBUG_MUX, "flushing\n");
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500798 sigpending = 1;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500799 clear_thread_flag(TIF_SIGPENDING);
800
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500801 if (c->trans_mod->cancel(c, req))
802 p9_client_flush(c, req);
803
804 /* if we received the response anyway, don't signal error */
805 if (req->status == REQ_STATUS_RCVD)
806 err = 0;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500807 }
Greg Kurza8522242018-04-05 16:19:44 -0700808recalc_sigpending:
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500809 if (sigpending) {
810 spin_lock_irqsave(&current->sighand->siglock, flags);
811 recalc_sigpending();
812 spin_unlock_irqrestore(&current->sighand->siglock, flags);
813 }
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500814 if (err < 0)
815 goto reterr;
816
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500817 err = p9_check_errors(c, req);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530818 trace_9p_client_res(c, type, req->rc->tag, err);
819 if (!err)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500820 return req;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530821reterr:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530822 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200823 return ERR_PTR(safe_errno(err));
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530824}
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500825
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530826/**
827 * p9_client_zc_rpc - issue a request and wait for a response
828 * @c: client session
829 * @type: type of request
Al Viro4f3b35c2015-04-01 19:57:53 -0400830 * @uidata: destination for zero copy read
831 * @uodata: source for zero copy write
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530832 * @inlen: read buffer size
833 * @olen: write buffer size
834 * @hdrlen: reader header size, This is the size of response protocol data
835 * @fmt: protocol format string (see protocol.c)
836 *
837 * Returns request structure (which client must free using p9_free_req)
838 */
839static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
Al Viro4f3b35c2015-04-01 19:57:53 -0400840 struct iov_iter *uidata,
841 struct iov_iter *uodata,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530842 int inlen, int olen, int in_hdrlen,
Al Viro4f3b35c2015-04-01 19:57:53 -0400843 const char *fmt, ...)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530844{
845 va_list ap;
846 int sigpending, err;
847 unsigned long flags;
848 struct p9_req_t *req;
849
850 va_start(ap, fmt);
851 /*
852 * We allocate a inline protocol data of only 4k bytes.
853 * The actual content is passed in zero-copy fashion.
854 */
855 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
856 va_end(ap);
857 if (IS_ERR(req))
858 return req;
859
860 if (signal_pending(current)) {
861 sigpending = 1;
862 clear_thread_flag(TIF_SIGPENDING);
863 } else
864 sigpending = 0;
865
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530866 err = c->trans_mod->zc_request(c, req, uidata, uodata,
Al Viro4f3b35c2015-04-01 19:57:53 -0400867 inlen, olen, in_hdrlen);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530868 if (err < 0) {
869 if (err == -EIO)
870 c->status = Disconnected;
Al Viroa84b69c2015-07-04 16:04:19 -0400871 if (err != -ERESTARTSYS)
Greg Kurza8522242018-04-05 16:19:44 -0700872 goto recalc_sigpending;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530873 }
874 if (req->status == REQ_STATUS_ERROR) {
Joe Perches5d385152011-11-28 10:40:46 -0800875 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530876 err = req->t_err;
877 }
878 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
Joe Perches5d385152011-11-28 10:40:46 -0800879 p9_debug(P9_DEBUG_MUX, "flushing\n");
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530880 sigpending = 1;
881 clear_thread_flag(TIF_SIGPENDING);
882
883 if (c->trans_mod->cancel(c, req))
884 p9_client_flush(c, req);
885
886 /* if we received the response anyway, don't signal error */
887 if (req->status == REQ_STATUS_RCVD)
888 err = 0;
889 }
Greg Kurza8522242018-04-05 16:19:44 -0700890recalc_sigpending:
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530891 if (sigpending) {
892 spin_lock_irqsave(&current->sighand->siglock, flags);
893 recalc_sigpending();
894 spin_unlock_irqrestore(&current->sighand->siglock, flags);
895 }
896 if (err < 0)
897 goto reterr;
898
Al Viro4f3b35c2015-04-01 19:57:53 -0400899 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530900 trace_9p_client_res(c, type, req->rc->tag, err);
901 if (!err)
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530902 return req;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500903reterr:
904 p9_free_req(c, req);
Simon Derr43def352012-08-10 15:52:06 +0200905 return ERR_PTR(safe_errno(err));
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500906}
907
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500908static struct p9_fid *p9_fid_create(struct p9_client *clnt)
909{
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500910 int ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500911 struct p9_fid *fid;
Tom Tuckercac23d62008-10-23 16:31:02 -0500912 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500913
Joe Perches5d385152011-11-28 10:40:46 -0800914 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500915 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
916 if (!fid)
Matthew Wilcoxb5303be2018-07-11 14:02:21 -0700917 return NULL;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500918
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500919 ret = p9_idpool_get(clnt->fidpool);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -0700920 if (ret < 0)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500921 goto error;
Roel Kluin9f3e9bb2008-10-28 14:22:43 -0500922 fid->fid = ret;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500923
924 memset(&fid->qid, 0, sizeof(struct p9_qid));
925 fid->mode = -1;
David Howellsf8b9d532008-11-14 10:38:44 +1100926 fid->uid = current_fsuid();
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500927 fid->clnt = clnt;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600928 fid->rdir = NULL;
Tom Tuckercac23d62008-10-23 16:31:02 -0500929 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500930 list_add(&fid->flist, &clnt->fidlist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500931 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500932
933 return fid;
934
935error:
936 kfree(fid);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -0700937 return NULL;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500938}
939
940static void p9_fid_destroy(struct p9_fid *fid)
941{
942 struct p9_client *clnt;
Tom Tuckercac23d62008-10-23 16:31:02 -0500943 unsigned long flags;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500944
Joe Perches5d385152011-11-28 10:40:46 -0800945 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500946 clnt = fid->clnt;
947 p9_idpool_put(fid->fid, clnt->fidpool);
Tom Tuckercac23d62008-10-23 16:31:02 -0500948 spin_lock_irqsave(&clnt->lock, flags);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500949 list_del(&fid->flist);
Tom Tuckercac23d62008-10-23 16:31:02 -0500950 spin_unlock_irqrestore(&clnt->lock, flags);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600951 kfree(fid->rdir);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -0500952 kfree(fid);
953}
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -0600954
stephen hemminger32a875a2010-10-19 06:48:16 +0000955static int p9_client_version(struct p9_client *c)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500956{
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500957 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500958 struct p9_req_t *req;
Tomas Bortoli79136902018-07-10 00:29:43 +0200959 char *version = NULL;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500960 int msize;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500961
Joe Perches5d385152011-11-28 10:40:46 -0800962 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
963 c->msize, c->proto_version);
Sripathi Kodic5a76972010-03-05 18:51:04 +0000964
965 switch (c->proto_version) {
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000966 case p9_proto_2000L:
Sripathi Kodic5a76972010-03-05 18:51:04 +0000967 req = p9_client_rpc(c, P9_TVERSION, "ds",
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000968 c->msize, "9P2000.L");
Sripathi Kodic5a76972010-03-05 18:51:04 +0000969 break;
970 case p9_proto_2000u:
971 req = p9_client_rpc(c, P9_TVERSION, "ds",
972 c->msize, "9P2000.u");
973 break;
974 case p9_proto_legacy:
975 req = p9_client_rpc(c, P9_TVERSION, "ds",
976 c->msize, "9P2000");
977 break;
978 default:
979 return -EINVAL;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000980 }
981
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500982 if (IS_ERR(req))
983 return PTR_ERR(req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500984
Sripathi Kodi342fee12010-03-05 18:50:14 +0000985 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500986 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800987 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530988 trace_9p_protocol_dump(c, req->rc);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500989 goto error;
990 }
991
Joe Perches5d385152011-11-28 10:40:46 -0800992 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
Sripathi Kodi45bc21e2010-03-08 17:33:04 +0000993 if (!strncmp(version, "9P2000.L", 8))
994 c->proto_version = p9_proto_2000L;
Sripathi Kodic5a76972010-03-05 18:51:04 +0000995 else if (!strncmp(version, "9P2000.u", 8))
Sripathi Kodi342fee12010-03-05 18:50:14 +0000996 c->proto_version = p9_proto_2000u;
997 else if (!strncmp(version, "9P2000", 6))
998 c->proto_version = p9_proto_legacy;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -0500999 else {
1000 err = -EREMOTEIO;
1001 goto error;
1002 }
1003
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001004 if (msize < c->msize)
1005 c->msize = msize;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001006
1007error:
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001008 kfree(version);
1009 p9_free_req(c, req);
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001010
1011 return err;
1012}
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001013
1014struct p9_client *p9_client_create(const char *dev_name, char *options)
1015{
1016 int err;
1017 struct p9_client *clnt;
Will Deacon50192ab2013-08-21 18:24:47 +01001018 char *client_id;
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001019
1020 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001021 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1022 if (!clnt)
1023 return ERR_PTR(-ENOMEM);
1024
Tejun Heo72029fe2008-09-24 16:22:23 -05001025 clnt->trans_mod = NULL;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001026 clnt->trans = NULL;
Will Deacon50192ab2013-08-21 18:24:47 +01001027
1028 client_id = utsname()->nodename;
1029 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1030
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001031 spin_lock_init(&clnt->lock);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001032 INIT_LIST_HEAD(&clnt->fidlist);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001033
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001034 err = p9_tag_init(clnt);
1035 if (err < 0)
1036 goto free_client;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001037
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001038 err = parse_opts(options, clnt);
1039 if (err < 0)
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001040 goto destroy_tagpool;
Eric Van Hensbergenbb8ffdf2008-03-07 10:53:53 -06001041
Abhishek Kulkarnia17d1722009-07-14 13:24:10 -05001042 if (!clnt->trans_mod)
1043 clnt->trans_mod = v9fs_get_default_trans();
1044
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001045 if (clnt->trans_mod == NULL) {
1046 err = -EPROTONOSUPPORT;
Joe Perches5d385152011-11-28 10:40:46 -08001047 p9_debug(P9_DEBUG_ERROR,
1048 "No transport defined or default transport\n");
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001049 goto destroy_tagpool;
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001050 }
1051
1052 clnt->fidpool = p9_idpool_create();
1053 if (IS_ERR(clnt->fidpool)) {
1054 err = PTR_ERR(clnt->fidpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001055 goto put_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001056 }
1057
Joe Perches5d385152011-11-28 10:40:46 -08001058 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1059 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001060
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001061 err = clnt->trans_mod->create(clnt, dev_name, options);
1062 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001063 goto destroy_fidpool;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001064
Venkateswararao Jujjuri (JV)c9ffb052011-06-29 18:06:33 -07001065 if (clnt->msize > clnt->trans_mod->maxsize)
1066 clnt->msize = clnt->trans_mod->maxsize;
Eric Van Hensbergen8a0dc952008-02-06 19:25:03 -06001067
Eric Van Hensbergen6936bf62008-10-13 20:36:14 -05001068 err = p9_client_version(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001069 if (err)
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001070 goto close_trans;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001071
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001072 return clnt;
1073
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001074close_trans:
1075 clnt->trans_mod->close(clnt);
1076destroy_fidpool:
1077 p9_idpool_destroy(clnt->fidpool);
1078put_trans:
1079 v9fs_put_trans(clnt->trans_mod);
Aneesh Kumar K.Vfe1cbab2011-05-20 18:55:52 +00001080destroy_tagpool:
1081 p9_idpool_destroy(clnt->tagpool);
Eric Van Hensbergen8781ff92010-02-08 18:18:34 -06001082free_client:
1083 kfree(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001084 return ERR_PTR(err);
1085}
1086EXPORT_SYMBOL(p9_client_create);
1087
1088void p9_client_destroy(struct p9_client *clnt)
1089{
1090 struct p9_fid *fid, *fidptr;
1091
Joe Perches5d385152011-11-28 10:40:46 -08001092 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001093
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001094 if (clnt->trans_mod)
1095 clnt->trans_mod->close(clnt);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001096
Tejun Heo72029fe2008-09-24 16:22:23 -05001097 v9fs_put_trans(clnt->trans_mod);
1098
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001099 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
Joe Perches5d385152011-11-28 10:40:46 -08001100 pr_info("Found fid %d not clunked\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001101 p9_fid_destroy(fid);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001102 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001103
Eric Van Hensbergen0af88872007-07-13 16:47:58 -05001104 if (clnt->fidpool)
1105 p9_idpool_destroy(clnt->fidpool);
1106
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05001107 p9_tag_cleanup(clnt);
1108
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001109 kfree(clnt);
1110}
1111EXPORT_SYMBOL(p9_client_destroy);
1112
1113void p9_client_disconnect(struct p9_client *clnt)
1114{
Joe Perches5d385152011-11-28 10:40:46 -08001115 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -05001116 clnt->status = Disconnected;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001117}
1118EXPORT_SYMBOL(p9_client_disconnect);
1119
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001120void p9_client_begin_disconnect(struct p9_client *clnt)
1121{
Joe Perches5d385152011-11-28 10:40:46 -08001122 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
Aneesh Kumar K.V6d96d3a2010-03-29 18:13:59 -05001123 clnt->status = BeginDisconnect;
1124}
1125EXPORT_SYMBOL(p9_client_begin_disconnect);
1126
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001127struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
Al Viro7880b432017-01-12 04:01:17 -05001128 const char *uname, kuid_t n_uname, const char *aname)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001129{
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301130 int err = 0;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001131 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001132 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001133 struct p9_qid qid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001134
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001135
Joe Perches5d385152011-11-28 10:40:46 -08001136 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1137 afid ? afid->fid : -1, uname, aname);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001138 fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07001139 if (!fid) {
1140 err = -ENOMEM;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001141 goto error;
1142 }
Al Viro21c9f5c2015-04-02 21:47:49 -04001143 fid->uid = n_uname;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001144
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001145 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001146 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1147 if (IS_ERR(req)) {
1148 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001149 goto error;
1150 }
1151
Sripathi Kodi342fee12010-03-05 18:50:14 +00001152 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001153 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301154 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001155 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001156 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001157 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001158
Joe Perches5d385152011-11-28 10:40:46 -08001159 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1160 qid.type, (unsigned long long)qid.path, qid.version);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001161
1162 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1163
1164 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001165 return fid;
1166
1167error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001168 if (fid)
1169 p9_fid_destroy(fid);
1170 return ERR_PTR(err);
1171}
1172EXPORT_SYMBOL(p9_client_attach);
1173
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301174struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
Al Viro7880b432017-01-12 04:01:17 -05001175 const unsigned char * const *wnames, int clone)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001176{
1177 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001178 struct p9_client *clnt;
1179 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001180 struct p9_qid *wqids;
1181 struct p9_req_t *req;
Harsh Prateek Borab76225e2011-03-31 15:49:39 +05301182 uint16_t nwqids, count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001183
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001184 err = 0;
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001185 wqids = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001186 clnt = oldfid->clnt;
1187 if (clone) {
1188 fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07001189 if (!fid) {
1190 err = -ENOMEM;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001191 goto error;
1192 }
1193
1194 fid->uid = oldfid->uid;
1195 } else
1196 fid = oldfid;
1197
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001198
Joe Perches5d385152011-11-28 10:40:46 -08001199 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1200 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001201
1202 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1203 nwname, wnames);
1204 if (IS_ERR(req)) {
1205 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001206 goto error;
1207 }
1208
Sripathi Kodi342fee12010-03-05 18:50:14 +00001209 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001210 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301211 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001212 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001213 goto clunk_fid;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001214 }
1215 p9_free_req(clnt, req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001216
Joe Perches5d385152011-11-28 10:40:46 -08001217 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001218
1219 if (nwqids != nwname) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001220 err = -ENOENT;
1221 goto clunk_fid;
1222 }
1223
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001224 for (count = 0; count < nwqids; count++)
Joe Perches5d385152011-11-28 10:40:46 -08001225 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001226 count, wqids[count].type,
1227 (unsigned long long)wqids[count].path,
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001228 wqids[count].version);
1229
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001230 if (nwname)
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001231 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001232 else
1233 fid->qid = oldfid->qid;
1234
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001235 kfree(wqids);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001236 return fid;
1237
1238clunk_fid:
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001239 kfree(wqids);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001240 p9_client_clunk(fid);
1241 fid = NULL;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001242
1243error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001244 if (fid && (fid != oldfid))
1245 p9_fid_destroy(fid);
1246
1247 return ERR_PTR(err);
1248}
1249EXPORT_SYMBOL(p9_client_walk);
1250
1251int p9_client_open(struct p9_fid *fid, int mode)
1252{
1253 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001254 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001255 struct p9_req_t *req;
1256 struct p9_qid qid;
1257 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001258
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001259 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001260 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301261 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1262 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001263
1264 if (fid->mode != -1)
1265 return -EINVAL;
1266
M. Mohan Kumaref565472010-06-22 19:47:50 +05301267 if (p9_is_proto_dotl(clnt))
1268 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1269 else
1270 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001271 if (IS_ERR(req)) {
1272 err = PTR_ERR(req);
1273 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001274 }
1275
Sripathi Kodi342fee12010-03-05 18:50:14 +00001276 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001277 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301278 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001279 goto free_and_error;
1280 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001281
Joe Perches5d385152011-11-28 10:40:46 -08001282 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
M. Mohan Kumaref565472010-06-22 19:47:50 +05301283 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1284 (unsigned long long)qid.path, qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001285
1286 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001287 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001288
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001289free_and_error:
1290 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001291error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001292 return err;
1293}
1294EXPORT_SYMBOL(p9_client_open);
1295
Al Viro7880b432017-01-12 04:01:17 -05001296int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001297 kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001298{
1299 int err = 0;
1300 struct p9_client *clnt;
1301 struct p9_req_t *req;
1302 int iounit;
1303
Joe Perches5d385152011-11-28 10:40:46 -08001304 p9_debug(P9_DEBUG_9P,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001305 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001306 ofid->fid, name, flags, mode,
1307 from_kgid(&init_user_ns, gid));
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001308 clnt = ofid->clnt;
1309
1310 if (ofid->mode != -1)
1311 return -EINVAL;
1312
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001313 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001314 mode, gid);
1315 if (IS_ERR(req)) {
1316 err = PTR_ERR(req);
1317 goto error;
1318 }
1319
1320 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1321 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301322 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001323 goto free_and_error;
1324 }
1325
Joe Perches5d385152011-11-28 10:40:46 -08001326 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
Venkateswararao Jujjuri (JV)56431352010-06-17 18:27:46 -07001327 qid->type,
1328 (unsigned long long)qid->path,
1329 qid->version, iounit);
1330
1331 ofid->mode = mode;
1332 ofid->iounit = iounit;
1333
1334free_and_error:
1335 p9_free_req(clnt, req);
1336error:
1337 return err;
1338}
1339EXPORT_SYMBOL(p9_client_create_dotl);
1340
Al Viro7880b432017-01-12 04:01:17 -05001341int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001342 char *extension)
1343{
1344 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001345 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001346 struct p9_req_t *req;
1347 struct p9_qid qid;
1348 int iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001349
Joe Perches5d385152011-11-28 10:40:46 -08001350 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001351 fid->fid, name, perm, mode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001352 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001353 clnt = fid->clnt;
1354
1355 if (fid->mode != -1)
1356 return -EINVAL;
1357
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001358 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1359 mode, extension);
1360 if (IS_ERR(req)) {
1361 err = PTR_ERR(req);
1362 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001363 }
1364
Sripathi Kodi342fee12010-03-05 18:50:14 +00001365 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001366 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301367 trace_9p_protocol_dump(clnt, req->rc);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001368 goto free_and_error;
1369 }
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001370
Joe Perches5d385152011-11-28 10:40:46 -08001371 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001372 qid.type,
1373 (unsigned long long)qid.path,
1374 qid.version, iounit);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001375
1376 fid->mode = mode;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001377 fid->iounit = iounit;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001378
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001379free_and_error:
1380 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001381error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001382 return err;
1383}
1384EXPORT_SYMBOL(p9_client_fcreate);
1385
Al Viro7880b432017-01-12 04:01:17 -05001386int p9_client_symlink(struct p9_fid *dfid, const char *name,
1387 const char *symtgt, kgid_t gid, struct p9_qid *qid)
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001388{
1389 int err = 0;
1390 struct p9_client *clnt;
1391 struct p9_req_t *req;
1392
Joe Perches5d385152011-11-28 10:40:46 -08001393 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001394 dfid->fid, name, symtgt);
1395 clnt = dfid->clnt;
1396
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08001397 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001398 gid);
1399 if (IS_ERR(req)) {
1400 err = PTR_ERR(req);
1401 goto error;
1402 }
1403
1404 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1405 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301406 trace_9p_protocol_dump(clnt, req->rc);
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001407 goto free_and_error;
1408 }
1409
Joe Perches5d385152011-11-28 10:40:46 -08001410 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001411 qid->type, (unsigned long long)qid->path, qid->version);
1412
1413free_and_error:
1414 p9_free_req(clnt, req);
1415error:
1416 return err;
1417}
1418EXPORT_SYMBOL(p9_client_symlink);
1419
Al Viro7880b432017-01-12 04:01:17 -05001420int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001421{
1422 struct p9_client *clnt;
1423 struct p9_req_t *req;
1424
Joe Perches5d385152011-11-28 10:40:46 -08001425 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001426 dfid->fid, oldfid->fid, newname);
1427 clnt = dfid->clnt;
1428 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1429 newname);
1430 if (IS_ERR(req))
1431 return PTR_ERR(req);
1432
Joe Perches5d385152011-11-28 10:40:46 -08001433 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
Venkateswararao Jujjuri (JV)652df9a2010-06-03 15:16:59 -07001434 p9_free_req(clnt, req);
1435 return 0;
1436}
1437EXPORT_SYMBOL(p9_client_link);
1438
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001439int p9_client_fsync(struct p9_fid *fid, int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001440{
1441 int err;
1442 struct p9_client *clnt;
1443 struct p9_req_t *req;
1444
Joe Perches5d385152011-11-28 10:40:46 -08001445 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001446 fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001447 err = 0;
1448 clnt = fid->clnt;
1449
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -07001450 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001451 if (IS_ERR(req)) {
1452 err = PTR_ERR(req);
1453 goto error;
1454 }
1455
Joe Perches5d385152011-11-28 10:40:46 -08001456 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -07001457
1458 p9_free_req(clnt, req);
1459
1460error:
1461 return err;
1462}
1463EXPORT_SYMBOL(p9_client_fsync);
1464
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001465int p9_client_clunk(struct p9_fid *fid)
1466{
1467 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001468 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001469 struct p9_req_t *req;
Jim Garlick208f3c22012-02-26 14:49:57 -06001470 int retries = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001471
jvrao8e44a082010-08-25 16:27:06 +00001472 if (!fid) {
Joe Perches5d385152011-11-28 10:40:46 -08001473 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1474 __func__, task_pid_nr(current));
jvrao8e44a082010-08-25 16:27:06 +00001475 dump_stack();
1476 return 0;
1477 }
1478
Jim Garlick208f3c22012-02-26 14:49:57 -06001479again:
1480 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1481 retries);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001482 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001483 clnt = fid->clnt;
1484
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001485 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1486 if (IS_ERR(req)) {
1487 err = PTR_ERR(req);
1488 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001489 }
1490
Joe Perches5d385152011-11-28 10:40:46 -08001491 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001492
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001493 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001494error:
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001495 /*
1496 * Fid is not valid even after a failed clunk
Jim Garlick208f3c22012-02-26 14:49:57 -06001497 * If interrupted, retry once then give up and
1498 * leak fid until umount.
Aneesh Kumar K.V50349902011-07-11 16:40:58 +00001499 */
Jim Garlick208f3c22012-02-26 14:49:57 -06001500 if (err == -ERESTARTSYS) {
1501 if (retries++ == 0)
1502 goto again;
1503 } else
1504 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001505 return err;
1506}
1507EXPORT_SYMBOL(p9_client_clunk);
1508
1509int p9_client_remove(struct p9_fid *fid)
1510{
1511 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001512 struct p9_client *clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001513 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001514
Joe Perches5d385152011-11-28 10:40:46 -08001515 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001516 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001517 clnt = fid->clnt;
1518
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001519 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1520 if (IS_ERR(req)) {
1521 err = PTR_ERR(req);
1522 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001523 }
1524
Joe Perches5d385152011-11-28 10:40:46 -08001525 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001526
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001527 p9_free_req(clnt, req);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001528error:
Jim Garlick208f3c22012-02-26 14:49:57 -06001529 if (err == -ERESTARTSYS)
1530 p9_client_clunk(fid);
1531 else
1532 p9_fid_destroy(fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001533 return err;
1534}
1535EXPORT_SYMBOL(p9_client_remove);
1536
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301537int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1538{
1539 int err = 0;
1540 struct p9_req_t *req;
1541 struct p9_client *clnt;
1542
Joe Perches5d385152011-11-28 10:40:46 -08001543 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301544 dfid->fid, name, flags);
1545
1546 clnt = dfid->clnt;
1547 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1548 if (IS_ERR(req)) {
1549 err = PTR_ERR(req);
1550 goto error;
1551 }
Joe Perches5d385152011-11-28 10:40:46 -08001552 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +05301553
1554 p9_free_req(clnt, req);
1555error:
1556 return err;
1557}
1558EXPORT_SYMBOL(p9_client_unlinkat);
1559
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001560int
Al Viroe1200fe62015-04-01 23:42:28 -04001561p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001562{
Al Viroe1200fe62015-04-01 23:42:28 -04001563 struct p9_client *clnt = fid->clnt;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301564 struct p9_req_t *req;
Al Viroe1200fe62015-04-01 23:42:28 -04001565 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001566 *err = 0;
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05301567
Joe Perches5d385152011-11-28 10:40:46 -08001568 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
Al Viroe1200fe62015-04-01 23:42:28 -04001569 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001570
Al Viroe1200fe62015-04-01 23:42:28 -04001571 while (iov_iter_count(to)) {
1572 int count = iov_iter_count(to);
1573 int rsize, non_zc = 0;
1574 char *dataptr;
1575
1576 rsize = fid->iounit;
1577 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1578 rsize = clnt->msize - P9_IOHDRSZ;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001579
Al Viroe1200fe62015-04-01 23:42:28 -04001580 if (count < rsize)
1581 rsize = count;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001582
Al Viroe1200fe62015-04-01 23:42:28 -04001583 /* Don't bother zerocopy for small IO (< 1024) */
1584 if (clnt->trans_mod->zc_request && rsize > 1024) {
1585 /*
1586 * response header len is 11
1587 * PDU Header(7) + IO Size (4)
1588 */
1589 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1590 0, 11, "dqd", fid->fid,
1591 offset, rsize);
1592 } else {
1593 non_zc = 1;
1594 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1595 rsize);
1596 }
1597 if (IS_ERR(req)) {
1598 *err = PTR_ERR(req);
1599 break;
1600 }
1601
1602 *err = p9pdu_readf(req->rc, clnt->proto_version,
1603 "D", &count, &dataptr);
1604 if (*err) {
1605 trace_9p_protocol_dump(clnt, req->rc);
1606 p9_free_req(clnt, req);
1607 break;
1608 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001609 if (rsize < count) {
1610 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1611 count = rsize;
1612 }
Al Viroe1200fe62015-04-01 23:42:28 -04001613
1614 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1615 if (!count) {
1616 p9_free_req(clnt, req);
1617 break;
1618 }
1619
1620 if (non_zc) {
1621 int n = copy_to_iter(dataptr, count, to);
1622 total += n;
1623 offset += n;
1624 if (n != count) {
1625 *err = -EFAULT;
1626 p9_free_req(clnt, req);
1627 break;
1628 }
1629 } else {
1630 iov_iter_advance(to, count);
1631 total += count;
1632 offset += count;
1633 }
1634 p9_free_req(clnt, req);
Venkateswararao Jujjuri (JV)bb2f8a52011-01-28 17:05:59 -08001635 }
Al Viroe1200fe62015-04-01 23:42:28 -04001636 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001637}
1638EXPORT_SYMBOL(p9_client_read);
1639
Eric Van Hensbergen0fc96552008-10-13 20:36:17 -05001640int
Al Viro070b3652015-04-01 20:17:51 -04001641p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001642{
Al Viro070b3652015-04-01 20:17:51 -04001643 struct p9_client *clnt = fid->clnt;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001644 struct p9_req_t *req;
Al Viro070b3652015-04-01 20:17:51 -04001645 int total = 0;
Vincent Bernat999b8b82015-08-15 15:49:13 +02001646 *err = 0;
Al Viro4f3b35c2015-04-01 19:57:53 -04001647
Al Viro070b3652015-04-01 20:17:51 -04001648 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1649 fid->fid, (unsigned long long) offset,
1650 iov_iter_count(from));
1651
1652 while (iov_iter_count(from)) {
1653 int count = iov_iter_count(from);
1654 int rsize = fid->iounit;
1655 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1656 rsize = clnt->msize - P9_IOHDRSZ;
1657
1658 if (count < rsize)
1659 rsize = count;
1660
1661 /* Don't bother zerocopy for small IO (< 1024) */
1662 if (clnt->trans_mod->zc_request && rsize > 1024) {
1663 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1664 rsize, P9_ZC_HDR_SZ, "dqd",
1665 fid->fid, offset, rsize);
1666 } else {
1667 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1668 offset, rsize, from);
1669 }
1670 if (IS_ERR(req)) {
1671 *err = PTR_ERR(req);
1672 break;
1673 }
1674
1675 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1676 if (*err) {
1677 trace_9p_protocol_dump(clnt, req->rc);
1678 p9_free_req(clnt, req);
Al Viro67e808f2015-07-04 16:11:05 -04001679 break;
Al Viro070b3652015-04-01 20:17:51 -04001680 }
Al Viro0f1db7d2015-07-04 16:17:39 -04001681 if (rsize < count) {
1682 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1683 count = rsize;
1684 }
Al Viro070b3652015-04-01 20:17:51 -04001685
1686 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1687
1688 p9_free_req(clnt, req);
1689 iov_iter_advance(from, count);
1690 total += count;
1691 offset += count;
Al Viro4f3b35c2015-04-01 19:57:53 -04001692 }
Al Viro070b3652015-04-01 20:17:51 -04001693 return total;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001694}
1695EXPORT_SYMBOL(p9_client_write);
1696
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001697struct p9_wstat *p9_client_stat(struct p9_fid *fid)
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001698{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001699 int err;
1700 struct p9_client *clnt;
1701 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1702 struct p9_req_t *req;
1703 u16 ignored;
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001704
Joe Perches5d385152011-11-28 10:40:46 -08001705 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001706
Eric Van Hensbergen5503ac52008-10-13 18:45:24 -05001707 if (!ret)
1708 return ERR_PTR(-ENOMEM);
1709
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001710 err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001711 clnt = fid->clnt;
1712
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001713 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1714 if (IS_ERR(req)) {
1715 err = PTR_ERR(req);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001716 goto error;
1717 }
1718
Sripathi Kodi342fee12010-03-05 18:50:14 +00001719 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001720 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301721 trace_9p_protocol_dump(clnt, req->rc);
Abhishek Kulkarnieedfe1c2009-07-14 13:25:41 -05001722 p9_free_req(clnt, req);
1723 goto error;
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001724 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001725
Joe Perches5d385152011-11-28 10:40:46 -08001726 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001727 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1728 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1729 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1730 "<<< uid=%d gid=%d n_muid=%d\n",
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001731 ret->size, ret->type, ret->dev, ret->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001732 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1733 ret->atime, ret->mtime, (unsigned long long)ret->length,
1734 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001735 from_kuid(&init_user_ns, ret->n_uid),
1736 from_kgid(&init_user_ns, ret->n_gid),
1737 from_kuid(&init_user_ns, ret->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001738
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001739 p9_free_req(clnt, req);
1740 return ret;
1741
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001742error:
Latchesar Ionkov742b11a2009-04-05 16:26:41 -05001743 kfree(ret);
1744 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001745}
1746EXPORT_SYMBOL(p9_client_stat);
1747
Sripathi Kodif0853122010-07-12 20:07:23 +05301748struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1749 u64 request_mask)
1750{
1751 int err;
1752 struct p9_client *clnt;
1753 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1754 GFP_KERNEL);
1755 struct p9_req_t *req;
1756
Joe Perches5d385152011-11-28 10:40:46 -08001757 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301758 fid->fid, request_mask);
1759
1760 if (!ret)
1761 return ERR_PTR(-ENOMEM);
1762
1763 err = 0;
1764 clnt = fid->clnt;
1765
1766 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1767 if (IS_ERR(req)) {
1768 err = PTR_ERR(req);
1769 goto error;
1770 }
1771
1772 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1773 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301774 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodif0853122010-07-12 20:07:23 +05301775 p9_free_req(clnt, req);
1776 goto error;
1777 }
1778
Joe Perches5d385152011-11-28 10:40:46 -08001779 p9_debug(P9_DEBUG_9P,
Sripathi Kodif0853122010-07-12 20:07:23 +05301780 "<<< RGETATTR st_result_mask=%lld\n"
1781 "<<< qid=%x.%llx.%x\n"
1782 "<<< st_mode=%8.8x st_nlink=%llu\n"
1783 "<<< st_uid=%d st_gid=%d\n"
1784 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1785 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1786 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1787 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1788 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
piaojun64ad31f2018-07-10 14:56:26 +08001789 "<<< st_gen=%lld st_data_version=%lld\n",
Sripathi Kodif0853122010-07-12 20:07:23 +05301790 ret->st_result_mask, ret->qid.type, ret->qid.path,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001791 ret->qid.version, ret->st_mode, ret->st_nlink,
1792 from_kuid(&init_user_ns, ret->st_uid),
1793 from_kgid(&init_user_ns, ret->st_gid),
1794 ret->st_rdev, ret->st_size, ret->st_blksize,
Sripathi Kodif0853122010-07-12 20:07:23 +05301795 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1796 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1797 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1798 ret->st_gen, ret->st_data_version);
1799
1800 p9_free_req(clnt, req);
1801 return ret;
1802
1803error:
1804 kfree(ret);
1805 return ERR_PTR(err);
1806}
1807EXPORT_SYMBOL(p9_client_getattr_dotl);
1808
Sripathi Kodi342fee12010-03-05 18:50:14 +00001809static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001810{
1811 int ret;
1812
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001813 /* NOTE: size shouldn't include its own length */
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001814 /* size[2] type[2] dev[4] qid[13] */
1815 /* mode[4] atime[4] mtime[4] length[8]*/
1816 /* name[s] uid[s] gid[s] muid[s] */
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001817 ret = 2+4+13+4+4+4+8+2+2+2+2;
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001818
1819 if (wst->name)
1820 ret += strlen(wst->name);
1821 if (wst->uid)
1822 ret += strlen(wst->uid);
1823 if (wst->gid)
1824 ret += strlen(wst->gid);
1825 if (wst->muid)
1826 ret += strlen(wst->muid);
1827
Sripathi Kodic56e4ac2010-03-25 12:40:35 +00001828 if ((proto_version == p9_proto_2000u) ||
1829 (proto_version == p9_proto_2000L)) {
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001830 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1831 if (wst->extension)
1832 ret += strlen(wst->extension);
1833 }
1834
1835 return ret;
1836}
1837
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001838int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1839{
1840 int err;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001841 struct p9_req_t *req;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001842 struct p9_client *clnt;
1843
Latchesar Ionkov453ed902009-04-05 16:22:16 -05001844 err = 0;
1845 clnt = fid->clnt;
Sripathi Kodi342fee12010-03-05 18:50:14 +00001846 wst->size = p9_client_statsize(wst, clnt->proto_version);
Joe Perches5d385152011-11-28 10:40:46 -08001847 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1848 p9_debug(P9_DEBUG_9P,
Eric Van Hensbergene7f4b8f2008-10-17 16:20:07 -05001849 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1850 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1851 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1852 " uid=%d gid=%d n_muid=%d\n",
1853 wst->size, wst->type, wst->dev, wst->qid.type,
Randy Dunlapb0d5fde2008-11-04 20:46:46 -08001854 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1855 wst->atime, wst->mtime, (unsigned long long)wst->length,
1856 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
Eric W. Biederman447c5092013-01-29 16:18:50 -08001857 from_kuid(&init_user_ns, wst->n_uid),
1858 from_kgid(&init_user_ns, wst->n_gid),
1859 from_kuid(&init_user_ns, wst->n_muid));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001860
Eric Van Hensbergen9d6939d2010-01-15 19:01:56 -06001861 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001862 if (IS_ERR(req)) {
1863 err = PTR_ERR(req);
1864 goto error;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001865 }
1866
Joe Perches5d385152011-11-28 10:40:46 -08001867 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001868
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001869 p9_free_req(clnt, req);
1870error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001871 return err;
1872}
1873EXPORT_SYMBOL(p9_client_wstat);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001874
Sripathi Kodi87d78452010-06-18 11:50:10 +05301875int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1876{
1877 int err;
1878 struct p9_req_t *req;
1879 struct p9_client *clnt;
1880
1881 err = 0;
1882 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08001883 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1884 p9_debug(P9_DEBUG_9P,
Sripathi Kodi87d78452010-06-18 11:50:10 +05301885 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1886 " atime_sec=%lld atime_nsec=%lld\n"
1887 " mtime_sec=%lld mtime_nsec=%lld\n",
Eric W. Biederman447c5092013-01-29 16:18:50 -08001888 p9attr->valid, p9attr->mode,
1889 from_kuid(&init_user_ns, p9attr->uid),
1890 from_kgid(&init_user_ns, p9attr->gid),
Sripathi Kodi87d78452010-06-18 11:50:10 +05301891 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1892 p9attr->mtime_sec, p9attr->mtime_nsec);
1893
1894 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1895
1896 if (IS_ERR(req)) {
1897 err = PTR_ERR(req);
1898 goto error;
1899 }
Joe Perches5d385152011-11-28 10:40:46 -08001900 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
Sripathi Kodi87d78452010-06-18 11:50:10 +05301901 p9_free_req(clnt, req);
1902error:
1903 return err;
1904}
1905EXPORT_SYMBOL(p9_client_setattr);
1906
Sripathi Kodibda8e772010-03-25 12:45:30 +00001907int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1908{
1909 int err;
1910 struct p9_req_t *req;
1911 struct p9_client *clnt;
1912
1913 err = 0;
1914 clnt = fid->clnt;
1915
Joe Perches5d385152011-11-28 10:40:46 -08001916 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001917
1918 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1919 if (IS_ERR(req)) {
1920 err = PTR_ERR(req);
1921 goto error;
1922 }
1923
1924 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1925 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1926 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1927 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05301928 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodibda8e772010-03-25 12:45:30 +00001929 p9_free_req(clnt, req);
1930 goto error;
1931 }
1932
Joe Perches5d385152011-11-28 10:40:46 -08001933 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
Sripathi Kodibda8e772010-03-25 12:45:30 +00001934 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1935 "fsid %llu namelen %ld\n",
1936 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1937 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1938 sb->fsid, (long int)sb->namelen);
1939
1940 p9_free_req(clnt, req);
1941error:
1942 return err;
1943}
1944EXPORT_SYMBOL(p9_client_statfs);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001945
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301946int p9_client_rename(struct p9_fid *fid,
1947 struct p9_fid *newdirfid, const char *name)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001948{
1949 int err;
1950 struct p9_req_t *req;
1951 struct p9_client *clnt;
1952
1953 err = 0;
1954 clnt = fid->clnt;
1955
Joe Perches5d385152011-11-28 10:40:46 -08001956 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001957 fid->fid, newdirfid->fid, name);
1958
1959 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1960 newdirfid->fid, name);
1961 if (IS_ERR(req)) {
1962 err = PTR_ERR(req);
1963 goto error;
1964 }
1965
Joe Perches5d385152011-11-28 10:40:46 -08001966 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001967
1968 p9_free_req(clnt, req);
1969error:
1970 return err;
1971}
1972EXPORT_SYMBOL(p9_client_rename);
1973
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301974int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1975 struct p9_fid *newdirfid, const char *new_name)
1976{
1977 int err;
1978 struct p9_req_t *req;
1979 struct p9_client *clnt;
1980
1981 err = 0;
1982 clnt = olddirfid->clnt;
1983
Joe Perches5d385152011-11-28 10:40:46 -08001984 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301985 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1986 newdirfid->fid, new_name);
1987
1988 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1989 old_name, newdirfid->fid, new_name);
1990 if (IS_ERR(req)) {
1991 err = PTR_ERR(req);
1992 goto error;
1993 }
1994
Joe Perches5d385152011-11-28 10:40:46 -08001995 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301996 newdirfid->fid, new_name);
1997
1998 p9_free_req(clnt, req);
1999error:
2000 return err;
2001}
2002EXPORT_SYMBOL(p9_client_renameat);
2003
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302004/*
2005 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
2006 */
2007struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
2008 const char *attr_name, u64 *attr_size)
2009{
2010 int err;
2011 struct p9_req_t *req;
2012 struct p9_client *clnt;
2013 struct p9_fid *attr_fid;
2014
2015 err = 0;
2016 clnt = file_fid->clnt;
2017 attr_fid = p9_fid_create(clnt);
Matthew Wilcoxb5303be2018-07-11 14:02:21 -07002018 if (!attr_fid) {
2019 err = -ENOMEM;
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302020 goto error;
2021 }
Joe Perches5d385152011-11-28 10:40:46 -08002022 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302023 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2024 file_fid->fid, attr_fid->fid, attr_name);
2025
2026 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2027 file_fid->fid, attr_fid->fid, attr_name);
2028 if (IS_ERR(req)) {
2029 err = PTR_ERR(req);
2030 goto error;
2031 }
2032 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2033 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302034 trace_9p_protocol_dump(clnt, req->rc);
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302035 p9_free_req(clnt, req);
2036 goto clunk_fid;
2037 }
2038 p9_free_req(clnt, req);
Joe Perches5d385152011-11-28 10:40:46 -08002039 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
Aneesh Kumar K.V0ef63f32010-05-31 13:22:45 +05302040 attr_fid->fid, *attr_size);
2041 return attr_fid;
2042clunk_fid:
2043 p9_client_clunk(attr_fid);
2044 attr_fid = NULL;
2045error:
2046 if (attr_fid && (attr_fid != file_fid))
2047 p9_fid_destroy(attr_fid);
2048
2049 return ERR_PTR(err);
2050}
2051EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2052
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302053int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2054 u64 attr_size, int flags)
2055{
2056 int err;
2057 struct p9_req_t *req;
2058 struct p9_client *clnt;
2059
Joe Perches5d385152011-11-28 10:40:46 -08002060 p9_debug(P9_DEBUG_9P,
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302061 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2062 fid->fid, name, (long long)attr_size, flags);
2063 err = 0;
2064 clnt = fid->clnt;
2065 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2066 fid->fid, name, attr_size, flags);
2067 if (IS_ERR(req)) {
2068 err = PTR_ERR(req);
2069 goto error;
2070 }
Joe Perches5d385152011-11-28 10:40:46 -08002071 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
Aneesh Kumar K.Veda25e462010-05-31 13:22:50 +05302072 p9_free_req(clnt, req);
2073error:
2074 return err;
2075}
2076EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2077
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002078int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2079{
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302080 int err, rsize, non_zc = 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002081 struct p9_client *clnt;
2082 struct p9_req_t *req;
2083 char *dataptr;
Al Viro4f3b35c2015-04-01 19:57:53 -04002084 struct kvec kv = {.iov_base = data, .iov_len = count};
2085 struct iov_iter to;
2086
2087 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002088
Joe Perches5d385152011-11-28 10:40:46 -08002089 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +00002090 fid->fid, (unsigned long long) offset, count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002091
2092 err = 0;
2093 clnt = fid->clnt;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002094
2095 rsize = fid->iounit;
2096 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2097 rsize = clnt->msize - P9_READDIRHDRSZ;
2098
2099 if (count < rsize)
2100 rsize = count;
2101
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302102 /* Don't bother zerocopy for small IO (< 1024) */
2103 if (clnt->trans_mod->zc_request && rsize > 1024) {
2104 /*
2105 * response header len is 11
2106 * PDU Header(7) + IO Size (4)
2107 */
Al Viro4f3b35c2015-04-01 19:57:53 -04002108 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2109 11, "dqd", fid->fid, offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002110 } else {
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302111 non_zc = 1;
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002112 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302113 offset, rsize);
Venkateswararao Jujjuri (JV)2c665232011-02-16 18:43:20 -08002114 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002115 if (IS_ERR(req)) {
2116 err = PTR_ERR(req);
2117 goto error;
2118 }
2119
2120 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2121 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302122 trace_9p_protocol_dump(clnt, req->rc);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002123 goto free_and_error;
2124 }
Al Viro71d6ad02017-04-14 17:22:18 -04002125 if (rsize < count) {
2126 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2127 count = rsize;
2128 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002129
Joe Perches5d385152011-11-28 10:40:46 -08002130 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002131
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +05302132 if (non_zc)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +00002133 memmove(data, dataptr, count);
2134
2135 p9_free_req(clnt, req);
2136 return count;
2137
2138free_and_error:
2139 p9_free_req(clnt, req);
2140error:
2141 return err;
2142}
2143EXPORT_SYMBOL(p9_client_readdir);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302144
Al Viro7880b432017-01-12 04:01:17 -05002145int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002146 dev_t rdev, kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302147{
2148 int err;
2149 struct p9_client *clnt;
2150 struct p9_req_t *req;
2151
2152 err = 0;
2153 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002154 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302155 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002156 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302157 MAJOR(rdev), MINOR(rdev), gid);
2158 if (IS_ERR(req))
2159 return PTR_ERR(req);
2160
2161 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2162 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302163 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302164 goto error;
2165 }
Joe Perches5d385152011-11-28 10:40:46 -08002166 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar4b435162010-06-16 14:27:01 +05302167 (unsigned long long)qid->path, qid->version);
2168
2169error:
2170 p9_free_req(clnt, req);
2171 return err;
2172
2173}
2174EXPORT_SYMBOL(p9_client_mknod_dotl);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302175
Al Viro7880b432017-01-12 04:01:17 -05002176int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002177 kgid_t gid, struct p9_qid *qid)
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302178{
2179 int err;
2180 struct p9_client *clnt;
2181 struct p9_req_t *req;
2182
2183 err = 0;
2184 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002185 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
Eric W. Biedermanf791f7c2013-01-29 16:09:41 -08002186 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2187 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302188 gid);
2189 if (IS_ERR(req))
2190 return PTR_ERR(req);
2191
2192 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2193 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302194 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302195 goto error;
2196 }
Joe Perches5d385152011-11-28 10:40:46 -08002197 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
M. Mohan Kumar01a622b2010-06-16 14:27:22 +05302198 (unsigned long long)qid->path, qid->version);
2199
2200error:
2201 p9_free_req(clnt, req);
2202 return err;
2203
2204}
2205EXPORT_SYMBOL(p9_client_mkdir_dotl);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302206
2207int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2208{
2209 int err;
2210 struct p9_client *clnt;
2211 struct p9_req_t *req;
2212
2213 err = 0;
2214 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002215 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
M. Mohan Kumara0990272010-09-27 11:34:24 +05302216 "start %lld length %lld proc_id %d client_id %s\n",
2217 fid->fid, flock->type, flock->flags, flock->start,
2218 flock->length, flock->proc_id, flock->client_id);
2219
2220 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2221 flock->flags, flock->start, flock->length,
2222 flock->proc_id, flock->client_id);
2223
2224 if (IS_ERR(req))
2225 return PTR_ERR(req);
2226
2227 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2228 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302229 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302230 goto error;
2231 }
Joe Perches5d385152011-11-28 10:40:46 -08002232 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
M. Mohan Kumara0990272010-09-27 11:34:24 +05302233error:
2234 p9_free_req(clnt, req);
2235 return err;
2236
2237}
2238EXPORT_SYMBOL(p9_client_lock_dotl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302239
2240int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2241{
2242 int err;
2243 struct p9_client *clnt;
2244 struct p9_req_t *req;
2245
2246 err = 0;
2247 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002248 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302249 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2250 glock->start, glock->length, glock->proc_id, glock->client_id);
2251
2252 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2253 glock->start, glock->length, glock->proc_id, glock->client_id);
2254
2255 if (IS_ERR(req))
2256 return PTR_ERR(req);
2257
2258 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2259 &glock->start, &glock->length, &glock->proc_id,
2260 &glock->client_id);
2261 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302262 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302263 goto error;
2264 }
Joe Perches5d385152011-11-28 10:40:46 -08002265 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +05302266 "proc_id %d client_id %s\n", glock->type, glock->start,
2267 glock->length, glock->proc_id, glock->client_id);
2268error:
2269 p9_free_req(clnt, req);
2270 return err;
2271}
2272EXPORT_SYMBOL(p9_client_getlock_dotl);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302273
2274int p9_client_readlink(struct p9_fid *fid, char **target)
2275{
2276 int err;
2277 struct p9_client *clnt;
2278 struct p9_req_t *req;
2279
2280 err = 0;
2281 clnt = fid->clnt;
Joe Perches5d385152011-11-28 10:40:46 -08002282 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302283
2284 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2285 if (IS_ERR(req))
2286 return PTR_ERR(req);
2287
2288 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2289 if (err) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +05302290 trace_9p_protocol_dump(clnt, req->rc);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302291 goto error;
2292 }
Joe Perches5d385152011-11-28 10:40:46 -08002293 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
M. Mohan Kumar329176cc2010-09-28 19:59:25 +05302294error:
2295 p9_free_req(clnt, req);
2296 return err;
2297}
2298EXPORT_SYMBOL(p9_client_readlink);