blob: 85b9a084177ad5e725d543cd88112452df783cf4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
38#include <linux/param.h>
39#include <linux/major.h>
40#include <linux/slab.h>
NeilBrown7e06b7f2005-06-23 22:03:13 -070041#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
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 Adamsondcb488a32007-07-17 04:04:51 -070050#include <linux/sunrpc/gss_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#define NFSDDBG_FACILITY NFSDDBG_PROC
53
54static inline void
55fh_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 Virob37ad282006-10-19 23:28:59 -070064static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -070065do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Al Virob37ad282006-10-19 23:28:59 -070067 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 if (open->op_truncate &&
70 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
71 return nfserr_inval;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +020074 accmode |= NFSD_MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -070075 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +020076 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
J. Bruce Fields9801d8a2006-10-17 00:10:14 -070077 if (open->op_share_deny & NFS4_SHARE_DENY_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +020078 accmode |= NFSD_MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
81
82 return status;
83}
84
Al Virob37ad282006-10-19 23:28:59 -070085static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070086do_open_lookup(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
87{
88 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -070089 __be32 status;
J. Bruce Fields81ac95c2006-11-08 17:44:40 -080090 int created = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
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 Layton749997e2007-07-31 00:37:51 -0700103 (u32 *)open->op_verf.data,
104 &open->op_truncate, &created);
105
J. Bruce Fields99f88722009-02-02 15:12:27 -0500106 /*
107 * Following rfc 3530 14.2.16, use the returned bitmask
108 * to indicate which attributes we used to store the
109 * verifier:
Jeff Layton749997e2007-07-31 00:37:51 -0700110 */
111 if (open->op_createmode == NFS4_CREATE_EXCLUSIVE && status == 0)
J. Bruce Fields99f88722009-02-02 15:12:27 -0500112 open->op_bmval[1] = (FATTR4_WORD1_TIME_ACCESS |
Jeff Layton749997e2007-07-31 00:37:51 -0700113 FATTR4_WORD1_TIME_MODIFY);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800114 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 status = nfsd_lookup(rqstp, current_fh,
116 open->op_fname.data, open->op_fname.len, &resfh);
117 fh_unlock(current_fh);
118 }
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800119 if (status)
120 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800122 set_change_info(&open->op_cinfo, current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800124 /* set reply cache */
125 fh_dup2(current_fh, &resfh);
126 open->op_stateowner->so_replay.rp_openfh_len = resfh.fh_handle.fh_size;
127 memcpy(open->op_stateowner->so_replay.rp_openfh,
128 &resfh.fh_handle.fh_base, resfh.fh_handle.fh_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
J. Bruce Fields81ac95c2006-11-08 17:44:40 -0800130 if (!created)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200131 status = do_open_permission(rqstp, current_fh, open,
132 NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800134out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 fh_put(&resfh);
136 return status;
137}
138
Al Virob37ad282006-10-19 23:28:59 -0700139static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140do_open_fhandle(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
141{
Al Virob37ad282006-10-19 23:28:59 -0700142 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /* Only reclaims from previously confirmed clients are valid */
145 if ((status = nfs4_check_open_reclaim(&open->op_clientid)))
146 return status;
147
148 /* We don't know the target directory, and therefore can not
149 * set the change info
150 */
151
152 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
153
154 /* set replay cache */
155 open->op_stateowner->so_replay.rp_openfh_len = current_fh->fh_handle.fh_size;
156 memcpy(open->op_stateowner->so_replay.rp_openfh,
157 &current_fh->fh_handle.fh_base,
158 current_fh->fh_handle.fh_size);
159
160 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
161 (open->op_iattr.ia_size == 0);
162
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200163 status = do_open_permission(rqstp, current_fh, open,
164 NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 return status;
167}
168
169
J.Bruce Fields71911552006-12-13 00:35:29 -0800170static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800171nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800172 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Al Virob37ad282006-10-19 23:28:59 -0700174 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 dprintk("NFSD: nfsd4_open filename %.*s op_stateowner %p\n",
176 (int)open->op_fname.len, open->op_fname.data,
177 open->op_stateowner);
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* This check required by spec. */
180 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
181 return nfserr_inval;
182
183 nfs4_lock_state();
184
185 /* check seqid for replay. set nfs4_owner */
186 status = nfsd4_process_open1(open);
Al Viroa90b0612006-10-19 23:29:03 -0700187 if (status == nfserr_replay_me) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct nfs4_replay *rp = &open->op_stateowner->so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800189 fh_put(&cstate->current_fh);
190 cstate->current_fh.fh_handle.fh_size = rp->rp_openfh_len;
191 memcpy(&cstate->current_fh.fh_handle.fh_base, rp->rp_openfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 rp->rp_openfh_len);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200193 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (status)
195 dprintk("nfsd4_open: replay failed"
196 " restoring previous filehandle\n");
197 else
Al Viroa90b0612006-10-19 23:29:03 -0700198 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200 if (status)
201 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800202
203 /* Openowner is now set, so sequence id will get bumped. Now we need
204 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800205 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400206 if (locks_in_grace() && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800207 goto out;
208 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400209 if (!locks_in_grace() && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800210 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700213 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
214 status = nfserr_inval;
215 if (open->op_create)
216 goto out;
217 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 case NFS4_OPEN_CLAIM_NULL:
219 /*
220 * (1) set CURRENT_FH to the file being opened,
221 * creating it if necessary, (2) set open->op_cinfo,
222 * (3) set open->op_truncate if the file is to be
223 * truncated after opening, (4) do permission checking.
224 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800225 status = do_open_lookup(rqstp, &cstate->current_fh,
226 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (status)
228 goto out;
229 break;
230 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800231 open->op_stateowner->so_confirmed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /*
233 * The CURRENT_FH is already set to the file being
234 * opened. (1) set open->op_cinfo, (2) set
235 * open->op_truncate if the file is to be truncated
236 * after opening, (3) do permission checking.
237 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800238 status = do_open_fhandle(rqstp, &cstate->current_fh,
239 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (status)
241 goto out;
242 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800244 open->op_stateowner->so_confirmed = 1;
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400245 dprintk("NFSD: unsupported OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 open->op_claim_type);
247 status = nfserr_notsupp;
248 goto out;
249 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400250 dprintk("NFSD: Invalid OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 open->op_claim_type);
252 status = nfserr_inval;
253 goto out;
254 }
255 /*
256 * nfsd4_process_open2() does the actual opening of the file. If
257 * successful, it (1) truncates the file if open->op_truncate was
258 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
259 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800260 status = nfsd4_process_open2(rqstp, &cstate->current_fh, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261out:
Neil Brownf2327d92005-09-13 01:25:37 -0700262 if (open->op_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 nfs4_get_stateowner(open->op_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800264 cstate->replay_owner = open->op_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -0700265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 nfs4_unlock_state();
267 return status;
268}
269
270/*
271 * filehandle-manipulating ops.
272 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800273static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800274nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
275 struct svc_fh **getfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800277 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return nfserr_nofilehandle;
279
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800280 *getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return nfs_ok;
282}
283
J.Bruce Fields71911552006-12-13 00:35:29 -0800284static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800285nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
286 struct nfsd4_putfh *putfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800288 fh_put(&cstate->current_fh);
289 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
290 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
291 putfh->pf_fhlen);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200292 return fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
J.Bruce Fields71911552006-12-13 00:35:29 -0800295static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800296nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
297 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Al Virob37ad282006-10-19 23:28:59 -0700299 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800301 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700302 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return status;
304}
305
J.Bruce Fields71911552006-12-13 00:35:29 -0800306static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800307nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
308 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800310 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return nfserr_restorefh;
312
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800313 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return nfs_ok;
315}
316
J.Bruce Fields71911552006-12-13 00:35:29 -0800317static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800318nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
319 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800321 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return nfserr_nofilehandle;
323
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800324 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return nfs_ok;
326}
327
328/*
329 * misc nfsv4 ops
330 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800331static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800332nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
333 struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
336 return nfserr_inval;
337
338 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800339 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
340 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
J.Bruce Fields71911552006-12-13 00:35:29 -0800343static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800344nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
345 struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Al Virob37ad282006-10-19 23:28:59 -0700347 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 u32 *p = (u32 *)commit->co_verf.data;
350 *p++ = nfssvc_boot.tv_sec;
351 *p++ = nfssvc_boot.tv_usec;
352
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800353 status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
354 commit->co_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (status == nfserr_symlink)
356 status = nfserr_inval;
357 return status;
358}
359
Al Virob37ad282006-10-19 23:28:59 -0700360static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800361nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
362 struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700365 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 dev_t rdev;
367
368 fh_init(&resfh, NFS4_FHSIZE);
369
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200370 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR,
371 NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (status == nfserr_symlink)
373 status = nfserr_notdir;
374 if (status)
375 return status;
376
377 switch (create->cr_type) {
378 case NF4LNK:
379 /* ugh! we have to null-terminate the linktext, or
380 * vfs_symlink() will choke. it is always safe to
381 * null-terminate by brute force, since at worst we
382 * will overwrite the first byte of the create namelen
383 * in the XDR buffer, which has already been extracted
384 * during XDR decode.
385 */
386 create->cr_linkname[create->cr_linklen] = 0;
387
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800388 status = nfsd_symlink(rqstp, &cstate->current_fh,
389 create->cr_name, create->cr_namelen,
390 create->cr_linkname, create->cr_linklen,
391 &resfh, &create->cr_iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 break;
393
394 case NF4BLK:
395 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
396 if (MAJOR(rdev) != create->cr_specdata1 ||
397 MINOR(rdev) != create->cr_specdata2)
398 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800399 status = nfsd_create(rqstp, &cstate->current_fh,
400 create->cr_name, create->cr_namelen,
401 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 break;
403
404 case NF4CHR:
405 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
406 if (MAJOR(rdev) != create->cr_specdata1 ||
407 MINOR(rdev) != create->cr_specdata2)
408 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800409 status = nfsd_create(rqstp, &cstate->current_fh,
410 create->cr_name, create->cr_namelen,
411 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 break;
413
414 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800415 status = nfsd_create(rqstp, &cstate->current_fh,
416 create->cr_name, create->cr_namelen,
417 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 break;
419
420 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800421 status = nfsd_create(rqstp, &cstate->current_fh,
422 create->cr_name, create->cr_namelen,
423 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 break;
425
426 case NF4DIR:
427 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800428 status = nfsd_create(rqstp, &cstate->current_fh,
429 create->cr_name, create->cr_namelen,
430 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 break;
432
433 default:
434 status = nfserr_badtype;
435 }
436
437 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800438 fh_unlock(&cstate->current_fh);
439 set_change_info(&create->cr_cinfo, &cstate->current_fh);
440 fh_dup2(&cstate->current_fh, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 fh_put(&resfh);
444 return status;
445}
446
J.Bruce Fields71911552006-12-13 00:35:29 -0800447static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800448nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
449 struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Al Virob37ad282006-10-19 23:28:59 -0700451 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200453 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (status)
455 return status;
456
457 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
458 return nfserr_inval;
459
460 getattr->ga_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
461 getattr->ga_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
462
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800463 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return nfs_ok;
465}
466
J.Bruce Fields71911552006-12-13 00:35:29 -0800467static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800468nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
469 struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Al Virob37ad282006-10-19 23:28:59 -0700471 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800473 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800475 status = nfsd_link(rqstp, &cstate->current_fh,
476 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800478 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return status;
480}
481
Al Virob37ad282006-10-19 23:28:59 -0700482static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800483nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
484 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700487 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700490 ret = exp_pseudoroot(rqstp, &tmp_fh);
491 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return ret;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800493 if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 fh_put(&tmp_fh);
495 return nfserr_noent;
496 }
497 fh_put(&tmp_fh);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800498 return nfsd_lookup(rqstp, &cstate->current_fh,
499 "..", 2, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
J.Bruce Fields71911552006-12-13 00:35:29 -0800502static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800503nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
504 struct nfsd4_lookup *lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800506 return nfsd_lookup(rqstp, &cstate->current_fh,
507 lookup->lo_name, lookup->lo_len,
508 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
J.Bruce Fields71911552006-12-13 00:35:29 -0800511static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800512nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
513 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Al Virob37ad282006-10-19 23:28:59 -0700515 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 /* no need to check permission - this will be done in nfsd_read() */
518
NeilBrown7e06b7f2005-06-23 22:03:13 -0700519 read->rd_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 if (read->rd_offset >= OFFSET_MAX)
521 return nfserr_inval;
522
523 nfs4_lock_state();
524 /* check stateid */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800525 if ((status = nfs4_preprocess_stateid_op(&cstate->current_fh,
526 &read->rd_stateid,
NeilBrown7e06b7f2005-06-23 22:03:13 -0700527 CHECK_FH | RD_STATE, &read->rd_filp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
529 goto out;
530 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700531 if (read->rd_filp)
532 get_file(read->rd_filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 status = nfs_ok;
534out:
535 nfs4_unlock_state();
536 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800537 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return status;
539}
540
J.Bruce Fields71911552006-12-13 00:35:29 -0800541static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800542nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
543 struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 u64 cookie = readdir->rd_cookie;
546 static const nfs4_verifier zeroverf;
547
548 /* no need to check permission - this will be done in nfsd_readdir() */
549
550 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
551 return nfserr_inval;
552
553 readdir->rd_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
554 readdir->rd_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
555
556 if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) ||
557 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
558 return nfserr_bad_cookie;
559
560 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800561 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return nfs_ok;
563}
564
J.Bruce Fields71911552006-12-13 00:35:29 -0800565static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800566nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
567 struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 readlink->rl_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800570 readlink->rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return nfs_ok;
572}
573
J.Bruce Fields71911552006-12-13 00:35:29 -0800574static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800575nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
576 struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Al Virob37ad282006-10-19 23:28:59 -0700578 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400580 if (locks_in_grace())
NeilBrownc815afc2005-06-23 22:03:00 -0700581 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800582 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
583 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (status == nfserr_symlink)
585 return nfserr_notdir;
586 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800587 fh_unlock(&cstate->current_fh);
588 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590 return status;
591}
592
J.Bruce Fields71911552006-12-13 00:35:29 -0800593static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800594nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
595 struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Al Virob37ad282006-10-19 23:28:59 -0700597 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800599 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return status;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400601 if (locks_in_grace() && !(cstate->save_fh.fh_export->ex_flags
NeilBrownc815afc2005-06-23 22:03:00 -0700602 & NFSEXP_NOSUBTREECHECK))
603 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800604 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
605 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 rename->rn_tname, rename->rn_tnamelen);
607
608 /* the underlying filesystem returns different error's than required
609 * by NFSv4. both save_fh and current_fh have been verified.. */
610 if (status == nfserr_isdir)
611 status = nfserr_exist;
612 else if ((status == nfserr_notdir) &&
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800613 (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) &&
614 S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 status = nfserr_exist;
616 else if (status == nfserr_symlink)
617 status = nfserr_notdir;
618
619 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800620 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
621 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623 return status;
624}
625
J.Bruce Fields71911552006-12-13 00:35:29 -0800626static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700627nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
628 struct nfsd4_secinfo *secinfo)
629{
630 struct svc_fh resfh;
631 struct svc_export *exp;
632 struct dentry *dentry;
633 __be32 err;
634
635 fh_init(&resfh, NFS4_FHSIZE);
636 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
637 secinfo->si_name, secinfo->si_namelen,
638 &exp, &dentry);
639 if (err)
640 return err;
641 if (dentry->d_inode == NULL) {
642 exp_put(exp);
643 err = nfserr_noent;
644 } else
645 secinfo->si_exp = exp;
646 dput(dentry);
647 return err;
648}
649
650static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800651nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
652 struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Al Virob37ad282006-10-19 23:28:59 -0700654 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
657 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800658 status = nfs4_preprocess_stateid_op(&cstate->current_fh,
J. Bruce Fields375c5542006-01-18 17:43:33 -0800659 &setattr->sa_stateid, CHECK_FH | WR_STATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -0800661 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700662 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800663 return status;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
Dave Hansen18f335a2008-02-15 14:37:38 -0800666 status = mnt_want_write(cstate->current_fh.fh_export->ex_path.mnt);
667 if (status)
668 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 status = nfs_ok;
670 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800671 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
672 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (status)
Dave Hansen18f335a2008-02-15 14:37:38 -0800674 goto out;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800675 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 0, (time_t)0);
Dave Hansen18f335a2008-02-15 14:37:38 -0800677out:
678 mnt_drop_write(cstate->current_fh.fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return status;
680}
681
J.Bruce Fields71911552006-12-13 00:35:29 -0800682static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800683nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
684 struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 stateid_t *stateid = &write->wr_stateid;
687 struct file *filp = NULL;
688 u32 *p;
Al Virob37ad282006-10-19 23:28:59 -0700689 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 /* no need to check permission - this will be done in nfsd_write() */
692
693 if (write->wr_offset >= OFFSET_MAX)
694 return nfserr_inval;
695
696 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800697 status = nfs4_preprocess_stateid_op(&cstate->current_fh, stateid,
J. Bruce Fields375c5542006-01-18 17:43:33 -0800698 CHECK_FH | WR_STATE, &filp);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700699 if (filp)
700 get_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 nfs4_unlock_state();
702
J. Bruce Fields375c5542006-01-18 17:43:33 -0800703 if (status) {
704 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
705 return status;
706 }
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 write->wr_bytes_written = write->wr_buflen;
709 write->wr_how_written = write->wr_stable_how;
710 p = (u32 *)write->wr_verifier.data;
711 *p++ = nfssvc_boot.tv_sec;
712 *p++ = nfssvc_boot.tv_usec;
713
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800714 status = nfsd_write(rqstp, &cstate->current_fh, filp,
715 write->wr_offset, rqstp->rq_vec, write->wr_vlen,
716 write->wr_buflen, &write->wr_how_written);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700717 if (filp)
718 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 if (status == nfserr_symlink)
721 status = nfserr_inval;
722 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725/* This routine never returns NFS_OK! If there are no other errors, it
726 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
727 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
728 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
729 */
Al Virob37ad282006-10-19 23:28:59 -0700730static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800731_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800732 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Al Viro2ebbc012006-10-19 23:28:58 -0700734 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 int count;
Al Virob37ad282006-10-19 23:28:59 -0700736 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200738 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (status)
740 return status;
741
742 if ((verify->ve_bmval[0] & ~NFSD_SUPPORTED_ATTRS_WORD0)
743 || (verify->ve_bmval[1] & ~NFSD_SUPPORTED_ATTRS_WORD1))
744 return nfserr_attrnotsupp;
745 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
746 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
747 return nfserr_inval;
748 if (verify->ve_attrlen & 3)
749 return nfserr_inval;
750
751 /* count in words:
752 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
753 */
754 count = 4 + (verify->ve_attrlen >> 2);
755 buf = kmalloc(count << 2, GFP_KERNEL);
756 if (!buf)
757 return nfserr_resource;
758
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800759 status = nfsd4_encode_fattr(&cstate->current_fh,
760 cstate->current_fh.fh_export,
761 cstate->current_fh.fh_dentry, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 &count, verify->ve_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -0800763 rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 /* this means that nfsd4_encode_fattr() ran out of space */
766 if (status == nfserr_resource && count == 0)
767 status = nfserr_not_same;
768 if (status)
769 goto out_kfree;
770
771 p = buf + 3;
772 status = nfserr_not_same;
773 if (ntohl(*p++) != verify->ve_attrlen)
774 goto out_kfree;
775 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
776 status = nfserr_same;
777
778out_kfree:
779 kfree(buf);
780 return status;
781}
782
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800783static __be32
784nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
785 struct nfsd4_verify *verify)
786{
787 __be32 status;
788
789 status = _nfsd4_verify(rqstp, cstate, verify);
790 return status == nfserr_not_same ? nfs_ok : status;
791}
792
793static __be32
794nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
795 struct nfsd4_verify *verify)
796{
797 __be32 status;
798
799 status = _nfsd4_verify(rqstp, cstate, verify);
800 return status == nfserr_same ? nfs_ok : status;
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/*
804 * NULL call.
805 */
Al Viro7111c662006-10-19 23:28:45 -0700806static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
808{
809 return nfs_ok;
810}
811
Shankar Anande2b20952006-07-10 04:45:44 -0700812static inline void nfsd4_increment_op_stats(u32 opnum)
813{
814 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
815 nfsdstats.nfs4_opcount[opnum]++;
816}
817
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800818static void cstate_free(struct nfsd4_compound_state *cstate)
819{
820 if (cstate == NULL)
821 return;
822 fh_put(&cstate->current_fh);
823 fh_put(&cstate->save_fh);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800824 BUG_ON(cstate->replay_owner);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800825 kfree(cstate);
826}
827
828static struct nfsd4_compound_state *cstate_alloc(void)
829{
830 struct nfsd4_compound_state *cstate;
831
832 cstate = kmalloc(sizeof(struct nfsd4_compound_state), GFP_KERNEL);
833 if (cstate == NULL)
834 return NULL;
835 fh_init(&cstate->current_fh, NFS4_FHSIZE);
836 fh_init(&cstate->save_fh, NFS4_FHSIZE);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800837 cstate->replay_owner = NULL;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800838 return cstate;
839}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800841typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *,
842 void *);
843
844struct nfsd4_operation {
845 nfsd4op_func op_func;
846 u32 op_flags;
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800847/* Most ops require a valid current filehandle; a few don't: */
848#define ALLOWED_WITHOUT_FH 1
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800849/* GETATTR and ops not listed as returning NFS4ERR_MOVED: */
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800850#define ALLOWED_ON_ABSENT_FS 2
Benny Halevyb001a1b2008-07-02 11:15:03 +0300851 char *op_name;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800852};
853
854static struct nfsd4_operation nfsd4_ops[];
855
Adrian Bunkf1c7f792008-08-08 19:26:42 +0300856static const char *nfsd4_op_name(unsigned opnum);
Benny Halevyb001a1b2008-07-02 11:15:03 +0300857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858/*
859 * COMPOUND call.
860 */
Al Viro7111c662006-10-19 23:28:45 -0700861static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862nfsd4_proc_compound(struct svc_rqst *rqstp,
863 struct nfsd4_compoundargs *args,
864 struct nfsd4_compoundres *resp)
865{
866 struct nfsd4_op *op;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800867 struct nfsd4_operation *opdesc;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800868 struct nfsd4_compound_state *cstate = NULL;
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800869 int slack_bytes;
Al Virob37ad282006-10-19 23:28:59 -0700870 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 resp->xbuf = &rqstp->rq_res;
873 resp->p = rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len;
874 resp->tagp = resp->p;
875 /* reserve space for: taglen, tag, and opcnt */
876 resp->p += 2 + XDR_QUADLEN(args->taglen);
877 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
878 resp->taglen = args->taglen;
879 resp->tag = args->tag;
880 resp->opcnt = 0;
881 resp->rqstp = rqstp;
882
883 /*
884 * According to RFC3010, this takes precedence over all other errors.
885 */
886 status = nfserr_minor_vers_mismatch;
887 if (args->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
888 goto out;
889
Andy Adamsonc228c242008-08-21 08:42:16 -0400890 status = nfserr_resource;
891 cstate = cstate_alloc();
892 if (cstate == NULL)
893 goto out;
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 status = nfs_ok;
896 while (!status && resp->opcnt < args->opcnt) {
897 op = &args->ops[resp->opcnt++];
898
Benny Halevyb001a1b2008-07-02 11:15:03 +0300899 dprintk("nfsv4 compound op #%d/%d: %d (%s)\n",
900 resp->opcnt, args->opcnt, op->opnum,
901 nfsd4_op_name(op->opnum));
J. Bruce Fieldsfd445272006-01-18 17:43:23 -0800902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /*
904 * The XDR decode routines may have pre-set op->status;
905 * for example, if there is a miscellaneous XDR error
906 * it will be set to nfserr_bad_xdr.
907 */
908 if (op->status)
909 goto encode_op;
910
911 /* We must be able to encode a successful response to
912 * this operation, with enough room left over to encode a
913 * failed response to the next operation. If we don't
914 * have enough room, fail with ERR_RESOURCE.
915 */
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800916 slack_bytes = (char *)resp->end - (char *)resp->p;
917 if (slack_bytes < COMPOUND_SLACK_SPACE
918 + COMPOUND_ERR_SLACK_SPACE) {
919 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 op->status = nfserr_resource;
921 goto encode_op;
922 }
923
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800924 opdesc = &nfsd4_ops[op->opnum];
925
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800926 if (!cstate->current_fh.fh_dentry) {
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800927 if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700928 op->status = nfserr_nofilehandle;
929 goto encode_op;
930 }
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800931 } else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
932 !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700933 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 goto encode_op;
935 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800936
937 if (opdesc->op_func)
938 op->status = opdesc->op_func(rqstp, cstate, &op->u);
939 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 BUG_ON(op->status == nfs_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942encode_op:
Al Viroa90b0612006-10-19 23:29:03 -0700943 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800944 op->replay = &cstate->replay_owner->so_replay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 nfsd4_encode_replay(resp, op);
946 status = op->status = op->replay->rp_status;
947 } else {
948 nfsd4_encode_operation(resp, op);
949 status = op->status;
950 }
Benny Halevy04077172008-12-15 19:40:49 +0200951
952 dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n",
953 args->ops, args->opcnt, resp->opcnt, op->opnum,
954 be32_to_cpu(status));
955
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800956 if (cstate->replay_owner) {
957 nfs4_put_stateowner(cstate->replay_owner);
958 cstate->replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700960 /* XXX Ugh, we need to get rid of this kind of special case: */
961 if (op->opnum == OP_READ && op->u.read.rd_filp)
962 fput(op->u.read.rd_filp);
Shankar Anande2b20952006-07-10 04:45:44 -0700963
964 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
Andy Adamsonc228c242008-08-21 08:42:16 -0400967 cstate_free(cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968out:
969 nfsd4_release_compoundargs(args);
J. Bruce Fields3b12cd92008-05-05 17:17:44 -0400970 dprintk("nfsv4 compound returned %d\n", ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return status;
972}
973
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800974static struct nfsd4_operation nfsd4_ops[OP_RELEASE_LOCKOWNER+1] = {
975 [OP_ACCESS] = {
976 .op_func = (nfsd4op_func)nfsd4_access,
Benny Halevyb001a1b2008-07-02 11:15:03 +0300977 .op_name = "OP_ACCESS",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800978 },
979 [OP_CLOSE] = {
980 .op_func = (nfsd4op_func)nfsd4_close,
Benny Halevyb001a1b2008-07-02 11:15:03 +0300981 .op_name = "OP_CLOSE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800982 },
983 [OP_COMMIT] = {
984 .op_func = (nfsd4op_func)nfsd4_commit,
Benny Halevyb001a1b2008-07-02 11:15:03 +0300985 .op_name = "OP_COMMIT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800986 },
987 [OP_CREATE] = {
988 .op_func = (nfsd4op_func)nfsd4_create,
Benny Halevyb001a1b2008-07-02 11:15:03 +0300989 .op_name = "OP_CREATE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800990 },
991 [OP_DELEGRETURN] = {
992 .op_func = (nfsd4op_func)nfsd4_delegreturn,
Benny Halevyb001a1b2008-07-02 11:15:03 +0300993 .op_name = "OP_DELEGRETURN",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800994 },
995 [OP_GETATTR] = {
996 .op_func = (nfsd4op_func)nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800997 .op_flags = ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +0300998 .op_name = "OP_GETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800999 },
1000 [OP_GETFH] = {
1001 .op_func = (nfsd4op_func)nfsd4_getfh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001002 .op_name = "OP_GETFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001003 },
1004 [OP_LINK] = {
1005 .op_func = (nfsd4op_func)nfsd4_link,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001006 .op_name = "OP_LINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001007 },
1008 [OP_LOCK] = {
1009 .op_func = (nfsd4op_func)nfsd4_lock,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001010 .op_name = "OP_LOCK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001011 },
1012 [OP_LOCKT] = {
1013 .op_func = (nfsd4op_func)nfsd4_lockt,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001014 .op_name = "OP_LOCKT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001015 },
1016 [OP_LOCKU] = {
1017 .op_func = (nfsd4op_func)nfsd4_locku,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001018 .op_name = "OP_LOCKU",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001019 },
1020 [OP_LOOKUP] = {
1021 .op_func = (nfsd4op_func)nfsd4_lookup,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001022 .op_name = "OP_LOOKUP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001023 },
1024 [OP_LOOKUPP] = {
1025 .op_func = (nfsd4op_func)nfsd4_lookupp,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001026 .op_name = "OP_LOOKUPP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001027 },
1028 [OP_NVERIFY] = {
1029 .op_func = (nfsd4op_func)nfsd4_nverify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001030 .op_name = "OP_NVERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001031 },
1032 [OP_OPEN] = {
1033 .op_func = (nfsd4op_func)nfsd4_open,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001034 .op_name = "OP_OPEN",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001035 },
1036 [OP_OPEN_CONFIRM] = {
1037 .op_func = (nfsd4op_func)nfsd4_open_confirm,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001038 .op_name = "OP_OPEN_CONFIRM",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001039 },
1040 [OP_OPEN_DOWNGRADE] = {
1041 .op_func = (nfsd4op_func)nfsd4_open_downgrade,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001042 .op_name = "OP_OPEN_DOWNGRADE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001043 },
1044 [OP_PUTFH] = {
1045 .op_func = (nfsd4op_func)nfsd4_putfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001046 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001047 .op_name = "OP_PUTFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001048 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001049 [OP_PUTPUBFH] = {
Benny Halevyb001a1b2008-07-02 11:15:03 +03001050 /* unsupported, just for future reference: */
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001051 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001052 .op_name = "OP_PUTPUBFH",
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001053 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001054 [OP_PUTROOTFH] = {
1055 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001056 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001057 .op_name = "OP_PUTROOTFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001058 },
1059 [OP_READ] = {
1060 .op_func = (nfsd4op_func)nfsd4_read,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001061 .op_name = "OP_READ",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001062 },
1063 [OP_READDIR] = {
1064 .op_func = (nfsd4op_func)nfsd4_readdir,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001065 .op_name = "OP_READDIR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001066 },
1067 [OP_READLINK] = {
1068 .op_func = (nfsd4op_func)nfsd4_readlink,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001069 .op_name = "OP_READLINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001070 },
1071 [OP_REMOVE] = {
1072 .op_func = (nfsd4op_func)nfsd4_remove,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001073 .op_name = "OP_REMOVE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001074 },
1075 [OP_RENAME] = {
Benny Halevyb001a1b2008-07-02 11:15:03 +03001076 .op_name = "OP_RENAME",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001077 .op_func = (nfsd4op_func)nfsd4_rename,
1078 },
1079 [OP_RENEW] = {
1080 .op_func = (nfsd4op_func)nfsd4_renew,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001081 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001082 .op_name = "OP_RENEW",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001083 },
1084 [OP_RESTOREFH] = {
1085 .op_func = (nfsd4op_func)nfsd4_restorefh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001086 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001087 .op_name = "OP_RESTOREFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001088 },
1089 [OP_SAVEFH] = {
1090 .op_func = (nfsd4op_func)nfsd4_savefh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001091 .op_name = "OP_SAVEFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001092 },
Andy Adamsondcb488a32007-07-17 04:04:51 -07001093 [OP_SECINFO] = {
1094 .op_func = (nfsd4op_func)nfsd4_secinfo,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001095 .op_name = "OP_SECINFO",
Andy Adamsondcb488a32007-07-17 04:04:51 -07001096 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001097 [OP_SETATTR] = {
1098 .op_func = (nfsd4op_func)nfsd4_setattr,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001099 .op_name = "OP_SETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001100 },
1101 [OP_SETCLIENTID] = {
1102 .op_func = (nfsd4op_func)nfsd4_setclientid,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001103 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001104 .op_name = "OP_SETCLIENTID",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001105 },
1106 [OP_SETCLIENTID_CONFIRM] = {
1107 .op_func = (nfsd4op_func)nfsd4_setclientid_confirm,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001108 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001109 .op_name = "OP_SETCLIENTID_CONFIRM",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001110 },
1111 [OP_VERIFY] = {
1112 .op_func = (nfsd4op_func)nfsd4_verify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001113 .op_name = "OP_VERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001114 },
1115 [OP_WRITE] = {
1116 .op_func = (nfsd4op_func)nfsd4_write,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001117 .op_name = "OP_WRITE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001118 },
1119 [OP_RELEASE_LOCKOWNER] = {
1120 .op_func = (nfsd4op_func)nfsd4_release_lockowner,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001121 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001122 .op_name = "OP_RELEASE_LOCKOWNER",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001123 },
1124};
1125
Adrian Bunkf1c7f792008-08-08 19:26:42 +03001126static const char *nfsd4_op_name(unsigned opnum)
Benny Halevyb001a1b2008-07-02 11:15:03 +03001127{
1128 if (opnum < ARRAY_SIZE(nfsd4_ops))
1129 return nfsd4_ops[opnum].op_name;
1130 return "unknown_operation";
1131}
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133#define nfs4svc_decode_voidargs NULL
1134#define nfs4svc_release_void NULL
1135#define nfsd4_voidres nfsd4_voidargs
1136#define nfs4svc_release_compound NULL
1137struct nfsd4_voidargs { int dummy; };
1138
1139#define PROC(name, argt, rest, relt, cache, respsize) \
1140 { (svc_procfunc) nfsd4_proc_##name, \
1141 (kxdrproc_t) nfs4svc_decode_##argt##args, \
1142 (kxdrproc_t) nfs4svc_encode_##rest##res, \
1143 (kxdrproc_t) nfs4svc_release_##relt, \
1144 sizeof(struct nfsd4_##argt##args), \
1145 sizeof(struct nfsd4_##rest##res), \
1146 0, \
1147 cache, \
1148 respsize, \
1149 }
1150
1151/*
1152 * TODO: At the present time, the NFSv4 server does not do XID caching
1153 * of requests. Implementing XID caching would not be a serious problem,
1154 * although it would require a mild change in interfaces since one
1155 * doesn't know whether an NFSv4 request is idempotent until after the
1156 * XDR decode. However, XID caching totally confuses pynfs (Peter
1157 * Astrand's regression testsuite for NFSv4 servers), which reuses
1158 * XID's liberally, so I've left it unimplemented until pynfs generates
1159 * better XID's.
1160 */
1161static struct svc_procedure nfsd_procedures4[2] = {
1162 PROC(null, void, void, void, RC_NOCACHE, 1),
NeilBrown7775f4c2006-04-10 22:55:20 -07001163 PROC(compound, compound, compound, compound, RC_NOCACHE, NFSD_BUFSIZE/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164};
1165
1166struct svc_version nfsd_version4 = {
1167 .vs_vers = 4,
1168 .vs_nproc = 2,
1169 .vs_proc = nfsd_procedures4,
1170 .vs_dispatch = nfsd_dispatch,
1171 .vs_xdrsize = NFS4_SVC_XDRSIZE,
1172};
1173
1174/*
1175 * Local variables:
1176 * c-basic-offset: 8
1177 * End:
1178 */