client.c 44.4 KB
Newer Older
1 2 3 4 5
/*
 * net/9p/clnt.c
 *
 * 9P Client
 *
6
 *  Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 *  Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2
 *  as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to:
 *  Free Software Foundation
 *  51 Franklin Street, Fifth Floor
 *  Boston, MA  02111-1301  USA
 *
 */

#include <linux/module.h>
#include <linux/errno.h>
#include <linux/fs.h>
29
#include <linux/poll.h>
30 31
#include <linux/idr.h>
#include <linux/mutex.h>
32
#include <linux/slab.h>
33 34 35
#include <linux/sched.h>
#include <linux/uaccess.h>
#include <net/9p/9p.h>
36
#include <linux/parser.h>
37
#include <net/9p/client.h>
38
#include <net/9p/transport.h>
39
#include "protocol.h"
40

41 42 43 44 45 46 47 48 49
/*
  * Client Option Parsing (code inspired by NFS code)
  *  - a little lazy - parse all client options
  */

enum {
	Opt_msize,
	Opt_trans,
	Opt_legacy,
50
	Opt_version,
51 52 53
	Opt_err,
};

54
static const match_table_t tokens = {
55 56 57
	{Opt_msize, "msize=%u"},
	{Opt_legacy, "noextend"},
	{Opt_trans, "trans=%s"},
58
	{Opt_version, "version=%s"},
59 60 61
	{Opt_err, NULL},
};

62 63
inline int p9_is_proto_dotl(struct p9_client *clnt)
{
E
Eric Dumazet 已提交
64
	return clnt->proto_version == p9_proto_2000L;
65 66 67 68 69
}
EXPORT_SYMBOL(p9_is_proto_dotl);

inline int p9_is_proto_dotu(struct p9_client *clnt)
{
E
Eric Dumazet 已提交
70
	return clnt->proto_version == p9_proto_2000u;
71 72 73
}
EXPORT_SYMBOL(p9_is_proto_dotu);

74
/* Interpret mount option for protocol version */
75
static int get_protocol_version(const substring_t *name)
76
{
77 78
	int version = -EINVAL;

79 80 81 82 83 84
	if (!strncmp("9p2000", name->from, name->to-name->from)) {
		version = p9_proto_legacy;
		P9_DPRINTK(P9_DEBUG_9P, "Protocol version: Legacy\n");
	} else if (!strncmp("9p2000.u", name->from, name->to-name->from)) {
		version = p9_proto_2000u;
		P9_DPRINTK(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
85 86 87
	} else if (!strncmp("9p2000.L", name->from, name->to-name->from)) {
		version = p9_proto_2000L;
		P9_DPRINTK(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
88 89 90 91 92 93 94
	} else {
		P9_DPRINTK(P9_DEBUG_ERROR, "Unknown protocol version %s. ",
							name->from);
	}
	return version;
}

95
/**
A
Abhishek Kulkarni 已提交
96 97 98
 * parse_options - parse mount options into client structure
 * @opts: options string passed from mount
 * @clnt: existing v9fs client information
99
 *
100
 * Return 0 upon success, -ERRNO upon failure
101 102
 */

103
static int parse_opts(char *opts, struct p9_client *clnt)
104
{
E
Eric Van Hensbergen 已提交
105
	char *options, *tmp_options;
106 107 108
	char *p;
	substring_t args[MAX_OPT_ARGS];
	int option;
109
	int ret = 0;
110

111
	clnt->proto_version = p9_proto_2000u;
112 113
	clnt->msize = 8192;

114 115 116
	if (!opts)
		return 0;

E
Eric Van Hensbergen 已提交
117 118
	tmp_options = kstrdup(opts, GFP_KERNEL);
	if (!tmp_options) {
119 120 121 122
		P9_DPRINTK(P9_DEBUG_ERROR,
				"failed to allocate copy of option string\n");
		return -ENOMEM;
	}
E
Eric Van Hensbergen 已提交
123
	options = tmp_options;
124 125 126 127 128 129 130

	while ((p = strsep(&options, ",")) != NULL) {
		int token;
		if (!*p)
			continue;
		token = match_token(p, tokens, args);
		if (token < Opt_trans) {
131 132
			int r = match_int(&args[0], &option);
			if (r < 0) {
133 134
				P9_DPRINTK(P9_DEBUG_ERROR,
					"integer field, but no integer?\n");
135
				ret = r;
136 137 138 139 140 141 142 143
				continue;
			}
		}
		switch (token) {
		case Opt_msize:
			clnt->msize = option;
			break;
		case Opt_trans:
144
			clnt->trans_mod = v9fs_get_trans_by_name(&args[0]);
145 146 147 148 149 150 151
			if(clnt->trans_mod == NULL) {
				P9_DPRINTK(P9_DEBUG_ERROR,
				   "Could not find request transport: %s\n",
				   (char *) &args[0]);
				ret = -EINVAL;
				goto free_and_return;
			}
152 153
			break;
		case Opt_legacy:
154
			clnt->proto_version = p9_proto_legacy;
155
			break;
156 157 158 159 160 161
		case Opt_version:
			ret = get_protocol_version(&args[0]);
			if (ret == -EINVAL)
				goto free_and_return;
			clnt->proto_version = ret;
			break;
162 163 164 165
		default:
			continue;
		}
	}
166

167
free_and_return:
E
Eric Van Hensbergen 已提交
168
	kfree(tmp_options);
169
	return ret;
170 171
}

172 173 174 175 176 177
/**
 * p9_tag_alloc - lookup/allocate a request by tag
 * @c: client session to lookup tag within
 * @tag: numeric id for transaction
 *
 * this is a simple array lookup, but will grow the
L
Lucas De Marchi 已提交
178
 * request_slots as necessary to accommodate transaction
179 180 181 182 183 184 185 186
 * ids which did not previously have a slot.
 *
 * this code relies on the client spinlock to manage locks, its
 * possible we should switch to something else, but I'd rather
 * stick with something low-overhead for the common case.
 *
 */

187
static struct p9_req_t *p9_tag_alloc(struct p9_client *c, u16 tag)
188 189 190
{
	unsigned long flags;
	int row, col;
191
	struct p9_req_t *req;
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206

	/* This looks up the original request by tag so we know which
	 * buffer to read the data into */
	tag++;

	if (tag >= c->max_tag) {
		spin_lock_irqsave(&c->lock, flags);
		/* check again since original check was outside of lock */
		while (tag >= c->max_tag) {
			row = (tag / P9_ROW_MAXTAG);
			c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
					sizeof(struct p9_req_t), GFP_ATOMIC);

			if (!c->reqs[row]) {
				printk(KERN_ERR "Couldn't grow tag array\n");
E
Eric Van Hensbergen 已提交
207
				spin_unlock_irqrestore(&c->lock, flags);
208
				return ERR_PTR(-ENOMEM);
209 210 211
			}
			for (col = 0; col < P9_ROW_MAXTAG; col++) {
				c->reqs[row][col].status = REQ_STATUS_IDLE;
212
				c->reqs[row][col].tc = NULL;
213 214 215 216 217 218 219 220
			}
			c->max_tag += P9_ROW_MAXTAG;
		}
		spin_unlock_irqrestore(&c->lock, flags);
	}
	row = tag / P9_ROW_MAXTAG;
	col = tag % P9_ROW_MAXTAG;

221 222
	req = &c->reqs[row][col];
	if (!req->tc) {
223
		req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
224 225 226 227 228
		if (!req->wq) {
			printk(KERN_ERR "Couldn't grow tag array\n");
			return ERR_PTR(-ENOMEM);
		}
		init_waitqueue_head(req->wq);
229 230 231 232
		if ((c->trans_mod->pref & P9_TRANS_PREF_PAYLOAD_MASK) ==
				P9_TRANS_PREF_PAYLOAD_SEP) {
			int alloc_msize = min(c->msize, 4096);
			req->tc = kmalloc(sizeof(struct p9_fcall)+alloc_msize,
233
					  GFP_NOFS);
234 235
			req->tc->capacity = alloc_msize;
			req->rc = kmalloc(sizeof(struct p9_fcall)+alloc_msize,
236
					  GFP_NOFS);
237 238 239
			req->rc->capacity = alloc_msize;
		} else {
			req->tc = kmalloc(sizeof(struct p9_fcall)+c->msize,
240
					  GFP_NOFS);
241 242
			req->tc->capacity = c->msize;
			req->rc = kmalloc(sizeof(struct p9_fcall)+c->msize,
243
					  GFP_NOFS);
244 245
			req->rc->capacity = c->msize;
		}
246 247 248 249
		if ((!req->tc) || (!req->rc)) {
			printk(KERN_ERR "Couldn't grow tag array\n");
			kfree(req->tc);
			kfree(req->rc);
250 251 252
			kfree(req->wq);
			req->tc = req->rc = NULL;
			req->wq = NULL;
253 254 255 256 257 258 259 260 261 262 263
			return ERR_PTR(-ENOMEM);
		}
		req->tc->sdata = (char *) req->tc + sizeof(struct p9_fcall);
		req->rc->sdata = (char *) req->rc + sizeof(struct p9_fcall);
	}

	p9pdu_reset(req->tc);
	p9pdu_reset(req->rc);

	req->tc->tag = tag-1;
	req->status = REQ_STATUS_ALLOC;
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282

	return &c->reqs[row][col];
}

/**
 * p9_tag_lookup - lookup a request by tag
 * @c: client session to lookup tag within
 * @tag: numeric id for transaction
 *
 */

struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
{
	int row, col;

	/* This looks up the original request by tag so we know which
	 * buffer to read the data into */
	tag++;

283 284
	if(tag >= c->max_tag) 
		return NULL;
285 286 287 288 289 290 291 292 293 294

	row = tag / P9_ROW_MAXTAG;
	col = tag % P9_ROW_MAXTAG;

	return &c->reqs[row][col];
}
EXPORT_SYMBOL(p9_tag_lookup);

/**
 * p9_tag_init - setup tags structure and contents
A
Abhishek Kulkarni 已提交
295
 * @c:  v9fs client struct
296 297 298 299 300 301 302 303 304 305 306 307 308 309
 *
 * This initializes the tags structure for each client instance.
 *
 */

static int p9_tag_init(struct p9_client *c)
{
	int err = 0;

	c->tagpool = p9_idpool_create();
	if (IS_ERR(c->tagpool)) {
		err = PTR_ERR(c->tagpool);
		goto error;
	}
310 311 312 313 314
	err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
	if (err < 0) {
		p9_idpool_destroy(c->tagpool);
		goto error;
	}
315 316 317 318 319 320 321
	c->max_tag = 0;
error:
	return err;
}

/**
 * p9_tag_cleanup - cleans up tags structure and reclaims resources
A
Abhishek Kulkarni 已提交
322
 * @c:  v9fs client struct
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
 *
 * This frees resources associated with the tags structure
 *
 */
static void p9_tag_cleanup(struct p9_client *c)
{
	int row, col;

	/* check to insure all requests are idle */
	for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
		for (col = 0; col < P9_ROW_MAXTAG; col++) {
			if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
				P9_DPRINTK(P9_DEBUG_MUX,
				  "Attempting to cleanup non-free tag %d,%d\n",
				  row, col);
				/* TODO: delay execution of cleanup */
				return;
			}
		}
	}

344 345
	if (c->tagpool) {
		p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
346
		p9_idpool_destroy(c->tagpool);
347
	}
348 349 350

	/* free requests associated with tags */
	for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
351
		for (col = 0; col < P9_ROW_MAXTAG; col++) {
352
			kfree(c->reqs[row][col].wq);
353 354 355
			kfree(c->reqs[row][col].tc);
			kfree(c->reqs[row][col].rc);
		}
356 357 358 359 360
		kfree(c->reqs[row]);
	}
	c->max_tag = 0;
}

361 362 363 364 365 366 367
/**
 * p9_free_req - free a request and clean-up as necessary
 * c: client state
 * r: request to release
 *
 */

368
static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
369
{
370 371 372
	int tag = r->tc->tag;
	P9_DPRINTK(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);

373
	r->status = REQ_STATUS_IDLE;
374 375
	if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
		p9_idpool_put(tag, c->tagpool);
376 377
}

378 379 380 381 382 383 384 385
/**
 * p9_client_cb - call back from transport to client
 * c: client state
 * req: request received
 *
 */
void p9_client_cb(struct p9_client *c, struct p9_req_t *req)
{
386
	P9_DPRINTK(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
387 388
	wake_up(req->wq);
	P9_DPRINTK(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
389 390 391
}
EXPORT_SYMBOL(p9_client_cb);

392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
/**
 * p9_parse_header - parse header arguments out of a packet
 * @pdu: packet to parse
 * @size: size of packet
 * @type: type of request
 * @tag: tag of packet
 * @rewind: set if we need to rewind offset afterwards
 */

int
p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
								int rewind)
{
	int8_t r_type;
	int16_t r_tag;
	int32_t r_size;
	int offset = pdu->offset;
	int err;

	pdu->offset = 0;
	if (pdu->size == 0)
		pdu->size = 7;

	err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
	if (err)
		goto rewind_and_exit;

	pdu->size = r_size;
	pdu->id = r_type;
	pdu->tag = r_tag;

E
Eric Van Hensbergen 已提交
423 424
	P9_DPRINTK(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n", pdu->size,
							pdu->id, pdu->tag);
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455

	if (type)
		*type = r_type;
	if (tag)
		*tag = r_tag;
	if (size)
		*size = r_size;


rewind_and_exit:
	if (rewind)
		pdu->offset = offset;
	return err;
}
EXPORT_SYMBOL(p9_parse_header);

/**
 * p9_check_errors - check 9p packet for error return and process it
 * @c: current client instance
 * @req: request to parse and check for error conditions
 *
 * returns error code if one is discovered, otherwise returns 0
 *
 * this will have to be more complicated if we have multiple
 * error packet types
 */

static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
{
	int8_t type;
	int err;
456
	int ecode;
457 458 459 460 461 462 463

	err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
	if (err) {
		P9_DPRINTK(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
		return err;
	}

464 465
	if (type != P9_RERROR && type != P9_RLERROR)
		return 0;
466

467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
	if (!p9_is_proto_dotl(c)) {
		char *ename;

		if (req->tc->pbuf_size) {
			/* Handle user buffers */
			size_t len = req->rc->size - req->rc->offset;
			if (req->tc->pubuf) {
				/* User Buffer */
				err = copy_from_user(
					&req->rc->sdata[req->rc->offset],
					req->tc->pubuf, len);
				if (err) {
					err = -EFAULT;
					goto out_err;
				}
			} else {
				/* Kernel Buffer */
				memmove(&req->rc->sdata[req->rc->offset],
						req->tc->pkbuf, len);
			}
		}
		err = p9pdu_readf(req->rc, c->proto_version, "s?d",
				&ename, &ecode);
		if (err)
			goto out_err;
492

493 494
		if (p9_is_proto_dotu(c))
			err = -ecode;
495

496 497
		if (!err || !IS_ERR_VALUE(err)) {
			err = p9_errstr2errno(ename, strlen(ename));
498

499 500
			P9_DPRINTK(P9_DEBUG_9P, "<<< RERROR (%d) %s\n", -ecode,
					ename);
501

502
			kfree(ename);
503
		}
504 505 506 507 508 509
	} else {
		err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
		err = -ecode;

		P9_DPRINTK(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
	}
510 511 512


	return err;
513 514 515 516 517

out_err:
	P9_DPRINTK(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);

	return err;
518 519
}

R
Rob Landley 已提交
520 521 522
static struct p9_req_t *
p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);

523 524
/**
 * p9_client_flush - flush (cancel) a request
A
Abhishek Kulkarni 已提交
525 526
 * @c: client state
 * @oldreq: request to cancel
527
 *
R
Rob Landley 已提交
528
 * This sents a flush for a particular request and links
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
 * the flush request to the original request.  The current
 * code only supports a single flush request although the protocol
 * allows for multiple flush requests to be sent for a single request.
 *
 */

static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
{
	struct p9_req_t *req;
	int16_t oldtag;
	int err;

	err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
	if (err)
		return err;

	P9_DPRINTK(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);

	req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
	if (IS_ERR(req))
		return PTR_ERR(req);


552 553 554 555 556 557 558 559
	/* if we haven't received a response for oldreq,
	   remove it from the list. */
	spin_lock(&c->lock);
	if (oldreq->status == REQ_STATUS_FLSH)
		list_del(&oldreq->req_list);
	spin_unlock(&c->lock);

	p9_free_req(c, req);
560 561 562
	return 0;
}

563 564 565
/**
 * p9_client_rpc - issue a request and wait for a response
 * @c: client session
566 567
 * @type: type of request
 * @fmt: protocol format string (see protocol.c)
568
 *
569
 * Returns request structure (which client must free using p9_free_req)
570 571
 */

572 573
static struct p9_req_t *
p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
574
{
575 576
	va_list ap;
	int tag, err;
577 578 579 580
	struct p9_req_t *req;
	unsigned long flags;
	int sigpending;

581
	P9_DPRINTK(P9_DEBUG_MUX, "client %p op %d\n", c, type);
582

583 584 585 586 587 588
	/* we allow for any status other than disconnected */
	if (c->status == Disconnected)
		return ERR_PTR(-EIO);

	/* if status is begin_disconnected we allow only clunk request */
	if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
589
		return ERR_PTR(-EIO);
590 591 592 593 594 595 596 597

	if (signal_pending(current)) {
		sigpending = 1;
		clear_thread_flag(TIF_SIGPENDING);
	} else
		sigpending = 0;

	tag = P9_NOTAG;
598
	if (type != P9_TVERSION) {
599 600
		tag = p9_idpool_get(c->tagpool);
		if (tag < 0)
601
			return ERR_PTR(-ENOMEM);
602 603 604
	}

	req = p9_tag_alloc(c, tag);
605 606
	if (IS_ERR(req))
		return req;
607

608 609 610
	/* marshall the data */
	p9pdu_prepare(req->tc, tag, type);
	va_start(ap, fmt);
611
	err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
612
	va_end(ap);
613 614
	if (err)
		goto reterr;
615
	p9pdu_finalize(req->tc);
616 617 618

	err = c->trans_mod->request(c, req);
	if (err < 0) {
619
		if (err != -ERESTARTSYS && err != -EFAULT)
620
			c->status = Disconnected;
621 622 623
		goto reterr;
	}

624
	P9_DPRINTK(P9_DEBUG_MUX, "wait %p tag: %d\n", req->wq, tag);
625 626
	err = wait_event_interruptible(*req->wq,
						req->status >= REQ_STATUS_RCVD);
627 628
	P9_DPRINTK(P9_DEBUG_MUX, "wait %p tag: %d returned %d\n",
						req->wq, tag, err);
629 630

	if (req->status == REQ_STATUS_ERROR) {
631
		P9_DPRINTK(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
632 633 634
		err = req->t_err;
	}

635
	if ((err == -ERESTARTSYS) && (c->status == Connected)) {
636
		P9_DPRINTK(P9_DEBUG_MUX, "flushing\n");
637 638 639
		sigpending = 1;
		clear_thread_flag(TIF_SIGPENDING);

640 641 642 643 644 645
		if (c->trans_mod->cancel(c, req))
			p9_client_flush(c, req);

		/* if we received the response anyway, don't signal error */
		if (req->status == REQ_STATUS_RCVD)
			err = 0;
646 647 648 649 650 651 652 653 654 655 656
	}

	if (sigpending) {
		spin_lock_irqsave(&current->sighand->siglock, flags);
		recalc_sigpending();
		spin_unlock_irqrestore(&current->sighand->siglock, flags);
	}

	if (err < 0)
		goto reterr;

657 658 659 660
	err = p9_check_errors(c, req);
	if (!err) {
		P9_DPRINTK(P9_DEBUG_MUX, "exit: client %p op %d\n", c, type);
		return req;
661 662 663
	}

reterr:
664 665
	P9_DPRINTK(P9_DEBUG_MUX, "exit: client %p op %d error: %d\n", c, type,
									err);
666
	p9_free_req(c, req);
667
	return ERR_PTR(err);
668 669
}

670 671
static struct p9_fid *p9_fid_create(struct p9_client *clnt)
{
R
Roel Kluin 已提交
672
	int ret;
673
	struct p9_fid *fid;
674
	unsigned long flags;
675

676
	P9_DPRINTK(P9_DEBUG_FID, "clnt %p\n", clnt);
677 678 679 680
	fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
	if (!fid)
		return ERR_PTR(-ENOMEM);

R
Roel Kluin 已提交
681
	ret = p9_idpool_get(clnt->fidpool);
682
	if (ret < 0) {
R
Roel Kluin 已提交
683
		ret = -ENOSPC;
684 685
		goto error;
	}
R
Roel Kluin 已提交
686
	fid->fid = ret;
687 688 689

	memset(&fid->qid, 0, sizeof(struct p9_qid));
	fid->mode = -1;
690
	fid->uid = current_fsuid();
691
	fid->clnt = clnt;
E
Eric Van Hensbergen 已提交
692
	fid->rdir = NULL;
693
	spin_lock_irqsave(&clnt->lock, flags);
694
	list_add(&fid->flist, &clnt->fidlist);
695
	spin_unlock_irqrestore(&clnt->lock, flags);
696 697 698 699 700

	return fid;

error:
	kfree(fid);
R
Roel Kluin 已提交
701
	return ERR_PTR(ret);
702 703 704 705 706
}

static void p9_fid_destroy(struct p9_fid *fid)
{
	struct p9_client *clnt;
707
	unsigned long flags;
708

709
	P9_DPRINTK(P9_DEBUG_FID, "fid %d\n", fid->fid);
710 711
	clnt = fid->clnt;
	p9_idpool_put(fid->fid, clnt->fidpool);
712
	spin_lock_irqsave(&clnt->lock, flags);
713
	list_del(&fid->flist);
714
	spin_unlock_irqrestore(&clnt->lock, flags);
E
Eric Van Hensbergen 已提交
715
	kfree(fid->rdir);
716 717
	kfree(fid);
}
718

S
stephen hemminger 已提交
719
static int p9_client_version(struct p9_client *c)
720
{
721
	int err = 0;
722 723 724
	struct p9_req_t *req;
	char *version;
	int msize;
725

726 727
	P9_DPRINTK(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
						c->msize, c->proto_version);
728 729

	switch (c->proto_version) {
730
	case p9_proto_2000L:
731
		req = p9_client_rpc(c, P9_TVERSION, "ds",
732
					c->msize, "9P2000.L");
733 734 735 736 737 738 739 740 741 742 743 744 745 746
		break;
	case p9_proto_2000u:
		req = p9_client_rpc(c, P9_TVERSION, "ds",
					c->msize, "9P2000.u");
		break;
	case p9_proto_legacy:
		req = p9_client_rpc(c, P9_TVERSION, "ds",
					c->msize, "9P2000");
		break;
	default:
		return -EINVAL;
		break;
	}

747 748
	if (IS_ERR(req))
		return PTR_ERR(req);
749

750
	err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
751 752
	if (err) {
		P9_DPRINTK(P9_DEBUG_9P, "version error %d\n", err);
753
		P9_DUMP_PKT(1, req->rc);
754
		goto error;
755
	}
756

757
	P9_DPRINTK(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
758 759
	if (!strncmp(version, "9P2000.L", 8))
		c->proto_version = p9_proto_2000L;
760
	else if (!strncmp(version, "9P2000.u", 8))
761 762 763
		c->proto_version = p9_proto_2000u;
	else if (!strncmp(version, "9P2000", 6))
		c->proto_version = p9_proto_legacy;
764 765 766 767 768
	else {
		err = -EREMOTEIO;
		goto error;
	}

769 770
	if (msize < c->msize)
		c->msize = msize;
771 772

error:
773 774
	kfree(version);
	p9_free_req(c, req);
775 776 777 778 779 780 781 782 783 784

	return err;
}

struct p9_client *p9_client_create(const char *dev_name, char *options)
{
	int err;
	struct p9_client *clnt;

	err = 0;
785 786 787 788
	clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
	if (!clnt)
		return ERR_PTR(-ENOMEM);

789
	clnt->trans_mod = NULL;
790
	clnt->trans = NULL;
791 792 793
	spin_lock_init(&clnt->lock);
	INIT_LIST_HEAD(&clnt->fidlist);

794 795 796
	err = p9_tag_init(clnt);
	if (err < 0)
		goto free_client;
797

798 799
	err = parse_opts(options, clnt);
	if (err < 0)
800
		goto destroy_tagpool;
801

802 803 804
	if (!clnt->trans_mod)
		clnt->trans_mod = v9fs_get_default_trans();

805 806 807 808
	if (clnt->trans_mod == NULL) {
		err = -EPROTONOSUPPORT;
		P9_DPRINTK(P9_DEBUG_ERROR,
				"No transport defined or default transport\n");
809
		goto destroy_tagpool;
810 811 812 813 814 815
	}

	clnt->fidpool = p9_idpool_create();
	if (IS_ERR(clnt->fidpool)) {
		err = PTR_ERR(clnt->fidpool);
		goto put_trans;
816 817
	}

818 819
	P9_DPRINTK(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
		clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
820

821 822
	err = clnt->trans_mod->create(clnt, dev_name, options);
	if (err)
823
		goto destroy_fidpool;
824

825 826 827
	if ((clnt->msize+P9_IOHDRSZ) > clnt->trans_mod->maxsize)
		clnt->msize = clnt->trans_mod->maxsize-P9_IOHDRSZ;

828
	err = p9_client_version(clnt);
829
	if (err)
830
		goto close_trans;
831 832 833

	return clnt;

834 835 836 837 838 839
close_trans:
	clnt->trans_mod->close(clnt);
destroy_fidpool:
	p9_idpool_destroy(clnt->fidpool);
put_trans:
	v9fs_put_trans(clnt->trans_mod);
840 841
destroy_tagpool:
	p9_idpool_destroy(clnt->tagpool);
842 843
free_client:
	kfree(clnt);
844 845 846 847 848 849 850 851
	return ERR_PTR(err);
}
EXPORT_SYMBOL(p9_client_create);

void p9_client_destroy(struct p9_client *clnt)
{
	struct p9_fid *fid, *fidptr;

852
	P9_DPRINTK(P9_DEBUG_MUX, "clnt %p\n", clnt);
853

854 855
	if (clnt->trans_mod)
		clnt->trans_mod->close(clnt);
856

857 858
	v9fs_put_trans(clnt->trans_mod);

859 860
	list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
		printk(KERN_INFO "Found fid %d not clunked\n", fid->fid);
861
		p9_fid_destroy(fid);
862
	}
863

864 865 866
	if (clnt->fidpool)
		p9_idpool_destroy(clnt->fidpool);

867 868
	p9_tag_cleanup(clnt);

869 870 871 872 873 874 875
	kfree(clnt);
}
EXPORT_SYMBOL(p9_client_destroy);

void p9_client_disconnect(struct p9_client *clnt)
{
	P9_DPRINTK(P9_DEBUG_9P, "clnt %p\n", clnt);
876
	clnt->status = Disconnected;
877 878 879
}
EXPORT_SYMBOL(p9_client_disconnect);

880 881 882 883 884 885 886
void p9_client_begin_disconnect(struct p9_client *clnt)
{
	P9_DPRINTK(P9_DEBUG_9P, "clnt %p\n", clnt);
	clnt->status = BeginDisconnect;
}
EXPORT_SYMBOL(p9_client_begin_disconnect);

887
struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
L
Latchesar Ionkov 已提交
888
	char *uname, u32 n_uname, char *aname)
889 890
{
	int err;
891
	struct p9_req_t *req;
892
	struct p9_fid *fid;
893
	struct p9_qid qid;
894

895 896
	P9_DPRINTK(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
					afid ? afid->fid : -1, uname, aname);
897 898 899 900 901 902 903 904 905
	err = 0;

	fid = p9_fid_create(clnt);
	if (IS_ERR(fid)) {
		err = PTR_ERR(fid);
		fid = NULL;
		goto error;
	}

906 907 908 909
	req = p9_client_rpc(clnt, P9_TATTACH, "ddss?d", fid->fid,
			afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
910 911 912
		goto error;
	}

913
	err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
914
	if (err) {
915
		P9_DUMP_PKT(1, req->rc);
916
		p9_free_req(clnt, req);
917
		goto error;
918
	}
919

920
	P9_DPRINTK(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
R
Randy Dunlap 已提交
921 922 923
					qid.type,
					(unsigned long long)qid.path,
					qid.version);
924 925 926 927

	memmove(&fid->qid, &qid, sizeof(struct p9_qid));

	p9_free_req(clnt, req);
928 929 930 931 932 933 934 935 936
	return fid;

error:
	if (fid)
		p9_fid_destroy(fid);
	return ERR_PTR(err);
}
EXPORT_SYMBOL(p9_client_attach);

937 938
struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
		char **wnames, int clone)
939 940 941 942
{
	int err;
	struct p9_client *clnt;
	struct p9_fid *fid;
943 944
	struct p9_qid *wqids;
	struct p9_req_t *req;
945
	uint16_t nwqids, count;
946 947

	err = 0;
948
	wqids = NULL;
949 950 951 952 953 954 955 956 957 958 959 960 961
	clnt = oldfid->clnt;
	if (clone) {
		fid = p9_fid_create(clnt);
		if (IS_ERR(fid)) {
			err = PTR_ERR(fid);
			fid = NULL;
			goto error;
		}

		fid->uid = oldfid->uid;
	} else
		fid = oldfid;

962

963
	P9_DPRINTK(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
964 965 966 967 968 969
		oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);

	req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
								nwname, wnames);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
970 971 972
		goto error;
	}

973
	err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
E
Eric Van Hensbergen 已提交
974
	if (err) {
975
		P9_DUMP_PKT(1, req->rc);
E
Eric Van Hensbergen 已提交
976
		p9_free_req(clnt, req);
977
		goto clunk_fid;
E
Eric Van Hensbergen 已提交
978 979
	}
	p9_free_req(clnt, req);
980

981 982 983
	P9_DPRINTK(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);

	if (nwqids != nwname) {
984 985 986 987
		err = -ENOENT;
		goto clunk_fid;
	}

988 989
	for (count = 0; count < nwqids; count++)
		P9_DPRINTK(P9_DEBUG_9P, "<<<     [%d] %x.%llx.%x\n",
R
Randy Dunlap 已提交
990 991
			count, wqids[count].type,
			(unsigned long long)wqids[count].path,
992 993
			wqids[count].version);

994
	if (nwname)
995
		memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
996 997 998
	else
		fid->qid = oldfid->qid;

999
	kfree(wqids);
1000 1001 1002
	return fid;

clunk_fid:
1003
	kfree(wqids);
1004 1005
	p9_client_clunk(fid);
	fid = NULL;
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018

error:
	if (fid && (fid != oldfid))
		p9_fid_destroy(fid);

	return ERR_PTR(err);
}
EXPORT_SYMBOL(p9_client_walk);

int p9_client_open(struct p9_fid *fid, int mode)
{
	int err;
	struct p9_client *clnt;
1019 1020 1021
	struct p9_req_t *req;
	struct p9_qid qid;
	int iounit;
1022 1023

	clnt = fid->clnt;
M
M. Mohan Kumar 已提交
1024 1025 1026
	P9_DPRINTK(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
		p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
	err = 0;
1027 1028 1029 1030

	if (fid->mode != -1)
		return -EINVAL;

M
M. Mohan Kumar 已提交
1031 1032 1033 1034
	if (p9_is_proto_dotl(clnt))
		req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
	else
		req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
1035 1036 1037
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
1038 1039
	}

1040
	err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
E
Eric Van Hensbergen 已提交
1041
	if (err) {
1042
		P9_DUMP_PKT(1, req->rc);
E
Eric Van Hensbergen 已提交
1043 1044
		goto free_and_error;
	}
1045

M
M. Mohan Kumar 已提交
1046 1047 1048
	P9_DPRINTK(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
		p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN",  qid.type,
		(unsigned long long)qid.path, qid.version, iounit);
1049 1050

	fid->mode = mode;
1051
	fid->iounit = iounit;
1052

E
Eric Van Hensbergen 已提交
1053 1054
free_and_error:
	p9_free_req(clnt, req);
1055
error:
1056 1057 1058 1059
	return err;
}
EXPORT_SYMBOL(p9_client_open);

1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
		gid_t gid, struct p9_qid *qid)
{
	int err = 0;
	struct p9_client *clnt;
	struct p9_req_t *req;
	int iounit;

	P9_DPRINTK(P9_DEBUG_9P,
			">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
			ofid->fid, name, flags, mode, gid);
	clnt = ofid->clnt;

	if (ofid->mode != -1)
		return -EINVAL;

	req = p9_client_rpc(clnt, P9_TLCREATE, "dsddd", ofid->fid, name, flags,
			mode, gid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}

	err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
	if (err) {
1085
		P9_DUMP_PKT(1, req->rc);
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
		goto free_and_error;
	}

	P9_DPRINTK(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
			qid->type,
			(unsigned long long)qid->path,
			qid->version, iounit);

	ofid->mode = mode;
	ofid->iounit = iounit;

free_and_error:
	p9_free_req(clnt, req);
error:
	return err;
}
EXPORT_SYMBOL(p9_client_create_dotl);

1104 1105 1106 1107 1108
int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
		     char *extension)
{
	int err;
	struct p9_client *clnt;
1109 1110 1111
	struct p9_req_t *req;
	struct p9_qid qid;
	int iounit;
1112

1113 1114
	P9_DPRINTK(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
						fid->fid, name, perm, mode);
1115 1116 1117 1118 1119 1120
	err = 0;
	clnt = fid->clnt;

	if (fid->mode != -1)
		return -EINVAL;

1121 1122 1123 1124 1125
	req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
				mode, extension);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
1126 1127
	}

1128
	err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
E
Eric Van Hensbergen 已提交
1129
	if (err) {
1130
		P9_DUMP_PKT(1, req->rc);
E
Eric Van Hensbergen 已提交
1131 1132
		goto free_and_error;
	}
1133 1134

	P9_DPRINTK(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
R
Randy Dunlap 已提交
1135 1136 1137
				qid.type,
				(unsigned long long)qid.path,
				qid.version, iounit);
1138 1139

	fid->mode = mode;
1140
	fid->iounit = iounit;
1141

E
Eric Van Hensbergen 已提交
1142 1143
free_and_error:
	p9_free_req(clnt, req);
1144
error:
1145 1146 1147 1148
	return err;
}
EXPORT_SYMBOL(p9_client_fcreate);

1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
int p9_client_symlink(struct p9_fid *dfid, char *name, char *symtgt, gid_t gid,
		struct p9_qid *qid)
{
	int err = 0;
	struct p9_client *clnt;
	struct p9_req_t *req;

	P9_DPRINTK(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s  symtgt %s\n",
			dfid->fid, name, symtgt);
	clnt = dfid->clnt;

	req = p9_client_rpc(clnt, P9_TSYMLINK, "dssd", dfid->fid, name, symtgt,
			gid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}

	err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
	if (err) {
1169
		P9_DUMP_PKT(1, req->rc);
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
		goto free_and_error;
	}

	P9_DPRINTK(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
			qid->type, (unsigned long long)qid->path, qid->version);

free_and_error:
	p9_free_req(clnt, req);
error:
	return err;
}
EXPORT_SYMBOL(p9_client_symlink);

1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, char *newname)
{
	struct p9_client *clnt;
	struct p9_req_t *req;

	P9_DPRINTK(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
			dfid->fid, oldfid->fid, newname);
	clnt = dfid->clnt;
	req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
			newname);
	if (IS_ERR(req))
		return PTR_ERR(req);

	P9_DPRINTK(P9_DEBUG_9P, "<<< RLINK\n");
	p9_free_req(clnt, req);
	return 0;
}
EXPORT_SYMBOL(p9_client_link);

1202
int p9_client_fsync(struct p9_fid *fid, int datasync)
1203 1204 1205 1206 1207
{
	int err;
	struct p9_client *clnt;
	struct p9_req_t *req;

1208 1209
	P9_DPRINTK(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
			fid->fid, datasync);
1210 1211 1212
	err = 0;
	clnt = fid->clnt;

1213
	req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}

	P9_DPRINTK(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);

	p9_free_req(clnt, req);

error:
	return err;
}
EXPORT_SYMBOL(p9_client_fsync);

1228 1229 1230 1231
int p9_client_clunk(struct p9_fid *fid)
{
	int err;
	struct p9_client *clnt;
1232
	struct p9_req_t *req;
1233

1234 1235 1236 1237 1238 1239
	if (!fid) {
		P9_EPRINTK(KERN_WARNING, "Trying to clunk with NULL fid\n");
		dump_stack();
		return 0;
	}

1240
	P9_DPRINTK(P9_DEBUG_9P, ">>> TCLUNK fid %d\n", fid->fid);
1241 1242 1243
	err = 0;
	clnt = fid->clnt;

1244 1245 1246 1247
	req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
1248 1249
	}

1250
	P9_DPRINTK(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
1251

1252
	p9_free_req(clnt, req);
1253 1254
	p9_fid_destroy(fid);

1255
error:
1256 1257 1258 1259 1260 1261 1262 1263
	return err;
}
EXPORT_SYMBOL(p9_client_clunk);

int p9_client_remove(struct p9_fid *fid)
{
	int err;
	struct p9_client *clnt;
1264
	struct p9_req_t *req;
1265

1266
	P9_DPRINTK(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1267 1268 1269
	err = 0;
	clnt = fid->clnt;

1270 1271 1272 1273
	req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
1274 1275
	}

1276
	P9_DPRINTK(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1277

1278 1279
	p9_free_req(clnt, req);
error:
1280
	p9_fid_destroy(fid);
1281 1282 1283 1284
	return err;
}
EXPORT_SYMBOL(p9_client_remove);

1285 1286 1287
int
p9_client_read(struct p9_fid *fid, char *data, char __user *udata, u64 offset,
								u32 count)
1288
{
1289
	int err, rsize;
1290
	struct p9_client *clnt;
1291 1292
	struct p9_req_t *req;
	char *dataptr;
1293

1294
	P9_DPRINTK(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n", fid->fid,
1295 1296 1297 1298 1299 1300 1301 1302
					(long long unsigned) offset, count);
	err = 0;
	clnt = fid->clnt;

	rsize = fid->iounit;
	if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
		rsize = clnt->msize - P9_IOHDRSZ;

1303 1304
	if (count < rsize)
		rsize = count;
1305

R
Rob Landley 已提交
1306
	/* Don't bother zerocopy for small IO (< 1024) */
1307 1308 1309 1310 1311 1312 1313 1314
	if (((clnt->trans_mod->pref & P9_TRANS_PREF_PAYLOAD_MASK) ==
			P9_TRANS_PREF_PAYLOAD_SEP) && (rsize > 1024)) {
		req = p9_client_rpc(clnt, P9_TREAD, "dqE", fid->fid, offset,
				rsize, data, udata);
	} else {
		req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
				rsize);
	}
1315 1316 1317 1318
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}
1319

1320
	err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
E
Eric Van Hensbergen 已提交
1321
	if (err) {
1322
		P9_DUMP_PKT(1, req->rc);
1323
		goto free_and_error;
E
Eric Van Hensbergen 已提交
1324
	}
1325

1326
	P9_DPRINTK(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1327
	P9_DUMP_PKT(1, req->rc);
1328

1329 1330 1331 1332 1333 1334 1335 1336 1337
	if (!req->tc->pbuf_size) {
		if (data) {
			memmove(data, dataptr, count);
		} else {
			err = copy_to_user(udata, dataptr, count);
			if (err) {
				err = -EFAULT;
				goto free_and_error;
			}
1338
		}
1339 1340 1341
	}
	p9_free_req(clnt, req);
	return count;
1342

1343 1344
free_and_error:
	p9_free_req(clnt, req);
1345 1346 1347
error:
	return err;
}
1348
EXPORT_SYMBOL(p9_client_read);
1349 1350

int
1351 1352
p9_client_write(struct p9_fid *fid, char *data, const char __user *udata,
							u64 offset, u32 count)
1353
{
1354
	int err, rsize;
1355
	struct p9_client *clnt;
1356
	struct p9_req_t *req;
1357

1358 1359
	P9_DPRINTK(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %d\n",
				fid->fid, (long long unsigned) offset, count);
1360 1361 1362 1363 1364 1365 1366
	err = 0;
	clnt = fid->clnt;

	rsize = fid->iounit;
	if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
		rsize = clnt->msize - P9_IOHDRSZ;

1367 1368
	if (count < rsize)
		rsize = count;
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383

	/* Don't bother zerocopy form small IO (< 1024) */
	if (((clnt->trans_mod->pref & P9_TRANS_PREF_PAYLOAD_MASK) ==
				P9_TRANS_PREF_PAYLOAD_SEP) && (rsize > 1024)) {
		req = p9_client_rpc(clnt, P9_TWRITE, "dqE", fid->fid, offset,
				rsize, data, udata);
	} else {

		if (data)
			req = p9_client_rpc(clnt, P9_TWRITE, "dqD", fid->fid,
					offset, rsize, data);
		else
			req = p9_client_rpc(clnt, P9_TWRITE, "dqU", fid->fid,
					offset, rsize, udata);
	}
1384 1385 1386 1387
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}
1388

1389
	err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
E
Eric Van Hensbergen 已提交
1390
	if (err) {
1391
		P9_DUMP_PKT(1, req->rc);
1392
		goto free_and_error;
E
Eric Van Hensbergen 已提交
1393 1394
	}

1395
	P9_DPRINTK(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1396

1397 1398
	p9_free_req(clnt, req);
	return count;
1399

1400 1401
free_and_error:
	p9_free_req(clnt, req);
1402 1403 1404
error:
	return err;
}
1405
EXPORT_SYMBOL(p9_client_write);
1406

1407
struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1408
{
1409 1410 1411 1412 1413
	int err;
	struct p9_client *clnt;
	struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
	struct p9_req_t *req;
	u16 ignored;
1414

1415
	P9_DPRINTK(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1416 1417 1418 1419

	if (!ret)
		return ERR_PTR(-ENOMEM);

1420 1421 1422
	err = 0;
	clnt = fid->clnt;

1423 1424 1425
	req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
1426 1427 1428
		goto error;
	}

1429
	err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
E
Eric Van Hensbergen 已提交
1430
	if (err) {
1431
		P9_DUMP_PKT(1, req->rc);
1432 1433
		p9_free_req(clnt, req);
		goto error;
E
Eric Van Hensbergen 已提交
1434
	}
1435

1436
	P9_DPRINTK(P9_DEBUG_9P,
E
Eric Van Hensbergen 已提交
1437 1438 1439 1440
		"<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
		"<<<    mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
		"<<<    name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
		"<<<    uid=%d gid=%d n_muid=%d\n",
1441
		ret->size, ret->type, ret->dev, ret->qid.type,
R
Randy Dunlap 已提交
1442 1443 1444
		(unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
		ret->atime, ret->mtime, (unsigned long long)ret->length,
		ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
E
Eric Van Hensbergen 已提交
1445
		ret->n_uid, ret->n_gid, ret->n_muid);
1446

1447 1448 1449
	p9_free_req(clnt, req);
	return ret;

1450
error:
1451 1452
	kfree(ret);
	return ERR_PTR(err);
1453 1454 1455
}
EXPORT_SYMBOL(p9_client_stat);

1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
							u64 request_mask)
{
	int err;
	struct p9_client *clnt;
	struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
								GFP_KERNEL);
	struct p9_req_t *req;

	P9_DPRINTK(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
							fid->fid, request_mask);

	if (!ret)
		return ERR_PTR(-ENOMEM);

	err = 0;
	clnt = fid->clnt;

	req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}

	err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
	if (err) {
1482
		P9_DUMP_PKT(1, req->rc);
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514
		p9_free_req(clnt, req);
		goto error;
	}

	P9_DPRINTK(P9_DEBUG_9P,
		"<<< RGETATTR st_result_mask=%lld\n"
		"<<< qid=%x.%llx.%x\n"
		"<<< st_mode=%8.8x st_nlink=%llu\n"
		"<<< st_uid=%d st_gid=%d\n"
		"<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
		"<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
		"<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
		"<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
		"<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
		"<<< st_gen=%lld st_data_version=%lld",
		ret->st_result_mask, ret->qid.type, ret->qid.path,
		ret->qid.version, ret->st_mode, ret->st_nlink, ret->st_uid,
		ret->st_gid, ret->st_rdev, ret->st_size, ret->st_blksize,
		ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
		ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
		ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
		ret->st_gen, ret->st_data_version);

	p9_free_req(clnt, req);
	return ret;

error:
	kfree(ret);
	return ERR_PTR(err);
}
EXPORT_SYMBOL(p9_client_getattr_dotl);

1515
static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1516 1517 1518
{
	int ret;

1519
	/* NOTE: size shouldn't include its own length */
1520 1521 1522
	/* size[2] type[2] dev[4] qid[13] */
	/* mode[4] atime[4] mtime[4] length[8]*/
	/* name[s] uid[s] gid[s] muid[s] */
1523
	ret = 2+4+13+4+4+4+8+2+2+2+2;
1524 1525 1526 1527 1528 1529 1530 1531 1532 1533

	if (wst->name)
		ret += strlen(wst->name);
	if (wst->uid)
		ret += strlen(wst->uid);
	if (wst->gid)
		ret += strlen(wst->gid);
	if (wst->muid)
		ret += strlen(wst->muid);

1534 1535
	if ((proto_version == p9_proto_2000u) ||
		(proto_version == p9_proto_2000L)) {
1536 1537 1538 1539 1540 1541 1542 1543
		ret += 2+4+4+4;	/* extension[s] n_uid[4] n_gid[4] n_muid[4] */
		if (wst->extension)
			ret += strlen(wst->extension);
	}

	return ret;
}

1544 1545 1546
int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
{
	int err;
1547
	struct p9_req_t *req;
1548 1549
	struct p9_client *clnt;

1550 1551
	err = 0;
	clnt = fid->clnt;
1552
	wst->size = p9_client_statsize(wst, clnt->proto_version);
1553
	P9_DPRINTK(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
E
Eric Van Hensbergen 已提交
1554 1555 1556 1557 1558 1559
	P9_DPRINTK(P9_DEBUG_9P,
		"     sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
		"     mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
		"     name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
		"     uid=%d gid=%d n_muid=%d\n",
		wst->size, wst->type, wst->dev, wst->qid.type,
R
Randy Dunlap 已提交
1560 1561 1562
		(unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
		wst->atime, wst->mtime, (unsigned long long)wst->length,
		wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
E
Eric Van Hensbergen 已提交
1563
		wst->n_uid, wst->n_gid, wst->n_muid);
1564

1565
	req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
1566 1567 1568
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
1569 1570
	}

1571
	P9_DPRINTK(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1572

1573 1574
	p9_free_req(clnt, req);
error:
1575 1576 1577
	return err;
}
EXPORT_SYMBOL(p9_client_wstat);
1578

1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
{
	int err;
	struct p9_req_t *req;
	struct p9_client *clnt;

	err = 0;
	clnt = fid->clnt;
	P9_DPRINTK(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
	P9_DPRINTK(P9_DEBUG_9P,
		"    valid=%x mode=%x uid=%d gid=%d size=%lld\n"
		"    atime_sec=%lld atime_nsec=%lld\n"
		"    mtime_sec=%lld mtime_nsec=%lld\n",
		p9attr->valid, p9attr->mode, p9attr->uid, p9attr->gid,
		p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
		p9attr->mtime_sec, p9attr->mtime_nsec);

	req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);

	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}
	P9_DPRINTK(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
	p9_free_req(clnt, req);
error:
	return err;
}
EXPORT_SYMBOL(p9_client_setattr);

1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629
int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
{
	int err;
	struct p9_req_t *req;
	struct p9_client *clnt;

	err = 0;
	clnt = fid->clnt;

	P9_DPRINTK(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);

	req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}

	err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
		&sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
		&sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
	if (err) {
1630
		P9_DUMP_PKT(1, req->rc);
1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
		p9_free_req(clnt, req);
		goto error;
	}

	P9_DPRINTK(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
		"blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
		"fsid %llu namelen %ld\n",
		fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
		sb->blocks, sb->bfree, sb->bavail, sb->files,  sb->ffree,
		sb->fsid, (long int)sb->namelen);

	p9_free_req(clnt, req);
error:
	return err;
}
EXPORT_SYMBOL(p9_client_statfs);
1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674

int p9_client_rename(struct p9_fid *fid, struct p9_fid *newdirfid, char *name)
{
	int err;
	struct p9_req_t *req;
	struct p9_client *clnt;

	err = 0;
	clnt = fid->clnt;

	P9_DPRINTK(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
			fid->fid, newdirfid->fid, name);

	req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
			newdirfid->fid, name);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}

	P9_DPRINTK(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);

	p9_free_req(clnt, req);
error:
	return err;
}
EXPORT_SYMBOL(p9_client_rename);

1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
/*
 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
 */
struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
				const char *attr_name, u64 *attr_size)
{
	int err;
	struct p9_req_t *req;
	struct p9_client *clnt;
	struct p9_fid *attr_fid;

	err = 0;
	clnt = file_fid->clnt;
	attr_fid = p9_fid_create(clnt);
	if (IS_ERR(attr_fid)) {
		err = PTR_ERR(attr_fid);
		attr_fid = NULL;
		goto error;
	}
	P9_DPRINTK(P9_DEBUG_9P,
		">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
		file_fid->fid, attr_fid->fid, attr_name);

	req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
			file_fid->fid, attr_fid->fid, attr_name);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}
	err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
	if (err) {
1706
		P9_DUMP_PKT(1, req->rc);
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724
		p9_free_req(clnt, req);
		goto clunk_fid;
	}
	p9_free_req(clnt, req);
	P9_DPRINTK(P9_DEBUG_9P, "<<<  RXATTRWALK fid %d size %llu\n",
		attr_fid->fid, *attr_size);
	return attr_fid;
clunk_fid:
	p9_client_clunk(attr_fid);
	attr_fid = NULL;
error:
	if (attr_fid && (attr_fid != file_fid))
		p9_fid_destroy(attr_fid);

	return ERR_PTR(err);
}
EXPORT_SYMBOL_GPL(p9_client_xattrwalk);

1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749
int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
			u64 attr_size, int flags)
{
	int err;
	struct p9_req_t *req;
	struct p9_client *clnt;

	P9_DPRINTK(P9_DEBUG_9P,
		">>> TXATTRCREATE fid %d name  %s size %lld flag %d\n",
		fid->fid, name, (long long)attr_size, flags);
	err = 0;
	clnt = fid->clnt;
	req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
			fid->fid, name, attr_size, flags);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}
	P9_DPRINTK(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
	p9_free_req(clnt, req);
error:
	return err;
}
EXPORT_SYMBOL_GPL(p9_client_xattrcreate);

1750 1751
int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
{
1752
	int err, rsize;
1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769
	struct p9_client *clnt;
	struct p9_req_t *req;
	char *dataptr;

	P9_DPRINTK(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
				fid->fid, (long long unsigned) offset, count);

	err = 0;
	clnt = fid->clnt;

	rsize = fid->iounit;
	if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
		rsize = clnt->msize - P9_READDIRHDRSZ;

	if (count < rsize)
		rsize = count;

1770 1771 1772 1773 1774 1775 1776 1777
	if ((clnt->trans_mod->pref & P9_TRANS_PREF_PAYLOAD_MASK) ==
			P9_TRANS_PREF_PAYLOAD_SEP) {
		req = p9_client_rpc(clnt, P9_TREADDIR, "dqF", fid->fid,
				offset, rsize, data);
	} else {
		req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
				offset, rsize);
	}
1778 1779 1780 1781 1782 1783 1784
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}

	err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
	if (err) {
1785
		P9_DUMP_PKT(1, req->rc);
1786 1787 1788 1789 1790
		goto free_and_error;
	}

	P9_DPRINTK(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);

1791
	if (!req->tc->pbuf_size && data)
1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802
		memmove(data, dataptr, count);

	p9_free_req(clnt, req);
	return count;

free_and_error:
	p9_free_req(clnt, req);
error:
	return err;
}
EXPORT_SYMBOL(p9_client_readdir);
M
M. Mohan Kumar 已提交
1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821

int p9_client_mknod_dotl(struct p9_fid *fid, char *name, int mode,
			dev_t rdev, gid_t gid, struct p9_qid *qid)
{
	int err;
	struct p9_client *clnt;
	struct p9_req_t *req;

	err = 0;
	clnt = fid->clnt;
	P9_DPRINTK(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
		"minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
	req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddd", fid->fid, name, mode,
		MAJOR(rdev), MINOR(rdev), gid);
	if (IS_ERR(req))
		return PTR_ERR(req);

	err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
	if (err) {
1822
		P9_DUMP_PKT(1, req->rc);
M
M. Mohan Kumar 已提交
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833
		goto error;
	}
	P9_DPRINTK(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
				(unsigned long long)qid->path, qid->version);

error:
	p9_free_req(clnt, req);
	return err;

}
EXPORT_SYMBOL(p9_client_mknod_dotl);
M
M. Mohan Kumar 已提交
1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852

int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode,
				gid_t gid, struct p9_qid *qid)
{
	int err;
	struct p9_client *clnt;
	struct p9_req_t *req;

	err = 0;
	clnt = fid->clnt;
	P9_DPRINTK(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
		 fid->fid, name, mode, gid);
	req = p9_client_rpc(clnt, P9_TMKDIR, "dsdd", fid->fid, name, mode,
		gid);
	if (IS_ERR(req))
		return PTR_ERR(req);

	err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
	if (err) {
1853
		P9_DUMP_PKT(1, req->rc);
M
M. Mohan Kumar 已提交
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864
		goto error;
	}
	P9_DPRINTK(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
				(unsigned long long)qid->path, qid->version);

error:
	p9_free_req(clnt, req);
	return err;

}
EXPORT_SYMBOL(p9_client_mkdir_dotl);
M
M. Mohan Kumar 已提交
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887

int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
{
	int err;
	struct p9_client *clnt;
	struct p9_req_t *req;

	err = 0;
	clnt = fid->clnt;
	P9_DPRINTK(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
			"start %lld length %lld proc_id %d client_id %s\n",
			fid->fid, flock->type, flock->flags, flock->start,
			flock->length, flock->proc_id, flock->client_id);

	req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
				flock->flags, flock->start, flock->length,
					flock->proc_id, flock->client_id);

	if (IS_ERR(req))
		return PTR_ERR(req);

	err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
	if (err) {
1888
		P9_DUMP_PKT(1, req->rc);
M
M. Mohan Kumar 已提交
1889 1890 1891 1892 1893 1894 1895 1896 1897
		goto error;
	}
	P9_DPRINTK(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
error:
	p9_free_req(clnt, req);
	return err;

}
EXPORT_SYMBOL(p9_client_lock_dotl);
M
M. Mohan Kumar 已提交
1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920

int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
{
	int err;
	struct p9_client *clnt;
	struct p9_req_t *req;

	err = 0;
	clnt = fid->clnt;
	P9_DPRINTK(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
		"length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
		glock->start, glock->length, glock->proc_id, glock->client_id);

	req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid,  glock->type,
		glock->start, glock->length, glock->proc_id, glock->client_id);

	if (IS_ERR(req))
		return PTR_ERR(req);

	err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
			&glock->start, &glock->length, &glock->proc_id,
			&glock->client_id);
	if (err) {
1921
		P9_DUMP_PKT(1, req->rc);
M
M. Mohan Kumar 已提交
1922 1923 1924 1925 1926 1927 1928 1929 1930 1931
		goto error;
	}
	P9_DPRINTK(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
		"proc_id %d client_id %s\n", glock->type, glock->start,
		glock->length, glock->proc_id, glock->client_id);
error:
	p9_free_req(clnt, req);
	return err;
}
EXPORT_SYMBOL(p9_client_getlock_dotl);
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948

int p9_client_readlink(struct p9_fid *fid, char **target)
{
	int err;
	struct p9_client *clnt;
	struct p9_req_t *req;

	err = 0;
	clnt = fid->clnt;
	P9_DPRINTK(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);

	req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
	if (IS_ERR(req))
		return PTR_ERR(req);

	err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
	if (err) {
1949
		P9_DUMP_PKT(1, req->rc);
1950 1951 1952 1953 1954 1955 1956 1957
		goto error;
	}
	P9_DPRINTK(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
error:
	p9_free_req(clnt, req);
	return err;
}
EXPORT_SYMBOL(p9_client_readlink);