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 | |
| 165 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 166 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 167 | nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 168 | struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 170 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | dprintk("NFSD: nfsd4_open filename %.*s op_stateowner %p\n", |
| 172 | (int)open->op_fname.len, open->op_fname.data, |
| 173 | open->op_stateowner); |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | /* This check required by spec. */ |
| 176 | if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL) |
| 177 | return nfserr_inval; |
| 178 | |
| 179 | nfs4_lock_state(); |
| 180 | |
| 181 | /* check seqid for replay. set nfs4_owner */ |
| 182 | status = nfsd4_process_open1(open); |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 183 | if (status == nfserr_replay_me) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | struct nfs4_replay *rp = &open->op_stateowner->so_replay; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 185 | fh_put(&cstate->current_fh); |
J. Bruce Fields | a4773c0 | 2009-02-02 17:23:10 -0500 | [diff] [blame] | 186 | fh_copy_shallow(&cstate->current_fh.fh_handle, |
| 187 | &rp->rp_openfh); |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 188 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | if (status) |
| 190 | dprintk("nfsd4_open: replay failed" |
| 191 | " restoring previous filehandle\n"); |
| 192 | else |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 193 | status = nfserr_replay_me; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | if (status) |
| 196 | goto out; |
J. Bruce Fields | fb553c0 | 2006-01-18 17:43:36 -0800 | [diff] [blame] | 197 | |
| 198 | /* Openowner is now set, so sequence id will get bumped. Now we need |
| 199 | * these checks before we do any creates: */ |
J. Bruce Fields | cbd0d51 | 2006-02-07 12:58:32 -0800 | [diff] [blame] | 200 | status = nfserr_grace; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 201 | 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] | 202 | goto out; |
| 203 | status = nfserr_no_grace; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 204 | 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] | 205 | goto out; |
J. Bruce Fields | fb553c0 | 2006-01-18 17:43:36 -0800 | [diff] [blame] | 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | switch (open->op_claim_type) { |
NeilBrown | 0dd3c19 | 2005-06-23 22:02:56 -0700 | [diff] [blame] | 208 | case NFS4_OPEN_CLAIM_DELEGATE_CUR: |
| 209 | status = nfserr_inval; |
| 210 | if (open->op_create) |
| 211 | goto out; |
| 212 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | case NFS4_OPEN_CLAIM_NULL: |
| 214 | /* |
| 215 | * (1) set CURRENT_FH to the file being opened, |
| 216 | * creating it if necessary, (2) set open->op_cinfo, |
| 217 | * (3) set open->op_truncate if the file is to be |
| 218 | * truncated after opening, (4) do permission checking. |
| 219 | */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 220 | status = do_open_lookup(rqstp, &cstate->current_fh, |
| 221 | open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | if (status) |
| 223 | goto out; |
| 224 | break; |
| 225 | case NFS4_OPEN_CLAIM_PREVIOUS: |
J. Bruce Fields | a525825 | 2006-01-18 17:43:30 -0800 | [diff] [blame] | 226 | open->op_stateowner->so_confirmed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | /* |
| 228 | * The CURRENT_FH is already set to the file being |
| 229 | * opened. (1) set open->op_cinfo, (2) set |
| 230 | * open->op_truncate if the file is to be truncated |
| 231 | * after opening, (3) do permission checking. |
| 232 | */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 233 | status = do_open_fhandle(rqstp, &cstate->current_fh, |
| 234 | open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | if (status) |
| 236 | goto out; |
| 237 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | case NFS4_OPEN_CLAIM_DELEGATE_PREV: |
J. Bruce Fields | a525825 | 2006-01-18 17:43:30 -0800 | [diff] [blame] | 239 | open->op_stateowner->so_confirmed = 1; |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 240 | dprintk("NFSD: unsupported OPEN claim type %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | open->op_claim_type); |
| 242 | status = nfserr_notsupp; |
| 243 | goto out; |
| 244 | default: |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 245 | dprintk("NFSD: Invalid OPEN claim type %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | open->op_claim_type); |
| 247 | status = nfserr_inval; |
| 248 | goto out; |
| 249 | } |
| 250 | /* |
| 251 | * nfsd4_process_open2() does the actual opening of the file. If |
| 252 | * successful, it (1) truncates the file if open->op_truncate was |
| 253 | * set, (2) sets open->op_stateid, (3) sets open->op_delegation. |
| 254 | */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 255 | status = nfsd4_process_open2(rqstp, &cstate->current_fh, open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 257 | if (open->op_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | nfs4_get_stateowner(open->op_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 259 | cstate->replay_owner = open->op_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | nfs4_unlock_state(); |
| 262 | return status; |
| 263 | } |
| 264 | |
| 265 | /* |
| 266 | * filehandle-manipulating ops. |
| 267 | */ |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 268 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 269 | nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 270 | struct svc_fh **getfh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 272 | if (!cstate->current_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | return nfserr_nofilehandle; |
| 274 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 275 | *getfh = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | return nfs_ok; |
| 277 | } |
| 278 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 279 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 280 | nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 281 | struct nfsd4_putfh *putfh) |
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 | fh_put(&cstate->current_fh); |
| 284 | cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen; |
| 285 | memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval, |
| 286 | putfh->pf_fhlen); |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 287 | return fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
| 289 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 290 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 291 | nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 292 | void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 294 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 296 | fh_put(&cstate->current_fh); |
J. Bruce Fields | df547ef | 2007-07-17 04:04:43 -0700 | [diff] [blame] | 297 | status = exp_pseudoroot(rqstp, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | return status; |
| 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_restorefh(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 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 305 | if (!cstate->save_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | return nfserr_restorefh; |
| 307 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 308 | fh_dup2(&cstate->current_fh, &cstate->save_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | return nfs_ok; |
| 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_savefh(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->current_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | return nfserr_nofilehandle; |
| 318 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 319 | fh_dup2(&cstate->save_fh, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | return nfs_ok; |
| 321 | } |
| 322 | |
| 323 | /* |
| 324 | * misc nfsv4 ops |
| 325 | */ |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 326 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 327 | nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 328 | struct nfsd4_access *access) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | { |
| 330 | if (access->ac_req_access & ~NFS3_ACCESS_FULL) |
| 331 | return nfserr_inval; |
| 332 | |
| 333 | access->ac_resp_access = access->ac_req_access; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 334 | return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access, |
| 335 | &access->ac_supported); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
| 337 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 338 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 339 | nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 340 | struct nfsd4_commit *commit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 342 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | u32 *p = (u32 *)commit->co_verf.data; |
| 345 | *p++ = nfssvc_boot.tv_sec; |
| 346 | *p++ = nfssvc_boot.tv_usec; |
| 347 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 348 | status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset, |
| 349 | commit->co_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | if (status == nfserr_symlink) |
| 351 | status = nfserr_inval; |
| 352 | return status; |
| 353 | } |
| 354 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 355 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 356 | nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 357 | struct nfsd4_create *create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | { |
| 359 | struct svc_fh resfh; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 360 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | dev_t rdev; |
| 362 | |
| 363 | fh_init(&resfh, NFS4_FHSIZE); |
| 364 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 365 | status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, |
| 366 | NFSD_MAY_CREATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | if (status == nfserr_symlink) |
| 368 | status = nfserr_notdir; |
| 369 | if (status) |
| 370 | return status; |
| 371 | |
| 372 | switch (create->cr_type) { |
| 373 | case NF4LNK: |
| 374 | /* ugh! we have to null-terminate the linktext, or |
| 375 | * vfs_symlink() will choke. it is always safe to |
| 376 | * null-terminate by brute force, since at worst we |
| 377 | * will overwrite the first byte of the create namelen |
| 378 | * in the XDR buffer, which has already been extracted |
| 379 | * during XDR decode. |
| 380 | */ |
| 381 | create->cr_linkname[create->cr_linklen] = 0; |
| 382 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 383 | status = nfsd_symlink(rqstp, &cstate->current_fh, |
| 384 | create->cr_name, create->cr_namelen, |
| 385 | create->cr_linkname, create->cr_linklen, |
| 386 | &resfh, &create->cr_iattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | break; |
| 388 | |
| 389 | case NF4BLK: |
| 390 | rdev = MKDEV(create->cr_specdata1, create->cr_specdata2); |
| 391 | if (MAJOR(rdev) != create->cr_specdata1 || |
| 392 | MINOR(rdev) != create->cr_specdata2) |
| 393 | return nfserr_inval; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 394 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 395 | create->cr_name, create->cr_namelen, |
| 396 | &create->cr_iattr, S_IFBLK, rdev, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | break; |
| 398 | |
| 399 | case NF4CHR: |
| 400 | rdev = MKDEV(create->cr_specdata1, create->cr_specdata2); |
| 401 | if (MAJOR(rdev) != create->cr_specdata1 || |
| 402 | MINOR(rdev) != create->cr_specdata2) |
| 403 | return nfserr_inval; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 404 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 405 | create->cr_name, create->cr_namelen, |
| 406 | &create->cr_iattr,S_IFCHR, rdev, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | break; |
| 408 | |
| 409 | case NF4SOCK: |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 410 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 411 | create->cr_name, create->cr_namelen, |
| 412 | &create->cr_iattr, S_IFSOCK, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | break; |
| 414 | |
| 415 | case NF4FIFO: |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 416 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 417 | create->cr_name, create->cr_namelen, |
| 418 | &create->cr_iattr, S_IFIFO, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | break; |
| 420 | |
| 421 | case NF4DIR: |
| 422 | create->cr_iattr.ia_valid &= ~ATTR_SIZE; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 423 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 424 | create->cr_name, create->cr_namelen, |
| 425 | &create->cr_iattr, S_IFDIR, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | break; |
| 427 | |
| 428 | default: |
| 429 | status = nfserr_badtype; |
| 430 | } |
| 431 | |
| 432 | if (!status) { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 433 | fh_unlock(&cstate->current_fh); |
| 434 | set_change_info(&create->cr_cinfo, &cstate->current_fh); |
| 435 | fh_dup2(&cstate->current_fh, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | fh_put(&resfh); |
| 439 | return status; |
| 440 | } |
| 441 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 442 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 443 | nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 444 | struct nfsd4_getattr *getattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 446 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 448 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | if (status) |
| 450 | return status; |
| 451 | |
| 452 | if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1) |
| 453 | return nfserr_inval; |
| 454 | |
| 455 | getattr->ga_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0; |
| 456 | getattr->ga_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1; |
| 457 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 458 | getattr->ga_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | return nfs_ok; |
| 460 | } |
| 461 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 462 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 463 | nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 464 | struct nfsd4_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 466 | __be32 status = nfserr_nofilehandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 468 | if (!cstate->save_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | return status; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 470 | status = nfsd_link(rqstp, &cstate->current_fh, |
| 471 | link->li_name, link->li_namelen, &cstate->save_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | if (!status) |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 473 | set_change_info(&link->li_cinfo, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | return status; |
| 475 | } |
| 476 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 477 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 478 | nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 479 | void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | { |
| 481 | struct svc_fh tmp_fh; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 482 | __be32 ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
| 484 | fh_init(&tmp_fh, NFS4_FHSIZE); |
J. Bruce Fields | df547ef | 2007-07-17 04:04:43 -0700 | [diff] [blame] | 485 | ret = exp_pseudoroot(rqstp, &tmp_fh); |
| 486 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | return ret; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 488 | if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | fh_put(&tmp_fh); |
| 490 | return nfserr_noent; |
| 491 | } |
| 492 | fh_put(&tmp_fh); |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 493 | return nfsd_lookup(rqstp, &cstate->current_fh, |
| 494 | "..", 2, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | } |
| 496 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 497 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 498 | nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 499 | struct nfsd4_lookup *lookup) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 501 | return nfsd_lookup(rqstp, &cstate->current_fh, |
| 502 | lookup->lo_name, lookup->lo_len, |
| 503 | &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | } |
| 505 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 506 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 507 | nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 508 | struct nfsd4_read *read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 510 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
| 512 | /* no need to check permission - this will be done in nfsd_read() */ |
| 513 | |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 514 | read->rd_filp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | if (read->rd_offset >= OFFSET_MAX) |
| 516 | return nfserr_inval; |
| 517 | |
| 518 | nfs4_lock_state(); |
| 519 | /* check stateid */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 520 | if ((status = nfs4_preprocess_stateid_op(&cstate->current_fh, |
| 521 | &read->rd_stateid, |
J. Bruce Fields | 6150ef0 | 2009-02-21 13:36:16 -0800 | [diff] [blame] | 522 | RD_STATE, &read->rd_filp))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | dprintk("NFSD: nfsd4_read: couldn't process stateid!\n"); |
| 524 | goto out; |
| 525 | } |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 526 | if (read->rd_filp) |
| 527 | get_file(read->rd_filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | status = nfs_ok; |
| 529 | out: |
| 530 | nfs4_unlock_state(); |
| 531 | read->rd_rqstp = rqstp; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 532 | read->rd_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | return status; |
| 534 | } |
| 535 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 536 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 537 | nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 538 | struct nfsd4_readdir *readdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { |
| 540 | u64 cookie = readdir->rd_cookie; |
| 541 | static const nfs4_verifier zeroverf; |
| 542 | |
| 543 | /* no need to check permission - this will be done in nfsd_readdir() */ |
| 544 | |
| 545 | if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1) |
| 546 | return nfserr_inval; |
| 547 | |
| 548 | readdir->rd_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0; |
| 549 | readdir->rd_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1; |
| 550 | |
| 551 | if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) || |
| 552 | (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE))) |
| 553 | return nfserr_bad_cookie; |
| 554 | |
| 555 | readdir->rd_rqstp = rqstp; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 556 | readdir->rd_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | return nfs_ok; |
| 558 | } |
| 559 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 560 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 561 | nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 562 | struct nfsd4_readlink *readlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | { |
| 564 | readlink->rl_rqstp = rqstp; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 565 | readlink->rl_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | return nfs_ok; |
| 567 | } |
| 568 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 569 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 570 | nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 571 | struct nfsd4_remove *remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 573 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 575 | if (locks_in_grace()) |
NeilBrown | c815afc | 2005-06-23 22:03:00 -0700 | [diff] [blame] | 576 | return nfserr_grace; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 577 | status = nfsd_unlink(rqstp, &cstate->current_fh, 0, |
| 578 | remove->rm_name, remove->rm_namelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | if (status == nfserr_symlink) |
| 580 | return nfserr_notdir; |
| 581 | if (!status) { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 582 | fh_unlock(&cstate->current_fh); |
| 583 | set_change_info(&remove->rm_cinfo, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | } |
| 585 | return status; |
| 586 | } |
| 587 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 588 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 589 | nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 590 | struct nfsd4_rename *rename) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 592 | __be32 status = nfserr_nofilehandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 594 | if (!cstate->save_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | return status; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 596 | if (locks_in_grace() && !(cstate->save_fh.fh_export->ex_flags |
NeilBrown | c815afc | 2005-06-23 22:03:00 -0700 | [diff] [blame] | 597 | & NFSEXP_NOSUBTREECHECK)) |
| 598 | return nfserr_grace; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 599 | status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname, |
| 600 | rename->rn_snamelen, &cstate->current_fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | rename->rn_tname, rename->rn_tnamelen); |
| 602 | |
| 603 | /* the underlying filesystem returns different error's than required |
| 604 | * by NFSv4. both save_fh and current_fh have been verified.. */ |
| 605 | if (status == nfserr_isdir) |
| 606 | status = nfserr_exist; |
| 607 | else if ((status == nfserr_notdir) && |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 608 | (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) && |
| 609 | S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | status = nfserr_exist; |
| 611 | else if (status == nfserr_symlink) |
| 612 | status = nfserr_notdir; |
| 613 | |
| 614 | if (!status) { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 615 | set_change_info(&rename->rn_sinfo, &cstate->current_fh); |
| 616 | set_change_info(&rename->rn_tinfo, &cstate->save_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | } |
| 618 | return status; |
| 619 | } |
| 620 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 621 | static __be32 |
Andy Adamson | dcb488a | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 622 | nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 623 | struct nfsd4_secinfo *secinfo) |
| 624 | { |
| 625 | struct svc_fh resfh; |
| 626 | struct svc_export *exp; |
| 627 | struct dentry *dentry; |
| 628 | __be32 err; |
| 629 | |
| 630 | fh_init(&resfh, NFS4_FHSIZE); |
| 631 | err = nfsd_lookup_dentry(rqstp, &cstate->current_fh, |
| 632 | secinfo->si_name, secinfo->si_namelen, |
| 633 | &exp, &dentry); |
| 634 | if (err) |
| 635 | return err; |
| 636 | if (dentry->d_inode == NULL) { |
| 637 | exp_put(exp); |
| 638 | err = nfserr_noent; |
| 639 | } else |
| 640 | secinfo->si_exp = exp; |
| 641 | dput(dentry); |
| 642 | return err; |
| 643 | } |
| 644 | |
| 645 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 646 | nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 647 | struct nfsd4_setattr *setattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 649 | __be32 status = nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | if (setattr->sa_iattr.ia_valid & ATTR_SIZE) { |
| 652 | nfs4_lock_state(); |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 653 | status = nfs4_preprocess_stateid_op(&cstate->current_fh, |
J. Bruce Fields | 6150ef0 | 2009-02-21 13:36:16 -0800 | [diff] [blame] | 654 | &setattr->sa_stateid, WR_STATE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | nfs4_unlock_state(); |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 656 | if (status) { |
Greg Banks | 3e3b480 | 2006-10-02 02:17:41 -0700 | [diff] [blame] | 657 | dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n"); |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 658 | return status; |
| 659 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | } |
Dave Hansen | 18f335a | 2008-02-15 14:37:38 -0800 | [diff] [blame] | 661 | status = mnt_want_write(cstate->current_fh.fh_export->ex_path.mnt); |
| 662 | if (status) |
| 663 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | status = nfs_ok; |
| 665 | if (setattr->sa_acl != NULL) |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 666 | status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh, |
| 667 | setattr->sa_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | if (status) |
Dave Hansen | 18f335a | 2008-02-15 14:37:38 -0800 | [diff] [blame] | 669 | goto out; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 670 | status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | 0, (time_t)0); |
Dave Hansen | 18f335a | 2008-02-15 14:37:38 -0800 | [diff] [blame] | 672 | out: |
| 673 | mnt_drop_write(cstate->current_fh.fh_export->ex_path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | return status; |
| 675 | } |
| 676 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 677 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 678 | nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 679 | struct nfsd4_write *write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | { |
| 681 | stateid_t *stateid = &write->wr_stateid; |
| 682 | struct file *filp = NULL; |
| 683 | u32 *p; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 684 | __be32 status = nfs_ok; |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame^] | 685 | unsigned long cnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
| 687 | /* no need to check permission - this will be done in nfsd_write() */ |
| 688 | |
| 689 | if (write->wr_offset >= OFFSET_MAX) |
| 690 | return nfserr_inval; |
| 691 | |
| 692 | nfs4_lock_state(); |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 693 | status = nfs4_preprocess_stateid_op(&cstate->current_fh, stateid, |
J. Bruce Fields | 6150ef0 | 2009-02-21 13:36:16 -0800 | [diff] [blame] | 694 | WR_STATE, &filp); |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 695 | if (filp) |
| 696 | get_file(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | nfs4_unlock_state(); |
| 698 | |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 699 | if (status) { |
| 700 | dprintk("NFSD: nfsd4_write: couldn't process stateid!\n"); |
| 701 | return status; |
| 702 | } |
| 703 | |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame^] | 704 | cnt = write->wr_buflen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | write->wr_how_written = write->wr_stable_how; |
| 706 | p = (u32 *)write->wr_verifier.data; |
| 707 | *p++ = nfssvc_boot.tv_sec; |
| 708 | *p++ = nfssvc_boot.tv_usec; |
| 709 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 710 | status = nfsd_write(rqstp, &cstate->current_fh, filp, |
| 711 | write->wr_offset, rqstp->rq_vec, write->wr_vlen, |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame^] | 712 | &cnt, &write->wr_how_written); |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 713 | if (filp) |
| 714 | fput(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame^] | 716 | write->wr_bytes_written = cnt; |
| 717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | if (status == nfserr_symlink) |
| 719 | status = nfserr_inval; |
| 720 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | } |
| 722 | |
| 723 | /* This routine never returns NFS_OK! If there are no other errors, it |
| 724 | * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the |
| 725 | * attributes matched. VERIFY is implemented by mapping NFSERR_SAME |
| 726 | * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK. |
| 727 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 728 | static __be32 |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 729 | _nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 730 | struct nfsd4_verify *verify) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | { |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 732 | __be32 *buf, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | int count; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 734 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 736 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | if (status) |
| 738 | return status; |
| 739 | |
| 740 | if ((verify->ve_bmval[0] & ~NFSD_SUPPORTED_ATTRS_WORD0) |
| 741 | || (verify->ve_bmval[1] & ~NFSD_SUPPORTED_ATTRS_WORD1)) |
| 742 | return nfserr_attrnotsupp; |
| 743 | if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR) |
| 744 | || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)) |
| 745 | return nfserr_inval; |
| 746 | if (verify->ve_attrlen & 3) |
| 747 | return nfserr_inval; |
| 748 | |
| 749 | /* count in words: |
| 750 | * bitmap_len(1) + bitmap(2) + attr_len(1) = 4 |
| 751 | */ |
| 752 | count = 4 + (verify->ve_attrlen >> 2); |
| 753 | buf = kmalloc(count << 2, GFP_KERNEL); |
| 754 | if (!buf) |
| 755 | return nfserr_resource; |
| 756 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 757 | status = nfsd4_encode_fattr(&cstate->current_fh, |
| 758 | cstate->current_fh.fh_export, |
| 759 | cstate->current_fh.fh_dentry, buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | &count, verify->ve_bmval, |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 761 | rqstp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | |
| 763 | /* this means that nfsd4_encode_fattr() ran out of space */ |
| 764 | if (status == nfserr_resource && count == 0) |
| 765 | status = nfserr_not_same; |
| 766 | if (status) |
| 767 | goto out_kfree; |
| 768 | |
| 769 | p = buf + 3; |
| 770 | status = nfserr_not_same; |
| 771 | if (ntohl(*p++) != verify->ve_attrlen) |
| 772 | goto out_kfree; |
| 773 | if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen)) |
| 774 | status = nfserr_same; |
| 775 | |
| 776 | out_kfree: |
| 777 | kfree(buf); |
| 778 | return status; |
| 779 | } |
| 780 | |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 781 | static __be32 |
| 782 | nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 783 | struct nfsd4_verify *verify) |
| 784 | { |
| 785 | __be32 status; |
| 786 | |
| 787 | status = _nfsd4_verify(rqstp, cstate, verify); |
| 788 | return status == nfserr_not_same ? nfs_ok : status; |
| 789 | } |
| 790 | |
| 791 | static __be32 |
| 792 | nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 793 | struct nfsd4_verify *verify) |
| 794 | { |
| 795 | __be32 status; |
| 796 | |
| 797 | status = _nfsd4_verify(rqstp, cstate, verify); |
| 798 | return status == nfserr_same ? nfs_ok : status; |
| 799 | } |
| 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | /* |
| 802 | * NULL call. |
| 803 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 804 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp) |
| 806 | { |
| 807 | return nfs_ok; |
| 808 | } |
| 809 | |
Shankar Anand | e2b2095 | 2006-07-10 04:45:44 -0700 | [diff] [blame] | 810 | static inline void nfsd4_increment_op_stats(u32 opnum) |
| 811 | { |
| 812 | if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP) |
| 813 | nfsdstats.nfs4_opcount[opnum]++; |
| 814 | } |
| 815 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 816 | static void cstate_free(struct nfsd4_compound_state *cstate) |
| 817 | { |
| 818 | if (cstate == NULL) |
| 819 | return; |
| 820 | fh_put(&cstate->current_fh); |
| 821 | fh_put(&cstate->save_fh); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 822 | BUG_ON(cstate->replay_owner); |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 823 | kfree(cstate); |
| 824 | } |
| 825 | |
| 826 | static struct nfsd4_compound_state *cstate_alloc(void) |
| 827 | { |
| 828 | struct nfsd4_compound_state *cstate; |
| 829 | |
| 830 | cstate = kmalloc(sizeof(struct nfsd4_compound_state), GFP_KERNEL); |
| 831 | if (cstate == NULL) |
| 832 | return NULL; |
| 833 | fh_init(&cstate->current_fh, NFS4_FHSIZE); |
| 834 | fh_init(&cstate->save_fh, NFS4_FHSIZE); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 835 | cstate->replay_owner = NULL; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 836 | return cstate; |
| 837 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 839 | typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *, |
| 840 | void *); |
| 841 | |
| 842 | struct nfsd4_operation { |
| 843 | nfsd4op_func op_func; |
| 844 | u32 op_flags; |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 845 | /* Most ops require a valid current filehandle; a few don't: */ |
| 846 | #define ALLOWED_WITHOUT_FH 1 |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 847 | /* GETATTR and ops not listed as returning NFS4ERR_MOVED: */ |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 848 | #define ALLOWED_ON_ABSENT_FS 2 |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 849 | char *op_name; |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 850 | }; |
| 851 | |
| 852 | static struct nfsd4_operation nfsd4_ops[]; |
| 853 | |
Adrian Bunk | f1c7f79 | 2008-08-08 19:26:42 +0300 | [diff] [blame] | 854 | static const char *nfsd4_op_name(unsigned opnum); |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | /* |
| 857 | * COMPOUND call. |
| 858 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 859 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | nfsd4_proc_compound(struct svc_rqst *rqstp, |
| 861 | struct nfsd4_compoundargs *args, |
| 862 | struct nfsd4_compoundres *resp) |
| 863 | { |
| 864 | struct nfsd4_op *op; |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 865 | struct nfsd4_operation *opdesc; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 866 | struct nfsd4_compound_state *cstate = NULL; |
J.Bruce Fields | e571019 | 2006-12-13 00:35:20 -0800 | [diff] [blame] | 867 | int slack_bytes; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 868 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | resp->xbuf = &rqstp->rq_res; |
| 871 | resp->p = rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len; |
| 872 | resp->tagp = resp->p; |
| 873 | /* reserve space for: taglen, tag, and opcnt */ |
| 874 | resp->p += 2 + XDR_QUADLEN(args->taglen); |
| 875 | resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE; |
| 876 | resp->taglen = args->taglen; |
| 877 | resp->tag = args->tag; |
| 878 | resp->opcnt = 0; |
| 879 | resp->rqstp = rqstp; |
| 880 | |
| 881 | /* |
| 882 | * According to RFC3010, this takes precedence over all other errors. |
| 883 | */ |
| 884 | status = nfserr_minor_vers_mismatch; |
| 885 | if (args->minorversion > NFSD_SUPPORTED_MINOR_VERSION) |
| 886 | goto out; |
| 887 | |
Andy Adamson | c228c24 | 2008-08-21 08:42:16 -0400 | [diff] [blame] | 888 | status = nfserr_resource; |
| 889 | cstate = cstate_alloc(); |
| 890 | if (cstate == NULL) |
| 891 | goto out; |
| 892 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | status = nfs_ok; |
| 894 | while (!status && resp->opcnt < args->opcnt) { |
| 895 | op = &args->ops[resp->opcnt++]; |
| 896 | |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 897 | dprintk("nfsv4 compound op #%d/%d: %d (%s)\n", |
| 898 | resp->opcnt, args->opcnt, op->opnum, |
| 899 | nfsd4_op_name(op->opnum)); |
J. Bruce Fields | fd44527 | 2006-01-18 17:43:23 -0800 | [diff] [blame] | 900 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | /* |
| 902 | * The XDR decode routines may have pre-set op->status; |
| 903 | * for example, if there is a miscellaneous XDR error |
| 904 | * it will be set to nfserr_bad_xdr. |
| 905 | */ |
| 906 | if (op->status) |
| 907 | goto encode_op; |
| 908 | |
| 909 | /* We must be able to encode a successful response to |
| 910 | * this operation, with enough room left over to encode a |
| 911 | * failed response to the next operation. If we don't |
| 912 | * have enough room, fail with ERR_RESOURCE. |
| 913 | */ |
J.Bruce Fields | e571019 | 2006-12-13 00:35:20 -0800 | [diff] [blame] | 914 | slack_bytes = (char *)resp->end - (char *)resp->p; |
| 915 | if (slack_bytes < COMPOUND_SLACK_SPACE |
| 916 | + COMPOUND_ERR_SLACK_SPACE) { |
| 917 | BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | op->status = nfserr_resource; |
| 919 | goto encode_op; |
| 920 | } |
| 921 | |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 922 | opdesc = &nfsd4_ops[op->opnum]; |
| 923 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 924 | if (!cstate->current_fh.fh_dentry) { |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 925 | if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) { |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 926 | op->status = nfserr_nofilehandle; |
| 927 | goto encode_op; |
| 928 | } |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 929 | } else if (cstate->current_fh.fh_export->ex_fslocs.migrated && |
| 930 | !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) { |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 931 | op->status = nfserr_moved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | goto encode_op; |
| 933 | } |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 934 | |
| 935 | if (opdesc->op_func) |
| 936 | op->status = opdesc->op_func(rqstp, cstate, &op->u); |
| 937 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | BUG_ON(op->status == nfs_ok); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
| 940 | encode_op: |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 941 | if (op->status == nfserr_replay_me) { |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 942 | op->replay = &cstate->replay_owner->so_replay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | nfsd4_encode_replay(resp, op); |
| 944 | status = op->status = op->replay->rp_status; |
| 945 | } else { |
| 946 | nfsd4_encode_operation(resp, op); |
| 947 | status = op->status; |
| 948 | } |
Benny Halevy | 0407717 | 2008-12-15 19:40:49 +0200 | [diff] [blame] | 949 | |
| 950 | dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n", |
| 951 | args->ops, args->opcnt, resp->opcnt, op->opnum, |
| 952 | be32_to_cpu(status)); |
| 953 | |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 954 | if (cstate->replay_owner) { |
| 955 | nfs4_put_stateowner(cstate->replay_owner); |
| 956 | cstate->replay_owner = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | } |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 958 | /* XXX Ugh, we need to get rid of this kind of special case: */ |
| 959 | if (op->opnum == OP_READ && op->u.read.rd_filp) |
| 960 | fput(op->u.read.rd_filp); |
Shankar Anand | e2b2095 | 2006-07-10 04:45:44 -0700 | [diff] [blame] | 961 | |
| 962 | nfsd4_increment_op_stats(op->opnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | } |
| 964 | |
Andy Adamson | c228c24 | 2008-08-21 08:42:16 -0400 | [diff] [blame] | 965 | cstate_free(cstate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | out: |
| 967 | nfsd4_release_compoundargs(args); |
J. Bruce Fields | 3b12cd9 | 2008-05-05 17:17:44 -0400 | [diff] [blame] | 968 | dprintk("nfsv4 compound returned %d\n", ntohl(status)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | return status; |
| 970 | } |
| 971 | |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 972 | static struct nfsd4_operation nfsd4_ops[OP_RELEASE_LOCKOWNER+1] = { |
| 973 | [OP_ACCESS] = { |
| 974 | .op_func = (nfsd4op_func)nfsd4_access, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 975 | .op_name = "OP_ACCESS", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 976 | }, |
| 977 | [OP_CLOSE] = { |
| 978 | .op_func = (nfsd4op_func)nfsd4_close, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 979 | .op_name = "OP_CLOSE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 980 | }, |
| 981 | [OP_COMMIT] = { |
| 982 | .op_func = (nfsd4op_func)nfsd4_commit, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 983 | .op_name = "OP_COMMIT", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 984 | }, |
| 985 | [OP_CREATE] = { |
| 986 | .op_func = (nfsd4op_func)nfsd4_create, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 987 | .op_name = "OP_CREATE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 988 | }, |
| 989 | [OP_DELEGRETURN] = { |
| 990 | .op_func = (nfsd4op_func)nfsd4_delegreturn, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 991 | .op_name = "OP_DELEGRETURN", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 992 | }, |
| 993 | [OP_GETATTR] = { |
| 994 | .op_func = (nfsd4op_func)nfsd4_getattr, |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 995 | .op_flags = ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 996 | .op_name = "OP_GETATTR", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 997 | }, |
| 998 | [OP_GETFH] = { |
| 999 | .op_func = (nfsd4op_func)nfsd4_getfh, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1000 | .op_name = "OP_GETFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1001 | }, |
| 1002 | [OP_LINK] = { |
| 1003 | .op_func = (nfsd4op_func)nfsd4_link, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1004 | .op_name = "OP_LINK", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1005 | }, |
| 1006 | [OP_LOCK] = { |
| 1007 | .op_func = (nfsd4op_func)nfsd4_lock, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1008 | .op_name = "OP_LOCK", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1009 | }, |
| 1010 | [OP_LOCKT] = { |
| 1011 | .op_func = (nfsd4op_func)nfsd4_lockt, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1012 | .op_name = "OP_LOCKT", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1013 | }, |
| 1014 | [OP_LOCKU] = { |
| 1015 | .op_func = (nfsd4op_func)nfsd4_locku, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1016 | .op_name = "OP_LOCKU", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1017 | }, |
| 1018 | [OP_LOOKUP] = { |
| 1019 | .op_func = (nfsd4op_func)nfsd4_lookup, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1020 | .op_name = "OP_LOOKUP", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1021 | }, |
| 1022 | [OP_LOOKUPP] = { |
| 1023 | .op_func = (nfsd4op_func)nfsd4_lookupp, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1024 | .op_name = "OP_LOOKUPP", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1025 | }, |
| 1026 | [OP_NVERIFY] = { |
| 1027 | .op_func = (nfsd4op_func)nfsd4_nverify, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1028 | .op_name = "OP_NVERIFY", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1029 | }, |
| 1030 | [OP_OPEN] = { |
| 1031 | .op_func = (nfsd4op_func)nfsd4_open, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1032 | .op_name = "OP_OPEN", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1033 | }, |
| 1034 | [OP_OPEN_CONFIRM] = { |
| 1035 | .op_func = (nfsd4op_func)nfsd4_open_confirm, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1036 | .op_name = "OP_OPEN_CONFIRM", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1037 | }, |
| 1038 | [OP_OPEN_DOWNGRADE] = { |
| 1039 | .op_func = (nfsd4op_func)nfsd4_open_downgrade, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1040 | .op_name = "OP_OPEN_DOWNGRADE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1041 | }, |
| 1042 | [OP_PUTFH] = { |
| 1043 | .op_func = (nfsd4op_func)nfsd4_putfh, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1044 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1045 | .op_name = "OP_PUTFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1046 | }, |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 1047 | [OP_PUTPUBFH] = { |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1048 | /* unsupported, just for future reference: */ |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1049 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1050 | .op_name = "OP_PUTPUBFH", |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 1051 | }, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1052 | [OP_PUTROOTFH] = { |
| 1053 | .op_func = (nfsd4op_func)nfsd4_putrootfh, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1054 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1055 | .op_name = "OP_PUTROOTFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1056 | }, |
| 1057 | [OP_READ] = { |
| 1058 | .op_func = (nfsd4op_func)nfsd4_read, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1059 | .op_name = "OP_READ", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1060 | }, |
| 1061 | [OP_READDIR] = { |
| 1062 | .op_func = (nfsd4op_func)nfsd4_readdir, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1063 | .op_name = "OP_READDIR", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1064 | }, |
| 1065 | [OP_READLINK] = { |
| 1066 | .op_func = (nfsd4op_func)nfsd4_readlink, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1067 | .op_name = "OP_READLINK", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1068 | }, |
| 1069 | [OP_REMOVE] = { |
| 1070 | .op_func = (nfsd4op_func)nfsd4_remove, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1071 | .op_name = "OP_REMOVE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1072 | }, |
| 1073 | [OP_RENAME] = { |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1074 | .op_name = "OP_RENAME", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1075 | .op_func = (nfsd4op_func)nfsd4_rename, |
| 1076 | }, |
| 1077 | [OP_RENEW] = { |
| 1078 | .op_func = (nfsd4op_func)nfsd4_renew, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1079 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1080 | .op_name = "OP_RENEW", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1081 | }, |
| 1082 | [OP_RESTOREFH] = { |
| 1083 | .op_func = (nfsd4op_func)nfsd4_restorefh, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1084 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1085 | .op_name = "OP_RESTOREFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1086 | }, |
| 1087 | [OP_SAVEFH] = { |
| 1088 | .op_func = (nfsd4op_func)nfsd4_savefh, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1089 | .op_name = "OP_SAVEFH", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1090 | }, |
Andy Adamson | dcb488a | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 1091 | [OP_SECINFO] = { |
| 1092 | .op_func = (nfsd4op_func)nfsd4_secinfo, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1093 | .op_name = "OP_SECINFO", |
Andy Adamson | dcb488a | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 1094 | }, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1095 | [OP_SETATTR] = { |
| 1096 | .op_func = (nfsd4op_func)nfsd4_setattr, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1097 | .op_name = "OP_SETATTR", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1098 | }, |
| 1099 | [OP_SETCLIENTID] = { |
| 1100 | .op_func = (nfsd4op_func)nfsd4_setclientid, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1101 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1102 | .op_name = "OP_SETCLIENTID", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1103 | }, |
| 1104 | [OP_SETCLIENTID_CONFIRM] = { |
| 1105 | .op_func = (nfsd4op_func)nfsd4_setclientid_confirm, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1106 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1107 | .op_name = "OP_SETCLIENTID_CONFIRM", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1108 | }, |
| 1109 | [OP_VERIFY] = { |
| 1110 | .op_func = (nfsd4op_func)nfsd4_verify, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1111 | .op_name = "OP_VERIFY", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1112 | }, |
| 1113 | [OP_WRITE] = { |
| 1114 | .op_func = (nfsd4op_func)nfsd4_write, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1115 | .op_name = "OP_WRITE", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1116 | }, |
| 1117 | [OP_RELEASE_LOCKOWNER] = { |
| 1118 | .op_func = (nfsd4op_func)nfsd4_release_lockowner, |
J.Bruce Fields | 27d630e | 2006-12-13 00:35:43 -0800 | [diff] [blame] | 1119 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1120 | .op_name = "OP_RELEASE_LOCKOWNER", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1121 | }, |
| 1122 | }; |
| 1123 | |
Adrian Bunk | f1c7f79 | 2008-08-08 19:26:42 +0300 | [diff] [blame] | 1124 | static const char *nfsd4_op_name(unsigned opnum) |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 1125 | { |
| 1126 | if (opnum < ARRAY_SIZE(nfsd4_ops)) |
| 1127 | return nfsd4_ops[opnum].op_name; |
| 1128 | return "unknown_operation"; |
| 1129 | } |
| 1130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | #define nfs4svc_decode_voidargs NULL |
| 1132 | #define nfs4svc_release_void NULL |
| 1133 | #define nfsd4_voidres nfsd4_voidargs |
| 1134 | #define nfs4svc_release_compound NULL |
| 1135 | struct nfsd4_voidargs { int dummy; }; |
| 1136 | |
| 1137 | #define PROC(name, argt, rest, relt, cache, respsize) \ |
| 1138 | { (svc_procfunc) nfsd4_proc_##name, \ |
| 1139 | (kxdrproc_t) nfs4svc_decode_##argt##args, \ |
| 1140 | (kxdrproc_t) nfs4svc_encode_##rest##res, \ |
| 1141 | (kxdrproc_t) nfs4svc_release_##relt, \ |
| 1142 | sizeof(struct nfsd4_##argt##args), \ |
| 1143 | sizeof(struct nfsd4_##rest##res), \ |
| 1144 | 0, \ |
| 1145 | cache, \ |
| 1146 | respsize, \ |
| 1147 | } |
| 1148 | |
| 1149 | /* |
| 1150 | * TODO: At the present time, the NFSv4 server does not do XID caching |
| 1151 | * of requests. Implementing XID caching would not be a serious problem, |
| 1152 | * although it would require a mild change in interfaces since one |
| 1153 | * doesn't know whether an NFSv4 request is idempotent until after the |
| 1154 | * XDR decode. However, XID caching totally confuses pynfs (Peter |
| 1155 | * Astrand's regression testsuite for NFSv4 servers), which reuses |
| 1156 | * XID's liberally, so I've left it unimplemented until pynfs generates |
| 1157 | * better XID's. |
| 1158 | */ |
| 1159 | static struct svc_procedure nfsd_procedures4[2] = { |
| 1160 | PROC(null, void, void, void, RC_NOCACHE, 1), |
NeilBrown | 7775f4c | 2006-04-10 22:55:20 -0700 | [diff] [blame] | 1161 | PROC(compound, compound, compound, compound, RC_NOCACHE, NFSD_BUFSIZE/4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | }; |
| 1163 | |
| 1164 | struct svc_version nfsd_version4 = { |
| 1165 | .vs_vers = 4, |
| 1166 | .vs_nproc = 2, |
| 1167 | .vs_proc = nfsd_procedures4, |
| 1168 | .vs_dispatch = nfsd_dispatch, |
| 1169 | .vs_xdrsize = NFS4_SVC_XDRSIZE, |
| 1170 | }; |
| 1171 | |
| 1172 | /* |
| 1173 | * Local variables: |
| 1174 | * c-basic-offset: 8 |
| 1175 | * End: |
| 1176 | */ |