blob: 0cf165580d8db04c00324fc44a94e349deb4bba4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Chuck Levera246b012005-08-11 16:25:23 -04009#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/string.h>
13#include <linux/kernel.h>
14#include <linux/pagemap.h>
15#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/sunrpc/xdr.h>
17#include <linux/sunrpc/msg_prot.h>
18
19/*
20 * XDR functions for basic NFS types
21 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070022__be32 *
23xdr_encode_netobj(__be32 *p, const struct xdr_netobj *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
25 unsigned int quadlen = XDR_QUADLEN(obj->len);
26
27 p[quadlen] = 0; /* zero trailing bytes */
Benny Halevy9f162d22009-08-14 17:18:44 +030028 *p++ = cpu_to_be32(obj->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 memcpy(p, obj->data, obj->len);
30 return p + XDR_QUADLEN(obj->len);
31}
Trond Myklebust468039e2008-12-23 15:21:31 -050032EXPORT_SYMBOL_GPL(xdr_encode_netobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070034__be32 *
35xdr_decode_netobj(__be32 *p, struct xdr_netobj *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
37 unsigned int len;
38
Benny Halevy98866b52009-08-14 17:18:49 +030039 if ((len = be32_to_cpu(*p++)) > XDR_MAX_NETOBJ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 return NULL;
41 obj->len = len;
42 obj->data = (u8 *) p;
43 return p + XDR_QUADLEN(len);
44}
Trond Myklebust468039e2008-12-23 15:21:31 -050045EXPORT_SYMBOL_GPL(xdr_decode_netobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/**
48 * xdr_encode_opaque_fixed - Encode fixed length opaque data
Pavel Pisa4dc3b162005-05-01 08:59:25 -070049 * @p: pointer to current position in XDR buffer.
50 * @ptr: pointer to data to encode (or NULL)
51 * @nbytes: size of data.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 *
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 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070061__be32 *xdr_encode_opaque_fixed(__be32 *p, const void *ptr, unsigned int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
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}
Trond Myklebust468039e2008-12-23 15:21:31 -050075EXPORT_SYMBOL_GPL(xdr_encode_opaque_fixed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/**
78 * xdr_encode_opaque - Encode variable length opaque data
Pavel Pisa4dc3b162005-05-01 08:59:25 -070079 * @p: pointer to current position in XDR buffer.
80 * @ptr: pointer to data to encode (or NULL)
81 * @nbytes: size of data.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
83 * Returns the updated current XDR buffer position
84 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070085__be32 *xdr_encode_opaque(__be32 *p, const void *ptr, unsigned int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Benny Halevy9f162d22009-08-14 17:18:44 +030087 *p++ = cpu_to_be32(nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return xdr_encode_opaque_fixed(p, ptr, nbytes);
89}
Trond Myklebust468039e2008-12-23 15:21:31 -050090EXPORT_SYMBOL_GPL(xdr_encode_opaque);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070092__be32 *
93xdr_encode_string(__be32 *p, const char *string)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 return xdr_encode_array(p, string, strlen(string));
96}
Trond Myklebust468039e2008-12-23 15:21:31 -050097EXPORT_SYMBOL_GPL(xdr_encode_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070099__be32 *
Chuck Levere5cff482007-11-01 16:56:47 -0400100xdr_decode_string_inplace(__be32 *p, char **sp,
101 unsigned int *lenp, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Chuck Levere5cff482007-11-01 16:56:47 -0400103 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Benny Halevy98866b52009-08-14 17:18:49 +0300105 len = be32_to_cpu(*p++);
Chuck Levere5cff482007-11-01 16:56:47 -0400106 if (len > maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return NULL;
108 *lenp = len;
109 *sp = (char *) p;
110 return p + XDR_QUADLEN(len);
111}
Trond Myklebust468039e2008-12-23 15:21:31 -0500112EXPORT_SYMBOL_GPL(xdr_decode_string_inplace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Chuck Leverb4687da2010-09-21 16:55:48 -0400114/**
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
Cong Wangb8541782011-11-25 23:14:40 +0800125 kaddr = kmap_atomic(buf->pages[0]);
Chuck Leverb4687da2010-09-21 16:55:48 -0400126 kaddr[buf->page_base + len] = '\0';
Cong Wangb8541782011-11-25 23:14:40 +0800127 kunmap_atomic(kaddr);
Chuck Leverb4687da2010-09-21 16:55:48 -0400128}
Trond Myklebust0d961aa2011-07-13 19:24:15 -0400129EXPORT_SYMBOL_GPL(xdr_terminate_string);
Chuck Leverb4687da2010-09-21 16:55:48 -0400130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131void
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}
Trond Myklebust468039e2008-12-23 15:21:31 -0500157EXPORT_SYMBOL_GPL(xdr_encode_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
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}
Trond Myklebust468039e2008-12-23 15:21:31 -0500179EXPORT_SYMBOL_GPL(xdr_inline_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/*
182 * Helper routines for doing 'memmove' like operations on a struct xdr_buf
Ben Hutchings2c530402012-07-10 10:55:09 +0000183 */
184
185/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * _shift_data_right_pages
187 * @pages: vector of pages containing both the source and dest memory area.
188 * @pgto_base: page vector address of destination
189 * @pgfrom_base: page vector address of source
190 * @len: number of bytes to copy
191 *
192 * Note: the addresses pgto_base and pgfrom_base are both calculated in
193 * the same way:
194 * if a memory area starts at byte 'base' in page 'pages[i]',
195 * then its address is given as (i << PAGE_CACHE_SHIFT) + base
196 * Also note: pgfrom_base must be < pgto_base, but the memory areas
197 * they point to may overlap.
198 */
199static void
200_shift_data_right_pages(struct page **pages, size_t pgto_base,
201 size_t pgfrom_base, size_t len)
202{
203 struct page **pgfrom, **pgto;
204 char *vfrom, *vto;
205 size_t copy;
206
207 BUG_ON(pgto_base <= pgfrom_base);
208
209 pgto_base += len;
210 pgfrom_base += len;
211
212 pgto = pages + (pgto_base >> PAGE_CACHE_SHIFT);
213 pgfrom = pages + (pgfrom_base >> PAGE_CACHE_SHIFT);
214
215 pgto_base &= ~PAGE_CACHE_MASK;
216 pgfrom_base &= ~PAGE_CACHE_MASK;
217
218 do {
219 /* Are any pointers crossing a page boundary? */
220 if (pgto_base == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 pgto_base = PAGE_CACHE_SIZE;
222 pgto--;
223 }
224 if (pgfrom_base == 0) {
225 pgfrom_base = PAGE_CACHE_SIZE;
226 pgfrom--;
227 }
228
229 copy = len;
230 if (copy > pgto_base)
231 copy = pgto_base;
232 if (copy > pgfrom_base)
233 copy = pgfrom_base;
234 pgto_base -= copy;
235 pgfrom_base -= copy;
236
Cong Wangb8541782011-11-25 23:14:40 +0800237 vto = kmap_atomic(*pgto);
238 vfrom = kmap_atomic(*pgfrom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 memmove(vto + pgto_base, vfrom + pgfrom_base, copy);
Trond Myklebustbce34812006-07-05 13:17:12 -0400240 flush_dcache_page(*pgto);
Cong Wangb8541782011-11-25 23:14:40 +0800241 kunmap_atomic(vfrom);
242 kunmap_atomic(vto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 } while ((len -= copy) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Ben Hutchings2c530402012-07-10 10:55:09 +0000247/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * _copy_to_pages
249 * @pages: array of pages
250 * @pgbase: page vector address of destination
251 * @p: pointer to source data
252 * @len: length
253 *
254 * Copies data from an arbitrary memory location into an array of pages
255 * The copy is assumed to be non-overlapping.
256 */
257static void
258_copy_to_pages(struct page **pages, size_t pgbase, const char *p, size_t len)
259{
260 struct page **pgto;
261 char *vto;
262 size_t copy;
263
264 pgto = pages + (pgbase >> PAGE_CACHE_SHIFT);
265 pgbase &= ~PAGE_CACHE_MASK;
266
Trond Myklebustdaeba892008-03-31 17:02:02 -0400267 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 copy = PAGE_CACHE_SIZE - pgbase;
269 if (copy > len)
270 copy = len;
271
Cong Wangb8541782011-11-25 23:14:40 +0800272 vto = kmap_atomic(*pgto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 memcpy(vto + pgbase, p, copy);
Cong Wangb8541782011-11-25 23:14:40 +0800274 kunmap_atomic(vto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Trond Myklebustdaeba892008-03-31 17:02:02 -0400276 len -= copy;
277 if (len == 0)
278 break;
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 pgbase += copy;
281 if (pgbase == PAGE_CACHE_SIZE) {
282 flush_dcache_page(*pgto);
283 pgbase = 0;
284 pgto++;
285 }
286 p += copy;
Trond Myklebustdaeba892008-03-31 17:02:02 -0400287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 flush_dcache_page(*pgto);
289}
290
Ben Hutchings2c530402012-07-10 10:55:09 +0000291/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 * _copy_from_pages
293 * @p: pointer to destination
294 * @pages: array of pages
295 * @pgbase: offset of source data
296 * @len: length
297 *
298 * Copies data into an arbitrary memory location from an array of pages
299 * The copy is assumed to be non-overlapping.
300 */
Andy Adamsonbf118a32011-12-07 11:55:27 -0500301void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302_copy_from_pages(char *p, struct page **pages, size_t pgbase, size_t len)
303{
304 struct page **pgfrom;
305 char *vfrom;
306 size_t copy;
307
308 pgfrom = pages + (pgbase >> PAGE_CACHE_SHIFT);
309 pgbase &= ~PAGE_CACHE_MASK;
310
311 do {
312 copy = PAGE_CACHE_SIZE - pgbase;
313 if (copy > len)
314 copy = len;
315
Cong Wangb8541782011-11-25 23:14:40 +0800316 vfrom = kmap_atomic(*pgfrom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 memcpy(p, vfrom + pgbase, copy);
Cong Wangb8541782011-11-25 23:14:40 +0800318 kunmap_atomic(vfrom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 pgbase += copy;
321 if (pgbase == PAGE_CACHE_SIZE) {
322 pgbase = 0;
323 pgfrom++;
324 }
325 p += copy;
326
327 } while ((len -= copy) != 0);
328}
Andy Adamsonbf118a32011-12-07 11:55:27 -0500329EXPORT_SYMBOL_GPL(_copy_from_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Ben Hutchings2c530402012-07-10 10:55:09 +0000331/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * xdr_shrink_bufhead
333 * @buf: xdr_buf
334 * @len: bytes to remove from buf->head[0]
335 *
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800336 * Shrinks XDR buffer's header kvec buf->head[0] by
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * 'len' bytes. The extra data is not lost, but is instead
338 * moved into the inlined pages and/or the tail.
339 */
340static void
341xdr_shrink_bufhead(struct xdr_buf *buf, size_t len)
342{
343 struct kvec *head, *tail;
344 size_t copy, offs;
345 unsigned int pglen = buf->page_len;
346
347 tail = buf->tail;
348 head = buf->head;
349 BUG_ON (len > head->iov_len);
350
351 /* Shift the tail first */
352 if (tail->iov_len != 0) {
353 if (tail->iov_len > len) {
354 copy = tail->iov_len - len;
355 memmove((char *)tail->iov_base + len,
356 tail->iov_base, copy);
357 }
358 /* Copy from the inlined pages into the tail */
359 copy = len;
360 if (copy > pglen)
361 copy = pglen;
362 offs = len - copy;
363 if (offs >= tail->iov_len)
364 copy = 0;
365 else if (copy > tail->iov_len - offs)
366 copy = tail->iov_len - offs;
367 if (copy != 0)
368 _copy_from_pages((char *)tail->iov_base + offs,
369 buf->pages,
370 buf->page_base + pglen + offs - len,
371 copy);
372 /* Do we also need to copy data from the head into the tail ? */
373 if (len > pglen) {
374 offs = copy = len - pglen;
375 if (copy > tail->iov_len)
376 copy = tail->iov_len;
377 memcpy(tail->iov_base,
378 (char *)head->iov_base +
379 head->iov_len - offs,
380 copy);
381 }
382 }
383 /* Now handle pages */
384 if (pglen != 0) {
385 if (pglen > len)
386 _shift_data_right_pages(buf->pages,
387 buf->page_base + len,
388 buf->page_base,
389 pglen - len);
390 copy = len;
391 if (len > pglen)
392 copy = pglen;
393 _copy_to_pages(buf->pages, buf->page_base,
394 (char *)head->iov_base + head->iov_len - len,
395 copy);
396 }
397 head->iov_len -= len;
398 buf->buflen -= len;
399 /* Have we truncated the message? */
400 if (buf->len > buf->buflen)
401 buf->len = buf->buflen;
402}
403
Ben Hutchings2c530402012-07-10 10:55:09 +0000404/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * xdr_shrink_pagelen
406 * @buf: xdr_buf
407 * @len: bytes to remove from buf->pages
408 *
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800409 * Shrinks XDR buffer's page array buf->pages by
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * 'len' bytes. The extra data is not lost, but is instead
411 * moved into the tail.
412 */
413static void
414xdr_shrink_pagelen(struct xdr_buf *buf, size_t len)
415{
416 struct kvec *tail;
417 size_t copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 unsigned int pglen = buf->page_len;
Trond Myklebustcf187c22010-08-29 12:13:16 -0400419 unsigned int tailbuf_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 tail = buf->tail;
422 BUG_ON (len > pglen);
423
Trond Myklebustcf187c22010-08-29 12:13:16 -0400424 tailbuf_len = buf->buflen - buf->head->iov_len - buf->page_len;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* Shift the tail first */
Trond Myklebustcf187c22010-08-29 12:13:16 -0400427 if (tailbuf_len != 0) {
428 unsigned int free_space = tailbuf_len - tail->iov_len;
429
430 if (len < free_space)
431 free_space = len;
432 tail->iov_len += free_space;
433
Benny Halevy42d6d8a2010-08-29 12:13:15 -0400434 copy = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (tail->iov_len > len) {
Benny Halevy0fe62a352010-08-29 12:13:15 -0400436 char *p = (char *)tail->iov_base + len;
Benny Halevy2e29ebb2010-08-29 12:13:15 -0400437 memmove(p, tail->iov_base, tail->iov_len - len);
Benny Halevy42d6d8a2010-08-29 12:13:15 -0400438 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 copy = tail->iov_len;
Benny Halevy42d6d8a2010-08-29 12:13:15 -0400440 /* Copy from the inlined pages into the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 _copy_from_pages((char *)tail->iov_base,
442 buf->pages, buf->page_base + pglen - len,
443 copy);
444 }
445 buf->page_len -= len;
446 buf->buflen -= len;
447 /* Have we truncated the message? */
448 if (buf->len > buf->buflen)
449 buf->len = buf->buflen;
450}
451
452void
453xdr_shift_buf(struct xdr_buf *buf, size_t len)
454{
455 xdr_shrink_bufhead(buf, len);
456}
Trond Myklebust468039e2008-12-23 15:21:31 -0500457EXPORT_SYMBOL_GPL(xdr_shift_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459/**
460 * xdr_init_encode - Initialize a struct xdr_stream for sending data.
461 * @xdr: pointer to xdr_stream struct
462 * @buf: pointer to XDR buffer in which to encode data
463 * @p: current pointer inside XDR buffer
464 *
465 * Note: at the moment the RPC client only passes the length of our
466 * scratch buffer in the xdr_buf's header kvec. Previously this
467 * meant we needed to call xdr_adjust_iovec() after encoding the
468 * data. With the new scheme, the xdr_stream manages the details
469 * of the buffer length, and takes care of adjusting the kvec
470 * length for us.
471 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700472void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 struct kvec *iov = buf->head;
Trond Myklebust334ccfd2005-06-22 17:16:19 +0000475 int scratch_len = buf->buflen - buf->page_len - buf->tail[0].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Trond Myklebust334ccfd2005-06-22 17:16:19 +0000477 BUG_ON(scratch_len < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 xdr->buf = buf;
479 xdr->iov = iov;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700480 xdr->p = (__be32 *)((char *)iov->iov_base + iov->iov_len);
481 xdr->end = (__be32 *)((char *)iov->iov_base + scratch_len);
Trond Myklebust334ccfd2005-06-22 17:16:19 +0000482 BUG_ON(iov->iov_len > scratch_len);
483
484 if (p != xdr->p && p != NULL) {
485 size_t len;
486
487 BUG_ON(p < xdr->p || p > xdr->end);
488 len = (char *)p - (char *)xdr->p;
489 xdr->p = p;
490 buf->len += len;
491 iov->iov_len += len;
492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
Trond Myklebust468039e2008-12-23 15:21:31 -0500494EXPORT_SYMBOL_GPL(xdr_init_encode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496/**
497 * xdr_reserve_space - Reserve buffer space for sending
498 * @xdr: pointer to xdr_stream
499 * @nbytes: number of bytes to reserve
500 *
501 * Checks that we have enough buffer space to encode 'nbytes' more
502 * bytes of data. If so, update the total xdr_buf length, and
503 * adjust the length of the current kvec.
504 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700505__be32 * xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700507 __be32 *p = xdr->p;
508 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 /* align nbytes on the next 32-bit boundary */
511 nbytes += 3;
512 nbytes &= ~3;
513 q = p + (nbytes >> 2);
514 if (unlikely(q > xdr->end || q < p))
515 return NULL;
516 xdr->p = q;
517 xdr->iov->iov_len += nbytes;
518 xdr->buf->len += nbytes;
519 return p;
520}
Trond Myklebust468039e2008-12-23 15:21:31 -0500521EXPORT_SYMBOL_GPL(xdr_reserve_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523/**
524 * xdr_write_pages - Insert a list of pages into an XDR buffer for sending
525 * @xdr: pointer to xdr_stream
526 * @pages: list of pages
527 * @base: offset of first byte
528 * @len: length of data in bytes
529 *
530 */
531void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, unsigned int base,
532 unsigned int len)
533{
534 struct xdr_buf *buf = xdr->buf;
535 struct kvec *iov = buf->tail;
536 buf->pages = pages;
537 buf->page_base = base;
538 buf->page_len = len;
539
540 iov->iov_base = (char *)xdr->p;
541 iov->iov_len = 0;
542 xdr->iov = iov;
543
544 if (len & 3) {
545 unsigned int pad = 4 - (len & 3);
546
547 BUG_ON(xdr->p >= xdr->end);
548 iov->iov_base = (char *)xdr->p + (len & 3);
549 iov->iov_len += pad;
550 len += pad;
551 *xdr->p++ = 0;
552 }
553 buf->buflen += len;
554 buf->len += len;
555}
Trond Myklebust468039e2008-12-23 15:21:31 -0500556EXPORT_SYMBOL_GPL(xdr_write_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Trond Myklebust66502392011-01-08 17:45:38 -0500558static void xdr_set_iov(struct xdr_stream *xdr, struct kvec *iov,
559 __be32 *p, unsigned int len)
560{
561 if (len > iov->iov_len)
562 len = iov->iov_len;
563 if (p == NULL)
564 p = (__be32*)iov->iov_base;
565 xdr->p = p;
566 xdr->end = (__be32*)(iov->iov_base + len);
567 xdr->iov = iov;
568 xdr->page_ptr = NULL;
569}
570
571static int xdr_set_page_base(struct xdr_stream *xdr,
572 unsigned int base, unsigned int len)
573{
574 unsigned int pgnr;
575 unsigned int maxlen;
576 unsigned int pgoff;
577 unsigned int pgend;
578 void *kaddr;
579
580 maxlen = xdr->buf->page_len;
581 if (base >= maxlen)
582 return -EINVAL;
583 maxlen -= base;
584 if (len > maxlen)
585 len = maxlen;
586
587 base += xdr->buf->page_base;
588
589 pgnr = base >> PAGE_SHIFT;
590 xdr->page_ptr = &xdr->buf->pages[pgnr];
591 kaddr = page_address(*xdr->page_ptr);
592
593 pgoff = base & ~PAGE_MASK;
594 xdr->p = (__be32*)(kaddr + pgoff);
595
596 pgend = pgoff + len;
597 if (pgend > PAGE_SIZE)
598 pgend = PAGE_SIZE;
599 xdr->end = (__be32*)(kaddr + pgend);
600 xdr->iov = NULL;
601 return 0;
602}
603
604static void xdr_set_next_page(struct xdr_stream *xdr)
605{
606 unsigned int newbase;
607
608 newbase = (1 + xdr->page_ptr - xdr->buf->pages) << PAGE_SHIFT;
609 newbase -= xdr->buf->page_base;
610
611 if (xdr_set_page_base(xdr, newbase, PAGE_SIZE) < 0)
612 xdr_set_iov(xdr, xdr->buf->tail, NULL, xdr->buf->len);
613}
614
615static bool xdr_set_next_buffer(struct xdr_stream *xdr)
616{
617 if (xdr->page_ptr != NULL)
618 xdr_set_next_page(xdr);
619 else if (xdr->iov == xdr->buf->head) {
620 if (xdr_set_page_base(xdr, 0, PAGE_SIZE) < 0)
621 xdr_set_iov(xdr, xdr->buf->tail, NULL, xdr->buf->len);
622 }
623 return xdr->p != xdr->end;
624}
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626/**
627 * xdr_init_decode - Initialize an xdr_stream for decoding data.
628 * @xdr: pointer to xdr_stream struct
629 * @buf: pointer to XDR buffer from which to decode data
630 * @p: current pointer inside XDR buffer
631 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700632void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 xdr->buf = buf;
Trond Myklebust66502392011-01-08 17:45:38 -0500635 xdr->scratch.iov_base = NULL;
636 xdr->scratch.iov_len = 0;
637 if (buf->head[0].iov_len != 0)
638 xdr_set_iov(xdr, buf->head, p, buf->len);
639 else if (buf->page_len != 0)
640 xdr_set_page_base(xdr, 0, buf->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
Trond Myklebust468039e2008-12-23 15:21:31 -0500642EXPORT_SYMBOL_GPL(xdr_init_decode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Benny Halevyf7da7a12011-05-19 14:16:47 -0400644/**
645 * xdr_init_decode - Initialize an xdr_stream for decoding data.
646 * @xdr: pointer to xdr_stream struct
647 * @buf: pointer to XDR buffer from which to decode data
648 * @pages: list of pages to decode into
649 * @len: length in bytes of buffer in pages
650 */
651void xdr_init_decode_pages(struct xdr_stream *xdr, struct xdr_buf *buf,
652 struct page **pages, unsigned int len)
653{
654 memset(buf, 0, sizeof(*buf));
655 buf->pages = pages;
656 buf->page_len = len;
657 buf->buflen = len;
658 buf->len = len;
659 xdr_init_decode(xdr, buf, NULL);
660}
661EXPORT_SYMBOL_GPL(xdr_init_decode_pages);
662
Trond Myklebust66502392011-01-08 17:45:38 -0500663static __be32 * __xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes)
Trond Myklebustba8e4522010-10-19 19:58:49 -0400664{
665 __be32 *p = xdr->p;
666 __be32 *q = p + XDR_QUADLEN(nbytes);
667
668 if (unlikely(q > xdr->end || q < p))
669 return NULL;
Trond Myklebust66502392011-01-08 17:45:38 -0500670 xdr->p = q;
Trond Myklebustba8e4522010-10-19 19:58:49 -0400671 return p;
672}
Trond Myklebustba8e4522010-10-19 19:58:49 -0400673
674/**
Trond Myklebust66502392011-01-08 17:45:38 -0500675 * xdr_set_scratch_buffer - Attach a scratch buffer for decoding data.
676 * @xdr: pointer to xdr_stream struct
677 * @buf: pointer to an empty buffer
678 * @buflen: size of 'buf'
679 *
680 * The scratch buffer is used when decoding from an array of pages.
681 * If an xdr_inline_decode() call spans across page boundaries, then
682 * we copy the data into the scratch buffer in order to allow linear
683 * access.
684 */
685void xdr_set_scratch_buffer(struct xdr_stream *xdr, void *buf, size_t buflen)
686{
687 xdr->scratch.iov_base = buf;
688 xdr->scratch.iov_len = buflen;
689}
690EXPORT_SYMBOL_GPL(xdr_set_scratch_buffer);
691
692static __be32 *xdr_copy_to_scratch(struct xdr_stream *xdr, size_t nbytes)
693{
694 __be32 *p;
695 void *cpdest = xdr->scratch.iov_base;
696 size_t cplen = (char *)xdr->end - (char *)xdr->p;
697
698 if (nbytes > xdr->scratch.iov_len)
699 return NULL;
700 memcpy(cpdest, xdr->p, cplen);
701 cpdest += cplen;
702 nbytes -= cplen;
703 if (!xdr_set_next_buffer(xdr))
704 return NULL;
705 p = __xdr_inline_decode(xdr, nbytes);
706 if (p == NULL)
707 return NULL;
708 memcpy(cpdest, p, nbytes);
709 return xdr->scratch.iov_base;
710}
711
712/**
713 * xdr_inline_decode - Retrieve XDR data to decode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 * @xdr: pointer to xdr_stream struct
715 * @nbytes: number of bytes of data to decode
716 *
717 * Check if the input buffer is long enough to enable us to decode
718 * 'nbytes' more bytes of data starting at the current position.
719 * If so return the current pointer, then update the current
720 * pointer position.
721 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700722__be32 * xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Trond Myklebust66502392011-01-08 17:45:38 -0500724 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Trond Myklebust66502392011-01-08 17:45:38 -0500726 if (nbytes == 0)
727 return xdr->p;
728 if (xdr->p == xdr->end && !xdr_set_next_buffer(xdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return NULL;
Trond Myklebust66502392011-01-08 17:45:38 -0500730 p = __xdr_inline_decode(xdr, nbytes);
731 if (p != NULL)
732 return p;
733 return xdr_copy_to_scratch(xdr, nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
Trond Myklebust468039e2008-12-23 15:21:31 -0500735EXPORT_SYMBOL_GPL(xdr_inline_decode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737/**
738 * xdr_read_pages - Ensure page-based XDR data to decode is aligned at current pointer position
739 * @xdr: pointer to xdr_stream struct
740 * @len: number of bytes of page data
741 *
742 * Moves data beyond the current pointer position from the XDR head[] buffer
743 * into the page list. Any data that lies beyond current position + "len"
Trond Myklebust8b23ea72006-06-09 09:34:21 -0400744 * bytes is moved into the XDR tail[].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
746void xdr_read_pages(struct xdr_stream *xdr, unsigned int len)
747{
748 struct xdr_buf *buf = xdr->buf;
749 struct kvec *iov;
750 ssize_t shift;
751 unsigned int end;
752 int padding;
753
754 /* Realign pages to current pointer position */
755 iov = buf->head;
756 shift = iov->iov_len + (char *)iov->iov_base - (char *)xdr->p;
757 if (shift > 0)
758 xdr_shrink_bufhead(buf, shift);
759
760 /* Truncate page data and move it into the tail */
761 if (buf->page_len > len)
762 xdr_shrink_pagelen(buf, buf->page_len - len);
763 padding = (XDR_QUADLEN(len) << 2) - len;
764 xdr->iov = iov = buf->tail;
765 /* Compute remaining message length. */
766 end = iov->iov_len;
767 shift = buf->buflen - buf->len;
768 if (shift < end)
769 end -= shift;
770 else if (shift > 0)
771 end = 0;
772 /*
773 * Position current pointer at beginning of tail, and
774 * set remaining message length.
775 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700776 xdr->p = (__be32 *)((char *)iov->iov_base + padding);
777 xdr->end = (__be32 *)((char *)iov->iov_base + end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
Trond Myklebust468039e2008-12-23 15:21:31 -0500779EXPORT_SYMBOL_GPL(xdr_read_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Trond Myklebust8b23ea72006-06-09 09:34:21 -0400781/**
782 * xdr_enter_page - decode data from the XDR page
783 * @xdr: pointer to xdr_stream struct
784 * @len: number of bytes of page data
785 *
786 * Moves data beyond the current pointer position from the XDR head[] buffer
787 * into the page list. Any data that lies beyond current position + "len"
788 * bytes is moved into the XDR tail[]. The current pointer is then
789 * repositioned at the beginning of the first XDR page.
790 */
791void xdr_enter_page(struct xdr_stream *xdr, unsigned int len)
792{
Trond Myklebust8b23ea72006-06-09 09:34:21 -0400793 xdr_read_pages(xdr, len);
794 /*
795 * Position current pointer at beginning of tail, and
796 * set remaining message length.
797 */
Trond Myklebust66502392011-01-08 17:45:38 -0500798 xdr_set_page_base(xdr, 0, len);
Trond Myklebust8b23ea72006-06-09 09:34:21 -0400799}
Trond Myklebust468039e2008-12-23 15:21:31 -0500800EXPORT_SYMBOL_GPL(xdr_enter_page);
Trond Myklebust8b23ea72006-06-09 09:34:21 -0400801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802static struct kvec empty_iov = {.iov_base = NULL, .iov_len = 0};
803
804void
805xdr_buf_from_iov(struct kvec *iov, struct xdr_buf *buf)
806{
807 buf->head[0] = *iov;
808 buf->tail[0] = empty_iov;
809 buf->page_len = 0;
810 buf->buflen = buf->len = iov->iov_len;
811}
Trond Myklebust468039e2008-12-23 15:21:31 -0500812EXPORT_SYMBOL_GPL(xdr_buf_from_iov);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814/* Sets subbuf to the portion of buf of length len beginning base bytes
815 * from the start of buf. Returns -1 if base of length are out of bounds. */
816int
817xdr_buf_subsegment(struct xdr_buf *buf, struct xdr_buf *subbuf,
Trond Myklebust1e789572006-08-31 15:09:19 -0400818 unsigned int base, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 subbuf->buflen = subbuf->len = len;
Trond Myklebust1e789572006-08-31 15:09:19 -0400821 if (base < buf->head[0].iov_len) {
822 subbuf->head[0].iov_base = buf->head[0].iov_base + base;
823 subbuf->head[0].iov_len = min_t(unsigned int, len,
824 buf->head[0].iov_len - base);
825 len -= subbuf->head[0].iov_len;
826 base = 0;
827 } else {
828 subbuf->head[0].iov_base = NULL;
829 subbuf->head[0].iov_len = 0;
830 base -= buf->head[0].iov_len;
831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 if (base < buf->page_len) {
Trond Myklebust1e789572006-08-31 15:09:19 -0400834 subbuf->page_len = min(buf->page_len - base, len);
835 base += buf->page_base;
836 subbuf->page_base = base & ~PAGE_CACHE_MASK;
837 subbuf->pages = &buf->pages[base >> PAGE_CACHE_SHIFT];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 len -= subbuf->page_len;
839 base = 0;
840 } else {
841 base -= buf->page_len;
842 subbuf->page_len = 0;
843 }
844
Trond Myklebust1e789572006-08-31 15:09:19 -0400845 if (base < buf->tail[0].iov_len) {
846 subbuf->tail[0].iov_base = buf->tail[0].iov_base + base;
847 subbuf->tail[0].iov_len = min_t(unsigned int, len,
848 buf->tail[0].iov_len - base);
849 len -= subbuf->tail[0].iov_len;
850 base = 0;
851 } else {
852 subbuf->tail[0].iov_base = NULL;
853 subbuf->tail[0].iov_len = 0;
854 base -= buf->tail[0].iov_len;
855 }
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (base || len)
858 return -1;
859 return 0;
860}
Trond Myklebust468039e2008-12-23 15:21:31 -0500861EXPORT_SYMBOL_GPL(xdr_buf_subsegment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400863static void __read_bytes_from_xdr_buf(struct xdr_buf *subbuf, void *obj, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Trond Myklebust1e789572006-08-31 15:09:19 -0400865 unsigned int this_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400867 this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
868 memcpy(obj, subbuf->head[0].iov_base, this_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 len -= this_len;
870 obj += this_len;
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400871 this_len = min_t(unsigned int, len, subbuf->page_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (this_len)
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400873 _copy_from_pages(obj, subbuf->pages, subbuf->page_base, this_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 len -= this_len;
875 obj += this_len;
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400876 this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len);
877 memcpy(obj, subbuf->tail[0].iov_base, this_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000880/* obj is assumed to point to allocated memory of size at least len: */
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400881int read_bytes_from_xdr_buf(struct xdr_buf *buf, unsigned int base, void *obj, unsigned int len)
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000882{
883 struct xdr_buf subbuf;
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000884 int status;
885
886 status = xdr_buf_subsegment(buf, &subbuf, base, len);
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400887 if (status != 0)
888 return status;
889 __read_bytes_from_xdr_buf(&subbuf, obj, len);
890 return 0;
891}
Trond Myklebust468039e2008-12-23 15:21:31 -0500892EXPORT_SYMBOL_GPL(read_bytes_from_xdr_buf);
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400893
894static void __write_bytes_to_xdr_buf(struct xdr_buf *subbuf, void *obj, unsigned int len)
895{
896 unsigned int this_len;
897
898 this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
899 memcpy(subbuf->head[0].iov_base, obj, this_len);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000900 len -= this_len;
901 obj += this_len;
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400902 this_len = min_t(unsigned int, len, subbuf->page_len);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000903 if (this_len)
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400904 _copy_to_pages(subbuf->pages, subbuf->page_base, obj, this_len);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000905 len -= this_len;
906 obj += this_len;
Trond Myklebust4e3e43a2006-10-17 13:47:24 -0400907 this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len);
908 memcpy(subbuf->tail[0].iov_base, obj, this_len);
909}
910
911/* obj is assumed to point to allocated memory of size at least len: */
912int write_bytes_to_xdr_buf(struct xdr_buf *buf, unsigned int base, void *obj, unsigned int len)
913{
914 struct xdr_buf subbuf;
915 int status;
916
917 status = xdr_buf_subsegment(buf, &subbuf, base, len);
918 if (status != 0)
919 return status;
920 __write_bytes_to_xdr_buf(&subbuf, obj, len);
921 return 0;
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000922}
Kevin Coffmanc43abae2010-03-17 13:02:58 -0400923EXPORT_SYMBOL_GPL(write_bytes_to_xdr_buf);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000924
925int
Trond Myklebust1e789572006-08-31 15:09:19 -0400926xdr_decode_word(struct xdr_buf *buf, unsigned int base, u32 *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700928 __be32 raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int status;
930
931 status = read_bytes_from_xdr_buf(buf, base, &raw, sizeof(*obj));
932 if (status)
933 return status;
Benny Halevy98866b52009-08-14 17:18:49 +0300934 *obj = be32_to_cpu(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
936}
Trond Myklebust468039e2008-12-23 15:21:31 -0500937EXPORT_SYMBOL_GPL(xdr_decode_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000939int
Trond Myklebust1e789572006-08-31 15:09:19 -0400940xdr_encode_word(struct xdr_buf *buf, unsigned int base, u32 obj)
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000941{
Benny Halevy9f162d22009-08-14 17:18:44 +0300942 __be32 raw = cpu_to_be32(obj);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000943
944 return write_bytes_to_xdr_buf(buf, base, &raw, sizeof(obj));
945}
Trond Myklebust468039e2008-12-23 15:21:31 -0500946EXPORT_SYMBOL_GPL(xdr_encode_word);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948/* If the netobj starting offset bytes from the start of xdr_buf is contained
949 * entirely in the head or the tail, set object to point to it; otherwise
950 * try to find space for it at the end of the tail, copy it there, and
951 * set obj to point to it. */
Trond Myklebustbee57c92006-10-09 22:08:22 -0400952int xdr_buf_read_netobj(struct xdr_buf *buf, struct xdr_netobj *obj, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Trond Myklebustbee57c92006-10-09 22:08:22 -0400954 struct xdr_buf subbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000956 if (xdr_decode_word(buf, offset, &obj->len))
Trond Myklebustbee57c92006-10-09 22:08:22 -0400957 return -EFAULT;
958 if (xdr_buf_subsegment(buf, &subbuf, offset + 4, obj->len))
959 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Trond Myklebustbee57c92006-10-09 22:08:22 -0400961 /* Is the obj contained entirely in the head? */
962 obj->data = subbuf.head[0].iov_base;
963 if (subbuf.head[0].iov_len == obj->len)
964 return 0;
965 /* ..or is the obj contained entirely in the tail? */
966 obj->data = subbuf.tail[0].iov_base;
967 if (subbuf.tail[0].iov_len == obj->len)
968 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Trond Myklebustbee57c92006-10-09 22:08:22 -0400970 /* use end of tail as storage for obj:
971 * (We don't copy to the beginning because then we'd have
972 * to worry about doing a potentially overlapping copy.
973 * This assumes the object is at most half the length of the
974 * tail.) */
975 if (obj->len > buf->buflen - buf->len)
976 return -ENOMEM;
977 if (buf->tail[0].iov_len != 0)
978 obj->data = buf->tail[0].iov_base + buf->tail[0].iov_len;
979 else
980 obj->data = buf->head[0].iov_base + buf->head[0].iov_len;
981 __read_bytes_from_xdr_buf(&subbuf, obj->data, obj->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
Trond Myklebust468039e2008-12-23 15:21:31 -0500984EXPORT_SYMBOL_GPL(xdr_buf_read_netobj);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +0000985
986/* Returns 0 on success, or else a negative error code. */
987static int
988xdr_xcode_array2(struct xdr_buf *buf, unsigned int base,
989 struct xdr_array2_desc *desc, int encode)
990{
991 char *elem = NULL, *c;
992 unsigned int copied = 0, todo, avail_here;
993 struct page **ppages = NULL;
994 int err;
995
996 if (encode) {
997 if (xdr_encode_word(buf, base, desc->array_len) != 0)
998 return -EINVAL;
999 } else {
1000 if (xdr_decode_word(buf, base, &desc->array_len) != 0 ||
Trond Myklebust58fcb8d2005-08-10 18:15:12 -04001001 desc->array_len > desc->array_maxlen ||
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +00001002 (unsigned long) base + 4 + desc->array_len *
1003 desc->elem_size > buf->len)
1004 return -EINVAL;
1005 }
1006 base += 4;
1007
1008 if (!desc->xcode)
1009 return 0;
1010
1011 todo = desc->array_len * desc->elem_size;
1012
1013 /* process head */
1014 if (todo && base < buf->head->iov_len) {
1015 c = buf->head->iov_base + base;
1016 avail_here = min_t(unsigned int, todo,
1017 buf->head->iov_len - base);
1018 todo -= avail_here;
1019
1020 while (avail_here >= desc->elem_size) {
1021 err = desc->xcode(desc, c);
1022 if (err)
1023 goto out;
1024 c += desc->elem_size;
1025 avail_here -= desc->elem_size;
1026 }
1027 if (avail_here) {
1028 if (!elem) {
1029 elem = kmalloc(desc->elem_size, GFP_KERNEL);
1030 err = -ENOMEM;
1031 if (!elem)
1032 goto out;
1033 }
1034 if (encode) {
1035 err = desc->xcode(desc, elem);
1036 if (err)
1037 goto out;
1038 memcpy(c, elem, avail_here);
1039 } else
1040 memcpy(elem, c, avail_here);
1041 copied = avail_here;
1042 }
1043 base = buf->head->iov_len; /* align to start of pages */
1044 }
1045
1046 /* process pages array */
1047 base -= buf->head->iov_len;
1048 if (todo && base < buf->page_len) {
1049 unsigned int avail_page;
1050
1051 avail_here = min(todo, buf->page_len - base);
1052 todo -= avail_here;
1053
1054 base += buf->page_base;
1055 ppages = buf->pages + (base >> PAGE_CACHE_SHIFT);
1056 base &= ~PAGE_CACHE_MASK;
1057 avail_page = min_t(unsigned int, PAGE_CACHE_SIZE - base,
1058 avail_here);
1059 c = kmap(*ppages) + base;
1060
1061 while (avail_here) {
1062 avail_here -= avail_page;
1063 if (copied || avail_page < desc->elem_size) {
1064 unsigned int l = min(avail_page,
1065 desc->elem_size - copied);
1066 if (!elem) {
1067 elem = kmalloc(desc->elem_size,
1068 GFP_KERNEL);
1069 err = -ENOMEM;
1070 if (!elem)
1071 goto out;
1072 }
1073 if (encode) {
1074 if (!copied) {
1075 err = desc->xcode(desc, elem);
1076 if (err)
1077 goto out;
1078 }
1079 memcpy(c, elem + copied, l);
1080 copied += l;
1081 if (copied == desc->elem_size)
1082 copied = 0;
1083 } else {
1084 memcpy(elem + copied, c, l);
1085 copied += l;
1086 if (copied == desc->elem_size) {
1087 err = desc->xcode(desc, elem);
1088 if (err)
1089 goto out;
1090 copied = 0;
1091 }
1092 }
1093 avail_page -= l;
1094 c += l;
1095 }
1096 while (avail_page >= desc->elem_size) {
1097 err = desc->xcode(desc, c);
1098 if (err)
1099 goto out;
1100 c += desc->elem_size;
1101 avail_page -= desc->elem_size;
1102 }
1103 if (avail_page) {
1104 unsigned int l = min(avail_page,
1105 desc->elem_size - copied);
1106 if (!elem) {
1107 elem = kmalloc(desc->elem_size,
1108 GFP_KERNEL);
1109 err = -ENOMEM;
1110 if (!elem)
1111 goto out;
1112 }
1113 if (encode) {
1114 if (!copied) {
1115 err = desc->xcode(desc, elem);
1116 if (err)
1117 goto out;
1118 }
1119 memcpy(c, elem + copied, l);
1120 copied += l;
1121 if (copied == desc->elem_size)
1122 copied = 0;
1123 } else {
1124 memcpy(elem + copied, c, l);
1125 copied += l;
1126 if (copied == desc->elem_size) {
1127 err = desc->xcode(desc, elem);
1128 if (err)
1129 goto out;
1130 copied = 0;
1131 }
1132 }
1133 }
1134 if (avail_here) {
1135 kunmap(*ppages);
1136 ppages++;
1137 c = kmap(*ppages);
1138 }
1139
1140 avail_page = min(avail_here,
1141 (unsigned int) PAGE_CACHE_SIZE);
1142 }
1143 base = buf->page_len; /* align to start of tail */
1144 }
1145
1146 /* process tail */
1147 base -= buf->page_len;
1148 if (todo) {
1149 c = buf->tail->iov_base + base;
1150 if (copied) {
1151 unsigned int l = desc->elem_size - copied;
1152
1153 if (encode)
1154 memcpy(c, elem + copied, l);
1155 else {
1156 memcpy(elem + copied, c, l);
1157 err = desc->xcode(desc, elem);
1158 if (err)
1159 goto out;
1160 }
1161 todo -= l;
1162 c += l;
1163 }
1164 while (todo) {
1165 err = desc->xcode(desc, c);
1166 if (err)
1167 goto out;
1168 c += desc->elem_size;
1169 todo -= desc->elem_size;
1170 }
1171 }
1172 err = 0;
1173
1174out:
Jesper Juhla51482b2005-11-08 09:41:34 -08001175 kfree(elem);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +00001176 if (ppages)
1177 kunmap(*ppages);
1178 return err;
1179}
1180
1181int
1182xdr_decode_array2(struct xdr_buf *buf, unsigned int base,
1183 struct xdr_array2_desc *desc)
1184{
1185 if (base >= buf->len)
1186 return -EINVAL;
1187
1188 return xdr_xcode_array2(buf, base, desc, 0);
1189}
Trond Myklebust468039e2008-12-23 15:21:31 -05001190EXPORT_SYMBOL_GPL(xdr_decode_array2);
Andreas Gruenbacherbd8100e2005-06-22 17:16:24 +00001191
1192int
1193xdr_encode_array2(struct xdr_buf *buf, unsigned int base,
1194 struct xdr_array2_desc *desc)
1195{
1196 if ((unsigned long) base + 4 + desc->array_len * desc->elem_size >
1197 buf->head->iov_len + buf->page_len + buf->tail->iov_len)
1198 return -EINVAL;
1199
1200 return xdr_xcode_array2(buf, base, desc, 1);
1201}
Trond Myklebust468039e2008-12-23 15:21:31 -05001202EXPORT_SYMBOL_GPL(xdr_encode_array2);
Olga Kornievskaia37a4e6c2006-12-04 20:22:33 -05001203
1204int
1205xdr_process_buf(struct xdr_buf *buf, unsigned int offset, unsigned int len,
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001206 int (*actor)(struct scatterlist *, void *), void *data)
Olga Kornievskaia37a4e6c2006-12-04 20:22:33 -05001207{
1208 int i, ret = 0;
Eric Dumazet95c96172012-04-15 05:58:06 +00001209 unsigned int page_len, thislen, page_offset;
Olga Kornievskaia37a4e6c2006-12-04 20:22:33 -05001210 struct scatterlist sg[1];
1211
Herbert Xu68e3f5d2007-10-27 00:52:07 -07001212 sg_init_table(sg, 1);
1213
Olga Kornievskaia37a4e6c2006-12-04 20:22:33 -05001214 if (offset >= buf->head[0].iov_len) {
1215 offset -= buf->head[0].iov_len;
1216 } else {
1217 thislen = buf->head[0].iov_len - offset;
1218 if (thislen > len)
1219 thislen = len;
1220 sg_set_buf(sg, buf->head[0].iov_base + offset, thislen);
1221 ret = actor(sg, data);
1222 if (ret)
1223 goto out;
1224 offset = 0;
1225 len -= thislen;
1226 }
1227 if (len == 0)
1228 goto out;
1229
1230 if (offset >= buf->page_len) {
1231 offset -= buf->page_len;
1232 } else {
1233 page_len = buf->page_len - offset;
1234 if (page_len > len)
1235 page_len = len;
1236 len -= page_len;
1237 page_offset = (offset + buf->page_base) & (PAGE_CACHE_SIZE - 1);
1238 i = (offset + buf->page_base) >> PAGE_CACHE_SHIFT;
1239 thislen = PAGE_CACHE_SIZE - page_offset;
1240 do {
1241 if (thislen > page_len)
1242 thislen = page_len;
Jens Axboe642f149032007-10-24 11:20:47 +02001243 sg_set_page(sg, buf->pages[i], thislen, page_offset);
Olga Kornievskaia37a4e6c2006-12-04 20:22:33 -05001244 ret = actor(sg, data);
1245 if (ret)
1246 goto out;
1247 page_len -= thislen;
1248 i++;
1249 page_offset = 0;
1250 thislen = PAGE_CACHE_SIZE;
1251 } while (page_len != 0);
1252 offset = 0;
1253 }
1254 if (len == 0)
1255 goto out;
1256 if (offset < buf->tail[0].iov_len) {
1257 thislen = buf->tail[0].iov_len - offset;
1258 if (thislen > len)
1259 thislen = len;
1260 sg_set_buf(sg, buf->tail[0].iov_base + offset, thislen);
1261 ret = actor(sg, data);
1262 len -= thislen;
1263 }
1264 if (len != 0)
1265 ret = -EINVAL;
1266out:
1267 return ret;
1268}
Trond Myklebust468039e2008-12-23 15:21:31 -05001269EXPORT_SYMBOL_GPL(xdr_process_buf);
Olga Kornievskaia37a4e6c2006-12-04 20:22:33 -05001270