blob: f6cc79b1d1f3fc09f547b78aac2863c33382c5f2 [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++);
Benny Halevy48a9e2d2009-04-01 09:23:20 -0400150 /* Check minor version is zero or one. */
151 if (hdr->minorversion <= 1) {
152 p++; /* skip callback_ident */
153 } else {
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400154 printk(KERN_WARNING "%s: NFSv4 server callback with "
155 "illegal minor version %u!\n",
156 __func__, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 hdr->nops = ntohl(*p);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400160 dprintk("%s: minorversion %d nops %d\n", __func__,
161 hdr->minorversion, hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return 0;
163}
164
Al Viroe6f684f2006-10-19 23:28:50 -0700165static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Al Viro5704fde2006-10-19 23:28:51 -0700167 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 p = read_buf(xdr, 4);
169 if (unlikely(p == NULL))
170 return htonl(NFS4ERR_RESOURCE);
171 *op = ntohl(*p);
172 return 0;
173}
174
Al Viroe6f684f2006-10-19 23:28:50 -0700175static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_getattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Al Viroe6f684f2006-10-19 23:28:50 -0700177 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 status = decode_fh(xdr, &args->fh);
180 if (unlikely(status != 0))
181 goto out;
Chuck Lever671beed2007-12-10 14:58:22 -0500182 args->addr = svc_addr(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 status = decode_bitmap(xdr, args->bitmap);
184out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700185 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return status;
187}
188
Al Viroe6f684f2006-10-19 23:28:50 -0700189static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_recallargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Al Viro5704fde2006-10-19 23:28:51 -0700191 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700192 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Chuck Leverc1d35862007-12-10 14:58:29 -0500194 args->addr = svc_addr(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 status = decode_stateid(xdr, &args->stateid);
196 if (unlikely(status != 0))
197 goto out;
198 p = read_buf(xdr, 4);
199 if (unlikely(p == NULL)) {
200 status = htonl(NFS4ERR_RESOURCE);
201 goto out;
202 }
203 args->truncate = ntohl(*p);
204 status = decode_fh(xdr, &args->fh);
205out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700206 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Alexey Dobriyan3873bc52006-05-27 03:31:12 +0400207 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
Al Viroe6f684f2006-10-19 23:28:50 -0700210static __be32 encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Al Viro5704fde2006-10-19 23:28:51 -0700212 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 p = xdr_reserve_space(xdr, 4 + len);
215 if (unlikely(p == NULL))
216 return htonl(NFS4ERR_RESOURCE);
217 xdr_encode_opaque(p, str, len);
218 return 0;
219}
220
221#define CB_SUPPORTED_ATTR0 (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE)
222#define CB_SUPPORTED_ATTR1 (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY)
Al Viro5704fde2006-10-19 23:28:51 -0700223static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Al Viro5704fde2006-10-19 23:28:51 -0700225 __be32 bm[2];
226 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 bm[0] = htonl(bitmap[0] & CB_SUPPORTED_ATTR0);
229 bm[1] = htonl(bitmap[1] & CB_SUPPORTED_ATTR1);
230 if (bm[1] != 0) {
231 p = xdr_reserve_space(xdr, 16);
232 if (unlikely(p == NULL))
233 return htonl(NFS4ERR_RESOURCE);
234 *p++ = htonl(2);
235 *p++ = bm[0];
236 *p++ = bm[1];
237 } else if (bm[0] != 0) {
238 p = xdr_reserve_space(xdr, 12);
239 if (unlikely(p == NULL))
240 return htonl(NFS4ERR_RESOURCE);
241 *p++ = htonl(1);
242 *p++ = bm[0];
243 } else {
244 p = xdr_reserve_space(xdr, 8);
245 if (unlikely(p == NULL))
246 return htonl(NFS4ERR_RESOURCE);
247 *p++ = htonl(0);
248 }
249 *savep = p;
250 return 0;
251}
252
Al Viroe6f684f2006-10-19 23:28:50 -0700253static __be32 encode_attr_change(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t change)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Al Viro5704fde2006-10-19 23:28:51 -0700255 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 if (!(bitmap[0] & FATTR4_WORD0_CHANGE))
258 return 0;
259 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800260 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return htonl(NFS4ERR_RESOURCE);
262 p = xdr_encode_hyper(p, change);
263 return 0;
264}
265
Al Viroe6f684f2006-10-19 23:28:50 -0700266static __be32 encode_attr_size(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Al Viro5704fde2006-10-19 23:28:51 -0700268 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if (!(bitmap[0] & FATTR4_WORD0_SIZE))
271 return 0;
272 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800273 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return htonl(NFS4ERR_RESOURCE);
275 p = xdr_encode_hyper(p, size);
276 return 0;
277}
278
Al Viroe6f684f2006-10-19 23:28:50 -0700279static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Al Viro5704fde2006-10-19 23:28:51 -0700281 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 p = xdr_reserve_space(xdr, 12);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800284 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return htonl(NFS4ERR_RESOURCE);
286 p = xdr_encode_hyper(p, time->tv_sec);
287 *p = htonl(time->tv_nsec);
288 return 0;
289}
290
Al Viroe6f684f2006-10-19 23:28:50 -0700291static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA))
294 return 0;
295 return encode_attr_time(xdr,time);
296}
297
Al Viroe6f684f2006-10-19 23:28:50 -0700298static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY))
301 return 0;
302 return encode_attr_time(xdr,time);
303}
304
Al Viroe6f684f2006-10-19 23:28:50 -0700305static __be32 encode_compound_hdr_res(struct xdr_stream *xdr, struct cb_compound_hdr_res *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Al Viroe6f684f2006-10-19 23:28:50 -0700307 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 hdr->status = xdr_reserve_space(xdr, 4);
310 if (unlikely(hdr->status == NULL))
311 return htonl(NFS4ERR_RESOURCE);
312 status = encode_string(xdr, hdr->taglen, hdr->tag);
313 if (unlikely(status != 0))
314 return status;
315 hdr->nops = xdr_reserve_space(xdr, 4);
316 if (unlikely(hdr->nops == NULL))
317 return htonl(NFS4ERR_RESOURCE);
318 return 0;
319}
320
Al Viroe6f684f2006-10-19 23:28:50 -0700321static __be32 encode_op_hdr(struct xdr_stream *xdr, uint32_t op, __be32 res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Al Viro5704fde2006-10-19 23:28:51 -0700323 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 p = xdr_reserve_space(xdr, 8);
326 if (unlikely(p == NULL))
327 return htonl(NFS4ERR_RESOURCE);
328 *p++ = htonl(op);
329 *p = res;
330 return 0;
331}
332
Al Viroe6f684f2006-10-19 23:28:50 -0700333static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, const struct cb_getattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Al Viro5704fde2006-10-19 23:28:51 -0700335 __be32 *savep = NULL;
Al Viroe6f684f2006-10-19 23:28:50 -0700336 __be32 status = res->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 if (unlikely(status != 0))
339 goto out;
340 status = encode_attr_bitmap(xdr, res->bitmap, &savep);
341 if (unlikely(status != 0))
342 goto out;
343 status = encode_attr_change(xdr, res->bitmap, res->change_attr);
344 if (unlikely(status != 0))
345 goto out;
346 status = encode_attr_size(xdr, res->bitmap, res->size);
347 if (unlikely(status != 0))
348 goto out;
349 status = encode_attr_ctime(xdr, res->bitmap, &res->ctime);
350 if (unlikely(status != 0))
351 goto out;
352 status = encode_attr_mtime(xdr, res->bitmap, &res->mtime);
353 *savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1)));
354out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700355 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return status;
357}
358
Al Viroe6f684f2006-10-19 23:28:50 -0700359static __be32 process_op(struct svc_rqst *rqstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 struct xdr_stream *xdr_in, void *argp,
361 struct xdr_stream *xdr_out, void *resp)
362{
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500363 struct callback_op *op = &callback_ops[0];
364 unsigned int op_nr = OP_CB_ILLEGAL;
Al Viroe6f684f2006-10-19 23:28:50 -0700365 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 long maxlen;
Al Viroe6f684f2006-10-19 23:28:50 -0700367 __be32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Harvey Harrison3110ff82008-05-02 13:42:44 -0700369 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 status = decode_op_hdr(xdr_in, &op_nr);
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500371 if (likely(status == 0)) {
372 switch (op_nr) {
373 case OP_CB_GETATTR:
374 case OP_CB_RECALL:
375 op = &callback_ops[op_nr];
376 break;
377 default:
378 op_nr = OP_CB_ILLEGAL;
379 op = &callback_ops[0];
380 status = htonl(NFS4ERR_OP_ILLEGAL);
381 }
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 maxlen = xdr_out->end - xdr_out->p;
385 if (maxlen > 0 && maxlen < PAGE_SIZE) {
386 if (likely(status == 0 && op->decode_args != NULL))
387 status = op->decode_args(rqstp, xdr_in, argp);
388 if (likely(status == 0 && op->process_op != NULL))
389 status = op->process_op(argp, resp);
390 } else
391 status = htonl(NFS4ERR_RESOURCE);
392
393 res = encode_op_hdr(xdr_out, op_nr, status);
394 if (status == 0)
395 status = res;
396 if (op->encode_res != NULL && status == 0)
397 status = op->encode_res(rqstp, xdr_out, resp);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700398 dprintk("%s: done, status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return status;
400}
401
402/*
403 * Decode, process and encode a COMPOUND
404 */
Al Viro7111c662006-10-19 23:28:45 -0700405static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400407 struct cb_compound_hdr_arg hdr_arg = { 0 };
408 struct cb_compound_hdr_res hdr_res = { NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 struct xdr_stream xdr_in, xdr_out;
Al Viro5704fde2006-10-19 23:28:51 -0700410 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700411 __be32 status;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400412 unsigned int nops = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Harvey Harrison3110ff82008-05-02 13:42:44 -0700414 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 xdr_init_decode(&xdr_in, &rqstp->rq_arg, rqstp->rq_arg.head[0].iov_base);
417
Al Viro5704fde2006-10-19 23:28:51 -0700418 p = (__be32*)((char *)rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 xdr_init_encode(&xdr_out, &rqstp->rq_res, p);
420
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400421 status = decode_compound_hdr_arg(&xdr_in, &hdr_arg);
422 if (status == __constant_htonl(NFS4ERR_RESOURCE))
423 return rpc_garbage_args;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 hdr_res.taglen = hdr_arg.taglen;
426 hdr_res.tag = hdr_arg.tag;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400427 if (encode_compound_hdr_res(&xdr_out, &hdr_res) != 0)
428 return rpc_system_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400430 while (status == 0 && nops != hdr_arg.nops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 status = process_op(rqstp, &xdr_in, argp, &xdr_out, resp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 nops++;
433 }
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 *hdr_res.status = status;
436 *hdr_res.nops = htonl(nops);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700437 dprintk("%s: done, status = %u\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return rpc_success;
439}
440
441/*
442 * Define NFS4 callback COMPOUND ops.
443 */
444static struct callback_op callback_ops[] = {
445 [0] = {
446 .res_maxsize = CB_OP_HDR_RES_MAXSZ,
447 },
448 [OP_CB_GETATTR] = {
449 .process_op = (callback_process_op_t)nfs4_callback_getattr,
450 .decode_args = (callback_decode_arg_t)decode_getattr_args,
451 .encode_res = (callback_encode_res_t)encode_getattr_res,
452 .res_maxsize = CB_OP_GETATTR_RES_MAXSZ,
453 },
454 [OP_CB_RECALL] = {
455 .process_op = (callback_process_op_t)nfs4_callback_recall,
456 .decode_args = (callback_decode_arg_t)decode_recall_args,
457 .res_maxsize = CB_OP_RECALL_RES_MAXSZ,
458 }
459};
460
461/*
462 * Define NFS4 callback procedures
463 */
464static struct svc_procedure nfs4_callback_procedures1[] = {
465 [CB_NULL] = {
466 .pc_func = nfs4_callback_null,
467 .pc_decode = (kxdrproc_t)nfs4_decode_void,
468 .pc_encode = (kxdrproc_t)nfs4_encode_void,
469 .pc_xdrressize = 1,
470 },
471 [CB_COMPOUND] = {
472 .pc_func = nfs4_callback_compound,
473 .pc_encode = (kxdrproc_t)nfs4_encode_void,
474 .pc_argsize = 256,
475 .pc_ressize = 256,
476 .pc_xdrressize = NFS4_CALLBACK_BUFSIZE,
477 }
478};
479
480struct svc_version nfs4_callback_version1 = {
481 .vs_vers = 1,
482 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
483 .vs_proc = nfs4_callback_procedures1,
484 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
485 .vs_dispatch = NULL,
486};
487