blob: 49cf969417c074e41fa03cde0d0a78a6aa59b756 [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 Myklebust9e33bed2008-12-23 15:21:46 -050065static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
Trond Myklebust99367812007-07-17 21:52:41 -040066static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
67static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -050070static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 if (err < -1000) {
73 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070074 __func__, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return -EIO;
76 }
77 return err;
78}
79
80/*
81 * This is our standard bitmap for GETATTR requests.
82 */
83const u32 nfs4_fattr_bitmap[2] = {
84 FATTR4_WORD0_TYPE
85 | FATTR4_WORD0_CHANGE
86 | FATTR4_WORD0_SIZE
87 | FATTR4_WORD0_FSID
88 | FATTR4_WORD0_FILEID,
89 FATTR4_WORD1_MODE
90 | FATTR4_WORD1_NUMLINKS
91 | FATTR4_WORD1_OWNER
92 | FATTR4_WORD1_OWNER_GROUP
93 | FATTR4_WORD1_RAWDEV
94 | FATTR4_WORD1_SPACE_USED
95 | FATTR4_WORD1_TIME_ACCESS
96 | FATTR4_WORD1_TIME_METADATA
97 | FATTR4_WORD1_TIME_MODIFY
98};
99
100const u32 nfs4_statfs_bitmap[2] = {
101 FATTR4_WORD0_FILES_AVAIL
102 | FATTR4_WORD0_FILES_FREE
103 | FATTR4_WORD0_FILES_TOTAL,
104 FATTR4_WORD1_SPACE_AVAIL
105 | FATTR4_WORD1_SPACE_FREE
106 | FATTR4_WORD1_SPACE_TOTAL
107};
108
Trond Myklebust4ce79712005-06-22 17:16:21 +0000109const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 FATTR4_WORD0_MAXLINK
111 | FATTR4_WORD0_MAXNAME,
112 0
113};
114
115const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
116 | FATTR4_WORD0_MAXREAD
117 | FATTR4_WORD0_MAXWRITE
118 | FATTR4_WORD0_LEASE_TIME,
119 0
120};
121
Manoj Naik830b8e32006-06-09 09:34:25 -0400122const u32 nfs4_fs_locations_bitmap[2] = {
123 FATTR4_WORD0_TYPE
124 | FATTR4_WORD0_CHANGE
125 | FATTR4_WORD0_SIZE
126 | FATTR4_WORD0_FSID
127 | FATTR4_WORD0_FILEID
128 | FATTR4_WORD0_FS_LOCATIONS,
129 FATTR4_WORD1_MODE
130 | FATTR4_WORD1_NUMLINKS
131 | FATTR4_WORD1_OWNER
132 | FATTR4_WORD1_OWNER_GROUP
133 | FATTR4_WORD1_RAWDEV
134 | FATTR4_WORD1_SPACE_USED
135 | FATTR4_WORD1_TIME_ACCESS
136 | FATTR4_WORD1_TIME_METADATA
137 | FATTR4_WORD1_TIME_MODIFY
138 | FATTR4_WORD1_MOUNTED_ON_FILEID
139};
140
Al Virobc4785c2006-10-19 23:28:51 -0700141static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct nfs4_readdir_arg *readdir)
143{
Al Viro0dbb4c62006-10-19 23:28:49 -0700144 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 BUG_ON(readdir->count < 80);
147 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000148 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
150 return;
151 }
152
153 readdir->cookie = 0;
154 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
155 if (cookie == 2)
156 return;
157
158 /*
159 * NFSv4 servers do not return entries for '.' and '..'
160 * Therefore, we fake these entries here. We let '.'
161 * have cookie 0 and '..' have cookie 1. Note that
162 * when talking to the server, we always send cookie 0
163 * instead of 1 or 2.
164 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700165 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 if (cookie == 0) {
168 *p++ = xdr_one; /* next */
169 *p++ = xdr_zero; /* cookie, first word */
170 *p++ = xdr_one; /* cookie, second word */
171 *p++ = xdr_one; /* entry len */
172 memcpy(p, ".\0\0\0", 4); /* entry */
173 p++;
174 *p++ = xdr_one; /* bitmap length */
175 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
176 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400177 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
180 *p++ = xdr_one; /* next */
181 *p++ = xdr_zero; /* cookie, first word */
182 *p++ = xdr_two; /* cookie, second word */
183 *p++ = xdr_two; /* entry len */
184 memcpy(p, "..\0\0", 4); /* entry */
185 p++;
186 *p++ = xdr_one; /* bitmap length */
187 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
188 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400189 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 readdir->pgbase = (char *)p - (char *)start;
192 readdir->count -= readdir->pgbase;
193 kunmap_atomic(start, KM_USER0);
194}
195
Trond Myklebust65de8722008-12-23 15:21:44 -0500196static int nfs4_wait_clnt_recover(struct nfs_client *clp)
197{
198 int res;
199
200 might_sleep();
201
Trond Myklebuste005e802008-12-23 15:21:48 -0500202 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400203 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500204 return res;
205}
206
207static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
208{
209 int res = 0;
210
211 might_sleep();
212
213 if (*timeout <= 0)
214 *timeout = NFS4_POLL_RETRY_MIN;
215 if (*timeout > NFS4_POLL_RETRY_MAX)
216 *timeout = NFS4_POLL_RETRY_MAX;
217 schedule_timeout_killable(*timeout);
218 if (fatal_signal_pending(current))
219 res = -ERESTARTSYS;
220 *timeout <<= 1;
221 return res;
222}
223
224/* This is the error handling routine for processes that are allowed
225 * to sleep.
226 */
227static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
228{
229 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500230 struct nfs4_state *state = exception->state;
Trond Myklebust65de8722008-12-23 15:21:44 -0500231 int ret = errorcode;
232
233 exception->retry = 0;
234 switch(errorcode) {
235 case 0:
236 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500237 case -NFS4ERR_ADMIN_REVOKED:
238 case -NFS4ERR_BAD_STATEID:
239 case -NFS4ERR_OPENMODE:
240 if (state == NULL)
241 break;
242 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebust65de8722008-12-23 15:21:44 -0500243 case -NFS4ERR_STALE_CLIENTID:
244 case -NFS4ERR_STALE_STATEID:
245 case -NFS4ERR_EXPIRED:
246 nfs4_schedule_state_recovery(clp);
247 ret = nfs4_wait_clnt_recover(clp);
248 if (ret == 0)
249 exception->retry = 1;
250 break;
251 case -NFS4ERR_FILE_OPEN:
252 case -NFS4ERR_GRACE:
253 case -NFS4ERR_DELAY:
254 ret = nfs4_delay(server->client, &exception->timeout);
255 if (ret != 0)
256 break;
257 case -NFS4ERR_OLD_STATEID:
258 exception->retry = 1;
259 }
260 /* We failed to handle the error */
261 return nfs4_map_errors(ret);
262}
263
264
Trond Myklebust26e976a2006-01-03 09:55:21 +0100265static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
David Howells7539bba2006-08-22 20:06:09 -0400267 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 spin_lock(&clp->cl_lock);
269 if (time_before(clp->cl_last_renewal,timestamp))
270 clp->cl_last_renewal = timestamp;
271 spin_unlock(&clp->cl_lock);
272}
273
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400274#if defined(CONFIG_NFS_V4_1)
275
276int _nfs4_call_sync_session(struct nfs_server *server,
277 struct rpc_message *msg,
278 struct nfs4_sequence_args *args,
279 struct nfs4_sequence_res *res,
280 int cache_reply)
281{
282 /* in preparation for setting up the sequence op */
283 return rpc_call_sync(server->client, msg, 0);
284}
285
286#endif /* CONFIG_NFS_V4_1 */
287
288int _nfs4_call_sync(struct nfs_server *server,
289 struct rpc_message *msg,
290 struct nfs4_sequence_args *args,
291 struct nfs4_sequence_res *res,
292 int cache_reply)
293{
Benny Halevyf3752972009-04-01 09:22:04 -0400294 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400295 return rpc_call_sync(server->client, msg, 0);
296}
297
298#define nfs4_call_sync(server, msg, args, res, cache_reply) \
299 (server)->nfs_client->cl_call_sync((server), (msg), &(args)->seq_args, \
300 &(res)->seq_res, (cache_reply))
301
Trond Myklebust38478b22006-05-25 01:40:57 -0400302static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Trond Myklebust38478b22006-05-25 01:40:57 -0400304 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Trond Myklebust38478b22006-05-25 01:40:57 -0400306 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400307 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
308 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400309 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400310 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400311 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100314struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400315 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100316 struct nfs_openargs o_arg;
317 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100318 struct nfs_open_confirmargs c_arg;
319 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100320 struct nfs_fattr f_attr;
321 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400322 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100323 struct dentry *dir;
324 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400325 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100326 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100327 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400328 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100329 int rpc_status;
330 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100331};
332
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400333
334static void nfs4_init_opendata_res(struct nfs4_opendata *p)
335{
336 p->o_res.f_attr = &p->f_attr;
337 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400338 p->o_res.seqid = p->o_arg.seqid;
339 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400340 p->o_res.server = p->o_arg.server;
341 nfs_fattr_init(&p->f_attr);
342 nfs_fattr_init(&p->dir_attr);
343}
344
Trond Myklebustad389da2007-06-05 12:30:00 -0400345static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500346 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100347 const struct iattr *attrs)
348{
Trond Myklebustad389da2007-06-05 12:30:00 -0400349 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100350 struct inode *dir = parent->d_inode;
351 struct nfs_server *server = NFS_SERVER(dir);
352 struct nfs4_opendata *p;
353
354 p = kzalloc(sizeof(*p), GFP_KERNEL);
355 if (p == NULL)
356 goto err;
357 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
358 if (p->o_arg.seqid == NULL)
359 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400360 p->path.mnt = mntget(path->mnt);
361 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100362 p->dir = parent;
363 p->owner = sp;
364 atomic_inc(&sp->so_count);
365 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500366 p->o_arg.open_flags = flags;
367 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400368 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400369 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400370 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100371 p->o_arg.server = server;
372 p->o_arg.bitmask = server->attr_bitmask;
373 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100374 if (flags & O_EXCL) {
375 u32 *s = (u32 *) p->o_arg.u.verifier.data;
376 s[0] = jiffies;
377 s[1] = current->pid;
378 } else if (flags & O_CREAT) {
379 p->o_arg.u.attrs = &p->attrs;
380 memcpy(&p->attrs, attrs, sizeof(p->attrs));
381 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100382 p->c_arg.fh = &p->o_res.fh;
383 p->c_arg.stateid = &p->o_res.stateid;
384 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400385 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400386 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100387 return p;
388err_free:
389 kfree(p);
390err:
391 dput(parent);
392 return NULL;
393}
394
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400395static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100396{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400397 struct nfs4_opendata *p = container_of(kref,
398 struct nfs4_opendata, kref);
399
400 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400401 if (p->state != NULL)
402 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400403 nfs4_put_state_owner(p->owner);
404 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700405 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400406 kfree(p);
407}
408
409static void nfs4_opendata_put(struct nfs4_opendata *p)
410{
411 if (p != NULL)
412 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100413}
414
Trond Myklebust06f814a2006-01-03 09:55:07 +0100415static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
416{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100417 int ret;
418
Trond Myklebust06f814a2006-01-03 09:55:07 +0100419 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100420 return ret;
421}
422
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500423static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400424{
425 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500426
427 if (open_mode & O_EXCL)
428 goto out;
429 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400430 case FMODE_READ:
431 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400432 break;
433 case FMODE_WRITE:
434 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400435 break;
436 case FMODE_READ|FMODE_WRITE:
437 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
438 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500439out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400440 return ret;
441}
442
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500443static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400444{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500445 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400446 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500447 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400448 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500449 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400450 return 1;
451}
452
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500453static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100454{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500455 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100456 case FMODE_WRITE:
457 state->n_wronly++;
458 break;
459 case FMODE_READ:
460 state->n_rdonly++;
461 break;
462 case FMODE_READ|FMODE_WRITE:
463 state->n_rdwr++;
464 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500465 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100466}
467
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500468static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400469{
470 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
471 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
472 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500473 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400474 case FMODE_READ:
475 set_bit(NFS_O_RDONLY_STATE, &state->flags);
476 break;
477 case FMODE_WRITE:
478 set_bit(NFS_O_WRONLY_STATE, &state->flags);
479 break;
480 case FMODE_READ|FMODE_WRITE:
481 set_bit(NFS_O_RDWR_STATE, &state->flags);
482 }
483}
484
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500485static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400486{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400487 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500488 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400489 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400490}
491
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500492static void __update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, const nfs4_stateid *deleg_stateid, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400494 /*
495 * Protect the call to nfs4_state_set_mode_locked and
496 * serialise the stateid update
497 */
498 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400499 if (deleg_stateid != NULL) {
500 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
501 set_bit(NFS_DELEGATED_STATE, &state->flags);
502 }
503 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500504 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400505 write_sequnlock(&state->seqlock);
506 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500507 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700508 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500511static int update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *delegation, fmode_t fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500512{
513 struct nfs_inode *nfsi = NFS_I(state->inode);
514 struct nfs_delegation *deleg_cur;
515 int ret = 0;
516
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500517 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500518
519 rcu_read_lock();
520 deleg_cur = rcu_dereference(nfsi->delegation);
521 if (deleg_cur == NULL)
522 goto no_delegation;
523
524 spin_lock(&deleg_cur->lock);
525 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500526 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500527 goto no_delegation_unlock;
528
529 if (delegation == NULL)
530 delegation = &deleg_cur->stateid;
531 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
532 goto no_delegation_unlock;
533
Trond Myklebustb7391f42008-12-23 15:21:52 -0500534 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500535 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500536 ret = 1;
537no_delegation_unlock:
538 spin_unlock(&deleg_cur->lock);
539no_delegation:
540 rcu_read_unlock();
541
542 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500543 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500544 ret = 1;
545 }
546
547 return ret;
548}
549
550
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500551static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400552{
553 struct nfs_delegation *delegation;
554
555 rcu_read_lock();
556 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500557 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400558 rcu_read_unlock();
559 return;
560 }
561 rcu_read_unlock();
562 nfs_inode_return_delegation(inode);
563}
564
Trond Myklebust6ee41262007-07-08 14:11:36 -0400565static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400566{
567 struct nfs4_state *state = opendata->state;
568 struct nfs_inode *nfsi = NFS_I(state->inode);
569 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500570 int open_mode = opendata->o_arg.open_flags & O_EXCL;
571 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400572 nfs4_stateid stateid;
573 int ret = -EAGAIN;
574
Trond Myklebustaac00a82007-07-05 19:02:21 -0400575 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500576 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400577 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500578 if (can_open_cached(state, fmode, open_mode)) {
579 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400580 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400581 goto out_return_state;
582 }
583 spin_unlock(&state->owner->so_lock);
584 }
Trond Myklebust34310432008-12-23 15:21:38 -0500585 rcu_read_lock();
586 delegation = rcu_dereference(nfsi->delegation);
587 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500588 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -0500589 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400590 break;
Trond Myklebust34310432008-12-23 15:21:38 -0500591 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400592 /* Save the delegation */
593 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
594 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400595 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400596 if (ret != 0)
597 goto out;
598 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -0500599
600 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500601 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -0500602 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400603 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400604out:
605 return ERR_PTR(ret);
606out_return_state:
607 atomic_inc(&state->count);
608 return state;
609}
610
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100611static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
612{
613 struct inode *inode;
614 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400615 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400616 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100617
Trond Myklebustaac00a82007-07-05 19:02:21 -0400618 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400619 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400620 goto out;
621 }
622
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400623 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100624 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400625 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100626 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400627 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500628 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400629 goto err;
630 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100631 state = nfs4_get_open_state(inode, data->owner);
632 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400633 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400634 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400635 int delegation_flags = 0;
636
Trond Myklebust003707c2007-07-05 18:07:55 -0400637 rcu_read_lock();
638 delegation = rcu_dereference(NFS_I(inode)->delegation);
639 if (delegation)
640 delegation_flags = delegation->flags;
641 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -0500642 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400643 nfs_inode_set_delegation(state->inode,
644 data->owner->so_cred,
645 &data->o_res);
646 else
647 nfs_inode_reclaim_delegation(state->inode,
648 data->owner->so_cred,
649 &data->o_res);
650 }
Trond Myklebust34310432008-12-23 15:21:38 -0500651
652 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500653 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100654 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400655out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100656 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400657err_put_inode:
658 iput(inode);
659err:
660 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100661}
662
Trond Myklebust864472e2006-01-03 09:55:15 +0100663static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
664{
665 struct nfs_inode *nfsi = NFS_I(state->inode);
666 struct nfs_open_context *ctx;
667
668 spin_lock(&state->inode->i_lock);
669 list_for_each_entry(ctx, &nfsi->open_files, list) {
670 if (ctx->state != state)
671 continue;
672 get_nfs_open_context(ctx);
673 spin_unlock(&state->inode->i_lock);
674 return ctx;
675 }
676 spin_unlock(&state->inode->i_lock);
677 return ERR_PTR(-ENOENT);
678}
679
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400680static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
681{
682 struct nfs4_opendata *opendata;
683
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500684 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL);
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400685 if (opendata == NULL)
686 return ERR_PTR(-ENOMEM);
687 opendata->state = state;
688 atomic_inc(&state->count);
689 return opendata;
690}
691
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500692static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +0100693{
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400694 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100695 int ret;
696
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500697 opendata->o_arg.open_flags = 0;
698 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400699 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
700 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
701 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100702 ret = _nfs4_proc_open(opendata);
703 if (ret != 0)
704 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400705 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400706 if (IS_ERR(newstate))
707 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500708 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400709 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100710 return 0;
711}
712
713static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
714{
Trond Myklebust864472e2006-01-03 09:55:15 +0100715 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100716 int ret;
717
718 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400719 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100720 smp_rmb();
721 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400722 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100723 if (ret != 0)
724 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400725 if (newstate != state)
726 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100727 }
728 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400729 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100730 if (ret != 0)
731 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400732 if (newstate != state)
733 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100734 }
735 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400736 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100737 if (ret != 0)
738 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400739 if (newstate != state)
740 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100741 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400742 /*
743 * We may have performed cached opens for all three recoveries.
744 * Check if we need to update the current stateid.
745 */
746 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
747 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400748 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400749 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
750 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400751 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400752 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100753 return 0;
754}
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756/*
757 * OPEN_RECLAIM:
758 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400760static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400762 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +0100763 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500764 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 int status;
766
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400767 opendata = nfs4_open_recoverdata_alloc(ctx, state);
768 if (IS_ERR(opendata))
769 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100770 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
771 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400772 rcu_read_lock();
773 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -0500774 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -0400775 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400776 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +0100777 opendata->o_arg.u.delegation_type = delegation_type;
778 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400779 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return status;
781}
782
Trond Myklebust539cd032007-06-05 11:46:42 -0400783static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 struct nfs_server *server = NFS_SERVER(state->inode);
786 struct nfs4_exception exception = { };
787 int err;
788 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400789 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000790 if (err != -NFS4ERR_DELAY)
791 break;
792 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 } while (exception.retry);
794 return err;
795}
796
Trond Myklebust864472e2006-01-03 09:55:15 +0100797static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
798{
799 struct nfs_open_context *ctx;
800 int ret;
801
802 ctx = nfs4_state_find_open_context(state);
803 if (IS_ERR(ctx))
804 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400805 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100806 put_nfs_open_context(ctx);
807 return ret;
808}
809
Trond Myklebust13437e12007-07-06 15:10:43 -0400810static 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 -0700811{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100812 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100813 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400815 opendata = nfs4_open_recoverdata_alloc(ctx, state);
816 if (IS_ERR(opendata))
817 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100818 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -0400819 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100820 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100821 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400822 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100823 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Trond Myklebust13437e12007-07-06 15:10:43 -0400826int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -0400829 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 int err;
831 do {
Trond Myklebust13437e12007-07-06 15:10:43 -0400832 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 switch (err) {
834 case 0:
835 return err;
836 case -NFS4ERR_STALE_CLIENTID:
837 case -NFS4ERR_STALE_STATEID:
838 case -NFS4ERR_EXPIRED:
839 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400840 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return err;
842 }
843 err = nfs4_handle_exception(server, err, &exception);
844 } while (exception.retry);
845 return err;
846}
847
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100848static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
849{
850 struct nfs4_opendata *data = calldata;
851
852 data->rpc_status = task->tk_status;
853 if (RPC_ASSASSINATED(task))
854 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100855 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100856 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
857 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -0500858 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +0100859 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -0400860 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100861 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100862}
863
864static void nfs4_open_confirm_release(void *calldata)
865{
866 struct nfs4_opendata *data = calldata;
867 struct nfs4_state *state = NULL;
868
869 /* If this request hasn't been cancelled, do nothing */
870 if (data->cancelled == 0)
871 goto out_free;
872 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400873 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100874 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100875 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400876 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500877 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100878out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400879 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100880}
881
882static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100883 .rpc_call_done = nfs4_open_confirm_done,
884 .rpc_release = nfs4_open_confirm_release,
885};
886
887/*
888 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
889 */
890static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
891{
892 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
893 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400894 struct rpc_message msg = {
895 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
896 .rpc_argp = &data->c_arg,
897 .rpc_resp = &data->c_res,
898 .rpc_cred = data->owner->so_cred,
899 };
Trond Myklebustc970aa82007-07-14 15:39:59 -0400900 struct rpc_task_setup task_setup_data = {
901 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400902 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400903 .callback_ops = &nfs4_open_confirm_ops,
904 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500905 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400906 .flags = RPC_TASK_ASYNC,
907 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 int status;
909
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400910 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400911 data->rpc_done = 0;
912 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400913 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -0400914 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500915 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100916 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100917 status = nfs4_wait_for_completion_rpc_task(task);
918 if (status != 0) {
919 data->cancelled = 1;
920 smp_wmb();
921 } else
922 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500923 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return status;
925}
926
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100927static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100929 struct nfs4_opendata *data = calldata;
930 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400931
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100932 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
933 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400934 /*
935 * Check if we still need to send an OPEN call, or if we can use
936 * a delegation instead.
937 */
938 if (data->state != NULL) {
939 struct nfs_delegation *delegation;
940
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500941 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -0400942 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400943 rcu_read_lock();
944 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
945 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -0500946 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400947 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400948 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400949 }
950 rcu_read_unlock();
951 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100952 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400953 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100954 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400955 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -0400956 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400957 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
958 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100959 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400960 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400961 return;
962out_no_action:
963 task->tk_action = NULL;
964
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100965}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100967static void nfs4_open_done(struct rpc_task *task, void *calldata)
968{
969 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100971 data->rpc_status = task->tk_status;
972 if (RPC_ASSASSINATED(task))
973 return;
974 if (task->tk_status == 0) {
975 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -0700976 case S_IFREG:
977 break;
978 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100979 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700980 break;
981 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100982 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700983 break;
984 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100985 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700986 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100987 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -0400988 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
989 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -0700990 }
Trond Myklebust3e309912007-07-07 13:19:59 -0400991 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100992}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700993
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100994static void nfs4_open_release(void *calldata)
995{
996 struct nfs4_opendata *data = calldata;
997 struct nfs4_state *state = NULL;
998
999 /* If this request hasn't been cancelled, do nothing */
1000 if (data->cancelled == 0)
1001 goto out_free;
1002 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001003 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001004 goto out_free;
1005 /* In case we need an open_confirm, no cleanup! */
1006 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1007 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001008 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001009 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001010 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001011out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001012 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001013}
1014
1015static const struct rpc_call_ops nfs4_open_ops = {
1016 .rpc_call_prepare = nfs4_open_prepare,
1017 .rpc_call_done = nfs4_open_done,
1018 .rpc_release = nfs4_open_release,
1019};
1020
1021/*
1022 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1023 */
1024static int _nfs4_proc_open(struct nfs4_opendata *data)
1025{
1026 struct inode *dir = data->dir->d_inode;
1027 struct nfs_server *server = NFS_SERVER(dir);
1028 struct nfs_openargs *o_arg = &data->o_arg;
1029 struct nfs_openres *o_res = &data->o_res;
1030 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001031 struct rpc_message msg = {
1032 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1033 .rpc_argp = o_arg,
1034 .rpc_resp = o_res,
1035 .rpc_cred = data->owner->so_cred,
1036 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001037 struct rpc_task_setup task_setup_data = {
1038 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001039 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001040 .callback_ops = &nfs4_open_ops,
1041 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001042 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001043 .flags = RPC_TASK_ASYNC,
1044 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001045 int status;
1046
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001047 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001048 data->rpc_done = 0;
1049 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001050 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001051 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001052 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001053 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001054 status = nfs4_wait_for_completion_rpc_task(task);
1055 if (status != 0) {
1056 data->cancelled = 1;
1057 smp_wmb();
1058 } else
1059 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001060 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -04001061 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001062 return status;
1063
Trond Myklebust99367812007-07-17 21:52:41 -04001064 if (o_res->fh.size == 0)
1065 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
1066
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001067 if (o_arg->open_flags & O_CREAT) {
1068 update_changeattr(dir, &o_res->cinfo);
1069 nfs_post_op_update_inode(dir, o_res->dir_attr);
1070 } else
1071 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001073 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001075 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001078 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Trond Myklebust10afec92007-05-14 17:16:04 -04001082static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001083{
David Howells7539bba2006-08-22 20:06:09 -04001084 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -04001085 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001086
Trond Myklebust6b309542006-09-14 14:03:14 -04001087 for (;;) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001088 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001089 if (ret != 0)
1090 return ret;
Trond Myklebuste598d842008-12-23 15:21:42 -05001091 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1092 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001093 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001094 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001095 }
1096 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +01001097}
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099/*
1100 * OPEN_EXPIRED:
1101 * reclaim state on the server after a network partition.
1102 * Assumes caller holds the appropriate lock
1103 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001104static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001106 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001107 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001109 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1110 if (IS_ERR(opendata))
1111 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001112 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001113 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001114 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001115 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001116 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
Trond Myklebust539cd032007-06-05 11:46:42 -04001119static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001120{
Trond Myklebust539cd032007-06-05 11:46:42 -04001121 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001122 struct nfs4_exception exception = { };
1123 int err;
1124
1125 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001126 err = _nfs4_open_expired(ctx, state);
Trond Myklebust027b6ca2008-12-23 16:04:13 -05001127 if (err != -NFS4ERR_DELAY)
1128 break;
1129 nfs4_handle_exception(server, err, &exception);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001130 } while (exception.retry);
1131 return err;
1132}
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1135{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001137 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Trond Myklebust864472e2006-01-03 09:55:15 +01001139 ctx = nfs4_state_find_open_context(state);
1140 if (IS_ERR(ctx))
1141 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001142 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001143 put_nfs_open_context(ctx);
1144 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
1147/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001148 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1149 * fields corresponding to attributes that were used to store the verifier.
1150 * Make sure we clobber those fields in the later setattr call
1151 */
1152static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1153{
1154 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1155 !(sattr->ia_valid & ATTR_ATIME_SET))
1156 sattr->ia_valid |= ATTR_ATIME;
1157
1158 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1159 !(sattr->ia_valid & ATTR_MTIME_SET))
1160 sattr->ia_valid |= ATTR_MTIME;
1161}
1162
1163/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001164 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001166static int _nfs4_do_open(struct inode *dir, struct path *path, fmode_t fmode, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168 struct nfs4_state_owner *sp;
1169 struct nfs4_state *state = NULL;
1170 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001171 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001172 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 status = -ENOMEM;
1176 if (!(sp = nfs4_get_state_owner(server, cred))) {
1177 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1178 goto out_err;
1179 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001180 status = nfs4_recover_expired_lease(server);
1181 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001182 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001183 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001184 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001185 status = -ENOMEM;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001186 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001187 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001188 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Trond Myklebustaac00a82007-07-05 19:02:21 -04001190 if (path->dentry->d_inode != NULL)
1191 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1192
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001193 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001195 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001197 if (opendata->o_arg.open_flags & O_EXCL)
1198 nfs4_exclusive_attrset(opendata, sattr);
1199
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001200 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001201 status = PTR_ERR(state);
1202 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001203 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001204 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 *res = state;
1207 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001208err_opendata_put:
1209 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001210err_put_state_owner:
1211 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 *res = NULL;
1214 return status;
1215}
1216
1217
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001218static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, fmode_t fmode, int flags, struct iattr *sattr, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 struct nfs4_exception exception = { };
1221 struct nfs4_state *res;
1222 int status;
1223
1224 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001225 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (status == 0)
1227 break;
1228 /* NOTE: BAD_SEQID means the server and client disagree about the
1229 * book-keeping w.r.t. state-changing operations
1230 * (OPEN/CLOSE/LOCK/LOCKU...)
1231 * It is actually a sign of a bug on the client or on the server.
1232 *
1233 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001234 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 * have unhashed the old state_owner for us, and that we can
1236 * therefore safely retry using a new one. We should still warn
1237 * the user though...
1238 */
1239 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001240 printk(KERN_WARNING "NFS: v4 server %s "
1241 " returned a bad sequence-id error!\n",
1242 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 exception.retry = 1;
1244 continue;
1245 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001246 /*
1247 * BAD_STATEID on OPEN means that the server cancelled our
1248 * state before it received the OPEN_CONFIRM.
1249 * Recover by retrying the request as per the discussion
1250 * on Page 181 of RFC3530.
1251 */
1252 if (status == -NFS4ERR_BAD_STATEID) {
1253 exception.retry = 1;
1254 continue;
1255 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001256 if (status == -EAGAIN) {
1257 /* We must have found a delegation */
1258 exception.retry = 1;
1259 continue;
1260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1262 status, &exception));
1263 } while (exception.retry);
1264 return res;
1265}
1266
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001267static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1268 struct nfs_fattr *fattr, struct iattr *sattr,
1269 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001271 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001273 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 .iap = sattr,
1275 .server = server,
1276 .bitmask = server->attr_bitmask,
1277 };
1278 struct nfs_setattrres res = {
1279 .fattr = fattr,
1280 .server = server,
1281 };
1282 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001283 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1284 .rpc_argp = &arg,
1285 .rpc_resp = &res,
1286 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001288 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001289 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Trond Myklebust0e574af2005-10-27 22:12:38 -04001291 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001293 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1294 /* Use that stateid */
1295 } else if (state != NULL) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001296 nfs4_copy_stateid(&arg.stateid, state, current->files);
1297 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1299
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001300 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001301 if (status == 0 && state != NULL)
1302 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001303 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001306static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1307 struct nfs_fattr *fattr, struct iattr *sattr,
1308 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001310 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct nfs4_exception exception = { };
1312 int err;
1313 do {
1314 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001315 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 &exception);
1317 } while (exception.retry);
1318 return err;
1319}
1320
1321struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001322 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 struct inode *inode;
1324 struct nfs4_state *state;
1325 struct nfs_closeargs arg;
1326 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001327 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001328 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329};
1330
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001331static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001332{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001333 struct nfs4_closedata *calldata = data;
1334 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001335
1336 nfs4_put_open_state(calldata->state);
1337 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001338 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001339 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001340 kfree(calldata);
1341}
1342
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001343static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001345 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct nfs_server *server = NFS_SERVER(calldata->inode);
1348
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001349 if (RPC_ASSASSINATED(task))
1350 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 /* hmm. we are done with the inode, and in the process of freeing
1352 * the state_owner. we keep this around to process errors
1353 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 switch (task->tk_status) {
1355 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001356 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001357 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 break;
1359 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001360 case -NFS4ERR_OLD_STATEID:
1361 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001363 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001364 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001366 if (nfs4_async_handle_error(task, server, state) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 rpc_restart_call(task);
1368 return;
1369 }
1370 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001371 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001374static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001376 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001377 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001378 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001379
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001380 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001381 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001382
Trond Myklebust003707c2007-07-05 18:07:55 -04001383 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001384 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001385 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001386 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001387 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001388 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1389 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1390 }
1391 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001392 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1393 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1394 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001395 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001396 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001397 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001398 /* Note: exit _without_ calling nfs4_close_done */
1399 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001400 return;
1401 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001402 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001403 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001404 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001405 calldata->arg.fmode = FMODE_READ;
Trond Myklebust45328c32007-07-26 17:47:34 -04001406 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001407 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001408 calldata->arg.fmode = FMODE_WRITE;
Trond Myklebust45328c32007-07-26 17:47:34 -04001409 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001410 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001411 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001414static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001415 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001416 .rpc_call_done = nfs4_close_done,
1417 .rpc_release = nfs4_free_closedata,
1418};
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420/*
1421 * It is possible for data to be read/written from a mem-mapped file
1422 * after the sys_close call (which hits the vfs layer as a flush).
1423 * This means that we can't safely call nfsv4 close on a file until
1424 * the inode is cleared. This in turn means that we are not good
1425 * NFSv4 citizens - we do not indicate to the server to update the file's
1426 * share state even when we are done with one of the three share
1427 * stateid's in the inode.
1428 *
1429 * NOTE: Caller must be holding the sp->so_owner semaphore!
1430 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001431int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001433 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001435 struct nfs4_state_owner *sp = state->owner;
1436 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001437 struct rpc_message msg = {
1438 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1439 .rpc_cred = state->owner->so_cred,
1440 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001441 struct rpc_task_setup task_setup_data = {
1442 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001443 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001444 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001445 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001446 .flags = RPC_TASK_ASYNC,
1447 };
Trond Myklebust95121352005-10-18 14:20:12 -07001448 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Trond Myklebust95121352005-10-18 14:20:12 -07001450 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001452 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001453 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001455 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001456 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001458 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001459 if (calldata->arg.seqid == NULL)
1460 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001461 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001462 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001463 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001464 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001465 calldata->res.server = server;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001466 calldata->path.mnt = mntget(path->mnt);
1467 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001468
Trond Myklebust5138fde2007-07-14 15:40:01 -04001469 msg.rpc_argp = &calldata->arg,
1470 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001471 task_setup_data.callback_data = calldata;
1472 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001473 if (IS_ERR(task))
1474 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001475 status = 0;
1476 if (wait)
1477 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001478 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001479 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001480out_free_calldata:
1481 kfree(calldata);
1482out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001483 nfs4_put_open_state(state);
1484 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001485 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
1487
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001488static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state, fmode_t fmode)
Trond Myklebust02a913a2005-10-18 14:20:17 -07001489{
1490 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001491 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001492
Trond Myklebust1b45c462007-07-03 13:04:56 -04001493 /* If the open_intent is for execute, we have an extra check to make */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001494 if (fmode & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001495 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001496 state->owner->so_cred,
1497 nd->intent.open.flags);
1498 if (ret < 0)
1499 goto out_close;
1500 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001501 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001502 if (!IS_ERR(filp)) {
1503 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001504 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001505 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001506 return 0;
1507 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001508 ret = PTR_ERR(filp);
1509out_close:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001510 nfs4_close_sync(path, state, fmode & (FMODE_READ|FMODE_WRITE));
Trond Myklebust1b45c462007-07-03 13:04:56 -04001511 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001512}
1513
1514struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1516{
Trond Myklebustad389da2007-06-05 12:30:00 -04001517 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001518 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001519 .dentry = dentry,
1520 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001521 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 struct iattr attr;
1523 struct rpc_cred *cred;
1524 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001525 struct dentry *res;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001526 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 if (nd->flags & LOOKUP_CREATE) {
1529 attr.ia_mode = nd->intent.open.create_mode;
1530 attr.ia_valid = ATTR_MODE;
1531 if (!IS_POSIXACL(dir))
Al Viroce3b0f82009-03-29 19:08:22 -04001532 attr.ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 } else {
1534 attr.ia_valid = 0;
1535 BUG_ON(nd->intent.open.flags & O_CREAT);
1536 }
1537
Trond Myklebust98a8e322008-03-12 12:25:28 -04001538 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001540 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001541 parent = dentry->d_parent;
1542 /* Protect against concurrent sillydeletes */
1543 nfs_block_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001544 state = nfs4_do_open(dir, &path, fmode, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001546 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001547 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001548 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001549 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1550 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001551 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001552 return (struct dentry *)state;
1553 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001554 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001555 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001556 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001557 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001558 nfs_unblock_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001559 nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001560 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
1563int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001564nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Trond Myklebustad389da2007-06-05 12:30:00 -04001566 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001567 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001568 .dentry = dentry,
1569 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 struct rpc_cred *cred;
1571 struct nfs4_state *state;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001572 fmode_t fmode = openflags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Trond Myklebust98a8e322008-03-12 12:25:28 -04001574 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if (IS_ERR(cred))
1576 return PTR_ERR(cred);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001577 state = nfs4_do_open(dir, &path, fmode, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001579 if (IS_ERR(state)) {
1580 switch (PTR_ERR(state)) {
1581 case -EPERM:
1582 case -EACCES:
1583 case -EDQUOT:
1584 case -ENOSPC:
1585 case -EROFS:
1586 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1587 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001588 default:
1589 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001590 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001591 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001592 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001593 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001594 nfs4_intent_set_file(nd, &path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 return 1;
1596 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001597 nfs4_close_sync(&path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001598out_drop:
1599 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return 0;
1601}
1602
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001603void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
1604{
1605 if (ctx->state == NULL)
1606 return;
1607 if (is_sync)
1608 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
1609 else
1610 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
1611}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1614{
Benny Halevy43652ad2009-04-01 09:21:54 -04001615 struct nfs4_server_caps_arg args = {
1616 .fhandle = fhandle,
1617 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 struct nfs4_server_caps_res res = {};
1619 struct rpc_message msg = {
1620 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04001621 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 .rpc_resp = &res,
1623 };
1624 int status;
1625
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001626 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (status == 0) {
1628 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1629 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1630 server->caps |= NFS_CAP_ACLS;
1631 if (res.has_links != 0)
1632 server->caps |= NFS_CAP_HARDLINKS;
1633 if (res.has_symlinks != 0)
1634 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001635 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
1636 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
1637 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 server->acl_bitmask = res.acl_bitmask;
1639 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 return status;
1642}
1643
Trond Myklebust55a97592006-06-09 09:34:19 -04001644int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
1646 struct nfs4_exception exception = { };
1647 int err;
1648 do {
1649 err = nfs4_handle_exception(server,
1650 _nfs4_server_capabilities(server, fhandle),
1651 &exception);
1652 } while (exception.retry);
1653 return err;
1654}
1655
1656static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1657 struct nfs_fsinfo *info)
1658{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 struct nfs4_lookup_root_arg args = {
1660 .bitmask = nfs4_fattr_bitmap,
1661 };
1662 struct nfs4_lookup_res res = {
1663 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04001664 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 .fh = fhandle,
1666 };
1667 struct rpc_message msg = {
1668 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1669 .rpc_argp = &args,
1670 .rpc_resp = &res,
1671 };
Trond Myklebust0e574af2005-10-27 22:12:38 -04001672 nfs_fattr_init(info->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001673 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
1676static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1677 struct nfs_fsinfo *info)
1678{
1679 struct nfs4_exception exception = { };
1680 int err;
1681 do {
1682 err = nfs4_handle_exception(server,
1683 _nfs4_lookup_root(server, fhandle, info),
1684 &exception);
1685 } while (exception.retry);
1686 return err;
1687}
1688
David Howells54ceac42006-08-22 20:06:13 -04001689/*
1690 * get the file handle for the "/" directory on the server
1691 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04001693 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 int status;
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (status == 0)
1699 status = nfs4_server_capabilities(server, fhandle);
1700 if (status == 0)
1701 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08001702 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
Manoj Naik6b97fd32006-06-09 09:34:29 -04001705/*
1706 * Get locations and (maybe) other attributes of a referral.
1707 * Note that we'll actually follow the referral later when
1708 * we detect fsid mismatch in inode revalidation
1709 */
Trond Myklebust56659e92007-07-17 21:52:39 -04001710static 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 -04001711{
1712 int status = -ENOMEM;
1713 struct page *page = NULL;
1714 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04001715
1716 page = alloc_page(GFP_KERNEL);
1717 if (page == NULL)
1718 goto out;
1719 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1720 if (locations == NULL)
1721 goto out;
1722
Trond Myklebustc228fd32007-01-13 02:28:11 -05001723 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001724 if (status != 0)
1725 goto out;
1726 /* Make sure server returned a different fsid for the referral */
1727 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07001728 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 -04001729 status = -EIO;
1730 goto out;
1731 }
1732
1733 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1734 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1735 if (!fattr->mode)
1736 fattr->mode = S_IFDIR;
1737 memset(fhandle, 0, sizeof(struct nfs_fh));
1738out:
1739 if (page)
1740 __free_page(page);
1741 if (locations)
1742 kfree(locations);
1743 return status;
1744}
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1747{
1748 struct nfs4_getattr_arg args = {
1749 .fh = fhandle,
1750 .bitmask = server->attr_bitmask,
1751 };
1752 struct nfs4_getattr_res res = {
1753 .fattr = fattr,
1754 .server = server,
1755 };
1756 struct rpc_message msg = {
1757 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1758 .rpc_argp = &args,
1759 .rpc_resp = &res,
1760 };
1761
Trond Myklebust0e574af2005-10-27 22:12:38 -04001762 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001763 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
1766static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1767{
1768 struct nfs4_exception exception = { };
1769 int err;
1770 do {
1771 err = nfs4_handle_exception(server,
1772 _nfs4_proc_getattr(server, fhandle, fattr),
1773 &exception);
1774 } while (exception.retry);
1775 return err;
1776}
1777
1778/*
1779 * The file is not closed if it is opened due to the a request to change
1780 * the size of the file. The open call will not be needed once the
1781 * VFS layer lookup-intents are implemented.
1782 *
1783 * Close is called when the inode is destroyed.
1784 * If we haven't opened the file for O_WRONLY, we
1785 * need to in the size_change case to obtain a stateid.
1786 *
1787 * Got race?
1788 * Because OPEN is always done by name in nfsv4, it is
1789 * possible that we opened a different file by the same
1790 * name. We can recognize this race condition, but we
1791 * can't do anything about it besides returning an error.
1792 *
1793 * This will be fixed with VFS changes (lookup-intent).
1794 */
1795static int
1796nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1797 struct iattr *sattr)
1798{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001799 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001800 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05001801 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 int status;
1803
Trond Myklebust0e574af2005-10-27 22:12:38 -04001804 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Trond Myklebustd5308382005-11-04 15:33:38 -05001806 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001807 if (sattr->ia_valid & ATTR_FILE) {
1808 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001809
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001810 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11001811 if (ctx) {
1812 cred = ctx->cred;
1813 state = ctx->state;
1814 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001815 }
1816
1817 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001818 if (status == 0)
1819 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 return status;
1821}
1822
Trond Myklebust56659e92007-07-17 21:52:39 -04001823static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
1824 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04001825 struct nfs_fattr *fattr)
1826{
1827 int status;
1828 struct nfs4_lookup_arg args = {
1829 .bitmask = server->attr_bitmask,
1830 .dir_fh = dirfh,
1831 .name = name,
1832 };
1833 struct nfs4_lookup_res res = {
1834 .server = server,
1835 .fattr = fattr,
1836 .fh = fhandle,
1837 };
1838 struct rpc_message msg = {
1839 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1840 .rpc_argp = &args,
1841 .rpc_resp = &res,
1842 };
1843
1844 nfs_fattr_init(fattr);
1845
1846 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001847 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04001848 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04001849 return status;
1850}
1851
1852static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1853 struct qstr *name, struct nfs_fh *fhandle,
1854 struct nfs_fattr *fattr)
1855{
1856 struct nfs4_exception exception = { };
1857 int err;
1858 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04001859 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1860 /* FIXME: !!!! */
1861 if (err == -NFS4ERR_MOVED) {
1862 err = -EREMOTE;
1863 break;
1864 }
1865 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04001866 } while (exception.retry);
1867 return err;
1868}
1869
Trond Myklebust56659e92007-07-17 21:52:39 -04001870static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1872{
Trond Myklebust4e56e082007-07-01 18:13:52 -04001873 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04001876 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001877 if (status == -NFS4ERR_MOVED)
1878 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 dprintk("NFS reply lookup: %d\n", status);
1880 return status;
1881}
1882
1883static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1884{
1885 struct nfs4_exception exception = { };
1886 int err;
1887 do {
1888 err = nfs4_handle_exception(NFS_SERVER(dir),
1889 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1890 &exception);
1891 } while (exception.retry);
1892 return err;
1893}
1894
1895static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1896{
Trond Myklebust76b32992007-08-10 17:45:11 -04001897 struct nfs_server *server = NFS_SERVER(inode);
1898 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 struct nfs4_accessargs args = {
1900 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04001901 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 };
Trond Myklebust76b32992007-08-10 17:45:11 -04001903 struct nfs4_accessres res = {
1904 .server = server,
1905 .fattr = &fattr,
1906 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 struct rpc_message msg = {
1908 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1909 .rpc_argp = &args,
1910 .rpc_resp = &res,
1911 .rpc_cred = entry->cred,
1912 };
1913 int mode = entry->mask;
1914 int status;
1915
1916 /*
1917 * Determine which access bits we want to ask for...
1918 */
1919 if (mode & MAY_READ)
1920 args.access |= NFS4_ACCESS_READ;
1921 if (S_ISDIR(inode->i_mode)) {
1922 if (mode & MAY_WRITE)
1923 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1924 if (mode & MAY_EXEC)
1925 args.access |= NFS4_ACCESS_LOOKUP;
1926 } else {
1927 if (mode & MAY_WRITE)
1928 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1929 if (mode & MAY_EXEC)
1930 args.access |= NFS4_ACCESS_EXECUTE;
1931 }
Trond Myklebust76b32992007-08-10 17:45:11 -04001932 nfs_fattr_init(&fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001933 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (!status) {
1935 entry->mask = 0;
1936 if (res.access & NFS4_ACCESS_READ)
1937 entry->mask |= MAY_READ;
1938 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1939 entry->mask |= MAY_WRITE;
1940 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1941 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04001942 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944 return status;
1945}
1946
1947static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1948{
1949 struct nfs4_exception exception = { };
1950 int err;
1951 do {
1952 err = nfs4_handle_exception(NFS_SERVER(inode),
1953 _nfs4_proc_access(inode, entry),
1954 &exception);
1955 } while (exception.retry);
1956 return err;
1957}
1958
1959/*
1960 * TODO: For the time being, we don't try to get any attributes
1961 * along with any of the zero-copy operations READ, READDIR,
1962 * READLINK, WRITE.
1963 *
1964 * In the case of the first three, we want to put the GETATTR
1965 * after the read-type operation -- this is because it is hard
1966 * to predict the length of a GETATTR response in v4, and thus
1967 * align the READ data correctly. This means that the GETATTR
1968 * may end up partially falling into the page cache, and we should
1969 * shift it into the 'tail' of the xdr_buf before processing.
1970 * To do this efficiently, we need to know the total length
1971 * of data received, which doesn't seem to be available outside
1972 * of the RPC layer.
1973 *
1974 * In the case of WRITE, we also want to put the GETATTR after
1975 * the operation -- in this case because we want to make sure
1976 * we get the post-operation mtime and size. This means that
1977 * we can't use xdr_encode_pages() as written: we need a variant
1978 * of it which would leave room in the 'tail' iovec.
1979 *
1980 * Both of these changes to the XDR layer would in fact be quite
1981 * minor, but I decided to leave them for a subsequent patch.
1982 */
1983static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1984 unsigned int pgbase, unsigned int pglen)
1985{
1986 struct nfs4_readlink args = {
1987 .fh = NFS_FH(inode),
1988 .pgbase = pgbase,
1989 .pglen = pglen,
1990 .pages = &page,
1991 };
Benny Halevyf50c7002009-04-01 09:21:55 -04001992 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 struct rpc_message msg = {
1994 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1995 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04001996 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 };
1998
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001999 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000}
2001
2002static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2003 unsigned int pgbase, unsigned int pglen)
2004{
2005 struct nfs4_exception exception = { };
2006 int err;
2007 do {
2008 err = nfs4_handle_exception(NFS_SERVER(inode),
2009 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2010 &exception);
2011 } while (exception.retry);
2012 return err;
2013}
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015/*
2016 * Got race?
2017 * We will need to arrange for the VFS layer to provide an atomic open.
2018 * Until then, this create/open method is prone to inefficiency and race
2019 * conditions due to the lookup, create, and open VFS calls from sys_open()
2020 * placed on the wire.
2021 *
2022 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2023 * The file will be opened again in the subsequent VFS open call
2024 * (nfs4_proc_file_open).
2025 *
2026 * The open for read will just hang around to be used by any process that
2027 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2028 */
2029
2030static int
2031nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07002032 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
Trond Myklebustad389da2007-06-05 12:30:00 -04002034 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08002035 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04002036 .dentry = dentry,
2037 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 struct nfs4_state *state;
2039 struct rpc_cred *cred;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002040 fmode_t fmode = flags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 int status = 0;
2042
Trond Myklebust98a8e322008-03-12 12:25:28 -04002043 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if (IS_ERR(cred)) {
2045 status = PTR_ERR(cred);
2046 goto out;
2047 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002048 state = nfs4_do_open(dir, &path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002049 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (IS_ERR(state)) {
2051 status = PTR_ERR(state);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002052 goto out_putcred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002054 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002055 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 if (flags & O_EXCL) {
2057 struct nfs_fattr fattr;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002058 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002059 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04002060 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002061 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002062 }
Trond Myklebustad389da2007-06-05 12:30:00 -04002063 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002064 status = nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002065 else
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002066 nfs4_close_sync(&path, state, fmode);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002067out_putcred:
2068 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069out:
2070 return status;
2071}
2072
2073static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2074{
Trond Myklebust16e42952005-10-27 22:12:44 -04002075 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002076 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002078 .name.len = name->len,
2079 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002080 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002082 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002083 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002084 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002086 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2087 .rpc_argp = &args,
2088 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 };
2090 int status;
2091
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002092 nfs_fattr_init(&res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002093 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002094 if (status == 0) {
2095 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002096 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 return status;
2099}
2100
2101static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2102{
2103 struct nfs4_exception exception = { };
2104 int err;
2105 do {
2106 err = nfs4_handle_exception(NFS_SERVER(dir),
2107 _nfs4_proc_remove(dir, name),
2108 &exception);
2109 } while (exception.retry);
2110 return err;
2111}
2112
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002113static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002115 struct nfs_server *server = NFS_SERVER(dir);
2116 struct nfs_removeargs *args = msg->rpc_argp;
2117 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Trond Myklebusta65318b2009-03-11 14:10:28 -04002119 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002120 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122}
2123
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002124static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002126 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2127
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002128 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002129 return 0;
2130 update_changeattr(dir, &res->cinfo);
2131 nfs_post_op_update_inode(dir, &res->dir_attr);
2132 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
2135static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2136 struct inode *new_dir, struct qstr *new_name)
2137{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002138 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 struct nfs4_rename_arg arg = {
2140 .old_dir = NFS_FH(old_dir),
2141 .new_dir = NFS_FH(new_dir),
2142 .old_name = old_name,
2143 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002144 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002146 struct nfs_fattr old_fattr, new_fattr;
2147 struct nfs4_rename_res res = {
2148 .server = server,
2149 .old_fattr = &old_fattr,
2150 .new_fattr = &new_fattr,
2151 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 struct rpc_message msg = {
2153 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2154 .rpc_argp = &arg,
2155 .rpc_resp = &res,
2156 };
2157 int status;
2158
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002159 nfs_fattr_init(res.old_fattr);
2160 nfs_fattr_init(res.new_fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002161 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163 if (!status) {
2164 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002165 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002167 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
2169 return status;
2170}
2171
2172static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2173 struct inode *new_dir, struct qstr *new_name)
2174{
2175 struct nfs4_exception exception = { };
2176 int err;
2177 do {
2178 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2179 _nfs4_proc_rename(old_dir, old_name,
2180 new_dir, new_name),
2181 &exception);
2182 } while (exception.retry);
2183 return err;
2184}
2185
2186static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2187{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002188 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 struct nfs4_link_arg arg = {
2190 .fh = NFS_FH(inode),
2191 .dir_fh = NFS_FH(dir),
2192 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002193 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002195 struct nfs_fattr fattr, dir_attr;
2196 struct nfs4_link_res res = {
2197 .server = server,
2198 .fattr = &fattr,
2199 .dir_attr = &dir_attr,
2200 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 struct rpc_message msg = {
2202 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2203 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002204 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 };
2206 int status;
2207
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002208 nfs_fattr_init(res.fattr);
2209 nfs_fattr_init(res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002210 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002211 if (!status) {
2212 update_changeattr(dir, &res.cinfo);
2213 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002214 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 return status;
2218}
2219
2220static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2221{
2222 struct nfs4_exception exception = { };
2223 int err;
2224 do {
2225 err = nfs4_handle_exception(NFS_SERVER(inode),
2226 _nfs4_proc_link(inode, dir, name),
2227 &exception);
2228 } while (exception.retry);
2229 return err;
2230}
2231
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002232struct nfs4_createdata {
2233 struct rpc_message msg;
2234 struct nfs4_create_arg arg;
2235 struct nfs4_create_res res;
2236 struct nfs_fh fh;
2237 struct nfs_fattr fattr;
2238 struct nfs_fattr dir_fattr;
2239};
2240
2241static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2242 struct qstr *name, struct iattr *sattr, u32 ftype)
2243{
2244 struct nfs4_createdata *data;
2245
2246 data = kzalloc(sizeof(*data), GFP_KERNEL);
2247 if (data != NULL) {
2248 struct nfs_server *server = NFS_SERVER(dir);
2249
2250 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2251 data->msg.rpc_argp = &data->arg;
2252 data->msg.rpc_resp = &data->res;
2253 data->arg.dir_fh = NFS_FH(dir);
2254 data->arg.server = server;
2255 data->arg.name = name;
2256 data->arg.attrs = sattr;
2257 data->arg.ftype = ftype;
2258 data->arg.bitmask = server->attr_bitmask;
2259 data->res.server = server;
2260 data->res.fh = &data->fh;
2261 data->res.fattr = &data->fattr;
2262 data->res.dir_fattr = &data->dir_fattr;
2263 nfs_fattr_init(data->res.fattr);
2264 nfs_fattr_init(data->res.dir_fattr);
2265 }
2266 return data;
2267}
2268
2269static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2270{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002271 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2272 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002273 if (status == 0) {
2274 update_changeattr(dir, &data->res.dir_cinfo);
2275 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2276 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2277 }
2278 return status;
2279}
2280
2281static void nfs4_free_createdata(struct nfs4_createdata *data)
2282{
2283 kfree(data);
2284}
2285
Chuck Lever4f390c12006-08-22 20:06:22 -04002286static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002287 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002289 struct nfs4_createdata *data;
2290 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Chuck Lever94a6d752006-08-22 20:06:23 -04002292 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002293 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002294
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002295 status = -ENOMEM;
2296 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2297 if (data == NULL)
2298 goto out;
2299
2300 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2301 data->arg.u.symlink.pages = &page;
2302 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002304 status = nfs4_do_create(dir, dentry, data);
2305
2306 nfs4_free_createdata(data);
2307out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return status;
2309}
2310
Chuck Lever4f390c12006-08-22 20:06:22 -04002311static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002312 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313{
2314 struct nfs4_exception exception = { };
2315 int err;
2316 do {
2317 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002318 _nfs4_proc_symlink(dir, dentry, page,
2319 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 &exception);
2321 } while (exception.retry);
2322 return err;
2323}
2324
2325static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2326 struct iattr *sattr)
2327{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002328 struct nfs4_createdata *data;
2329 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002331 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2332 if (data == NULL)
2333 goto out;
2334
2335 status = nfs4_do_create(dir, dentry, data);
2336
2337 nfs4_free_createdata(data);
2338out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return status;
2340}
2341
2342static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2343 struct iattr *sattr)
2344{
2345 struct nfs4_exception exception = { };
2346 int err;
2347 do {
2348 err = nfs4_handle_exception(NFS_SERVER(dir),
2349 _nfs4_proc_mkdir(dir, dentry, sattr),
2350 &exception);
2351 } while (exception.retry);
2352 return err;
2353}
2354
2355static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2356 u64 cookie, struct page *page, unsigned int count, int plus)
2357{
2358 struct inode *dir = dentry->d_inode;
2359 struct nfs4_readdir_arg args = {
2360 .fh = NFS_FH(dir),
2361 .pages = &page,
2362 .pgbase = 0,
2363 .count = count,
Trond Myklebusta65318b2009-03-11 14:10:28 -04002364 .bitmask = NFS_SERVER(dentry->d_inode)->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 };
2366 struct nfs4_readdir_res res;
2367 struct rpc_message msg = {
2368 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2369 .rpc_argp = &args,
2370 .rpc_resp = &res,
2371 .rpc_cred = cred,
2372 };
2373 int status;
2374
Harvey Harrison3110ff82008-05-02 13:42:44 -07002375 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002376 dentry->d_parent->d_name.name,
2377 dentry->d_name.name,
2378 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2380 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002381 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 if (status == 0)
2383 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002384
2385 nfs_invalidate_atime(dir);
2386
Harvey Harrison3110ff82008-05-02 13:42:44 -07002387 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 return status;
2389}
2390
2391static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2392 u64 cookie, struct page *page, unsigned int count, int plus)
2393{
2394 struct nfs4_exception exception = { };
2395 int err;
2396 do {
2397 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2398 _nfs4_proc_readdir(dentry, cred, cookie,
2399 page, count, plus),
2400 &exception);
2401 } while (exception.retry);
2402 return err;
2403}
2404
2405static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2406 struct iattr *sattr, dev_t rdev)
2407{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002408 struct nfs4_createdata *data;
2409 int mode = sattr->ia_mode;
2410 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2413 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002414
2415 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2416 if (data == NULL)
2417 goto out;
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002420 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002422 data->arg.ftype = NF4BLK;
2423 data->arg.u.device.specdata1 = MAJOR(rdev);
2424 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
2426 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002427 data->arg.ftype = NF4CHR;
2428 data->arg.u.device.specdata1 = MAJOR(rdev);
2429 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002432 status = nfs4_do_create(dir, dentry, data);
2433
2434 nfs4_free_createdata(data);
2435out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 return status;
2437}
2438
2439static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2440 struct iattr *sattr, dev_t rdev)
2441{
2442 struct nfs4_exception exception = { };
2443 int err;
2444 do {
2445 err = nfs4_handle_exception(NFS_SERVER(dir),
2446 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2447 &exception);
2448 } while (exception.retry);
2449 return err;
2450}
2451
2452static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2453 struct nfs_fsstat *fsstat)
2454{
2455 struct nfs4_statfs_arg args = {
2456 .fh = fhandle,
2457 .bitmask = server->attr_bitmask,
2458 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002459 struct nfs4_statfs_res res = {
2460 .fsstat = fsstat,
2461 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 struct rpc_message msg = {
2463 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2464 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002465 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 };
2467
Trond Myklebust0e574af2005-10-27 22:12:38 -04002468 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002469 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
2472static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2473{
2474 struct nfs4_exception exception = { };
2475 int err;
2476 do {
2477 err = nfs4_handle_exception(server,
2478 _nfs4_proc_statfs(server, fhandle, fsstat),
2479 &exception);
2480 } while (exception.retry);
2481 return err;
2482}
2483
2484static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2485 struct nfs_fsinfo *fsinfo)
2486{
2487 struct nfs4_fsinfo_arg args = {
2488 .fh = fhandle,
2489 .bitmask = server->attr_bitmask,
2490 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04002491 struct nfs4_fsinfo_res res = {
2492 .fsinfo = fsinfo,
2493 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 struct rpc_message msg = {
2495 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2496 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04002497 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 };
2499
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002500 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502
2503static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2504{
2505 struct nfs4_exception exception = { };
2506 int err;
2507
2508 do {
2509 err = nfs4_handle_exception(server,
2510 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2511 &exception);
2512 } while (exception.retry);
2513 return err;
2514}
2515
2516static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2517{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002518 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2520}
2521
2522static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2523 struct nfs_pathconf *pathconf)
2524{
2525 struct nfs4_pathconf_arg args = {
2526 .fh = fhandle,
2527 .bitmask = server->attr_bitmask,
2528 };
Benny Halevyd45b2982009-04-01 09:21:58 -04002529 struct nfs4_pathconf_res res = {
2530 .pathconf = pathconf,
2531 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 struct rpc_message msg = {
2533 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2534 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04002535 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 };
2537
2538 /* None of the pathconf attributes are mandatory to implement */
2539 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2540 memset(pathconf, 0, sizeof(*pathconf));
2541 return 0;
2542 }
2543
Trond Myklebust0e574af2005-10-27 22:12:38 -04002544 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002545 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546}
2547
2548static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2549 struct nfs_pathconf *pathconf)
2550{
2551 struct nfs4_exception exception = { };
2552 int err;
2553
2554 do {
2555 err = nfs4_handle_exception(server,
2556 _nfs4_proc_pathconf(server, fhandle, pathconf),
2557 &exception);
2558 } while (exception.retry);
2559 return err;
2560}
2561
Trond Myklebustec06c092006-03-20 13:44:27 -05002562static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
Trond Myklebustec06c092006-03-20 13:44:27 -05002564 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002566 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002568 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002570
2571 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002573 renew_lease(server, data->timestamp);
2574 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575}
2576
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002577static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002580 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
Trond Myklebust788e7a82006-03-20 13:44:27 -05002583static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 struct inode *inode = data->inode;
2586
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002587 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002589 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002591 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04002593 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002594 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002595 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596}
2597
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002598static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002600 struct nfs_server *server = NFS_SERVER(data->inode);
2601
Trond Myklebusta65318b2009-03-11 14:10:28 -04002602 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002603 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 data->timestamp = jiffies;
2605
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002606 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
Trond Myklebust788e7a82006-03-20 13:44:27 -05002609static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 struct inode *inode = data->inode;
2612
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002613 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002615 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04002617 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002621static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622{
Trond Myklebust788e7a82006-03-20 13:44:27 -05002623 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Trond Myklebusta65318b2009-03-11 14:10:28 -04002625 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002626 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002627 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628}
2629
2630/*
2631 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2632 * standalone procedure for queueing an asynchronous RENEW.
2633 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002634static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
David Howellsadfa6f92006-08-22 20:06:08 -04002636 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002637 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04002640 /* Unless we're shutting down, schedule state recovery! */
2641 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
2642 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 return;
2644 }
2645 spin_lock(&clp->cl_lock);
2646 if (time_before(clp->cl_last_renewal,timestamp))
2647 clp->cl_last_renewal = timestamp;
2648 spin_unlock(&clp->cl_lock);
2649}
2650
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002651static const struct rpc_call_ops nfs4_renew_ops = {
2652 .rpc_call_done = nfs4_renew_done,
2653};
2654
David Howellsadfa6f92006-08-22 20:06:08 -04002655int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 struct rpc_message msg = {
2658 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2659 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002660 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 };
2662
2663 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002664 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665}
2666
David Howellsadfa6f92006-08-22 20:06:08 -04002667int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668{
2669 struct rpc_message msg = {
2670 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2671 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002672 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 };
2674 unsigned long now = jiffies;
2675 int status;
2676
2677 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2678 if (status < 0)
2679 return status;
2680 spin_lock(&clp->cl_lock);
2681 if (time_before(clp->cl_last_renewal,now))
2682 clp->cl_last_renewal = now;
2683 spin_unlock(&clp->cl_lock);
2684 return 0;
2685}
2686
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002687static inline int nfs4_server_supports_acls(struct nfs_server *server)
2688{
2689 return (server->caps & NFS_CAP_ACLS)
2690 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2691 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2692}
2693
2694/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2695 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2696 * the stack.
2697 */
2698#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2699
2700static void buf_to_pages(const void *buf, size_t buflen,
2701 struct page **pages, unsigned int *pgbase)
2702{
2703 const void *p = buf;
2704
2705 *pgbase = offset_in_page(buf);
2706 p -= *pgbase;
2707 while (p < buf + buflen) {
2708 *(pages++) = virt_to_page(p);
2709 p += PAGE_CACHE_SIZE;
2710 }
2711}
2712
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002713struct nfs4_cached_acl {
2714 int cached;
2715 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002716 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002717};
2718
2719static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002720{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002721 struct nfs_inode *nfsi = NFS_I(inode);
2722
2723 spin_lock(&inode->i_lock);
2724 kfree(nfsi->nfs4_acl);
2725 nfsi->nfs4_acl = acl;
2726 spin_unlock(&inode->i_lock);
2727}
2728
2729static void nfs4_zap_acl_attr(struct inode *inode)
2730{
2731 nfs4_set_cached_acl(inode, NULL);
2732}
2733
2734static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2735{
2736 struct nfs_inode *nfsi = NFS_I(inode);
2737 struct nfs4_cached_acl *acl;
2738 int ret = -ENOENT;
2739
2740 spin_lock(&inode->i_lock);
2741 acl = nfsi->nfs4_acl;
2742 if (acl == NULL)
2743 goto out;
2744 if (buf == NULL) /* user is just asking for length */
2745 goto out_len;
2746 if (acl->cached == 0)
2747 goto out;
2748 ret = -ERANGE; /* see getxattr(2) man page */
2749 if (acl->len > buflen)
2750 goto out;
2751 memcpy(buf, acl->data, acl->len);
2752out_len:
2753 ret = acl->len;
2754out:
2755 spin_unlock(&inode->i_lock);
2756 return ret;
2757}
2758
2759static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2760{
2761 struct nfs4_cached_acl *acl;
2762
2763 if (buf && acl_len <= PAGE_SIZE) {
2764 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2765 if (acl == NULL)
2766 goto out;
2767 acl->cached = 1;
2768 memcpy(acl->data, buf, acl_len);
2769 } else {
2770 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2771 if (acl == NULL)
2772 goto out;
2773 acl->cached = 0;
2774 }
2775 acl->len = acl_len;
2776out:
2777 nfs4_set_cached_acl(inode, acl);
2778}
2779
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002780static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002781{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002782 struct page *pages[NFS4ACL_MAXPAGES];
2783 struct nfs_getaclargs args = {
2784 .fh = NFS_FH(inode),
2785 .acl_pages = pages,
2786 .acl_len = buflen,
2787 };
Benny Halevy663c79b2009-04-01 09:21:59 -04002788 struct nfs_getaclres res = {
2789 .acl_len = buflen,
2790 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002791 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002792 struct rpc_message msg = {
2793 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2794 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04002795 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002796 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002797 struct page *localpage = NULL;
2798 int ret;
2799
2800 if (buflen < PAGE_SIZE) {
2801 /* As long as we're doing a round trip to the server anyway,
2802 * let's be prepared for a page of acl data. */
2803 localpage = alloc_page(GFP_KERNEL);
2804 resp_buf = page_address(localpage);
2805 if (localpage == NULL)
2806 return -ENOMEM;
2807 args.acl_pages[0] = localpage;
2808 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04002809 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002810 } else {
2811 resp_buf = buf;
2812 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2813 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002814 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002815 if (ret)
2816 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04002817 if (res.acl_len > args.acl_len)
2818 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002819 else
Benny Halevy663c79b2009-04-01 09:21:59 -04002820 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002821 if (buf) {
2822 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04002823 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002824 goto out_free;
2825 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04002826 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002827 }
Benny Halevy663c79b2009-04-01 09:21:59 -04002828 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002829out_free:
2830 if (localpage)
2831 __free_page(localpage);
2832 return ret;
2833}
2834
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002835static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2836{
2837 struct nfs4_exception exception = { };
2838 ssize_t ret;
2839 do {
2840 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2841 if (ret >= 0)
2842 break;
2843 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2844 } while (exception.retry);
2845 return ret;
2846}
2847
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002848static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2849{
2850 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002851 int ret;
2852
2853 if (!nfs4_server_supports_acls(server))
2854 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002855 ret = nfs_revalidate_inode(server, inode);
2856 if (ret < 0)
2857 return ret;
Trond Myklebustf41f7412008-06-11 17:39:04 -04002858 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
2859 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002860 ret = nfs4_read_cached_acl(inode, buf, buflen);
2861 if (ret != -ENOENT)
2862 return ret;
2863 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002864}
2865
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002866static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002867{
2868 struct nfs_server *server = NFS_SERVER(inode);
2869 struct page *pages[NFS4ACL_MAXPAGES];
2870 struct nfs_setaclargs arg = {
2871 .fh = NFS_FH(inode),
2872 .acl_pages = pages,
2873 .acl_len = buflen,
2874 };
Benny Halevy73c403a2009-04-01 09:22:01 -04002875 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002876 struct rpc_message msg = {
2877 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2878 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04002879 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002880 };
2881 int ret;
2882
2883 if (!nfs4_server_supports_acls(server))
2884 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002885 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002886 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002887 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebustf41f7412008-06-11 17:39:04 -04002888 nfs_access_zap_cache(inode);
2889 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002890 return ret;
2891}
2892
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002893static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2894{
2895 struct nfs4_exception exception = { };
2896 int err;
2897 do {
2898 err = nfs4_handle_exception(NFS_SERVER(inode),
2899 __nfs4_proc_set_acl(inode, buf, buflen),
2900 &exception);
2901 } while (exception.retry);
2902 return err;
2903}
2904
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905static int
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002906nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
David Howells7539bba2006-08-22 20:06:09 -04002908 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910 if (!clp || task->tk_status >= 0)
2911 return 0;
2912 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002913 case -NFS4ERR_ADMIN_REVOKED:
2914 case -NFS4ERR_BAD_STATEID:
2915 case -NFS4ERR_OPENMODE:
2916 if (state == NULL)
2917 break;
2918 nfs4_state_mark_reclaim_nograce(clp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 case -NFS4ERR_STALE_CLIENTID:
2920 case -NFS4ERR_STALE_STATEID:
2921 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05002922 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 nfs4_schedule_state_recovery(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05002924 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05002925 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 task->tk_status = 0;
2927 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 case -NFS4ERR_DELAY:
Trond Myklebust2e96d282008-06-11 16:42:05 -04002929 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05002930 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2932 task->tk_status = 0;
2933 return -EAGAIN;
2934 case -NFS4ERR_OLD_STATEID:
2935 task->tk_status = 0;
2936 return -EAGAIN;
2937 }
2938 task->tk_status = nfs4_map_errors(task->tk_status);
2939 return 0;
2940}
2941
David Howellsadfa6f92006-08-22 20:06:08 -04002942int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943{
2944 nfs4_verifier sc_verifier;
2945 struct nfs4_setclientid setclientid = {
2946 .sc_verifier = &sc_verifier,
2947 .sc_prog = program,
2948 };
2949 struct rpc_message msg = {
2950 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2951 .rpc_argp = &setclientid,
2952 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002953 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 };
Al Virobc4785c2006-10-19 23:28:51 -07002955 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 int loop = 0;
2957 int status;
2958
Al Virobc4785c2006-10-19 23:28:51 -07002959 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2961 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2962
2963 for(;;) {
2964 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05002965 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05002966 clp->cl_ipaddr,
2967 rpc_peeraddr2str(clp->cl_rpcclient,
2968 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05002969 rpc_peeraddr2str(clp->cl_rpcclient,
2970 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04002971 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 clp->cl_id_uniquifier);
2973 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002974 sizeof(setclientid.sc_netid),
2975 rpc_peeraddr2str(clp->cl_rpcclient,
2976 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002978 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 clp->cl_ipaddr, port >> 8, port & 255);
2980
2981 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2982 if (status != -NFS4ERR_CLID_INUSE)
2983 break;
2984 if (signalled())
2985 break;
2986 if (loop++ & 1)
2987 ssleep(clp->cl_lease_time + 1);
2988 else
2989 if (++clp->cl_id_uniquifier == 0)
2990 break;
2991 }
2992 return status;
2993}
2994
David Howellsadfa6f92006-08-22 20:06:08 -04002995static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996{
2997 struct nfs_fsinfo fsinfo;
2998 struct rpc_message msg = {
2999 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
3000 .rpc_argp = clp,
3001 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003002 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 };
3004 unsigned long now;
3005 int status;
3006
3007 now = jiffies;
3008 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3009 if (status == 0) {
3010 spin_lock(&clp->cl_lock);
3011 clp->cl_lease_time = fsinfo.lease_time * HZ;
3012 clp->cl_last_renewal = now;
3013 spin_unlock(&clp->cl_lock);
3014 }
3015 return status;
3016}
3017
David Howellsadfa6f92006-08-22 20:06:08 -04003018int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003019{
Benny Halevy77e03672008-06-24 20:25:57 +03003020 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003021 int err;
3022 do {
3023 err = _nfs4_proc_setclientid_confirm(clp, cred);
3024 switch (err) {
3025 case 0:
3026 return err;
3027 case -NFS4ERR_RESOURCE:
3028 /* The IBM lawyers misread another document! */
3029 case -NFS4ERR_DELAY:
3030 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3031 }
3032 } while (err == 0);
3033 return err;
3034}
3035
Trond Myklebustfe650402006-01-03 09:55:18 +01003036struct nfs4_delegreturndata {
3037 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003038 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003039 struct nfs_fh fh;
3040 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003041 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003042 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003043 int rpc_status;
3044};
3045
Trond Myklebustfe650402006-01-03 09:55:18 +01003046static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3047{
3048 struct nfs4_delegreturndata *data = calldata;
3049 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003050 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01003051 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01003052}
3053
3054static void nfs4_delegreturn_release(void *calldata)
3055{
Trond Myklebustfe650402006-01-03 09:55:18 +01003056 kfree(calldata);
3057}
3058
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003059static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01003060 .rpc_call_done = nfs4_delegreturn_done,
3061 .rpc_release = nfs4_delegreturn_release,
3062};
3063
Trond Myklebuste6f81072008-01-24 18:14:34 -05003064static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003065{
3066 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003067 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003068 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003069 struct rpc_message msg = {
3070 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3071 .rpc_cred = cred,
3072 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003073 struct rpc_task_setup task_setup_data = {
3074 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003075 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003076 .callback_ops = &nfs4_delegreturn_ops,
3077 .flags = RPC_TASK_ASYNC,
3078 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003079 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003080
3081 data = kmalloc(sizeof(*data), GFP_KERNEL);
3082 if (data == NULL)
3083 return -ENOMEM;
3084 data->args.fhandle = &data->fh;
3085 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003086 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003087 nfs_copy_fh(&data->fh, NFS_FH(inode));
3088 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003089 data->res.fattr = &data->fattr;
3090 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003091 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003092 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003093 data->rpc_status = 0;
3094
Trond Myklebustc970aa82007-07-14 15:39:59 -04003095 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003096 msg.rpc_argp = &data->args,
3097 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003098 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003099 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003100 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003101 if (!issync)
3102 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003103 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003104 if (status != 0)
3105 goto out;
3106 status = data->rpc_status;
3107 if (status != 0)
3108 goto out;
3109 nfs_refresh_inode(inode, &data->fattr);
3110out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003111 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003112 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113}
3114
Trond Myklebuste6f81072008-01-24 18:14:34 -05003115int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
3117 struct nfs_server *server = NFS_SERVER(inode);
3118 struct nfs4_exception exception = { };
3119 int err;
3120 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003121 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 switch (err) {
3123 case -NFS4ERR_STALE_STATEID:
3124 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 case 0:
3126 return 0;
3127 }
3128 err = nfs4_handle_exception(server, err, &exception);
3129 } while (exception.retry);
3130 return err;
3131}
3132
3133#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3134#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3135
3136/*
3137 * sleep, with exponential backoff, and retry the LOCK operation.
3138 */
3139static unsigned long
3140nfs4_set_lock_task_retry(unsigned long timeout)
3141{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003142 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 timeout <<= 1;
3144 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3145 return NFS4_LOCK_MAXTIMEOUT;
3146 return timeout;
3147}
3148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3150{
3151 struct inode *inode = state->inode;
3152 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003153 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003154 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003156 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003158 struct nfs_lockt_res res = {
3159 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 };
3161 struct rpc_message msg = {
3162 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3163 .rpc_argp = &arg,
3164 .rpc_resp = &res,
3165 .rpc_cred = state->owner->so_cred,
3166 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 struct nfs4_lock_state *lsp;
3168 int status;
3169
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003170 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003171 status = nfs4_set_lock_state(state, request);
3172 if (status != 0)
3173 goto out;
3174 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003175 arg.lock_owner.id = lsp->ls_id.id;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003176 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003177 switch (status) {
3178 case 0:
3179 request->fl_type = F_UNLCK;
3180 break;
3181 case -NFS4ERR_DENIED:
3182 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003184 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003185out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return status;
3187}
3188
3189static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3190{
3191 struct nfs4_exception exception = { };
3192 int err;
3193
3194 do {
3195 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3196 _nfs4_proc_getlk(state, cmd, request),
3197 &exception);
3198 } while (exception.retry);
3199 return err;
3200}
3201
3202static int do_vfs_lock(struct file *file, struct file_lock *fl)
3203{
3204 int res = 0;
3205 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3206 case FL_POSIX:
3207 res = posix_lock_file_wait(file, fl);
3208 break;
3209 case FL_FLOCK:
3210 res = flock_lock_file_wait(file, fl);
3211 break;
3212 default:
3213 BUG();
3214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 return res;
3216}
3217
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003218struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003219 struct nfs_locku_args arg;
3220 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003221 struct nfs4_lock_state *lsp;
3222 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003223 struct file_lock fl;
3224 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003225 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003226};
3227
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003228static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3229 struct nfs_open_context *ctx,
3230 struct nfs4_lock_state *lsp,
3231 struct nfs_seqid *seqid)
3232{
3233 struct nfs4_unlockdata *p;
3234 struct inode *inode = lsp->ls_state->inode;
3235
3236 p = kmalloc(sizeof(*p), GFP_KERNEL);
3237 if (p == NULL)
3238 return NULL;
3239 p->arg.fh = NFS_FH(inode);
3240 p->arg.fl = &p->fl;
3241 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003242 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003243 p->arg.stateid = &lsp->ls_stateid;
3244 p->lsp = lsp;
3245 atomic_inc(&lsp->ls_count);
3246 /* Ensure we don't close file until we're done freeing locks! */
3247 p->ctx = get_nfs_open_context(ctx);
3248 memcpy(&p->fl, fl, sizeof(p->fl));
3249 p->server = NFS_SERVER(inode);
3250 return p;
3251}
3252
Trond Myklebust06f814a2006-01-03 09:55:07 +01003253static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003254{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003255 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003256 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003257 nfs4_put_lock_state(calldata->lsp);
3258 put_nfs_open_context(calldata->ctx);
3259 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003260}
3261
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003262static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003263{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003264 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003265
Trond Myklebust06f814a2006-01-03 09:55:07 +01003266 if (RPC_ASSASSINATED(task))
3267 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003268 switch (task->tk_status) {
3269 case 0:
3270 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003271 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003272 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003273 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003274 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003275 case -NFS4ERR_BAD_STATEID:
3276 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003277 case -NFS4ERR_STALE_STATEID:
3278 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003279 break;
3280 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003281 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003282 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003283 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003284}
3285
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003286static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003287{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003288 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003290 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003291 return;
3292 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003293 /* Note: exit _without_ running nfs4_locku_done */
3294 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003295 return;
3296 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003297 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003298 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299}
3300
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003301static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003302 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003303 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003304 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003305};
3306
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003307static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3308 struct nfs_open_context *ctx,
3309 struct nfs4_lock_state *lsp,
3310 struct nfs_seqid *seqid)
3311{
3312 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003313 struct rpc_message msg = {
3314 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3315 .rpc_cred = ctx->cred,
3316 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003317 struct rpc_task_setup task_setup_data = {
3318 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003319 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003320 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003321 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003322 .flags = RPC_TASK_ASYNC,
3323 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003324
Frank Filz137d6ac2007-07-09 15:32:29 -07003325 /* Ensure this is an unlock - when canceling a lock, the
3326 * canceled lock is passed in, and it won't be an unlock.
3327 */
3328 fl->fl_type = F_UNLCK;
3329
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003330 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3331 if (data == NULL) {
3332 nfs_free_seqid(seqid);
3333 return ERR_PTR(-ENOMEM);
3334 }
3335
Trond Myklebust5138fde2007-07-14 15:40:01 -04003336 msg.rpc_argp = &data->arg,
3337 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003338 task_setup_data.callback_data = data;
3339 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003340}
3341
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3343{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003344 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003345 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003346 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003347 struct rpc_task *task;
3348 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003349 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Trond Myklebust9b073572006-06-29 16:38:34 -04003351 status = nfs4_set_lock_state(state, request);
3352 /* Unlock _before_ we do the RPC call */
3353 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003354 down_read(&nfsi->rwsem);
3355 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3356 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003357 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003358 }
3359 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003360 if (status != 0)
3361 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003362 /* Is this a delegated lock? */
3363 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003364 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003365 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003366 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003367 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003368 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003369 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003370 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003371 status = PTR_ERR(task);
3372 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003373 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003374 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003375 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003376out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003377 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003378 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379}
3380
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003381struct nfs4_lockdata {
3382 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003383 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003384 struct nfs4_lock_state *lsp;
3385 struct nfs_open_context *ctx;
3386 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003387 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003388 int rpc_status;
3389 int cancelled;
3390};
3391
3392static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3393 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3394{
3395 struct nfs4_lockdata *p;
3396 struct inode *inode = lsp->ls_state->inode;
3397 struct nfs_server *server = NFS_SERVER(inode);
3398
3399 p = kzalloc(sizeof(*p), GFP_KERNEL);
3400 if (p == NULL)
3401 return NULL;
3402
3403 p->arg.fh = NFS_FH(inode);
3404 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003405 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3406 if (p->arg.open_seqid == NULL)
3407 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003408 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3409 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003410 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003411 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003412 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003413 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003414 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003415 p->lsp = lsp;
3416 atomic_inc(&lsp->ls_count);
3417 p->ctx = get_nfs_open_context(ctx);
3418 memcpy(&p->fl, fl, sizeof(p->fl));
3419 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003420out_free_seqid:
3421 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003422out_free:
3423 kfree(p);
3424 return NULL;
3425}
3426
3427static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3428{
3429 struct nfs4_lockdata *data = calldata;
3430 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
Harvey Harrison3110ff82008-05-02 13:42:44 -07003432 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003433 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3434 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003435 /* Do we need to do an open_to_lock_owner? */
3436 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003437 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3438 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003439 data->arg.open_stateid = &state->stateid;
3440 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003441 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003442 } else
3443 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003444 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003445 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003446 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003447}
3448
3449static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3450{
3451 struct nfs4_lockdata *data = calldata;
3452
Harvey Harrison3110ff82008-05-02 13:42:44 -07003453 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003454
3455 data->rpc_status = task->tk_status;
3456 if (RPC_ASSASSINATED(task))
3457 goto out;
3458 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003459 if (data->rpc_status == 0)
3460 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3461 else
3462 goto out;
3463 }
3464 if (data->rpc_status == 0) {
3465 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3466 sizeof(data->lsp->ls_stateid.data));
3467 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003468 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003469 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003470out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003471 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003472}
3473
3474static void nfs4_lock_release(void *calldata)
3475{
3476 struct nfs4_lockdata *data = calldata;
3477
Harvey Harrison3110ff82008-05-02 13:42:44 -07003478 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003479 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003480 if (data->cancelled != 0) {
3481 struct rpc_task *task;
3482 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3483 data->arg.lock_seqid);
3484 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003485 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003486 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003487 } else
3488 nfs_free_seqid(data->arg.lock_seqid);
3489 nfs4_put_lock_state(data->lsp);
3490 put_nfs_open_context(data->ctx);
3491 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003492 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003493}
3494
3495static const struct rpc_call_ops nfs4_lock_ops = {
3496 .rpc_call_prepare = nfs4_lock_prepare,
3497 .rpc_call_done = nfs4_lock_done,
3498 .rpc_release = nfs4_lock_release,
3499};
3500
3501static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3502{
3503 struct nfs4_lockdata *data;
3504 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003505 struct rpc_message msg = {
3506 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3507 .rpc_cred = state->owner->so_cred,
3508 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003509 struct rpc_task_setup task_setup_data = {
3510 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003511 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003512 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003513 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003514 .flags = RPC_TASK_ASYNC,
3515 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003516 int ret;
3517
Harvey Harrison3110ff82008-05-02 13:42:44 -07003518 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003519 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003520 fl->fl_u.nfs4_fl.owner);
3521 if (data == NULL)
3522 return -ENOMEM;
3523 if (IS_SETLKW(cmd))
3524 data->arg.block = 1;
3525 if (reclaim != 0)
3526 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003527 msg.rpc_argp = &data->arg,
3528 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003529 task_setup_data.callback_data = data;
3530 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003531 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003532 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003533 ret = nfs4_wait_for_completion_rpc_task(task);
3534 if (ret == 0) {
3535 ret = data->rpc_status;
3536 if (ret == -NFS4ERR_DENIED)
3537 ret = -EAGAIN;
3538 } else
3539 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003540 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003541 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003542 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543}
3544
3545static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3546{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003547 struct nfs_server *server = NFS_SERVER(state->inode);
3548 struct nfs4_exception exception = { };
3549 int err;
3550
3551 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003552 /* Cache the lock if possible... */
3553 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3554 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003555 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3556 if (err != -NFS4ERR_DELAY)
3557 break;
3558 nfs4_handle_exception(server, err, &exception);
3559 } while (exception.retry);
3560 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561}
3562
3563static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3564{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003565 struct nfs_server *server = NFS_SERVER(state->inode);
3566 struct nfs4_exception exception = { };
3567 int err;
3568
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003569 err = nfs4_set_lock_state(state, request);
3570 if (err != 0)
3571 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003572 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003573 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3574 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003575 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3576 if (err != -NFS4ERR_DELAY)
3577 break;
3578 nfs4_handle_exception(server, err, &exception);
3579 } while (exception.retry);
3580 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581}
3582
3583static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3584{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003585 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003586 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 int status;
3588
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003589 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003590 status = nfs4_set_lock_state(state, request);
3591 if (status != 0)
3592 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003593 request->fl_flags |= FL_ACCESS;
3594 status = do_vfs_lock(request->fl_file, request);
3595 if (status < 0)
3596 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003597 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003598 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04003599 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003600 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05003601 request->fl_flags = fl_flags & ~FL_SLEEP;
3602 status = do_vfs_lock(request->fl_file, request);
3603 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003604 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003605 status = _nfs4_do_setlk(state, cmd, request, 0);
3606 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003607 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003608 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003609 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003610 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07003611 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003612out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05003613 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003614out:
3615 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 return status;
3617}
3618
3619static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3620{
3621 struct nfs4_exception exception = { };
3622 int err;
3623
3624 do {
3625 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3626 _nfs4_proc_setlk(state, cmd, request),
3627 &exception);
3628 } while (exception.retry);
3629 return err;
3630}
3631
3632static int
3633nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3634{
3635 struct nfs_open_context *ctx;
3636 struct nfs4_state *state;
3637 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3638 int status;
3639
3640 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003641 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 state = ctx->state;
3643
3644 if (request->fl_start < 0 || request->fl_end < 0)
3645 return -EINVAL;
3646
3647 if (IS_GETLK(cmd))
3648 return nfs4_proc_getlk(state, F_GETLK, request);
3649
3650 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3651 return -EINVAL;
3652
3653 if (request->fl_type == F_UNLCK)
3654 return nfs4_proc_unlck(state, cmd, request);
3655
3656 do {
3657 status = nfs4_proc_setlk(state, cmd, request);
3658 if ((status != -EAGAIN) || IS_SETLK(cmd))
3659 break;
3660 timeout = nfs4_set_lock_task_retry(timeout);
3661 status = -ERESTARTSYS;
3662 if (signalled())
3663 break;
3664 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 return status;
3666}
3667
Trond Myklebust888e6942005-11-04 15:38:11 -05003668int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3669{
3670 struct nfs_server *server = NFS_SERVER(state->inode);
3671 struct nfs4_exception exception = { };
3672 int err;
3673
3674 err = nfs4_set_lock_state(state, fl);
3675 if (err != 0)
3676 goto out;
3677 do {
3678 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3679 if (err != -NFS4ERR_DELAY)
3680 break;
3681 err = nfs4_handle_exception(server, err, &exception);
3682 } while (exception.retry);
3683out:
3684 return err;
3685}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003686
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003687#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3688
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003689int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3690 size_t buflen, int flags)
3691{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003692 struct inode *inode = dentry->d_inode;
3693
3694 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3695 return -EOPNOTSUPP;
3696
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003697 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003698}
3699
3700/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3701 * and that's what we'll do for e.g. user attributes that haven't been set.
3702 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3703 * attributes in kernel-managed attribute namespaces. */
3704ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3705 size_t buflen)
3706{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003707 struct inode *inode = dentry->d_inode;
3708
3709 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3710 return -EOPNOTSUPP;
3711
3712 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003713}
3714
3715ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3716{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003717 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003718
J. Bruce Fields096455a2006-03-20 23:23:42 -05003719 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3720 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003721 if (buf && buflen < len)
3722 return -ERANGE;
3723 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003724 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3725 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003726}
3727
Trond Myklebust69aaaae2009-03-11 14:10:28 -04003728static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
3729{
3730 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
3731 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
3732 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
3733 return;
3734
3735 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
3736 NFS_ATTR_FATTR_NLINK;
3737 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
3738 fattr->nlink = 2;
3739}
3740
Trond Myklebust56659e92007-07-17 21:52:39 -04003741int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003742 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003743{
3744 struct nfs_server *server = NFS_SERVER(dir);
3745 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003746 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3747 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003748 };
3749 struct nfs4_fs_locations_arg args = {
3750 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05003751 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003752 .page = page,
3753 .bitmask = bitmask,
3754 };
Benny Halevy22958462009-04-01 09:22:02 -04003755 struct nfs4_fs_locations_res res = {
3756 .fs_locations = fs_locations,
3757 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04003758 struct rpc_message msg = {
3759 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3760 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04003761 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003762 };
3763 int status;
3764
Harvey Harrison3110ff82008-05-02 13:42:44 -07003765 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05003766 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003767 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003768 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003769 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04003770 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003771 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003772 return status;
3773}
3774
Andy Adamson557134a2009-04-01 09:21:53 -04003775#ifdef CONFIG_NFS_V4_1
3776/* Destroy the slot table */
3777static void nfs4_destroy_slot_table(struct nfs4_session *session)
3778{
3779 if (session->fc_slot_table.slots == NULL)
3780 return;
3781 kfree(session->fc_slot_table.slots);
3782 session->fc_slot_table.slots = NULL;
3783 return;
3784}
3785
3786struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
3787{
3788 struct nfs4_session *session;
3789 struct nfs4_slot_table *tbl;
3790
3791 session = kzalloc(sizeof(struct nfs4_session), GFP_KERNEL);
3792 if (!session)
3793 return NULL;
3794 tbl = &session->fc_slot_table;
3795 spin_lock_init(&tbl->slot_tbl_lock);
3796 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "Slot table");
3797 session->clp = clp;
3798 return session;
3799}
3800
3801void nfs4_destroy_session(struct nfs4_session *session)
3802{
3803 nfs4_destroy_slot_table(session);
3804 kfree(session);
3805}
3806
3807#endif /* CONFIG_NFS_V4_1 */
3808
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05003810 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05003811 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 .recover_open = nfs4_open_reclaim,
3813 .recover_lock = nfs4_lock_reclaim,
3814};
3815
Trond Myklebustb79a4a12008-12-23 15:21:41 -05003816struct nfs4_state_recovery_ops nfs4_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05003817 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05003818 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 .recover_open = nfs4_open_expired,
3820 .recover_lock = nfs4_lock_expired,
3821};
3822
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003823static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003824 .permission = nfs_permission,
3825 .getattr = nfs_getattr,
3826 .setattr = nfs_setattr,
3827 .getxattr = nfs4_getxattr,
3828 .setxattr = nfs4_setxattr,
3829 .listxattr = nfs4_listxattr,
3830};
3831
David Howells509de812006-08-22 20:06:11 -04003832const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 .version = 4, /* protocol version */
3834 .dentry_ops = &nfs4_dentry_operations,
3835 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003836 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 .getroot = nfs4_proc_get_root,
3838 .getattr = nfs4_proc_getattr,
3839 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003840 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 .lookup = nfs4_proc_lookup,
3842 .access = nfs4_proc_access,
3843 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 .create = nfs4_proc_create,
3845 .remove = nfs4_proc_remove,
3846 .unlink_setup = nfs4_proc_unlink_setup,
3847 .unlink_done = nfs4_proc_unlink_done,
3848 .rename = nfs4_proc_rename,
3849 .link = nfs4_proc_link,
3850 .symlink = nfs4_proc_symlink,
3851 .mkdir = nfs4_proc_mkdir,
3852 .rmdir = nfs4_proc_remove,
3853 .readdir = nfs4_proc_readdir,
3854 .mknod = nfs4_proc_mknod,
3855 .statfs = nfs4_proc_statfs,
3856 .fsinfo = nfs4_proc_fsinfo,
3857 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003858 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 .decode_dirent = nfs4_decode_dirent,
3860 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003861 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003863 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003865 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003867 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003868 .close_context = nfs4_close_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869};
3870
3871/*
3872 * Local variables:
3873 * c-basic-offset: 8
3874 * End:
3875 */