blob: d81f96aacd51e71b1da710b477e7d44ff9a90b24 [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 Myklebust9a3ba432012-03-12 18:01:48 -040012#include <linux/ratelimit.h>
13#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Andy Adamsonc36fca52011-01-06 02:04:32 +000015#include <linux/sunrpc/bc_xprt.h>
Trond Myklebust4ce79712005-06-22 17:16:21 +000016#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "callback.h"
Andy Adamsonc36fca52011-01-06 02:04:32 +000018#include "internal.h"
Trond Myklebust76e697b2012-11-26 14:20:49 -050019#include "nfs4session.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Kinglong Mee45724e82015-09-24 20:57:58 +080021#define CB_OP_TAGLEN_MAXSZ (512)
22#define CB_OP_HDR_RES_MAXSZ (2 * 4) // opcode, status
23#define CB_OP_GETATTR_BITMAP_MAXSZ (4 * 4) // bitmap length, 3 bitmaps
24#define CB_OP_GETATTR_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \
25 CB_OP_GETATTR_BITMAP_MAXSZ + \
26 /* change, size, ctime, mtime */\
27 (2 + 2 + 3 + 3) * 4)
28#define CB_OP_RECALL_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Benny Halevy4aece6a2009-04-01 09:23:26 -040030#if defined(CONFIG_NFS_V4_1)
Fred Isamanf2a62562011-01-06 11:36:29 +000031#define CB_OP_LAYOUTRECALL_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
Marc Eshel1be56832011-05-22 19:47:09 +030032#define CB_OP_DEVICENOTIFY_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
Benny Halevy4aece6a2009-04-01 09:23:26 -040033#define CB_OP_SEQUENCE_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \
Kinglong Mee45724e82015-09-24 20:57:58 +080034 NFS4_MAX_SESSIONID_LEN + \
35 (1 + 3) * 4) // seqid, 3 slotids
Alexandros Batsakis31f09602009-12-05 13:27:02 -050036#define CB_OP_RECALLANY_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
Andy Adamsonb9efa1b2010-01-20 16:06:27 -050037#define CB_OP_RECALLSLOT_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ)
Benny Halevy4aece6a2009-04-01 09:23:26 -040038#endif /* CONFIG_NFS_V4_1 */
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define NFSDBG_FACILITY NFSDBG_CALLBACK
41
Andy Adamson31d2b432010-01-14 17:45:04 -050042/* Internal error code */
43#define NFS4ERR_RESOURCE_HDR 11050
44
Andy Adamsonc36fca52011-01-06 02:04:32 +000045typedef __be32 (*callback_process_op_t)(void *, void *,
46 struct cb_process_state *);
Al Viroe6f684f2006-10-19 23:28:50 -070047typedef __be32 (*callback_decode_arg_t)(struct svc_rqst *, struct xdr_stream *, void *);
48typedef __be32 (*callback_encode_res_t)(struct svc_rqst *, struct xdr_stream *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50
51struct callback_op {
52 callback_process_op_t process_op;
53 callback_decode_arg_t decode_args;
54 callback_encode_res_t encode_res;
55 long res_maxsize;
56};
57
58static struct callback_op callback_ops[];
59
Al Viro7111c662006-10-19 23:28:45 -070060static __be32 nfs4_callback_null(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 return htonl(NFS4_OK);
63}
64
Al Viro5704fde2006-10-19 23:28:51 -070065static int nfs4_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 return xdr_argsize_check(rqstp, p);
68}
69
Al Viro5704fde2006-10-19 23:28:51 -070070static int nfs4_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 return xdr_ressize_check(rqstp, p);
73}
74
Al Viro5704fde2006-10-19 23:28:51 -070075static __be32 *read_buf(struct xdr_stream *xdr, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Al Viro5704fde2006-10-19 23:28:51 -070077 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 p = xdr_inline_decode(xdr, nbytes);
80 if (unlikely(p == NULL))
Trond Myklebust756b9b32015-12-07 12:52:23 -080081 printk(KERN_WARNING "NFS: NFSv4 callback reply buffer overflowed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return p;
83}
84
Al Viroe6f684f2006-10-19 23:28:50 -070085static __be32 decode_string(struct xdr_stream *xdr, unsigned int *len, const char **str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Al Viro5704fde2006-10-19 23:28:51 -070087 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 p = read_buf(xdr, 4);
90 if (unlikely(p == NULL))
91 return htonl(NFS4ERR_RESOURCE);
92 *len = ntohl(*p);
93
94 if (*len != 0) {
95 p = read_buf(xdr, *len);
96 if (unlikely(p == NULL))
97 return htonl(NFS4ERR_RESOURCE);
98 *str = (const char *)p;
99 } else
100 *str = NULL;
101
102 return 0;
103}
104
Al Viroe6f684f2006-10-19 23:28:50 -0700105static __be32 decode_fh(struct xdr_stream *xdr, struct nfs_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Al Viro5704fde2006-10-19 23:28:51 -0700107 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 p = read_buf(xdr, 4);
110 if (unlikely(p == NULL))
111 return htonl(NFS4ERR_RESOURCE);
112 fh->size = ntohl(*p);
113 if (fh->size > NFS4_FHSIZE)
114 return htonl(NFS4ERR_BADHANDLE);
115 p = read_buf(xdr, fh->size);
116 if (unlikely(p == NULL))
117 return htonl(NFS4ERR_RESOURCE);
118 memcpy(&fh->data[0], p, fh->size);
119 memset(&fh->data[fh->size], 0, sizeof(fh->data) - fh->size);
120 return 0;
121}
122
Al Viroe6f684f2006-10-19 23:28:50 -0700123static __be32 decode_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Al Viro5704fde2006-10-19 23:28:51 -0700125 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 unsigned int attrlen;
127
128 p = read_buf(xdr, 4);
129 if (unlikely(p == NULL))
130 return htonl(NFS4ERR_RESOURCE);
131 attrlen = ntohl(*p);
132 p = read_buf(xdr, attrlen << 2);
133 if (unlikely(p == NULL))
134 return htonl(NFS4ERR_RESOURCE);
135 if (likely(attrlen > 0))
136 bitmap[0] = ntohl(*p++);
137 if (attrlen > 1)
138 bitmap[1] = ntohl(*p);
139 return 0;
140}
141
Al Viroe6f684f2006-10-19 23:28:50 -0700142static __be32 decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Al Viro5704fde2006-10-19 23:28:51 -0700144 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500146 p = read_buf(xdr, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (unlikely(p == NULL))
148 return htonl(NFS4ERR_RESOURCE);
Trond Myklebust93b717f2016-05-16 17:42:43 -0400149 memcpy(stateid->data, p, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 0;
151}
152
Trond Myklebust93b717f2016-05-16 17:42:43 -0400153static __be32 decode_delegation_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
154{
155 stateid->type = NFS4_DELEGATION_STATEID_TYPE;
156 return decode_stateid(xdr, stateid);
157}
158
Al Viroe6f684f2006-10-19 23:28:50 -0700159static __be32 decode_compound_hdr_arg(struct xdr_stream *xdr, struct cb_compound_hdr_arg *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Al Viro5704fde2006-10-19 23:28:51 -0700161 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700162 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 status = decode_string(xdr, &hdr->taglen, &hdr->tag);
165 if (unlikely(status != 0))
166 return status;
167 /* We do not like overly long tags! */
Kinglong Mee403889c2015-09-24 20:58:16 +0800168 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500169 printk("NFS: NFSv4 CALLBACK %s: client sent tag of length %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700170 __func__, hdr->taglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return htonl(NFS4ERR_RESOURCE);
172 }
173 p = read_buf(xdr, 12);
174 if (unlikely(p == NULL))
175 return htonl(NFS4ERR_RESOURCE);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400176 hdr->minorversion = ntohl(*p++);
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400177 /* Check for minor version support */
178 if (hdr->minorversion <= NFS4_MAX_MINOR_VERSION) {
Steve Dickson42c2c422013-05-22 12:50:38 -0400179 hdr->cb_ident = ntohl(*p++); /* ignored by v4.1 and v4.2 */
Benny Halevy48a9e2d2009-04-01 09:23:20 -0400180 } else {
Trond Myklebust9a3ba432012-03-12 18:01:48 -0400181 pr_warn_ratelimited("NFS: %s: NFSv4 server callback with "
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400182 "illegal minor version %u!\n",
183 __func__, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 hdr->nops = ntohl(*p);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400187 dprintk("%s: minorversion %d nops %d\n", __func__,
188 hdr->minorversion, hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return 0;
190}
191
Al Viroe6f684f2006-10-19 23:28:50 -0700192static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Al Viro5704fde2006-10-19 23:28:51 -0700194 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 p = read_buf(xdr, 4);
196 if (unlikely(p == NULL))
Andy Adamson31d2b432010-01-14 17:45:04 -0500197 return htonl(NFS4ERR_RESOURCE_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 *op = ntohl(*p);
199 return 0;
200}
201
Al Viroe6f684f2006-10-19 23:28:50 -0700202static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_getattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Al Viroe6f684f2006-10-19 23:28:50 -0700204 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 status = decode_fh(xdr, &args->fh);
207 if (unlikely(status != 0))
208 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 status = decode_bitmap(xdr, args->bitmap);
210out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700211 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return status;
213}
214
Al Viroe6f684f2006-10-19 23:28:50 -0700215static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_recallargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Al Viro5704fde2006-10-19 23:28:51 -0700217 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700218 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Trond Myklebust93b717f2016-05-16 17:42:43 -0400220 status = decode_delegation_stateid(xdr, &args->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (unlikely(status != 0))
222 goto out;
223 p = read_buf(xdr, 4);
224 if (unlikely(p == NULL)) {
225 status = htonl(NFS4ERR_RESOURCE);
226 goto out;
227 }
228 args->truncate = ntohl(*p);
229 status = decode_fh(xdr, &args->fh);
230out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700231 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Alexey Dobriyan3873bc52006-05-27 03:31:12 +0400232 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Benny Halevy4aece6a2009-04-01 09:23:26 -0400235#if defined(CONFIG_NFS_V4_1)
Trond Myklebust93b717f2016-05-16 17:42:43 -0400236static __be32 decode_layout_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
237{
238 stateid->type = NFS4_LAYOUT_STATEID_TYPE;
239 return decode_stateid(xdr, stateid);
240}
Benny Halevy4aece6a2009-04-01 09:23:26 -0400241
Fred Isamanf2a62562011-01-06 11:36:29 +0000242static __be32 decode_layoutrecall_args(struct svc_rqst *rqstp,
243 struct xdr_stream *xdr,
244 struct cb_layoutrecallargs *args)
245{
246 __be32 *p;
247 __be32 status = 0;
248 uint32_t iomode;
249
Fred Isamanf2a62562011-01-06 11:36:29 +0000250 p = read_buf(xdr, 4 * sizeof(uint32_t));
251 if (unlikely(p == NULL)) {
252 status = htonl(NFS4ERR_BADXDR);
253 goto out;
254 }
255
256 args->cbl_layout_type = ntohl(*p++);
257 /* Depite the spec's xdr, iomode really belongs in the FILE switch,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300258 * as it is unusable and ignored with the other types.
Fred Isamanf2a62562011-01-06 11:36:29 +0000259 */
260 iomode = ntohl(*p++);
261 args->cbl_layoutchanged = ntohl(*p++);
262 args->cbl_recall_type = ntohl(*p++);
263
264 if (args->cbl_recall_type == RETURN_FILE) {
265 args->cbl_range.iomode = iomode;
266 status = decode_fh(xdr, &args->cbl_fh);
267 if (unlikely(status != 0))
268 goto out;
269
270 p = read_buf(xdr, 2 * sizeof(uint64_t));
271 if (unlikely(p == NULL)) {
272 status = htonl(NFS4ERR_BADXDR);
273 goto out;
274 }
275 p = xdr_decode_hyper(p, &args->cbl_range.offset);
276 p = xdr_decode_hyper(p, &args->cbl_range.length);
Trond Myklebust93b717f2016-05-16 17:42:43 -0400277 status = decode_layout_stateid(xdr, &args->cbl_stateid);
Fred Isamanf2a62562011-01-06 11:36:29 +0000278 if (unlikely(status != 0))
279 goto out;
280 } else if (args->cbl_recall_type == RETURN_FSID) {
281 p = read_buf(xdr, 2 * sizeof(uint64_t));
282 if (unlikely(p == NULL)) {
283 status = htonl(NFS4ERR_BADXDR);
284 goto out;
285 }
286 p = xdr_decode_hyper(p, &args->cbl_fsid.major);
287 p = xdr_decode_hyper(p, &args->cbl_fsid.minor);
288 } else if (args->cbl_recall_type != RETURN_ALL) {
289 status = htonl(NFS4ERR_BADXDR);
290 goto out;
291 }
292 dprintk("%s: ltype 0x%x iomode %d changed %d recall_type %d\n",
293 __func__,
294 args->cbl_layout_type, iomode,
295 args->cbl_layoutchanged, args->cbl_recall_type);
296out:
297 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
298 return status;
299}
300
Marc Eshel1be56832011-05-22 19:47:09 +0300301static
302__be32 decode_devicenotify_args(struct svc_rqst *rqstp,
303 struct xdr_stream *xdr,
304 struct cb_devicenotifyargs *args)
305{
306 __be32 *p;
307 __be32 status = 0;
308 u32 tmp;
309 int n, i;
310 args->ndevs = 0;
311
312 /* Num of device notifications */
313 p = read_buf(xdr, sizeof(uint32_t));
314 if (unlikely(p == NULL)) {
315 status = htonl(NFS4ERR_BADXDR);
316 goto out;
317 }
318 n = ntohl(*p++);
319 if (n <= 0)
320 goto out;
Dan Carpenter363e0df02012-01-12 10:16:14 +0300321 if (n > ULONG_MAX / sizeof(*args->devs)) {
322 status = htonl(NFS4ERR_BADXDR);
323 goto out;
324 }
Marc Eshel1be56832011-05-22 19:47:09 +0300325
Trond Myklebusta4f743a2015-02-11 17:49:13 -0500326 args->devs = kmalloc_array(n, sizeof(*args->devs), GFP_KERNEL);
Marc Eshel1be56832011-05-22 19:47:09 +0300327 if (!args->devs) {
328 status = htonl(NFS4ERR_DELAY);
329 goto out;
330 }
331
332 /* Decode each dev notification */
333 for (i = 0; i < n; i++) {
334 struct cb_devicenotifyitem *dev = &args->devs[i];
335
336 p = read_buf(xdr, (4 * sizeof(uint32_t)) + NFS4_DEVICEID4_SIZE);
337 if (unlikely(p == NULL)) {
338 status = htonl(NFS4ERR_BADXDR);
339 goto err;
340 }
341
342 tmp = ntohl(*p++); /* bitmap size */
343 if (tmp != 1) {
344 status = htonl(NFS4ERR_INVAL);
345 goto err;
346 }
347 dev->cbd_notify_type = ntohl(*p++);
348 if (dev->cbd_notify_type != NOTIFY_DEVICEID4_CHANGE &&
349 dev->cbd_notify_type != NOTIFY_DEVICEID4_DELETE) {
350 status = htonl(NFS4ERR_INVAL);
351 goto err;
352 }
353
354 tmp = ntohl(*p++); /* opaque size */
355 if (((dev->cbd_notify_type == NOTIFY_DEVICEID4_CHANGE) &&
356 (tmp != NFS4_DEVICEID4_SIZE + 8)) ||
357 ((dev->cbd_notify_type == NOTIFY_DEVICEID4_DELETE) &&
358 (tmp != NFS4_DEVICEID4_SIZE + 4))) {
359 status = htonl(NFS4ERR_INVAL);
360 goto err;
361 }
362 dev->cbd_layout_type = ntohl(*p++);
363 memcpy(dev->cbd_dev_id.data, p, NFS4_DEVICEID4_SIZE);
364 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
365
366 if (dev->cbd_layout_type == NOTIFY_DEVICEID4_CHANGE) {
367 p = read_buf(xdr, sizeof(uint32_t));
368 if (unlikely(p == NULL)) {
369 status = htonl(NFS4ERR_BADXDR);
370 goto err;
371 }
372 dev->cbd_immediate = ntohl(*p++);
373 } else {
374 dev->cbd_immediate = 0;
375 }
376
377 args->ndevs++;
378
379 dprintk("%s: type %d layout 0x%x immediate %d\n",
380 __func__, dev->cbd_notify_type, dev->cbd_layout_type,
381 dev->cbd_immediate);
382 }
383out:
384 dprintk("%s: status %d ndevs %d\n",
385 __func__, ntohl(status), args->ndevs);
386 return status;
387err:
388 kfree(args->devs);
389 goto out;
390}
391
Andy Adamson9733f0d2010-01-22 12:03:08 -0500392static __be32 decode_sessionid(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400393 struct nfs4_sessionid *sid)
394{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500395 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400396
Kinglong Mee590184a2015-09-24 20:57:37 +0800397 p = read_buf(xdr, NFS4_MAX_SESSIONID_LEN);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400398 if (unlikely(p == NULL))
Joe Perchesa419aef2009-08-18 11:18:35 -0700399 return htonl(NFS4ERR_RESOURCE);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400400
Kinglong Mee590184a2015-09-24 20:57:37 +0800401 memcpy(sid->data, p, NFS4_MAX_SESSIONID_LEN);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400402 return 0;
403}
404
Andy Adamson9733f0d2010-01-22 12:03:08 -0500405static __be32 decode_rc_list(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400406 struct referring_call_list *rc_list)
407{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500408 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400409 int i;
Andy Adamson9733f0d2010-01-22 12:03:08 -0500410 __be32 status;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400411
412 status = decode_sessionid(xdr, &rc_list->rcl_sessionid);
413 if (status)
414 goto out;
415
416 status = htonl(NFS4ERR_RESOURCE);
417 p = read_buf(xdr, sizeof(uint32_t));
418 if (unlikely(p == NULL))
419 goto out;
420
421 rc_list->rcl_nrefcalls = ntohl(*p++);
422 if (rc_list->rcl_nrefcalls) {
423 p = read_buf(xdr,
424 rc_list->rcl_nrefcalls * 2 * sizeof(uint32_t));
425 if (unlikely(p == NULL))
426 goto out;
Trond Myklebusta4f743a2015-02-11 17:49:13 -0500427 rc_list->rcl_refcalls = kmalloc_array(rc_list->rcl_nrefcalls,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400428 sizeof(*rc_list->rcl_refcalls),
429 GFP_KERNEL);
430 if (unlikely(rc_list->rcl_refcalls == NULL))
431 goto out;
432 for (i = 0; i < rc_list->rcl_nrefcalls; i++) {
433 rc_list->rcl_refcalls[i].rc_sequenceid = ntohl(*p++);
434 rc_list->rcl_refcalls[i].rc_slotid = ntohl(*p++);
435 }
436 }
437 status = 0;
438
439out:
440 return status;
441}
442
Andy Adamson9733f0d2010-01-22 12:03:08 -0500443static __be32 decode_cb_sequence_args(struct svc_rqst *rqstp,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400444 struct xdr_stream *xdr,
445 struct cb_sequenceargs *args)
446{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500447 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400448 int i;
Andy Adamson9733f0d2010-01-22 12:03:08 -0500449 __be32 status;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400450
451 status = decode_sessionid(xdr, &args->csa_sessionid);
452 if (status)
453 goto out;
454
455 status = htonl(NFS4ERR_RESOURCE);
456 p = read_buf(xdr, 5 * sizeof(uint32_t));
457 if (unlikely(p == NULL))
458 goto out;
459
Ricardo Labiaga65fc64e2009-04-01 09:23:30 -0400460 args->csa_addr = svc_addr(rqstp);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400461 args->csa_sequenceid = ntohl(*p++);
462 args->csa_slotid = ntohl(*p++);
463 args->csa_highestslotid = ntohl(*p++);
464 args->csa_cachethis = ntohl(*p++);
465 args->csa_nrclists = ntohl(*p++);
466 args->csa_rclists = NULL;
467 if (args->csa_nrclists) {
Dan Carpenter0439f312012-06-12 10:37:08 +0300468 args->csa_rclists = kmalloc_array(args->csa_nrclists,
469 sizeof(*args->csa_rclists),
470 GFP_KERNEL);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400471 if (unlikely(args->csa_rclists == NULL))
472 goto out;
473
474 for (i = 0; i < args->csa_nrclists; i++) {
475 status = decode_rc_list(xdr, &args->csa_rclists[i]);
Trond Myklebustd8ba1f92015-02-11 17:27:55 -0500476 if (status) {
477 args->csa_nrclists = i;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400478 goto out_free;
Trond Myklebustd8ba1f92015-02-11 17:27:55 -0500479 }
Benny Halevy4aece6a2009-04-01 09:23:26 -0400480 }
481 }
482 status = 0;
483
484 dprintk("%s: sessionid %x:%x:%x:%x sequenceid %u slotid %u "
485 "highestslotid %u cachethis %d nrclists %u\n",
486 __func__,
487 ((u32 *)&args->csa_sessionid)[0],
488 ((u32 *)&args->csa_sessionid)[1],
489 ((u32 *)&args->csa_sessionid)[2],
490 ((u32 *)&args->csa_sessionid)[3],
491 args->csa_sequenceid, args->csa_slotid,
492 args->csa_highestslotid, args->csa_cachethis,
493 args->csa_nrclists);
494out:
495 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
496 return status;
497
498out_free:
499 for (i = 0; i < args->csa_nrclists; i++)
500 kfree(args->csa_rclists[i].rcl_refcalls);
501 kfree(args->csa_rclists);
502 goto out;
503}
504
Andy Adamson9733f0d2010-01-22 12:03:08 -0500505static __be32 decode_recallany_args(struct svc_rqst *rqstp,
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500506 struct xdr_stream *xdr,
507 struct cb_recallanyargs *args)
508{
Peng Taod743c3c2011-10-23 20:22:38 -0700509 uint32_t bitmap[2];
510 __be32 *p, status;
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500511
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500512 p = read_buf(xdr, 4);
513 if (unlikely(p == NULL))
514 return htonl(NFS4ERR_BADXDR);
515 args->craa_objs_to_keep = ntohl(*p++);
Peng Taod743c3c2011-10-23 20:22:38 -0700516 status = decode_bitmap(xdr, bitmap);
517 if (unlikely(status))
518 return status;
519 args->craa_type_mask = bitmap[0];
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500520
521 return 0;
522}
523
Andy Adamson9733f0d2010-01-22 12:03:08 -0500524static __be32 decode_recallslot_args(struct svc_rqst *rqstp,
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500525 struct xdr_stream *xdr,
526 struct cb_recallslotargs *args)
527{
528 __be32 *p;
529
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500530 p = read_buf(xdr, 4);
531 if (unlikely(p == NULL))
532 return htonl(NFS4ERR_BADXDR);
Trond Myklebustd5fb4ce2012-11-20 20:24:02 -0500533 args->crsa_target_highest_slotid = ntohl(*p++);
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500534 return 0;
535}
536
Benny Halevy4aece6a2009-04-01 09:23:26 -0400537#endif /* CONFIG_NFS_V4_1 */
538
Al Viroe6f684f2006-10-19 23:28:50 -0700539static __be32 encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Al Viro5704fde2006-10-19 23:28:51 -0700541 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 p = xdr_reserve_space(xdr, 4 + len);
544 if (unlikely(p == NULL))
545 return htonl(NFS4ERR_RESOURCE);
546 xdr_encode_opaque(p, str, len);
547 return 0;
548}
549
550#define CB_SUPPORTED_ATTR0 (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE)
551#define CB_SUPPORTED_ATTR1 (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY)
Al Viro5704fde2006-10-19 23:28:51 -0700552static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Al Viro5704fde2006-10-19 23:28:51 -0700554 __be32 bm[2];
555 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 bm[0] = htonl(bitmap[0] & CB_SUPPORTED_ATTR0);
558 bm[1] = htonl(bitmap[1] & CB_SUPPORTED_ATTR1);
559 if (bm[1] != 0) {
560 p = xdr_reserve_space(xdr, 16);
561 if (unlikely(p == NULL))
562 return htonl(NFS4ERR_RESOURCE);
563 *p++ = htonl(2);
564 *p++ = bm[0];
565 *p++ = bm[1];
566 } else if (bm[0] != 0) {
567 p = xdr_reserve_space(xdr, 12);
568 if (unlikely(p == NULL))
569 return htonl(NFS4ERR_RESOURCE);
570 *p++ = htonl(1);
571 *p++ = bm[0];
572 } else {
573 p = xdr_reserve_space(xdr, 8);
574 if (unlikely(p == NULL))
575 return htonl(NFS4ERR_RESOURCE);
576 *p++ = htonl(0);
577 }
578 *savep = p;
579 return 0;
580}
581
Al Viroe6f684f2006-10-19 23:28:50 -0700582static __be32 encode_attr_change(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t change)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Al Viro5704fde2006-10-19 23:28:51 -0700584 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (!(bitmap[0] & FATTR4_WORD0_CHANGE))
587 return 0;
588 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800589 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return htonl(NFS4ERR_RESOURCE);
591 p = xdr_encode_hyper(p, change);
592 return 0;
593}
594
Al Viroe6f684f2006-10-19 23:28:50 -0700595static __be32 encode_attr_size(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Al Viro5704fde2006-10-19 23:28:51 -0700597 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (!(bitmap[0] & FATTR4_WORD0_SIZE))
600 return 0;
601 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800602 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return htonl(NFS4ERR_RESOURCE);
604 p = xdr_encode_hyper(p, size);
605 return 0;
606}
607
Al Viroe6f684f2006-10-19 23:28:50 -0700608static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Al Viro5704fde2006-10-19 23:28:51 -0700610 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 p = xdr_reserve_space(xdr, 12);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800613 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return htonl(NFS4ERR_RESOURCE);
615 p = xdr_encode_hyper(p, time->tv_sec);
616 *p = htonl(time->tv_nsec);
617 return 0;
618}
619
Al Viroe6f684f2006-10-19 23:28:50 -0700620static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
622 if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA))
623 return 0;
624 return encode_attr_time(xdr,time);
625}
626
Al Viroe6f684f2006-10-19 23:28:50 -0700627static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY))
630 return 0;
631 return encode_attr_time(xdr,time);
632}
633
Al Viroe6f684f2006-10-19 23:28:50 -0700634static __be32 encode_compound_hdr_res(struct xdr_stream *xdr, struct cb_compound_hdr_res *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Al Viroe6f684f2006-10-19 23:28:50 -0700636 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 hdr->status = xdr_reserve_space(xdr, 4);
639 if (unlikely(hdr->status == NULL))
640 return htonl(NFS4ERR_RESOURCE);
641 status = encode_string(xdr, hdr->taglen, hdr->tag);
642 if (unlikely(status != 0))
643 return status;
644 hdr->nops = xdr_reserve_space(xdr, 4);
645 if (unlikely(hdr->nops == NULL))
646 return htonl(NFS4ERR_RESOURCE);
647 return 0;
648}
649
Al Viroe6f684f2006-10-19 23:28:50 -0700650static __be32 encode_op_hdr(struct xdr_stream *xdr, uint32_t op, __be32 res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Al Viro5704fde2006-10-19 23:28:51 -0700652 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 p = xdr_reserve_space(xdr, 8);
655 if (unlikely(p == NULL))
Andy Adamson31d2b432010-01-14 17:45:04 -0500656 return htonl(NFS4ERR_RESOURCE_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 *p++ = htonl(op);
658 *p = res;
659 return 0;
660}
661
Al Viroe6f684f2006-10-19 23:28:50 -0700662static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, const struct cb_getattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Al Viro5704fde2006-10-19 23:28:51 -0700664 __be32 *savep = NULL;
Al Viroe6f684f2006-10-19 23:28:50 -0700665 __be32 status = res->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 if (unlikely(status != 0))
668 goto out;
669 status = encode_attr_bitmap(xdr, res->bitmap, &savep);
670 if (unlikely(status != 0))
671 goto out;
672 status = encode_attr_change(xdr, res->bitmap, res->change_attr);
673 if (unlikely(status != 0))
674 goto out;
675 status = encode_attr_size(xdr, res->bitmap, res->size);
676 if (unlikely(status != 0))
677 goto out;
678 status = encode_attr_ctime(xdr, res->bitmap, &res->ctime);
679 if (unlikely(status != 0))
680 goto out;
681 status = encode_attr_mtime(xdr, res->bitmap, &res->mtime);
682 *savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1)));
683out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700684 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return status;
686}
687
Benny Halevy34bc47c92009-04-01 09:23:22 -0400688#if defined(CONFIG_NFS_V4_1)
689
Andy Adamson9733f0d2010-01-22 12:03:08 -0500690static __be32 encode_sessionid(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400691 const struct nfs4_sessionid *sid)
692{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500693 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400694
Kinglong Mee590184a2015-09-24 20:57:37 +0800695 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400696 if (unlikely(p == NULL))
697 return htonl(NFS4ERR_RESOURCE);
698
Kinglong Mee590184a2015-09-24 20:57:37 +0800699 memcpy(p, sid, NFS4_MAX_SESSIONID_LEN);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400700 return 0;
701}
702
Andy Adamson9733f0d2010-01-22 12:03:08 -0500703static __be32 encode_cb_sequence_res(struct svc_rqst *rqstp,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400704 struct xdr_stream *xdr,
705 const struct cb_sequenceres *res)
706{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500707 __be32 *p;
Dan Carpentere216c8c2012-06-12 10:37:39 +0300708 __be32 status = res->csr_status;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400709
710 if (unlikely(status != 0))
711 goto out;
712
Kinglong Meee0a63c02015-09-24 20:58:38 +0800713 status = encode_sessionid(xdr, &res->csr_sessionid);
714 if (status)
715 goto out;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400716
717 p = xdr_reserve_space(xdr, 4 * sizeof(uint32_t));
718 if (unlikely(p == NULL))
719 return htonl(NFS4ERR_RESOURCE);
720
721 *p++ = htonl(res->csr_sequenceid);
722 *p++ = htonl(res->csr_slotid);
723 *p++ = htonl(res->csr_highestslotid);
724 *p++ = htonl(res->csr_target_highestslotid);
725out:
726 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
727 return status;
728}
729
Benny Halevy34bc47c92009-04-01 09:23:22 -0400730static __be32
731preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
732{
Benny Halevy281fe152009-04-01 09:23:27 -0400733 if (op_nr == OP_CB_SEQUENCE) {
734 if (nop != 0)
735 return htonl(NFS4ERR_SEQUENCE_POS);
736 } else {
737 if (nop == 0)
738 return htonl(NFS4ERR_OP_NOT_IN_SESSION);
739 }
740
Benny Halevy34bc47c92009-04-01 09:23:22 -0400741 switch (op_nr) {
742 case OP_CB_GETATTR:
743 case OP_CB_RECALL:
Benny Halevy4aece6a2009-04-01 09:23:26 -0400744 case OP_CB_SEQUENCE:
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500745 case OP_CB_RECALL_ANY:
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500746 case OP_CB_RECALL_SLOT:
Fred Isamanf2a62562011-01-06 11:36:29 +0000747 case OP_CB_LAYOUTRECALL:
Marc Eshel1be56832011-05-22 19:47:09 +0300748 case OP_CB_NOTIFY_DEVICEID:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400749 *op = &callback_ops[op_nr];
750 break;
751
Benny Halevy34bc47c92009-04-01 09:23:22 -0400752 case OP_CB_NOTIFY:
753 case OP_CB_PUSH_DELEG:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400754 case OP_CB_RECALLABLE_OBJ_AVAIL:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400755 case OP_CB_WANTS_CANCELLED:
756 case OP_CB_NOTIFY_LOCK:
757 return htonl(NFS4ERR_NOTSUPP);
758
759 default:
760 return htonl(NFS4ERR_OP_ILLEGAL);
761 }
762
763 return htonl(NFS_OK);
764}
765
Trond Myklebust810d82e2016-01-23 15:18:18 -0500766static void nfs4_callback_free_slot(struct nfs4_session *session,
767 struct nfs4_slot *slot)
Andy Adamson42acd022011-01-06 02:04:34 +0000768{
769 struct nfs4_slot_table *tbl = &session->bc_slot_table;
770
771 spin_lock(&tbl->slot_tbl_lock);
772 /*
773 * Let the state manager know callback processing done.
774 * A single slot, so highest used slotid is either 0 or -1
775 */
Trond Myklebust810d82e2016-01-23 15:18:18 -0500776 nfs4_free_slot(tbl, slot);
Andy Adamson774d5f12013-05-20 14:13:50 -0400777 nfs4_slot_tbl_drain_complete(tbl);
Andy Adamson42acd022011-01-06 02:04:34 +0000778 spin_unlock(&tbl->slot_tbl_lock);
779}
780
Trond Myklebust55a67392011-08-02 14:46:29 -0400781static void nfs4_cb_free_slot(struct cb_process_state *cps)
Andy Adamson42acd022011-01-06 02:04:34 +0000782{
Trond Myklebust810d82e2016-01-23 15:18:18 -0500783 if (cps->slot) {
784 nfs4_callback_free_slot(cps->clp->cl_session, cps->slot);
785 cps->slot = NULL;
786 }
Andy Adamson42acd022011-01-06 02:04:34 +0000787}
788
Benny Halevy34bc47c92009-04-01 09:23:22 -0400789#else /* CONFIG_NFS_V4_1 */
790
791static __be32
792preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
793{
794 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
795}
796
Trond Myklebust55a67392011-08-02 14:46:29 -0400797static void nfs4_cb_free_slot(struct cb_process_state *cps)
Andy Adamson42acd022011-01-06 02:04:34 +0000798{
799}
Benny Halevy34bc47c92009-04-01 09:23:22 -0400800#endif /* CONFIG_NFS_V4_1 */
801
Bryan Schumaker6b140b82013-06-05 11:15:02 -0400802#ifdef CONFIG_NFS_V4_2
803static __be32
804preprocess_nfs42_op(int nop, unsigned int op_nr, struct callback_op **op)
805{
806 __be32 status = preprocess_nfs41_op(nop, op_nr, op);
807 if (status != htonl(NFS4ERR_OP_ILLEGAL))
808 return status;
809
810 if (op_nr == OP_CB_OFFLOAD)
811 return htonl(NFS4ERR_NOTSUPP);
812 return htonl(NFS4ERR_OP_ILLEGAL);
813}
814#else /* CONFIG_NFS_V4_2 */
815static __be32
816preprocess_nfs42_op(int nop, unsigned int op_nr, struct callback_op **op)
817{
818 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
819}
820#endif /* CONFIG_NFS_V4_2 */
821
Benny Halevy34bc47c92009-04-01 09:23:22 -0400822static __be32
823preprocess_nfs4_op(unsigned int op_nr, struct callback_op **op)
824{
825 switch (op_nr) {
826 case OP_CB_GETATTR:
827 case OP_CB_RECALL:
828 *op = &callback_ops[op_nr];
829 break;
830 default:
831 return htonl(NFS4ERR_OP_ILLEGAL);
832 }
833
834 return htonl(NFS_OK);
835}
836
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400837static __be32 process_op(int nop, struct svc_rqst *rqstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 struct xdr_stream *xdr_in, void *argp,
Andy Adamsonc36fca52011-01-06 02:04:32 +0000839 struct xdr_stream *xdr_out, void *resp,
840 struct cb_process_state *cps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500842 struct callback_op *op = &callback_ops[0];
Andy Adamson31d2b432010-01-14 17:45:04 -0500843 unsigned int op_nr;
Benny Halevy34bc47c92009-04-01 09:23:22 -0400844 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 long maxlen;
Al Viroe6f684f2006-10-19 23:28:50 -0700846 __be32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Harvey Harrison3110ff82008-05-02 13:42:44 -0700848 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 status = decode_op_hdr(xdr_in, &op_nr);
Andy Adamson31d2b432010-01-14 17:45:04 -0500850 if (unlikely(status))
851 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Benny Halevy34bc47c92009-04-01 09:23:22 -0400853 dprintk("%s: minorversion=%d nop=%d op_nr=%u\n",
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400854 __func__, cps->minorversion, nop, op_nr);
Benny Halevy34bc47c92009-04-01 09:23:22 -0400855
Bryan Schumaker6b140b82013-06-05 11:15:02 -0400856 switch (cps->minorversion) {
857 case 0:
858 status = preprocess_nfs4_op(op_nr, &op);
859 break;
860 case 1:
861 status = preprocess_nfs41_op(nop, op_nr, &op);
862 break;
863 case 2:
864 status = preprocess_nfs42_op(nop, op_nr, &op);
865 break;
866 default:
867 status = htonl(NFS4ERR_MINOR_VERS_MISMATCH);
868 }
869
Benny Halevy34bc47c92009-04-01 09:23:22 -0400870 if (status == htonl(NFS4ERR_OP_ILLEGAL))
871 op_nr = OP_CB_ILLEGAL;
Andy Adamsonb92b3012010-01-14 17:45:05 -0500872 if (status)
873 goto encode_hdr;
Andy Adamson31d2b432010-01-14 17:45:04 -0500874
Andy Adamsonc36fca52011-01-06 02:04:32 +0000875 if (cps->drc_status) {
876 status = cps->drc_status;
Andy Adamson49110962010-01-14 17:45:08 -0500877 goto encode_hdr;
878 }
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 maxlen = xdr_out->end - xdr_out->p;
881 if (maxlen > 0 && maxlen < PAGE_SIZE) {
Andy Adamsone95e60d2010-01-14 17:45:06 -0500882 status = op->decode_args(rqstp, xdr_in, argp);
883 if (likely(status == 0))
Andy Adamsonc36fca52011-01-06 02:04:32 +0000884 status = op->process_op(argp, resp, cps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 } else
886 status = htonl(NFS4ERR_RESOURCE);
887
Andy Adamsonb92b3012010-01-14 17:45:05 -0500888encode_hdr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 res = encode_op_hdr(xdr_out, op_nr, status);
Andy Adamson31d2b432010-01-14 17:45:04 -0500890 if (unlikely(res))
891 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (op->encode_res != NULL && status == 0)
893 status = op->encode_res(rqstp, xdr_out, resp);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700894 dprintk("%s: done, status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return status;
896}
897
898/*
899 * Decode, process and encode a COMPOUND
900 */
Al Viro7111c662006-10-19 23:28:45 -0700901static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400903 struct cb_compound_hdr_arg hdr_arg = { 0 };
904 struct cb_compound_hdr_res hdr_res = { NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 struct xdr_stream xdr_in, xdr_out;
Andy Adamsonc36fca52011-01-06 02:04:32 +0000906 __be32 *p, status;
907 struct cb_process_state cps = {
908 .drc_status = 0,
909 .clp = NULL,
Stanislav Kinsbursky9695c702012-07-25 16:57:06 +0400910 .net = SVC_NET(rqstp),
Andy Adamsonc36fca52011-01-06 02:04:32 +0000911 };
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400912 unsigned int nops = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Harvey Harrison3110ff82008-05-02 13:42:44 -0700914 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Trond Myklebust756b9b32015-12-07 12:52:23 -0800916 xdr_init_decode(&xdr_in, &rqstp->rq_arg, rqstp->rq_arg.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Al Viro5704fde2006-10-19 23:28:51 -0700918 p = (__be32*)((char *)rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 xdr_init_encode(&xdr_out, &rqstp->rq_res, p);
920
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400921 status = decode_compound_hdr_arg(&xdr_in, &hdr_arg);
Vaishali Thakkar4ed0d832015-06-10 20:15:29 +0530922 if (status == htonl(NFS4ERR_RESOURCE))
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400923 return rpc_garbage_args;
924
Andy Adamsonc36fca52011-01-06 02:04:32 +0000925 if (hdr_arg.minorversion == 0) {
Stanislav Kinsbursky9695c702012-07-25 16:57:06 +0400926 cps.clp = nfs4_find_client_ident(SVC_NET(rqstp), hdr_arg.cb_ident);
Andy Adamson778be232011-01-25 15:38:01 +0000927 if (!cps.clp || !check_gss_callback_principal(cps.clp, rqstp))
Andy Adamsonc36fca52011-01-06 02:04:32 +0000928 return rpc_drop_reply;
Andy Adamson778be232011-01-25 15:38:01 +0000929 }
Andy Adamsonc36fca52011-01-06 02:04:32 +0000930
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400931 cps.minorversion = hdr_arg.minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 hdr_res.taglen = hdr_arg.taglen;
933 hdr_res.tag = hdr_arg.tag;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400934 if (encode_compound_hdr_res(&xdr_out, &hdr_res) != 0)
935 return rpc_system_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400937 while (status == 0 && nops != hdr_arg.nops) {
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400938 status = process_op(nops, rqstp, &xdr_in,
939 argp, &xdr_out, resp, &cps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 nops++;
941 }
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400942
Andy Adamson31d2b432010-01-14 17:45:04 -0500943 /* Buffer overflow in decode_ops_hdr or encode_ops_hdr. Return
944 * resource error in cb_compound status without returning op */
945 if (unlikely(status == htonl(NFS4ERR_RESOURCE_HDR))) {
946 status = htonl(NFS4ERR_RESOURCE);
947 nops--;
948 }
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 *hdr_res.status = status;
951 *hdr_res.nops = htonl(nops);
Trond Myklebust55a67392011-08-02 14:46:29 -0400952 nfs4_cb_free_slot(&cps);
Andy Adamsonc36fca52011-01-06 02:04:32 +0000953 nfs_put_client(cps.clp);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700954 dprintk("%s: done, status = %u\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return rpc_success;
956}
957
958/*
959 * Define NFS4 callback COMPOUND ops.
960 */
961static struct callback_op callback_ops[] = {
962 [0] = {
963 .res_maxsize = CB_OP_HDR_RES_MAXSZ,
964 },
965 [OP_CB_GETATTR] = {
966 .process_op = (callback_process_op_t)nfs4_callback_getattr,
967 .decode_args = (callback_decode_arg_t)decode_getattr_args,
968 .encode_res = (callback_encode_res_t)encode_getattr_res,
969 .res_maxsize = CB_OP_GETATTR_RES_MAXSZ,
970 },
971 [OP_CB_RECALL] = {
972 .process_op = (callback_process_op_t)nfs4_callback_recall,
973 .decode_args = (callback_decode_arg_t)decode_recall_args,
974 .res_maxsize = CB_OP_RECALL_RES_MAXSZ,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400975 },
976#if defined(CONFIG_NFS_V4_1)
Fred Isamanf2a62562011-01-06 11:36:29 +0000977 [OP_CB_LAYOUTRECALL] = {
978 .process_op = (callback_process_op_t)nfs4_callback_layoutrecall,
979 .decode_args =
980 (callback_decode_arg_t)decode_layoutrecall_args,
981 .res_maxsize = CB_OP_LAYOUTRECALL_RES_MAXSZ,
982 },
Marc Eshel1be56832011-05-22 19:47:09 +0300983 [OP_CB_NOTIFY_DEVICEID] = {
984 .process_op = (callback_process_op_t)nfs4_callback_devicenotify,
985 .decode_args =
986 (callback_decode_arg_t)decode_devicenotify_args,
987 .res_maxsize = CB_OP_DEVICENOTIFY_RES_MAXSZ,
988 },
Benny Halevy4aece6a2009-04-01 09:23:26 -0400989 [OP_CB_SEQUENCE] = {
990 .process_op = (callback_process_op_t)nfs4_callback_sequence,
991 .decode_args = (callback_decode_arg_t)decode_cb_sequence_args,
992 .encode_res = (callback_encode_res_t)encode_cb_sequence_res,
993 .res_maxsize = CB_OP_SEQUENCE_RES_MAXSZ,
994 },
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500995 [OP_CB_RECALL_ANY] = {
996 .process_op = (callback_process_op_t)nfs4_callback_recallany,
997 .decode_args = (callback_decode_arg_t)decode_recallany_args,
998 .res_maxsize = CB_OP_RECALLANY_RES_MAXSZ,
999 },
Andy Adamsonb9efa1b2010-01-20 16:06:27 -05001000 [OP_CB_RECALL_SLOT] = {
1001 .process_op = (callback_process_op_t)nfs4_callback_recallslot,
1002 .decode_args = (callback_decode_arg_t)decode_recallslot_args,
1003 .res_maxsize = CB_OP_RECALLSLOT_RES_MAXSZ,
1004 },
Benny Halevy4aece6a2009-04-01 09:23:26 -04001005#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006};
1007
1008/*
1009 * Define NFS4 callback procedures
1010 */
1011static struct svc_procedure nfs4_callback_procedures1[] = {
1012 [CB_NULL] = {
1013 .pc_func = nfs4_callback_null,
1014 .pc_decode = (kxdrproc_t)nfs4_decode_void,
1015 .pc_encode = (kxdrproc_t)nfs4_encode_void,
1016 .pc_xdrressize = 1,
1017 },
1018 [CB_COMPOUND] = {
1019 .pc_func = nfs4_callback_compound,
1020 .pc_encode = (kxdrproc_t)nfs4_encode_void,
1021 .pc_argsize = 256,
1022 .pc_ressize = 256,
1023 .pc_xdrressize = NFS4_CALLBACK_BUFSIZE,
1024 }
1025};
1026
1027struct svc_version nfs4_callback_version1 = {
1028 .vs_vers = 1,
1029 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
1030 .vs_proc = nfs4_callback_procedures1,
1031 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
1032 .vs_dispatch = NULL,
Steve Dickson49697ee2009-10-13 16:07:33 -04001033 .vs_hidden = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034};
1035
Alexandros Batsakis07bccc22009-12-05 13:19:01 -05001036struct svc_version nfs4_callback_version4 = {
1037 .vs_vers = 4,
1038 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
1039 .vs_proc = nfs4_callback_procedures1,
1040 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
1041 .vs_dispatch = NULL,
Jeff Layton60702952011-11-04 07:04:10 -04001042 .vs_hidden = 1,
Alexandros Batsakis07bccc22009-12-05 13:19:01 -05001043};