blob: 31a7e4c54a12b018ca4527eb4adea9ed46263333 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4proc.c
3 *
4 * Client-side procedure declarations 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.
36 */
37
38#include <linux/mm.h>
39#include <linux/utsname.h>
40#include <linux/delay.h>
41#include <linux/errno.h>
42#include <linux/string.h>
43#include <linux/sunrpc/clnt.h>
44#include <linux/nfs.h>
45#include <linux/nfs4.h>
46#include <linux/nfs_fs.h>
47#include <linux/nfs_page.h>
48#include <linux/smp_lock.h>
49#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070050#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Trond Myklebust4ce79712005-06-22 17:16:21 +000052#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050054#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050055#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define NFSDBG_FACILITY NFSDBG_PROC
58
Trond Myklebust2066fe82006-09-15 08:30:46 -040059#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define NFS4_POLL_RETRY_MAX (15*HZ)
61
Trond Myklebustcdd4e682006-01-03 09:55:12 +010062struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010063static int _nfs4_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebustfaf5f492005-10-18 14:20:15 -070065static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *);
Trond Myklebustfaf5f492005-10-18 14:20:15 -070066static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception);
David Howellsadfa6f92006-08-22 20:06:08 -040067static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp);
Trond Myklebust99367812007-07-17 21:52:41 -040068static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
69static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Prevent leaks of NFSv4 errors into userland */
72int nfs4_map_errors(int err)
73{
74 if (err < -1000) {
75 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070076 __func__, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return -EIO;
78 }
79 return err;
80}
81
82/*
83 * This is our standard bitmap for GETATTR requests.
84 */
85const u32 nfs4_fattr_bitmap[2] = {
86 FATTR4_WORD0_TYPE
87 | FATTR4_WORD0_CHANGE
88 | FATTR4_WORD0_SIZE
89 | FATTR4_WORD0_FSID
90 | FATTR4_WORD0_FILEID,
91 FATTR4_WORD1_MODE
92 | FATTR4_WORD1_NUMLINKS
93 | FATTR4_WORD1_OWNER
94 | FATTR4_WORD1_OWNER_GROUP
95 | FATTR4_WORD1_RAWDEV
96 | FATTR4_WORD1_SPACE_USED
97 | FATTR4_WORD1_TIME_ACCESS
98 | FATTR4_WORD1_TIME_METADATA
99 | FATTR4_WORD1_TIME_MODIFY
100};
101
102const u32 nfs4_statfs_bitmap[2] = {
103 FATTR4_WORD0_FILES_AVAIL
104 | FATTR4_WORD0_FILES_FREE
105 | FATTR4_WORD0_FILES_TOTAL,
106 FATTR4_WORD1_SPACE_AVAIL
107 | FATTR4_WORD1_SPACE_FREE
108 | FATTR4_WORD1_SPACE_TOTAL
109};
110
Trond Myklebust4ce79712005-06-22 17:16:21 +0000111const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 FATTR4_WORD0_MAXLINK
113 | FATTR4_WORD0_MAXNAME,
114 0
115};
116
117const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
118 | FATTR4_WORD0_MAXREAD
119 | FATTR4_WORD0_MAXWRITE
120 | FATTR4_WORD0_LEASE_TIME,
121 0
122};
123
Manoj Naik830b8e32006-06-09 09:34:25 -0400124const u32 nfs4_fs_locations_bitmap[2] = {
125 FATTR4_WORD0_TYPE
126 | FATTR4_WORD0_CHANGE
127 | FATTR4_WORD0_SIZE
128 | FATTR4_WORD0_FSID
129 | FATTR4_WORD0_FILEID
130 | FATTR4_WORD0_FS_LOCATIONS,
131 FATTR4_WORD1_MODE
132 | FATTR4_WORD1_NUMLINKS
133 | FATTR4_WORD1_OWNER
134 | FATTR4_WORD1_OWNER_GROUP
135 | FATTR4_WORD1_RAWDEV
136 | FATTR4_WORD1_SPACE_USED
137 | FATTR4_WORD1_TIME_ACCESS
138 | FATTR4_WORD1_TIME_METADATA
139 | FATTR4_WORD1_TIME_MODIFY
140 | FATTR4_WORD1_MOUNTED_ON_FILEID
141};
142
Al Virobc4785c2006-10-19 23:28:51 -0700143static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct nfs4_readdir_arg *readdir)
145{
Al Viro0dbb4c62006-10-19 23:28:49 -0700146 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 BUG_ON(readdir->count < 80);
149 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000150 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
152 return;
153 }
154
155 readdir->cookie = 0;
156 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
157 if (cookie == 2)
158 return;
159
160 /*
161 * NFSv4 servers do not return entries for '.' and '..'
162 * Therefore, we fake these entries here. We let '.'
163 * have cookie 0 and '..' have cookie 1. Note that
164 * when talking to the server, we always send cookie 0
165 * instead of 1 or 2.
166 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700167 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 if (cookie == 0) {
170 *p++ = xdr_one; /* next */
171 *p++ = xdr_zero; /* cookie, first word */
172 *p++ = xdr_one; /* cookie, second word */
173 *p++ = xdr_one; /* entry len */
174 memcpy(p, ".\0\0\0", 4); /* entry */
175 p++;
176 *p++ = xdr_one; /* bitmap length */
177 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
178 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400179 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
182 *p++ = xdr_one; /* next */
183 *p++ = xdr_zero; /* cookie, first word */
184 *p++ = xdr_two; /* cookie, second word */
185 *p++ = xdr_two; /* entry len */
186 memcpy(p, "..\0\0", 4); /* entry */
187 p++;
188 *p++ = xdr_one; /* bitmap length */
189 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
190 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400191 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 readdir->pgbase = (char *)p - (char *)start;
194 readdir->count -= readdir->pgbase;
195 kunmap_atomic(start, KM_USER0);
196}
197
Trond Myklebust26e976a2006-01-03 09:55:21 +0100198static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
David Howells7539bba2006-08-22 20:06:09 -0400200 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 spin_lock(&clp->cl_lock);
202 if (time_before(clp->cl_last_renewal,timestamp))
203 clp->cl_last_renewal = timestamp;
204 spin_unlock(&clp->cl_lock);
205}
206
Trond Myklebust38478b22006-05-25 01:40:57 -0400207static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Trond Myklebust38478b22006-05-25 01:40:57 -0400209 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Trond Myklebust38478b22006-05-25 01:40:57 -0400211 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400212 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
213 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400214 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400215 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400216 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100219struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400220 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100221 struct nfs_openargs o_arg;
222 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100223 struct nfs_open_confirmargs c_arg;
224 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100225 struct nfs_fattr f_attr;
226 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400227 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100228 struct dentry *dir;
229 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400230 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100231 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100232 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400233 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100234 int rpc_status;
235 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100236};
237
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400238
239static void nfs4_init_opendata_res(struct nfs4_opendata *p)
240{
241 p->o_res.f_attr = &p->f_attr;
242 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400243 p->o_res.seqid = p->o_arg.seqid;
244 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400245 p->o_res.server = p->o_arg.server;
246 nfs_fattr_init(&p->f_attr);
247 nfs_fattr_init(&p->dir_attr);
248}
249
Trond Myklebustad389da2007-06-05 12:30:00 -0400250static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100251 struct nfs4_state_owner *sp, int flags,
252 const struct iattr *attrs)
253{
Trond Myklebustad389da2007-06-05 12:30:00 -0400254 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100255 struct inode *dir = parent->d_inode;
256 struct nfs_server *server = NFS_SERVER(dir);
257 struct nfs4_opendata *p;
258
259 p = kzalloc(sizeof(*p), GFP_KERNEL);
260 if (p == NULL)
261 goto err;
262 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
263 if (p->o_arg.seqid == NULL)
264 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400265 p->path.mnt = mntget(path->mnt);
266 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100267 p->dir = parent;
268 p->owner = sp;
269 atomic_inc(&sp->so_count);
270 p->o_arg.fh = NFS_FH(dir);
271 p->o_arg.open_flags = flags,
David Howells7539bba2006-08-22 20:06:09 -0400272 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400273 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400274 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100275 p->o_arg.server = server;
276 p->o_arg.bitmask = server->attr_bitmask;
277 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100278 if (flags & O_EXCL) {
279 u32 *s = (u32 *) p->o_arg.u.verifier.data;
280 s[0] = jiffies;
281 s[1] = current->pid;
282 } else if (flags & O_CREAT) {
283 p->o_arg.u.attrs = &p->attrs;
284 memcpy(&p->attrs, attrs, sizeof(p->attrs));
285 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100286 p->c_arg.fh = &p->o_res.fh;
287 p->c_arg.stateid = &p->o_res.stateid;
288 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400289 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400290 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100291 return p;
292err_free:
293 kfree(p);
294err:
295 dput(parent);
296 return NULL;
297}
298
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400299static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100300{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400301 struct nfs4_opendata *p = container_of(kref,
302 struct nfs4_opendata, kref);
303
304 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400305 if (p->state != NULL)
306 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400307 nfs4_put_state_owner(p->owner);
308 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700309 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400310 kfree(p);
311}
312
313static void nfs4_opendata_put(struct nfs4_opendata *p)
314{
315 if (p != NULL)
316 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100317}
318
Trond Myklebust06f814a2006-01-03 09:55:07 +0100319static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
320{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100321 int ret;
322
Trond Myklebust06f814a2006-01-03 09:55:07 +0100323 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100324 return ret;
325}
326
Trond Myklebust6ee41262007-07-08 14:11:36 -0400327static int can_open_cached(struct nfs4_state *state, int mode)
328{
329 int ret = 0;
330 switch (mode & (FMODE_READ|FMODE_WRITE|O_EXCL)) {
331 case FMODE_READ:
332 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400333 break;
334 case FMODE_WRITE:
335 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400336 break;
337 case FMODE_READ|FMODE_WRITE:
338 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
339 }
340 return ret;
341}
342
Trond Myklebustaac00a82007-07-05 19:02:21 -0400343static int can_open_delegated(struct nfs_delegation *delegation, mode_t open_flags)
344{
345 if ((delegation->type & open_flags) != open_flags)
346 return 0;
347 if (delegation->flags & NFS_DELEGATION_NEED_RECLAIM)
348 return 0;
349 return 1;
350}
351
Trond Myklebust003707c2007-07-05 18:07:55 -0400352static void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
Trond Myklebuste7616922006-01-03 09:55:13 +0100353{
354 switch (open_flags) {
355 case FMODE_WRITE:
356 state->n_wronly++;
357 break;
358 case FMODE_READ:
359 state->n_rdonly++;
360 break;
361 case FMODE_READ|FMODE_WRITE:
362 state->n_rdwr++;
363 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400364 nfs4_state_set_mode_locked(state, state->state | open_flags);
Trond Myklebuste7616922006-01-03 09:55:13 +0100365}
366
Trond Myklebust003707c2007-07-05 18:07:55 -0400367static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
368{
369 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
370 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
371 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
372 switch (open_flags) {
373 case FMODE_READ:
374 set_bit(NFS_O_RDONLY_STATE, &state->flags);
375 break;
376 case FMODE_WRITE:
377 set_bit(NFS_O_WRONLY_STATE, &state->flags);
378 break;
379 case FMODE_READ|FMODE_WRITE:
380 set_bit(NFS_O_RDWR_STATE, &state->flags);
381 }
382}
383
384static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
385{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400386 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400387 nfs_set_open_stateid_locked(state, stateid, open_flags);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400388 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400389}
390
391static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *deleg_stateid, int open_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 open_flags &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400394 /*
395 * Protect the call to nfs4_state_set_mode_locked and
396 * serialise the stateid update
397 */
398 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400399 if (deleg_stateid != NULL) {
400 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
401 set_bit(NFS_DELEGATED_STATE, &state->flags);
402 }
403 if (open_stateid != NULL)
404 nfs_set_open_stateid_locked(state, open_stateid, open_flags);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400405 write_sequnlock(&state->seqlock);
406 spin_lock(&state->owner->so_lock);
Trond Myklebuste7616922006-01-03 09:55:13 +0100407 update_open_stateflags(state, open_flags);
Trond Myklebustec073422005-10-20 14:22:47 -0700408 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Trond Myklebustaac00a82007-07-05 19:02:21 -0400411static void nfs4_return_incompatible_delegation(struct inode *inode, mode_t open_flags)
412{
413 struct nfs_delegation *delegation;
414
415 rcu_read_lock();
416 delegation = rcu_dereference(NFS_I(inode)->delegation);
417 if (delegation == NULL || (delegation->type & open_flags) == open_flags) {
418 rcu_read_unlock();
419 return;
420 }
421 rcu_read_unlock();
422 nfs_inode_return_delegation(inode);
423}
424
Trond Myklebust6ee41262007-07-08 14:11:36 -0400425static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400426{
427 struct nfs4_state *state = opendata->state;
428 struct nfs_inode *nfsi = NFS_I(state->inode);
429 struct nfs_delegation *delegation;
430 int open_mode = opendata->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL);
431 nfs4_stateid stateid;
432 int ret = -EAGAIN;
433
434 rcu_read_lock();
435 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400436 for (;;) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400437 if (can_open_cached(state, open_mode)) {
438 spin_lock(&state->owner->so_lock);
439 if (can_open_cached(state, open_mode)) {
440 update_open_stateflags(state, open_mode);
441 spin_unlock(&state->owner->so_lock);
442 rcu_read_unlock();
443 goto out_return_state;
444 }
445 spin_unlock(&state->owner->so_lock);
446 }
447 if (delegation == NULL)
448 break;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400449 if (!can_open_delegated(delegation, open_mode))
450 break;
451 /* Save the delegation */
452 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
453 rcu_read_unlock();
454 lock_kernel();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400455 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400456 unlock_kernel();
457 if (ret != 0)
458 goto out;
459 ret = -EAGAIN;
460 rcu_read_lock();
461 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400462 /* If no delegation, try a cached open */
Trond Myklebustaac00a82007-07-05 19:02:21 -0400463 if (delegation == NULL)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400464 continue;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400465 /* Is the delegation still valid? */
466 if (memcmp(stateid.data, delegation->stateid.data, sizeof(stateid.data)) != 0)
467 continue;
468 rcu_read_unlock();
469 update_open_stateid(state, NULL, &stateid, open_mode);
470 goto out_return_state;
471 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400472 rcu_read_unlock();
473out:
474 return ERR_PTR(ret);
475out_return_state:
476 atomic_inc(&state->count);
477 return state;
478}
479
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100480static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
481{
482 struct inode *inode;
483 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400484 struct nfs_delegation *delegation;
485 nfs4_stateid *deleg_stateid = NULL;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400486 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100487
Trond Myklebustaac00a82007-07-05 19:02:21 -0400488 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400489 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400490 goto out;
491 }
492
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400493 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100494 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400495 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100496 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400497 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500498 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400499 goto err;
500 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100501 state = nfs4_get_open_state(inode, data->owner);
502 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400503 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400504 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400505 int delegation_flags = 0;
506
Trond Myklebust003707c2007-07-05 18:07:55 -0400507 rcu_read_lock();
508 delegation = rcu_dereference(NFS_I(inode)->delegation);
509 if (delegation)
510 delegation_flags = delegation->flags;
511 rcu_read_unlock();
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400512 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
513 nfs_inode_set_delegation(state->inode,
514 data->owner->so_cred,
515 &data->o_res);
516 else
517 nfs_inode_reclaim_delegation(state->inode,
518 data->owner->so_cred,
519 &data->o_res);
520 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400521 rcu_read_lock();
522 delegation = rcu_dereference(NFS_I(inode)->delegation);
523 if (delegation != NULL)
524 deleg_stateid = &delegation->stateid;
525 update_open_stateid(state, &data->o_res.stateid, deleg_stateid, data->o_arg.open_flags);
526 rcu_read_unlock();
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100527 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400528out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100529 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400530err_put_inode:
531 iput(inode);
532err:
533 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100534}
535
Trond Myklebust864472e2006-01-03 09:55:15 +0100536static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
537{
538 struct nfs_inode *nfsi = NFS_I(state->inode);
539 struct nfs_open_context *ctx;
540
541 spin_lock(&state->inode->i_lock);
542 list_for_each_entry(ctx, &nfsi->open_files, list) {
543 if (ctx->state != state)
544 continue;
545 get_nfs_open_context(ctx);
546 spin_unlock(&state->inode->i_lock);
547 return ctx;
548 }
549 spin_unlock(&state->inode->i_lock);
550 return ERR_PTR(-ENOENT);
551}
552
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400553static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
554{
555 struct nfs4_opendata *opendata;
556
557 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
558 if (opendata == NULL)
559 return ERR_PTR(-ENOMEM);
560 opendata->state = state;
561 atomic_inc(&state->count);
562 return opendata;
563}
564
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400565static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +0100566{
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400567 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100568 int ret;
569
570 opendata->o_arg.open_flags = openflags;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400571 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
572 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
573 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100574 ret = _nfs4_proc_open(opendata);
575 if (ret != 0)
576 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400577 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400578 if (IS_ERR(newstate))
579 return PTR_ERR(newstate);
580 nfs4_close_state(&opendata->path, newstate, openflags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400581 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100582 return 0;
583}
584
585static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
586{
Trond Myklebust864472e2006-01-03 09:55:15 +0100587 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100588 int ret;
589
590 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400591 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100592 smp_rmb();
593 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400594 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100595 if (ret != 0)
596 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400597 if (newstate != state)
598 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100599 }
600 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400601 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100602 if (ret != 0)
603 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400604 if (newstate != state)
605 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100606 }
607 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400608 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100609 if (ret != 0)
610 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400611 if (newstate != state)
612 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100613 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400614 /*
615 * We may have performed cached opens for all three recoveries.
616 * Check if we need to update the current stateid.
617 */
618 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
619 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400620 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400621 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
622 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400623 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400624 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100625 return 0;
626}
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628/*
629 * OPEN_RECLAIM:
630 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400632static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400634 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +0100635 struct nfs4_opendata *opendata;
636 int delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 int status;
638
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400639 opendata = nfs4_open_recoverdata_alloc(ctx, state);
640 if (IS_ERR(opendata))
641 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100642 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
643 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400644 rcu_read_lock();
645 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
646 if (delegation != NULL && (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -0400647 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400648 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +0100649 opendata->o_arg.u.delegation_type = delegation_type;
650 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400651 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return status;
653}
654
Trond Myklebust539cd032007-06-05 11:46:42 -0400655static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 struct nfs_server *server = NFS_SERVER(state->inode);
658 struct nfs4_exception exception = { };
659 int err;
660 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400661 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000662 if (err != -NFS4ERR_DELAY)
663 break;
664 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 } while (exception.retry);
666 return err;
667}
668
Trond Myklebust864472e2006-01-03 09:55:15 +0100669static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
670{
671 struct nfs_open_context *ctx;
672 int ret;
673
674 ctx = nfs4_state_find_open_context(state);
675 if (IS_ERR(ctx))
676 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400677 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100678 put_nfs_open_context(ctx);
679 return ret;
680}
681
Trond Myklebust13437e12007-07-06 15:10:43 -0400682static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100684 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100685 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400687 opendata = nfs4_open_recoverdata_alloc(ctx, state);
688 if (IS_ERR(opendata))
689 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100690 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -0400691 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100692 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100693 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400694 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100695 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Trond Myklebust13437e12007-07-06 15:10:43 -0400698int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -0400701 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 int err;
703 do {
Trond Myklebust13437e12007-07-06 15:10:43 -0400704 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 switch (err) {
706 case 0:
707 return err;
708 case -NFS4ERR_STALE_CLIENTID:
709 case -NFS4ERR_STALE_STATEID:
710 case -NFS4ERR_EXPIRED:
711 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400712 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return err;
714 }
715 err = nfs4_handle_exception(server, err, &exception);
716 } while (exception.retry);
717 return err;
718}
719
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100720static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
721{
722 struct nfs4_opendata *data = calldata;
723
724 data->rpc_status = task->tk_status;
725 if (RPC_ASSASSINATED(task))
726 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100727 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100728 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
729 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -0500730 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +0100731 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -0400732 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100733 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100734}
735
736static void nfs4_open_confirm_release(void *calldata)
737{
738 struct nfs4_opendata *data = calldata;
739 struct nfs4_state *state = NULL;
740
741 /* If this request hasn't been cancelled, do nothing */
742 if (data->cancelled == 0)
743 goto out_free;
744 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400745 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100746 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100747 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400748 if (!IS_ERR(state))
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400749 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100750out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400751 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100752}
753
754static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100755 .rpc_call_done = nfs4_open_confirm_done,
756 .rpc_release = nfs4_open_confirm_release,
757};
758
759/*
760 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
761 */
762static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
763{
764 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
765 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400766 struct rpc_message msg = {
767 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
768 .rpc_argp = &data->c_arg,
769 .rpc_resp = &data->c_res,
770 .rpc_cred = data->owner->so_cred,
771 };
Trond Myklebustc970aa82007-07-14 15:39:59 -0400772 struct rpc_task_setup task_setup_data = {
773 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400774 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400775 .callback_ops = &nfs4_open_confirm_ops,
776 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500777 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400778 .flags = RPC_TASK_ASYNC,
779 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 int status;
781
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400782 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400783 data->rpc_done = 0;
784 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400785 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -0400786 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500787 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100788 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100789 status = nfs4_wait_for_completion_rpc_task(task);
790 if (status != 0) {
791 data->cancelled = 1;
792 smp_wmb();
793 } else
794 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500795 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return status;
797}
798
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100799static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100801 struct nfs4_opendata *data = calldata;
802 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400803
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100804 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
805 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400806 /*
807 * Check if we still need to send an OPEN call, or if we can use
808 * a delegation instead.
809 */
810 if (data->state != NULL) {
811 struct nfs_delegation *delegation;
812
Trond Myklebust6ee41262007-07-08 14:11:36 -0400813 if (can_open_cached(data->state, data->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL)))
814 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400815 rcu_read_lock();
816 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
817 if (delegation != NULL &&
818 (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) == 0) {
819 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400820 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400821 }
822 rcu_read_unlock();
823 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100824 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400825 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100826 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400827 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -0400828 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400829 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
830 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100831 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400832 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400833 return;
834out_no_action:
835 task->tk_action = NULL;
836
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100837}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100839static void nfs4_open_done(struct rpc_task *task, void *calldata)
840{
841 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100843 data->rpc_status = task->tk_status;
844 if (RPC_ASSASSINATED(task))
845 return;
846 if (task->tk_status == 0) {
847 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -0700848 case S_IFREG:
849 break;
850 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100851 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700852 break;
853 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100854 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700855 break;
856 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100857 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700858 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100859 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -0400860 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
861 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -0700862 }
Trond Myklebust3e309912007-07-07 13:19:59 -0400863 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100864}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700865
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100866static void nfs4_open_release(void *calldata)
867{
868 struct nfs4_opendata *data = calldata;
869 struct nfs4_state *state = NULL;
870
871 /* If this request hasn't been cancelled, do nothing */
872 if (data->cancelled == 0)
873 goto out_free;
874 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400875 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100876 goto out_free;
877 /* In case we need an open_confirm, no cleanup! */
878 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
879 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100880 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400881 if (!IS_ERR(state))
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400882 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100883out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400884 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100885}
886
887static const struct rpc_call_ops nfs4_open_ops = {
888 .rpc_call_prepare = nfs4_open_prepare,
889 .rpc_call_done = nfs4_open_done,
890 .rpc_release = nfs4_open_release,
891};
892
893/*
894 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
895 */
896static int _nfs4_proc_open(struct nfs4_opendata *data)
897{
898 struct inode *dir = data->dir->d_inode;
899 struct nfs_server *server = NFS_SERVER(dir);
900 struct nfs_openargs *o_arg = &data->o_arg;
901 struct nfs_openres *o_res = &data->o_res;
902 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400903 struct rpc_message msg = {
904 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
905 .rpc_argp = o_arg,
906 .rpc_resp = o_res,
907 .rpc_cred = data->owner->so_cred,
908 };
Trond Myklebustc970aa82007-07-14 15:39:59 -0400909 struct rpc_task_setup task_setup_data = {
910 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400911 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400912 .callback_ops = &nfs4_open_ops,
913 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500914 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400915 .flags = RPC_TASK_ASYNC,
916 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100917 int status;
918
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400919 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400920 data->rpc_done = 0;
921 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400922 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -0400923 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500924 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100925 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100926 status = nfs4_wait_for_completion_rpc_task(task);
927 if (status != 0) {
928 data->cancelled = 1;
929 smp_wmb();
930 } else
931 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500932 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -0400933 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100934 return status;
935
Trond Myklebust99367812007-07-17 21:52:41 -0400936 if (o_res->fh.size == 0)
937 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
938
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400939 if (o_arg->open_flags & O_CREAT) {
940 update_changeattr(dir, &o_res->cinfo);
941 nfs_post_op_update_inode(dir, o_res->dir_attr);
942 } else
943 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100945 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100947 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -0400950 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100951 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Trond Myklebust10afec92007-05-14 17:16:04 -0400954static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +0100955{
David Howells7539bba2006-08-22 20:06:09 -0400956 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -0400957 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +0100958
Trond Myklebust6b309542006-09-14 14:03:14 -0400959 for (;;) {
960 ret = nfs4_wait_clnt_recover(server->client, clp);
961 if (ret != 0)
962 return ret;
963 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
964 break;
Trond Myklebust58d97142006-01-03 09:55:24 +0100965 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -0400966 }
967 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +0100968}
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970/*
971 * OPEN_EXPIRED:
972 * reclaim state on the server after a network partition.
973 * Assumes caller holds the appropriate lock
974 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400975static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100977 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100978 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400980 opendata = nfs4_open_recoverdata_alloc(ctx, state);
981 if (IS_ERR(opendata))
982 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100983 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -0400984 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -0400985 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400986 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100987 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Trond Myklebust539cd032007-06-05 11:46:42 -0400990static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +0000991{
Trond Myklebust539cd032007-06-05 11:46:42 -0400992 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000993 struct nfs4_exception exception = { };
994 int err;
995
996 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400997 err = _nfs4_open_expired(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000998 if (err == -NFS4ERR_DELAY)
999 nfs4_handle_exception(server, err, &exception);
1000 } while (exception.retry);
1001 return err;
1002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1005{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001007 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Trond Myklebust864472e2006-01-03 09:55:15 +01001009 ctx = nfs4_state_find_open_context(state);
1010 if (IS_ERR(ctx))
1011 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001012 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001013 put_nfs_open_context(ctx);
1014 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
1017/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001018 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1019 * fields corresponding to attributes that were used to store the verifier.
1020 * Make sure we clobber those fields in the later setattr call
1021 */
1022static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1023{
1024 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1025 !(sattr->ia_valid & ATTR_ATIME_SET))
1026 sattr->ia_valid |= ATTR_ATIME;
1027
1028 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1029 !(sattr->ia_valid & ATTR_MTIME_SET))
1030 sattr->ia_valid |= ATTR_MTIME;
1031}
1032
1033/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001034 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 */
Trond Myklebustad389da2007-06-05 12:30:00 -04001036static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 struct nfs4_state_owner *sp;
1039 struct nfs4_state *state = NULL;
1040 struct nfs_server *server = NFS_SERVER(dir);
David Howells7539bba2006-08-22 20:06:09 -04001041 struct nfs_client *clp = server->nfs_client;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001042 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001043 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 status = -ENOMEM;
1047 if (!(sp = nfs4_get_state_owner(server, cred))) {
1048 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1049 goto out_err;
1050 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001051 status = nfs4_recover_expired_lease(server);
1052 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001053 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001054 if (path->dentry->d_inode != NULL)
1055 nfs4_return_incompatible_delegation(path->dentry->d_inode, flags & (FMODE_READ|FMODE_WRITE));
Trond Myklebust58d97142006-01-03 09:55:24 +01001056 down_read(&clp->cl_sem);
1057 status = -ENOMEM;
Trond Myklebustad389da2007-06-05 12:30:00 -04001058 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001059 if (opendata == NULL)
Trond Myklebust76723de2006-09-15 08:11:51 -04001060 goto err_release_rwsem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Trond Myklebustaac00a82007-07-05 19:02:21 -04001062 if (path->dentry->d_inode != NULL)
1063 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1064
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001065 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001067 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001069 if (opendata->o_arg.open_flags & O_EXCL)
1070 nfs4_exclusive_attrset(opendata, sattr);
1071
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001072 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001073 status = PTR_ERR(state);
1074 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001075 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001076 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 nfs4_put_state_owner(sp);
1078 up_read(&clp->cl_sem);
1079 *res = state;
1080 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001081err_opendata_put:
1082 nfs4_opendata_put(opendata);
Trond Myklebust76723de2006-09-15 08:11:51 -04001083err_release_rwsem:
1084 up_read(&clp->cl_sem);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001085err_put_state_owner:
1086 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 *res = NULL;
1089 return status;
1090}
1091
1092
Trond Myklebustad389da2007-06-05 12:30:00 -04001093static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 struct nfs4_exception exception = { };
1096 struct nfs4_state *res;
1097 int status;
1098
1099 do {
Trond Myklebustad389da2007-06-05 12:30:00 -04001100 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (status == 0)
1102 break;
1103 /* NOTE: BAD_SEQID means the server and client disagree about the
1104 * book-keeping w.r.t. state-changing operations
1105 * (OPEN/CLOSE/LOCK/LOCKU...)
1106 * It is actually a sign of a bug on the client or on the server.
1107 *
1108 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001109 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 * have unhashed the old state_owner for us, and that we can
1111 * therefore safely retry using a new one. We should still warn
1112 * the user though...
1113 */
1114 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001115 printk(KERN_WARNING "NFS: v4 server %s "
1116 " returned a bad sequence-id error!\n",
1117 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 exception.retry = 1;
1119 continue;
1120 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001121 /*
1122 * BAD_STATEID on OPEN means that the server cancelled our
1123 * state before it received the OPEN_CONFIRM.
1124 * Recover by retrying the request as per the discussion
1125 * on Page 181 of RFC3530.
1126 */
1127 if (status == -NFS4ERR_BAD_STATEID) {
1128 exception.retry = 1;
1129 continue;
1130 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001131 if (status == -EAGAIN) {
1132 /* We must have found a delegation */
1133 exception.retry = 1;
1134 continue;
1135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1137 status, &exception));
1138 } while (exception.retry);
1139 return res;
1140}
1141
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001142static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1143 struct nfs_fattr *fattr, struct iattr *sattr,
1144 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001146 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001148 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 .iap = sattr,
1150 .server = server,
1151 .bitmask = server->attr_bitmask,
1152 };
1153 struct nfs_setattrres res = {
1154 .fattr = fattr,
1155 .server = server,
1156 };
1157 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001158 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1159 .rpc_argp = &arg,
1160 .rpc_resp = &res,
1161 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001163 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001164 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Trond Myklebust0e574af2005-10-27 22:12:38 -04001166 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001168 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1169 /* Use that stateid */
1170 } else if (state != NULL) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001171 nfs4_copy_stateid(&arg.stateid, state, current->files);
1172 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1174
Trond Myklebust65e43082005-08-16 11:49:44 -04001175 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001176 if (status == 0 && state != NULL)
1177 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001178 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001181static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1182 struct nfs_fattr *fattr, struct iattr *sattr,
1183 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001185 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 struct nfs4_exception exception = { };
1187 int err;
1188 do {
1189 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001190 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 &exception);
1192 } while (exception.retry);
1193 return err;
1194}
1195
1196struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001197 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 struct inode *inode;
1199 struct nfs4_state *state;
1200 struct nfs_closeargs arg;
1201 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001202 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001203 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204};
1205
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001206static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001207{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001208 struct nfs4_closedata *calldata = data;
1209 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001210
1211 nfs4_put_open_state(calldata->state);
1212 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001213 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001214 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001215 kfree(calldata);
1216}
1217
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001218static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001220 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 struct nfs_server *server = NFS_SERVER(calldata->inode);
1223
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001224 if (RPC_ASSASSINATED(task))
1225 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 /* hmm. we are done with the inode, and in the process of freeing
1227 * the state_owner. we keep this around to process errors
1228 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 switch (task->tk_status) {
1230 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001231 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001232 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 break;
1234 case -NFS4ERR_STALE_STATEID:
1235 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 break;
1237 default:
1238 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1239 rpc_restart_call(task);
1240 return;
1241 }
1242 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001243 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001246static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001248 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001249 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001250 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001251
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001252 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001253 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001254
Trond Myklebust003707c2007-07-05 18:07:55 -04001255 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001256 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001257 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001258 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001259 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001260 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1261 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1262 }
1263 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001264 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1265 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1266 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001267 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001268 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001269 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001270 /* Note: exit _without_ calling nfs4_close_done */
1271 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001272 return;
1273 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001274 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001275 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001276 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust45328c32007-07-26 17:47:34 -04001277 calldata->arg.open_flags = FMODE_READ;
1278 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001279 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust45328c32007-07-26 17:47:34 -04001280 calldata->arg.open_flags = FMODE_WRITE;
1281 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001282 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001283 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001286static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001287 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001288 .rpc_call_done = nfs4_close_done,
1289 .rpc_release = nfs4_free_closedata,
1290};
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292/*
1293 * It is possible for data to be read/written from a mem-mapped file
1294 * after the sys_close call (which hits the vfs layer as a flush).
1295 * This means that we can't safely call nfsv4 close on a file until
1296 * the inode is cleared. This in turn means that we are not good
1297 * NFSv4 citizens - we do not indicate to the server to update the file's
1298 * share state even when we are done with one of the three share
1299 * stateid's in the inode.
1300 *
1301 * NOTE: Caller must be holding the sp->so_owner semaphore!
1302 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001303int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001305 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001307 struct nfs4_state_owner *sp = state->owner;
1308 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001309 struct rpc_message msg = {
1310 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1311 .rpc_cred = state->owner->so_cred,
1312 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001313 struct rpc_task_setup task_setup_data = {
1314 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001315 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001316 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001317 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001318 .flags = RPC_TASK_ASYNC,
1319 };
Trond Myklebust95121352005-10-18 14:20:12 -07001320 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Trond Myklebust95121352005-10-18 14:20:12 -07001322 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001324 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001325 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001327 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001328 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001330 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001331 if (calldata->arg.seqid == NULL)
1332 goto out_free_calldata;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001333 calldata->arg.bitmask = server->attr_bitmask;
1334 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001335 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001336 calldata->res.server = server;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001337 calldata->path.mnt = mntget(path->mnt);
1338 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001339
Trond Myklebust5138fde2007-07-14 15:40:01 -04001340 msg.rpc_argp = &calldata->arg,
1341 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001342 task_setup_data.callback_data = calldata;
1343 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001344 if (IS_ERR(task))
1345 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001346 status = 0;
1347 if (wait)
1348 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001349 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001350 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001351out_free_calldata:
1352 kfree(calldata);
1353out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001354 nfs4_put_open_state(state);
1355 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001356 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001359static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
Trond Myklebust02a913a2005-10-18 14:20:17 -07001360{
1361 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001362 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001363
Trond Myklebust1b45c462007-07-03 13:04:56 -04001364 /* If the open_intent is for execute, we have an extra check to make */
1365 if (nd->intent.open.flags & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001366 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001367 state->owner->so_cred,
1368 nd->intent.open.flags);
1369 if (ret < 0)
1370 goto out_close;
1371 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001372 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001373 if (!IS_ERR(filp)) {
1374 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001375 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001376 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001377 return 0;
1378 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001379 ret = PTR_ERR(filp);
1380out_close:
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001381 nfs4_close_sync(path, state, nd->intent.open.flags);
Trond Myklebust1b45c462007-07-03 13:04:56 -04001382 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001383}
1384
1385struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1387{
Trond Myklebustad389da2007-06-05 12:30:00 -04001388 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001389 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001390 .dentry = dentry,
1391 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001392 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 struct iattr attr;
1394 struct rpc_cred *cred;
1395 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001396 struct dentry *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 if (nd->flags & LOOKUP_CREATE) {
1399 attr.ia_mode = nd->intent.open.create_mode;
1400 attr.ia_valid = ATTR_MODE;
1401 if (!IS_POSIXACL(dir))
1402 attr.ia_mode &= ~current->fs->umask;
1403 } else {
1404 attr.ia_valid = 0;
1405 BUG_ON(nd->intent.open.flags & O_CREAT);
1406 }
1407
Trond Myklebust98a8e322008-03-12 12:25:28 -04001408 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001410 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001411 parent = dentry->d_parent;
1412 /* Protect against concurrent sillydeletes */
1413 nfs_block_sillyrename(parent);
Trond Myklebustad389da2007-06-05 12:30:00 -04001414 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001416 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001417 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001418 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001419 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1420 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001421 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001422 return (struct dentry *)state;
1423 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001424 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001425 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001426 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001427 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001428 nfs_unblock_sillyrename(parent);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001429 nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001430 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
1433int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001434nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Trond Myklebustad389da2007-06-05 12:30:00 -04001436 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001437 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001438 .dentry = dentry,
1439 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 struct rpc_cred *cred;
1441 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Trond Myklebust98a8e322008-03-12 12:25:28 -04001443 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (IS_ERR(cred))
1445 return PTR_ERR(cred);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001446 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001448 if (IS_ERR(state)) {
1449 switch (PTR_ERR(state)) {
1450 case -EPERM:
1451 case -EACCES:
1452 case -EDQUOT:
1453 case -ENOSPC:
1454 case -EROFS:
1455 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1456 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001457 default:
1458 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001459 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001460 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001461 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001462 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001463 nfs4_intent_set_file(nd, &path, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 return 1;
1465 }
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001466 nfs4_close_sync(&path, state, openflags);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001467out_drop:
1468 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return 0;
1470}
1471
1472
1473static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1474{
1475 struct nfs4_server_caps_res res = {};
1476 struct rpc_message msg = {
1477 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1478 .rpc_argp = fhandle,
1479 .rpc_resp = &res,
1480 };
1481 int status;
1482
1483 status = rpc_call_sync(server->client, &msg, 0);
1484 if (status == 0) {
1485 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1486 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1487 server->caps |= NFS_CAP_ACLS;
1488 if (res.has_links != 0)
1489 server->caps |= NFS_CAP_HARDLINKS;
1490 if (res.has_symlinks != 0)
1491 server->caps |= NFS_CAP_SYMLINKS;
1492 server->acl_bitmask = res.acl_bitmask;
1493 }
1494 return status;
1495}
1496
Trond Myklebust55a97592006-06-09 09:34:19 -04001497int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
1499 struct nfs4_exception exception = { };
1500 int err;
1501 do {
1502 err = nfs4_handle_exception(server,
1503 _nfs4_server_capabilities(server, fhandle),
1504 &exception);
1505 } while (exception.retry);
1506 return err;
1507}
1508
1509static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1510 struct nfs_fsinfo *info)
1511{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 struct nfs4_lookup_root_arg args = {
1513 .bitmask = nfs4_fattr_bitmap,
1514 };
1515 struct nfs4_lookup_res res = {
1516 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04001517 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 .fh = fhandle,
1519 };
1520 struct rpc_message msg = {
1521 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1522 .rpc_argp = &args,
1523 .rpc_resp = &res,
1524 };
Trond Myklebust0e574af2005-10-27 22:12:38 -04001525 nfs_fattr_init(info->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 return rpc_call_sync(server->client, &msg, 0);
1527}
1528
1529static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1530 struct nfs_fsinfo *info)
1531{
1532 struct nfs4_exception exception = { };
1533 int err;
1534 do {
1535 err = nfs4_handle_exception(server,
1536 _nfs4_lookup_root(server, fhandle, info),
1537 &exception);
1538 } while (exception.retry);
1539 return err;
1540}
1541
David Howells54ceac42006-08-22 20:06:13 -04001542/*
1543 * get the file handle for the "/" directory on the server
1544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04001546 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 int status;
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (status == 0)
1552 status = nfs4_server_capabilities(server, fhandle);
1553 if (status == 0)
1554 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08001555 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
Manoj Naik6b97fd32006-06-09 09:34:29 -04001558/*
1559 * Get locations and (maybe) other attributes of a referral.
1560 * Note that we'll actually follow the referral later when
1561 * we detect fsid mismatch in inode revalidation
1562 */
Trond Myklebust56659e92007-07-17 21:52:39 -04001563static int nfs4_get_referral(struct inode *dir, const struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
Manoj Naik6b97fd32006-06-09 09:34:29 -04001564{
1565 int status = -ENOMEM;
1566 struct page *page = NULL;
1567 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04001568
1569 page = alloc_page(GFP_KERNEL);
1570 if (page == NULL)
1571 goto out;
1572 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1573 if (locations == NULL)
1574 goto out;
1575
Trond Myklebustc228fd32007-01-13 02:28:11 -05001576 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001577 if (status != 0)
1578 goto out;
1579 /* Make sure server returned a different fsid for the referral */
1580 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07001581 dprintk("%s: server did not return a different fsid for a referral at %s\n", __func__, name->name);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001582 status = -EIO;
1583 goto out;
1584 }
1585
1586 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1587 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1588 if (!fattr->mode)
1589 fattr->mode = S_IFDIR;
1590 memset(fhandle, 0, sizeof(struct nfs_fh));
1591out:
1592 if (page)
1593 __free_page(page);
1594 if (locations)
1595 kfree(locations);
1596 return status;
1597}
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1600{
1601 struct nfs4_getattr_arg args = {
1602 .fh = fhandle,
1603 .bitmask = server->attr_bitmask,
1604 };
1605 struct nfs4_getattr_res res = {
1606 .fattr = fattr,
1607 .server = server,
1608 };
1609 struct rpc_message msg = {
1610 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1611 .rpc_argp = &args,
1612 .rpc_resp = &res,
1613 };
1614
Trond Myklebust0e574af2005-10-27 22:12:38 -04001615 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return rpc_call_sync(server->client, &msg, 0);
1617}
1618
1619static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1620{
1621 struct nfs4_exception exception = { };
1622 int err;
1623 do {
1624 err = nfs4_handle_exception(server,
1625 _nfs4_proc_getattr(server, fhandle, fattr),
1626 &exception);
1627 } while (exception.retry);
1628 return err;
1629}
1630
1631/*
1632 * The file is not closed if it is opened due to the a request to change
1633 * the size of the file. The open call will not be needed once the
1634 * VFS layer lookup-intents are implemented.
1635 *
1636 * Close is called when the inode is destroyed.
1637 * If we haven't opened the file for O_WRONLY, we
1638 * need to in the size_change case to obtain a stateid.
1639 *
1640 * Got race?
1641 * Because OPEN is always done by name in nfsv4, it is
1642 * possible that we opened a different file by the same
1643 * name. We can recognize this race condition, but we
1644 * can't do anything about it besides returning an error.
1645 *
1646 * This will be fixed with VFS changes (lookup-intent).
1647 */
1648static int
1649nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1650 struct iattr *sattr)
1651{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001652 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001653 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05001654 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 int status;
1656
Trond Myklebust0e574af2005-10-27 22:12:38 -04001657 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Trond Myklebustd5308382005-11-04 15:33:38 -05001659 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001660 if (sattr->ia_valid & ATTR_FILE) {
1661 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001662
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001663 ctx = nfs_file_open_context(sattr->ia_file);
1664 cred = ctx->cred;
1665 state = ctx->state;
1666 }
1667
1668 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001669 if (status == 0)
1670 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 return status;
1672}
1673
Trond Myklebust56659e92007-07-17 21:52:39 -04001674static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
1675 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04001676 struct nfs_fattr *fattr)
1677{
1678 int status;
1679 struct nfs4_lookup_arg args = {
1680 .bitmask = server->attr_bitmask,
1681 .dir_fh = dirfh,
1682 .name = name,
1683 };
1684 struct nfs4_lookup_res res = {
1685 .server = server,
1686 .fattr = fattr,
1687 .fh = fhandle,
1688 };
1689 struct rpc_message msg = {
1690 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1691 .rpc_argp = &args,
1692 .rpc_resp = &res,
1693 };
1694
1695 nfs_fattr_init(fattr);
1696
1697 dprintk("NFS call lookupfh %s\n", name->name);
1698 status = rpc_call_sync(server->client, &msg, 0);
1699 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04001700 return status;
1701}
1702
1703static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1704 struct qstr *name, struct nfs_fh *fhandle,
1705 struct nfs_fattr *fattr)
1706{
1707 struct nfs4_exception exception = { };
1708 int err;
1709 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04001710 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1711 /* FIXME: !!!! */
1712 if (err == -NFS4ERR_MOVED) {
1713 err = -EREMOTE;
1714 break;
1715 }
1716 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04001717 } while (exception.retry);
1718 return err;
1719}
1720
Trond Myklebust56659e92007-07-17 21:52:39 -04001721static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1723{
Trond Myklebust4e56e082007-07-01 18:13:52 -04001724 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04001727 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001728 if (status == -NFS4ERR_MOVED)
1729 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 dprintk("NFS reply lookup: %d\n", status);
1731 return status;
1732}
1733
1734static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1735{
1736 struct nfs4_exception exception = { };
1737 int err;
1738 do {
1739 err = nfs4_handle_exception(NFS_SERVER(dir),
1740 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1741 &exception);
1742 } while (exception.retry);
1743 return err;
1744}
1745
1746static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1747{
Trond Myklebust76b32992007-08-10 17:45:11 -04001748 struct nfs_server *server = NFS_SERVER(inode);
1749 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 struct nfs4_accessargs args = {
1751 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04001752 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 };
Trond Myklebust76b32992007-08-10 17:45:11 -04001754 struct nfs4_accessres res = {
1755 .server = server,
1756 .fattr = &fattr,
1757 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 struct rpc_message msg = {
1759 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1760 .rpc_argp = &args,
1761 .rpc_resp = &res,
1762 .rpc_cred = entry->cred,
1763 };
1764 int mode = entry->mask;
1765 int status;
1766
1767 /*
1768 * Determine which access bits we want to ask for...
1769 */
1770 if (mode & MAY_READ)
1771 args.access |= NFS4_ACCESS_READ;
1772 if (S_ISDIR(inode->i_mode)) {
1773 if (mode & MAY_WRITE)
1774 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1775 if (mode & MAY_EXEC)
1776 args.access |= NFS4_ACCESS_LOOKUP;
1777 } else {
1778 if (mode & MAY_WRITE)
1779 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1780 if (mode & MAY_EXEC)
1781 args.access |= NFS4_ACCESS_EXECUTE;
1782 }
Trond Myklebust76b32992007-08-10 17:45:11 -04001783 nfs_fattr_init(&fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1785 if (!status) {
1786 entry->mask = 0;
1787 if (res.access & NFS4_ACCESS_READ)
1788 entry->mask |= MAY_READ;
1789 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1790 entry->mask |= MAY_WRITE;
1791 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1792 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04001793 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795 return status;
1796}
1797
1798static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1799{
1800 struct nfs4_exception exception = { };
1801 int err;
1802 do {
1803 err = nfs4_handle_exception(NFS_SERVER(inode),
1804 _nfs4_proc_access(inode, entry),
1805 &exception);
1806 } while (exception.retry);
1807 return err;
1808}
1809
1810/*
1811 * TODO: For the time being, we don't try to get any attributes
1812 * along with any of the zero-copy operations READ, READDIR,
1813 * READLINK, WRITE.
1814 *
1815 * In the case of the first three, we want to put the GETATTR
1816 * after the read-type operation -- this is because it is hard
1817 * to predict the length of a GETATTR response in v4, and thus
1818 * align the READ data correctly. This means that the GETATTR
1819 * may end up partially falling into the page cache, and we should
1820 * shift it into the 'tail' of the xdr_buf before processing.
1821 * To do this efficiently, we need to know the total length
1822 * of data received, which doesn't seem to be available outside
1823 * of the RPC layer.
1824 *
1825 * In the case of WRITE, we also want to put the GETATTR after
1826 * the operation -- in this case because we want to make sure
1827 * we get the post-operation mtime and size. This means that
1828 * we can't use xdr_encode_pages() as written: we need a variant
1829 * of it which would leave room in the 'tail' iovec.
1830 *
1831 * Both of these changes to the XDR layer would in fact be quite
1832 * minor, but I decided to leave them for a subsequent patch.
1833 */
1834static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1835 unsigned int pgbase, unsigned int pglen)
1836{
1837 struct nfs4_readlink args = {
1838 .fh = NFS_FH(inode),
1839 .pgbase = pgbase,
1840 .pglen = pglen,
1841 .pages = &page,
1842 };
1843 struct rpc_message msg = {
1844 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1845 .rpc_argp = &args,
1846 .rpc_resp = NULL,
1847 };
1848
1849 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1850}
1851
1852static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1853 unsigned int pgbase, unsigned int pglen)
1854{
1855 struct nfs4_exception exception = { };
1856 int err;
1857 do {
1858 err = nfs4_handle_exception(NFS_SERVER(inode),
1859 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1860 &exception);
1861 } while (exception.retry);
1862 return err;
1863}
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865/*
1866 * Got race?
1867 * We will need to arrange for the VFS layer to provide an atomic open.
1868 * Until then, this create/open method is prone to inefficiency and race
1869 * conditions due to the lookup, create, and open VFS calls from sys_open()
1870 * placed on the wire.
1871 *
1872 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1873 * The file will be opened again in the subsequent VFS open call
1874 * (nfs4_proc_file_open).
1875 *
1876 * The open for read will just hang around to be used by any process that
1877 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1878 */
1879
1880static int
1881nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07001882 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
Trond Myklebustad389da2007-06-05 12:30:00 -04001884 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001885 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001886 .dentry = dentry,
1887 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 struct nfs4_state *state;
1889 struct rpc_cred *cred;
1890 int status = 0;
1891
Trond Myklebust98a8e322008-03-12 12:25:28 -04001892 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 if (IS_ERR(cred)) {
1894 status = PTR_ERR(cred);
1895 goto out;
1896 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001897 state = nfs4_do_open(dir, &path, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001898 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (IS_ERR(state)) {
1900 status = PTR_ERR(state);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001901 goto out_putcred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001903 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04001904 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (flags & O_EXCL) {
1906 struct nfs_fattr fattr;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001907 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001908 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04001909 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001910 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001911 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001912 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001913 status = nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001914 else
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001915 nfs4_close_sync(&path, state, flags);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001916out_putcred:
1917 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918out:
1919 return status;
1920}
1921
1922static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1923{
Trond Myklebust16e42952005-10-27 22:12:44 -04001924 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001925 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001927 .name.len = name->len,
1928 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04001929 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001931 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04001932 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04001933 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001935 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1936 .rpc_argp = &args,
1937 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 };
1939 int status;
1940
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001941 nfs_fattr_init(&res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04001942 status = rpc_call_sync(server->client, &msg, 0);
1943 if (status == 0) {
1944 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001945 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04001946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 return status;
1948}
1949
1950static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1951{
1952 struct nfs4_exception exception = { };
1953 int err;
1954 do {
1955 err = nfs4_handle_exception(NFS_SERVER(dir),
1956 _nfs4_proc_remove(dir, name),
1957 &exception);
1958 } while (exception.retry);
1959 return err;
1960}
1961
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001962static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001964 struct nfs_server *server = NFS_SERVER(dir);
1965 struct nfs_removeargs *args = msg->rpc_argp;
1966 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001968 args->bitmask = server->attr_bitmask;
1969 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001973static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001975 struct nfs_removeres *res = task->tk_msg.rpc_resp;
1976
1977 if (nfs4_async_handle_error(task, res->server) == -EAGAIN)
1978 return 0;
1979 update_changeattr(dir, &res->cinfo);
1980 nfs_post_op_update_inode(dir, &res->dir_attr);
1981 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982}
1983
1984static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1985 struct inode *new_dir, struct qstr *new_name)
1986{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001987 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 struct nfs4_rename_arg arg = {
1989 .old_dir = NFS_FH(old_dir),
1990 .new_dir = NFS_FH(new_dir),
1991 .old_name = old_name,
1992 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001993 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001995 struct nfs_fattr old_fattr, new_fattr;
1996 struct nfs4_rename_res res = {
1997 .server = server,
1998 .old_fattr = &old_fattr,
1999 .new_fattr = &new_fattr,
2000 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 struct rpc_message msg = {
2002 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2003 .rpc_argp = &arg,
2004 .rpc_resp = &res,
2005 };
2006 int status;
2007
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002008 nfs_fattr_init(res.old_fattr);
2009 nfs_fattr_init(res.new_fattr);
2010 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 if (!status) {
2013 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002014 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002016 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018 return status;
2019}
2020
2021static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2022 struct inode *new_dir, struct qstr *new_name)
2023{
2024 struct nfs4_exception exception = { };
2025 int err;
2026 do {
2027 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2028 _nfs4_proc_rename(old_dir, old_name,
2029 new_dir, new_name),
2030 &exception);
2031 } while (exception.retry);
2032 return err;
2033}
2034
2035static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2036{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002037 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 struct nfs4_link_arg arg = {
2039 .fh = NFS_FH(inode),
2040 .dir_fh = NFS_FH(dir),
2041 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002042 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002044 struct nfs_fattr fattr, dir_attr;
2045 struct nfs4_link_res res = {
2046 .server = server,
2047 .fattr = &fattr,
2048 .dir_attr = &dir_attr,
2049 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 struct rpc_message msg = {
2051 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2052 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002053 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 };
2055 int status;
2056
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002057 nfs_fattr_init(res.fattr);
2058 nfs_fattr_init(res.dir_attr);
2059 status = rpc_call_sync(server->client, &msg, 0);
2060 if (!status) {
2061 update_changeattr(dir, &res.cinfo);
2062 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002063 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 return status;
2067}
2068
2069static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2070{
2071 struct nfs4_exception exception = { };
2072 int err;
2073 do {
2074 err = nfs4_handle_exception(NFS_SERVER(inode),
2075 _nfs4_proc_link(inode, dir, name),
2076 &exception);
2077 } while (exception.retry);
2078 return err;
2079}
2080
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002081struct nfs4_createdata {
2082 struct rpc_message msg;
2083 struct nfs4_create_arg arg;
2084 struct nfs4_create_res res;
2085 struct nfs_fh fh;
2086 struct nfs_fattr fattr;
2087 struct nfs_fattr dir_fattr;
2088};
2089
2090static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2091 struct qstr *name, struct iattr *sattr, u32 ftype)
2092{
2093 struct nfs4_createdata *data;
2094
2095 data = kzalloc(sizeof(*data), GFP_KERNEL);
2096 if (data != NULL) {
2097 struct nfs_server *server = NFS_SERVER(dir);
2098
2099 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2100 data->msg.rpc_argp = &data->arg;
2101 data->msg.rpc_resp = &data->res;
2102 data->arg.dir_fh = NFS_FH(dir);
2103 data->arg.server = server;
2104 data->arg.name = name;
2105 data->arg.attrs = sattr;
2106 data->arg.ftype = ftype;
2107 data->arg.bitmask = server->attr_bitmask;
2108 data->res.server = server;
2109 data->res.fh = &data->fh;
2110 data->res.fattr = &data->fattr;
2111 data->res.dir_fattr = &data->dir_fattr;
2112 nfs_fattr_init(data->res.fattr);
2113 nfs_fattr_init(data->res.dir_fattr);
2114 }
2115 return data;
2116}
2117
2118static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2119{
2120 int status = rpc_call_sync(NFS_CLIENT(dir), &data->msg, 0);
2121 if (status == 0) {
2122 update_changeattr(dir, &data->res.dir_cinfo);
2123 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2124 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2125 }
2126 return status;
2127}
2128
2129static void nfs4_free_createdata(struct nfs4_createdata *data)
2130{
2131 kfree(data);
2132}
2133
Chuck Lever4f390c12006-08-22 20:06:22 -04002134static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002135 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002137 struct nfs4_createdata *data;
2138 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Chuck Lever94a6d752006-08-22 20:06:23 -04002140 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002141 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002142
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002143 status = -ENOMEM;
2144 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2145 if (data == NULL)
2146 goto out;
2147
2148 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2149 data->arg.u.symlink.pages = &page;
2150 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002152 status = nfs4_do_create(dir, dentry, data);
2153
2154 nfs4_free_createdata(data);
2155out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return status;
2157}
2158
Chuck Lever4f390c12006-08-22 20:06:22 -04002159static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002160 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 struct nfs4_exception exception = { };
2163 int err;
2164 do {
2165 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002166 _nfs4_proc_symlink(dir, dentry, page,
2167 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 &exception);
2169 } while (exception.retry);
2170 return err;
2171}
2172
2173static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2174 struct iattr *sattr)
2175{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002176 struct nfs4_createdata *data;
2177 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002179 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2180 if (data == NULL)
2181 goto out;
2182
2183 status = nfs4_do_create(dir, dentry, data);
2184
2185 nfs4_free_createdata(data);
2186out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 return status;
2188}
2189
2190static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2191 struct iattr *sattr)
2192{
2193 struct nfs4_exception exception = { };
2194 int err;
2195 do {
2196 err = nfs4_handle_exception(NFS_SERVER(dir),
2197 _nfs4_proc_mkdir(dir, dentry, sattr),
2198 &exception);
2199 } while (exception.retry);
2200 return err;
2201}
2202
2203static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2204 u64 cookie, struct page *page, unsigned int count, int plus)
2205{
2206 struct inode *dir = dentry->d_inode;
2207 struct nfs4_readdir_arg args = {
2208 .fh = NFS_FH(dir),
2209 .pages = &page,
2210 .pgbase = 0,
2211 .count = count,
2212 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2213 };
2214 struct nfs4_readdir_res res;
2215 struct rpc_message msg = {
2216 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2217 .rpc_argp = &args,
2218 .rpc_resp = &res,
2219 .rpc_cred = cred,
2220 };
2221 int status;
2222
Harvey Harrison3110ff82008-05-02 13:42:44 -07002223 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002224 dentry->d_parent->d_name.name,
2225 dentry->d_name.name,
2226 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2228 res.pgbase = args.pgbase;
2229 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2230 if (status == 0)
2231 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002232
2233 nfs_invalidate_atime(dir);
2234
Harvey Harrison3110ff82008-05-02 13:42:44 -07002235 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 return status;
2237}
2238
2239static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2240 u64 cookie, struct page *page, unsigned int count, int plus)
2241{
2242 struct nfs4_exception exception = { };
2243 int err;
2244 do {
2245 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2246 _nfs4_proc_readdir(dentry, cred, cookie,
2247 page, count, plus),
2248 &exception);
2249 } while (exception.retry);
2250 return err;
2251}
2252
2253static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2254 struct iattr *sattr, dev_t rdev)
2255{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002256 struct nfs4_createdata *data;
2257 int mode = sattr->ia_mode;
2258 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2261 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002262
2263 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2264 if (data == NULL)
2265 goto out;
2266
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002268 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002270 data->arg.ftype = NF4BLK;
2271 data->arg.u.device.specdata1 = MAJOR(rdev);
2272 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 }
2274 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002275 data->arg.ftype = NF4CHR;
2276 data->arg.u.device.specdata1 = MAJOR(rdev);
2277 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002280 status = nfs4_do_create(dir, dentry, data);
2281
2282 nfs4_free_createdata(data);
2283out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 return status;
2285}
2286
2287static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2288 struct iattr *sattr, dev_t rdev)
2289{
2290 struct nfs4_exception exception = { };
2291 int err;
2292 do {
2293 err = nfs4_handle_exception(NFS_SERVER(dir),
2294 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2295 &exception);
2296 } while (exception.retry);
2297 return err;
2298}
2299
2300static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2301 struct nfs_fsstat *fsstat)
2302{
2303 struct nfs4_statfs_arg args = {
2304 .fh = fhandle,
2305 .bitmask = server->attr_bitmask,
2306 };
2307 struct rpc_message msg = {
2308 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2309 .rpc_argp = &args,
2310 .rpc_resp = fsstat,
2311 };
2312
Trond Myklebust0e574af2005-10-27 22:12:38 -04002313 nfs_fattr_init(fsstat->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return rpc_call_sync(server->client, &msg, 0);
2315}
2316
2317static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2318{
2319 struct nfs4_exception exception = { };
2320 int err;
2321 do {
2322 err = nfs4_handle_exception(server,
2323 _nfs4_proc_statfs(server, fhandle, fsstat),
2324 &exception);
2325 } while (exception.retry);
2326 return err;
2327}
2328
2329static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2330 struct nfs_fsinfo *fsinfo)
2331{
2332 struct nfs4_fsinfo_arg args = {
2333 .fh = fhandle,
2334 .bitmask = server->attr_bitmask,
2335 };
2336 struct rpc_message msg = {
2337 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2338 .rpc_argp = &args,
2339 .rpc_resp = fsinfo,
2340 };
2341
2342 return rpc_call_sync(server->client, &msg, 0);
2343}
2344
2345static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2346{
2347 struct nfs4_exception exception = { };
2348 int err;
2349
2350 do {
2351 err = nfs4_handle_exception(server,
2352 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2353 &exception);
2354 } while (exception.retry);
2355 return err;
2356}
2357
2358static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2359{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002360 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2362}
2363
2364static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2365 struct nfs_pathconf *pathconf)
2366{
2367 struct nfs4_pathconf_arg args = {
2368 .fh = fhandle,
2369 .bitmask = server->attr_bitmask,
2370 };
2371 struct rpc_message msg = {
2372 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2373 .rpc_argp = &args,
2374 .rpc_resp = pathconf,
2375 };
2376
2377 /* None of the pathconf attributes are mandatory to implement */
2378 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2379 memset(pathconf, 0, sizeof(*pathconf));
2380 return 0;
2381 }
2382
Trond Myklebust0e574af2005-10-27 22:12:38 -04002383 nfs_fattr_init(pathconf->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 return rpc_call_sync(server->client, &msg, 0);
2385}
2386
2387static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2388 struct nfs_pathconf *pathconf)
2389{
2390 struct nfs4_exception exception = { };
2391 int err;
2392
2393 do {
2394 err = nfs4_handle_exception(server,
2395 _nfs4_proc_pathconf(server, fhandle, pathconf),
2396 &exception);
2397 } while (exception.retry);
2398 return err;
2399}
2400
Trond Myklebustec06c092006-03-20 13:44:27 -05002401static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
Trond Myklebustec06c092006-03-20 13:44:27 -05002403 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Trond Myklebustec06c092006-03-20 13:44:27 -05002405 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002407 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002409
2410 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002412 renew_lease(server, data->timestamp);
2413 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002416static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002419 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420}
2421
Trond Myklebust788e7a82006-03-20 13:44:27 -05002422static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 struct inode *inode = data->inode;
2425
2426 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2427 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002428 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002430 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04002432 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002433 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002434 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435}
2436
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002437static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002439 struct nfs_server *server = NFS_SERVER(data->inode);
2440
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002441 data->args.bitmask = server->attr_bitmask;
2442 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 data->timestamp = jiffies;
2444
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002445 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
Trond Myklebust788e7a82006-03-20 13:44:27 -05002448static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 struct inode *inode = data->inode;
2451
2452 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2453 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002454 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04002456 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002460static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
Trond Myklebust788e7a82006-03-20 13:44:27 -05002462 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002464 data->args.bitmask = server->attr_bitmask;
2465 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002466 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467}
2468
2469/*
2470 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2471 * standalone procedure for queueing an asynchronous RENEW.
2472 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002473static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
David Howellsadfa6f92006-08-22 20:06:08 -04002475 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002476 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478 if (task->tk_status < 0) {
2479 switch (task->tk_status) {
2480 case -NFS4ERR_STALE_CLIENTID:
2481 case -NFS4ERR_EXPIRED:
2482 case -NFS4ERR_CB_PATH_DOWN:
2483 nfs4_schedule_state_recovery(clp);
2484 }
2485 return;
2486 }
2487 spin_lock(&clp->cl_lock);
2488 if (time_before(clp->cl_last_renewal,timestamp))
2489 clp->cl_last_renewal = timestamp;
2490 spin_unlock(&clp->cl_lock);
2491}
2492
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002493static const struct rpc_call_ops nfs4_renew_ops = {
2494 .rpc_call_done = nfs4_renew_done,
2495};
2496
David Howellsadfa6f92006-08-22 20:06:08 -04002497int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498{
2499 struct rpc_message msg = {
2500 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2501 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002502 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 };
2504
2505 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002506 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
2508
David Howellsadfa6f92006-08-22 20:06:08 -04002509int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
2511 struct rpc_message msg = {
2512 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2513 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002514 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 };
2516 unsigned long now = jiffies;
2517 int status;
2518
2519 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2520 if (status < 0)
2521 return status;
2522 spin_lock(&clp->cl_lock);
2523 if (time_before(clp->cl_last_renewal,now))
2524 clp->cl_last_renewal = now;
2525 spin_unlock(&clp->cl_lock);
2526 return 0;
2527}
2528
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002529static inline int nfs4_server_supports_acls(struct nfs_server *server)
2530{
2531 return (server->caps & NFS_CAP_ACLS)
2532 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2533 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2534}
2535
2536/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2537 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2538 * the stack.
2539 */
2540#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2541
2542static void buf_to_pages(const void *buf, size_t buflen,
2543 struct page **pages, unsigned int *pgbase)
2544{
2545 const void *p = buf;
2546
2547 *pgbase = offset_in_page(buf);
2548 p -= *pgbase;
2549 while (p < buf + buflen) {
2550 *(pages++) = virt_to_page(p);
2551 p += PAGE_CACHE_SIZE;
2552 }
2553}
2554
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002555struct nfs4_cached_acl {
2556 int cached;
2557 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002558 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002559};
2560
2561static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002562{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002563 struct nfs_inode *nfsi = NFS_I(inode);
2564
2565 spin_lock(&inode->i_lock);
2566 kfree(nfsi->nfs4_acl);
2567 nfsi->nfs4_acl = acl;
2568 spin_unlock(&inode->i_lock);
2569}
2570
2571static void nfs4_zap_acl_attr(struct inode *inode)
2572{
2573 nfs4_set_cached_acl(inode, NULL);
2574}
2575
2576static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2577{
2578 struct nfs_inode *nfsi = NFS_I(inode);
2579 struct nfs4_cached_acl *acl;
2580 int ret = -ENOENT;
2581
2582 spin_lock(&inode->i_lock);
2583 acl = nfsi->nfs4_acl;
2584 if (acl == NULL)
2585 goto out;
2586 if (buf == NULL) /* user is just asking for length */
2587 goto out_len;
2588 if (acl->cached == 0)
2589 goto out;
2590 ret = -ERANGE; /* see getxattr(2) man page */
2591 if (acl->len > buflen)
2592 goto out;
2593 memcpy(buf, acl->data, acl->len);
2594out_len:
2595 ret = acl->len;
2596out:
2597 spin_unlock(&inode->i_lock);
2598 return ret;
2599}
2600
2601static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2602{
2603 struct nfs4_cached_acl *acl;
2604
2605 if (buf && acl_len <= PAGE_SIZE) {
2606 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2607 if (acl == NULL)
2608 goto out;
2609 acl->cached = 1;
2610 memcpy(acl->data, buf, acl_len);
2611 } else {
2612 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2613 if (acl == NULL)
2614 goto out;
2615 acl->cached = 0;
2616 }
2617 acl->len = acl_len;
2618out:
2619 nfs4_set_cached_acl(inode, acl);
2620}
2621
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002622static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002623{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002624 struct page *pages[NFS4ACL_MAXPAGES];
2625 struct nfs_getaclargs args = {
2626 .fh = NFS_FH(inode),
2627 .acl_pages = pages,
2628 .acl_len = buflen,
2629 };
2630 size_t resp_len = buflen;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002631 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002632 struct rpc_message msg = {
2633 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2634 .rpc_argp = &args,
2635 .rpc_resp = &resp_len,
2636 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002637 struct page *localpage = NULL;
2638 int ret;
2639
2640 if (buflen < PAGE_SIZE) {
2641 /* As long as we're doing a round trip to the server anyway,
2642 * let's be prepared for a page of acl data. */
2643 localpage = alloc_page(GFP_KERNEL);
2644 resp_buf = page_address(localpage);
2645 if (localpage == NULL)
2646 return -ENOMEM;
2647 args.acl_pages[0] = localpage;
2648 args.acl_pgbase = 0;
J. Bruce Fields1d95db82005-10-13 16:54:32 -04002649 resp_len = args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002650 } else {
2651 resp_buf = buf;
2652 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2653 }
2654 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2655 if (ret)
2656 goto out_free;
2657 if (resp_len > args.acl_len)
2658 nfs4_write_cached_acl(inode, NULL, resp_len);
2659 else
2660 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2661 if (buf) {
2662 ret = -ERANGE;
2663 if (resp_len > buflen)
2664 goto out_free;
2665 if (localpage)
2666 memcpy(buf, resp_buf, resp_len);
2667 }
2668 ret = resp_len;
2669out_free:
2670 if (localpage)
2671 __free_page(localpage);
2672 return ret;
2673}
2674
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002675static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2676{
2677 struct nfs4_exception exception = { };
2678 ssize_t ret;
2679 do {
2680 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2681 if (ret >= 0)
2682 break;
2683 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2684 } while (exception.retry);
2685 return ret;
2686}
2687
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002688static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2689{
2690 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002691 int ret;
2692
2693 if (!nfs4_server_supports_acls(server))
2694 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002695 ret = nfs_revalidate_inode(server, inode);
2696 if (ret < 0)
2697 return ret;
2698 ret = nfs4_read_cached_acl(inode, buf, buflen);
2699 if (ret != -ENOENT)
2700 return ret;
2701 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002702}
2703
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002704static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002705{
2706 struct nfs_server *server = NFS_SERVER(inode);
2707 struct page *pages[NFS4ACL_MAXPAGES];
2708 struct nfs_setaclargs arg = {
2709 .fh = NFS_FH(inode),
2710 .acl_pages = pages,
2711 .acl_len = buflen,
2712 };
2713 struct rpc_message msg = {
2714 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2715 .rpc_argp = &arg,
2716 .rpc_resp = NULL,
2717 };
2718 int ret;
2719
2720 if (!nfs4_server_supports_acls(server))
2721 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002722 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002723 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
David Howells1f163412006-08-22 20:06:11 -04002724 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
J. Bruce Fields08efa202007-05-01 10:56:25 -04002725 nfs_zap_caches(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002726 return ret;
2727}
2728
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002729static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2730{
2731 struct nfs4_exception exception = { };
2732 int err;
2733 do {
2734 err = nfs4_handle_exception(NFS_SERVER(inode),
2735 __nfs4_proc_set_acl(inode, buf, buflen),
2736 &exception);
2737 } while (exception.retry);
2738 return err;
2739}
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741static int
Trond Myklebustfaf5f492005-10-18 14:20:15 -07002742nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
David Howells7539bba2006-08-22 20:06:09 -04002744 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
2746 if (!clp || task->tk_status >= 0)
2747 return 0;
2748 switch(task->tk_status) {
2749 case -NFS4ERR_STALE_CLIENTID:
2750 case -NFS4ERR_STALE_STATEID:
2751 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05002752 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 nfs4_schedule_state_recovery(clp);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002754 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05002755 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 task->tk_status = 0;
2757 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 case -NFS4ERR_DELAY:
Chuck Lever006ea732006-03-20 13:44:14 -05002759 nfs_inc_server_stats((struct nfs_server *) server,
2760 NFSIOS_DELAY);
2761 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2763 task->tk_status = 0;
2764 return -EAGAIN;
2765 case -NFS4ERR_OLD_STATEID:
2766 task->tk_status = 0;
2767 return -EAGAIN;
2768 }
2769 task->tk_status = nfs4_map_errors(task->tk_status);
2770 return 0;
2771}
2772
Matthew Wilcox150030b2007-12-06 16:24:39 -05002773static int nfs4_wait_bit_killable(void *word)
Trond Myklebust433fbe42006-01-03 09:55:22 +01002774{
Matthew Wilcox150030b2007-12-06 16:24:39 -05002775 if (fatal_signal_pending(current))
Trond Myklebust433fbe42006-01-03 09:55:22 +01002776 return -ERESTARTSYS;
2777 schedule();
2778 return 0;
2779}
2780
David Howellsadfa6f92006-08-22 20:06:08 -04002781static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
Trond Myklebust433fbe42006-01-03 09:55:22 +01002783 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
2785 might_sleep();
2786
Trond Myklebuste1485822006-12-13 16:43:13 -05002787 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2788
Trond Myklebust433fbe42006-01-03 09:55:22 +01002789 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
Matthew Wilcox150030b2007-12-06 16:24:39 -05002790 nfs4_wait_bit_killable, TASK_KILLABLE);
Trond Myklebuste1485822006-12-13 16:43:13 -05002791
2792 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 return res;
2794}
2795
2796static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2797{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 int res = 0;
2799
2800 might_sleep();
2801
2802 if (*timeout <= 0)
2803 *timeout = NFS4_POLL_RETRY_MIN;
2804 if (*timeout > NFS4_POLL_RETRY_MAX)
2805 *timeout = NFS4_POLL_RETRY_MAX;
Matthew Wilcox150030b2007-12-06 16:24:39 -05002806 schedule_timeout_killable(*timeout);
2807 if (fatal_signal_pending(current))
2808 res = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 *timeout <<= 1;
2810 return res;
2811}
2812
2813/* This is the error handling routine for processes that are allowed
2814 * to sleep.
2815 */
Trond Myklebust10afec92007-05-14 17:16:04 -04002816static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
David Howells7539bba2006-08-22 20:06:09 -04002818 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 int ret = errorcode;
2820
2821 exception->retry = 0;
2822 switch(errorcode) {
2823 case 0:
2824 return 0;
2825 case -NFS4ERR_STALE_CLIENTID:
2826 case -NFS4ERR_STALE_STATEID:
2827 case -NFS4ERR_EXPIRED:
Trond Myklebust433fbe42006-01-03 09:55:22 +01002828 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 ret = nfs4_wait_clnt_recover(server->client, clp);
2830 if (ret == 0)
2831 exception->retry = 1;
2832 break;
Trond Myklebustc5149832006-09-15 08:25:04 -04002833 case -NFS4ERR_FILE_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 case -NFS4ERR_GRACE:
2835 case -NFS4ERR_DELAY:
2836 ret = nfs4_delay(server->client, &exception->timeout);
Trond Myklebust2c566172005-11-04 15:33:50 -05002837 if (ret != 0)
2838 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 case -NFS4ERR_OLD_STATEID:
Trond Myklebust2c566172005-11-04 15:33:50 -05002840 exception->retry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 }
2842 /* We failed to handle the error */
2843 return nfs4_map_errors(ret);
2844}
2845
David Howellsadfa6f92006-08-22 20:06:08 -04002846int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847{
2848 nfs4_verifier sc_verifier;
2849 struct nfs4_setclientid setclientid = {
2850 .sc_verifier = &sc_verifier,
2851 .sc_prog = program,
2852 };
2853 struct rpc_message msg = {
2854 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2855 .rpc_argp = &setclientid,
2856 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002857 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 };
Al Virobc4785c2006-10-19 23:28:51 -07002859 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 int loop = 0;
2861 int status;
2862
Al Virobc4785c2006-10-19 23:28:51 -07002863 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2865 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2866
2867 for(;;) {
2868 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05002869 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05002870 clp->cl_ipaddr,
2871 rpc_peeraddr2str(clp->cl_rpcclient,
2872 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05002873 rpc_peeraddr2str(clp->cl_rpcclient,
2874 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04002875 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 clp->cl_id_uniquifier);
2877 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002878 sizeof(setclientid.sc_netid),
2879 rpc_peeraddr2str(clp->cl_rpcclient,
2880 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002882 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 clp->cl_ipaddr, port >> 8, port & 255);
2884
2885 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2886 if (status != -NFS4ERR_CLID_INUSE)
2887 break;
2888 if (signalled())
2889 break;
2890 if (loop++ & 1)
2891 ssleep(clp->cl_lease_time + 1);
2892 else
2893 if (++clp->cl_id_uniquifier == 0)
2894 break;
2895 }
2896 return status;
2897}
2898
David Howellsadfa6f92006-08-22 20:06:08 -04002899static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
2901 struct nfs_fsinfo fsinfo;
2902 struct rpc_message msg = {
2903 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2904 .rpc_argp = clp,
2905 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002906 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 };
2908 unsigned long now;
2909 int status;
2910
2911 now = jiffies;
2912 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2913 if (status == 0) {
2914 spin_lock(&clp->cl_lock);
2915 clp->cl_lease_time = fsinfo.lease_time * HZ;
2916 clp->cl_last_renewal = now;
Trond Myklebust58d97142006-01-03 09:55:24 +01002917 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 spin_unlock(&clp->cl_lock);
2919 }
2920 return status;
2921}
2922
David Howellsadfa6f92006-08-22 20:06:08 -04002923int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05002924{
2925 long timeout;
2926 int err;
2927 do {
2928 err = _nfs4_proc_setclientid_confirm(clp, cred);
2929 switch (err) {
2930 case 0:
2931 return err;
2932 case -NFS4ERR_RESOURCE:
2933 /* The IBM lawyers misread another document! */
2934 case -NFS4ERR_DELAY:
2935 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2936 }
2937 } while (err == 0);
2938 return err;
2939}
2940
Trond Myklebustfe650402006-01-03 09:55:18 +01002941struct nfs4_delegreturndata {
2942 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002943 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01002944 struct nfs_fh fh;
2945 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002946 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002947 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01002948 int rpc_status;
2949};
2950
Trond Myklebustfe650402006-01-03 09:55:18 +01002951static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2952{
2953 struct nfs4_delegreturndata *data = calldata;
2954 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002955 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01002956 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01002957}
2958
2959static void nfs4_delegreturn_release(void *calldata)
2960{
Trond Myklebustfe650402006-01-03 09:55:18 +01002961 kfree(calldata);
2962}
2963
Jesper Juhlc8d149f2006-03-20 13:44:07 -05002964static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01002965 .rpc_call_done = nfs4_delegreturn_done,
2966 .rpc_release = nfs4_delegreturn_release,
2967};
2968
Trond Myklebuste6f81072008-01-24 18:14:34 -05002969static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01002970{
2971 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002972 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01002973 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002974 struct rpc_message msg = {
2975 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
2976 .rpc_cred = cred,
2977 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002978 struct rpc_task_setup task_setup_data = {
2979 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002980 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002981 .callback_ops = &nfs4_delegreturn_ops,
2982 .flags = RPC_TASK_ASYNC,
2983 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05002984 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01002985
2986 data = kmalloc(sizeof(*data), GFP_KERNEL);
2987 if (data == NULL)
2988 return -ENOMEM;
2989 data->args.fhandle = &data->fh;
2990 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002991 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01002992 nfs_copy_fh(&data->fh, NFS_FH(inode));
2993 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01002994 data->res.fattr = &data->fattr;
2995 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002996 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01002997 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01002998 data->rpc_status = 0;
2999
Trond Myklebustc970aa82007-07-14 15:39:59 -04003000 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003001 msg.rpc_argp = &data->args,
3002 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003003 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003004 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003005 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003006 if (!issync)
3007 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003008 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003009 if (status != 0)
3010 goto out;
3011 status = data->rpc_status;
3012 if (status != 0)
3013 goto out;
3014 nfs_refresh_inode(inode, &data->fattr);
3015out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003016 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003017 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018}
3019
Trond Myklebuste6f81072008-01-24 18:14:34 -05003020int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021{
3022 struct nfs_server *server = NFS_SERVER(inode);
3023 struct nfs4_exception exception = { };
3024 int err;
3025 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003026 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 switch (err) {
3028 case -NFS4ERR_STALE_STATEID:
3029 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 case 0:
3031 return 0;
3032 }
3033 err = nfs4_handle_exception(server, err, &exception);
3034 } while (exception.retry);
3035 return err;
3036}
3037
3038#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3039#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3040
3041/*
3042 * sleep, with exponential backoff, and retry the LOCK operation.
3043 */
3044static unsigned long
3045nfs4_set_lock_task_retry(unsigned long timeout)
3046{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003047 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 timeout <<= 1;
3049 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3050 return NFS4_LOCK_MAXTIMEOUT;
3051 return timeout;
3052}
3053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3055{
3056 struct inode *inode = state->inode;
3057 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003058 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003059 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003061 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003063 struct nfs_lockt_res res = {
3064 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 };
3066 struct rpc_message msg = {
3067 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3068 .rpc_argp = &arg,
3069 .rpc_resp = &res,
3070 .rpc_cred = state->owner->so_cred,
3071 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 struct nfs4_lock_state *lsp;
3073 int status;
3074
3075 down_read(&clp->cl_sem);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003076 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003077 status = nfs4_set_lock_state(state, request);
3078 if (status != 0)
3079 goto out;
3080 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003081 arg.lock_owner.id = lsp->ls_id.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003083 switch (status) {
3084 case 0:
3085 request->fl_type = F_UNLCK;
3086 break;
3087 case -NFS4ERR_DENIED:
3088 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003090 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003091out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 up_read(&clp->cl_sem);
3093 return status;
3094}
3095
3096static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3097{
3098 struct nfs4_exception exception = { };
3099 int err;
3100
3101 do {
3102 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3103 _nfs4_proc_getlk(state, cmd, request),
3104 &exception);
3105 } while (exception.retry);
3106 return err;
3107}
3108
3109static int do_vfs_lock(struct file *file, struct file_lock *fl)
3110{
3111 int res = 0;
3112 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3113 case FL_POSIX:
3114 res = posix_lock_file_wait(file, fl);
3115 break;
3116 case FL_FLOCK:
3117 res = flock_lock_file_wait(file, fl);
3118 break;
3119 default:
3120 BUG();
3121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 return res;
3123}
3124
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003125struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003126 struct nfs_locku_args arg;
3127 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003128 struct nfs4_lock_state *lsp;
3129 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003130 struct file_lock fl;
3131 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003132 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003133};
3134
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003135static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3136 struct nfs_open_context *ctx,
3137 struct nfs4_lock_state *lsp,
3138 struct nfs_seqid *seqid)
3139{
3140 struct nfs4_unlockdata *p;
3141 struct inode *inode = lsp->ls_state->inode;
3142
3143 p = kmalloc(sizeof(*p), GFP_KERNEL);
3144 if (p == NULL)
3145 return NULL;
3146 p->arg.fh = NFS_FH(inode);
3147 p->arg.fl = &p->fl;
3148 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003149 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003150 p->arg.stateid = &lsp->ls_stateid;
3151 p->lsp = lsp;
3152 atomic_inc(&lsp->ls_count);
3153 /* Ensure we don't close file until we're done freeing locks! */
3154 p->ctx = get_nfs_open_context(ctx);
3155 memcpy(&p->fl, fl, sizeof(p->fl));
3156 p->server = NFS_SERVER(inode);
3157 return p;
3158}
3159
Trond Myklebust06f814a2006-01-03 09:55:07 +01003160static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003161{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003162 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003163 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003164 nfs4_put_lock_state(calldata->lsp);
3165 put_nfs_open_context(calldata->ctx);
3166 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003167}
3168
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003169static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003170{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003171 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003172
Trond Myklebust06f814a2006-01-03 09:55:07 +01003173 if (RPC_ASSASSINATED(task))
3174 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003175 switch (task->tk_status) {
3176 case 0:
3177 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003178 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003179 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003180 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003181 break;
3182 case -NFS4ERR_STALE_STATEID:
3183 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003184 break;
3185 default:
Trond Myklebusta6a352e2006-12-13 16:43:06 -05003186 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003187 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003188 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003189}
3190
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003191static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003192{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003193 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003195 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003196 return;
3197 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003198 /* Note: exit _without_ running nfs4_locku_done */
3199 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003200 return;
3201 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003202 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003203 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204}
3205
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003206static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003207 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003208 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003209 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003210};
3211
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003212static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3213 struct nfs_open_context *ctx,
3214 struct nfs4_lock_state *lsp,
3215 struct nfs_seqid *seqid)
3216{
3217 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003218 struct rpc_message msg = {
3219 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3220 .rpc_cred = ctx->cred,
3221 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003222 struct rpc_task_setup task_setup_data = {
3223 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003224 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003225 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003226 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003227 .flags = RPC_TASK_ASYNC,
3228 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003229
Frank Filz137d6ac2007-07-09 15:32:29 -07003230 /* Ensure this is an unlock - when canceling a lock, the
3231 * canceled lock is passed in, and it won't be an unlock.
3232 */
3233 fl->fl_type = F_UNLCK;
3234
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003235 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3236 if (data == NULL) {
3237 nfs_free_seqid(seqid);
3238 return ERR_PTR(-ENOMEM);
3239 }
3240
Trond Myklebust5138fde2007-07-14 15:40:01 -04003241 msg.rpc_argp = &data->arg,
3242 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003243 task_setup_data.callback_data = data;
3244 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003245}
3246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3248{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003249 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003250 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003251 struct rpc_task *task;
3252 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003253 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
Trond Myklebust9b073572006-06-29 16:38:34 -04003255 status = nfs4_set_lock_state(state, request);
3256 /* Unlock _before_ we do the RPC call */
3257 request->fl_flags |= FL_EXISTS;
3258 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3259 goto out;
3260 if (status != 0)
3261 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003262 /* Is this a delegated lock? */
3263 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003264 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003265 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003266 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003267 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003268 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003269 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003270 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003271 status = PTR_ERR(task);
3272 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003273 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003274 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003275 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003276out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003277 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003278 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279}
3280
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003281struct nfs4_lockdata {
3282 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003283 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003284 struct nfs4_lock_state *lsp;
3285 struct nfs_open_context *ctx;
3286 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003287 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003288 int rpc_status;
3289 int cancelled;
3290};
3291
3292static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3293 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3294{
3295 struct nfs4_lockdata *p;
3296 struct inode *inode = lsp->ls_state->inode;
3297 struct nfs_server *server = NFS_SERVER(inode);
3298
3299 p = kzalloc(sizeof(*p), GFP_KERNEL);
3300 if (p == NULL)
3301 return NULL;
3302
3303 p->arg.fh = NFS_FH(inode);
3304 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003305 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3306 if (p->arg.open_seqid == NULL)
3307 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003308 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3309 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003310 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003311 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003312 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003313 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003314 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003315 p->lsp = lsp;
3316 atomic_inc(&lsp->ls_count);
3317 p->ctx = get_nfs_open_context(ctx);
3318 memcpy(&p->fl, fl, sizeof(p->fl));
3319 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003320out_free_seqid:
3321 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003322out_free:
3323 kfree(p);
3324 return NULL;
3325}
3326
3327static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3328{
3329 struct nfs4_lockdata *data = calldata;
3330 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Harvey Harrison3110ff82008-05-02 13:42:44 -07003332 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003333 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3334 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003335 /* Do we need to do an open_to_lock_owner? */
3336 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003337 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3338 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003339 data->arg.open_stateid = &state->stateid;
3340 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003341 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003342 } else
3343 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003344 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003345 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003346 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003347}
3348
3349static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3350{
3351 struct nfs4_lockdata *data = calldata;
3352
Harvey Harrison3110ff82008-05-02 13:42:44 -07003353 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003354
3355 data->rpc_status = task->tk_status;
3356 if (RPC_ASSASSINATED(task))
3357 goto out;
3358 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003359 if (data->rpc_status == 0)
3360 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3361 else
3362 goto out;
3363 }
3364 if (data->rpc_status == 0) {
3365 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3366 sizeof(data->lsp->ls_stateid.data));
3367 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003368 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003369 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003370out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003371 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003372}
3373
3374static void nfs4_lock_release(void *calldata)
3375{
3376 struct nfs4_lockdata *data = calldata;
3377
Harvey Harrison3110ff82008-05-02 13:42:44 -07003378 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003379 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003380 if (data->cancelled != 0) {
3381 struct rpc_task *task;
3382 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3383 data->arg.lock_seqid);
3384 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003385 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003386 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003387 } else
3388 nfs_free_seqid(data->arg.lock_seqid);
3389 nfs4_put_lock_state(data->lsp);
3390 put_nfs_open_context(data->ctx);
3391 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003392 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003393}
3394
3395static const struct rpc_call_ops nfs4_lock_ops = {
3396 .rpc_call_prepare = nfs4_lock_prepare,
3397 .rpc_call_done = nfs4_lock_done,
3398 .rpc_release = nfs4_lock_release,
3399};
3400
3401static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3402{
3403 struct nfs4_lockdata *data;
3404 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003405 struct rpc_message msg = {
3406 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3407 .rpc_cred = state->owner->so_cred,
3408 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003409 struct rpc_task_setup task_setup_data = {
3410 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003411 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003412 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003413 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003414 .flags = RPC_TASK_ASYNC,
3415 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003416 int ret;
3417
Harvey Harrison3110ff82008-05-02 13:42:44 -07003418 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003419 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003420 fl->fl_u.nfs4_fl.owner);
3421 if (data == NULL)
3422 return -ENOMEM;
3423 if (IS_SETLKW(cmd))
3424 data->arg.block = 1;
3425 if (reclaim != 0)
3426 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003427 msg.rpc_argp = &data->arg,
3428 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003429 task_setup_data.callback_data = data;
3430 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003431 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003432 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003433 ret = nfs4_wait_for_completion_rpc_task(task);
3434 if (ret == 0) {
3435 ret = data->rpc_status;
3436 if (ret == -NFS4ERR_DENIED)
3437 ret = -EAGAIN;
3438 } else
3439 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003440 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003441 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003442 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443}
3444
3445static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3446{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003447 struct nfs_server *server = NFS_SERVER(state->inode);
3448 struct nfs4_exception exception = { };
3449 int err;
3450
3451 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003452 /* Cache the lock if possible... */
3453 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3454 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003455 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3456 if (err != -NFS4ERR_DELAY)
3457 break;
3458 nfs4_handle_exception(server, err, &exception);
3459 } while (exception.retry);
3460 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461}
3462
3463static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3464{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003465 struct nfs_server *server = NFS_SERVER(state->inode);
3466 struct nfs4_exception exception = { };
3467 int err;
3468
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003469 err = nfs4_set_lock_state(state, request);
3470 if (err != 0)
3471 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003472 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003473 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3474 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003475 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3476 if (err != -NFS4ERR_DELAY)
3477 break;
3478 nfs4_handle_exception(server, err, &exception);
3479 } while (exception.retry);
3480 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481}
3482
3483static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3484{
David Howellsadfa6f92006-08-22 20:06:08 -04003485 struct nfs_client *clp = state->owner->so_client;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003486 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 int status;
3488
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003489 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003490 status = nfs4_set_lock_state(state, request);
3491 if (status != 0)
3492 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003493 request->fl_flags |= FL_ACCESS;
3494 status = do_vfs_lock(request->fl_file, request);
3495 if (status < 0)
3496 goto out;
3497 down_read(&clp->cl_sem);
3498 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3499 struct nfs_inode *nfsi = NFS_I(state->inode);
3500 /* Yes: cache locks! */
3501 down_read(&nfsi->rwsem);
3502 /* ...but avoid races with delegation recall... */
3503 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3504 request->fl_flags = fl_flags & ~FL_SLEEP;
3505 status = do_vfs_lock(request->fl_file, request);
3506 up_read(&nfsi->rwsem);
3507 goto out_unlock;
3508 }
3509 up_read(&nfsi->rwsem);
3510 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003511 status = _nfs4_do_setlk(state, cmd, request, 0);
3512 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003513 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003514 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003515 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003516 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07003517 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003518out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 up_read(&clp->cl_sem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003520out:
3521 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 return status;
3523}
3524
3525static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3526{
3527 struct nfs4_exception exception = { };
3528 int err;
3529
3530 do {
3531 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3532 _nfs4_proc_setlk(state, cmd, request),
3533 &exception);
3534 } while (exception.retry);
3535 return err;
3536}
3537
3538static int
3539nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3540{
3541 struct nfs_open_context *ctx;
3542 struct nfs4_state *state;
3543 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3544 int status;
3545
3546 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003547 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 state = ctx->state;
3549
3550 if (request->fl_start < 0 || request->fl_end < 0)
3551 return -EINVAL;
3552
3553 if (IS_GETLK(cmd))
3554 return nfs4_proc_getlk(state, F_GETLK, request);
3555
3556 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3557 return -EINVAL;
3558
3559 if (request->fl_type == F_UNLCK)
3560 return nfs4_proc_unlck(state, cmd, request);
3561
3562 do {
3563 status = nfs4_proc_setlk(state, cmd, request);
3564 if ((status != -EAGAIN) || IS_SETLK(cmd))
3565 break;
3566 timeout = nfs4_set_lock_task_retry(timeout);
3567 status = -ERESTARTSYS;
3568 if (signalled())
3569 break;
3570 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 return status;
3572}
3573
Trond Myklebust888e6942005-11-04 15:38:11 -05003574int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3575{
3576 struct nfs_server *server = NFS_SERVER(state->inode);
3577 struct nfs4_exception exception = { };
3578 int err;
3579
3580 err = nfs4_set_lock_state(state, fl);
3581 if (err != 0)
3582 goto out;
3583 do {
3584 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3585 if (err != -NFS4ERR_DELAY)
3586 break;
3587 err = nfs4_handle_exception(server, err, &exception);
3588 } while (exception.retry);
3589out:
3590 return err;
3591}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003592
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003593#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3594
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003595int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3596 size_t buflen, int flags)
3597{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003598 struct inode *inode = dentry->d_inode;
3599
3600 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3601 return -EOPNOTSUPP;
3602
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003603 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003604}
3605
3606/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3607 * and that's what we'll do for e.g. user attributes that haven't been set.
3608 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3609 * attributes in kernel-managed attribute namespaces. */
3610ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3611 size_t buflen)
3612{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003613 struct inode *inode = dentry->d_inode;
3614
3615 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3616 return -EOPNOTSUPP;
3617
3618 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003619}
3620
3621ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3622{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003623 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003624
J. Bruce Fields096455a2006-03-20 23:23:42 -05003625 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3626 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003627 if (buf && buflen < len)
3628 return -ERANGE;
3629 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003630 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3631 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003632}
3633
Trond Myklebust56659e92007-07-17 21:52:39 -04003634int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003635 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003636{
3637 struct nfs_server *server = NFS_SERVER(dir);
3638 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003639 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3640 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003641 };
3642 struct nfs4_fs_locations_arg args = {
3643 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05003644 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003645 .page = page,
3646 .bitmask = bitmask,
3647 };
3648 struct rpc_message msg = {
3649 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3650 .rpc_argp = &args,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003651 .rpc_resp = fs_locations,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003652 };
3653 int status;
3654
Harvey Harrison3110ff82008-05-02 13:42:44 -07003655 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05003656 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003657 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003658 fs_locations->nlocations = 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003659 status = rpc_call_sync(server->client, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003660 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003661 return status;
3662}
3663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3665 .recover_open = nfs4_open_reclaim,
3666 .recover_lock = nfs4_lock_reclaim,
3667};
3668
3669struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3670 .recover_open = nfs4_open_expired,
3671 .recover_lock = nfs4_lock_expired,
3672};
3673
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003674static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003675 .permission = nfs_permission,
3676 .getattr = nfs_getattr,
3677 .setattr = nfs_setattr,
3678 .getxattr = nfs4_getxattr,
3679 .setxattr = nfs4_setxattr,
3680 .listxattr = nfs4_listxattr,
3681};
3682
David Howells509de812006-08-22 20:06:11 -04003683const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 .version = 4, /* protocol version */
3685 .dentry_ops = &nfs4_dentry_operations,
3686 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003687 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 .getroot = nfs4_proc_get_root,
3689 .getattr = nfs4_proc_getattr,
3690 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003691 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 .lookup = nfs4_proc_lookup,
3693 .access = nfs4_proc_access,
3694 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 .create = nfs4_proc_create,
3696 .remove = nfs4_proc_remove,
3697 .unlink_setup = nfs4_proc_unlink_setup,
3698 .unlink_done = nfs4_proc_unlink_done,
3699 .rename = nfs4_proc_rename,
3700 .link = nfs4_proc_link,
3701 .symlink = nfs4_proc_symlink,
3702 .mkdir = nfs4_proc_mkdir,
3703 .rmdir = nfs4_proc_remove,
3704 .readdir = nfs4_proc_readdir,
3705 .mknod = nfs4_proc_mknod,
3706 .statfs = nfs4_proc_statfs,
3707 .fsinfo = nfs4_proc_fsinfo,
3708 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003709 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 .decode_dirent = nfs4_decode_dirent,
3711 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003712 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003714 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003716 .commit_done = nfs4_commit_done,
Trond Myklebust02a913a2005-10-18 14:20:17 -07003717 .file_open = nfs_open,
3718 .file_release = nfs_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003720 .clear_acl_cache = nfs4_zap_acl_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721};
3722
3723/*
3724 * Local variables:
3725 * c-basic-offset: 8
3726 * End:
3727 */