Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/nfsd/nfs4proc.c |
| 3 | * |
| 4 | * Server-side procedures for NFSv4. |
| 5 | * |
| 6 | * Copyright (c) 2002 The Regents of the University of Michigan. |
| 7 | * All rights reserved. |
| 8 | * |
| 9 | * Kendrick Smith <kmsmith@umich.edu> |
| 10 | * Andy Adamson <andros@umich.edu> |
| 11 | * |
| 12 | * Redistribution and use in source and binary forms, with or without |
| 13 | * modification, are permitted provided that the following conditions |
| 14 | * are met: |
| 15 | * |
| 16 | * 1. Redistributions of source code must retain the above copyright |
| 17 | * notice, this list of conditions and the following disclaimer. |
| 18 | * 2. Redistributions in binary form must reproduce the above copyright |
| 19 | * notice, this list of conditions and the following disclaimer in the |
| 20 | * documentation and/or other materials provided with the distribution. |
| 21 | * 3. Neither the name of the University nor the names of its |
| 22 | * contributors may be used to endorse or promote products derived |
| 23 | * from this software without specific prior written permission. |
| 24 | * |
| 25 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 26 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 27 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 28 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 29 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 30 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 31 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 32 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 33 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 34 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 35 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | */ |
| 37 | |
| 38 | #include <linux/param.h> |
| 39 | #include <linux/major.h> |
| 40 | #include <linux/slab.h> |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 41 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #include <linux/sunrpc/svc.h> |
| 44 | #include <linux/nfsd/nfsd.h> |
| 45 | #include <linux/nfsd/cache.h> |
| 46 | #include <linux/nfs4.h> |
| 47 | #include <linux/nfsd/state.h> |
| 48 | #include <linux/nfsd/xdr4.h> |
| 49 | #include <linux/nfs4_acl.h> |
Andy Adamson | dcb488a | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 50 | #include <linux/sunrpc/gss_api.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 53 | |
| 54 | static inline void |
| 55 | fh_dup2(struct svc_fh *dst, struct svc_fh *src) |
| 56 | { |
| 57 | fh_put(dst); |
| 58 | dget(src->fh_dentry); |
| 59 | if (src->fh_export) |
| 60 | cache_get(&src->fh_export->h); |
| 61 | *dst = *src; |
| 62 | } |
| 63 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 64 | static __be32 |
J. Bruce Fields | dc730e1 | 2006-10-17 00:10:13 -0700 | [diff] [blame] | 65 | do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 67 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | if (open->op_truncate && |
| 70 | !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE)) |
| 71 | return nfserr_inval; |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | if (open->op_share_access & NFS4_SHARE_ACCESS_READ) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 74 | accmode |= NFSD_MAY_READ; |
J. Bruce Fields | 9801d8a | 2006-10-17 00:10:14 -0700 | [diff] [blame] | 75 | if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 76 | accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC); |
J. Bruce Fields | 9801d8a | 2006-10-17 00:10:14 -0700 | [diff] [blame] | 77 | if (open->op_share_deny & NFS4_SHARE_DENY_WRITE) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 78 | accmode |= NFSD_MAY_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | status = fh_verify(rqstp, current_fh, S_IFREG, accmode); |
| 81 | |
| 82 | return status; |
| 83 | } |
| 84 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 85 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | do_open_lookup(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open) |
| 87 | { |
| 88 | struct svc_fh resfh; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 89 | __be32 status; |
J. Bruce Fields | 81ac95c | 2006-11-08 17:44:40 -0800 | [diff] [blame] | 90 | int created = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | fh_init(&resfh, NFS4_FHSIZE); |
| 93 | open->op_truncate = 0; |
| 94 | |
| 95 | if (open->op_create) { |
| 96 | /* |
| 97 | * Note: create modes (UNCHECKED,GUARDED...) are the same |
| 98 | * in NFSv4 as in v3. |
| 99 | */ |
| 100 | status = nfsd_create_v3(rqstp, current_fh, open->op_fname.data, |
| 101 | open->op_fname.len, &open->op_iattr, |
| 102 | &resfh, open->op_createmode, |
Jeff Layton | 749997e | 2007-07-31 00:37:51 -0700 | [diff] [blame] | 103 | (u32 *)open->op_verf.data, |
| 104 | &open->op_truncate, &created); |
| 105 | |
J. Bruce Fields | 99f8872 | 2009-02-02 15:12:27 -0500 | [diff] [blame] | 106 | /* |
| 107 | * Following rfc 3530 14.2.16, use the returned bitmask |
| 108 | * to indicate which attributes we used to store the |
| 109 | * verifier: |
Jeff Layton | 749997e | 2007-07-31 00:37:51 -0700 | [diff] [blame] | 110 | */ |
| 111 | if (open->op_createmode == NFS4_CREATE_EXCLUSIVE && status == 0) |
J. Bruce Fields | 99f8872 | 2009-02-02 15:12:27 -0500 | [diff] [blame] | 112 | open->op_bmval[1] = (FATTR4_WORD1_TIME_ACCESS | |
Jeff Layton | 749997e | 2007-07-31 00:37:51 -0700 | [diff] [blame] | 113 | FATTR4_WORD1_TIME_MODIFY); |
J. Bruce Fields | af85852 | 2006-11-08 17:44:39 -0800 | [diff] [blame] | 114 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | status = nfsd_lookup(rqstp, current_fh, |
| 116 | open->op_fname.data, open->op_fname.len, &resfh); |
| 117 | fh_unlock(current_fh); |
| 118 | } |
J. Bruce Fields | af85852 | 2006-11-08 17:44:39 -0800 | [diff] [blame] | 119 | if (status) |
| 120 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
J. Bruce Fields | af85852 | 2006-11-08 17:44:39 -0800 | [diff] [blame] | 122 | set_change_info(&open->op_cinfo, current_fh); |
J. Bruce Fields | 13024b7 | 2009-02-02 17:04:03 -0500 | [diff] [blame] | 123 | fh_dup2(current_fh, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
J. Bruce Fields | af85852 | 2006-11-08 17:44:39 -0800 | [diff] [blame] | 125 | /* set reply cache */ |
J. Bruce Fields | a4773c0 | 2009-02-02 17:23:10 -0500 | [diff] [blame] | 126 | fh_copy_shallow(&open->op_stateowner->so_replay.rp_openfh, |
| 127 | &resfh.fh_handle); |
J. Bruce Fields | 81ac95c | 2006-11-08 17:44:40 -0800 | [diff] [blame] | 128 | if (!created) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 129 | status = do_open_permission(rqstp, current_fh, open, |
| 130 | NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
J. Bruce Fields | af85852 | 2006-11-08 17:44:39 -0800 | [diff] [blame] | 132 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | fh_put(&resfh); |
| 134 | return status; |
| 135 | } |
| 136 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 137 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | do_open_fhandle(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open) |
| 139 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 140 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
| 142 | /* Only reclaims from previously confirmed clients are valid */ |
| 143 | if ((status = nfs4_check_open_reclaim(&open->op_clientid))) |
| 144 | return status; |
| 145 | |
| 146 | /* We don't know the target directory, and therefore can not |
| 147 | * set the change info |
| 148 | */ |
| 149 | |
| 150 | memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info)); |
| 151 | |
| 152 | /* set replay cache */ |
J. Bruce Fields | a4773c0 | 2009-02-02 17:23:10 -0500 | [diff] [blame] | 153 | fh_copy_shallow(&open->op_stateowner->so_replay.rp_openfh, |
| 154 | ¤t_fh->fh_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) && |
| 157 | (open->op_iattr.ia_size == 0); |
| 158 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 159 | status = do_open_permission(rqstp, current_fh, open, |
| 160 | NFSD_MAY_OWNER_OVERRIDE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
| 162 | return status; |
| 163 | } |
| 164 | |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 165 | static void |
| 166 | copy_clientid(clientid_t *clid, struct nfsd4_session *session) |
| 167 | { |
| 168 | struct nfsd4_sessionid *sid = |
| 169 | (struct nfsd4_sessionid *)session->se_sessionid.data; |
| 170 | |
| 171 | clid->cl_boot = sid->clientid.cl_boot; |
| 172 | clid->cl_id = sid->clientid.cl_id; |
| 173 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 175 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 176 | nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 177 | struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 179 | __be32 status; |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 180 | struct nfsd4_compoundres *resp; |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | dprintk("NFSD: nfsd4_open filename %.*s op_stateowner %p\n", |
| 183 | (int)open->op_fname.len, open->op_fname.data, |
| 184 | open->op_stateowner); |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | /* This check required by spec. */ |
| 187 | if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL) |
| 188 | return nfserr_inval; |
| 189 | |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 190 | if (nfsd4_has_session(cstate)) |
| 191 | copy_clientid(&open->op_clientid, cstate->session); |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | nfs4_lock_state(); |
| 194 | |
| 195 | /* check seqid for replay. set nfs4_owner */ |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 196 | resp = rqstp->rq_resp; |
| 197 | status = nfsd4_process_open1(&resp->cstate, open); |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 198 | if (status == nfserr_replay_me) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | struct nfs4_replay *rp = &open->op_stateowner->so_replay; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 200 | fh_put(&cstate->current_fh); |
J. Bruce Fields | a4773c0 | 2009-02-02 17:23:10 -0500 | [diff] [blame] | 201 | fh_copy_shallow(&cstate->current_fh.fh_handle, |
| 202 | &rp->rp_openfh); |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 203 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | if (status) |
| 205 | dprintk("nfsd4_open: replay failed" |
| 206 | " restoring previous filehandle\n"); |
| 207 | else |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 208 | status = nfserr_replay_me; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | if (status) |
| 211 | goto out; |
J. Bruce Fields | fb553c0 | 2006-01-18 17:43:36 -0800 | [diff] [blame] | 212 | |
| 213 | /* Openowner is now set, so sequence id will get bumped. Now we need |
| 214 | * these checks before we do any creates: */ |
J. Bruce Fields | cbd0d51 | 2006-02-07 12:58:32 -0800 | [diff] [blame] | 215 | status = nfserr_grace; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 216 | if (locks_in_grace() && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS) |
J. Bruce Fields | cbd0d51 | 2006-02-07 12:58:32 -0800 | [diff] [blame] | 217 | goto out; |
| 218 | status = nfserr_no_grace; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 219 | if (!locks_in_grace() && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS) |
J. Bruce Fields | cbd0d51 | 2006-02-07 12:58:32 -0800 | [diff] [blame] | 220 | goto out; |
J. Bruce Fields | fb553c0 | 2006-01-18 17:43:36 -0800 | [diff] [blame] | 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | switch (open->op_claim_type) { |
NeilBrown | 0dd3c19 | 2005-06-23 22:02:56 -0700 | [diff] [blame] | 223 | case NFS4_OPEN_CLAIM_DELEGATE_CUR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | case NFS4_OPEN_CLAIM_NULL: |
| 225 | /* |
| 226 | * (1) set CURRENT_FH to the file being opened, |
| 227 | * creating it if necessary, (2) set open->op_cinfo, |
| 228 | * (3) set open->op_truncate if the file is to be |
| 229 | * truncated after opening, (4) do permission checking. |
| 230 | */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 231 | status = do_open_lookup(rqstp, &cstate->current_fh, |
| 232 | open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | if (status) |
| 234 | goto out; |
| 235 | break; |
| 236 | case NFS4_OPEN_CLAIM_PREVIOUS: |
J. Bruce Fields | a525825 | 2006-01-18 17:43:30 -0800 | [diff] [blame] | 237 | open->op_stateowner->so_confirmed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | /* |
| 239 | * The CURRENT_FH is already set to the file being |
| 240 | * opened. (1) set open->op_cinfo, (2) set |
| 241 | * open->op_truncate if the file is to be truncated |
| 242 | * after opening, (3) do permission checking. |
| 243 | */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 244 | status = do_open_fhandle(rqstp, &cstate->current_fh, |
| 245 | open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | if (status) |
| 247 | goto out; |
| 248 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | case NFS4_OPEN_CLAIM_DELEGATE_PREV: |
J. Bruce Fields | a525825 | 2006-01-18 17:43:30 -0800 | [diff] [blame] | 250 | open->op_stateowner->so_confirmed = 1; |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 251 | dprintk("NFSD: unsupported OPEN claim type %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | open->op_claim_type); |
| 253 | status = nfserr_notsupp; |
| 254 | goto out; |
| 255 | default: |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 256 | dprintk("NFSD: Invalid OPEN claim type %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | open->op_claim_type); |
| 258 | status = nfserr_inval; |
| 259 | goto out; |
| 260 | } |
| 261 | /* |
| 262 | * nfsd4_process_open2() does the actual opening of the file. If |
| 263 | * successful, it (1) truncates the file if open->op_truncate was |
| 264 | * set, (2) sets open->op_stateid, (3) sets open->op_delegation. |
| 265 | */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 266 | status = nfsd4_process_open2(rqstp, &cstate->current_fh, open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 268 | if (open->op_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | nfs4_get_stateowner(open->op_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 270 | cstate->replay_owner = open->op_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 271 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | nfs4_unlock_state(); |
| 273 | return status; |
| 274 | } |
| 275 | |
| 276 | /* |
| 277 | * filehandle-manipulating ops. |
| 278 | */ |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 279 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 280 | nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 281 | struct svc_fh **getfh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 283 | if (!cstate->current_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | return nfserr_nofilehandle; |
| 285 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 286 | *getfh = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | return nfs_ok; |
| 288 | } |
| 289 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 290 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 291 | nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 292 | struct nfsd4_putfh *putfh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 294 | fh_put(&cstate->current_fh); |
| 295 | cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen; |
| 296 | memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval, |
| 297 | putfh->pf_fhlen); |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 298 | return fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | } |
| 300 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 301 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 302 | nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 303 | void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 305 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 307 | fh_put(&cstate->current_fh); |
J. Bruce Fields | df547ef | 2007-07-17 04:04:43 -0700 | [diff] [blame] | 308 | status = exp_pseudoroot(rqstp, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | return status; |
| 310 | } |
| 311 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 312 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 313 | nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 314 | void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 316 | if (!cstate->save_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | return nfserr_restorefh; |
| 318 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 319 | fh_dup2(&cstate->current_fh, &cstate->save_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | return nfs_ok; |
| 321 | } |
| 322 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 323 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 324 | nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 325 | void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 327 | if (!cstate->current_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | return nfserr_nofilehandle; |
| 329 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 330 | fh_dup2(&cstate->save_fh, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | return nfs_ok; |
| 332 | } |
| 333 | |
| 334 | /* |
| 335 | * misc nfsv4 ops |
| 336 | */ |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 337 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 338 | nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 339 | struct nfsd4_access *access) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | { |
| 341 | if (access->ac_req_access & ~NFS3_ACCESS_FULL) |
| 342 | return nfserr_inval; |
| 343 | |
| 344 | access->ac_resp_access = access->ac_req_access; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 345 | return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access, |
| 346 | &access->ac_supported); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | } |
| 348 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 349 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 350 | nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 351 | struct nfsd4_commit *commit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 353 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | u32 *p = (u32 *)commit->co_verf.data; |
| 356 | *p++ = nfssvc_boot.tv_sec; |
| 357 | *p++ = nfssvc_boot.tv_usec; |
| 358 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 359 | status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset, |
| 360 | commit->co_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | if (status == nfserr_symlink) |
| 362 | status = nfserr_inval; |
| 363 | return status; |
| 364 | } |
| 365 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 366 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 367 | nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 368 | struct nfsd4_create *create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | { |
| 370 | struct svc_fh resfh; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 371 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | dev_t rdev; |
| 373 | |
| 374 | fh_init(&resfh, NFS4_FHSIZE); |
| 375 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 376 | status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, |
| 377 | NFSD_MAY_CREATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | if (status == nfserr_symlink) |
| 379 | status = nfserr_notdir; |
| 380 | if (status) |
| 381 | return status; |
| 382 | |
| 383 | switch (create->cr_type) { |
| 384 | case NF4LNK: |
| 385 | /* ugh! we have to null-terminate the linktext, or |
| 386 | * vfs_symlink() will choke. it is always safe to |
| 387 | * null-terminate by brute force, since at worst we |
| 388 | * will overwrite the first byte of the create namelen |
| 389 | * in the XDR buffer, which has already been extracted |
| 390 | * during XDR decode. |
| 391 | */ |
| 392 | create->cr_linkname[create->cr_linklen] = 0; |
| 393 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 394 | status = nfsd_symlink(rqstp, &cstate->current_fh, |
| 395 | create->cr_name, create->cr_namelen, |
| 396 | create->cr_linkname, create->cr_linklen, |
| 397 | &resfh, &create->cr_iattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | break; |
| 399 | |
| 400 | case NF4BLK: |
| 401 | rdev = MKDEV(create->cr_specdata1, create->cr_specdata2); |
| 402 | if (MAJOR(rdev) != create->cr_specdata1 || |
| 403 | MINOR(rdev) != create->cr_specdata2) |
| 404 | return nfserr_inval; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 405 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 406 | create->cr_name, create->cr_namelen, |
| 407 | &create->cr_iattr, S_IFBLK, rdev, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | break; |
| 409 | |
| 410 | case NF4CHR: |
| 411 | rdev = MKDEV(create->cr_specdata1, create->cr_specdata2); |
| 412 | if (MAJOR(rdev) != create->cr_specdata1 || |
| 413 | MINOR(rdev) != create->cr_specdata2) |
| 414 | return nfserr_inval; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 415 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 416 | create->cr_name, create->cr_namelen, |
| 417 | &create->cr_iattr,S_IFCHR, rdev, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | break; |
| 419 | |
| 420 | case NF4SOCK: |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 421 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 422 | create->cr_name, create->cr_namelen, |
| 423 | &create->cr_iattr, S_IFSOCK, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | break; |
| 425 | |
| 426 | case NF4FIFO: |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 427 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 428 | create->cr_name, create->cr_namelen, |
| 429 | &create->cr_iattr, S_IFIFO, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | break; |
| 431 | |
| 432 | case NF4DIR: |
| 433 | create->cr_iattr.ia_valid &= ~ATTR_SIZE; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 434 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 435 | create->cr_name, create->cr_namelen, |
| 436 | &create->cr_iattr, S_IFDIR, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | break; |
| 438 | |
| 439 | default: |
| 440 | status = nfserr_badtype; |
| 441 | } |
| 442 | |
| 443 | if (!status) { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 444 | fh_unlock(&cstate->current_fh); |
| 445 | set_change_info(&create->cr_cinfo, &cstate->current_fh); |
| 446 | fh_dup2(&cstate->current_fh, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | fh_put(&resfh); |
| 450 | return status; |
| 451 | } |
| 452 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 453 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 454 | nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 455 | struct nfsd4_getattr *getattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 457 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 459 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | if (status) |
| 461 | return status; |
| 462 | |
| 463 | if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1) |
| 464 | return nfserr_inval; |
| 465 | |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 466 | getattr->ga_bmval[0] &= nfsd_suppattrs0(cstate->minorversion); |
| 467 | getattr->ga_bmval[1] &= nfsd_suppattrs1(cstate->minorversion); |
| 468 | getattr->ga_bmval[2] &= nfsd_suppattrs2(cstate->minorversion); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 470 | getattr->ga_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | return nfs_ok; |
| 472 | } |
| 473 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 474 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 475 | nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 476 | struct nfsd4_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 478 | __be32 status = nfserr_nofilehandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 480 | if (!cstate->save_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | return status; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 482 | status = nfsd_link(rqstp, &cstate->current_fh, |
| 483 | link->li_name, link->li_namelen, &cstate->save_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | if (!status) |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 485 | set_change_info(&link->li_cinfo, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | return status; |
| 487 | } |
| 488 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 489 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 490 | nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 491 | void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { |
| 493 | struct svc_fh tmp_fh; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 494 | __be32 ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | fh_init(&tmp_fh, NFS4_FHSIZE); |
J. Bruce Fields | df547ef | 2007-07-17 04:04:43 -0700 | [diff] [blame] | 497 | ret = exp_pseudoroot(rqstp, &tmp_fh); |
| 498 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | return ret; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 500 | if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | fh_put(&tmp_fh); |
| 502 | return nfserr_noent; |
| 503 | } |
| 504 | fh_put(&tmp_fh); |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 505 | return nfsd_lookup(rqstp, &cstate->current_fh, |
| 506 | "..", 2, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } |
| 508 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 509 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 510 | nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 511 | struct nfsd4_lookup *lookup) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 513 | return nfsd_lookup(rqstp, &cstate->current_fh, |
| 514 | lookup->lo_name, lookup->lo_len, |
| 515 | &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } |
| 517 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 518 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 519 | nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 520 | struct nfsd4_read *read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 522 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
| 524 | /* no need to check permission - this will be done in nfsd_read() */ |
| 525 | |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 526 | read->rd_filp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | if (read->rd_offset >= OFFSET_MAX) |
| 528 | return nfserr_inval; |
| 529 | |
| 530 | nfs4_lock_state(); |
| 531 | /* check stateid */ |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 532 | if ((status = nfs4_preprocess_stateid_op(cstate, &read->rd_stateid, |
| 533 | RD_STATE, &read->rd_filp))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | dprintk("NFSD: nfsd4_read: couldn't process stateid!\n"); |
| 535 | goto out; |
| 536 | } |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 537 | if (read->rd_filp) |
| 538 | get_file(read->rd_filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | status = nfs_ok; |
| 540 | out: |
| 541 | nfs4_unlock_state(); |
| 542 | read->rd_rqstp = rqstp; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 543 | read->rd_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | return status; |
| 545 | } |
| 546 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 547 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 548 | nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 549 | struct nfsd4_readdir *readdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | { |
| 551 | u64 cookie = readdir->rd_cookie; |
| 552 | static const nfs4_verifier zeroverf; |
| 553 | |
| 554 | /* no need to check permission - this will be done in nfsd_readdir() */ |
| 555 | |
| 556 | if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1) |
| 557 | return nfserr_inval; |
| 558 | |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 559 | readdir->rd_bmval[0] &= nfsd_suppattrs0(cstate->minorversion); |
| 560 | readdir->rd_bmval[1] &= nfsd_suppattrs1(cstate->minorversion); |
| 561 | readdir->rd_bmval[2] &= nfsd_suppattrs2(cstate->minorversion); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
| 563 | if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) || |
| 564 | (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE))) |
| 565 | return nfserr_bad_cookie; |
| 566 | |
| 567 | readdir->rd_rqstp = rqstp; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 568 | readdir->rd_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | return nfs_ok; |
| 570 | } |
| 571 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 572 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 573 | nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 574 | struct nfsd4_readlink *readlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | { |
| 576 | readlink->rl_rqstp = rqstp; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 577 | readlink->rl_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | return nfs_ok; |
| 579 | } |
| 580 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 581 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 582 | nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 583 | struct nfsd4_remove *remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 585 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 587 | if (locks_in_grace()) |
NeilBrown | c815afc | 2005-06-23 22:03:00 -0700 | [diff] [blame] | 588 | return nfserr_grace; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 589 | status = nfsd_unlink(rqstp, &cstate->current_fh, 0, |
| 590 | remove->rm_name, remove->rm_namelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | if (status == nfserr_symlink) |
| 592 | return nfserr_notdir; |
| 593 | if (!status) { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 594 | fh_unlock(&cstate->current_fh); |
| 595 | set_change_info(&remove->rm_cinfo, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | } |
| 597 | return status; |
| 598 | } |
| 599 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 600 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 601 | nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 602 | struct nfsd4_rename *rename) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 604 | __be32 status = nfserr_nofilehandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 606 | if (!cstate->save_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | return status; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 608 | if (locks_in_grace() && !(cstate->save_fh.fh_export->ex_flags |
NeilBrown | c815afc | 2005-06-23 22:03:00 -0700 | [diff] [blame] | 609 | & NFSEXP_NOSUBTREECHECK)) |
| 610 | return nfserr_grace; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 611 | status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname, |
| 612 | rename->rn_snamelen, &cstate->current_fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | rename->rn_tname, rename->rn_tnamelen); |
| 614 | |
| 615 | /* the underlying filesystem returns different error's than required |
| 616 | * by NFSv4. both save_fh and current_fh have been verified.. */ |
| 617 | if (status == nfserr_isdir) |
| 618 | status = nfserr_exist; |
| 619 | else if ((status == nfserr_notdir) && |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 620 | (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) && |
| 621 | S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | status = nfserr_exist; |
| 623 | else if (status == nfserr_symlink) |
| 624 | status = nfserr_notdir; |
| 625 | |
| 626 | if (!status) { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 627 | set_change_info(&rename->rn_sinfo, &cstate->current_fh); |
| 628 | set_change_info(&rename->rn_tinfo, &cstate->save_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | } |
| 630 | return status; |
| 631 | } |
| 632 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 633 | static __be32 |
Andy Adamson | dcb488a | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 634 | nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 635 | struct nfsd4_secinfo *secinfo) |
| 636 | { |
| 637 | struct svc_fh resfh; |
| 638 | struct svc_export *exp; |
| 639 | struct dentry *dentry; |
| 640 | __be32 err; |
| 641 | |
| 642 | fh_init(&resfh, NFS4_FHSIZE); |
| 643 | err = nfsd_lookup_dentry(rqstp, &cstate->current_fh, |
| 644 | secinfo->si_name, secinfo->si_namelen, |
| 645 | &exp, &dentry); |
| 646 | if (err) |
| 647 | return err; |
| 648 | if (dentry->d_inode == NULL) { |
| 649 | exp_put(exp); |
| 650 | err = nfserr_noent; |
| 651 | } else |
| 652 | secinfo->si_exp = exp; |
| 653 | dput(dentry); |
| 654 | return err; |
| 655 | } |
| 656 | |
| 657 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 658 | nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 659 | struct nfsd4_setattr *setattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 661 | __be32 status = nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | if (setattr->sa_iattr.ia_valid & ATTR_SIZE) { |
| 664 | nfs4_lock_state(); |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 665 | status = nfs4_preprocess_stateid_op(cstate, |
J. Bruce Fields | 6150ef0 | 2009-02-21 13:36:16 -0800 | [diff] [blame] | 666 | &setattr->sa_stateid, WR_STATE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | nfs4_unlock_state(); |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 668 | if (status) { |
Greg Banks | 3e3b480 | 2006-10-02 02:17:41 -0700 | [diff] [blame] | 669 | dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n"); |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 670 | return status; |
| 671 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | } |
Dave Hansen | 18f335a | 2008-02-15 14:37:38 -0800 | [diff] [blame] | 673 | status = mnt_want_write(cstate->current_fh.fh_export->ex_path.mnt); |
| 674 | if (status) |
| 675 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | status = nfs_ok; |
| 677 | if (setattr->sa_acl != NULL) |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 678 | status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh, |
| 679 | setattr->sa_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | if (status) |
Dave Hansen | 18f335a | 2008-02-15 14:37:38 -0800 | [diff] [blame] | 681 | goto out; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 682 | status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | 0, (time_t)0); |
Dave Hansen | 18f335a | 2008-02-15 14:37:38 -0800 | [diff] [blame] | 684 | out: |
| 685 | mnt_drop_write(cstate->current_fh.fh_export->ex_path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | return status; |
| 687 | } |
| 688 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 689 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 690 | nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 691 | struct nfsd4_write *write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | { |
| 693 | stateid_t *stateid = &write->wr_stateid; |
| 694 | struct file *filp = NULL; |
| 695 | u32 *p; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 696 | __be32 status = nfs_ok; |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 697 | unsigned long cnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
| 699 | /* no need to check permission - this will be done in nfsd_write() */ |
| 700 | |
| 701 | if (write->wr_offset >= OFFSET_MAX) |
| 702 | return nfserr_inval; |
| 703 | |
| 704 | nfs4_lock_state(); |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 705 | status = nfs4_preprocess_stateid_op(cstate, stateid, WR_STATE, &filp); |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 706 | if (filp) |
| 707 | get_file(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | nfs4_unlock_state(); |
| 709 | |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 710 | if (status) { |
| 711 | dprintk("NFSD: nfsd4_write: couldn't process stateid!\n"); |
| 712 | return status; |
| 713 | } |
| 714 | |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 715 | cnt = write->wr_buflen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | write->wr_how_written = write->wr_stable_how; |
| 717 | p = (u32 *)write->wr_verifier.data; |
| 718 | *p++ = nfssvc_boot.tv_sec; |
| 719 | *p++ = nfssvc_boot.tv_usec; |
| 720 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 721 | status = nfsd_write(rqstp, &cstate->current_fh, filp, |
| 722 | write->wr_offset, rqstp->rq_vec, write->wr_vlen, |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 723 | &cnt, &write->wr_how_written); |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 724 | if (filp) |
| 725 | fput(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 727 | write->wr_bytes_written = cnt; |
| 728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | if (status == nfserr_symlink) |
| 730 | status = nfserr_inval; |
| 731 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | /* This routine never returns NFS_OK! If there are no other errors, it |
| 735 | * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the |
| 736 | * attributes matched. VERIFY is implemented by mapping NFSERR_SAME |
| 737 | * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK. |
| 738 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 739 | static __be32 |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 740 | _nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 741 | struct nfsd4_verify *verify) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | { |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 743 | __be32 *buf, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | int count; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 745 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 747 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | if (status) |
| 749 | return status; |
| 750 | |
Andy Adamson | 7e70570 | 2009-04-03 08:29:11 +0300 | [diff] [blame] | 751 | if ((verify->ve_bmval[0] & ~nfsd_suppattrs0(cstate->minorversion)) |
| 752 | || (verify->ve_bmval[1] & ~nfsd_suppattrs1(cstate->minorversion)) |
| 753 | || (verify->ve_bmval[2] & ~nfsd_suppattrs2(cstate->minorversion))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | return nfserr_attrnotsupp; |
| 755 | if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR) |
| 756 | || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)) |
| 757 | return nfserr_inval; |
| 758 | if (verify->ve_attrlen & 3) |
| 759 | return nfserr_inval; |
| 760 | |
| 761 | /* count in words: |
| 762 | * bitmap_len(1) + bitmap(2) + attr_len(1) = 4 |
| 763 | */ |
| 764 | count = 4 + (verify->ve_attrlen >> 2); |
| 765 | buf = kmalloc(count << 2, GFP_KERNEL); |
| 766 | if (!buf) |
| 767 | return nfserr_resource; |
| 768 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 769 | status = nfsd4_encode_fattr(&cstate->current_fh, |
| 770 | cstate->current_fh.fh_export, |
| 771 | cstate->current_fh.fh_dentry, buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | &count, verify->ve_bmval, |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 773 | rqstp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | |
| 775 | /* this means that nfsd4_encode_fattr() ran out of space */ |
| 776 | if (status == nfserr_resource && count == 0) |
| 777 | status = nfserr_not_same; |
| 778 | if (status) |
| 779 | goto out_kfree; |
| 780 | |
Benny Halevy | 95ec28c | 2009-04-03 08:29:08 +0300 | [diff] [blame] | 781 | /* skip bitmap */ |
| 782 | p = buf + 1 + ntohl(buf[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | status = nfserr_not_same; |
| 784 | if (ntohl(*p++) != verify->ve_attrlen) |
| 785 | goto out_kfree; |
| 786 | if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen)) |
| 787 | status = nfserr_same; |
| 788 | |
| 789 | out_kfree: |
| 790 | kfree(buf); |
| 791 | return status; |
| 792 | } |
| 793 | |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 794 | static __be32 |
| 795 | nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 796 | struct nfsd4_verify *verify) |
| 797 | { |
| 798 | __be32 status; |
| 799 | |
| 800 | status = _nfsd4_verify(rqstp, cstate, verify); |
| 801 | return status == nfserr_not_same ? nfs_ok : status; |
| 802 | } |
| 803 | |
| 804 | static __be32 |
| 805 | nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 806 | struct nfsd4_verify *verify) |
| 807 | { |
| 808 | __be32 status; |
| 809 | |
| 810 | status = _nfsd4_verify(rqstp, cstate, verify); |
| 811 | return status == nfserr_same ? nfs_ok : status; |
| 812 | } |
| 813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | /* |
| 815 | * NULL call. |
| 816 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 817 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp) |
| 819 | { |
| 820 | return nfs_ok; |
| 821 | } |
| 822 | |
Shankar Anand | e2b2095 | 2006-07-10 04:45:44 -0700 | [diff] [blame] | 823 | static inline void nfsd4_increment_op_stats(u32 opnum) |
| 824 | { |
| 825 | if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP) |
| 826 | nfsdstats.nfs4_opcount[opnum]++; |
| 827 | } |
| 828 | |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 829 | typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *, |
| 830 | void *); |
Andy Adamson | f9bb94c | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 831 | enum nfsd4_op_flags { |
| 832 | ALLOWED_WITHOUT_FH = 1 << 0, /* No current filehandle required */ |
| 833 | ALLOWED_ON_ABSENT_FS = 2 << 0, /* ops processed on absent fs */ |
| 834 | ALLOWED_AS_FIRST_OP = 3 << 0, /* ops reqired first in compound */ |
| 835 | }; |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 836 | |
| 837 | struct nfsd4_operation { |
| 838 | nfsd4op_func op_func; |
| 839 | u32 op_flags; |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 840 | char *op_name; |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 841 | }; |
| 842 | |
| 843 | static struct nfsd4_operation nfsd4_ops[]; |
| 844 | |
Adrian Bunk | f1c7f79 | 2008-08-08 19:26:42 +0300 | [diff] [blame] | 845 | static const char *nfsd4_op_name(unsigned opnum); |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 846 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | /* |
Andy Adamson | bf864a3 | 2009-04-03 08:28:35 +0300 | [diff] [blame] | 848 | * This is a replay of a compound for which no cache entry pages |
| 849 | * were used. Encode the sequence operation, and if cachethis is FALSE |
| 850 | * encode the uncache rep error on the next operation. |
| 851 | */ |
| 852 | static __be32 |
| 853 | nfsd4_enc_uncached_replay(struct nfsd4_compoundargs *args, |
| 854 | struct nfsd4_compoundres *resp) |
| 855 | { |
| 856 | struct nfsd4_op *op; |
| 857 | |
| 858 | dprintk("--> %s resp->opcnt %d ce_cachethis %u \n", __func__, |
| 859 | resp->opcnt, resp->cstate.slot->sl_cache_entry.ce_cachethis); |
| 860 | |
| 861 | /* Encode the replayed sequence operation */ |
| 862 | BUG_ON(resp->opcnt != 1); |
| 863 | op = &args->ops[resp->opcnt - 1]; |
| 864 | nfsd4_encode_operation(resp, op); |
| 865 | |
| 866 | /*return nfserr_retry_uncached_rep in next operation. */ |
| 867 | if (resp->cstate.slot->sl_cache_entry.ce_cachethis == 0) { |
| 868 | op = &args->ops[resp->opcnt++]; |
| 869 | op->status = nfserr_retry_uncached_rep; |
| 870 | nfsd4_encode_operation(resp, op); |
| 871 | } |
| 872 | return op->status; |
| 873 | } |
| 874 | |
| 875 | /* |
Andy Adamson | f9bb94c | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 876 | * Enforce NFSv4.1 COMPOUND ordering rules. |
| 877 | * |
| 878 | * TODO: |
| 879 | * - enforce NFS4ERR_NOT_ONLY_OP, |
| 880 | * - DESTROY_SESSION MUST be the final operation in the COMPOUND request. |
| 881 | */ |
| 882 | static bool nfs41_op_ordering_ok(struct nfsd4_compoundargs *args) |
| 883 | { |
| 884 | if (args->minorversion && args->opcnt > 0) { |
| 885 | struct nfsd4_op *op = &args->ops[0]; |
| 886 | return (op->status == nfserr_op_illegal) || |
| 887 | (nfsd4_ops[op->opnum].op_flags & ALLOWED_AS_FIRST_OP); |
| 888 | } |
| 889 | return true; |
| 890 | } |
| 891 | |
| 892 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | * COMPOUND call. |
| 894 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 895 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | nfsd4_proc_compound(struct svc_rqst *rqstp, |
| 897 | struct nfsd4_compoundargs *args, |
| 898 | struct nfsd4_compoundres *resp) |
| 899 | { |
| 900 | struct nfsd4_op *op; |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 901 | struct nfsd4_operation *opdesc; |
Andy Adamson | e354d57 | 2009-03-28 11:30:52 +0300 | [diff] [blame] | 902 | struct nfsd4_compound_state *cstate = &resp->cstate; |
J.Bruce Fields | e571019 | 2006-12-13 00:35:20 -0800 | [diff] [blame] | 903 | int slack_bytes; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 904 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | resp->xbuf = &rqstp->rq_res; |
Andy Adamson | e354d57 | 2009-03-28 11:30:52 +0300 | [diff] [blame] | 907 | resp->p = rqstp->rq_res.head[0].iov_base + |
| 908 | rqstp->rq_res.head[0].iov_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | resp->tagp = resp->p; |
| 910 | /* reserve space for: taglen, tag, and opcnt */ |
| 911 | resp->p += 2 + XDR_QUADLEN(args->taglen); |
| 912 | resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE; |
| 913 | resp->taglen = args->taglen; |
| 914 | resp->tag = args->tag; |
| 915 | resp->opcnt = 0; |
| 916 | resp->rqstp = rqstp; |
Andy Adamson | d87a8ad | 2009-04-03 08:28:53 +0300 | [diff] [blame] | 917 | resp->cstate.minorversion = args->minorversion; |
Andy Adamson | e354d57 | 2009-03-28 11:30:52 +0300 | [diff] [blame] | 918 | resp->cstate.replay_owner = NULL; |
| 919 | fh_init(&resp->cstate.current_fh, NFS4_FHSIZE); |
| 920 | fh_init(&resp->cstate.save_fh, NFS4_FHSIZE); |
Andy Adamson | 2f42587 | 2009-04-03 08:27:32 +0300 | [diff] [blame] | 921 | /* Use the deferral mechanism only for NFSv4.0 compounds */ |
| 922 | rqstp->rq_usedeferral = (args->minorversion == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | |
| 924 | /* |
| 925 | * According to RFC3010, this takes precedence over all other errors. |
| 926 | */ |
| 927 | status = nfserr_minor_vers_mismatch; |
Benny Halevy | 8daf220 | 2009-04-03 08:28:59 +0300 | [diff] [blame] | 928 | if (args->minorversion > nfsd_supported_minorversion) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | goto out; |
| 930 | |
Andy Adamson | f9bb94c | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 931 | if (!nfs41_op_ordering_ok(args)) { |
| 932 | op = &args->ops[0]; |
| 933 | op->status = nfserr_sequence_pos; |
| 934 | goto encode_op; |
| 935 | } |
| 936 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | status = nfs_ok; |
| 938 | while (!status && resp->opcnt < args->opcnt) { |
| 939 | op = &args->ops[resp->opcnt++]; |
| 940 | |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 941 | dprintk("nfsv4 compound op #%d/%d: %d (%s)\n", |
| 942 | resp->opcnt, args->opcnt, op->opnum, |
| 943 | nfsd4_op_name(op->opnum)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | /* |
| 945 | * The XDR decode routines may have pre-set op->status; |
| 946 | * for example, if there is a miscellaneous XDR error |
| 947 | * it will be set to nfserr_bad_xdr. |
| 948 | */ |
| 949 | if (op->status) |
| 950 | goto encode_op; |
| 951 | |
| 952 | /* We must be able to encode a successful response to |
| 953 | * this operation, with enough room left over to encode a |
| 954 | * failed response to the next operation. If we don't |
| 955 | * have enough room, fail with ERR_RESOURCE. |
| 956 | */ |
J.Bruce Fields | e571019 | 2006-12-13 00:35:20 -0800 | [diff] [blame] | 957 | slack_bytes = (char *)resp->end - (char *)resp->p; |
| 958 | if (slack_bytes < COMPOUND_SLACK_SPACE |
| 959 | + COMPOUND_ERR_SLACK_SPACE) { |
| 960 | BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | op->status = nfserr_resource; |
| 962 | goto encode_op; |
| 963 | } |
| 964 | |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 965 | opdesc = &nfsd4_ops[op->opnum]; |
| 966 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 967 | if (!cstate->current_fh.fh_dentry) { |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 968 | if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) { |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 969 | op->status = nfserr_nofilehandle; |
| 970 | goto encode_op; |
| 971 | } |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 972 | } else if (cstate->current_fh.fh_export->ex_fslocs.migrated && |
| 973 | !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) { |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 974 | op->status = nfserr_moved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | goto encode_op; |
| 976 | } |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 977 | |
| 978 | if (opdesc->op_func) |
| 979 | op->status = opdesc->op_func(rqstp, cstate, &op->u); |
| 980 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | BUG_ON(op->status == nfs_ok); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | |
| 983 | encode_op: |
Andy Adamson | da3846a | 2009-04-03 08:28:22 +0300 | [diff] [blame] | 984 | /* Only from SEQUENCE or CREATE_SESSION */ |
| 985 | if (resp->cstate.status == nfserr_replay_cache) { |
| 986 | dprintk("%s NFS4.1 replay from cache\n", __func__); |
Andy Adamson | bf864a3 | 2009-04-03 08:28:35 +0300 | [diff] [blame] | 987 | if (nfsd4_not_cached(resp)) |
| 988 | status = nfsd4_enc_uncached_replay(args, resp); |
| 989 | else |
| 990 | status = op->status; |
Andy Adamson | da3846a | 2009-04-03 08:28:22 +0300 | [diff] [blame] | 991 | goto out; |
| 992 | } |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 993 | if (op->status == nfserr_replay_me) { |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 994 | op->replay = &cstate->replay_owner->so_replay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | nfsd4_encode_replay(resp, op); |
| 996 | status = op->status = op->replay->rp_status; |
| 997 | } else { |
| 998 | nfsd4_encode_operation(resp, op); |
| 999 | status = op->status; |
| 1000 | } |
Benny Halevy | 0407717 | 2008-12-15 19:40:49 +0200 | [diff] [blame] | 1001 | |
| 1002 | dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n", |
| 1003 | args->ops, args->opcnt, resp->opcnt, op->opnum, |
| 1004 | be32_to_cpu(status)); |
| 1005 | |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 1006 | if (cstate->replay_owner) { |
| 1007 | nfs4_put_stateowner(cstate->replay_owner); |
| 1008 | cstate->replay_owner = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | } |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 1010 | /* XXX Ugh, we need to get rid of this kind of special case: */ |
| 1011 | if (op->opnum == OP_READ && op->u.read.rd_filp) |
| 1012 | fput(op->u.read.rd_filp); |
Shankar Anand | e2b2095 | 2006-07-10 04:45:44 -0700 | [diff] [blame] | 1013 | |
| 1014 | nfsd4_increment_op_stats(op->opnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | } |
Andy Adamson | 2f42587 | 2009-04-03 08:27:32 +0300 | [diff] [blame] | 1016 | if (!rqstp->rq_usedeferral && status == nfserr_dropit) { |
| 1017 | dprintk("%s Dropit - send NFS4ERR_DELAY\n", __func__); |
| 1018 | status = nfserr_jukebox; |
| 1019 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | |
Andy Adamson | da3846a | 2009-04-03 08:28:22 +0300 | [diff] [blame] | 1021 | resp->cstate.status = status; |
Andy Adamson | e354d57 | 2009-03-28 11:30:52 +0300 | [diff] [blame] | 1022 | fh_put(&resp->cstate.current_fh); |
| 1023 | fh_put(&resp->cstate.save_fh); |
| 1024 | BUG_ON(resp->cstate.replay_owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | out: |
| 1026 | nfsd4_release_compoundargs(args); |
Andy Adamson | 2f42587 | 2009-04-03 08:27:32 +0300 | [diff] [blame] | 1027 | /* Reset deferral mechanism for RPC deferrals */ |
| 1028 | rqstp->rq_usedeferral = 1; |
J. Bruce Fields | 3b12cd9 | 2008-05-05 17:17:44 -0400 | [diff] [blame] | 1029 | dprintk("nfsv4 compound returned %d\n", ntohl(status)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | return status; |
| 1031 | } |
| 1032 | |
Benny Halevy | 2076601 | 2009-03-28 11:32:05 +0300 | [diff] [blame] | 1033 | static struct nfsd4_operation nfsd4_ops[] = { |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1034 | [OP_ACCESS] = { |
| 1035 | .op_func = (nfsd4op_func)nfsd4_access, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1036 | .op_name = "OP_ACCESS", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1037 | }, |
| 1038 | [OP_CLOSE] = { |
| 1039 | .op_func = (nfsd4op_func)nfsd4_close, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1040 | .op_name = "OP_CLOSE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1041 | }, |
| 1042 | [OP_COMMIT] = { |
| 1043 | .op_func = (nfsd4op_func)nfsd4_commit, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1044 | .op_name = "OP_COMMIT", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1045 | }, |
| 1046 | [OP_CREATE] = { |
| 1047 | .op_func = (nfsd4op_func)nfsd4_create, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1048 | .op_name = "OP_CREATE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1049 | }, |
| 1050 | [OP_DELEGRETURN] = { |
| 1051 | .op_func = (nfsd4op_func)nfsd4_delegreturn, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1052 | .op_name = "OP_DELEGRETURN", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1053 | }, |
| 1054 | [OP_GETATTR] = { |
| 1055 | .op_func = (nfsd4op_func)nfsd4_getattr, |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 1056 | .op_flags = ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1057 | .op_name = "OP_GETATTR", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1058 | }, |
| 1059 | [OP_GETFH] = { |
| 1060 | .op_func = (nfsd4op_func)nfsd4_getfh, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1061 | .op_name = "OP_GETFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1062 | }, |
| 1063 | [OP_LINK] = { |
| 1064 | .op_func = (nfsd4op_func)nfsd4_link, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1065 | .op_name = "OP_LINK", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1066 | }, |
| 1067 | [OP_LOCK] = { |
| 1068 | .op_func = (nfsd4op_func)nfsd4_lock, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1069 | .op_name = "OP_LOCK", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1070 | }, |
| 1071 | [OP_LOCKT] = { |
| 1072 | .op_func = (nfsd4op_func)nfsd4_lockt, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1073 | .op_name = "OP_LOCKT", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1074 | }, |
| 1075 | [OP_LOCKU] = { |
| 1076 | .op_func = (nfsd4op_func)nfsd4_locku, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1077 | .op_name = "OP_LOCKU", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1078 | }, |
| 1079 | [OP_LOOKUP] = { |
| 1080 | .op_func = (nfsd4op_func)nfsd4_lookup, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1081 | .op_name = "OP_LOOKUP", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1082 | }, |
| 1083 | [OP_LOOKUPP] = { |
| 1084 | .op_func = (nfsd4op_func)nfsd4_lookupp, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1085 | .op_name = "OP_LOOKUPP", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1086 | }, |
| 1087 | [OP_NVERIFY] = { |
| 1088 | .op_func = (nfsd4op_func)nfsd4_nverify, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1089 | .op_name = "OP_NVERIFY", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1090 | }, |
| 1091 | [OP_OPEN] = { |
| 1092 | .op_func = (nfsd4op_func)nfsd4_open, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1093 | .op_name = "OP_OPEN", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1094 | }, |
| 1095 | [OP_OPEN_CONFIRM] = { |
| 1096 | .op_func = (nfsd4op_func)nfsd4_open_confirm, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1097 | .op_name = "OP_OPEN_CONFIRM", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1098 | }, |
| 1099 | [OP_OPEN_DOWNGRADE] = { |
| 1100 | .op_func = (nfsd4op_func)nfsd4_open_downgrade, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1101 | .op_name = "OP_OPEN_DOWNGRADE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1102 | }, |
| 1103 | [OP_PUTFH] = { |
| 1104 | .op_func = (nfsd4op_func)nfsd4_putfh, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1105 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1106 | .op_name = "OP_PUTFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1107 | }, |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 1108 | [OP_PUTPUBFH] = { |
J. Bruce Fields | a1c8c4d | 2009-03-09 12:17:29 -0400 | [diff] [blame] | 1109 | .op_func = (nfsd4op_func)nfsd4_putrootfh, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1110 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1111 | .op_name = "OP_PUTPUBFH", |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 1112 | }, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1113 | [OP_PUTROOTFH] = { |
| 1114 | .op_func = (nfsd4op_func)nfsd4_putrootfh, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1115 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1116 | .op_name = "OP_PUTROOTFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1117 | }, |
| 1118 | [OP_READ] = { |
| 1119 | .op_func = (nfsd4op_func)nfsd4_read, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1120 | .op_name = "OP_READ", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1121 | }, |
| 1122 | [OP_READDIR] = { |
| 1123 | .op_func = (nfsd4op_func)nfsd4_readdir, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1124 | .op_name = "OP_READDIR", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1125 | }, |
| 1126 | [OP_READLINK] = { |
| 1127 | .op_func = (nfsd4op_func)nfsd4_readlink, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1128 | .op_name = "OP_READLINK", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1129 | }, |
| 1130 | [OP_REMOVE] = { |
| 1131 | .op_func = (nfsd4op_func)nfsd4_remove, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1132 | .op_name = "OP_REMOVE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1133 | }, |
| 1134 | [OP_RENAME] = { |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1135 | .op_name = "OP_RENAME", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1136 | .op_func = (nfsd4op_func)nfsd4_rename, |
| 1137 | }, |
| 1138 | [OP_RENEW] = { |
| 1139 | .op_func = (nfsd4op_func)nfsd4_renew, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1140 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1141 | .op_name = "OP_RENEW", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1142 | }, |
| 1143 | [OP_RESTOREFH] = { |
| 1144 | .op_func = (nfsd4op_func)nfsd4_restorefh, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1145 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1146 | .op_name = "OP_RESTOREFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1147 | }, |
| 1148 | [OP_SAVEFH] = { |
| 1149 | .op_func = (nfsd4op_func)nfsd4_savefh, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1150 | .op_name = "OP_SAVEFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1151 | }, |
Andy Adamson | dcb488a | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 1152 | [OP_SECINFO] = { |
| 1153 | .op_func = (nfsd4op_func)nfsd4_secinfo, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1154 | .op_name = "OP_SECINFO", |
Andy Adamson | dcb488a | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 1155 | }, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1156 | [OP_SETATTR] = { |
| 1157 | .op_func = (nfsd4op_func)nfsd4_setattr, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1158 | .op_name = "OP_SETATTR", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1159 | }, |
| 1160 | [OP_SETCLIENTID] = { |
| 1161 | .op_func = (nfsd4op_func)nfsd4_setclientid, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1162 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1163 | .op_name = "OP_SETCLIENTID", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1164 | }, |
| 1165 | [OP_SETCLIENTID_CONFIRM] = { |
| 1166 | .op_func = (nfsd4op_func)nfsd4_setclientid_confirm, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1167 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1168 | .op_name = "OP_SETCLIENTID_CONFIRM", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1169 | }, |
| 1170 | [OP_VERIFY] = { |
| 1171 | .op_func = (nfsd4op_func)nfsd4_verify, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1172 | .op_name = "OP_VERIFY", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1173 | }, |
| 1174 | [OP_WRITE] = { |
| 1175 | .op_func = (nfsd4op_func)nfsd4_write, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1176 | .op_name = "OP_WRITE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1177 | }, |
| 1178 | [OP_RELEASE_LOCKOWNER] = { |
| 1179 | .op_func = (nfsd4op_func)nfsd4_release_lockowner, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1180 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1181 | .op_name = "OP_RELEASE_LOCKOWNER", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1182 | }, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1183 | |
| 1184 | /* NFSv4.1 operations */ |
| 1185 | [OP_EXCHANGE_ID] = { |
| 1186 | .op_func = (nfsd4op_func)nfsd4_exchange_id, |
Andy Adamson | f9bb94c | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 1187 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1188 | .op_name = "OP_EXCHANGE_ID", |
| 1189 | }, |
| 1190 | [OP_CREATE_SESSION] = { |
| 1191 | .op_func = (nfsd4op_func)nfsd4_create_session, |
Andy Adamson | f9bb94c | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 1192 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1193 | .op_name = "OP_CREATE_SESSION", |
| 1194 | }, |
| 1195 | [OP_DESTROY_SESSION] = { |
| 1196 | .op_func = (nfsd4op_func)nfsd4_destroy_session, |
Andy Adamson | f9bb94c | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 1197 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1198 | .op_name = "OP_DESTROY_SESSION", |
| 1199 | }, |
| 1200 | [OP_SEQUENCE] = { |
| 1201 | .op_func = (nfsd4op_func)nfsd4_sequence, |
Andy Adamson | f9bb94c | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 1202 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1203 | .op_name = "OP_SEQUENCE", |
| 1204 | }, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1205 | }; |
| 1206 | |
Adrian Bunk | f1c7f79 | 2008-08-08 19:26:42 +0300 | [diff] [blame] | 1207 | static const char *nfsd4_op_name(unsigned opnum) |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1208 | { |
| 1209 | if (opnum < ARRAY_SIZE(nfsd4_ops)) |
| 1210 | return nfsd4_ops[opnum].op_name; |
| 1211 | return "unknown_operation"; |
| 1212 | } |
| 1213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | #define nfs4svc_decode_voidargs NULL |
| 1215 | #define nfs4svc_release_void NULL |
| 1216 | #define nfsd4_voidres nfsd4_voidargs |
| 1217 | #define nfs4svc_release_compound NULL |
| 1218 | struct nfsd4_voidargs { int dummy; }; |
| 1219 | |
| 1220 | #define PROC(name, argt, rest, relt, cache, respsize) \ |
| 1221 | { (svc_procfunc) nfsd4_proc_##name, \ |
| 1222 | (kxdrproc_t) nfs4svc_decode_##argt##args, \ |
| 1223 | (kxdrproc_t) nfs4svc_encode_##rest##res, \ |
| 1224 | (kxdrproc_t) nfs4svc_release_##relt, \ |
| 1225 | sizeof(struct nfsd4_##argt##args), \ |
| 1226 | sizeof(struct nfsd4_##rest##res), \ |
| 1227 | 0, \ |
| 1228 | cache, \ |
| 1229 | respsize, \ |
| 1230 | } |
| 1231 | |
| 1232 | /* |
| 1233 | * TODO: At the present time, the NFSv4 server does not do XID caching |
| 1234 | * of requests. Implementing XID caching would not be a serious problem, |
| 1235 | * although it would require a mild change in interfaces since one |
| 1236 | * doesn't know whether an NFSv4 request is idempotent until after the |
| 1237 | * XDR decode. However, XID caching totally confuses pynfs (Peter |
| 1238 | * Astrand's regression testsuite for NFSv4 servers), which reuses |
| 1239 | * XID's liberally, so I've left it unimplemented until pynfs generates |
| 1240 | * better XID's. |
| 1241 | */ |
| 1242 | static struct svc_procedure nfsd_procedures4[2] = { |
| 1243 | PROC(null, void, void, void, RC_NOCACHE, 1), |
NeilBrown | 7775f4c | 2006-04-10 22:55:20 -0700 | [diff] [blame] | 1244 | PROC(compound, compound, compound, compound, RC_NOCACHE, NFSD_BUFSIZE/4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | }; |
| 1246 | |
| 1247 | struct svc_version nfsd_version4 = { |
| 1248 | .vs_vers = 4, |
| 1249 | .vs_nproc = 2, |
| 1250 | .vs_proc = nfsd_procedures4, |
| 1251 | .vs_dispatch = nfsd_dispatch, |
| 1252 | .vs_xdrsize = NFS4_SVC_XDRSIZE, |
| 1253 | }; |
| 1254 | |
| 1255 | /* |
| 1256 | * Local variables: |
| 1257 | * c-basic-offset: 8 |
| 1258 | * End: |
| 1259 | */ |