blob: 646cdac73488e96041f2bcad33b4220b096da684 [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 Myklebust2d2f24a2012-03-04 18:13:57 -0500149 memcpy(stateid, p, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 0;
151}
152
Al Viroe6f684f2006-10-19 23:28:50 -0700153static __be32 decode_compound_hdr_arg(struct xdr_stream *xdr, struct cb_compound_hdr_arg *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Al Viro5704fde2006-10-19 23:28:51 -0700155 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700156 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 status = decode_string(xdr, &hdr->taglen, &hdr->tag);
159 if (unlikely(status != 0))
160 return status;
161 /* We do not like overly long tags! */
Kinglong Mee403889c2015-09-24 20:58:16 +0800162 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500163 printk("NFS: NFSv4 CALLBACK %s: client sent tag of length %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700164 __func__, hdr->taglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return htonl(NFS4ERR_RESOURCE);
166 }
167 p = read_buf(xdr, 12);
168 if (unlikely(p == NULL))
169 return htonl(NFS4ERR_RESOURCE);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400170 hdr->minorversion = ntohl(*p++);
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400171 /* Check for minor version support */
172 if (hdr->minorversion <= NFS4_MAX_MINOR_VERSION) {
Steve Dickson42c2c422013-05-22 12:50:38 -0400173 hdr->cb_ident = ntohl(*p++); /* ignored by v4.1 and v4.2 */
Benny Halevy48a9e2d2009-04-01 09:23:20 -0400174 } else {
Trond Myklebust9a3ba432012-03-12 18:01:48 -0400175 pr_warn_ratelimited("NFS: %s: NFSv4 server callback with "
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400176 "illegal minor version %u!\n",
177 __func__, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 hdr->nops = ntohl(*p);
Benny Halevyb8f2ef82009-04-01 09:23:19 -0400181 dprintk("%s: minorversion %d nops %d\n", __func__,
182 hdr->minorversion, hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return 0;
184}
185
Al Viroe6f684f2006-10-19 23:28:50 -0700186static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Al Viro5704fde2006-10-19 23:28:51 -0700188 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 p = read_buf(xdr, 4);
190 if (unlikely(p == NULL))
Andy Adamson31d2b432010-01-14 17:45:04 -0500191 return htonl(NFS4ERR_RESOURCE_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *op = ntohl(*p);
193 return 0;
194}
195
Al Viroe6f684f2006-10-19 23:28:50 -0700196static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_getattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Al Viroe6f684f2006-10-19 23:28:50 -0700198 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 status = decode_fh(xdr, &args->fh);
201 if (unlikely(status != 0))
202 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 status = decode_bitmap(xdr, args->bitmap);
204out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700205 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return status;
207}
208
Al Viroe6f684f2006-10-19 23:28:50 -0700209static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_recallargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Al Viro5704fde2006-10-19 23:28:51 -0700211 __be32 *p;
Al Viroe6f684f2006-10-19 23:28:50 -0700212 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 status = decode_stateid(xdr, &args->stateid);
215 if (unlikely(status != 0))
216 goto out;
217 p = read_buf(xdr, 4);
218 if (unlikely(p == NULL)) {
219 status = htonl(NFS4ERR_RESOURCE);
220 goto out;
221 }
222 args->truncate = ntohl(*p);
223 status = decode_fh(xdr, &args->fh);
224out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700225 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Alexey Dobriyan3873bc52006-05-27 03:31:12 +0400226 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Benny Halevy4aece6a2009-04-01 09:23:26 -0400229#if defined(CONFIG_NFS_V4_1)
230
Fred Isamanf2a62562011-01-06 11:36:29 +0000231static __be32 decode_layoutrecall_args(struct svc_rqst *rqstp,
232 struct xdr_stream *xdr,
233 struct cb_layoutrecallargs *args)
234{
235 __be32 *p;
236 __be32 status = 0;
237 uint32_t iomode;
238
Fred Isamanf2a62562011-01-06 11:36:29 +0000239 p = read_buf(xdr, 4 * sizeof(uint32_t));
240 if (unlikely(p == NULL)) {
241 status = htonl(NFS4ERR_BADXDR);
242 goto out;
243 }
244
245 args->cbl_layout_type = ntohl(*p++);
246 /* Depite the spec's xdr, iomode really belongs in the FILE switch,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300247 * as it is unusable and ignored with the other types.
Fred Isamanf2a62562011-01-06 11:36:29 +0000248 */
249 iomode = ntohl(*p++);
250 args->cbl_layoutchanged = ntohl(*p++);
251 args->cbl_recall_type = ntohl(*p++);
252
253 if (args->cbl_recall_type == RETURN_FILE) {
254 args->cbl_range.iomode = iomode;
255 status = decode_fh(xdr, &args->cbl_fh);
256 if (unlikely(status != 0))
257 goto out;
258
259 p = read_buf(xdr, 2 * sizeof(uint64_t));
260 if (unlikely(p == NULL)) {
261 status = htonl(NFS4ERR_BADXDR);
262 goto out;
263 }
264 p = xdr_decode_hyper(p, &args->cbl_range.offset);
265 p = xdr_decode_hyper(p, &args->cbl_range.length);
266 status = decode_stateid(xdr, &args->cbl_stateid);
267 if (unlikely(status != 0))
268 goto out;
269 } else if (args->cbl_recall_type == RETURN_FSID) {
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_fsid.major);
276 p = xdr_decode_hyper(p, &args->cbl_fsid.minor);
277 } else if (args->cbl_recall_type != RETURN_ALL) {
278 status = htonl(NFS4ERR_BADXDR);
279 goto out;
280 }
281 dprintk("%s: ltype 0x%x iomode %d changed %d recall_type %d\n",
282 __func__,
283 args->cbl_layout_type, iomode,
284 args->cbl_layoutchanged, args->cbl_recall_type);
285out:
286 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
287 return status;
288}
289
Marc Eshel1be56832011-05-22 19:47:09 +0300290static
291__be32 decode_devicenotify_args(struct svc_rqst *rqstp,
292 struct xdr_stream *xdr,
293 struct cb_devicenotifyargs *args)
294{
295 __be32 *p;
296 __be32 status = 0;
297 u32 tmp;
298 int n, i;
299 args->ndevs = 0;
300
301 /* Num of device notifications */
302 p = read_buf(xdr, sizeof(uint32_t));
303 if (unlikely(p == NULL)) {
304 status = htonl(NFS4ERR_BADXDR);
305 goto out;
306 }
307 n = ntohl(*p++);
308 if (n <= 0)
309 goto out;
Dan Carpenter363e0df02012-01-12 10:16:14 +0300310 if (n > ULONG_MAX / sizeof(*args->devs)) {
311 status = htonl(NFS4ERR_BADXDR);
312 goto out;
313 }
Marc Eshel1be56832011-05-22 19:47:09 +0300314
Trond Myklebusta4f743a2015-02-11 17:49:13 -0500315 args->devs = kmalloc_array(n, sizeof(*args->devs), GFP_KERNEL);
Marc Eshel1be56832011-05-22 19:47:09 +0300316 if (!args->devs) {
317 status = htonl(NFS4ERR_DELAY);
318 goto out;
319 }
320
321 /* Decode each dev notification */
322 for (i = 0; i < n; i++) {
323 struct cb_devicenotifyitem *dev = &args->devs[i];
324
325 p = read_buf(xdr, (4 * sizeof(uint32_t)) + NFS4_DEVICEID4_SIZE);
326 if (unlikely(p == NULL)) {
327 status = htonl(NFS4ERR_BADXDR);
328 goto err;
329 }
330
331 tmp = ntohl(*p++); /* bitmap size */
332 if (tmp != 1) {
333 status = htonl(NFS4ERR_INVAL);
334 goto err;
335 }
336 dev->cbd_notify_type = ntohl(*p++);
337 if (dev->cbd_notify_type != NOTIFY_DEVICEID4_CHANGE &&
338 dev->cbd_notify_type != NOTIFY_DEVICEID4_DELETE) {
339 status = htonl(NFS4ERR_INVAL);
340 goto err;
341 }
342
343 tmp = ntohl(*p++); /* opaque size */
344 if (((dev->cbd_notify_type == NOTIFY_DEVICEID4_CHANGE) &&
345 (tmp != NFS4_DEVICEID4_SIZE + 8)) ||
346 ((dev->cbd_notify_type == NOTIFY_DEVICEID4_DELETE) &&
347 (tmp != NFS4_DEVICEID4_SIZE + 4))) {
348 status = htonl(NFS4ERR_INVAL);
349 goto err;
350 }
351 dev->cbd_layout_type = ntohl(*p++);
352 memcpy(dev->cbd_dev_id.data, p, NFS4_DEVICEID4_SIZE);
353 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
354
355 if (dev->cbd_layout_type == NOTIFY_DEVICEID4_CHANGE) {
356 p = read_buf(xdr, sizeof(uint32_t));
357 if (unlikely(p == NULL)) {
358 status = htonl(NFS4ERR_BADXDR);
359 goto err;
360 }
361 dev->cbd_immediate = ntohl(*p++);
362 } else {
363 dev->cbd_immediate = 0;
364 }
365
366 args->ndevs++;
367
368 dprintk("%s: type %d layout 0x%x immediate %d\n",
369 __func__, dev->cbd_notify_type, dev->cbd_layout_type,
370 dev->cbd_immediate);
371 }
372out:
373 dprintk("%s: status %d ndevs %d\n",
374 __func__, ntohl(status), args->ndevs);
375 return status;
376err:
377 kfree(args->devs);
378 goto out;
379}
380
Andy Adamson9733f0d2010-01-22 12:03:08 -0500381static __be32 decode_sessionid(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400382 struct nfs4_sessionid *sid)
383{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500384 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400385
Kinglong Mee590184a2015-09-24 20:57:37 +0800386 p = read_buf(xdr, NFS4_MAX_SESSIONID_LEN);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400387 if (unlikely(p == NULL))
Joe Perchesa419aef2009-08-18 11:18:35 -0700388 return htonl(NFS4ERR_RESOURCE);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400389
Kinglong Mee590184a2015-09-24 20:57:37 +0800390 memcpy(sid->data, p, NFS4_MAX_SESSIONID_LEN);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400391 return 0;
392}
393
Andy Adamson9733f0d2010-01-22 12:03:08 -0500394static __be32 decode_rc_list(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400395 struct referring_call_list *rc_list)
396{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500397 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400398 int i;
Andy Adamson9733f0d2010-01-22 12:03:08 -0500399 __be32 status;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400400
401 status = decode_sessionid(xdr, &rc_list->rcl_sessionid);
402 if (status)
403 goto out;
404
405 status = htonl(NFS4ERR_RESOURCE);
406 p = read_buf(xdr, sizeof(uint32_t));
407 if (unlikely(p == NULL))
408 goto out;
409
410 rc_list->rcl_nrefcalls = ntohl(*p++);
411 if (rc_list->rcl_nrefcalls) {
412 p = read_buf(xdr,
413 rc_list->rcl_nrefcalls * 2 * sizeof(uint32_t));
414 if (unlikely(p == NULL))
415 goto out;
Trond Myklebusta4f743a2015-02-11 17:49:13 -0500416 rc_list->rcl_refcalls = kmalloc_array(rc_list->rcl_nrefcalls,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400417 sizeof(*rc_list->rcl_refcalls),
418 GFP_KERNEL);
419 if (unlikely(rc_list->rcl_refcalls == NULL))
420 goto out;
421 for (i = 0; i < rc_list->rcl_nrefcalls; i++) {
422 rc_list->rcl_refcalls[i].rc_sequenceid = ntohl(*p++);
423 rc_list->rcl_refcalls[i].rc_slotid = ntohl(*p++);
424 }
425 }
426 status = 0;
427
428out:
429 return status;
430}
431
Andy Adamson9733f0d2010-01-22 12:03:08 -0500432static __be32 decode_cb_sequence_args(struct svc_rqst *rqstp,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400433 struct xdr_stream *xdr,
434 struct cb_sequenceargs *args)
435{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500436 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400437 int i;
Andy Adamson9733f0d2010-01-22 12:03:08 -0500438 __be32 status;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400439
440 status = decode_sessionid(xdr, &args->csa_sessionid);
441 if (status)
442 goto out;
443
444 status = htonl(NFS4ERR_RESOURCE);
445 p = read_buf(xdr, 5 * sizeof(uint32_t));
446 if (unlikely(p == NULL))
447 goto out;
448
Ricardo Labiaga65fc64e2009-04-01 09:23:30 -0400449 args->csa_addr = svc_addr(rqstp);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400450 args->csa_sequenceid = ntohl(*p++);
451 args->csa_slotid = ntohl(*p++);
452 args->csa_highestslotid = ntohl(*p++);
453 args->csa_cachethis = ntohl(*p++);
454 args->csa_nrclists = ntohl(*p++);
455 args->csa_rclists = NULL;
456 if (args->csa_nrclists) {
Dan Carpenter0439f312012-06-12 10:37:08 +0300457 args->csa_rclists = kmalloc_array(args->csa_nrclists,
458 sizeof(*args->csa_rclists),
459 GFP_KERNEL);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400460 if (unlikely(args->csa_rclists == NULL))
461 goto out;
462
463 for (i = 0; i < args->csa_nrclists; i++) {
464 status = decode_rc_list(xdr, &args->csa_rclists[i]);
Trond Myklebustd8ba1f92015-02-11 17:27:55 -0500465 if (status) {
466 args->csa_nrclists = i;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400467 goto out_free;
Trond Myklebustd8ba1f92015-02-11 17:27:55 -0500468 }
Benny Halevy4aece6a2009-04-01 09:23:26 -0400469 }
470 }
471 status = 0;
472
473 dprintk("%s: sessionid %x:%x:%x:%x sequenceid %u slotid %u "
474 "highestslotid %u cachethis %d nrclists %u\n",
475 __func__,
476 ((u32 *)&args->csa_sessionid)[0],
477 ((u32 *)&args->csa_sessionid)[1],
478 ((u32 *)&args->csa_sessionid)[2],
479 ((u32 *)&args->csa_sessionid)[3],
480 args->csa_sequenceid, args->csa_slotid,
481 args->csa_highestslotid, args->csa_cachethis,
482 args->csa_nrclists);
483out:
484 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
485 return status;
486
487out_free:
488 for (i = 0; i < args->csa_nrclists; i++)
489 kfree(args->csa_rclists[i].rcl_refcalls);
490 kfree(args->csa_rclists);
491 goto out;
492}
493
Andy Adamson9733f0d2010-01-22 12:03:08 -0500494static __be32 decode_recallany_args(struct svc_rqst *rqstp,
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500495 struct xdr_stream *xdr,
496 struct cb_recallanyargs *args)
497{
Peng Taod743c3c2011-10-23 20:22:38 -0700498 uint32_t bitmap[2];
499 __be32 *p, status;
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500500
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500501 p = read_buf(xdr, 4);
502 if (unlikely(p == NULL))
503 return htonl(NFS4ERR_BADXDR);
504 args->craa_objs_to_keep = ntohl(*p++);
Peng Taod743c3c2011-10-23 20:22:38 -0700505 status = decode_bitmap(xdr, bitmap);
506 if (unlikely(status))
507 return status;
508 args->craa_type_mask = bitmap[0];
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500509
510 return 0;
511}
512
Andy Adamson9733f0d2010-01-22 12:03:08 -0500513static __be32 decode_recallslot_args(struct svc_rqst *rqstp,
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500514 struct xdr_stream *xdr,
515 struct cb_recallslotargs *args)
516{
517 __be32 *p;
518
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500519 p = read_buf(xdr, 4);
520 if (unlikely(p == NULL))
521 return htonl(NFS4ERR_BADXDR);
Trond Myklebustd5fb4ce2012-11-20 20:24:02 -0500522 args->crsa_target_highest_slotid = ntohl(*p++);
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500523 return 0;
524}
525
Benny Halevy4aece6a2009-04-01 09:23:26 -0400526#endif /* CONFIG_NFS_V4_1 */
527
Al Viroe6f684f2006-10-19 23:28:50 -0700528static __be32 encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Al Viro5704fde2006-10-19 23:28:51 -0700530 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 p = xdr_reserve_space(xdr, 4 + len);
533 if (unlikely(p == NULL))
534 return htonl(NFS4ERR_RESOURCE);
535 xdr_encode_opaque(p, str, len);
536 return 0;
537}
538
539#define CB_SUPPORTED_ATTR0 (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE)
540#define CB_SUPPORTED_ATTR1 (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY)
Al Viro5704fde2006-10-19 23:28:51 -0700541static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Al Viro5704fde2006-10-19 23:28:51 -0700543 __be32 bm[2];
544 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 bm[0] = htonl(bitmap[0] & CB_SUPPORTED_ATTR0);
547 bm[1] = htonl(bitmap[1] & CB_SUPPORTED_ATTR1);
548 if (bm[1] != 0) {
549 p = xdr_reserve_space(xdr, 16);
550 if (unlikely(p == NULL))
551 return htonl(NFS4ERR_RESOURCE);
552 *p++ = htonl(2);
553 *p++ = bm[0];
554 *p++ = bm[1];
555 } else if (bm[0] != 0) {
556 p = xdr_reserve_space(xdr, 12);
557 if (unlikely(p == NULL))
558 return htonl(NFS4ERR_RESOURCE);
559 *p++ = htonl(1);
560 *p++ = bm[0];
561 } else {
562 p = xdr_reserve_space(xdr, 8);
563 if (unlikely(p == NULL))
564 return htonl(NFS4ERR_RESOURCE);
565 *p++ = htonl(0);
566 }
567 *savep = p;
568 return 0;
569}
570
Al Viroe6f684f2006-10-19 23:28:50 -0700571static __be32 encode_attr_change(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t change)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Al Viro5704fde2006-10-19 23:28:51 -0700573 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 if (!(bitmap[0] & FATTR4_WORD0_CHANGE))
576 return 0;
577 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800578 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return htonl(NFS4ERR_RESOURCE);
580 p = xdr_encode_hyper(p, change);
581 return 0;
582}
583
Al Viroe6f684f2006-10-19 23:28:50 -0700584static __be32 encode_attr_size(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Al Viro5704fde2006-10-19 23:28:51 -0700586 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 if (!(bitmap[0] & FATTR4_WORD0_SIZE))
589 return 0;
590 p = xdr_reserve_space(xdr, 8);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800591 if (unlikely(!p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return htonl(NFS4ERR_RESOURCE);
593 p = xdr_encode_hyper(p, size);
594 return 0;
595}
596
Al Viroe6f684f2006-10-19 23:28:50 -0700597static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Al Viro5704fde2006-10-19 23:28:51 -0700599 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 p = xdr_reserve_space(xdr, 12);
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, time->tv_sec);
605 *p = htonl(time->tv_nsec);
606 return 0;
607}
608
Al Viroe6f684f2006-10-19 23:28:50 -0700609static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
611 if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA))
612 return 0;
613 return encode_attr_time(xdr,time);
614}
615
Al Viroe6f684f2006-10-19 23:28:50 -0700616static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY))
619 return 0;
620 return encode_attr_time(xdr,time);
621}
622
Al Viroe6f684f2006-10-19 23:28:50 -0700623static __be32 encode_compound_hdr_res(struct xdr_stream *xdr, struct cb_compound_hdr_res *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Al Viroe6f684f2006-10-19 23:28:50 -0700625 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 hdr->status = xdr_reserve_space(xdr, 4);
628 if (unlikely(hdr->status == NULL))
629 return htonl(NFS4ERR_RESOURCE);
630 status = encode_string(xdr, hdr->taglen, hdr->tag);
631 if (unlikely(status != 0))
632 return status;
633 hdr->nops = xdr_reserve_space(xdr, 4);
634 if (unlikely(hdr->nops == NULL))
635 return htonl(NFS4ERR_RESOURCE);
636 return 0;
637}
638
Al Viroe6f684f2006-10-19 23:28:50 -0700639static __be32 encode_op_hdr(struct xdr_stream *xdr, uint32_t op, __be32 res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Al Viro5704fde2006-10-19 23:28:51 -0700641 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 p = xdr_reserve_space(xdr, 8);
644 if (unlikely(p == NULL))
Andy Adamson31d2b432010-01-14 17:45:04 -0500645 return htonl(NFS4ERR_RESOURCE_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 *p++ = htonl(op);
647 *p = res;
648 return 0;
649}
650
Al Viroe6f684f2006-10-19 23:28:50 -0700651static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, const struct cb_getattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Al Viro5704fde2006-10-19 23:28:51 -0700653 __be32 *savep = NULL;
Al Viroe6f684f2006-10-19 23:28:50 -0700654 __be32 status = res->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 if (unlikely(status != 0))
657 goto out;
658 status = encode_attr_bitmap(xdr, res->bitmap, &savep);
659 if (unlikely(status != 0))
660 goto out;
661 status = encode_attr_change(xdr, res->bitmap, res->change_attr);
662 if (unlikely(status != 0))
663 goto out;
664 status = encode_attr_size(xdr, res->bitmap, res->size);
665 if (unlikely(status != 0))
666 goto out;
667 status = encode_attr_ctime(xdr, res->bitmap, &res->ctime);
668 if (unlikely(status != 0))
669 goto out;
670 status = encode_attr_mtime(xdr, res->bitmap, &res->mtime);
671 *savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1)));
672out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700673 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return status;
675}
676
Benny Halevy34bc47c92009-04-01 09:23:22 -0400677#if defined(CONFIG_NFS_V4_1)
678
Andy Adamson9733f0d2010-01-22 12:03:08 -0500679static __be32 encode_sessionid(struct xdr_stream *xdr,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400680 const struct nfs4_sessionid *sid)
681{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500682 __be32 *p;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400683
Kinglong Mee590184a2015-09-24 20:57:37 +0800684 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400685 if (unlikely(p == NULL))
686 return htonl(NFS4ERR_RESOURCE);
687
Kinglong Mee590184a2015-09-24 20:57:37 +0800688 memcpy(p, sid, NFS4_MAX_SESSIONID_LEN);
Benny Halevy4aece6a2009-04-01 09:23:26 -0400689 return 0;
690}
691
Andy Adamson9733f0d2010-01-22 12:03:08 -0500692static __be32 encode_cb_sequence_res(struct svc_rqst *rqstp,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400693 struct xdr_stream *xdr,
694 const struct cb_sequenceres *res)
695{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500696 __be32 *p;
Dan Carpentere216c8c2012-06-12 10:37:39 +0300697 __be32 status = res->csr_status;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400698
699 if (unlikely(status != 0))
700 goto out;
701
Kinglong Meee0a63c02015-09-24 20:58:38 +0800702 status = encode_sessionid(xdr, &res->csr_sessionid);
703 if (status)
704 goto out;
Benny Halevy4aece6a2009-04-01 09:23:26 -0400705
706 p = xdr_reserve_space(xdr, 4 * sizeof(uint32_t));
707 if (unlikely(p == NULL))
708 return htonl(NFS4ERR_RESOURCE);
709
710 *p++ = htonl(res->csr_sequenceid);
711 *p++ = htonl(res->csr_slotid);
712 *p++ = htonl(res->csr_highestslotid);
713 *p++ = htonl(res->csr_target_highestslotid);
714out:
715 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
716 return status;
717}
718
Benny Halevy34bc47c92009-04-01 09:23:22 -0400719static __be32
720preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
721{
Benny Halevy281fe152009-04-01 09:23:27 -0400722 if (op_nr == OP_CB_SEQUENCE) {
723 if (nop != 0)
724 return htonl(NFS4ERR_SEQUENCE_POS);
725 } else {
726 if (nop == 0)
727 return htonl(NFS4ERR_OP_NOT_IN_SESSION);
728 }
729
Benny Halevy34bc47c92009-04-01 09:23:22 -0400730 switch (op_nr) {
731 case OP_CB_GETATTR:
732 case OP_CB_RECALL:
Benny Halevy4aece6a2009-04-01 09:23:26 -0400733 case OP_CB_SEQUENCE:
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500734 case OP_CB_RECALL_ANY:
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500735 case OP_CB_RECALL_SLOT:
Fred Isamanf2a62562011-01-06 11:36:29 +0000736 case OP_CB_LAYOUTRECALL:
Marc Eshel1be56832011-05-22 19:47:09 +0300737 case OP_CB_NOTIFY_DEVICEID:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400738 *op = &callback_ops[op_nr];
739 break;
740
Benny Halevy34bc47c92009-04-01 09:23:22 -0400741 case OP_CB_NOTIFY:
742 case OP_CB_PUSH_DELEG:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400743 case OP_CB_RECALLABLE_OBJ_AVAIL:
Benny Halevy34bc47c92009-04-01 09:23:22 -0400744 case OP_CB_WANTS_CANCELLED:
745 case OP_CB_NOTIFY_LOCK:
746 return htonl(NFS4ERR_NOTSUPP);
747
748 default:
749 return htonl(NFS4ERR_OP_ILLEGAL);
750 }
751
752 return htonl(NFS_OK);
753}
754
Andy Adamson42acd022011-01-06 02:04:34 +0000755static void nfs4_callback_free_slot(struct nfs4_session *session)
756{
757 struct nfs4_slot_table *tbl = &session->bc_slot_table;
758
759 spin_lock(&tbl->slot_tbl_lock);
760 /*
761 * Let the state manager know callback processing done.
762 * A single slot, so highest used slotid is either 0 or -1
763 */
Trond Myklebust45d43c22012-02-06 19:38:51 -0500764 tbl->highest_used_slotid = NFS4_NO_SLOT;
Andy Adamson774d5f12013-05-20 14:13:50 -0400765 nfs4_slot_tbl_drain_complete(tbl);
Andy Adamson42acd022011-01-06 02:04:34 +0000766 spin_unlock(&tbl->slot_tbl_lock);
767}
768
Trond Myklebust55a67392011-08-02 14:46:29 -0400769static void nfs4_cb_free_slot(struct cb_process_state *cps)
Andy Adamson42acd022011-01-06 02:04:34 +0000770{
Trond Myklebust45d43c22012-02-06 19:38:51 -0500771 if (cps->slotid != NFS4_NO_SLOT)
Trond Myklebust55a67392011-08-02 14:46:29 -0400772 nfs4_callback_free_slot(cps->clp->cl_session);
Andy Adamson42acd022011-01-06 02:04:34 +0000773}
774
Benny Halevy34bc47c92009-04-01 09:23:22 -0400775#else /* CONFIG_NFS_V4_1 */
776
777static __be32
778preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op)
779{
780 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
781}
782
Trond Myklebust55a67392011-08-02 14:46:29 -0400783static void nfs4_cb_free_slot(struct cb_process_state *cps)
Andy Adamson42acd022011-01-06 02:04:34 +0000784{
785}
Benny Halevy34bc47c92009-04-01 09:23:22 -0400786#endif /* CONFIG_NFS_V4_1 */
787
Bryan Schumaker6b140b82013-06-05 11:15:02 -0400788#ifdef CONFIG_NFS_V4_2
789static __be32
790preprocess_nfs42_op(int nop, unsigned int op_nr, struct callback_op **op)
791{
792 __be32 status = preprocess_nfs41_op(nop, op_nr, op);
793 if (status != htonl(NFS4ERR_OP_ILLEGAL))
794 return status;
795
796 if (op_nr == OP_CB_OFFLOAD)
797 return htonl(NFS4ERR_NOTSUPP);
798 return htonl(NFS4ERR_OP_ILLEGAL);
799}
800#else /* CONFIG_NFS_V4_2 */
801static __be32
802preprocess_nfs42_op(int nop, unsigned int op_nr, struct callback_op **op)
803{
804 return htonl(NFS4ERR_MINOR_VERS_MISMATCH);
805}
806#endif /* CONFIG_NFS_V4_2 */
807
Benny Halevy34bc47c92009-04-01 09:23:22 -0400808static __be32
809preprocess_nfs4_op(unsigned int op_nr, struct callback_op **op)
810{
811 switch (op_nr) {
812 case OP_CB_GETATTR:
813 case OP_CB_RECALL:
814 *op = &callback_ops[op_nr];
815 break;
816 default:
817 return htonl(NFS4ERR_OP_ILLEGAL);
818 }
819
820 return htonl(NFS_OK);
821}
822
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400823static __be32 process_op(int nop, struct svc_rqst *rqstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 struct xdr_stream *xdr_in, void *argp,
Andy Adamsonc36fca52011-01-06 02:04:32 +0000825 struct xdr_stream *xdr_out, void *resp,
826 struct cb_process_state *cps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500828 struct callback_op *op = &callback_ops[0];
Andy Adamson31d2b432010-01-14 17:45:04 -0500829 unsigned int op_nr;
Benny Halevy34bc47c92009-04-01 09:23:22 -0400830 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 long maxlen;
Al Viroe6f684f2006-10-19 23:28:50 -0700832 __be32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Harvey Harrison3110ff82008-05-02 13:42:44 -0700834 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 status = decode_op_hdr(xdr_in, &op_nr);
Andy Adamson31d2b432010-01-14 17:45:04 -0500836 if (unlikely(status))
837 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Benny Halevy34bc47c92009-04-01 09:23:22 -0400839 dprintk("%s: minorversion=%d nop=%d op_nr=%u\n",
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400840 __func__, cps->minorversion, nop, op_nr);
Benny Halevy34bc47c92009-04-01 09:23:22 -0400841
Bryan Schumaker6b140b82013-06-05 11:15:02 -0400842 switch (cps->minorversion) {
843 case 0:
844 status = preprocess_nfs4_op(op_nr, &op);
845 break;
846 case 1:
847 status = preprocess_nfs41_op(nop, op_nr, &op);
848 break;
849 case 2:
850 status = preprocess_nfs42_op(nop, op_nr, &op);
851 break;
852 default:
853 status = htonl(NFS4ERR_MINOR_VERS_MISMATCH);
854 }
855
Benny Halevy34bc47c92009-04-01 09:23:22 -0400856 if (status == htonl(NFS4ERR_OP_ILLEGAL))
857 op_nr = OP_CB_ILLEGAL;
Andy Adamsonb92b3012010-01-14 17:45:05 -0500858 if (status)
859 goto encode_hdr;
Andy Adamson31d2b432010-01-14 17:45:04 -0500860
Andy Adamsonc36fca52011-01-06 02:04:32 +0000861 if (cps->drc_status) {
862 status = cps->drc_status;
Andy Adamson49110962010-01-14 17:45:08 -0500863 goto encode_hdr;
864 }
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 maxlen = xdr_out->end - xdr_out->p;
867 if (maxlen > 0 && maxlen < PAGE_SIZE) {
Andy Adamsone95e60d2010-01-14 17:45:06 -0500868 status = op->decode_args(rqstp, xdr_in, argp);
869 if (likely(status == 0))
Andy Adamsonc36fca52011-01-06 02:04:32 +0000870 status = op->process_op(argp, resp, cps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 } else
872 status = htonl(NFS4ERR_RESOURCE);
873
Andy Adamsonb92b3012010-01-14 17:45:05 -0500874encode_hdr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 res = encode_op_hdr(xdr_out, op_nr, status);
Andy Adamson31d2b432010-01-14 17:45:04 -0500876 if (unlikely(res))
877 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (op->encode_res != NULL && status == 0)
879 status = op->encode_res(rqstp, xdr_out, resp);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700880 dprintk("%s: done, status = %d\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return status;
882}
883
884/*
885 * Decode, process and encode a COMPOUND
886 */
Al Viro7111c662006-10-19 23:28:45 -0700887static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400889 struct cb_compound_hdr_arg hdr_arg = { 0 };
890 struct cb_compound_hdr_res hdr_res = { NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 struct xdr_stream xdr_in, xdr_out;
Andy Adamsonc36fca52011-01-06 02:04:32 +0000892 __be32 *p, status;
893 struct cb_process_state cps = {
894 .drc_status = 0,
895 .clp = NULL,
Trond Myklebust45d43c22012-02-06 19:38:51 -0500896 .slotid = NFS4_NO_SLOT,
Stanislav Kinsbursky9695c702012-07-25 16:57:06 +0400897 .net = SVC_NET(rqstp),
Andy Adamsonc36fca52011-01-06 02:04:32 +0000898 };
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400899 unsigned int nops = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Harvey Harrison3110ff82008-05-02 13:42:44 -0700901 dprintk("%s: start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Trond Myklebust756b9b32015-12-07 12:52:23 -0800903 xdr_init_decode(&xdr_in, &rqstp->rq_arg, rqstp->rq_arg.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Al Viro5704fde2006-10-19 23:28:51 -0700905 p = (__be32*)((char *)rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 xdr_init_encode(&xdr_out, &rqstp->rq_res, p);
907
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400908 status = decode_compound_hdr_arg(&xdr_in, &hdr_arg);
Vaishali Thakkar4ed0d832015-06-10 20:15:29 +0530909 if (status == htonl(NFS4ERR_RESOURCE))
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400910 return rpc_garbage_args;
911
Andy Adamsonc36fca52011-01-06 02:04:32 +0000912 if (hdr_arg.minorversion == 0) {
Stanislav Kinsbursky9695c702012-07-25 16:57:06 +0400913 cps.clp = nfs4_find_client_ident(SVC_NET(rqstp), hdr_arg.cb_ident);
Andy Adamson778be232011-01-25 15:38:01 +0000914 if (!cps.clp || !check_gss_callback_principal(cps.clp, rqstp))
Andy Adamsonc36fca52011-01-06 02:04:32 +0000915 return rpc_drop_reply;
Andy Adamson778be232011-01-25 15:38:01 +0000916 }
Andy Adamsonc36fca52011-01-06 02:04:32 +0000917
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400918 cps.minorversion = hdr_arg.minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 hdr_res.taglen = hdr_arg.taglen;
920 hdr_res.tag = hdr_arg.tag;
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400921 if (encode_compound_hdr_res(&xdr_out, &hdr_res) != 0)
922 return rpc_system_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400924 while (status == 0 && nops != hdr_arg.nops) {
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400925 status = process_op(nops, rqstp, &xdr_in,
926 argp, &xdr_out, resp, &cps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 nops++;
928 }
Trond Myklebust3a6258e2008-05-06 13:32:40 -0400929
Andy Adamson31d2b432010-01-14 17:45:04 -0500930 /* Buffer overflow in decode_ops_hdr or encode_ops_hdr. Return
931 * resource error in cb_compound status without returning op */
932 if (unlikely(status == htonl(NFS4ERR_RESOURCE_HDR))) {
933 status = htonl(NFS4ERR_RESOURCE);
934 nops--;
935 }
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 *hdr_res.status = status;
938 *hdr_res.nops = htonl(nops);
Trond Myklebust55a67392011-08-02 14:46:29 -0400939 nfs4_cb_free_slot(&cps);
Andy Adamsonc36fca52011-01-06 02:04:32 +0000940 nfs_put_client(cps.clp);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700941 dprintk("%s: done, status = %u\n", __func__, ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return rpc_success;
943}
944
945/*
946 * Define NFS4 callback COMPOUND ops.
947 */
948static struct callback_op callback_ops[] = {
949 [0] = {
950 .res_maxsize = CB_OP_HDR_RES_MAXSZ,
951 },
952 [OP_CB_GETATTR] = {
953 .process_op = (callback_process_op_t)nfs4_callback_getattr,
954 .decode_args = (callback_decode_arg_t)decode_getattr_args,
955 .encode_res = (callback_encode_res_t)encode_getattr_res,
956 .res_maxsize = CB_OP_GETATTR_RES_MAXSZ,
957 },
958 [OP_CB_RECALL] = {
959 .process_op = (callback_process_op_t)nfs4_callback_recall,
960 .decode_args = (callback_decode_arg_t)decode_recall_args,
961 .res_maxsize = CB_OP_RECALL_RES_MAXSZ,
Benny Halevy4aece6a2009-04-01 09:23:26 -0400962 },
963#if defined(CONFIG_NFS_V4_1)
Fred Isamanf2a62562011-01-06 11:36:29 +0000964 [OP_CB_LAYOUTRECALL] = {
965 .process_op = (callback_process_op_t)nfs4_callback_layoutrecall,
966 .decode_args =
967 (callback_decode_arg_t)decode_layoutrecall_args,
968 .res_maxsize = CB_OP_LAYOUTRECALL_RES_MAXSZ,
969 },
Marc Eshel1be56832011-05-22 19:47:09 +0300970 [OP_CB_NOTIFY_DEVICEID] = {
971 .process_op = (callback_process_op_t)nfs4_callback_devicenotify,
972 .decode_args =
973 (callback_decode_arg_t)decode_devicenotify_args,
974 .res_maxsize = CB_OP_DEVICENOTIFY_RES_MAXSZ,
975 },
Benny Halevy4aece6a2009-04-01 09:23:26 -0400976 [OP_CB_SEQUENCE] = {
977 .process_op = (callback_process_op_t)nfs4_callback_sequence,
978 .decode_args = (callback_decode_arg_t)decode_cb_sequence_args,
979 .encode_res = (callback_encode_res_t)encode_cb_sequence_res,
980 .res_maxsize = CB_OP_SEQUENCE_RES_MAXSZ,
981 },
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500982 [OP_CB_RECALL_ANY] = {
983 .process_op = (callback_process_op_t)nfs4_callback_recallany,
984 .decode_args = (callback_decode_arg_t)decode_recallany_args,
985 .res_maxsize = CB_OP_RECALLANY_RES_MAXSZ,
986 },
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500987 [OP_CB_RECALL_SLOT] = {
988 .process_op = (callback_process_op_t)nfs4_callback_recallslot,
989 .decode_args = (callback_decode_arg_t)decode_recallslot_args,
990 .res_maxsize = CB_OP_RECALLSLOT_RES_MAXSZ,
991 },
Benny Halevy4aece6a2009-04-01 09:23:26 -0400992#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993};
994
995/*
996 * Define NFS4 callback procedures
997 */
998static struct svc_procedure nfs4_callback_procedures1[] = {
999 [CB_NULL] = {
1000 .pc_func = nfs4_callback_null,
1001 .pc_decode = (kxdrproc_t)nfs4_decode_void,
1002 .pc_encode = (kxdrproc_t)nfs4_encode_void,
1003 .pc_xdrressize = 1,
1004 },
1005 [CB_COMPOUND] = {
1006 .pc_func = nfs4_callback_compound,
1007 .pc_encode = (kxdrproc_t)nfs4_encode_void,
1008 .pc_argsize = 256,
1009 .pc_ressize = 256,
1010 .pc_xdrressize = NFS4_CALLBACK_BUFSIZE,
1011 }
1012};
1013
1014struct svc_version nfs4_callback_version1 = {
1015 .vs_vers = 1,
1016 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
1017 .vs_proc = nfs4_callback_procedures1,
1018 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
1019 .vs_dispatch = NULL,
Steve Dickson49697ee2009-10-13 16:07:33 -04001020 .vs_hidden = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021};
1022
Alexandros Batsakis07bccc22009-12-05 13:19:01 -05001023struct svc_version nfs4_callback_version4 = {
1024 .vs_vers = 4,
1025 .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1),
1026 .vs_proc = nfs4_callback_procedures1,
1027 .vs_xdrsize = NFS4_CALLBACK_XDRSIZE,
1028 .vs_dispatch = NULL,
Jeff Layton60702952011-11-04 07:04:10 -04001029 .vs_hidden = 1,
Alexandros Batsakis07bccc22009-12-05 13:19:01 -05001030};