blob: 424aa206470f4b3d575229fbfe9ce4fd5ab2bbd0 [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",
76 __FUNCTION__, -err);
77 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;
243 p->o_res.server = p->o_arg.server;
244 nfs_fattr_init(&p->f_attr);
245 nfs_fattr_init(&p->dir_attr);
246}
247
Trond Myklebustad389da2007-06-05 12:30:00 -0400248static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100249 struct nfs4_state_owner *sp, int flags,
250 const struct iattr *attrs)
251{
Trond Myklebustad389da2007-06-05 12:30:00 -0400252 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100253 struct inode *dir = parent->d_inode;
254 struct nfs_server *server = NFS_SERVER(dir);
255 struct nfs4_opendata *p;
256
257 p = kzalloc(sizeof(*p), GFP_KERNEL);
258 if (p == NULL)
259 goto err;
260 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
261 if (p->o_arg.seqid == NULL)
262 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400263 p->path.mnt = mntget(path->mnt);
264 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100265 p->dir = parent;
266 p->owner = sp;
267 atomic_inc(&sp->so_count);
268 p->o_arg.fh = NFS_FH(dir);
269 p->o_arg.open_flags = flags,
David Howells7539bba2006-08-22 20:06:09 -0400270 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400271 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400272 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100273 p->o_arg.server = server;
274 p->o_arg.bitmask = server->attr_bitmask;
275 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100276 if (flags & O_EXCL) {
277 u32 *s = (u32 *) p->o_arg.u.verifier.data;
278 s[0] = jiffies;
279 s[1] = current->pid;
280 } else if (flags & O_CREAT) {
281 p->o_arg.u.attrs = &p->attrs;
282 memcpy(&p->attrs, attrs, sizeof(p->attrs));
283 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100284 p->c_arg.fh = &p->o_res.fh;
285 p->c_arg.stateid = &p->o_res.stateid;
286 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400287 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400288 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100289 return p;
290err_free:
291 kfree(p);
292err:
293 dput(parent);
294 return NULL;
295}
296
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400297static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100298{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400299 struct nfs4_opendata *p = container_of(kref,
300 struct nfs4_opendata, kref);
301
302 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400303 if (p->state != NULL)
304 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400305 nfs4_put_state_owner(p->owner);
306 dput(p->dir);
307 dput(p->path.dentry);
308 mntput(p->path.mnt);
309 kfree(p);
310}
311
312static void nfs4_opendata_put(struct nfs4_opendata *p)
313{
314 if (p != NULL)
315 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100316}
317
Trond Myklebust06f814a2006-01-03 09:55:07 +0100318static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
319{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100320 int ret;
321
Trond Myklebust06f814a2006-01-03 09:55:07 +0100322 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100323 return ret;
324}
325
Trond Myklebust6ee41262007-07-08 14:11:36 -0400326static int can_open_cached(struct nfs4_state *state, int mode)
327{
328 int ret = 0;
329 switch (mode & (FMODE_READ|FMODE_WRITE|O_EXCL)) {
330 case FMODE_READ:
331 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400332 break;
333 case FMODE_WRITE:
334 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400335 break;
336 case FMODE_READ|FMODE_WRITE:
337 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
338 }
339 return ret;
340}
341
Trond Myklebustaac00a82007-07-05 19:02:21 -0400342static int can_open_delegated(struct nfs_delegation *delegation, mode_t open_flags)
343{
344 if ((delegation->type & open_flags) != open_flags)
345 return 0;
346 if (delegation->flags & NFS_DELEGATION_NEED_RECLAIM)
347 return 0;
348 return 1;
349}
350
Trond Myklebust003707c2007-07-05 18:07:55 -0400351static void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
Trond Myklebuste7616922006-01-03 09:55:13 +0100352{
353 switch (open_flags) {
354 case FMODE_WRITE:
355 state->n_wronly++;
356 break;
357 case FMODE_READ:
358 state->n_rdonly++;
359 break;
360 case FMODE_READ|FMODE_WRITE:
361 state->n_rdwr++;
362 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400363 nfs4_state_set_mode_locked(state, state->state | open_flags);
Trond Myklebuste7616922006-01-03 09:55:13 +0100364}
365
Trond Myklebust003707c2007-07-05 18:07:55 -0400366static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
367{
368 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
369 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
370 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
371 switch (open_flags) {
372 case FMODE_READ:
373 set_bit(NFS_O_RDONLY_STATE, &state->flags);
374 break;
375 case FMODE_WRITE:
376 set_bit(NFS_O_WRONLY_STATE, &state->flags);
377 break;
378 case FMODE_READ|FMODE_WRITE:
379 set_bit(NFS_O_RDWR_STATE, &state->flags);
380 }
381}
382
383static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
384{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400385 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400386 nfs_set_open_stateid_locked(state, stateid, open_flags);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400387 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400388}
389
390static 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 -0700391{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 open_flags &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400393 /*
394 * Protect the call to nfs4_state_set_mode_locked and
395 * serialise the stateid update
396 */
397 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400398 if (deleg_stateid != NULL) {
399 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
400 set_bit(NFS_DELEGATED_STATE, &state->flags);
401 }
402 if (open_stateid != NULL)
403 nfs_set_open_stateid_locked(state, open_stateid, open_flags);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400404 write_sequnlock(&state->seqlock);
405 spin_lock(&state->owner->so_lock);
Trond Myklebuste7616922006-01-03 09:55:13 +0100406 update_open_stateflags(state, open_flags);
Trond Myklebustec073422005-10-20 14:22:47 -0700407 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Trond Myklebustaac00a82007-07-05 19:02:21 -0400410static void nfs4_return_incompatible_delegation(struct inode *inode, mode_t open_flags)
411{
412 struct nfs_delegation *delegation;
413
414 rcu_read_lock();
415 delegation = rcu_dereference(NFS_I(inode)->delegation);
416 if (delegation == NULL || (delegation->type & open_flags) == open_flags) {
417 rcu_read_unlock();
418 return;
419 }
420 rcu_read_unlock();
421 nfs_inode_return_delegation(inode);
422}
423
Trond Myklebust6ee41262007-07-08 14:11:36 -0400424static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400425{
426 struct nfs4_state *state = opendata->state;
427 struct nfs_inode *nfsi = NFS_I(state->inode);
428 struct nfs_delegation *delegation;
429 int open_mode = opendata->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL);
430 nfs4_stateid stateid;
431 int ret = -EAGAIN;
432
433 rcu_read_lock();
434 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400435 for (;;) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400436 if (can_open_cached(state, open_mode)) {
437 spin_lock(&state->owner->so_lock);
438 if (can_open_cached(state, open_mode)) {
439 update_open_stateflags(state, open_mode);
440 spin_unlock(&state->owner->so_lock);
441 rcu_read_unlock();
442 goto out_return_state;
443 }
444 spin_unlock(&state->owner->so_lock);
445 }
446 if (delegation == NULL)
447 break;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400448 if (!can_open_delegated(delegation, open_mode))
449 break;
450 /* Save the delegation */
451 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
452 rcu_read_unlock();
453 lock_kernel();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400454 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400455 unlock_kernel();
456 if (ret != 0)
457 goto out;
458 ret = -EAGAIN;
459 rcu_read_lock();
460 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400461 /* If no delegation, try a cached open */
Trond Myklebustaac00a82007-07-05 19:02:21 -0400462 if (delegation == NULL)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400463 continue;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400464 /* Is the delegation still valid? */
465 if (memcmp(stateid.data, delegation->stateid.data, sizeof(stateid.data)) != 0)
466 continue;
467 rcu_read_unlock();
468 update_open_stateid(state, NULL, &stateid, open_mode);
469 goto out_return_state;
470 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400471 rcu_read_unlock();
472out:
473 return ERR_PTR(ret);
474out_return_state:
475 atomic_inc(&state->count);
476 return state;
477}
478
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100479static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
480{
481 struct inode *inode;
482 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400483 struct nfs_delegation *delegation;
484 nfs4_stateid *deleg_stateid = NULL;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400485 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100486
Trond Myklebustaac00a82007-07-05 19:02:21 -0400487 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400488 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400489 goto out;
490 }
491
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400492 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100493 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400494 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100495 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400496 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500497 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400498 goto err;
499 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100500 state = nfs4_get_open_state(inode, data->owner);
501 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400502 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400503 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400504 int delegation_flags = 0;
505
Trond Myklebust003707c2007-07-05 18:07:55 -0400506 rcu_read_lock();
507 delegation = rcu_dereference(NFS_I(inode)->delegation);
508 if (delegation)
509 delegation_flags = delegation->flags;
510 rcu_read_unlock();
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400511 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
512 nfs_inode_set_delegation(state->inode,
513 data->owner->so_cred,
514 &data->o_res);
515 else
516 nfs_inode_reclaim_delegation(state->inode,
517 data->owner->so_cred,
518 &data->o_res);
519 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400520 rcu_read_lock();
521 delegation = rcu_dereference(NFS_I(inode)->delegation);
522 if (delegation != NULL)
523 deleg_stateid = &delegation->stateid;
524 update_open_stateid(state, &data->o_res.stateid, deleg_stateid, data->o_arg.open_flags);
525 rcu_read_unlock();
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100526 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400527out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100528 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400529err_put_inode:
530 iput(inode);
531err:
532 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100533}
534
Trond Myklebust864472e2006-01-03 09:55:15 +0100535static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
536{
537 struct nfs_inode *nfsi = NFS_I(state->inode);
538 struct nfs_open_context *ctx;
539
540 spin_lock(&state->inode->i_lock);
541 list_for_each_entry(ctx, &nfsi->open_files, list) {
542 if (ctx->state != state)
543 continue;
544 get_nfs_open_context(ctx);
545 spin_unlock(&state->inode->i_lock);
546 return ctx;
547 }
548 spin_unlock(&state->inode->i_lock);
549 return ERR_PTR(-ENOENT);
550}
551
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400552static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
553{
554 struct nfs4_opendata *opendata;
555
556 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
557 if (opendata == NULL)
558 return ERR_PTR(-ENOMEM);
559 opendata->state = state;
560 atomic_inc(&state->count);
561 return opendata;
562}
563
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400564static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +0100565{
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400566 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100567 int ret;
568
569 opendata->o_arg.open_flags = openflags;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400570 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
571 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
572 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100573 ret = _nfs4_proc_open(opendata);
574 if (ret != 0)
575 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400576 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400577 if (IS_ERR(newstate))
578 return PTR_ERR(newstate);
579 nfs4_close_state(&opendata->path, newstate, openflags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400580 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100581 return 0;
582}
583
584static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
585{
Trond Myklebust864472e2006-01-03 09:55:15 +0100586 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100587 int ret;
588
589 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400590 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100591 smp_rmb();
592 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400593 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100594 if (ret != 0)
595 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400596 if (newstate != state)
597 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100598 }
599 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400600 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100601 if (ret != 0)
602 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400603 if (newstate != state)
604 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100605 }
606 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400607 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100608 if (ret != 0)
609 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400610 if (newstate != state)
611 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100612 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400613 /*
614 * We may have performed cached opens for all three recoveries.
615 * Check if we need to update the current stateid.
616 */
617 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
618 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400619 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400620 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
621 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400622 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400623 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100624 return 0;
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/*
628 * OPEN_RECLAIM:
629 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400631static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400633 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +0100634 struct nfs4_opendata *opendata;
635 int delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 int status;
637
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400638 opendata = nfs4_open_recoverdata_alloc(ctx, state);
639 if (IS_ERR(opendata))
640 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100641 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
642 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400643 rcu_read_lock();
644 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
645 if (delegation != NULL && (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -0400646 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400647 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +0100648 opendata->o_arg.u.delegation_type = delegation_type;
649 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400650 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return status;
652}
653
Trond Myklebust539cd032007-06-05 11:46:42 -0400654static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 struct nfs_server *server = NFS_SERVER(state->inode);
657 struct nfs4_exception exception = { };
658 int err;
659 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400660 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000661 if (err != -NFS4ERR_DELAY)
662 break;
663 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 } while (exception.retry);
665 return err;
666}
667
Trond Myklebust864472e2006-01-03 09:55:15 +0100668static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
669{
670 struct nfs_open_context *ctx;
671 int ret;
672
673 ctx = nfs4_state_find_open_context(state);
674 if (IS_ERR(ctx))
675 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400676 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100677 put_nfs_open_context(ctx);
678 return ret;
679}
680
Trond Myklebust13437e12007-07-06 15:10:43 -0400681static 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 -0700682{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100683 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100684 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400686 opendata = nfs4_open_recoverdata_alloc(ctx, state);
687 if (IS_ERR(opendata))
688 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100689 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -0400690 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100691 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100692 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400693 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100694 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Trond Myklebust13437e12007-07-06 15:10:43 -0400697int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -0400700 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 int err;
702 do {
Trond Myklebust13437e12007-07-06 15:10:43 -0400703 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 switch (err) {
705 case 0:
706 return err;
707 case -NFS4ERR_STALE_CLIENTID:
708 case -NFS4ERR_STALE_STATEID:
709 case -NFS4ERR_EXPIRED:
710 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400711 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return err;
713 }
714 err = nfs4_handle_exception(server, err, &exception);
715 } while (exception.retry);
716 return err;
717}
718
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100719static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
720{
721 struct nfs4_opendata *data = calldata;
722
723 data->rpc_status = task->tk_status;
724 if (RPC_ASSASSINATED(task))
725 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100726 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100727 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
728 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -0500729 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +0100730 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -0400731 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100732 }
Trond Myklebust0f9f95e2007-07-08 16:19:56 -0400733 nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid);
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 Myklebust24ac23a2006-01-03 09:55:11 +0100863 nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid);
Trond Myklebust3e309912007-07-07 13:19:59 -0400864 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100865}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700866
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100867static void nfs4_open_release(void *calldata)
868{
869 struct nfs4_opendata *data = calldata;
870 struct nfs4_state *state = NULL;
871
872 /* If this request hasn't been cancelled, do nothing */
873 if (data->cancelled == 0)
874 goto out_free;
875 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400876 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100877 goto out_free;
878 /* In case we need an open_confirm, no cleanup! */
879 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
880 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100881 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400882 if (!IS_ERR(state))
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400883 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100884out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400885 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100886}
887
888static const struct rpc_call_ops nfs4_open_ops = {
889 .rpc_call_prepare = nfs4_open_prepare,
890 .rpc_call_done = nfs4_open_done,
891 .rpc_release = nfs4_open_release,
892};
893
894/*
895 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
896 */
897static int _nfs4_proc_open(struct nfs4_opendata *data)
898{
899 struct inode *dir = data->dir->d_inode;
900 struct nfs_server *server = NFS_SERVER(dir);
901 struct nfs_openargs *o_arg = &data->o_arg;
902 struct nfs_openres *o_res = &data->o_res;
903 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400904 struct rpc_message msg = {
905 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
906 .rpc_argp = o_arg,
907 .rpc_resp = o_res,
908 .rpc_cred = data->owner->so_cred,
909 };
Trond Myklebustc970aa82007-07-14 15:39:59 -0400910 struct rpc_task_setup task_setup_data = {
911 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400912 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400913 .callback_ops = &nfs4_open_ops,
914 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500915 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400916 .flags = RPC_TASK_ASYNC,
917 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100918 int status;
919
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400920 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400921 data->rpc_done = 0;
922 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400923 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -0400924 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500925 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100926 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100927 status = nfs4_wait_for_completion_rpc_task(task);
928 if (status != 0) {
929 data->cancelled = 1;
930 smp_wmb();
931 } else
932 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500933 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -0400934 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100935 return status;
936
Trond Myklebust99367812007-07-17 21:52:41 -0400937 if (o_res->fh.size == 0)
938 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
939
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400940 if (o_arg->open_flags & O_CREAT) {
941 update_changeattr(dir, &o_res->cinfo);
942 nfs_post_op_update_inode(dir, o_res->dir_attr);
943 } else
944 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100946 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100948 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -0400951 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100952 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
Trond Myklebust10afec92007-05-14 17:16:04 -0400955static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +0100956{
David Howells7539bba2006-08-22 20:06:09 -0400957 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -0400958 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +0100959
Trond Myklebust6b309542006-09-14 14:03:14 -0400960 for (;;) {
961 ret = nfs4_wait_clnt_recover(server->client, clp);
962 if (ret != 0)
963 return ret;
964 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
965 break;
Trond Myklebust58d97142006-01-03 09:55:24 +0100966 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -0400967 }
968 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +0100969}
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971/*
972 * OPEN_EXPIRED:
973 * reclaim state on the server after a network partition.
974 * Assumes caller holds the appropriate lock
975 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400976static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100978 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100979 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400981 opendata = nfs4_open_recoverdata_alloc(ctx, state);
982 if (IS_ERR(opendata))
983 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100984 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -0400985 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -0400986 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400987 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100988 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Trond Myklebust539cd032007-06-05 11:46:42 -0400991static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +0000992{
Trond Myklebust539cd032007-06-05 11:46:42 -0400993 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000994 struct nfs4_exception exception = { };
995 int err;
996
997 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400998 err = _nfs4_open_expired(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000999 if (err == -NFS4ERR_DELAY)
1000 nfs4_handle_exception(server, err, &exception);
1001 } while (exception.retry);
1002 return err;
1003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1006{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001008 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Trond Myklebust864472e2006-01-03 09:55:15 +01001010 ctx = nfs4_state_find_open_context(state);
1011 if (IS_ERR(ctx))
1012 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001013 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001014 put_nfs_open_context(ctx);
1015 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
1018/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001019 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1020 * fields corresponding to attributes that were used to store the verifier.
1021 * Make sure we clobber those fields in the later setattr call
1022 */
1023static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1024{
1025 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1026 !(sattr->ia_valid & ATTR_ATIME_SET))
1027 sattr->ia_valid |= ATTR_ATIME;
1028
1029 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1030 !(sattr->ia_valid & ATTR_MTIME_SET))
1031 sattr->ia_valid |= ATTR_MTIME;
1032}
1033
1034/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001035 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
Trond Myklebustad389da2007-06-05 12:30:00 -04001037static 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 -07001038{
1039 struct nfs4_state_owner *sp;
1040 struct nfs4_state *state = NULL;
1041 struct nfs_server *server = NFS_SERVER(dir);
David Howells7539bba2006-08-22 20:06:09 -04001042 struct nfs_client *clp = server->nfs_client;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001043 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001044 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 status = -ENOMEM;
1048 if (!(sp = nfs4_get_state_owner(server, cred))) {
1049 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1050 goto out_err;
1051 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001052 status = nfs4_recover_expired_lease(server);
1053 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001054 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001055 if (path->dentry->d_inode != NULL)
1056 nfs4_return_incompatible_delegation(path->dentry->d_inode, flags & (FMODE_READ|FMODE_WRITE));
Trond Myklebust58d97142006-01-03 09:55:24 +01001057 down_read(&clp->cl_sem);
1058 status = -ENOMEM;
Trond Myklebustad389da2007-06-05 12:30:00 -04001059 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001060 if (opendata == NULL)
Trond Myklebust76723de2006-09-15 08:11:51 -04001061 goto err_release_rwsem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Trond Myklebustaac00a82007-07-05 19:02:21 -04001063 if (path->dentry->d_inode != NULL)
1064 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1065
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001066 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001068 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001070 if (opendata->o_arg.open_flags & O_EXCL)
1071 nfs4_exclusive_attrset(opendata, sattr);
1072
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001073 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001074 status = PTR_ERR(state);
1075 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001076 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001077 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 nfs4_put_state_owner(sp);
1079 up_read(&clp->cl_sem);
1080 *res = state;
1081 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001082err_opendata_put:
1083 nfs4_opendata_put(opendata);
Trond Myklebust76723de2006-09-15 08:11:51 -04001084err_release_rwsem:
1085 up_read(&clp->cl_sem);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001086err_put_state_owner:
1087 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 *res = NULL;
1090 return status;
1091}
1092
1093
Trond Myklebustad389da2007-06-05 12:30:00 -04001094static 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 -07001095{
1096 struct nfs4_exception exception = { };
1097 struct nfs4_state *res;
1098 int status;
1099
1100 do {
Trond Myklebustad389da2007-06-05 12:30:00 -04001101 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (status == 0)
1103 break;
1104 /* NOTE: BAD_SEQID means the server and client disagree about the
1105 * book-keeping w.r.t. state-changing operations
1106 * (OPEN/CLOSE/LOCK/LOCKU...)
1107 * It is actually a sign of a bug on the client or on the server.
1108 *
1109 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001110 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * have unhashed the old state_owner for us, and that we can
1112 * therefore safely retry using a new one. We should still warn
1113 * the user though...
1114 */
1115 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001116 printk(KERN_WARNING "NFS: v4 server %s "
1117 " returned a bad sequence-id error!\n",
1118 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 exception.retry = 1;
1120 continue;
1121 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001122 /*
1123 * BAD_STATEID on OPEN means that the server cancelled our
1124 * state before it received the OPEN_CONFIRM.
1125 * Recover by retrying the request as per the discussion
1126 * on Page 181 of RFC3530.
1127 */
1128 if (status == -NFS4ERR_BAD_STATEID) {
1129 exception.retry = 1;
1130 continue;
1131 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001132 if (status == -EAGAIN) {
1133 /* We must have found a delegation */
1134 exception.retry = 1;
1135 continue;
1136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1138 status, &exception));
1139 } while (exception.retry);
1140 return res;
1141}
1142
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001143static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1144 struct iattr *sattr, 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 = {
1158 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1159 .rpc_argp = &arg,
1160 .rpc_resp = &res,
1161 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001162 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001163 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Trond Myklebust0e574af2005-10-27 22:12:38 -04001165 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001167 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1168 /* Use that stateid */
1169 } else if (state != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 msg.rpc_cred = state->owner->so_cred;
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 Myklebust3e4f6292006-03-20 13:44:46 -05001181static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1182 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001184 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 struct nfs4_exception exception = { };
1186 int err;
1187 do {
1188 err = nfs4_handle_exception(server,
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001189 _nfs4_do_setattr(inode, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 &exception);
1191 } while (exception.retry);
1192 return err;
1193}
1194
1195struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001196 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 struct inode *inode;
1198 struct nfs4_state *state;
1199 struct nfs_closeargs arg;
1200 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001201 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001202 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203};
1204
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001205static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001206{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001207 struct nfs4_closedata *calldata = data;
1208 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001209
1210 nfs4_put_open_state(calldata->state);
1211 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001212 nfs4_put_state_owner(sp);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001213 dput(calldata->path.dentry);
1214 mntput(calldata->path.mnt);
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 */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001229 nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 switch (task->tk_status) {
1231 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001232 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001233 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 break;
1235 case -NFS4ERR_STALE_STATEID:
1236 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 break;
1238 default:
1239 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1240 rpc_restart_call(task);
1241 return;
1242 }
1243 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001244 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001247static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001249 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001250 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001251 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001252
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001253 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001254 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001255
Trond Myklebust003707c2007-07-05 18:07:55 -04001256 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001257 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001258 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001259 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001260 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001261 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1262 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1263 }
1264 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001265 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1266 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1267 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001268 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001269 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001270 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001271 /* Note: exit _without_ calling nfs4_close_done */
1272 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001273 return;
1274 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001275 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001276 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001277 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust45328c32007-07-26 17:47:34 -04001278 calldata->arg.open_flags = FMODE_READ;
1279 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001280 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust45328c32007-07-26 17:47:34 -04001281 calldata->arg.open_flags = FMODE_WRITE;
1282 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001283 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001284 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
1286
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001287static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001288 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001289 .rpc_call_done = nfs4_close_done,
1290 .rpc_release = nfs4_free_closedata,
1291};
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293/*
1294 * It is possible for data to be read/written from a mem-mapped file
1295 * after the sys_close call (which hits the vfs layer as a flush).
1296 * This means that we can't safely call nfsv4 close on a file until
1297 * the inode is cleared. This in turn means that we are not good
1298 * NFSv4 citizens - we do not indicate to the server to update the file's
1299 * share state even when we are done with one of the three share
1300 * stateid's in the inode.
1301 *
1302 * NOTE: Caller must be holding the sp->so_owner semaphore!
1303 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001304int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001306 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001308 struct nfs4_state_owner *sp = state->owner;
1309 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001310 struct rpc_message msg = {
1311 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1312 .rpc_cred = state->owner->so_cred,
1313 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001314 struct rpc_task_setup task_setup_data = {
1315 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001316 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001317 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001318 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001319 .flags = RPC_TASK_ASYNC,
1320 };
Trond Myklebust95121352005-10-18 14:20:12 -07001321 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Trond Myklebust95121352005-10-18 14:20:12 -07001323 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001325 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001326 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001328 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001329 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001331 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001332 if (calldata->arg.seqid == NULL)
1333 goto out_free_calldata;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001334 calldata->arg.bitmask = server->attr_bitmask;
1335 calldata->res.fattr = &calldata->fattr;
1336 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)) {
1581 dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name);
1582 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 rpc_cred *cred;
1653 struct inode *inode = dentry->d_inode;
Trond Myklebustd5308382005-11-04 15:33:38 -05001654 struct nfs_open_context *ctx;
1655 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 int status;
1657
Trond Myklebust0e574af2005-10-27 22:12:38 -04001658 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Trond Myklebust98a8e322008-03-12 12:25:28 -04001660 cred = rpc_lookup_cred();
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001661 if (IS_ERR(cred))
1662 return PTR_ERR(cred);
Trond Myklebustd5308382005-11-04 15:33:38 -05001663
1664 /* Search for an existing open(O_WRITE) file */
1665 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1666 if (ctx != NULL)
1667 state = ctx->state;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001668
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001669 status = nfs4_do_setattr(inode, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001670 if (status == 0)
1671 nfs_setattr_update_inode(inode, sattr);
Trond Myklebustd5308382005-11-04 15:33:38 -05001672 if (ctx != NULL)
1673 put_nfs_open_context(ctx);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001674 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return status;
1676}
1677
Trond Myklebust56659e92007-07-17 21:52:39 -04001678static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
1679 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04001680 struct nfs_fattr *fattr)
1681{
1682 int status;
1683 struct nfs4_lookup_arg args = {
1684 .bitmask = server->attr_bitmask,
1685 .dir_fh = dirfh,
1686 .name = name,
1687 };
1688 struct nfs4_lookup_res res = {
1689 .server = server,
1690 .fattr = fattr,
1691 .fh = fhandle,
1692 };
1693 struct rpc_message msg = {
1694 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1695 .rpc_argp = &args,
1696 .rpc_resp = &res,
1697 };
1698
1699 nfs_fattr_init(fattr);
1700
1701 dprintk("NFS call lookupfh %s\n", name->name);
1702 status = rpc_call_sync(server->client, &msg, 0);
1703 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04001704 return status;
1705}
1706
1707static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1708 struct qstr *name, struct nfs_fh *fhandle,
1709 struct nfs_fattr *fattr)
1710{
1711 struct nfs4_exception exception = { };
1712 int err;
1713 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04001714 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1715 /* FIXME: !!!! */
1716 if (err == -NFS4ERR_MOVED) {
1717 err = -EREMOTE;
1718 break;
1719 }
1720 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04001721 } while (exception.retry);
1722 return err;
1723}
1724
Trond Myklebust56659e92007-07-17 21:52:39 -04001725static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1727{
Trond Myklebust4e56e082007-07-01 18:13:52 -04001728 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04001731 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001732 if (status == -NFS4ERR_MOVED)
1733 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 dprintk("NFS reply lookup: %d\n", status);
1735 return status;
1736}
1737
1738static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1739{
1740 struct nfs4_exception exception = { };
1741 int err;
1742 do {
1743 err = nfs4_handle_exception(NFS_SERVER(dir),
1744 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1745 &exception);
1746 } while (exception.retry);
1747 return err;
1748}
1749
1750static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1751{
Trond Myklebust76b32992007-08-10 17:45:11 -04001752 struct nfs_server *server = NFS_SERVER(inode);
1753 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 struct nfs4_accessargs args = {
1755 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04001756 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 };
Trond Myklebust76b32992007-08-10 17:45:11 -04001758 struct nfs4_accessres res = {
1759 .server = server,
1760 .fattr = &fattr,
1761 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 struct rpc_message msg = {
1763 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1764 .rpc_argp = &args,
1765 .rpc_resp = &res,
1766 .rpc_cred = entry->cred,
1767 };
1768 int mode = entry->mask;
1769 int status;
1770
1771 /*
1772 * Determine which access bits we want to ask for...
1773 */
1774 if (mode & MAY_READ)
1775 args.access |= NFS4_ACCESS_READ;
1776 if (S_ISDIR(inode->i_mode)) {
1777 if (mode & MAY_WRITE)
1778 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1779 if (mode & MAY_EXEC)
1780 args.access |= NFS4_ACCESS_LOOKUP;
1781 } else {
1782 if (mode & MAY_WRITE)
1783 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1784 if (mode & MAY_EXEC)
1785 args.access |= NFS4_ACCESS_EXECUTE;
1786 }
Trond Myklebust76b32992007-08-10 17:45:11 -04001787 nfs_fattr_init(&fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1789 if (!status) {
1790 entry->mask = 0;
1791 if (res.access & NFS4_ACCESS_READ)
1792 entry->mask |= MAY_READ;
1793 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1794 entry->mask |= MAY_WRITE;
1795 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1796 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04001797 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799 return status;
1800}
1801
1802static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1803{
1804 struct nfs4_exception exception = { };
1805 int err;
1806 do {
1807 err = nfs4_handle_exception(NFS_SERVER(inode),
1808 _nfs4_proc_access(inode, entry),
1809 &exception);
1810 } while (exception.retry);
1811 return err;
1812}
1813
1814/*
1815 * TODO: For the time being, we don't try to get any attributes
1816 * along with any of the zero-copy operations READ, READDIR,
1817 * READLINK, WRITE.
1818 *
1819 * In the case of the first three, we want to put the GETATTR
1820 * after the read-type operation -- this is because it is hard
1821 * to predict the length of a GETATTR response in v4, and thus
1822 * align the READ data correctly. This means that the GETATTR
1823 * may end up partially falling into the page cache, and we should
1824 * shift it into the 'tail' of the xdr_buf before processing.
1825 * To do this efficiently, we need to know the total length
1826 * of data received, which doesn't seem to be available outside
1827 * of the RPC layer.
1828 *
1829 * In the case of WRITE, we also want to put the GETATTR after
1830 * the operation -- in this case because we want to make sure
1831 * we get the post-operation mtime and size. This means that
1832 * we can't use xdr_encode_pages() as written: we need a variant
1833 * of it which would leave room in the 'tail' iovec.
1834 *
1835 * Both of these changes to the XDR layer would in fact be quite
1836 * minor, but I decided to leave them for a subsequent patch.
1837 */
1838static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1839 unsigned int pgbase, unsigned int pglen)
1840{
1841 struct nfs4_readlink args = {
1842 .fh = NFS_FH(inode),
1843 .pgbase = pgbase,
1844 .pglen = pglen,
1845 .pages = &page,
1846 };
1847 struct rpc_message msg = {
1848 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1849 .rpc_argp = &args,
1850 .rpc_resp = NULL,
1851 };
1852
1853 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1854}
1855
1856static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1857 unsigned int pgbase, unsigned int pglen)
1858{
1859 struct nfs4_exception exception = { };
1860 int err;
1861 do {
1862 err = nfs4_handle_exception(NFS_SERVER(inode),
1863 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1864 &exception);
1865 } while (exception.retry);
1866 return err;
1867}
1868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869/*
1870 * Got race?
1871 * We will need to arrange for the VFS layer to provide an atomic open.
1872 * Until then, this create/open method is prone to inefficiency and race
1873 * conditions due to the lookup, create, and open VFS calls from sys_open()
1874 * placed on the wire.
1875 *
1876 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1877 * The file will be opened again in the subsequent VFS open call
1878 * (nfs4_proc_file_open).
1879 *
1880 * The open for read will just hang around to be used by any process that
1881 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1882 */
1883
1884static int
1885nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07001886 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Trond Myklebustad389da2007-06-05 12:30:00 -04001888 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001889 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001890 .dentry = dentry,
1891 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 struct nfs4_state *state;
1893 struct rpc_cred *cred;
1894 int status = 0;
1895
Trond Myklebust98a8e322008-03-12 12:25:28 -04001896 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (IS_ERR(cred)) {
1898 status = PTR_ERR(cred);
1899 goto out;
1900 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001901 state = nfs4_do_open(dir, &path, flags, sattr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 put_rpccred(cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001903 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (IS_ERR(state)) {
1905 status = PTR_ERR(state);
1906 goto out;
1907 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001908 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04001909 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (flags & O_EXCL) {
1911 struct nfs_fattr fattr;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001912 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001913 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04001914 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001915 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001916 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001917 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001918 status = nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001919 else
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001920 nfs4_close_sync(&path, state, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921out:
1922 return status;
1923}
1924
1925static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1926{
Trond Myklebust16e42952005-10-27 22:12:44 -04001927 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001928 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001930 .name.len = name->len,
1931 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04001932 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001934 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04001935 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04001936 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001938 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1939 .rpc_argp = &args,
1940 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 };
1942 int status;
1943
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001944 nfs_fattr_init(&res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04001945 status = rpc_call_sync(server->client, &msg, 0);
1946 if (status == 0) {
1947 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001948 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04001949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return status;
1951}
1952
1953static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1954{
1955 struct nfs4_exception exception = { };
1956 int err;
1957 do {
1958 err = nfs4_handle_exception(NFS_SERVER(dir),
1959 _nfs4_proc_remove(dir, name),
1960 &exception);
1961 } while (exception.retry);
1962 return err;
1963}
1964
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001965static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001967 struct nfs_server *server = NFS_SERVER(dir);
1968 struct nfs_removeargs *args = msg->rpc_argp;
1969 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001971 args->bitmask = server->attr_bitmask;
1972 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
1975
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001976static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001978 struct nfs_removeres *res = task->tk_msg.rpc_resp;
1979
1980 if (nfs4_async_handle_error(task, res->server) == -EAGAIN)
1981 return 0;
1982 update_changeattr(dir, &res->cinfo);
1983 nfs_post_op_update_inode(dir, &res->dir_attr);
1984 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985}
1986
1987static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1988 struct inode *new_dir, struct qstr *new_name)
1989{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001990 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 struct nfs4_rename_arg arg = {
1992 .old_dir = NFS_FH(old_dir),
1993 .new_dir = NFS_FH(new_dir),
1994 .old_name = old_name,
1995 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001996 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001998 struct nfs_fattr old_fattr, new_fattr;
1999 struct nfs4_rename_res res = {
2000 .server = server,
2001 .old_fattr = &old_fattr,
2002 .new_fattr = &new_fattr,
2003 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 struct rpc_message msg = {
2005 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2006 .rpc_argp = &arg,
2007 .rpc_resp = &res,
2008 };
2009 int status;
2010
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002011 nfs_fattr_init(res.old_fattr);
2012 nfs_fattr_init(res.new_fattr);
2013 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 if (!status) {
2016 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002017 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002019 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021 return status;
2022}
2023
2024static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2025 struct inode *new_dir, struct qstr *new_name)
2026{
2027 struct nfs4_exception exception = { };
2028 int err;
2029 do {
2030 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2031 _nfs4_proc_rename(old_dir, old_name,
2032 new_dir, new_name),
2033 &exception);
2034 } while (exception.retry);
2035 return err;
2036}
2037
2038static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2039{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002040 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 struct nfs4_link_arg arg = {
2042 .fh = NFS_FH(inode),
2043 .dir_fh = NFS_FH(dir),
2044 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002045 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002047 struct nfs_fattr fattr, dir_attr;
2048 struct nfs4_link_res res = {
2049 .server = server,
2050 .fattr = &fattr,
2051 .dir_attr = &dir_attr,
2052 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 struct rpc_message msg = {
2054 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2055 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002056 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 };
2058 int status;
2059
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002060 nfs_fattr_init(res.fattr);
2061 nfs_fattr_init(res.dir_attr);
2062 status = rpc_call_sync(server->client, &msg, 0);
2063 if (!status) {
2064 update_changeattr(dir, &res.cinfo);
2065 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002066 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069 return status;
2070}
2071
2072static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2073{
2074 struct nfs4_exception exception = { };
2075 int err;
2076 do {
2077 err = nfs4_handle_exception(NFS_SERVER(inode),
2078 _nfs4_proc_link(inode, dir, name),
2079 &exception);
2080 } while (exception.retry);
2081 return err;
2082}
2083
Chuck Lever4f390c12006-08-22 20:06:22 -04002084static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002085 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 struct nfs_server *server = NFS_SERVER(dir);
Chuck Lever4f390c12006-08-22 20:06:22 -04002088 struct nfs_fh fhandle;
2089 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 struct nfs4_create_arg arg = {
2091 .dir_fh = NFS_FH(dir),
2092 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002093 .name = &dentry->d_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 .attrs = sattr,
2095 .ftype = NF4LNK,
2096 .bitmask = server->attr_bitmask,
2097 };
2098 struct nfs4_create_res res = {
2099 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002100 .fh = &fhandle,
2101 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002102 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 };
2104 struct rpc_message msg = {
2105 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK],
2106 .rpc_argp = &arg,
2107 .rpc_resp = &res,
2108 };
2109 int status;
2110
Chuck Lever94a6d752006-08-22 20:06:23 -04002111 if (len > NFS4_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 return -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -04002113
Chuck Lever94a6d752006-08-22 20:06:23 -04002114 arg.u.symlink.pages = &page;
2115 arg.u.symlink.len = len;
Chuck Lever4f390c12006-08-22 20:06:22 -04002116 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002117 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Chuck Lever4f390c12006-08-22 20:06:22 -04002120 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 update_changeattr(dir, &res.dir_cinfo);
Chuck Lever4f390c12006-08-22 20:06:22 -04002122 nfs_post_op_update_inode(dir, res.dir_fattr);
2123 status = nfs_instantiate(dentry, &fhandle, &fattr);
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return status;
2126}
2127
Chuck Lever4f390c12006-08-22 20:06:22 -04002128static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002129 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 struct nfs4_exception exception = { };
2132 int err;
2133 do {
2134 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002135 _nfs4_proc_symlink(dir, dentry, page,
2136 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 &exception);
2138 } while (exception.retry);
2139 return err;
2140}
2141
2142static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2143 struct iattr *sattr)
2144{
2145 struct nfs_server *server = NFS_SERVER(dir);
2146 struct nfs_fh fhandle;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002147 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 struct nfs4_create_arg arg = {
2149 .dir_fh = NFS_FH(dir),
2150 .server = server,
2151 .name = &dentry->d_name,
2152 .attrs = sattr,
2153 .ftype = NF4DIR,
2154 .bitmask = server->attr_bitmask,
2155 };
2156 struct nfs4_create_res res = {
2157 .server = server,
2158 .fh = &fhandle,
2159 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002160 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 };
2162 struct rpc_message msg = {
2163 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2164 .rpc_argp = &arg,
2165 .rpc_resp = &res,
2166 };
2167 int status;
2168
Trond Myklebust0e574af2005-10-27 22:12:38 -04002169 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002170 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
2172 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2173 if (!status) {
2174 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002175 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 status = nfs_instantiate(dentry, &fhandle, &fattr);
2177 }
2178 return status;
2179}
2180
2181static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2182 struct iattr *sattr)
2183{
2184 struct nfs4_exception exception = { };
2185 int err;
2186 do {
2187 err = nfs4_handle_exception(NFS_SERVER(dir),
2188 _nfs4_proc_mkdir(dir, dentry, sattr),
2189 &exception);
2190 } while (exception.retry);
2191 return err;
2192}
2193
2194static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2195 u64 cookie, struct page *page, unsigned int count, int plus)
2196{
2197 struct inode *dir = dentry->d_inode;
2198 struct nfs4_readdir_arg args = {
2199 .fh = NFS_FH(dir),
2200 .pages = &page,
2201 .pgbase = 0,
2202 .count = count,
2203 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2204 };
2205 struct nfs4_readdir_res res;
2206 struct rpc_message msg = {
2207 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2208 .rpc_argp = &args,
2209 .rpc_resp = &res,
2210 .rpc_cred = cred,
2211 };
2212 int status;
2213
Trond Myklebusteadf4592005-06-22 17:16:39 +00002214 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__,
2215 dentry->d_parent->d_name.name,
2216 dentry->d_name.name,
2217 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2219 res.pgbase = args.pgbase;
2220 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2221 if (status == 0)
2222 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002223
2224 nfs_invalidate_atime(dir);
2225
Trond Myklebusteadf4592005-06-22 17:16:39 +00002226 dprintk("%s: returns %d\n", __FUNCTION__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 return status;
2228}
2229
2230static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2231 u64 cookie, struct page *page, unsigned int count, int plus)
2232{
2233 struct nfs4_exception exception = { };
2234 int err;
2235 do {
2236 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2237 _nfs4_proc_readdir(dentry, cred, cookie,
2238 page, count, plus),
2239 &exception);
2240 } while (exception.retry);
2241 return err;
2242}
2243
2244static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2245 struct iattr *sattr, dev_t rdev)
2246{
2247 struct nfs_server *server = NFS_SERVER(dir);
2248 struct nfs_fh fh;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002249 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 struct nfs4_create_arg arg = {
2251 .dir_fh = NFS_FH(dir),
2252 .server = server,
2253 .name = &dentry->d_name,
2254 .attrs = sattr,
2255 .bitmask = server->attr_bitmask,
2256 };
2257 struct nfs4_create_res res = {
2258 .server = server,
2259 .fh = &fh,
2260 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002261 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 };
2263 struct rpc_message msg = {
2264 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2265 .rpc_argp = &arg,
2266 .rpc_resp = &res,
2267 };
2268 int status;
2269 int mode = sattr->ia_mode;
2270
Trond Myklebust0e574af2005-10-27 22:12:38 -04002271 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002272 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
2274 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2275 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2276 if (S_ISFIFO(mode))
2277 arg.ftype = NF4FIFO;
2278 else if (S_ISBLK(mode)) {
2279 arg.ftype = NF4BLK;
2280 arg.u.device.specdata1 = MAJOR(rdev);
2281 arg.u.device.specdata2 = MINOR(rdev);
2282 }
2283 else if (S_ISCHR(mode)) {
2284 arg.ftype = NF4CHR;
2285 arg.u.device.specdata1 = MAJOR(rdev);
2286 arg.u.device.specdata2 = MINOR(rdev);
2287 }
2288 else
2289 arg.ftype = NF4SOCK;
2290
2291 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2292 if (status == 0) {
2293 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002294 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 status = nfs_instantiate(dentry, &fh, &fattr);
2296 }
2297 return status;
2298}
2299
2300static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2301 struct iattr *sattr, dev_t rdev)
2302{
2303 struct nfs4_exception exception = { };
2304 int err;
2305 do {
2306 err = nfs4_handle_exception(NFS_SERVER(dir),
2307 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2308 &exception);
2309 } while (exception.retry);
2310 return err;
2311}
2312
2313static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2314 struct nfs_fsstat *fsstat)
2315{
2316 struct nfs4_statfs_arg args = {
2317 .fh = fhandle,
2318 .bitmask = server->attr_bitmask,
2319 };
2320 struct rpc_message msg = {
2321 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2322 .rpc_argp = &args,
2323 .rpc_resp = fsstat,
2324 };
2325
Trond Myklebust0e574af2005-10-27 22:12:38 -04002326 nfs_fattr_init(fsstat->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 return rpc_call_sync(server->client, &msg, 0);
2328}
2329
2330static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2331{
2332 struct nfs4_exception exception = { };
2333 int err;
2334 do {
2335 err = nfs4_handle_exception(server,
2336 _nfs4_proc_statfs(server, fhandle, fsstat),
2337 &exception);
2338 } while (exception.retry);
2339 return err;
2340}
2341
2342static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2343 struct nfs_fsinfo *fsinfo)
2344{
2345 struct nfs4_fsinfo_arg args = {
2346 .fh = fhandle,
2347 .bitmask = server->attr_bitmask,
2348 };
2349 struct rpc_message msg = {
2350 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2351 .rpc_argp = &args,
2352 .rpc_resp = fsinfo,
2353 };
2354
2355 return rpc_call_sync(server->client, &msg, 0);
2356}
2357
2358static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2359{
2360 struct nfs4_exception exception = { };
2361 int err;
2362
2363 do {
2364 err = nfs4_handle_exception(server,
2365 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2366 &exception);
2367 } while (exception.retry);
2368 return err;
2369}
2370
2371static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2372{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002373 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2375}
2376
2377static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2378 struct nfs_pathconf *pathconf)
2379{
2380 struct nfs4_pathconf_arg args = {
2381 .fh = fhandle,
2382 .bitmask = server->attr_bitmask,
2383 };
2384 struct rpc_message msg = {
2385 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2386 .rpc_argp = &args,
2387 .rpc_resp = pathconf,
2388 };
2389
2390 /* None of the pathconf attributes are mandatory to implement */
2391 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2392 memset(pathconf, 0, sizeof(*pathconf));
2393 return 0;
2394 }
2395
Trond Myklebust0e574af2005-10-27 22:12:38 -04002396 nfs_fattr_init(pathconf->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 return rpc_call_sync(server->client, &msg, 0);
2398}
2399
2400static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2401 struct nfs_pathconf *pathconf)
2402{
2403 struct nfs4_exception exception = { };
2404 int err;
2405
2406 do {
2407 err = nfs4_handle_exception(server,
2408 _nfs4_proc_pathconf(server, fhandle, pathconf),
2409 &exception);
2410 } while (exception.retry);
2411 return err;
2412}
2413
Trond Myklebustec06c092006-03-20 13:44:27 -05002414static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
Trond Myklebustec06c092006-03-20 13:44:27 -05002416 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
Trond Myklebustec06c092006-03-20 13:44:27 -05002418 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002420 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002422
2423 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002425 renew_lease(server, data->timestamp);
2426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002429static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002432 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Trond Myklebust788e7a82006-03-20 13:44:27 -05002435static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 struct inode *inode = data->inode;
2438
2439 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2440 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002441 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002443 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04002445 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002446 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
2449
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002450static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002452 struct nfs_server *server = NFS_SERVER(data->inode);
2453
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002454 data->args.bitmask = server->attr_bitmask;
2455 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 data->timestamp = jiffies;
2457
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002458 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
2460
Trond Myklebust788e7a82006-03-20 13:44:27 -05002461static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 struct inode *inode = data->inode;
2464
2465 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2466 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002467 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04002469 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002470 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002473static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
Trond Myklebust788e7a82006-03-20 13:44:27 -05002475 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002477 data->args.bitmask = server->attr_bitmask;
2478 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002479 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
2482/*
2483 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2484 * standalone procedure for queueing an asynchronous RENEW.
2485 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002486static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
David Howellsadfa6f92006-08-22 20:06:08 -04002488 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002489 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
2491 if (task->tk_status < 0) {
2492 switch (task->tk_status) {
2493 case -NFS4ERR_STALE_CLIENTID:
2494 case -NFS4ERR_EXPIRED:
2495 case -NFS4ERR_CB_PATH_DOWN:
2496 nfs4_schedule_state_recovery(clp);
2497 }
2498 return;
2499 }
2500 spin_lock(&clp->cl_lock);
2501 if (time_before(clp->cl_last_renewal,timestamp))
2502 clp->cl_last_renewal = timestamp;
2503 spin_unlock(&clp->cl_lock);
2504}
2505
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002506static const struct rpc_call_ops nfs4_renew_ops = {
2507 .rpc_call_done = nfs4_renew_done,
2508};
2509
David Howellsadfa6f92006-08-22 20:06:08 -04002510int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
2512 struct rpc_message msg = {
2513 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2514 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002515 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 };
2517
2518 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002519 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
2521
David Howellsadfa6f92006-08-22 20:06:08 -04002522int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523{
2524 struct rpc_message msg = {
2525 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2526 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002527 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 };
2529 unsigned long now = jiffies;
2530 int status;
2531
2532 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2533 if (status < 0)
2534 return status;
2535 spin_lock(&clp->cl_lock);
2536 if (time_before(clp->cl_last_renewal,now))
2537 clp->cl_last_renewal = now;
2538 spin_unlock(&clp->cl_lock);
2539 return 0;
2540}
2541
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002542static inline int nfs4_server_supports_acls(struct nfs_server *server)
2543{
2544 return (server->caps & NFS_CAP_ACLS)
2545 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2546 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2547}
2548
2549/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2550 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2551 * the stack.
2552 */
2553#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2554
2555static void buf_to_pages(const void *buf, size_t buflen,
2556 struct page **pages, unsigned int *pgbase)
2557{
2558 const void *p = buf;
2559
2560 *pgbase = offset_in_page(buf);
2561 p -= *pgbase;
2562 while (p < buf + buflen) {
2563 *(pages++) = virt_to_page(p);
2564 p += PAGE_CACHE_SIZE;
2565 }
2566}
2567
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002568struct nfs4_cached_acl {
2569 int cached;
2570 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002571 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002572};
2573
2574static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002575{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002576 struct nfs_inode *nfsi = NFS_I(inode);
2577
2578 spin_lock(&inode->i_lock);
2579 kfree(nfsi->nfs4_acl);
2580 nfsi->nfs4_acl = acl;
2581 spin_unlock(&inode->i_lock);
2582}
2583
2584static void nfs4_zap_acl_attr(struct inode *inode)
2585{
2586 nfs4_set_cached_acl(inode, NULL);
2587}
2588
2589static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2590{
2591 struct nfs_inode *nfsi = NFS_I(inode);
2592 struct nfs4_cached_acl *acl;
2593 int ret = -ENOENT;
2594
2595 spin_lock(&inode->i_lock);
2596 acl = nfsi->nfs4_acl;
2597 if (acl == NULL)
2598 goto out;
2599 if (buf == NULL) /* user is just asking for length */
2600 goto out_len;
2601 if (acl->cached == 0)
2602 goto out;
2603 ret = -ERANGE; /* see getxattr(2) man page */
2604 if (acl->len > buflen)
2605 goto out;
2606 memcpy(buf, acl->data, acl->len);
2607out_len:
2608 ret = acl->len;
2609out:
2610 spin_unlock(&inode->i_lock);
2611 return ret;
2612}
2613
2614static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2615{
2616 struct nfs4_cached_acl *acl;
2617
2618 if (buf && acl_len <= PAGE_SIZE) {
2619 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2620 if (acl == NULL)
2621 goto out;
2622 acl->cached = 1;
2623 memcpy(acl->data, buf, acl_len);
2624 } else {
2625 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2626 if (acl == NULL)
2627 goto out;
2628 acl->cached = 0;
2629 }
2630 acl->len = acl_len;
2631out:
2632 nfs4_set_cached_acl(inode, acl);
2633}
2634
Trond Myklebust16b42892006-08-24 12:27:15 -04002635static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002636{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002637 struct page *pages[NFS4ACL_MAXPAGES];
2638 struct nfs_getaclargs args = {
2639 .fh = NFS_FH(inode),
2640 .acl_pages = pages,
2641 .acl_len = buflen,
2642 };
2643 size_t resp_len = buflen;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002644 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002645 struct rpc_message msg = {
2646 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2647 .rpc_argp = &args,
2648 .rpc_resp = &resp_len,
2649 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002650 struct page *localpage = NULL;
2651 int ret;
2652
2653 if (buflen < PAGE_SIZE) {
2654 /* As long as we're doing a round trip to the server anyway,
2655 * let's be prepared for a page of acl data. */
2656 localpage = alloc_page(GFP_KERNEL);
2657 resp_buf = page_address(localpage);
2658 if (localpage == NULL)
2659 return -ENOMEM;
2660 args.acl_pages[0] = localpage;
2661 args.acl_pgbase = 0;
J. Bruce Fields1d95db82005-10-13 16:54:32 -04002662 resp_len = args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002663 } else {
2664 resp_buf = buf;
2665 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2666 }
2667 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2668 if (ret)
2669 goto out_free;
2670 if (resp_len > args.acl_len)
2671 nfs4_write_cached_acl(inode, NULL, resp_len);
2672 else
2673 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2674 if (buf) {
2675 ret = -ERANGE;
2676 if (resp_len > buflen)
2677 goto out_free;
2678 if (localpage)
2679 memcpy(buf, resp_buf, resp_len);
2680 }
2681 ret = resp_len;
2682out_free:
2683 if (localpage)
2684 __free_page(localpage);
2685 return ret;
2686}
2687
Trond Myklebust16b42892006-08-24 12:27:15 -04002688static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2689{
2690 struct nfs4_exception exception = { };
2691 ssize_t ret;
2692 do {
2693 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2694 if (ret >= 0)
2695 break;
2696 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2697 } while (exception.retry);
2698 return ret;
2699}
2700
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002701static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2702{
2703 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002704 int ret;
2705
2706 if (!nfs4_server_supports_acls(server))
2707 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002708 ret = nfs_revalidate_inode(server, inode);
2709 if (ret < 0)
2710 return ret;
2711 ret = nfs4_read_cached_acl(inode, buf, buflen);
2712 if (ret != -ENOENT)
2713 return ret;
2714 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002715}
2716
Trond Myklebust16b42892006-08-24 12:27:15 -04002717static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002718{
2719 struct nfs_server *server = NFS_SERVER(inode);
2720 struct page *pages[NFS4ACL_MAXPAGES];
2721 struct nfs_setaclargs arg = {
2722 .fh = NFS_FH(inode),
2723 .acl_pages = pages,
2724 .acl_len = buflen,
2725 };
2726 struct rpc_message msg = {
2727 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2728 .rpc_argp = &arg,
2729 .rpc_resp = NULL,
2730 };
2731 int ret;
2732
2733 if (!nfs4_server_supports_acls(server))
2734 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002735 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002736 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
David Howells1f163412006-08-22 20:06:11 -04002737 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
J. Bruce Fields08efa202007-05-01 10:56:25 -04002738 nfs_zap_caches(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002739 return ret;
2740}
2741
Trond Myklebust16b42892006-08-24 12:27:15 -04002742static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2743{
2744 struct nfs4_exception exception = { };
2745 int err;
2746 do {
2747 err = nfs4_handle_exception(NFS_SERVER(inode),
2748 __nfs4_proc_set_acl(inode, buf, buflen),
2749 &exception);
2750 } while (exception.retry);
2751 return err;
2752}
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754static int
Trond Myklebustfaf5f492005-10-18 14:20:15 -07002755nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756{
David Howells7539bba2006-08-22 20:06:09 -04002757 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759 if (!clp || task->tk_status >= 0)
2760 return 0;
2761 switch(task->tk_status) {
2762 case -NFS4ERR_STALE_CLIENTID:
2763 case -NFS4ERR_STALE_STATEID:
2764 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05002765 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 nfs4_schedule_state_recovery(clp);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002767 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05002768 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 task->tk_status = 0;
2770 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 case -NFS4ERR_DELAY:
Chuck Lever006ea732006-03-20 13:44:14 -05002772 nfs_inc_server_stats((struct nfs_server *) server,
2773 NFSIOS_DELAY);
2774 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2776 task->tk_status = 0;
2777 return -EAGAIN;
2778 case -NFS4ERR_OLD_STATEID:
2779 task->tk_status = 0;
2780 return -EAGAIN;
2781 }
2782 task->tk_status = nfs4_map_errors(task->tk_status);
2783 return 0;
2784}
2785
Matthew Wilcox150030b2007-12-06 16:24:39 -05002786static int nfs4_wait_bit_killable(void *word)
Trond Myklebust433fbe42006-01-03 09:55:22 +01002787{
Matthew Wilcox150030b2007-12-06 16:24:39 -05002788 if (fatal_signal_pending(current))
Trond Myklebust433fbe42006-01-03 09:55:22 +01002789 return -ERESTARTSYS;
2790 schedule();
2791 return 0;
2792}
2793
David Howellsadfa6f92006-08-22 20:06:08 -04002794static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795{
Trond Myklebust433fbe42006-01-03 09:55:22 +01002796 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 might_sleep();
2799
Trond Myklebuste1485822006-12-13 16:43:13 -05002800 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2801
Trond Myklebust433fbe42006-01-03 09:55:22 +01002802 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
Matthew Wilcox150030b2007-12-06 16:24:39 -05002803 nfs4_wait_bit_killable, TASK_KILLABLE);
Trond Myklebuste1485822006-12-13 16:43:13 -05002804
2805 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 return res;
2807}
2808
2809static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2810{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 int res = 0;
2812
2813 might_sleep();
2814
2815 if (*timeout <= 0)
2816 *timeout = NFS4_POLL_RETRY_MIN;
2817 if (*timeout > NFS4_POLL_RETRY_MAX)
2818 *timeout = NFS4_POLL_RETRY_MAX;
Matthew Wilcox150030b2007-12-06 16:24:39 -05002819 schedule_timeout_killable(*timeout);
2820 if (fatal_signal_pending(current))
2821 res = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 *timeout <<= 1;
2823 return res;
2824}
2825
2826/* This is the error handling routine for processes that are allowed
2827 * to sleep.
2828 */
Trond Myklebust10afec92007-05-14 17:16:04 -04002829static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
David Howells7539bba2006-08-22 20:06:09 -04002831 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 int ret = errorcode;
2833
2834 exception->retry = 0;
2835 switch(errorcode) {
2836 case 0:
2837 return 0;
2838 case -NFS4ERR_STALE_CLIENTID:
2839 case -NFS4ERR_STALE_STATEID:
2840 case -NFS4ERR_EXPIRED:
Trond Myklebust433fbe42006-01-03 09:55:22 +01002841 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 ret = nfs4_wait_clnt_recover(server->client, clp);
2843 if (ret == 0)
2844 exception->retry = 1;
2845 break;
Trond Myklebustc5149832006-09-15 08:25:04 -04002846 case -NFS4ERR_FILE_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 case -NFS4ERR_GRACE:
2848 case -NFS4ERR_DELAY:
2849 ret = nfs4_delay(server->client, &exception->timeout);
Trond Myklebust2c566172005-11-04 15:33:50 -05002850 if (ret != 0)
2851 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 case -NFS4ERR_OLD_STATEID:
Trond Myklebust2c566172005-11-04 15:33:50 -05002853 exception->retry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 }
2855 /* We failed to handle the error */
2856 return nfs4_map_errors(ret);
2857}
2858
David Howellsadfa6f92006-08-22 20:06:08 -04002859int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860{
2861 nfs4_verifier sc_verifier;
2862 struct nfs4_setclientid setclientid = {
2863 .sc_verifier = &sc_verifier,
2864 .sc_prog = program,
2865 };
2866 struct rpc_message msg = {
2867 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2868 .rpc_argp = &setclientid,
2869 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002870 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 };
Al Virobc4785c2006-10-19 23:28:51 -07002872 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 int loop = 0;
2874 int status;
2875
Al Virobc4785c2006-10-19 23:28:51 -07002876 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2878 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2879
2880 for(;;) {
2881 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05002882 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05002883 clp->cl_ipaddr,
2884 rpc_peeraddr2str(clp->cl_rpcclient,
2885 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05002886 rpc_peeraddr2str(clp->cl_rpcclient,
2887 RPC_DISPLAY_PROTO),
Trond Myklebust286d7d62006-01-03 09:55:26 +01002888 cred->cr_ops->cr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 clp->cl_id_uniquifier);
2890 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002891 sizeof(setclientid.sc_netid),
2892 rpc_peeraddr2str(clp->cl_rpcclient,
2893 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002895 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 clp->cl_ipaddr, port >> 8, port & 255);
2897
2898 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2899 if (status != -NFS4ERR_CLID_INUSE)
2900 break;
2901 if (signalled())
2902 break;
2903 if (loop++ & 1)
2904 ssleep(clp->cl_lease_time + 1);
2905 else
2906 if (++clp->cl_id_uniquifier == 0)
2907 break;
2908 }
2909 return status;
2910}
2911
David Howellsadfa6f92006-08-22 20:06:08 -04002912static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
2914 struct nfs_fsinfo fsinfo;
2915 struct rpc_message msg = {
2916 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2917 .rpc_argp = clp,
2918 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002919 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 };
2921 unsigned long now;
2922 int status;
2923
2924 now = jiffies;
2925 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2926 if (status == 0) {
2927 spin_lock(&clp->cl_lock);
2928 clp->cl_lease_time = fsinfo.lease_time * HZ;
2929 clp->cl_last_renewal = now;
Trond Myklebust58d97142006-01-03 09:55:24 +01002930 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 spin_unlock(&clp->cl_lock);
2932 }
2933 return status;
2934}
2935
David Howellsadfa6f92006-08-22 20:06:08 -04002936int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05002937{
2938 long timeout;
2939 int err;
2940 do {
2941 err = _nfs4_proc_setclientid_confirm(clp, cred);
2942 switch (err) {
2943 case 0:
2944 return err;
2945 case -NFS4ERR_RESOURCE:
2946 /* The IBM lawyers misread another document! */
2947 case -NFS4ERR_DELAY:
2948 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2949 }
2950 } while (err == 0);
2951 return err;
2952}
2953
Trond Myklebustfe650402006-01-03 09:55:18 +01002954struct nfs4_delegreturndata {
2955 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002956 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01002957 struct nfs_fh fh;
2958 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002959 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002960 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01002961 int rpc_status;
2962};
2963
Trond Myklebustfe650402006-01-03 09:55:18 +01002964static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2965{
2966 struct nfs4_delegreturndata *data = calldata;
2967 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002968 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01002969 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01002970}
2971
2972static void nfs4_delegreturn_release(void *calldata)
2973{
Trond Myklebustfe650402006-01-03 09:55:18 +01002974 kfree(calldata);
2975}
2976
Jesper Juhlc8d149f2006-03-20 13:44:07 -05002977static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01002978 .rpc_call_done = nfs4_delegreturn_done,
2979 .rpc_release = nfs4_delegreturn_release,
2980};
2981
Trond Myklebuste6f81072008-01-24 18:14:34 -05002982static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01002983{
2984 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002985 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01002986 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002987 struct rpc_message msg = {
2988 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
2989 .rpc_cred = cred,
2990 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002991 struct rpc_task_setup task_setup_data = {
2992 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002993 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002994 .callback_ops = &nfs4_delegreturn_ops,
2995 .flags = RPC_TASK_ASYNC,
2996 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05002997 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01002998
2999 data = kmalloc(sizeof(*data), GFP_KERNEL);
3000 if (data == NULL)
3001 return -ENOMEM;
3002 data->args.fhandle = &data->fh;
3003 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003004 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003005 nfs_copy_fh(&data->fh, NFS_FH(inode));
3006 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003007 data->res.fattr = &data->fattr;
3008 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003009 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003010 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003011 data->rpc_status = 0;
3012
Trond Myklebustc970aa82007-07-14 15:39:59 -04003013 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003014 msg.rpc_argp = &data->args,
3015 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003016 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003017 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003018 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003019 if (!issync)
3020 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003021 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003022 if (status != 0)
3023 goto out;
3024 status = data->rpc_status;
3025 if (status != 0)
3026 goto out;
3027 nfs_refresh_inode(inode, &data->fattr);
3028out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003029 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003030 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031}
3032
Trond Myklebuste6f81072008-01-24 18:14:34 -05003033int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034{
3035 struct nfs_server *server = NFS_SERVER(inode);
3036 struct nfs4_exception exception = { };
3037 int err;
3038 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003039 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 switch (err) {
3041 case -NFS4ERR_STALE_STATEID:
3042 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 case 0:
3044 return 0;
3045 }
3046 err = nfs4_handle_exception(server, err, &exception);
3047 } while (exception.retry);
3048 return err;
3049}
3050
3051#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3052#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3053
3054/*
3055 * sleep, with exponential backoff, and retry the LOCK operation.
3056 */
3057static unsigned long
3058nfs4_set_lock_task_retry(unsigned long timeout)
3059{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003060 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 timeout <<= 1;
3062 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3063 return NFS4_LOCK_MAXTIMEOUT;
3064 return timeout;
3065}
3066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3068{
3069 struct inode *inode = state->inode;
3070 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003071 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003072 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003074 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003076 struct nfs_lockt_res res = {
3077 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 };
3079 struct rpc_message msg = {
3080 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3081 .rpc_argp = &arg,
3082 .rpc_resp = &res,
3083 .rpc_cred = state->owner->so_cred,
3084 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 struct nfs4_lock_state *lsp;
3086 int status;
3087
3088 down_read(&clp->cl_sem);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003089 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003090 status = nfs4_set_lock_state(state, request);
3091 if (status != 0)
3092 goto out;
3093 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003094 arg.lock_owner.id = lsp->ls_id.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003096 switch (status) {
3097 case 0:
3098 request->fl_type = F_UNLCK;
3099 break;
3100 case -NFS4ERR_DENIED:
3101 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003103 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003104out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 up_read(&clp->cl_sem);
3106 return status;
3107}
3108
3109static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3110{
3111 struct nfs4_exception exception = { };
3112 int err;
3113
3114 do {
3115 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3116 _nfs4_proc_getlk(state, cmd, request),
3117 &exception);
3118 } while (exception.retry);
3119 return err;
3120}
3121
3122static int do_vfs_lock(struct file *file, struct file_lock *fl)
3123{
3124 int res = 0;
3125 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3126 case FL_POSIX:
3127 res = posix_lock_file_wait(file, fl);
3128 break;
3129 case FL_FLOCK:
3130 res = flock_lock_file_wait(file, fl);
3131 break;
3132 default:
3133 BUG();
3134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 return res;
3136}
3137
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003138struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003139 struct nfs_locku_args arg;
3140 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003141 struct nfs4_lock_state *lsp;
3142 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003143 struct file_lock fl;
3144 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003145 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003146};
3147
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003148static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3149 struct nfs_open_context *ctx,
3150 struct nfs4_lock_state *lsp,
3151 struct nfs_seqid *seqid)
3152{
3153 struct nfs4_unlockdata *p;
3154 struct inode *inode = lsp->ls_state->inode;
3155
3156 p = kmalloc(sizeof(*p), GFP_KERNEL);
3157 if (p == NULL)
3158 return NULL;
3159 p->arg.fh = NFS_FH(inode);
3160 p->arg.fl = &p->fl;
3161 p->arg.seqid = seqid;
3162 p->arg.stateid = &lsp->ls_stateid;
3163 p->lsp = lsp;
3164 atomic_inc(&lsp->ls_count);
3165 /* Ensure we don't close file until we're done freeing locks! */
3166 p->ctx = get_nfs_open_context(ctx);
3167 memcpy(&p->fl, fl, sizeof(p->fl));
3168 p->server = NFS_SERVER(inode);
3169 return p;
3170}
3171
Trond Myklebust06f814a2006-01-03 09:55:07 +01003172static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003173{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003174 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003175 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003176 nfs4_put_lock_state(calldata->lsp);
3177 put_nfs_open_context(calldata->ctx);
3178 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003179}
3180
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003181static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003182{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003183 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003184
Trond Myklebust06f814a2006-01-03 09:55:07 +01003185 if (RPC_ASSASSINATED(task))
3186 return;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003187 nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003188 switch (task->tk_status) {
3189 case 0:
3190 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003191 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003192 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003193 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003194 break;
3195 case -NFS4ERR_STALE_STATEID:
3196 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003197 break;
3198 default:
Trond Myklebusta6a352e2006-12-13 16:43:06 -05003199 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003200 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003201 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003202}
3203
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003204static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003205{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003206 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003208 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003209 return;
3210 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003211 /* Note: exit _without_ running nfs4_locku_done */
3212 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003213 return;
3214 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003215 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003216 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217}
3218
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003219static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003220 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003221 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003222 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003223};
3224
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003225static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3226 struct nfs_open_context *ctx,
3227 struct nfs4_lock_state *lsp,
3228 struct nfs_seqid *seqid)
3229{
3230 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003231 struct rpc_message msg = {
3232 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3233 .rpc_cred = ctx->cred,
3234 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003235 struct rpc_task_setup task_setup_data = {
3236 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003237 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003238 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003239 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003240 .flags = RPC_TASK_ASYNC,
3241 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003242
Frank Filz137d6ac2007-07-09 15:32:29 -07003243 /* Ensure this is an unlock - when canceling a lock, the
3244 * canceled lock is passed in, and it won't be an unlock.
3245 */
3246 fl->fl_type = F_UNLCK;
3247
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003248 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3249 if (data == NULL) {
3250 nfs_free_seqid(seqid);
3251 return ERR_PTR(-ENOMEM);
3252 }
3253
Trond Myklebust5138fde2007-07-14 15:40:01 -04003254 msg.rpc_argp = &data->arg,
3255 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003256 task_setup_data.callback_data = data;
3257 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003258}
3259
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3261{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003262 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003263 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003264 struct rpc_task *task;
3265 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Trond Myklebust9b073572006-06-29 16:38:34 -04003267 status = nfs4_set_lock_state(state, request);
3268 /* Unlock _before_ we do the RPC call */
3269 request->fl_flags |= FL_EXISTS;
3270 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3271 goto out;
3272 if (status != 0)
3273 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003274 /* Is this a delegated lock? */
3275 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003276 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003277 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003278 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003279 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003280 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003281 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003282 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003283 status = PTR_ERR(task);
3284 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003285 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003286 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003287 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003288out:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003289 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003292struct nfs4_lockdata {
3293 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003294 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003295 struct nfs4_lock_state *lsp;
3296 struct nfs_open_context *ctx;
3297 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003298 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003299 int rpc_status;
3300 int cancelled;
3301};
3302
3303static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3304 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3305{
3306 struct nfs4_lockdata *p;
3307 struct inode *inode = lsp->ls_state->inode;
3308 struct nfs_server *server = NFS_SERVER(inode);
3309
3310 p = kzalloc(sizeof(*p), GFP_KERNEL);
3311 if (p == NULL)
3312 return NULL;
3313
3314 p->arg.fh = NFS_FH(inode);
3315 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003316 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3317 if (p->arg.open_seqid == NULL)
3318 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003319 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3320 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003321 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003322 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003323 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003324 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003325 p->lsp = lsp;
3326 atomic_inc(&lsp->ls_count);
3327 p->ctx = get_nfs_open_context(ctx);
3328 memcpy(&p->fl, fl, sizeof(p->fl));
3329 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003330out_free_seqid:
3331 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003332out_free:
3333 kfree(p);
3334 return NULL;
3335}
3336
3337static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3338{
3339 struct nfs4_lockdata *data = calldata;
3340 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003342 dprintk("%s: begin!\n", __FUNCTION__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003343 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3344 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003345 /* Do we need to do an open_to_lock_owner? */
3346 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003347 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3348 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003349 data->arg.open_stateid = &state->stateid;
3350 data->arg.new_lock_owner = 1;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003351 } else
3352 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003353 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003354 rpc_call_start(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003355 dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status);
3356}
3357
3358static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3359{
3360 struct nfs4_lockdata *data = calldata;
3361
3362 dprintk("%s: begin!\n", __FUNCTION__);
3363
3364 data->rpc_status = task->tk_status;
3365 if (RPC_ASSASSINATED(task))
3366 goto out;
3367 if (data->arg.new_lock_owner != 0) {
3368 nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid);
3369 if (data->rpc_status == 0)
3370 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3371 else
3372 goto out;
3373 }
3374 if (data->rpc_status == 0) {
3375 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3376 sizeof(data->lsp->ls_stateid.data));
3377 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003378 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003379 }
3380 nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid);
3381out:
3382 dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status);
3383}
3384
3385static void nfs4_lock_release(void *calldata)
3386{
3387 struct nfs4_lockdata *data = calldata;
3388
3389 dprintk("%s: begin!\n", __FUNCTION__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003390 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003391 if (data->cancelled != 0) {
3392 struct rpc_task *task;
3393 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3394 data->arg.lock_seqid);
3395 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003396 rpc_put_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003397 dprintk("%s: cancelling lock!\n", __FUNCTION__);
3398 } else
3399 nfs_free_seqid(data->arg.lock_seqid);
3400 nfs4_put_lock_state(data->lsp);
3401 put_nfs_open_context(data->ctx);
3402 kfree(data);
3403 dprintk("%s: done!\n", __FUNCTION__);
3404}
3405
3406static const struct rpc_call_ops nfs4_lock_ops = {
3407 .rpc_call_prepare = nfs4_lock_prepare,
3408 .rpc_call_done = nfs4_lock_done,
3409 .rpc_release = nfs4_lock_release,
3410};
3411
3412static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3413{
3414 struct nfs4_lockdata *data;
3415 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003416 struct rpc_message msg = {
3417 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3418 .rpc_cred = state->owner->so_cred,
3419 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003420 struct rpc_task_setup task_setup_data = {
3421 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003422 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003423 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003424 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003425 .flags = RPC_TASK_ASYNC,
3426 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003427 int ret;
3428
3429 dprintk("%s: begin!\n", __FUNCTION__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003430 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003431 fl->fl_u.nfs4_fl.owner);
3432 if (data == NULL)
3433 return -ENOMEM;
3434 if (IS_SETLKW(cmd))
3435 data->arg.block = 1;
3436 if (reclaim != 0)
3437 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003438 msg.rpc_argp = &data->arg,
3439 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003440 task_setup_data.callback_data = data;
3441 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003442 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003443 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003444 ret = nfs4_wait_for_completion_rpc_task(task);
3445 if (ret == 0) {
3446 ret = data->rpc_status;
3447 if (ret == -NFS4ERR_DENIED)
3448 ret = -EAGAIN;
3449 } else
3450 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003451 rpc_put_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003452 dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret);
3453 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454}
3455
3456static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3457{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003458 struct nfs_server *server = NFS_SERVER(state->inode);
3459 struct nfs4_exception exception = { };
3460 int err;
3461
3462 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003463 /* Cache the lock if possible... */
3464 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3465 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003466 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3467 if (err != -NFS4ERR_DELAY)
3468 break;
3469 nfs4_handle_exception(server, err, &exception);
3470 } while (exception.retry);
3471 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472}
3473
3474static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3475{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003476 struct nfs_server *server = NFS_SERVER(state->inode);
3477 struct nfs4_exception exception = { };
3478 int err;
3479
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003480 err = nfs4_set_lock_state(state, request);
3481 if (err != 0)
3482 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003483 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003484 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3485 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003486 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3487 if (err != -NFS4ERR_DELAY)
3488 break;
3489 nfs4_handle_exception(server, err, &exception);
3490 } while (exception.retry);
3491 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492}
3493
3494static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3495{
David Howellsadfa6f92006-08-22 20:06:08 -04003496 struct nfs_client *clp = state->owner->so_client;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003497 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 int status;
3499
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003500 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003501 status = nfs4_set_lock_state(state, request);
3502 if (status != 0)
3503 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003504 request->fl_flags |= FL_ACCESS;
3505 status = do_vfs_lock(request->fl_file, request);
3506 if (status < 0)
3507 goto out;
3508 down_read(&clp->cl_sem);
3509 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3510 struct nfs_inode *nfsi = NFS_I(state->inode);
3511 /* Yes: cache locks! */
3512 down_read(&nfsi->rwsem);
3513 /* ...but avoid races with delegation recall... */
3514 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3515 request->fl_flags = fl_flags & ~FL_SLEEP;
3516 status = do_vfs_lock(request->fl_file, request);
3517 up_read(&nfsi->rwsem);
3518 goto out_unlock;
3519 }
3520 up_read(&nfsi->rwsem);
3521 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003522 status = _nfs4_do_setlk(state, cmd, request, 0);
3523 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003524 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003525 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003526 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003527 if (do_vfs_lock(request->fl_file, request) < 0)
3528 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003529out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 up_read(&clp->cl_sem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003531out:
3532 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 return status;
3534}
3535
3536static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3537{
3538 struct nfs4_exception exception = { };
3539 int err;
3540
3541 do {
3542 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3543 _nfs4_proc_setlk(state, cmd, request),
3544 &exception);
3545 } while (exception.retry);
3546 return err;
3547}
3548
3549static int
3550nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3551{
3552 struct nfs_open_context *ctx;
3553 struct nfs4_state *state;
3554 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3555 int status;
3556
3557 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003558 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 state = ctx->state;
3560
3561 if (request->fl_start < 0 || request->fl_end < 0)
3562 return -EINVAL;
3563
3564 if (IS_GETLK(cmd))
3565 return nfs4_proc_getlk(state, F_GETLK, request);
3566
3567 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3568 return -EINVAL;
3569
3570 if (request->fl_type == F_UNLCK)
3571 return nfs4_proc_unlck(state, cmd, request);
3572
3573 do {
3574 status = nfs4_proc_setlk(state, cmd, request);
3575 if ((status != -EAGAIN) || IS_SETLK(cmd))
3576 break;
3577 timeout = nfs4_set_lock_task_retry(timeout);
3578 status = -ERESTARTSYS;
3579 if (signalled())
3580 break;
3581 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 return status;
3583}
3584
Trond Myklebust888e6942005-11-04 15:38:11 -05003585int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3586{
3587 struct nfs_server *server = NFS_SERVER(state->inode);
3588 struct nfs4_exception exception = { };
3589 int err;
3590
3591 err = nfs4_set_lock_state(state, fl);
3592 if (err != 0)
3593 goto out;
3594 do {
3595 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3596 if (err != -NFS4ERR_DELAY)
3597 break;
3598 err = nfs4_handle_exception(server, err, &exception);
3599 } while (exception.retry);
3600out:
3601 return err;
3602}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003603
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003604#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3605
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003606int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3607 size_t buflen, int flags)
3608{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003609 struct inode *inode = dentry->d_inode;
3610
3611 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3612 return -EOPNOTSUPP;
3613
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003614 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003615}
3616
3617/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3618 * and that's what we'll do for e.g. user attributes that haven't been set.
3619 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3620 * attributes in kernel-managed attribute namespaces. */
3621ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3622 size_t buflen)
3623{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003624 struct inode *inode = dentry->d_inode;
3625
3626 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3627 return -EOPNOTSUPP;
3628
3629 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003630}
3631
3632ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3633{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003634 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003635
J. Bruce Fields096455a2006-03-20 23:23:42 -05003636 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3637 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003638 if (buf && buflen < len)
3639 return -ERANGE;
3640 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003641 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3642 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003643}
3644
Trond Myklebust56659e92007-07-17 21:52:39 -04003645int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003646 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003647{
3648 struct nfs_server *server = NFS_SERVER(dir);
3649 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003650 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3651 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003652 };
3653 struct nfs4_fs_locations_arg args = {
3654 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05003655 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003656 .page = page,
3657 .bitmask = bitmask,
3658 };
3659 struct rpc_message msg = {
3660 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3661 .rpc_argp = &args,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003662 .rpc_resp = fs_locations,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003663 };
3664 int status;
3665
3666 dprintk("%s: start\n", __FUNCTION__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05003667 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003668 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003669 fs_locations->nlocations = 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003670 status = rpc_call_sync(server->client, &msg, 0);
3671 dprintk("%s: returned status = %d\n", __FUNCTION__, status);
3672 return status;
3673}
3674
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3676 .recover_open = nfs4_open_reclaim,
3677 .recover_lock = nfs4_lock_reclaim,
3678};
3679
3680struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3681 .recover_open = nfs4_open_expired,
3682 .recover_lock = nfs4_lock_expired,
3683};
3684
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003685static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003686 .permission = nfs_permission,
3687 .getattr = nfs_getattr,
3688 .setattr = nfs_setattr,
3689 .getxattr = nfs4_getxattr,
3690 .setxattr = nfs4_setxattr,
3691 .listxattr = nfs4_listxattr,
3692};
3693
David Howells509de812006-08-22 20:06:11 -04003694const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 .version = 4, /* protocol version */
3696 .dentry_ops = &nfs4_dentry_operations,
3697 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003698 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 .getroot = nfs4_proc_get_root,
3700 .getattr = nfs4_proc_getattr,
3701 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003702 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 .lookup = nfs4_proc_lookup,
3704 .access = nfs4_proc_access,
3705 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 .create = nfs4_proc_create,
3707 .remove = nfs4_proc_remove,
3708 .unlink_setup = nfs4_proc_unlink_setup,
3709 .unlink_done = nfs4_proc_unlink_done,
3710 .rename = nfs4_proc_rename,
3711 .link = nfs4_proc_link,
3712 .symlink = nfs4_proc_symlink,
3713 .mkdir = nfs4_proc_mkdir,
3714 .rmdir = nfs4_proc_remove,
3715 .readdir = nfs4_proc_readdir,
3716 .mknod = nfs4_proc_mknod,
3717 .statfs = nfs4_proc_statfs,
3718 .fsinfo = nfs4_proc_fsinfo,
3719 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003720 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 .decode_dirent = nfs4_decode_dirent,
3722 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003723 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003725 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003727 .commit_done = nfs4_commit_done,
Trond Myklebust02a913a2005-10-18 14:20:17 -07003728 .file_open = nfs_open,
3729 .file_release = nfs_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003731 .clear_acl_cache = nfs4_zap_acl_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732};
3733
3734/*
3735 * Local variables:
3736 * c-basic-offset: 8
3737 * End:
3738 */