blob: 91f6f74ffea76e943355670ad472afeba05c2555 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/callback_xdr.c
3 *
4 * Copyright (C) 2004 Trond Myklebust
5 *
6 * NFSv4 callback encode/decode procedures
7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/kernel.h>
9#include <linux/sunrpc/svc.h>
10#include <linux/nfs4.h>
11#include <linux/nfs_fs.h>
Trond Myklebust4ce79712005-06-22 17:16:21 +000012#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "callback.h"
14
15#define CB_OP_TAGLEN_MAXSZ (512)
16#define CB_OP_HDR_RES_MAXSZ (2 + CB_OP_TAGLEN_MAXSZ)
17#define CB_OP_GETATTR_BITMAP_MAXSZ (4)
18#define CB_OP_GETATTR_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \
19 CB_OP_GETATTR_BITMAP_MAXSZ + \
20 2 + 2 + 3 + 3)
21#define CB_OP_RECALL_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
22
23#define NFSDBG_FACILITY NFSDBG_CALLBACK
24
Al Viroe6f684f2006-10-19 23:28:50 -070025typedef __be32 (*callback_process_op_t)(void *, void *);
26typedef __be32 (*callback_decode_arg_t)(struct svc_rqst *, struct xdr_stream *, void *);
27typedef __be32 (*callback_encode_res_t)(struct svc_rqst *, struct xdr_stream *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29
30struct callback_op {
31 callback_process_op_t process_op;
32 callback_decode_arg_t decode_args;
33 callback_encode_res_t encode_res;
34 long res_maxsize;
35};
36
37static struct callback_op callback_ops[];
38
Al Viro7111c662006-10-19 23:28:45 -070039static __be32 nfs4_callback_null(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 return htonl(NFS4_OK);
42}
43
Al Viro5704fde2006-10-19 23:28:51 -070044static int nfs4_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 return xdr_argsize_check(rqstp, p);
47}
48
Al Viro5704fde2006-10-19 23:28:51 -070049static int nfs4_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 return xdr_ressize_check(rqstp, p);
52}
53
Al Viro5704fde2006-10-19 23:28:51 -070054static __be32 *read_buf(struct xdr_stream *xdr, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Al Viro5704fde2006-10-19 23:28:51 -070056 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 p = xdr_inline_decode(xdr, nbytes);
59 if (unlikely(p == NULL))
60 printk(KERN_WARNING "NFSv4 callback reply buffer overflowed!\n");
61 return p;
62}
63
Al Viroe6f684f2006-10-19 23:28:50 -070064static __be32 decode_string(struct xdr_stream *xdr, unsigned int *len, const char **str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Al Viro5704fde2006-10-19 23:28:51 -070066 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 p = read_buf(xdr, 4);
69 if (unlikely(p == NULL))
70 return htonl(NFS4ERR_RESOURCE);
71 *len = ntohl(*p);
72
73 if (*len != 0) {
74 p = read_buf(xdr, *len);
75 if (unlikely(p == NULL))
76 return htonl(NFS4ERR_RESOURCE);
77 *str = (const char *)p;
78 } else
79 *str = NULL;
80
81 return 0;
82}
83
Al Viroe6f684f2006-10-19 23:28:50 -070084static __be32 decode_fh(struct xdr_stream *xdr, struct nfs_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Al Viro5704fde2006-10-19 23:28:51 -070086 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 p = read_buf(xdr, 4);
89 if (unlikely(p == NULL))
90 return htonl(NFS4ERR_RESOURCE);
91 fh->size = ntohl(*p);
92 if (fh->size > NFS4_FHSIZE)
93 return htonl(NFS4ERR_BADHANDLE);
94 p = read_buf(xdr, fh->size);
95 if (unlikely(p == NULL))
96 return htonl(NFS4ERR_RESOURCE);
97 memcpy(&fh->data[0], p, fh->size);
98 memset(&fh->data[fh->size], 0, sizeof(fh->data) - fh->size);
99 return 0;
100}
101
Al Viroe6f684f2006-10-19 23:28:50 -0700102static __be32 decode_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Al Viro5704fde2006-10-19 23:28:51 -0700104 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 unsigned int attrlen;
106
107 p = read_buf(xdr, 4);
108 if (unlikely(p == NULL))
109 return htonl(NFS4ERR_RESOURCE);
110 attrlen = ntohl(*p);
111 p = read_buf(xdr, attrlen << 2);
112 if (unlikely(p == NULL))
113 return htonl(NFS4ERR_RESOURCE);
114 if (likely(attrlen > 0))
115 bitmap[0] = ntohl(*p++);
116 if (attrlen > 1)
117 bitmap[1] = ntohl(*p);
118 return 0;
119}
120
Al Viroe6f684f2006-10-19 23:28:50 -0700121static __be32 decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Al Viro5704fde2006-10-19 23:28:51 -0700123 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 p = read_buf(xdr, 16);
126 if (unlikely(p == NULL))
127 return htonl(NFS4ERR_RESOURCE);
128 memcpy(stateid->data, p, 16);
129 return 0;
130}
131
Al Viroe6f684f2006-10-19 23:28:50 -0700132static __be32 decode_compound_hdr_arg(struct xdr_stream *xdr, struct cb_compound_hdr_arg *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Al Viro5704fde2006-10-19 23:28:51 -0700134 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700135 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 status = decode_string(xdr, &hdr->taglen, &hdr->tag);
138 if (unlikely(status != 0))
139 return status;
140 /* We do not like overly long tags! */
Chuck Lever5cce4282007-10-26 13:33:01 -0400141 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ - 12) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 printk("NFSv4 CALLBACK %s: client sent tag of length %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700143 __func__, hdr->taglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return htonl(NFS4ERR_RESOURCE);
145 }
146 p = read_buf(xdr, 12);
147 if (unlikely(p == NULL))
148 return htonl(NFS4ERR_RESOURCE);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400149 hdr->minorversion = ntohl(*p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 /* Check minor version is zero. */
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400151 if (hdr->minorversion != 0) {
152 printk(KERN_WARNING "%s: NFSv4 server callback with "
153 "illegal minor version %u!\n",
154 __func__, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
156 }
157 hdr->callback_ident = ntohl(*p++);
158 hdr->nops = ntohl(*p);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400159 dprintk("%s: minorversion %d nops %d\n", __func__,
160 hdr->minorversion, hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return 0;
162}
163
Al Viroe6f684f2006-10-19 23:28:50 -0700164static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Al Viro5704fde2006-10-19 23:28:51 -0700166 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 p = read_buf(xdr, 4);
168 if (unlikely(p == NULL))
169 return htonl(NFS4ERR_RESOURCE);
170 *op = ntohl(*p);
171 return 0;
172}
173
Al Viroe6f684f2006-10-19 23:28:50 -0700174static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_getattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Al Viroe6f684f2006-10-19 23:28:50 -0700176 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 status = decode_fh(xdr, &args->fh);
179 if (unlikely(status != 0))
180 goto out;
Chuck Lever671beed2007-12-10 14:58:22 -0500181 args->addr = svc_addr(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 status = decode_bitmap(xdr, args->bitmap);
183out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700184 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return status;
186}
187
Al Viroe6f684f2006-10-19 23:28:50 -0700188static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_recallargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Al Viro5704fde2006-10-19 23:28:51 -0700190 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700191 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Chuck Leverc1d35862007-12-10 14:58:29 -0500193 args->addr = svc_addr(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 status = decode_stateid(xdr, &args->stateid);
195 if (unlikely(status != 0))
196 goto out;
197 p = read_buf(xdr, 4);
198 if (unlikely(p == NULL)) {
199 status = htonl(NFS4ERR_RESOURCE);
200 goto out;
201 }
202 args->truncate = ntohl(*p);
203 status = decode_fh(xdr, &args->fh);
204out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700205 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Alexey Dobriyan3873bc52006-05-27 03:31:12 +0400206 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Al Viroe6f684f2006-10-19 23:28:50 -0700209static __be32 encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Al Viro5704fde2006-10-19 23:28:51 -0700211 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 p = xdr_reserve_space(xdr, 4 + len);
214 if (unlikely(p == NULL))
215 return htonl(NFS4ERR_RESOURCE);
216 xdr_encode_opaque(p, str, len);
217 return 0;
218}
219
220#define CB_SUPPORTED_ATTR0 (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE)
221#define CB_SUPPORTED_ATTR1 (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY)
Al Viro5704fde2006-10-19 23:28:51 -0700222static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Al Viro5704fde2006-10-19 23:28:51 -0700224 __be32 bm[2];
225 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 bm[0] = htonl(bitmap[0] & CB_SUPPORTED_ATTR0);
228 bm[1] = htonl(bitmap[1] & CB_SUPPORTED_ATTR1);
229 if (bm[1] != 0) {
230 p = xdr_reserve_space(xdr, 16);
231 if (unlikely(p == NULL))
232 return htonl(NFS4ERR_RESOURCE);
233 *p++ = htonl(2);
234 *p++ = bm[0];
235 *p++ = bm[1];
236 } else if (bm[0] != 0) {
237 p = xdr_reserve_space(xdr, 12);
238 if (unlikely(p == NULL))
239 return htonl(NFS4ERR_RESOURCE);
240 *p++ = htonl(1);
241 *p++ = bm[0];
242 } else {
243 p = xdr_reserve_space(xdr, 8);
244 if (unlikely(p == NULL))
245 return htonl(NFS4ERR_RESOURCE);
246 *p++ = htonl(0);
247 }
248 *savep = p;
249 return 0;
250}
251
Al Viroe6f684f2006-10-19 23:28:50 -0700252static __be32 encode_attr_change(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t change)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Al Viro5704fde2006-10-19 23:28:51 -0700254 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 if (!(bitmap[0] & FATTR4_WORD0_CHANGE))
257 return 0;
258 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800259 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return htonl(NFS4ERR_RESOURCE);
261 p = xdr_encode_hyper(p, change);
262 return 0;
263}
264
Al Viroe6f684f2006-10-19 23:28:50 -0700265static __be32 encode_attr_size(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Al Viro5704fde2006-10-19 23:28:51 -0700267 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 if (!(bitmap[0] & FATTR4_WORD0_SIZE))
270 return 0;
271 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800272 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return htonl(NFS4ERR_RESOURCE);
274 p = xdr_encode_hyper(p, size);
275 return 0;
276}
277
Al Viroe6f684f2006-10-19 23:28:50 -0700278static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Al Viro5704fde2006-10-19 23:28:51 -0700280 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 p = xdr_reserve_space(xdr, 12);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800283 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return htonl(NFS4ERR_RESOURCE);
285 p = xdr_encode_hyper(p, time->tv_sec);
286 *p = htonl(time->tv_nsec);
287 return 0;
288}
289
Al Viroe6f684f2006-10-19 23:28:50 -0700290static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA))
293 return 0;
294 return encode_attr_time(xdr,time);
295}
296
Al Viroe6f684f2006-10-19 23:28:50 -0700297static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY))
300 return 0;
301 return encode_attr_time(xdr,time);
302}
303
Al Viroe6f684f2006-10-19 23:28:50 -0700304static __be32 encode_compound_hdr_res(struct xdr_stream *xdr, struct cb_compound_hdr_res *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Al Viroe6f684f2006-10-19 23:28:50 -0700306 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 hdr->status = xdr_reserve_space(xdr, 4);
309 if (unlikely(hdr->status == NULL))
310 return htonl(NFS4ERR_RESOURCE);
311 status = encode_string(xdr, hdr->taglen, hdr->tag);
312 if (unlikely(status != 0))
313 return status;
314 hdr->nops = xdr_reserve_space(xdr, 4);
315 if (unlikely(hdr->nops == NULL))
316 return htonl(NFS4ERR_RESOURCE);
317 return 0;
318}
319
Al Viroe6f684f2006-10-19 23:28:50 -0700320static __be32 encode_op_hdr(struct xdr_stream *xdr, uint32_t op, __be32 res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Al Viro5704fde2006-10-19 23:28:51 -0700322 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 p = xdr_reserve_space(xdr, 8);
325 if (unlikely(p == NULL))
326 return htonl(NFS4ERR_RESOURCE);
327 *p++ = htonl(op);
328 *p = res;
329 return 0;
330}
331
Al Viroe6f684f2006-10-19 23:28:50 -0700332static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, const struct cb_getattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Al Viro5704fde2006-10-19 23:28:51 -0700334 __be32 *savep = NULL;
Al Viroe6f684f2006-10-19 23:28:50 -0700335 __be32 status = res->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 if (unlikely(status != 0))
338 goto out;
339 status = encode_attr_bitmap(xdr, res->bitmap, &savep);
340 if (unlikely(status != 0))
341 goto out;
342 status = encode_attr_change(xdr, res->bitmap, res->change_attr);
343 if (unlikely(status != 0))
344 goto out;
345 status = encode_attr_size(xdr, res->bitmap, res->size);
346 if (unlikely(status != 0))
347 goto out;
348 status = encode_attr_ctime(xdr, res->bitmap, &res->ctime);
349 if (unlikely(status != 0))
350 goto out;
351 status = encode_attr_mtime(xdr, res->bitmap, &res->mtime);
352 *savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1)));
353out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700354 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return status;
356}
357
Al Viroe6f684f2006-10-19 23:28:50 -0700358static __be32 process_op(struct svc_rqst *rqstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct xdr_stream *xdr_in, void *argp,
360 struct xdr_stream *xdr_out, void *resp)
361{
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500362 struct callback_op *op = &callback_ops[0];
363 unsigned int op_nr = OP_CB_ILLEGAL;
Al Viroe6f684f2006-10-19 23:28:50 -0700364 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 long maxlen;
Al Viroe6f684f2006-10-19 23:28:50 -0700366 __be32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Harvey Harrison3110ff82008-05-02 13:42:44 -0700368 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 status = decode_op_hdr(xdr_in, &op_nr);
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500370 if (likely(status == 0)) {
371 switch (op_nr) {
372 case OP_CB_GETATTR:
373 case OP_CB_RECALL:
374 op = &callback_ops[op_nr];
375 break;
376 default:
377 op_nr = OP_CB_ILLEGAL;
378 op = &callback_ops[0];
379 status = htonl(NFS4ERR_OP_ILLEGAL);
380 }
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 maxlen = xdr_out->end - xdr_out->p;
384 if (maxlen > 0 && maxlen < PAGE_SIZE) {
385 if (likely(status == 0 && op->decode_args != NULL))
386 status = op->decode_args(rqstp, xdr_in, argp);
387 if (likely(status == 0 && op->process_op != NULL))
388 status = op->process_op(argp, resp);
389 } else
390 status = htonl(NFS4ERR_RESOURCE);
391
392 res = encode_op_hdr(xdr_out, op_nr, status);
393 if (status == 0)
394 status = res;
395 if (op->encode_res != NULL && status == 0)
396 status = op->encode_res(rqstp, xdr_out, resp);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700397 dprintk("%s: done, status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return status;
399}
400
401/*
402 * Decode, process and encode a COMPOUND
403 */
Al Viro7111c662006-10-19 23:28:45 -0700404static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400406 struct cb_compound_hdr_arg hdr_arg = { 0 };
407 struct cb_compound_hdr_res hdr_res = { NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 struct xdr_stream xdr_in, xdr_out;
Al Viro5704fde2006-10-19 23:28:51 -0700409 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700410 __be32 status;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400411 unsigned int nops = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Harvey Harrison3110ff82008-05-02 13:42:44 -0700413 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 xdr_init_decode(&xdr_in, &rqstp->rq_arg, rqstp->rq_arg.head[0].iov_base);
416
Al Viro5704fde2006-10-19 23:28:51 -0700417 p = (__be32*)((char *)rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 xdr_init_encode(&xdr_out, &rqstp->rq_res, p);
419
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400420 status = decode_compound_hdr_arg(&xdr_in, &hdr_arg);
421 if (status == __constant_htonl(NFS4ERR_RESOURCE))
422 return rpc_garbage_args;
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 hdr_res.taglen = hdr_arg.taglen;
425 hdr_res.tag = hdr_arg.tag;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400426 if (encode_compound_hdr_res(&xdr_out, &hdr_res) != 0)
427 return rpc_system_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400429 while (status == 0 && nops != hdr_arg.nops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 status = process_op(rqstp, &xdr_in, argp, &xdr_out, resp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 nops++;
432 }
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 *hdr_res.status = status;
435 *hdr_res.nops = htonl(nops);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700436 dprintk("%s: done, status = %u\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return rpc_success;
438}
439
440/*
441 * Define NFS4 callback COMPOUND ops.
442 */
443static struct callback_op callback_ops[] = {
444 [0] = {
445 .res_maxsize = CB_OP_HDR_RES_MAXSZ,
446 },
447 [OP_CB_GETATTR] = {
448 .process_op = (callback_process_op_t)nfs4_callback_getattr,
449 .decode_args = (callback_decode_arg_t)decode_getattr_args,
450 .encode_res = (callback_encode_res_t)encode_getattr_res,
451 .res_maxsize = CB_OP_GETATTR_RES_MAXSZ,
452 },
453 [OP_CB_RECALL] = {
454 .process_op = (callback_process_op_t)nfs4_callback_recall,
455 .decode_args = (callback_decode_arg_t)decode_recall_args,
456 .res_maxsize = CB_OP_RECALL_RES_MAXSZ,
457 }
458};
459
460/*
461 * Define NFS4 callback procedures
462 */
463static struct svc_procedure nfs4_callback_procedures1[] = {
464 [CB_NULL] = {
465 .pc_func = nfs4_callback_null,
466 .pc_decode = (kxdrproc_t)nfs4_decode_void,
467 .pc_encode = (kxdrproc_t)nfs4_encode_void,
468 .pc_xdrressize = 1,
469 },
470 [CB_COMPOUND] = {
471 .pc_func = nfs4_callback_compound,
472 .pc_encode = (kxdrproc_t)nfs4_encode_void,
473 .pc_argsize = 256,
474 .pc_ressize = 256,
475 .pc_xdrressize = NFS4_CALLBACK_BUFSIZE,
476 }
477};
478
479struct svc_version nfs4_callback_version1 = {
480 .vs_vers = 1,
481 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
482 .vs_proc = nfs4_callback_procedures1,
483 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
484 .vs_dispatch = NULL,
485};
486