client.c 26.5 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 32 33 34
#include <linux/idr.h>
#include <linux/mutex.h>
#include <linux/sched.h>
#include <linux/uaccess.h>
#include <net/9p/9p.h>
35
#include <linux/parser.h>
36
#include <net/9p/client.h>
37
#include <net/9p/transport.h>
38
#include "protocol.h"
39

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

enum {
	Opt_msize,
	Opt_trans,
	Opt_legacy,
	Opt_err,
};

52
static const match_table_t tokens = {
53 54 55 56 57 58
	{Opt_msize, "msize=%u"},
	{Opt_legacy, "noextend"},
	{Opt_trans, "trans=%s"},
	{Opt_err, NULL},
};

59 60
static struct p9_req_t *
p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
61

62 63 64 65 66
/**
 * v9fs_parse_options - parse mount options into session structure
 * @options: options string passed from mount
 * @v9ses: existing v9fs session information
 *
67
 * Return 0 upon success, -ERRNO upon failure
68 69
 */

70
static int parse_opts(char *opts, struct p9_client *clnt)
71
{
72
	char *options;
73 74 75
	char *p;
	substring_t args[MAX_OPT_ARGS];
	int option;
76
	int ret = 0;
77 78 79 80

	clnt->dotu = 1;
	clnt->msize = 8192;

81 82 83 84 85 86 87 88 89
	if (!opts)
		return 0;

	options = kstrdup(opts, GFP_KERNEL);
	if (!options) {
		P9_DPRINTK(P9_DEBUG_ERROR,
				"failed to allocate copy of option string\n");
		return -ENOMEM;
	}
90 91 92 93 94 95 96

	while ((p = strsep(&options, ",")) != NULL) {
		int token;
		if (!*p)
			continue;
		token = match_token(p, tokens, args);
		if (token < Opt_trans) {
97 98
			int r = match_int(&args[0], &option);
			if (r < 0) {
99 100
				P9_DPRINTK(P9_DEBUG_ERROR,
					"integer field, but no integer?\n");
101
				ret = r;
102 103 104 105 106 107 108 109
				continue;
			}
		}
		switch (token) {
		case Opt_msize:
			clnt->msize = option;
			break;
		case Opt_trans:
110
			clnt->trans_mod = v9fs_get_trans_by_name(&args[0]);
111 112 113 114 115 116 117 118
			break;
		case Opt_legacy:
			clnt->dotu = 0;
			break;
		default:
			continue;
		}
	}
119 120 121 122

	if (!clnt->trans_mod)
		clnt->trans_mod = v9fs_get_default_trans();

123 124
	kfree(options);
	return ret;
125 126
}

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
/**
 * 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
 * request_slots as necessary to accomodate transaction
 * 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.
 *
 */

142
static struct p9_req_t *p9_tag_alloc(struct p9_client *c, u16 tag)
143 144 145
{
	unsigned long flags;
	int row, col;
146
	struct p9_req_t *req;
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161

	/* 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");
162
				return ERR_PTR(-ENOMEM);
163 164 165
			}
			for (col = 0; col < P9_ROW_MAXTAG; col++) {
				c->reqs[row][col].status = REQ_STATUS_IDLE;
166
				c->reqs[row][col].tc = NULL;
167 168 169 170 171 172 173 174
			}
			c->max_tag += P9_ROW_MAXTAG;
		}
		spin_unlock_irqrestore(&c->lock, flags);
	}
	row = tag / P9_ROW_MAXTAG;
	col = tag % P9_ROW_MAXTAG;

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
	req = &c->reqs[row][col];
	if (!req->tc) {
		req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_KERNEL);
		if (!req->wq) {
			printk(KERN_ERR "Couldn't grow tag array\n");
			return ERR_PTR(-ENOMEM);
		}
		init_waitqueue_head(req->wq);
		req->tc = kmalloc(sizeof(struct p9_fcall)+c->msize,
								GFP_KERNEL);
		req->rc = kmalloc(sizeof(struct p9_fcall)+c->msize,
								GFP_KERNEL);
		if ((!req->tc) || (!req->rc)) {
			printk(KERN_ERR "Couldn't grow tag array\n");
			kfree(req->tc);
			kfree(req->rc);
			return ERR_PTR(-ENOMEM);
		}
		req->tc->sdata = (char *) req->tc + sizeof(struct p9_fcall);
		req->tc->capacity = c->msize;
		req->rc->sdata = (char *) req->rc + sizeof(struct p9_fcall);
		req->rc->capacity = c->msize;
	}

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

	req->flush_tag = 0;
	req->tc->tag = tag-1;
	req->status = REQ_STATUS_ALLOC;
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287

	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++;

	BUG_ON(tag >= c->max_tag);

	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
 * @tags: tags structure from the client struct
 *
 * 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);
		c->tagpool = NULL;
		goto error;
	}

	p9_idpool_get(c->tagpool); /* reserve tag 0 */

	c->max_tag = 0;
error:
	return err;
}

/**
 * p9_tag_cleanup - cleans up tags structure and reclaims resources
 * @tags: tags structure from the client struct
 *
 * 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;
			}
		}
	}

	if (c->tagpool)
		p9_idpool_destroy(c->tagpool);

	/* free requests associated with tags */
	for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
288
		for (col = 0; col < P9_ROW_MAXTAG; col++) {
289
			kfree(c->reqs[row][col].wq);
290 291 292
			kfree(c->reqs[row][col].tc);
			kfree(c->reqs[row][col].rc);
		}
293 294 295 296 297
		kfree(c->reqs[row]);
	}
	c->max_tag = 0;
}

298 299 300 301 302 303 304
/**
 * p9_free_req - free a request and clean-up as necessary
 * c: client state
 * r: request to release
 *
 */

305
static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
306
{
307 308 309
	int tag = r->tc->tag;
	P9_DPRINTK(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);

310
	r->status = REQ_STATUS_IDLE;
311 312
	if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
		p9_idpool_put(tag, c->tagpool);
313 314

	/* if this was a flush request we have to free response fcall */
315
	if (r->rc->id == P9_RFLUSH) {
316 317 318 319 320
		kfree(r->tc);
		kfree(r->rc);
	}
}

321 322 323 324 325 326 327 328 329 330 331
/**
 * 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)
{
	struct p9_req_t *other_req;
	unsigned long flags;

332
	P9_DPRINTK(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
333 334 335 336

	if (req->status == REQ_STATUS_ERROR)
		wake_up(req->wq);

337 338
	if (req->flush_tag) { 			/* flush receive path */
		P9_DPRINTK(P9_DEBUG_9P, "<<< RFLUSH %d\n", req->tc->tag);
339
		spin_lock_irqsave(&c->lock, flags);
340 341
		other_req = p9_tag_lookup(c, req->flush_tag);
		if (other_req->status != REQ_STATUS_FLSH) /* stale flush */
342 343 344 345 346 347 348 349
			spin_unlock_irqrestore(&c->lock, flags);
		else {
			other_req->status = REQ_STATUS_FLSHD;
			spin_unlock_irqrestore(&c->lock, flags);
			wake_up(other_req->wq);
		}
		p9_free_req(c, req);
	} else { 				/* normal receive path */
350
		P9_DPRINTK(P9_DEBUG_MUX, "normal: tag %d\n", req->tc->tag);
351 352 353 354 355 356 357 358 359 360
		spin_lock_irqsave(&c->lock, flags);
		if (req->status != REQ_STATUS_FLSHD)
			req->status = REQ_STATUS_RCVD;
		spin_unlock_irqrestore(&c->lock, flags);
		wake_up(req->wq);
		P9_DPRINTK(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
	}
}
EXPORT_SYMBOL(p9_client_cb);

361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 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 423 424 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 456 457 458 459 460 461 462 463 464 465 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 492 493 494 495 496
/**
 * 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;

	P9_DPRINTK(P9_DEBUG_MUX, "pdu: type: %d tag: %d size=%d offset=%d\n",
				pdu->id, pdu->tag, pdu->size, pdu->offset);

	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;

	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;
	}

	if (type == P9_RERROR) {
		int ecode;
		char *ename;

		err = p9pdu_readf(req->rc, c->dotu, "s?d", &ename, &ecode);
		if (err) {
			P9_DPRINTK(P9_DEBUG_ERROR, "couldn't parse error%d\n",
									err);
			return err;
		}

		if (c->dotu)
			err = -ecode;

		if (!err) {
			err = p9_errstr2errno(ename, strlen(ename));

			/* string match failed */
			if (!err)
				err = -ESERVERFAULT;
		}

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

		kfree(ename);
	} else
		err = 0;

	return err;
}

/**
 * p9_client_flush - flush (cancel) a request
 * c: client state
 * req: request to cancel
 *
 * This sents a flush for a particular requests and links
 * 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);

	req->flush_tag = oldtag;

	/* we don't free anything here because RPC isn't complete */
	return 0;
}

497 498 499
/**
 * p9_client_rpc - issue a request and wait for a response
 * @c: client session
500 501
 * @type: type of request
 * @fmt: protocol format string (see protocol.c)
502
 *
503
 * Returns request structure (which client must free using p9_free_req)
504 505
 */

506 507
static struct p9_req_t *
p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
508
{
509 510
	va_list ap;
	int tag, err;
511 512 513 514 515
	struct p9_req_t *req;
	unsigned long flags;
	int sigpending;
	int flushed = 0;

516
	P9_DPRINTK(P9_DEBUG_MUX, "client %p op %d\n", c, type);
517 518

	if (c->status != Connected)
519
		return ERR_PTR(-EIO);
520 521 522 523 524 525 526 527

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

	tag = P9_NOTAG;
528
	if (type != P9_TVERSION) {
529 530
		tag = p9_idpool_get(c->tagpool);
		if (tag < 0)
531
			return ERR_PTR(-ENOMEM);
532 533 534
	}

	req = p9_tag_alloc(c, tag);
535 536
	if (IS_ERR(req))
		return req;
537

538 539 540 541 542 543
	/* marshall the data */
	p9pdu_prepare(req->tc, tag, type);
	va_start(ap, fmt);
	err = p9pdu_vwritef(req->tc, c->dotu, fmt, ap);
	va_end(ap);
	p9pdu_finalize(req->tc);
544 545 546 547 548 549 550 551

	err = c->trans_mod->request(c, req);
	if (err < 0) {
		c->status = Disconnected;
		goto reterr;
	}

	/* if it was a flush we just transmitted, return our tag */
552 553
	if (type == P9_TFLUSH)
		return req;
554
again:
555
	P9_DPRINTK(P9_DEBUG_MUX, "wait %p tag: %d\n", req->wq, tag);
556 557
	err = wait_event_interruptible(*req->wq,
						req->status >= REQ_STATUS_RCVD);
558
	P9_DPRINTK(P9_DEBUG_MUX, "wait %p tag: %d returned %d (flushed=%d)\n",
559 560 561
						req->wq, tag, err, flushed);

	if (req->status == REQ_STATUS_ERROR) {
562
		P9_DPRINTK(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
563 564
		err = req->t_err;
	} else if (err == -ERESTARTSYS && flushed) {
565
		P9_DPRINTK(P9_DEBUG_MUX, "flushed - going again\n");
566 567
		goto again;
	} else if (req->status == REQ_STATUS_FLSHD) {
568
		P9_DPRINTK(P9_DEBUG_MUX, "flushed - erestartsys\n");
569 570 571 572
		err = -ERESTARTSYS;
	}

	if ((err == -ERESTARTSYS) && (c->status == Connected) && (!flushed)) {
573
		P9_DPRINTK(P9_DEBUG_MUX, "flushing\n");
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
		spin_lock_irqsave(&c->lock, flags);
		if (req->status == REQ_STATUS_SENT)
			req->status = REQ_STATUS_FLSH;
		spin_unlock_irqrestore(&c->lock, flags);
		sigpending = 1;
		flushed = 1;
		clear_thread_flag(TIF_SIGPENDING);

		if (c->trans_mod->cancel(c, req)) {
			err = p9_client_flush(c, req);
			if (err == 0)
				goto again;
		}
	}

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

	if (err < 0)
		goto reterr;

598 599 600 601
	err = p9_check_errors(c, req);
	if (!err) {
		P9_DPRINTK(P9_DEBUG_MUX, "exit: client %p op %d\n", c, type);
		return req;
602 603 604
	}

reterr:
605 606
	P9_DPRINTK(P9_DEBUG_MUX, "exit: client %p op %d error: %d\n", c, type,
									err);
607
	p9_free_req(c, req);
608
	return ERR_PTR(err);
609 610
}

611 612 613 614 615
static struct p9_fid *p9_fid_create(struct p9_client *clnt)
{
	int err;
	struct p9_fid *fid;

616
	P9_DPRINTK(P9_DEBUG_FID, "clnt %p\n", clnt);
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
	fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
	if (!fid)
		return ERR_PTR(-ENOMEM);

	fid->fid = p9_idpool_get(clnt->fidpool);
	if (fid->fid < 0) {
		err = -ENOSPC;
		goto error;
	}

	memset(&fid->qid, 0, sizeof(struct p9_qid));
	fid->mode = -1;
	fid->rdir_fpos = 0;
	fid->uid = current->fsuid;
	fid->clnt = clnt;
	fid->aux = NULL;

	spin_lock(&clnt->lock);
	list_add(&fid->flist, &clnt->fidlist);
	spin_unlock(&clnt->lock);

	return fid;

error:
	kfree(fid);
	return ERR_PTR(err);
}

static void p9_fid_destroy(struct p9_fid *fid)
{
	struct p9_client *clnt;

649
	P9_DPRINTK(P9_DEBUG_FID, "fid %d\n", fid->fid);
650 651 652 653 654 655 656
	clnt = fid->clnt;
	p9_idpool_put(fid->fid, clnt->fidpool);
	spin_lock(&clnt->lock);
	list_del(&fid->flist);
	spin_unlock(&clnt->lock);
	kfree(fid);
}
657

658
int p9_client_version(struct p9_client *c)
659
{
660
	int err = 0;
661 662 663
	struct p9_req_t *req;
	char *version;
	int msize;
664

665 666 667 668 669 670
	P9_DPRINTK(P9_DEBUG_9P, ">>> TVERSION msize %d extended %d\n",
							c->msize, c->dotu);
	req = p9_client_rpc(c, P9_TVERSION, "ds", c->msize,
				c->dotu ? "9P2000.u" : "9P2000");
	if (IS_ERR(req))
		return PTR_ERR(req);
671

672 673 674
	err = p9pdu_readf(req->rc, c->dotu, "ds", &msize, &version);
	if (err) {
		P9_DPRINTK(P9_DEBUG_9P, "version error %d\n", err);
675
		goto error;
676
	}
677

678 679 680 681 682
	P9_DPRINTK(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
	if (!memcmp(version, "9P2000.u", 8))
		c->dotu = 1;
	else if (!memcmp(version, "9P2000", 6))
		c->dotu = 0;
683 684 685 686 687
	else {
		err = -EREMOTEIO;
		goto error;
	}

688 689
	if (msize < c->msize)
		c->msize = msize;
690 691

error:
692 693
	kfree(version);
	p9_free_req(c, req);
694 695 696

	return err;
}
697
EXPORT_SYMBOL(p9_client_version);
698 699 700 701 702 703 704

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

	err = 0;
705 706 707 708
	clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
	if (!clnt)
		return ERR_PTR(-ENOMEM);

709
	clnt->trans_mod = NULL;
710
	clnt->trans = NULL;
711 712 713
	spin_lock_init(&clnt->lock);
	INIT_LIST_HEAD(&clnt->fidlist);
	clnt->fidpool = p9_idpool_create();
714
	if (IS_ERR(clnt->fidpool)) {
715 716 717 718 719
		err = PTR_ERR(clnt->fidpool);
		clnt->fidpool = NULL;
		goto error;
	}

720 721
	p9_tag_init(clnt);

722 723 724 725
	err = parse_opts(options, clnt);
	if (err < 0)
		goto error;

726 727 728 729 730 731 732
	if (clnt->trans_mod == NULL) {
		err = -EPROTONOSUPPORT;
		P9_DPRINTK(P9_DEBUG_ERROR,
				"No transport defined or default transport\n");
		goto error;
	}

733
	P9_DPRINTK(P9_DEBUG_MUX, "clnt %p trans %p msize %d dotu %d\n",
734 735
		clnt, clnt->trans_mod, clnt->msize, clnt->dotu);

736 737
	err = clnt->trans_mod->create(clnt, dev_name, options);
	if (err)
738 739
		goto error;

740 741 742
	if ((clnt->msize+P9_IOHDRSZ) > clnt->trans_mod->maxsize)
		clnt->msize = clnt->trans_mod->maxsize-P9_IOHDRSZ;

743
	err = p9_client_version(clnt);
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
	if (err)
		goto error;

	return clnt;

error:
	p9_client_destroy(clnt);
	return ERR_PTR(err);
}
EXPORT_SYMBOL(p9_client_create);

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

759
	P9_DPRINTK(P9_DEBUG_MUX, "clnt %p\n", clnt);
760

761 762
	if (clnt->trans_mod)
		clnt->trans_mod->close(clnt);
763

764 765
	v9fs_put_trans(clnt->trans_mod);

766 767 768
	list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist)
		p9_fid_destroy(fid);

769 770 771
	if (clnt->fidpool)
		p9_idpool_destroy(clnt->fidpool);

772 773
	p9_tag_cleanup(clnt);

774 775 776 777 778 779 780
	kfree(clnt);
}
EXPORT_SYMBOL(p9_client_destroy);

void p9_client_disconnect(struct p9_client *clnt)
{
	P9_DPRINTK(P9_DEBUG_9P, "clnt %p\n", clnt);
781
	clnt->status = Disconnected;
782 783 784 785
}
EXPORT_SYMBOL(p9_client_disconnect);

struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
L
Latchesar Ionkov 已提交
786
	char *uname, u32 n_uname, char *aname)
787 788
{
	int err;
789
	struct p9_req_t *req;
790
	struct p9_fid *fid;
791
	struct p9_qid qid;
792

793 794
	P9_DPRINTK(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
					afid ? afid->fid : -1, uname, aname);
795 796 797 798 799 800 801 802 803
	err = 0;

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

804 805 806 807
	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);
808 809 810
		goto error;
	}

811 812 813
	err = p9pdu_readf(req->rc, clnt->dotu, "Q", &qid);
	if (err) {
		p9_free_req(clnt, req);
814
		goto error;
815
	}
816

817 818 819 820 821 822
	P9_DPRINTK(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
					qid.type, qid.path, qid.version);

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

	p9_free_req(clnt, req);
823 824 825 826 827 828 829 830 831
	return fid;

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

832 833
struct p9_fid *
p9_client_auth(struct p9_client *clnt, char *uname, u32 n_uname, char *aname)
834 835
{
	int err;
836 837 838
	struct p9_req_t *req;
	struct p9_qid qid;
	struct p9_fid *afid;
839

840
	P9_DPRINTK(P9_DEBUG_9P, ">>> TAUTH uname %s aname %s\n", uname, aname);
841 842
	err = 0;

843 844 845 846
	afid = p9_fid_create(clnt);
	if (IS_ERR(afid)) {
		err = PTR_ERR(afid);
		afid = NULL;
847 848 849
		goto error;
	}

850 851 852 853
	req = p9_client_rpc(clnt, P9_TAUTH, "dss?d",
			afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
854 855 856
		goto error;
	}

857 858 859
	err = p9pdu_readf(req->rc, clnt->dotu, "Q", &qid);
	if (err) {
		p9_free_req(clnt, req);
860
		goto error;
861
	}
862

863 864 865 866 867 868
	P9_DPRINTK(P9_DEBUG_9P, "<<< RAUTH qid %x.%llx.%x\n",
					qid.type, qid.path, qid.version);

	memmove(&afid->qid, &qid, sizeof(struct p9_qid));
	p9_free_req(clnt, req);
	return afid;
869 870

error:
871 872
	if (afid)
		p9_fid_destroy(afid);
873 874 875 876 877 878 879 880 881 882
	return ERR_PTR(err);
}
EXPORT_SYMBOL(p9_client_auth);

struct p9_fid *p9_client_walk(struct p9_fid *oldfid, int nwname, char **wnames,
	int clone)
{
	int err;
	struct p9_client *clnt;
	struct p9_fid *fid;
883 884 885
	struct p9_qid *wqids;
	struct p9_req_t *req;
	int16_t nwqids, count;
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900

	err = 0;
	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;

901 902 903 904 905 906 907 908

	P9_DPRINTK(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %d wname[0] %s\n",
		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);
909 910 911
		goto error;
	}

912 913 914 915
	err = p9pdu_readf(req->rc, clnt->dotu, "R", &nwqids, &wqids);
	p9_free_req(clnt, req);
	if (err)
		goto clunk_fid;
916

917 918 919
	P9_DPRINTK(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);

	if (nwqids != nwname) {
920 921 922 923
		err = -ENOENT;
		goto clunk_fid;
	}

924 925 926 927 928
	for (count = 0; count < nwqids; count++)
		P9_DPRINTK(P9_DEBUG_9P, "<<<     [%d] %x.%llx.%x\n",
			count, wqids[count].type, wqids[count].path,
			wqids[count].version);

929
	if (nwname)
930
		memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
931 932 933 934 935 936
	else
		fid->qid = oldfid->qid;

	return fid;

clunk_fid:
937 938
	p9_client_clunk(fid);
	fid = NULL;
939 940 941 942 943 944 945 946 947 948 949 950 951

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;
952 953 954
	struct p9_req_t *req;
	struct p9_qid qid;
	int iounit;
955

956
	P9_DPRINTK(P9_DEBUG_9P, ">>> TOPEN fid %d mode %d\n", fid->fid, mode);
957 958 959 960 961 962
	err = 0;
	clnt = fid->clnt;

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

963 964 965 966
	req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
967 968
	}

969 970
	err = p9pdu_readf(req->rc, clnt->dotu, "Qd", &qid, &iounit);
	p9_free_req(clnt, req);
971
	if (err)
972 973 974 975
		goto error;

	P9_DPRINTK(P9_DEBUG_9P, "<<< ROPEN qid %x.%llx.%x iounit %x\n",
				qid.type, qid.path, qid.version, iounit);
976 977

	fid->mode = mode;
978
	fid->iounit = iounit;
979

980
error:
981 982 983 984 985 986 987 988 989
	return err;
}
EXPORT_SYMBOL(p9_client_open);

int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
		     char *extension)
{
	int err;
	struct p9_client *clnt;
990 991 992
	struct p9_req_t *req;
	struct p9_qid qid;
	int iounit;
993

994 995
	P9_DPRINTK(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
						fid->fid, name, perm, mode);
996 997 998 999 1000 1001
	err = 0;
	clnt = fid->clnt;

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

1002 1003 1004 1005 1006
	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;
1007 1008
	}

1009 1010
	err = p9pdu_readf(req->rc, clnt->dotu, "Qd", &qid, &iounit);
	p9_free_req(clnt, req);
1011
	if (err)
1012 1013 1014 1015
		goto error;

	P9_DPRINTK(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
				qid.type, qid.path, qid.version, iounit);
1016 1017

	fid->mode = mode;
1018
	fid->iounit = iounit;
1019

1020
error:
1021 1022 1023 1024 1025 1026 1027 1028
	return err;
}
EXPORT_SYMBOL(p9_client_fcreate);

int p9_client_clunk(struct p9_fid *fid)
{
	int err;
	struct p9_client *clnt;
1029
	struct p9_req_t *req;
1030

1031
	P9_DPRINTK(P9_DEBUG_9P, ">>> TCLUNK fid %d\n", fid->fid);
1032 1033 1034
	err = 0;
	clnt = fid->clnt;

1035 1036 1037 1038
	req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
1039 1040
	}

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

1043
	p9_free_req(clnt, req);
1044 1045
	p9_fid_destroy(fid);

1046
error:
1047 1048 1049 1050 1051 1052 1053 1054
	return err;
}
EXPORT_SYMBOL(p9_client_clunk);

int p9_client_remove(struct p9_fid *fid)
{
	int err;
	struct p9_client *clnt;
1055
	struct p9_req_t *req;
1056

1057
	P9_DPRINTK(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1058 1059 1060
	err = 0;
	clnt = fid->clnt;

1061 1062 1063 1064
	req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
1065 1066
	}

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

1069
	p9_free_req(clnt, req);
1070 1071
	p9_fid_destroy(fid);

1072
error:
1073 1074 1075 1076
	return err;
}
EXPORT_SYMBOL(p9_client_remove);

1077 1078 1079
int
p9_client_read(struct p9_fid *fid, char *data, char __user *udata, u64 offset,
								u32 count)
1080
{
1081
	int err, rsize, total;
1082
	struct p9_client *clnt;
1083 1084
	struct p9_req_t *req;
	char *dataptr;
1085

1086
	P9_DPRINTK(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n", fid->fid,
1087 1088 1089 1090 1091 1092 1093 1094 1095
					(long long unsigned) offset, count);
	err = 0;
	clnt = fid->clnt;
	total = 0;

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

1096 1097
	if (count < rsize)
		rsize = count;
1098

1099 1100 1101 1102 1103
	req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset, rsize);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}
1104

1105 1106 1107
	err = p9pdu_readf(req->rc, clnt->dotu, "D", &count, &dataptr);
	if (err)
		goto free_and_error;
1108

1109
	P9_DPRINTK(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1110

1111 1112 1113 1114
	if (data) {
		memmove(data, dataptr, count);
		data += count;
	}
1115

1116 1117 1118 1119 1120
	if (udata) {
		err = copy_to_user(udata, dataptr, count);
		if (err) {
			err = -EFAULT;
			goto free_and_error;
1121
		}
1122
	}
1123

1124 1125
	p9_free_req(clnt, req);
	return count;
1126

1127 1128
free_and_error:
	p9_free_req(clnt, req);
1129 1130 1131
error:
	return err;
}
1132
EXPORT_SYMBOL(p9_client_read);
1133 1134

int
1135 1136
p9_client_write(struct p9_fid *fid, char *data, const char __user *udata,
							u64 offset, u32 count)
1137
{
1138
	int err, rsize, total;
1139
	struct p9_client *clnt;
1140
	struct p9_req_t *req;
1141

1142 1143
	P9_DPRINTK(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %d\n",
				fid->fid, (long long unsigned) offset, count);
1144 1145 1146 1147 1148 1149 1150 1151
	err = 0;
	clnt = fid->clnt;
	total = 0;

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

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
	if (count < rsize)
		rsize = count;
	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);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
	}
1164

1165 1166 1167 1168
	err = p9pdu_readf(req->rc, clnt->dotu, "d", &count);
	if (err)
		goto free_and_error;
	P9_DPRINTK(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1169

1170 1171
	p9_free_req(clnt, req);
	return count;
1172

1173 1174
free_and_error:
	p9_free_req(clnt, req);
1175 1176 1177
error:
	return err;
}
1178
EXPORT_SYMBOL(p9_client_write);
1179

1180
struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1181
{
1182 1183 1184 1185 1186
	int err;
	struct p9_client *clnt;
	struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
	struct p9_req_t *req;
	u16 ignored;
1187

1188
	P9_DPRINTK(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1189 1190 1191 1192

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

1193 1194 1195
	err = 0;
	clnt = fid->clnt;

1196 1197 1198
	req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
1199 1200 1201
		goto error;
	}

1202 1203
	err = p9pdu_readf(req->rc, clnt->dotu, "wS", &ignored, ret);
	p9_free_req(clnt, req);
1204 1205 1206
	if (err)
		goto error;

1207 1208 1209 1210 1211 1212
	P9_DPRINTK(P9_DEBUG_9P,
		"<<< RSTAT sz=%x type=%x dev=%x qid=%2.2x %4.4x %8.8llx"
		" mode=%8.8x uid=%d gid=%d size=%lld %s\n",
		ret->size, ret->type, ret->dev, ret->qid.type,
		ret->qid.version, ret->qid.path, ret->mode,
		ret->n_uid, ret->n_gid, ret->length, ret->name);
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222

	return ret;
error:
	return ERR_PTR(err);
}
EXPORT_SYMBOL(p9_client_stat);

int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
{
	int err;
1223
	struct p9_req_t *req;
1224 1225
	struct p9_client *clnt;

1226
	P9_DPRINTK(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1227 1228 1229
	err = 0;
	clnt = fid->clnt;

1230 1231 1232 1233
	req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, 0, wst);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto error;
1234 1235
	}

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

1238 1239
	p9_free_req(clnt, req);
error:
1240 1241 1242
	return err;
}
EXPORT_SYMBOL(p9_client_wstat);