blob: 8e1a2511c8be5b00e35fae972ee62cc921ce2d15 [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
Benny Halevy4aece6a2009-04-01 09:23:26 -040023#if defined(CONFIG_NFS_V4_1)
24#define CB_OP_SEQUENCE_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \
25 4 + 1 + 3)
Alexandros Batsakis31f09602009-12-05 13:27:02 -050026#define CB_OP_RECALLANY_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
Benny Halevy4aece6a2009-04-01 09:23:26 -040027#endif /* CONFIG_NFS_V4_1 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define NFSDBG_FACILITY NFSDBG_CALLBACK
30
Al Viroe6f684f2006-10-19 23:28:50 -070031typedef __be32 (*callback_process_op_t)(void *, void *);
32typedef __be32 (*callback_decode_arg_t)(struct svc_rqst *, struct xdr_stream *, void *);
33typedef __be32 (*callback_encode_res_t)(struct svc_rqst *, struct xdr_stream *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
36struct callback_op {
37 callback_process_op_t process_op;
38 callback_decode_arg_t decode_args;
39 callback_encode_res_t encode_res;
40 long res_maxsize;
41};
42
43static struct callback_op callback_ops[];
44
Al Viro7111c662006-10-19 23:28:45 -070045static __be32 nfs4_callback_null(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 return htonl(NFS4_OK);
48}
49
Al Viro5704fde2006-10-19 23:28:51 -070050static int nfs4_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 return xdr_argsize_check(rqstp, p);
53}
54
Al Viro5704fde2006-10-19 23:28:51 -070055static int nfs4_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 return xdr_ressize_check(rqstp, p);
58}
59
Al Viro5704fde2006-10-19 23:28:51 -070060static __be32 *read_buf(struct xdr_stream *xdr, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Al Viro5704fde2006-10-19 23:28:51 -070062 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 p = xdr_inline_decode(xdr, nbytes);
65 if (unlikely(p == NULL))
66 printk(KERN_WARNING "NFSv4 callback reply buffer overflowed!\n");
67 return p;
68}
69
Al Viroe6f684f2006-10-19 23:28:50 -070070static __be32 decode_string(struct xdr_stream *xdr, unsigned int *len, const char **str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Al Viro5704fde2006-10-19 23:28:51 -070072 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 p = read_buf(xdr, 4);
75 if (unlikely(p == NULL))
76 return htonl(NFS4ERR_RESOURCE);
77 *len = ntohl(*p);
78
79 if (*len != 0) {
80 p = read_buf(xdr, *len);
81 if (unlikely(p == NULL))
82 return htonl(NFS4ERR_RESOURCE);
83 *str = (const char *)p;
84 } else
85 *str = NULL;
86
87 return 0;
88}
89
Al Viroe6f684f2006-10-19 23:28:50 -070090static __be32 decode_fh(struct xdr_stream *xdr, struct nfs_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Al Viro5704fde2006-10-19 23:28:51 -070092 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 p = read_buf(xdr, 4);
95 if (unlikely(p == NULL))
96 return htonl(NFS4ERR_RESOURCE);
97 fh->size = ntohl(*p);
98 if (fh->size > NFS4_FHSIZE)
99 return htonl(NFS4ERR_BADHANDLE);
100 p = read_buf(xdr, fh->size);
101 if (unlikely(p == NULL))
102 return htonl(NFS4ERR_RESOURCE);
103 memcpy(&fh->data[0], p, fh->size);
104 memset(&fh->data[fh->size], 0, sizeof(fh->data) - fh->size);
105 return 0;
106}
107
Al Viroe6f684f2006-10-19 23:28:50 -0700108static __be32 decode_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Al Viro5704fde2006-10-19 23:28:51 -0700110 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 unsigned int attrlen;
112
113 p = read_buf(xdr, 4);
114 if (unlikely(p == NULL))
115 return htonl(NFS4ERR_RESOURCE);
116 attrlen = ntohl(*p);
117 p = read_buf(xdr, attrlen << 2);
118 if (unlikely(p == NULL))
119 return htonl(NFS4ERR_RESOURCE);
120 if (likely(attrlen > 0))
121 bitmap[0] = ntohl(*p++);
122 if (attrlen > 1)
123 bitmap[1] = ntohl(*p);
124 return 0;
125}
126
Al Viroe6f684f2006-10-19 23:28:50 -0700127static __be32 decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Al Viro5704fde2006-10-19 23:28:51 -0700129 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 p = read_buf(xdr, 16);
132 if (unlikely(p == NULL))
133 return htonl(NFS4ERR_RESOURCE);
134 memcpy(stateid->data, p, 16);
135 return 0;
136}
137
Al Viroe6f684f2006-10-19 23:28:50 -0700138static __be32 decode_compound_hdr_arg(struct xdr_stream *xdr, struct cb_compound_hdr_arg *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Al Viro5704fde2006-10-19 23:28:51 -0700140 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700141 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 status = decode_string(xdr, &hdr->taglen, &hdr->tag);
144 if (unlikely(status != 0))
145 return status;
146 /* We do not like overly long tags! */
Chuck Lever5cce4282007-10-26 13:33:01 -0400147 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ - 12) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 printk("NFSv4 CALLBACK %s: client sent tag of length %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700149 __func__, hdr->taglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return htonl(NFS4ERR_RESOURCE);
151 }
152 p = read_buf(xdr, 12);
153 if (unlikely(p == NULL))
154 return htonl(NFS4ERR_RESOURCE);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400155 hdr->minorversion = ntohl(*p++);
Benny Halevy48a9e2d2009-04-01 09:23:20 -0400156 /* Check minor version is zero or one. */
157 if (hdr->minorversion <= 1) {
158 p++; /* skip callback_ident */
159 } else {
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400160 printk(KERN_WARNING "%s: NFSv4 server callback with "
161 "illegal minor version %u!\n",
162 __func__, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 hdr->nops = ntohl(*p);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400166 dprintk("%s: minorversion %d nops %d\n", __func__,
167 hdr->minorversion, hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return 0;
169}
170
Al Viroe6f684f2006-10-19 23:28:50 -0700171static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Al Viro5704fde2006-10-19 23:28:51 -0700173 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 p = read_buf(xdr, 4);
175 if (unlikely(p == NULL))
176 return htonl(NFS4ERR_RESOURCE);
177 *op = ntohl(*p);
178 return 0;
179}
180
Al Viroe6f684f2006-10-19 23:28:50 -0700181static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_getattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Al Viroe6f684f2006-10-19 23:28:50 -0700183 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 status = decode_fh(xdr, &args->fh);
186 if (unlikely(status != 0))
187 goto out;
Chuck Lever671beed2007-12-10 14:58:22 -0500188 args->addr = svc_addr(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 status = decode_bitmap(xdr, args->bitmap);
190out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700191 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return status;
193}
194
Al Viroe6f684f2006-10-19 23:28:50 -0700195static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_recallargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Al Viro5704fde2006-10-19 23:28:51 -0700197 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700198 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Chuck Leverc1d35862007-12-10 14:58:29 -0500200 args->addr = svc_addr(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 status = decode_stateid(xdr, &args->stateid);
202 if (unlikely(status != 0))
203 goto out;
204 p = read_buf(xdr, 4);
205 if (unlikely(p == NULL)) {
206 status = htonl(NFS4ERR_RESOURCE);
207 goto out;
208 }
209 args->truncate = ntohl(*p);
210 status = decode_fh(xdr, &args->fh);
211out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700212 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Alexey Dobriyan3873bc52006-05-27 03:31:12 +0400213 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Benny Halevy4aece6a2009-04-01 09:23:26 -0400216#if defined(CONFIG_NFS_V4_1)
217
218static unsigned decode_sessionid(struct xdr_stream *xdr,
219 struct nfs4_sessionid *sid)
220{
221 uint32_t *p;
222 int len = NFS4_MAX_SESSIONID_LEN;
223
224 p = read_buf(xdr, len);
225 if (unlikely(p == NULL))
Joe Perchesa419aef2009-08-18 11:18:35 -0700226 return htonl(NFS4ERR_RESOURCE);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400227
228 memcpy(sid->data, p, len);
229 return 0;
230}
231
232static unsigned decode_rc_list(struct xdr_stream *xdr,
233 struct referring_call_list *rc_list)
234{
235 uint32_t *p;
236 int i;
237 unsigned status;
238
239 status = decode_sessionid(xdr, &rc_list->rcl_sessionid);
240 if (status)
241 goto out;
242
243 status = htonl(NFS4ERR_RESOURCE);
244 p = read_buf(xdr, sizeof(uint32_t));
245 if (unlikely(p == NULL))
246 goto out;
247
248 rc_list->rcl_nrefcalls = ntohl(*p++);
249 if (rc_list->rcl_nrefcalls) {
250 p = read_buf(xdr,
251 rc_list->rcl_nrefcalls * 2 * sizeof(uint32_t));
252 if (unlikely(p == NULL))
253 goto out;
254 rc_list->rcl_refcalls = kmalloc(rc_list->rcl_nrefcalls *
255 sizeof(*rc_list->rcl_refcalls),
256 GFP_KERNEL);
257 if (unlikely(rc_list->rcl_refcalls == NULL))
258 goto out;
259 for (i = 0; i < rc_list->rcl_nrefcalls; i++) {
260 rc_list->rcl_refcalls[i].rc_sequenceid = ntohl(*p++);
261 rc_list->rcl_refcalls[i].rc_slotid = ntohl(*p++);
262 }
263 }
264 status = 0;
265
266out:
267 return status;
268}
269
270static unsigned decode_cb_sequence_args(struct svc_rqst *rqstp,
271 struct xdr_stream *xdr,
272 struct cb_sequenceargs *args)
273{
274 uint32_t *p;
275 int i;
276 unsigned status;
277
278 status = decode_sessionid(xdr, &args->csa_sessionid);
279 if (status)
280 goto out;
281
282 status = htonl(NFS4ERR_RESOURCE);
283 p = read_buf(xdr, 5 * sizeof(uint32_t));
284 if (unlikely(p == NULL))
285 goto out;
286
Ricardo Labiaga65fc64e2009-04-01 09:23:30 -0400287 args->csa_addr = svc_addr(rqstp);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400288 args->csa_sequenceid = ntohl(*p++);
289 args->csa_slotid = ntohl(*p++);
290 args->csa_highestslotid = ntohl(*p++);
291 args->csa_cachethis = ntohl(*p++);
292 args->csa_nrclists = ntohl(*p++);
293 args->csa_rclists = NULL;
294 if (args->csa_nrclists) {
295 args->csa_rclists = kmalloc(args->csa_nrclists *
296 sizeof(*args->csa_rclists),
297 GFP_KERNEL);
298 if (unlikely(args->csa_rclists == NULL))
299 goto out;
300
301 for (i = 0; i < args->csa_nrclists; i++) {
302 status = decode_rc_list(xdr, &args->csa_rclists[i]);
303 if (status)
304 goto out_free;
305 }
306 }
307 status = 0;
308
309 dprintk("%s: sessionid %x:%x:%x:%x sequenceid %u slotid %u "
310 "highestslotid %u cachethis %d nrclists %u\n",
311 __func__,
312 ((u32 *)&args->csa_sessionid)[0],
313 ((u32 *)&args->csa_sessionid)[1],
314 ((u32 *)&args->csa_sessionid)[2],
315 ((u32 *)&args->csa_sessionid)[3],
316 args->csa_sequenceid, args->csa_slotid,
317 args->csa_highestslotid, args->csa_cachethis,
318 args->csa_nrclists);
319out:
320 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
321 return status;
322
323out_free:
324 for (i = 0; i < args->csa_nrclists; i++)
325 kfree(args->csa_rclists[i].rcl_refcalls);
326 kfree(args->csa_rclists);
327 goto out;
328}
329
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500330static unsigned decode_recallany_args(struct svc_rqst *rqstp,
331 struct xdr_stream *xdr,
332 struct cb_recallanyargs *args)
333{
334 uint32_t *p;
335
336 args->craa_addr = svc_addr(rqstp);
337 p = read_buf(xdr, 4);
338 if (unlikely(p == NULL))
339 return htonl(NFS4ERR_BADXDR);
340 args->craa_objs_to_keep = ntohl(*p++);
341 p = read_buf(xdr, 4);
342 if (unlikely(p == NULL))
343 return htonl(NFS4ERR_BADXDR);
344 args->craa_type_mask = ntohl(*p);
345
346 return 0;
347}
348
Benny Halevy4aece6a2009-04-01 09:23:26 -0400349#endif /* CONFIG_NFS_V4_1 */
350
Al Viroe6f684f2006-10-19 23:28:50 -0700351static __be32 encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Al Viro5704fde2006-10-19 23:28:51 -0700353 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 p = xdr_reserve_space(xdr, 4 + len);
356 if (unlikely(p == NULL))
357 return htonl(NFS4ERR_RESOURCE);
358 xdr_encode_opaque(p, str, len);
359 return 0;
360}
361
362#define CB_SUPPORTED_ATTR0 (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE)
363#define CB_SUPPORTED_ATTR1 (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY)
Al Viro5704fde2006-10-19 23:28:51 -0700364static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Al Viro5704fde2006-10-19 23:28:51 -0700366 __be32 bm[2];
367 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 bm[0] = htonl(bitmap[0] & CB_SUPPORTED_ATTR0);
370 bm[1] = htonl(bitmap[1] & CB_SUPPORTED_ATTR1);
371 if (bm[1] != 0) {
372 p = xdr_reserve_space(xdr, 16);
373 if (unlikely(p == NULL))
374 return htonl(NFS4ERR_RESOURCE);
375 *p++ = htonl(2);
376 *p++ = bm[0];
377 *p++ = bm[1];
378 } else if (bm[0] != 0) {
379 p = xdr_reserve_space(xdr, 12);
380 if (unlikely(p == NULL))
381 return htonl(NFS4ERR_RESOURCE);
382 *p++ = htonl(1);
383 *p++ = bm[0];
384 } else {
385 p = xdr_reserve_space(xdr, 8);
386 if (unlikely(p == NULL))
387 return htonl(NFS4ERR_RESOURCE);
388 *p++ = htonl(0);
389 }
390 *savep = p;
391 return 0;
392}
393
Al Viroe6f684f2006-10-19 23:28:50 -0700394static __be32 encode_attr_change(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t change)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Al Viro5704fde2006-10-19 23:28:51 -0700396 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (!(bitmap[0] & FATTR4_WORD0_CHANGE))
399 return 0;
400 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800401 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return htonl(NFS4ERR_RESOURCE);
403 p = xdr_encode_hyper(p, change);
404 return 0;
405}
406
Al Viroe6f684f2006-10-19 23:28:50 -0700407static __be32 encode_attr_size(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Al Viro5704fde2006-10-19 23:28:51 -0700409 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 if (!(bitmap[0] & FATTR4_WORD0_SIZE))
412 return 0;
413 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800414 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return htonl(NFS4ERR_RESOURCE);
416 p = xdr_encode_hyper(p, size);
417 return 0;
418}
419
Al Viroe6f684f2006-10-19 23:28:50 -0700420static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Al Viro5704fde2006-10-19 23:28:51 -0700422 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 p = xdr_reserve_space(xdr, 12);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800425 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return htonl(NFS4ERR_RESOURCE);
427 p = xdr_encode_hyper(p, time->tv_sec);
428 *p = htonl(time->tv_nsec);
429 return 0;
430}
431
Al Viroe6f684f2006-10-19 23:28:50 -0700432static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA))
435 return 0;
436 return encode_attr_time(xdr,time);
437}
438
Al Viroe6f684f2006-10-19 23:28:50 -0700439static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY))
442 return 0;
443 return encode_attr_time(xdr,time);
444}
445
Al Viroe6f684f2006-10-19 23:28:50 -0700446static __be32 encode_compound_hdr_res(struct xdr_stream *xdr, struct cb_compound_hdr_res *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Al Viroe6f684f2006-10-19 23:28:50 -0700448 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 hdr->status = xdr_reserve_space(xdr, 4);
451 if (unlikely(hdr->status == NULL))
452 return htonl(NFS4ERR_RESOURCE);
453 status = encode_string(xdr, hdr->taglen, hdr->tag);
454 if (unlikely(status != 0))
455 return status;
456 hdr->nops = xdr_reserve_space(xdr, 4);
457 if (unlikely(hdr->nops == NULL))
458 return htonl(NFS4ERR_RESOURCE);
459 return 0;
460}
461
Al Viroe6f684f2006-10-19 23:28:50 -0700462static __be32 encode_op_hdr(struct xdr_stream *xdr, uint32_t op, __be32 res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Al Viro5704fde2006-10-19 23:28:51 -0700464 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 p = xdr_reserve_space(xdr, 8);
467 if (unlikely(p == NULL))
468 return htonl(NFS4ERR_RESOURCE);
469 *p++ = htonl(op);
470 *p = res;
471 return 0;
472}
473
Al Viroe6f684f2006-10-19 23:28:50 -0700474static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, const struct cb_getattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Al Viro5704fde2006-10-19 23:28:51 -0700476 __be32 *savep = NULL;
Al Viroe6f684f2006-10-19 23:28:50 -0700477 __be32 status = res->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if (unlikely(status != 0))
480 goto out;
481 status = encode_attr_bitmap(xdr, res->bitmap, &savep);
482 if (unlikely(status != 0))
483 goto out;
484 status = encode_attr_change(xdr, res->bitmap, res->change_attr);
485 if (unlikely(status != 0))
486 goto out;
487 status = encode_attr_size(xdr, res->bitmap, res->size);
488 if (unlikely(status != 0))
489 goto out;
490 status = encode_attr_ctime(xdr, res->bitmap, &res->ctime);
491 if (unlikely(status != 0))
492 goto out;
493 status = encode_attr_mtime(xdr, res->bitmap, &res->mtime);
494 *savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1)));
495out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700496 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return status;
498}
499
Benny Halevy34bc47c92009-04-01 09:23:22 -0400500#if defined(CONFIG_NFS_V4_1)
501
Benny Halevy4aece6a2009-04-01 09:23:26 -0400502static unsigned encode_sessionid(struct xdr_stream *xdr,
503 const struct nfs4_sessionid *sid)
504{
505 uint32_t *p;
506 int len = NFS4_MAX_SESSIONID_LEN;
507
508 p = xdr_reserve_space(xdr, len);
509 if (unlikely(p == NULL))
510 return htonl(NFS4ERR_RESOURCE);
511
512 memcpy(p, sid, len);
513 return 0;
514}
515
516static unsigned encode_cb_sequence_res(struct svc_rqst *rqstp,
517 struct xdr_stream *xdr,
518 const struct cb_sequenceres *res)
519{
520 uint32_t *p;
521 unsigned status = res->csr_status;
522
523 if (unlikely(status != 0))
524 goto out;
525
526 encode_sessionid(xdr, &res->csr_sessionid);
527
528 p = xdr_reserve_space(xdr, 4 * sizeof(uint32_t));
529 if (unlikely(p == NULL))
530 return htonl(NFS4ERR_RESOURCE);
531
532 *p++ = htonl(res->csr_sequenceid);
533 *p++ = htonl(res->csr_slotid);
534 *p++ = htonl(res->csr_highestslotid);
535 *p++ = htonl(res->csr_target_highestslotid);
536out:
537 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
538 return status;
539}
540
Benny Halevy34bc47c92009-04-01 09:23:22 -0400541static __be32
542preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
543{
Benny Halevy281fe152009-04-01 09:23:27 -0400544 if (op_nr == OP_CB_SEQUENCE) {
545 if (nop != 0)
546 return htonl(NFS4ERR_SEQUENCE_POS);
547 } else {
548 if (nop == 0)
549 return htonl(NFS4ERR_OP_NOT_IN_SESSION);
550 }
551
Benny Halevy34bc47c92009-04-01 09:23:22 -0400552 switch (op_nr) {
553 case OP_CB_GETATTR:
554 case OP_CB_RECALL:
Benny Halevy4aece6a2009-04-01 09:23:26 -0400555 case OP_CB_SEQUENCE:
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500556 case OP_CB_RECALL_ANY:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400557 *op = &callback_ops[op_nr];
558 break;
559
560 case OP_CB_LAYOUTRECALL:
561 case OP_CB_NOTIFY_DEVICEID:
562 case OP_CB_NOTIFY:
563 case OP_CB_PUSH_DELEG:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400564 case OP_CB_RECALLABLE_OBJ_AVAIL:
565 case OP_CB_RECALL_SLOT:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400566 case OP_CB_WANTS_CANCELLED:
567 case OP_CB_NOTIFY_LOCK:
568 return htonl(NFS4ERR_NOTSUPP);
569
570 default:
571 return htonl(NFS4ERR_OP_ILLEGAL);
572 }
573
574 return htonl(NFS_OK);
575}
576
577#else /* CONFIG_NFS_V4_1 */
578
579static __be32
580preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
581{
582 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
583}
584
585#endif /* CONFIG_NFS_V4_1 */
586
587static __be32
588preprocess_nfs4_op(unsigned int op_nr, struct callback_op **op)
589{
590 switch (op_nr) {
591 case OP_CB_GETATTR:
592 case OP_CB_RECALL:
593 *op = &callback_ops[op_nr];
594 break;
595 default:
596 return htonl(NFS4ERR_OP_ILLEGAL);
597 }
598
599 return htonl(NFS_OK);
600}
601
602static __be32 process_op(uint32_t minorversion, int nop,
603 struct svc_rqst *rqstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct xdr_stream *xdr_in, void *argp,
605 struct xdr_stream *xdr_out, void *resp)
606{
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500607 struct callback_op *op = &callback_ops[0];
608 unsigned int op_nr = OP_CB_ILLEGAL;
Benny Halevy34bc47c92009-04-01 09:23:22 -0400609 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 long maxlen;
Al Viroe6f684f2006-10-19 23:28:50 -0700611 __be32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Harvey Harrison3110ff82008-05-02 13:42:44 -0700613 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 status = decode_op_hdr(xdr_in, &op_nr);
Benny Halevy34bc47c92009-04-01 09:23:22 -0400615 if (unlikely(status)) {
616 status = htonl(NFS4ERR_OP_ILLEGAL);
617 goto out;
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Benny Halevy34bc47c92009-04-01 09:23:22 -0400620 dprintk("%s: minorversion=%d nop=%d op_nr=%u\n",
621 __func__, minorversion, nop, op_nr);
622
623 status = minorversion ? preprocess_nfs41_op(nop, op_nr, &op) :
624 preprocess_nfs4_op(op_nr, &op);
625 if (status == htonl(NFS4ERR_OP_ILLEGAL))
626 op_nr = OP_CB_ILLEGAL;
627out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 maxlen = xdr_out->end - xdr_out->p;
629 if (maxlen > 0 && maxlen < PAGE_SIZE) {
630 if (likely(status == 0 && op->decode_args != NULL))
631 status = op->decode_args(rqstp, xdr_in, argp);
632 if (likely(status == 0 && op->process_op != NULL))
633 status = op->process_op(argp, resp);
634 } else
635 status = htonl(NFS4ERR_RESOURCE);
636
637 res = encode_op_hdr(xdr_out, op_nr, status);
638 if (status == 0)
639 status = res;
640 if (op->encode_res != NULL && status == 0)
641 status = op->encode_res(rqstp, xdr_out, resp);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700642 dprintk("%s: done, status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return status;
644}
645
646/*
647 * Decode, process and encode a COMPOUND
648 */
Al Viro7111c662006-10-19 23:28:45 -0700649static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400651 struct cb_compound_hdr_arg hdr_arg = { 0 };
652 struct cb_compound_hdr_res hdr_res = { NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct xdr_stream xdr_in, xdr_out;
Al Viro5704fde2006-10-19 23:28:51 -0700654 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700655 __be32 status;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400656 unsigned int nops = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Harvey Harrison3110ff82008-05-02 13:42:44 -0700658 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 xdr_init_decode(&xdr_in, &rqstp->rq_arg, rqstp->rq_arg.head[0].iov_base);
661
Al Viro5704fde2006-10-19 23:28:51 -0700662 p = (__be32*)((char *)rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 xdr_init_encode(&xdr_out, &rqstp->rq_res, p);
664
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400665 status = decode_compound_hdr_arg(&xdr_in, &hdr_arg);
666 if (status == __constant_htonl(NFS4ERR_RESOURCE))
667 return rpc_garbage_args;
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 hdr_res.taglen = hdr_arg.taglen;
670 hdr_res.tag = hdr_arg.tag;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400671 if (encode_compound_hdr_res(&xdr_out, &hdr_res) != 0)
672 return rpc_system_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400674 while (status == 0 && nops != hdr_arg.nops) {
Benny Halevy34bc47c92009-04-01 09:23:22 -0400675 status = process_op(hdr_arg.minorversion, nops,
676 rqstp, &xdr_in, argp, &xdr_out, resp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 nops++;
678 }
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 *hdr_res.status = status;
681 *hdr_res.nops = htonl(nops);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700682 dprintk("%s: done, status = %u\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return rpc_success;
684}
685
686/*
687 * Define NFS4 callback COMPOUND ops.
688 */
689static struct callback_op callback_ops[] = {
690 [0] = {
691 .res_maxsize = CB_OP_HDR_RES_MAXSZ,
692 },
693 [OP_CB_GETATTR] = {
694 .process_op = (callback_process_op_t)nfs4_callback_getattr,
695 .decode_args = (callback_decode_arg_t)decode_getattr_args,
696 .encode_res = (callback_encode_res_t)encode_getattr_res,
697 .res_maxsize = CB_OP_GETATTR_RES_MAXSZ,
698 },
699 [OP_CB_RECALL] = {
700 .process_op = (callback_process_op_t)nfs4_callback_recall,
701 .decode_args = (callback_decode_arg_t)decode_recall_args,
702 .res_maxsize = CB_OP_RECALL_RES_MAXSZ,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400703 },
704#if defined(CONFIG_NFS_V4_1)
705 [OP_CB_SEQUENCE] = {
706 .process_op = (callback_process_op_t)nfs4_callback_sequence,
707 .decode_args = (callback_decode_arg_t)decode_cb_sequence_args,
708 .encode_res = (callback_encode_res_t)encode_cb_sequence_res,
709 .res_maxsize = CB_OP_SEQUENCE_RES_MAXSZ,
710 },
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500711 [OP_CB_RECALL_ANY] = {
712 .process_op = (callback_process_op_t)nfs4_callback_recallany,
713 .decode_args = (callback_decode_arg_t)decode_recallany_args,
714 .res_maxsize = CB_OP_RECALLANY_RES_MAXSZ,
715 },
Benny Halevy4aece6a2009-04-01 09:23:26 -0400716#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717};
718
719/*
720 * Define NFS4 callback procedures
721 */
722static struct svc_procedure nfs4_callback_procedures1[] = {
723 [CB_NULL] = {
724 .pc_func = nfs4_callback_null,
725 .pc_decode = (kxdrproc_t)nfs4_decode_void,
726 .pc_encode = (kxdrproc_t)nfs4_encode_void,
727 .pc_xdrressize = 1,
728 },
729 [CB_COMPOUND] = {
730 .pc_func = nfs4_callback_compound,
731 .pc_encode = (kxdrproc_t)nfs4_encode_void,
732 .pc_argsize = 256,
733 .pc_ressize = 256,
734 .pc_xdrressize = NFS4_CALLBACK_BUFSIZE,
735 }
736};
737
738struct svc_version nfs4_callback_version1 = {
739 .vs_vers = 1,
740 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
741 .vs_proc = nfs4_callback_procedures1,
742 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
743 .vs_dispatch = NULL,
744};
745
Alexandros Batsakis07bccc22009-12-05 13:19:01 -0500746struct svc_version nfs4_callback_version4 = {
747 .vs_vers = 4,
748 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
749 .vs_proc = nfs4_callback_procedures1,
750 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
751 .vs_dispatch = NULL,
752};