Linux Audio

Check our new training course

Loading...
v5.4
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * linux/net/sunrpc/xdr.c
   4 *
   5 * Generic XDR support.
   6 *
   7 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
   8 */
   9
  10#include <linux/module.h>
  11#include <linux/slab.h>
  12#include <linux/types.h>
  13#include <linux/string.h>
  14#include <linux/kernel.h>
  15#include <linux/pagemap.h>
  16#include <linux/errno.h>
  17#include <linux/sunrpc/xdr.h>
  18#include <linux/sunrpc/msg_prot.h>
  19#include <linux/bvec.h>
  20#include <trace/events/sunrpc.h>
  21
  22/*
  23 * XDR functions for basic NFS types
  24 */
  25__be32 *
  26xdr_encode_netobj(__be32 *p, const struct xdr_netobj *obj)
  27{
  28	unsigned int	quadlen = XDR_QUADLEN(obj->len);
  29
  30	p[quadlen] = 0;		/* zero trailing bytes */
  31	*p++ = cpu_to_be32(obj->len);
  32	memcpy(p, obj->data, obj->len);
  33	return p + XDR_QUADLEN(obj->len);
  34}
  35EXPORT_SYMBOL_GPL(xdr_encode_netobj);
  36
  37__be32 *
  38xdr_decode_netobj(__be32 *p, struct xdr_netobj *obj)
  39{
  40	unsigned int	len;
  41
  42	if ((len = be32_to_cpu(*p++)) > XDR_MAX_NETOBJ)
  43		return NULL;
  44	obj->len  = len;
  45	obj->data = (u8 *) p;
  46	return p + XDR_QUADLEN(len);
  47}
  48EXPORT_SYMBOL_GPL(xdr_decode_netobj);
  49
  50/**
  51 * xdr_encode_opaque_fixed - Encode fixed length opaque data
  52 * @p: pointer to current position in XDR buffer.
  53 * @ptr: pointer to data to encode (or NULL)
  54 * @nbytes: size of data.
  55 *
  56 * Copy the array of data of length nbytes at ptr to the XDR buffer
  57 * at position p, then align to the next 32-bit boundary by padding
  58 * with zero bytes (see RFC1832).
  59 * Note: if ptr is NULL, only the padding is performed.
  60 *
  61 * Returns the updated current XDR buffer position
  62 *
  63 */
  64__be32 *xdr_encode_opaque_fixed(__be32 *p, const void *ptr, unsigned int nbytes)
  65{
  66	if (likely(nbytes != 0)) {
  67		unsigned int quadlen = XDR_QUADLEN(nbytes);
  68		unsigned int padding = (quadlen << 2) - nbytes;
  69
  70		if (ptr != NULL)
  71			memcpy(p, ptr, nbytes);
  72		if (padding != 0)
  73			memset((char *)p + nbytes, 0, padding);
  74		p += quadlen;
  75	}
  76	return p;
  77}
  78EXPORT_SYMBOL_GPL(xdr_encode_opaque_fixed);
  79
  80/**
  81 * xdr_encode_opaque - Encode variable length opaque data
  82 * @p: pointer to current position in XDR buffer.
  83 * @ptr: pointer to data to encode (or NULL)
  84 * @nbytes: size of data.
  85 *
  86 * Returns the updated current XDR buffer position
  87 */
  88__be32 *xdr_encode_opaque(__be32 *p, const void *ptr, unsigned int nbytes)
  89{
  90	*p++ = cpu_to_be32(nbytes);
  91	return xdr_encode_opaque_fixed(p, ptr, nbytes);
  92}
  93EXPORT_SYMBOL_GPL(xdr_encode_opaque);
  94
  95__be32 *
  96xdr_encode_string(__be32 *p, const char *string)
  97{
  98	return xdr_encode_array(p, string, strlen(string));
  99}
 100EXPORT_SYMBOL_GPL(xdr_encode_string);
 101
 102__be32 *
 103xdr_decode_string_inplace(__be32 *p, char **sp,
 104			  unsigned int *lenp, unsigned int maxlen)
 105{
 106	u32 len;
 107
 108	len = be32_to_cpu(*p++);
 109	if (len > maxlen)
 110		return NULL;
 111	*lenp = len;
 112	*sp = (char *) p;
 113	return p + XDR_QUADLEN(len);
 114}
 115EXPORT_SYMBOL_GPL(xdr_decode_string_inplace);
 116
 117/**
 118 * xdr_terminate_string - '\0'-terminate a string residing in an xdr_buf
 119 * @buf: XDR buffer where string resides
 120 * @len: length of string, in bytes
 121 *
 122 */
 123void
 124xdr_terminate_string(struct xdr_buf *buf, const u32 len)
 125{
 126	char *kaddr;
 127
 128	kaddr = kmap_atomic(buf->pages[0]);
 129	kaddr[buf->page_base + len] = '\0';
 130	kunmap_atomic(kaddr);
 131}
 132EXPORT_SYMBOL_GPL(xdr_terminate_string);
 133
 134size_t
 135xdr_buf_pagecount(struct xdr_buf *buf)
 
 136{
 137	if (!buf->page_len)
 138		return 0;
 139	return (buf->page_base + buf->page_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
 140}
 141
 142int
 143xdr_alloc_bvec(struct xdr_buf *buf, gfp_t gfp)
 144{
 145	size_t i, n = xdr_buf_pagecount(buf);
 146
 147	if (n != 0 && buf->bvec == NULL) {
 148		buf->bvec = kmalloc_array(n, sizeof(buf->bvec[0]), gfp);
 149		if (!buf->bvec)
 150			return -ENOMEM;
 151		for (i = 0; i < n; i++) {
 152			buf->bvec[i].bv_page = buf->pages[i];
 153			buf->bvec[i].bv_len = PAGE_SIZE;
 154			buf->bvec[i].bv_offset = 0;
 155		}
 156	}
 157	return 0;
 158}
 159
 160void
 161xdr_free_bvec(struct xdr_buf *buf)
 162{
 163	kfree(buf->bvec);
 164	buf->bvec = NULL;
 
 
 
 
 
 165}
 
 166
 167/**
 168 * xdr_inline_pages - Prepare receive buffer for a large reply
 169 * @xdr: xdr_buf into which reply will be placed
 170 * @offset: expected offset where data payload will start, in bytes
 171 * @pages: vector of struct page pointers
 172 * @base: offset in first page where receive should start, in bytes
 173 * @len: expected size of the upper layer data payload, in bytes
 174 *
 175 */
 176void
 177xdr_inline_pages(struct xdr_buf *xdr, unsigned int offset,
 178		 struct page **pages, unsigned int base, unsigned int len)
 179{
 180	struct kvec *head = xdr->head;
 181	struct kvec *tail = xdr->tail;
 182	char *buf = (char *)head->iov_base;
 183	unsigned int buflen = head->iov_len;
 184
 185	head->iov_len  = offset;
 186
 187	xdr->pages = pages;
 188	xdr->page_base = base;
 189	xdr->page_len = len;
 190
 191	tail->iov_base = buf + offset;
 192	tail->iov_len = buflen - offset;
 193	if ((xdr->page_len & 3) == 0)
 194		tail->iov_len -= sizeof(__be32);
 195
 196	xdr->buflen += len;
 197}
 198EXPORT_SYMBOL_GPL(xdr_inline_pages);
 199
 200/*
 201 * Helper routines for doing 'memmove' like operations on a struct xdr_buf
 202 */
 203
 204/**
 205 * _shift_data_right_pages
 206 * @pages: vector of pages containing both the source and dest memory area.
 207 * @pgto_base: page vector address of destination
 208 * @pgfrom_base: page vector address of source
 209 * @len: number of bytes to copy
 210 *
 211 * Note: the addresses pgto_base and pgfrom_base are both calculated in
 212 *       the same way:
 213 *            if a memory area starts at byte 'base' in page 'pages[i]',
 214 *            then its address is given as (i << PAGE_SHIFT) + base
 215 * Also note: pgfrom_base must be < pgto_base, but the memory areas
 216 * 	they point to may overlap.
 217 */
 218static void
 219_shift_data_right_pages(struct page **pages, size_t pgto_base,
 220		size_t pgfrom_base, size_t len)
 221{
 222	struct page **pgfrom, **pgto;
 223	char *vfrom, *vto;
 224	size_t copy;
 225
 226	BUG_ON(pgto_base <= pgfrom_base);
 227
 228	pgto_base += len;
 229	pgfrom_base += len;
 230
 231	pgto = pages + (pgto_base >> PAGE_SHIFT);
 232	pgfrom = pages + (pgfrom_base >> PAGE_SHIFT);
 233
 234	pgto_base &= ~PAGE_MASK;
 235	pgfrom_base &= ~PAGE_MASK;
 236
 237	do {
 238		/* Are any pointers crossing a page boundary? */
 239		if (pgto_base == 0) {
 240			pgto_base = PAGE_SIZE;
 241			pgto--;
 242		}
 243		if (pgfrom_base == 0) {
 244			pgfrom_base = PAGE_SIZE;
 245			pgfrom--;
 246		}
 247
 248		copy = len;
 249		if (copy > pgto_base)
 250			copy = pgto_base;
 251		if (copy > pgfrom_base)
 252			copy = pgfrom_base;
 253		pgto_base -= copy;
 254		pgfrom_base -= copy;
 255
 256		vto = kmap_atomic(*pgto);
 257		if (*pgto != *pgfrom) {
 258			vfrom = kmap_atomic(*pgfrom);
 259			memcpy(vto + pgto_base, vfrom + pgfrom_base, copy);
 260			kunmap_atomic(vfrom);
 261		} else
 262			memmove(vto + pgto_base, vto + pgfrom_base, copy);
 263		flush_dcache_page(*pgto);
 264		kunmap_atomic(vto);
 
 265
 266	} while ((len -= copy) != 0);
 267}
 268
 269/**
 270 * _copy_to_pages
 271 * @pages: array of pages
 272 * @pgbase: page vector address of destination
 273 * @p: pointer to source data
 274 * @len: length
 275 *
 276 * Copies data from an arbitrary memory location into an array of pages
 277 * The copy is assumed to be non-overlapping.
 278 */
 279static void
 280_copy_to_pages(struct page **pages, size_t pgbase, const char *p, size_t len)
 281{
 282	struct page **pgto;
 283	char *vto;
 284	size_t copy;
 285
 286	pgto = pages + (pgbase >> PAGE_SHIFT);
 287	pgbase &= ~PAGE_MASK;
 288
 289	for (;;) {
 290		copy = PAGE_SIZE - pgbase;
 291		if (copy > len)
 292			copy = len;
 293
 294		vto = kmap_atomic(*pgto);
 295		memcpy(vto + pgbase, p, copy);
 296		kunmap_atomic(vto);
 297
 298		len -= copy;
 299		if (len == 0)
 300			break;
 301
 302		pgbase += copy;
 303		if (pgbase == PAGE_SIZE) {
 304			flush_dcache_page(*pgto);
 305			pgbase = 0;
 306			pgto++;
 307		}
 308		p += copy;
 309	}
 310	flush_dcache_page(*pgto);
 311}
 312
 313/**
 314 * _copy_from_pages
 315 * @p: pointer to destination
 316 * @pages: array of pages
 317 * @pgbase: offset of source data
 318 * @len: length
 319 *
 320 * Copies data into an arbitrary memory location from an array of pages
 321 * The copy is assumed to be non-overlapping.
 322 */
 323void
 324_copy_from_pages(char *p, struct page **pages, size_t pgbase, size_t len)
 325{
 326	struct page **pgfrom;
 327	char *vfrom;
 328	size_t copy;
 329
 330	pgfrom = pages + (pgbase >> PAGE_SHIFT);
 331	pgbase &= ~PAGE_MASK;
 332
 333	do {
 334		copy = PAGE_SIZE - pgbase;
 335		if (copy > len)
 336			copy = len;
 337
 338		vfrom = kmap_atomic(*pgfrom);
 339		memcpy(p, vfrom + pgbase, copy);
 340		kunmap_atomic(vfrom);
 341
 342		pgbase += copy;
 343		if (pgbase == PAGE_SIZE) {
 344			pgbase = 0;
 345			pgfrom++;
 346		}
 347		p += copy;
 348
 349	} while ((len -= copy) != 0);
 350}
 351EXPORT_SYMBOL_GPL(_copy_from_pages);
 352
 353/**
 354 * xdr_shrink_bufhead
 355 * @buf: xdr_buf
 356 * @len: bytes to remove from buf->head[0]
 357 *
 358 * Shrinks XDR buffer's header kvec buf->head[0] by
 359 * 'len' bytes. The extra data is not lost, but is instead
 360 * moved into the inlined pages and/or the tail.
 361 */
 362static unsigned int
 363xdr_shrink_bufhead(struct xdr_buf *buf, size_t len)
 364{
 365	struct kvec *head, *tail;
 366	size_t copy, offs;
 367	unsigned int pglen = buf->page_len;
 368	unsigned int result;
 369
 370	result = 0;
 371	tail = buf->tail;
 372	head = buf->head;
 373
 374	WARN_ON_ONCE(len > head->iov_len);
 375	if (len > head->iov_len)
 376		len = head->iov_len;
 377
 378	/* Shift the tail first */
 379	if (tail->iov_len != 0) {
 380		if (tail->iov_len > len) {
 381			copy = tail->iov_len - len;
 382			memmove((char *)tail->iov_base + len,
 383					tail->iov_base, copy);
 384			result += copy;
 385		}
 386		/* Copy from the inlined pages into the tail */
 387		copy = len;
 388		if (copy > pglen)
 389			copy = pglen;
 390		offs = len - copy;
 391		if (offs >= tail->iov_len)
 392			copy = 0;
 393		else if (copy > tail->iov_len - offs)
 394			copy = tail->iov_len - offs;
 395		if (copy != 0) {
 396			_copy_from_pages((char *)tail->iov_base + offs,
 397					buf->pages,
 398					buf->page_base + pglen + offs - len,
 399					copy);
 400			result += copy;
 401		}
 402		/* Do we also need to copy data from the head into the tail ? */
 403		if (len > pglen) {
 404			offs = copy = len - pglen;
 405			if (copy > tail->iov_len)
 406				copy = tail->iov_len;
 407			memcpy(tail->iov_base,
 408					(char *)head->iov_base +
 409					head->iov_len - offs,
 410					copy);
 411			result += copy;
 412		}
 413	}
 414	/* Now handle pages */
 415	if (pglen != 0) {
 416		if (pglen > len)
 417			_shift_data_right_pages(buf->pages,
 418					buf->page_base + len,
 419					buf->page_base,
 420					pglen - len);
 421		copy = len;
 422		if (len > pglen)
 423			copy = pglen;
 424		_copy_to_pages(buf->pages, buf->page_base,
 425				(char *)head->iov_base + head->iov_len - len,
 426				copy);
 427		result += copy;
 428	}
 429	head->iov_len -= len;
 430	buf->buflen -= len;
 431	/* Have we truncated the message? */
 432	if (buf->len > buf->buflen)
 433		buf->len = buf->buflen;
 434
 435	return result;
 436}
 437
 438/**
 439 * xdr_shrink_pagelen
 440 * @buf: xdr_buf
 441 * @len: bytes to remove from buf->pages
 442 *
 443 * Shrinks XDR buffer's page array buf->pages by
 444 * 'len' bytes. The extra data is not lost, but is instead
 445 * moved into the tail.
 446 */
 447static unsigned int
 448xdr_shrink_pagelen(struct xdr_buf *buf, size_t len)
 449{
 450	struct kvec *tail;
 451	size_t copy;
 452	unsigned int pglen = buf->page_len;
 453	unsigned int tailbuf_len;
 454	unsigned int result;
 455
 456	result = 0;
 457	tail = buf->tail;
 458	BUG_ON (len > pglen);
 459
 460	tailbuf_len = buf->buflen - buf->head->iov_len - buf->page_len;
 461
 462	/* Shift the tail first */
 463	if (tailbuf_len != 0) {
 464		unsigned int free_space = tailbuf_len - tail->iov_len;
 465
 466		if (len < free_space)
 467			free_space = len;
 468		tail->iov_len += free_space;
 469
 470		copy = len;
 471		if (tail->iov_len > len) {
 472			char *p = (char *)tail->iov_base + len;
 473			memmove(p, tail->iov_base, tail->iov_len - len);
 474			result += tail->iov_len - len;
 475		} else
 476			copy = tail->iov_len;
 477		/* Copy from the inlined pages into the tail */
 478		_copy_from_pages((char *)tail->iov_base,
 479				buf->pages, buf->page_base + pglen - len,
 480				copy);
 481		result += copy;
 482	}
 483	buf->page_len -= len;
 484	buf->buflen -= len;
 485	/* Have we truncated the message? */
 486	if (buf->len > buf->buflen)
 487		buf->len = buf->buflen;
 488
 489	return result;
 490}
 491
 492void
 493xdr_shift_buf(struct xdr_buf *buf, size_t len)
 494{
 495	xdr_shrink_bufhead(buf, len);
 496}
 497EXPORT_SYMBOL_GPL(xdr_shift_buf);
 498
 499/**
 500 * xdr_stream_pos - Return the current offset from the start of the xdr_stream
 501 * @xdr: pointer to struct xdr_stream
 502 */
 503unsigned int xdr_stream_pos(const struct xdr_stream *xdr)
 504{
 505	return (unsigned int)(XDR_QUADLEN(xdr->buf->len) - xdr->nwords) << 2;
 506}
 507EXPORT_SYMBOL_GPL(xdr_stream_pos);
 508
 509/**
 510 * xdr_init_encode - Initialize a struct xdr_stream for sending data.
 511 * @xdr: pointer to xdr_stream struct
 512 * @buf: pointer to XDR buffer in which to encode data
 513 * @p: current pointer inside XDR buffer
 514 * @rqst: pointer to controlling rpc_rqst, for debugging
 515 *
 516 * Note: at the moment the RPC client only passes the length of our
 517 *	 scratch buffer in the xdr_buf's header kvec. Previously this
 518 *	 meant we needed to call xdr_adjust_iovec() after encoding the
 519 *	 data. With the new scheme, the xdr_stream manages the details
 520 *	 of the buffer length, and takes care of adjusting the kvec
 521 *	 length for us.
 522 */
 523void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p,
 524		     struct rpc_rqst *rqst)
 525{
 526	struct kvec *iov = buf->head;
 527	int scratch_len = buf->buflen - buf->page_len - buf->tail[0].iov_len;
 528
 529	xdr_set_scratch_buffer(xdr, NULL, 0);
 530	BUG_ON(scratch_len < 0);
 531	xdr->buf = buf;
 532	xdr->iov = iov;
 533	xdr->p = (__be32 *)((char *)iov->iov_base + iov->iov_len);
 534	xdr->end = (__be32 *)((char *)iov->iov_base + scratch_len);
 535	BUG_ON(iov->iov_len > scratch_len);
 536
 537	if (p != xdr->p && p != NULL) {
 538		size_t len;
 539
 540		BUG_ON(p < xdr->p || p > xdr->end);
 541		len = (char *)p - (char *)xdr->p;
 542		xdr->p = p;
 543		buf->len += len;
 544		iov->iov_len += len;
 545	}
 546	xdr->rqst = rqst;
 547}
 548EXPORT_SYMBOL_GPL(xdr_init_encode);
 549
 550/**
 551 * xdr_commit_encode - Ensure all data is written to buffer
 552 * @xdr: pointer to xdr_stream
 553 *
 554 * We handle encoding across page boundaries by giving the caller a
 555 * temporary location to write to, then later copying the data into
 556 * place; xdr_commit_encode does that copying.
 557 *
 558 * Normally the caller doesn't need to call this directly, as the
 559 * following xdr_reserve_space will do it.  But an explicit call may be
 560 * required at the end of encoding, or any other time when the xdr_buf
 561 * data might be read.
 562 */
 563inline void xdr_commit_encode(struct xdr_stream *xdr)
 564{
 565	int shift = xdr->scratch.iov_len;
 566	void *page;
 567
 568	if (shift == 0)
 569		return;
 570	page = page_address(*xdr->page_ptr);
 571	memcpy(xdr->scratch.iov_base, page, shift);
 572	memmove(page, page + shift, (void *)xdr->p - page);
 573	xdr->scratch.iov_len = 0;
 574}
 575EXPORT_SYMBOL_GPL(xdr_commit_encode);
 576
 577static __be32 *xdr_get_next_encode_buffer(struct xdr_stream *xdr,
 578		size_t nbytes)
 579{
 580	__be32 *p;
 581	int space_left;
 582	int frag1bytes, frag2bytes;
 583
 584	if (nbytes > PAGE_SIZE)
 585		goto out_overflow; /* Bigger buffers require special handling */
 586	if (xdr->buf->len + nbytes > xdr->buf->buflen)
 587		goto out_overflow; /* Sorry, we're totally out of space */
 588	frag1bytes = (xdr->end - xdr->p) << 2;
 589	frag2bytes = nbytes - frag1bytes;
 590	if (xdr->iov)
 591		xdr->iov->iov_len += frag1bytes;
 592	else
 593		xdr->buf->page_len += frag1bytes;
 594	xdr->page_ptr++;
 595	xdr->iov = NULL;
 596	/*
 597	 * If the last encode didn't end exactly on a page boundary, the
 598	 * next one will straddle boundaries.  Encode into the next
 599	 * page, then copy it back later in xdr_commit_encode.  We use
 600	 * the "scratch" iov to track any temporarily unused fragment of
 601	 * space at the end of the previous buffer:
 602	 */
 603	xdr->scratch.iov_base = xdr->p;
 604	xdr->scratch.iov_len = frag1bytes;
 605	p = page_address(*xdr->page_ptr);
 606	/*
 607	 * Note this is where the next encode will start after we've
 608	 * shifted this one back:
 609	 */
 610	xdr->p = (void *)p + frag2bytes;
 611	space_left = xdr->buf->buflen - xdr->buf->len;
 612	xdr->end = (void *)p + min_t(int, space_left, PAGE_SIZE);
 613	xdr->buf->page_len += frag2bytes;
 614	xdr->buf->len += nbytes;
 615	return p;
 616out_overflow:
 617	trace_rpc_xdr_overflow(xdr, nbytes);
 618	return NULL;
 619}
 620
 621/**
 622 * xdr_reserve_space - Reserve buffer space for sending
 623 * @xdr: pointer to xdr_stream
 624 * @nbytes: number of bytes to reserve
 625 *
 626 * Checks that we have enough buffer space to encode 'nbytes' more
 627 * bytes of data. If so, update the total xdr_buf length, and
 628 * adjust the length of the current kvec.
 629 */
 630__be32 * xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes)
 631{
 632	__be32 *p = xdr->p;
 633	__be32 *q;
 634
 635	xdr_commit_encode(xdr);
 636	/* align nbytes on the next 32-bit boundary */
 637	nbytes += 3;
 638	nbytes &= ~3;
 639	q = p + (nbytes >> 2);
 640	if (unlikely(q > xdr->end || q < p))
 641		return xdr_get_next_encode_buffer(xdr, nbytes);
 642	xdr->p = q;
 643	if (xdr->iov)
 644		xdr->iov->iov_len += nbytes;
 645	else
 646		xdr->buf->page_len += nbytes;
 647	xdr->buf->len += nbytes;
 648	return p;
 649}
 650EXPORT_SYMBOL_GPL(xdr_reserve_space);
 651
 652/**
 653 * xdr_truncate_encode - truncate an encode buffer
 654 * @xdr: pointer to xdr_stream
 655 * @len: new length of buffer
 656 *
 657 * Truncates the xdr stream, so that xdr->buf->len == len,
 658 * and xdr->p points at offset len from the start of the buffer, and
 659 * head, tail, and page lengths are adjusted to correspond.
 660 *
 661 * If this means moving xdr->p to a different buffer, we assume that
 662 * that the end pointer should be set to the end of the current page,
 663 * except in the case of the head buffer when we assume the head
 664 * buffer's current length represents the end of the available buffer.
 665 *
 666 * This is *not* safe to use on a buffer that already has inlined page
 667 * cache pages (as in a zero-copy server read reply), except for the
 668 * simple case of truncating from one position in the tail to another.
 669 *
 670 */
 671void xdr_truncate_encode(struct xdr_stream *xdr, size_t len)
 672{
 673	struct xdr_buf *buf = xdr->buf;
 674	struct kvec *head = buf->head;
 675	struct kvec *tail = buf->tail;
 676	int fraglen;
 677	int new;
 678
 679	if (len > buf->len) {
 680		WARN_ON_ONCE(1);
 681		return;
 682	}
 683	xdr_commit_encode(xdr);
 684
 685	fraglen = min_t(int, buf->len - len, tail->iov_len);
 686	tail->iov_len -= fraglen;
 687	buf->len -= fraglen;
 688	if (tail->iov_len) {
 689		xdr->p = tail->iov_base + tail->iov_len;
 690		WARN_ON_ONCE(!xdr->end);
 691		WARN_ON_ONCE(!xdr->iov);
 692		return;
 693	}
 694	WARN_ON_ONCE(fraglen);
 695	fraglen = min_t(int, buf->len - len, buf->page_len);
 696	buf->page_len -= fraglen;
 697	buf->len -= fraglen;
 698
 699	new = buf->page_base + buf->page_len;
 700
 701	xdr->page_ptr = buf->pages + (new >> PAGE_SHIFT);
 702
 703	if (buf->page_len) {
 704		xdr->p = page_address(*xdr->page_ptr);
 705		xdr->end = (void *)xdr->p + PAGE_SIZE;
 706		xdr->p = (void *)xdr->p + (new % PAGE_SIZE);
 707		WARN_ON_ONCE(xdr->iov);
 708		return;
 709	}
 710	if (fraglen)
 711		xdr->end = head->iov_base + head->iov_len;
 712	/* (otherwise assume xdr->end is already set) */
 713	xdr->page_ptr--;
 714	head->iov_len = len;
 715	buf->len = len;
 716	xdr->p = head->iov_base + head->iov_len;
 717	xdr->iov = buf->head;
 718}
 719EXPORT_SYMBOL(xdr_truncate_encode);
 720
 721/**
 722 * xdr_restrict_buflen - decrease available buffer space
 723 * @xdr: pointer to xdr_stream
 724 * @newbuflen: new maximum number of bytes available
 725 *
 726 * Adjust our idea of how much space is available in the buffer.
 727 * If we've already used too much space in the buffer, returns -1.
 728 * If the available space is already smaller than newbuflen, returns 0
 729 * and does nothing.  Otherwise, adjusts xdr->buf->buflen to newbuflen
 730 * and ensures xdr->end is set at most offset newbuflen from the start
 731 * of the buffer.
 732 */
 733int xdr_restrict_buflen(struct xdr_stream *xdr, int newbuflen)
 734{
 735	struct xdr_buf *buf = xdr->buf;
 736	int left_in_this_buf = (void *)xdr->end - (void *)xdr->p;
 737	int end_offset = buf->len + left_in_this_buf;
 738
 739	if (newbuflen < 0 || newbuflen < buf->len)
 740		return -1;
 741	if (newbuflen > buf->buflen)
 742		return 0;
 743	if (newbuflen < end_offset)
 744		xdr->end = (void *)xdr->end + newbuflen - end_offset;
 745	buf->buflen = newbuflen;
 746	return 0;
 747}
 748EXPORT_SYMBOL(xdr_restrict_buflen);
 749
 750/**
 751 * xdr_write_pages - Insert a list of pages into an XDR buffer for sending
 752 * @xdr: pointer to xdr_stream
 753 * @pages: list of pages
 754 * @base: offset of first byte
 755 * @len: length of data in bytes
 756 *
 757 */
 758void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, unsigned int base,
 759		 unsigned int len)
 760{
 761	struct xdr_buf *buf = xdr->buf;
 762	struct kvec *iov = buf->tail;
 763	buf->pages = pages;
 764	buf->page_base = base;
 765	buf->page_len = len;
 766
 767	iov->iov_base = (char *)xdr->p;
 768	iov->iov_len  = 0;
 769	xdr->iov = iov;
 770
 771	if (len & 3) {
 772		unsigned int pad = 4 - (len & 3);
 773
 774		BUG_ON(xdr->p >= xdr->end);
 775		iov->iov_base = (char *)xdr->p + (len & 3);
 776		iov->iov_len  += pad;
 777		len += pad;
 778		*xdr->p++ = 0;
 779	}
 780	buf->buflen += len;
 781	buf->len += len;
 782}
 783EXPORT_SYMBOL_GPL(xdr_write_pages);
 784
 785static void xdr_set_iov(struct xdr_stream *xdr, struct kvec *iov,
 786		unsigned int len)
 787{
 788	if (len > iov->iov_len)
 789		len = iov->iov_len;
 790	xdr->p = (__be32*)iov->iov_base;
 
 
 791	xdr->end = (__be32*)(iov->iov_base + len);
 792	xdr->iov = iov;
 793	xdr->page_ptr = NULL;
 794}
 795
 796static int xdr_set_page_base(struct xdr_stream *xdr,
 797		unsigned int base, unsigned int len)
 798{
 799	unsigned int pgnr;
 800	unsigned int maxlen;
 801	unsigned int pgoff;
 802	unsigned int pgend;
 803	void *kaddr;
 804
 805	maxlen = xdr->buf->page_len;
 806	if (base >= maxlen)
 807		return -EINVAL;
 808	maxlen -= base;
 809	if (len > maxlen)
 810		len = maxlen;
 811
 812	base += xdr->buf->page_base;
 813
 814	pgnr = base >> PAGE_SHIFT;
 815	xdr->page_ptr = &xdr->buf->pages[pgnr];
 816	kaddr = page_address(*xdr->page_ptr);
 817
 818	pgoff = base & ~PAGE_MASK;
 819	xdr->p = (__be32*)(kaddr + pgoff);
 820
 821	pgend = pgoff + len;
 822	if (pgend > PAGE_SIZE)
 823		pgend = PAGE_SIZE;
 824	xdr->end = (__be32*)(kaddr + pgend);
 825	xdr->iov = NULL;
 826	return 0;
 827}
 828
 829static void xdr_set_next_page(struct xdr_stream *xdr)
 830{
 831	unsigned int newbase;
 832
 833	newbase = (1 + xdr->page_ptr - xdr->buf->pages) << PAGE_SHIFT;
 834	newbase -= xdr->buf->page_base;
 835
 836	if (xdr_set_page_base(xdr, newbase, PAGE_SIZE) < 0)
 837		xdr_set_iov(xdr, xdr->buf->tail, xdr->nwords << 2);
 838}
 839
 840static bool xdr_set_next_buffer(struct xdr_stream *xdr)
 841{
 842	if (xdr->page_ptr != NULL)
 843		xdr_set_next_page(xdr);
 844	else if (xdr->iov == xdr->buf->head) {
 845		if (xdr_set_page_base(xdr, 0, PAGE_SIZE) < 0)
 846			xdr_set_iov(xdr, xdr->buf->tail, xdr->nwords << 2);
 847	}
 848	return xdr->p != xdr->end;
 849}
 850
 851/**
 852 * xdr_init_decode - Initialize an xdr_stream for decoding data.
 853 * @xdr: pointer to xdr_stream struct
 854 * @buf: pointer to XDR buffer from which to decode data
 855 * @p: current pointer inside XDR buffer
 856 * @rqst: pointer to controlling rpc_rqst, for debugging
 857 */
 858void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p,
 859		     struct rpc_rqst *rqst)
 860{
 861	xdr->buf = buf;
 862	xdr->scratch.iov_base = NULL;
 863	xdr->scratch.iov_len = 0;
 864	xdr->nwords = XDR_QUADLEN(buf->len);
 865	if (buf->head[0].iov_len != 0)
 866		xdr_set_iov(xdr, buf->head, buf->len);
 867	else if (buf->page_len != 0)
 868		xdr_set_page_base(xdr, 0, buf->len);
 869	else
 870		xdr_set_iov(xdr, buf->head, buf->len);
 871	if (p != NULL && p > xdr->p && xdr->end >= p) {
 872		xdr->nwords -= p - xdr->p;
 873		xdr->p = p;
 874	}
 875	xdr->rqst = rqst;
 876}
 877EXPORT_SYMBOL_GPL(xdr_init_decode);
 878
 879/**
 880 * xdr_init_decode_pages - Initialize an xdr_stream for decoding into pages
 881 * @xdr: pointer to xdr_stream struct
 882 * @buf: pointer to XDR buffer from which to decode data
 883 * @pages: list of pages to decode into
 884 * @len: length in bytes of buffer in pages
 885 */
 886void xdr_init_decode_pages(struct xdr_stream *xdr, struct xdr_buf *buf,
 887			   struct page **pages, unsigned int len)
 888{
 889	memset(buf, 0, sizeof(*buf));
 890	buf->pages =  pages;
 891	buf->page_len =  len;
 892	buf->buflen =  len;
 893	buf->len = len;
 894	xdr_init_decode(xdr, buf, NULL, NULL);
 895}
 896EXPORT_SYMBOL_GPL(xdr_init_decode_pages);
 897
 898static __be32 * __xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes)
 899{
 900	unsigned int nwords = XDR_QUADLEN(nbytes);
 901	__be32 *p = xdr->p;
 902	__be32 *q = p + nwords;
 903
 904	if (unlikely(nwords > xdr->nwords || q > xdr->end || q < p))
 905		return NULL;
 906	xdr->p = q;
 907	xdr->nwords -= nwords;
 908	return p;
 909}
 910
 911/**
 912 * xdr_set_scratch_buffer - Attach a scratch buffer for decoding data.
 913 * @xdr: pointer to xdr_stream struct
 914 * @buf: pointer to an empty buffer
 915 * @buflen: size of 'buf'
 916 *
 917 * The scratch buffer is used when decoding from an array of pages.
 918 * If an xdr_inline_decode() call spans across page boundaries, then
 919 * we copy the data into the scratch buffer in order to allow linear
 920 * access.
 921 */
 922void xdr_set_scratch_buffer(struct xdr_stream *xdr, void *buf, size_t buflen)
 923{
 924	xdr->scratch.iov_base = buf;
 925	xdr->scratch.iov_len = buflen;
 926}
 927EXPORT_SYMBOL_GPL(xdr_set_scratch_buffer);
 928
 929static __be32 *xdr_copy_to_scratch(struct xdr_stream *xdr, size_t nbytes)
 930{
 931	__be32 *p;
 932	char *cpdest = xdr->scratch.iov_base;
 933	size_t cplen = (char *)xdr->end - (char *)xdr->p;
 934
 935	if (nbytes > xdr->scratch.iov_len)
 936		goto out_overflow;
 937	p = __xdr_inline_decode(xdr, cplen);
 938	if (p == NULL)
 939		return NULL;
 940	memcpy(cpdest, p, cplen);
 941	if (!xdr_set_next_buffer(xdr))
 942		goto out_overflow;
 943	cpdest += cplen;
 944	nbytes -= cplen;
 
 
 945	p = __xdr_inline_decode(xdr, nbytes);
 946	if (p == NULL)
 947		return NULL;
 948	memcpy(cpdest, p, nbytes);
 949	return xdr->scratch.iov_base;
 950out_overflow:
 951	trace_rpc_xdr_overflow(xdr, nbytes);
 952	return NULL;
 953}
 954
 955/**
 956 * xdr_inline_decode - Retrieve XDR data to decode
 957 * @xdr: pointer to xdr_stream struct
 958 * @nbytes: number of bytes of data to decode
 959 *
 960 * Check if the input buffer is long enough to enable us to decode
 961 * 'nbytes' more bytes of data starting at the current position.
 962 * If so return the current pointer, then update the current
 963 * pointer position.
 964 */
 965__be32 * xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes)
 966{
 967	__be32 *p;
 968
 969	if (unlikely(nbytes == 0))
 970		return xdr->p;
 971	if (xdr->p == xdr->end && !xdr_set_next_buffer(xdr))
 972		goto out_overflow;
 973	p = __xdr_inline_decode(xdr, nbytes);
 974	if (p != NULL)
 975		return p;
 976	return xdr_copy_to_scratch(xdr, nbytes);
 977out_overflow:
 978	trace_rpc_xdr_overflow(xdr, nbytes);
 979	return NULL;
 980}
 981EXPORT_SYMBOL_GPL(xdr_inline_decode);
 982
 983static unsigned int xdr_align_pages(struct xdr_stream *xdr, unsigned int len)
 984{
 985	struct xdr_buf *buf = xdr->buf;
 986	struct kvec *iov;
 987	unsigned int nwords = XDR_QUADLEN(len);
 988	unsigned int cur = xdr_stream_pos(xdr);
 989	unsigned int copied, offset;
 990
 991	if (xdr->nwords == 0)
 992		return 0;
 993
 994	/* Realign pages to current pointer position */
 995	iov = buf->head;
 996	if (iov->iov_len > cur) {
 997		offset = iov->iov_len - cur;
 998		copied = xdr_shrink_bufhead(buf, offset);
 999		trace_rpc_xdr_alignment(xdr, offset, copied);
1000		xdr->nwords = XDR_QUADLEN(buf->len - cur);
1001	}
1002
1003	if (nwords > xdr->nwords) {
1004		nwords = xdr->nwords;
1005		len = nwords << 2;
1006	}
1007	if (buf->page_len <= len)
1008		len = buf->page_len;
1009	else if (nwords < xdr->nwords) {
1010		/* Truncate page data and move it into the tail */
1011		offset = buf->page_len - len;
1012		copied = xdr_shrink_pagelen(buf, offset);
1013		trace_rpc_xdr_alignment(xdr, offset, copied);
1014		xdr->nwords = XDR_QUADLEN(buf->len - cur);
1015	}
1016	return len;
1017}
1018
1019/**
1020 * xdr_read_pages - Ensure page-based XDR data to decode is aligned at current pointer position
1021 * @xdr: pointer to xdr_stream struct
1022 * @len: number of bytes of page data
1023 *
1024 * Moves data beyond the current pointer position from the XDR head[] buffer
1025 * into the page list. Any data that lies beyond current position + "len"
1026 * bytes is moved into the XDR tail[].
1027 *
1028 * Returns the number of XDR encoded bytes now contained in the pages
1029 */
1030unsigned int xdr_read_pages(struct xdr_stream *xdr, unsigned int len)
1031{
1032	struct xdr_buf *buf = xdr->buf;
1033	struct kvec *iov;
1034	unsigned int nwords;
1035	unsigned int end;
1036	unsigned int padding;
1037
1038	len = xdr_align_pages(xdr, len);
1039	if (len == 0)
1040		return 0;
1041	nwords = XDR_QUADLEN(len);
1042	padding = (nwords << 2) - len;
 
 
 
 
 
1043	xdr->iov = iov = buf->tail;
1044	/* Compute remaining message length.  */
1045	end = ((xdr->nwords - nwords) << 2) + padding;
1046	if (end > iov->iov_len)
1047		end = iov->iov_len;
1048
 
 
1049	/*
1050	 * Position current pointer at beginning of tail, and
1051	 * set remaining message length.
1052	 */
1053	xdr->p = (__be32 *)((char *)iov->iov_base + padding);
1054	xdr->end = (__be32 *)((char *)iov->iov_base + end);
1055	xdr->page_ptr = NULL;
1056	xdr->nwords = XDR_QUADLEN(end - padding);
1057	return len;
1058}
1059EXPORT_SYMBOL_GPL(xdr_read_pages);
1060
1061/**
1062 * xdr_enter_page - decode data from the XDR page
1063 * @xdr: pointer to xdr_stream struct
1064 * @len: number of bytes of page data
1065 *
1066 * Moves data beyond the current pointer position from the XDR head[] buffer
1067 * into the page list. Any data that lies beyond current position + "len"
1068 * bytes is moved into the XDR tail[]. The current pointer is then
1069 * repositioned at the beginning of the first XDR page.
1070 */
1071void xdr_enter_page(struct xdr_stream *xdr, unsigned int len)
1072{
1073	len = xdr_align_pages(xdr, len);
1074	/*
1075	 * Position current pointer at beginning of tail, and
1076	 * set remaining message length.
1077	 */
1078	if (len != 0)
1079		xdr_set_page_base(xdr, 0, len);
1080}
1081EXPORT_SYMBOL_GPL(xdr_enter_page);
1082
1083static struct kvec empty_iov = {.iov_base = NULL, .iov_len = 0};
1084
1085void
1086xdr_buf_from_iov(struct kvec *iov, struct xdr_buf *buf)
1087{
1088	buf->head[0] = *iov;
1089	buf->tail[0] = empty_iov;
1090	buf->page_len = 0;
1091	buf->buflen = buf->len = iov->iov_len;
1092}
1093EXPORT_SYMBOL_GPL(xdr_buf_from_iov);
1094
1095/**
1096 * xdr_buf_subsegment - set subbuf to a portion of buf
1097 * @buf: an xdr buffer
1098 * @subbuf: the result buffer
1099 * @base: beginning of range in bytes
1100 * @len: length of range in bytes
1101 *
1102 * sets @subbuf to an xdr buffer representing the portion of @buf of
1103 * length @len starting at offset @base.
1104 *
1105 * @buf and @subbuf may be pointers to the same struct xdr_buf.
1106 *
1107 * Returns -1 if base of length are out of bounds.
1108 */
1109int
1110xdr_buf_subsegment(struct xdr_buf *buf, struct xdr_buf *subbuf,
1111			unsigned int base, unsigned int len)
1112{
1113	subbuf->buflen = subbuf->len = len;
1114	if (base < buf->head[0].iov_len) {
1115		subbuf->head[0].iov_base = buf->head[0].iov_base + base;
1116		subbuf->head[0].iov_len = min_t(unsigned int, len,
1117						buf->head[0].iov_len - base);
1118		len -= subbuf->head[0].iov_len;
1119		base = 0;
1120	} else {
1121		base -= buf->head[0].iov_len;
1122		subbuf->head[0].iov_len = 0;
 
1123	}
1124
1125	if (base < buf->page_len) {
1126		subbuf->page_len = min(buf->page_len - base, len);
1127		base += buf->page_base;
1128		subbuf->page_base = base & ~PAGE_MASK;
1129		subbuf->pages = &buf->pages[base >> PAGE_SHIFT];
1130		len -= subbuf->page_len;
1131		base = 0;
1132	} else {
1133		base -= buf->page_len;
1134		subbuf->page_len = 0;
1135	}
1136
1137	if (base < buf->tail[0].iov_len) {
1138		subbuf->tail[0].iov_base = buf->tail[0].iov_base + base;
1139		subbuf->tail[0].iov_len = min_t(unsigned int, len,
1140						buf->tail[0].iov_len - base);
1141		len -= subbuf->tail[0].iov_len;
1142		base = 0;
1143	} else {
1144		base -= buf->tail[0].iov_len;
1145		subbuf->tail[0].iov_len = 0;
 
1146	}
1147
1148	if (base || len)
1149		return -1;
1150	return 0;
1151}
1152EXPORT_SYMBOL_GPL(xdr_buf_subsegment);
1153
1154static void __read_bytes_from_xdr_buf(struct xdr_buf *subbuf, void *obj, unsigned int len)
1155{
1156	unsigned int this_len;
1157
1158	this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
1159	memcpy(obj, subbuf->head[0].iov_base, this_len);
1160	len -= this_len;
1161	obj += this_len;
1162	this_len = min_t(unsigned int, len, subbuf->page_len);
1163	if (this_len)
1164		_copy_from_pages(obj, subbuf->pages, subbuf->page_base, this_len);
1165	len -= this_len;
1166	obj += this_len;
1167	this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len);
1168	memcpy(obj, subbuf->tail[0].iov_base, this_len);
1169}
1170
1171/* obj is assumed to point to allocated memory of size at least len: */
1172int read_bytes_from_xdr_buf(struct xdr_buf *buf, unsigned int base, void *obj, unsigned int len)
1173{
1174	struct xdr_buf subbuf;
1175	int status;
1176
1177	status = xdr_buf_subsegment(buf, &subbuf, base, len);
1178	if (status != 0)
1179		return status;
1180	__read_bytes_from_xdr_buf(&subbuf, obj, len);
1181	return 0;
1182}
1183EXPORT_SYMBOL_GPL(read_bytes_from_xdr_buf);
1184
1185static void __write_bytes_to_xdr_buf(struct xdr_buf *subbuf, void *obj, unsigned int len)
1186{
1187	unsigned int this_len;
1188
1189	this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
1190	memcpy(subbuf->head[0].iov_base, obj, this_len);
1191	len -= this_len;
1192	obj += this_len;
1193	this_len = min_t(unsigned int, len, subbuf->page_len);
1194	if (this_len)
1195		_copy_to_pages(subbuf->pages, subbuf->page_base, obj, this_len);
1196	len -= this_len;
1197	obj += this_len;
1198	this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len);
1199	memcpy(subbuf->tail[0].iov_base, obj, this_len);
1200}
1201
1202/* obj is assumed to point to allocated memory of size at least len: */
1203int write_bytes_to_xdr_buf(struct xdr_buf *buf, unsigned int base, void *obj, unsigned int len)
1204{
1205	struct xdr_buf subbuf;
1206	int status;
1207
1208	status = xdr_buf_subsegment(buf, &subbuf, base, len);
1209	if (status != 0)
1210		return status;
1211	__write_bytes_to_xdr_buf(&subbuf, obj, len);
1212	return 0;
1213}
1214EXPORT_SYMBOL_GPL(write_bytes_to_xdr_buf);
1215
1216int
1217xdr_decode_word(struct xdr_buf *buf, unsigned int base, u32 *obj)
1218{
1219	__be32	raw;
1220	int	status;
1221
1222	status = read_bytes_from_xdr_buf(buf, base, &raw, sizeof(*obj));
1223	if (status)
1224		return status;
1225	*obj = be32_to_cpu(raw);
1226	return 0;
1227}
1228EXPORT_SYMBOL_GPL(xdr_decode_word);
1229
1230int
1231xdr_encode_word(struct xdr_buf *buf, unsigned int base, u32 obj)
1232{
1233	__be32	raw = cpu_to_be32(obj);
1234
1235	return write_bytes_to_xdr_buf(buf, base, &raw, sizeof(obj));
1236}
1237EXPORT_SYMBOL_GPL(xdr_encode_word);
1238
1239/**
1240 * xdr_buf_read_mic() - obtain the address of the GSS mic from xdr buf
1241 * @buf: pointer to buffer containing a mic
1242 * @mic: on success, returns the address of the mic
1243 * @offset: the offset in buf where mic may be found
1244 *
1245 * This function may modify the xdr buf if the mic is found to be straddling
1246 * a boundary between head, pages, and tail.  On success the mic can be read
1247 * from the address returned.  There is no need to free the mic.
1248 *
1249 * Return: Success returns 0, otherwise an integer error.
1250 */
1251int xdr_buf_read_mic(struct xdr_buf *buf, struct xdr_netobj *mic, unsigned int offset)
1252{
1253	struct xdr_buf subbuf;
1254	unsigned int boundary;
1255
1256	if (xdr_decode_word(buf, offset, &mic->len))
1257		return -EFAULT;
1258	offset += 4;
1259
1260	/* Is the mic partially in the head? */
1261	boundary = buf->head[0].iov_len;
1262	if (offset < boundary && (offset + mic->len) > boundary)
1263		xdr_shift_buf(buf, boundary - offset);
1264
1265	/* Is the mic partially in the pages? */
1266	boundary += buf->page_len;
1267	if (offset < boundary && (offset + mic->len) > boundary)
1268		xdr_shrink_pagelen(buf, boundary - offset);
1269
1270	if (xdr_buf_subsegment(buf, &subbuf, offset, mic->len))
1271		return -EFAULT;
1272
1273	/* Is the mic contained entirely in the head? */
1274	mic->data = subbuf.head[0].iov_base;
1275	if (subbuf.head[0].iov_len == mic->len)
1276		return 0;
1277	/* ..or is the mic contained entirely in the tail? */
1278	mic->data = subbuf.tail[0].iov_base;
1279	if (subbuf.tail[0].iov_len == mic->len)
1280		return 0;
1281
1282	/* Find a contiguous area in @buf to hold all of @mic */
1283	if (mic->len > buf->buflen - buf->len)
 
 
 
 
1284		return -ENOMEM;
1285	if (buf->tail[0].iov_len != 0)
1286		mic->data = buf->tail[0].iov_base + buf->tail[0].iov_len;
1287	else
1288		mic->data = buf->head[0].iov_base + buf->head[0].iov_len;
1289	__read_bytes_from_xdr_buf(&subbuf, mic->data, mic->len);
1290	return 0;
1291}
1292EXPORT_SYMBOL_GPL(xdr_buf_read_mic);
1293
1294/* Returns 0 on success, or else a negative error code. */
1295static int
1296xdr_xcode_array2(struct xdr_buf *buf, unsigned int base,
1297		 struct xdr_array2_desc *desc, int encode)
1298{
1299	char *elem = NULL, *c;
1300	unsigned int copied = 0, todo, avail_here;
1301	struct page **ppages = NULL;
1302	int err;
1303
1304	if (encode) {
1305		if (xdr_encode_word(buf, base, desc->array_len) != 0)
1306			return -EINVAL;
1307	} else {
1308		if (xdr_decode_word(buf, base, &desc->array_len) != 0 ||
1309		    desc->array_len > desc->array_maxlen ||
1310		    (unsigned long) base + 4 + desc->array_len *
1311				    desc->elem_size > buf->len)
1312			return -EINVAL;
1313	}
1314	base += 4;
1315
1316	if (!desc->xcode)
1317		return 0;
1318
1319	todo = desc->array_len * desc->elem_size;
1320
1321	/* process head */
1322	if (todo && base < buf->head->iov_len) {
1323		c = buf->head->iov_base + base;
1324		avail_here = min_t(unsigned int, todo,
1325				   buf->head->iov_len - base);
1326		todo -= avail_here;
1327
1328		while (avail_here >= desc->elem_size) {
1329			err = desc->xcode(desc, c);
1330			if (err)
1331				goto out;
1332			c += desc->elem_size;
1333			avail_here -= desc->elem_size;
1334		}
1335		if (avail_here) {
1336			if (!elem) {
1337				elem = kmalloc(desc->elem_size, GFP_KERNEL);
1338				err = -ENOMEM;
1339				if (!elem)
1340					goto out;
1341			}
1342			if (encode) {
1343				err = desc->xcode(desc, elem);
1344				if (err)
1345					goto out;
1346				memcpy(c, elem, avail_here);
1347			} else
1348				memcpy(elem, c, avail_here);
1349			copied = avail_here;
1350		}
1351		base = buf->head->iov_len;  /* align to start of pages */
1352	}
1353
1354	/* process pages array */
1355	base -= buf->head->iov_len;
1356	if (todo && base < buf->page_len) {
1357		unsigned int avail_page;
1358
1359		avail_here = min(todo, buf->page_len - base);
1360		todo -= avail_here;
1361
1362		base += buf->page_base;
1363		ppages = buf->pages + (base >> PAGE_SHIFT);
1364		base &= ~PAGE_MASK;
1365		avail_page = min_t(unsigned int, PAGE_SIZE - base,
1366					avail_here);
1367		c = kmap(*ppages) + base;
1368
1369		while (avail_here) {
1370			avail_here -= avail_page;
1371			if (copied || avail_page < desc->elem_size) {
1372				unsigned int l = min(avail_page,
1373					desc->elem_size - copied);
1374				if (!elem) {
1375					elem = kmalloc(desc->elem_size,
1376						       GFP_KERNEL);
1377					err = -ENOMEM;
1378					if (!elem)
1379						goto out;
1380				}
1381				if (encode) {
1382					if (!copied) {
1383						err = desc->xcode(desc, elem);
1384						if (err)
1385							goto out;
1386					}
1387					memcpy(c, elem + copied, l);
1388					copied += l;
1389					if (copied == desc->elem_size)
1390						copied = 0;
1391				} else {
1392					memcpy(elem + copied, c, l);
1393					copied += l;
1394					if (copied == desc->elem_size) {
1395						err = desc->xcode(desc, elem);
1396						if (err)
1397							goto out;
1398						copied = 0;
1399					}
1400				}
1401				avail_page -= l;
1402				c += l;
1403			}
1404			while (avail_page >= desc->elem_size) {
1405				err = desc->xcode(desc, c);
1406				if (err)
1407					goto out;
1408				c += desc->elem_size;
1409				avail_page -= desc->elem_size;
1410			}
1411			if (avail_page) {
1412				unsigned int l = min(avail_page,
1413					    desc->elem_size - copied);
1414				if (!elem) {
1415					elem = kmalloc(desc->elem_size,
1416						       GFP_KERNEL);
1417					err = -ENOMEM;
1418					if (!elem)
1419						goto out;
1420				}
1421				if (encode) {
1422					if (!copied) {
1423						err = desc->xcode(desc, elem);
1424						if (err)
1425							goto out;
1426					}
1427					memcpy(c, elem + copied, l);
1428					copied += l;
1429					if (copied == desc->elem_size)
1430						copied = 0;
1431				} else {
1432					memcpy(elem + copied, c, l);
1433					copied += l;
1434					if (copied == desc->elem_size) {
1435						err = desc->xcode(desc, elem);
1436						if (err)
1437							goto out;
1438						copied = 0;
1439					}
1440				}
1441			}
1442			if (avail_here) {
1443				kunmap(*ppages);
1444				ppages++;
1445				c = kmap(*ppages);
1446			}
1447
1448			avail_page = min(avail_here,
1449				 (unsigned int) PAGE_SIZE);
1450		}
1451		base = buf->page_len;  /* align to start of tail */
1452	}
1453
1454	/* process tail */
1455	base -= buf->page_len;
1456	if (todo) {
1457		c = buf->tail->iov_base + base;
1458		if (copied) {
1459			unsigned int l = desc->elem_size - copied;
1460
1461			if (encode)
1462				memcpy(c, elem + copied, l);
1463			else {
1464				memcpy(elem + copied, c, l);
1465				err = desc->xcode(desc, elem);
1466				if (err)
1467					goto out;
1468			}
1469			todo -= l;
1470			c += l;
1471		}
1472		while (todo) {
1473			err = desc->xcode(desc, c);
1474			if (err)
1475				goto out;
1476			c += desc->elem_size;
1477			todo -= desc->elem_size;
1478		}
1479	}
1480	err = 0;
1481
1482out:
1483	kfree(elem);
1484	if (ppages)
1485		kunmap(*ppages);
1486	return err;
1487}
1488
1489int
1490xdr_decode_array2(struct xdr_buf *buf, unsigned int base,
1491		  struct xdr_array2_desc *desc)
1492{
1493	if (base >= buf->len)
1494		return -EINVAL;
1495
1496	return xdr_xcode_array2(buf, base, desc, 0);
1497}
1498EXPORT_SYMBOL_GPL(xdr_decode_array2);
1499
1500int
1501xdr_encode_array2(struct xdr_buf *buf, unsigned int base,
1502		  struct xdr_array2_desc *desc)
1503{
1504	if ((unsigned long) base + 4 + desc->array_len * desc->elem_size >
1505	    buf->head->iov_len + buf->page_len + buf->tail->iov_len)
1506		return -EINVAL;
1507
1508	return xdr_xcode_array2(buf, base, desc, 1);
1509}
1510EXPORT_SYMBOL_GPL(xdr_encode_array2);
1511
1512int
1513xdr_process_buf(struct xdr_buf *buf, unsigned int offset, unsigned int len,
1514		int (*actor)(struct scatterlist *, void *), void *data)
1515{
1516	int i, ret = 0;
1517	unsigned int page_len, thislen, page_offset;
1518	struct scatterlist      sg[1];
1519
1520	sg_init_table(sg, 1);
1521
1522	if (offset >= buf->head[0].iov_len) {
1523		offset -= buf->head[0].iov_len;
1524	} else {
1525		thislen = buf->head[0].iov_len - offset;
1526		if (thislen > len)
1527			thislen = len;
1528		sg_set_buf(sg, buf->head[0].iov_base + offset, thislen);
1529		ret = actor(sg, data);
1530		if (ret)
1531			goto out;
1532		offset = 0;
1533		len -= thislen;
1534	}
1535	if (len == 0)
1536		goto out;
1537
1538	if (offset >= buf->page_len) {
1539		offset -= buf->page_len;
1540	} else {
1541		page_len = buf->page_len - offset;
1542		if (page_len > len)
1543			page_len = len;
1544		len -= page_len;
1545		page_offset = (offset + buf->page_base) & (PAGE_SIZE - 1);
1546		i = (offset + buf->page_base) >> PAGE_SHIFT;
1547		thislen = PAGE_SIZE - page_offset;
1548		do {
1549			if (thislen > page_len)
1550				thislen = page_len;
1551			sg_set_page(sg, buf->pages[i], thislen, page_offset);
1552			ret = actor(sg, data);
1553			if (ret)
1554				goto out;
1555			page_len -= thislen;
1556			i++;
1557			page_offset = 0;
1558			thislen = PAGE_SIZE;
1559		} while (page_len != 0);
1560		offset = 0;
1561	}
1562	if (len == 0)
1563		goto out;
1564	if (offset < buf->tail[0].iov_len) {
1565		thislen = buf->tail[0].iov_len - offset;
1566		if (thislen > len)
1567			thislen = len;
1568		sg_set_buf(sg, buf->tail[0].iov_base + offset, thislen);
1569		ret = actor(sg, data);
1570		len -= thislen;
1571	}
1572	if (len != 0)
1573		ret = -EINVAL;
1574out:
1575	return ret;
1576}
1577EXPORT_SYMBOL_GPL(xdr_process_buf);
1578
1579/**
1580 * xdr_stream_decode_opaque - Decode variable length opaque
1581 * @xdr: pointer to xdr_stream
1582 * @ptr: location to store opaque data
1583 * @size: size of storage buffer @ptr
1584 *
1585 * Return values:
1586 *   On success, returns size of object stored in *@ptr
1587 *   %-EBADMSG on XDR buffer overflow
1588 *   %-EMSGSIZE on overflow of storage buffer @ptr
1589 */
1590ssize_t xdr_stream_decode_opaque(struct xdr_stream *xdr, void *ptr, size_t size)
1591{
1592	ssize_t ret;
1593	void *p;
1594
1595	ret = xdr_stream_decode_opaque_inline(xdr, &p, size);
1596	if (ret <= 0)
1597		return ret;
1598	memcpy(ptr, p, ret);
1599	return ret;
1600}
1601EXPORT_SYMBOL_GPL(xdr_stream_decode_opaque);
1602
1603/**
1604 * xdr_stream_decode_opaque_dup - Decode and duplicate variable length opaque
1605 * @xdr: pointer to xdr_stream
1606 * @ptr: location to store pointer to opaque data
1607 * @maxlen: maximum acceptable object size
1608 * @gfp_flags: GFP mask to use
1609 *
1610 * Return values:
1611 *   On success, returns size of object stored in *@ptr
1612 *   %-EBADMSG on XDR buffer overflow
1613 *   %-EMSGSIZE if the size of the object would exceed @maxlen
1614 *   %-ENOMEM on memory allocation failure
1615 */
1616ssize_t xdr_stream_decode_opaque_dup(struct xdr_stream *xdr, void **ptr,
1617		size_t maxlen, gfp_t gfp_flags)
1618{
1619	ssize_t ret;
1620	void *p;
1621
1622	ret = xdr_stream_decode_opaque_inline(xdr, &p, maxlen);
1623	if (ret > 0) {
1624		*ptr = kmemdup(p, ret, gfp_flags);
1625		if (*ptr != NULL)
1626			return ret;
1627		ret = -ENOMEM;
1628	}
1629	*ptr = NULL;
1630	return ret;
1631}
1632EXPORT_SYMBOL_GPL(xdr_stream_decode_opaque_dup);
1633
1634/**
1635 * xdr_stream_decode_string - Decode variable length string
1636 * @xdr: pointer to xdr_stream
1637 * @str: location to store string
1638 * @size: size of storage buffer @str
1639 *
1640 * Return values:
1641 *   On success, returns length of NUL-terminated string stored in *@str
1642 *   %-EBADMSG on XDR buffer overflow
1643 *   %-EMSGSIZE on overflow of storage buffer @str
1644 */
1645ssize_t xdr_stream_decode_string(struct xdr_stream *xdr, char *str, size_t size)
1646{
1647	ssize_t ret;
1648	void *p;
1649
1650	ret = xdr_stream_decode_opaque_inline(xdr, &p, size);
1651	if (ret > 0) {
1652		memcpy(str, p, ret);
1653		str[ret] = '\0';
1654		return strlen(str);
1655	}
1656	*str = '\0';
1657	return ret;
1658}
1659EXPORT_SYMBOL_GPL(xdr_stream_decode_string);
1660
1661/**
1662 * xdr_stream_decode_string_dup - Decode and duplicate variable length string
1663 * @xdr: pointer to xdr_stream
1664 * @str: location to store pointer to string
1665 * @maxlen: maximum acceptable string length
1666 * @gfp_flags: GFP mask to use
1667 *
1668 * Return values:
1669 *   On success, returns length of NUL-terminated string stored in *@ptr
1670 *   %-EBADMSG on XDR buffer overflow
1671 *   %-EMSGSIZE if the size of the string would exceed @maxlen
1672 *   %-ENOMEM on memory allocation failure
1673 */
1674ssize_t xdr_stream_decode_string_dup(struct xdr_stream *xdr, char **str,
1675		size_t maxlen, gfp_t gfp_flags)
1676{
1677	void *p;
1678	ssize_t ret;
1679
1680	ret = xdr_stream_decode_opaque_inline(xdr, &p, maxlen);
1681	if (ret > 0) {
1682		char *s = kmalloc(ret + 1, gfp_flags);
1683		if (s != NULL) {
1684			memcpy(s, p, ret);
1685			s[ret] = '\0';
1686			*str = s;
1687			return strlen(s);
1688		}
1689		ret = -ENOMEM;
1690	}
1691	*str = NULL;
1692	return ret;
1693}
1694EXPORT_SYMBOL_GPL(xdr_stream_decode_string_dup);
v3.1
 
   1/*
   2 * linux/net/sunrpc/xdr.c
   3 *
   4 * Generic XDR support.
   5 *
   6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
   7 */
   8
   9#include <linux/module.h>
  10#include <linux/slab.h>
  11#include <linux/types.h>
  12#include <linux/string.h>
  13#include <linux/kernel.h>
  14#include <linux/pagemap.h>
  15#include <linux/errno.h>
  16#include <linux/sunrpc/xdr.h>
  17#include <linux/sunrpc/msg_prot.h>
 
 
  18
  19/*
  20 * XDR functions for basic NFS types
  21 */
  22__be32 *
  23xdr_encode_netobj(__be32 *p, const struct xdr_netobj *obj)
  24{
  25	unsigned int	quadlen = XDR_QUADLEN(obj->len);
  26
  27	p[quadlen] = 0;		/* zero trailing bytes */
  28	*p++ = cpu_to_be32(obj->len);
  29	memcpy(p, obj->data, obj->len);
  30	return p + XDR_QUADLEN(obj->len);
  31}
  32EXPORT_SYMBOL_GPL(xdr_encode_netobj);
  33
  34__be32 *
  35xdr_decode_netobj(__be32 *p, struct xdr_netobj *obj)
  36{
  37	unsigned int	len;
  38
  39	if ((len = be32_to_cpu(*p++)) > XDR_MAX_NETOBJ)
  40		return NULL;
  41	obj->len  = len;
  42	obj->data = (u8 *) p;
  43	return p + XDR_QUADLEN(len);
  44}
  45EXPORT_SYMBOL_GPL(xdr_decode_netobj);
  46
  47/**
  48 * xdr_encode_opaque_fixed - Encode fixed length opaque data
  49 * @p: pointer to current position in XDR buffer.
  50 * @ptr: pointer to data to encode (or NULL)
  51 * @nbytes: size of data.
  52 *
  53 * Copy the array of data of length nbytes at ptr to the XDR buffer
  54 * at position p, then align to the next 32-bit boundary by padding
  55 * with zero bytes (see RFC1832).
  56 * Note: if ptr is NULL, only the padding is performed.
  57 *
  58 * Returns the updated current XDR buffer position
  59 *
  60 */
  61__be32 *xdr_encode_opaque_fixed(__be32 *p, const void *ptr, unsigned int nbytes)
  62{
  63	if (likely(nbytes != 0)) {
  64		unsigned int quadlen = XDR_QUADLEN(nbytes);
  65		unsigned int padding = (quadlen << 2) - nbytes;
  66
  67		if (ptr != NULL)
  68			memcpy(p, ptr, nbytes);
  69		if (padding != 0)
  70			memset((char *)p + nbytes, 0, padding);
  71		p += quadlen;
  72	}
  73	return p;
  74}
  75EXPORT_SYMBOL_GPL(xdr_encode_opaque_fixed);
  76
  77/**
  78 * xdr_encode_opaque - Encode variable length opaque data
  79 * @p: pointer to current position in XDR buffer.
  80 * @ptr: pointer to data to encode (or NULL)
  81 * @nbytes: size of data.
  82 *
  83 * Returns the updated current XDR buffer position
  84 */
  85__be32 *xdr_encode_opaque(__be32 *p, const void *ptr, unsigned int nbytes)
  86{
  87	*p++ = cpu_to_be32(nbytes);
  88	return xdr_encode_opaque_fixed(p, ptr, nbytes);
  89}
  90EXPORT_SYMBOL_GPL(xdr_encode_opaque);
  91
  92__be32 *
  93xdr_encode_string(__be32 *p, const char *string)
  94{
  95	return xdr_encode_array(p, string, strlen(string));
  96}
  97EXPORT_SYMBOL_GPL(xdr_encode_string);
  98
  99__be32 *
 100xdr_decode_string_inplace(__be32 *p, char **sp,
 101			  unsigned int *lenp, unsigned int maxlen)
 102{
 103	u32 len;
 104
 105	len = be32_to_cpu(*p++);
 106	if (len > maxlen)
 107		return NULL;
 108	*lenp = len;
 109	*sp = (char *) p;
 110	return p + XDR_QUADLEN(len);
 111}
 112EXPORT_SYMBOL_GPL(xdr_decode_string_inplace);
 113
 114/**
 115 * xdr_terminate_string - '\0'-terminate a string residing in an xdr_buf
 116 * @buf: XDR buffer where string resides
 117 * @len: length of string, in bytes
 118 *
 119 */
 120void
 121xdr_terminate_string(struct xdr_buf *buf, const u32 len)
 122{
 123	char *kaddr;
 124
 125	kaddr = kmap_atomic(buf->pages[0], KM_USER0);
 126	kaddr[buf->page_base + len] = '\0';
 127	kunmap_atomic(kaddr, KM_USER0);
 128}
 129EXPORT_SYMBOL_GPL(xdr_terminate_string);
 130
 131void
 132xdr_encode_pages(struct xdr_buf *xdr, struct page **pages, unsigned int base,
 133		 unsigned int len)
 134{
 135	struct kvec *tail = xdr->tail;
 136	u32 *p;
 
 
 137
 138	xdr->pages = pages;
 139	xdr->page_base = base;
 140	xdr->page_len = len;
 
 141
 142	p = (u32 *)xdr->head[0].iov_base + XDR_QUADLEN(xdr->head[0].iov_len);
 143	tail->iov_base = p;
 144	tail->iov_len = 0;
 
 
 
 
 
 
 
 
 
 145
 146	if (len & 3) {
 147		unsigned int pad = 4 - (len & 3);
 148
 149		*p = 0;
 150		tail->iov_base = (char *)p + (len & 3);
 151		tail->iov_len  = pad;
 152		len += pad;
 153	}
 154	xdr->buflen += len;
 155	xdr->len += len;
 156}
 157EXPORT_SYMBOL_GPL(xdr_encode_pages);
 158
 
 
 
 
 
 
 
 
 
 159void
 160xdr_inline_pages(struct xdr_buf *xdr, unsigned int offset,
 161		 struct page **pages, unsigned int base, unsigned int len)
 162{
 163	struct kvec *head = xdr->head;
 164	struct kvec *tail = xdr->tail;
 165	char *buf = (char *)head->iov_base;
 166	unsigned int buflen = head->iov_len;
 167
 168	head->iov_len  = offset;
 169
 170	xdr->pages = pages;
 171	xdr->page_base = base;
 172	xdr->page_len = len;
 173
 174	tail->iov_base = buf + offset;
 175	tail->iov_len = buflen - offset;
 
 
 176
 177	xdr->buflen += len;
 178}
 179EXPORT_SYMBOL_GPL(xdr_inline_pages);
 180
 181/*
 182 * Helper routines for doing 'memmove' like operations on a struct xdr_buf
 183 *
 
 
 184 * _shift_data_right_pages
 185 * @pages: vector of pages containing both the source and dest memory area.
 186 * @pgto_base: page vector address of destination
 187 * @pgfrom_base: page vector address of source
 188 * @len: number of bytes to copy
 189 *
 190 * Note: the addresses pgto_base and pgfrom_base are both calculated in
 191 *       the same way:
 192 *            if a memory area starts at byte 'base' in page 'pages[i]',
 193 *            then its address is given as (i << PAGE_CACHE_SHIFT) + base
 194 * Also note: pgfrom_base must be < pgto_base, but the memory areas
 195 * 	they point to may overlap.
 196 */
 197static void
 198_shift_data_right_pages(struct page **pages, size_t pgto_base,
 199		size_t pgfrom_base, size_t len)
 200{
 201	struct page **pgfrom, **pgto;
 202	char *vfrom, *vto;
 203	size_t copy;
 204
 205	BUG_ON(pgto_base <= pgfrom_base);
 206
 207	pgto_base += len;
 208	pgfrom_base += len;
 209
 210	pgto = pages + (pgto_base >> PAGE_CACHE_SHIFT);
 211	pgfrom = pages + (pgfrom_base >> PAGE_CACHE_SHIFT);
 212
 213	pgto_base &= ~PAGE_CACHE_MASK;
 214	pgfrom_base &= ~PAGE_CACHE_MASK;
 215
 216	do {
 217		/* Are any pointers crossing a page boundary? */
 218		if (pgto_base == 0) {
 219			pgto_base = PAGE_CACHE_SIZE;
 220			pgto--;
 221		}
 222		if (pgfrom_base == 0) {
 223			pgfrom_base = PAGE_CACHE_SIZE;
 224			pgfrom--;
 225		}
 226
 227		copy = len;
 228		if (copy > pgto_base)
 229			copy = pgto_base;
 230		if (copy > pgfrom_base)
 231			copy = pgfrom_base;
 232		pgto_base -= copy;
 233		pgfrom_base -= copy;
 234
 235		vto = kmap_atomic(*pgto, KM_USER0);
 236		vfrom = kmap_atomic(*pgfrom, KM_USER1);
 237		memmove(vto + pgto_base, vfrom + pgfrom_base, copy);
 
 
 
 
 238		flush_dcache_page(*pgto);
 239		kunmap_atomic(vfrom, KM_USER1);
 240		kunmap_atomic(vto, KM_USER0);
 241
 242	} while ((len -= copy) != 0);
 243}
 244
 245/*
 246 * _copy_to_pages
 247 * @pages: array of pages
 248 * @pgbase: page vector address of destination
 249 * @p: pointer to source data
 250 * @len: length
 251 *
 252 * Copies data from an arbitrary memory location into an array of pages
 253 * The copy is assumed to be non-overlapping.
 254 */
 255static void
 256_copy_to_pages(struct page **pages, size_t pgbase, const char *p, size_t len)
 257{
 258	struct page **pgto;
 259	char *vto;
 260	size_t copy;
 261
 262	pgto = pages + (pgbase >> PAGE_CACHE_SHIFT);
 263	pgbase &= ~PAGE_CACHE_MASK;
 264
 265	for (;;) {
 266		copy = PAGE_CACHE_SIZE - pgbase;
 267		if (copy > len)
 268			copy = len;
 269
 270		vto = kmap_atomic(*pgto, KM_USER0);
 271		memcpy(vto + pgbase, p, copy);
 272		kunmap_atomic(vto, KM_USER0);
 273
 274		len -= copy;
 275		if (len == 0)
 276			break;
 277
 278		pgbase += copy;
 279		if (pgbase == PAGE_CACHE_SIZE) {
 280			flush_dcache_page(*pgto);
 281			pgbase = 0;
 282			pgto++;
 283		}
 284		p += copy;
 285	}
 286	flush_dcache_page(*pgto);
 287}
 288
 289/*
 290 * _copy_from_pages
 291 * @p: pointer to destination
 292 * @pages: array of pages
 293 * @pgbase: offset of source data
 294 * @len: length
 295 *
 296 * Copies data into an arbitrary memory location from an array of pages
 297 * The copy is assumed to be non-overlapping.
 298 */
 299static void
 300_copy_from_pages(char *p, struct page **pages, size_t pgbase, size_t len)
 301{
 302	struct page **pgfrom;
 303	char *vfrom;
 304	size_t copy;
 305
 306	pgfrom = pages + (pgbase >> PAGE_CACHE_SHIFT);
 307	pgbase &= ~PAGE_CACHE_MASK;
 308
 309	do {
 310		copy = PAGE_CACHE_SIZE - pgbase;
 311		if (copy > len)
 312			copy = len;
 313
 314		vfrom = kmap_atomic(*pgfrom, KM_USER0);
 315		memcpy(p, vfrom + pgbase, copy);
 316		kunmap_atomic(vfrom, KM_USER0);
 317
 318		pgbase += copy;
 319		if (pgbase == PAGE_CACHE_SIZE) {
 320			pgbase = 0;
 321			pgfrom++;
 322		}
 323		p += copy;
 324
 325	} while ((len -= copy) != 0);
 326}
 
 327
 328/*
 329 * xdr_shrink_bufhead
 330 * @buf: xdr_buf
 331 * @len: bytes to remove from buf->head[0]
 332 *
 333 * Shrinks XDR buffer's header kvec buf->head[0] by
 334 * 'len' bytes. The extra data is not lost, but is instead
 335 * moved into the inlined pages and/or the tail.
 336 */
 337static void
 338xdr_shrink_bufhead(struct xdr_buf *buf, size_t len)
 339{
 340	struct kvec *head, *tail;
 341	size_t copy, offs;
 342	unsigned int pglen = buf->page_len;
 
 343
 
 344	tail = buf->tail;
 345	head = buf->head;
 346	BUG_ON (len > head->iov_len);
 
 
 
 347
 348	/* Shift the tail first */
 349	if (tail->iov_len != 0) {
 350		if (tail->iov_len > len) {
 351			copy = tail->iov_len - len;
 352			memmove((char *)tail->iov_base + len,
 353					tail->iov_base, copy);
 
 354		}
 355		/* Copy from the inlined pages into the tail */
 356		copy = len;
 357		if (copy > pglen)
 358			copy = pglen;
 359		offs = len - copy;
 360		if (offs >= tail->iov_len)
 361			copy = 0;
 362		else if (copy > tail->iov_len - offs)
 363			copy = tail->iov_len - offs;
 364		if (copy != 0)
 365			_copy_from_pages((char *)tail->iov_base + offs,
 366					buf->pages,
 367					buf->page_base + pglen + offs - len,
 368					copy);
 
 
 369		/* Do we also need to copy data from the head into the tail ? */
 370		if (len > pglen) {
 371			offs = copy = len - pglen;
 372			if (copy > tail->iov_len)
 373				copy = tail->iov_len;
 374			memcpy(tail->iov_base,
 375					(char *)head->iov_base +
 376					head->iov_len - offs,
 377					copy);
 
 378		}
 379	}
 380	/* Now handle pages */
 381	if (pglen != 0) {
 382		if (pglen > len)
 383			_shift_data_right_pages(buf->pages,
 384					buf->page_base + len,
 385					buf->page_base,
 386					pglen - len);
 387		copy = len;
 388		if (len > pglen)
 389			copy = pglen;
 390		_copy_to_pages(buf->pages, buf->page_base,
 391				(char *)head->iov_base + head->iov_len - len,
 392				copy);
 
 393	}
 394	head->iov_len -= len;
 395	buf->buflen -= len;
 396	/* Have we truncated the message? */
 397	if (buf->len > buf->buflen)
 398		buf->len = buf->buflen;
 
 
 399}
 400
 401/*
 402 * xdr_shrink_pagelen
 403 * @buf: xdr_buf
 404 * @len: bytes to remove from buf->pages
 405 *
 406 * Shrinks XDR buffer's page array buf->pages by
 407 * 'len' bytes. The extra data is not lost, but is instead
 408 * moved into the tail.
 409 */
 410static void
 411xdr_shrink_pagelen(struct xdr_buf *buf, size_t len)
 412{
 413	struct kvec *tail;
 414	size_t copy;
 415	unsigned int pglen = buf->page_len;
 416	unsigned int tailbuf_len;
 
 417
 
 418	tail = buf->tail;
 419	BUG_ON (len > pglen);
 420
 421	tailbuf_len = buf->buflen - buf->head->iov_len - buf->page_len;
 422
 423	/* Shift the tail first */
 424	if (tailbuf_len != 0) {
 425		unsigned int free_space = tailbuf_len - tail->iov_len;
 426
 427		if (len < free_space)
 428			free_space = len;
 429		tail->iov_len += free_space;
 430
 431		copy = len;
 432		if (tail->iov_len > len) {
 433			char *p = (char *)tail->iov_base + len;
 434			memmove(p, tail->iov_base, tail->iov_len - len);
 
 435		} else
 436			copy = tail->iov_len;
 437		/* Copy from the inlined pages into the tail */
 438		_copy_from_pages((char *)tail->iov_base,
 439				buf->pages, buf->page_base + pglen - len,
 440				copy);
 
 441	}
 442	buf->page_len -= len;
 443	buf->buflen -= len;
 444	/* Have we truncated the message? */
 445	if (buf->len > buf->buflen)
 446		buf->len = buf->buflen;
 
 
 447}
 448
 449void
 450xdr_shift_buf(struct xdr_buf *buf, size_t len)
 451{
 452	xdr_shrink_bufhead(buf, len);
 453}
 454EXPORT_SYMBOL_GPL(xdr_shift_buf);
 455
 456/**
 
 
 
 
 
 
 
 
 
 
 457 * xdr_init_encode - Initialize a struct xdr_stream for sending data.
 458 * @xdr: pointer to xdr_stream struct
 459 * @buf: pointer to XDR buffer in which to encode data
 460 * @p: current pointer inside XDR buffer
 
 461 *
 462 * Note: at the moment the RPC client only passes the length of our
 463 *	 scratch buffer in the xdr_buf's header kvec. Previously this
 464 *	 meant we needed to call xdr_adjust_iovec() after encoding the
 465 *	 data. With the new scheme, the xdr_stream manages the details
 466 *	 of the buffer length, and takes care of adjusting the kvec
 467 *	 length for us.
 468 */
 469void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p)
 
 470{
 471	struct kvec *iov = buf->head;
 472	int scratch_len = buf->buflen - buf->page_len - buf->tail[0].iov_len;
 473
 
 474	BUG_ON(scratch_len < 0);
 475	xdr->buf = buf;
 476	xdr->iov = iov;
 477	xdr->p = (__be32 *)((char *)iov->iov_base + iov->iov_len);
 478	xdr->end = (__be32 *)((char *)iov->iov_base + scratch_len);
 479	BUG_ON(iov->iov_len > scratch_len);
 480
 481	if (p != xdr->p && p != NULL) {
 482		size_t len;
 483
 484		BUG_ON(p < xdr->p || p > xdr->end);
 485		len = (char *)p - (char *)xdr->p;
 486		xdr->p = p;
 487		buf->len += len;
 488		iov->iov_len += len;
 489	}
 
 490}
 491EXPORT_SYMBOL_GPL(xdr_init_encode);
 492
 493/**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 494 * xdr_reserve_space - Reserve buffer space for sending
 495 * @xdr: pointer to xdr_stream
 496 * @nbytes: number of bytes to reserve
 497 *
 498 * Checks that we have enough buffer space to encode 'nbytes' more
 499 * bytes of data. If so, update the total xdr_buf length, and
 500 * adjust the length of the current kvec.
 501 */
 502__be32 * xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes)
 503{
 504	__be32 *p = xdr->p;
 505	__be32 *q;
 506
 
 507	/* align nbytes on the next 32-bit boundary */
 508	nbytes += 3;
 509	nbytes &= ~3;
 510	q = p + (nbytes >> 2);
 511	if (unlikely(q > xdr->end || q < p))
 512		return NULL;
 513	xdr->p = q;
 514	xdr->iov->iov_len += nbytes;
 
 
 
 515	xdr->buf->len += nbytes;
 516	return p;
 517}
 518EXPORT_SYMBOL_GPL(xdr_reserve_space);
 519
 520/**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 521 * xdr_write_pages - Insert a list of pages into an XDR buffer for sending
 522 * @xdr: pointer to xdr_stream
 523 * @pages: list of pages
 524 * @base: offset of first byte
 525 * @len: length of data in bytes
 526 *
 527 */
 528void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, unsigned int base,
 529		 unsigned int len)
 530{
 531	struct xdr_buf *buf = xdr->buf;
 532	struct kvec *iov = buf->tail;
 533	buf->pages = pages;
 534	buf->page_base = base;
 535	buf->page_len = len;
 536
 537	iov->iov_base = (char *)xdr->p;
 538	iov->iov_len  = 0;
 539	xdr->iov = iov;
 540
 541	if (len & 3) {
 542		unsigned int pad = 4 - (len & 3);
 543
 544		BUG_ON(xdr->p >= xdr->end);
 545		iov->iov_base = (char *)xdr->p + (len & 3);
 546		iov->iov_len  += pad;
 547		len += pad;
 548		*xdr->p++ = 0;
 549	}
 550	buf->buflen += len;
 551	buf->len += len;
 552}
 553EXPORT_SYMBOL_GPL(xdr_write_pages);
 554
 555static void xdr_set_iov(struct xdr_stream *xdr, struct kvec *iov,
 556		__be32 *p, unsigned int len)
 557{
 558	if (len > iov->iov_len)
 559		len = iov->iov_len;
 560	if (p == NULL)
 561		p = (__be32*)iov->iov_base;
 562	xdr->p = p;
 563	xdr->end = (__be32*)(iov->iov_base + len);
 564	xdr->iov = iov;
 565	xdr->page_ptr = NULL;
 566}
 567
 568static int xdr_set_page_base(struct xdr_stream *xdr,
 569		unsigned int base, unsigned int len)
 570{
 571	unsigned int pgnr;
 572	unsigned int maxlen;
 573	unsigned int pgoff;
 574	unsigned int pgend;
 575	void *kaddr;
 576
 577	maxlen = xdr->buf->page_len;
 578	if (base >= maxlen)
 579		return -EINVAL;
 580	maxlen -= base;
 581	if (len > maxlen)
 582		len = maxlen;
 583
 584	base += xdr->buf->page_base;
 585
 586	pgnr = base >> PAGE_SHIFT;
 587	xdr->page_ptr = &xdr->buf->pages[pgnr];
 588	kaddr = page_address(*xdr->page_ptr);
 589
 590	pgoff = base & ~PAGE_MASK;
 591	xdr->p = (__be32*)(kaddr + pgoff);
 592
 593	pgend = pgoff + len;
 594	if (pgend > PAGE_SIZE)
 595		pgend = PAGE_SIZE;
 596	xdr->end = (__be32*)(kaddr + pgend);
 597	xdr->iov = NULL;
 598	return 0;
 599}
 600
 601static void xdr_set_next_page(struct xdr_stream *xdr)
 602{
 603	unsigned int newbase;
 604
 605	newbase = (1 + xdr->page_ptr - xdr->buf->pages) << PAGE_SHIFT;
 606	newbase -= xdr->buf->page_base;
 607
 608	if (xdr_set_page_base(xdr, newbase, PAGE_SIZE) < 0)
 609		xdr_set_iov(xdr, xdr->buf->tail, NULL, xdr->buf->len);
 610}
 611
 612static bool xdr_set_next_buffer(struct xdr_stream *xdr)
 613{
 614	if (xdr->page_ptr != NULL)
 615		xdr_set_next_page(xdr);
 616	else if (xdr->iov == xdr->buf->head) {
 617		if (xdr_set_page_base(xdr, 0, PAGE_SIZE) < 0)
 618			xdr_set_iov(xdr, xdr->buf->tail, NULL, xdr->buf->len);
 619	}
 620	return xdr->p != xdr->end;
 621}
 622
 623/**
 624 * xdr_init_decode - Initialize an xdr_stream for decoding data.
 625 * @xdr: pointer to xdr_stream struct
 626 * @buf: pointer to XDR buffer from which to decode data
 627 * @p: current pointer inside XDR buffer
 
 628 */
 629void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p)
 
 630{
 631	xdr->buf = buf;
 632	xdr->scratch.iov_base = NULL;
 633	xdr->scratch.iov_len = 0;
 
 634	if (buf->head[0].iov_len != 0)
 635		xdr_set_iov(xdr, buf->head, p, buf->len);
 636	else if (buf->page_len != 0)
 637		xdr_set_page_base(xdr, 0, buf->len);
 
 
 
 
 
 
 
 638}
 639EXPORT_SYMBOL_GPL(xdr_init_decode);
 640
 641/**
 642 * xdr_init_decode - Initialize an xdr_stream for decoding data.
 643 * @xdr: pointer to xdr_stream struct
 644 * @buf: pointer to XDR buffer from which to decode data
 645 * @pages: list of pages to decode into
 646 * @len: length in bytes of buffer in pages
 647 */
 648void xdr_init_decode_pages(struct xdr_stream *xdr, struct xdr_buf *buf,
 649			   struct page **pages, unsigned int len)
 650{
 651	memset(buf, 0, sizeof(*buf));
 652	buf->pages =  pages;
 653	buf->page_len =  len;
 654	buf->buflen =  len;
 655	buf->len = len;
 656	xdr_init_decode(xdr, buf, NULL);
 657}
 658EXPORT_SYMBOL_GPL(xdr_init_decode_pages);
 659
 660static __be32 * __xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes)
 661{
 
 662	__be32 *p = xdr->p;
 663	__be32 *q = p + XDR_QUADLEN(nbytes);
 664
 665	if (unlikely(q > xdr->end || q < p))
 666		return NULL;
 667	xdr->p = q;
 
 668	return p;
 669}
 670
 671/**
 672 * xdr_set_scratch_buffer - Attach a scratch buffer for decoding data.
 673 * @xdr: pointer to xdr_stream struct
 674 * @buf: pointer to an empty buffer
 675 * @buflen: size of 'buf'
 676 *
 677 * The scratch buffer is used when decoding from an array of pages.
 678 * If an xdr_inline_decode() call spans across page boundaries, then
 679 * we copy the data into the scratch buffer in order to allow linear
 680 * access.
 681 */
 682void xdr_set_scratch_buffer(struct xdr_stream *xdr, void *buf, size_t buflen)
 683{
 684	xdr->scratch.iov_base = buf;
 685	xdr->scratch.iov_len = buflen;
 686}
 687EXPORT_SYMBOL_GPL(xdr_set_scratch_buffer);
 688
 689static __be32 *xdr_copy_to_scratch(struct xdr_stream *xdr, size_t nbytes)
 690{
 691	__be32 *p;
 692	void *cpdest = xdr->scratch.iov_base;
 693	size_t cplen = (char *)xdr->end - (char *)xdr->p;
 694
 695	if (nbytes > xdr->scratch.iov_len)
 
 
 
 696		return NULL;
 697	memcpy(cpdest, xdr->p, cplen);
 
 
 698	cpdest += cplen;
 699	nbytes -= cplen;
 700	if (!xdr_set_next_buffer(xdr))
 701		return NULL;
 702	p = __xdr_inline_decode(xdr, nbytes);
 703	if (p == NULL)
 704		return NULL;
 705	memcpy(cpdest, p, nbytes);
 706	return xdr->scratch.iov_base;
 
 
 
 707}
 708
 709/**
 710 * xdr_inline_decode - Retrieve XDR data to decode
 711 * @xdr: pointer to xdr_stream struct
 712 * @nbytes: number of bytes of data to decode
 713 *
 714 * Check if the input buffer is long enough to enable us to decode
 715 * 'nbytes' more bytes of data starting at the current position.
 716 * If so return the current pointer, then update the current
 717 * pointer position.
 718 */
 719__be32 * xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes)
 720{
 721	__be32 *p;
 722
 723	if (nbytes == 0)
 724		return xdr->p;
 725	if (xdr->p == xdr->end && !xdr_set_next_buffer(xdr))
 726		return NULL;
 727	p = __xdr_inline_decode(xdr, nbytes);
 728	if (p != NULL)
 729		return p;
 730	return xdr_copy_to_scratch(xdr, nbytes);
 
 
 
 731}
 732EXPORT_SYMBOL_GPL(xdr_inline_decode);
 733
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 734/**
 735 * xdr_read_pages - Ensure page-based XDR data to decode is aligned at current pointer position
 736 * @xdr: pointer to xdr_stream struct
 737 * @len: number of bytes of page data
 738 *
 739 * Moves data beyond the current pointer position from the XDR head[] buffer
 740 * into the page list. Any data that lies beyond current position + "len"
 741 * bytes is moved into the XDR tail[].
 
 
 742 */
 743void xdr_read_pages(struct xdr_stream *xdr, unsigned int len)
 744{
 745	struct xdr_buf *buf = xdr->buf;
 746	struct kvec *iov;
 747	ssize_t shift;
 748	unsigned int end;
 749	int padding;
 750
 751	/* Realign pages to current pointer position */
 752	iov  = buf->head;
 753	shift = iov->iov_len + (char *)iov->iov_base - (char *)xdr->p;
 754	if (shift > 0)
 755		xdr_shrink_bufhead(buf, shift);
 756
 757	/* Truncate page data and move it into the tail */
 758	if (buf->page_len > len)
 759		xdr_shrink_pagelen(buf, buf->page_len - len);
 760	padding = (XDR_QUADLEN(len) << 2) - len;
 761	xdr->iov = iov = buf->tail;
 762	/* Compute remaining message length.  */
 763	end = iov->iov_len;
 764	shift = buf->buflen - buf->len;
 765	if (shift < end)
 766		end -= shift;
 767	else if (shift > 0)
 768		end = 0;
 769	/*
 770	 * Position current pointer at beginning of tail, and
 771	 * set remaining message length.
 772	 */
 773	xdr->p = (__be32 *)((char *)iov->iov_base + padding);
 774	xdr->end = (__be32 *)((char *)iov->iov_base + end);
 
 
 
 775}
 776EXPORT_SYMBOL_GPL(xdr_read_pages);
 777
 778/**
 779 * xdr_enter_page - decode data from the XDR page
 780 * @xdr: pointer to xdr_stream struct
 781 * @len: number of bytes of page data
 782 *
 783 * Moves data beyond the current pointer position from the XDR head[] buffer
 784 * into the page list. Any data that lies beyond current position + "len"
 785 * bytes is moved into the XDR tail[]. The current pointer is then
 786 * repositioned at the beginning of the first XDR page.
 787 */
 788void xdr_enter_page(struct xdr_stream *xdr, unsigned int len)
 789{
 790	xdr_read_pages(xdr, len);
 791	/*
 792	 * Position current pointer at beginning of tail, and
 793	 * set remaining message length.
 794	 */
 795	xdr_set_page_base(xdr, 0, len);
 
 796}
 797EXPORT_SYMBOL_GPL(xdr_enter_page);
 798
 799static struct kvec empty_iov = {.iov_base = NULL, .iov_len = 0};
 800
 801void
 802xdr_buf_from_iov(struct kvec *iov, struct xdr_buf *buf)
 803{
 804	buf->head[0] = *iov;
 805	buf->tail[0] = empty_iov;
 806	buf->page_len = 0;
 807	buf->buflen = buf->len = iov->iov_len;
 808}
 809EXPORT_SYMBOL_GPL(xdr_buf_from_iov);
 810
 811/* Sets subbuf to the portion of buf of length len beginning base bytes
 812 * from the start of buf. Returns -1 if base of length are out of bounds. */
 
 
 
 
 
 
 
 
 
 
 
 
 813int
 814xdr_buf_subsegment(struct xdr_buf *buf, struct xdr_buf *subbuf,
 815			unsigned int base, unsigned int len)
 816{
 817	subbuf->buflen = subbuf->len = len;
 818	if (base < buf->head[0].iov_len) {
 819		subbuf->head[0].iov_base = buf->head[0].iov_base + base;
 820		subbuf->head[0].iov_len = min_t(unsigned int, len,
 821						buf->head[0].iov_len - base);
 822		len -= subbuf->head[0].iov_len;
 823		base = 0;
 824	} else {
 825		subbuf->head[0].iov_base = NULL;
 826		subbuf->head[0].iov_len = 0;
 827		base -= buf->head[0].iov_len;
 828	}
 829
 830	if (base < buf->page_len) {
 831		subbuf->page_len = min(buf->page_len - base, len);
 832		base += buf->page_base;
 833		subbuf->page_base = base & ~PAGE_CACHE_MASK;
 834		subbuf->pages = &buf->pages[base >> PAGE_CACHE_SHIFT];
 835		len -= subbuf->page_len;
 836		base = 0;
 837	} else {
 838		base -= buf->page_len;
 839		subbuf->page_len = 0;
 840	}
 841
 842	if (base < buf->tail[0].iov_len) {
 843		subbuf->tail[0].iov_base = buf->tail[0].iov_base + base;
 844		subbuf->tail[0].iov_len = min_t(unsigned int, len,
 845						buf->tail[0].iov_len - base);
 846		len -= subbuf->tail[0].iov_len;
 847		base = 0;
 848	} else {
 849		subbuf->tail[0].iov_base = NULL;
 850		subbuf->tail[0].iov_len = 0;
 851		base -= buf->tail[0].iov_len;
 852	}
 853
 854	if (base || len)
 855		return -1;
 856	return 0;
 857}
 858EXPORT_SYMBOL_GPL(xdr_buf_subsegment);
 859
 860static void __read_bytes_from_xdr_buf(struct xdr_buf *subbuf, void *obj, unsigned int len)
 861{
 862	unsigned int this_len;
 863
 864	this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
 865	memcpy(obj, subbuf->head[0].iov_base, this_len);
 866	len -= this_len;
 867	obj += this_len;
 868	this_len = min_t(unsigned int, len, subbuf->page_len);
 869	if (this_len)
 870		_copy_from_pages(obj, subbuf->pages, subbuf->page_base, this_len);
 871	len -= this_len;
 872	obj += this_len;
 873	this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len);
 874	memcpy(obj, subbuf->tail[0].iov_base, this_len);
 875}
 876
 877/* obj is assumed to point to allocated memory of size at least len: */
 878int read_bytes_from_xdr_buf(struct xdr_buf *buf, unsigned int base, void *obj, unsigned int len)
 879{
 880	struct xdr_buf subbuf;
 881	int status;
 882
 883	status = xdr_buf_subsegment(buf, &subbuf, base, len);
 884	if (status != 0)
 885		return status;
 886	__read_bytes_from_xdr_buf(&subbuf, obj, len);
 887	return 0;
 888}
 889EXPORT_SYMBOL_GPL(read_bytes_from_xdr_buf);
 890
 891static void __write_bytes_to_xdr_buf(struct xdr_buf *subbuf, void *obj, unsigned int len)
 892{
 893	unsigned int this_len;
 894
 895	this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
 896	memcpy(subbuf->head[0].iov_base, obj, this_len);
 897	len -= this_len;
 898	obj += this_len;
 899	this_len = min_t(unsigned int, len, subbuf->page_len);
 900	if (this_len)
 901		_copy_to_pages(subbuf->pages, subbuf->page_base, obj, this_len);
 902	len -= this_len;
 903	obj += this_len;
 904	this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len);
 905	memcpy(subbuf->tail[0].iov_base, obj, this_len);
 906}
 907
 908/* obj is assumed to point to allocated memory of size at least len: */
 909int write_bytes_to_xdr_buf(struct xdr_buf *buf, unsigned int base, void *obj, unsigned int len)
 910{
 911	struct xdr_buf subbuf;
 912	int status;
 913
 914	status = xdr_buf_subsegment(buf, &subbuf, base, len);
 915	if (status != 0)
 916		return status;
 917	__write_bytes_to_xdr_buf(&subbuf, obj, len);
 918	return 0;
 919}
 920EXPORT_SYMBOL_GPL(write_bytes_to_xdr_buf);
 921
 922int
 923xdr_decode_word(struct xdr_buf *buf, unsigned int base, u32 *obj)
 924{
 925	__be32	raw;
 926	int	status;
 927
 928	status = read_bytes_from_xdr_buf(buf, base, &raw, sizeof(*obj));
 929	if (status)
 930		return status;
 931	*obj = be32_to_cpu(raw);
 932	return 0;
 933}
 934EXPORT_SYMBOL_GPL(xdr_decode_word);
 935
 936int
 937xdr_encode_word(struct xdr_buf *buf, unsigned int base, u32 obj)
 938{
 939	__be32	raw = cpu_to_be32(obj);
 940
 941	return write_bytes_to_xdr_buf(buf, base, &raw, sizeof(obj));
 942}
 943EXPORT_SYMBOL_GPL(xdr_encode_word);
 944
 945/* If the netobj starting offset bytes from the start of xdr_buf is contained
 946 * entirely in the head or the tail, set object to point to it; otherwise
 947 * try to find space for it at the end of the tail, copy it there, and
 948 * set obj to point to it. */
 949int xdr_buf_read_netobj(struct xdr_buf *buf, struct xdr_netobj *obj, unsigned int offset)
 
 
 
 
 
 
 
 
 950{
 951	struct xdr_buf subbuf;
 
 952
 953	if (xdr_decode_word(buf, offset, &obj->len))
 954		return -EFAULT;
 955	if (xdr_buf_subsegment(buf, &subbuf, offset + 4, obj->len))
 
 
 
 
 
 
 
 
 
 
 
 
 956		return -EFAULT;
 957
 958	/* Is the obj contained entirely in the head? */
 959	obj->data = subbuf.head[0].iov_base;
 960	if (subbuf.head[0].iov_len == obj->len)
 961		return 0;
 962	/* ..or is the obj contained entirely in the tail? */
 963	obj->data = subbuf.tail[0].iov_base;
 964	if (subbuf.tail[0].iov_len == obj->len)
 965		return 0;
 966
 967	/* use end of tail as storage for obj:
 968	 * (We don't copy to the beginning because then we'd have
 969	 * to worry about doing a potentially overlapping copy.
 970	 * This assumes the object is at most half the length of the
 971	 * tail.) */
 972	if (obj->len > buf->buflen - buf->len)
 973		return -ENOMEM;
 974	if (buf->tail[0].iov_len != 0)
 975		obj->data = buf->tail[0].iov_base + buf->tail[0].iov_len;
 976	else
 977		obj->data = buf->head[0].iov_base + buf->head[0].iov_len;
 978	__read_bytes_from_xdr_buf(&subbuf, obj->data, obj->len);
 979	return 0;
 980}
 981EXPORT_SYMBOL_GPL(xdr_buf_read_netobj);
 982
 983/* Returns 0 on success, or else a negative error code. */
 984static int
 985xdr_xcode_array2(struct xdr_buf *buf, unsigned int base,
 986		 struct xdr_array2_desc *desc, int encode)
 987{
 988	char *elem = NULL, *c;
 989	unsigned int copied = 0, todo, avail_here;
 990	struct page **ppages = NULL;
 991	int err;
 992
 993	if (encode) {
 994		if (xdr_encode_word(buf, base, desc->array_len) != 0)
 995			return -EINVAL;
 996	} else {
 997		if (xdr_decode_word(buf, base, &desc->array_len) != 0 ||
 998		    desc->array_len > desc->array_maxlen ||
 999		    (unsigned long) base + 4 + desc->array_len *
1000				    desc->elem_size > buf->len)
1001			return -EINVAL;
1002	}
1003	base += 4;
1004
1005	if (!desc->xcode)
1006		return 0;
1007
1008	todo = desc->array_len * desc->elem_size;
1009
1010	/* process head */
1011	if (todo && base < buf->head->iov_len) {
1012		c = buf->head->iov_base + base;
1013		avail_here = min_t(unsigned int, todo,
1014				   buf->head->iov_len - base);
1015		todo -= avail_here;
1016
1017		while (avail_here >= desc->elem_size) {
1018			err = desc->xcode(desc, c);
1019			if (err)
1020				goto out;
1021			c += desc->elem_size;
1022			avail_here -= desc->elem_size;
1023		}
1024		if (avail_here) {
1025			if (!elem) {
1026				elem = kmalloc(desc->elem_size, GFP_KERNEL);
1027				err = -ENOMEM;
1028				if (!elem)
1029					goto out;
1030			}
1031			if (encode) {
1032				err = desc->xcode(desc, elem);
1033				if (err)
1034					goto out;
1035				memcpy(c, elem, avail_here);
1036			} else
1037				memcpy(elem, c, avail_here);
1038			copied = avail_here;
1039		}
1040		base = buf->head->iov_len;  /* align to start of pages */
1041	}
1042
1043	/* process pages array */
1044	base -= buf->head->iov_len;
1045	if (todo && base < buf->page_len) {
1046		unsigned int avail_page;
1047
1048		avail_here = min(todo, buf->page_len - base);
1049		todo -= avail_here;
1050
1051		base += buf->page_base;
1052		ppages = buf->pages + (base >> PAGE_CACHE_SHIFT);
1053		base &= ~PAGE_CACHE_MASK;
1054		avail_page = min_t(unsigned int, PAGE_CACHE_SIZE - base,
1055					avail_here);
1056		c = kmap(*ppages) + base;
1057
1058		while (avail_here) {
1059			avail_here -= avail_page;
1060			if (copied || avail_page < desc->elem_size) {
1061				unsigned int l = min(avail_page,
1062					desc->elem_size - copied);
1063				if (!elem) {
1064					elem = kmalloc(desc->elem_size,
1065						       GFP_KERNEL);
1066					err = -ENOMEM;
1067					if (!elem)
1068						goto out;
1069				}
1070				if (encode) {
1071					if (!copied) {
1072						err = desc->xcode(desc, elem);
1073						if (err)
1074							goto out;
1075					}
1076					memcpy(c, elem + copied, l);
1077					copied += l;
1078					if (copied == desc->elem_size)
1079						copied = 0;
1080				} else {
1081					memcpy(elem + copied, c, l);
1082					copied += l;
1083					if (copied == desc->elem_size) {
1084						err = desc->xcode(desc, elem);
1085						if (err)
1086							goto out;
1087						copied = 0;
1088					}
1089				}
1090				avail_page -= l;
1091				c += l;
1092			}
1093			while (avail_page >= desc->elem_size) {
1094				err = desc->xcode(desc, c);
1095				if (err)
1096					goto out;
1097				c += desc->elem_size;
1098				avail_page -= desc->elem_size;
1099			}
1100			if (avail_page) {
1101				unsigned int l = min(avail_page,
1102					    desc->elem_size - copied);
1103				if (!elem) {
1104					elem = kmalloc(desc->elem_size,
1105						       GFP_KERNEL);
1106					err = -ENOMEM;
1107					if (!elem)
1108						goto out;
1109				}
1110				if (encode) {
1111					if (!copied) {
1112						err = desc->xcode(desc, elem);
1113						if (err)
1114							goto out;
1115					}
1116					memcpy(c, elem + copied, l);
1117					copied += l;
1118					if (copied == desc->elem_size)
1119						copied = 0;
1120				} else {
1121					memcpy(elem + copied, c, l);
1122					copied += l;
1123					if (copied == desc->elem_size) {
1124						err = desc->xcode(desc, elem);
1125						if (err)
1126							goto out;
1127						copied = 0;
1128					}
1129				}
1130			}
1131			if (avail_here) {
1132				kunmap(*ppages);
1133				ppages++;
1134				c = kmap(*ppages);
1135			}
1136
1137			avail_page = min(avail_here,
1138				 (unsigned int) PAGE_CACHE_SIZE);
1139		}
1140		base = buf->page_len;  /* align to start of tail */
1141	}
1142
1143	/* process tail */
1144	base -= buf->page_len;
1145	if (todo) {
1146		c = buf->tail->iov_base + base;
1147		if (copied) {
1148			unsigned int l = desc->elem_size - copied;
1149
1150			if (encode)
1151				memcpy(c, elem + copied, l);
1152			else {
1153				memcpy(elem + copied, c, l);
1154				err = desc->xcode(desc, elem);
1155				if (err)
1156					goto out;
1157			}
1158			todo -= l;
1159			c += l;
1160		}
1161		while (todo) {
1162			err = desc->xcode(desc, c);
1163			if (err)
1164				goto out;
1165			c += desc->elem_size;
1166			todo -= desc->elem_size;
1167		}
1168	}
1169	err = 0;
1170
1171out:
1172	kfree(elem);
1173	if (ppages)
1174		kunmap(*ppages);
1175	return err;
1176}
1177
1178int
1179xdr_decode_array2(struct xdr_buf *buf, unsigned int base,
1180		  struct xdr_array2_desc *desc)
1181{
1182	if (base >= buf->len)
1183		return -EINVAL;
1184
1185	return xdr_xcode_array2(buf, base, desc, 0);
1186}
1187EXPORT_SYMBOL_GPL(xdr_decode_array2);
1188
1189int
1190xdr_encode_array2(struct xdr_buf *buf, unsigned int base,
1191		  struct xdr_array2_desc *desc)
1192{
1193	if ((unsigned long) base + 4 + desc->array_len * desc->elem_size >
1194	    buf->head->iov_len + buf->page_len + buf->tail->iov_len)
1195		return -EINVAL;
1196
1197	return xdr_xcode_array2(buf, base, desc, 1);
1198}
1199EXPORT_SYMBOL_GPL(xdr_encode_array2);
1200
1201int
1202xdr_process_buf(struct xdr_buf *buf, unsigned int offset, unsigned int len,
1203		int (*actor)(struct scatterlist *, void *), void *data)
1204{
1205	int i, ret = 0;
1206	unsigned page_len, thislen, page_offset;
1207	struct scatterlist      sg[1];
1208
1209	sg_init_table(sg, 1);
1210
1211	if (offset >= buf->head[0].iov_len) {
1212		offset -= buf->head[0].iov_len;
1213	} else {
1214		thislen = buf->head[0].iov_len - offset;
1215		if (thislen > len)
1216			thislen = len;
1217		sg_set_buf(sg, buf->head[0].iov_base + offset, thislen);
1218		ret = actor(sg, data);
1219		if (ret)
1220			goto out;
1221		offset = 0;
1222		len -= thislen;
1223	}
1224	if (len == 0)
1225		goto out;
1226
1227	if (offset >= buf->page_len) {
1228		offset -= buf->page_len;
1229	} else {
1230		page_len = buf->page_len - offset;
1231		if (page_len > len)
1232			page_len = len;
1233		len -= page_len;
1234		page_offset = (offset + buf->page_base) & (PAGE_CACHE_SIZE - 1);
1235		i = (offset + buf->page_base) >> PAGE_CACHE_SHIFT;
1236		thislen = PAGE_CACHE_SIZE - page_offset;
1237		do {
1238			if (thislen > page_len)
1239				thislen = page_len;
1240			sg_set_page(sg, buf->pages[i], thislen, page_offset);
1241			ret = actor(sg, data);
1242			if (ret)
1243				goto out;
1244			page_len -= thislen;
1245			i++;
1246			page_offset = 0;
1247			thislen = PAGE_CACHE_SIZE;
1248		} while (page_len != 0);
1249		offset = 0;
1250	}
1251	if (len == 0)
1252		goto out;
1253	if (offset < buf->tail[0].iov_len) {
1254		thislen = buf->tail[0].iov_len - offset;
1255		if (thislen > len)
1256			thislen = len;
1257		sg_set_buf(sg, buf->tail[0].iov_base + offset, thislen);
1258		ret = actor(sg, data);
1259		len -= thislen;
1260	}
1261	if (len != 0)
1262		ret = -EINVAL;
1263out:
1264	return ret;
1265}
1266EXPORT_SYMBOL_GPL(xdr_process_buf);
1267