Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/callback_xdr.c |
| 3 | * |
| 4 | * Copyright (C) 2004 Trond Myklebust |
| 5 | * |
| 6 | * NFSv4 callback encode/decode procedures |
| 7 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/kernel.h> |
| 9 | #include <linux/sunrpc/svc.h> |
| 10 | #include <linux/nfs4.h> |
| 11 | #include <linux/nfs_fs.h> |
Trond Myklebust | 9a3ba43 | 2012-03-12 18:01:48 -0400 | [diff] [blame] | 12 | #include <linux/ratelimit.h> |
| 13 | #include <linux/printk.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 15 | #include <linux/sunrpc/bc_xprt.h> |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 16 | #include "nfs4_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "callback.h" |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 18 | #include "internal.h" |
Trond Myklebust | 76e697b | 2012-11-26 14:20:49 -0500 | [diff] [blame] | 19 | #include "nfs4session.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Kinglong Mee | 45724e8 | 2015-09-24 20:57:58 +0800 | [diff] [blame] | 21 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 30 | #if defined(CONFIG_NFS_V4_1) |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 31 | #define CB_OP_LAYOUTRECALL_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 32 | #define CB_OP_DEVICENOTIFY_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 33 | #define CB_OP_SEQUENCE_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \ |
Kinglong Mee | 45724e8 | 2015-09-24 20:57:58 +0800 | [diff] [blame] | 34 | NFS4_MAX_SESSIONID_LEN + \ |
| 35 | (1 + 3) * 4) // seqid, 3 slotids |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 36 | #define CB_OP_RECALLANY_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 37 | #define CB_OP_RECALLSLOT_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 38 | #endif /* CONFIG_NFS_V4_1 */ |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #define NFSDBG_FACILITY NFSDBG_CALLBACK |
| 41 | |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 42 | /* Internal error code */ |
| 43 | #define NFS4ERR_RESOURCE_HDR 11050 |
| 44 | |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 45 | typedef __be32 (*callback_process_op_t)(void *, void *, |
| 46 | struct cb_process_state *); |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 47 | typedef __be32 (*callback_decode_arg_t)(struct svc_rqst *, struct xdr_stream *, void *); |
| 48 | typedef __be32 (*callback_encode_res_t)(struct svc_rqst *, struct xdr_stream *, void *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | |
| 51 | struct 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 | |
| 58 | static struct callback_op callback_ops[]; |
| 59 | |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 60 | static __be32 nfs4_callback_null(struct svc_rqst *rqstp, void *argp, void *resp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | return htonl(NFS4_OK); |
| 63 | } |
| 64 | |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 65 | static int nfs4_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
| 67 | return xdr_argsize_check(rqstp, p); |
| 68 | } |
| 69 | |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 70 | static int nfs4_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
| 72 | return xdr_ressize_check(rqstp, p); |
| 73 | } |
| 74 | |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 75 | static __be32 *read_buf(struct xdr_stream *xdr, int nbytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 77 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | p = xdr_inline_decode(xdr, nbytes); |
| 80 | if (unlikely(p == NULL)) |
Trond Myklebust | 756b9b3 | 2015-12-07 12:52:23 -0800 | [diff] [blame] | 81 | printk(KERN_WARNING "NFS: NFSv4 callback reply buffer overflowed!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | return p; |
| 83 | } |
| 84 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 85 | static __be32 decode_string(struct xdr_stream *xdr, unsigned int *len, const char **str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 87 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 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 Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 105 | static __be32 decode_fh(struct xdr_stream *xdr, struct nfs_fh *fh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 107 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 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 Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 123 | static __be32 decode_bitmap(struct xdr_stream *xdr, uint32_t *bitmap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 125 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | 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 Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 142 | static __be32 decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 144 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Trond Myklebust | 2d2f24a | 2012-03-04 18:13:57 -0500 | [diff] [blame] | 146 | p = read_buf(xdr, NFS4_STATEID_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | if (unlikely(p == NULL)) |
| 148 | return htonl(NFS4ERR_RESOURCE); |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 149 | memcpy(stateid->data, p, NFS4_STATEID_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | return 0; |
| 151 | } |
| 152 | |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 153 | static __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 Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 159 | static __be32 decode_compound_hdr_arg(struct xdr_stream *xdr, struct cb_compound_hdr_arg *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 161 | __be32 *p; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 162 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
| 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 Mee | 403889c | 2015-09-24 20:58:16 +0800 | [diff] [blame] | 168 | if (hdr->taglen > CB_OP_TAGLEN_MAXSZ) { |
Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 169 | printk("NFS: NFSv4 CALLBACK %s: client sent tag of length %u\n", |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 170 | __func__, hdr->taglen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | return htonl(NFS4ERR_RESOURCE); |
| 172 | } |
| 173 | p = read_buf(xdr, 12); |
| 174 | if (unlikely(p == NULL)) |
| 175 | return htonl(NFS4ERR_RESOURCE); |
Benny Halevy | b8f2ef8 | 2009-04-01 09:23:19 -0400 | [diff] [blame] | 176 | hdr->minorversion = ntohl(*p++); |
Bryan Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 177 | /* Check for minor version support */ |
| 178 | if (hdr->minorversion <= NFS4_MAX_MINOR_VERSION) { |
Steve Dickson | 42c2c42 | 2013-05-22 12:50:38 -0400 | [diff] [blame] | 179 | hdr->cb_ident = ntohl(*p++); /* ignored by v4.1 and v4.2 */ |
Benny Halevy | 48a9e2d | 2009-04-01 09:23:20 -0400 | [diff] [blame] | 180 | } else { |
Trond Myklebust | 9a3ba43 | 2012-03-12 18:01:48 -0400 | [diff] [blame] | 181 | pr_warn_ratelimited("NFS: %s: NFSv4 server callback with " |
Benny Halevy | b8f2ef8 | 2009-04-01 09:23:19 -0400 | [diff] [blame] | 182 | "illegal minor version %u!\n", |
| 183 | __func__, hdr->minorversion); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | return htonl(NFS4ERR_MINOR_VERS_MISMATCH); |
| 185 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | hdr->nops = ntohl(*p); |
Benny Halevy | b8f2ef8 | 2009-04-01 09:23:19 -0400 | [diff] [blame] | 187 | dprintk("%s: minorversion %d nops %d\n", __func__, |
| 188 | hdr->minorversion, hdr->nops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | return 0; |
| 190 | } |
| 191 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 192 | static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 194 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | p = read_buf(xdr, 4); |
| 196 | if (unlikely(p == NULL)) |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 197 | return htonl(NFS4ERR_RESOURCE_HDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | *op = ntohl(*p); |
| 199 | return 0; |
| 200 | } |
| 201 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 202 | static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_getattrargs *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | { |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 204 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | status = decode_fh(xdr, &args->fh); |
| 207 | if (unlikely(status != 0)) |
| 208 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | status = decode_bitmap(xdr, args->bitmap); |
| 210 | out: |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 211 | dprintk("%s: exit with status = %d\n", __func__, ntohl(status)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | return status; |
| 213 | } |
| 214 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 215 | static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr, struct cb_recallargs *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 217 | __be32 *p; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 218 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 220 | status = decode_delegation_stateid(xdr, &args->stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | 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); |
| 230 | out: |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 231 | dprintk("%s: exit with status = %d\n", __func__, ntohl(status)); |
Alexey Dobriyan | 3873bc5 | 2006-05-27 03:31:12 +0400 | [diff] [blame] | 232 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 235 | #if defined(CONFIG_NFS_V4_1) |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 236 | static __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 Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 241 | |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 242 | static __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 Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 250 | 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 Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 258 | * as it is unusable and ignored with the other types. |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 259 | */ |
| 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 Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 277 | status = decode_layout_stateid(xdr, &args->cbl_stateid); |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 278 | 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); |
| 296 | out: |
| 297 | dprintk("%s: exit with status = %d\n", __func__, ntohl(status)); |
| 298 | return status; |
| 299 | } |
| 300 | |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 301 | static |
| 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 Carpenter | 363e0df0 | 2012-01-12 10:16:14 +0300 | [diff] [blame] | 321 | if (n > ULONG_MAX / sizeof(*args->devs)) { |
| 322 | status = htonl(NFS4ERR_BADXDR); |
| 323 | goto out; |
| 324 | } |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 325 | |
Trond Myklebust | a4f743a | 2015-02-11 17:49:13 -0500 | [diff] [blame] | 326 | args->devs = kmalloc_array(n, sizeof(*args->devs), GFP_KERNEL); |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 327 | 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 | } |
| 383 | out: |
| 384 | dprintk("%s: status %d ndevs %d\n", |
| 385 | __func__, ntohl(status), args->ndevs); |
| 386 | return status; |
| 387 | err: |
| 388 | kfree(args->devs); |
| 389 | goto out; |
| 390 | } |
| 391 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 392 | static __be32 decode_sessionid(struct xdr_stream *xdr, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 393 | struct nfs4_sessionid *sid) |
| 394 | { |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 395 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 396 | |
Kinglong Mee | 590184a | 2015-09-24 20:57:37 +0800 | [diff] [blame] | 397 | p = read_buf(xdr, NFS4_MAX_SESSIONID_LEN); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 398 | if (unlikely(p == NULL)) |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 399 | return htonl(NFS4ERR_RESOURCE); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 400 | |
Kinglong Mee | 590184a | 2015-09-24 20:57:37 +0800 | [diff] [blame] | 401 | memcpy(sid->data, p, NFS4_MAX_SESSIONID_LEN); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 402 | return 0; |
| 403 | } |
| 404 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 405 | static __be32 decode_rc_list(struct xdr_stream *xdr, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 406 | struct referring_call_list *rc_list) |
| 407 | { |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 408 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 409 | int i; |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 410 | __be32 status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 411 | |
| 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 Myklebust | a4f743a | 2015-02-11 17:49:13 -0500 | [diff] [blame] | 427 | rc_list->rcl_refcalls = kmalloc_array(rc_list->rcl_nrefcalls, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 428 | 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 | |
| 439 | out: |
| 440 | return status; |
| 441 | } |
| 442 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 443 | static __be32 decode_cb_sequence_args(struct svc_rqst *rqstp, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 444 | struct xdr_stream *xdr, |
| 445 | struct cb_sequenceargs *args) |
| 446 | { |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 447 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 448 | int i; |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 449 | __be32 status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 450 | |
| 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 Labiaga | 65fc64e | 2009-04-01 09:23:30 -0400 | [diff] [blame] | 460 | args->csa_addr = svc_addr(rqstp); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 461 | 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 Carpenter | 0439f31 | 2012-06-12 10:37:08 +0300 | [diff] [blame] | 468 | args->csa_rclists = kmalloc_array(args->csa_nrclists, |
| 469 | sizeof(*args->csa_rclists), |
| 470 | GFP_KERNEL); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 471 | 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 Myklebust | d8ba1f9 | 2015-02-11 17:27:55 -0500 | [diff] [blame] | 476 | if (status) { |
| 477 | args->csa_nrclists = i; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 478 | goto out_free; |
Trond Myklebust | d8ba1f9 | 2015-02-11 17:27:55 -0500 | [diff] [blame] | 479 | } |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 480 | } |
| 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); |
| 494 | out: |
| 495 | dprintk("%s: exit with status = %d\n", __func__, ntohl(status)); |
| 496 | return status; |
| 497 | |
| 498 | out_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 Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 505 | static __be32 decode_recallany_args(struct svc_rqst *rqstp, |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 506 | struct xdr_stream *xdr, |
| 507 | struct cb_recallanyargs *args) |
| 508 | { |
Peng Tao | d743c3c | 2011-10-23 20:22:38 -0700 | [diff] [blame] | 509 | uint32_t bitmap[2]; |
| 510 | __be32 *p, status; |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 511 | |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 512 | p = read_buf(xdr, 4); |
| 513 | if (unlikely(p == NULL)) |
| 514 | return htonl(NFS4ERR_BADXDR); |
| 515 | args->craa_objs_to_keep = ntohl(*p++); |
Peng Tao | d743c3c | 2011-10-23 20:22:38 -0700 | [diff] [blame] | 516 | status = decode_bitmap(xdr, bitmap); |
| 517 | if (unlikely(status)) |
| 518 | return status; |
| 519 | args->craa_type_mask = bitmap[0]; |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 520 | |
| 521 | return 0; |
| 522 | } |
| 523 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 524 | static __be32 decode_recallslot_args(struct svc_rqst *rqstp, |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 525 | struct xdr_stream *xdr, |
| 526 | struct cb_recallslotargs *args) |
| 527 | { |
| 528 | __be32 *p; |
| 529 | |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 530 | p = read_buf(xdr, 4); |
| 531 | if (unlikely(p == NULL)) |
| 532 | return htonl(NFS4ERR_BADXDR); |
Trond Myklebust | d5fb4ce | 2012-11-20 20:24:02 -0500 | [diff] [blame] | 533 | args->crsa_target_highest_slotid = ntohl(*p++); |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 534 | return 0; |
| 535 | } |
| 536 | |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 537 | #endif /* CONFIG_NFS_V4_1 */ |
| 538 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 539 | static __be32 encode_string(struct xdr_stream *xdr, unsigned int len, const char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 541 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
| 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 Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 552 | static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, __be32 **savep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 554 | __be32 bm[2]; |
| 555 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
| 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 Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 582 | static __be32 encode_attr_change(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t change) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 584 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
| 586 | if (!(bitmap[0] & FATTR4_WORD0_CHANGE)) |
| 587 | return 0; |
| 588 | p = xdr_reserve_space(xdr, 8); |
Harvey Harrison | 90dc7d2 | 2008-02-20 13:03:05 -0800 | [diff] [blame] | 589 | if (unlikely(!p)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | return htonl(NFS4ERR_RESOURCE); |
| 591 | p = xdr_encode_hyper(p, change); |
| 592 | return 0; |
| 593 | } |
| 594 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 595 | static __be32 encode_attr_size(struct xdr_stream *xdr, const uint32_t *bitmap, uint64_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 597 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
| 599 | if (!(bitmap[0] & FATTR4_WORD0_SIZE)) |
| 600 | return 0; |
| 601 | p = xdr_reserve_space(xdr, 8); |
Harvey Harrison | 90dc7d2 | 2008-02-20 13:03:05 -0800 | [diff] [blame] | 602 | if (unlikely(!p)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | return htonl(NFS4ERR_RESOURCE); |
| 604 | p = xdr_encode_hyper(p, size); |
| 605 | return 0; |
| 606 | } |
| 607 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 608 | static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec *time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 610 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
| 612 | p = xdr_reserve_space(xdr, 12); |
Harvey Harrison | 90dc7d2 | 2008-02-20 13:03:05 -0800 | [diff] [blame] | 613 | if (unlikely(!p)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | 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 Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 620 | static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | { |
| 622 | if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) |
| 623 | return 0; |
| 624 | return encode_attr_time(xdr,time); |
| 625 | } |
| 626 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 627 | static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec *time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | { |
| 629 | if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) |
| 630 | return 0; |
| 631 | return encode_attr_time(xdr,time); |
| 632 | } |
| 633 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 634 | static __be32 encode_compound_hdr_res(struct xdr_stream *xdr, struct cb_compound_hdr_res *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | { |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 636 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
| 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 Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 650 | static __be32 encode_op_hdr(struct xdr_stream *xdr, uint32_t op, __be32 res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 652 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | |
| 654 | p = xdr_reserve_space(xdr, 8); |
| 655 | if (unlikely(p == NULL)) |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 656 | return htonl(NFS4ERR_RESOURCE_HDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | *p++ = htonl(op); |
| 658 | *p = res; |
| 659 | return 0; |
| 660 | } |
| 661 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 662 | static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, const struct cb_getattrres *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 664 | __be32 *savep = NULL; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 665 | __be32 status = res->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | |
| 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))); |
| 683 | out: |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 684 | dprintk("%s: exit with status = %d\n", __func__, ntohl(status)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | return status; |
| 686 | } |
| 687 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 688 | #if defined(CONFIG_NFS_V4_1) |
| 689 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 690 | static __be32 encode_sessionid(struct xdr_stream *xdr, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 691 | const struct nfs4_sessionid *sid) |
| 692 | { |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 693 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 694 | |
Kinglong Mee | 590184a | 2015-09-24 20:57:37 +0800 | [diff] [blame] | 695 | p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 696 | if (unlikely(p == NULL)) |
| 697 | return htonl(NFS4ERR_RESOURCE); |
| 698 | |
Kinglong Mee | 590184a | 2015-09-24 20:57:37 +0800 | [diff] [blame] | 699 | memcpy(p, sid, NFS4_MAX_SESSIONID_LEN); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 700 | return 0; |
| 701 | } |
| 702 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 703 | static __be32 encode_cb_sequence_res(struct svc_rqst *rqstp, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 704 | struct xdr_stream *xdr, |
| 705 | const struct cb_sequenceres *res) |
| 706 | { |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 707 | __be32 *p; |
Dan Carpenter | e216c8c | 2012-06-12 10:37:39 +0300 | [diff] [blame] | 708 | __be32 status = res->csr_status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 709 | |
| 710 | if (unlikely(status != 0)) |
| 711 | goto out; |
| 712 | |
Kinglong Mee | e0a63c0 | 2015-09-24 20:58:38 +0800 | [diff] [blame] | 713 | status = encode_sessionid(xdr, &res->csr_sessionid); |
| 714 | if (status) |
| 715 | goto out; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 716 | |
| 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); |
| 725 | out: |
| 726 | dprintk("%s: exit with status = %d\n", __func__, ntohl(status)); |
| 727 | return status; |
| 728 | } |
| 729 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 730 | static __be32 |
| 731 | preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op) |
| 732 | { |
Benny Halevy | 281fe15 | 2009-04-01 09:23:27 -0400 | [diff] [blame] | 733 | 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 Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 741 | switch (op_nr) { |
| 742 | case OP_CB_GETATTR: |
| 743 | case OP_CB_RECALL: |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 744 | case OP_CB_SEQUENCE: |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 745 | case OP_CB_RECALL_ANY: |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 746 | case OP_CB_RECALL_SLOT: |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 747 | case OP_CB_LAYOUTRECALL: |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 748 | case OP_CB_NOTIFY_DEVICEID: |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 749 | *op = &callback_ops[op_nr]; |
| 750 | break; |
| 751 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 752 | case OP_CB_NOTIFY: |
| 753 | case OP_CB_PUSH_DELEG: |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 754 | case OP_CB_RECALLABLE_OBJ_AVAIL: |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 755 | 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 Myklebust | 810d82e | 2016-01-23 15:18:18 -0500 | [diff] [blame] | 766 | static void nfs4_callback_free_slot(struct nfs4_session *session, |
| 767 | struct nfs4_slot *slot) |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 768 | { |
| 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 Myklebust | 810d82e | 2016-01-23 15:18:18 -0500 | [diff] [blame] | 776 | nfs4_free_slot(tbl, slot); |
Andy Adamson | 774d5f1 | 2013-05-20 14:13:50 -0400 | [diff] [blame] | 777 | nfs4_slot_tbl_drain_complete(tbl); |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 778 | spin_unlock(&tbl->slot_tbl_lock); |
| 779 | } |
| 780 | |
Trond Myklebust | 55a6739 | 2011-08-02 14:46:29 -0400 | [diff] [blame] | 781 | static void nfs4_cb_free_slot(struct cb_process_state *cps) |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 782 | { |
Trond Myklebust | 810d82e | 2016-01-23 15:18:18 -0500 | [diff] [blame] | 783 | if (cps->slot) { |
| 784 | nfs4_callback_free_slot(cps->clp->cl_session, cps->slot); |
| 785 | cps->slot = NULL; |
| 786 | } |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 787 | } |
| 788 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 789 | #else /* CONFIG_NFS_V4_1 */ |
| 790 | |
| 791 | static __be32 |
| 792 | preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op) |
| 793 | { |
| 794 | return htonl(NFS4ERR_MINOR_VERS_MISMATCH); |
| 795 | } |
| 796 | |
Trond Myklebust | 55a6739 | 2011-08-02 14:46:29 -0400 | [diff] [blame] | 797 | static void nfs4_cb_free_slot(struct cb_process_state *cps) |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 798 | { |
| 799 | } |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 800 | #endif /* CONFIG_NFS_V4_1 */ |
| 801 | |
Bryan Schumaker | 6b140b8 | 2013-06-05 11:15:02 -0400 | [diff] [blame] | 802 | #ifdef CONFIG_NFS_V4_2 |
| 803 | static __be32 |
| 804 | preprocess_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 */ |
| 815 | static __be32 |
| 816 | preprocess_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 Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 822 | static __be32 |
| 823 | preprocess_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 Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 837 | static __be32 process_op(int nop, struct svc_rqst *rqstp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | struct xdr_stream *xdr_in, void *argp, |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 839 | struct xdr_stream *xdr_out, void *resp, |
| 840 | struct cb_process_state *cps) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | { |
Trond Myklebust | a162a6b | 2006-03-20 13:44:10 -0500 | [diff] [blame] | 842 | struct callback_op *op = &callback_ops[0]; |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 843 | unsigned int op_nr; |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 844 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | long maxlen; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 846 | __be32 res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 848 | dprintk("%s: start\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | status = decode_op_hdr(xdr_in, &op_nr); |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 850 | if (unlikely(status)) |
| 851 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 853 | dprintk("%s: minorversion=%d nop=%d op_nr=%u\n", |
Bryan Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 854 | __func__, cps->minorversion, nop, op_nr); |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 855 | |
Bryan Schumaker | 6b140b8 | 2013-06-05 11:15:02 -0400 | [diff] [blame] | 856 | 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 Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 870 | if (status == htonl(NFS4ERR_OP_ILLEGAL)) |
| 871 | op_nr = OP_CB_ILLEGAL; |
Andy Adamson | b92b301 | 2010-01-14 17:45:05 -0500 | [diff] [blame] | 872 | if (status) |
| 873 | goto encode_hdr; |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 874 | |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 875 | if (cps->drc_status) { |
| 876 | status = cps->drc_status; |
Andy Adamson | 4911096 | 2010-01-14 17:45:08 -0500 | [diff] [blame] | 877 | goto encode_hdr; |
| 878 | } |
| 879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | maxlen = xdr_out->end - xdr_out->p; |
| 881 | if (maxlen > 0 && maxlen < PAGE_SIZE) { |
Andy Adamson | e95e60d | 2010-01-14 17:45:06 -0500 | [diff] [blame] | 882 | status = op->decode_args(rqstp, xdr_in, argp); |
| 883 | if (likely(status == 0)) |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 884 | status = op->process_op(argp, resp, cps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | } else |
| 886 | status = htonl(NFS4ERR_RESOURCE); |
| 887 | |
Andy Adamson | b92b301 | 2010-01-14 17:45:05 -0500 | [diff] [blame] | 888 | encode_hdr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | res = encode_op_hdr(xdr_out, op_nr, status); |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 890 | if (unlikely(res)) |
| 891 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | if (op->encode_res != NULL && status == 0) |
| 893 | status = op->encode_res(rqstp, xdr_out, resp); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 894 | dprintk("%s: done, status = %d\n", __func__, ntohl(status)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | return status; |
| 896 | } |
| 897 | |
| 898 | /* |
| 899 | * Decode, process and encode a COMPOUND |
| 900 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 901 | static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *resp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | { |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 903 | struct cb_compound_hdr_arg hdr_arg = { 0 }; |
| 904 | struct cb_compound_hdr_res hdr_res = { NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | struct xdr_stream xdr_in, xdr_out; |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 906 | __be32 *p, status; |
| 907 | struct cb_process_state cps = { |
| 908 | .drc_status = 0, |
| 909 | .clp = NULL, |
Stanislav Kinsbursky | 9695c70 | 2012-07-25 16:57:06 +0400 | [diff] [blame] | 910 | .net = SVC_NET(rqstp), |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 911 | }; |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 912 | unsigned int nops = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 914 | dprintk("%s: start\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | |
Trond Myklebust | 756b9b3 | 2015-12-07 12:52:23 -0800 | [diff] [blame] | 916 | xdr_init_decode(&xdr_in, &rqstp->rq_arg, rqstp->rq_arg.head[0].iov_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 918 | p = (__be32*)((char *)rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | xdr_init_encode(&xdr_out, &rqstp->rq_res, p); |
| 920 | |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 921 | status = decode_compound_hdr_arg(&xdr_in, &hdr_arg); |
Vaishali Thakkar | 4ed0d83 | 2015-06-10 20:15:29 +0530 | [diff] [blame] | 922 | if (status == htonl(NFS4ERR_RESOURCE)) |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 923 | return rpc_garbage_args; |
| 924 | |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 925 | if (hdr_arg.minorversion == 0) { |
Stanislav Kinsbursky | 9695c70 | 2012-07-25 16:57:06 +0400 | [diff] [blame] | 926 | cps.clp = nfs4_find_client_ident(SVC_NET(rqstp), hdr_arg.cb_ident); |
Andy Adamson | 778be23 | 2011-01-25 15:38:01 +0000 | [diff] [blame] | 927 | if (!cps.clp || !check_gss_callback_principal(cps.clp, rqstp)) |
Chuck Lever | a4e187d | 2016-06-29 13:55:22 -0400 | [diff] [blame] | 928 | goto out_invalidcred; |
Andy Adamson | 778be23 | 2011-01-25 15:38:01 +0000 | [diff] [blame] | 929 | } |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 930 | |
Bryan Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 931 | cps.minorversion = hdr_arg.minorversion; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | hdr_res.taglen = hdr_arg.taglen; |
| 933 | hdr_res.tag = hdr_arg.tag; |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 934 | if (encode_compound_hdr_res(&xdr_out, &hdr_res) != 0) |
| 935 | return rpc_system_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 937 | while (status == 0 && nops != hdr_arg.nops) { |
Bryan Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 938 | status = process_op(nops, rqstp, &xdr_in, |
| 939 | argp, &xdr_out, resp, &cps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | nops++; |
| 941 | } |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 942 | |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 943 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | *hdr_res.status = status; |
| 951 | *hdr_res.nops = htonl(nops); |
Trond Myklebust | 55a6739 | 2011-08-02 14:46:29 -0400 | [diff] [blame] | 952 | nfs4_cb_free_slot(&cps); |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 953 | nfs_put_client(cps.clp); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 954 | dprintk("%s: done, status = %u\n", __func__, ntohl(status)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | return rpc_success; |
Chuck Lever | a4e187d | 2016-06-29 13:55:22 -0400 | [diff] [blame] | 956 | |
| 957 | out_invalidcred: |
| 958 | pr_warn_ratelimited("NFS: NFSv4 callback contains invalid cred\n"); |
| 959 | return rpc_autherr_badcred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | /* |
| 963 | * Define NFS4 callback COMPOUND ops. |
| 964 | */ |
| 965 | static struct callback_op callback_ops[] = { |
| 966 | [0] = { |
| 967 | .res_maxsize = CB_OP_HDR_RES_MAXSZ, |
| 968 | }, |
| 969 | [OP_CB_GETATTR] = { |
| 970 | .process_op = (callback_process_op_t)nfs4_callback_getattr, |
| 971 | .decode_args = (callback_decode_arg_t)decode_getattr_args, |
| 972 | .encode_res = (callback_encode_res_t)encode_getattr_res, |
| 973 | .res_maxsize = CB_OP_GETATTR_RES_MAXSZ, |
| 974 | }, |
| 975 | [OP_CB_RECALL] = { |
| 976 | .process_op = (callback_process_op_t)nfs4_callback_recall, |
| 977 | .decode_args = (callback_decode_arg_t)decode_recall_args, |
| 978 | .res_maxsize = CB_OP_RECALL_RES_MAXSZ, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 979 | }, |
| 980 | #if defined(CONFIG_NFS_V4_1) |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 981 | [OP_CB_LAYOUTRECALL] = { |
| 982 | .process_op = (callback_process_op_t)nfs4_callback_layoutrecall, |
| 983 | .decode_args = |
| 984 | (callback_decode_arg_t)decode_layoutrecall_args, |
| 985 | .res_maxsize = CB_OP_LAYOUTRECALL_RES_MAXSZ, |
| 986 | }, |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 987 | [OP_CB_NOTIFY_DEVICEID] = { |
| 988 | .process_op = (callback_process_op_t)nfs4_callback_devicenotify, |
| 989 | .decode_args = |
| 990 | (callback_decode_arg_t)decode_devicenotify_args, |
| 991 | .res_maxsize = CB_OP_DEVICENOTIFY_RES_MAXSZ, |
| 992 | }, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 993 | [OP_CB_SEQUENCE] = { |
| 994 | .process_op = (callback_process_op_t)nfs4_callback_sequence, |
| 995 | .decode_args = (callback_decode_arg_t)decode_cb_sequence_args, |
| 996 | .encode_res = (callback_encode_res_t)encode_cb_sequence_res, |
| 997 | .res_maxsize = CB_OP_SEQUENCE_RES_MAXSZ, |
| 998 | }, |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 999 | [OP_CB_RECALL_ANY] = { |
| 1000 | .process_op = (callback_process_op_t)nfs4_callback_recallany, |
| 1001 | .decode_args = (callback_decode_arg_t)decode_recallany_args, |
| 1002 | .res_maxsize = CB_OP_RECALLANY_RES_MAXSZ, |
| 1003 | }, |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 1004 | [OP_CB_RECALL_SLOT] = { |
| 1005 | .process_op = (callback_process_op_t)nfs4_callback_recallslot, |
| 1006 | .decode_args = (callback_decode_arg_t)decode_recallslot_args, |
| 1007 | .res_maxsize = CB_OP_RECALLSLOT_RES_MAXSZ, |
| 1008 | }, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 1009 | #endif /* CONFIG_NFS_V4_1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | }; |
| 1011 | |
| 1012 | /* |
| 1013 | * Define NFS4 callback procedures |
| 1014 | */ |
| 1015 | static struct svc_procedure nfs4_callback_procedures1[] = { |
| 1016 | [CB_NULL] = { |
| 1017 | .pc_func = nfs4_callback_null, |
| 1018 | .pc_decode = (kxdrproc_t)nfs4_decode_void, |
| 1019 | .pc_encode = (kxdrproc_t)nfs4_encode_void, |
| 1020 | .pc_xdrressize = 1, |
| 1021 | }, |
| 1022 | [CB_COMPOUND] = { |
| 1023 | .pc_func = nfs4_callback_compound, |
| 1024 | .pc_encode = (kxdrproc_t)nfs4_encode_void, |
| 1025 | .pc_argsize = 256, |
| 1026 | .pc_ressize = 256, |
| 1027 | .pc_xdrressize = NFS4_CALLBACK_BUFSIZE, |
| 1028 | } |
| 1029 | }; |
| 1030 | |
| 1031 | struct svc_version nfs4_callback_version1 = { |
| 1032 | .vs_vers = 1, |
| 1033 | .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1), |
| 1034 | .vs_proc = nfs4_callback_procedures1, |
| 1035 | .vs_xdrsize = NFS4_CALLBACK_XDRSIZE, |
| 1036 | .vs_dispatch = NULL, |
Steve Dickson | 49697ee | 2009-10-13 16:07:33 -0400 | [diff] [blame] | 1037 | .vs_hidden = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | }; |
| 1039 | |
Alexandros Batsakis | 07bccc2 | 2009-12-05 13:19:01 -0500 | [diff] [blame] | 1040 | struct svc_version nfs4_callback_version4 = { |
| 1041 | .vs_vers = 4, |
| 1042 | .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1), |
| 1043 | .vs_proc = nfs4_callback_procedures1, |
| 1044 | .vs_xdrsize = NFS4_CALLBACK_XDRSIZE, |
| 1045 | .vs_dispatch = NULL, |
Jeff Layton | 6070295 | 2011-11-04 07:04:10 -0400 | [diff] [blame] | 1046 | .vs_hidden = 1, |
Alexandros Batsakis | 07bccc2 | 2009-12-05 13:19:01 -0500 | [diff] [blame] | 1047 | }; |