blob: 95f171e7e05a19a9afe046620f37e5b4e9457a54 [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
Trond Myklebust38478b22006-05-25 01:40:57 -0400274static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Trond Myklebust38478b22006-05-25 01:40:57 -0400276 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Trond Myklebust38478b22006-05-25 01:40:57 -0400278 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400279 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
280 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400281 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400282 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400283 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100286struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400287 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100288 struct nfs_openargs o_arg;
289 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100290 struct nfs_open_confirmargs c_arg;
291 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100292 struct nfs_fattr f_attr;
293 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400294 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100295 struct dentry *dir;
296 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400297 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100298 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100299 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400300 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100301 int rpc_status;
302 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100303};
304
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400305
306static void nfs4_init_opendata_res(struct nfs4_opendata *p)
307{
308 p->o_res.f_attr = &p->f_attr;
309 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400310 p->o_res.seqid = p->o_arg.seqid;
311 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400312 p->o_res.server = p->o_arg.server;
313 nfs_fattr_init(&p->f_attr);
314 nfs_fattr_init(&p->dir_attr);
315}
316
Trond Myklebustad389da2007-06-05 12:30:00 -0400317static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500318 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100319 const struct iattr *attrs)
320{
Trond Myklebustad389da2007-06-05 12:30:00 -0400321 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100322 struct inode *dir = parent->d_inode;
323 struct nfs_server *server = NFS_SERVER(dir);
324 struct nfs4_opendata *p;
325
326 p = kzalloc(sizeof(*p), GFP_KERNEL);
327 if (p == NULL)
328 goto err;
329 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
330 if (p->o_arg.seqid == NULL)
331 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400332 p->path.mnt = mntget(path->mnt);
333 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100334 p->dir = parent;
335 p->owner = sp;
336 atomic_inc(&sp->so_count);
337 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500338 p->o_arg.open_flags = flags;
339 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400340 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400341 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400342 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100343 p->o_arg.server = server;
344 p->o_arg.bitmask = server->attr_bitmask;
345 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100346 if (flags & O_EXCL) {
347 u32 *s = (u32 *) p->o_arg.u.verifier.data;
348 s[0] = jiffies;
349 s[1] = current->pid;
350 } else if (flags & O_CREAT) {
351 p->o_arg.u.attrs = &p->attrs;
352 memcpy(&p->attrs, attrs, sizeof(p->attrs));
353 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100354 p->c_arg.fh = &p->o_res.fh;
355 p->c_arg.stateid = &p->o_res.stateid;
356 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400357 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400358 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100359 return p;
360err_free:
361 kfree(p);
362err:
363 dput(parent);
364 return NULL;
365}
366
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400367static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100368{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400369 struct nfs4_opendata *p = container_of(kref,
370 struct nfs4_opendata, kref);
371
372 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400373 if (p->state != NULL)
374 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400375 nfs4_put_state_owner(p->owner);
376 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700377 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400378 kfree(p);
379}
380
381static void nfs4_opendata_put(struct nfs4_opendata *p)
382{
383 if (p != NULL)
384 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100385}
386
Trond Myklebust06f814a2006-01-03 09:55:07 +0100387static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
388{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100389 int ret;
390
Trond Myklebust06f814a2006-01-03 09:55:07 +0100391 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100392 return ret;
393}
394
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500395static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400396{
397 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500398
399 if (open_mode & O_EXCL)
400 goto out;
401 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400402 case FMODE_READ:
403 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400404 break;
405 case FMODE_WRITE:
406 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400407 break;
408 case FMODE_READ|FMODE_WRITE:
409 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
410 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500411out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400412 return ret;
413}
414
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500415static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400416{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500417 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400418 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500419 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400420 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500421 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400422 return 1;
423}
424
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500425static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100426{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500427 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100428 case FMODE_WRITE:
429 state->n_wronly++;
430 break;
431 case FMODE_READ:
432 state->n_rdonly++;
433 break;
434 case FMODE_READ|FMODE_WRITE:
435 state->n_rdwr++;
436 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500437 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100438}
439
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500440static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400441{
442 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
443 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
444 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500445 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400446 case FMODE_READ:
447 set_bit(NFS_O_RDONLY_STATE, &state->flags);
448 break;
449 case FMODE_WRITE:
450 set_bit(NFS_O_WRONLY_STATE, &state->flags);
451 break;
452 case FMODE_READ|FMODE_WRITE:
453 set_bit(NFS_O_RDWR_STATE, &state->flags);
454 }
455}
456
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500457static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400458{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400459 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500460 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400461 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400462}
463
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500464static 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 -0700465{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400466 /*
467 * Protect the call to nfs4_state_set_mode_locked and
468 * serialise the stateid update
469 */
470 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400471 if (deleg_stateid != NULL) {
472 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
473 set_bit(NFS_DELEGATED_STATE, &state->flags);
474 }
475 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500476 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400477 write_sequnlock(&state->seqlock);
478 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500479 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700480 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500483static 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 -0500484{
485 struct nfs_inode *nfsi = NFS_I(state->inode);
486 struct nfs_delegation *deleg_cur;
487 int ret = 0;
488
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500489 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500490
491 rcu_read_lock();
492 deleg_cur = rcu_dereference(nfsi->delegation);
493 if (deleg_cur == NULL)
494 goto no_delegation;
495
496 spin_lock(&deleg_cur->lock);
497 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500498 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500499 goto no_delegation_unlock;
500
501 if (delegation == NULL)
502 delegation = &deleg_cur->stateid;
503 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
504 goto no_delegation_unlock;
505
Trond Myklebustb7391f42008-12-23 15:21:52 -0500506 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500507 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500508 ret = 1;
509no_delegation_unlock:
510 spin_unlock(&deleg_cur->lock);
511no_delegation:
512 rcu_read_unlock();
513
514 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500515 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500516 ret = 1;
517 }
518
519 return ret;
520}
521
522
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500523static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400524{
525 struct nfs_delegation *delegation;
526
527 rcu_read_lock();
528 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500529 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400530 rcu_read_unlock();
531 return;
532 }
533 rcu_read_unlock();
534 nfs_inode_return_delegation(inode);
535}
536
Trond Myklebust6ee41262007-07-08 14:11:36 -0400537static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400538{
539 struct nfs4_state *state = opendata->state;
540 struct nfs_inode *nfsi = NFS_I(state->inode);
541 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500542 int open_mode = opendata->o_arg.open_flags & O_EXCL;
543 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400544 nfs4_stateid stateid;
545 int ret = -EAGAIN;
546
Trond Myklebustaac00a82007-07-05 19:02:21 -0400547 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500548 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400549 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500550 if (can_open_cached(state, fmode, open_mode)) {
551 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400552 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400553 goto out_return_state;
554 }
555 spin_unlock(&state->owner->so_lock);
556 }
Trond Myklebust34310432008-12-23 15:21:38 -0500557 rcu_read_lock();
558 delegation = rcu_dereference(nfsi->delegation);
559 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500560 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -0500561 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400562 break;
Trond Myklebust34310432008-12-23 15:21:38 -0500563 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400564 /* Save the delegation */
565 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
566 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400567 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400568 if (ret != 0)
569 goto out;
570 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -0500571
572 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500573 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -0500574 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400575 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400576out:
577 return ERR_PTR(ret);
578out_return_state:
579 atomic_inc(&state->count);
580 return state;
581}
582
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100583static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
584{
585 struct inode *inode;
586 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400587 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400588 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100589
Trond Myklebustaac00a82007-07-05 19:02:21 -0400590 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400591 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400592 goto out;
593 }
594
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400595 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100596 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400597 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100598 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400599 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500600 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400601 goto err;
602 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100603 state = nfs4_get_open_state(inode, data->owner);
604 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400605 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400606 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400607 int delegation_flags = 0;
608
Trond Myklebust003707c2007-07-05 18:07:55 -0400609 rcu_read_lock();
610 delegation = rcu_dereference(NFS_I(inode)->delegation);
611 if (delegation)
612 delegation_flags = delegation->flags;
613 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -0500614 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400615 nfs_inode_set_delegation(state->inode,
616 data->owner->so_cred,
617 &data->o_res);
618 else
619 nfs_inode_reclaim_delegation(state->inode,
620 data->owner->so_cred,
621 &data->o_res);
622 }
Trond Myklebust34310432008-12-23 15:21:38 -0500623
624 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500625 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100626 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400627out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100628 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400629err_put_inode:
630 iput(inode);
631err:
632 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100633}
634
Trond Myklebust864472e2006-01-03 09:55:15 +0100635static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
636{
637 struct nfs_inode *nfsi = NFS_I(state->inode);
638 struct nfs_open_context *ctx;
639
640 spin_lock(&state->inode->i_lock);
641 list_for_each_entry(ctx, &nfsi->open_files, list) {
642 if (ctx->state != state)
643 continue;
644 get_nfs_open_context(ctx);
645 spin_unlock(&state->inode->i_lock);
646 return ctx;
647 }
648 spin_unlock(&state->inode->i_lock);
649 return ERR_PTR(-ENOENT);
650}
651
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400652static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
653{
654 struct nfs4_opendata *opendata;
655
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500656 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL);
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400657 if (opendata == NULL)
658 return ERR_PTR(-ENOMEM);
659 opendata->state = state;
660 atomic_inc(&state->count);
661 return opendata;
662}
663
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500664static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +0100665{
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400666 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100667 int ret;
668
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500669 opendata->o_arg.open_flags = 0;
670 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400671 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
672 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
673 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100674 ret = _nfs4_proc_open(opendata);
675 if (ret != 0)
676 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400677 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400678 if (IS_ERR(newstate))
679 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500680 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400681 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100682 return 0;
683}
684
685static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
686{
Trond Myklebust864472e2006-01-03 09:55:15 +0100687 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100688 int ret;
689
690 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400691 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100692 smp_rmb();
693 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400694 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100695 if (ret != 0)
696 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400697 if (newstate != state)
698 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100699 }
700 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400701 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100702 if (ret != 0)
703 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400704 if (newstate != state)
705 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100706 }
707 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400708 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100709 if (ret != 0)
710 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400711 if (newstate != state)
712 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100713 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400714 /*
715 * We may have performed cached opens for all three recoveries.
716 * Check if we need to update the current stateid.
717 */
718 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
719 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400720 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400721 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
722 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400723 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400724 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100725 return 0;
726}
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/*
729 * OPEN_RECLAIM:
730 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400732static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400734 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +0100735 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500736 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 int status;
738
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400739 opendata = nfs4_open_recoverdata_alloc(ctx, state);
740 if (IS_ERR(opendata))
741 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100742 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
743 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400744 rcu_read_lock();
745 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -0500746 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -0400747 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400748 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +0100749 opendata->o_arg.u.delegation_type = delegation_type;
750 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400751 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return status;
753}
754
Trond Myklebust539cd032007-06-05 11:46:42 -0400755static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 struct nfs_server *server = NFS_SERVER(state->inode);
758 struct nfs4_exception exception = { };
759 int err;
760 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400761 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000762 if (err != -NFS4ERR_DELAY)
763 break;
764 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 } while (exception.retry);
766 return err;
767}
768
Trond Myklebust864472e2006-01-03 09:55:15 +0100769static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
770{
771 struct nfs_open_context *ctx;
772 int ret;
773
774 ctx = nfs4_state_find_open_context(state);
775 if (IS_ERR(ctx))
776 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400777 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100778 put_nfs_open_context(ctx);
779 return ret;
780}
781
Trond Myklebust13437e12007-07-06 15:10:43 -0400782static 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 -0700783{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100784 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100785 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400787 opendata = nfs4_open_recoverdata_alloc(ctx, state);
788 if (IS_ERR(opendata))
789 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100790 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -0400791 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100792 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100793 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400794 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100795 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
Trond Myklebust13437e12007-07-06 15:10:43 -0400798int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -0400801 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int err;
803 do {
Trond Myklebust13437e12007-07-06 15:10:43 -0400804 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 switch (err) {
806 case 0:
807 return err;
808 case -NFS4ERR_STALE_CLIENTID:
809 case -NFS4ERR_STALE_STATEID:
810 case -NFS4ERR_EXPIRED:
811 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400812 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return err;
814 }
815 err = nfs4_handle_exception(server, err, &exception);
816 } while (exception.retry);
817 return err;
818}
819
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100820static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
821{
822 struct nfs4_opendata *data = calldata;
823
824 data->rpc_status = task->tk_status;
825 if (RPC_ASSASSINATED(task))
826 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100827 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100828 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
829 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -0500830 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +0100831 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -0400832 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100833 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100834}
835
836static void nfs4_open_confirm_release(void *calldata)
837{
838 struct nfs4_opendata *data = calldata;
839 struct nfs4_state *state = NULL;
840
841 /* If this request hasn't been cancelled, do nothing */
842 if (data->cancelled == 0)
843 goto out_free;
844 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400845 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100846 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100847 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400848 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500849 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100850out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400851 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100852}
853
854static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100855 .rpc_call_done = nfs4_open_confirm_done,
856 .rpc_release = nfs4_open_confirm_release,
857};
858
859/*
860 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
861 */
862static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
863{
864 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
865 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400866 struct rpc_message msg = {
867 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
868 .rpc_argp = &data->c_arg,
869 .rpc_resp = &data->c_res,
870 .rpc_cred = data->owner->so_cred,
871 };
Trond Myklebustc970aa82007-07-14 15:39:59 -0400872 struct rpc_task_setup task_setup_data = {
873 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400874 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400875 .callback_ops = &nfs4_open_confirm_ops,
876 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500877 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400878 .flags = RPC_TASK_ASYNC,
879 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 int status;
881
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400882 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400883 data->rpc_done = 0;
884 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400885 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -0400886 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500887 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100888 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100889 status = nfs4_wait_for_completion_rpc_task(task);
890 if (status != 0) {
891 data->cancelled = 1;
892 smp_wmb();
893 } else
894 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500895 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return status;
897}
898
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100899static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100901 struct nfs4_opendata *data = calldata;
902 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400903
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100904 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
905 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400906 /*
907 * Check if we still need to send an OPEN call, or if we can use
908 * a delegation instead.
909 */
910 if (data->state != NULL) {
911 struct nfs_delegation *delegation;
912
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500913 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -0400914 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400915 rcu_read_lock();
916 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
917 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -0500918 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400919 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400920 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400921 }
922 rcu_read_unlock();
923 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100924 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400925 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100926 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400927 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -0400928 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -0400929 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
930 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100931 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -0400932 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400933 return;
934out_no_action:
935 task->tk_action = NULL;
936
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100937}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100939static void nfs4_open_done(struct rpc_task *task, void *calldata)
940{
941 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100943 data->rpc_status = task->tk_status;
944 if (RPC_ASSASSINATED(task))
945 return;
946 if (task->tk_status == 0) {
947 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -0700948 case S_IFREG:
949 break;
950 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100951 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700952 break;
953 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100954 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700955 break;
956 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100957 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700958 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100959 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -0400960 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
961 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -0700962 }
Trond Myklebust3e309912007-07-07 13:19:59 -0400963 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100964}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700965
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100966static void nfs4_open_release(void *calldata)
967{
968 struct nfs4_opendata *data = calldata;
969 struct nfs4_state *state = NULL;
970
971 /* If this request hasn't been cancelled, do nothing */
972 if (data->cancelled == 0)
973 goto out_free;
974 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400975 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100976 goto out_free;
977 /* In case we need an open_confirm, no cleanup! */
978 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
979 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100980 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400981 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500982 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100983out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400984 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100985}
986
987static const struct rpc_call_ops nfs4_open_ops = {
988 .rpc_call_prepare = nfs4_open_prepare,
989 .rpc_call_done = nfs4_open_done,
990 .rpc_release = nfs4_open_release,
991};
992
993/*
994 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
995 */
996static int _nfs4_proc_open(struct nfs4_opendata *data)
997{
998 struct inode *dir = data->dir->d_inode;
999 struct nfs_server *server = NFS_SERVER(dir);
1000 struct nfs_openargs *o_arg = &data->o_arg;
1001 struct nfs_openres *o_res = &data->o_res;
1002 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001003 struct rpc_message msg = {
1004 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1005 .rpc_argp = o_arg,
1006 .rpc_resp = o_res,
1007 .rpc_cred = data->owner->so_cred,
1008 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001009 struct rpc_task_setup task_setup_data = {
1010 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001011 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001012 .callback_ops = &nfs4_open_ops,
1013 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001014 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001015 .flags = RPC_TASK_ASYNC,
1016 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001017 int status;
1018
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001019 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001020 data->rpc_done = 0;
1021 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001022 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001023 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001024 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001025 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001026 status = nfs4_wait_for_completion_rpc_task(task);
1027 if (status != 0) {
1028 data->cancelled = 1;
1029 smp_wmb();
1030 } else
1031 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001032 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -04001033 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001034 return status;
1035
Trond Myklebust99367812007-07-17 21:52:41 -04001036 if (o_res->fh.size == 0)
1037 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
1038
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001039 if (o_arg->open_flags & O_CREAT) {
1040 update_changeattr(dir, &o_res->cinfo);
1041 nfs_post_op_update_inode(dir, o_res->dir_attr);
1042 } else
1043 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001045 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001047 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001050 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001051 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
1053
Trond Myklebust10afec92007-05-14 17:16:04 -04001054static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001055{
David Howells7539bba2006-08-22 20:06:09 -04001056 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -04001057 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001058
Trond Myklebust6b309542006-09-14 14:03:14 -04001059 for (;;) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001060 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001061 if (ret != 0)
1062 return ret;
Trond Myklebuste598d842008-12-23 15:21:42 -05001063 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1064 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001065 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001066 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001067 }
1068 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +01001069}
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071/*
1072 * OPEN_EXPIRED:
1073 * reclaim state on the server after a network partition.
1074 * Assumes caller holds the appropriate lock
1075 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001076static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001078 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001079 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001081 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1082 if (IS_ERR(opendata))
1083 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001084 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001085 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001086 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001087 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001088 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
Trond Myklebust539cd032007-06-05 11:46:42 -04001091static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001092{
Trond Myklebust539cd032007-06-05 11:46:42 -04001093 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001094 struct nfs4_exception exception = { };
1095 int err;
1096
1097 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001098 err = _nfs4_open_expired(ctx, state);
Trond Myklebust027b6ca2008-12-23 16:04:13 -05001099 if (err != -NFS4ERR_DELAY)
1100 break;
1101 nfs4_handle_exception(server, err, &exception);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001102 } while (exception.retry);
1103 return err;
1104}
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1107{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001109 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Trond Myklebust864472e2006-01-03 09:55:15 +01001111 ctx = nfs4_state_find_open_context(state);
1112 if (IS_ERR(ctx))
1113 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001114 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001115 put_nfs_open_context(ctx);
1116 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
1119/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001120 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1121 * fields corresponding to attributes that were used to store the verifier.
1122 * Make sure we clobber those fields in the later setattr call
1123 */
1124static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1125{
1126 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1127 !(sattr->ia_valid & ATTR_ATIME_SET))
1128 sattr->ia_valid |= ATTR_ATIME;
1129
1130 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1131 !(sattr->ia_valid & ATTR_MTIME_SET))
1132 sattr->ia_valid |= ATTR_MTIME;
1133}
1134
1135/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001136 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001138static 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 -07001139{
1140 struct nfs4_state_owner *sp;
1141 struct nfs4_state *state = NULL;
1142 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001143 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001144 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 status = -ENOMEM;
1148 if (!(sp = nfs4_get_state_owner(server, cred))) {
1149 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1150 goto out_err;
1151 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001152 status = nfs4_recover_expired_lease(server);
1153 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001154 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001155 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001156 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001157 status = -ENOMEM;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001158 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001159 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001160 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Trond Myklebustaac00a82007-07-05 19:02:21 -04001162 if (path->dentry->d_inode != NULL)
1163 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1164
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001165 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001167 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001169 if (opendata->o_arg.open_flags & O_EXCL)
1170 nfs4_exclusive_attrset(opendata, sattr);
1171
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001172 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001173 status = PTR_ERR(state);
1174 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001175 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001176 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 *res = state;
1179 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001180err_opendata_put:
1181 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001182err_put_state_owner:
1183 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 *res = NULL;
1186 return status;
1187}
1188
1189
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001190static 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 -07001191{
1192 struct nfs4_exception exception = { };
1193 struct nfs4_state *res;
1194 int status;
1195
1196 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001197 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (status == 0)
1199 break;
1200 /* NOTE: BAD_SEQID means the server and client disagree about the
1201 * book-keeping w.r.t. state-changing operations
1202 * (OPEN/CLOSE/LOCK/LOCKU...)
1203 * It is actually a sign of a bug on the client or on the server.
1204 *
1205 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001206 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * have unhashed the old state_owner for us, and that we can
1208 * therefore safely retry using a new one. We should still warn
1209 * the user though...
1210 */
1211 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001212 printk(KERN_WARNING "NFS: v4 server %s "
1213 " returned a bad sequence-id error!\n",
1214 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 exception.retry = 1;
1216 continue;
1217 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001218 /*
1219 * BAD_STATEID on OPEN means that the server cancelled our
1220 * state before it received the OPEN_CONFIRM.
1221 * Recover by retrying the request as per the discussion
1222 * on Page 181 of RFC3530.
1223 */
1224 if (status == -NFS4ERR_BAD_STATEID) {
1225 exception.retry = 1;
1226 continue;
1227 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001228 if (status == -EAGAIN) {
1229 /* We must have found a delegation */
1230 exception.retry = 1;
1231 continue;
1232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1234 status, &exception));
1235 } while (exception.retry);
1236 return res;
1237}
1238
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001239static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1240 struct nfs_fattr *fattr, struct iattr *sattr,
1241 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001243 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001245 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 .iap = sattr,
1247 .server = server,
1248 .bitmask = server->attr_bitmask,
1249 };
1250 struct nfs_setattrres res = {
1251 .fattr = fattr,
1252 .server = server,
1253 };
1254 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001255 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1256 .rpc_argp = &arg,
1257 .rpc_resp = &res,
1258 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001260 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001261 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Trond Myklebust0e574af2005-10-27 22:12:38 -04001263 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001265 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1266 /* Use that stateid */
1267 } else if (state != NULL) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001268 nfs4_copy_stateid(&arg.stateid, state, current->files);
1269 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1271
Trond Myklebust65e43082005-08-16 11:49:44 -04001272 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001273 if (status == 0 && state != NULL)
1274 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001275 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001278static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1279 struct nfs_fattr *fattr, struct iattr *sattr,
1280 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001282 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 struct nfs4_exception exception = { };
1284 int err;
1285 do {
1286 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001287 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 &exception);
1289 } while (exception.retry);
1290 return err;
1291}
1292
1293struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001294 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 struct inode *inode;
1296 struct nfs4_state *state;
1297 struct nfs_closeargs arg;
1298 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001299 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001300 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301};
1302
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001303static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001304{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001305 struct nfs4_closedata *calldata = data;
1306 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001307
1308 nfs4_put_open_state(calldata->state);
1309 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001310 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001311 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001312 kfree(calldata);
1313}
1314
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001315static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001317 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 struct nfs_server *server = NFS_SERVER(calldata->inode);
1320
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001321 if (RPC_ASSASSINATED(task))
1322 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 /* hmm. we are done with the inode, and in the process of freeing
1324 * the state_owner. we keep this around to process errors
1325 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 switch (task->tk_status) {
1327 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001328 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001329 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 break;
1331 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001332 case -NFS4ERR_OLD_STATEID:
1333 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001335 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001336 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001338 if (nfs4_async_handle_error(task, server, state) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 rpc_restart_call(task);
1340 return;
1341 }
1342 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001343 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001346static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001348 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001349 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001350 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001351
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001352 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001353 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001354
Trond Myklebust003707c2007-07-05 18:07:55 -04001355 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001356 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001357 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001358 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001359 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001360 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1361 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1362 }
1363 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001364 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1365 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1366 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001367 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001368 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001369 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001370 /* Note: exit _without_ calling nfs4_close_done */
1371 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001372 return;
1373 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001374 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001375 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001376 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001377 calldata->arg.fmode = FMODE_READ;
Trond Myklebust45328c32007-07-26 17:47:34 -04001378 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001379 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001380 calldata->arg.fmode = FMODE_WRITE;
Trond Myklebust45328c32007-07-26 17:47:34 -04001381 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001382 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001383 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001386static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001387 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001388 .rpc_call_done = nfs4_close_done,
1389 .rpc_release = nfs4_free_closedata,
1390};
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392/*
1393 * It is possible for data to be read/written from a mem-mapped file
1394 * after the sys_close call (which hits the vfs layer as a flush).
1395 * This means that we can't safely call nfsv4 close on a file until
1396 * the inode is cleared. This in turn means that we are not good
1397 * NFSv4 citizens - we do not indicate to the server to update the file's
1398 * share state even when we are done with one of the three share
1399 * stateid's in the inode.
1400 *
1401 * NOTE: Caller must be holding the sp->so_owner semaphore!
1402 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001403int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001405 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001407 struct nfs4_state_owner *sp = state->owner;
1408 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001409 struct rpc_message msg = {
1410 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1411 .rpc_cred = state->owner->so_cred,
1412 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001413 struct rpc_task_setup task_setup_data = {
1414 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001415 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001416 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001417 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001418 .flags = RPC_TASK_ASYNC,
1419 };
Trond Myklebust95121352005-10-18 14:20:12 -07001420 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Trond Myklebust95121352005-10-18 14:20:12 -07001422 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001424 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001425 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001427 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001428 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001430 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001431 if (calldata->arg.seqid == NULL)
1432 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001433 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001434 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001435 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001436 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001437 calldata->res.server = server;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001438 calldata->path.mnt = mntget(path->mnt);
1439 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001440
Trond Myklebust5138fde2007-07-14 15:40:01 -04001441 msg.rpc_argp = &calldata->arg,
1442 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001443 task_setup_data.callback_data = calldata;
1444 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001445 if (IS_ERR(task))
1446 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001447 status = 0;
1448 if (wait)
1449 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001450 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001451 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001452out_free_calldata:
1453 kfree(calldata);
1454out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001455 nfs4_put_open_state(state);
1456 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001457 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001460static 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 -07001461{
1462 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001463 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001464
Trond Myklebust1b45c462007-07-03 13:04:56 -04001465 /* If the open_intent is for execute, we have an extra check to make */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001466 if (fmode & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001467 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001468 state->owner->so_cred,
1469 nd->intent.open.flags);
1470 if (ret < 0)
1471 goto out_close;
1472 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001473 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001474 if (!IS_ERR(filp)) {
1475 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001476 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001477 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001478 return 0;
1479 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001480 ret = PTR_ERR(filp);
1481out_close:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001482 nfs4_close_sync(path, state, fmode & (FMODE_READ|FMODE_WRITE));
Trond Myklebust1b45c462007-07-03 13:04:56 -04001483 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001484}
1485
1486struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1488{
Trond Myklebustad389da2007-06-05 12:30:00 -04001489 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001490 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001491 .dentry = dentry,
1492 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001493 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 struct iattr attr;
1495 struct rpc_cred *cred;
1496 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001497 struct dentry *res;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001498 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 if (nd->flags & LOOKUP_CREATE) {
1501 attr.ia_mode = nd->intent.open.create_mode;
1502 attr.ia_valid = ATTR_MODE;
1503 if (!IS_POSIXACL(dir))
1504 attr.ia_mode &= ~current->fs->umask;
1505 } else {
1506 attr.ia_valid = 0;
1507 BUG_ON(nd->intent.open.flags & O_CREAT);
1508 }
1509
Trond Myklebust98a8e322008-03-12 12:25:28 -04001510 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001512 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001513 parent = dentry->d_parent;
1514 /* Protect against concurrent sillydeletes */
1515 nfs_block_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001516 state = nfs4_do_open(dir, &path, fmode, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001518 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001519 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001520 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001521 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1522 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001523 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001524 return (struct dentry *)state;
1525 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001526 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001527 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001528 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001529 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001530 nfs_unblock_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001531 nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001532 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
1535int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001536nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Trond Myklebustad389da2007-06-05 12:30:00 -04001538 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001539 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001540 .dentry = dentry,
1541 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 struct rpc_cred *cred;
1543 struct nfs4_state *state;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001544 fmode_t fmode = openflags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Trond Myklebust98a8e322008-03-12 12:25:28 -04001546 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 if (IS_ERR(cred))
1548 return PTR_ERR(cred);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001549 state = nfs4_do_open(dir, &path, fmode, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001551 if (IS_ERR(state)) {
1552 switch (PTR_ERR(state)) {
1553 case -EPERM:
1554 case -EACCES:
1555 case -EDQUOT:
1556 case -ENOSPC:
1557 case -EROFS:
1558 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1559 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001560 default:
1561 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001562 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001563 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001564 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001565 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001566 nfs4_intent_set_file(nd, &path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 return 1;
1568 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001569 nfs4_close_sync(&path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001570out_drop:
1571 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 return 0;
1573}
1574
1575
1576static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1577{
1578 struct nfs4_server_caps_res res = {};
1579 struct rpc_message msg = {
1580 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1581 .rpc_argp = fhandle,
1582 .rpc_resp = &res,
1583 };
1584 int status;
1585
1586 status = rpc_call_sync(server->client, &msg, 0);
1587 if (status == 0) {
1588 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1589 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1590 server->caps |= NFS_CAP_ACLS;
1591 if (res.has_links != 0)
1592 server->caps |= NFS_CAP_HARDLINKS;
1593 if (res.has_symlinks != 0)
1594 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001595 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
1596 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
1597 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 server->acl_bitmask = res.acl_bitmask;
1599 }
1600 return status;
1601}
1602
Trond Myklebust55a97592006-06-09 09:34:19 -04001603int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
1605 struct nfs4_exception exception = { };
1606 int err;
1607 do {
1608 err = nfs4_handle_exception(server,
1609 _nfs4_server_capabilities(server, fhandle),
1610 &exception);
1611 } while (exception.retry);
1612 return err;
1613}
1614
1615static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1616 struct nfs_fsinfo *info)
1617{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 struct nfs4_lookup_root_arg args = {
1619 .bitmask = nfs4_fattr_bitmap,
1620 };
1621 struct nfs4_lookup_res res = {
1622 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04001623 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 .fh = fhandle,
1625 };
1626 struct rpc_message msg = {
1627 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1628 .rpc_argp = &args,
1629 .rpc_resp = &res,
1630 };
Trond Myklebust0e574af2005-10-27 22:12:38 -04001631 nfs_fattr_init(info->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return rpc_call_sync(server->client, &msg, 0);
1633}
1634
1635static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1636 struct nfs_fsinfo *info)
1637{
1638 struct nfs4_exception exception = { };
1639 int err;
1640 do {
1641 err = nfs4_handle_exception(server,
1642 _nfs4_lookup_root(server, fhandle, info),
1643 &exception);
1644 } while (exception.retry);
1645 return err;
1646}
1647
David Howells54ceac42006-08-22 20:06:13 -04001648/*
1649 * get the file handle for the "/" directory on the server
1650 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04001652 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 int status;
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (status == 0)
1658 status = nfs4_server_capabilities(server, fhandle);
1659 if (status == 0)
1660 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08001661 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662}
1663
Manoj Naik6b97fd32006-06-09 09:34:29 -04001664/*
1665 * Get locations and (maybe) other attributes of a referral.
1666 * Note that we'll actually follow the referral later when
1667 * we detect fsid mismatch in inode revalidation
1668 */
Trond Myklebust56659e92007-07-17 21:52:39 -04001669static 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 -04001670{
1671 int status = -ENOMEM;
1672 struct page *page = NULL;
1673 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04001674
1675 page = alloc_page(GFP_KERNEL);
1676 if (page == NULL)
1677 goto out;
1678 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1679 if (locations == NULL)
1680 goto out;
1681
Trond Myklebustc228fd32007-01-13 02:28:11 -05001682 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001683 if (status != 0)
1684 goto out;
1685 /* Make sure server returned a different fsid for the referral */
1686 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07001687 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 -04001688 status = -EIO;
1689 goto out;
1690 }
1691
1692 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1693 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1694 if (!fattr->mode)
1695 fattr->mode = S_IFDIR;
1696 memset(fhandle, 0, sizeof(struct nfs_fh));
1697out:
1698 if (page)
1699 __free_page(page);
1700 if (locations)
1701 kfree(locations);
1702 return status;
1703}
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1706{
1707 struct nfs4_getattr_arg args = {
1708 .fh = fhandle,
1709 .bitmask = server->attr_bitmask,
1710 };
1711 struct nfs4_getattr_res res = {
1712 .fattr = fattr,
1713 .server = server,
1714 };
1715 struct rpc_message msg = {
1716 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1717 .rpc_argp = &args,
1718 .rpc_resp = &res,
1719 };
1720
Trond Myklebust0e574af2005-10-27 22:12:38 -04001721 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 return rpc_call_sync(server->client, &msg, 0);
1723}
1724
1725static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1726{
1727 struct nfs4_exception exception = { };
1728 int err;
1729 do {
1730 err = nfs4_handle_exception(server,
1731 _nfs4_proc_getattr(server, fhandle, fattr),
1732 &exception);
1733 } while (exception.retry);
1734 return err;
1735}
1736
1737/*
1738 * The file is not closed if it is opened due to the a request to change
1739 * the size of the file. The open call will not be needed once the
1740 * VFS layer lookup-intents are implemented.
1741 *
1742 * Close is called when the inode is destroyed.
1743 * If we haven't opened the file for O_WRONLY, we
1744 * need to in the size_change case to obtain a stateid.
1745 *
1746 * Got race?
1747 * Because OPEN is always done by name in nfsv4, it is
1748 * possible that we opened a different file by the same
1749 * name. We can recognize this race condition, but we
1750 * can't do anything about it besides returning an error.
1751 *
1752 * This will be fixed with VFS changes (lookup-intent).
1753 */
1754static int
1755nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1756 struct iattr *sattr)
1757{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001758 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001759 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05001760 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 int status;
1762
Trond Myklebust0e574af2005-10-27 22:12:38 -04001763 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Trond Myklebustd5308382005-11-04 15:33:38 -05001765 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001766 if (sattr->ia_valid & ATTR_FILE) {
1767 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001768
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001769 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11001770 if (ctx) {
1771 cred = ctx->cred;
1772 state = ctx->state;
1773 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001774 }
1775
1776 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001777 if (status == 0)
1778 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return status;
1780}
1781
Trond Myklebust56659e92007-07-17 21:52:39 -04001782static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
1783 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04001784 struct nfs_fattr *fattr)
1785{
1786 int status;
1787 struct nfs4_lookup_arg args = {
1788 .bitmask = server->attr_bitmask,
1789 .dir_fh = dirfh,
1790 .name = name,
1791 };
1792 struct nfs4_lookup_res res = {
1793 .server = server,
1794 .fattr = fattr,
1795 .fh = fhandle,
1796 };
1797 struct rpc_message msg = {
1798 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1799 .rpc_argp = &args,
1800 .rpc_resp = &res,
1801 };
1802
1803 nfs_fattr_init(fattr);
1804
1805 dprintk("NFS call lookupfh %s\n", name->name);
1806 status = rpc_call_sync(server->client, &msg, 0);
1807 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04001808 return status;
1809}
1810
1811static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1812 struct qstr *name, struct nfs_fh *fhandle,
1813 struct nfs_fattr *fattr)
1814{
1815 struct nfs4_exception exception = { };
1816 int err;
1817 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04001818 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1819 /* FIXME: !!!! */
1820 if (err == -NFS4ERR_MOVED) {
1821 err = -EREMOTE;
1822 break;
1823 }
1824 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04001825 } while (exception.retry);
1826 return err;
1827}
1828
Trond Myklebust56659e92007-07-17 21:52:39 -04001829static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1831{
Trond Myklebust4e56e082007-07-01 18:13:52 -04001832 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04001835 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001836 if (status == -NFS4ERR_MOVED)
1837 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 dprintk("NFS reply lookup: %d\n", status);
1839 return status;
1840}
1841
1842static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1843{
1844 struct nfs4_exception exception = { };
1845 int err;
1846 do {
1847 err = nfs4_handle_exception(NFS_SERVER(dir),
1848 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1849 &exception);
1850 } while (exception.retry);
1851 return err;
1852}
1853
1854static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1855{
Trond Myklebust76b32992007-08-10 17:45:11 -04001856 struct nfs_server *server = NFS_SERVER(inode);
1857 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 struct nfs4_accessargs args = {
1859 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04001860 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 };
Trond Myklebust76b32992007-08-10 17:45:11 -04001862 struct nfs4_accessres res = {
1863 .server = server,
1864 .fattr = &fattr,
1865 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 struct rpc_message msg = {
1867 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1868 .rpc_argp = &args,
1869 .rpc_resp = &res,
1870 .rpc_cred = entry->cred,
1871 };
1872 int mode = entry->mask;
1873 int status;
1874
1875 /*
1876 * Determine which access bits we want to ask for...
1877 */
1878 if (mode & MAY_READ)
1879 args.access |= NFS4_ACCESS_READ;
1880 if (S_ISDIR(inode->i_mode)) {
1881 if (mode & MAY_WRITE)
1882 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1883 if (mode & MAY_EXEC)
1884 args.access |= NFS4_ACCESS_LOOKUP;
1885 } else {
1886 if (mode & MAY_WRITE)
1887 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1888 if (mode & MAY_EXEC)
1889 args.access |= NFS4_ACCESS_EXECUTE;
1890 }
Trond Myklebust76b32992007-08-10 17:45:11 -04001891 nfs_fattr_init(&fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1893 if (!status) {
1894 entry->mask = 0;
1895 if (res.access & NFS4_ACCESS_READ)
1896 entry->mask |= MAY_READ;
1897 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1898 entry->mask |= MAY_WRITE;
1899 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1900 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04001901 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
1903 return status;
1904}
1905
1906static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1907{
1908 struct nfs4_exception exception = { };
1909 int err;
1910 do {
1911 err = nfs4_handle_exception(NFS_SERVER(inode),
1912 _nfs4_proc_access(inode, entry),
1913 &exception);
1914 } while (exception.retry);
1915 return err;
1916}
1917
1918/*
1919 * TODO: For the time being, we don't try to get any attributes
1920 * along with any of the zero-copy operations READ, READDIR,
1921 * READLINK, WRITE.
1922 *
1923 * In the case of the first three, we want to put the GETATTR
1924 * after the read-type operation -- this is because it is hard
1925 * to predict the length of a GETATTR response in v4, and thus
1926 * align the READ data correctly. This means that the GETATTR
1927 * may end up partially falling into the page cache, and we should
1928 * shift it into the 'tail' of the xdr_buf before processing.
1929 * To do this efficiently, we need to know the total length
1930 * of data received, which doesn't seem to be available outside
1931 * of the RPC layer.
1932 *
1933 * In the case of WRITE, we also want to put the GETATTR after
1934 * the operation -- in this case because we want to make sure
1935 * we get the post-operation mtime and size. This means that
1936 * we can't use xdr_encode_pages() as written: we need a variant
1937 * of it which would leave room in the 'tail' iovec.
1938 *
1939 * Both of these changes to the XDR layer would in fact be quite
1940 * minor, but I decided to leave them for a subsequent patch.
1941 */
1942static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1943 unsigned int pgbase, unsigned int pglen)
1944{
1945 struct nfs4_readlink args = {
1946 .fh = NFS_FH(inode),
1947 .pgbase = pgbase,
1948 .pglen = pglen,
1949 .pages = &page,
1950 };
1951 struct rpc_message msg = {
1952 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1953 .rpc_argp = &args,
1954 .rpc_resp = NULL,
1955 };
1956
1957 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1958}
1959
1960static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1961 unsigned int pgbase, unsigned int pglen)
1962{
1963 struct nfs4_exception exception = { };
1964 int err;
1965 do {
1966 err = nfs4_handle_exception(NFS_SERVER(inode),
1967 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1968 &exception);
1969 } while (exception.retry);
1970 return err;
1971}
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973/*
1974 * Got race?
1975 * We will need to arrange for the VFS layer to provide an atomic open.
1976 * Until then, this create/open method is prone to inefficiency and race
1977 * conditions due to the lookup, create, and open VFS calls from sys_open()
1978 * placed on the wire.
1979 *
1980 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1981 * The file will be opened again in the subsequent VFS open call
1982 * (nfs4_proc_file_open).
1983 *
1984 * The open for read will just hang around to be used by any process that
1985 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1986 */
1987
1988static int
1989nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07001990 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
Trond Myklebustad389da2007-06-05 12:30:00 -04001992 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001993 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001994 .dentry = dentry,
1995 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 struct nfs4_state *state;
1997 struct rpc_cred *cred;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001998 fmode_t fmode = flags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 int status = 0;
2000
Trond Myklebust98a8e322008-03-12 12:25:28 -04002001 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (IS_ERR(cred)) {
2003 status = PTR_ERR(cred);
2004 goto out;
2005 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002006 state = nfs4_do_open(dir, &path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002007 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (IS_ERR(state)) {
2009 status = PTR_ERR(state);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002010 goto out_putcred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002012 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002013 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (flags & O_EXCL) {
2015 struct nfs_fattr fattr;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002016 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002017 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04002018 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002019 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002020 }
Trond Myklebustad389da2007-06-05 12:30:00 -04002021 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002022 status = nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002023 else
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002024 nfs4_close_sync(&path, state, fmode);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002025out_putcred:
2026 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027out:
2028 return status;
2029}
2030
2031static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2032{
Trond Myklebust16e42952005-10-27 22:12:44 -04002033 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002034 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002036 .name.len = name->len,
2037 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002038 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002040 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002041 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002042 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002044 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2045 .rpc_argp = &args,
2046 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 };
2048 int status;
2049
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002050 nfs_fattr_init(&res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002051 status = rpc_call_sync(server->client, &msg, 0);
2052 if (status == 0) {
2053 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002054 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return status;
2057}
2058
2059static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2060{
2061 struct nfs4_exception exception = { };
2062 int err;
2063 do {
2064 err = nfs4_handle_exception(NFS_SERVER(dir),
2065 _nfs4_proc_remove(dir, name),
2066 &exception);
2067 } while (exception.retry);
2068 return err;
2069}
2070
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002071static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002073 struct nfs_server *server = NFS_SERVER(dir);
2074 struct nfs_removeargs *args = msg->rpc_argp;
2075 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Trond Myklebusta65318b2009-03-11 14:10:28 -04002077 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002078 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002082static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002084 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2085
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002086 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002087 return 0;
2088 update_changeattr(dir, &res->cinfo);
2089 nfs_post_op_update_inode(dir, &res->dir_attr);
2090 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
2093static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2094 struct inode *new_dir, struct qstr *new_name)
2095{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002096 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 struct nfs4_rename_arg arg = {
2098 .old_dir = NFS_FH(old_dir),
2099 .new_dir = NFS_FH(new_dir),
2100 .old_name = old_name,
2101 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002102 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002104 struct nfs_fattr old_fattr, new_fattr;
2105 struct nfs4_rename_res res = {
2106 .server = server,
2107 .old_fattr = &old_fattr,
2108 .new_fattr = &new_fattr,
2109 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 struct rpc_message msg = {
2111 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2112 .rpc_argp = &arg,
2113 .rpc_resp = &res,
2114 };
2115 int status;
2116
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002117 nfs_fattr_init(res.old_fattr);
2118 nfs_fattr_init(res.new_fattr);
2119 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 if (!status) {
2122 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002123 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002125 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
2127 return status;
2128}
2129
2130static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2131 struct inode *new_dir, struct qstr *new_name)
2132{
2133 struct nfs4_exception exception = { };
2134 int err;
2135 do {
2136 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2137 _nfs4_proc_rename(old_dir, old_name,
2138 new_dir, new_name),
2139 &exception);
2140 } while (exception.retry);
2141 return err;
2142}
2143
2144static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2145{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002146 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 struct nfs4_link_arg arg = {
2148 .fh = NFS_FH(inode),
2149 .dir_fh = NFS_FH(dir),
2150 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002151 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002153 struct nfs_fattr fattr, dir_attr;
2154 struct nfs4_link_res res = {
2155 .server = server,
2156 .fattr = &fattr,
2157 .dir_attr = &dir_attr,
2158 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 struct rpc_message msg = {
2160 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2161 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002162 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 };
2164 int status;
2165
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002166 nfs_fattr_init(res.fattr);
2167 nfs_fattr_init(res.dir_attr);
2168 status = rpc_call_sync(server->client, &msg, 0);
2169 if (!status) {
2170 update_changeattr(dir, &res.cinfo);
2171 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002172 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 return status;
2176}
2177
2178static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2179{
2180 struct nfs4_exception exception = { };
2181 int err;
2182 do {
2183 err = nfs4_handle_exception(NFS_SERVER(inode),
2184 _nfs4_proc_link(inode, dir, name),
2185 &exception);
2186 } while (exception.retry);
2187 return err;
2188}
2189
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002190struct nfs4_createdata {
2191 struct rpc_message msg;
2192 struct nfs4_create_arg arg;
2193 struct nfs4_create_res res;
2194 struct nfs_fh fh;
2195 struct nfs_fattr fattr;
2196 struct nfs_fattr dir_fattr;
2197};
2198
2199static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2200 struct qstr *name, struct iattr *sattr, u32 ftype)
2201{
2202 struct nfs4_createdata *data;
2203
2204 data = kzalloc(sizeof(*data), GFP_KERNEL);
2205 if (data != NULL) {
2206 struct nfs_server *server = NFS_SERVER(dir);
2207
2208 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2209 data->msg.rpc_argp = &data->arg;
2210 data->msg.rpc_resp = &data->res;
2211 data->arg.dir_fh = NFS_FH(dir);
2212 data->arg.server = server;
2213 data->arg.name = name;
2214 data->arg.attrs = sattr;
2215 data->arg.ftype = ftype;
2216 data->arg.bitmask = server->attr_bitmask;
2217 data->res.server = server;
2218 data->res.fh = &data->fh;
2219 data->res.fattr = &data->fattr;
2220 data->res.dir_fattr = &data->dir_fattr;
2221 nfs_fattr_init(data->res.fattr);
2222 nfs_fattr_init(data->res.dir_fattr);
2223 }
2224 return data;
2225}
2226
2227static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2228{
2229 int status = rpc_call_sync(NFS_CLIENT(dir), &data->msg, 0);
2230 if (status == 0) {
2231 update_changeattr(dir, &data->res.dir_cinfo);
2232 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2233 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2234 }
2235 return status;
2236}
2237
2238static void nfs4_free_createdata(struct nfs4_createdata *data)
2239{
2240 kfree(data);
2241}
2242
Chuck Lever4f390c12006-08-22 20:06:22 -04002243static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002244 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002246 struct nfs4_createdata *data;
2247 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Chuck Lever94a6d752006-08-22 20:06:23 -04002249 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002250 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002251
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002252 status = -ENOMEM;
2253 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2254 if (data == NULL)
2255 goto out;
2256
2257 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2258 data->arg.u.symlink.pages = &page;
2259 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002261 status = nfs4_do_create(dir, dentry, data);
2262
2263 nfs4_free_createdata(data);
2264out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return status;
2266}
2267
Chuck Lever4f390c12006-08-22 20:06:22 -04002268static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002269 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
2271 struct nfs4_exception exception = { };
2272 int err;
2273 do {
2274 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002275 _nfs4_proc_symlink(dir, dentry, page,
2276 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 &exception);
2278 } while (exception.retry);
2279 return err;
2280}
2281
2282static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2283 struct iattr *sattr)
2284{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002285 struct nfs4_createdata *data;
2286 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002288 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2289 if (data == NULL)
2290 goto out;
2291
2292 status = nfs4_do_create(dir, dentry, data);
2293
2294 nfs4_free_createdata(data);
2295out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 return status;
2297}
2298
2299static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2300 struct iattr *sattr)
2301{
2302 struct nfs4_exception exception = { };
2303 int err;
2304 do {
2305 err = nfs4_handle_exception(NFS_SERVER(dir),
2306 _nfs4_proc_mkdir(dir, dentry, sattr),
2307 &exception);
2308 } while (exception.retry);
2309 return err;
2310}
2311
2312static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2313 u64 cookie, struct page *page, unsigned int count, int plus)
2314{
2315 struct inode *dir = dentry->d_inode;
2316 struct nfs4_readdir_arg args = {
2317 .fh = NFS_FH(dir),
2318 .pages = &page,
2319 .pgbase = 0,
2320 .count = count,
Trond Myklebusta65318b2009-03-11 14:10:28 -04002321 .bitmask = NFS_SERVER(dentry->d_inode)->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 };
2323 struct nfs4_readdir_res res;
2324 struct rpc_message msg = {
2325 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2326 .rpc_argp = &args,
2327 .rpc_resp = &res,
2328 .rpc_cred = cred,
2329 };
2330 int status;
2331
Harvey Harrison3110ff82008-05-02 13:42:44 -07002332 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002333 dentry->d_parent->d_name.name,
2334 dentry->d_name.name,
2335 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2337 res.pgbase = args.pgbase;
2338 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2339 if (status == 0)
2340 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002341
2342 nfs_invalidate_atime(dir);
2343
Harvey Harrison3110ff82008-05-02 13:42:44 -07002344 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 return status;
2346}
2347
2348static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2349 u64 cookie, struct page *page, unsigned int count, int plus)
2350{
2351 struct nfs4_exception exception = { };
2352 int err;
2353 do {
2354 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2355 _nfs4_proc_readdir(dentry, cred, cookie,
2356 page, count, plus),
2357 &exception);
2358 } while (exception.retry);
2359 return err;
2360}
2361
2362static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2363 struct iattr *sattr, dev_t rdev)
2364{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002365 struct nfs4_createdata *data;
2366 int mode = sattr->ia_mode;
2367 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2370 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002371
2372 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2373 if (data == NULL)
2374 goto out;
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002377 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002379 data->arg.ftype = NF4BLK;
2380 data->arg.u.device.specdata1 = MAJOR(rdev);
2381 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 }
2383 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002384 data->arg.ftype = NF4CHR;
2385 data->arg.u.device.specdata1 = MAJOR(rdev);
2386 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002389 status = nfs4_do_create(dir, dentry, data);
2390
2391 nfs4_free_createdata(data);
2392out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return status;
2394}
2395
2396static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2397 struct iattr *sattr, dev_t rdev)
2398{
2399 struct nfs4_exception exception = { };
2400 int err;
2401 do {
2402 err = nfs4_handle_exception(NFS_SERVER(dir),
2403 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2404 &exception);
2405 } while (exception.retry);
2406 return err;
2407}
2408
2409static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2410 struct nfs_fsstat *fsstat)
2411{
2412 struct nfs4_statfs_arg args = {
2413 .fh = fhandle,
2414 .bitmask = server->attr_bitmask,
2415 };
2416 struct rpc_message msg = {
2417 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2418 .rpc_argp = &args,
2419 .rpc_resp = fsstat,
2420 };
2421
Trond Myklebust0e574af2005-10-27 22:12:38 -04002422 nfs_fattr_init(fsstat->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return rpc_call_sync(server->client, &msg, 0);
2424}
2425
2426static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2427{
2428 struct nfs4_exception exception = { };
2429 int err;
2430 do {
2431 err = nfs4_handle_exception(server,
2432 _nfs4_proc_statfs(server, fhandle, fsstat),
2433 &exception);
2434 } while (exception.retry);
2435 return err;
2436}
2437
2438static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2439 struct nfs_fsinfo *fsinfo)
2440{
2441 struct nfs4_fsinfo_arg args = {
2442 .fh = fhandle,
2443 .bitmask = server->attr_bitmask,
2444 };
2445 struct rpc_message msg = {
2446 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2447 .rpc_argp = &args,
2448 .rpc_resp = fsinfo,
2449 };
2450
2451 return rpc_call_sync(server->client, &msg, 0);
2452}
2453
2454static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2455{
2456 struct nfs4_exception exception = { };
2457 int err;
2458
2459 do {
2460 err = nfs4_handle_exception(server,
2461 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2462 &exception);
2463 } while (exception.retry);
2464 return err;
2465}
2466
2467static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2468{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002469 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2471}
2472
2473static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2474 struct nfs_pathconf *pathconf)
2475{
2476 struct nfs4_pathconf_arg args = {
2477 .fh = fhandle,
2478 .bitmask = server->attr_bitmask,
2479 };
2480 struct rpc_message msg = {
2481 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2482 .rpc_argp = &args,
2483 .rpc_resp = pathconf,
2484 };
2485
2486 /* None of the pathconf attributes are mandatory to implement */
2487 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2488 memset(pathconf, 0, sizeof(*pathconf));
2489 return 0;
2490 }
2491
Trond Myklebust0e574af2005-10-27 22:12:38 -04002492 nfs_fattr_init(pathconf->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return rpc_call_sync(server->client, &msg, 0);
2494}
2495
2496static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2497 struct nfs_pathconf *pathconf)
2498{
2499 struct nfs4_exception exception = { };
2500 int err;
2501
2502 do {
2503 err = nfs4_handle_exception(server,
2504 _nfs4_proc_pathconf(server, fhandle, pathconf),
2505 &exception);
2506 } while (exception.retry);
2507 return err;
2508}
2509
Trond Myklebustec06c092006-03-20 13:44:27 -05002510static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Trond Myklebustec06c092006-03-20 13:44:27 -05002512 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002514 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002516 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002518
2519 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002521 renew_lease(server, data->timestamp);
2522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523}
2524
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002525static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002528 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529}
2530
Trond Myklebust788e7a82006-03-20 13:44:27 -05002531static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 struct inode *inode = data->inode;
2534
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002535 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002537 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002539 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04002541 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002542 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002543 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002546static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002548 struct nfs_server *server = NFS_SERVER(data->inode);
2549
Trond Myklebusta65318b2009-03-11 14:10:28 -04002550 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002551 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 data->timestamp = jiffies;
2553
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002554 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555}
2556
Trond Myklebust788e7a82006-03-20 13:44:27 -05002557static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 struct inode *inode = data->inode;
2560
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002561 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002563 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04002565 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
2568
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002569static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570{
Trond Myklebust788e7a82006-03-20 13:44:27 -05002571 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Trond Myklebusta65318b2009-03-11 14:10:28 -04002573 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002574 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002575 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576}
2577
2578/*
2579 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2580 * standalone procedure for queueing an asynchronous RENEW.
2581 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002582static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583{
David Howellsadfa6f92006-08-22 20:06:08 -04002584 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002585 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
2587 if (task->tk_status < 0) {
2588 switch (task->tk_status) {
2589 case -NFS4ERR_STALE_CLIENTID:
2590 case -NFS4ERR_EXPIRED:
2591 case -NFS4ERR_CB_PATH_DOWN:
2592 nfs4_schedule_state_recovery(clp);
2593 }
2594 return;
2595 }
2596 spin_lock(&clp->cl_lock);
2597 if (time_before(clp->cl_last_renewal,timestamp))
2598 clp->cl_last_renewal = timestamp;
2599 spin_unlock(&clp->cl_lock);
2600}
2601
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002602static const struct rpc_call_ops nfs4_renew_ops = {
2603 .rpc_call_done = nfs4_renew_done,
2604};
2605
David Howellsadfa6f92006-08-22 20:06:08 -04002606int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607{
2608 struct rpc_message msg = {
2609 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2610 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002611 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 };
2613
2614 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002615 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
David Howellsadfa6f92006-08-22 20:06:08 -04002618int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
2620 struct rpc_message msg = {
2621 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2622 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002623 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 };
2625 unsigned long now = jiffies;
2626 int status;
2627
2628 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2629 if (status < 0)
2630 return status;
2631 spin_lock(&clp->cl_lock);
2632 if (time_before(clp->cl_last_renewal,now))
2633 clp->cl_last_renewal = now;
2634 spin_unlock(&clp->cl_lock);
2635 return 0;
2636}
2637
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002638static inline int nfs4_server_supports_acls(struct nfs_server *server)
2639{
2640 return (server->caps & NFS_CAP_ACLS)
2641 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2642 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2643}
2644
2645/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2646 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2647 * the stack.
2648 */
2649#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2650
2651static void buf_to_pages(const void *buf, size_t buflen,
2652 struct page **pages, unsigned int *pgbase)
2653{
2654 const void *p = buf;
2655
2656 *pgbase = offset_in_page(buf);
2657 p -= *pgbase;
2658 while (p < buf + buflen) {
2659 *(pages++) = virt_to_page(p);
2660 p += PAGE_CACHE_SIZE;
2661 }
2662}
2663
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002664struct nfs4_cached_acl {
2665 int cached;
2666 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002667 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002668};
2669
2670static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002671{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002672 struct nfs_inode *nfsi = NFS_I(inode);
2673
2674 spin_lock(&inode->i_lock);
2675 kfree(nfsi->nfs4_acl);
2676 nfsi->nfs4_acl = acl;
2677 spin_unlock(&inode->i_lock);
2678}
2679
2680static void nfs4_zap_acl_attr(struct inode *inode)
2681{
2682 nfs4_set_cached_acl(inode, NULL);
2683}
2684
2685static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2686{
2687 struct nfs_inode *nfsi = NFS_I(inode);
2688 struct nfs4_cached_acl *acl;
2689 int ret = -ENOENT;
2690
2691 spin_lock(&inode->i_lock);
2692 acl = nfsi->nfs4_acl;
2693 if (acl == NULL)
2694 goto out;
2695 if (buf == NULL) /* user is just asking for length */
2696 goto out_len;
2697 if (acl->cached == 0)
2698 goto out;
2699 ret = -ERANGE; /* see getxattr(2) man page */
2700 if (acl->len > buflen)
2701 goto out;
2702 memcpy(buf, acl->data, acl->len);
2703out_len:
2704 ret = acl->len;
2705out:
2706 spin_unlock(&inode->i_lock);
2707 return ret;
2708}
2709
2710static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2711{
2712 struct nfs4_cached_acl *acl;
2713
2714 if (buf && acl_len <= PAGE_SIZE) {
2715 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2716 if (acl == NULL)
2717 goto out;
2718 acl->cached = 1;
2719 memcpy(acl->data, buf, acl_len);
2720 } else {
2721 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2722 if (acl == NULL)
2723 goto out;
2724 acl->cached = 0;
2725 }
2726 acl->len = acl_len;
2727out:
2728 nfs4_set_cached_acl(inode, acl);
2729}
2730
Trond Myklebust16b42892006-08-24 12:27:15 -04002731static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002732{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002733 struct page *pages[NFS4ACL_MAXPAGES];
2734 struct nfs_getaclargs args = {
2735 .fh = NFS_FH(inode),
2736 .acl_pages = pages,
2737 .acl_len = buflen,
2738 };
2739 size_t resp_len = buflen;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002740 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002741 struct rpc_message msg = {
2742 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2743 .rpc_argp = &args,
2744 .rpc_resp = &resp_len,
2745 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002746 struct page *localpage = NULL;
2747 int ret;
2748
2749 if (buflen < PAGE_SIZE) {
2750 /* As long as we're doing a round trip to the server anyway,
2751 * let's be prepared for a page of acl data. */
2752 localpage = alloc_page(GFP_KERNEL);
2753 resp_buf = page_address(localpage);
2754 if (localpage == NULL)
2755 return -ENOMEM;
2756 args.acl_pages[0] = localpage;
2757 args.acl_pgbase = 0;
J. Bruce Fields1d95db82005-10-13 16:54:32 -04002758 resp_len = args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002759 } else {
2760 resp_buf = buf;
2761 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2762 }
2763 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2764 if (ret)
2765 goto out_free;
2766 if (resp_len > args.acl_len)
2767 nfs4_write_cached_acl(inode, NULL, resp_len);
2768 else
2769 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2770 if (buf) {
2771 ret = -ERANGE;
2772 if (resp_len > buflen)
2773 goto out_free;
2774 if (localpage)
2775 memcpy(buf, resp_buf, resp_len);
2776 }
2777 ret = resp_len;
2778out_free:
2779 if (localpage)
2780 __free_page(localpage);
2781 return ret;
2782}
2783
Trond Myklebust16b42892006-08-24 12:27:15 -04002784static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2785{
2786 struct nfs4_exception exception = { };
2787 ssize_t ret;
2788 do {
2789 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2790 if (ret >= 0)
2791 break;
2792 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2793 } while (exception.retry);
2794 return ret;
2795}
2796
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002797static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2798{
2799 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002800 int ret;
2801
2802 if (!nfs4_server_supports_acls(server))
2803 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002804 ret = nfs_revalidate_inode(server, inode);
2805 if (ret < 0)
2806 return ret;
Trond Myklebustf41f7412008-06-11 17:39:04 -04002807 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
2808 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002809 ret = nfs4_read_cached_acl(inode, buf, buflen);
2810 if (ret != -ENOENT)
2811 return ret;
2812 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002813}
2814
Trond Myklebust16b42892006-08-24 12:27:15 -04002815static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002816{
2817 struct nfs_server *server = NFS_SERVER(inode);
2818 struct page *pages[NFS4ACL_MAXPAGES];
2819 struct nfs_setaclargs arg = {
2820 .fh = NFS_FH(inode),
2821 .acl_pages = pages,
2822 .acl_len = buflen,
2823 };
2824 struct rpc_message msg = {
2825 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2826 .rpc_argp = &arg,
2827 .rpc_resp = NULL,
2828 };
2829 int ret;
2830
2831 if (!nfs4_server_supports_acls(server))
2832 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002833 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002834 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
David Howells1f163412006-08-22 20:06:11 -04002835 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebustf41f7412008-06-11 17:39:04 -04002836 nfs_access_zap_cache(inode);
2837 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002838 return ret;
2839}
2840
Trond Myklebust16b42892006-08-24 12:27:15 -04002841static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2842{
2843 struct nfs4_exception exception = { };
2844 int err;
2845 do {
2846 err = nfs4_handle_exception(NFS_SERVER(inode),
2847 __nfs4_proc_set_acl(inode, buf, buflen),
2848 &exception);
2849 } while (exception.retry);
2850 return err;
2851}
2852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853static int
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002854nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855{
David Howells7539bba2006-08-22 20:06:09 -04002856 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858 if (!clp || task->tk_status >= 0)
2859 return 0;
2860 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002861 case -NFS4ERR_ADMIN_REVOKED:
2862 case -NFS4ERR_BAD_STATEID:
2863 case -NFS4ERR_OPENMODE:
2864 if (state == NULL)
2865 break;
2866 nfs4_state_mark_reclaim_nograce(clp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 case -NFS4ERR_STALE_CLIENTID:
2868 case -NFS4ERR_STALE_STATEID:
2869 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05002870 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 nfs4_schedule_state_recovery(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05002872 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05002873 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 task->tk_status = 0;
2875 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 case -NFS4ERR_DELAY:
Trond Myklebust2e96d282008-06-11 16:42:05 -04002877 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05002878 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2880 task->tk_status = 0;
2881 return -EAGAIN;
2882 case -NFS4ERR_OLD_STATEID:
2883 task->tk_status = 0;
2884 return -EAGAIN;
2885 }
2886 task->tk_status = nfs4_map_errors(task->tk_status);
2887 return 0;
2888}
2889
David Howellsadfa6f92006-08-22 20:06:08 -04002890int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
2892 nfs4_verifier sc_verifier;
2893 struct nfs4_setclientid setclientid = {
2894 .sc_verifier = &sc_verifier,
2895 .sc_prog = program,
2896 };
2897 struct rpc_message msg = {
2898 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2899 .rpc_argp = &setclientid,
2900 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002901 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 };
Al Virobc4785c2006-10-19 23:28:51 -07002903 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 int loop = 0;
2905 int status;
2906
Al Virobc4785c2006-10-19 23:28:51 -07002907 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2909 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2910
2911 for(;;) {
2912 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05002913 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05002914 clp->cl_ipaddr,
2915 rpc_peeraddr2str(clp->cl_rpcclient,
2916 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05002917 rpc_peeraddr2str(clp->cl_rpcclient,
2918 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04002919 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 clp->cl_id_uniquifier);
2921 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002922 sizeof(setclientid.sc_netid),
2923 rpc_peeraddr2str(clp->cl_rpcclient,
2924 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05002926 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 clp->cl_ipaddr, port >> 8, port & 255);
2928
2929 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2930 if (status != -NFS4ERR_CLID_INUSE)
2931 break;
2932 if (signalled())
2933 break;
2934 if (loop++ & 1)
2935 ssleep(clp->cl_lease_time + 1);
2936 else
2937 if (++clp->cl_id_uniquifier == 0)
2938 break;
2939 }
2940 return status;
2941}
2942
David Howellsadfa6f92006-08-22 20:06:08 -04002943static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944{
2945 struct nfs_fsinfo fsinfo;
2946 struct rpc_message msg = {
2947 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2948 .rpc_argp = clp,
2949 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002950 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 };
2952 unsigned long now;
2953 int status;
2954
2955 now = jiffies;
2956 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2957 if (status == 0) {
2958 spin_lock(&clp->cl_lock);
2959 clp->cl_lease_time = fsinfo.lease_time * HZ;
2960 clp->cl_last_renewal = now;
2961 spin_unlock(&clp->cl_lock);
2962 }
2963 return status;
2964}
2965
David Howellsadfa6f92006-08-22 20:06:08 -04002966int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05002967{
Benny Halevy77e03672008-06-24 20:25:57 +03002968 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05002969 int err;
2970 do {
2971 err = _nfs4_proc_setclientid_confirm(clp, cred);
2972 switch (err) {
2973 case 0:
2974 return err;
2975 case -NFS4ERR_RESOURCE:
2976 /* The IBM lawyers misread another document! */
2977 case -NFS4ERR_DELAY:
2978 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2979 }
2980 } while (err == 0);
2981 return err;
2982}
2983
Trond Myklebustfe650402006-01-03 09:55:18 +01002984struct nfs4_delegreturndata {
2985 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002986 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01002987 struct nfs_fh fh;
2988 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002989 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002990 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01002991 int rpc_status;
2992};
2993
Trond Myklebustfe650402006-01-03 09:55:18 +01002994static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2995{
2996 struct nfs4_delegreturndata *data = calldata;
2997 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002998 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01002999 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01003000}
3001
3002static void nfs4_delegreturn_release(void *calldata)
3003{
Trond Myklebustfe650402006-01-03 09:55:18 +01003004 kfree(calldata);
3005}
3006
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003007static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01003008 .rpc_call_done = nfs4_delegreturn_done,
3009 .rpc_release = nfs4_delegreturn_release,
3010};
3011
Trond Myklebuste6f81072008-01-24 18:14:34 -05003012static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003013{
3014 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003015 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003016 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003017 struct rpc_message msg = {
3018 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3019 .rpc_cred = cred,
3020 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003021 struct rpc_task_setup task_setup_data = {
3022 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003023 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003024 .callback_ops = &nfs4_delegreturn_ops,
3025 .flags = RPC_TASK_ASYNC,
3026 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003027 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003028
3029 data = kmalloc(sizeof(*data), GFP_KERNEL);
3030 if (data == NULL)
3031 return -ENOMEM;
3032 data->args.fhandle = &data->fh;
3033 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003034 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003035 nfs_copy_fh(&data->fh, NFS_FH(inode));
3036 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003037 data->res.fattr = &data->fattr;
3038 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003039 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003040 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003041 data->rpc_status = 0;
3042
Trond Myklebustc970aa82007-07-14 15:39:59 -04003043 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003044 msg.rpc_argp = &data->args,
3045 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003046 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003047 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003048 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003049 if (!issync)
3050 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003051 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003052 if (status != 0)
3053 goto out;
3054 status = data->rpc_status;
3055 if (status != 0)
3056 goto out;
3057 nfs_refresh_inode(inode, &data->fattr);
3058out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003059 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003060 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061}
3062
Trond Myklebuste6f81072008-01-24 18:14:34 -05003063int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064{
3065 struct nfs_server *server = NFS_SERVER(inode);
3066 struct nfs4_exception exception = { };
3067 int err;
3068 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003069 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 switch (err) {
3071 case -NFS4ERR_STALE_STATEID:
3072 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 case 0:
3074 return 0;
3075 }
3076 err = nfs4_handle_exception(server, err, &exception);
3077 } while (exception.retry);
3078 return err;
3079}
3080
3081#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3082#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3083
3084/*
3085 * sleep, with exponential backoff, and retry the LOCK operation.
3086 */
3087static unsigned long
3088nfs4_set_lock_task_retry(unsigned long timeout)
3089{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003090 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 timeout <<= 1;
3092 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3093 return NFS4_LOCK_MAXTIMEOUT;
3094 return timeout;
3095}
3096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3098{
3099 struct inode *inode = state->inode;
3100 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003101 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003102 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003104 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003106 struct nfs_lockt_res res = {
3107 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 };
3109 struct rpc_message msg = {
3110 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3111 .rpc_argp = &arg,
3112 .rpc_resp = &res,
3113 .rpc_cred = state->owner->so_cred,
3114 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 struct nfs4_lock_state *lsp;
3116 int status;
3117
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003118 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003119 status = nfs4_set_lock_state(state, request);
3120 if (status != 0)
3121 goto out;
3122 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003123 arg.lock_owner.id = lsp->ls_id.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003125 switch (status) {
3126 case 0:
3127 request->fl_type = F_UNLCK;
3128 break;
3129 case -NFS4ERR_DENIED:
3130 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003132 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003133out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 return status;
3135}
3136
3137static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3138{
3139 struct nfs4_exception exception = { };
3140 int err;
3141
3142 do {
3143 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3144 _nfs4_proc_getlk(state, cmd, request),
3145 &exception);
3146 } while (exception.retry);
3147 return err;
3148}
3149
3150static int do_vfs_lock(struct file *file, struct file_lock *fl)
3151{
3152 int res = 0;
3153 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3154 case FL_POSIX:
3155 res = posix_lock_file_wait(file, fl);
3156 break;
3157 case FL_FLOCK:
3158 res = flock_lock_file_wait(file, fl);
3159 break;
3160 default:
3161 BUG();
3162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 return res;
3164}
3165
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003166struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003167 struct nfs_locku_args arg;
3168 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003169 struct nfs4_lock_state *lsp;
3170 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003171 struct file_lock fl;
3172 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003173 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003174};
3175
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003176static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3177 struct nfs_open_context *ctx,
3178 struct nfs4_lock_state *lsp,
3179 struct nfs_seqid *seqid)
3180{
3181 struct nfs4_unlockdata *p;
3182 struct inode *inode = lsp->ls_state->inode;
3183
3184 p = kmalloc(sizeof(*p), GFP_KERNEL);
3185 if (p == NULL)
3186 return NULL;
3187 p->arg.fh = NFS_FH(inode);
3188 p->arg.fl = &p->fl;
3189 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003190 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003191 p->arg.stateid = &lsp->ls_stateid;
3192 p->lsp = lsp;
3193 atomic_inc(&lsp->ls_count);
3194 /* Ensure we don't close file until we're done freeing locks! */
3195 p->ctx = get_nfs_open_context(ctx);
3196 memcpy(&p->fl, fl, sizeof(p->fl));
3197 p->server = NFS_SERVER(inode);
3198 return p;
3199}
3200
Trond Myklebust06f814a2006-01-03 09:55:07 +01003201static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003202{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003203 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003204 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003205 nfs4_put_lock_state(calldata->lsp);
3206 put_nfs_open_context(calldata->ctx);
3207 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003208}
3209
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003210static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003211{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003212 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003213
Trond Myklebust06f814a2006-01-03 09:55:07 +01003214 if (RPC_ASSASSINATED(task))
3215 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003216 switch (task->tk_status) {
3217 case 0:
3218 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003219 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003220 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003221 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003222 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003223 case -NFS4ERR_BAD_STATEID:
3224 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003225 case -NFS4ERR_STALE_STATEID:
3226 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003227 break;
3228 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003229 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003230 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003231 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003232}
3233
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003234static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003235{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003236 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003238 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003239 return;
3240 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003241 /* Note: exit _without_ running nfs4_locku_done */
3242 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003243 return;
3244 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003245 calldata->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003246 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247}
3248
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003249static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003250 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003251 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003252 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003253};
3254
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003255static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3256 struct nfs_open_context *ctx,
3257 struct nfs4_lock_state *lsp,
3258 struct nfs_seqid *seqid)
3259{
3260 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003261 struct rpc_message msg = {
3262 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3263 .rpc_cred = ctx->cred,
3264 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003265 struct rpc_task_setup task_setup_data = {
3266 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003267 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003268 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003269 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003270 .flags = RPC_TASK_ASYNC,
3271 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003272
Frank Filz137d6ac2007-07-09 15:32:29 -07003273 /* Ensure this is an unlock - when canceling a lock, the
3274 * canceled lock is passed in, and it won't be an unlock.
3275 */
3276 fl->fl_type = F_UNLCK;
3277
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003278 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3279 if (data == NULL) {
3280 nfs_free_seqid(seqid);
3281 return ERR_PTR(-ENOMEM);
3282 }
3283
Trond Myklebust5138fde2007-07-14 15:40:01 -04003284 msg.rpc_argp = &data->arg,
3285 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003286 task_setup_data.callback_data = data;
3287 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003288}
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3291{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003292 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003293 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003294 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003295 struct rpc_task *task;
3296 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003297 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Trond Myklebust9b073572006-06-29 16:38:34 -04003299 status = nfs4_set_lock_state(state, request);
3300 /* Unlock _before_ we do the RPC call */
3301 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003302 down_read(&nfsi->rwsem);
3303 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3304 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003305 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003306 }
3307 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003308 if (status != 0)
3309 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003310 /* Is this a delegated lock? */
3311 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003312 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003313 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003314 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003315 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003316 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003317 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003318 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003319 status = PTR_ERR(task);
3320 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003321 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003322 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003323 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003324out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003325 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003326 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327}
3328
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003329struct nfs4_lockdata {
3330 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003331 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003332 struct nfs4_lock_state *lsp;
3333 struct nfs_open_context *ctx;
3334 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003335 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003336 int rpc_status;
3337 int cancelled;
3338};
3339
3340static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3341 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3342{
3343 struct nfs4_lockdata *p;
3344 struct inode *inode = lsp->ls_state->inode;
3345 struct nfs_server *server = NFS_SERVER(inode);
3346
3347 p = kzalloc(sizeof(*p), GFP_KERNEL);
3348 if (p == NULL)
3349 return NULL;
3350
3351 p->arg.fh = NFS_FH(inode);
3352 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003353 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3354 if (p->arg.open_seqid == NULL)
3355 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003356 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3357 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003358 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003359 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003360 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003361 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003362 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003363 p->lsp = lsp;
3364 atomic_inc(&lsp->ls_count);
3365 p->ctx = get_nfs_open_context(ctx);
3366 memcpy(&p->fl, fl, sizeof(p->fl));
3367 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003368out_free_seqid:
3369 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003370out_free:
3371 kfree(p);
3372 return NULL;
3373}
3374
3375static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3376{
3377 struct nfs4_lockdata *data = calldata;
3378 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Harvey Harrison3110ff82008-05-02 13:42:44 -07003380 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003381 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3382 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003383 /* Do we need to do an open_to_lock_owner? */
3384 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003385 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3386 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003387 data->arg.open_stateid = &state->stateid;
3388 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003389 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003390 } else
3391 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003392 data->timestamp = jiffies;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003393 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003394 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003395}
3396
3397static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3398{
3399 struct nfs4_lockdata *data = calldata;
3400
Harvey Harrison3110ff82008-05-02 13:42:44 -07003401 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003402
3403 data->rpc_status = task->tk_status;
3404 if (RPC_ASSASSINATED(task))
3405 goto out;
3406 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003407 if (data->rpc_status == 0)
3408 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3409 else
3410 goto out;
3411 }
3412 if (data->rpc_status == 0) {
3413 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3414 sizeof(data->lsp->ls_stateid.data));
3415 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003416 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003417 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003418out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003419 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003420}
3421
3422static void nfs4_lock_release(void *calldata)
3423{
3424 struct nfs4_lockdata *data = calldata;
3425
Harvey Harrison3110ff82008-05-02 13:42:44 -07003426 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003427 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003428 if (data->cancelled != 0) {
3429 struct rpc_task *task;
3430 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3431 data->arg.lock_seqid);
3432 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003433 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003434 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003435 } else
3436 nfs_free_seqid(data->arg.lock_seqid);
3437 nfs4_put_lock_state(data->lsp);
3438 put_nfs_open_context(data->ctx);
3439 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003440 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003441}
3442
3443static const struct rpc_call_ops nfs4_lock_ops = {
3444 .rpc_call_prepare = nfs4_lock_prepare,
3445 .rpc_call_done = nfs4_lock_done,
3446 .rpc_release = nfs4_lock_release,
3447};
3448
3449static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3450{
3451 struct nfs4_lockdata *data;
3452 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003453 struct rpc_message msg = {
3454 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3455 .rpc_cred = state->owner->so_cred,
3456 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003457 struct rpc_task_setup task_setup_data = {
3458 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003459 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003460 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003461 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003462 .flags = RPC_TASK_ASYNC,
3463 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003464 int ret;
3465
Harvey Harrison3110ff82008-05-02 13:42:44 -07003466 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003467 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003468 fl->fl_u.nfs4_fl.owner);
3469 if (data == NULL)
3470 return -ENOMEM;
3471 if (IS_SETLKW(cmd))
3472 data->arg.block = 1;
3473 if (reclaim != 0)
3474 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003475 msg.rpc_argp = &data->arg,
3476 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003477 task_setup_data.callback_data = data;
3478 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003479 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003480 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003481 ret = nfs4_wait_for_completion_rpc_task(task);
3482 if (ret == 0) {
3483 ret = data->rpc_status;
3484 if (ret == -NFS4ERR_DENIED)
3485 ret = -EAGAIN;
3486 } else
3487 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003488 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003489 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003490 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491}
3492
3493static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3494{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003495 struct nfs_server *server = NFS_SERVER(state->inode);
3496 struct nfs4_exception exception = { };
3497 int err;
3498
3499 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003500 /* Cache the lock if possible... */
3501 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3502 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003503 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3504 if (err != -NFS4ERR_DELAY)
3505 break;
3506 nfs4_handle_exception(server, err, &exception);
3507 } while (exception.retry);
3508 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509}
3510
3511static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3512{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003513 struct nfs_server *server = NFS_SERVER(state->inode);
3514 struct nfs4_exception exception = { };
3515 int err;
3516
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003517 err = nfs4_set_lock_state(state, request);
3518 if (err != 0)
3519 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003520 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003521 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3522 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003523 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3524 if (err != -NFS4ERR_DELAY)
3525 break;
3526 nfs4_handle_exception(server, err, &exception);
3527 } while (exception.retry);
3528 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529}
3530
3531static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3532{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003533 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003534 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 int status;
3536
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003537 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003538 status = nfs4_set_lock_state(state, request);
3539 if (status != 0)
3540 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003541 request->fl_flags |= FL_ACCESS;
3542 status = do_vfs_lock(request->fl_file, request);
3543 if (status < 0)
3544 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003545 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003546 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04003547 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003548 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05003549 request->fl_flags = fl_flags & ~FL_SLEEP;
3550 status = do_vfs_lock(request->fl_file, request);
3551 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003552 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003553 status = _nfs4_do_setlk(state, cmd, request, 0);
3554 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003555 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003556 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003557 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003558 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07003559 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003560out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05003561 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003562out:
3563 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 return status;
3565}
3566
3567static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3568{
3569 struct nfs4_exception exception = { };
3570 int err;
3571
3572 do {
3573 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3574 _nfs4_proc_setlk(state, cmd, request),
3575 &exception);
3576 } while (exception.retry);
3577 return err;
3578}
3579
3580static int
3581nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3582{
3583 struct nfs_open_context *ctx;
3584 struct nfs4_state *state;
3585 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3586 int status;
3587
3588 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003589 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 state = ctx->state;
3591
3592 if (request->fl_start < 0 || request->fl_end < 0)
3593 return -EINVAL;
3594
3595 if (IS_GETLK(cmd))
3596 return nfs4_proc_getlk(state, F_GETLK, request);
3597
3598 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3599 return -EINVAL;
3600
3601 if (request->fl_type == F_UNLCK)
3602 return nfs4_proc_unlck(state, cmd, request);
3603
3604 do {
3605 status = nfs4_proc_setlk(state, cmd, request);
3606 if ((status != -EAGAIN) || IS_SETLK(cmd))
3607 break;
3608 timeout = nfs4_set_lock_task_retry(timeout);
3609 status = -ERESTARTSYS;
3610 if (signalled())
3611 break;
3612 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 return status;
3614}
3615
Trond Myklebust888e6942005-11-04 15:38:11 -05003616int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3617{
3618 struct nfs_server *server = NFS_SERVER(state->inode);
3619 struct nfs4_exception exception = { };
3620 int err;
3621
3622 err = nfs4_set_lock_state(state, fl);
3623 if (err != 0)
3624 goto out;
3625 do {
3626 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3627 if (err != -NFS4ERR_DELAY)
3628 break;
3629 err = nfs4_handle_exception(server, err, &exception);
3630 } while (exception.retry);
3631out:
3632 return err;
3633}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003634
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003635#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3636
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003637int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3638 size_t buflen, int flags)
3639{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003640 struct inode *inode = dentry->d_inode;
3641
3642 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3643 return -EOPNOTSUPP;
3644
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003645 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003646}
3647
3648/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3649 * and that's what we'll do for e.g. user attributes that haven't been set.
3650 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3651 * attributes in kernel-managed attribute namespaces. */
3652ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3653 size_t buflen)
3654{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003655 struct inode *inode = dentry->d_inode;
3656
3657 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3658 return -EOPNOTSUPP;
3659
3660 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003661}
3662
3663ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3664{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003665 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003666
J. Bruce Fields096455a2006-03-20 23:23:42 -05003667 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3668 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003669 if (buf && buflen < len)
3670 return -ERANGE;
3671 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003672 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3673 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003674}
3675
Trond Myklebust69aaaae2009-03-11 14:10:28 -04003676static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
3677{
3678 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
3679 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
3680 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
3681 return;
3682
3683 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
3684 NFS_ATTR_FATTR_NLINK;
3685 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
3686 fattr->nlink = 2;
3687}
3688
Trond Myklebust56659e92007-07-17 21:52:39 -04003689int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003690 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003691{
3692 struct nfs_server *server = NFS_SERVER(dir);
3693 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003694 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3695 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003696 };
3697 struct nfs4_fs_locations_arg args = {
3698 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05003699 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003700 .page = page,
3701 .bitmask = bitmask,
3702 };
3703 struct rpc_message msg = {
3704 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3705 .rpc_argp = &args,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003706 .rpc_resp = fs_locations,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003707 };
3708 int status;
3709
Harvey Harrison3110ff82008-05-02 13:42:44 -07003710 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05003711 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003712 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003713 fs_locations->nlocations = 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003714 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04003715 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003716 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003717 return status;
3718}
3719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05003721 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05003722 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 .recover_open = nfs4_open_reclaim,
3724 .recover_lock = nfs4_lock_reclaim,
3725};
3726
Trond Myklebustb79a4a12008-12-23 15:21:41 -05003727struct nfs4_state_recovery_ops nfs4_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05003728 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05003729 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 .recover_open = nfs4_open_expired,
3731 .recover_lock = nfs4_lock_expired,
3732};
3733
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003734static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003735 .permission = nfs_permission,
3736 .getattr = nfs_getattr,
3737 .setattr = nfs_setattr,
3738 .getxattr = nfs4_getxattr,
3739 .setxattr = nfs4_setxattr,
3740 .listxattr = nfs4_listxattr,
3741};
3742
David Howells509de812006-08-22 20:06:11 -04003743const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 .version = 4, /* protocol version */
3745 .dentry_ops = &nfs4_dentry_operations,
3746 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003747 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 .getroot = nfs4_proc_get_root,
3749 .getattr = nfs4_proc_getattr,
3750 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003751 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 .lookup = nfs4_proc_lookup,
3753 .access = nfs4_proc_access,
3754 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 .create = nfs4_proc_create,
3756 .remove = nfs4_proc_remove,
3757 .unlink_setup = nfs4_proc_unlink_setup,
3758 .unlink_done = nfs4_proc_unlink_done,
3759 .rename = nfs4_proc_rename,
3760 .link = nfs4_proc_link,
3761 .symlink = nfs4_proc_symlink,
3762 .mkdir = nfs4_proc_mkdir,
3763 .rmdir = nfs4_proc_remove,
3764 .readdir = nfs4_proc_readdir,
3765 .mknod = nfs4_proc_mknod,
3766 .statfs = nfs4_proc_statfs,
3767 .fsinfo = nfs4_proc_fsinfo,
3768 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003769 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 .decode_dirent = nfs4_decode_dirent,
3771 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003772 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003774 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003776 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003778 .clear_acl_cache = nfs4_zap_acl_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779};
3780
3781/*
3782 * Local variables:
3783 * c-basic-offset: 8
3784 * End:
3785 */