blob: a2b8b4df125d3eea8bd928970e7b4b940de7b886 [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)
Andy Adamsonb9efa1b2010-01-20 16:06:27 -050027#define CB_OP_RECALLSLOT_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
Benny Halevy4aece6a2009-04-01 09:23:26 -040028#endif /* CONFIG_NFS_V4_1 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define NFSDBG_FACILITY NFSDBG_CALLBACK
31
Andy Adamson31d2b432010-01-14 17:45:04 -050032/* Internal error code */
33#define NFS4ERR_RESOURCE_HDR 11050
34
Al Viroe6f684f2006-10-19 23:28:50 -070035typedef __be32 (*callback_process_op_t)(void *, void *);
36typedef __be32 (*callback_decode_arg_t)(struct svc_rqst *, struct xdr_stream *, void *);
37typedef __be32 (*callback_encode_res_t)(struct svc_rqst *, struct xdr_stream *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39
40struct callback_op {
41 callback_process_op_t process_op;
42 callback_decode_arg_t decode_args;
43 callback_encode_res_t encode_res;
44 long res_maxsize;
45};
46
47static struct callback_op callback_ops[];
48
Al Viro7111c662006-10-19 23:28:45 -070049static __be32 nfs4_callback_null(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 return htonl(NFS4_OK);
52}
53
Al Viro5704fde2006-10-19 23:28:51 -070054static int nfs4_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 return xdr_argsize_check(rqstp, p);
57}
58
Al Viro5704fde2006-10-19 23:28:51 -070059static int nfs4_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 return xdr_ressize_check(rqstp, p);
62}
63
Al Viro5704fde2006-10-19 23:28:51 -070064static __be32 *read_buf(struct xdr_stream *xdr, int nbytes)
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 = xdr_inline_decode(xdr, nbytes);
69 if (unlikely(p == NULL))
70 printk(KERN_WARNING "NFSv4 callback reply buffer overflowed!\n");
71 return p;
72}
73
Al Viroe6f684f2006-10-19 23:28:50 -070074static __be32 decode_string(struct xdr_stream *xdr, unsigned int *len, const char **str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Al Viro5704fde2006-10-19 23:28:51 -070076 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 p = read_buf(xdr, 4);
79 if (unlikely(p == NULL))
80 return htonl(NFS4ERR_RESOURCE);
81 *len = ntohl(*p);
82
83 if (*len != 0) {
84 p = read_buf(xdr, *len);
85 if (unlikely(p == NULL))
86 return htonl(NFS4ERR_RESOURCE);
87 *str = (const char *)p;
88 } else
89 *str = NULL;
90
91 return 0;
92}
93
Al Viroe6f684f2006-10-19 23:28:50 -070094static __be32 decode_fh(struct xdr_stream *xdr, struct nfs_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Al Viro5704fde2006-10-19 23:28:51 -070096 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 p = read_buf(xdr, 4);
99 if (unlikely(p == NULL))
100 return htonl(NFS4ERR_RESOURCE);
101 fh->size = ntohl(*p);
102 if (fh->size > NFS4_FHSIZE)
103 return htonl(NFS4ERR_BADHANDLE);
104 p = read_buf(xdr, fh->size);
105 if (unlikely(p == NULL))
106 return htonl(NFS4ERR_RESOURCE);
107 memcpy(&fh->data[0], p, fh->size);
108 memset(&fh->data[fh->size], 0, sizeof(fh->data) - fh->size);
109 return 0;
110}
111
Al Viroe6f684f2006-10-19 23:28:50 -0700112static __be32 decode_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Al Viro5704fde2006-10-19 23:28:51 -0700114 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 unsigned int attrlen;
116
117 p = read_buf(xdr, 4);
118 if (unlikely(p == NULL))
119 return htonl(NFS4ERR_RESOURCE);
120 attrlen = ntohl(*p);
121 p = read_buf(xdr, attrlen << 2);
122 if (unlikely(p == NULL))
123 return htonl(NFS4ERR_RESOURCE);
124 if (likely(attrlen > 0))
125 bitmap[0] = ntohl(*p++);
126 if (attrlen > 1)
127 bitmap[1] = ntohl(*p);
128 return 0;
129}
130
Al Viroe6f684f2006-10-19 23:28:50 -0700131static __be32 decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Al Viro5704fde2006-10-19 23:28:51 -0700133 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 p = read_buf(xdr, 16);
136 if (unlikely(p == NULL))
137 return htonl(NFS4ERR_RESOURCE);
138 memcpy(stateid->data, p, 16);
139 return 0;
140}
141
Al Viroe6f684f2006-10-19 23:28:50 -0700142static __be32 decode_compound_hdr_arg(struct xdr_stream *xdr, struct cb_compound_hdr_arg *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Al Viro5704fde2006-10-19 23:28:51 -0700144 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700145 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 status = decode_string(xdr, &hdr->taglen, &hdr->tag);
148 if (unlikely(status != 0))
149 return status;
150 /* We do not like overly long tags! */
Chuck Lever5cce4282007-10-26 13:33:01 -0400151 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ - 12) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 printk("NFSv4 CALLBACK %s: client sent tag of length %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700153 __func__, hdr->taglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return htonl(NFS4ERR_RESOURCE);
155 }
156 p = read_buf(xdr, 12);
157 if (unlikely(p == NULL))
158 return htonl(NFS4ERR_RESOURCE);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400159 hdr->minorversion = ntohl(*p++);
Benny Halevy48a9e2d2009-04-01 09:23:20 -0400160 /* Check minor version is zero or one. */
161 if (hdr->minorversion <= 1) {
162 p++; /* skip callback_ident */
163 } else {
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400164 printk(KERN_WARNING "%s: NFSv4 server callback with "
165 "illegal minor version %u!\n",
166 __func__, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 hdr->nops = ntohl(*p);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400170 dprintk("%s: minorversion %d nops %d\n", __func__,
171 hdr->minorversion, hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return 0;
173}
174
Al Viroe6f684f2006-10-19 23:28:50 -0700175static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Al Viro5704fde2006-10-19 23:28:51 -0700177 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 p = read_buf(xdr, 4);
179 if (unlikely(p == NULL))
Andy Adamson31d2b432010-01-14 17:45:04 -0500180 return htonl(NFS4ERR_RESOURCE_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 *op = ntohl(*p);
182 return 0;
183}
184
Al Viroe6f684f2006-10-19 23:28:50 -0700185static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_getattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Al Viroe6f684f2006-10-19 23:28:50 -0700187 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 status = decode_fh(xdr, &args->fh);
190 if (unlikely(status != 0))
191 goto out;
Chuck Lever671beed2007-12-10 14:58:22 -0500192 args->addr = svc_addr(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 status = decode_bitmap(xdr, args->bitmap);
194out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700195 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return status;
197}
198
Al Viroe6f684f2006-10-19 23:28:50 -0700199static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_recallargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Al Viro5704fde2006-10-19 23:28:51 -0700201 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700202 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Chuck Leverc1d35862007-12-10 14:58:29 -0500204 args->addr = svc_addr(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 status = decode_stateid(xdr, &args->stateid);
206 if (unlikely(status != 0))
207 goto out;
208 p = read_buf(xdr, 4);
209 if (unlikely(p == NULL)) {
210 status = htonl(NFS4ERR_RESOURCE);
211 goto out;
212 }
213 args->truncate = ntohl(*p);
214 status = decode_fh(xdr, &args->fh);
215out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700216 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Alexey Dobriyan3873bc52006-05-27 03:31:12 +0400217 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Benny Halevy4aece6a2009-04-01 09:23:26 -0400220#if defined(CONFIG_NFS_V4_1)
221
Andy Adamson9733f0d2010-01-22 12:03:08 -0500222static __be32 decode_sessionid(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400223 struct nfs4_sessionid *sid)
224{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500225 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400226 int len = NFS4_MAX_SESSIONID_LEN;
227
228 p = read_buf(xdr, len);
229 if (unlikely(p == NULL))
Joe Perchesa419aef2009-08-18 11:18:35 -0700230 return htonl(NFS4ERR_RESOURCE);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400231
232 memcpy(sid->data, p, len);
233 return 0;
234}
235
Andy Adamson9733f0d2010-01-22 12:03:08 -0500236static __be32 decode_rc_list(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400237 struct referring_call_list *rc_list)
238{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500239 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400240 int i;
Andy Adamson9733f0d2010-01-22 12:03:08 -0500241 __be32 status;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400242
243 status = decode_sessionid(xdr, &rc_list->rcl_sessionid);
244 if (status)
245 goto out;
246
247 status = htonl(NFS4ERR_RESOURCE);
248 p = read_buf(xdr, sizeof(uint32_t));
249 if (unlikely(p == NULL))
250 goto out;
251
252 rc_list->rcl_nrefcalls = ntohl(*p++);
253 if (rc_list->rcl_nrefcalls) {
254 p = read_buf(xdr,
255 rc_list->rcl_nrefcalls * 2 * sizeof(uint32_t));
256 if (unlikely(p == NULL))
257 goto out;
258 rc_list->rcl_refcalls = kmalloc(rc_list->rcl_nrefcalls *
259 sizeof(*rc_list->rcl_refcalls),
260 GFP_KERNEL);
261 if (unlikely(rc_list->rcl_refcalls == NULL))
262 goto out;
263 for (i = 0; i < rc_list->rcl_nrefcalls; i++) {
264 rc_list->rcl_refcalls[i].rc_sequenceid = ntohl(*p++);
265 rc_list->rcl_refcalls[i].rc_slotid = ntohl(*p++);
266 }
267 }
268 status = 0;
269
270out:
271 return status;
272}
273
Andy Adamson9733f0d2010-01-22 12:03:08 -0500274static __be32 decode_cb_sequence_args(struct svc_rqst *rqstp,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400275 struct xdr_stream *xdr,
276 struct cb_sequenceargs *args)
277{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500278 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400279 int i;
Andy Adamson9733f0d2010-01-22 12:03:08 -0500280 __be32 status;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400281
282 status = decode_sessionid(xdr, &args->csa_sessionid);
283 if (status)
284 goto out;
285
286 status = htonl(NFS4ERR_RESOURCE);
287 p = read_buf(xdr, 5 * sizeof(uint32_t));
288 if (unlikely(p == NULL))
289 goto out;
290
Ricardo Labiaga65fc64e2009-04-01 09:23:30 -0400291 args->csa_addr = svc_addr(rqstp);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400292 args->csa_sequenceid = ntohl(*p++);
293 args->csa_slotid = ntohl(*p++);
294 args->csa_highestslotid = ntohl(*p++);
295 args->csa_cachethis = ntohl(*p++);
296 args->csa_nrclists = ntohl(*p++);
297 args->csa_rclists = NULL;
298 if (args->csa_nrclists) {
299 args->csa_rclists = kmalloc(args->csa_nrclists *
300 sizeof(*args->csa_rclists),
301 GFP_KERNEL);
302 if (unlikely(args->csa_rclists == NULL))
303 goto out;
304
305 for (i = 0; i < args->csa_nrclists; i++) {
306 status = decode_rc_list(xdr, &args->csa_rclists[i]);
307 if (status)
308 goto out_free;
309 }
310 }
311 status = 0;
312
313 dprintk("%s: sessionid %x:%x:%x:%x sequenceid %u slotid %u "
314 "highestslotid %u cachethis %d nrclists %u\n",
315 __func__,
316 ((u32 *)&args->csa_sessionid)[0],
317 ((u32 *)&args->csa_sessionid)[1],
318 ((u32 *)&args->csa_sessionid)[2],
319 ((u32 *)&args->csa_sessionid)[3],
320 args->csa_sequenceid, args->csa_slotid,
321 args->csa_highestslotid, args->csa_cachethis,
322 args->csa_nrclists);
323out:
324 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
325 return status;
326
327out_free:
328 for (i = 0; i < args->csa_nrclists; i++)
329 kfree(args->csa_rclists[i].rcl_refcalls);
330 kfree(args->csa_rclists);
331 goto out;
332}
333
Andy Adamson9733f0d2010-01-22 12:03:08 -0500334static __be32 decode_recallany_args(struct svc_rqst *rqstp,
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500335 struct xdr_stream *xdr,
336 struct cb_recallanyargs *args)
337{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500338 __be32 *p;
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500339
340 args->craa_addr = svc_addr(rqstp);
341 p = read_buf(xdr, 4);
342 if (unlikely(p == NULL))
343 return htonl(NFS4ERR_BADXDR);
344 args->craa_objs_to_keep = ntohl(*p++);
345 p = read_buf(xdr, 4);
346 if (unlikely(p == NULL))
347 return htonl(NFS4ERR_BADXDR);
348 args->craa_type_mask = ntohl(*p);
349
350 return 0;
351}
352
Andy Adamson9733f0d2010-01-22 12:03:08 -0500353static __be32 decode_recallslot_args(struct svc_rqst *rqstp,
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500354 struct xdr_stream *xdr,
355 struct cb_recallslotargs *args)
356{
357 __be32 *p;
358
359 args->crsa_addr = svc_addr(rqstp);
360 p = read_buf(xdr, 4);
361 if (unlikely(p == NULL))
362 return htonl(NFS4ERR_BADXDR);
363 args->crsa_target_max_slots = ntohl(*p++);
364 return 0;
365}
366
Benny Halevy4aece6a2009-04-01 09:23:26 -0400367#endif /* CONFIG_NFS_V4_1 */
368
Al Viroe6f684f2006-10-19 23:28:50 -0700369static __be32 encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Al Viro5704fde2006-10-19 23:28:51 -0700371 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 p = xdr_reserve_space(xdr, 4 + len);
374 if (unlikely(p == NULL))
375 return htonl(NFS4ERR_RESOURCE);
376 xdr_encode_opaque(p, str, len);
377 return 0;
378}
379
380#define CB_SUPPORTED_ATTR0 (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE)
381#define CB_SUPPORTED_ATTR1 (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY)
Al Viro5704fde2006-10-19 23:28:51 -0700382static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Al Viro5704fde2006-10-19 23:28:51 -0700384 __be32 bm[2];
385 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 bm[0] = htonl(bitmap[0] & CB_SUPPORTED_ATTR0);
388 bm[1] = htonl(bitmap[1] & CB_SUPPORTED_ATTR1);
389 if (bm[1] != 0) {
390 p = xdr_reserve_space(xdr, 16);
391 if (unlikely(p == NULL))
392 return htonl(NFS4ERR_RESOURCE);
393 *p++ = htonl(2);
394 *p++ = bm[0];
395 *p++ = bm[1];
396 } else if (bm[0] != 0) {
397 p = xdr_reserve_space(xdr, 12);
398 if (unlikely(p == NULL))
399 return htonl(NFS4ERR_RESOURCE);
400 *p++ = htonl(1);
401 *p++ = bm[0];
402 } else {
403 p = xdr_reserve_space(xdr, 8);
404 if (unlikely(p == NULL))
405 return htonl(NFS4ERR_RESOURCE);
406 *p++ = htonl(0);
407 }
408 *savep = p;
409 return 0;
410}
411
Al Viroe6f684f2006-10-19 23:28:50 -0700412static __be32 encode_attr_change(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t change)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Al Viro5704fde2006-10-19 23:28:51 -0700414 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 if (!(bitmap[0] & FATTR4_WORD0_CHANGE))
417 return 0;
418 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800419 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return htonl(NFS4ERR_RESOURCE);
421 p = xdr_encode_hyper(p, change);
422 return 0;
423}
424
Al Viroe6f684f2006-10-19 23:28:50 -0700425static __be32 encode_attr_size(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Al Viro5704fde2006-10-19 23:28:51 -0700427 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 if (!(bitmap[0] & FATTR4_WORD0_SIZE))
430 return 0;
431 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800432 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return htonl(NFS4ERR_RESOURCE);
434 p = xdr_encode_hyper(p, size);
435 return 0;
436}
437
Al Viroe6f684f2006-10-19 23:28:50 -0700438static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Al Viro5704fde2006-10-19 23:28:51 -0700440 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 p = xdr_reserve_space(xdr, 12);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800443 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return htonl(NFS4ERR_RESOURCE);
445 p = xdr_encode_hyper(p, time->tv_sec);
446 *p = htonl(time->tv_nsec);
447 return 0;
448}
449
Al Viroe6f684f2006-10-19 23:28:50 -0700450static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA))
453 return 0;
454 return encode_attr_time(xdr,time);
455}
456
Al Viroe6f684f2006-10-19 23:28:50 -0700457static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY))
460 return 0;
461 return encode_attr_time(xdr,time);
462}
463
Al Viroe6f684f2006-10-19 23:28:50 -0700464static __be32 encode_compound_hdr_res(struct xdr_stream *xdr, struct cb_compound_hdr_res *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Al Viroe6f684f2006-10-19 23:28:50 -0700466 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 hdr->status = xdr_reserve_space(xdr, 4);
469 if (unlikely(hdr->status == NULL))
470 return htonl(NFS4ERR_RESOURCE);
471 status = encode_string(xdr, hdr->taglen, hdr->tag);
472 if (unlikely(status != 0))
473 return status;
474 hdr->nops = xdr_reserve_space(xdr, 4);
475 if (unlikely(hdr->nops == NULL))
476 return htonl(NFS4ERR_RESOURCE);
477 return 0;
478}
479
Al Viroe6f684f2006-10-19 23:28:50 -0700480static __be32 encode_op_hdr(struct xdr_stream *xdr, uint32_t op, __be32 res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Al Viro5704fde2006-10-19 23:28:51 -0700482 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 p = xdr_reserve_space(xdr, 8);
485 if (unlikely(p == NULL))
Andy Adamson31d2b432010-01-14 17:45:04 -0500486 return htonl(NFS4ERR_RESOURCE_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 *p++ = htonl(op);
488 *p = res;
489 return 0;
490}
491
Al Viroe6f684f2006-10-19 23:28:50 -0700492static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, const struct cb_getattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Al Viro5704fde2006-10-19 23:28:51 -0700494 __be32 *savep = NULL;
Al Viroe6f684f2006-10-19 23:28:50 -0700495 __be32 status = res->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 if (unlikely(status != 0))
498 goto out;
499 status = encode_attr_bitmap(xdr, res->bitmap, &savep);
500 if (unlikely(status != 0))
501 goto out;
502 status = encode_attr_change(xdr, res->bitmap, res->change_attr);
503 if (unlikely(status != 0))
504 goto out;
505 status = encode_attr_size(xdr, res->bitmap, res->size);
506 if (unlikely(status != 0))
507 goto out;
508 status = encode_attr_ctime(xdr, res->bitmap, &res->ctime);
509 if (unlikely(status != 0))
510 goto out;
511 status = encode_attr_mtime(xdr, res->bitmap, &res->mtime);
512 *savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1)));
513out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700514 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return status;
516}
517
Benny Halevy34bc47c92009-04-01 09:23:22 -0400518#if defined(CONFIG_NFS_V4_1)
519
Andy Adamson9733f0d2010-01-22 12:03:08 -0500520static __be32 encode_sessionid(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400521 const struct nfs4_sessionid *sid)
522{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500523 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400524 int len = NFS4_MAX_SESSIONID_LEN;
525
526 p = xdr_reserve_space(xdr, len);
527 if (unlikely(p == NULL))
528 return htonl(NFS4ERR_RESOURCE);
529
530 memcpy(p, sid, len);
531 return 0;
532}
533
Andy Adamson9733f0d2010-01-22 12:03:08 -0500534static __be32 encode_cb_sequence_res(struct svc_rqst *rqstp,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400535 struct xdr_stream *xdr,
536 const struct cb_sequenceres *res)
537{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500538 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400539 unsigned status = res->csr_status;
540
541 if (unlikely(status != 0))
542 goto out;
543
544 encode_sessionid(xdr, &res->csr_sessionid);
545
546 p = xdr_reserve_space(xdr, 4 * sizeof(uint32_t));
547 if (unlikely(p == NULL))
548 return htonl(NFS4ERR_RESOURCE);
549
550 *p++ = htonl(res->csr_sequenceid);
551 *p++ = htonl(res->csr_slotid);
552 *p++ = htonl(res->csr_highestslotid);
553 *p++ = htonl(res->csr_target_highestslotid);
554out:
555 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
556 return status;
557}
558
Benny Halevy34bc47c92009-04-01 09:23:22 -0400559static __be32
560preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
561{
Benny Halevy281fe152009-04-01 09:23:27 -0400562 if (op_nr == OP_CB_SEQUENCE) {
563 if (nop != 0)
564 return htonl(NFS4ERR_SEQUENCE_POS);
565 } else {
566 if (nop == 0)
567 return htonl(NFS4ERR_OP_NOT_IN_SESSION);
568 }
569
Benny Halevy34bc47c92009-04-01 09:23:22 -0400570 switch (op_nr) {
571 case OP_CB_GETATTR:
572 case OP_CB_RECALL:
Benny Halevy4aece6a2009-04-01 09:23:26 -0400573 case OP_CB_SEQUENCE:
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500574 case OP_CB_RECALL_ANY:
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500575 case OP_CB_RECALL_SLOT:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400576 *op = &callback_ops[op_nr];
577 break;
578
579 case OP_CB_LAYOUTRECALL:
580 case OP_CB_NOTIFY_DEVICEID:
581 case OP_CB_NOTIFY:
582 case OP_CB_PUSH_DELEG:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400583 case OP_CB_RECALLABLE_OBJ_AVAIL:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400584 case OP_CB_WANTS_CANCELLED:
585 case OP_CB_NOTIFY_LOCK:
586 return htonl(NFS4ERR_NOTSUPP);
587
588 default:
589 return htonl(NFS4ERR_OP_ILLEGAL);
590 }
591
592 return htonl(NFS_OK);
593}
594
595#else /* CONFIG_NFS_V4_1 */
596
597static __be32
598preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
599{
600 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
601}
602
603#endif /* CONFIG_NFS_V4_1 */
604
605static __be32
606preprocess_nfs4_op(unsigned int op_nr, struct callback_op **op)
607{
608 switch (op_nr) {
609 case OP_CB_GETATTR:
610 case OP_CB_RECALL:
611 *op = &callback_ops[op_nr];
612 break;
613 default:
614 return htonl(NFS4ERR_OP_ILLEGAL);
615 }
616
617 return htonl(NFS_OK);
618}
619
620static __be32 process_op(uint32_t minorversion, int nop,
621 struct svc_rqst *rqstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 struct xdr_stream *xdr_in, void *argp,
Andy Adamson49110962010-01-14 17:45:08 -0500623 struct xdr_stream *xdr_out, void *resp, int* drc_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500625 struct callback_op *op = &callback_ops[0];
Andy Adamson31d2b432010-01-14 17:45:04 -0500626 unsigned int op_nr;
Benny Halevy34bc47c92009-04-01 09:23:22 -0400627 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 long maxlen;
Al Viroe6f684f2006-10-19 23:28:50 -0700629 __be32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Harvey Harrison3110ff82008-05-02 13:42:44 -0700631 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 status = decode_op_hdr(xdr_in, &op_nr);
Andy Adamson31d2b432010-01-14 17:45:04 -0500633 if (unlikely(status))
634 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Benny Halevy34bc47c92009-04-01 09:23:22 -0400636 dprintk("%s: minorversion=%d nop=%d op_nr=%u\n",
637 __func__, minorversion, nop, op_nr);
638
639 status = minorversion ? preprocess_nfs41_op(nop, op_nr, &op) :
640 preprocess_nfs4_op(op_nr, &op);
641 if (status == htonl(NFS4ERR_OP_ILLEGAL))
642 op_nr = OP_CB_ILLEGAL;
Andy Adamsonb92b3012010-01-14 17:45:05 -0500643 if (status)
644 goto encode_hdr;
Andy Adamson31d2b432010-01-14 17:45:04 -0500645
Andy Adamson49110962010-01-14 17:45:08 -0500646 if (*drc_status) {
647 status = *drc_status;
648 goto encode_hdr;
649 }
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 maxlen = xdr_out->end - xdr_out->p;
652 if (maxlen > 0 && maxlen < PAGE_SIZE) {
Andy Adamsone95e60d2010-01-14 17:45:06 -0500653 status = op->decode_args(rqstp, xdr_in, argp);
654 if (likely(status == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 status = op->process_op(argp, resp);
656 } else
657 status = htonl(NFS4ERR_RESOURCE);
658
Andy Adamson49110962010-01-14 17:45:08 -0500659 /* Only set by OP_CB_SEQUENCE processing */
660 if (status == htonl(NFS4ERR_RETRY_UNCACHED_REP)) {
661 *drc_status = status;
662 status = 0;
663 }
664
Andy Adamsonb92b3012010-01-14 17:45:05 -0500665encode_hdr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 res = encode_op_hdr(xdr_out, op_nr, status);
Andy Adamson31d2b432010-01-14 17:45:04 -0500667 if (unlikely(res))
668 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (op->encode_res != NULL && status == 0)
670 status = op->encode_res(rqstp, xdr_out, resp);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700671 dprintk("%s: done, status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return status;
673}
674
675/*
676 * Decode, process and encode a COMPOUND
677 */
Al Viro7111c662006-10-19 23:28:45 -0700678static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400680 struct cb_compound_hdr_arg hdr_arg = { 0 };
681 struct cb_compound_hdr_res hdr_res = { NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct xdr_stream xdr_in, xdr_out;
Al Viro5704fde2006-10-19 23:28:51 -0700683 __be32 *p;
Andy Adamson49110962010-01-14 17:45:08 -0500684 __be32 status, drc_status = 0;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400685 unsigned int nops = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Harvey Harrison3110ff82008-05-02 13:42:44 -0700687 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 xdr_init_decode(&xdr_in, &rqstp->rq_arg, rqstp->rq_arg.head[0].iov_base);
690
Al Viro5704fde2006-10-19 23:28:51 -0700691 p = (__be32*)((char *)rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 xdr_init_encode(&xdr_out, &rqstp->rq_res, p);
693
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400694 status = decode_compound_hdr_arg(&xdr_in, &hdr_arg);
695 if (status == __constant_htonl(NFS4ERR_RESOURCE))
696 return rpc_garbage_args;
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 hdr_res.taglen = hdr_arg.taglen;
699 hdr_res.tag = hdr_arg.tag;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400700 if (encode_compound_hdr_res(&xdr_out, &hdr_res) != 0)
701 return rpc_system_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400703 while (status == 0 && nops != hdr_arg.nops) {
Andy Adamson49110962010-01-14 17:45:08 -0500704 status = process_op(hdr_arg.minorversion, nops, rqstp,
705 &xdr_in, argp, &xdr_out, resp, &drc_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 nops++;
707 }
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400708
Andy Adamson31d2b432010-01-14 17:45:04 -0500709 /* Buffer overflow in decode_ops_hdr or encode_ops_hdr. Return
710 * resource error in cb_compound status without returning op */
711 if (unlikely(status == htonl(NFS4ERR_RESOURCE_HDR))) {
712 status = htonl(NFS4ERR_RESOURCE);
713 nops--;
714 }
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 *hdr_res.status = status;
717 *hdr_res.nops = htonl(nops);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700718 dprintk("%s: done, status = %u\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return rpc_success;
720}
721
722/*
723 * Define NFS4 callback COMPOUND ops.
724 */
725static struct callback_op callback_ops[] = {
726 [0] = {
727 .res_maxsize = CB_OP_HDR_RES_MAXSZ,
728 },
729 [OP_CB_GETATTR] = {
730 .process_op = (callback_process_op_t)nfs4_callback_getattr,
731 .decode_args = (callback_decode_arg_t)decode_getattr_args,
732 .encode_res = (callback_encode_res_t)encode_getattr_res,
733 .res_maxsize = CB_OP_GETATTR_RES_MAXSZ,
734 },
735 [OP_CB_RECALL] = {
736 .process_op = (callback_process_op_t)nfs4_callback_recall,
737 .decode_args = (callback_decode_arg_t)decode_recall_args,
738 .res_maxsize = CB_OP_RECALL_RES_MAXSZ,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400739 },
740#if defined(CONFIG_NFS_V4_1)
741 [OP_CB_SEQUENCE] = {
742 .process_op = (callback_process_op_t)nfs4_callback_sequence,
743 .decode_args = (callback_decode_arg_t)decode_cb_sequence_args,
744 .encode_res = (callback_encode_res_t)encode_cb_sequence_res,
745 .res_maxsize = CB_OP_SEQUENCE_RES_MAXSZ,
746 },
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500747 [OP_CB_RECALL_ANY] = {
748 .process_op = (callback_process_op_t)nfs4_callback_recallany,
749 .decode_args = (callback_decode_arg_t)decode_recallany_args,
750 .res_maxsize = CB_OP_RECALLANY_RES_MAXSZ,
751 },
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500752 [OP_CB_RECALL_SLOT] = {
753 .process_op = (callback_process_op_t)nfs4_callback_recallslot,
754 .decode_args = (callback_decode_arg_t)decode_recallslot_args,
755 .res_maxsize = CB_OP_RECALLSLOT_RES_MAXSZ,
756 },
Benny Halevy4aece6a2009-04-01 09:23:26 -0400757#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758};
759
760/*
761 * Define NFS4 callback procedures
762 */
763static struct svc_procedure nfs4_callback_procedures1[] = {
764 [CB_NULL] = {
765 .pc_func = nfs4_callback_null,
766 .pc_decode = (kxdrproc_t)nfs4_decode_void,
767 .pc_encode = (kxdrproc_t)nfs4_encode_void,
768 .pc_xdrressize = 1,
769 },
770 [CB_COMPOUND] = {
771 .pc_func = nfs4_callback_compound,
772 .pc_encode = (kxdrproc_t)nfs4_encode_void,
773 .pc_argsize = 256,
774 .pc_ressize = 256,
775 .pc_xdrressize = NFS4_CALLBACK_BUFSIZE,
776 }
777};
778
779struct svc_version nfs4_callback_version1 = {
780 .vs_vers = 1,
781 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
782 .vs_proc = nfs4_callback_procedures1,
783 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
784 .vs_dispatch = NULL,
Steve Dickson49697ee2009-10-13 16:07:33 -0400785 .vs_hidden = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786};
787
Alexandros Batsakis07bccc22009-12-05 13:19:01 -0500788struct svc_version nfs4_callback_version4 = {
789 .vs_vers = 4,
790 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
791 .vs_proc = nfs4_callback_procedures1,
792 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
793 .vs_dispatch = NULL,
794};