Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Server-side XDR for NFSv4 |
| 3 | * |
| 4 | * Copyright (c) 2002 The Regents of the University of Michigan. |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * Kendrick Smith <kmsmith@umich.edu> |
| 8 | * Andy Adamson <andros@umich.edu> |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or without |
| 11 | * modification, are permitted provided that the following conditions |
| 12 | * are met: |
| 13 | * |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer. |
| 16 | * 2. Redistributions in binary form must reproduce the above copyright |
| 17 | * notice, this list of conditions and the following disclaimer in the |
| 18 | * documentation and/or other materials provided with the distribution. |
| 19 | * 3. Neither the name of the University nor the names of its |
| 20 | * contributors may be used to endorse or promote products derived |
| 21 | * from this software without specific prior written permission. |
| 22 | * |
| 23 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 24 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 25 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 26 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 27 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 28 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 29 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 30 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 31 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 32 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 33 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 34 | * |
| 35 | * TODO: Neil Brown made the following observation: We currently |
| 36 | * initially reserve NFSD_BUFSIZE space on the transmit queue and |
| 37 | * never release any of that until the request is complete. |
| 38 | * It would be good to calculate a new maximum response size while |
| 39 | * decoding the COMPOUND, and call svc_reserve with this number |
| 40 | * at the end of nfs4svc_decode_compoundargs. |
| 41 | */ |
| 42 | |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 43 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/namei.h> |
Boaz Harrosh | 341eb18 | 2009-12-03 20:29:12 +0200 | [diff] [blame] | 45 | #include <linux/statfs.h> |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 46 | #include <linux/utsname.h> |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 47 | #include <linux/pagemap.h> |
J. Bruce Fields | 4796f45 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 48 | #include <linux/sunrpc/svcauth_gss.h> |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 49 | |
J. Bruce Fields | 2ca72e1 | 2011-01-04 17:37:15 -0500 | [diff] [blame] | 50 | #include "idmap.h" |
| 51 | #include "acl.h" |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 52 | #include "xdr4.h" |
J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 53 | #include "vfs.h" |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 54 | #include "state.h" |
J. Bruce Fields | 1091006 | 2011-01-24 12:11:02 -0500 | [diff] [blame] | 55 | #include "cache.h" |
Stanislav Kinsbursky | 3d73371 | 2012-11-27 14:11:44 +0300 | [diff] [blame] | 56 | #include "netns.h" |
J. Bruce Fields | 2ca72e1 | 2011-01-04 17:37:15 -0500 | [diff] [blame] | 57 | |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 58 | #ifdef CONFIG_NFSD_V4_SECURITY_LABEL |
| 59 | #include <linux/security.h> |
| 60 | #endif |
| 61 | |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define NFSDDBG_FACILITY NFSDDBG_XDR |
| 64 | |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 65 | /* |
| 66 | * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing |
| 67 | * directory in order to indicate to the client that a filesystem boundary is present |
| 68 | * We use a fixed fsid for a referral |
| 69 | */ |
| 70 | #define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL |
| 71 | #define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL |
| 72 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 73 | static __be32 |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 74 | check_filename(char *str, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
| 76 | int i; |
| 77 | |
| 78 | if (len == 0) |
| 79 | return nfserr_inval; |
| 80 | if (isdotent(str, len)) |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 81 | return nfserr_badname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | for (i = 0; i < len; i++) |
| 83 | if (str[i] == '/') |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 84 | return nfserr_badname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | return 0; |
| 86 | } |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | #define DECODE_HEAD \ |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 89 | __be32 *p; \ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 90 | __be32 status |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | #define DECODE_TAIL \ |
| 92 | status = 0; \ |
| 93 | out: \ |
| 94 | return status; \ |
| 95 | xdr_error: \ |
Chuck Lever | 817cb9d | 2007-09-11 18:01:20 -0400 | [diff] [blame] | 96 | dprintk("NFSD: xdr error (%s:%d)\n", \ |
| 97 | __FILE__, __LINE__); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | status = nfserr_bad_xdr; \ |
| 99 | goto out |
| 100 | |
| 101 | #define READ32(x) (x) = ntohl(*p++) |
| 102 | #define READ64(x) do { \ |
| 103 | (x) = (u64)ntohl(*p++) << 32; \ |
| 104 | (x) |= ntohl(*p++); \ |
| 105 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | #define READMEM(x,nbytes) do { \ |
| 107 | x = (char *)p; \ |
| 108 | p += XDR_QUADLEN(nbytes); \ |
| 109 | } while (0) |
| 110 | #define SAVEMEM(x,nbytes) do { \ |
| 111 | if (!(x = (p==argp->tmp || p == argp->tmpp) ? \ |
| 112 | savemem(argp, p, nbytes) : \ |
| 113 | (char *)p)) { \ |
Chuck Lever | 817cb9d | 2007-09-11 18:01:20 -0400 | [diff] [blame] | 114 | dprintk("NFSD: xdr error (%s:%d)\n", \ |
| 115 | __FILE__, __LINE__); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | goto xdr_error; \ |
| 117 | } \ |
| 118 | p += XDR_QUADLEN(nbytes); \ |
| 119 | } while (0) |
| 120 | #define COPYMEM(x,nbytes) do { \ |
| 121 | memcpy((x), p, nbytes); \ |
| 122 | p += XDR_QUADLEN(nbytes); \ |
| 123 | } while (0) |
| 124 | |
| 125 | /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */ |
| 126 | #define READ_BUF(nbytes) do { \ |
| 127 | if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \ |
| 128 | p = argp->p; \ |
| 129 | argp->p += XDR_QUADLEN(nbytes); \ |
| 130 | } else if (!(p = read_buf(argp, nbytes))) { \ |
Chuck Lever | 817cb9d | 2007-09-11 18:01:20 -0400 | [diff] [blame] | 131 | dprintk("NFSD: xdr error (%s:%d)\n", \ |
| 132 | __FILE__, __LINE__); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | goto xdr_error; \ |
| 134 | } \ |
| 135 | } while (0) |
| 136 | |
J. Bruce Fields | 590b743 | 2013-06-21 17:06:29 -0400 | [diff] [blame] | 137 | static void next_decode_page(struct nfsd4_compoundargs *argp) |
| 138 | { |
J. Bruce Fields | 590b743 | 2013-06-21 17:06:29 -0400 | [diff] [blame] | 139 | argp->p = page_address(argp->pagelist[0]); |
J. Bruce Fields | 365da4a | 2013-11-19 17:32:43 -0500 | [diff] [blame] | 140 | argp->pagelist++; |
J. Bruce Fields | 590b743 | 2013-06-21 17:06:29 -0400 | [diff] [blame] | 141 | if (argp->pagelen < PAGE_SIZE) { |
| 142 | argp->end = argp->p + (argp->pagelen>>2); |
| 143 | argp->pagelen = 0; |
| 144 | } else { |
| 145 | argp->end = argp->p + (PAGE_SIZE>>2); |
| 146 | argp->pagelen -= PAGE_SIZE; |
| 147 | } |
| 148 | } |
| 149 | |
J. Bruce Fields | ca2a05a | 2007-11-11 15:43:12 -0500 | [diff] [blame] | 150 | static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
| 152 | /* We want more bytes than seem to be available. |
| 153 | * Maybe we need a new page, maybe we have just run out |
| 154 | */ |
J. Bruce Fields | ca2a05a | 2007-11-11 15:43:12 -0500 | [diff] [blame] | 155 | unsigned int avail = (char *)argp->end - (char *)argp->p; |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 156 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | if (avail + argp->pagelen < nbytes) |
| 158 | return NULL; |
| 159 | if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */ |
| 160 | return NULL; |
| 161 | /* ok, we can do it with the current plus the next page */ |
| 162 | if (nbytes <= sizeof(argp->tmp)) |
| 163 | p = argp->tmp; |
| 164 | else { |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 165 | kfree(argp->tmpp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL); |
| 167 | if (!p) |
| 168 | return NULL; |
| 169 | |
| 170 | } |
J. Bruce Fields | ca2a05a | 2007-11-11 15:43:12 -0500 | [diff] [blame] | 171 | /* |
| 172 | * The following memcpy is safe because read_buf is always |
| 173 | * called with nbytes > avail, and the two cases above both |
| 174 | * guarantee p points to at least nbytes bytes. |
| 175 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | memcpy(p, argp->p, avail); |
J. Bruce Fields | 590b743 | 2013-06-21 17:06:29 -0400 | [diff] [blame] | 177 | next_decode_page(argp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | memcpy(((char*)p)+avail, argp->p, (nbytes - avail)); |
| 179 | argp->p += XDR_QUADLEN(nbytes - avail); |
| 180 | return p; |
| 181 | } |
| 182 | |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 183 | static int zero_clientid(clientid_t *clid) |
| 184 | { |
| 185 | return (clid->cl_boot == 0) && (clid->cl_id == 0); |
| 186 | } |
| 187 | |
Christoph Hellwig | 2d8498d | 2013-11-20 00:24:11 -0800 | [diff] [blame] | 188 | /** |
| 189 | * defer_free - mark an allocation as deferred freed |
| 190 | * @argp: NFSv4 compound argument structure to be freed with |
| 191 | * @release: release callback to free @p, typically kfree() |
| 192 | * @p: pointer to be freed |
| 193 | * |
| 194 | * Marks @p to be freed when processing the compound operation |
| 195 | * described in @argp finishes. |
| 196 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | static int |
| 198 | defer_free(struct nfsd4_compoundargs *argp, |
| 199 | void (*release)(const void *), void *p) |
| 200 | { |
| 201 | struct tmpbuf *tb; |
| 202 | |
| 203 | tb = kmalloc(sizeof(*tb), GFP_KERNEL); |
| 204 | if (!tb) |
| 205 | return -ENOMEM; |
| 206 | tb->buf = p; |
| 207 | tb->release = release; |
| 208 | tb->next = argp->to_free; |
| 209 | argp->to_free = tb; |
| 210 | return 0; |
| 211 | } |
| 212 | |
Christoph Hellwig | 2d8498d | 2013-11-20 00:24:11 -0800 | [diff] [blame] | 213 | /** |
| 214 | * savemem - duplicate a chunk of memory for later processing |
| 215 | * @argp: NFSv4 compound argument structure to be freed with |
| 216 | * @p: pointer to be duplicated |
| 217 | * @nbytes: length to be duplicated |
| 218 | * |
| 219 | * Returns a pointer to a copy of @nbytes bytes of memory at @p |
| 220 | * that are preserved until processing of the NFSv4 compound |
| 221 | * operation described by @argp finishes. |
| 222 | */ |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 223 | static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | if (p == argp->tmp) { |
Thomas Meyer | 67114fe | 2011-11-17 23:43:40 +0100 | [diff] [blame] | 226 | p = kmemdup(argp->tmp, nbytes, GFP_KERNEL); |
J. Bruce Fields | a4db5fe | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 227 | if (!p) |
| 228 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } else { |
Eric Sesterhenn | 73dff8b | 2006-10-03 23:37:14 +0200 | [diff] [blame] | 230 | BUG_ON(p != argp->tmpp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | argp->tmpp = NULL; |
| 232 | } |
| 233 | if (defer_free(argp, kfree, p)) { |
J. Bruce Fields | a4db5fe | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 234 | kfree(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | return NULL; |
| 236 | } else |
| 237 | return (char *)p; |
| 238 | } |
| 239 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 240 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval) |
| 242 | { |
| 243 | u32 bmlen; |
| 244 | DECODE_HEAD; |
| 245 | |
| 246 | bmval[0] = 0; |
| 247 | bmval[1] = 0; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 248 | bmval[2] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
| 250 | READ_BUF(4); |
| 251 | READ32(bmlen); |
| 252 | if (bmlen > 1000) |
| 253 | goto xdr_error; |
| 254 | |
| 255 | READ_BUF(bmlen << 2); |
| 256 | if (bmlen > 0) |
| 257 | READ32(bmval[0]); |
| 258 | if (bmlen > 1) |
| 259 | READ32(bmval[1]); |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 260 | if (bmlen > 2) |
| 261 | READ32(bmval[2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | DECODE_TAIL; |
| 264 | } |
| 265 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 266 | static __be32 |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 267 | nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval, |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 268 | struct iattr *iattr, struct nfs4_acl **acl, |
| 269 | struct xdr_netobj *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
| 271 | int expected_len, len = 0; |
| 272 | u32 dummy32; |
| 273 | char *buf; |
| 274 | |
| 275 | DECODE_HEAD; |
| 276 | iattr->ia_valid = 0; |
| 277 | if ((status = nfsd4_decode_bitmap(argp, bmval))) |
| 278 | return status; |
| 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | READ_BUF(4); |
| 281 | READ32(expected_len); |
| 282 | |
| 283 | if (bmval[0] & FATTR4_WORD0_SIZE) { |
| 284 | READ_BUF(8); |
| 285 | len += 8; |
| 286 | READ64(iattr->ia_size); |
| 287 | iattr->ia_valid |= ATTR_SIZE; |
| 288 | } |
| 289 | if (bmval[0] & FATTR4_WORD0_ACL) { |
J. Bruce Fields | 64a817c | 2013-03-26 14:11:13 -0400 | [diff] [blame] | 290 | u32 nace; |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 291 | struct nfs4_ace *ace; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
| 293 | READ_BUF(4); len += 4; |
| 294 | READ32(nace); |
| 295 | |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 296 | if (nace > NFS4_ACL_MAX) |
J. Bruce Fields | 798df33 | 2014-01-29 16:39:05 -0500 | [diff] [blame] | 297 | return nfserr_fbig; |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 298 | |
| 299 | *acl = nfs4_acl_new(nace); |
Kinglong Mee | eba1c99 | 2013-12-09 18:23:46 +0800 | [diff] [blame] | 300 | if (*acl == NULL) |
| 301 | return nfserr_jukebox; |
| 302 | |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 303 | defer_free(argp, kfree, *acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 305 | (*acl)->naces = nace; |
| 306 | for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | READ_BUF(16); len += 16; |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 308 | READ32(ace->type); |
| 309 | READ32(ace->flag); |
| 310 | READ32(ace->access_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | READ32(dummy32); |
| 312 | READ_BUF(dummy32); |
| 313 | len += XDR_QUADLEN(dummy32) << 2; |
| 314 | READMEM(buf, dummy32); |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 315 | ace->whotype = nfs4_acl_get_whotype(buf, dummy32); |
J. Bruce Fields | 3c72602 | 2011-01-04 17:53:52 -0500 | [diff] [blame] | 316 | status = nfs_ok; |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 317 | if (ace->whotype != NFS4_ACL_WHO_NAMED) |
Eric W. Biederman | ab8e4ae | 2013-02-02 05:18:08 -0800 | [diff] [blame] | 318 | ; |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 319 | else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP) |
J. Bruce Fields | 3c72602 | 2011-01-04 17:53:52 -0500 | [diff] [blame] | 320 | status = nfsd_map_name_to_gid(argp->rqstp, |
Eric W. Biederman | ab8e4ae | 2013-02-02 05:18:08 -0800 | [diff] [blame] | 321 | buf, dummy32, &ace->who_gid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | else |
J. Bruce Fields | 3c72602 | 2011-01-04 17:53:52 -0500 | [diff] [blame] | 323 | status = nfsd_map_name_to_uid(argp->rqstp, |
Eric W. Biederman | ab8e4ae | 2013-02-02 05:18:08 -0800 | [diff] [blame] | 324 | buf, dummy32, &ace->who_uid); |
J. Bruce Fields | 3c72602 | 2011-01-04 17:53:52 -0500 | [diff] [blame] | 325 | if (status) |
| 326 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | } else |
| 329 | *acl = NULL; |
| 330 | if (bmval[1] & FATTR4_WORD1_MODE) { |
| 331 | READ_BUF(4); |
| 332 | len += 4; |
| 333 | READ32(iattr->ia_mode); |
| 334 | iattr->ia_mode &= (S_IFMT | S_IALLUGO); |
| 335 | iattr->ia_valid |= ATTR_MODE; |
| 336 | } |
| 337 | if (bmval[1] & FATTR4_WORD1_OWNER) { |
| 338 | READ_BUF(4); |
| 339 | len += 4; |
| 340 | READ32(dummy32); |
| 341 | READ_BUF(dummy32); |
| 342 | len += (XDR_QUADLEN(dummy32) << 2); |
| 343 | READMEM(buf, dummy32); |
NeilBrown | 47c8529 | 2011-02-16 13:08:35 +1100 | [diff] [blame] | 344 | if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid))) |
| 345 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | iattr->ia_valid |= ATTR_UID; |
| 347 | } |
| 348 | if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) { |
| 349 | READ_BUF(4); |
| 350 | len += 4; |
| 351 | READ32(dummy32); |
| 352 | READ_BUF(dummy32); |
| 353 | len += (XDR_QUADLEN(dummy32) << 2); |
| 354 | READMEM(buf, dummy32); |
NeilBrown | 47c8529 | 2011-02-16 13:08:35 +1100 | [diff] [blame] | 355 | if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid))) |
| 356 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | iattr->ia_valid |= ATTR_GID; |
| 358 | } |
| 359 | if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) { |
| 360 | READ_BUF(4); |
| 361 | len += 4; |
| 362 | READ32(dummy32); |
| 363 | switch (dummy32) { |
| 364 | case NFS4_SET_TO_CLIENT_TIME: |
| 365 | /* We require the high 32 bits of 'seconds' to be 0, and we ignore |
| 366 | all 32 bits of 'nseconds'. */ |
| 367 | READ_BUF(12); |
| 368 | len += 12; |
Bryan Schumaker | bf8d909 | 2013-04-19 16:09:38 -0400 | [diff] [blame] | 369 | READ64(iattr->ia_atime.tv_sec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | READ32(iattr->ia_atime.tv_nsec); |
| 371 | if (iattr->ia_atime.tv_nsec >= (u32)1000000000) |
| 372 | return nfserr_inval; |
| 373 | iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET); |
| 374 | break; |
| 375 | case NFS4_SET_TO_SERVER_TIME: |
| 376 | iattr->ia_valid |= ATTR_ATIME; |
| 377 | break; |
| 378 | default: |
| 379 | goto xdr_error; |
| 380 | } |
| 381 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) { |
| 383 | READ_BUF(4); |
| 384 | len += 4; |
| 385 | READ32(dummy32); |
| 386 | switch (dummy32) { |
| 387 | case NFS4_SET_TO_CLIENT_TIME: |
| 388 | /* We require the high 32 bits of 'seconds' to be 0, and we ignore |
| 389 | all 32 bits of 'nseconds'. */ |
| 390 | READ_BUF(12); |
| 391 | len += 12; |
Bryan Schumaker | bf8d909 | 2013-04-19 16:09:38 -0400 | [diff] [blame] | 392 | READ64(iattr->ia_mtime.tv_sec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | READ32(iattr->ia_mtime.tv_nsec); |
| 394 | if (iattr->ia_mtime.tv_nsec >= (u32)1000000000) |
| 395 | return nfserr_inval; |
| 396 | iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET); |
| 397 | break; |
| 398 | case NFS4_SET_TO_SERVER_TIME: |
| 399 | iattr->ia_valid |= ATTR_MTIME; |
| 400 | break; |
| 401 | default: |
| 402 | goto xdr_error; |
| 403 | } |
| 404 | } |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 405 | |
| 406 | label->len = 0; |
| 407 | #ifdef CONFIG_NFSD_V4_SECURITY_LABEL |
| 408 | if (bmval[2] & FATTR4_WORD2_SECURITY_LABEL) { |
| 409 | READ_BUF(4); |
| 410 | len += 4; |
| 411 | READ32(dummy32); /* lfs: we don't use it */ |
| 412 | READ_BUF(4); |
| 413 | len += 4; |
| 414 | READ32(dummy32); /* pi: we don't use it either */ |
| 415 | READ_BUF(4); |
| 416 | len += 4; |
| 417 | READ32(dummy32); |
| 418 | READ_BUF(dummy32); |
| 419 | if (dummy32 > NFSD4_MAX_SEC_LABEL_LEN) |
| 420 | return nfserr_badlabel; |
| 421 | len += (XDR_QUADLEN(dummy32) << 2); |
| 422 | READMEM(buf, dummy32); |
| 423 | label->data = kzalloc(dummy32 + 1, GFP_KERNEL); |
| 424 | if (!label->data) |
| 425 | return nfserr_jukebox; |
J. Bruce Fields | 3378b7f | 2013-11-01 10:42:15 -0400 | [diff] [blame] | 426 | label->len = dummy32; |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 427 | defer_free(argp, kfree, label->data); |
| 428 | memcpy(label->data, buf, dummy32); |
| 429 | } |
| 430 | #endif |
| 431 | |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 432 | if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0 |
| 433 | || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1 |
| 434 | || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2) |
| 435 | READ_BUF(expected_len - len); |
| 436 | else if (len != expected_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | goto xdr_error; |
| 438 | |
| 439 | DECODE_TAIL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 442 | static __be32 |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 443 | nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid) |
| 444 | { |
| 445 | DECODE_HEAD; |
| 446 | |
| 447 | READ_BUF(sizeof(stateid_t)); |
| 448 | READ32(sid->si_generation); |
| 449 | COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t)); |
| 450 | |
| 451 | DECODE_TAIL; |
| 452 | } |
| 453 | |
| 454 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access) |
| 456 | { |
| 457 | DECODE_HEAD; |
| 458 | |
| 459 | READ_BUF(4); |
| 460 | READ32(access->ac_req_access); |
| 461 | |
| 462 | DECODE_TAIL; |
| 463 | } |
| 464 | |
J. Bruce Fields | acb2887 | 2012-03-27 14:50:26 -0400 | [diff] [blame] | 465 | static __be32 nfsd4_decode_cb_sec(struct nfsd4_compoundargs *argp, struct nfsd4_cb_sec *cbs) |
| 466 | { |
| 467 | DECODE_HEAD; |
J. Bruce Fields | 12fc3e9 | 2012-11-05 16:01:48 -0500 | [diff] [blame] | 468 | u32 dummy, uid, gid; |
J. Bruce Fields | acb2887 | 2012-03-27 14:50:26 -0400 | [diff] [blame] | 469 | char *machine_name; |
| 470 | int i; |
| 471 | int nr_secflavs; |
| 472 | |
| 473 | /* callback_sec_params4 */ |
| 474 | READ_BUF(4); |
| 475 | READ32(nr_secflavs); |
J. Bruce Fields | 57569a7 | 2013-05-17 16:25:32 -0400 | [diff] [blame] | 476 | if (nr_secflavs) |
| 477 | cbs->flavor = (u32)(-1); |
| 478 | else |
| 479 | /* Is this legal? Be generous, take it to mean AUTH_NONE: */ |
| 480 | cbs->flavor = 0; |
J. Bruce Fields | acb2887 | 2012-03-27 14:50:26 -0400 | [diff] [blame] | 481 | for (i = 0; i < nr_secflavs; ++i) { |
| 482 | READ_BUF(4); |
| 483 | READ32(dummy); |
| 484 | switch (dummy) { |
| 485 | case RPC_AUTH_NULL: |
| 486 | /* Nothing to read */ |
J. Bruce Fields | 12fc3e9 | 2012-11-05 16:01:48 -0500 | [diff] [blame] | 487 | if (cbs->flavor == (u32)(-1)) |
| 488 | cbs->flavor = RPC_AUTH_NULL; |
J. Bruce Fields | acb2887 | 2012-03-27 14:50:26 -0400 | [diff] [blame] | 489 | break; |
| 490 | case RPC_AUTH_UNIX: |
| 491 | READ_BUF(8); |
| 492 | /* stamp */ |
| 493 | READ32(dummy); |
| 494 | |
| 495 | /* machine name */ |
| 496 | READ32(dummy); |
| 497 | READ_BUF(dummy); |
| 498 | SAVEMEM(machine_name, dummy); |
| 499 | |
| 500 | /* uid, gid */ |
| 501 | READ_BUF(8); |
J. Bruce Fields | 12fc3e9 | 2012-11-05 16:01:48 -0500 | [diff] [blame] | 502 | READ32(uid); |
| 503 | READ32(gid); |
J. Bruce Fields | acb2887 | 2012-03-27 14:50:26 -0400 | [diff] [blame] | 504 | |
| 505 | /* more gids */ |
| 506 | READ_BUF(4); |
| 507 | READ32(dummy); |
| 508 | READ_BUF(dummy * 4); |
J. Bruce Fields | 12fc3e9 | 2012-11-05 16:01:48 -0500 | [diff] [blame] | 509 | if (cbs->flavor == (u32)(-1)) { |
Eric W. Biederman | 03bc6d1 | 2013-02-02 06:24:49 -0800 | [diff] [blame] | 510 | kuid_t kuid = make_kuid(&init_user_ns, uid); |
| 511 | kgid_t kgid = make_kgid(&init_user_ns, gid); |
| 512 | if (uid_valid(kuid) && gid_valid(kgid)) { |
| 513 | cbs->uid = kuid; |
| 514 | cbs->gid = kgid; |
| 515 | cbs->flavor = RPC_AUTH_UNIX; |
| 516 | } else { |
| 517 | dprintk("RPC_AUTH_UNIX with invalid" |
| 518 | "uid or gid ignoring!\n"); |
| 519 | } |
J. Bruce Fields | 12fc3e9 | 2012-11-05 16:01:48 -0500 | [diff] [blame] | 520 | } |
J. Bruce Fields | acb2887 | 2012-03-27 14:50:26 -0400 | [diff] [blame] | 521 | break; |
| 522 | case RPC_AUTH_GSS: |
| 523 | dprintk("RPC_AUTH_GSS callback secflavor " |
| 524 | "not supported!\n"); |
| 525 | READ_BUF(8); |
| 526 | /* gcbp_service */ |
| 527 | READ32(dummy); |
| 528 | /* gcbp_handle_from_server */ |
| 529 | READ32(dummy); |
| 530 | READ_BUF(dummy); |
| 531 | p += XDR_QUADLEN(dummy); |
| 532 | /* gcbp_handle_from_client */ |
| 533 | READ_BUF(4); |
| 534 | READ32(dummy); |
| 535 | READ_BUF(dummy); |
| 536 | break; |
| 537 | default: |
| 538 | dprintk("Illegal callback secflavor\n"); |
| 539 | return nfserr_inval; |
| 540 | } |
| 541 | } |
| 542 | DECODE_TAIL; |
| 543 | } |
| 544 | |
J. Bruce Fields | cb73a9f | 2012-11-01 18:09:48 -0400 | [diff] [blame] | 545 | static __be32 nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs *argp, struct nfsd4_backchannel_ctl *bc) |
| 546 | { |
| 547 | DECODE_HEAD; |
| 548 | |
| 549 | READ_BUF(4); |
| 550 | READ32(bc->bc_cb_program); |
| 551 | nfsd4_decode_cb_sec(argp, &bc->bc_cb_sec); |
| 552 | |
| 553 | DECODE_TAIL; |
| 554 | } |
| 555 | |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 556 | static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts) |
| 557 | { |
| 558 | DECODE_HEAD; |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 559 | |
| 560 | READ_BUF(NFS4_MAX_SESSIONID_LEN + 8); |
| 561 | COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN); |
| 562 | READ32(bcts->dir); |
Bryan Schumaker | 6ce2357 | 2011-04-27 15:47:16 -0400 | [diff] [blame] | 563 | /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker |
| 564 | * could help us figure out we should be using it. */ |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 565 | DECODE_TAIL; |
| 566 | } |
| 567 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 568 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close) |
| 570 | { |
| 571 | DECODE_HEAD; |
| 572 | |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 573 | READ_BUF(4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | READ32(close->cl_seqid); |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 575 | return nfsd4_decode_stateid(argp, &close->cl_stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
| 577 | DECODE_TAIL; |
| 578 | } |
| 579 | |
| 580 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 581 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit) |
| 583 | { |
| 584 | DECODE_HEAD; |
| 585 | |
| 586 | READ_BUF(12); |
| 587 | READ64(commit->co_offset); |
| 588 | READ32(commit->co_count); |
| 589 | |
| 590 | DECODE_TAIL; |
| 591 | } |
| 592 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 593 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create) |
| 595 | { |
| 596 | DECODE_HEAD; |
| 597 | |
| 598 | READ_BUF(4); |
| 599 | READ32(create->cr_type); |
| 600 | switch (create->cr_type) { |
| 601 | case NF4LNK: |
| 602 | READ_BUF(4); |
| 603 | READ32(create->cr_linklen); |
| 604 | READ_BUF(create->cr_linklen); |
| 605 | SAVEMEM(create->cr_linkname, create->cr_linklen); |
| 606 | break; |
| 607 | case NF4BLK: |
| 608 | case NF4CHR: |
| 609 | READ_BUF(8); |
| 610 | READ32(create->cr_specdata1); |
| 611 | READ32(create->cr_specdata2); |
| 612 | break; |
| 613 | case NF4SOCK: |
| 614 | case NF4FIFO: |
| 615 | case NF4DIR: |
| 616 | default: |
| 617 | break; |
| 618 | } |
| 619 | |
| 620 | READ_BUF(4); |
| 621 | READ32(create->cr_namelen); |
| 622 | READ_BUF(create->cr_namelen); |
| 623 | SAVEMEM(create->cr_name, create->cr_namelen); |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 624 | if ((status = check_filename(create->cr_name, create->cr_namelen))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | return status; |
| 626 | |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 627 | status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr, |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 628 | &create->cr_acl, &create->cr_label); |
Benny Halevy | c0d6fc8 | 2009-04-03 08:29:05 +0300 | [diff] [blame] | 629 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | goto out; |
| 631 | |
| 632 | DECODE_TAIL; |
| 633 | } |
| 634 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 635 | static inline __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr) |
| 637 | { |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 638 | return nfsd4_decode_stateid(argp, &dr->dr_stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 641 | static inline __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr) |
| 643 | { |
| 644 | return nfsd4_decode_bitmap(argp, getattr->ga_bmval); |
| 645 | } |
| 646 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 647 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link) |
| 649 | { |
| 650 | DECODE_HEAD; |
| 651 | |
| 652 | READ_BUF(4); |
| 653 | READ32(link->li_namelen); |
| 654 | READ_BUF(link->li_namelen); |
| 655 | SAVEMEM(link->li_name, link->li_namelen); |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 656 | if ((status = check_filename(link->li_name, link->li_namelen))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | return status; |
| 658 | |
| 659 | DECODE_TAIL; |
| 660 | } |
| 661 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 662 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock) |
| 664 | { |
| 665 | DECODE_HEAD; |
| 666 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | /* |
| 668 | * type, reclaim(boolean), offset, length, new_lock_owner(boolean) |
| 669 | */ |
| 670 | READ_BUF(28); |
| 671 | READ32(lock->lk_type); |
| 672 | if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT)) |
| 673 | goto xdr_error; |
| 674 | READ32(lock->lk_reclaim); |
| 675 | READ64(lock->lk_offset); |
| 676 | READ64(lock->lk_length); |
| 677 | READ32(lock->lk_is_new); |
| 678 | |
| 679 | if (lock->lk_is_new) { |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 680 | READ_BUF(4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | READ32(lock->lk_new_open_seqid); |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 682 | status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid); |
| 683 | if (status) |
| 684 | return status; |
| 685 | READ_BUF(8 + sizeof(clientid_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | READ32(lock->lk_new_lock_seqid); |
| 687 | COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t)); |
| 688 | READ32(lock->lk_new_owner.len); |
| 689 | READ_BUF(lock->lk_new_owner.len); |
| 690 | READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len); |
| 691 | } else { |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 692 | status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid); |
| 693 | if (status) |
| 694 | return status; |
| 695 | READ_BUF(4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | READ32(lock->lk_old_lock_seqid); |
| 697 | } |
| 698 | |
| 699 | DECODE_TAIL; |
| 700 | } |
| 701 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 702 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt) |
| 704 | { |
| 705 | DECODE_HEAD; |
| 706 | |
| 707 | READ_BUF(32); |
| 708 | READ32(lockt->lt_type); |
| 709 | if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT)) |
| 710 | goto xdr_error; |
| 711 | READ64(lockt->lt_offset); |
| 712 | READ64(lockt->lt_length); |
| 713 | COPYMEM(&lockt->lt_clientid, 8); |
| 714 | READ32(lockt->lt_owner.len); |
| 715 | READ_BUF(lockt->lt_owner.len); |
| 716 | READMEM(lockt->lt_owner.data, lockt->lt_owner.len); |
| 717 | |
| 718 | DECODE_TAIL; |
| 719 | } |
| 720 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 721 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku) |
| 723 | { |
| 724 | DECODE_HEAD; |
| 725 | |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 726 | READ_BUF(8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | READ32(locku->lu_type); |
| 728 | if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT)) |
| 729 | goto xdr_error; |
| 730 | READ32(locku->lu_seqid); |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 731 | status = nfsd4_decode_stateid(argp, &locku->lu_stateid); |
| 732 | if (status) |
| 733 | return status; |
| 734 | READ_BUF(16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | READ64(locku->lu_offset); |
| 736 | READ64(locku->lu_length); |
| 737 | |
| 738 | DECODE_TAIL; |
| 739 | } |
| 740 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 741 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup) |
| 743 | { |
| 744 | DECODE_HEAD; |
| 745 | |
| 746 | READ_BUF(4); |
| 747 | READ32(lookup->lo_len); |
| 748 | READ_BUF(lookup->lo_len); |
| 749 | SAVEMEM(lookup->lo_name, lookup->lo_len); |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 750 | if ((status = check_filename(lookup->lo_name, lookup->lo_len))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | return status; |
| 752 | |
| 753 | DECODE_TAIL; |
| 754 | } |
| 755 | |
Benny Halevy | 2c8bd7e | 2012-02-16 20:57:09 +0200 | [diff] [blame] | 756 | static __be32 nfsd4_decode_share_access(struct nfsd4_compoundargs *argp, u32 *share_access, u32 *deleg_want, u32 *deleg_when) |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 757 | { |
| 758 | __be32 *p; |
| 759 | u32 w; |
| 760 | |
| 761 | READ_BUF(4); |
| 762 | READ32(w); |
Benny Halevy | 2c8bd7e | 2012-02-16 20:57:09 +0200 | [diff] [blame] | 763 | *share_access = w & NFS4_SHARE_ACCESS_MASK; |
| 764 | *deleg_want = w & NFS4_SHARE_WANT_MASK; |
| 765 | if (deleg_when) |
| 766 | *deleg_when = w & NFS4_SHARE_WHEN_MASK; |
| 767 | |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 768 | switch (w & NFS4_SHARE_ACCESS_MASK) { |
| 769 | case NFS4_SHARE_ACCESS_READ: |
| 770 | case NFS4_SHARE_ACCESS_WRITE: |
| 771 | case NFS4_SHARE_ACCESS_BOTH: |
| 772 | break; |
| 773 | default: |
| 774 | return nfserr_bad_xdr; |
| 775 | } |
Benny Halevy | fc0d14f | 2011-10-27 20:43:01 +0200 | [diff] [blame] | 776 | w &= ~NFS4_SHARE_ACCESS_MASK; |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 777 | if (!w) |
| 778 | return nfs_ok; |
| 779 | if (!argp->minorversion) |
| 780 | return nfserr_bad_xdr; |
| 781 | switch (w & NFS4_SHARE_WANT_MASK) { |
| 782 | case NFS4_SHARE_WANT_NO_PREFERENCE: |
| 783 | case NFS4_SHARE_WANT_READ_DELEG: |
| 784 | case NFS4_SHARE_WANT_WRITE_DELEG: |
| 785 | case NFS4_SHARE_WANT_ANY_DELEG: |
| 786 | case NFS4_SHARE_WANT_NO_DELEG: |
| 787 | case NFS4_SHARE_WANT_CANCEL: |
| 788 | break; |
| 789 | default: |
| 790 | return nfserr_bad_xdr; |
| 791 | } |
Benny Halevy | 92bac8c | 2011-10-19 19:13:29 -0700 | [diff] [blame] | 792 | w &= ~NFS4_SHARE_WANT_MASK; |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 793 | if (!w) |
| 794 | return nfs_ok; |
Benny Halevy | 2c8bd7e | 2012-02-16 20:57:09 +0200 | [diff] [blame] | 795 | |
| 796 | if (!deleg_when) /* open_downgrade */ |
| 797 | return nfserr_inval; |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 798 | switch (w) { |
| 799 | case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL: |
| 800 | case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED: |
Benny Halevy | c668fc6 | 2011-10-19 19:13:13 -0700 | [diff] [blame] | 801 | case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL | |
| 802 | NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED): |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 803 | return nfs_ok; |
| 804 | } |
| 805 | xdr_error: |
| 806 | return nfserr_bad_xdr; |
| 807 | } |
| 808 | |
| 809 | static __be32 nfsd4_decode_share_deny(struct nfsd4_compoundargs *argp, u32 *x) |
| 810 | { |
| 811 | __be32 *p; |
| 812 | |
| 813 | READ_BUF(4); |
| 814 | READ32(*x); |
| 815 | /* Note: unlinke access bits, deny bits may be zero. */ |
Dan Carpenter | 01cd4af | 2011-10-17 10:41:17 +0300 | [diff] [blame] | 816 | if (*x & ~NFS4_SHARE_DENY_BOTH) |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 817 | return nfserr_bad_xdr; |
| 818 | return nfs_ok; |
| 819 | xdr_error: |
| 820 | return nfserr_bad_xdr; |
| 821 | } |
| 822 | |
J. Bruce Fields | a084daf | 2011-10-10 15:07:40 -0400 | [diff] [blame] | 823 | static __be32 nfsd4_decode_opaque(struct nfsd4_compoundargs *argp, struct xdr_netobj *o) |
| 824 | { |
| 825 | __be32 *p; |
| 826 | |
| 827 | READ_BUF(4); |
| 828 | READ32(o->len); |
| 829 | |
| 830 | if (o->len == 0 || o->len > NFS4_OPAQUE_LIMIT) |
| 831 | return nfserr_bad_xdr; |
| 832 | |
| 833 | READ_BUF(o->len); |
| 834 | SAVEMEM(o->data, o->len); |
| 835 | return nfs_ok; |
| 836 | xdr_error: |
| 837 | return nfserr_bad_xdr; |
| 838 | } |
| 839 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 840 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open) |
| 842 | { |
| 843 | DECODE_HEAD; |
Benny Halevy | 2c8bd7e | 2012-02-16 20:57:09 +0200 | [diff] [blame] | 844 | u32 dummy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
| 846 | memset(open->op_bmval, 0, sizeof(open->op_bmval)); |
| 847 | open->op_iattr.ia_valid = 0; |
J. Bruce Fields | fe0750e | 2011-07-30 23:33:59 -0400 | [diff] [blame] | 848 | open->op_openowner = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | |
J. Bruce Fields | 9d313b1 | 2013-02-28 12:51:49 -0800 | [diff] [blame] | 850 | open->op_xdr_error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | /* seqid, share_access, share_deny, clientid, ownerlen */ |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 852 | READ_BUF(4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | READ32(open->op_seqid); |
Benny Halevy | 2c8bd7e | 2012-02-16 20:57:09 +0200 | [diff] [blame] | 854 | /* decode, yet ignore deleg_when until supported */ |
| 855 | status = nfsd4_decode_share_access(argp, &open->op_share_access, |
| 856 | &open->op_deleg_want, &dummy); |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 857 | if (status) |
| 858 | goto xdr_error; |
| 859 | status = nfsd4_decode_share_deny(argp, &open->op_share_deny); |
| 860 | if (status) |
| 861 | goto xdr_error; |
J. Bruce Fields | a084daf | 2011-10-10 15:07:40 -0400 | [diff] [blame] | 862 | READ_BUF(sizeof(clientid_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | COPYMEM(&open->op_clientid, sizeof(clientid_t)); |
J. Bruce Fields | a084daf | 2011-10-10 15:07:40 -0400 | [diff] [blame] | 864 | status = nfsd4_decode_opaque(argp, &open->op_owner); |
| 865 | if (status) |
| 866 | goto xdr_error; |
| 867 | READ_BUF(4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | READ32(open->op_create); |
| 869 | switch (open->op_create) { |
| 870 | case NFS4_OPEN_NOCREATE: |
| 871 | break; |
| 872 | case NFS4_OPEN_CREATE: |
| 873 | READ_BUF(4); |
| 874 | READ32(open->op_createmode); |
| 875 | switch (open->op_createmode) { |
| 876 | case NFS4_CREATE_UNCHECKED: |
| 877 | case NFS4_CREATE_GUARDED: |
Benny Halevy | c0d6fc8 | 2009-04-03 08:29:05 +0300 | [diff] [blame] | 878 | status = nfsd4_decode_fattr(argp, open->op_bmval, |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 879 | &open->op_iattr, &open->op_acl, &open->op_label); |
Benny Halevy | c0d6fc8 | 2009-04-03 08:29:05 +0300 | [diff] [blame] | 880 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | goto out; |
| 882 | break; |
| 883 | case NFS4_CREATE_EXCLUSIVE: |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 884 | READ_BUF(NFS4_VERIFIER_SIZE); |
| 885 | COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | break; |
Benny Halevy | 79fb54a | 2009-04-03 08:29:17 +0300 | [diff] [blame] | 887 | case NFS4_CREATE_EXCLUSIVE4_1: |
| 888 | if (argp->minorversion < 1) |
| 889 | goto xdr_error; |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 890 | READ_BUF(NFS4_VERIFIER_SIZE); |
| 891 | COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE); |
Benny Halevy | 79fb54a | 2009-04-03 08:29:17 +0300 | [diff] [blame] | 892 | status = nfsd4_decode_fattr(argp, open->op_bmval, |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 893 | &open->op_iattr, &open->op_acl, &open->op_label); |
Benny Halevy | 79fb54a | 2009-04-03 08:29:17 +0300 | [diff] [blame] | 894 | if (status) |
| 895 | goto out; |
| 896 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | default: |
| 898 | goto xdr_error; |
| 899 | } |
| 900 | break; |
| 901 | default: |
| 902 | goto xdr_error; |
| 903 | } |
| 904 | |
| 905 | /* open_claim */ |
| 906 | READ_BUF(4); |
| 907 | READ32(open->op_claim_type); |
| 908 | switch (open->op_claim_type) { |
| 909 | case NFS4_OPEN_CLAIM_NULL: |
| 910 | case NFS4_OPEN_CLAIM_DELEGATE_PREV: |
| 911 | READ_BUF(4); |
| 912 | READ32(open->op_fname.len); |
| 913 | READ_BUF(open->op_fname.len); |
| 914 | SAVEMEM(open->op_fname.data, open->op_fname.len); |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 915 | if ((status = check_filename(open->op_fname.data, open->op_fname.len))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | return status; |
| 917 | break; |
| 918 | case NFS4_OPEN_CLAIM_PREVIOUS: |
| 919 | READ_BUF(4); |
| 920 | READ32(open->op_delegate_type); |
| 921 | break; |
| 922 | case NFS4_OPEN_CLAIM_DELEGATE_CUR: |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 923 | status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid); |
| 924 | if (status) |
| 925 | return status; |
| 926 | READ_BUF(4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | READ32(open->op_fname.len); |
| 928 | READ_BUF(open->op_fname.len); |
| 929 | SAVEMEM(open->op_fname.data, open->op_fname.len); |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 930 | if ((status = check_filename(open->op_fname.data, open->op_fname.len))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | return status; |
| 932 | break; |
J. Bruce Fields | 8b289b2 | 2011-10-19 11:52:12 -0400 | [diff] [blame] | 933 | case NFS4_OPEN_CLAIM_FH: |
| 934 | case NFS4_OPEN_CLAIM_DELEG_PREV_FH: |
| 935 | if (argp->minorversion < 1) |
| 936 | goto xdr_error; |
| 937 | /* void */ |
| 938 | break; |
| 939 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: |
| 940 | if (argp->minorversion < 1) |
| 941 | goto xdr_error; |
| 942 | status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid); |
| 943 | if (status) |
| 944 | return status; |
| 945 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | default: |
| 947 | goto xdr_error; |
| 948 | } |
| 949 | |
| 950 | DECODE_TAIL; |
| 951 | } |
| 952 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 953 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf) |
| 955 | { |
| 956 | DECODE_HEAD; |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 957 | |
| 958 | if (argp->minorversion >= 1) |
| 959 | return nfserr_notsupp; |
| 960 | |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 961 | status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid); |
| 962 | if (status) |
| 963 | return status; |
| 964 | READ_BUF(4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | READ32(open_conf->oc_seqid); |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | DECODE_TAIL; |
| 968 | } |
| 969 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 970 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down) |
| 972 | { |
| 973 | DECODE_HEAD; |
| 974 | |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 975 | status = nfsd4_decode_stateid(argp, &open_down->od_stateid); |
| 976 | if (status) |
| 977 | return status; |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 978 | READ_BUF(4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | READ32(open_down->od_seqid); |
Benny Halevy | 2c8bd7e | 2012-02-16 20:57:09 +0200 | [diff] [blame] | 980 | status = nfsd4_decode_share_access(argp, &open_down->od_share_access, |
| 981 | &open_down->od_deleg_want, NULL); |
J. Bruce Fields | 04f9e66 | 2011-10-10 14:37:13 -0400 | [diff] [blame] | 982 | if (status) |
| 983 | return status; |
| 984 | status = nfsd4_decode_share_deny(argp, &open_down->od_share_deny); |
| 985 | if (status) |
| 986 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | DECODE_TAIL; |
| 988 | } |
| 989 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 990 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh) |
| 992 | { |
| 993 | DECODE_HEAD; |
| 994 | |
| 995 | READ_BUF(4); |
| 996 | READ32(putfh->pf_fhlen); |
| 997 | if (putfh->pf_fhlen > NFS4_FHSIZE) |
| 998 | goto xdr_error; |
| 999 | READ_BUF(putfh->pf_fhlen); |
| 1000 | SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen); |
| 1001 | |
| 1002 | DECODE_TAIL; |
| 1003 | } |
| 1004 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1005 | static __be32 |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1006 | nfsd4_decode_putpubfh(struct nfsd4_compoundargs *argp, void *p) |
| 1007 | { |
| 1008 | if (argp->minorversion == 0) |
| 1009 | return nfs_ok; |
| 1010 | return nfserr_notsupp; |
| 1011 | } |
| 1012 | |
| 1013 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read) |
| 1015 | { |
| 1016 | DECODE_HEAD; |
| 1017 | |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 1018 | status = nfsd4_decode_stateid(argp, &read->rd_stateid); |
| 1019 | if (status) |
| 1020 | return status; |
| 1021 | READ_BUF(12); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | READ64(read->rd_offset); |
| 1023 | READ32(read->rd_length); |
| 1024 | |
| 1025 | DECODE_TAIL; |
| 1026 | } |
| 1027 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1028 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir) |
| 1030 | { |
| 1031 | DECODE_HEAD; |
| 1032 | |
| 1033 | READ_BUF(24); |
| 1034 | READ64(readdir->rd_cookie); |
| 1035 | COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data)); |
| 1036 | READ32(readdir->rd_dircount); /* just in case you needed a useless field... */ |
| 1037 | READ32(readdir->rd_maxcount); |
| 1038 | if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval))) |
| 1039 | goto out; |
| 1040 | |
| 1041 | DECODE_TAIL; |
| 1042 | } |
| 1043 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1044 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove) |
| 1046 | { |
| 1047 | DECODE_HEAD; |
| 1048 | |
| 1049 | READ_BUF(4); |
| 1050 | READ32(remove->rm_namelen); |
| 1051 | READ_BUF(remove->rm_namelen); |
| 1052 | SAVEMEM(remove->rm_name, remove->rm_namelen); |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 1053 | if ((status = check_filename(remove->rm_name, remove->rm_namelen))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | return status; |
| 1055 | |
| 1056 | DECODE_TAIL; |
| 1057 | } |
| 1058 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1059 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename) |
| 1061 | { |
| 1062 | DECODE_HEAD; |
| 1063 | |
| 1064 | READ_BUF(4); |
| 1065 | READ32(rename->rn_snamelen); |
| 1066 | READ_BUF(rename->rn_snamelen + 4); |
| 1067 | SAVEMEM(rename->rn_sname, rename->rn_snamelen); |
| 1068 | READ32(rename->rn_tnamelen); |
| 1069 | READ_BUF(rename->rn_tnamelen); |
| 1070 | SAVEMEM(rename->rn_tname, rename->rn_tnamelen); |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 1071 | if ((status = check_filename(rename->rn_sname, rename->rn_snamelen))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | return status; |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 1073 | if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | return status; |
| 1075 | |
| 1076 | DECODE_TAIL; |
| 1077 | } |
| 1078 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1079 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid) |
| 1081 | { |
| 1082 | DECODE_HEAD; |
| 1083 | |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1084 | if (argp->minorversion >= 1) |
| 1085 | return nfserr_notsupp; |
| 1086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | READ_BUF(sizeof(clientid_t)); |
| 1088 | COPYMEM(clientid, sizeof(clientid_t)); |
| 1089 | |
| 1090 | DECODE_TAIL; |
| 1091 | } |
| 1092 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1093 | static __be32 |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 1094 | nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp, |
| 1095 | struct nfsd4_secinfo *secinfo) |
| 1096 | { |
| 1097 | DECODE_HEAD; |
| 1098 | |
| 1099 | READ_BUF(4); |
| 1100 | READ32(secinfo->si_namelen); |
| 1101 | READ_BUF(secinfo->si_namelen); |
| 1102 | SAVEMEM(secinfo->si_name, secinfo->si_namelen); |
J. Bruce Fields | a36b172 | 2012-11-25 16:31:00 -0500 | [diff] [blame] | 1103 | status = check_filename(secinfo->si_name, secinfo->si_namelen); |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 1104 | if (status) |
| 1105 | return status; |
| 1106 | DECODE_TAIL; |
| 1107 | } |
| 1108 | |
| 1109 | static __be32 |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 1110 | nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp, |
| 1111 | struct nfsd4_secinfo_no_name *sin) |
| 1112 | { |
| 1113 | DECODE_HEAD; |
| 1114 | |
| 1115 | READ_BUF(4); |
| 1116 | READ32(sin->sin_style); |
| 1117 | DECODE_TAIL; |
| 1118 | } |
| 1119 | |
| 1120 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr) |
| 1122 | { |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 1123 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 1125 | status = nfsd4_decode_stateid(argp, &setattr->sa_stateid); |
| 1126 | if (status) |
| 1127 | return status; |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 1128 | return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr, |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 1129 | &setattr->sa_acl, &setattr->sa_label); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | } |
| 1131 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1132 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid) |
| 1134 | { |
| 1135 | DECODE_HEAD; |
| 1136 | |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1137 | if (argp->minorversion >= 1) |
| 1138 | return nfserr_notsupp; |
| 1139 | |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 1140 | READ_BUF(NFS4_VERIFIER_SIZE); |
| 1141 | COPYMEM(setclientid->se_verf.data, NFS4_VERIFIER_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | |
J. Bruce Fields | a084daf | 2011-10-10 15:07:40 -0400 | [diff] [blame] | 1143 | status = nfsd4_decode_opaque(argp, &setclientid->se_name); |
| 1144 | if (status) |
| 1145 | return nfserr_bad_xdr; |
| 1146 | READ_BUF(8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | READ32(setclientid->se_callback_prog); |
| 1148 | READ32(setclientid->se_callback_netid_len); |
| 1149 | |
| 1150 | READ_BUF(setclientid->se_callback_netid_len + 4); |
| 1151 | SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len); |
| 1152 | READ32(setclientid->se_callback_addr_len); |
| 1153 | |
| 1154 | READ_BUF(setclientid->se_callback_addr_len + 4); |
| 1155 | SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len); |
| 1156 | READ32(setclientid->se_callback_ident); |
| 1157 | |
| 1158 | DECODE_TAIL; |
| 1159 | } |
| 1160 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1161 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c) |
| 1163 | { |
| 1164 | DECODE_HEAD; |
| 1165 | |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1166 | if (argp->minorversion >= 1) |
| 1167 | return nfserr_notsupp; |
| 1168 | |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 1169 | READ_BUF(8 + NFS4_VERIFIER_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | COPYMEM(&scd_c->sc_clientid, 8); |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 1171 | COPYMEM(&scd_c->sc_confirm, NFS4_VERIFIER_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | |
| 1173 | DECODE_TAIL; |
| 1174 | } |
| 1175 | |
| 1176 | /* Also used for NVERIFY */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1177 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify) |
| 1179 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | DECODE_HEAD; |
| 1181 | |
| 1182 | if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval))) |
| 1183 | goto out; |
| 1184 | |
| 1185 | /* For convenience's sake, we compare raw xdr'd attributes in |
J. Bruce Fields | e5f9570 | 2012-11-30 17:24:18 -0500 | [diff] [blame] | 1186 | * nfsd4_proc_verify */ |
| 1187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | READ_BUF(4); |
| 1189 | READ32(verify->ve_attrlen); |
| 1190 | READ_BUF(verify->ve_attrlen); |
| 1191 | SAVEMEM(verify->ve_attrval, verify->ve_attrlen); |
| 1192 | |
| 1193 | DECODE_TAIL; |
| 1194 | } |
| 1195 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1196 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write) |
| 1198 | { |
| 1199 | int avail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | int len; |
| 1201 | DECODE_HEAD; |
| 1202 | |
Benny Halevy | e31a1b6 | 2008-08-12 20:46:18 +0300 | [diff] [blame] | 1203 | status = nfsd4_decode_stateid(argp, &write->wr_stateid); |
| 1204 | if (status) |
| 1205 | return status; |
| 1206 | READ_BUF(16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | READ64(write->wr_offset); |
| 1208 | READ32(write->wr_stable_how); |
| 1209 | if (write->wr_stable_how > 2) |
| 1210 | goto xdr_error; |
| 1211 | READ32(write->wr_buflen); |
| 1212 | |
| 1213 | /* Sorry .. no magic macros for this.. * |
| 1214 | * READ_BUF(write->wr_buflen); |
| 1215 | * SAVEMEM(write->wr_buf, write->wr_buflen); |
| 1216 | */ |
| 1217 | avail = (char*)argp->end - (char*)argp->p; |
| 1218 | if (avail + argp->pagelen < write->wr_buflen) { |
Chuck Lever | 817cb9d | 2007-09-11 18:01:20 -0400 | [diff] [blame] | 1219 | dprintk("NFSD: xdr error (%s:%d)\n", |
| 1220 | __FILE__, __LINE__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | goto xdr_error; |
| 1222 | } |
J. Bruce Fields | 70cc7f7 | 2012-11-16 14:16:46 -0500 | [diff] [blame] | 1223 | write->wr_head.iov_base = p; |
| 1224 | write->wr_head.iov_len = avail; |
J. Bruce Fields | 70cc7f7 | 2012-11-16 14:16:46 -0500 | [diff] [blame] | 1225 | write->wr_pagelist = argp->pagelist; |
J. Bruce Fields | 5a80a54 | 2012-11-16 10:01:30 -0500 | [diff] [blame] | 1226 | |
| 1227 | len = XDR_QUADLEN(write->wr_buflen) << 2; |
| 1228 | if (len >= avail) { |
| 1229 | int pages; |
| 1230 | |
| 1231 | len -= avail; |
| 1232 | |
| 1233 | pages = len >> PAGE_SHIFT; |
| 1234 | argp->pagelist += pages; |
| 1235 | argp->pagelen -= pages * PAGE_SIZE; |
| 1236 | len -= pages * PAGE_SIZE; |
| 1237 | |
| 1238 | argp->p = (__be32 *)page_address(argp->pagelist[0]); |
J. Bruce Fields | 365da4a | 2013-11-19 17:32:43 -0500 | [diff] [blame] | 1239 | argp->pagelist++; |
J. Bruce Fields | 5a80a54 | 2012-11-16 10:01:30 -0500 | [diff] [blame] | 1240 | argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | } |
J. Bruce Fields | 5a80a54 | 2012-11-16 10:01:30 -0500 | [diff] [blame] | 1242 | argp->p += XDR_QUADLEN(len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | |
| 1244 | DECODE_TAIL; |
| 1245 | } |
| 1246 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1247 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner) |
| 1249 | { |
| 1250 | DECODE_HEAD; |
| 1251 | |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1252 | if (argp->minorversion >= 1) |
| 1253 | return nfserr_notsupp; |
| 1254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | READ_BUF(12); |
| 1256 | COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t)); |
| 1257 | READ32(rlockowner->rl_owner.len); |
| 1258 | READ_BUF(rlockowner->rl_owner.len); |
| 1259 | READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len); |
| 1260 | |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 1261 | if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid)) |
| 1262 | return nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | DECODE_TAIL; |
| 1264 | } |
| 1265 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1266 | static __be32 |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1267 | nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp, |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1268 | struct nfsd4_exchange_id *exid) |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1269 | { |
Mi Jinlong | 5afa040 | 2010-11-09 09:39:23 +0800 | [diff] [blame] | 1270 | int dummy, tmp; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1271 | DECODE_HEAD; |
| 1272 | |
| 1273 | READ_BUF(NFS4_VERIFIER_SIZE); |
| 1274 | COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE); |
| 1275 | |
J. Bruce Fields | a084daf | 2011-10-10 15:07:40 -0400 | [diff] [blame] | 1276 | status = nfsd4_decode_opaque(argp, &exid->clname); |
| 1277 | if (status) |
| 1278 | return nfserr_bad_xdr; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1279 | |
| 1280 | READ_BUF(4); |
| 1281 | READ32(exid->flags); |
| 1282 | |
| 1283 | /* Ignore state_protect4_a */ |
| 1284 | READ_BUF(4); |
| 1285 | READ32(exid->spa_how); |
| 1286 | switch (exid->spa_how) { |
| 1287 | case SP4_NONE: |
| 1288 | break; |
| 1289 | case SP4_MACH_CRED: |
| 1290 | /* spo_must_enforce */ |
| 1291 | READ_BUF(4); |
| 1292 | READ32(dummy); |
| 1293 | READ_BUF(dummy * 4); |
| 1294 | p += dummy; |
| 1295 | |
| 1296 | /* spo_must_allow */ |
| 1297 | READ_BUF(4); |
| 1298 | READ32(dummy); |
| 1299 | READ_BUF(dummy * 4); |
| 1300 | p += dummy; |
| 1301 | break; |
| 1302 | case SP4_SSV: |
| 1303 | /* ssp_ops */ |
| 1304 | READ_BUF(4); |
| 1305 | READ32(dummy); |
| 1306 | READ_BUF(dummy * 4); |
| 1307 | p += dummy; |
| 1308 | |
| 1309 | READ_BUF(4); |
| 1310 | READ32(dummy); |
| 1311 | READ_BUF(dummy * 4); |
| 1312 | p += dummy; |
| 1313 | |
| 1314 | /* ssp_hash_algs<> */ |
| 1315 | READ_BUF(4); |
Mi Jinlong | 5afa040 | 2010-11-09 09:39:23 +0800 | [diff] [blame] | 1316 | READ32(tmp); |
| 1317 | while (tmp--) { |
| 1318 | READ_BUF(4); |
| 1319 | READ32(dummy); |
| 1320 | READ_BUF(dummy); |
| 1321 | p += XDR_QUADLEN(dummy); |
| 1322 | } |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1323 | |
| 1324 | /* ssp_encr_algs<> */ |
| 1325 | READ_BUF(4); |
Mi Jinlong | 5afa040 | 2010-11-09 09:39:23 +0800 | [diff] [blame] | 1326 | READ32(tmp); |
| 1327 | while (tmp--) { |
| 1328 | READ_BUF(4); |
| 1329 | READ32(dummy); |
| 1330 | READ_BUF(dummy); |
| 1331 | p += XDR_QUADLEN(dummy); |
| 1332 | } |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1333 | |
| 1334 | /* ssp_window and ssp_num_gss_handles */ |
| 1335 | READ_BUF(8); |
| 1336 | READ32(dummy); |
| 1337 | READ32(dummy); |
| 1338 | break; |
| 1339 | default: |
| 1340 | goto xdr_error; |
| 1341 | } |
| 1342 | |
| 1343 | /* Ignore Implementation ID */ |
| 1344 | READ_BUF(4); /* nfs_impl_id4 array length */ |
| 1345 | READ32(dummy); |
| 1346 | |
| 1347 | if (dummy > 1) |
| 1348 | goto xdr_error; |
| 1349 | |
| 1350 | if (dummy == 1) { |
| 1351 | /* nii_domain */ |
| 1352 | READ_BUF(4); |
| 1353 | READ32(dummy); |
| 1354 | READ_BUF(dummy); |
| 1355 | p += XDR_QUADLEN(dummy); |
| 1356 | |
| 1357 | /* nii_name */ |
| 1358 | READ_BUF(4); |
| 1359 | READ32(dummy); |
| 1360 | READ_BUF(dummy); |
| 1361 | p += XDR_QUADLEN(dummy); |
| 1362 | |
| 1363 | /* nii_date */ |
| 1364 | READ_BUF(12); |
| 1365 | p += 3; |
| 1366 | } |
| 1367 | DECODE_TAIL; |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1368 | } |
| 1369 | |
| 1370 | static __be32 |
| 1371 | nfsd4_decode_create_session(struct nfsd4_compoundargs *argp, |
| 1372 | struct nfsd4_create_session *sess) |
| 1373 | { |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1374 | DECODE_HEAD; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1375 | u32 dummy; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1376 | |
| 1377 | READ_BUF(16); |
| 1378 | COPYMEM(&sess->clientid, 8); |
| 1379 | READ32(sess->seqid); |
| 1380 | READ32(sess->flags); |
| 1381 | |
| 1382 | /* Fore channel attrs */ |
| 1383 | READ_BUF(28); |
| 1384 | READ32(dummy); /* headerpadsz is always 0 */ |
| 1385 | READ32(sess->fore_channel.maxreq_sz); |
| 1386 | READ32(sess->fore_channel.maxresp_sz); |
| 1387 | READ32(sess->fore_channel.maxresp_cached); |
| 1388 | READ32(sess->fore_channel.maxops); |
| 1389 | READ32(sess->fore_channel.maxreqs); |
| 1390 | READ32(sess->fore_channel.nr_rdma_attrs); |
| 1391 | if (sess->fore_channel.nr_rdma_attrs == 1) { |
| 1392 | READ_BUF(4); |
| 1393 | READ32(sess->fore_channel.rdma_attrs); |
| 1394 | } else if (sess->fore_channel.nr_rdma_attrs > 1) { |
| 1395 | dprintk("Too many fore channel attr bitmaps!\n"); |
| 1396 | goto xdr_error; |
| 1397 | } |
| 1398 | |
| 1399 | /* Back channel attrs */ |
| 1400 | READ_BUF(28); |
| 1401 | READ32(dummy); /* headerpadsz is always 0 */ |
| 1402 | READ32(sess->back_channel.maxreq_sz); |
| 1403 | READ32(sess->back_channel.maxresp_sz); |
| 1404 | READ32(sess->back_channel.maxresp_cached); |
| 1405 | READ32(sess->back_channel.maxops); |
| 1406 | READ32(sess->back_channel.maxreqs); |
| 1407 | READ32(sess->back_channel.nr_rdma_attrs); |
| 1408 | if (sess->back_channel.nr_rdma_attrs == 1) { |
| 1409 | READ_BUF(4); |
| 1410 | READ32(sess->back_channel.rdma_attrs); |
| 1411 | } else if (sess->back_channel.nr_rdma_attrs > 1) { |
| 1412 | dprintk("Too many back channel attr bitmaps!\n"); |
| 1413 | goto xdr_error; |
| 1414 | } |
| 1415 | |
J. Bruce Fields | acb2887 | 2012-03-27 14:50:26 -0400 | [diff] [blame] | 1416 | READ_BUF(4); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1417 | READ32(sess->callback_prog); |
J. Bruce Fields | acb2887 | 2012-03-27 14:50:26 -0400 | [diff] [blame] | 1418 | nfsd4_decode_cb_sec(argp, &sess->cb_sec); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1419 | DECODE_TAIL; |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1420 | } |
| 1421 | |
| 1422 | static __be32 |
| 1423 | nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp, |
| 1424 | struct nfsd4_destroy_session *destroy_session) |
| 1425 | { |
Benny Halevy | e10e0cf | 2009-04-03 08:28:38 +0300 | [diff] [blame] | 1426 | DECODE_HEAD; |
| 1427 | READ_BUF(NFS4_MAX_SESSIONID_LEN); |
| 1428 | COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN); |
| 1429 | |
| 1430 | DECODE_TAIL; |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1431 | } |
| 1432 | |
| 1433 | static __be32 |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 1434 | nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp, |
| 1435 | struct nfsd4_free_stateid *free_stateid) |
| 1436 | { |
| 1437 | DECODE_HEAD; |
| 1438 | |
| 1439 | READ_BUF(sizeof(stateid_t)); |
| 1440 | READ32(free_stateid->fr_stateid.si_generation); |
| 1441 | COPYMEM(&free_stateid->fr_stateid.si_opaque, sizeof(stateid_opaque_t)); |
| 1442 | |
| 1443 | DECODE_TAIL; |
| 1444 | } |
| 1445 | |
| 1446 | static __be32 |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1447 | nfsd4_decode_sequence(struct nfsd4_compoundargs *argp, |
| 1448 | struct nfsd4_sequence *seq) |
| 1449 | { |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1450 | DECODE_HEAD; |
| 1451 | |
| 1452 | READ_BUF(NFS4_MAX_SESSIONID_LEN + 16); |
| 1453 | COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN); |
| 1454 | READ32(seq->seqid); |
| 1455 | READ32(seq->slotid); |
| 1456 | READ32(seq->maxslots); |
| 1457 | READ32(seq->cachethis); |
| 1458 | |
| 1459 | DECODE_TAIL; |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1460 | } |
| 1461 | |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 1462 | static __be32 |
| 1463 | nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid) |
| 1464 | { |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 1465 | int i; |
Bryan Schumaker | 03cfb42 | 2012-01-27 10:22:49 -0500 | [diff] [blame] | 1466 | __be32 *p, status; |
| 1467 | struct nfsd4_test_stateid_id *stateid; |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 1468 | |
| 1469 | READ_BUF(4); |
| 1470 | test_stateid->ts_num_ids = ntohl(*p++); |
| 1471 | |
Bryan Schumaker | 03cfb42 | 2012-01-27 10:22:49 -0500 | [diff] [blame] | 1472 | INIT_LIST_HEAD(&test_stateid->ts_stateid_list); |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 1473 | |
| 1474 | for (i = 0; i < test_stateid->ts_num_ids; i++) { |
Bryan Schumaker | 03cfb42 | 2012-01-27 10:22:49 -0500 | [diff] [blame] | 1475 | stateid = kmalloc(sizeof(struct nfsd4_test_stateid_id), GFP_KERNEL); |
| 1476 | if (!stateid) { |
Al Viro | afcf679 | 2012-04-13 00:15:37 -0400 | [diff] [blame] | 1477 | status = nfserrno(-ENOMEM); |
Bryan Schumaker | 03cfb42 | 2012-01-27 10:22:49 -0500 | [diff] [blame] | 1478 | goto out; |
| 1479 | } |
| 1480 | |
| 1481 | defer_free(argp, kfree, stateid); |
| 1482 | INIT_LIST_HEAD(&stateid->ts_id_list); |
| 1483 | list_add_tail(&stateid->ts_id_list, &test_stateid->ts_stateid_list); |
| 1484 | |
| 1485 | status = nfsd4_decode_stateid(argp, &stateid->ts_id_stateid); |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 1486 | if (status) |
Bryan Schumaker | 03cfb42 | 2012-01-27 10:22:49 -0500 | [diff] [blame] | 1487 | goto out; |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 1488 | } |
| 1489 | |
| 1490 | status = 0; |
| 1491 | out: |
| 1492 | return status; |
| 1493 | xdr_error: |
| 1494 | dprintk("NFSD: xdr error (%s:%d)\n", __FILE__, __LINE__); |
| 1495 | status = nfserr_bad_xdr; |
| 1496 | goto out; |
| 1497 | } |
| 1498 | |
Mi Jinlong | 345c284 | 2011-10-20 17:51:39 +0800 | [diff] [blame] | 1499 | static __be32 nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs *argp, struct nfsd4_destroy_clientid *dc) |
| 1500 | { |
| 1501 | DECODE_HEAD; |
| 1502 | |
| 1503 | READ_BUF(8); |
| 1504 | COPYMEM(&dc->clientid, 8); |
| 1505 | |
| 1506 | DECODE_TAIL; |
| 1507 | } |
| 1508 | |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1509 | static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc) |
| 1510 | { |
| 1511 | DECODE_HEAD; |
| 1512 | |
| 1513 | READ_BUF(4); |
| 1514 | READ32(rc->rca_one_fs); |
| 1515 | |
| 1516 | DECODE_TAIL; |
| 1517 | } |
| 1518 | |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1519 | static __be32 |
Benny Halevy | 347e0ad | 2008-07-02 11:13:41 +0300 | [diff] [blame] | 1520 | nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p) |
| 1521 | { |
| 1522 | return nfs_ok; |
| 1523 | } |
| 1524 | |
Benny Halevy | 3c375c6 | 2008-07-02 11:14:01 +0300 | [diff] [blame] | 1525 | static __be32 |
| 1526 | nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p) |
| 1527 | { |
Benny Halevy | 1e685ec | 2009-03-04 23:06:06 +0200 | [diff] [blame] | 1528 | return nfserr_notsupp; |
Benny Halevy | 3c375c6 | 2008-07-02 11:14:01 +0300 | [diff] [blame] | 1529 | } |
| 1530 | |
Benny Halevy | 347e0ad | 2008-07-02 11:13:41 +0300 | [diff] [blame] | 1531 | typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *); |
| 1532 | |
| 1533 | static nfsd4_dec nfsd4_dec_ops[] = { |
J. Bruce Fields | ad1060c | 2008-07-18 15:04:16 -0400 | [diff] [blame] | 1534 | [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access, |
| 1535 | [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close, |
| 1536 | [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit, |
| 1537 | [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create, |
| 1538 | [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp, |
| 1539 | [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn, |
| 1540 | [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr, |
| 1541 | [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop, |
| 1542 | [OP_LINK] = (nfsd4_dec)nfsd4_decode_link, |
| 1543 | [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock, |
| 1544 | [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt, |
| 1545 | [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku, |
| 1546 | [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup, |
| 1547 | [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop, |
| 1548 | [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify, |
| 1549 | [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open, |
| 1550 | [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp, |
| 1551 | [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm, |
| 1552 | [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade, |
| 1553 | [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh, |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1554 | [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_putpubfh, |
J. Bruce Fields | ad1060c | 2008-07-18 15:04:16 -0400 | [diff] [blame] | 1555 | [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop, |
| 1556 | [OP_READ] = (nfsd4_dec)nfsd4_decode_read, |
| 1557 | [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir, |
| 1558 | [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop, |
| 1559 | [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove, |
| 1560 | [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename, |
| 1561 | [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew, |
| 1562 | [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop, |
| 1563 | [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop, |
| 1564 | [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo, |
| 1565 | [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr, |
| 1566 | [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid, |
| 1567 | [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm, |
| 1568 | [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify, |
| 1569 | [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write, |
| 1570 | [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1571 | |
| 1572 | /* new operations for NFSv4.1 */ |
J. Bruce Fields | cb73a9f | 2012-11-01 18:09:48 -0400 | [diff] [blame] | 1573 | [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_backchannel_ctl, |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 1574 | [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session, |
Randy Dunlap | 9064caa | 2009-04-28 16:48:25 -0700 | [diff] [blame] | 1575 | [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id, |
| 1576 | [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session, |
| 1577 | [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session, |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 1578 | [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid, |
Randy Dunlap | 9064caa | 2009-04-28 16:48:25 -0700 | [diff] [blame] | 1579 | [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp, |
| 1580 | [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp, |
| 1581 | [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp, |
| 1582 | [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp, |
| 1583 | [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp, |
| 1584 | [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp, |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 1585 | [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name, |
Randy Dunlap | 9064caa | 2009-04-28 16:48:25 -0700 | [diff] [blame] | 1586 | [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence, |
| 1587 | [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp, |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 1588 | [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid, |
Randy Dunlap | 9064caa | 2009-04-28 16:48:25 -0700 | [diff] [blame] | 1589 | [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp, |
Mi Jinlong | 345c284 | 2011-10-20 17:51:39 +0800 | [diff] [blame] | 1590 | [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_destroy_clientid, |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1591 | [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 1592 | }; |
| 1593 | |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1594 | static inline bool |
| 1595 | nfsd4_opnum_in_range(struct nfsd4_compoundargs *argp, struct nfsd4_op *op) |
| 1596 | { |
Anna Schumaker | 8217d14 | 2013-10-30 13:38:13 -0400 | [diff] [blame] | 1597 | if (op->opnum < FIRST_NFS4_OP) |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1598 | return false; |
Anna Schumaker | 8217d14 | 2013-10-30 13:38:13 -0400 | [diff] [blame] | 1599 | else if (argp->minorversion == 0 && op->opnum > LAST_NFS40_OP) |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1600 | return false; |
Anna Schumaker | 8217d14 | 2013-10-30 13:38:13 -0400 | [diff] [blame] | 1601 | else if (argp->minorversion == 1 && op->opnum > LAST_NFS41_OP) |
| 1602 | return false; |
| 1603 | else if (argp->minorversion == 2 && op->opnum > LAST_NFS42_OP) |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1604 | return false; |
| 1605 | return true; |
| 1606 | } |
Benny Halevy | f2feb96 | 2008-07-02 11:14:22 +0300 | [diff] [blame] | 1607 | |
J. Bruce Fields | 6ff40de | 2013-11-05 15:07:16 -0500 | [diff] [blame] | 1608 | /* |
| 1609 | * Return a rough estimate of the maximum possible reply size. Note the |
| 1610 | * estimate includes rpc headers so is meant to be passed to |
| 1611 | * svc_reserve, not svc_reserve_auth. |
| 1612 | * |
| 1613 | * Also note the current compound encoding permits only one operation to |
| 1614 | * use pages beyond the first one, so the maximum possible length is the |
| 1615 | * maximum over these values, not the sum. |
| 1616 | */ |
| 1617 | static int nfsd4_max_reply(u32 opnum) |
| 1618 | { |
| 1619 | switch (opnum) { |
| 1620 | case OP_READLINK: |
| 1621 | case OP_READDIR: |
| 1622 | /* |
| 1623 | * Both of these ops take a single page for data and put |
| 1624 | * the head and tail in another page: |
| 1625 | */ |
| 1626 | return 2 * PAGE_SIZE; |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 1627 | case OP_GETATTR: |
J. Bruce Fields | 6ff40de | 2013-11-05 15:07:16 -0500 | [diff] [blame] | 1628 | case OP_READ: |
| 1629 | return INT_MAX; |
| 1630 | default: |
| 1631 | return PAGE_SIZE; |
| 1632 | } |
| 1633 | } |
| 1634 | |
Benny Halevy | 347e0ad | 2008-07-02 11:13:41 +0300 | [diff] [blame] | 1635 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | nfsd4_decode_compound(struct nfsd4_compoundargs *argp) |
| 1637 | { |
| 1638 | DECODE_HEAD; |
| 1639 | struct nfsd4_op *op; |
J. Bruce Fields | 1091006 | 2011-01-24 12:11:02 -0500 | [diff] [blame] | 1640 | bool cachethis = false; |
J. Bruce Fields | 6ff40de | 2013-11-05 15:07:16 -0500 | [diff] [blame] | 1641 | int max_reply = PAGE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | int i; |
| 1643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | READ_BUF(4); |
| 1645 | READ32(argp->taglen); |
| 1646 | READ_BUF(argp->taglen + 8); |
| 1647 | SAVEMEM(argp->tag, argp->taglen); |
| 1648 | READ32(argp->minorversion); |
| 1649 | READ32(argp->opcnt); |
| 1650 | |
| 1651 | if (argp->taglen > NFSD4_MAX_TAGLEN) |
| 1652 | goto xdr_error; |
| 1653 | if (argp->opcnt > 100) |
| 1654 | goto xdr_error; |
| 1655 | |
Tobias Klauser | e8c96f8 | 2006-03-24 03:15:34 -0800 | [diff] [blame] | 1656 | if (argp->opcnt > ARRAY_SIZE(argp->iops)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL); |
| 1658 | if (!argp->ops) { |
| 1659 | argp->ops = argp->iops; |
Chuck Lever | 817cb9d | 2007-09-11 18:01:20 -0400 | [diff] [blame] | 1660 | dprintk("nfsd: couldn't allocate room for COMPOUND\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | goto xdr_error; |
| 1662 | } |
| 1663 | } |
| 1664 | |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1665 | if (argp->minorversion > NFSD_SUPPORTED_MINOR_VERSION) |
Benny Halevy | 30cff1f | 2008-07-02 11:13:18 +0300 | [diff] [blame] | 1666 | argp->opcnt = 0; |
| 1667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | for (i = 0; i < argp->opcnt; i++) { |
| 1669 | op = &argp->ops[i]; |
| 1670 | op->replay = NULL; |
| 1671 | |
J. Bruce Fields | 8a61b18 | 2012-11-16 22:28:38 -0500 | [diff] [blame] | 1672 | READ_BUF(4); |
| 1673 | READ32(op->opnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | |
Anna Schumaker | e1a90eb | 2013-10-30 10:00:20 -0400 | [diff] [blame] | 1675 | if (nfsd4_opnum_in_range(argp, op)) |
| 1676 | op->status = nfsd4_dec_ops[op->opnum](argp, &op->u); |
Benny Halevy | 347e0ad | 2008-07-02 11:13:41 +0300 | [diff] [blame] | 1677 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | op->opnum = OP_ILLEGAL; |
| 1679 | op->status = nfserr_op_illegal; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | } |
J. Bruce Fields | 1091006 | 2011-01-24 12:11:02 -0500 | [diff] [blame] | 1681 | /* |
| 1682 | * We'll try to cache the result in the DRC if any one |
| 1683 | * op in the compound wants to be cached: |
| 1684 | */ |
| 1685 | cachethis |= nfsd4_cache_this_op(op); |
J. Bruce Fields | 6ff40de | 2013-11-05 15:07:16 -0500 | [diff] [blame] | 1686 | |
| 1687 | max_reply = max(max_reply, nfsd4_max_reply(op->opnum)); |
J. Bruce Fields | e372ba6 | 2014-05-19 12:27:11 -0400 | [diff] [blame] | 1688 | |
| 1689 | if (op->status) { |
| 1690 | argp->opcnt = i+1; |
| 1691 | break; |
| 1692 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | } |
J. Bruce Fields | 1091006 | 2011-01-24 12:11:02 -0500 | [diff] [blame] | 1694 | /* Sessions make the DRC unnecessary: */ |
| 1695 | if (argp->minorversion) |
| 1696 | cachethis = false; |
J. Bruce Fields | 6ff40de | 2013-11-05 15:07:16 -0500 | [diff] [blame] | 1697 | if (max_reply != INT_MAX) |
| 1698 | svc_reserve(argp->rqstp, max_reply); |
J. Bruce Fields | 1091006 | 2011-01-24 12:11:02 -0500 | [diff] [blame] | 1699 | argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | |
| 1701 | DECODE_TAIL; |
| 1702 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | #define WRITE32(n) *p++ = htonl(n) |
| 1705 | #define WRITE64(n) do { \ |
| 1706 | *p++ = htonl((u32)((n) >> 32)); \ |
| 1707 | *p++ = htonl((u32)(n)); \ |
| 1708 | } while (0) |
Harvey Harrison | 5108b27 | 2008-07-17 21:33:04 -0700 | [diff] [blame] | 1709 | #define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | *(p + XDR_QUADLEN(nbytes) -1) = 0; \ |
| 1711 | memcpy(p, ptr, nbytes); \ |
| 1712 | p += XDR_QUADLEN(nbytes); \ |
Harvey Harrison | 5108b27 | 2008-07-17 21:33:04 -0700 | [diff] [blame] | 1713 | }} while (0) |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 1714 | |
| 1715 | static void write32(__be32 **p, u32 n) |
| 1716 | { |
J. Bruce Fields | 45eaa1c | 2012-04-25 18:11:04 -0400 | [diff] [blame] | 1717 | *(*p)++ = htonl(n); |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 1718 | } |
| 1719 | |
| 1720 | static void write64(__be32 **p, u64 n) |
| 1721 | { |
J. Bruce Fields | 45eaa1c | 2012-04-25 18:11:04 -0400 | [diff] [blame] | 1722 | write32(p, (n >> 32)); |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 1723 | write32(p, (u32)n); |
| 1724 | } |
| 1725 | |
| 1726 | static void write_change(__be32 **p, struct kstat *stat, struct inode *inode) |
| 1727 | { |
| 1728 | if (IS_I_VERSION(inode)) { |
| 1729 | write64(p, inode->i_version); |
| 1730 | } else { |
| 1731 | write32(p, stat->ctime.tv_sec); |
| 1732 | write32(p, stat->ctime.tv_nsec); |
| 1733 | } |
| 1734 | } |
| 1735 | |
| 1736 | static void write_cinfo(__be32 **p, struct nfsd4_change_info *c) |
| 1737 | { |
| 1738 | write32(p, c->atomic); |
| 1739 | if (c->change_supported) { |
| 1740 | write64(p, c->before_change); |
| 1741 | write64(p, c->after_change); |
| 1742 | } else { |
| 1743 | write32(p, c->before_ctime_sec); |
| 1744 | write32(p, c->before_ctime_nsec); |
| 1745 | write32(p, c->after_ctime_sec); |
| 1746 | write32(p, c->after_ctime_nsec); |
| 1747 | } |
| 1748 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1750 | /* Encode as an array of strings the string given with components |
Weston Andros Adamson | e7a0444 | 2012-04-24 11:07:59 -0400 | [diff] [blame] | 1751 | * separated @sep, escaped with esc_enter and esc_exit. |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1752 | */ |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1753 | static __be32 nfsd4_encode_components_esc(struct xdr_stream *xdr, char sep, |
| 1754 | char *components, char esc_enter, |
| 1755 | char esc_exit) |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1756 | { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1757 | __be32 *p; |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 1758 | __be32 pathlen; |
| 1759 | int pathlen_offset; |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1760 | int strlen, count=0; |
Weston Andros Adamson | e7a0444 | 2012-04-24 11:07:59 -0400 | [diff] [blame] | 1761 | char *str, *end, *next; |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1762 | |
| 1763 | dprintk("nfsd4_encode_components(%s)\n", components); |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 1764 | |
| 1765 | pathlen_offset = xdr->buf->len; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1766 | p = xdr_reserve_space(xdr, 4); |
| 1767 | if (!p) |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1768 | return nfserr_resource; |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 1769 | p++; /* We will fill this in with @count later */ |
| 1770 | |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1771 | end = str = components; |
| 1772 | while (*end) { |
Weston Andros Adamson | e7a0444 | 2012-04-24 11:07:59 -0400 | [diff] [blame] | 1773 | bool found_esc = false; |
| 1774 | |
| 1775 | /* try to parse as esc_start, ..., esc_end, sep */ |
| 1776 | if (*str == esc_enter) { |
| 1777 | for (; *end && (*end != esc_exit); end++) |
| 1778 | /* find esc_exit or end of string */; |
| 1779 | next = end + 1; |
| 1780 | if (*end && (!*next || *next == sep)) { |
| 1781 | str++; |
| 1782 | found_esc = true; |
| 1783 | } |
| 1784 | } |
| 1785 | |
| 1786 | if (!found_esc) |
| 1787 | for (; *end && (*end != sep); end++) |
| 1788 | /* find sep or end of string */; |
| 1789 | |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1790 | strlen = end - str; |
| 1791 | if (strlen) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1792 | p = xdr_reserve_space(xdr, strlen + 4); |
| 1793 | if (!p) |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1794 | return nfserr_resource; |
| 1795 | WRITE32(strlen); |
| 1796 | WRITEMEM(str, strlen); |
| 1797 | count++; |
| 1798 | } |
| 1799 | else |
| 1800 | end++; |
| 1801 | str = end; |
| 1802 | } |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 1803 | pathlen = htonl(xdr->buf->len - pathlen_offset); |
| 1804 | write_bytes_to_xdr_buf(xdr->buf, pathlen_offset, &pathlen, 4); |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1805 | return 0; |
| 1806 | } |
| 1807 | |
Weston Andros Adamson | e7a0444 | 2012-04-24 11:07:59 -0400 | [diff] [blame] | 1808 | /* Encode as an array of strings the string given with components |
| 1809 | * separated @sep. |
| 1810 | */ |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1811 | static __be32 nfsd4_encode_components(struct xdr_stream *xdr, char sep, |
| 1812 | char *components) |
Weston Andros Adamson | e7a0444 | 2012-04-24 11:07:59 -0400 | [diff] [blame] | 1813 | { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1814 | return nfsd4_encode_components_esc(xdr, sep, components, 0, 0); |
Weston Andros Adamson | e7a0444 | 2012-04-24 11:07:59 -0400 | [diff] [blame] | 1815 | } |
| 1816 | |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1817 | /* |
| 1818 | * encode a location element of a fs_locations structure |
| 1819 | */ |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1820 | static __be32 nfsd4_encode_fs_location4(struct xdr_stream *xdr, |
| 1821 | struct nfsd4_fs_location *location) |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1822 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1823 | __be32 status; |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1824 | |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1825 | status = nfsd4_encode_components_esc(xdr, ':', location->hosts, |
Weston Andros Adamson | e7a0444 | 2012-04-24 11:07:59 -0400 | [diff] [blame] | 1826 | '[', ']'); |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1827 | if (status) |
| 1828 | return status; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1829 | status = nfsd4_encode_components(xdr, '/', location->path); |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1830 | if (status) |
| 1831 | return status; |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1832 | return 0; |
| 1833 | } |
| 1834 | |
| 1835 | /* |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1836 | * Encode a path in RFC3530 'pathname4' format |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1837 | */ |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1838 | static __be32 nfsd4_encode_path(struct xdr_stream *xdr, |
| 1839 | const struct path *root, |
| 1840 | const struct path *path) |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1841 | { |
Al Viro | 301f026 | 2013-09-01 16:06:39 -0400 | [diff] [blame] | 1842 | struct path cur = *path; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1843 | __be32 *p; |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1844 | struct dentry **components = NULL; |
| 1845 | unsigned int ncomponents = 0; |
| 1846 | __be32 err = nfserr_jukebox; |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1847 | |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1848 | dprintk("nfsd4_encode_components("); |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1849 | |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1850 | path_get(&cur); |
| 1851 | /* First walk the path up to the nfsd root, and store the |
| 1852 | * dentries/path components in an array. |
| 1853 | */ |
| 1854 | for (;;) { |
| 1855 | if (cur.dentry == root->dentry && cur.mnt == root->mnt) |
| 1856 | break; |
| 1857 | if (cur.dentry == cur.mnt->mnt_root) { |
| 1858 | if (follow_up(&cur)) |
| 1859 | continue; |
| 1860 | goto out_free; |
| 1861 | } |
| 1862 | if ((ncomponents & 15) == 0) { |
| 1863 | struct dentry **new; |
| 1864 | new = krealloc(components, |
| 1865 | sizeof(*new) * (ncomponents + 16), |
| 1866 | GFP_KERNEL); |
| 1867 | if (!new) |
| 1868 | goto out_free; |
| 1869 | components = new; |
| 1870 | } |
| 1871 | components[ncomponents++] = cur.dentry; |
| 1872 | cur.dentry = dget_parent(cur.dentry); |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1873 | } |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1874 | err = nfserr_resource; |
| 1875 | p = xdr_reserve_space(xdr, 4); |
| 1876 | if (!p) |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1877 | goto out_free; |
| 1878 | WRITE32(ncomponents); |
| 1879 | |
| 1880 | while (ncomponents) { |
| 1881 | struct dentry *dentry = components[ncomponents - 1]; |
Al Viro | 301f026 | 2013-09-01 16:06:39 -0400 | [diff] [blame] | 1882 | unsigned int len; |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1883 | |
Al Viro | 301f026 | 2013-09-01 16:06:39 -0400 | [diff] [blame] | 1884 | spin_lock(&dentry->d_lock); |
| 1885 | len = dentry->d_name.len; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1886 | p = xdr_reserve_space(xdr, len + 4); |
| 1887 | if (!p) { |
Al Viro | 301f026 | 2013-09-01 16:06:39 -0400 | [diff] [blame] | 1888 | spin_unlock(&dentry->d_lock); |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1889 | goto out_free; |
Al Viro | 301f026 | 2013-09-01 16:06:39 -0400 | [diff] [blame] | 1890 | } |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1891 | WRITE32(len); |
| 1892 | WRITEMEM(dentry->d_name.name, len); |
| 1893 | dprintk("/%s", dentry->d_name.name); |
Al Viro | 301f026 | 2013-09-01 16:06:39 -0400 | [diff] [blame] | 1894 | spin_unlock(&dentry->d_lock); |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1895 | dput(dentry); |
| 1896 | ncomponents--; |
| 1897 | } |
| 1898 | |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1899 | err = 0; |
| 1900 | out_free: |
| 1901 | dprintk(")\n"); |
| 1902 | while (ncomponents) |
| 1903 | dput(components[--ncomponents]); |
| 1904 | kfree(components); |
| 1905 | path_put(&cur); |
| 1906 | return err; |
| 1907 | } |
| 1908 | |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1909 | static __be32 nfsd4_encode_fsloc_fsroot(struct xdr_stream *xdr, |
| 1910 | struct svc_rqst *rqstp, const struct path *path) |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1911 | { |
| 1912 | struct svc_export *exp_ps; |
| 1913 | __be32 res; |
| 1914 | |
| 1915 | exp_ps = rqst_find_fsidzero_export(rqstp); |
| 1916 | if (IS_ERR(exp_ps)) |
| 1917 | return nfserrno(PTR_ERR(exp_ps)); |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1918 | res = nfsd4_encode_path(xdr, &exp_ps->ex_path, path); |
Trond Myklebust | ed748aa | 2011-09-12 19:37:06 -0400 | [diff] [blame] | 1919 | exp_put(exp_ps); |
| 1920 | return res; |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1921 | } |
| 1922 | |
| 1923 | /* |
| 1924 | * encode a fs_locations structure |
| 1925 | */ |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1926 | static __be32 nfsd4_encode_fs_locations(struct xdr_stream *xdr, |
| 1927 | struct svc_rqst *rqstp, struct svc_export *exp) |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1928 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1929 | __be32 status; |
Al Viro | cc45f01 | 2006-10-19 23:28:44 -0700 | [diff] [blame] | 1930 | int i; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1931 | __be32 *p; |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1932 | struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs; |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1933 | |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1934 | status = nfsd4_encode_fsloc_fsroot(xdr, rqstp, &exp->ex_path); |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1935 | if (status) |
| 1936 | return status; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1937 | p = xdr_reserve_space(xdr, 4); |
| 1938 | if (!p) |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1939 | return nfserr_resource; |
| 1940 | WRITE32(fslocs->locations_count); |
| 1941 | for (i=0; i<fslocs->locations_count; i++) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1942 | status = nfsd4_encode_fs_location4(xdr, &fslocs->locations[i]); |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1943 | if (status) |
| 1944 | return status; |
| 1945 | } |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 1946 | return 0; |
| 1947 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | |
J. Bruce Fields | 3d2544b | 2011-08-15 11:49:30 -0400 | [diff] [blame] | 1949 | static u32 nfs4_file_type(umode_t mode) |
| 1950 | { |
| 1951 | switch (mode & S_IFMT) { |
| 1952 | case S_IFIFO: return NF4FIFO; |
| 1953 | case S_IFCHR: return NF4CHR; |
| 1954 | case S_IFDIR: return NF4DIR; |
| 1955 | case S_IFBLK: return NF4BLK; |
| 1956 | case S_IFLNK: return NF4LNK; |
| 1957 | case S_IFREG: return NF4REG; |
| 1958 | case S_IFSOCK: return NF4SOCK; |
| 1959 | default: return NF4BAD; |
| 1960 | }; |
| 1961 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1963 | static inline __be32 |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1964 | nfsd4_encode_aclname(struct xdr_stream *xdr, struct svc_rqst *rqstp, |
| 1965 | struct nfs4_ace *ace) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | { |
J. Bruce Fields | 3554116 | 2014-01-08 09:49:01 -0500 | [diff] [blame] | 1967 | if (ace->whotype != NFS4_ACL_WHO_NAMED) |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1968 | return nfs4_acl_write_who(xdr, ace->whotype); |
J. Bruce Fields | 3554116 | 2014-01-08 09:49:01 -0500 | [diff] [blame] | 1969 | else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP) |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1970 | return nfsd4_encode_group(xdr, rqstp, ace->who_gid); |
J. Bruce Fields | 3554116 | 2014-01-08 09:49:01 -0500 | [diff] [blame] | 1971 | else |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1972 | return nfsd4_encode_user(xdr, rqstp, ace->who_uid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | } |
| 1974 | |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 1975 | #define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \ |
| 1976 | FATTR4_WORD0_RDATTR_ERROR) |
| 1977 | #define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID |
| 1978 | |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 1979 | #ifdef CONFIG_NFSD_V4_SECURITY_LABEL |
| 1980 | static inline __be32 |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1981 | nfsd4_encode_security_label(struct xdr_stream *xdr, struct svc_rqst *rqstp, |
| 1982 | void *context, int len) |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 1983 | { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1984 | __be32 *p; |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 1985 | |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 1986 | p = xdr_reserve_space(xdr, len + 4 + 4 + 4); |
| 1987 | if (!p) |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 1988 | return nfserr_resource; |
| 1989 | |
| 1990 | /* |
| 1991 | * For now we use a 0 here to indicate the null translation; in |
| 1992 | * the future we may place a call to translation code here. |
| 1993 | */ |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 1994 | WRITE32(0); /* lfs */ |
| 1995 | WRITE32(0); /* pi */ |
| 1996 | p = xdr_encode_opaque(p, context, len); |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 1997 | return 0; |
| 1998 | } |
| 1999 | #else |
| 2000 | static inline __be32 |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2001 | nfsd4_encode_security_label(struct xdr_stream *xdr, struct svc_rqst *rqstp, |
| 2002 | void *context, int len) |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 2003 | { return 0; } |
| 2004 | #endif |
| 2005 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2006 | static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err) |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2007 | { |
| 2008 | /* As per referral draft: */ |
| 2009 | if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS || |
| 2010 | *bmval1 & ~WORD1_ABSENT_FS_ATTRS) { |
| 2011 | if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR || |
| 2012 | *bmval0 & FATTR4_WORD0_FS_LOCATIONS) |
| 2013 | *rdattr_err = NFSERR_MOVED; |
| 2014 | else |
| 2015 | return nfserr_moved; |
| 2016 | } |
| 2017 | *bmval0 &= WORD0_ABSENT_FS_ATTRS; |
| 2018 | *bmval1 &= WORD1_ABSENT_FS_ATTRS; |
| 2019 | return 0; |
| 2020 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | |
J. Bruce Fields | ae7095a | 2012-10-01 17:50:56 -0400 | [diff] [blame] | 2022 | |
| 2023 | static int get_parent_attributes(struct svc_export *exp, struct kstat *stat) |
| 2024 | { |
| 2025 | struct path path = exp->ex_path; |
| 2026 | int err; |
| 2027 | |
| 2028 | path_get(&path); |
| 2029 | while (follow_up(&path)) { |
| 2030 | if (path.dentry != path.mnt->mnt_root) |
| 2031 | break; |
| 2032 | } |
Al Viro | 3dadecc | 2013-01-24 02:18:08 -0500 | [diff] [blame] | 2033 | err = vfs_getattr(&path, stat); |
J. Bruce Fields | ae7095a | 2012-10-01 17:50:56 -0400 | [diff] [blame] | 2034 | path_put(&path); |
| 2035 | return err; |
| 2036 | } |
| 2037 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2038 | /* |
| 2039 | * Note: @fhp can be NULL; in this case, we might have to compose the filehandle |
| 2040 | * ourselves. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2042 | __be32 |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2043 | nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp, |
| 2044 | struct svc_export *exp, |
| 2045 | struct dentry *dentry, u32 *bmval, |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 2046 | struct svc_rqst *rqstp, int ignore_crossmnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | { |
| 2048 | u32 bmval0 = bmval[0]; |
| 2049 | u32 bmval1 = bmval[1]; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2050 | u32 bmval2 = bmval[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | struct kstat stat; |
J. Bruce Fields | d50e613 | 2014-01-15 12:21:12 -0500 | [diff] [blame] | 2052 | struct svc_fh *tempfh = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2053 | struct kstatfs statfs; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2054 | __be32 *p; |
J. Bruce Fields | 1fcea5b | 2014-02-26 20:17:02 -0500 | [diff] [blame] | 2055 | int starting_len = xdr->buf->len; |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 2056 | int attrlen_offset; |
| 2057 | __be32 attrlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | u32 dummy; |
| 2059 | u64 dummy64; |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2060 | u32 rdattr_err = 0; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2061 | __be32 status; |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2062 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | int aclsupport = 0; |
| 2064 | struct nfs4_acl *acl = NULL; |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 2065 | void *context = NULL; |
| 2066 | int contextlen; |
| 2067 | bool contextsupport = false; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2068 | struct nfsd4_compoundres *resp = rqstp->rq_resp; |
| 2069 | u32 minorversion = resp->cstate.minorversion; |
Christoph Hellwig | ebabe9a | 2010-07-07 18:53:11 +0200 | [diff] [blame] | 2070 | struct path path = { |
| 2071 | .mnt = exp->ex_path.mnt, |
| 2072 | .dentry = dentry, |
| 2073 | }; |
Stanislav Kinsbursky | 3d73371 | 2012-11-27 14:11:44 +0300 | [diff] [blame] | 2074 | struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | |
| 2076 | BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1); |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2077 | BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion)); |
| 2078 | BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion)); |
| 2079 | BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2081 | if (exp->ex_fslocs.migrated) { |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2082 | BUG_ON(bmval[2]); |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2083 | status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err); |
| 2084 | if (status) |
| 2085 | goto out; |
| 2086 | } |
| 2087 | |
Al Viro | 3dadecc | 2013-01-24 02:18:08 -0500 | [diff] [blame] | 2088 | err = vfs_getattr(&path, &stat); |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2089 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | goto out_nfserr; |
J. Bruce Fields | a16e92e | 2007-09-28 16:45:51 -0400 | [diff] [blame] | 2091 | if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL | |
| 2092 | FATTR4_WORD0_MAXNAME)) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE | |
| 2094 | FATTR4_WORD1_SPACE_TOTAL))) { |
Christoph Hellwig | ebabe9a | 2010-07-07 18:53:11 +0200 | [diff] [blame] | 2095 | err = vfs_statfs(&path, &statfs); |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2096 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | goto out_nfserr; |
| 2098 | } |
| 2099 | if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) { |
J. Bruce Fields | d50e613 | 2014-01-15 12:21:12 -0500 | [diff] [blame] | 2100 | tempfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL); |
| 2101 | status = nfserr_jukebox; |
| 2102 | if (!tempfh) |
| 2103 | goto out; |
| 2104 | fh_init(tempfh, NFS4_FHSIZE); |
| 2105 | status = fh_compose(tempfh, exp, dentry, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | if (status) |
| 2107 | goto out; |
J. Bruce Fields | d50e613 | 2014-01-15 12:21:12 -0500 | [diff] [blame] | 2108 | fhp = tempfh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | } |
| 2110 | if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT |
| 2111 | | FATTR4_WORD0_SUPPORTED_ATTRS)) { |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2112 | err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl); |
| 2113 | aclsupport = (err == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | if (bmval0 & FATTR4_WORD0_ACL) { |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2115 | if (err == -EOPNOTSUPP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | bmval0 &= ~FATTR4_WORD0_ACL; |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2117 | else if (err == -EINVAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | status = nfserr_attrnotsupp; |
| 2119 | goto out; |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2120 | } else if (err != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2121 | goto out_nfserr; |
| 2122 | } |
| 2123 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 2125 | #ifdef CONFIG_NFSD_V4_SECURITY_LABEL |
| 2126 | if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) || |
| 2127 | bmval[0] & FATTR4_WORD0_SUPPORTED_ATTRS) { |
| 2128 | err = security_inode_getsecctx(dentry->d_inode, |
| 2129 | &context, &contextlen); |
| 2130 | contextsupport = (err == 0); |
| 2131 | if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) { |
| 2132 | if (err == -EOPNOTSUPP) |
| 2133 | bmval2 &= ~FATTR4_WORD2_SECURITY_LABEL; |
| 2134 | else if (err) |
| 2135 | goto out_nfserr; |
| 2136 | } |
| 2137 | } |
| 2138 | #endif /* CONFIG_NFSD_V4_SECURITY_LABEL */ |
| 2139 | |
Benny Halevy | 2b44f1b | 2010-09-30 20:47:46 +0200 | [diff] [blame] | 2140 | if (bmval2) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2141 | p = xdr_reserve_space(xdr, 16); |
| 2142 | if (!p) |
Benny Halevy | 2b44f1b | 2010-09-30 20:47:46 +0200 | [diff] [blame] | 2143 | goto out_resource; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2144 | WRITE32(3); |
| 2145 | WRITE32(bmval0); |
| 2146 | WRITE32(bmval1); |
| 2147 | WRITE32(bmval2); |
Benny Halevy | 2b44f1b | 2010-09-30 20:47:46 +0200 | [diff] [blame] | 2148 | } else if (bmval1) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2149 | p = xdr_reserve_space(xdr, 12); |
| 2150 | if (!p) |
Benny Halevy | 2b44f1b | 2010-09-30 20:47:46 +0200 | [diff] [blame] | 2151 | goto out_resource; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2152 | WRITE32(2); |
| 2153 | WRITE32(bmval0); |
| 2154 | WRITE32(bmval1); |
| 2155 | } else { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2156 | p = xdr_reserve_space(xdr, 8); |
| 2157 | if (!p) |
Benny Halevy | 2b44f1b | 2010-09-30 20:47:46 +0200 | [diff] [blame] | 2158 | goto out_resource; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2159 | WRITE32(1); |
| 2160 | WRITE32(bmval0); |
| 2161 | } |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 2162 | |
| 2163 | attrlen_offset = xdr->buf->len; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2164 | p = xdr_reserve_space(xdr, 4); |
| 2165 | if (!p) |
| 2166 | goto out_resource; |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 2167 | p++; /* to be backfilled later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | |
| 2169 | if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) { |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2170 | u32 word0 = nfsd_suppattrs0(minorversion); |
| 2171 | u32 word1 = nfsd_suppattrs1(minorversion); |
| 2172 | u32 word2 = nfsd_suppattrs2(minorversion); |
| 2173 | |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2174 | if (!aclsupport) |
| 2175 | word0 &= ~FATTR4_WORD0_ACL; |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 2176 | if (!contextsupport) |
| 2177 | word2 &= ~FATTR4_WORD2_SECURITY_LABEL; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2178 | if (!word2) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2179 | p = xdr_reserve_space(xdr, 12); |
| 2180 | if (!p) |
Benny Halevy | 2b44f1b | 2010-09-30 20:47:46 +0200 | [diff] [blame] | 2181 | goto out_resource; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2182 | WRITE32(2); |
| 2183 | WRITE32(word0); |
| 2184 | WRITE32(word1); |
| 2185 | } else { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2186 | p = xdr_reserve_space(xdr, 16); |
| 2187 | if (!p) |
Benny Halevy | 2b44f1b | 2010-09-30 20:47:46 +0200 | [diff] [blame] | 2188 | goto out_resource; |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2189 | WRITE32(3); |
| 2190 | WRITE32(word0); |
| 2191 | WRITE32(word1); |
| 2192 | WRITE32(word2); |
| 2193 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | } |
| 2195 | if (bmval0 & FATTR4_WORD0_TYPE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2196 | p = xdr_reserve_space(xdr, 4); |
| 2197 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | goto out_resource; |
J. Bruce Fields | 3d2544b | 2011-08-15 11:49:30 -0400 | [diff] [blame] | 2199 | dummy = nfs4_file_type(stat.mode); |
J. Bruce Fields | 6b6d8137 | 2013-01-16 17:11:11 -0500 | [diff] [blame] | 2200 | if (dummy == NF4BAD) { |
| 2201 | status = nfserr_serverfault; |
| 2202 | goto out; |
| 2203 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | WRITE32(dummy); |
| 2205 | } |
| 2206 | if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2207 | p = xdr_reserve_space(xdr, 4); |
| 2208 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | goto out_resource; |
NeilBrown | 4964000 | 2005-06-23 22:02:58 -0700 | [diff] [blame] | 2210 | if (exp->ex_flags & NFSEXP_NOSUBTREECHECK) |
NeilBrown | e34ac86 | 2005-07-07 17:59:30 -0700 | [diff] [blame] | 2211 | WRITE32(NFS4_FH_PERSISTENT); |
NeilBrown | 4964000 | 2005-06-23 22:02:58 -0700 | [diff] [blame] | 2212 | else |
NeilBrown | e34ac86 | 2005-07-07 17:59:30 -0700 | [diff] [blame] | 2213 | WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | } |
| 2215 | if (bmval0 & FATTR4_WORD0_CHANGE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2216 | p = xdr_reserve_space(xdr, 8); |
| 2217 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | goto out_resource; |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 2219 | write_change(&p, &stat, dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | } |
| 2221 | if (bmval0 & FATTR4_WORD0_SIZE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2222 | p = xdr_reserve_space(xdr, 8); |
| 2223 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | goto out_resource; |
| 2225 | WRITE64(stat.size); |
| 2226 | } |
| 2227 | if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2228 | p = xdr_reserve_space(xdr, 4); |
| 2229 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | goto out_resource; |
| 2231 | WRITE32(1); |
| 2232 | } |
| 2233 | if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2234 | p = xdr_reserve_space(xdr, 4); |
| 2235 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | goto out_resource; |
| 2237 | WRITE32(1); |
| 2238 | } |
| 2239 | if (bmval0 & FATTR4_WORD0_NAMED_ATTR) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2240 | p = xdr_reserve_space(xdr, 4); |
| 2241 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | goto out_resource; |
| 2243 | WRITE32(0); |
| 2244 | } |
| 2245 | if (bmval0 & FATTR4_WORD0_FSID) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2246 | p = xdr_reserve_space(xdr, 16); |
| 2247 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | goto out_resource; |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2249 | if (exp->ex_fslocs.migrated) { |
| 2250 | WRITE64(NFS4_REFERRAL_FSID_MAJOR); |
| 2251 | WRITE64(NFS4_REFERRAL_FSID_MINOR); |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 2252 | } else switch(fsid_source(fhp)) { |
| 2253 | case FSIDSOURCE_FSID: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | WRITE64((u64)exp->ex_fsid); |
| 2255 | WRITE64((u64)0); |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 2256 | break; |
| 2257 | case FSIDSOURCE_DEV: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | WRITE32(0); |
| 2259 | WRITE32(MAJOR(stat.dev)); |
| 2260 | WRITE32(0); |
| 2261 | WRITE32(MINOR(stat.dev)); |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 2262 | break; |
| 2263 | case FSIDSOURCE_UUID: |
| 2264 | WRITEMEM(exp->ex_uuid, 16); |
| 2265 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | } |
| 2267 | } |
| 2268 | if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2269 | p = xdr_reserve_space(xdr, 4); |
| 2270 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | goto out_resource; |
| 2272 | WRITE32(0); |
| 2273 | } |
| 2274 | if (bmval0 & FATTR4_WORD0_LEASE_TIME) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2275 | p = xdr_reserve_space(xdr, 4); |
| 2276 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | goto out_resource; |
Stanislav Kinsbursky | 3d73371 | 2012-11-27 14:11:44 +0300 | [diff] [blame] | 2278 | WRITE32(nn->nfsd4_lease); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | } |
| 2280 | if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2281 | p = xdr_reserve_space(xdr, 4); |
| 2282 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | goto out_resource; |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2284 | WRITE32(rdattr_err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | } |
| 2286 | if (bmval0 & FATTR4_WORD0_ACL) { |
| 2287 | struct nfs4_ace *ace; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2288 | |
| 2289 | if (acl == NULL) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2290 | p = xdr_reserve_space(xdr, 4); |
| 2291 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | goto out_resource; |
| 2293 | |
| 2294 | WRITE32(0); |
| 2295 | goto out_acl; |
| 2296 | } |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2297 | p = xdr_reserve_space(xdr, 4); |
| 2298 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | goto out_resource; |
| 2300 | WRITE32(acl->naces); |
| 2301 | |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 2302 | for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2303 | p = xdr_reserve_space(xdr, 4*3); |
| 2304 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | goto out_resource; |
| 2306 | WRITE32(ace->type); |
| 2307 | WRITE32(ace->flag); |
| 2308 | WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL); |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2309 | status = nfsd4_encode_aclname(xdr, rqstp, ace); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | if (status) |
| 2311 | goto out; |
| 2312 | } |
| 2313 | } |
| 2314 | out_acl: |
| 2315 | if (bmval0 & FATTR4_WORD0_ACLSUPPORT) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2316 | p = xdr_reserve_space(xdr, 4); |
| 2317 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | goto out_resource; |
| 2319 | WRITE32(aclsupport ? |
| 2320 | ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0); |
| 2321 | } |
| 2322 | if (bmval0 & FATTR4_WORD0_CANSETTIME) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2323 | p = xdr_reserve_space(xdr, 4); |
| 2324 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | goto out_resource; |
| 2326 | WRITE32(1); |
| 2327 | } |
| 2328 | if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2329 | p = xdr_reserve_space(xdr, 4); |
| 2330 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | goto out_resource; |
J. Bruce Fields | 2930d38 | 2012-06-05 16:52:06 -0400 | [diff] [blame] | 2332 | WRITE32(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | } |
| 2334 | if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2335 | p = xdr_reserve_space(xdr, 4); |
| 2336 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2337 | goto out_resource; |
| 2338 | WRITE32(1); |
| 2339 | } |
| 2340 | if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2341 | p = xdr_reserve_space(xdr, 4); |
| 2342 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2343 | goto out_resource; |
| 2344 | WRITE32(1); |
| 2345 | } |
| 2346 | if (bmval0 & FATTR4_WORD0_FILEHANDLE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2347 | p = xdr_reserve_space(xdr, fhp->fh_handle.fh_size + 4); |
| 2348 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | goto out_resource; |
| 2350 | WRITE32(fhp->fh_handle.fh_size); |
| 2351 | WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size); |
| 2352 | } |
| 2353 | if (bmval0 & FATTR4_WORD0_FILEID) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2354 | p = xdr_reserve_space(xdr, 8); |
| 2355 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | goto out_resource; |
Peter Staubach | 40ee5dc | 2007-08-16 12:10:07 -0400 | [diff] [blame] | 2357 | WRITE64(stat.ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | } |
| 2359 | if (bmval0 & FATTR4_WORD0_FILES_AVAIL) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2360 | p = xdr_reserve_space(xdr, 8); |
| 2361 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2362 | goto out_resource; |
| 2363 | WRITE64((u64) statfs.f_ffree); |
| 2364 | } |
| 2365 | if (bmval0 & FATTR4_WORD0_FILES_FREE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2366 | p = xdr_reserve_space(xdr, 8); |
| 2367 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | goto out_resource; |
| 2369 | WRITE64((u64) statfs.f_ffree); |
| 2370 | } |
| 2371 | if (bmval0 & FATTR4_WORD0_FILES_TOTAL) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2372 | p = xdr_reserve_space(xdr, 8); |
| 2373 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | goto out_resource; |
| 2375 | WRITE64((u64) statfs.f_files); |
| 2376 | } |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 2377 | if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2378 | status = nfsd4_encode_fs_locations(xdr, rqstp, exp); |
J.Bruce Fields | 81c3f41 | 2006-10-04 02:16:19 -0700 | [diff] [blame] | 2379 | if (status) |
| 2380 | goto out; |
| 2381 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2383 | p = xdr_reserve_space(xdr, 4); |
| 2384 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | goto out_resource; |
| 2386 | WRITE32(1); |
| 2387 | } |
| 2388 | if (bmval0 & FATTR4_WORD0_MAXFILESIZE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2389 | p = xdr_reserve_space(xdr, 8); |
| 2390 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | goto out_resource; |
Christoph Hellwig | aea240f | 2013-11-14 05:50:10 -0800 | [diff] [blame] | 2392 | WRITE64(exp->ex_path.mnt->mnt_sb->s_maxbytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | } |
| 2394 | if (bmval0 & FATTR4_WORD0_MAXLINK) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2395 | p = xdr_reserve_space(xdr, 4); |
| 2396 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2397 | goto out_resource; |
| 2398 | WRITE32(255); |
| 2399 | } |
| 2400 | if (bmval0 & FATTR4_WORD0_MAXNAME) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2401 | p = xdr_reserve_space(xdr, 4); |
| 2402 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | goto out_resource; |
J. Bruce Fields | a16e92e | 2007-09-28 16:45:51 -0400 | [diff] [blame] | 2404 | WRITE32(statfs.f_namelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | } |
| 2406 | if (bmval0 & FATTR4_WORD0_MAXREAD) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2407 | p = xdr_reserve_space(xdr, 8); |
| 2408 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | goto out_resource; |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 2410 | WRITE64((u64) svc_max_payload(rqstp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | } |
| 2412 | if (bmval0 & FATTR4_WORD0_MAXWRITE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2413 | p = xdr_reserve_space(xdr, 8); |
| 2414 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | goto out_resource; |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 2416 | WRITE64((u64) svc_max_payload(rqstp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | } |
| 2418 | if (bmval1 & FATTR4_WORD1_MODE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2419 | p = xdr_reserve_space(xdr, 4); |
| 2420 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | goto out_resource; |
| 2422 | WRITE32(stat.mode & S_IALLUGO); |
| 2423 | } |
| 2424 | if (bmval1 & FATTR4_WORD1_NO_TRUNC) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2425 | p = xdr_reserve_space(xdr, 4); |
| 2426 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | goto out_resource; |
| 2428 | WRITE32(1); |
| 2429 | } |
| 2430 | if (bmval1 & FATTR4_WORD1_NUMLINKS) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2431 | p = xdr_reserve_space(xdr, 4); |
| 2432 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | goto out_resource; |
| 2434 | WRITE32(stat.nlink); |
| 2435 | } |
| 2436 | if (bmval1 & FATTR4_WORD1_OWNER) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2437 | status = nfsd4_encode_user(xdr, rqstp, stat.uid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | if (status) |
| 2439 | goto out; |
| 2440 | } |
| 2441 | if (bmval1 & FATTR4_WORD1_OWNER_GROUP) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2442 | status = nfsd4_encode_group(xdr, rqstp, stat.gid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | if (status) |
| 2444 | goto out; |
| 2445 | } |
| 2446 | if (bmval1 & FATTR4_WORD1_RAWDEV) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2447 | p = xdr_reserve_space(xdr, 8); |
| 2448 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2449 | goto out_resource; |
| 2450 | WRITE32((u32) MAJOR(stat.rdev)); |
| 2451 | WRITE32((u32) MINOR(stat.rdev)); |
| 2452 | } |
| 2453 | if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2454 | p = xdr_reserve_space(xdr, 8); |
| 2455 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2456 | goto out_resource; |
| 2457 | dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize; |
| 2458 | WRITE64(dummy64); |
| 2459 | } |
| 2460 | if (bmval1 & FATTR4_WORD1_SPACE_FREE) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2461 | p = xdr_reserve_space(xdr, 8); |
| 2462 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | goto out_resource; |
| 2464 | dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize; |
| 2465 | WRITE64(dummy64); |
| 2466 | } |
| 2467 | if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2468 | p = xdr_reserve_space(xdr, 8); |
| 2469 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2470 | goto out_resource; |
| 2471 | dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize; |
| 2472 | WRITE64(dummy64); |
| 2473 | } |
| 2474 | if (bmval1 & FATTR4_WORD1_SPACE_USED) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2475 | p = xdr_reserve_space(xdr, 8); |
| 2476 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2477 | goto out_resource; |
| 2478 | dummy64 = (u64)stat.blocks << 9; |
| 2479 | WRITE64(dummy64); |
| 2480 | } |
| 2481 | if (bmval1 & FATTR4_WORD1_TIME_ACCESS) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2482 | p = xdr_reserve_space(xdr, 12); |
| 2483 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | goto out_resource; |
Bryan Schumaker | bf8d909 | 2013-04-19 16:09:38 -0400 | [diff] [blame] | 2485 | WRITE64((s64)stat.atime.tv_sec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2486 | WRITE32(stat.atime.tv_nsec); |
| 2487 | } |
| 2488 | if (bmval1 & FATTR4_WORD1_TIME_DELTA) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2489 | p = xdr_reserve_space(xdr, 12); |
| 2490 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2491 | goto out_resource; |
| 2492 | WRITE32(0); |
| 2493 | WRITE32(1); |
| 2494 | WRITE32(0); |
| 2495 | } |
| 2496 | if (bmval1 & FATTR4_WORD1_TIME_METADATA) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2497 | p = xdr_reserve_space(xdr, 12); |
| 2498 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2499 | goto out_resource; |
Bryan Schumaker | bf8d909 | 2013-04-19 16:09:38 -0400 | [diff] [blame] | 2500 | WRITE64((s64)stat.ctime.tv_sec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2501 | WRITE32(stat.ctime.tv_nsec); |
| 2502 | } |
| 2503 | if (bmval1 & FATTR4_WORD1_TIME_MODIFY) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2504 | p = xdr_reserve_space(xdr, 12); |
| 2505 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | goto out_resource; |
Bryan Schumaker | bf8d909 | 2013-04-19 16:09:38 -0400 | [diff] [blame] | 2507 | WRITE64((s64)stat.mtime.tv_sec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | WRITE32(stat.mtime.tv_nsec); |
| 2509 | } |
| 2510 | if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2511 | p = xdr_reserve_space(xdr, 8); |
| 2512 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | goto out_resource; |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 2514 | /* |
| 2515 | * Get parent's attributes if not ignoring crossmount |
| 2516 | * and this is the root of a cross-mounted filesystem. |
| 2517 | */ |
| 2518 | if (ignore_crossmnt == 0 && |
J. Bruce Fields | ae7095a | 2012-10-01 17:50:56 -0400 | [diff] [blame] | 2519 | dentry == exp->ex_path.mnt->mnt_root) |
| 2520 | get_parent_attributes(exp, &stat); |
Peter Staubach | 40ee5dc | 2007-08-16 12:10:07 -0400 | [diff] [blame] | 2521 | WRITE64(stat.ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | } |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 2523 | if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2524 | status = nfsd4_encode_security_label(xdr, rqstp, context, |
| 2525 | contextlen); |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 2526 | if (status) |
| 2527 | goto out; |
| 2528 | } |
Benny Halevy | 8c18f20 | 2009-04-03 08:29:14 +0300 | [diff] [blame] | 2529 | if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) { |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2530 | p = xdr_reserve_space(xdr, 16); |
| 2531 | if (!p) |
J. Bruce Fields | de3997a | 2014-01-28 16:05:15 -0500 | [diff] [blame] | 2532 | goto out_resource; |
Benny Halevy | 8c18f20 | 2009-04-03 08:29:14 +0300 | [diff] [blame] | 2533 | WRITE32(3); |
| 2534 | WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0); |
| 2535 | WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1); |
| 2536 | WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2); |
| 2537 | } |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 2538 | |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 2539 | attrlen = htonl(xdr->buf->len - attrlen_offset - 4); |
| 2540 | write_bytes_to_xdr_buf(xdr->buf, attrlen_offset, &attrlen, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2541 | status = nfs_ok; |
| 2542 | |
| 2543 | out: |
J. Bruce Fields | ba4e55b | 2013-05-15 10:27:52 -0400 | [diff] [blame] | 2544 | #ifdef CONFIG_NFSD_V4_SECURITY_LABEL |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 2545 | if (context) |
| 2546 | security_release_secctx(context, contextlen); |
J. Bruce Fields | ba4e55b | 2013-05-15 10:27:52 -0400 | [diff] [blame] | 2547 | #endif /* CONFIG_NFSD_V4_SECURITY_LABEL */ |
J. Bruce Fields | 28e05dd | 2007-02-16 01:28:30 -0800 | [diff] [blame] | 2548 | kfree(acl); |
Yan, Zheng | 18df11d0 | 2014-03-10 12:52:07 +0800 | [diff] [blame] | 2549 | if (tempfh) { |
J. Bruce Fields | d50e613 | 2014-01-15 12:21:12 -0500 | [diff] [blame] | 2550 | fh_put(tempfh); |
Yan, Zheng | 18df11d0 | 2014-03-10 12:52:07 +0800 | [diff] [blame] | 2551 | kfree(tempfh); |
| 2552 | } |
J. Bruce Fields | 1fcea5b | 2014-02-26 20:17:02 -0500 | [diff] [blame] | 2553 | if (status) |
| 2554 | xdr_truncate_encode(xdr, starting_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2555 | return status; |
| 2556 | out_nfserr: |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2557 | status = nfserrno(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | goto out; |
| 2559 | out_resource: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | status = nfserr_resource; |
| 2561 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2562 | } |
| 2563 | |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2564 | static void svcxdr_init_encode_from_buffer(struct xdr_stream *xdr, |
| 2565 | struct xdr_buf *buf, __be32 *p, int bytes) |
| 2566 | { |
| 2567 | xdr->scratch.iov_len = 0; |
| 2568 | memset(buf, 0, sizeof(struct xdr_buf)); |
| 2569 | buf->head[0].iov_base = p; |
| 2570 | buf->head[0].iov_len = 0; |
| 2571 | buf->len = 0; |
| 2572 | xdr->buf = buf; |
| 2573 | xdr->iov = buf->head; |
| 2574 | xdr->p = p; |
| 2575 | xdr->end = (void *)p + bytes; |
| 2576 | buf->buflen = bytes; |
| 2577 | } |
| 2578 | |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2579 | __be32 nfsd4_encode_fattr_to_buf(__be32 **p, int words, |
| 2580 | struct svc_fh *fhp, struct svc_export *exp, |
| 2581 | struct dentry *dentry, u32 *bmval, |
| 2582 | struct svc_rqst *rqstp, int ignore_crossmnt) |
| 2583 | { |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2584 | struct xdr_buf dummy; |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2585 | struct xdr_stream xdr; |
| 2586 | __be32 ret; |
| 2587 | |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2588 | svcxdr_init_encode_from_buffer(&xdr, &dummy, *p, words << 2); |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2589 | ret = nfsd4_encode_fattr(&xdr, fhp, exp, dentry, bmval, rqstp, |
| 2590 | ignore_crossmnt); |
| 2591 | *p = xdr.p; |
| 2592 | return ret; |
| 2593 | } |
| 2594 | |
J. Bruce Fields | c0ce6ec | 2008-02-11 15:48:47 -0500 | [diff] [blame] | 2595 | static inline int attributes_need_mount(u32 *bmval) |
| 2596 | { |
| 2597 | if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME)) |
| 2598 | return 1; |
| 2599 | if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID) |
| 2600 | return 1; |
| 2601 | return 0; |
| 2602 | } |
| 2603 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2604 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2605 | nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd, |
J. Bruce Fields | 84822d0 | 2012-12-14 17:57:50 -0500 | [diff] [blame] | 2606 | const char *name, int namlen, __be32 **p, int buflen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2607 | { |
| 2608 | struct svc_export *exp = cd->rd_fhp->fh_export; |
| 2609 | struct dentry *dentry; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2610 | __be32 nfserr; |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 2611 | int ignore_crossmnt = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | |
| 2613 | dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen); |
| 2614 | if (IS_ERR(dentry)) |
| 2615 | return nfserrno(PTR_ERR(dentry)); |
J. Bruce Fields | b2c0cea | 2009-05-05 19:04:29 -0400 | [diff] [blame] | 2616 | if (!dentry->d_inode) { |
| 2617 | /* |
| 2618 | * nfsd_buffered_readdir drops the i_mutex between |
| 2619 | * readdir and calling this callback, leaving a window |
| 2620 | * where this directory entry could have gone away. |
| 2621 | */ |
| 2622 | dput(dentry); |
| 2623 | return nfserr_noent; |
| 2624 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2625 | |
| 2626 | exp_get(exp); |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 2627 | /* |
| 2628 | * In the case of a mountpoint, the client may be asking for |
| 2629 | * attributes that are only properties of the underlying filesystem |
| 2630 | * as opposed to the cross-mounted file system. In such a case, |
| 2631 | * we will not follow the cross mount and will fill the attribtutes |
| 2632 | * directly from the mountpoint dentry. |
| 2633 | */ |
J. Bruce Fields | 3227fa4 | 2009-10-25 21:43:01 -0400 | [diff] [blame] | 2634 | if (nfsd_mountpoint(dentry, exp)) { |
J.Bruce Fields | 021d3a7 | 2006-12-13 00:35:24 -0800 | [diff] [blame] | 2635 | int err; |
| 2636 | |
J. Bruce Fields | 3227fa4 | 2009-10-25 21:43:01 -0400 | [diff] [blame] | 2637 | if (!(exp->ex_flags & NFSEXP_V4ROOT) |
| 2638 | && !attributes_need_mount(cd->rd_bmval)) { |
| 2639 | ignore_crossmnt = 1; |
| 2640 | goto out_encode; |
| 2641 | } |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 2642 | /* |
| 2643 | * Why the heck aren't we just using nfsd_lookup?? |
| 2644 | * Different "."/".." handling? Something else? |
| 2645 | * At least, add a comment here to explain.... |
| 2646 | */ |
J.Bruce Fields | 021d3a7 | 2006-12-13 00:35:24 -0800 | [diff] [blame] | 2647 | err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp); |
| 2648 | if (err) { |
| 2649 | nfserr = nfserrno(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | goto out_put; |
| 2651 | } |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 2652 | nfserr = check_nfsd_access(exp, cd->rd_rqstp); |
| 2653 | if (nfserr) |
| 2654 | goto out_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2655 | |
| 2656 | } |
J. Bruce Fields | 3227fa4 | 2009-10-25 21:43:01 -0400 | [diff] [blame] | 2657 | out_encode: |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2658 | nfserr = nfsd4_encode_fattr_to_buf(p, buflen, NULL, exp, dentry, |
| 2659 | cd->rd_bmval, |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 2660 | cd->rd_rqstp, ignore_crossmnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2661 | out_put: |
| 2662 | dput(dentry); |
| 2663 | exp_put(exp); |
| 2664 | return nfserr; |
| 2665 | } |
| 2666 | |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 2667 | static __be32 * |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2668 | nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | if (buflen < 6) |
| 2671 | return NULL; |
| 2672 | *p++ = htonl(2); |
| 2673 | *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */ |
| 2674 | *p++ = htonl(0); /* bmval1 */ |
| 2675 | |
J. Bruce Fields | 87915c6 | 2013-01-16 17:33:28 -0500 | [diff] [blame] | 2676 | *p++ = htonl(4); /* attribute length */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2677 | *p++ = nfserr; /* no htonl */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2678 | return p; |
| 2679 | } |
| 2680 | |
| 2681 | static int |
NeilBrown | a0ad13e | 2007-01-26 00:57:10 -0800 | [diff] [blame] | 2682 | nfsd4_encode_dirent(void *ccdv, const char *name, int namlen, |
| 2683 | loff_t offset, u64 ino, unsigned int d_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | { |
NeilBrown | a0ad13e | 2007-01-26 00:57:10 -0800 | [diff] [blame] | 2685 | struct readdir_cd *ccd = ccdv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2686 | struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common); |
| 2687 | int buflen; |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 2688 | __be32 *p = cd->buffer; |
J. Bruce Fields | b2c0cea | 2009-05-05 19:04:29 -0400 | [diff] [blame] | 2689 | __be32 *cookiep; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2690 | __be32 nfserr = nfserr_toosmall; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2691 | |
| 2692 | /* In nfsv4, "." and ".." never make it onto the wire.. */ |
| 2693 | if (name && isdotent(name, namlen)) { |
| 2694 | cd->common.err = nfs_ok; |
| 2695 | return 0; |
| 2696 | } |
| 2697 | |
| 2698 | if (cd->offset) |
| 2699 | xdr_encode_hyper(cd->offset, (u64) offset); |
| 2700 | |
| 2701 | buflen = cd->buflen - 4 - XDR_QUADLEN(namlen); |
| 2702 | if (buflen < 0) |
| 2703 | goto fail; |
| 2704 | |
| 2705 | *p++ = xdr_one; /* mark entry present */ |
J. Bruce Fields | b2c0cea | 2009-05-05 19:04:29 -0400 | [diff] [blame] | 2706 | cookiep = p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2707 | p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */ |
| 2708 | p = xdr_encode_array(p, name, namlen); /* name length & name */ |
| 2709 | |
J. Bruce Fields | 84822d0 | 2012-12-14 17:57:50 -0500 | [diff] [blame] | 2710 | nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, &p, buflen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2711 | switch (nfserr) { |
| 2712 | case nfs_ok: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2713 | break; |
| 2714 | case nfserr_resource: |
| 2715 | nfserr = nfserr_toosmall; |
| 2716 | goto fail; |
J. Bruce Fields | b2c0cea | 2009-05-05 19:04:29 -0400 | [diff] [blame] | 2717 | case nfserr_noent: |
| 2718 | goto skip_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | default: |
| 2720 | /* |
| 2721 | * If the client requested the RDATTR_ERROR attribute, |
| 2722 | * we stuff the error code into this attribute |
| 2723 | * and continue. If this attribute was not requested, |
| 2724 | * then in accordance with the spec, we fail the |
| 2725 | * entire READDIR operation(!) |
| 2726 | */ |
| 2727 | if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)) |
| 2728 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | p = nfsd4_encode_rdattr_error(p, buflen, nfserr); |
Fred Isaman | 34081ef | 2006-01-18 17:43:40 -0800 | [diff] [blame] | 2730 | if (p == NULL) { |
| 2731 | nfserr = nfserr_toosmall; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | goto fail; |
Fred Isaman | 34081ef | 2006-01-18 17:43:40 -0800 | [diff] [blame] | 2733 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | } |
| 2735 | cd->buflen -= (p - cd->buffer); |
| 2736 | cd->buffer = p; |
J. Bruce Fields | b2c0cea | 2009-05-05 19:04:29 -0400 | [diff] [blame] | 2737 | cd->offset = cookiep; |
| 2738 | skip_entry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | cd->common.err = nfs_ok; |
| 2740 | return 0; |
| 2741 | fail: |
| 2742 | cd->common.err = nfserr; |
| 2743 | return -EINVAL; |
| 2744 | } |
| 2745 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2746 | static __be32 |
| 2747 | nfsd4_encode_stateid(struct xdr_stream *xdr, stateid_t *sid) |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2748 | { |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 2749 | __be32 *p; |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2750 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2751 | p = xdr_reserve_space(xdr, sizeof(stateid_t)); |
| 2752 | if (!p) |
| 2753 | return nfserr_resource; |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2754 | WRITE32(sid->si_generation); |
| 2755 | WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t)); |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2756 | return 0; |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2757 | } |
| 2758 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2759 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2760 | nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2761 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2762 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 2763 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | |
| 2765 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2766 | p = xdr_reserve_space(xdr, 8); |
| 2767 | if (!p) |
| 2768 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 | WRITE32(access->ac_supported); |
| 2770 | WRITE32(access->ac_resp_access); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2771 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2772 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2773 | } |
| 2774 | |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2775 | static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts) |
| 2776 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2777 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2778 | __be32 *p; |
| 2779 | |
| 2780 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2781 | p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 8); |
| 2782 | if (!p) |
| 2783 | return nfserr_resource; |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2784 | WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN); |
| 2785 | WRITE32(bcts->dir); |
J. Bruce Fields | 6e67b5d | 2012-09-13 09:49:43 -0400 | [diff] [blame] | 2786 | /* Sorry, we do not yet support RDMA over 4.1: */ |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2787 | WRITE32(0); |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2788 | } |
| 2789 | return nfserr; |
| 2790 | } |
| 2791 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2792 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2793 | nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2794 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2795 | struct xdr_stream *xdr = &resp->xdr; |
| 2796 | |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2797 | if (!nfserr) |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2798 | nfserr = nfsd4_encode_stateid(xdr, &close->cl_stateid); |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2799 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2800 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2801 | } |
| 2802 | |
| 2803 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2804 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2805 | nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2807 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 2808 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2809 | |
| 2810 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2811 | p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE); |
| 2812 | if (!p) |
| 2813 | return nfserr_resource; |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 2814 | WRITEMEM(commit->co_verf.data, NFS4_VERIFIER_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2815 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2816 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | } |
| 2818 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2819 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2820 | nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2821 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2822 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 2823 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2824 | |
| 2825 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2826 | p = xdr_reserve_space(xdr, 32); |
| 2827 | if (!p) |
| 2828 | return nfserr_resource; |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 2829 | write_cinfo(&p, &create->cr_cinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | WRITE32(2); |
| 2831 | WRITE32(create->cr_bmval[0]); |
| 2832 | WRITE32(create->cr_bmval[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2834 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | } |
| 2836 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2837 | static __be32 |
| 2838 | nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | { |
| 2840 | struct svc_fh *fhp = getattr->ga_fhp; |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2841 | struct xdr_stream *xdr = &resp->xdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | |
| 2843 | if (nfserr) |
| 2844 | return nfserr; |
| 2845 | |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2846 | nfserr = nfsd4_encode_fattr(xdr, fhp, fhp->fh_export, fhp->fh_dentry, |
| 2847 | getattr->ga_bmval, |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 2848 | resp->rqstp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | return nfserr; |
| 2850 | } |
| 2851 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2852 | static __be32 |
| 2853 | nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2854 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2855 | struct xdr_stream *xdr = &resp->xdr; |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2856 | struct svc_fh *fhp = *fhpp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2857 | unsigned int len; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 2858 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2859 | |
| 2860 | if (!nfserr) { |
| 2861 | len = fhp->fh_handle.fh_size; |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2862 | p = xdr_reserve_space(xdr, len + 4); |
| 2863 | if (!p) |
| 2864 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | WRITE32(len); |
| 2866 | WRITEMEM(&fhp->fh_handle.fh_base, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2868 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2869 | } |
| 2870 | |
| 2871 | /* |
| 2872 | * Including all fields other than the name, a LOCK4denied structure requires |
| 2873 | * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes. |
| 2874 | */ |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2875 | static __be32 |
| 2876 | nfsd4_encode_lock_denied(struct xdr_stream *xdr, struct nfsd4_lock_denied *ld) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | { |
J. Bruce Fields | 7c13f34 | 2011-08-30 22:15:47 -0400 | [diff] [blame] | 2878 | struct xdr_netobj *conf = &ld->ld_owner; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 2879 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2880 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2881 | p = xdr_reserve_space(xdr, 32 + XDR_LEN(conf->len)); |
| 2882 | if (!p) |
| 2883 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2884 | WRITE64(ld->ld_start); |
| 2885 | WRITE64(ld->ld_length); |
| 2886 | WRITE32(ld->ld_type); |
J. Bruce Fields | 7c13f34 | 2011-08-30 22:15:47 -0400 | [diff] [blame] | 2887 | if (conf->len) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | WRITEMEM(&ld->ld_clientid, 8); |
J. Bruce Fields | 7c13f34 | 2011-08-30 22:15:47 -0400 | [diff] [blame] | 2889 | WRITE32(conf->len); |
| 2890 | WRITEMEM(conf->data, conf->len); |
| 2891 | kfree(conf->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2892 | } else { /* non - nfsv4 lock in conflict, no clientid nor owner */ |
| 2893 | WRITE64((u64)0); /* clientid */ |
| 2894 | WRITE32(0); /* length of owner name */ |
| 2895 | } |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2896 | return nfserr_denied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | } |
| 2898 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2899 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2900 | nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2901 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2902 | struct xdr_stream *xdr = &resp->xdr; |
| 2903 | |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2904 | if (!nfserr) |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2905 | nfserr = nfsd4_encode_stateid(xdr, &lock->lk_resp_stateid); |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2906 | else if (nfserr == nfserr_denied) |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2907 | nfserr = nfsd4_encode_lock_denied(xdr, &lock->lk_denied); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2909 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | } |
| 2911 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2912 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2913 | nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2915 | struct xdr_stream *xdr = &resp->xdr; |
| 2916 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2917 | if (nfserr == nfserr_denied) |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2918 | nfsd4_encode_lock_denied(xdr, &lockt->lt_denied); |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2919 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2920 | } |
| 2921 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2922 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2923 | nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2925 | struct xdr_stream *xdr = &resp->xdr; |
| 2926 | |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2927 | if (!nfserr) |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2928 | nfserr = nfsd4_encode_stateid(xdr, &locku->lu_stateid); |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 2929 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2930 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | } |
| 2932 | |
| 2933 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2934 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2935 | nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2936 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2937 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 2938 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2939 | |
| 2940 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2941 | p = xdr_reserve_space(xdr, 20); |
| 2942 | if (!p) |
| 2943 | return nfserr_resource; |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 2944 | write_cinfo(&p, &link->li_cinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2946 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | } |
| 2948 | |
| 2949 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 2950 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2951 | nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2953 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 2954 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | |
| 2956 | if (nfserr) |
| 2957 | goto out; |
| 2958 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2959 | nfserr = nfsd4_encode_stateid(xdr, &open->op_stateid); |
| 2960 | if (nfserr) |
| 2961 | goto out; |
| 2962 | p = xdr_reserve_space(xdr, 40); |
| 2963 | if (!p) |
| 2964 | return nfserr_resource; |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 2965 | write_cinfo(&p, &open->op_cinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | WRITE32(open->op_rflags); |
| 2967 | WRITE32(2); |
| 2968 | WRITE32(open->op_bmval[0]); |
| 2969 | WRITE32(open->op_bmval[1]); |
| 2970 | WRITE32(open->op_delegate_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2971 | |
| 2972 | switch (open->op_delegate_type) { |
| 2973 | case NFS4_OPEN_DELEGATE_NONE: |
| 2974 | break; |
| 2975 | case NFS4_OPEN_DELEGATE_READ: |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2976 | nfserr = nfsd4_encode_stateid(xdr, &open->op_delegate_stateid); |
| 2977 | if (nfserr) |
| 2978 | return nfserr; |
| 2979 | p = xdr_reserve_space(xdr, 20); |
| 2980 | if (!p) |
| 2981 | return nfserr_resource; |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 2982 | WRITE32(open->op_recall); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | |
| 2984 | /* |
| 2985 | * TODO: ACE's in delegations |
| 2986 | */ |
| 2987 | WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE); |
| 2988 | WRITE32(0); |
| 2989 | WRITE32(0); |
| 2990 | WRITE32(0); /* XXX: is NULL principal ok? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | break; |
| 2992 | case NFS4_OPEN_DELEGATE_WRITE: |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2993 | nfserr = nfsd4_encode_stateid(xdr, &open->op_delegate_stateid); |
| 2994 | if (nfserr) |
| 2995 | return nfserr; |
| 2996 | p = xdr_reserve_space(xdr, 32); |
| 2997 | if (!p) |
| 2998 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2999 | WRITE32(0); |
| 3000 | |
| 3001 | /* |
| 3002 | * TODO: space_limit's in delegations |
| 3003 | */ |
| 3004 | WRITE32(NFS4_LIMIT_SIZE); |
| 3005 | WRITE32(~(u32)0); |
| 3006 | WRITE32(~(u32)0); |
| 3007 | |
| 3008 | /* |
| 3009 | * TODO: ACE's in delegations |
| 3010 | */ |
| 3011 | WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE); |
| 3012 | WRITE32(0); |
| 3013 | WRITE32(0); |
| 3014 | WRITE32(0); /* XXX: is NULL principal ok? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3015 | break; |
Benny Halevy | d24433c | 2012-02-16 20:57:17 +0200 | [diff] [blame] | 3016 | case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */ |
| 3017 | switch (open->op_why_no_deleg) { |
| 3018 | case WND4_CONTENTION: |
| 3019 | case WND4_RESOURCE: |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3020 | p = xdr_reserve_space(xdr, 8); |
| 3021 | if (!p) |
| 3022 | return nfserr_resource; |
Benny Halevy | d24433c | 2012-02-16 20:57:17 +0200 | [diff] [blame] | 3023 | WRITE32(open->op_why_no_deleg); |
| 3024 | WRITE32(0); /* deleg signaling not supported yet */ |
| 3025 | break; |
| 3026 | default: |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3027 | p = xdr_reserve_space(xdr, 4); |
| 3028 | if (!p) |
| 3029 | return nfserr_resource; |
Benny Halevy | d24433c | 2012-02-16 20:57:17 +0200 | [diff] [blame] | 3030 | WRITE32(open->op_why_no_deleg); |
| 3031 | } |
Benny Halevy | d24433c | 2012-02-16 20:57:17 +0200 | [diff] [blame] | 3032 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3033 | default: |
| 3034 | BUG(); |
| 3035 | } |
| 3036 | /* XXX save filehandle here */ |
| 3037 | out: |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3038 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3039 | } |
| 3040 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3041 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3042 | nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3044 | struct xdr_stream *xdr = &resp->xdr; |
| 3045 | |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 3046 | if (!nfserr) |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3047 | nfserr = nfsd4_encode_stateid(xdr, &oc->oc_resp_stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3049 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3050 | } |
| 3051 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3052 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3053 | nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3055 | struct xdr_stream *xdr = &resp->xdr; |
| 3056 | |
Benny Halevy | e2f282b | 2008-08-12 20:45:07 +0300 | [diff] [blame] | 3057 | if (!nfserr) |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3058 | nfserr = nfsd4_encode_stateid(xdr, &od->od_stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3060 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | } |
| 3062 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3063 | static __be32 |
| 3064 | nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr, |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 3065 | struct nfsd4_read *read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | { |
| 3067 | u32 eof; |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 3068 | int v; |
| 3069 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3070 | unsigned long maxcount; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 3071 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | 1fcea5b | 2014-02-26 20:17:02 -0500 | [diff] [blame] | 3072 | int starting_len = xdr->buf->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3073 | long len; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3074 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3075 | |
| 3076 | if (nfserr) |
| 3077 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3079 | p = xdr_reserve_space(xdr, 8); /* eof flag and byte count */ |
| 3080 | if (!p) |
| 3081 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | |
J. Bruce Fields | 4e21ac4 | 2014-03-22 15:15:11 -0400 | [diff] [blame] | 3083 | /* Make sure there will be room for padding if needed: */ |
| 3084 | if (xdr->end - xdr->p < 1) |
| 3085 | return nfserr_resource; |
| 3086 | |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 3087 | if (resp->xdr.buf->page_len) |
| 3088 | return nfserr_resource; |
| 3089 | |
Greg Banks | 7adae48 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 3090 | maxcount = svc_max_payload(resp->rqstp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3091 | if (maxcount > read->rd_length) |
| 3092 | maxcount = read->rd_length; |
| 3093 | |
| 3094 | len = maxcount; |
| 3095 | v = 0; |
| 3096 | while (len > 0) { |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 3097 | page = *(resp->rqstp->rq_next_page); |
| 3098 | if (!page) { /* ran out of pages */ |
J. Bruce Fields | d5f50b0 | 2012-12-04 18:25:10 -0500 | [diff] [blame] | 3099 | maxcount -= len; |
| 3100 | break; |
| 3101 | } |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 3102 | resp->rqstp->rq_vec[v].iov_base = page_address(page); |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 3103 | resp->rqstp->rq_vec[v].iov_len = |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 3104 | len < PAGE_SIZE ? len : PAGE_SIZE; |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 3105 | resp->rqstp->rq_next_page++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 | v++; |
| 3107 | len -= PAGE_SIZE; |
| 3108 | } |
| 3109 | read->rd_vlen = v; |
| 3110 | |
J. Bruce Fields | 039a87c | 2010-07-30 11:33:32 -0400 | [diff] [blame] | 3111 | nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp, |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 3112 | read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | &maxcount); |
| 3114 | |
J. Bruce Fields | d3f627c | 2014-02-26 17:00:38 -0500 | [diff] [blame] | 3115 | if (nfserr) { |
J. Bruce Fields | 1fcea5b | 2014-02-26 20:17:02 -0500 | [diff] [blame] | 3116 | /* |
| 3117 | * nfsd_splice_actor may have already messed with the |
| 3118 | * page length; reset it so as not to confuse |
| 3119 | * xdr_truncate_encode: |
| 3120 | */ |
| 3121 | xdr->buf->page_len = 0; |
| 3122 | xdr_truncate_encode(xdr, starting_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | return nfserr; |
J. Bruce Fields | d3f627c | 2014-02-26 17:00:38 -0500 | [diff] [blame] | 3124 | } |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 3125 | eof = (read->rd_offset + maxcount >= |
| 3126 | read->rd_fhp->fh_dentry->d_inode->i_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | |
| 3128 | WRITE32(eof); |
| 3129 | WRITE32(maxcount); |
J. Bruce Fields | 6ac9039 | 2014-02-26 17:39:35 -0500 | [diff] [blame] | 3130 | WARN_ON_ONCE(resp->xdr.buf->head[0].iov_len != (char *)p |
| 3131 | - (char *)resp->xdr.buf->head[0].iov_base); |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3132 | resp->xdr.buf->page_len = maxcount; |
J. Bruce Fields | 6ac9039 | 2014-02-26 17:39:35 -0500 | [diff] [blame] | 3133 | xdr->buf->len += maxcount; |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 3134 | xdr->page_ptr += v; |
| 3135 | xdr->buf->buflen = maxcount + PAGE_SIZE - 2 * RPC_MAX_AUTH_SIZE; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 3136 | xdr->iov = xdr->buf->tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3137 | |
NeilBrown | 6ed6dec | 2006-04-10 22:55:32 -0700 | [diff] [blame] | 3138 | /* Use rest of head for padding and remaining ops: */ |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3139 | resp->xdr.buf->tail[0].iov_base = p; |
| 3140 | resp->xdr.buf->tail[0].iov_len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3141 | if (maxcount&3) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3142 | p = xdr_reserve_space(xdr, 4); |
NeilBrown | 6ed6dec | 2006-04-10 22:55:32 -0700 | [diff] [blame] | 3143 | WRITE32(0); |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3144 | resp->xdr.buf->tail[0].iov_base += maxcount&3; |
| 3145 | resp->xdr.buf->tail[0].iov_len = 4 - (maxcount&3); |
J. Bruce Fields | 6ac9039 | 2014-02-26 17:39:35 -0500 | [diff] [blame] | 3146 | xdr->buf->len -= (maxcount&3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3147 | } |
| 3148 | return 0; |
| 3149 | } |
| 3150 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3151 | static __be32 |
| 3152 | nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3153 | { |
| 3154 | int maxcount; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 3155 | struct xdr_stream *xdr = &resp->xdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3156 | char *page; |
J. Bruce Fields | 1fcea5b | 2014-02-26 20:17:02 -0500 | [diff] [blame] | 3157 | int length_offset = xdr->buf->len; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3158 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3159 | |
| 3160 | if (nfserr) |
| 3161 | return nfserr; |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 3162 | |
| 3163 | p = xdr_reserve_space(xdr, 4); |
| 3164 | if (!p) |
| 3165 | return nfserr_resource; |
| 3166 | |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3167 | if (resp->xdr.buf->page_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3168 | return nfserr_resource; |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 3169 | if (!*resp->rqstp->rq_next_page) |
J. Bruce Fields | d5f50b0 | 2012-12-04 18:25:10 -0500 | [diff] [blame] | 3170 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3171 | |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 3172 | page = page_address(*(resp->rqstp->rq_next_page++)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3173 | |
| 3174 | maxcount = PAGE_SIZE; |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3175 | |
J. Bruce Fields | 4e21ac4 | 2014-03-22 15:15:11 -0400 | [diff] [blame] | 3176 | if (xdr->end - xdr->p < 1) |
| 3177 | return nfserr_resource; |
| 3178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | /* |
| 3180 | * XXX: By default, the ->readlink() VFS op will truncate symlinks |
| 3181 | * if they would overflow the buffer. Is this kosher in NFSv4? If |
| 3182 | * not, one easy fix is: if ->readlink() precisely fills the buffer, |
| 3183 | * assume that truncation occurred, and return NFS4ERR_RESOURCE. |
| 3184 | */ |
| 3185 | nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount); |
| 3186 | if (nfserr == nfserr_isdir) |
J. Bruce Fields | d3f627c | 2014-02-26 17:00:38 -0500 | [diff] [blame] | 3187 | nfserr = nfserr_inval; |
| 3188 | if (nfserr) { |
J. Bruce Fields | 1fcea5b | 2014-02-26 20:17:02 -0500 | [diff] [blame] | 3189 | xdr_truncate_encode(xdr, length_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | return nfserr; |
J. Bruce Fields | d3f627c | 2014-02-26 17:00:38 -0500 | [diff] [blame] | 3191 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3192 | |
| 3193 | WRITE32(maxcount); |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3194 | resp->xdr.buf->head[0].iov_len = (char *)p |
| 3195 | - (char *)resp->xdr.buf->head[0].iov_base; |
| 3196 | resp->xdr.buf->page_len = maxcount; |
J. Bruce Fields | 6ac9039 | 2014-02-26 17:39:35 -0500 | [diff] [blame] | 3197 | xdr->buf->len += maxcount; |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 3198 | xdr->page_ptr += 1; |
| 3199 | xdr->buf->buflen -= PAGE_SIZE; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 3200 | xdr->iov = xdr->buf->tail; |
NeilBrown | 6ed6dec | 2006-04-10 22:55:32 -0700 | [diff] [blame] | 3201 | |
| 3202 | /* Use rest of head for padding and remaining ops: */ |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3203 | resp->xdr.buf->tail[0].iov_base = p; |
| 3204 | resp->xdr.buf->tail[0].iov_len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | if (maxcount&3) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3206 | p = xdr_reserve_space(xdr, 4); |
NeilBrown | 6ed6dec | 2006-04-10 22:55:32 -0700 | [diff] [blame] | 3207 | WRITE32(0); |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3208 | resp->xdr.buf->tail[0].iov_base += maxcount&3; |
| 3209 | resp->xdr.buf->tail[0].iov_len = 4 - (maxcount&3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3210 | } |
| 3211 | return 0; |
| 3212 | } |
| 3213 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3214 | static __be32 |
| 3215 | nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3216 | { |
| 3217 | int maxcount; |
| 3218 | loff_t offset; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 3219 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | 1fcea5b | 2014-02-26 20:17:02 -0500 | [diff] [blame] | 3220 | int starting_len = xdr->buf->len; |
| 3221 | __be32 *page, *tailbase; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3222 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3223 | |
| 3224 | if (nfserr) |
| 3225 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3226 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3227 | p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE); |
| 3228 | if (!p) |
| 3229 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 3231 | if (resp->xdr.buf->page_len) |
| 3232 | return nfserr_resource; |
| 3233 | if (!*resp->rqstp->rq_next_page) |
| 3234 | return nfserr_resource; |
| 3235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3236 | /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */ |
| 3237 | WRITE32(0); |
| 3238 | WRITE32(0); |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3239 | resp->xdr.buf->head[0].iov_len = ((char *)resp->xdr.p) |
| 3240 | - (char *)resp->xdr.buf->head[0].iov_base; |
NeilBrown | bb6e8a9 | 2006-04-10 22:55:33 -0700 | [diff] [blame] | 3241 | tailbase = p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3242 | |
| 3243 | maxcount = PAGE_SIZE; |
| 3244 | if (maxcount > readdir->rd_maxcount) |
| 3245 | maxcount = readdir->rd_maxcount; |
| 3246 | |
| 3247 | /* |
| 3248 | * Convert from bytes to words, account for the two words already |
| 3249 | * written, make sure to leave two words at the end for the next |
| 3250 | * pointer and eof field. |
| 3251 | */ |
| 3252 | maxcount = (maxcount >> 2) - 4; |
| 3253 | if (maxcount < 0) { |
| 3254 | nfserr = nfserr_toosmall; |
| 3255 | goto err_no_verf; |
| 3256 | } |
| 3257 | |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 3258 | page = page_address(*(resp->rqstp->rq_next_page++)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3259 | readdir->common.err = 0; |
| 3260 | readdir->buflen = maxcount; |
| 3261 | readdir->buffer = page; |
| 3262 | readdir->offset = NULL; |
| 3263 | |
| 3264 | offset = readdir->rd_cookie; |
| 3265 | nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp, |
| 3266 | &offset, |
| 3267 | &readdir->common, nfsd4_encode_dirent); |
| 3268 | if (nfserr == nfs_ok && |
| 3269 | readdir->common.err == nfserr_toosmall && |
| 3270 | readdir->buffer == page) |
| 3271 | nfserr = nfserr_toosmall; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3272 | if (nfserr) |
| 3273 | goto err_no_verf; |
| 3274 | |
| 3275 | if (readdir->offset) |
| 3276 | xdr_encode_hyper(readdir->offset, offset); |
| 3277 | |
| 3278 | p = readdir->buffer; |
| 3279 | *p++ = 0; /* no more entries */ |
| 3280 | *p++ = htonl(readdir->common.err == nfserr_eof); |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3281 | resp->xdr.buf->page_len = ((char *)p) - |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 3282 | (char*)page_address(*(resp->rqstp->rq_next_page-1)); |
J. Bruce Fields | 6ac9039 | 2014-02-26 17:39:35 -0500 | [diff] [blame] | 3283 | xdr->buf->len += xdr->buf->page_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3284 | |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 3285 | xdr->iov = xdr->buf->tail; |
| 3286 | |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 3287 | xdr->page_ptr++; |
| 3288 | xdr->buf->buflen -= PAGE_SIZE; |
| 3289 | xdr->iov = xdr->buf->tail; |
| 3290 | |
NeilBrown | bb6e8a9 | 2006-04-10 22:55:33 -0700 | [diff] [blame] | 3291 | /* Use rest of head for padding and remaining ops: */ |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 3292 | resp->xdr.buf->tail[0].iov_base = tailbase; |
| 3293 | resp->xdr.buf->tail[0].iov_len = 0; |
| 3294 | resp->xdr.p = resp->xdr.buf->tail[0].iov_base; |
| 3295 | resp->xdr.end = resp->xdr.p + |
| 3296 | (PAGE_SIZE - resp->xdr.buf->head[0].iov_len)/4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3297 | |
| 3298 | return 0; |
| 3299 | err_no_verf: |
J. Bruce Fields | 1fcea5b | 2014-02-26 20:17:02 -0500 | [diff] [blame] | 3300 | xdr_truncate_encode(xdr, starting_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3301 | return nfserr; |
| 3302 | } |
| 3303 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3304 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3305 | nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3307 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3308 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3309 | |
| 3310 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3311 | p = xdr_reserve_space(xdr, 20); |
| 3312 | if (!p) |
| 3313 | return nfserr_resource; |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 3314 | write_cinfo(&p, &remove->rm_cinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3315 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3316 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3317 | } |
| 3318 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3319 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3320 | nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3321 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3322 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3323 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | |
| 3325 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3326 | p = xdr_reserve_space(xdr, 40); |
| 3327 | if (!p) |
| 3328 | return nfserr_resource; |
J. Bruce Fields | c654b8a | 2009-04-16 17:33:25 -0400 | [diff] [blame] | 3329 | write_cinfo(&p, &rename->rn_sinfo); |
| 3330 | write_cinfo(&p, &rename->rn_tinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3331 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3332 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3333 | } |
| 3334 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3335 | static __be32 |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3336 | nfsd4_do_encode_secinfo(struct xdr_stream *xdr, |
Chuck Lever | a77c806 | 2013-03-16 15:55:10 -0400 | [diff] [blame] | 3337 | __be32 nfserr, struct svc_export *exp) |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3338 | { |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3339 | u32 i, nflavs, supported; |
J. Bruce Fields | 4796f45 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3340 | struct exp_flavor_info *flavs; |
| 3341 | struct exp_flavor_info def_flavs[2]; |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3342 | __be32 *p, *flavorsp; |
| 3343 | static bool report = true; |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3344 | |
| 3345 | if (nfserr) |
| 3346 | goto out; |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3347 | nfserr = nfserr_resource; |
J. Bruce Fields | 4796f45 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3348 | if (exp->ex_nflavors) { |
| 3349 | flavs = exp->ex_flavors; |
| 3350 | nflavs = exp->ex_nflavors; |
| 3351 | } else { /* Handling of some defaults in absence of real secinfo: */ |
| 3352 | flavs = def_flavs; |
| 3353 | if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) { |
| 3354 | nflavs = 2; |
| 3355 | flavs[0].pseudoflavor = RPC_AUTH_UNIX; |
| 3356 | flavs[1].pseudoflavor = RPC_AUTH_NULL; |
| 3357 | } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) { |
| 3358 | nflavs = 1; |
| 3359 | flavs[0].pseudoflavor |
| 3360 | = svcauth_gss_flavor(exp->ex_client); |
| 3361 | } else { |
| 3362 | nflavs = 1; |
| 3363 | flavs[0].pseudoflavor |
| 3364 | = exp->ex_client->flavour->flavour; |
| 3365 | } |
| 3366 | } |
| 3367 | |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3368 | supported = 0; |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3369 | p = xdr_reserve_space(xdr, 4); |
| 3370 | if (!p) |
| 3371 | goto out; |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3372 | flavorsp = p++; /* to be backfilled later */ |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3373 | |
J. Bruce Fields | 4796f45 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3374 | for (i = 0; i < nflavs; i++) { |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3375 | rpc_authflavor_t pf = flavs[i].pseudoflavor; |
Chuck Lever | a77c806 | 2013-03-16 15:55:10 -0400 | [diff] [blame] | 3376 | struct rpcsec_gss_info info; |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3377 | |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3378 | if (rpcauth_get_gssinfo(pf, &info) == 0) { |
| 3379 | supported++; |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3380 | p = xdr_reserve_space(xdr, 4 + 4 + |
| 3381 | XDR_LEN(info.oid.len) + 4 + 4); |
| 3382 | if (!p) |
| 3383 | goto out; |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3384 | WRITE32(RPC_AUTH_GSS); |
Chuck Lever | a77c806 | 2013-03-16 15:55:10 -0400 | [diff] [blame] | 3385 | WRITE32(info.oid.len); |
| 3386 | WRITEMEM(info.oid.data, info.oid.len); |
Chuck Lever | a77c806 | 2013-03-16 15:55:10 -0400 | [diff] [blame] | 3387 | WRITE32(info.qop); |
Chuck Lever | a77c806 | 2013-03-16 15:55:10 -0400 | [diff] [blame] | 3388 | WRITE32(info.service); |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3389 | } else if (pf < RPC_AUTH_MAXFLAVOR) { |
| 3390 | supported++; |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3391 | p = xdr_reserve_space(xdr, 4); |
| 3392 | if (!p) |
| 3393 | goto out; |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3394 | WRITE32(pf); |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3395 | } else { |
| 3396 | if (report) |
| 3397 | pr_warn("NFS: SECINFO: security flavor %u " |
| 3398 | "is not supported\n", pf); |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3399 | } |
| 3400 | } |
Chuck Lever | a77c806 | 2013-03-16 15:55:10 -0400 | [diff] [blame] | 3401 | |
Chuck Lever | 676e4eb | 2013-04-30 18:48:54 -0400 | [diff] [blame] | 3402 | if (nflavs != supported) |
| 3403 | report = false; |
| 3404 | *flavorsp = htonl(supported); |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3405 | nfserr = 0; |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3406 | out: |
| 3407 | if (exp) |
| 3408 | exp_put(exp); |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3409 | return nfserr; |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 3410 | } |
| 3411 | |
Mi Jinlong | 22b6dee | 2010-12-27 14:29:57 +0800 | [diff] [blame] | 3412 | static __be32 |
| 3413 | nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr, |
| 3414 | struct nfsd4_secinfo *secinfo) |
| 3415 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3416 | struct xdr_stream *xdr = &resp->xdr; |
| 3417 | |
| 3418 | return nfsd4_do_encode_secinfo(xdr, nfserr, secinfo->si_exp); |
Mi Jinlong | 22b6dee | 2010-12-27 14:29:57 +0800 | [diff] [blame] | 3419 | } |
| 3420 | |
| 3421 | static __be32 |
| 3422 | nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr, |
| 3423 | struct nfsd4_secinfo_no_name *secinfo) |
| 3424 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3425 | struct xdr_stream *xdr = &resp->xdr; |
| 3426 | |
| 3427 | return nfsd4_do_encode_secinfo(xdr, nfserr, secinfo->sin_exp); |
Mi Jinlong | 22b6dee | 2010-12-27 14:29:57 +0800 | [diff] [blame] | 3428 | } |
| 3429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3430 | /* |
| 3431 | * The SETATTR encode routine is special -- it always encodes a bitmap, |
| 3432 | * regardless of the error status. |
| 3433 | */ |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3434 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3435 | nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3437 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3438 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3439 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3440 | p = xdr_reserve_space(xdr, 16); |
| 3441 | if (!p) |
| 3442 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3443 | if (nfserr) { |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 3444 | WRITE32(3); |
| 3445 | WRITE32(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3446 | WRITE32(0); |
| 3447 | WRITE32(0); |
| 3448 | } |
| 3449 | else { |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 3450 | WRITE32(3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3451 | WRITE32(setattr->sa_bmval[0]); |
| 3452 | WRITE32(setattr->sa_bmval[1]); |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 3453 | WRITE32(setattr->sa_bmval[2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3454 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3455 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3456 | } |
| 3457 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3458 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3459 | nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3460 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3461 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3462 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3463 | |
| 3464 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3465 | p = xdr_reserve_space(xdr, 8 + NFS4_VERIFIER_SIZE); |
| 3466 | if (!p) |
| 3467 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3468 | WRITEMEM(&scd->se_clientid, 8); |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 3469 | WRITEMEM(&scd->se_confirm, NFS4_VERIFIER_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3470 | } |
| 3471 | else if (nfserr == nfserr_clid_inuse) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3472 | p = xdr_reserve_space(xdr, 8); |
| 3473 | if (!p) |
| 3474 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3475 | WRITE32(0); |
| 3476 | WRITE32(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3477 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3478 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3479 | } |
| 3480 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3481 | static __be32 |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3482 | nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3483 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3484 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3485 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3486 | |
| 3487 | if (!nfserr) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3488 | p = xdr_reserve_space(xdr, 16); |
| 3489 | if (!p) |
| 3490 | return nfserr_resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3491 | WRITE32(write->wr_bytes_written); |
| 3492 | WRITE32(write->wr_how_written); |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 3493 | WRITEMEM(write->wr_verifier.data, NFS4_VERIFIER_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3494 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3495 | return nfserr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3496 | } |
| 3497 | |
J. Bruce Fields | 57266a6 | 2013-04-13 14:27:29 -0400 | [diff] [blame] | 3498 | static const u32 nfs4_minimal_spo_must_enforce[2] = { |
| 3499 | [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) | |
| 3500 | 1 << (OP_EXCHANGE_ID - 32) | |
| 3501 | 1 << (OP_CREATE_SESSION - 32) | |
| 3502 | 1 << (OP_DESTROY_SESSION - 32) | |
| 3503 | 1 << (OP_DESTROY_CLIENTID - 32) |
| 3504 | }; |
| 3505 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3506 | static __be32 |
J. Bruce Fields | 57b7b43 | 2012-04-25 17:58:50 -0400 | [diff] [blame] | 3507 | nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3508 | struct nfsd4_exchange_id *exid) |
| 3509 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3510 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3511 | __be32 *p; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 3512 | char *major_id; |
| 3513 | char *server_scope; |
| 3514 | int major_id_sz; |
| 3515 | int server_scope_sz; |
| 3516 | uint64_t minor_id = 0; |
| 3517 | |
| 3518 | if (nfserr) |
| 3519 | return nfserr; |
| 3520 | |
| 3521 | major_id = utsname()->nodename; |
| 3522 | major_id_sz = strlen(major_id); |
| 3523 | server_scope = utsname()->nodename; |
| 3524 | server_scope_sz = strlen(server_scope); |
| 3525 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3526 | p = xdr_reserve_space(xdr, |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 3527 | 8 /* eir_clientid */ + |
| 3528 | 4 /* eir_sequenceid */ + |
| 3529 | 4 /* eir_flags */ + |
Kinglong Mee | a8bb84b | 2013-12-10 15:24:36 +0800 | [diff] [blame] | 3530 | 4 /* spr_how */); |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3531 | if (!p) |
| 3532 | return nfserr_resource; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 3533 | |
| 3534 | WRITEMEM(&exid->clientid, 8); |
| 3535 | WRITE32(exid->seqid); |
| 3536 | WRITE32(exid->flags); |
| 3537 | |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 3538 | WRITE32(exid->spa_how); |
Kinglong Mee | a8bb84b | 2013-12-10 15:24:36 +0800 | [diff] [blame] | 3539 | |
J. Bruce Fields | 57266a6 | 2013-04-13 14:27:29 -0400 | [diff] [blame] | 3540 | switch (exid->spa_how) { |
| 3541 | case SP4_NONE: |
| 3542 | break; |
| 3543 | case SP4_MACH_CRED: |
Kinglong Mee | a8bb84b | 2013-12-10 15:24:36 +0800 | [diff] [blame] | 3544 | /* spo_must_enforce, spo_must_allow */ |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3545 | p = xdr_reserve_space(xdr, 16); |
| 3546 | if (!p) |
| 3547 | return nfserr_resource; |
Kinglong Mee | a8bb84b | 2013-12-10 15:24:36 +0800 | [diff] [blame] | 3548 | |
J. Bruce Fields | 57266a6 | 2013-04-13 14:27:29 -0400 | [diff] [blame] | 3549 | /* spo_must_enforce bitmap: */ |
| 3550 | WRITE32(2); |
| 3551 | WRITE32(nfs4_minimal_spo_must_enforce[0]); |
| 3552 | WRITE32(nfs4_minimal_spo_must_enforce[1]); |
| 3553 | /* empty spo_must_allow bitmap: */ |
| 3554 | WRITE32(0); |
Kinglong Mee | a8bb84b | 2013-12-10 15:24:36 +0800 | [diff] [blame] | 3555 | |
J. Bruce Fields | 57266a6 | 2013-04-13 14:27:29 -0400 | [diff] [blame] | 3556 | break; |
| 3557 | default: |
| 3558 | WARN_ON_ONCE(1); |
| 3559 | } |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 3560 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3561 | p = xdr_reserve_space(xdr, |
Kinglong Mee | a8bb84b | 2013-12-10 15:24:36 +0800 | [diff] [blame] | 3562 | 8 /* so_minor_id */ + |
| 3563 | 4 /* so_major_id.len */ + |
| 3564 | (XDR_QUADLEN(major_id_sz) * 4) + |
| 3565 | 4 /* eir_server_scope.len */ + |
| 3566 | (XDR_QUADLEN(server_scope_sz) * 4) + |
| 3567 | 4 /* eir_server_impl_id.count (0) */); |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3568 | if (!p) |
| 3569 | return nfserr_resource; |
Kinglong Mee | a8bb84b | 2013-12-10 15:24:36 +0800 | [diff] [blame] | 3570 | |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 3571 | /* The server_owner struct */ |
| 3572 | WRITE64(minor_id); /* Minor id */ |
| 3573 | /* major id */ |
| 3574 | WRITE32(major_id_sz); |
| 3575 | WRITEMEM(major_id, major_id_sz); |
| 3576 | |
| 3577 | /* Server scope */ |
| 3578 | WRITE32(server_scope_sz); |
| 3579 | WRITEMEM(server_scope, server_scope_sz); |
| 3580 | |
| 3581 | /* Implementation id */ |
| 3582 | WRITE32(0); /* zero length nfs_impl_id4 array */ |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 3583 | return 0; |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3584 | } |
| 3585 | |
| 3586 | static __be32 |
J. Bruce Fields | 57b7b43 | 2012-04-25 17:58:50 -0400 | [diff] [blame] | 3587 | nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3588 | struct nfsd4_create_session *sess) |
| 3589 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3590 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3591 | __be32 *p; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3592 | |
| 3593 | if (nfserr) |
| 3594 | return nfserr; |
| 3595 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3596 | p = xdr_reserve_space(xdr, 24); |
| 3597 | if (!p) |
| 3598 | return nfserr_resource; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3599 | WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN); |
| 3600 | WRITE32(sess->seqid); |
| 3601 | WRITE32(sess->flags); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3602 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3603 | p = xdr_reserve_space(xdr, 28); |
| 3604 | if (!p) |
| 3605 | return nfserr_resource; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3606 | WRITE32(0); /* headerpadsz */ |
| 3607 | WRITE32(sess->fore_channel.maxreq_sz); |
| 3608 | WRITE32(sess->fore_channel.maxresp_sz); |
| 3609 | WRITE32(sess->fore_channel.maxresp_cached); |
| 3610 | WRITE32(sess->fore_channel.maxops); |
| 3611 | WRITE32(sess->fore_channel.maxreqs); |
| 3612 | WRITE32(sess->fore_channel.nr_rdma_attrs); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3613 | |
| 3614 | if (sess->fore_channel.nr_rdma_attrs) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3615 | p = xdr_reserve_space(xdr, 4); |
| 3616 | if (!p) |
| 3617 | return nfserr_resource; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3618 | WRITE32(sess->fore_channel.rdma_attrs); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3619 | } |
| 3620 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3621 | p = xdr_reserve_space(xdr, 28); |
| 3622 | if (!p) |
| 3623 | return nfserr_resource; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3624 | WRITE32(0); /* headerpadsz */ |
| 3625 | WRITE32(sess->back_channel.maxreq_sz); |
| 3626 | WRITE32(sess->back_channel.maxresp_sz); |
| 3627 | WRITE32(sess->back_channel.maxresp_cached); |
| 3628 | WRITE32(sess->back_channel.maxops); |
| 3629 | WRITE32(sess->back_channel.maxreqs); |
| 3630 | WRITE32(sess->back_channel.nr_rdma_attrs); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3631 | |
| 3632 | if (sess->back_channel.nr_rdma_attrs) { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3633 | p = xdr_reserve_space(xdr, 4); |
| 3634 | if (!p) |
| 3635 | return nfserr_resource; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3636 | WRITE32(sess->back_channel.rdma_attrs); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 3637 | } |
| 3638 | return 0; |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3639 | } |
| 3640 | |
| 3641 | static __be32 |
J. Bruce Fields | 57b7b43 | 2012-04-25 17:58:50 -0400 | [diff] [blame] | 3642 | nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3643 | struct nfsd4_sequence *seq) |
| 3644 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3645 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3646 | __be32 *p; |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 3647 | |
| 3648 | if (nfserr) |
| 3649 | return nfserr; |
| 3650 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3651 | p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 20); |
| 3652 | if (!p) |
| 3653 | return nfserr_resource; |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 3654 | WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN); |
| 3655 | WRITE32(seq->seqid); |
| 3656 | WRITE32(seq->slotid); |
J. Bruce Fields | b7d7ca3 | 2011-08-31 15:39:30 -0400 | [diff] [blame] | 3657 | /* Note slotid's are numbered from zero: */ |
| 3658 | WRITE32(seq->maxslots - 1); /* sr_highest_slotid */ |
| 3659 | WRITE32(seq->maxslots - 1); /* sr_target_highest_slotid */ |
J. Bruce Fields | 0d7bb71 | 2010-11-18 08:30:33 -0500 | [diff] [blame] | 3660 | WRITE32(seq->status_flags); |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 3661 | |
J. Bruce Fields | f523601 | 2014-03-21 17:57:57 -0400 | [diff] [blame^] | 3662 | resp->cstate.data_offset = xdr->buf->len; /* DRC cache data pointer */ |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 3663 | return 0; |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3664 | } |
| 3665 | |
J. Bruce Fields | 2355c59 | 2012-04-25 16:56:22 -0400 | [diff] [blame] | 3666 | static __be32 |
J. Bruce Fields | 57b7b43 | 2012-04-25 17:58:50 -0400 | [diff] [blame] | 3667 | nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr, |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3668 | struct nfsd4_test_stateid *test_stateid) |
| 3669 | { |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3670 | struct xdr_stream *xdr = &resp->xdr; |
Bryan Schumaker | 03cfb42 | 2012-01-27 10:22:49 -0500 | [diff] [blame] | 3671 | struct nfsd4_test_stateid_id *stateid, *next; |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3672 | __be32 *p; |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3673 | |
J. Bruce Fields | a11fcce | 2014-02-03 16:31:42 -0500 | [diff] [blame] | 3674 | if (nfserr) |
| 3675 | return nfserr; |
| 3676 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3677 | p = xdr_reserve_space(xdr, 4 + (4 * test_stateid->ts_num_ids)); |
| 3678 | if (!p) |
| 3679 | return nfserr_resource; |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3680 | *p++ = htonl(test_stateid->ts_num_ids); |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3681 | |
Bryan Schumaker | 03cfb42 | 2012-01-27 10:22:49 -0500 | [diff] [blame] | 3682 | list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) { |
Al Viro | 02f5fde | 2012-04-13 00:10:34 -0400 | [diff] [blame] | 3683 | *p++ = stateid->ts_id_status; |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3684 | } |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3685 | |
| 3686 | return nfserr; |
| 3687 | } |
| 3688 | |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3689 | static __be32 |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3690 | nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p) |
| 3691 | { |
| 3692 | return nfserr; |
| 3693 | } |
| 3694 | |
| 3695 | typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *); |
| 3696 | |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3697 | /* |
| 3698 | * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1 |
| 3699 | * since we don't need to filter out obsolete ops as this is |
| 3700 | * done in the decoding phase. |
| 3701 | */ |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3702 | static nfsd4_enc nfsd4_enc_ops[] = { |
J. Bruce Fields | ad1060c | 2008-07-18 15:04:16 -0400 | [diff] [blame] | 3703 | [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access, |
| 3704 | [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close, |
| 3705 | [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit, |
| 3706 | [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create, |
| 3707 | [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop, |
| 3708 | [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop, |
| 3709 | [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr, |
| 3710 | [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh, |
| 3711 | [OP_LINK] = (nfsd4_enc)nfsd4_encode_link, |
| 3712 | [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock, |
| 3713 | [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt, |
| 3714 | [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku, |
| 3715 | [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop, |
| 3716 | [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop, |
| 3717 | [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop, |
| 3718 | [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open, |
Benny Halevy | 84f09f4 | 2009-03-04 23:05:35 +0200 | [diff] [blame] | 3719 | [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop, |
J. Bruce Fields | ad1060c | 2008-07-18 15:04:16 -0400 | [diff] [blame] | 3720 | [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm, |
| 3721 | [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade, |
| 3722 | [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop, |
| 3723 | [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop, |
| 3724 | [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop, |
| 3725 | [OP_READ] = (nfsd4_enc)nfsd4_encode_read, |
| 3726 | [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir, |
| 3727 | [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink, |
| 3728 | [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove, |
| 3729 | [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename, |
| 3730 | [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop, |
| 3731 | [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop, |
| 3732 | [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop, |
| 3733 | [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo, |
| 3734 | [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr, |
| 3735 | [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid, |
| 3736 | [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop, |
| 3737 | [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop, |
| 3738 | [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write, |
| 3739 | [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3740 | |
| 3741 | /* NFSv4.1 operations */ |
| 3742 | [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop, |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 3743 | [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3744 | [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id, |
| 3745 | [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session, |
Kinglong Mee | 43212cc | 2013-12-09 19:04:23 +0800 | [diff] [blame] | 3746 | [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_noop, |
| 3747 | [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3748 | [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop, |
| 3749 | [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop, |
| 3750 | [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop, |
| 3751 | [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop, |
| 3752 | [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop, |
| 3753 | [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop, |
Mi Jinlong | 22b6dee | 2010-12-27 14:29:57 +0800 | [diff] [blame] | 3754 | [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3755 | [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence, |
| 3756 | [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop, |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3757 | [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid, |
Andy Adamson | 2db134e | 2009-04-03 08:27:55 +0300 | [diff] [blame] | 3758 | [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop, |
| 3759 | [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop, |
| 3760 | [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop, |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3761 | }; |
| 3762 | |
Andy Adamson | 496c262 | 2009-04-03 08:28:48 +0300 | [diff] [blame] | 3763 | /* |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 3764 | * Calculate whether we still have space to encode repsize bytes. |
| 3765 | * There are two considerations: |
| 3766 | * - For NFS versions >=4.1, the size of the reply must stay within |
| 3767 | * session limits |
| 3768 | * - For all NFS versions, we must stay within limited preallocated |
| 3769 | * buffer space. |
Andy Adamson | 496c262 | 2009-04-03 08:28:48 +0300 | [diff] [blame] | 3770 | * |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 3771 | * This is called before the operation is processed, so can only provide |
| 3772 | * an upper estimate. For some nonidempotent operations (such as |
| 3773 | * getattr), it's not necessarily a problem if that estimate is wrong, |
| 3774 | * as we can fail it after processing without significant side effects. |
Andy Adamson | 496c262 | 2009-04-03 08:28:48 +0300 | [diff] [blame] | 3775 | */ |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 3776 | __be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 respsize) |
Andy Adamson | 496c262 | 2009-04-03 08:28:48 +0300 | [diff] [blame] | 3777 | { |
J. Bruce Fields | 67492c9 | 2014-03-08 16:42:05 -0500 | [diff] [blame] | 3778 | struct xdr_buf *buf = &resp->rqstp->rq_res; |
J. Bruce Fields | ea8d772 | 2014-03-08 17:19:55 -0500 | [diff] [blame] | 3779 | struct nfsd4_session *session = resp->cstate.session; |
J. Bruce Fields | ea8d772 | 2014-03-08 17:19:55 -0500 | [diff] [blame] | 3780 | int slack_bytes = (char *)resp->xdr.end - (char *)resp->xdr.p; |
Andy Adamson | 496c262 | 2009-04-03 08:28:48 +0300 | [diff] [blame] | 3781 | |
J. Bruce Fields | ea8d772 | 2014-03-08 17:19:55 -0500 | [diff] [blame] | 3782 | if (nfsd4_has_session(&resp->cstate)) { |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 3783 | struct nfsd4_slot *slot = resp->cstate.slot; |
Andy Adamson | 496c262 | 2009-04-03 08:28:48 +0300 | [diff] [blame] | 3784 | |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 3785 | if (buf->len + respsize > session->se_fchannel.maxresp_sz) |
J. Bruce Fields | ea8d772 | 2014-03-08 17:19:55 -0500 | [diff] [blame] | 3786 | return nfserr_rep_too_big; |
Andy Adamson | 496c262 | 2009-04-03 08:28:48 +0300 | [diff] [blame] | 3787 | |
J. Bruce Fields | ea8d772 | 2014-03-08 17:19:55 -0500 | [diff] [blame] | 3788 | if ((slot->sl_flags & NFSD4_SLOT_CACHETHIS) && |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 3789 | buf->len + respsize > session->se_fchannel.maxresp_cached) |
J. Bruce Fields | ea8d772 | 2014-03-08 17:19:55 -0500 | [diff] [blame] | 3790 | return nfserr_rep_too_big_to_cache; |
| 3791 | } |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 3792 | |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 3793 | if (respsize > slack_bytes) { |
J. Bruce Fields | ea8d772 | 2014-03-08 17:19:55 -0500 | [diff] [blame] | 3794 | WARN_ON_ONCE(nfsd4_has_session(&resp->cstate)); |
| 3795 | return nfserr_resource; |
| 3796 | } |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 3797 | |
| 3798 | return 0; |
Andy Adamson | 496c262 | 2009-04-03 08:28:48 +0300 | [diff] [blame] | 3799 | } |
| 3800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3801 | void |
| 3802 | nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op) |
| 3803 | { |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 3804 | struct xdr_stream *xdr = &resp->xdr; |
J. Bruce Fields | 9411b1d | 2013-04-01 16:37:12 -0400 | [diff] [blame] | 3805 | struct nfs4_stateowner *so = resp->cstate.replay_owner; |
J. Bruce Fields | 5f4ab94 | 2014-03-07 11:01:37 -0500 | [diff] [blame] | 3806 | struct svc_rqst *rqstp = resp->rqstp; |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 3807 | int post_err_offset; |
J. Bruce Fields | 07d1f80 | 2014-03-06 20:39:29 -0500 | [diff] [blame] | 3808 | nfsd4_enc encoder; |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3809 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3810 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3811 | p = xdr_reserve_space(xdr, 8); |
| 3812 | if (!p) { |
| 3813 | WARN_ON_ONCE(1); |
| 3814 | return; |
| 3815 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3816 | WRITE32(op->opnum); |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 3817 | post_err_offset = xdr->buf->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3818 | |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3819 | if (op->opnum == OP_ILLEGAL) |
| 3820 | goto status; |
| 3821 | BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) || |
| 3822 | !nfsd4_enc_ops[op->opnum]); |
J. Bruce Fields | 07d1f80 | 2014-03-06 20:39:29 -0500 | [diff] [blame] | 3823 | encoder = nfsd4_enc_ops[op->opnum]; |
| 3824 | op->status = encoder(resp, op->status, &op->u); |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 3825 | xdr_commit_encode(xdr); |
| 3826 | |
J. Bruce Fields | 067e1ac | 2014-03-21 17:26:44 -0400 | [diff] [blame] | 3827 | /* nfsd4_check_resp_size guarantees enough room for error status */ |
J. Bruce Fields | 5f4ab94 | 2014-03-07 11:01:37 -0500 | [diff] [blame] | 3828 | if (!op->status) { |
| 3829 | int space_needed = 0; |
| 3830 | if (!nfsd4_last_compound_op(rqstp)) |
| 3831 | space_needed = COMPOUND_ERR_SLACK_SPACE; |
| 3832 | op->status = nfsd4_check_resp_size(resp, space_needed); |
| 3833 | } |
J. Bruce Fields | 07d1f80 | 2014-03-06 20:39:29 -0500 | [diff] [blame] | 3834 | if (op->status == nfserr_resource || |
| 3835 | op->status == nfserr_rep_too_big || |
| 3836 | op->status == nfserr_rep_too_big_to_cache) { |
| 3837 | /* |
| 3838 | * The operation may have already been encoded or |
| 3839 | * partially encoded. No op returns anything additional |
| 3840 | * in the case of one of these three errors, so we can |
| 3841 | * just truncate back to after the status. But it's a |
| 3842 | * bug if we had to do this on a non-idempotent op: |
| 3843 | */ |
| 3844 | warn_on_nonidempotent_op(op); |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 3845 | xdr_truncate_encode(xdr, post_err_offset); |
J. Bruce Fields | 07d1f80 | 2014-03-06 20:39:29 -0500 | [diff] [blame] | 3846 | } |
J. Bruce Fields | 9411b1d | 2013-04-01 16:37:12 -0400 | [diff] [blame] | 3847 | if (so) { |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 3848 | int len = xdr->buf->len - post_err_offset; |
| 3849 | |
J. Bruce Fields | 9411b1d | 2013-04-01 16:37:12 -0400 | [diff] [blame] | 3850 | so->so_replay.rp_status = op->status; |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 3851 | so->so_replay.rp_buflen = len; |
| 3852 | read_bytes_from_xdr_buf(xdr->buf, post_err_offset, |
| 3853 | so->so_replay.rp_buf, len); |
J. Bruce Fields | 9411b1d | 2013-04-01 16:37:12 -0400 | [diff] [blame] | 3854 | } |
Benny Halevy | 695e12f | 2008-07-04 14:38:33 +0300 | [diff] [blame] | 3855 | status: |
J. Bruce Fields | 082d4bd | 2013-08-29 15:42:52 -0400 | [diff] [blame] | 3856 | /* Note that op->status is already in network byte order: */ |
| 3857 | write_bytes_to_xdr_buf(xdr->buf, post_err_offset - 4, &op->status, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3858 | } |
| 3859 | |
| 3860 | /* |
| 3861 | * Encode the reply stored in the stateowner reply cache |
| 3862 | * |
| 3863 | * XDR note: do not encode rp->rp_buflen: the buffer contains the |
| 3864 | * previously sent already encoded operation. |
| 3865 | * |
| 3866 | * called with nfs4_lock_state() held |
| 3867 | */ |
| 3868 | void |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3869 | nfsd4_encode_replay(struct xdr_stream *xdr, struct nfsd4_op *op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3870 | { |
J. Bruce Fields | bc749ca | 2009-04-07 16:55:27 -0700 | [diff] [blame] | 3871 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3872 | struct nfs4_replay *rp = op->replay; |
| 3873 | |
| 3874 | BUG_ON(!rp); |
| 3875 | |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 3876 | p = xdr_reserve_space(xdr, 8 + rp->rp_buflen); |
| 3877 | if (!p) { |
| 3878 | WARN_ON_ONCE(1); |
| 3879 | return; |
| 3880 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3881 | WRITE32(op->opnum); |
| 3882 | *p++ = rp->rp_status; /* already xdr'ed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3884 | WRITEMEM(rp->rp_buf, rp->rp_buflen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3885 | } |
| 3886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3887 | int |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 3888 | nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3889 | { |
| 3890 | return xdr_ressize_check(rqstp, p); |
| 3891 | } |
| 3892 | |
J. Bruce Fields | 3e98abf | 2011-07-16 17:15:10 -0400 | [diff] [blame] | 3893 | int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3894 | { |
J. Bruce Fields | 3e98abf | 2011-07-16 17:15:10 -0400 | [diff] [blame] | 3895 | struct svc_rqst *rqstp = rq; |
| 3896 | struct nfsd4_compoundargs *args = rqstp->rq_argp; |
| 3897 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3898 | if (args->ops != args->iops) { |
| 3899 | kfree(args->ops); |
| 3900 | args->ops = args->iops; |
| 3901 | } |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 3902 | kfree(args->tmpp); |
| 3903 | args->tmpp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3904 | while (args->to_free) { |
| 3905 | struct tmpbuf *tb = args->to_free; |
| 3906 | args->to_free = tb->next; |
| 3907 | tb->release(tb->buf); |
| 3908 | kfree(tb); |
| 3909 | } |
J. Bruce Fields | 3e98abf | 2011-07-16 17:15:10 -0400 | [diff] [blame] | 3910 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3911 | } |
| 3912 | |
| 3913 | int |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 3914 | nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3915 | { |
Jeff Layton | e874f9f | 2014-03-10 11:34:55 -0400 | [diff] [blame] | 3916 | if (rqstp->rq_arg.head[0].iov_len % 4) { |
| 3917 | /* client is nuts */ |
| 3918 | dprintk("%s: compound not properly padded! (peeraddr=%pISc xid=0x%x)", |
| 3919 | __func__, svc_addr(rqstp), be32_to_cpu(rqstp->rq_xid)); |
| 3920 | return 0; |
| 3921 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3922 | args->p = p; |
| 3923 | args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len; |
| 3924 | args->pagelist = rqstp->rq_arg.pages; |
| 3925 | args->pagelen = rqstp->rq_arg.page_len; |
| 3926 | args->tmpp = NULL; |
| 3927 | args->to_free = NULL; |
| 3928 | args->ops = args->iops; |
| 3929 | args->rqstp = rqstp; |
| 3930 | |
J. Bruce Fields | 3e98abf | 2011-07-16 17:15:10 -0400 | [diff] [blame] | 3931 | return !nfsd4_decode_compound(args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3932 | } |
| 3933 | |
| 3934 | int |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 3935 | nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3936 | { |
| 3937 | /* |
| 3938 | * All that remains is to write the tag and operation count... |
| 3939 | */ |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 3940 | struct nfsd4_compound_state *cs = &resp->cstate; |
J. Bruce Fields | 6ac9039 | 2014-02-26 17:39:35 -0500 | [diff] [blame] | 3941 | struct xdr_buf *buf = resp->xdr.buf; |
| 3942 | |
| 3943 | WARN_ON_ONCE(buf->len != buf->head[0].iov_len + buf->page_len + |
| 3944 | buf->tail[0].iov_len); |
J. Bruce Fields | dd97fdd | 2014-02-26 17:16:27 -0500 | [diff] [blame] | 3945 | |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 3946 | rqstp->rq_next_page = resp->xdr.page_ptr + 1; |
| 3947 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3948 | p = resp->tagp; |
| 3949 | *p++ = htonl(resp->taglen); |
| 3950 | memcpy(p, resp->tag, resp->taglen); |
| 3951 | p += XDR_QUADLEN(resp->taglen); |
| 3952 | *p++ = htonl(resp->opcnt); |
| 3953 | |
J. Bruce Fields | 26c0c75 | 2010-04-24 15:35:43 -0400 | [diff] [blame] | 3954 | if (nfsd4_has_session(cs)) { |
J. Bruce Fields | f0f51f5 | 2013-06-18 14:26:02 -0400 | [diff] [blame] | 3955 | struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id); |
| 3956 | struct nfs4_client *clp = cs->session->se_client; |
J. Bruce Fields | 26c0c75 | 2010-04-24 15:35:43 -0400 | [diff] [blame] | 3957 | if (cs->status != nfserr_replay_cache) { |
| 3958 | nfsd4_store_cache_entry(resp); |
J. Bruce Fields | 73e7948 | 2012-02-13 16:39:00 -0500 | [diff] [blame] | 3959 | cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE; |
J. Bruce Fields | 26c0c75 | 2010-04-24 15:35:43 -0400 | [diff] [blame] | 3960 | } |
Benny Halevy | d768298 | 2010-05-12 00:13:54 +0300 | [diff] [blame] | 3961 | /* Renew the clientid on success and on replay */ |
J. Bruce Fields | f0f51f5 | 2013-06-18 14:26:02 -0400 | [diff] [blame] | 3962 | spin_lock(&nn->client_lock); |
J. Bruce Fields | 221a687 | 2013-04-01 22:23:49 -0400 | [diff] [blame] | 3963 | nfsd4_put_session(cs->session); |
J. Bruce Fields | f0f51f5 | 2013-06-18 14:26:02 -0400 | [diff] [blame] | 3964 | spin_unlock(&nn->client_lock); |
| 3965 | put_client_renew(clp); |
Andy Adamson | da3846a | 2009-04-03 08:28:22 +0300 | [diff] [blame] | 3966 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3967 | return 1; |
| 3968 | } |
| 3969 | |
| 3970 | /* |
| 3971 | * Local variables: |
| 3972 | * c-basic-offset: 8 |
| 3973 | * End: |
| 3974 | */ |