1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/net/sunrpc/xdr.c
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>
22 static void _copy_to_pages(struct page **, size_t, const char *, size_t);
26 * XDR functions for basic NFS types
29 xdr_encode_netobj(__be32 *p, const struct xdr_netobj *obj)
31 unsigned int quadlen = XDR_QUADLEN(obj->len);
33 p[quadlen] = 0; /* zero trailing bytes */
34 *p++ = cpu_to_be32(obj->len);
35 memcpy(p, obj->data, obj->len);
36 return p + XDR_QUADLEN(obj->len);
38 EXPORT_SYMBOL_GPL(xdr_encode_netobj);
41 xdr_decode_netobj(__be32 *p, struct xdr_netobj *obj)
45 if ((len = be32_to_cpu(*p++)) > XDR_MAX_NETOBJ)
49 return p + XDR_QUADLEN(len);
51 EXPORT_SYMBOL_GPL(xdr_decode_netobj);
54 * xdr_encode_opaque_fixed - Encode fixed length opaque data
55 * @p: pointer to current position in XDR buffer.
56 * @ptr: pointer to data to encode (or NULL)
57 * @nbytes: size of data.
59 * Copy the array of data of length nbytes at ptr to the XDR buffer
60 * at position p, then align to the next 32-bit boundary by padding
61 * with zero bytes (see RFC1832).
62 * Note: if ptr is NULL, only the padding is performed.
64 * Returns the updated current XDR buffer position
67 __be32 *xdr_encode_opaque_fixed(__be32 *p, const void *ptr, unsigned int nbytes)
69 if (likely(nbytes != 0)) {
70 unsigned int quadlen = XDR_QUADLEN(nbytes);
71 unsigned int padding = (quadlen << 2) - nbytes;
74 memcpy(p, ptr, nbytes);
76 memset((char *)p + nbytes, 0, padding);
81 EXPORT_SYMBOL_GPL(xdr_encode_opaque_fixed);
84 * xdr_encode_opaque - Encode variable length opaque data
85 * @p: pointer to current position in XDR buffer.
86 * @ptr: pointer to data to encode (or NULL)
87 * @nbytes: size of data.
89 * Returns the updated current XDR buffer position
91 __be32 *xdr_encode_opaque(__be32 *p, const void *ptr, unsigned int nbytes)
93 *p++ = cpu_to_be32(nbytes);
94 return xdr_encode_opaque_fixed(p, ptr, nbytes);
96 EXPORT_SYMBOL_GPL(xdr_encode_opaque);
99 xdr_encode_string(__be32 *p, const char *string)
101 return xdr_encode_array(p, string, strlen(string));
103 EXPORT_SYMBOL_GPL(xdr_encode_string);
106 xdr_decode_string_inplace(__be32 *p, char **sp,
107 unsigned int *lenp, unsigned int maxlen)
111 len = be32_to_cpu(*p++);
116 return p + XDR_QUADLEN(len);
118 EXPORT_SYMBOL_GPL(xdr_decode_string_inplace);
121 * xdr_terminate_string - '\0'-terminate a string residing in an xdr_buf
122 * @buf: XDR buffer where string resides
123 * @len: length of string, in bytes
127 xdr_terminate_string(struct xdr_buf *buf, const u32 len)
131 kaddr = kmap_atomic(buf->pages[0]);
132 kaddr[buf->page_base + len] = '\0';
133 kunmap_atomic(kaddr);
135 EXPORT_SYMBOL_GPL(xdr_terminate_string);
138 xdr_buf_pagecount(struct xdr_buf *buf)
142 return (buf->page_base + buf->page_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
146 xdr_alloc_bvec(struct xdr_buf *buf, gfp_t gfp)
148 size_t i, n = xdr_buf_pagecount(buf);
150 if (n != 0 && buf->bvec == NULL) {
151 buf->bvec = kmalloc_array(n, sizeof(buf->bvec[0]), gfp);
154 for (i = 0; i < n; i++) {
155 buf->bvec[i].bv_page = buf->pages[i];
156 buf->bvec[i].bv_len = PAGE_SIZE;
157 buf->bvec[i].bv_offset = 0;
164 xdr_free_bvec(struct xdr_buf *buf)
171 * xdr_inline_pages - Prepare receive buffer for a large reply
172 * @xdr: xdr_buf into which reply will be placed
173 * @offset: expected offset where data payload will start, in bytes
174 * @pages: vector of struct page pointers
175 * @base: offset in first page where receive should start, in bytes
176 * @len: expected size of the upper layer data payload, in bytes
180 xdr_inline_pages(struct xdr_buf *xdr, unsigned int offset,
181 struct page **pages, unsigned int base, unsigned int len)
183 struct kvec *head = xdr->head;
184 struct kvec *tail = xdr->tail;
185 char *buf = (char *)head->iov_base;
186 unsigned int buflen = head->iov_len;
188 head->iov_len = offset;
191 xdr->page_base = base;
194 tail->iov_base = buf + offset;
195 tail->iov_len = buflen - offset;
196 if ((xdr->page_len & 3) == 0)
197 tail->iov_len -= sizeof(__be32);
201 EXPORT_SYMBOL_GPL(xdr_inline_pages);
204 * Helper routines for doing 'memmove' like operations on a struct xdr_buf
208 * _shift_data_left_pages
209 * @pages: vector of pages containing both the source and dest memory area.
210 * @pgto_base: page vector address of destination
211 * @pgfrom_base: page vector address of source
212 * @len: number of bytes to copy
214 * Note: the addresses pgto_base and pgfrom_base are both calculated in
216 * if a memory area starts at byte 'base' in page 'pages[i]',
217 * then its address is given as (i << PAGE_CACHE_SHIFT) + base
218 * Alse note: pgto_base must be < pgfrom_base, but the memory areas
219 * they point to may overlap.
222 _shift_data_left_pages(struct page **pages, size_t pgto_base,
223 size_t pgfrom_base, size_t len)
225 struct page **pgfrom, **pgto;
229 BUG_ON(pgfrom_base <= pgto_base);
231 pgto = pages + (pgto_base >> PAGE_SHIFT);
232 pgfrom = pages + (pgfrom_base >> PAGE_SHIFT);
234 pgto_base &= ~PAGE_MASK;
235 pgfrom_base &= ~PAGE_MASK;
238 if (pgto_base >= PAGE_SIZE) {
242 if (pgfrom_base >= PAGE_SIZE){
248 if (copy > (PAGE_SIZE - pgto_base))
249 copy = PAGE_SIZE - pgto_base;
250 if (copy > (PAGE_SIZE - pgfrom_base))
251 copy = PAGE_SIZE - pgfrom_base;
253 vto = kmap_atomic(*pgto);
254 if (*pgto != *pgfrom) {
255 vfrom = kmap_atomic(*pgfrom);
256 memcpy(vto + pgto_base, vfrom + pgfrom_base, copy);
257 kunmap_atomic(vfrom);
259 memmove(vto + pgto_base, vto + pgfrom_base, copy);
260 flush_dcache_page(*pgto);
266 } while ((len -= copy) != 0);
270 _shift_data_left_tail(struct xdr_buf *buf, unsigned int pgto, size_t len)
272 struct kvec *tail = buf->tail;
274 if (len > tail->iov_len)
277 _copy_to_pages(buf->pages,
278 buf->page_base + pgto,
279 (char *)tail->iov_base,
281 tail->iov_len -= len;
283 if (tail->iov_len > 0)
284 memmove((char *)tail->iov_base,
285 tail->iov_base + len,
290 * _shift_data_right_pages
291 * @pages: vector of pages containing both the source and dest memory area.
292 * @pgto_base: page vector address of destination
293 * @pgfrom_base: page vector address of source
294 * @len: number of bytes to copy
296 * Note: the addresses pgto_base and pgfrom_base are both calculated in
298 * if a memory area starts at byte 'base' in page 'pages[i]',
299 * then its address is given as (i << PAGE_SHIFT) + base
300 * Also note: pgfrom_base must be < pgto_base, but the memory areas
301 * they point to may overlap.
304 _shift_data_right_pages(struct page **pages, size_t pgto_base,
305 size_t pgfrom_base, size_t len)
307 struct page **pgfrom, **pgto;
311 BUG_ON(pgto_base <= pgfrom_base);
316 pgto = pages + (pgto_base >> PAGE_SHIFT);
317 pgfrom = pages + (pgfrom_base >> PAGE_SHIFT);
319 pgto_base &= ~PAGE_MASK;
320 pgfrom_base &= ~PAGE_MASK;
323 /* Are any pointers crossing a page boundary? */
324 if (pgto_base == 0) {
325 pgto_base = PAGE_SIZE;
328 if (pgfrom_base == 0) {
329 pgfrom_base = PAGE_SIZE;
334 if (copy > pgto_base)
336 if (copy > pgfrom_base)
341 vto = kmap_atomic(*pgto);
342 if (*pgto != *pgfrom) {
343 vfrom = kmap_atomic(*pgfrom);
344 memcpy(vto + pgto_base, vfrom + pgfrom_base, copy);
345 kunmap_atomic(vfrom);
347 memmove(vto + pgto_base, vto + pgfrom_base, copy);
348 flush_dcache_page(*pgto);
351 } while ((len -= copy) != 0);
355 _shift_data_right_tail(struct xdr_buf *buf, unsigned int pgfrom, size_t len)
357 struct kvec *tail = buf->tail;
358 unsigned int tailbuf_len;
359 unsigned int result = 0;
362 tailbuf_len = buf->buflen - buf->head->iov_len - buf->page_len;
364 /* Shift the tail first */
365 if (tailbuf_len != 0) {
366 unsigned int free_space = tailbuf_len - tail->iov_len;
368 if (len < free_space)
370 if (len > free_space)
373 tail->iov_len += free_space;
376 if (tail->iov_len > len) {
377 char *p = (char *)tail->iov_base + len;
378 memmove(p, tail->iov_base, tail->iov_len - free_space);
379 result += tail->iov_len - free_space;
381 copy = tail->iov_len;
383 /* Copy from the inlined pages into the tail */
384 _copy_from_pages((char *)tail->iov_base,
386 buf->page_base + pgfrom,
396 * @pages: array of pages
397 * @pgbase: page vector address of destination
398 * @p: pointer to source data
401 * Copies data from an arbitrary memory location into an array of pages
402 * The copy is assumed to be non-overlapping.
405 _copy_to_pages(struct page **pages, size_t pgbase, const char *p, size_t len)
411 pgto = pages + (pgbase >> PAGE_SHIFT);
412 pgbase &= ~PAGE_MASK;
415 copy = PAGE_SIZE - pgbase;
419 vto = kmap_atomic(*pgto);
420 memcpy(vto + pgbase, p, copy);
428 if (pgbase == PAGE_SIZE) {
429 flush_dcache_page(*pgto);
435 flush_dcache_page(*pgto);
440 * @p: pointer to destination
441 * @pages: array of pages
442 * @pgbase: offset of source data
445 * Copies data into an arbitrary memory location from an array of pages
446 * The copy is assumed to be non-overlapping.
449 _copy_from_pages(char *p, struct page **pages, size_t pgbase, size_t len)
451 struct page **pgfrom;
455 pgfrom = pages + (pgbase >> PAGE_SHIFT);
456 pgbase &= ~PAGE_MASK;
459 copy = PAGE_SIZE - pgbase;
463 vfrom = kmap_atomic(*pgfrom);
464 memcpy(p, vfrom + pgbase, copy);
465 kunmap_atomic(vfrom);
468 if (pgbase == PAGE_SIZE) {
474 } while ((len -= copy) != 0);
476 EXPORT_SYMBOL_GPL(_copy_from_pages);
480 * @pages: array of pages
481 * @pgbase: beginning page vector address
485 _zero_pages(struct page **pages, size_t pgbase, size_t len)
491 page = pages + (pgbase >> PAGE_SHIFT);
492 pgbase &= ~PAGE_MASK;
495 zero = PAGE_SIZE - pgbase;
499 vpage = kmap_atomic(*page);
500 memset(vpage + pgbase, 0, zero);
501 kunmap_atomic(vpage);
503 flush_dcache_page(*page);
507 } while ((len -= zero) != 0);
513 * @len: bytes to remove from buf->head[0]
515 * Shrinks XDR buffer's header kvec buf->head[0] by
516 * 'len' bytes. The extra data is not lost, but is instead
517 * moved into the inlined pages and/or the tail.
520 xdr_shrink_bufhead(struct xdr_buf *buf, size_t len)
522 struct kvec *head, *tail;
524 unsigned int pglen = buf->page_len;
531 WARN_ON_ONCE(len > head->iov_len);
532 if (len > head->iov_len)
535 /* Shift the tail first */
536 if (tail->iov_len != 0) {
537 if (tail->iov_len > len) {
538 copy = tail->iov_len - len;
539 memmove((char *)tail->iov_base + len,
540 tail->iov_base, copy);
543 /* Copy from the inlined pages into the tail */
548 if (offs >= tail->iov_len)
550 else if (copy > tail->iov_len - offs)
551 copy = tail->iov_len - offs;
553 _copy_from_pages((char *)tail->iov_base + offs,
555 buf->page_base + pglen + offs - len,
559 /* Do we also need to copy data from the head into the tail ? */
561 offs = copy = len - pglen;
562 if (copy > tail->iov_len)
563 copy = tail->iov_len;
564 memcpy(tail->iov_base,
565 (char *)head->iov_base +
566 head->iov_len - offs,
571 /* Now handle pages */
574 _shift_data_right_pages(buf->pages,
575 buf->page_base + len,
581 _copy_to_pages(buf->pages, buf->page_base,
582 (char *)head->iov_base + head->iov_len - len,
586 head->iov_len -= len;
588 /* Have we truncated the message? */
589 if (buf->len > buf->buflen)
590 buf->len = buf->buflen;
596 * xdr_shrink_pagelen - shrinks buf->pages by up to @len bytes
598 * @len: bytes to remove from buf->pages
600 * The extra data is not lost, but is instead moved into buf->tail.
601 * Returns the actual number of bytes moved.
604 xdr_shrink_pagelen(struct xdr_buf *buf, size_t len)
606 unsigned int pglen = buf->page_len;
609 if (len > buf->page_len)
610 len = buf-> page_len;
612 result = _shift_data_right_tail(buf, pglen - len, len);
613 buf->page_len -= len;
615 /* Have we truncated the message? */
616 if (buf->len > buf->buflen)
617 buf->len = buf->buflen;
623 xdr_shift_buf(struct xdr_buf *buf, size_t len)
625 xdr_shrink_bufhead(buf, len);
627 EXPORT_SYMBOL_GPL(xdr_shift_buf);
630 * xdr_stream_pos - Return the current offset from the start of the xdr_stream
631 * @xdr: pointer to struct xdr_stream
633 unsigned int xdr_stream_pos(const struct xdr_stream *xdr)
635 return (unsigned int)(XDR_QUADLEN(xdr->buf->len) - xdr->nwords) << 2;
637 EXPORT_SYMBOL_GPL(xdr_stream_pos);
640 * xdr_page_pos - Return the current offset from the start of the xdr pages
641 * @xdr: pointer to struct xdr_stream
643 unsigned int xdr_page_pos(const struct xdr_stream *xdr)
645 unsigned int pos = xdr_stream_pos(xdr);
647 WARN_ON(pos < xdr->buf->head[0].iov_len);
648 return pos - xdr->buf->head[0].iov_len;
650 EXPORT_SYMBOL_GPL(xdr_page_pos);
653 * xdr_init_encode - Initialize a struct xdr_stream for sending data.
654 * @xdr: pointer to xdr_stream struct
655 * @buf: pointer to XDR buffer in which to encode data
656 * @p: current pointer inside XDR buffer
657 * @rqst: pointer to controlling rpc_rqst, for debugging
659 * Note: at the moment the RPC client only passes the length of our
660 * scratch buffer in the xdr_buf's header kvec. Previously this
661 * meant we needed to call xdr_adjust_iovec() after encoding the
662 * data. With the new scheme, the xdr_stream manages the details
663 * of the buffer length, and takes care of adjusting the kvec
666 void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p,
667 struct rpc_rqst *rqst)
669 struct kvec *iov = buf->head;
670 int scratch_len = buf->buflen - buf->page_len - buf->tail[0].iov_len;
672 xdr_set_scratch_buffer(xdr, NULL, 0);
673 BUG_ON(scratch_len < 0);
676 xdr->p = (__be32 *)((char *)iov->iov_base + iov->iov_len);
677 xdr->end = (__be32 *)((char *)iov->iov_base + scratch_len);
678 BUG_ON(iov->iov_len > scratch_len);
680 if (p != xdr->p && p != NULL) {
683 BUG_ON(p < xdr->p || p > xdr->end);
684 len = (char *)p - (char *)xdr->p;
691 EXPORT_SYMBOL_GPL(xdr_init_encode);
694 * xdr_commit_encode - Ensure all data is written to buffer
695 * @xdr: pointer to xdr_stream
697 * We handle encoding across page boundaries by giving the caller a
698 * temporary location to write to, then later copying the data into
699 * place; xdr_commit_encode does that copying.
701 * Normally the caller doesn't need to call this directly, as the
702 * following xdr_reserve_space will do it. But an explicit call may be
703 * required at the end of encoding, or any other time when the xdr_buf
704 * data might be read.
706 inline void xdr_commit_encode(struct xdr_stream *xdr)
708 int shift = xdr->scratch.iov_len;
713 page = page_address(*xdr->page_ptr);
714 memcpy(xdr->scratch.iov_base, page, shift);
715 memmove(page, page + shift, (void *)xdr->p - page);
716 xdr->scratch.iov_len = 0;
718 EXPORT_SYMBOL_GPL(xdr_commit_encode);
720 static __be32 *xdr_get_next_encode_buffer(struct xdr_stream *xdr,
725 int frag1bytes, frag2bytes;
727 if (nbytes > PAGE_SIZE)
728 goto out_overflow; /* Bigger buffers require special handling */
729 if (xdr->buf->len + nbytes > xdr->buf->buflen)
730 goto out_overflow; /* Sorry, we're totally out of space */
731 frag1bytes = (xdr->end - xdr->p) << 2;
732 frag2bytes = nbytes - frag1bytes;
734 xdr->iov->iov_len += frag1bytes;
736 xdr->buf->page_len += frag1bytes;
740 * If the last encode didn't end exactly on a page boundary, the
741 * next one will straddle boundaries. Encode into the next
742 * page, then copy it back later in xdr_commit_encode. We use
743 * the "scratch" iov to track any temporarily unused fragment of
744 * space at the end of the previous buffer:
746 xdr->scratch.iov_base = xdr->p;
747 xdr->scratch.iov_len = frag1bytes;
748 p = page_address(*xdr->page_ptr);
750 * Note this is where the next encode will start after we've
751 * shifted this one back:
753 xdr->p = (void *)p + frag2bytes;
754 space_left = xdr->buf->buflen - xdr->buf->len;
755 xdr->end = (void *)p + min_t(int, space_left, PAGE_SIZE);
756 xdr->buf->page_len += frag2bytes;
757 xdr->buf->len += nbytes;
760 trace_rpc_xdr_overflow(xdr, nbytes);
765 * xdr_reserve_space - Reserve buffer space for sending
766 * @xdr: pointer to xdr_stream
767 * @nbytes: number of bytes to reserve
769 * Checks that we have enough buffer space to encode 'nbytes' more
770 * bytes of data. If so, update the total xdr_buf length, and
771 * adjust the length of the current kvec.
773 __be32 * xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes)
778 xdr_commit_encode(xdr);
779 /* align nbytes on the next 32-bit boundary */
782 q = p + (nbytes >> 2);
783 if (unlikely(q > xdr->end || q < p))
784 return xdr_get_next_encode_buffer(xdr, nbytes);
787 xdr->iov->iov_len += nbytes;
789 xdr->buf->page_len += nbytes;
790 xdr->buf->len += nbytes;
793 EXPORT_SYMBOL_GPL(xdr_reserve_space);
797 * xdr_reserve_space_vec - Reserves a large amount of buffer space for sending
798 * @xdr: pointer to xdr_stream
799 * @vec: pointer to a kvec array
800 * @nbytes: number of bytes to reserve
802 * Reserves enough buffer space to encode 'nbytes' of data and stores the
803 * pointers in 'vec'. The size argument passed to xdr_reserve_space() is
804 * determined based on the number of bytes remaining in the current page to
805 * avoid invalidating iov_base pointers when xdr_commit_encode() is called.
807 int xdr_reserve_space_vec(struct xdr_stream *xdr, struct kvec *vec, size_t nbytes)
814 * svcrdma requires every READ payload to start somewhere
817 if (xdr->iov == xdr->buf->head) {
823 thislen = xdr->buf->page_len % PAGE_SIZE;
824 thislen = min_t(size_t, nbytes, PAGE_SIZE - thislen);
826 p = xdr_reserve_space(xdr, thislen);
831 vec[v].iov_len = thislen;
838 EXPORT_SYMBOL_GPL(xdr_reserve_space_vec);
841 * xdr_truncate_encode - truncate an encode buffer
842 * @xdr: pointer to xdr_stream
843 * @len: new length of buffer
845 * Truncates the xdr stream, so that xdr->buf->len == len,
846 * and xdr->p points at offset len from the start of the buffer, and
847 * head, tail, and page lengths are adjusted to correspond.
849 * If this means moving xdr->p to a different buffer, we assume that
850 * the end pointer should be set to the end of the current page,
851 * except in the case of the head buffer when we assume the head
852 * buffer's current length represents the end of the available buffer.
854 * This is *not* safe to use on a buffer that already has inlined page
855 * cache pages (as in a zero-copy server read reply), except for the
856 * simple case of truncating from one position in the tail to another.
859 void xdr_truncate_encode(struct xdr_stream *xdr, size_t len)
861 struct xdr_buf *buf = xdr->buf;
862 struct kvec *head = buf->head;
863 struct kvec *tail = buf->tail;
867 if (len > buf->len) {
871 xdr_commit_encode(xdr);
873 fraglen = min_t(int, buf->len - len, tail->iov_len);
874 tail->iov_len -= fraglen;
877 xdr->p = tail->iov_base + tail->iov_len;
878 WARN_ON_ONCE(!xdr->end);
879 WARN_ON_ONCE(!xdr->iov);
882 WARN_ON_ONCE(fraglen);
883 fraglen = min_t(int, buf->len - len, buf->page_len);
884 buf->page_len -= fraglen;
887 new = buf->page_base + buf->page_len;
889 xdr->page_ptr = buf->pages + (new >> PAGE_SHIFT);
892 xdr->p = page_address(*xdr->page_ptr);
893 xdr->end = (void *)xdr->p + PAGE_SIZE;
894 xdr->p = (void *)xdr->p + (new % PAGE_SIZE);
895 WARN_ON_ONCE(xdr->iov);
899 xdr->end = head->iov_base + head->iov_len;
900 /* (otherwise assume xdr->end is already set) */
904 xdr->p = head->iov_base + head->iov_len;
905 xdr->iov = buf->head;
907 EXPORT_SYMBOL(xdr_truncate_encode);
910 * xdr_restrict_buflen - decrease available buffer space
911 * @xdr: pointer to xdr_stream
912 * @newbuflen: new maximum number of bytes available
914 * Adjust our idea of how much space is available in the buffer.
915 * If we've already used too much space in the buffer, returns -1.
916 * If the available space is already smaller than newbuflen, returns 0
917 * and does nothing. Otherwise, adjusts xdr->buf->buflen to newbuflen
918 * and ensures xdr->end is set at most offset newbuflen from the start
921 int xdr_restrict_buflen(struct xdr_stream *xdr, int newbuflen)
923 struct xdr_buf *buf = xdr->buf;
924 int left_in_this_buf = (void *)xdr->end - (void *)xdr->p;
925 int end_offset = buf->len + left_in_this_buf;
927 if (newbuflen < 0 || newbuflen < buf->len)
929 if (newbuflen > buf->buflen)
931 if (newbuflen < end_offset)
932 xdr->end = (void *)xdr->end + newbuflen - end_offset;
933 buf->buflen = newbuflen;
936 EXPORT_SYMBOL(xdr_restrict_buflen);
939 * xdr_write_pages - Insert a list of pages into an XDR buffer for sending
940 * @xdr: pointer to xdr_stream
941 * @pages: list of pages
942 * @base: offset of first byte
943 * @len: length of data in bytes
946 void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, unsigned int base,
949 struct xdr_buf *buf = xdr->buf;
950 struct kvec *iov = buf->tail;
952 buf->page_base = base;
955 iov->iov_base = (char *)xdr->p;
960 unsigned int pad = 4 - (len & 3);
962 BUG_ON(xdr->p >= xdr->end);
963 iov->iov_base = (char *)xdr->p + (len & 3);
971 EXPORT_SYMBOL_GPL(xdr_write_pages);
973 static void xdr_set_iov(struct xdr_stream *xdr, struct kvec *iov,
976 if (len > iov->iov_len)
978 xdr->p = (__be32*)iov->iov_base;
979 xdr->end = (__be32*)(iov->iov_base + len);
981 xdr->page_ptr = NULL;
984 static int xdr_set_page_base(struct xdr_stream *xdr,
985 unsigned int base, unsigned int len)
993 maxlen = xdr->buf->page_len;
1000 base += xdr->buf->page_base;
1002 pgnr = base >> PAGE_SHIFT;
1003 xdr->page_ptr = &xdr->buf->pages[pgnr];
1004 kaddr = page_address(*xdr->page_ptr);
1006 pgoff = base & ~PAGE_MASK;
1007 xdr->p = (__be32*)(kaddr + pgoff);
1009 pgend = pgoff + len;
1010 if (pgend > PAGE_SIZE)
1012 xdr->end = (__be32*)(kaddr + pgend);
1017 static void xdr_set_page(struct xdr_stream *xdr, unsigned int base,
1020 if (xdr_set_page_base(xdr, base, len) < 0)
1021 xdr_set_iov(xdr, xdr->buf->tail, xdr->nwords << 2);
1024 static void xdr_set_next_page(struct xdr_stream *xdr)
1026 unsigned int newbase;
1028 newbase = (1 + xdr->page_ptr - xdr->buf->pages) << PAGE_SHIFT;
1029 newbase -= xdr->buf->page_base;
1031 xdr_set_page(xdr, newbase, PAGE_SIZE);
1034 static bool xdr_set_next_buffer(struct xdr_stream *xdr)
1036 if (xdr->page_ptr != NULL)
1037 xdr_set_next_page(xdr);
1038 else if (xdr->iov == xdr->buf->head) {
1039 xdr_set_page(xdr, 0, PAGE_SIZE);
1041 return xdr->p != xdr->end;
1045 * xdr_init_decode - Initialize an xdr_stream for decoding data.
1046 * @xdr: pointer to xdr_stream struct
1047 * @buf: pointer to XDR buffer from which to decode data
1048 * @p: current pointer inside XDR buffer
1049 * @rqst: pointer to controlling rpc_rqst, for debugging
1051 void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p,
1052 struct rpc_rqst *rqst)
1055 xdr->scratch.iov_base = NULL;
1056 xdr->scratch.iov_len = 0;
1057 xdr->nwords = XDR_QUADLEN(buf->len);
1058 if (buf->head[0].iov_len != 0)
1059 xdr_set_iov(xdr, buf->head, buf->len);
1060 else if (buf->page_len != 0)
1061 xdr_set_page_base(xdr, 0, buf->len);
1063 xdr_set_iov(xdr, buf->head, buf->len);
1064 if (p != NULL && p > xdr->p && xdr->end >= p) {
1065 xdr->nwords -= p - xdr->p;
1070 EXPORT_SYMBOL_GPL(xdr_init_decode);
1073 * xdr_init_decode_pages - Initialize an xdr_stream for decoding into pages
1074 * @xdr: pointer to xdr_stream struct
1075 * @buf: pointer to XDR buffer from which to decode data
1076 * @pages: list of pages to decode into
1077 * @len: length in bytes of buffer in pages
1079 void xdr_init_decode_pages(struct xdr_stream *xdr, struct xdr_buf *buf,
1080 struct page **pages, unsigned int len)
1082 memset(buf, 0, sizeof(*buf));
1084 buf->page_len = len;
1087 xdr_init_decode(xdr, buf, NULL, NULL);
1089 EXPORT_SYMBOL_GPL(xdr_init_decode_pages);
1091 static __be32 * __xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes)
1093 unsigned int nwords = XDR_QUADLEN(nbytes);
1095 __be32 *q = p + nwords;
1097 if (unlikely(nwords > xdr->nwords || q > xdr->end || q < p))
1100 xdr->nwords -= nwords;
1105 * xdr_set_scratch_buffer - Attach a scratch buffer for decoding data.
1106 * @xdr: pointer to xdr_stream struct
1107 * @buf: pointer to an empty buffer
1108 * @buflen: size of 'buf'
1110 * The scratch buffer is used when decoding from an array of pages.
1111 * If an xdr_inline_decode() call spans across page boundaries, then
1112 * we copy the data into the scratch buffer in order to allow linear
1115 void xdr_set_scratch_buffer(struct xdr_stream *xdr, void *buf, size_t buflen)
1117 xdr->scratch.iov_base = buf;
1118 xdr->scratch.iov_len = buflen;
1120 EXPORT_SYMBOL_GPL(xdr_set_scratch_buffer);
1122 static __be32 *xdr_copy_to_scratch(struct xdr_stream *xdr, size_t nbytes)
1125 char *cpdest = xdr->scratch.iov_base;
1126 size_t cplen = (char *)xdr->end - (char *)xdr->p;
1128 if (nbytes > xdr->scratch.iov_len)
1130 p = __xdr_inline_decode(xdr, cplen);
1133 memcpy(cpdest, p, cplen);
1134 if (!xdr_set_next_buffer(xdr))
1138 p = __xdr_inline_decode(xdr, nbytes);
1141 memcpy(cpdest, p, nbytes);
1142 return xdr->scratch.iov_base;
1144 trace_rpc_xdr_overflow(xdr, nbytes);
1149 * xdr_inline_decode - Retrieve XDR data to decode
1150 * @xdr: pointer to xdr_stream struct
1151 * @nbytes: number of bytes of data to decode
1153 * Check if the input buffer is long enough to enable us to decode
1154 * 'nbytes' more bytes of data starting at the current position.
1155 * If so return the current pointer, then update the current
1158 __be32 * xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes)
1162 if (unlikely(nbytes == 0))
1164 if (xdr->p == xdr->end && !xdr_set_next_buffer(xdr))
1166 p = __xdr_inline_decode(xdr, nbytes);
1169 return xdr_copy_to_scratch(xdr, nbytes);
1171 trace_rpc_xdr_overflow(xdr, nbytes);
1174 EXPORT_SYMBOL_GPL(xdr_inline_decode);
1176 static void xdr_realign_pages(struct xdr_stream *xdr)
1178 struct xdr_buf *buf = xdr->buf;
1179 struct kvec *iov = buf->head;
1180 unsigned int cur = xdr_stream_pos(xdr);
1181 unsigned int copied, offset;
1183 /* Realign pages to current pointer position */
1184 if (iov->iov_len > cur) {
1185 offset = iov->iov_len - cur;
1186 copied = xdr_shrink_bufhead(buf, offset);
1187 trace_rpc_xdr_alignment(xdr, offset, copied);
1188 xdr->nwords = XDR_QUADLEN(buf->len - cur);
1192 static unsigned int xdr_align_pages(struct xdr_stream *xdr, unsigned int len)
1194 struct xdr_buf *buf = xdr->buf;
1195 unsigned int nwords = XDR_QUADLEN(len);
1196 unsigned int cur = xdr_stream_pos(xdr);
1197 unsigned int copied, offset;
1199 if (xdr->nwords == 0)
1202 xdr_realign_pages(xdr);
1203 if (nwords > xdr->nwords) {
1204 nwords = xdr->nwords;
1207 if (buf->page_len <= len)
1208 len = buf->page_len;
1209 else if (nwords < xdr->nwords) {
1210 /* Truncate page data and move it into the tail */
1211 offset = buf->page_len - len;
1212 copied = xdr_shrink_pagelen(buf, offset);
1213 trace_rpc_xdr_alignment(xdr, offset, copied);
1214 xdr->nwords = XDR_QUADLEN(buf->len - cur);
1220 * xdr_read_pages - Ensure page-based XDR data to decode is aligned at current pointer position
1221 * @xdr: pointer to xdr_stream struct
1222 * @len: number of bytes of page data
1224 * Moves data beyond the current pointer position from the XDR head[] buffer
1225 * into the page list. Any data that lies beyond current position + "len"
1226 * bytes is moved into the XDR tail[].
1228 * Returns the number of XDR encoded bytes now contained in the pages
1230 unsigned int xdr_read_pages(struct xdr_stream *xdr, unsigned int len)
1232 struct xdr_buf *buf = xdr->buf;
1234 unsigned int nwords;
1236 unsigned int padding;
1238 len = xdr_align_pages(xdr, len);
1241 nwords = XDR_QUADLEN(len);
1242 padding = (nwords << 2) - len;
1243 xdr->iov = iov = buf->tail;
1244 /* Compute remaining message length. */
1245 end = ((xdr->nwords - nwords) << 2) + padding;
1246 if (end > iov->iov_len)
1250 * Position current pointer at beginning of tail, and
1251 * set remaining message length.
1253 xdr->p = (__be32 *)((char *)iov->iov_base + padding);
1254 xdr->end = (__be32 *)((char *)iov->iov_base + end);
1255 xdr->page_ptr = NULL;
1256 xdr->nwords = XDR_QUADLEN(end - padding);
1259 EXPORT_SYMBOL_GPL(xdr_read_pages);
1261 uint64_t xdr_align_data(struct xdr_stream *xdr, uint64_t offset, uint32_t length)
1263 struct xdr_buf *buf = xdr->buf;
1264 unsigned int from, bytes;
1265 unsigned int shift = 0;
1267 if ((offset + length) < offset ||
1268 (offset + length) > buf->page_len)
1269 length = buf->page_len - offset;
1271 xdr_realign_pages(xdr);
1272 from = xdr_page_pos(xdr);
1273 bytes = xdr->nwords << 2;
1277 /* Move page data to the left */
1278 if (from > offset) {
1279 shift = min_t(unsigned int, bytes, buf->page_len - from);
1280 _shift_data_left_pages(buf->pages,
1281 buf->page_base + offset,
1282 buf->page_base + from,
1286 /* Move tail data into the pages, if necessary */
1288 _shift_data_left_tail(buf, offset + shift, bytes);
1291 xdr->nwords -= XDR_QUADLEN(length);
1292 xdr_set_page(xdr, from + length, PAGE_SIZE);
1295 EXPORT_SYMBOL_GPL(xdr_align_data);
1297 uint64_t xdr_expand_hole(struct xdr_stream *xdr, uint64_t offset, uint64_t length)
1299 struct xdr_buf *buf = xdr->buf;
1302 unsigned int truncated = 0;
1304 if ((offset + length) < offset ||
1305 (offset + length) > buf->page_len)
1306 length = buf->page_len - offset;
1308 xdr_realign_pages(xdr);
1309 from = xdr_page_pos(xdr);
1310 bytes = xdr->nwords << 2;
1312 if (offset + length + bytes > buf->page_len) {
1313 unsigned int shift = (offset + length + bytes) - buf->page_len;
1314 unsigned int res = _shift_data_right_tail(buf, from + bytes - shift, shift);
1315 truncated = shift - res;
1316 xdr->nwords -= XDR_QUADLEN(truncated);
1320 /* Now move the page data over and zero pages */
1322 _shift_data_right_pages(buf->pages,
1323 buf->page_base + offset + length,
1324 buf->page_base + from,
1326 _zero_pages(buf->pages, buf->page_base + offset, length);
1328 buf->len += length - (from - offset) - truncated;
1329 xdr_set_page(xdr, offset + length, PAGE_SIZE);
1332 EXPORT_SYMBOL_GPL(xdr_expand_hole);
1335 * xdr_enter_page - decode data from the XDR page
1336 * @xdr: pointer to xdr_stream struct
1337 * @len: number of bytes of page data
1339 * Moves data beyond the current pointer position from the XDR head[] buffer
1340 * into the page list. Any data that lies beyond current position + "len"
1341 * bytes is moved into the XDR tail[]. The current pointer is then
1342 * repositioned at the beginning of the first XDR page.
1344 void xdr_enter_page(struct xdr_stream *xdr, unsigned int len)
1346 len = xdr_align_pages(xdr, len);
1348 * Position current pointer at beginning of tail, and
1349 * set remaining message length.
1352 xdr_set_page_base(xdr, 0, len);
1354 EXPORT_SYMBOL_GPL(xdr_enter_page);
1356 static const struct kvec empty_iov = {.iov_base = NULL, .iov_len = 0};
1359 xdr_buf_from_iov(struct kvec *iov, struct xdr_buf *buf)
1361 buf->head[0] = *iov;
1362 buf->tail[0] = empty_iov;
1364 buf->buflen = buf->len = iov->iov_len;
1366 EXPORT_SYMBOL_GPL(xdr_buf_from_iov);
1369 * xdr_buf_subsegment - set subbuf to a portion of buf
1370 * @buf: an xdr buffer
1371 * @subbuf: the result buffer
1372 * @base: beginning of range in bytes
1373 * @len: length of range in bytes
1375 * sets @subbuf to an xdr buffer representing the portion of @buf of
1376 * length @len starting at offset @base.
1378 * @buf and @subbuf may be pointers to the same struct xdr_buf.
1380 * Returns -1 if base of length are out of bounds.
1383 xdr_buf_subsegment(struct xdr_buf *buf, struct xdr_buf *subbuf,
1384 unsigned int base, unsigned int len)
1386 subbuf->buflen = subbuf->len = len;
1387 if (base < buf->head[0].iov_len) {
1388 subbuf->head[0].iov_base = buf->head[0].iov_base + base;
1389 subbuf->head[0].iov_len = min_t(unsigned int, len,
1390 buf->head[0].iov_len - base);
1391 len -= subbuf->head[0].iov_len;
1394 base -= buf->head[0].iov_len;
1395 subbuf->head[0].iov_base = buf->head[0].iov_base;
1396 subbuf->head[0].iov_len = 0;
1399 if (base < buf->page_len) {
1400 subbuf->page_len = min(buf->page_len - base, len);
1401 base += buf->page_base;
1402 subbuf->page_base = base & ~PAGE_MASK;
1403 subbuf->pages = &buf->pages[base >> PAGE_SHIFT];
1404 len -= subbuf->page_len;
1407 base -= buf->page_len;
1408 subbuf->pages = buf->pages;
1409 subbuf->page_base = 0;
1410 subbuf->page_len = 0;
1413 if (base < buf->tail[0].iov_len) {
1414 subbuf->tail[0].iov_base = buf->tail[0].iov_base + base;
1415 subbuf->tail[0].iov_len = min_t(unsigned int, len,
1416 buf->tail[0].iov_len - base);
1417 len -= subbuf->tail[0].iov_len;
1420 base -= buf->tail[0].iov_len;
1421 subbuf->tail[0].iov_base = buf->tail[0].iov_base;
1422 subbuf->tail[0].iov_len = 0;
1429 EXPORT_SYMBOL_GPL(xdr_buf_subsegment);
1432 * xdr_buf_trim - lop at most "len" bytes off the end of "buf"
1433 * @buf: buf to be trimmed
1434 * @len: number of bytes to reduce "buf" by
1436 * Trim an xdr_buf by the given number of bytes by fixing up the lengths. Note
1437 * that it's possible that we'll trim less than that amount if the xdr_buf is
1438 * too small, or if (for instance) it's all in the head and the parser has
1439 * already read too far into it.
1441 void xdr_buf_trim(struct xdr_buf *buf, unsigned int len)
1444 unsigned int trim = len;
1446 if (buf->tail[0].iov_len) {
1447 cur = min_t(size_t, buf->tail[0].iov_len, trim);
1448 buf->tail[0].iov_len -= cur;
1454 if (buf->page_len) {
1455 cur = min_t(unsigned int, buf->page_len, trim);
1456 buf->page_len -= cur;
1462 if (buf->head[0].iov_len) {
1463 cur = min_t(size_t, buf->head[0].iov_len, trim);
1464 buf->head[0].iov_len -= cur;
1468 buf->len -= (len - trim);
1470 EXPORT_SYMBOL_GPL(xdr_buf_trim);
1472 static void __read_bytes_from_xdr_buf(struct xdr_buf *subbuf, void *obj, unsigned int len)
1474 unsigned int this_len;
1476 this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
1477 memcpy(obj, subbuf->head[0].iov_base, this_len);
1480 this_len = min_t(unsigned int, len, subbuf->page_len);
1482 _copy_from_pages(obj, subbuf->pages, subbuf->page_base, this_len);
1485 this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len);
1486 memcpy(obj, subbuf->tail[0].iov_base, this_len);
1489 /* obj is assumed to point to allocated memory of size at least len: */
1490 int read_bytes_from_xdr_buf(struct xdr_buf *buf, unsigned int base, void *obj, unsigned int len)
1492 struct xdr_buf subbuf;
1495 status = xdr_buf_subsegment(buf, &subbuf, base, len);
1498 __read_bytes_from_xdr_buf(&subbuf, obj, len);
1501 EXPORT_SYMBOL_GPL(read_bytes_from_xdr_buf);
1503 static void __write_bytes_to_xdr_buf(struct xdr_buf *subbuf, void *obj, unsigned int len)
1505 unsigned int this_len;
1507 this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
1508 memcpy(subbuf->head[0].iov_base, obj, this_len);
1511 this_len = min_t(unsigned int, len, subbuf->page_len);
1513 _copy_to_pages(subbuf->pages, subbuf->page_base, obj, this_len);
1516 this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len);
1517 memcpy(subbuf->tail[0].iov_base, obj, this_len);
1520 /* obj is assumed to point to allocated memory of size at least len: */
1521 int write_bytes_to_xdr_buf(struct xdr_buf *buf, unsigned int base, void *obj, unsigned int len)
1523 struct xdr_buf subbuf;
1526 status = xdr_buf_subsegment(buf, &subbuf, base, len);
1529 __write_bytes_to_xdr_buf(&subbuf, obj, len);
1532 EXPORT_SYMBOL_GPL(write_bytes_to_xdr_buf);
1535 xdr_decode_word(struct xdr_buf *buf, unsigned int base, u32 *obj)
1540 status = read_bytes_from_xdr_buf(buf, base, &raw, sizeof(*obj));
1543 *obj = be32_to_cpu(raw);
1546 EXPORT_SYMBOL_GPL(xdr_decode_word);
1549 xdr_encode_word(struct xdr_buf *buf, unsigned int base, u32 obj)
1551 __be32 raw = cpu_to_be32(obj);
1553 return write_bytes_to_xdr_buf(buf, base, &raw, sizeof(obj));
1555 EXPORT_SYMBOL_GPL(xdr_encode_word);
1557 /* Returns 0 on success, or else a negative error code. */
1559 xdr_xcode_array2(struct xdr_buf *buf, unsigned int base,
1560 struct xdr_array2_desc *desc, int encode)
1562 char *elem = NULL, *c;
1563 unsigned int copied = 0, todo, avail_here;
1564 struct page **ppages = NULL;
1568 if (xdr_encode_word(buf, base, desc->array_len) != 0)
1571 if (xdr_decode_word(buf, base, &desc->array_len) != 0 ||
1572 desc->array_len > desc->array_maxlen ||
1573 (unsigned long) base + 4 + desc->array_len *
1574 desc->elem_size > buf->len)
1582 todo = desc->array_len * desc->elem_size;
1585 if (todo && base < buf->head->iov_len) {
1586 c = buf->head->iov_base + base;
1587 avail_here = min_t(unsigned int, todo,
1588 buf->head->iov_len - base);
1591 while (avail_here >= desc->elem_size) {
1592 err = desc->xcode(desc, c);
1595 c += desc->elem_size;
1596 avail_here -= desc->elem_size;
1600 elem = kmalloc(desc->elem_size, GFP_KERNEL);
1606 err = desc->xcode(desc, elem);
1609 memcpy(c, elem, avail_here);
1611 memcpy(elem, c, avail_here);
1612 copied = avail_here;
1614 base = buf->head->iov_len; /* align to start of pages */
1617 /* process pages array */
1618 base -= buf->head->iov_len;
1619 if (todo && base < buf->page_len) {
1620 unsigned int avail_page;
1622 avail_here = min(todo, buf->page_len - base);
1625 base += buf->page_base;
1626 ppages = buf->pages + (base >> PAGE_SHIFT);
1628 avail_page = min_t(unsigned int, PAGE_SIZE - base,
1630 c = kmap(*ppages) + base;
1632 while (avail_here) {
1633 avail_here -= avail_page;
1634 if (copied || avail_page < desc->elem_size) {
1635 unsigned int l = min(avail_page,
1636 desc->elem_size - copied);
1638 elem = kmalloc(desc->elem_size,
1646 err = desc->xcode(desc, elem);
1650 memcpy(c, elem + copied, l);
1652 if (copied == desc->elem_size)
1655 memcpy(elem + copied, c, l);
1657 if (copied == desc->elem_size) {
1658 err = desc->xcode(desc, elem);
1667 while (avail_page >= desc->elem_size) {
1668 err = desc->xcode(desc, c);
1671 c += desc->elem_size;
1672 avail_page -= desc->elem_size;
1675 unsigned int l = min(avail_page,
1676 desc->elem_size - copied);
1678 elem = kmalloc(desc->elem_size,
1686 err = desc->xcode(desc, elem);
1690 memcpy(c, elem + copied, l);
1692 if (copied == desc->elem_size)
1695 memcpy(elem + copied, c, l);
1697 if (copied == desc->elem_size) {
1698 err = desc->xcode(desc, elem);
1711 avail_page = min(avail_here,
1712 (unsigned int) PAGE_SIZE);
1714 base = buf->page_len; /* align to start of tail */
1718 base -= buf->page_len;
1720 c = buf->tail->iov_base + base;
1722 unsigned int l = desc->elem_size - copied;
1725 memcpy(c, elem + copied, l);
1727 memcpy(elem + copied, c, l);
1728 err = desc->xcode(desc, elem);
1736 err = desc->xcode(desc, c);
1739 c += desc->elem_size;
1740 todo -= desc->elem_size;
1753 xdr_decode_array2(struct xdr_buf *buf, unsigned int base,
1754 struct xdr_array2_desc *desc)
1756 if (base >= buf->len)
1759 return xdr_xcode_array2(buf, base, desc, 0);
1761 EXPORT_SYMBOL_GPL(xdr_decode_array2);
1764 xdr_encode_array2(struct xdr_buf *buf, unsigned int base,
1765 struct xdr_array2_desc *desc)
1767 if ((unsigned long) base + 4 + desc->array_len * desc->elem_size >
1768 buf->head->iov_len + buf->page_len + buf->tail->iov_len)
1771 return xdr_xcode_array2(buf, base, desc, 1);
1773 EXPORT_SYMBOL_GPL(xdr_encode_array2);
1776 xdr_process_buf(struct xdr_buf *buf, unsigned int offset, unsigned int len,
1777 int (*actor)(struct scatterlist *, void *), void *data)
1780 unsigned int page_len, thislen, page_offset;
1781 struct scatterlist sg[1];
1783 sg_init_table(sg, 1);
1785 if (offset >= buf->head[0].iov_len) {
1786 offset -= buf->head[0].iov_len;
1788 thislen = buf->head[0].iov_len - offset;
1791 sg_set_buf(sg, buf->head[0].iov_base + offset, thislen);
1792 ret = actor(sg, data);
1801 if (offset >= buf->page_len) {
1802 offset -= buf->page_len;
1804 page_len = buf->page_len - offset;
1808 page_offset = (offset + buf->page_base) & (PAGE_SIZE - 1);
1809 i = (offset + buf->page_base) >> PAGE_SHIFT;
1810 thislen = PAGE_SIZE - page_offset;
1812 if (thislen > page_len)
1814 sg_set_page(sg, buf->pages[i], thislen, page_offset);
1815 ret = actor(sg, data);
1818 page_len -= thislen;
1821 thislen = PAGE_SIZE;
1822 } while (page_len != 0);
1827 if (offset < buf->tail[0].iov_len) {
1828 thislen = buf->tail[0].iov_len - offset;
1831 sg_set_buf(sg, buf->tail[0].iov_base + offset, thislen);
1832 ret = actor(sg, data);
1840 EXPORT_SYMBOL_GPL(xdr_process_buf);
1843 * xdr_stream_decode_opaque - Decode variable length opaque
1844 * @xdr: pointer to xdr_stream
1845 * @ptr: location to store opaque data
1846 * @size: size of storage buffer @ptr
1849 * On success, returns size of object stored in *@ptr
1850 * %-EBADMSG on XDR buffer overflow
1851 * %-EMSGSIZE on overflow of storage buffer @ptr
1853 ssize_t xdr_stream_decode_opaque(struct xdr_stream *xdr, void *ptr, size_t size)
1858 ret = xdr_stream_decode_opaque_inline(xdr, &p, size);
1861 memcpy(ptr, p, ret);
1864 EXPORT_SYMBOL_GPL(xdr_stream_decode_opaque);
1867 * xdr_stream_decode_opaque_dup - Decode and duplicate variable length opaque
1868 * @xdr: pointer to xdr_stream
1869 * @ptr: location to store pointer to opaque data
1870 * @maxlen: maximum acceptable object size
1871 * @gfp_flags: GFP mask to use
1874 * On success, returns size of object stored in *@ptr
1875 * %-EBADMSG on XDR buffer overflow
1876 * %-EMSGSIZE if the size of the object would exceed @maxlen
1877 * %-ENOMEM on memory allocation failure
1879 ssize_t xdr_stream_decode_opaque_dup(struct xdr_stream *xdr, void **ptr,
1880 size_t maxlen, gfp_t gfp_flags)
1885 ret = xdr_stream_decode_opaque_inline(xdr, &p, maxlen);
1887 *ptr = kmemdup(p, ret, gfp_flags);
1895 EXPORT_SYMBOL_GPL(xdr_stream_decode_opaque_dup);
1898 * xdr_stream_decode_string - Decode variable length string
1899 * @xdr: pointer to xdr_stream
1900 * @str: location to store string
1901 * @size: size of storage buffer @str
1904 * On success, returns length of NUL-terminated string stored in *@str
1905 * %-EBADMSG on XDR buffer overflow
1906 * %-EMSGSIZE on overflow of storage buffer @str
1908 ssize_t xdr_stream_decode_string(struct xdr_stream *xdr, char *str, size_t size)
1913 ret = xdr_stream_decode_opaque_inline(xdr, &p, size);
1915 memcpy(str, p, ret);
1922 EXPORT_SYMBOL_GPL(xdr_stream_decode_string);
1925 * xdr_stream_decode_string_dup - Decode and duplicate variable length string
1926 * @xdr: pointer to xdr_stream
1927 * @str: location to store pointer to string
1928 * @maxlen: maximum acceptable string length
1929 * @gfp_flags: GFP mask to use
1932 * On success, returns length of NUL-terminated string stored in *@ptr
1933 * %-EBADMSG on XDR buffer overflow
1934 * %-EMSGSIZE if the size of the string would exceed @maxlen
1935 * %-ENOMEM on memory allocation failure
1937 ssize_t xdr_stream_decode_string_dup(struct xdr_stream *xdr, char **str,
1938 size_t maxlen, gfp_t gfp_flags)
1943 ret = xdr_stream_decode_opaque_inline(xdr, &p, maxlen);
1945 char *s = kmalloc(ret + 1, gfp_flags);
1957 EXPORT_SYMBOL_GPL(xdr_stream_decode_string_dup);