Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/nfs/callback_xdr.c |
| 4 | * |
| 5 | * Copyright (C) 2004 Trond Myklebust |
| 6 | * |
| 7 | * NFSv4 callback encode/decode procedures |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/kernel.h> |
| 10 | #include <linux/sunrpc/svc.h> |
| 11 | #include <linux/nfs4.h> |
| 12 | #include <linux/nfs_fs.h> |
Trond Myklebust | 9a3ba43 | 2012-03-12 18:01:48 -0400 | [diff] [blame] | 13 | #include <linux/ratelimit.h> |
| 14 | #include <linux/printk.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 16 | #include <linux/sunrpc/bc_xprt.h> |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 17 | #include "nfs4_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "callback.h" |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 19 | #include "internal.h" |
Trond Myklebust | 76e697b | 2012-11-26 14:20:49 -0500 | [diff] [blame] | 20 | #include "nfs4session.h" |
Chuck Lever | 2bb50aa | 2019-12-23 10:28:38 -0500 | [diff] [blame] | 21 | #include "nfs4trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Kinglong Mee | 45724e8 | 2015-09-24 20:57:58 +0800 | [diff] [blame] | 23 | #define CB_OP_TAGLEN_MAXSZ (512) |
| 24 | #define CB_OP_HDR_RES_MAXSZ (2 * 4) // opcode, status |
| 25 | #define CB_OP_GETATTR_BITMAP_MAXSZ (4 * 4) // bitmap length, 3 bitmaps |
| 26 | #define CB_OP_GETATTR_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \ |
| 27 | CB_OP_GETATTR_BITMAP_MAXSZ + \ |
| 28 | /* change, size, ctime, mtime */\ |
| 29 | (2 + 2 + 3 + 3) * 4) |
| 30 | #define CB_OP_RECALL_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 32 | #if defined(CONFIG_NFS_V4_1) |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 33 | #define CB_OP_LAYOUTRECALL_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 34 | #define CB_OP_DEVICENOTIFY_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 35 | #define CB_OP_SEQUENCE_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ + \ |
Kinglong Mee | 45724e8 | 2015-09-24 20:57:58 +0800 | [diff] [blame] | 36 | NFS4_MAX_SESSIONID_LEN + \ |
| 37 | (1 + 3) * 4) // seqid, 3 slotids |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 38 | #define CB_OP_RECALLANY_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 39 | #define CB_OP_RECALLSLOT_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 40 | #define CB_OP_NOTIFY_LOCK_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 41 | #endif /* CONFIG_NFS_V4_1 */ |
Olga Kornievskaia | 5178a12 | 2018-07-09 15:13:28 -0400 | [diff] [blame] | 42 | #ifdef CONFIG_NFS_V4_2 |
| 43 | #define CB_OP_OFFLOAD_RES_MAXSZ (CB_OP_HDR_RES_MAXSZ) |
| 44 | #endif /* CONFIG_NFS_V4_2 */ |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define NFSDBG_FACILITY NFSDBG_CALLBACK |
| 47 | |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 48 | /* Internal error code */ |
| 49 | #define NFS4ERR_RESOURCE_HDR 11050 |
| 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | struct callback_op { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 52 | __be32 (*process_op)(void *, void *, struct cb_process_state *); |
| 53 | __be32 (*decode_args)(struct svc_rqst *, struct xdr_stream *, void *); |
| 54 | __be32 (*encode_res)(struct svc_rqst *, struct xdr_stream *, |
| 55 | const void *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | long res_maxsize; |
| 57 | }; |
| 58 | |
| 59 | static struct callback_op callback_ops[]; |
| 60 | |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 61 | static __be32 nfs4_callback_null(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
| 63 | return htonl(NFS4_OK); |
| 64 | } |
| 65 | |
Chuck Lever | c35a810 | 2021-07-15 15:52:31 -0400 | [diff] [blame] | 66 | /* |
| 67 | * svc_process_common() looks for an XDR encoder to know when |
| 68 | * not to drop a Reply. |
| 69 | */ |
Chuck Lever | 130e205 | 2021-10-13 10:41:13 -0400 | [diff] [blame] | 70 | static bool nfs4_encode_void(struct svc_rqst *rqstp, struct xdr_stream *xdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
Chuck Lever | 130e205 | 2021-10-13 10:41:13 -0400 | [diff] [blame] | 72 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | } |
| 74 | |
Trond Myklebust | c065eee | 2017-02-19 16:08:28 -0500 | [diff] [blame] | 75 | static __be32 decode_string(struct xdr_stream *xdr, unsigned int *len, |
| 76 | const char **str, size_t maxlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
Trond Myklebust | c065eee | 2017-02-19 16:08:28 -0500 | [diff] [blame] | 78 | ssize_t err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Trond Myklebust | c065eee | 2017-02-19 16:08:28 -0500 | [diff] [blame] | 80 | err = xdr_stream_decode_opaque_inline(xdr, (void **)str, maxlen); |
| 81 | if (err < 0) |
| 82 | return cpu_to_be32(NFS4ERR_RESOURCE); |
| 83 | *len = err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | return 0; |
| 85 | } |
| 86 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 87 | static __be32 decode_fh(struct xdr_stream *xdr, struct nfs_fh *fh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 89 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 91 | p = xdr_inline_decode(xdr, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | if (unlikely(p == NULL)) |
| 93 | return htonl(NFS4ERR_RESOURCE); |
| 94 | fh->size = ntohl(*p); |
| 95 | if (fh->size > NFS4_FHSIZE) |
| 96 | return htonl(NFS4ERR_BADHANDLE); |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 97 | p = xdr_inline_decode(xdr, fh->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | if (unlikely(p == NULL)) |
| 99 | return htonl(NFS4ERR_RESOURCE); |
| 100 | memcpy(&fh->data[0], p, fh->size); |
| 101 | memset(&fh->data[fh->size], 0, sizeof(fh->data) - fh->size); |
| 102 | return 0; |
| 103 | } |
| 104 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 105 | static __be32 decode_bitmap(struct xdr_stream *xdr, uint32_t *bitmap) |
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 | unsigned int attrlen; |
| 109 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 110 | p = xdr_inline_decode(xdr, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | if (unlikely(p == NULL)) |
| 112 | return htonl(NFS4ERR_RESOURCE); |
| 113 | attrlen = ntohl(*p); |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 114 | p = xdr_inline_decode(xdr, attrlen << 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | if (unlikely(p == NULL)) |
| 116 | return htonl(NFS4ERR_RESOURCE); |
| 117 | if (likely(attrlen > 0)) |
| 118 | bitmap[0] = ntohl(*p++); |
| 119 | if (attrlen > 1) |
| 120 | bitmap[1] = ntohl(*p); |
| 121 | return 0; |
| 122 | } |
| 123 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 124 | static __be32 decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 126 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 128 | p = xdr_inline_decode(xdr, NFS4_STATEID_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | if (unlikely(p == NULL)) |
| 130 | return htonl(NFS4ERR_RESOURCE); |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 131 | memcpy(stateid->data, p, NFS4_STATEID_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 135 | static __be32 decode_delegation_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid) |
| 136 | { |
| 137 | stateid->type = NFS4_DELEGATION_STATEID_TYPE; |
| 138 | return decode_stateid(xdr, stateid); |
| 139 | } |
| 140 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 141 | 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] | 142 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 143 | __be32 *p; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 144 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Trond Myklebust | c065eee | 2017-02-19 16:08:28 -0500 | [diff] [blame] | 146 | status = decode_string(xdr, &hdr->taglen, &hdr->tag, CB_OP_TAGLEN_MAXSZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | if (unlikely(status != 0)) |
| 148 | return status; |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 149 | p = xdr_inline_decode(xdr, 12); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | if (unlikely(p == NULL)) |
| 151 | return htonl(NFS4ERR_RESOURCE); |
Benny Halevy | b8f2ef8 | 2009-04-01 09:23:19 -0400 | [diff] [blame] | 152 | hdr->minorversion = ntohl(*p++); |
Bryan Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 153 | /* Check for minor version support */ |
| 154 | if (hdr->minorversion <= NFS4_MAX_MINOR_VERSION) { |
Steve Dickson | 42c2c42 | 2013-05-22 12:50:38 -0400 | [diff] [blame] | 155 | hdr->cb_ident = ntohl(*p++); /* ignored by v4.1 and v4.2 */ |
Benny Halevy | 48a9e2d | 2009-04-01 09:23:20 -0400 | [diff] [blame] | 156 | } else { |
Trond Myklebust | 9a3ba43 | 2012-03-12 18:01:48 -0400 | [diff] [blame] | 157 | pr_warn_ratelimited("NFS: %s: NFSv4 server callback with " |
Benny Halevy | b8f2ef8 | 2009-04-01 09:23:19 -0400 | [diff] [blame] | 158 | "illegal minor version %u!\n", |
| 159 | __func__, hdr->minorversion); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | return htonl(NFS4ERR_MINOR_VERS_MISMATCH); |
| 161 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | hdr->nops = ntohl(*p); |
| 163 | return 0; |
| 164 | } |
| 165 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 166 | static __be32 decode_op_hdr(struct xdr_stream *xdr, unsigned int *op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 168 | __be32 *p; |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 169 | p = xdr_inline_decode(xdr, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | if (unlikely(p == NULL)) |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 171 | return htonl(NFS4ERR_RESOURCE_HDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | *op = ntohl(*p); |
| 173 | return 0; |
| 174 | } |
| 175 | |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 176 | static __be32 decode_getattr_args(struct svc_rqst *rqstp, |
| 177 | struct xdr_stream *xdr, void *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 179 | struct cb_getattrargs *args = argp; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 180 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | status = decode_fh(xdr, &args->fh); |
| 183 | if (unlikely(status != 0)) |
Anna Schumaker | 56938bb | 2017-04-07 14:14:58 -0400 | [diff] [blame] | 184 | return status; |
| 185 | return decode_bitmap(xdr, args->bitmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 188 | static __be32 decode_recall_args(struct svc_rqst *rqstp, |
| 189 | struct xdr_stream *xdr, void *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 191 | struct cb_recallargs *args = argp; |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 192 | __be32 *p; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 193 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 195 | status = decode_delegation_stateid(xdr, &args->stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | if (unlikely(status != 0)) |
Anna Schumaker | 135a4ea | 2017-04-07 14:14:59 -0400 | [diff] [blame] | 197 | return status; |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 198 | p = xdr_inline_decode(xdr, 4); |
Anna Schumaker | 135a4ea | 2017-04-07 14:14:59 -0400 | [diff] [blame] | 199 | if (unlikely(p == NULL)) |
| 200 | return htonl(NFS4ERR_RESOURCE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | args->truncate = ntohl(*p); |
Anna Schumaker | 135a4ea | 2017-04-07 14:14:59 -0400 | [diff] [blame] | 202 | return decode_fh(xdr, &args->fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 205 | #if defined(CONFIG_NFS_V4_1) |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 206 | static __be32 decode_layout_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid) |
| 207 | { |
| 208 | stateid->type = NFS4_LAYOUT_STATEID_TYPE; |
| 209 | return decode_stateid(xdr, stateid); |
| 210 | } |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 211 | |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 212 | static __be32 decode_layoutrecall_args(struct svc_rqst *rqstp, |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 213 | struct xdr_stream *xdr, void *argp) |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 214 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 215 | struct cb_layoutrecallargs *args = argp; |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 216 | __be32 *p; |
| 217 | __be32 status = 0; |
| 218 | uint32_t iomode; |
| 219 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 220 | p = xdr_inline_decode(xdr, 4 * sizeof(uint32_t)); |
Anna Schumaker | c79d56d | 2017-04-07 14:15:00 -0400 | [diff] [blame] | 221 | if (unlikely(p == NULL)) |
| 222 | return htonl(NFS4ERR_BADXDR); |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 223 | |
| 224 | args->cbl_layout_type = ntohl(*p++); |
| 225 | /* 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] | 226 | * as it is unusable and ignored with the other types. |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 227 | */ |
| 228 | iomode = ntohl(*p++); |
| 229 | args->cbl_layoutchanged = ntohl(*p++); |
| 230 | args->cbl_recall_type = ntohl(*p++); |
| 231 | |
| 232 | if (args->cbl_recall_type == RETURN_FILE) { |
| 233 | args->cbl_range.iomode = iomode; |
| 234 | status = decode_fh(xdr, &args->cbl_fh); |
| 235 | if (unlikely(status != 0)) |
Anna Schumaker | c79d56d | 2017-04-07 14:15:00 -0400 | [diff] [blame] | 236 | return status; |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 237 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 238 | p = xdr_inline_decode(xdr, 2 * sizeof(uint64_t)); |
Anna Schumaker | c79d56d | 2017-04-07 14:15:00 -0400 | [diff] [blame] | 239 | if (unlikely(p == NULL)) |
| 240 | return htonl(NFS4ERR_BADXDR); |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 241 | p = xdr_decode_hyper(p, &args->cbl_range.offset); |
| 242 | p = xdr_decode_hyper(p, &args->cbl_range.length); |
Anna Schumaker | c79d56d | 2017-04-07 14:15:00 -0400 | [diff] [blame] | 243 | return decode_layout_stateid(xdr, &args->cbl_stateid); |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 244 | } else if (args->cbl_recall_type == RETURN_FSID) { |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 245 | p = xdr_inline_decode(xdr, 2 * sizeof(uint64_t)); |
Anna Schumaker | c79d56d | 2017-04-07 14:15:00 -0400 | [diff] [blame] | 246 | if (unlikely(p == NULL)) |
| 247 | return htonl(NFS4ERR_BADXDR); |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 248 | p = xdr_decode_hyper(p, &args->cbl_fsid.major); |
| 249 | p = xdr_decode_hyper(p, &args->cbl_fsid.minor); |
Anna Schumaker | c79d56d | 2017-04-07 14:15:00 -0400 | [diff] [blame] | 250 | } else if (args->cbl_recall_type != RETURN_ALL) |
| 251 | return htonl(NFS4ERR_BADXDR); |
| 252 | return 0; |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 253 | } |
| 254 | |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 255 | static |
| 256 | __be32 decode_devicenotify_args(struct svc_rqst *rqstp, |
| 257 | struct xdr_stream *xdr, |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 258 | void *argp) |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 259 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 260 | struct cb_devicenotifyargs *args = argp; |
Trond Myklebust | b05bf5c | 2022-01-03 14:50:16 -0500 | [diff] [blame] | 261 | uint32_t tmp, n, i; |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 262 | __be32 *p; |
| 263 | __be32 status = 0; |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 264 | |
| 265 | /* Num of device notifications */ |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 266 | p = xdr_inline_decode(xdr, sizeof(uint32_t)); |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 267 | if (unlikely(p == NULL)) { |
| 268 | status = htonl(NFS4ERR_BADXDR); |
| 269 | goto out; |
| 270 | } |
| 271 | n = ntohl(*p++); |
Trond Myklebust | b05bf5c | 2022-01-03 14:50:16 -0500 | [diff] [blame] | 272 | if (n == 0) |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 273 | goto out; |
Dan Carpenter | 363e0df0 | 2012-01-12 10:16:14 +0300 | [diff] [blame] | 274 | if (n > ULONG_MAX / sizeof(*args->devs)) { |
| 275 | status = htonl(NFS4ERR_BADXDR); |
| 276 | goto out; |
| 277 | } |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 278 | |
Trond Myklebust | a4f743a | 2015-02-11 17:49:13 -0500 | [diff] [blame] | 279 | args->devs = kmalloc_array(n, sizeof(*args->devs), GFP_KERNEL); |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 280 | if (!args->devs) { |
| 281 | status = htonl(NFS4ERR_DELAY); |
| 282 | goto out; |
| 283 | } |
| 284 | |
| 285 | /* Decode each dev notification */ |
| 286 | for (i = 0; i < n; i++) { |
| 287 | struct cb_devicenotifyitem *dev = &args->devs[i]; |
| 288 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 289 | p = xdr_inline_decode(xdr, (4 * sizeof(uint32_t)) + |
| 290 | NFS4_DEVICEID4_SIZE); |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 291 | if (unlikely(p == NULL)) { |
| 292 | status = htonl(NFS4ERR_BADXDR); |
| 293 | goto err; |
| 294 | } |
| 295 | |
| 296 | tmp = ntohl(*p++); /* bitmap size */ |
| 297 | if (tmp != 1) { |
| 298 | status = htonl(NFS4ERR_INVAL); |
| 299 | goto err; |
| 300 | } |
| 301 | dev->cbd_notify_type = ntohl(*p++); |
| 302 | if (dev->cbd_notify_type != NOTIFY_DEVICEID4_CHANGE && |
| 303 | dev->cbd_notify_type != NOTIFY_DEVICEID4_DELETE) { |
| 304 | status = htonl(NFS4ERR_INVAL); |
| 305 | goto err; |
| 306 | } |
| 307 | |
| 308 | tmp = ntohl(*p++); /* opaque size */ |
| 309 | if (((dev->cbd_notify_type == NOTIFY_DEVICEID4_CHANGE) && |
| 310 | (tmp != NFS4_DEVICEID4_SIZE + 8)) || |
| 311 | ((dev->cbd_notify_type == NOTIFY_DEVICEID4_DELETE) && |
| 312 | (tmp != NFS4_DEVICEID4_SIZE + 4))) { |
| 313 | status = htonl(NFS4ERR_INVAL); |
| 314 | goto err; |
| 315 | } |
| 316 | dev->cbd_layout_type = ntohl(*p++); |
| 317 | memcpy(dev->cbd_dev_id.data, p, NFS4_DEVICEID4_SIZE); |
| 318 | p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE); |
| 319 | |
| 320 | if (dev->cbd_layout_type == NOTIFY_DEVICEID4_CHANGE) { |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 321 | p = xdr_inline_decode(xdr, sizeof(uint32_t)); |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 322 | if (unlikely(p == NULL)) { |
| 323 | status = htonl(NFS4ERR_BADXDR); |
| 324 | goto err; |
| 325 | } |
| 326 | dev->cbd_immediate = ntohl(*p++); |
| 327 | } else { |
| 328 | dev->cbd_immediate = 0; |
| 329 | } |
| 330 | |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 331 | dprintk("%s: type %d layout 0x%x immediate %d\n", |
| 332 | __func__, dev->cbd_notify_type, dev->cbd_layout_type, |
| 333 | dev->cbd_immediate); |
| 334 | } |
Trond Myklebust | b05bf5c | 2022-01-03 14:50:16 -0500 | [diff] [blame] | 335 | args->ndevs = n; |
| 336 | dprintk("%s: ndevs %d\n", __func__, args->ndevs); |
| 337 | return 0; |
| 338 | err: |
| 339 | kfree(args->devs); |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 340 | out: |
Trond Myklebust | b05bf5c | 2022-01-03 14:50:16 -0500 | [diff] [blame] | 341 | args->devs = NULL; |
| 342 | args->ndevs = 0; |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 343 | dprintk("%s: status %d ndevs %d\n", |
| 344 | __func__, ntohl(status), args->ndevs); |
| 345 | return status; |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 346 | } |
| 347 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 348 | static __be32 decode_sessionid(struct xdr_stream *xdr, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 349 | struct nfs4_sessionid *sid) |
| 350 | { |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 351 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 352 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 353 | p = xdr_inline_decode(xdr, NFS4_MAX_SESSIONID_LEN); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 354 | if (unlikely(p == NULL)) |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 355 | return htonl(NFS4ERR_RESOURCE); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 356 | |
Kinglong Mee | 590184a | 2015-09-24 20:57:37 +0800 | [diff] [blame] | 357 | memcpy(sid->data, p, NFS4_MAX_SESSIONID_LEN); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 358 | return 0; |
| 359 | } |
| 360 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 361 | static __be32 decode_rc_list(struct xdr_stream *xdr, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 362 | struct referring_call_list *rc_list) |
| 363 | { |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 364 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 365 | int i; |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 366 | __be32 status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 367 | |
| 368 | status = decode_sessionid(xdr, &rc_list->rcl_sessionid); |
| 369 | if (status) |
| 370 | goto out; |
| 371 | |
| 372 | status = htonl(NFS4ERR_RESOURCE); |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 373 | p = xdr_inline_decode(xdr, sizeof(uint32_t)); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 374 | if (unlikely(p == NULL)) |
| 375 | goto out; |
| 376 | |
| 377 | rc_list->rcl_nrefcalls = ntohl(*p++); |
| 378 | if (rc_list->rcl_nrefcalls) { |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 379 | p = xdr_inline_decode(xdr, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 380 | rc_list->rcl_nrefcalls * 2 * sizeof(uint32_t)); |
| 381 | if (unlikely(p == NULL)) |
| 382 | goto out; |
Trond Myklebust | a4f743a | 2015-02-11 17:49:13 -0500 | [diff] [blame] | 383 | rc_list->rcl_refcalls = kmalloc_array(rc_list->rcl_nrefcalls, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 384 | sizeof(*rc_list->rcl_refcalls), |
| 385 | GFP_KERNEL); |
| 386 | if (unlikely(rc_list->rcl_refcalls == NULL)) |
| 387 | goto out; |
| 388 | for (i = 0; i < rc_list->rcl_nrefcalls; i++) { |
| 389 | rc_list->rcl_refcalls[i].rc_sequenceid = ntohl(*p++); |
| 390 | rc_list->rcl_refcalls[i].rc_slotid = ntohl(*p++); |
| 391 | } |
| 392 | } |
| 393 | status = 0; |
| 394 | |
| 395 | out: |
| 396 | return status; |
| 397 | } |
| 398 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 399 | static __be32 decode_cb_sequence_args(struct svc_rqst *rqstp, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 400 | struct xdr_stream *xdr, |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 401 | void *argp) |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 402 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 403 | struct cb_sequenceargs *args = argp; |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 404 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 405 | int i; |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 406 | __be32 status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 407 | |
| 408 | status = decode_sessionid(xdr, &args->csa_sessionid); |
| 409 | if (status) |
Anna Schumaker | 1796549 | 2017-04-07 14:15:01 -0400 | [diff] [blame] | 410 | return status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 411 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 412 | p = xdr_inline_decode(xdr, 5 * sizeof(uint32_t)); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 413 | if (unlikely(p == NULL)) |
Anna Schumaker | 1796549 | 2017-04-07 14:15:01 -0400 | [diff] [blame] | 414 | return htonl(NFS4ERR_RESOURCE); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 415 | |
Ricardo Labiaga | 65fc64e | 2009-04-01 09:23:30 -0400 | [diff] [blame] | 416 | args->csa_addr = svc_addr(rqstp); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 417 | args->csa_sequenceid = ntohl(*p++); |
| 418 | args->csa_slotid = ntohl(*p++); |
| 419 | args->csa_highestslotid = ntohl(*p++); |
| 420 | args->csa_cachethis = ntohl(*p++); |
| 421 | args->csa_nrclists = ntohl(*p++); |
| 422 | args->csa_rclists = NULL; |
| 423 | if (args->csa_nrclists) { |
Dan Carpenter | 0439f31 | 2012-06-12 10:37:08 +0300 | [diff] [blame] | 424 | args->csa_rclists = kmalloc_array(args->csa_nrclists, |
| 425 | sizeof(*args->csa_rclists), |
| 426 | GFP_KERNEL); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 427 | if (unlikely(args->csa_rclists == NULL)) |
Anna Schumaker | 1796549 | 2017-04-07 14:15:01 -0400 | [diff] [blame] | 428 | return htonl(NFS4ERR_RESOURCE); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 429 | |
| 430 | for (i = 0; i < args->csa_nrclists; i++) { |
| 431 | status = decode_rc_list(xdr, &args->csa_rclists[i]); |
Trond Myklebust | d8ba1f9 | 2015-02-11 17:27:55 -0500 | [diff] [blame] | 432 | if (status) { |
| 433 | args->csa_nrclists = i; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 434 | goto out_free; |
Trond Myklebust | d8ba1f9 | 2015-02-11 17:27:55 -0500 | [diff] [blame] | 435 | } |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 436 | } |
| 437 | } |
Anna Schumaker | 1796549 | 2017-04-07 14:15:01 -0400 | [diff] [blame] | 438 | return 0; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 439 | |
| 440 | out_free: |
| 441 | for (i = 0; i < args->csa_nrclists; i++) |
| 442 | kfree(args->csa_rclists[i].rcl_refcalls); |
| 443 | kfree(args->csa_rclists); |
Anna Schumaker | 1796549 | 2017-04-07 14:15:01 -0400 | [diff] [blame] | 444 | return status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 445 | } |
| 446 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 447 | static __be32 decode_recallany_args(struct svc_rqst *rqstp, |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 448 | struct xdr_stream *xdr, |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 449 | void *argp) |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 450 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 451 | struct cb_recallanyargs *args = argp; |
Peng Tao | d743c3c | 2011-10-23 20:22:38 -0700 | [diff] [blame] | 452 | uint32_t bitmap[2]; |
| 453 | __be32 *p, status; |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 454 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 455 | p = xdr_inline_decode(xdr, 4); |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 456 | if (unlikely(p == NULL)) |
| 457 | return htonl(NFS4ERR_BADXDR); |
| 458 | args->craa_objs_to_keep = ntohl(*p++); |
Peng Tao | d743c3c | 2011-10-23 20:22:38 -0700 | [diff] [blame] | 459 | status = decode_bitmap(xdr, bitmap); |
| 460 | if (unlikely(status)) |
| 461 | return status; |
| 462 | args->craa_type_mask = bitmap[0]; |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 463 | |
| 464 | return 0; |
| 465 | } |
| 466 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 467 | static __be32 decode_recallslot_args(struct svc_rqst *rqstp, |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 468 | struct xdr_stream *xdr, |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 469 | void *argp) |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 470 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 471 | struct cb_recallslotargs *args = argp; |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 472 | __be32 *p; |
| 473 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 474 | p = xdr_inline_decode(xdr, 4); |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 475 | if (unlikely(p == NULL)) |
| 476 | return htonl(NFS4ERR_BADXDR); |
Trond Myklebust | d5fb4ce | 2012-11-20 20:24:02 -0500 | [diff] [blame] | 477 | args->crsa_target_highest_slotid = ntohl(*p++); |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 478 | return 0; |
| 479 | } |
| 480 | |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 481 | static __be32 decode_lockowner(struct xdr_stream *xdr, struct cb_notify_lock_args *args) |
| 482 | { |
| 483 | __be32 *p; |
| 484 | unsigned int len; |
| 485 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 486 | p = xdr_inline_decode(xdr, 12); |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 487 | if (unlikely(p == NULL)) |
| 488 | return htonl(NFS4ERR_BADXDR); |
| 489 | |
| 490 | p = xdr_decode_hyper(p, &args->cbnl_owner.clientid); |
| 491 | len = be32_to_cpu(*p); |
| 492 | |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 493 | p = xdr_inline_decode(xdr, len); |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 494 | if (unlikely(p == NULL)) |
| 495 | return htonl(NFS4ERR_BADXDR); |
| 496 | |
| 497 | /* Only try to decode if the length is right */ |
| 498 | if (len == 20) { |
| 499 | p += 2; /* skip "lock id:" */ |
| 500 | args->cbnl_owner.s_dev = be32_to_cpu(*p++); |
| 501 | xdr_decode_hyper(p, &args->cbnl_owner.id); |
| 502 | args->cbnl_valid = true; |
| 503 | } else { |
| 504 | args->cbnl_owner.s_dev = 0; |
| 505 | args->cbnl_owner.id = 0; |
| 506 | args->cbnl_valid = false; |
| 507 | } |
| 508 | return 0; |
| 509 | } |
| 510 | |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 511 | static __be32 decode_notify_lock_args(struct svc_rqst *rqstp, |
| 512 | struct xdr_stream *xdr, void *argp) |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 513 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 514 | struct cb_notify_lock_args *args = argp; |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 515 | __be32 status; |
| 516 | |
| 517 | status = decode_fh(xdr, &args->cbnl_fh); |
| 518 | if (unlikely(status != 0)) |
Anna Schumaker | 535ece2 | 2017-04-07 14:15:02 -0400 | [diff] [blame] | 519 | return status; |
| 520 | return decode_lockowner(xdr, args); |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 521 | } |
| 522 | |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 523 | #endif /* CONFIG_NFS_V4_1 */ |
Olga Kornievskaia | 5178a12 | 2018-07-09 15:13:28 -0400 | [diff] [blame] | 524 | #ifdef CONFIG_NFS_V4_2 |
| 525 | static __be32 decode_write_response(struct xdr_stream *xdr, |
| 526 | struct cb_offloadargs *args) |
| 527 | { |
| 528 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 529 | |
Olga Kornievskaia | 5178a12 | 2018-07-09 15:13:28 -0400 | [diff] [blame] | 530 | /* skip the always zero field */ |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 531 | p = xdr_inline_decode(xdr, 4); |
Olga Kornievskaia | 5178a12 | 2018-07-09 15:13:28 -0400 | [diff] [blame] | 532 | if (unlikely(!p)) |
| 533 | goto out; |
| 534 | p++; |
| 535 | |
| 536 | /* decode count, stable_how, verifier */ |
| 537 | p = xdr_inline_decode(xdr, 8 + 4); |
| 538 | if (unlikely(!p)) |
| 539 | goto out; |
| 540 | p = xdr_decode_hyper(p, &args->wr_count); |
| 541 | args->wr_writeverf.committed = be32_to_cpup(p); |
| 542 | p = xdr_inline_decode(xdr, NFS4_VERIFIER_SIZE); |
| 543 | if (likely(p)) { |
| 544 | memcpy(&args->wr_writeverf.verifier.data[0], p, |
| 545 | NFS4_VERIFIER_SIZE); |
| 546 | return 0; |
| 547 | } |
| 548 | out: |
| 549 | return htonl(NFS4ERR_RESOURCE); |
| 550 | } |
| 551 | |
| 552 | static __be32 decode_offload_args(struct svc_rqst *rqstp, |
| 553 | struct xdr_stream *xdr, |
| 554 | void *data) |
| 555 | { |
| 556 | struct cb_offloadargs *args = data; |
| 557 | __be32 *p; |
| 558 | __be32 status; |
| 559 | |
| 560 | /* decode fh */ |
| 561 | status = decode_fh(xdr, &args->coa_fh); |
| 562 | if (unlikely(status != 0)) |
| 563 | return status; |
| 564 | |
| 565 | /* decode stateid */ |
| 566 | status = decode_stateid(xdr, &args->coa_stateid); |
| 567 | if (unlikely(status != 0)) |
| 568 | return status; |
| 569 | |
| 570 | /* decode status */ |
Chuck Lever | eb72f48 | 2019-02-11 11:24:21 -0500 | [diff] [blame] | 571 | p = xdr_inline_decode(xdr, 4); |
Olga Kornievskaia | 5178a12 | 2018-07-09 15:13:28 -0400 | [diff] [blame] | 572 | if (unlikely(!p)) |
| 573 | goto out; |
| 574 | args->error = ntohl(*p++); |
| 575 | if (!args->error) { |
| 576 | status = decode_write_response(xdr, args); |
| 577 | if (unlikely(status != 0)) |
| 578 | return status; |
| 579 | } else { |
| 580 | p = xdr_inline_decode(xdr, 8); |
| 581 | if (unlikely(!p)) |
| 582 | goto out; |
| 583 | p = xdr_decode_hyper(p, &args->wr_count); |
| 584 | } |
| 585 | return 0; |
| 586 | out: |
| 587 | return htonl(NFS4ERR_RESOURCE); |
| 588 | } |
| 589 | #endif /* CONFIG_NFS_V4_2 */ |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 590 | 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] | 591 | { |
Trond Myklebust | ab6e9aa | 2017-02-19 16:08:26 -0500 | [diff] [blame] | 592 | if (unlikely(xdr_stream_encode_opaque(xdr, str, len) < 0)) |
| 593 | return cpu_to_be32(NFS4ERR_RESOURCE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | return 0; |
| 595 | } |
| 596 | |
Trond Myklebust | 8b06494 | 2018-03-20 17:03:12 -0400 | [diff] [blame] | 597 | static __be32 encode_attr_bitmap(struct xdr_stream *xdr, const uint32_t *bitmap, size_t sz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | { |
Trond Myklebust | 8b06494 | 2018-03-20 17:03:12 -0400 | [diff] [blame] | 599 | if (xdr_stream_encode_uint32_array(xdr, bitmap, sz) < 0) |
| 600 | return cpu_to_be32(NFS4ERR_RESOURCE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | return 0; |
| 602 | } |
| 603 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 604 | 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] | 605 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 606 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | |
| 608 | if (!(bitmap[0] & FATTR4_WORD0_CHANGE)) |
| 609 | return 0; |
| 610 | p = xdr_reserve_space(xdr, 8); |
Harvey Harrison | 90dc7d2 | 2008-02-20 13:03:05 -0800 | [diff] [blame] | 611 | if (unlikely(!p)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | return htonl(NFS4ERR_RESOURCE); |
| 613 | p = xdr_encode_hyper(p, change); |
| 614 | return 0; |
| 615 | } |
| 616 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 617 | 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] | 618 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 619 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
| 621 | if (!(bitmap[0] & FATTR4_WORD0_SIZE)) |
| 622 | return 0; |
| 623 | p = xdr_reserve_space(xdr, 8); |
Harvey Harrison | 90dc7d2 | 2008-02-20 13:03:05 -0800 | [diff] [blame] | 624 | if (unlikely(!p)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | return htonl(NFS4ERR_RESOURCE); |
| 626 | p = xdr_encode_hyper(p, size); |
| 627 | return 0; |
| 628 | } |
| 629 | |
Trond Myklebust | 7d34ff5 | 2019-10-04 16:46:53 -0400 | [diff] [blame] | 630 | static __be32 encode_attr_time(struct xdr_stream *xdr, const struct timespec64 *time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 632 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | |
| 634 | p = xdr_reserve_space(xdr, 12); |
Harvey Harrison | 90dc7d2 | 2008-02-20 13:03:05 -0800 | [diff] [blame] | 635 | if (unlikely(!p)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | return htonl(NFS4ERR_RESOURCE); |
| 637 | p = xdr_encode_hyper(p, time->tv_sec); |
| 638 | *p = htonl(time->tv_nsec); |
| 639 | return 0; |
| 640 | } |
| 641 | |
Trond Myklebust | 7d34ff5 | 2019-10-04 16:46:53 -0400 | [diff] [blame] | 642 | static __be32 encode_attr_ctime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec64 *time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | { |
| 644 | if (!(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) |
| 645 | return 0; |
| 646 | return encode_attr_time(xdr,time); |
| 647 | } |
| 648 | |
Trond Myklebust | 7d34ff5 | 2019-10-04 16:46:53 -0400 | [diff] [blame] | 649 | static __be32 encode_attr_mtime(struct xdr_stream *xdr, const uint32_t *bitmap, const struct timespec64 *time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { |
| 651 | if (!(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) |
| 652 | return 0; |
| 653 | return encode_attr_time(xdr,time); |
| 654 | } |
| 655 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 656 | 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] | 657 | { |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 658 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
| 660 | hdr->status = xdr_reserve_space(xdr, 4); |
| 661 | if (unlikely(hdr->status == NULL)) |
| 662 | return htonl(NFS4ERR_RESOURCE); |
| 663 | status = encode_string(xdr, hdr->taglen, hdr->tag); |
| 664 | if (unlikely(status != 0)) |
| 665 | return status; |
| 666 | hdr->nops = xdr_reserve_space(xdr, 4); |
| 667 | if (unlikely(hdr->nops == NULL)) |
| 668 | return htonl(NFS4ERR_RESOURCE); |
| 669 | return 0; |
| 670 | } |
| 671 | |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 672 | 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] | 673 | { |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 674 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | |
| 676 | p = xdr_reserve_space(xdr, 8); |
| 677 | if (unlikely(p == NULL)) |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 678 | return htonl(NFS4ERR_RESOURCE_HDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | *p++ = htonl(op); |
| 680 | *p = res; |
| 681 | return 0; |
| 682 | } |
| 683 | |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 684 | static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr, |
| 685 | const void *resp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 687 | const struct cb_getattrres *res = resp; |
Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 688 | __be32 *savep = NULL; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 689 | __be32 status = res->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | |
| 691 | if (unlikely(status != 0)) |
| 692 | goto out; |
Trond Myklebust | 8b06494 | 2018-03-20 17:03:12 -0400 | [diff] [blame] | 693 | status = encode_attr_bitmap(xdr, res->bitmap, ARRAY_SIZE(res->bitmap)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | if (unlikely(status != 0)) |
| 695 | goto out; |
Trond Myklebust | 8b06494 | 2018-03-20 17:03:12 -0400 | [diff] [blame] | 696 | status = cpu_to_be32(NFS4ERR_RESOURCE); |
| 697 | savep = xdr_reserve_space(xdr, sizeof(*savep)); |
| 698 | if (unlikely(!savep)) |
| 699 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | status = encode_attr_change(xdr, res->bitmap, res->change_attr); |
| 701 | if (unlikely(status != 0)) |
| 702 | goto out; |
| 703 | status = encode_attr_size(xdr, res->bitmap, res->size); |
| 704 | if (unlikely(status != 0)) |
| 705 | goto out; |
| 706 | status = encode_attr_ctime(xdr, res->bitmap, &res->ctime); |
| 707 | if (unlikely(status != 0)) |
| 708 | goto out; |
| 709 | status = encode_attr_mtime(xdr, res->bitmap, &res->mtime); |
| 710 | *savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1))); |
| 711 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | return status; |
| 713 | } |
| 714 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 715 | #if defined(CONFIG_NFS_V4_1) |
| 716 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 717 | static __be32 encode_sessionid(struct xdr_stream *xdr, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 718 | const struct nfs4_sessionid *sid) |
| 719 | { |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 720 | __be32 *p; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 721 | |
Kinglong Mee | 590184a | 2015-09-24 20:57:37 +0800 | [diff] [blame] | 722 | p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 723 | if (unlikely(p == NULL)) |
| 724 | return htonl(NFS4ERR_RESOURCE); |
| 725 | |
Kinglong Mee | 590184a | 2015-09-24 20:57:37 +0800 | [diff] [blame] | 726 | memcpy(p, sid, NFS4_MAX_SESSIONID_LEN); |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 727 | return 0; |
| 728 | } |
| 729 | |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 730 | static __be32 encode_cb_sequence_res(struct svc_rqst *rqstp, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 731 | struct xdr_stream *xdr, |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 732 | const void *resp) |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 733 | { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 734 | const struct cb_sequenceres *res = resp; |
Andy Adamson | 9733f0d | 2010-01-22 12:03:08 -0500 | [diff] [blame] | 735 | __be32 *p; |
Dan Carpenter | e216c8c | 2012-06-12 10:37:39 +0300 | [diff] [blame] | 736 | __be32 status = res->csr_status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 737 | |
| 738 | if (unlikely(status != 0)) |
Anna Schumaker | 3d0bfaa | 2017-04-07 14:15:03 -0400 | [diff] [blame] | 739 | return status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 740 | |
Kinglong Mee | e0a63c0 | 2015-09-24 20:58:38 +0800 | [diff] [blame] | 741 | status = encode_sessionid(xdr, &res->csr_sessionid); |
| 742 | if (status) |
Anna Schumaker | 3d0bfaa | 2017-04-07 14:15:03 -0400 | [diff] [blame] | 743 | return status; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 744 | |
| 745 | p = xdr_reserve_space(xdr, 4 * sizeof(uint32_t)); |
| 746 | if (unlikely(p == NULL)) |
| 747 | return htonl(NFS4ERR_RESOURCE); |
| 748 | |
| 749 | *p++ = htonl(res->csr_sequenceid); |
| 750 | *p++ = htonl(res->csr_slotid); |
| 751 | *p++ = htonl(res->csr_highestslotid); |
| 752 | *p++ = htonl(res->csr_target_highestslotid); |
Anna Schumaker | 3d0bfaa | 2017-04-07 14:15:03 -0400 | [diff] [blame] | 753 | return 0; |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 754 | } |
| 755 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 756 | static __be32 |
| 757 | preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op) |
| 758 | { |
Benny Halevy | 281fe15 | 2009-04-01 09:23:27 -0400 | [diff] [blame] | 759 | if (op_nr == OP_CB_SEQUENCE) { |
| 760 | if (nop != 0) |
| 761 | return htonl(NFS4ERR_SEQUENCE_POS); |
| 762 | } else { |
| 763 | if (nop == 0) |
| 764 | return htonl(NFS4ERR_OP_NOT_IN_SESSION); |
| 765 | } |
| 766 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 767 | switch (op_nr) { |
| 768 | case OP_CB_GETATTR: |
| 769 | case OP_CB_RECALL: |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 770 | case OP_CB_SEQUENCE: |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 771 | case OP_CB_RECALL_ANY: |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 772 | case OP_CB_RECALL_SLOT: |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 773 | case OP_CB_LAYOUTRECALL: |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 774 | case OP_CB_NOTIFY_DEVICEID: |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 775 | case OP_CB_NOTIFY_LOCK: |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 776 | *op = &callback_ops[op_nr]; |
| 777 | break; |
| 778 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 779 | case OP_CB_NOTIFY: |
| 780 | case OP_CB_PUSH_DELEG: |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 781 | case OP_CB_RECALLABLE_OBJ_AVAIL: |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 782 | case OP_CB_WANTS_CANCELLED: |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 783 | return htonl(NFS4ERR_NOTSUPP); |
| 784 | |
| 785 | default: |
| 786 | return htonl(NFS4ERR_OP_ILLEGAL); |
| 787 | } |
| 788 | |
| 789 | return htonl(NFS_OK); |
| 790 | } |
| 791 | |
Trond Myklebust | 810d82e | 2016-01-23 15:18:18 -0500 | [diff] [blame] | 792 | static void nfs4_callback_free_slot(struct nfs4_session *session, |
| 793 | struct nfs4_slot *slot) |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 794 | { |
| 795 | struct nfs4_slot_table *tbl = &session->bc_slot_table; |
| 796 | |
| 797 | spin_lock(&tbl->slot_tbl_lock); |
| 798 | /* |
| 799 | * Let the state manager know callback processing done. |
| 800 | * A single slot, so highest used slotid is either 0 or -1 |
| 801 | */ |
Trond Myklebust | 810d82e | 2016-01-23 15:18:18 -0500 | [diff] [blame] | 802 | nfs4_free_slot(tbl, slot); |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 803 | spin_unlock(&tbl->slot_tbl_lock); |
| 804 | } |
| 805 | |
Trond Myklebust | 55a6739 | 2011-08-02 14:46:29 -0400 | [diff] [blame] | 806 | static void nfs4_cb_free_slot(struct cb_process_state *cps) |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 807 | { |
Trond Myklebust | 810d82e | 2016-01-23 15:18:18 -0500 | [diff] [blame] | 808 | if (cps->slot) { |
| 809 | nfs4_callback_free_slot(cps->clp->cl_session, cps->slot); |
| 810 | cps->slot = NULL; |
| 811 | } |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 812 | } |
| 813 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 814 | #else /* CONFIG_NFS_V4_1 */ |
| 815 | |
| 816 | static __be32 |
| 817 | preprocess_nfs41_op(int nop, unsigned int op_nr, struct callback_op **op) |
| 818 | { |
| 819 | return htonl(NFS4ERR_MINOR_VERS_MISMATCH); |
| 820 | } |
| 821 | |
Trond Myklebust | 55a6739 | 2011-08-02 14:46:29 -0400 | [diff] [blame] | 822 | static void nfs4_cb_free_slot(struct cb_process_state *cps) |
Andy Adamson | 42acd02 | 2011-01-06 02:04:34 +0000 | [diff] [blame] | 823 | { |
| 824 | } |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 825 | #endif /* CONFIG_NFS_V4_1 */ |
| 826 | |
Bryan Schumaker | 6b140b8 | 2013-06-05 11:15:02 -0400 | [diff] [blame] | 827 | #ifdef CONFIG_NFS_V4_2 |
| 828 | static __be32 |
| 829 | preprocess_nfs42_op(int nop, unsigned int op_nr, struct callback_op **op) |
| 830 | { |
| 831 | __be32 status = preprocess_nfs41_op(nop, op_nr, op); |
| 832 | if (status != htonl(NFS4ERR_OP_ILLEGAL)) |
| 833 | return status; |
| 834 | |
Olga Kornievskaia | 5178a12 | 2018-07-09 15:13:28 -0400 | [diff] [blame] | 835 | if (op_nr == OP_CB_OFFLOAD) { |
| 836 | *op = &callback_ops[op_nr]; |
| 837 | return htonl(NFS_OK); |
| 838 | } else |
Bryan Schumaker | 6b140b8 | 2013-06-05 11:15:02 -0400 | [diff] [blame] | 839 | return htonl(NFS4ERR_NOTSUPP); |
| 840 | return htonl(NFS4ERR_OP_ILLEGAL); |
| 841 | } |
| 842 | #else /* CONFIG_NFS_V4_2 */ |
| 843 | static __be32 |
| 844 | preprocess_nfs42_op(int nop, unsigned int op_nr, struct callback_op **op) |
| 845 | { |
| 846 | return htonl(NFS4ERR_MINOR_VERS_MISMATCH); |
| 847 | } |
| 848 | #endif /* CONFIG_NFS_V4_2 */ |
| 849 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 850 | static __be32 |
| 851 | preprocess_nfs4_op(unsigned int op_nr, struct callback_op **op) |
| 852 | { |
| 853 | switch (op_nr) { |
| 854 | case OP_CB_GETATTR: |
| 855 | case OP_CB_RECALL: |
| 856 | *op = &callback_ops[op_nr]; |
| 857 | break; |
| 858 | default: |
| 859 | return htonl(NFS4ERR_OP_ILLEGAL); |
| 860 | } |
| 861 | |
| 862 | return htonl(NFS_OK); |
| 863 | } |
| 864 | |
Bryan Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 865 | static __be32 process_op(int nop, struct svc_rqst *rqstp, |
Chuck Lever | 9eff97ab | 2021-07-15 15:52:43 -0400 | [diff] [blame] | 866 | struct cb_process_state *cps) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | { |
Chuck Lever | 9eff97ab | 2021-07-15 15:52:43 -0400 | [diff] [blame] | 868 | struct xdr_stream *xdr_out = &rqstp->rq_res_stream; |
Trond Myklebust | a162a6b | 2006-03-20 13:44:10 -0500 | [diff] [blame] | 869 | struct callback_op *op = &callback_ops[0]; |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 870 | unsigned int op_nr; |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 871 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | long maxlen; |
Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 873 | __be32 res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | |
Chuck Lever | 9eff97ab | 2021-07-15 15:52:43 -0400 | [diff] [blame] | 875 | status = decode_op_hdr(&rqstp->rq_arg_stream, &op_nr); |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 876 | if (unlikely(status)) |
| 877 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
Bryan Schumaker | 6b140b8 | 2013-06-05 11:15:02 -0400 | [diff] [blame] | 879 | switch (cps->minorversion) { |
| 880 | case 0: |
| 881 | status = preprocess_nfs4_op(op_nr, &op); |
| 882 | break; |
| 883 | case 1: |
| 884 | status = preprocess_nfs41_op(nop, op_nr, &op); |
| 885 | break; |
| 886 | case 2: |
| 887 | status = preprocess_nfs42_op(nop, op_nr, &op); |
| 888 | break; |
| 889 | default: |
| 890 | status = htonl(NFS4ERR_MINOR_VERS_MISMATCH); |
| 891 | } |
| 892 | |
Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 893 | if (status == htonl(NFS4ERR_OP_ILLEGAL)) |
| 894 | op_nr = OP_CB_ILLEGAL; |
Andy Adamson | b92b301 | 2010-01-14 17:45:05 -0500 | [diff] [blame] | 895 | if (status) |
| 896 | goto encode_hdr; |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 897 | |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 898 | if (cps->drc_status) { |
| 899 | status = cps->drc_status; |
Andy Adamson | 4911096 | 2010-01-14 17:45:08 -0500 | [diff] [blame] | 900 | goto encode_hdr; |
| 901 | } |
| 902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | maxlen = xdr_out->end - xdr_out->p; |
| 904 | if (maxlen > 0 && maxlen < PAGE_SIZE) { |
Chuck Lever | 9eff97ab | 2021-07-15 15:52:43 -0400 | [diff] [blame] | 905 | status = op->decode_args(rqstp, &rqstp->rq_arg_stream, |
| 906 | rqstp->rq_argp); |
Andy Adamson | e95e60d | 2010-01-14 17:45:06 -0500 | [diff] [blame] | 907 | if (likely(status == 0)) |
Chuck Lever | 9eff97ab | 2021-07-15 15:52:43 -0400 | [diff] [blame] | 908 | status = op->process_op(rqstp->rq_argp, rqstp->rq_resp, |
| 909 | cps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | } else |
| 911 | status = htonl(NFS4ERR_RESOURCE); |
| 912 | |
Andy Adamson | b92b301 | 2010-01-14 17:45:05 -0500 | [diff] [blame] | 913 | encode_hdr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | res = encode_op_hdr(xdr_out, op_nr, status); |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 915 | if (unlikely(res)) |
| 916 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | if (op->encode_res != NULL && status == 0) |
Chuck Lever | 9eff97ab | 2021-07-15 15:52:43 -0400 | [diff] [blame] | 918 | status = op->encode_res(rqstp, xdr_out, rqstp->rq_resp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | return status; |
| 920 | } |
| 921 | |
| 922 | /* |
| 923 | * Decode, process and encode a COMPOUND |
| 924 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 925 | static __be32 nfs4_callback_compound(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | { |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 927 | struct cb_compound_hdr_arg hdr_arg = { 0 }; |
| 928 | struct cb_compound_hdr_res hdr_res = { NULL }; |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 929 | struct cb_process_state cps = { |
| 930 | .drc_status = 0, |
| 931 | .clp = NULL, |
Stanislav Kinsbursky | 9695c70 | 2012-07-25 16:57:06 +0400 | [diff] [blame] | 932 | .net = SVC_NET(rqstp), |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 933 | }; |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 934 | unsigned int nops = 0; |
Chuck Lever | 89ef17b | 2021-07-15 15:52:37 -0400 | [diff] [blame] | 935 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
Chuck Lever | 89ef17b | 2021-07-15 15:52:37 -0400 | [diff] [blame] | 937 | status = decode_compound_hdr_arg(&rqstp->rq_arg_stream, &hdr_arg); |
Vaishali Thakkar | 4ed0d83 | 2015-06-10 20:15:29 +0530 | [diff] [blame] | 938 | if (status == htonl(NFS4ERR_RESOURCE)) |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 939 | return rpc_garbage_args; |
| 940 | |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 941 | if (hdr_arg.minorversion == 0) { |
Stanislav Kinsbursky | 9695c70 | 2012-07-25 16:57:06 +0400 | [diff] [blame] | 942 | cps.clp = nfs4_find_client_ident(SVC_NET(rqstp), hdr_arg.cb_ident); |
Chuck Lever | 2bb50aa | 2019-12-23 10:28:38 -0500 | [diff] [blame] | 943 | if (!cps.clp) { |
| 944 | trace_nfs_cb_no_clp(rqstp->rq_xid, hdr_arg.cb_ident); |
| 945 | goto out_invalidcred; |
| 946 | } |
| 947 | if (!check_gss_callback_principal(cps.clp, rqstp)) { |
| 948 | trace_nfs_cb_badprinc(rqstp->rq_xid, hdr_arg.cb_ident); |
| 949 | nfs_put_client(cps.clp); |
Chuck Lever | a4e187d | 2016-06-29 13:55:22 -0400 | [diff] [blame] | 950 | goto out_invalidcred; |
Olga Kornievskaia | 32cd3ee | 2018-07-26 16:04:47 -0400 | [diff] [blame] | 951 | } |
Andy Adamson | 778be23 | 2011-01-25 15:38:01 +0000 | [diff] [blame] | 952 | } |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 953 | |
Bryan Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 954 | cps.minorversion = hdr_arg.minorversion; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | hdr_res.taglen = hdr_arg.taglen; |
| 956 | hdr_res.tag = hdr_arg.tag; |
Chuck Lever | 89ef17b | 2021-07-15 15:52:37 -0400 | [diff] [blame] | 957 | if (encode_compound_hdr_res(&rqstp->rq_res_stream, &hdr_res) != 0) { |
Olga Kornievskaia | 32cd3ee | 2018-07-26 16:04:47 -0400 | [diff] [blame] | 958 | if (cps.clp) |
| 959 | nfs_put_client(cps.clp); |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 960 | return rpc_system_err; |
Olga Kornievskaia | 32cd3ee | 2018-07-26 16:04:47 -0400 | [diff] [blame] | 961 | } |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 962 | while (status == 0 && nops != hdr_arg.nops) { |
Chuck Lever | 9eff97ab | 2021-07-15 15:52:43 -0400 | [diff] [blame] | 963 | status = process_op(nops, rqstp, &cps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | nops++; |
| 965 | } |
Trond Myklebust | 3a6258e | 2008-05-06 13:32:40 -0400 | [diff] [blame] | 966 | |
Andy Adamson | 31d2b43 | 2010-01-14 17:45:04 -0500 | [diff] [blame] | 967 | /* Buffer overflow in decode_ops_hdr or encode_ops_hdr. Return |
| 968 | * resource error in cb_compound status without returning op */ |
| 969 | if (unlikely(status == htonl(NFS4ERR_RESOURCE_HDR))) { |
| 970 | status = htonl(NFS4ERR_RESOURCE); |
| 971 | nops--; |
| 972 | } |
| 973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | *hdr_res.status = status; |
| 975 | *hdr_res.nops = htonl(nops); |
Trond Myklebust | 55a6739 | 2011-08-02 14:46:29 -0400 | [diff] [blame] | 976 | nfs4_cb_free_slot(&cps); |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 977 | nfs_put_client(cps.clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | return rpc_success; |
Chuck Lever | a4e187d | 2016-06-29 13:55:22 -0400 | [diff] [blame] | 979 | |
| 980 | out_invalidcred: |
| 981 | pr_warn_ratelimited("NFS: NFSv4 callback contains invalid cred\n"); |
Chuck Lever | 9082e1d | 2021-07-15 15:52:19 -0400 | [diff] [blame] | 982 | rqstp->rq_auth_stat = rpc_autherr_badcred; |
| 983 | return rpc_success; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | } |
| 985 | |
Chuck Lever | 7d34c96 | 2021-07-15 15:52:25 -0400 | [diff] [blame] | 986 | static int |
| 987 | nfs_callback_dispatch(struct svc_rqst *rqstp, __be32 *statp) |
| 988 | { |
| 989 | const struct svc_procedure *procp = rqstp->rq_procinfo; |
| 990 | |
Chuck Lever | 89ef17b | 2021-07-15 15:52:37 -0400 | [diff] [blame] | 991 | svcxdr_init_decode(rqstp); |
| 992 | svcxdr_init_encode(rqstp); |
| 993 | |
Chuck Lever | 7d34c96 | 2021-07-15 15:52:25 -0400 | [diff] [blame] | 994 | *statp = procp->pc_func(rqstp); |
| 995 | return 1; |
| 996 | } |
| 997 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | /* |
| 999 | * Define NFS4 callback COMPOUND ops. |
| 1000 | */ |
| 1001 | static struct callback_op callback_ops[] = { |
| 1002 | [0] = { |
| 1003 | .res_maxsize = CB_OP_HDR_RES_MAXSZ, |
| 1004 | }, |
| 1005 | [OP_CB_GETATTR] = { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 1006 | .process_op = nfs4_callback_getattr, |
| 1007 | .decode_args = decode_getattr_args, |
| 1008 | .encode_res = encode_getattr_res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | .res_maxsize = CB_OP_GETATTR_RES_MAXSZ, |
| 1010 | }, |
| 1011 | [OP_CB_RECALL] = { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 1012 | .process_op = nfs4_callback_recall, |
| 1013 | .decode_args = decode_recall_args, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | .res_maxsize = CB_OP_RECALL_RES_MAXSZ, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 1015 | }, |
| 1016 | #if defined(CONFIG_NFS_V4_1) |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 1017 | [OP_CB_LAYOUTRECALL] = { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 1018 | .process_op = nfs4_callback_layoutrecall, |
| 1019 | .decode_args = decode_layoutrecall_args, |
Fred Isaman | f2a6256 | 2011-01-06 11:36:29 +0000 | [diff] [blame] | 1020 | .res_maxsize = CB_OP_LAYOUTRECALL_RES_MAXSZ, |
| 1021 | }, |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 1022 | [OP_CB_NOTIFY_DEVICEID] = { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 1023 | .process_op = nfs4_callback_devicenotify, |
| 1024 | .decode_args = decode_devicenotify_args, |
Marc Eshel | 1be5683 | 2011-05-22 19:47:09 +0300 | [diff] [blame] | 1025 | .res_maxsize = CB_OP_DEVICENOTIFY_RES_MAXSZ, |
| 1026 | }, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 1027 | [OP_CB_SEQUENCE] = { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 1028 | .process_op = nfs4_callback_sequence, |
| 1029 | .decode_args = decode_cb_sequence_args, |
| 1030 | .encode_res = encode_cb_sequence_res, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 1031 | .res_maxsize = CB_OP_SEQUENCE_RES_MAXSZ, |
| 1032 | }, |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 1033 | [OP_CB_RECALL_ANY] = { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 1034 | .process_op = nfs4_callback_recallany, |
| 1035 | .decode_args = decode_recallany_args, |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 1036 | .res_maxsize = CB_OP_RECALLANY_RES_MAXSZ, |
| 1037 | }, |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 1038 | [OP_CB_RECALL_SLOT] = { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 1039 | .process_op = nfs4_callback_recallslot, |
| 1040 | .decode_args = decode_recallslot_args, |
Andy Adamson | b9efa1b | 2010-01-20 16:06:27 -0500 | [diff] [blame] | 1041 | .res_maxsize = CB_OP_RECALLSLOT_RES_MAXSZ, |
| 1042 | }, |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 1043 | [OP_CB_NOTIFY_LOCK] = { |
Christoph Hellwig | f4dac4a | 2017-05-11 09:22:18 +0200 | [diff] [blame] | 1044 | .process_op = nfs4_callback_notify_lock, |
| 1045 | .decode_args = decode_notify_lock_args, |
Jeff Layton | db78368 | 2016-09-17 18:17:36 -0400 | [diff] [blame] | 1046 | .res_maxsize = CB_OP_NOTIFY_LOCK_RES_MAXSZ, |
| 1047 | }, |
Benny Halevy | 4aece6a | 2009-04-01 09:23:26 -0400 | [diff] [blame] | 1048 | #endif /* CONFIG_NFS_V4_1 */ |
Olga Kornievskaia | 5178a12 | 2018-07-09 15:13:28 -0400 | [diff] [blame] | 1049 | #ifdef CONFIG_NFS_V4_2 |
| 1050 | [OP_CB_OFFLOAD] = { |
| 1051 | .process_op = nfs4_callback_offload, |
| 1052 | .decode_args = decode_offload_args, |
| 1053 | .res_maxsize = CB_OP_OFFLOAD_RES_MAXSZ, |
| 1054 | }, |
| 1055 | #endif /* CONFIG_NFS_V4_2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | }; |
| 1057 | |
| 1058 | /* |
| 1059 | * Define NFS4 callback procedures |
| 1060 | */ |
Christoph Hellwig | 860bda2 | 2017-05-12 16:11:49 +0200 | [diff] [blame] | 1061 | static const struct svc_procedure nfs4_callback_procedures1[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | [CB_NULL] = { |
| 1063 | .pc_func = nfs4_callback_null, |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 1064 | .pc_encode = nfs4_encode_void, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | .pc_xdrressize = 1, |
Chuck Lever | 2289e87 | 2020-09-17 17:22:49 -0400 | [diff] [blame] | 1066 | .pc_name = "NULL", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | }, |
| 1068 | [CB_COMPOUND] = { |
| 1069 | .pc_func = nfs4_callback_compound, |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 1070 | .pc_encode = nfs4_encode_void, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | .pc_argsize = 256, |
| 1072 | .pc_ressize = 256, |
| 1073 | .pc_xdrressize = NFS4_CALLBACK_BUFSIZE, |
Chuck Lever | 2289e87 | 2020-09-17 17:22:49 -0400 | [diff] [blame] | 1074 | .pc_name = "COMPOUND", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | } |
| 1076 | }; |
| 1077 | |
Christoph Hellwig | 7fd38af | 2017-05-08 23:40:27 +0200 | [diff] [blame] | 1078 | static unsigned int nfs4_callback_count1[ARRAY_SIZE(nfs4_callback_procedures1)]; |
Christoph Hellwig | e967918 | 2017-05-12 16:21:37 +0200 | [diff] [blame] | 1079 | const struct svc_version nfs4_callback_version1 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | .vs_vers = 1, |
| 1081 | .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1), |
| 1082 | .vs_proc = nfs4_callback_procedures1, |
Christoph Hellwig | 7fd38af | 2017-05-08 23:40:27 +0200 | [diff] [blame] | 1083 | .vs_count = nfs4_callback_count1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | .vs_xdrsize = NFS4_CALLBACK_XDRSIZE, |
Chuck Lever | 7d34c96 | 2021-07-15 15:52:25 -0400 | [diff] [blame] | 1085 | .vs_dispatch = nfs_callback_dispatch, |
Jeff Layton | 05a45a2 | 2017-02-24 13:25:22 -0500 | [diff] [blame] | 1086 | .vs_hidden = true, |
Jeff Layton | 5283b03 | 2017-02-24 13:25:24 -0500 | [diff] [blame] | 1087 | .vs_need_cong_ctrl = true, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | }; |
| 1089 | |
Christoph Hellwig | 7fd38af | 2017-05-08 23:40:27 +0200 | [diff] [blame] | 1090 | static unsigned int nfs4_callback_count4[ARRAY_SIZE(nfs4_callback_procedures1)]; |
Christoph Hellwig | e967918 | 2017-05-12 16:21:37 +0200 | [diff] [blame] | 1091 | const struct svc_version nfs4_callback_version4 = { |
Alexandros Batsakis | 07bccc2 | 2009-12-05 13:19:01 -0500 | [diff] [blame] | 1092 | .vs_vers = 4, |
| 1093 | .vs_nproc = ARRAY_SIZE(nfs4_callback_procedures1), |
| 1094 | .vs_proc = nfs4_callback_procedures1, |
Christoph Hellwig | 7fd38af | 2017-05-08 23:40:27 +0200 | [diff] [blame] | 1095 | .vs_count = nfs4_callback_count4, |
Alexandros Batsakis | 07bccc2 | 2009-12-05 13:19:01 -0500 | [diff] [blame] | 1096 | .vs_xdrsize = NFS4_CALLBACK_XDRSIZE, |
Chuck Lever | 7d34c96 | 2021-07-15 15:52:25 -0400 | [diff] [blame] | 1097 | .vs_dispatch = nfs_callback_dispatch, |
Jeff Layton | 05a45a2 | 2017-02-24 13:25:22 -0500 | [diff] [blame] | 1098 | .vs_hidden = true, |
Jeff Layton | 5283b03 | 2017-02-24 13:25:24 -0500 | [diff] [blame] | 1099 | .vs_need_cong_ctrl = true, |
Alexandros Batsakis | 07bccc2 | 2009-12-05 13:19:01 -0500 | [diff] [blame] | 1100 | }; |