blob: 26fbeb3467cb8c17d5836742f31a1e1dab7f2cf3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4proc.c
3 *
4 * Client-side procedure declarations for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <linux/mm.h>
39#include <linux/utsname.h>
40#include <linux/delay.h>
41#include <linux/errno.h>
42#include <linux/string.h>
43#include <linux/sunrpc/clnt.h>
44#include <linux/nfs.h>
45#include <linux/nfs4.h>
46#include <linux/nfs_fs.h>
47#include <linux/nfs_page.h>
48#include <linux/smp_lock.h>
49#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070050#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Trond Myklebust4ce79712005-06-22 17:16:21 +000052#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050054#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050055#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define NFSDBG_FACILITY NFSDBG_PROC
58
Trond Myklebust2066fe82006-09-15 08:30:46 -040059#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define NFS4_POLL_RETRY_MAX (15*HZ)
61
Trond Myklebustcdd4e682006-01-03 09:55:12 +010062struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010063static int _nfs4_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebustfaf5f492005-10-18 14:20:15 -070065static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *);
Trond Myklebustfaf5f492005-10-18 14:20:15 -070066static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception);
David Howellsadfa6f92006-08-22 20:06:08 -040067static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp);
Trond Myklebust99367812007-07-17 21:52:41 -040068static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
69static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Prevent leaks of NFSv4 errors into userland */
72int nfs4_map_errors(int err)
73{
74 if (err < -1000) {
75 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070076 __func__, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return -EIO;
78 }
79 return err;
80}
81
82/*
83 * This is our standard bitmap for GETATTR requests.
84 */
85const u32 nfs4_fattr_bitmap[2] = {
86 FATTR4_WORD0_TYPE
87 | FATTR4_WORD0_CHANGE
88 | FATTR4_WORD0_SIZE
89 | FATTR4_WORD0_FSID
90 | FATTR4_WORD0_FILEID,
91 FATTR4_WORD1_MODE
92 | FATTR4_WORD1_NUMLINKS
93 | FATTR4_WORD1_OWNER
94 | FATTR4_WORD1_OWNER_GROUP
95 | FATTR4_WORD1_RAWDEV
96 | FATTR4_WORD1_SPACE_USED
97 | FATTR4_WORD1_TIME_ACCESS
98 | FATTR4_WORD1_TIME_METADATA
99 | FATTR4_WORD1_TIME_MODIFY
100};
101
102const u32 nfs4_statfs_bitmap[2] = {
103 FATTR4_WORD0_FILES_AVAIL
104 | FATTR4_WORD0_FILES_FREE
105 | FATTR4_WORD0_FILES_TOTAL,
106 FATTR4_WORD1_SPACE_AVAIL
107 | FATTR4_WORD1_SPACE_FREE
108 | FATTR4_WORD1_SPACE_TOTAL
109};
110
Trond Myklebust4ce79712005-06-22 17:16:21 +0000111const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 FATTR4_WORD0_MAXLINK
113 | FATTR4_WORD0_MAXNAME,
114 0
115};
116
117const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
118 | FATTR4_WORD0_MAXREAD
119 | FATTR4_WORD0_MAXWRITE
120 | FATTR4_WORD0_LEASE_TIME,
121 0
122};
123
Manoj Naik830b8e32006-06-09 09:34:25 -0400124const u32 nfs4_fs_locations_bitmap[2] = {
125 FATTR4_WORD0_TYPE
126 | FATTR4_WORD0_CHANGE
127 | FATTR4_WORD0_SIZE
128 | FATTR4_WORD0_FSID
129 | FATTR4_WORD0_FILEID
130 | FATTR4_WORD0_FS_LOCATIONS,
131 FATTR4_WORD1_MODE
132 | FATTR4_WORD1_NUMLINKS
133 | FATTR4_WORD1_OWNER
134 | FATTR4_WORD1_OWNER_GROUP
135 | FATTR4_WORD1_RAWDEV
136 | FATTR4_WORD1_SPACE_USED
137 | FATTR4_WORD1_TIME_ACCESS
138 | FATTR4_WORD1_TIME_METADATA
139 | FATTR4_WORD1_TIME_MODIFY
140 | FATTR4_WORD1_MOUNTED_ON_FILEID
141};
142
Al Virobc4785c2006-10-19 23:28:51 -0700143static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct nfs4_readdir_arg *readdir)
145{
Al Viro0dbb4c62006-10-19 23:28:49 -0700146 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 BUG_ON(readdir->count < 80);
149 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000150 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
152 return;
153 }
154
155 readdir->cookie = 0;
156 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
157 if (cookie == 2)
158 return;
159
160 /*
161 * NFSv4 servers do not return entries for '.' and '..'
162 * Therefore, we fake these entries here. We let '.'
163 * have cookie 0 and '..' have cookie 1. Note that
164 * when talking to the server, we always send cookie 0
165 * instead of 1 or 2.
166 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700167 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 if (cookie == 0) {
170 *p++ = xdr_one; /* next */
171 *p++ = xdr_zero; /* cookie, first word */
172 *p++ = xdr_one; /* cookie, second word */
173 *p++ = xdr_one; /* entry len */
174 memcpy(p, ".\0\0\0", 4); /* entry */
175 p++;
176 *p++ = xdr_one; /* bitmap length */
177 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
178 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400179 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
182 *p++ = xdr_one; /* next */
183 *p++ = xdr_zero; /* cookie, first word */
184 *p++ = xdr_two; /* cookie, second word */
185 *p++ = xdr_two; /* entry len */
186 memcpy(p, "..\0\0", 4); /* entry */
187 p++;
188 *p++ = xdr_one; /* bitmap length */
189 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
190 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400191 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 readdir->pgbase = (char *)p - (char *)start;
194 readdir->count -= readdir->pgbase;
195 kunmap_atomic(start, KM_USER0);
196}
197
Trond Myklebust26e976a2006-01-03 09:55:21 +0100198static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
David Howells7539bba2006-08-22 20:06:09 -0400200 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 spin_lock(&clp->cl_lock);
202 if (time_before(clp->cl_last_renewal,timestamp))
203 clp->cl_last_renewal = timestamp;
204 spin_unlock(&clp->cl_lock);
205}
206
Trond Myklebust38478b22006-05-25 01:40:57 -0400207static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Trond Myklebust38478b22006-05-25 01:40:57 -0400209 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Trond Myklebust38478b22006-05-25 01:40:57 -0400211 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400212 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
213 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400214 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400215 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400216 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100219struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400220 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100221 struct nfs_openargs o_arg;
222 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100223 struct nfs_open_confirmargs c_arg;
224 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100225 struct nfs_fattr f_attr;
226 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400227 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100228 struct dentry *dir;
229 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400230 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100231 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100232 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400233 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100234 int rpc_status;
235 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100236};
237
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400238
239static void nfs4_init_opendata_res(struct nfs4_opendata *p)
240{
241 p->o_res.f_attr = &p->f_attr;
242 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400243 p->o_res.seqid = p->o_arg.seqid;
244 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400245 p->o_res.server = p->o_arg.server;
246 nfs_fattr_init(&p->f_attr);
247 nfs_fattr_init(&p->dir_attr);
248}
249
Trond Myklebustad389da2007-06-05 12:30:00 -0400250static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100251 struct nfs4_state_owner *sp, int flags,
252 const struct iattr *attrs)
253{
Trond Myklebustad389da2007-06-05 12:30:00 -0400254 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100255 struct inode *dir = parent->d_inode;
256 struct nfs_server *server = NFS_SERVER(dir);
257 struct nfs4_opendata *p;
258
259 p = kzalloc(sizeof(*p), GFP_KERNEL);
260 if (p == NULL)
261 goto err;
262 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
263 if (p->o_arg.seqid == NULL)
264 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400265 p->path.mnt = mntget(path->mnt);
266 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100267 p->dir = parent;
268 p->owner = sp;
269 atomic_inc(&sp->so_count);
270 p->o_arg.fh = NFS_FH(dir);
271 p->o_arg.open_flags = flags,
David Howells7539bba2006-08-22 20:06:09 -0400272 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400273 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400274 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100275 p->o_arg.server = server;
276 p->o_arg.bitmask = server->attr_bitmask;
277 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100278 if (flags & O_EXCL) {
279 u32 *s = (u32 *) p->o_arg.u.verifier.data;
280 s[0] = jiffies;
281 s[1] = current->pid;
282 } else if (flags & O_CREAT) {
283 p->o_arg.u.attrs = &p->attrs;
284 memcpy(&p->attrs, attrs, sizeof(p->attrs));
285 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100286 p->c_arg.fh = &p->o_res.fh;
287 p->c_arg.stateid = &p->o_res.stateid;
288 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400289 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400290 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100291 return p;
292err_free:
293 kfree(p);
294err:
295 dput(parent);
296 return NULL;
297}
298
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400299static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100300{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400301 struct nfs4_opendata *p = container_of(kref,
302 struct nfs4_opendata, kref);
303
304 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400305 if (p->state != NULL)
306 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400307 nfs4_put_state_owner(p->owner);
308 dput(p->dir);
Jan Blunck31f31db2008-05-02 13:42:45 -0700309 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400310 kfree(p);
311}
312
313static void nfs4_opendata_put(struct nfs4_opendata *p)
314{
315 if (p != NULL)
316 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100317}
318
Trond Myklebust06f814a2006-01-03 09:55:07 +0100319static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
320{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100321 int ret;
322
Trond Myklebust06f814a2006-01-03 09:55:07 +0100323 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100324 return ret;
325}
326
Trond Myklebust6ee41262007-07-08 14:11:36 -0400327static int can_open_cached(struct nfs4_state *state, int mode)
328{
329 int ret = 0;
330 switch (mode & (FMODE_READ|FMODE_WRITE|O_EXCL)) {
331 case FMODE_READ:
332 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400333 break;
334 case FMODE_WRITE:
335 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400336 break;
337 case FMODE_READ|FMODE_WRITE:
338 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
339 }
340 return ret;
341}
342
Trond Myklebustaac00a82007-07-05 19:02:21 -0400343static int can_open_delegated(struct nfs_delegation *delegation, mode_t open_flags)
344{
345 if ((delegation->type & open_flags) != open_flags)
346 return 0;
347 if (delegation->flags & NFS_DELEGATION_NEED_RECLAIM)
348 return 0;
349 return 1;
350}
351
Trond Myklebust003707c2007-07-05 18:07:55 -0400352static void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
Trond Myklebuste7616922006-01-03 09:55:13 +0100353{
354 switch (open_flags) {
355 case FMODE_WRITE:
356 state->n_wronly++;
357 break;
358 case FMODE_READ:
359 state->n_rdonly++;
360 break;
361 case FMODE_READ|FMODE_WRITE:
362 state->n_rdwr++;
363 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400364 nfs4_state_set_mode_locked(state, state->state | open_flags);
Trond Myklebuste7616922006-01-03 09:55:13 +0100365}
366
Trond Myklebust003707c2007-07-05 18:07:55 -0400367static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
368{
369 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
370 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
371 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
372 switch (open_flags) {
373 case FMODE_READ:
374 set_bit(NFS_O_RDONLY_STATE, &state->flags);
375 break;
376 case FMODE_WRITE:
377 set_bit(NFS_O_WRONLY_STATE, &state->flags);
378 break;
379 case FMODE_READ|FMODE_WRITE:
380 set_bit(NFS_O_RDWR_STATE, &state->flags);
381 }
382}
383
384static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
385{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400386 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400387 nfs_set_open_stateid_locked(state, stateid, open_flags);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400388 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400389}
390
391static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *deleg_stateid, int open_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 open_flags &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400394 /*
395 * Protect the call to nfs4_state_set_mode_locked and
396 * serialise the stateid update
397 */
398 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400399 if (deleg_stateid != NULL) {
400 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
401 set_bit(NFS_DELEGATED_STATE, &state->flags);
402 }
403 if (open_stateid != NULL)
404 nfs_set_open_stateid_locked(state, open_stateid, open_flags);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400405 write_sequnlock(&state->seqlock);
406 spin_lock(&state->owner->so_lock);
Trond Myklebuste7616922006-01-03 09:55:13 +0100407 update_open_stateflags(state, open_flags);
Trond Myklebustec073422005-10-20 14:22:47 -0700408 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Trond Myklebustaac00a82007-07-05 19:02:21 -0400411static void nfs4_return_incompatible_delegation(struct inode *inode, mode_t open_flags)
412{
413 struct nfs_delegation *delegation;
414
415 rcu_read_lock();
416 delegation = rcu_dereference(NFS_I(inode)->delegation);
417 if (delegation == NULL || (delegation->type & open_flags) == open_flags) {
418 rcu_read_unlock();
419 return;
420 }
421 rcu_read_unlock();
422 nfs_inode_return_delegation(inode);
423}
424
Trond Myklebust6ee41262007-07-08 14:11:36 -0400425static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400426{
427 struct nfs4_state *state = opendata->state;
428 struct nfs_inode *nfsi = NFS_I(state->inode);
429 struct nfs_delegation *delegation;
430 int open_mode = opendata->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL);
431 nfs4_stateid stateid;
432 int ret = -EAGAIN;
433
434 rcu_read_lock();
435 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400436 for (;;) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400437 if (can_open_cached(state, open_mode)) {
438 spin_lock(&state->owner->so_lock);
439 if (can_open_cached(state, open_mode)) {
440 update_open_stateflags(state, open_mode);
441 spin_unlock(&state->owner->so_lock);
442 rcu_read_unlock();
443 goto out_return_state;
444 }
445 spin_unlock(&state->owner->so_lock);
446 }
447 if (delegation == NULL)
448 break;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400449 if (!can_open_delegated(delegation, open_mode))
450 break;
451 /* Save the delegation */
452 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
453 rcu_read_unlock();
454 lock_kernel();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400455 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400456 unlock_kernel();
457 if (ret != 0)
458 goto out;
459 ret = -EAGAIN;
460 rcu_read_lock();
461 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400462 /* If no delegation, try a cached open */
Trond Myklebustaac00a82007-07-05 19:02:21 -0400463 if (delegation == NULL)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400464 continue;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400465 /* Is the delegation still valid? */
466 if (memcmp(stateid.data, delegation->stateid.data, sizeof(stateid.data)) != 0)
467 continue;
468 rcu_read_unlock();
469 update_open_stateid(state, NULL, &stateid, open_mode);
470 goto out_return_state;
471 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400472 rcu_read_unlock();
473out:
474 return ERR_PTR(ret);
475out_return_state:
476 atomic_inc(&state->count);
477 return state;
478}
479
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100480static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
481{
482 struct inode *inode;
483 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400484 struct nfs_delegation *delegation;
485 nfs4_stateid *deleg_stateid = NULL;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400486 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100487
Trond Myklebustaac00a82007-07-05 19:02:21 -0400488 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400489 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400490 goto out;
491 }
492
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400493 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100494 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400495 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100496 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400497 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500498 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400499 goto err;
500 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100501 state = nfs4_get_open_state(inode, data->owner);
502 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400503 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400504 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400505 int delegation_flags = 0;
506
Trond Myklebust003707c2007-07-05 18:07:55 -0400507 rcu_read_lock();
508 delegation = rcu_dereference(NFS_I(inode)->delegation);
509 if (delegation)
510 delegation_flags = delegation->flags;
511 rcu_read_unlock();
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400512 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
513 nfs_inode_set_delegation(state->inode,
514 data->owner->so_cred,
515 &data->o_res);
516 else
517 nfs_inode_reclaim_delegation(state->inode,
518 data->owner->so_cred,
519 &data->o_res);
520 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400521 rcu_read_lock();
522 delegation = rcu_dereference(NFS_I(inode)->delegation);
523 if (delegation != NULL)
524 deleg_stateid = &delegation->stateid;
525 update_open_stateid(state, &data->o_res.stateid, deleg_stateid, data->o_arg.open_flags);
526 rcu_read_unlock();
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100527 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400528out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100529 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400530err_put_inode:
531 iput(inode);
532err:
533 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100534}
535
Trond Myklebust864472e2006-01-03 09:55:15 +0100536static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
537{
538 struct nfs_inode *nfsi = NFS_I(state->inode);
539 struct nfs_open_context *ctx;
540
541 spin_lock(&state->inode->i_lock);
542 list_for_each_entry(ctx, &nfsi->open_files, list) {
543 if (ctx->state != state)
544 continue;
545 get_nfs_open_context(ctx);
546 spin_unlock(&state->inode->i_lock);
547 return ctx;
548 }
549 spin_unlock(&state->inode->i_lock);
550 return ERR_PTR(-ENOENT);
551}
552
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400553static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
554{
555 struct nfs4_opendata *opendata;
556
557 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
558 if (opendata == NULL)
559 return ERR_PTR(-ENOMEM);
560 opendata->state = state;
561 atomic_inc(&state->count);
562 return opendata;
563}
564
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400565static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +0100566{
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400567 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100568 int ret;
569
570 opendata->o_arg.open_flags = openflags;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400571 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
572 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
573 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100574 ret = _nfs4_proc_open(opendata);
575 if (ret != 0)
576 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400577 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400578 if (IS_ERR(newstate))
579 return PTR_ERR(newstate);
580 nfs4_close_state(&opendata->path, newstate, openflags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400581 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100582 return 0;
583}
584
585static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
586{
Trond Myklebust864472e2006-01-03 09:55:15 +0100587 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100588 int ret;
589
590 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400591 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100592 smp_rmb();
593 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400594 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100595 if (ret != 0)
596 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400597 if (newstate != state)
598 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100599 }
600 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400601 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100602 if (ret != 0)
603 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400604 if (newstate != state)
605 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100606 }
607 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400608 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100609 if (ret != 0)
610 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400611 if (newstate != state)
612 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100613 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400614 /*
615 * We may have performed cached opens for all three recoveries.
616 * Check if we need to update the current stateid.
617 */
618 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
619 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400620 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400621 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
622 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400623 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400624 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100625 return 0;
626}
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628/*
629 * OPEN_RECLAIM:
630 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400632static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400634 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +0100635 struct nfs4_opendata *opendata;
636 int delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 int status;
638
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400639 opendata = nfs4_open_recoverdata_alloc(ctx, state);
640 if (IS_ERR(opendata))
641 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100642 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
643 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400644 rcu_read_lock();
645 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
646 if (delegation != NULL && (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -0400647 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400648 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +0100649 opendata->o_arg.u.delegation_type = delegation_type;
650 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400651 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return status;
653}
654
Trond Myklebust539cd032007-06-05 11:46:42 -0400655static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 struct nfs_server *server = NFS_SERVER(state->inode);
658 struct nfs4_exception exception = { };
659 int err;
660 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400661 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000662 if (err != -NFS4ERR_DELAY)
663 break;
664 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 } while (exception.retry);
666 return err;
667}
668
Trond Myklebust864472e2006-01-03 09:55:15 +0100669static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
670{
671 struct nfs_open_context *ctx;
672 int ret;
673
674 ctx = nfs4_state_find_open_context(state);
675 if (IS_ERR(ctx))
676 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400677 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100678 put_nfs_open_context(ctx);
679 return ret;
680}
681
Trond Myklebust13437e12007-07-06 15:10:43 -0400682static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100684 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100685 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400687 opendata = nfs4_open_recoverdata_alloc(ctx, state);
688 if (IS_ERR(opendata))
689 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100690 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -0400691 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100692 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100693 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400694 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100695 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Trond Myklebust13437e12007-07-06 15:10:43 -0400698int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -0400701 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 int err;
703 do {
Trond Myklebust13437e12007-07-06 15:10:43 -0400704 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 switch (err) {
706 case 0:
707 return err;
708 case -NFS4ERR_STALE_CLIENTID:
709 case -NFS4ERR_STALE_STATEID:
710 case -NFS4ERR_EXPIRED:
711 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400712 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return err;
714 }
715 err = nfs4_handle_exception(server, err, &exception);
716 } while (exception.retry);
717 return err;
718}
719
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100720static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
721{
722 struct nfs4_opendata *data = calldata;
723
724 data->rpc_status = task->tk_status;
725 if (RPC_ASSASSINATED(task))
726 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100727 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100728 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
729 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -0500730 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +0100731 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -0400732 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100733 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100734}
735
736static void nfs4_open_confirm_release(void *calldata)
737{
738 struct nfs4_opendata *data = calldata;
739 struct nfs4_state *state = NULL;
740
741 /* If this request hasn't been cancelled, do nothing */
742 if (data->cancelled == 0)
743 goto out_free;
744 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400745 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100746 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100747 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400748 if (!IS_ERR(state))
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400749 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100750out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400751 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100752}
753
754static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100755 .rpc_call_done = nfs4_open_confirm_done,
756 .rpc_release = nfs4_open_confirm_release,
757};
758
759/*
760 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
761 */
762static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
763{
764 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
765 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400766 struct rpc_message msg = {
767 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
768 .rpc_argp = &data->c_arg,
769 .rpc_resp = &data->c_res,
770 .rpc_cred = data->owner->so_cred,
771 };
Trond Myklebustc970aa82007-07-14 15:39:59 -0400772 struct rpc_task_setup task_setup_data = {
773 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400774 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400775 .callback_ops = &nfs4_open_confirm_ops,
776 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500777 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400778 .flags = RPC_TASK_ASYNC,
779 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 int status;
781
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400782 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400783 data->rpc_done = 0;
784 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400785 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -0400786 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500787 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100788 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100789 status = nfs4_wait_for_completion_rpc_task(task);
790 if (status != 0) {
791 data->cancelled = 1;
792 smp_wmb();
793 } else
794 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500795 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return status;
797}
798
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100799static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100801 struct nfs4_opendata *data = calldata;
802 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400803
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100804 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
805 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400806 /*
807 * Check if we still need to send an OPEN call, or if we can use
808 * a delegation instead.
809 */
810 if (data->state != NULL) {
811 struct nfs_delegation *delegation;
812
Trond Myklebust6ee41262007-07-08 14:11:36 -0400813 if (can_open_cached(data->state, data->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL)))
814 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400815 rcu_read_lock();
816 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
817 if (delegation != NULL &&
818 (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) == 0) {
819 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400820 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400821 }
822 rcu_read_unlock();
823 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100824 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400825 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100826 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400827 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -0400828 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400829 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
830 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100831 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400832 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400833 return;
834out_no_action:
835 task->tk_action = NULL;
836
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100837}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100839static void nfs4_open_done(struct rpc_task *task, void *calldata)
840{
841 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100843 data->rpc_status = task->tk_status;
844 if (RPC_ASSASSINATED(task))
845 return;
846 if (task->tk_status == 0) {
847 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -0700848 case S_IFREG:
849 break;
850 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100851 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700852 break;
853 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100854 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700855 break;
856 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100857 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700858 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100859 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -0400860 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
861 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -0700862 }
Trond Myklebust3e309912007-07-07 13:19:59 -0400863 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100864}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700865
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100866static void nfs4_open_release(void *calldata)
867{
868 struct nfs4_opendata *data = calldata;
869 struct nfs4_state *state = NULL;
870
871 /* If this request hasn't been cancelled, do nothing */
872 if (data->cancelled == 0)
873 goto out_free;
874 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400875 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100876 goto out_free;
877 /* In case we need an open_confirm, no cleanup! */
878 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
879 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100880 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400881 if (!IS_ERR(state))
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400882 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100883out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400884 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100885}
886
887static const struct rpc_call_ops nfs4_open_ops = {
888 .rpc_call_prepare = nfs4_open_prepare,
889 .rpc_call_done = nfs4_open_done,
890 .rpc_release = nfs4_open_release,
891};
892
893/*
894 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
895 */
896static int _nfs4_proc_open(struct nfs4_opendata *data)
897{
898 struct inode *dir = data->dir->d_inode;
899 struct nfs_server *server = NFS_SERVER(dir);
900 struct nfs_openargs *o_arg = &data->o_arg;
901 struct nfs_openres *o_res = &data->o_res;
902 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400903 struct rpc_message msg = {
904 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
905 .rpc_argp = o_arg,
906 .rpc_resp = o_res,
907 .rpc_cred = data->owner->so_cred,
908 };
Trond Myklebustc970aa82007-07-14 15:39:59 -0400909 struct rpc_task_setup task_setup_data = {
910 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400911 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400912 .callback_ops = &nfs4_open_ops,
913 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500914 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400915 .flags = RPC_TASK_ASYNC,
916 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100917 int status;
918
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400919 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400920 data->rpc_done = 0;
921 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400922 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -0400923 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500924 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100925 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100926 status = nfs4_wait_for_completion_rpc_task(task);
927 if (status != 0) {
928 data->cancelled = 1;
929 smp_wmb();
930 } else
931 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500932 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -0400933 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100934 return status;
935
Trond Myklebust99367812007-07-17 21:52:41 -0400936 if (o_res->fh.size == 0)
937 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
938
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400939 if (o_arg->open_flags & O_CREAT) {
940 update_changeattr(dir, &o_res->cinfo);
941 nfs_post_op_update_inode(dir, o_res->dir_attr);
942 } else
943 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100945 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100947 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -0400950 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100951 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Trond Myklebust10afec92007-05-14 17:16:04 -0400954static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100955{
David Howells7539bba2006-08-22 20:06:09 -0400956 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -0400957 int ret;
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100958
Trond Myklebust6b309542006-09-14 14:03:14 -0400959 for (;;) {
960 ret = nfs4_wait_clnt_recover(server->client, clp);
961 if (ret != 0)
962 return ret;
963 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
964 break;
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100965 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -0400966 }
967 return 0;
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100968}
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970/*
971 * OPEN_EXPIRED:
972 * reclaim state on the server after a network partition.
973 * Assumes caller holds the appropriate lock
974 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400975static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100977 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100978 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400980 opendata = nfs4_open_recoverdata_alloc(ctx, state);
981 if (IS_ERR(opendata))
982 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100983 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -0400984 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -0400985 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400986 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100987 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Trond Myklebust539cd032007-06-05 11:46:42 -0400990static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +0000991{
Trond Myklebust539cd032007-06-05 11:46:42 -0400992 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000993 struct nfs4_exception exception = { };
994 int err;
995
996 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400997 err = _nfs4_open_expired(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000998 if (err == -NFS4ERR_DELAY)
999 nfs4_handle_exception(server, err, &exception);
1000 } while (exception.retry);
1001 return err;
1002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1005{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001007 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Trond Myklebust864472e2006-01-03 09:55:15 +01001009 ctx = nfs4_state_find_open_context(state);
1010 if (IS_ERR(ctx))
1011 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001012 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001013 put_nfs_open_context(ctx);
1014 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
1017/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001018 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1019 * fields corresponding to attributes that were used to store the verifier.
1020 * Make sure we clobber those fields in the later setattr call
1021 */
1022static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1023{
1024 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1025 !(sattr->ia_valid & ATTR_ATIME_SET))
1026 sattr->ia_valid |= ATTR_ATIME;
1027
1028 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1029 !(sattr->ia_valid & ATTR_MTIME_SET))
1030 sattr->ia_valid |= ATTR_MTIME;
1031}
1032
1033/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001034 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 */
Trond Myklebustad389da2007-06-05 12:30:00 -04001036static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 struct nfs4_state_owner *sp;
1039 struct nfs4_state *state = NULL;
1040 struct nfs_server *server = NFS_SERVER(dir);
David Howells7539bba2006-08-22 20:06:09 -04001041 struct nfs_client *clp = server->nfs_client;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001042 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001043 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 status = -ENOMEM;
1047 if (!(sp = nfs4_get_state_owner(server, cred))) {
1048 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1049 goto out_err;
1050 }
Trond Myklebust58d9714a2006-01-03 09:55:24 +01001051 status = nfs4_recover_expired_lease(server);
1052 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001053 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001054 if (path->dentry->d_inode != NULL)
1055 nfs4_return_incompatible_delegation(path->dentry->d_inode, flags & (FMODE_READ|FMODE_WRITE));
Trond Myklebust58d9714a2006-01-03 09:55:24 +01001056 down_read(&clp->cl_sem);
1057 status = -ENOMEM;
Trond Myklebustad389da2007-06-05 12:30:00 -04001058 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001059 if (opendata == NULL)
Trond Myklebust76723de2006-09-15 08:11:51 -04001060 goto err_release_rwsem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Trond Myklebustaac00a82007-07-05 19:02:21 -04001062 if (path->dentry->d_inode != NULL)
1063 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1064
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001065 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001067 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001069 if (opendata->o_arg.open_flags & O_EXCL)
1070 nfs4_exclusive_attrset(opendata, sattr);
1071
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001072 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001073 status = PTR_ERR(state);
1074 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001075 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001076 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 nfs4_put_state_owner(sp);
1078 up_read(&clp->cl_sem);
1079 *res = state;
1080 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001081err_opendata_put:
1082 nfs4_opendata_put(opendata);
Trond Myklebust76723de2006-09-15 08:11:51 -04001083err_release_rwsem:
1084 up_read(&clp->cl_sem);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001085err_put_state_owner:
1086 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 *res = NULL;
1089 return status;
1090}
1091
1092
Trond Myklebustad389da2007-06-05 12:30:00 -04001093static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 struct nfs4_exception exception = { };
1096 struct nfs4_state *res;
1097 int status;
1098
1099 do {
Trond Myklebustad389da2007-06-05 12:30:00 -04001100 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (status == 0)
1102 break;
1103 /* NOTE: BAD_SEQID means the server and client disagree about the
1104 * book-keeping w.r.t. state-changing operations
1105 * (OPEN/CLOSE/LOCK/LOCKU...)
1106 * It is actually a sign of a bug on the client or on the server.
1107 *
1108 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001109 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 * have unhashed the old state_owner for us, and that we can
1111 * therefore safely retry using a new one. We should still warn
1112 * the user though...
1113 */
1114 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001115 printk(KERN_WARNING "NFS: v4 server %s "
1116 " returned a bad sequence-id error!\n",
1117 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 exception.retry = 1;
1119 continue;
1120 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001121 /*
1122 * BAD_STATEID on OPEN means that the server cancelled our
1123 * state before it received the OPEN_CONFIRM.
1124 * Recover by retrying the request as per the discussion
1125 * on Page 181 of RFC3530.
1126 */
1127 if (status == -NFS4ERR_BAD_STATEID) {
1128 exception.retry = 1;
1129 continue;
1130 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001131 if (status == -EAGAIN) {
1132 /* We must have found a delegation */
1133 exception.retry = 1;
1134 continue;
1135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1137 status, &exception));
1138 } while (exception.retry);
1139 return res;
1140}
1141
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001142static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1143 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001145 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001147 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 .iap = sattr,
1149 .server = server,
1150 .bitmask = server->attr_bitmask,
1151 };
1152 struct nfs_setattrres res = {
1153 .fattr = fattr,
1154 .server = server,
1155 };
1156 struct rpc_message msg = {
1157 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1158 .rpc_argp = &arg,
1159 .rpc_resp = &res,
1160 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001161 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001162 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Trond Myklebust0e574af2005-10-27 22:12:38 -04001164 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001166 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1167 /* Use that stateid */
1168 } else if (state != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 msg.rpc_cred = state->owner->so_cred;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001170 nfs4_copy_stateid(&arg.stateid, state, current->files);
1171 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1173
Trond Myklebust65e43082005-08-16 11:49:44 -04001174 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001175 if (status == 0 && state != NULL)
1176 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001177 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001180static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1181 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001183 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 struct nfs4_exception exception = { };
1185 int err;
1186 do {
1187 err = nfs4_handle_exception(server,
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001188 _nfs4_do_setattr(inode, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 &exception);
1190 } while (exception.retry);
1191 return err;
1192}
1193
1194struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001195 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct inode *inode;
1197 struct nfs4_state *state;
1198 struct nfs_closeargs arg;
1199 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001200 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001201 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202};
1203
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001204static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001205{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001206 struct nfs4_closedata *calldata = data;
1207 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001208
1209 nfs4_put_open_state(calldata->state);
1210 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001211 nfs4_put_state_owner(sp);
Jan Blunck31f31db2008-05-02 13:42:45 -07001212 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001213 kfree(calldata);
1214}
1215
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001216static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001218 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 struct nfs_server *server = NFS_SERVER(calldata->inode);
1221
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001222 if (RPC_ASSASSINATED(task))
1223 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 /* hmm. we are done with the inode, and in the process of freeing
1225 * the state_owner. we keep this around to process errors
1226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 switch (task->tk_status) {
1228 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001229 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001230 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 break;
1232 case -NFS4ERR_STALE_STATEID:
1233 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 break;
1235 default:
1236 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1237 rpc_restart_call(task);
1238 return;
1239 }
1240 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001241 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001244static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001246 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001247 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001248 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001249
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001250 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001251 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001252
Trond Myklebust003707c2007-07-05 18:07:55 -04001253 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001254 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001255 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001256 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001257 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001258 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1259 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1260 }
1261 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001262 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1263 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1264 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001265 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001266 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001267 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001268 /* Note: exit _without_ calling nfs4_close_done */
1269 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001270 return;
1271 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001272 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001273 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001274 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust45328c32007-07-26 17:47:34 -04001275 calldata->arg.open_flags = FMODE_READ;
1276 } else if (test_bit(NFS_O_WRONLY_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_WRITE;
1279 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001280 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001281 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001284static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001285 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001286 .rpc_call_done = nfs4_close_done,
1287 .rpc_release = nfs4_free_closedata,
1288};
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290/*
1291 * It is possible for data to be read/written from a mem-mapped file
1292 * after the sys_close call (which hits the vfs layer as a flush).
1293 * This means that we can't safely call nfsv4 close on a file until
1294 * the inode is cleared. This in turn means that we are not good
1295 * NFSv4 citizens - we do not indicate to the server to update the file's
1296 * share state even when we are done with one of the three share
1297 * stateid's in the inode.
1298 *
1299 * NOTE: Caller must be holding the sp->so_owner semaphore!
1300 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001301int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001303 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001305 struct nfs4_state_owner *sp = state->owner;
1306 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001307 struct rpc_message msg = {
1308 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1309 .rpc_cred = state->owner->so_cred,
1310 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001311 struct rpc_task_setup task_setup_data = {
1312 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001313 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001314 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001315 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001316 .flags = RPC_TASK_ASYNC,
1317 };
Trond Myklebust95121352005-10-18 14:20:12 -07001318 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Trond Myklebust95121352005-10-18 14:20:12 -07001320 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001322 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001323 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001325 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001326 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001328 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001329 if (calldata->arg.seqid == NULL)
1330 goto out_free_calldata;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001331 calldata->arg.bitmask = server->attr_bitmask;
1332 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001333 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001334 calldata->res.server = server;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001335 calldata->path.mnt = mntget(path->mnt);
1336 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001337
Trond Myklebust5138fde2007-07-14 15:40:01 -04001338 msg.rpc_argp = &calldata->arg,
1339 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001340 task_setup_data.callback_data = calldata;
1341 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001342 if (IS_ERR(task))
1343 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001344 status = 0;
1345 if (wait)
1346 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001347 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001348 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001349out_free_calldata:
1350 kfree(calldata);
1351out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001352 nfs4_put_open_state(state);
1353 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001354 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001357static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
Trond Myklebust02a913a2005-10-18 14:20:17 -07001358{
1359 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001360 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001361
Trond Myklebust1b45c462007-07-03 13:04:56 -04001362 /* If the open_intent is for execute, we have an extra check to make */
1363 if (nd->intent.open.flags & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001364 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001365 state->owner->so_cred,
1366 nd->intent.open.flags);
1367 if (ret < 0)
1368 goto out_close;
1369 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001370 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001371 if (!IS_ERR(filp)) {
1372 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001373 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001374 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001375 return 0;
1376 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001377 ret = PTR_ERR(filp);
1378out_close:
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001379 nfs4_close_sync(path, state, nd->intent.open.flags);
Trond Myklebust1b45c462007-07-03 13:04:56 -04001380 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001381}
1382
1383struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1385{
Trond Myklebustad389da2007-06-05 12:30:00 -04001386 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001387 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001388 .dentry = dentry,
1389 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001390 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 struct iattr attr;
1392 struct rpc_cred *cred;
1393 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001394 struct dentry *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 if (nd->flags & LOOKUP_CREATE) {
1397 attr.ia_mode = nd->intent.open.create_mode;
1398 attr.ia_valid = ATTR_MODE;
1399 if (!IS_POSIXACL(dir))
1400 attr.ia_mode &= ~current->fs->umask;
1401 } else {
1402 attr.ia_valid = 0;
1403 BUG_ON(nd->intent.open.flags & O_CREAT);
1404 }
1405
Trond Myklebust98a8e322008-03-12 12:25:28 -04001406 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001408 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001409 parent = dentry->d_parent;
1410 /* Protect against concurrent sillydeletes */
1411 nfs_block_sillyrename(parent);
Trond Myklebustad389da2007-06-05 12:30:00 -04001412 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001414 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001415 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001416 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001417 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1418 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001419 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001420 return (struct dentry *)state;
1421 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001422 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001423 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001424 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001425 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001426 nfs_unblock_sillyrename(parent);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001427 nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001428 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
1431int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001432nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Trond Myklebustad389da2007-06-05 12:30:00 -04001434 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001435 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001436 .dentry = dentry,
1437 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 struct rpc_cred *cred;
1439 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Trond Myklebust98a8e322008-03-12 12:25:28 -04001441 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (IS_ERR(cred))
1443 return PTR_ERR(cred);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001444 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001446 if (IS_ERR(state)) {
1447 switch (PTR_ERR(state)) {
1448 case -EPERM:
1449 case -EACCES:
1450 case -EDQUOT:
1451 case -ENOSPC:
1452 case -EROFS:
1453 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1454 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001455 default:
1456 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001457 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001458 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001459 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001460 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001461 nfs4_intent_set_file(nd, &path, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return 1;
1463 }
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001464 nfs4_close_sync(&path, state, openflags);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001465out_drop:
1466 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return 0;
1468}
1469
1470
1471static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1472{
1473 struct nfs4_server_caps_res res = {};
1474 struct rpc_message msg = {
1475 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1476 .rpc_argp = fhandle,
1477 .rpc_resp = &res,
1478 };
1479 int status;
1480
1481 status = rpc_call_sync(server->client, &msg, 0);
1482 if (status == 0) {
1483 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1484 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1485 server->caps |= NFS_CAP_ACLS;
1486 if (res.has_links != 0)
1487 server->caps |= NFS_CAP_HARDLINKS;
1488 if (res.has_symlinks != 0)
1489 server->caps |= NFS_CAP_SYMLINKS;
1490 server->acl_bitmask = res.acl_bitmask;
1491 }
1492 return status;
1493}
1494
Trond Myklebust55a97592006-06-09 09:34:19 -04001495int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
1497 struct nfs4_exception exception = { };
1498 int err;
1499 do {
1500 err = nfs4_handle_exception(server,
1501 _nfs4_server_capabilities(server, fhandle),
1502 &exception);
1503 } while (exception.retry);
1504 return err;
1505}
1506
1507static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1508 struct nfs_fsinfo *info)
1509{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 struct nfs4_lookup_root_arg args = {
1511 .bitmask = nfs4_fattr_bitmap,
1512 };
1513 struct nfs4_lookup_res res = {
1514 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04001515 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 .fh = fhandle,
1517 };
1518 struct rpc_message msg = {
1519 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1520 .rpc_argp = &args,
1521 .rpc_resp = &res,
1522 };
Trond Myklebust0e574af2005-10-27 22:12:38 -04001523 nfs_fattr_init(info->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 return rpc_call_sync(server->client, &msg, 0);
1525}
1526
1527static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1528 struct nfs_fsinfo *info)
1529{
1530 struct nfs4_exception exception = { };
1531 int err;
1532 do {
1533 err = nfs4_handle_exception(server,
1534 _nfs4_lookup_root(server, fhandle, info),
1535 &exception);
1536 } while (exception.retry);
1537 return err;
1538}
1539
David Howells54ceac42006-08-22 20:06:13 -04001540/*
1541 * get the file handle for the "/" directory on the server
1542 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04001544 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 int status;
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (status == 0)
1550 status = nfs4_server_capabilities(server, fhandle);
1551 if (status == 0)
1552 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08001553 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
1555
Manoj Naik6b97fd32006-06-09 09:34:29 -04001556/*
1557 * Get locations and (maybe) other attributes of a referral.
1558 * Note that we'll actually follow the referral later when
1559 * we detect fsid mismatch in inode revalidation
1560 */
Trond Myklebust56659e92007-07-17 21:52:39 -04001561static 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 -04001562{
1563 int status = -ENOMEM;
1564 struct page *page = NULL;
1565 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04001566
1567 page = alloc_page(GFP_KERNEL);
1568 if (page == NULL)
1569 goto out;
1570 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1571 if (locations == NULL)
1572 goto out;
1573
Trond Myklebustc228fd32007-01-13 02:28:11 -05001574 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001575 if (status != 0)
1576 goto out;
1577 /* Make sure server returned a different fsid for the referral */
1578 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07001579 dprintk("%s: server did not return a different fsid for a referral at %s\n", __func__, name->name);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001580 status = -EIO;
1581 goto out;
1582 }
1583
1584 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1585 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1586 if (!fattr->mode)
1587 fattr->mode = S_IFDIR;
1588 memset(fhandle, 0, sizeof(struct nfs_fh));
1589out:
1590 if (page)
1591 __free_page(page);
1592 if (locations)
1593 kfree(locations);
1594 return status;
1595}
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1598{
1599 struct nfs4_getattr_arg args = {
1600 .fh = fhandle,
1601 .bitmask = server->attr_bitmask,
1602 };
1603 struct nfs4_getattr_res res = {
1604 .fattr = fattr,
1605 .server = server,
1606 };
1607 struct rpc_message msg = {
1608 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1609 .rpc_argp = &args,
1610 .rpc_resp = &res,
1611 };
1612
Trond Myklebust0e574af2005-10-27 22:12:38 -04001613 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return rpc_call_sync(server->client, &msg, 0);
1615}
1616
1617static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1618{
1619 struct nfs4_exception exception = { };
1620 int err;
1621 do {
1622 err = nfs4_handle_exception(server,
1623 _nfs4_proc_getattr(server, fhandle, fattr),
1624 &exception);
1625 } while (exception.retry);
1626 return err;
1627}
1628
1629/*
1630 * The file is not closed if it is opened due to the a request to change
1631 * the size of the file. The open call will not be needed once the
1632 * VFS layer lookup-intents are implemented.
1633 *
1634 * Close is called when the inode is destroyed.
1635 * If we haven't opened the file for O_WRONLY, we
1636 * need to in the size_change case to obtain a stateid.
1637 *
1638 * Got race?
1639 * Because OPEN is always done by name in nfsv4, it is
1640 * possible that we opened a different file by the same
1641 * name. We can recognize this race condition, but we
1642 * can't do anything about it besides returning an error.
1643 *
1644 * This will be fixed with VFS changes (lookup-intent).
1645 */
1646static int
1647nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1648 struct iattr *sattr)
1649{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001650 struct rpc_cred *cred;
1651 struct inode *inode = dentry->d_inode;
Trond Myklebustd5308382005-11-04 15:33:38 -05001652 struct nfs_open_context *ctx;
1653 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 int status;
1655
Trond Myklebust0e574af2005-10-27 22:12:38 -04001656 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Trond Myklebust98a8e322008-03-12 12:25:28 -04001658 cred = rpc_lookup_cred();
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001659 if (IS_ERR(cred))
1660 return PTR_ERR(cred);
Trond Myklebustd5308382005-11-04 15:33:38 -05001661
1662 /* Search for an existing open(O_WRITE) file */
1663 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1664 if (ctx != NULL)
1665 state = ctx->state;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001666
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001667 status = nfs4_do_setattr(inode, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001668 if (status == 0)
1669 nfs_setattr_update_inode(inode, sattr);
Trond Myklebustd5308382005-11-04 15:33:38 -05001670 if (ctx != NULL)
1671 put_nfs_open_context(ctx);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001672 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return status;
1674}
1675
Trond Myklebust56659e92007-07-17 21:52:39 -04001676static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
1677 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04001678 struct nfs_fattr *fattr)
1679{
1680 int status;
1681 struct nfs4_lookup_arg args = {
1682 .bitmask = server->attr_bitmask,
1683 .dir_fh = dirfh,
1684 .name = name,
1685 };
1686 struct nfs4_lookup_res res = {
1687 .server = server,
1688 .fattr = fattr,
1689 .fh = fhandle,
1690 };
1691 struct rpc_message msg = {
1692 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1693 .rpc_argp = &args,
1694 .rpc_resp = &res,
1695 };
1696
1697 nfs_fattr_init(fattr);
1698
1699 dprintk("NFS call lookupfh %s\n", name->name);
1700 status = rpc_call_sync(server->client, &msg, 0);
1701 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04001702 return status;
1703}
1704
1705static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1706 struct qstr *name, struct nfs_fh *fhandle,
1707 struct nfs_fattr *fattr)
1708{
1709 struct nfs4_exception exception = { };
1710 int err;
1711 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04001712 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1713 /* FIXME: !!!! */
1714 if (err == -NFS4ERR_MOVED) {
1715 err = -EREMOTE;
1716 break;
1717 }
1718 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04001719 } while (exception.retry);
1720 return err;
1721}
1722
Trond Myklebust56659e92007-07-17 21:52:39 -04001723static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1725{
Trond Myklebust4e56e082007-07-01 18:13:52 -04001726 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04001729 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001730 if (status == -NFS4ERR_MOVED)
1731 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 dprintk("NFS reply lookup: %d\n", status);
1733 return status;
1734}
1735
1736static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1737{
1738 struct nfs4_exception exception = { };
1739 int err;
1740 do {
1741 err = nfs4_handle_exception(NFS_SERVER(dir),
1742 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1743 &exception);
1744 } while (exception.retry);
1745 return err;
1746}
1747
1748static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1749{
Trond Myklebust76b32992007-08-10 17:45:11 -04001750 struct nfs_server *server = NFS_SERVER(inode);
1751 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 struct nfs4_accessargs args = {
1753 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04001754 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 };
Trond Myklebust76b32992007-08-10 17:45:11 -04001756 struct nfs4_accessres res = {
1757 .server = server,
1758 .fattr = &fattr,
1759 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 struct rpc_message msg = {
1761 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1762 .rpc_argp = &args,
1763 .rpc_resp = &res,
1764 .rpc_cred = entry->cred,
1765 };
1766 int mode = entry->mask;
1767 int status;
1768
1769 /*
1770 * Determine which access bits we want to ask for...
1771 */
1772 if (mode & MAY_READ)
1773 args.access |= NFS4_ACCESS_READ;
1774 if (S_ISDIR(inode->i_mode)) {
1775 if (mode & MAY_WRITE)
1776 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1777 if (mode & MAY_EXEC)
1778 args.access |= NFS4_ACCESS_LOOKUP;
1779 } else {
1780 if (mode & MAY_WRITE)
1781 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1782 if (mode & MAY_EXEC)
1783 args.access |= NFS4_ACCESS_EXECUTE;
1784 }
Trond Myklebust76b32992007-08-10 17:45:11 -04001785 nfs_fattr_init(&fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1787 if (!status) {
1788 entry->mask = 0;
1789 if (res.access & NFS4_ACCESS_READ)
1790 entry->mask |= MAY_READ;
1791 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1792 entry->mask |= MAY_WRITE;
1793 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1794 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04001795 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797 return status;
1798}
1799
1800static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1801{
1802 struct nfs4_exception exception = { };
1803 int err;
1804 do {
1805 err = nfs4_handle_exception(NFS_SERVER(inode),
1806 _nfs4_proc_access(inode, entry),
1807 &exception);
1808 } while (exception.retry);
1809 return err;
1810}
1811
1812/*
1813 * TODO: For the time being, we don't try to get any attributes
1814 * along with any of the zero-copy operations READ, READDIR,
1815 * READLINK, WRITE.
1816 *
1817 * In the case of the first three, we want to put the GETATTR
1818 * after the read-type operation -- this is because it is hard
1819 * to predict the length of a GETATTR response in v4, and thus
1820 * align the READ data correctly. This means that the GETATTR
1821 * may end up partially falling into the page cache, and we should
1822 * shift it into the 'tail' of the xdr_buf before processing.
1823 * To do this efficiently, we need to know the total length
1824 * of data received, which doesn't seem to be available outside
1825 * of the RPC layer.
1826 *
1827 * In the case of WRITE, we also want to put the GETATTR after
1828 * the operation -- in this case because we want to make sure
1829 * we get the post-operation mtime and size. This means that
1830 * we can't use xdr_encode_pages() as written: we need a variant
1831 * of it which would leave room in the 'tail' iovec.
1832 *
1833 * Both of these changes to the XDR layer would in fact be quite
1834 * minor, but I decided to leave them for a subsequent patch.
1835 */
1836static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1837 unsigned int pgbase, unsigned int pglen)
1838{
1839 struct nfs4_readlink args = {
1840 .fh = NFS_FH(inode),
1841 .pgbase = pgbase,
1842 .pglen = pglen,
1843 .pages = &page,
1844 };
1845 struct rpc_message msg = {
1846 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1847 .rpc_argp = &args,
1848 .rpc_resp = NULL,
1849 };
1850
1851 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1852}
1853
1854static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1855 unsigned int pgbase, unsigned int pglen)
1856{
1857 struct nfs4_exception exception = { };
1858 int err;
1859 do {
1860 err = nfs4_handle_exception(NFS_SERVER(inode),
1861 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1862 &exception);
1863 } while (exception.retry);
1864 return err;
1865}
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867/*
1868 * Got race?
1869 * We will need to arrange for the VFS layer to provide an atomic open.
1870 * Until then, this create/open method is prone to inefficiency and race
1871 * conditions due to the lookup, create, and open VFS calls from sys_open()
1872 * placed on the wire.
1873 *
1874 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1875 * The file will be opened again in the subsequent VFS open call
1876 * (nfs4_proc_file_open).
1877 *
1878 * The open for read will just hang around to be used by any process that
1879 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1880 */
1881
1882static int
1883nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07001884 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
Trond Myklebustad389da2007-06-05 12:30:00 -04001886 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001887 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001888 .dentry = dentry,
1889 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 struct nfs4_state *state;
1891 struct rpc_cred *cred;
1892 int status = 0;
1893
Trond Myklebust98a8e322008-03-12 12:25:28 -04001894 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 if (IS_ERR(cred)) {
1896 status = PTR_ERR(cred);
1897 goto out;
1898 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001899 state = nfs4_do_open(dir, &path, flags, sattr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 put_rpccred(cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001901 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (IS_ERR(state)) {
1903 status = PTR_ERR(state);
1904 goto out;
1905 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001906 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04001907 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (flags & O_EXCL) {
1909 struct nfs_fattr fattr;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001910 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001911 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04001912 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001913 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001914 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001915 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001916 status = nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001917 else
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001918 nfs4_close_sync(&path, state, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919out:
1920 return status;
1921}
1922
1923static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1924{
Trond Myklebust16e42952005-10-27 22:12:44 -04001925 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001926 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001928 .name.len = name->len,
1929 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04001930 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001932 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04001933 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04001934 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001936 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1937 .rpc_argp = &args,
1938 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 };
1940 int status;
1941
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001942 nfs_fattr_init(&res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04001943 status = rpc_call_sync(server->client, &msg, 0);
1944 if (status == 0) {
1945 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001946 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04001947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 return status;
1949}
1950
1951static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1952{
1953 struct nfs4_exception exception = { };
1954 int err;
1955 do {
1956 err = nfs4_handle_exception(NFS_SERVER(dir),
1957 _nfs4_proc_remove(dir, name),
1958 &exception);
1959 } while (exception.retry);
1960 return err;
1961}
1962
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001963static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001965 struct nfs_server *server = NFS_SERVER(dir);
1966 struct nfs_removeargs *args = msg->rpc_argp;
1967 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001969 args->bitmask = server->attr_bitmask;
1970 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001974static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001976 struct nfs_removeres *res = task->tk_msg.rpc_resp;
1977
1978 if (nfs4_async_handle_error(task, res->server) == -EAGAIN)
1979 return 0;
1980 update_changeattr(dir, &res->cinfo);
1981 nfs_post_op_update_inode(dir, &res->dir_attr);
1982 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983}
1984
1985static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1986 struct inode *new_dir, struct qstr *new_name)
1987{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001988 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 struct nfs4_rename_arg arg = {
1990 .old_dir = NFS_FH(old_dir),
1991 .new_dir = NFS_FH(new_dir),
1992 .old_name = old_name,
1993 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001994 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001996 struct nfs_fattr old_fattr, new_fattr;
1997 struct nfs4_rename_res res = {
1998 .server = server,
1999 .old_fattr = &old_fattr,
2000 .new_fattr = &new_fattr,
2001 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct rpc_message msg = {
2003 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2004 .rpc_argp = &arg,
2005 .rpc_resp = &res,
2006 };
2007 int status;
2008
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002009 nfs_fattr_init(res.old_fattr);
2010 nfs_fattr_init(res.new_fattr);
2011 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 if (!status) {
2014 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002015 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002017 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
2019 return status;
2020}
2021
2022static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2023 struct inode *new_dir, struct qstr *new_name)
2024{
2025 struct nfs4_exception exception = { };
2026 int err;
2027 do {
2028 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2029 _nfs4_proc_rename(old_dir, old_name,
2030 new_dir, new_name),
2031 &exception);
2032 } while (exception.retry);
2033 return err;
2034}
2035
2036static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2037{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002038 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 struct nfs4_link_arg arg = {
2040 .fh = NFS_FH(inode),
2041 .dir_fh = NFS_FH(dir),
2042 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002043 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002045 struct nfs_fattr fattr, dir_attr;
2046 struct nfs4_link_res res = {
2047 .server = server,
2048 .fattr = &fattr,
2049 .dir_attr = &dir_attr,
2050 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 struct rpc_message msg = {
2052 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2053 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002054 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 };
2056 int status;
2057
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002058 nfs_fattr_init(res.fattr);
2059 nfs_fattr_init(res.dir_attr);
2060 status = rpc_call_sync(server->client, &msg, 0);
2061 if (!status) {
2062 update_changeattr(dir, &res.cinfo);
2063 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002064 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 return status;
2068}
2069
2070static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2071{
2072 struct nfs4_exception exception = { };
2073 int err;
2074 do {
2075 err = nfs4_handle_exception(NFS_SERVER(inode),
2076 _nfs4_proc_link(inode, dir, name),
2077 &exception);
2078 } while (exception.retry);
2079 return err;
2080}
2081
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002082struct nfs4_createdata {
2083 struct rpc_message msg;
2084 struct nfs4_create_arg arg;
2085 struct nfs4_create_res res;
2086 struct nfs_fh fh;
2087 struct nfs_fattr fattr;
2088 struct nfs_fattr dir_fattr;
2089};
2090
2091static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2092 struct qstr *name, struct iattr *sattr, u32 ftype)
2093{
2094 struct nfs4_createdata *data;
2095
2096 data = kzalloc(sizeof(*data), GFP_KERNEL);
2097 if (data != NULL) {
2098 struct nfs_server *server = NFS_SERVER(dir);
2099
2100 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2101 data->msg.rpc_argp = &data->arg;
2102 data->msg.rpc_resp = &data->res;
2103 data->arg.dir_fh = NFS_FH(dir);
2104 data->arg.server = server;
2105 data->arg.name = name;
2106 data->arg.attrs = sattr;
2107 data->arg.ftype = ftype;
2108 data->arg.bitmask = server->attr_bitmask;
2109 data->res.server = server;
2110 data->res.fh = &data->fh;
2111 data->res.fattr = &data->fattr;
2112 data->res.dir_fattr = &data->dir_fattr;
2113 nfs_fattr_init(data->res.fattr);
2114 nfs_fattr_init(data->res.dir_fattr);
2115 }
2116 return data;
2117}
2118
2119static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2120{
2121 int status = rpc_call_sync(NFS_CLIENT(dir), &data->msg, 0);
2122 if (status == 0) {
2123 update_changeattr(dir, &data->res.dir_cinfo);
2124 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2125 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2126 }
2127 return status;
2128}
2129
2130static void nfs4_free_createdata(struct nfs4_createdata *data)
2131{
2132 kfree(data);
2133}
2134
Chuck Lever4f390c12006-08-22 20:06:22 -04002135static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002136 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002138 struct nfs4_createdata *data;
2139 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Chuck Lever94a6d752006-08-22 20:06:23 -04002141 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002142 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002143
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002144 status = -ENOMEM;
2145 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2146 if (data == NULL)
2147 goto out;
2148
2149 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2150 data->arg.u.symlink.pages = &page;
2151 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002153 status = nfs4_do_create(dir, dentry, data);
2154
2155 nfs4_free_createdata(data);
2156out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 return status;
2158}
2159
Chuck Lever4f390c12006-08-22 20:06:22 -04002160static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002161 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
2163 struct nfs4_exception exception = { };
2164 int err;
2165 do {
2166 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002167 _nfs4_proc_symlink(dir, dentry, page,
2168 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 &exception);
2170 } while (exception.retry);
2171 return err;
2172}
2173
2174static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2175 struct iattr *sattr)
2176{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002177 struct nfs4_createdata *data;
2178 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002180 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2181 if (data == NULL)
2182 goto out;
2183
2184 status = nfs4_do_create(dir, dentry, data);
2185
2186 nfs4_free_createdata(data);
2187out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 return status;
2189}
2190
2191static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2192 struct iattr *sattr)
2193{
2194 struct nfs4_exception exception = { };
2195 int err;
2196 do {
2197 err = nfs4_handle_exception(NFS_SERVER(dir),
2198 _nfs4_proc_mkdir(dir, dentry, sattr),
2199 &exception);
2200 } while (exception.retry);
2201 return err;
2202}
2203
2204static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2205 u64 cookie, struct page *page, unsigned int count, int plus)
2206{
2207 struct inode *dir = dentry->d_inode;
2208 struct nfs4_readdir_arg args = {
2209 .fh = NFS_FH(dir),
2210 .pages = &page,
2211 .pgbase = 0,
2212 .count = count,
2213 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2214 };
2215 struct nfs4_readdir_res res;
2216 struct rpc_message msg = {
2217 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2218 .rpc_argp = &args,
2219 .rpc_resp = &res,
2220 .rpc_cred = cred,
2221 };
2222 int status;
2223
Harvey Harrison3110ff82008-05-02 13:42:44 -07002224 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002225 dentry->d_parent->d_name.name,
2226 dentry->d_name.name,
2227 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2229 res.pgbase = args.pgbase;
2230 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2231 if (status == 0)
2232 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002233
2234 nfs_invalidate_atime(dir);
2235
Harvey Harrison3110ff82008-05-02 13:42:44 -07002236 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 return status;
2238}
2239
2240static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2241 u64 cookie, struct page *page, unsigned int count, int plus)
2242{
2243 struct nfs4_exception exception = { };
2244 int err;
2245 do {
2246 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2247 _nfs4_proc_readdir(dentry, cred, cookie,
2248 page, count, plus),
2249 &exception);
2250 } while (exception.retry);
2251 return err;
2252}
2253
2254static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2255 struct iattr *sattr, dev_t rdev)
2256{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002257 struct nfs4_createdata *data;
2258 int mode = sattr->ia_mode;
2259 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2262 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002263
2264 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2265 if (data == NULL)
2266 goto out;
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002269 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002271 data->arg.ftype = NF4BLK;
2272 data->arg.u.device.specdata1 = MAJOR(rdev);
2273 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 }
2275 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002276 data->arg.ftype = NF4CHR;
2277 data->arg.u.device.specdata1 = MAJOR(rdev);
2278 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002281 status = nfs4_do_create(dir, dentry, data);
2282
2283 nfs4_free_createdata(data);
2284out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 return status;
2286}
2287
2288static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2289 struct iattr *sattr, dev_t rdev)
2290{
2291 struct nfs4_exception exception = { };
2292 int err;
2293 do {
2294 err = nfs4_handle_exception(NFS_SERVER(dir),
2295 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2296 &exception);
2297 } while (exception.retry);
2298 return err;
2299}
2300
2301static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2302 struct nfs_fsstat *fsstat)
2303{
2304 struct nfs4_statfs_arg args = {
2305 .fh = fhandle,
2306 .bitmask = server->attr_bitmask,
2307 };
2308 struct rpc_message msg = {
2309 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2310 .rpc_argp = &args,
2311 .rpc_resp = fsstat,
2312 };
2313
Trond Myklebust0e574af2005-10-27 22:12:38 -04002314 nfs_fattr_init(fsstat->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 return rpc_call_sync(server->client, &msg, 0);
2316}
2317
2318static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2319{
2320 struct nfs4_exception exception = { };
2321 int err;
2322 do {
2323 err = nfs4_handle_exception(server,
2324 _nfs4_proc_statfs(server, fhandle, fsstat),
2325 &exception);
2326 } while (exception.retry);
2327 return err;
2328}
2329
2330static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2331 struct nfs_fsinfo *fsinfo)
2332{
2333 struct nfs4_fsinfo_arg args = {
2334 .fh = fhandle,
2335 .bitmask = server->attr_bitmask,
2336 };
2337 struct rpc_message msg = {
2338 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2339 .rpc_argp = &args,
2340 .rpc_resp = fsinfo,
2341 };
2342
2343 return rpc_call_sync(server->client, &msg, 0);
2344}
2345
2346static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2347{
2348 struct nfs4_exception exception = { };
2349 int err;
2350
2351 do {
2352 err = nfs4_handle_exception(server,
2353 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2354 &exception);
2355 } while (exception.retry);
2356 return err;
2357}
2358
2359static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2360{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002361 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2363}
2364
2365static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2366 struct nfs_pathconf *pathconf)
2367{
2368 struct nfs4_pathconf_arg args = {
2369 .fh = fhandle,
2370 .bitmask = server->attr_bitmask,
2371 };
2372 struct rpc_message msg = {
2373 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2374 .rpc_argp = &args,
2375 .rpc_resp = pathconf,
2376 };
2377
2378 /* None of the pathconf attributes are mandatory to implement */
2379 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2380 memset(pathconf, 0, sizeof(*pathconf));
2381 return 0;
2382 }
2383
Trond Myklebust0e574af2005-10-27 22:12:38 -04002384 nfs_fattr_init(pathconf->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 return rpc_call_sync(server->client, &msg, 0);
2386}
2387
2388static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2389 struct nfs_pathconf *pathconf)
2390{
2391 struct nfs4_exception exception = { };
2392 int err;
2393
2394 do {
2395 err = nfs4_handle_exception(server,
2396 _nfs4_proc_pathconf(server, fhandle, pathconf),
2397 &exception);
2398 } while (exception.retry);
2399 return err;
2400}
2401
Trond Myklebustec06c092006-03-20 13:44:27 -05002402static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
Trond Myklebustec06c092006-03-20 13:44:27 -05002404 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Trond Myklebustec06c092006-03-20 13:44:27 -05002406 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002408 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002410
2411 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002413 renew_lease(server, data->timestamp);
2414 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415}
2416
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002417static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002420 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421}
2422
Trond Myklebust788e7a82006-03-20 13:44:27 -05002423static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 struct inode *inode = data->inode;
2426
2427 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2428 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002429 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002431 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04002433 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002434 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002435 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002438static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002440 struct nfs_server *server = NFS_SERVER(data->inode);
2441
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002442 data->args.bitmask = server->attr_bitmask;
2443 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 data->timestamp = jiffies;
2445
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002446 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447}
2448
Trond Myklebust788e7a82006-03-20 13:44:27 -05002449static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 struct inode *inode = data->inode;
2452
2453 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2454 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002455 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04002457 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002458 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
2460
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002461static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Trond Myklebust788e7a82006-03-20 13:44:27 -05002463 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002465 data->args.bitmask = server->attr_bitmask;
2466 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002467 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468}
2469
2470/*
2471 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2472 * standalone procedure for queueing an asynchronous RENEW.
2473 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002474static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
David Howellsadfa6f92006-08-22 20:06:08 -04002476 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002477 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479 if (task->tk_status < 0) {
2480 switch (task->tk_status) {
2481 case -NFS4ERR_STALE_CLIENTID:
2482 case -NFS4ERR_EXPIRED:
2483 case -NFS4ERR_CB_PATH_DOWN:
2484 nfs4_schedule_state_recovery(clp);
2485 }
2486 return;
2487 }
2488 spin_lock(&clp->cl_lock);
2489 if (time_before(clp->cl_last_renewal,timestamp))
2490 clp->cl_last_renewal = timestamp;
2491 spin_unlock(&clp->cl_lock);
2492}
2493
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002494static const struct rpc_call_ops nfs4_renew_ops = {
2495 .rpc_call_done = nfs4_renew_done,
2496};
2497
David Howellsadfa6f92006-08-22 20:06:08 -04002498int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
2500 struct rpc_message msg = {
2501 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2502 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002503 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 };
2505
2506 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002507 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508}
2509
David Howellsadfa6f92006-08-22 20:06:08 -04002510int nfs4_proc_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 unsigned long now = jiffies;
2518 int status;
2519
2520 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2521 if (status < 0)
2522 return status;
2523 spin_lock(&clp->cl_lock);
2524 if (time_before(clp->cl_last_renewal,now))
2525 clp->cl_last_renewal = now;
2526 spin_unlock(&clp->cl_lock);
2527 return 0;
2528}
2529
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002530static inline int nfs4_server_supports_acls(struct nfs_server *server)
2531{
2532 return (server->caps & NFS_CAP_ACLS)
2533 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2534 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2535}
2536
2537/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2538 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2539 * the stack.
2540 */
2541#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2542
2543static void buf_to_pages(const void *buf, size_t buflen,
2544 struct page **pages, unsigned int *pgbase)
2545{
2546 const void *p = buf;
2547
2548 *pgbase = offset_in_page(buf);
2549 p -= *pgbase;
2550 while (p < buf + buflen) {
2551 *(pages++) = virt_to_page(p);
2552 p += PAGE_CACHE_SIZE;
2553 }
2554}
2555
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002556struct nfs4_cached_acl {
2557 int cached;
2558 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002559 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002560};
2561
2562static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002563{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002564 struct nfs_inode *nfsi = NFS_I(inode);
2565
2566 spin_lock(&inode->i_lock);
2567 kfree(nfsi->nfs4_acl);
2568 nfsi->nfs4_acl = acl;
2569 spin_unlock(&inode->i_lock);
2570}
2571
2572static void nfs4_zap_acl_attr(struct inode *inode)
2573{
2574 nfs4_set_cached_acl(inode, NULL);
2575}
2576
2577static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2578{
2579 struct nfs_inode *nfsi = NFS_I(inode);
2580 struct nfs4_cached_acl *acl;
2581 int ret = -ENOENT;
2582
2583 spin_lock(&inode->i_lock);
2584 acl = nfsi->nfs4_acl;
2585 if (acl == NULL)
2586 goto out;
2587 if (buf == NULL) /* user is just asking for length */
2588 goto out_len;
2589 if (acl->cached == 0)
2590 goto out;
2591 ret = -ERANGE; /* see getxattr(2) man page */
2592 if (acl->len > buflen)
2593 goto out;
2594 memcpy(buf, acl->data, acl->len);
2595out_len:
2596 ret = acl->len;
2597out:
2598 spin_unlock(&inode->i_lock);
2599 return ret;
2600}
2601
2602static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2603{
2604 struct nfs4_cached_acl *acl;
2605
2606 if (buf && acl_len <= PAGE_SIZE) {
2607 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2608 if (acl == NULL)
2609 goto out;
2610 acl->cached = 1;
2611 memcpy(acl->data, buf, acl_len);
2612 } else {
2613 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2614 if (acl == NULL)
2615 goto out;
2616 acl->cached = 0;
2617 }
2618 acl->len = acl_len;
2619out:
2620 nfs4_set_cached_acl(inode, acl);
2621}
2622
Trond Myklebust16b42892006-08-24 12:27:15 -04002623static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002624{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002625 struct page *pages[NFS4ACL_MAXPAGES];
2626 struct nfs_getaclargs args = {
2627 .fh = NFS_FH(inode),
2628 .acl_pages = pages,
2629 .acl_len = buflen,
2630 };
2631 size_t resp_len = buflen;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002632 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002633 struct rpc_message msg = {
2634 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2635 .rpc_argp = &args,
2636 .rpc_resp = &resp_len,
2637 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002638 struct page *localpage = NULL;
2639 int ret;
2640
2641 if (buflen < PAGE_SIZE) {
2642 /* As long as we're doing a round trip to the server anyway,
2643 * let's be prepared for a page of acl data. */
2644 localpage = alloc_page(GFP_KERNEL);
2645 resp_buf = page_address(localpage);
2646 if (localpage == NULL)
2647 return -ENOMEM;
2648 args.acl_pages[0] = localpage;
2649 args.acl_pgbase = 0;
J. Bruce Fields1d95db82005-10-13 16:54:32 -04002650 resp_len = args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002651 } else {
2652 resp_buf = buf;
2653 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2654 }
2655 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2656 if (ret)
2657 goto out_free;
2658 if (resp_len > args.acl_len)
2659 nfs4_write_cached_acl(inode, NULL, resp_len);
2660 else
2661 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2662 if (buf) {
2663 ret = -ERANGE;
2664 if (resp_len > buflen)
2665 goto out_free;
2666 if (localpage)
2667 memcpy(buf, resp_buf, resp_len);
2668 }
2669 ret = resp_len;
2670out_free:
2671 if (localpage)
2672 __free_page(localpage);
2673 return ret;
2674}
2675
Trond Myklebust16b42892006-08-24 12:27:15 -04002676static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2677{
2678 struct nfs4_exception exception = { };
2679 ssize_t ret;
2680 do {
2681 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2682 if (ret >= 0)
2683 break;
2684 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2685 } while (exception.retry);
2686 return ret;
2687}
2688
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002689static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2690{
2691 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002692 int ret;
2693
2694 if (!nfs4_server_supports_acls(server))
2695 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002696 ret = nfs_revalidate_inode(server, inode);
2697 if (ret < 0)
2698 return ret;
2699 ret = nfs4_read_cached_acl(inode, buf, buflen);
2700 if (ret != -ENOENT)
2701 return ret;
2702 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002703}
2704
Trond Myklebust16b42892006-08-24 12:27:15 -04002705static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002706{
2707 struct nfs_server *server = NFS_SERVER(inode);
2708 struct page *pages[NFS4ACL_MAXPAGES];
2709 struct nfs_setaclargs arg = {
2710 .fh = NFS_FH(inode),
2711 .acl_pages = pages,
2712 .acl_len = buflen,
2713 };
2714 struct rpc_message msg = {
2715 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2716 .rpc_argp = &arg,
2717 .rpc_resp = NULL,
2718 };
2719 int ret;
2720
2721 if (!nfs4_server_supports_acls(server))
2722 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002723 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002724 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
David Howells1f163412006-08-22 20:06:11 -04002725 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
J. Bruce Fields08efa202007-05-01 10:56:25 -04002726 nfs_zap_caches(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002727 return ret;
2728}
2729
Trond Myklebust16b42892006-08-24 12:27:15 -04002730static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2731{
2732 struct nfs4_exception exception = { };
2733 int err;
2734 do {
2735 err = nfs4_handle_exception(NFS_SERVER(inode),
2736 __nfs4_proc_set_acl(inode, buf, buflen),
2737 &exception);
2738 } while (exception.retry);
2739 return err;
2740}
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742static int
Trond Myklebustfaf5f492005-10-18 14:20:15 -07002743nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744{
David Howells7539bba2006-08-22 20:06:09 -04002745 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
2747 if (!clp || task->tk_status >= 0)
2748 return 0;
2749 switch(task->tk_status) {
2750 case -NFS4ERR_STALE_CLIENTID:
2751 case -NFS4ERR_STALE_STATEID:
2752 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05002753 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 nfs4_schedule_state_recovery(clp);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002755 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05002756 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 task->tk_status = 0;
2758 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 case -NFS4ERR_DELAY:
Chuck Lever006ea732006-03-20 13:44:14 -05002760 nfs_inc_server_stats((struct nfs_server *) server,
2761 NFSIOS_DELAY);
2762 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2764 task->tk_status = 0;
2765 return -EAGAIN;
2766 case -NFS4ERR_OLD_STATEID:
2767 task->tk_status = 0;
2768 return -EAGAIN;
2769 }
2770 task->tk_status = nfs4_map_errors(task->tk_status);
2771 return 0;
2772}
2773
Matthew Wilcox150030b2007-12-06 16:24:39 -05002774static int nfs4_wait_bit_killable(void *word)
Trond Myklebust433fbe42006-01-03 09:55:22 +01002775{
Matthew Wilcox150030b2007-12-06 16:24:39 -05002776 if (fatal_signal_pending(current))
Trond Myklebust433fbe42006-01-03 09:55:22 +01002777 return -ERESTARTSYS;
2778 schedule();
2779 return 0;
2780}
2781
David Howellsadfa6f92006-08-22 20:06:08 -04002782static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783{
Trond Myklebust433fbe42006-01-03 09:55:22 +01002784 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 might_sleep();
2787
Trond Myklebuste1485822006-12-13 16:43:13 -05002788 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2789
Trond Myklebust433fbe42006-01-03 09:55:22 +01002790 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
Matthew Wilcox150030b2007-12-06 16:24:39 -05002791 nfs4_wait_bit_killable, TASK_KILLABLE);
Trond Myklebuste1485822006-12-13 16:43:13 -05002792
2793 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 return res;
2795}
2796
2797static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2798{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 int res = 0;
2800
2801 might_sleep();
2802
2803 if (*timeout <= 0)
2804 *timeout = NFS4_POLL_RETRY_MIN;
2805 if (*timeout > NFS4_POLL_RETRY_MAX)
2806 *timeout = NFS4_POLL_RETRY_MAX;
Matthew Wilcox150030b2007-12-06 16:24:39 -05002807 schedule_timeout_killable(*timeout);
2808 if (fatal_signal_pending(current))
2809 res = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 *timeout <<= 1;
2811 return res;
2812}
2813
2814/* This is the error handling routine for processes that are allowed
2815 * to sleep.
2816 */
Trond Myklebust10afec92007-05-14 17:16:04 -04002817static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
David Howells7539bba2006-08-22 20:06:09 -04002819 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 int ret = errorcode;
2821
2822 exception->retry = 0;
2823 switch(errorcode) {
2824 case 0:
2825 return 0;
2826 case -NFS4ERR_STALE_CLIENTID:
2827 case -NFS4ERR_STALE_STATEID:
2828 case -NFS4ERR_EXPIRED:
Trond Myklebust433fbe42006-01-03 09:55:22 +01002829 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 ret = nfs4_wait_clnt_recover(server->client, clp);
2831 if (ret == 0)
2832 exception->retry = 1;
2833 break;
Trond Myklebustc5149832006-09-15 08:25:04 -04002834 case -NFS4ERR_FILE_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 case -NFS4ERR_GRACE:
2836 case -NFS4ERR_DELAY:
2837 ret = nfs4_delay(server->client, &exception->timeout);
Trond Myklebust2c566172005-11-04 15:33:50 -05002838 if (ret != 0)
2839 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 case -NFS4ERR_OLD_STATEID:
Trond Myklebust2c566172005-11-04 15:33:50 -05002841 exception->retry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 }
2843 /* We failed to handle the error */
2844 return nfs4_map_errors(ret);
2845}
2846
David Howellsadfa6f92006-08-22 20:06:08 -04002847int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
2849 nfs4_verifier sc_verifier;
2850 struct nfs4_setclientid setclientid = {
2851 .sc_verifier = &sc_verifier,
2852 .sc_prog = program,
2853 };
2854 struct rpc_message msg = {
2855 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2856 .rpc_argp = &setclientid,
2857 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002858 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 };
Al Virobc4785c2006-10-19 23:28:51 -07002860 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 int loop = 0;
2862 int status;
2863
Al Virobc4785c2006-10-19 23:28:51 -07002864 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2866 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2867
2868 for(;;) {
2869 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05002870 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05002871 clp->cl_ipaddr,
2872 rpc_peeraddr2str(clp->cl_rpcclient,
2873 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05002874 rpc_peeraddr2str(clp->cl_rpcclient,
2875 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04002876 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 clp->cl_id_uniquifier);
2878 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002879 sizeof(setclientid.sc_netid),
2880 rpc_peeraddr2str(clp->cl_rpcclient,
2881 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002883 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 clp->cl_ipaddr, port >> 8, port & 255);
2885
2886 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2887 if (status != -NFS4ERR_CLID_INUSE)
2888 break;
2889 if (signalled())
2890 break;
2891 if (loop++ & 1)
2892 ssleep(clp->cl_lease_time + 1);
2893 else
2894 if (++clp->cl_id_uniquifier == 0)
2895 break;
2896 }
2897 return status;
2898}
2899
David Howellsadfa6f92006-08-22 20:06:08 -04002900static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
2902 struct nfs_fsinfo fsinfo;
2903 struct rpc_message msg = {
2904 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2905 .rpc_argp = clp,
2906 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002907 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 };
2909 unsigned long now;
2910 int status;
2911
2912 now = jiffies;
2913 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2914 if (status == 0) {
2915 spin_lock(&clp->cl_lock);
2916 clp->cl_lease_time = fsinfo.lease_time * HZ;
2917 clp->cl_last_renewal = now;
Trond Myklebust58d9714a2006-01-03 09:55:24 +01002918 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 spin_unlock(&clp->cl_lock);
2920 }
2921 return status;
2922}
2923
David Howellsadfa6f92006-08-22 20:06:08 -04002924int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05002925{
2926 long timeout;
2927 int err;
2928 do {
2929 err = _nfs4_proc_setclientid_confirm(clp, cred);
2930 switch (err) {
2931 case 0:
2932 return err;
2933 case -NFS4ERR_RESOURCE:
2934 /* The IBM lawyers misread another document! */
2935 case -NFS4ERR_DELAY:
2936 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2937 }
2938 } while (err == 0);
2939 return err;
2940}
2941
Trond Myklebustfe650402006-01-03 09:55:18 +01002942struct nfs4_delegreturndata {
2943 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002944 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01002945 struct nfs_fh fh;
2946 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002947 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002948 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01002949 int rpc_status;
2950};
2951
Trond Myklebustfe650402006-01-03 09:55:18 +01002952static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2953{
2954 struct nfs4_delegreturndata *data = calldata;
2955 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002956 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01002957 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01002958}
2959
2960static void nfs4_delegreturn_release(void *calldata)
2961{
Trond Myklebustfe650402006-01-03 09:55:18 +01002962 kfree(calldata);
2963}
2964
Jesper Juhlc8d149f2006-03-20 13:44:07 -05002965static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01002966 .rpc_call_done = nfs4_delegreturn_done,
2967 .rpc_release = nfs4_delegreturn_release,
2968};
2969
Trond Myklebuste6f81072008-01-24 18:14:34 -05002970static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01002971{
2972 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002973 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01002974 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002975 struct rpc_message msg = {
2976 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
2977 .rpc_cred = cred,
2978 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002979 struct rpc_task_setup task_setup_data = {
2980 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002981 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002982 .callback_ops = &nfs4_delegreturn_ops,
2983 .flags = RPC_TASK_ASYNC,
2984 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05002985 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01002986
2987 data = kmalloc(sizeof(*data), GFP_KERNEL);
2988 if (data == NULL)
2989 return -ENOMEM;
2990 data->args.fhandle = &data->fh;
2991 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002992 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01002993 nfs_copy_fh(&data->fh, NFS_FH(inode));
2994 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01002995 data->res.fattr = &data->fattr;
2996 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002997 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01002998 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01002999 data->rpc_status = 0;
3000
Trond Myklebustc970aa82007-07-14 15:39:59 -04003001 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003002 msg.rpc_argp = &data->args,
3003 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003004 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003005 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003006 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003007 if (!issync)
3008 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003009 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003010 if (status != 0)
3011 goto out;
3012 status = data->rpc_status;
3013 if (status != 0)
3014 goto out;
3015 nfs_refresh_inode(inode, &data->fattr);
3016out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003017 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003018 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019}
3020
Trond Myklebuste6f81072008-01-24 18:14:34 -05003021int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
3023 struct nfs_server *server = NFS_SERVER(inode);
3024 struct nfs4_exception exception = { };
3025 int err;
3026 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003027 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 switch (err) {
3029 case -NFS4ERR_STALE_STATEID:
3030 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 case 0:
3032 return 0;
3033 }
3034 err = nfs4_handle_exception(server, err, &exception);
3035 } while (exception.retry);
3036 return err;
3037}
3038
3039#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3040#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3041
3042/*
3043 * sleep, with exponential backoff, and retry the LOCK operation.
3044 */
3045static unsigned long
3046nfs4_set_lock_task_retry(unsigned long timeout)
3047{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003048 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 timeout <<= 1;
3050 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3051 return NFS4_LOCK_MAXTIMEOUT;
3052 return timeout;
3053}
3054
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3056{
3057 struct inode *inode = state->inode;
3058 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003059 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003060 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003062 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003064 struct nfs_lockt_res res = {
3065 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 };
3067 struct rpc_message msg = {
3068 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3069 .rpc_argp = &arg,
3070 .rpc_resp = &res,
3071 .rpc_cred = state->owner->so_cred,
3072 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 struct nfs4_lock_state *lsp;
3074 int status;
3075
3076 down_read(&clp->cl_sem);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003077 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003078 status = nfs4_set_lock_state(state, request);
3079 if (status != 0)
3080 goto out;
3081 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003082 arg.lock_owner.id = lsp->ls_id.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003084 switch (status) {
3085 case 0:
3086 request->fl_type = F_UNLCK;
3087 break;
3088 case -NFS4ERR_DENIED:
3089 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003091 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003092out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 up_read(&clp->cl_sem);
3094 return status;
3095}
3096
3097static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3098{
3099 struct nfs4_exception exception = { };
3100 int err;
3101
3102 do {
3103 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3104 _nfs4_proc_getlk(state, cmd, request),
3105 &exception);
3106 } while (exception.retry);
3107 return err;
3108}
3109
3110static int do_vfs_lock(struct file *file, struct file_lock *fl)
3111{
3112 int res = 0;
3113 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3114 case FL_POSIX:
3115 res = posix_lock_file_wait(file, fl);
3116 break;
3117 case FL_FLOCK:
3118 res = flock_lock_file_wait(file, fl);
3119 break;
3120 default:
3121 BUG();
3122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 return res;
3124}
3125
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003126struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003127 struct nfs_locku_args arg;
3128 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003129 struct nfs4_lock_state *lsp;
3130 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003131 struct file_lock fl;
3132 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003133 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003134};
3135
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003136static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3137 struct nfs_open_context *ctx,
3138 struct nfs4_lock_state *lsp,
3139 struct nfs_seqid *seqid)
3140{
3141 struct nfs4_unlockdata *p;
3142 struct inode *inode = lsp->ls_state->inode;
3143
3144 p = kmalloc(sizeof(*p), GFP_KERNEL);
3145 if (p == NULL)
3146 return NULL;
3147 p->arg.fh = NFS_FH(inode);
3148 p->arg.fl = &p->fl;
3149 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003150 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003151 p->arg.stateid = &lsp->ls_stateid;
3152 p->lsp = lsp;
3153 atomic_inc(&lsp->ls_count);
3154 /* Ensure we don't close file until we're done freeing locks! */
3155 p->ctx = get_nfs_open_context(ctx);
3156 memcpy(&p->fl, fl, sizeof(p->fl));
3157 p->server = NFS_SERVER(inode);
3158 return p;
3159}
3160
Trond Myklebust06f814a2006-01-03 09:55:07 +01003161static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003162{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003163 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003164 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003165 nfs4_put_lock_state(calldata->lsp);
3166 put_nfs_open_context(calldata->ctx);
3167 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003168}
3169
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003170static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003171{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003172 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003173
Trond Myklebust06f814a2006-01-03 09:55:07 +01003174 if (RPC_ASSASSINATED(task))
3175 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003176 switch (task->tk_status) {
3177 case 0:
3178 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003179 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003180 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003181 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003182 break;
3183 case -NFS4ERR_STALE_STATEID:
3184 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003185 break;
3186 default:
Trond Myklebusta6a352e2006-12-13 16:43:06 -05003187 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003188 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003189 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003190}
3191
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003192static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003193{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003194 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003196 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003197 return;
3198 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003199 /* Note: exit _without_ running nfs4_locku_done */
3200 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003201 return;
3202 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003203 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003204 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205}
3206
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003207static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003208 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003209 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003210 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003211};
3212
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003213static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3214 struct nfs_open_context *ctx,
3215 struct nfs4_lock_state *lsp,
3216 struct nfs_seqid *seqid)
3217{
3218 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003219 struct rpc_message msg = {
3220 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3221 .rpc_cred = ctx->cred,
3222 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003223 struct rpc_task_setup task_setup_data = {
3224 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003225 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003226 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003227 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003228 .flags = RPC_TASK_ASYNC,
3229 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003230
Frank Filz137d6ac2007-07-09 15:32:29 -07003231 /* Ensure this is an unlock - when canceling a lock, the
3232 * canceled lock is passed in, and it won't be an unlock.
3233 */
3234 fl->fl_type = F_UNLCK;
3235
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003236 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3237 if (data == NULL) {
3238 nfs_free_seqid(seqid);
3239 return ERR_PTR(-ENOMEM);
3240 }
3241
Trond Myklebust5138fde2007-07-14 15:40:01 -04003242 msg.rpc_argp = &data->arg,
3243 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003244 task_setup_data.callback_data = data;
3245 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003246}
3247
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3249{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003250 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003251 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003252 struct rpc_task *task;
3253 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003254 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Trond Myklebust9b073572006-06-29 16:38:34 -04003256 status = nfs4_set_lock_state(state, request);
3257 /* Unlock _before_ we do the RPC call */
3258 request->fl_flags |= FL_EXISTS;
3259 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3260 goto out;
3261 if (status != 0)
3262 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003263 /* Is this a delegated lock? */
3264 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003265 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003266 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003267 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003268 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003269 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003270 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003271 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003272 status = PTR_ERR(task);
3273 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003274 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003275 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003276 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003277out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003278 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003279 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280}
3281
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003282struct nfs4_lockdata {
3283 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003284 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003285 struct nfs4_lock_state *lsp;
3286 struct nfs_open_context *ctx;
3287 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003288 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003289 int rpc_status;
3290 int cancelled;
3291};
3292
3293static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3294 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3295{
3296 struct nfs4_lockdata *p;
3297 struct inode *inode = lsp->ls_state->inode;
3298 struct nfs_server *server = NFS_SERVER(inode);
3299
3300 p = kzalloc(sizeof(*p), GFP_KERNEL);
3301 if (p == NULL)
3302 return NULL;
3303
3304 p->arg.fh = NFS_FH(inode);
3305 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003306 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3307 if (p->arg.open_seqid == NULL)
3308 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003309 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3310 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003311 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003312 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003313 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003314 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003315 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003316 p->lsp = lsp;
3317 atomic_inc(&lsp->ls_count);
3318 p->ctx = get_nfs_open_context(ctx);
3319 memcpy(&p->fl, fl, sizeof(p->fl));
3320 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003321out_free_seqid:
3322 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003323out_free:
3324 kfree(p);
3325 return NULL;
3326}
3327
3328static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3329{
3330 struct nfs4_lockdata *data = calldata;
3331 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Harvey Harrison3110ff82008-05-02 13:42:44 -07003333 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003334 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3335 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003336 /* Do we need to do an open_to_lock_owner? */
3337 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003338 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3339 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003340 data->arg.open_stateid = &state->stateid;
3341 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003342 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003343 } else
3344 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003345 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003346 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003347 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003348}
3349
3350static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3351{
3352 struct nfs4_lockdata *data = calldata;
3353
Harvey Harrison3110ff82008-05-02 13:42:44 -07003354 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003355
3356 data->rpc_status = task->tk_status;
3357 if (RPC_ASSASSINATED(task))
3358 goto out;
3359 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003360 if (data->rpc_status == 0)
3361 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3362 else
3363 goto out;
3364 }
3365 if (data->rpc_status == 0) {
3366 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3367 sizeof(data->lsp->ls_stateid.data));
3368 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003369 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003370 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003371out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003372 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003373}
3374
3375static void nfs4_lock_release(void *calldata)
3376{
3377 struct nfs4_lockdata *data = calldata;
3378
Harvey Harrison3110ff82008-05-02 13:42:44 -07003379 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003380 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003381 if (data->cancelled != 0) {
3382 struct rpc_task *task;
3383 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3384 data->arg.lock_seqid);
3385 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003386 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003387 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003388 } else
3389 nfs_free_seqid(data->arg.lock_seqid);
3390 nfs4_put_lock_state(data->lsp);
3391 put_nfs_open_context(data->ctx);
3392 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003393 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003394}
3395
3396static const struct rpc_call_ops nfs4_lock_ops = {
3397 .rpc_call_prepare = nfs4_lock_prepare,
3398 .rpc_call_done = nfs4_lock_done,
3399 .rpc_release = nfs4_lock_release,
3400};
3401
3402static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3403{
3404 struct nfs4_lockdata *data;
3405 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003406 struct rpc_message msg = {
3407 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3408 .rpc_cred = state->owner->so_cred,
3409 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003410 struct rpc_task_setup task_setup_data = {
3411 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003412 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003413 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003414 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003415 .flags = RPC_TASK_ASYNC,
3416 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003417 int ret;
3418
Harvey Harrison3110ff82008-05-02 13:42:44 -07003419 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003420 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003421 fl->fl_u.nfs4_fl.owner);
3422 if (data == NULL)
3423 return -ENOMEM;
3424 if (IS_SETLKW(cmd))
3425 data->arg.block = 1;
3426 if (reclaim != 0)
3427 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003428 msg.rpc_argp = &data->arg,
3429 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003430 task_setup_data.callback_data = data;
3431 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003432 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003433 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003434 ret = nfs4_wait_for_completion_rpc_task(task);
3435 if (ret == 0) {
3436 ret = data->rpc_status;
3437 if (ret == -NFS4ERR_DENIED)
3438 ret = -EAGAIN;
3439 } else
3440 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003441 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003442 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003443 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444}
3445
3446static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3447{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003448 struct nfs_server *server = NFS_SERVER(state->inode);
3449 struct nfs4_exception exception = { };
3450 int err;
3451
3452 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003453 /* Cache the lock if possible... */
3454 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3455 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003456 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3457 if (err != -NFS4ERR_DELAY)
3458 break;
3459 nfs4_handle_exception(server, err, &exception);
3460 } while (exception.retry);
3461 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462}
3463
3464static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3465{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003466 struct nfs_server *server = NFS_SERVER(state->inode);
3467 struct nfs4_exception exception = { };
3468 int err;
3469
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003470 err = nfs4_set_lock_state(state, request);
3471 if (err != 0)
3472 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003473 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003474 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3475 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003476 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3477 if (err != -NFS4ERR_DELAY)
3478 break;
3479 nfs4_handle_exception(server, err, &exception);
3480 } while (exception.retry);
3481 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482}
3483
3484static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3485{
David Howellsadfa6f92006-08-22 20:06:08 -04003486 struct nfs_client *clp = state->owner->so_client;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003487 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 int status;
3489
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003490 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003491 status = nfs4_set_lock_state(state, request);
3492 if (status != 0)
3493 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003494 request->fl_flags |= FL_ACCESS;
3495 status = do_vfs_lock(request->fl_file, request);
3496 if (status < 0)
3497 goto out;
3498 down_read(&clp->cl_sem);
3499 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3500 struct nfs_inode *nfsi = NFS_I(state->inode);
3501 /* Yes: cache locks! */
3502 down_read(&nfsi->rwsem);
3503 /* ...but avoid races with delegation recall... */
3504 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3505 request->fl_flags = fl_flags & ~FL_SLEEP;
3506 status = do_vfs_lock(request->fl_file, request);
3507 up_read(&nfsi->rwsem);
3508 goto out_unlock;
3509 }
3510 up_read(&nfsi->rwsem);
3511 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003512 status = _nfs4_do_setlk(state, cmd, request, 0);
3513 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003514 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003515 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003516 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003517 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07003518 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003519out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 up_read(&clp->cl_sem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003521out:
3522 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 return status;
3524}
3525
3526static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3527{
3528 struct nfs4_exception exception = { };
3529 int err;
3530
3531 do {
3532 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3533 _nfs4_proc_setlk(state, cmd, request),
3534 &exception);
3535 } while (exception.retry);
3536 return err;
3537}
3538
3539static int
3540nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3541{
3542 struct nfs_open_context *ctx;
3543 struct nfs4_state *state;
3544 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3545 int status;
3546
3547 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003548 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 state = ctx->state;
3550
3551 if (request->fl_start < 0 || request->fl_end < 0)
3552 return -EINVAL;
3553
3554 if (IS_GETLK(cmd))
3555 return nfs4_proc_getlk(state, F_GETLK, request);
3556
3557 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3558 return -EINVAL;
3559
3560 if (request->fl_type == F_UNLCK)
3561 return nfs4_proc_unlck(state, cmd, request);
3562
3563 do {
3564 status = nfs4_proc_setlk(state, cmd, request);
3565 if ((status != -EAGAIN) || IS_SETLK(cmd))
3566 break;
3567 timeout = nfs4_set_lock_task_retry(timeout);
3568 status = -ERESTARTSYS;
3569 if (signalled())
3570 break;
3571 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 return status;
3573}
3574
Trond Myklebust888e6942005-11-04 15:38:11 -05003575int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3576{
3577 struct nfs_server *server = NFS_SERVER(state->inode);
3578 struct nfs4_exception exception = { };
3579 int err;
3580
3581 err = nfs4_set_lock_state(state, fl);
3582 if (err != 0)
3583 goto out;
3584 do {
3585 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3586 if (err != -NFS4ERR_DELAY)
3587 break;
3588 err = nfs4_handle_exception(server, err, &exception);
3589 } while (exception.retry);
3590out:
3591 return err;
3592}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003593
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003594#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3595
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003596int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3597 size_t buflen, int flags)
3598{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003599 struct inode *inode = dentry->d_inode;
3600
3601 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3602 return -EOPNOTSUPP;
3603
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003604 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003605}
3606
3607/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3608 * and that's what we'll do for e.g. user attributes that haven't been set.
3609 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3610 * attributes in kernel-managed attribute namespaces. */
3611ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3612 size_t buflen)
3613{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003614 struct inode *inode = dentry->d_inode;
3615
3616 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3617 return -EOPNOTSUPP;
3618
3619 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003620}
3621
3622ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3623{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003624 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003625
J. Bruce Fields096455a2006-03-20 23:23:42 -05003626 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3627 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003628 if (buf && buflen < len)
3629 return -ERANGE;
3630 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003631 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3632 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003633}
3634
Trond Myklebust56659e92007-07-17 21:52:39 -04003635int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003636 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003637{
3638 struct nfs_server *server = NFS_SERVER(dir);
3639 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003640 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3641 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003642 };
3643 struct nfs4_fs_locations_arg args = {
3644 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05003645 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003646 .page = page,
3647 .bitmask = bitmask,
3648 };
3649 struct rpc_message msg = {
3650 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3651 .rpc_argp = &args,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003652 .rpc_resp = fs_locations,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003653 };
3654 int status;
3655
Harvey Harrison3110ff82008-05-02 13:42:44 -07003656 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05003657 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003658 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003659 fs_locations->nlocations = 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003660 status = rpc_call_sync(server->client, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003661 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003662 return status;
3663}
3664
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3666 .recover_open = nfs4_open_reclaim,
3667 .recover_lock = nfs4_lock_reclaim,
3668};
3669
3670struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3671 .recover_open = nfs4_open_expired,
3672 .recover_lock = nfs4_lock_expired,
3673};
3674
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003675static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003676 .permission = nfs_permission,
3677 .getattr = nfs_getattr,
3678 .setattr = nfs_setattr,
3679 .getxattr = nfs4_getxattr,
3680 .setxattr = nfs4_setxattr,
3681 .listxattr = nfs4_listxattr,
3682};
3683
David Howells509de812006-08-22 20:06:11 -04003684const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 .version = 4, /* protocol version */
3686 .dentry_ops = &nfs4_dentry_operations,
3687 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003688 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 .getroot = nfs4_proc_get_root,
3690 .getattr = nfs4_proc_getattr,
3691 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003692 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 .lookup = nfs4_proc_lookup,
3694 .access = nfs4_proc_access,
3695 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 .create = nfs4_proc_create,
3697 .remove = nfs4_proc_remove,
3698 .unlink_setup = nfs4_proc_unlink_setup,
3699 .unlink_done = nfs4_proc_unlink_done,
3700 .rename = nfs4_proc_rename,
3701 .link = nfs4_proc_link,
3702 .symlink = nfs4_proc_symlink,
3703 .mkdir = nfs4_proc_mkdir,
3704 .rmdir = nfs4_proc_remove,
3705 .readdir = nfs4_proc_readdir,
3706 .mknod = nfs4_proc_mknod,
3707 .statfs = nfs4_proc_statfs,
3708 .fsinfo = nfs4_proc_fsinfo,
3709 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003710 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 .decode_dirent = nfs4_decode_dirent,
3712 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003713 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003715 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003717 .commit_done = nfs4_commit_done,
Trond Myklebust02a913a2005-10-18 14:20:17 -07003718 .file_open = nfs_open,
3719 .file_release = nfs_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003721 .clear_acl_cache = nfs4_zap_acl_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722};
3723
3724/*
3725 * Local variables:
3726 * c-basic-offset: 8
3727 * End:
3728 */