blob: d90209e795878b357f18a93cb74c974dfd41bc06 [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"
Chuck Lever006ea732006-03-20 13:44:14 -050054#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define NFSDBG_FACILITY NFSDBG_PROC
57
Trond Myklebust2066fe82006-09-15 08:30:46 -040058#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define NFS4_POLL_RETRY_MAX (15*HZ)
60
Trond Myklebustcdd4e682006-01-03 09:55:12 +010061struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010062static int _nfs4_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebustfaf5f492005-10-18 14:20:15 -070064static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry);
Trond Myklebustfaf5f492005-10-18 14:20:15 -070066static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception);
David Howellsadfa6f92006-08-22 20:06:08 -040067static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* Prevent leaks of NFSv4 errors into userland */
70int nfs4_map_errors(int err)
71{
72 if (err < -1000) {
73 dprintk("%s could not handle NFSv4 error %d\n",
74 __FUNCTION__, -err);
75 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 */
177 p = xdr_encode_hyper(p, dentry->d_inode->i_ino);
178 }
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 */
189 p = xdr_encode_hyper(p, dentry->d_parent->d_inode->i_ino);
190
191 readdir->pgbase = (char *)p - (char *)start;
192 readdir->count -= readdir->pgbase;
193 kunmap_atomic(start, KM_USER0);
194}
195
Trond Myklebust26e976a2006-01-03 09:55:21 +0100196static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
David Howells7539bba2006-08-22 20:06:09 -0400198 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 spin_lock(&clp->cl_lock);
200 if (time_before(clp->cl_last_renewal,timestamp))
201 clp->cl_last_renewal = timestamp;
202 spin_unlock(&clp->cl_lock);
203}
204
Trond Myklebust38478b22006-05-25 01:40:57 -0400205static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Trond Myklebust38478b22006-05-25 01:40:57 -0400207 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Trond Myklebust38478b22006-05-25 01:40:57 -0400209 spin_lock(&dir->i_lock);
210 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (cinfo->before == nfsi->change_attr && cinfo->atomic)
212 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400213 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100216struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400217 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100218 struct nfs_openargs o_arg;
219 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100220 struct nfs_open_confirmargs c_arg;
221 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100222 struct nfs_fattr f_attr;
223 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400224 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100225 struct dentry *dir;
226 struct nfs4_state_owner *owner;
227 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100228 unsigned long timestamp;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100229 int rpc_status;
230 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100231};
232
Trond Myklebustad389da2007-06-05 12:30:00 -0400233static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100234 struct nfs4_state_owner *sp, int flags,
235 const struct iattr *attrs)
236{
Trond Myklebustad389da2007-06-05 12:30:00 -0400237 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100238 struct inode *dir = parent->d_inode;
239 struct nfs_server *server = NFS_SERVER(dir);
240 struct nfs4_opendata *p;
241
242 p = kzalloc(sizeof(*p), GFP_KERNEL);
243 if (p == NULL)
244 goto err;
245 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
246 if (p->o_arg.seqid == NULL)
247 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400248 p->path.mnt = mntget(path->mnt);
249 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100250 p->dir = parent;
251 p->owner = sp;
252 atomic_inc(&sp->so_count);
253 p->o_arg.fh = NFS_FH(dir);
254 p->o_arg.open_flags = flags,
David Howells7539bba2006-08-22 20:06:09 -0400255 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100256 p->o_arg.id = sp->so_id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400257 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100258 p->o_arg.server = server;
259 p->o_arg.bitmask = server->attr_bitmask;
260 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
261 p->o_res.f_attr = &p->f_attr;
262 p->o_res.dir_attr = &p->dir_attr;
263 p->o_res.server = server;
264 nfs_fattr_init(&p->f_attr);
265 nfs_fattr_init(&p->dir_attr);
266 if (flags & O_EXCL) {
267 u32 *s = (u32 *) p->o_arg.u.verifier.data;
268 s[0] = jiffies;
269 s[1] = current->pid;
270 } else if (flags & O_CREAT) {
271 p->o_arg.u.attrs = &p->attrs;
272 memcpy(&p->attrs, attrs, sizeof(p->attrs));
273 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100274 p->c_arg.fh = &p->o_res.fh;
275 p->c_arg.stateid = &p->o_res.stateid;
276 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400277 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100278 return p;
279err_free:
280 kfree(p);
281err:
282 dput(parent);
283 return NULL;
284}
285
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400286static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100287{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400288 struct nfs4_opendata *p = container_of(kref,
289 struct nfs4_opendata, kref);
290
291 nfs_free_seqid(p->o_arg.seqid);
292 nfs4_put_state_owner(p->owner);
293 dput(p->dir);
294 dput(p->path.dentry);
295 mntput(p->path.mnt);
296 kfree(p);
297}
298
299static void nfs4_opendata_put(struct nfs4_opendata *p)
300{
301 if (p != NULL)
302 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100303}
304
Trond Myklebust06f814a2006-01-03 09:55:07 +0100305static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
306{
307 sigset_t oldset;
308 int ret;
309
310 rpc_clnt_sigmask(task->tk_client, &oldset);
311 ret = rpc_wait_for_completion_task(task);
312 rpc_clnt_sigunmask(task->tk_client, &oldset);
313 return ret;
314}
315
Trond Myklebuste7616922006-01-03 09:55:13 +0100316static inline void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
317{
318 switch (open_flags) {
319 case FMODE_WRITE:
320 state->n_wronly++;
321 break;
322 case FMODE_READ:
323 state->n_rdonly++;
324 break;
325 case FMODE_READ|FMODE_WRITE:
326 state->n_rdwr++;
327 }
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
331{
332 struct inode *inode = state->inode;
333
334 open_flags &= (FMODE_READ|FMODE_WRITE);
Trond Myklebustd5308382005-11-04 15:33:38 -0500335 /* Protect against nfs4_find_state_byowner() */
Trond Myklebustec073422005-10-20 14:22:47 -0700336 spin_lock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 spin_lock(&inode->i_lock);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500338 memcpy(&state->stateid, stateid, sizeof(state->stateid));
Trond Myklebuste7616922006-01-03 09:55:13 +0100339 update_open_stateflags(state, open_flags);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500340 nfs4_state_set_mode_locked(state, state->state | open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700342 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100345static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
346{
347 struct inode *inode;
348 struct nfs4_state *state = NULL;
349
350 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
351 goto out;
352 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500353 if (IS_ERR(inode))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100354 goto out;
355 state = nfs4_get_open_state(inode, data->owner);
356 if (state == NULL)
357 goto put_inode;
358 update_open_stateid(state, &data->o_res.stateid, data->o_arg.open_flags);
359put_inode:
360 iput(inode);
361out:
362 return state;
363}
364
Trond Myklebust864472e2006-01-03 09:55:15 +0100365static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
366{
367 struct nfs_inode *nfsi = NFS_I(state->inode);
368 struct nfs_open_context *ctx;
369
370 spin_lock(&state->inode->i_lock);
371 list_for_each_entry(ctx, &nfsi->open_files, list) {
372 if (ctx->state != state)
373 continue;
374 get_nfs_open_context(ctx);
375 spin_unlock(&state->inode->i_lock);
376 return ctx;
377 }
378 spin_unlock(&state->inode->i_lock);
379 return ERR_PTR(-ENOENT);
380}
381
382static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, nfs4_stateid *stateid)
383{
384 int ret;
385
386 opendata->o_arg.open_flags = openflags;
387 ret = _nfs4_proc_open(opendata);
388 if (ret != 0)
389 return ret;
390 memcpy(stateid->data, opendata->o_res.stateid.data,
391 sizeof(stateid->data));
392 return 0;
393}
394
395static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
396{
397 nfs4_stateid stateid;
398 struct nfs4_state *newstate;
399 int mode = 0;
400 int delegation = 0;
401 int ret;
402
403 /* memory barrier prior to reading state->n_* */
404 smp_rmb();
405 if (state->n_rdwr != 0) {
406 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &stateid);
407 if (ret != 0)
408 return ret;
409 mode |= FMODE_READ|FMODE_WRITE;
410 if (opendata->o_res.delegation_type != 0)
411 delegation = opendata->o_res.delegation_type;
412 smp_rmb();
413 }
414 if (state->n_wronly != 0) {
415 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &stateid);
416 if (ret != 0)
417 return ret;
418 mode |= FMODE_WRITE;
419 if (opendata->o_res.delegation_type != 0)
420 delegation = opendata->o_res.delegation_type;
421 smp_rmb();
422 }
423 if (state->n_rdonly != 0) {
424 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &stateid);
425 if (ret != 0)
426 return ret;
427 mode |= FMODE_READ;
428 }
429 clear_bit(NFS_DELEGATED_STATE, &state->flags);
430 if (mode == 0)
431 return 0;
432 if (opendata->o_res.delegation_type == 0)
433 opendata->o_res.delegation_type = delegation;
434 opendata->o_arg.open_flags |= mode;
435 newstate = nfs4_opendata_to_nfs4_state(opendata);
436 if (newstate != NULL) {
437 if (opendata->o_res.delegation_type != 0) {
438 struct nfs_inode *nfsi = NFS_I(newstate->inode);
439 int delegation_flags = 0;
440 if (nfsi->delegation)
441 delegation_flags = nfsi->delegation->flags;
442 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
443 nfs_inode_set_delegation(newstate->inode,
444 opendata->owner->so_cred,
445 &opendata->o_res);
446 else
447 nfs_inode_reclaim_delegation(newstate->inode,
448 opendata->owner->so_cred,
449 &opendata->o_res);
450 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400451 nfs4_close_state(&opendata->path, newstate, opendata->o_arg.open_flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100452 }
453 if (newstate != state)
454 return -ESTALE;
455 return 0;
456}
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/*
459 * OPEN_RECLAIM:
460 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400462static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Trond Myklebust864472e2006-01-03 09:55:15 +0100464 struct nfs_delegation *delegation = NFS_I(state->inode)->delegation;
465 struct nfs4_opendata *opendata;
466 int delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 int status;
468
469 if (delegation != NULL) {
470 if (!(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
471 memcpy(&state->stateid, &delegation->stateid,
472 sizeof(state->stateid));
473 set_bit(NFS_DELEGATED_STATE, &state->flags);
474 return 0;
475 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100476 delegation_type = delegation->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Trond Myklebustad389da2007-06-05 12:30:00 -0400478 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
Trond Myklebust864472e2006-01-03 09:55:15 +0100479 if (opendata == NULL)
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700480 return -ENOMEM;
Trond Myklebust864472e2006-01-03 09:55:15 +0100481 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
482 opendata->o_arg.fh = NFS_FH(state->inode);
483 nfs_copy_fh(&opendata->o_res.fh, opendata->o_arg.fh);
484 opendata->o_arg.u.delegation_type = delegation_type;
485 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400486 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return status;
488}
489
Trond Myklebust539cd032007-06-05 11:46:42 -0400490static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 struct nfs_server *server = NFS_SERVER(state->inode);
493 struct nfs4_exception exception = { };
494 int err;
495 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400496 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000497 if (err != -NFS4ERR_DELAY)
498 break;
499 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 } while (exception.retry);
501 return err;
502}
503
Trond Myklebust864472e2006-01-03 09:55:15 +0100504static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
505{
506 struct nfs_open_context *ctx;
507 int ret;
508
509 ctx = nfs4_state_find_open_context(state);
510 if (IS_ERR(ctx))
511 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400512 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100513 put_nfs_open_context(ctx);
514 return ret;
515}
516
Trond Myklebust539cd032007-06-05 11:46:42 -0400517static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 struct nfs4_state_owner *sp = state->owner;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100520 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100521 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust864472e2006-01-03 09:55:15 +0100524 return 0;
Trond Myklebustad389da2007-06-05 12:30:00 -0400525 opendata = nfs4_opendata_alloc(&ctx->path, sp, 0, NULL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100526 if (opendata == NULL)
Trond Myklebust864472e2006-01-03 09:55:15 +0100527 return -ENOMEM;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100528 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100529 memcpy(opendata->o_arg.u.delegation.data, state->stateid.data,
530 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100531 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400532 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100533 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Trond Myklebust539cd032007-06-05 11:46:42 -0400536int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -0400539 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 int err;
541 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400542 err = _nfs4_open_delegation_recall(ctx, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 switch (err) {
544 case 0:
545 return err;
546 case -NFS4ERR_STALE_CLIENTID:
547 case -NFS4ERR_STALE_STATEID:
548 case -NFS4ERR_EXPIRED:
549 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400550 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return err;
552 }
553 err = nfs4_handle_exception(server, err, &exception);
554 } while (exception.retry);
555 return err;
556}
557
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100558static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100560 struct nfs4_opendata *data = calldata;
561 struct rpc_message msg = {
562 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
563 .rpc_argp = &data->c_arg,
564 .rpc_resp = &data->c_res,
565 .rpc_cred = data->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 };
Trond Myklebust26e976a2006-01-03 09:55:21 +0100567 data->timestamp = jiffies;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100568 rpc_call_setup(task, &msg, 0);
569}
570
571static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
572{
573 struct nfs4_opendata *data = calldata;
574
575 data->rpc_status = task->tk_status;
576 if (RPC_ASSASSINATED(task))
577 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100578 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100579 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
580 sizeof(data->o_res.stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +0100581 renew_lease(data->o_res.server, data->timestamp);
582 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100583 nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid);
584 nfs_confirm_seqid(&data->owner->so_seqid, data->rpc_status);
585}
586
587static void nfs4_open_confirm_release(void *calldata)
588{
589 struct nfs4_opendata *data = calldata;
590 struct nfs4_state *state = NULL;
591
592 /* If this request hasn't been cancelled, do nothing */
593 if (data->cancelled == 0)
594 goto out_free;
595 /* In case of error, no cleanup! */
596 if (data->rpc_status != 0)
597 goto out_free;
598 nfs_confirm_seqid(&data->owner->so_seqid, 0);
599 state = nfs4_opendata_to_nfs4_state(data);
600 if (state != NULL)
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400601 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100602out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400603 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100604}
605
606static const struct rpc_call_ops nfs4_open_confirm_ops = {
607 .rpc_call_prepare = nfs4_open_confirm_prepare,
608 .rpc_call_done = nfs4_open_confirm_done,
609 .rpc_release = nfs4_open_confirm_release,
610};
611
612/*
613 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
614 */
615static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
616{
617 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
618 struct rpc_task *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 int status;
620
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400621 kref_get(&data->kref);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500622 /*
623 * If rpc_run_task() ends up calling ->rpc_release(), we
624 * want to ensure that it takes the 'error' code path.
625 */
626 data->rpc_status = -ENOMEM;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100627 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_confirm_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500628 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100629 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100630 status = nfs4_wait_for_completion_rpc_task(task);
631 if (status != 0) {
632 data->cancelled = 1;
633 smp_wmb();
634 } else
635 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500636 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return status;
638}
639
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100640static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100642 struct nfs4_opendata *data = calldata;
643 struct nfs4_state_owner *sp = data->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 struct rpc_message msg = {
645 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100646 .rpc_argp = &data->o_arg,
647 .rpc_resp = &data->o_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 .rpc_cred = sp->so_cred,
649 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100650
651 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
652 return;
653 /* Update sequence id. */
654 data->o_arg.id = sp->so_id;
655 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust864472e2006-01-03 09:55:15 +0100656 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
657 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust26e976a2006-01-03 09:55:21 +0100658 data->timestamp = jiffies;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100659 rpc_call_setup(task, &msg, 0);
660}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100662static void nfs4_open_done(struct rpc_task *task, void *calldata)
663{
664 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100666 data->rpc_status = task->tk_status;
667 if (RPC_ASSASSINATED(task))
668 return;
669 if (task->tk_status == 0) {
670 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -0700671 case S_IFREG:
672 break;
673 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100674 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700675 break;
676 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100677 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700678 break;
679 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100680 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700681 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100682 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust6f926b52005-10-18 14:20:18 -0700683 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100684 nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid);
685}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700686
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100687static void nfs4_open_release(void *calldata)
688{
689 struct nfs4_opendata *data = calldata;
690 struct nfs4_state *state = NULL;
691
692 /* If this request hasn't been cancelled, do nothing */
693 if (data->cancelled == 0)
694 goto out_free;
695 /* In case of error, no cleanup! */
696 if (data->rpc_status != 0)
697 goto out_free;
698 /* In case we need an open_confirm, no cleanup! */
699 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
700 goto out_free;
701 nfs_confirm_seqid(&data->owner->so_seqid, 0);
702 state = nfs4_opendata_to_nfs4_state(data);
703 if (state != NULL)
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400704 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100705out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400706 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100707}
708
709static const struct rpc_call_ops nfs4_open_ops = {
710 .rpc_call_prepare = nfs4_open_prepare,
711 .rpc_call_done = nfs4_open_done,
712 .rpc_release = nfs4_open_release,
713};
714
715/*
716 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
717 */
718static int _nfs4_proc_open(struct nfs4_opendata *data)
719{
720 struct inode *dir = data->dir->d_inode;
721 struct nfs_server *server = NFS_SERVER(dir);
722 struct nfs_openargs *o_arg = &data->o_arg;
723 struct nfs_openres *o_res = &data->o_res;
724 struct rpc_task *task;
725 int status;
726
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400727 kref_get(&data->kref);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500728 /*
729 * If rpc_run_task() ends up calling ->rpc_release(), we
730 * want to ensure that it takes the 'error' code path.
731 */
732 data->rpc_status = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100733 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500734 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100735 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100736 status = nfs4_wait_for_completion_rpc_task(task);
737 if (status != 0) {
738 data->cancelled = 1;
739 smp_wmb();
740 } else
741 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500742 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100744 return status;
745
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400746 if (o_arg->open_flags & O_CREAT) {
747 update_changeattr(dir, &o_res->cinfo);
748 nfs_post_op_update_inode(dir, o_res->dir_attr);
749 } else
750 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100752 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100754 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100756 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
David Howells8fa5c002006-08-22 20:06:12 -0400758 return server->nfs_client->rpc_ops->getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762static int _nfs4_do_access(struct inode *inode, struct rpc_cred *cred, int openflags)
763{
764 struct nfs_access_entry cache;
765 int mask = 0;
766 int status;
767
768 if (openflags & FMODE_READ)
769 mask |= MAY_READ;
770 if (openflags & FMODE_WRITE)
771 mask |= MAY_WRITE;
772 status = nfs_access_get_cached(inode, cred, &cache);
773 if (status == 0)
774 goto out;
775
776 /* Be clever: ask server to check for all possible rights */
777 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
778 cache.cred = cred;
779 cache.jiffies = jiffies;
780 status = _nfs4_proc_access(inode, &cache);
781 if (status != 0)
782 return status;
783 nfs_access_add_cache(inode, &cache);
784out:
785 if ((cache.mask & mask) == mask)
786 return 0;
787 return -EACCES;
788}
789
Trond Myklebust10afec92007-05-14 17:16:04 -0400790static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +0100791{
David Howells7539bba2006-08-22 20:06:09 -0400792 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -0400793 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +0100794
Trond Myklebust6b309542006-09-14 14:03:14 -0400795 for (;;) {
796 ret = nfs4_wait_clnt_recover(server->client, clp);
797 if (ret != 0)
798 return ret;
799 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
800 break;
Trond Myklebust58d97142006-01-03 09:55:24 +0100801 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -0400802 }
803 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +0100804}
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806/*
807 * OPEN_EXPIRED:
808 * reclaim state on the server after a network partition.
809 * Assumes caller holds the appropriate lock
810 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400811static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 struct inode *inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 struct nfs_delegation *delegation = NFS_I(inode)->delegation;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100815 struct nfs4_opendata *opendata;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100816 int openflags = state->state & (FMODE_READ|FMODE_WRITE);
Trond Myklebust864472e2006-01-03 09:55:15 +0100817 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (delegation != NULL && !(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
Trond Myklebust539cd032007-06-05 11:46:42 -0400820 ret = _nfs4_do_access(inode, ctx->cred, openflags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100821 if (ret < 0)
822 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 memcpy(&state->stateid, &delegation->stateid, sizeof(state->stateid));
824 set_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
Trond Myklebustad389da2007-06-05 12:30:00 -0400827 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, openflags, NULL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100828 if (opendata == NULL)
Trond Myklebust864472e2006-01-03 09:55:15 +0100829 return -ENOMEM;
830 ret = nfs4_open_recover(opendata, state);
831 if (ret == -ESTALE) {
832 /* Invalidate the state owner so we don't ever use it again */
Trond Myklebust539cd032007-06-05 11:46:42 -0400833 nfs4_drop_state_owner(state->owner);
834 d_drop(ctx->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400836 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100837 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Trond Myklebust539cd032007-06-05 11:46:42 -0400840static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +0000841{
Trond Myklebust539cd032007-06-05 11:46:42 -0400842 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000843 struct nfs4_exception exception = { };
844 int err;
845
846 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400847 err = _nfs4_open_expired(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000848 if (err == -NFS4ERR_DELAY)
849 nfs4_handle_exception(server, err, &exception);
850 } while (exception.retry);
851 return err;
852}
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
855{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +0100857 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Trond Myklebust864472e2006-01-03 09:55:15 +0100859 ctx = nfs4_state_find_open_context(state);
860 if (IS_ERR(ctx))
861 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400862 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100863 put_nfs_open_context(ctx);
864 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
867/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100868 * Returns a referenced nfs4_state if there is an open delegation on the file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 */
870static int _nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred, struct nfs4_state **res)
871{
872 struct nfs_delegation *delegation;
873 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -0400874 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 struct nfs_inode *nfsi = NFS_I(inode);
876 struct nfs4_state_owner *sp = NULL;
877 struct nfs4_state *state = NULL;
878 int open_flags = flags & (FMODE_READ|FMODE_WRITE);
879 int err;
880
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100881 err = -ENOMEM;
882 if (!(sp = nfs4_get_state_owner(server, cred))) {
883 dprintk("%s: nfs4_get_state_owner failed!\n", __FUNCTION__);
884 return err;
885 }
Trond Myklebust58d97142006-01-03 09:55:24 +0100886 err = nfs4_recover_expired_lease(server);
887 if (err != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100888 goto out_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /* Protect against reboot recovery - NOTE ORDER! */
890 down_read(&clp->cl_sem);
891 /* Protect against delegation recall */
892 down_read(&nfsi->rwsem);
893 delegation = NFS_I(inode)->delegation;
894 err = -ENOENT;
895 if (delegation == NULL || (delegation->type & open_flags) != open_flags)
896 goto out_err;
897 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 state = nfs4_get_open_state(inode, sp);
899 if (state == NULL)
900 goto out_err;
901
902 err = -ENOENT;
903 if ((state->state & open_flags) == open_flags) {
904 spin_lock(&inode->i_lock);
Trond Myklebuste7616922006-01-03 09:55:13 +0100905 update_open_stateflags(state, open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 spin_unlock(&inode->i_lock);
907 goto out_ok;
908 } else if (state->state != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100909 goto out_put_open_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 lock_kernel();
912 err = _nfs4_do_access(inode, cred, open_flags);
913 unlock_kernel();
914 if (err != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100915 goto out_put_open_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 set_bit(NFS_DELEGATED_STATE, &state->flags);
917 update_open_stateid(state, &delegation->stateid, open_flags);
918out_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 nfs4_put_state_owner(sp);
920 up_read(&nfsi->rwsem);
921 up_read(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 *res = state;
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100923 return 0;
924out_put_open_state:
925 nfs4_put_open_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 up_read(&nfsi->rwsem);
928 up_read(&clp->cl_sem);
Trond Myklebustb8e5c4c2005-10-18 14:20:20 -0700929 if (err != -EACCES)
930 nfs_inode_return_delegation(inode);
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100931out_put_state_owner:
932 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return err;
934}
935
936static struct nfs4_state *nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred)
937{
938 struct nfs4_exception exception = { };
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500939 struct nfs4_state *res = ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 int err;
941
942 do {
943 err = _nfs4_open_delegated(inode, flags, cred, &res);
944 if (err == 0)
945 break;
946 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(inode),
947 err, &exception));
948 } while (exception.retry);
949 return res;
950}
951
952/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -0400953 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
954 * fields corresponding to attributes that were used to store the verifier.
955 * Make sure we clobber those fields in the later setattr call
956 */
957static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
958{
959 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
960 !(sattr->ia_valid & ATTR_ATIME_SET))
961 sattr->ia_valid |= ATTR_ATIME;
962
963 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
964 !(sattr->ia_valid & ATTR_MTIME_SET))
965 sattr->ia_valid |= ATTR_MTIME;
966}
967
968/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100969 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 */
Trond Myklebustad389da2007-06-05 12:30:00 -0400971static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 struct nfs4_state_owner *sp;
974 struct nfs4_state *state = NULL;
975 struct nfs_server *server = NFS_SERVER(dir);
David Howells7539bba2006-08-22 20:06:09 -0400976 struct nfs_client *clp = server->nfs_client;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100977 struct nfs4_opendata *opendata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 status = -ENOMEM;
982 if (!(sp = nfs4_get_state_owner(server, cred))) {
983 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
984 goto out_err;
985 }
Trond Myklebust58d97142006-01-03 09:55:24 +0100986 status = nfs4_recover_expired_lease(server);
987 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100988 goto err_put_state_owner;
Trond Myklebust58d97142006-01-03 09:55:24 +0100989 down_read(&clp->cl_sem);
990 status = -ENOMEM;
Trond Myklebustad389da2007-06-05 12:30:00 -0400991 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100992 if (opendata == NULL)
Trond Myklebust76723de2006-09-15 08:11:51 -0400993 goto err_release_rwsem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100995 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400997 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Jeff Laytonaa53ed52007-06-05 14:49:03 -0400999 if (opendata->o_arg.open_flags & O_EXCL)
1000 nfs4_exclusive_attrset(opendata, sattr);
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 status = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001003 state = nfs4_opendata_to_nfs4_state(opendata);
1004 if (state == NULL)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001005 goto err_opendata_put;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001006 if (opendata->o_res.delegation_type != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001007 nfs_inode_set_delegation(state->inode, cred, &opendata->o_res);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001008 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 nfs4_put_state_owner(sp);
1010 up_read(&clp->cl_sem);
1011 *res = state;
1012 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001013err_opendata_put:
1014 nfs4_opendata_put(opendata);
Trond Myklebust76723de2006-09-15 08:11:51 -04001015err_release_rwsem:
1016 up_read(&clp->cl_sem);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001017err_put_state_owner:
1018 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 *res = NULL;
1021 return status;
1022}
1023
1024
Trond Myklebustad389da2007-06-05 12:30:00 -04001025static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct nfs4_exception exception = { };
1028 struct nfs4_state *res;
1029 int status;
1030
1031 do {
Trond Myklebustad389da2007-06-05 12:30:00 -04001032 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (status == 0)
1034 break;
1035 /* NOTE: BAD_SEQID means the server and client disagree about the
1036 * book-keeping w.r.t. state-changing operations
1037 * (OPEN/CLOSE/LOCK/LOCKU...)
1038 * It is actually a sign of a bug on the client or on the server.
1039 *
1040 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001041 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 * have unhashed the old state_owner for us, and that we can
1043 * therefore safely retry using a new one. We should still warn
1044 * the user though...
1045 */
1046 if (status == -NFS4ERR_BAD_SEQID) {
1047 printk(KERN_WARNING "NFS: v4 server returned a bad sequence-id error!\n");
1048 exception.retry = 1;
1049 continue;
1050 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001051 /*
1052 * BAD_STATEID on OPEN means that the server cancelled our
1053 * state before it received the OPEN_CONFIRM.
1054 * Recover by retrying the request as per the discussion
1055 * on Page 181 of RFC3530.
1056 */
1057 if (status == -NFS4ERR_BAD_STATEID) {
1058 exception.retry = 1;
1059 continue;
1060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1062 status, &exception));
1063 } while (exception.retry);
1064 return res;
1065}
1066
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001067static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1068 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001070 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001072 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 .iap = sattr,
1074 .server = server,
1075 .bitmask = server->attr_bitmask,
1076 };
1077 struct nfs_setattrres res = {
1078 .fattr = fattr,
1079 .server = server,
1080 };
1081 struct rpc_message msg = {
1082 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1083 .rpc_argp = &arg,
1084 .rpc_resp = &res,
1085 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001086 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001087 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Trond Myklebust0e574af2005-10-27 22:12:38 -04001089 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001091 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1092 /* Use that stateid */
1093 } else if (state != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 msg.rpc_cred = state->owner->so_cred;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001095 nfs4_copy_stateid(&arg.stateid, state, current->files);
1096 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1098
Trond Myklebust65e43082005-08-16 11:49:44 -04001099 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001100 if (status == 0 && state != NULL)
1101 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001102 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001105static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1106 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001108 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 struct nfs4_exception exception = { };
1110 int err;
1111 do {
1112 err = nfs4_handle_exception(server,
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001113 _nfs4_do_setattr(inode, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 &exception);
1115 } while (exception.retry);
1116 return err;
1117}
1118
1119struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001120 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct inode *inode;
1122 struct nfs4_state *state;
1123 struct nfs_closeargs arg;
1124 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001125 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001126 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127};
1128
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001129static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001130{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001131 struct nfs4_closedata *calldata = data;
1132 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001133
1134 nfs4_put_open_state(calldata->state);
1135 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001136 nfs4_put_state_owner(sp);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001137 dput(calldata->path.dentry);
1138 mntput(calldata->path.mnt);
Trond Myklebust95121352005-10-18 14:20:12 -07001139 kfree(calldata);
1140}
1141
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001142static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001144 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct nfs_server *server = NFS_SERVER(calldata->inode);
1147
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001148 if (RPC_ASSASSINATED(task))
1149 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 /* hmm. we are done with the inode, and in the process of freeing
1151 * the state_owner. we keep this around to process errors
1152 */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001153 nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 switch (task->tk_status) {
1155 case 0:
1156 memcpy(&state->stateid, &calldata->res.stateid,
1157 sizeof(state->stateid));
Trond Myklebust26e976a2006-01-03 09:55:21 +01001158 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 break;
1160 case -NFS4ERR_STALE_STATEID:
1161 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 break;
1163 default:
1164 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1165 rpc_restart_call(task);
1166 return;
1167 }
1168 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001169 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001172static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001174 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001175 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct rpc_message msg = {
1177 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1178 .rpc_argp = &calldata->arg,
1179 .rpc_resp = &calldata->res,
Trond Myklebust95121352005-10-18 14:20:12 -07001180 .rpc_cred = state->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 };
Trond Myklebust4cecb762005-11-04 15:32:58 -05001182 int mode = 0, old_mode;
Trond Myklebust95121352005-10-18 14:20:12 -07001183
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001184 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001185 return;
Trond Myklebust95121352005-10-18 14:20:12 -07001186 /* Recalculate the new open mode in case someone reopened the file
1187 * while we were waiting in line to be scheduled.
1188 */
Trond Myklebust4cecb762005-11-04 15:32:58 -05001189 spin_lock(&state->owner->so_lock);
1190 spin_lock(&calldata->inode->i_lock);
1191 mode = old_mode = state->state;
Trond Myklebuste7616922006-01-03 09:55:13 +01001192 if (state->n_rdwr == 0) {
1193 if (state->n_rdonly == 0)
1194 mode &= ~FMODE_READ;
1195 if (state->n_wronly == 0)
1196 mode &= ~FMODE_WRITE;
1197 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001198 nfs4_state_set_mode_locked(state, mode);
1199 spin_unlock(&calldata->inode->i_lock);
1200 spin_unlock(&state->owner->so_lock);
1201 if (mode == old_mode || test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001202 /* Note: exit _without_ calling nfs4_close_done */
1203 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001204 return;
1205 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001206 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust95121352005-10-18 14:20:12 -07001207 if (mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust95121352005-10-18 14:20:12 -07001209 calldata->arg.open_flags = mode;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001210 calldata->timestamp = jiffies;
Trond Myklebust95121352005-10-18 14:20:12 -07001211 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001214static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001215 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001216 .rpc_call_done = nfs4_close_done,
1217 .rpc_release = nfs4_free_closedata,
1218};
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220/*
1221 * It is possible for data to be read/written from a mem-mapped file
1222 * after the sys_close call (which hits the vfs layer as a flush).
1223 * This means that we can't safely call nfsv4 close on a file until
1224 * the inode is cleared. This in turn means that we are not good
1225 * NFSv4 citizens - we do not indicate to the server to update the file's
1226 * share state even when we are done with one of the three share
1227 * stateid's in the inode.
1228 *
1229 * NOTE: Caller must be holding the sp->so_owner semaphore!
1230 */
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001231int nfs4_do_close(struct path *path, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001233 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001235 struct nfs4_state_owner *sp = state->owner;
1236 struct rpc_task *task;
Trond Myklebust95121352005-10-18 14:20:12 -07001237 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Trond Myklebust95121352005-10-18 14:20:12 -07001239 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001241 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001242 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001244 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust95121352005-10-18 14:20:12 -07001245 calldata->arg.stateid = &state->stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001247 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001248 if (calldata->arg.seqid == NULL)
1249 goto out_free_calldata;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001250 calldata->arg.bitmask = server->attr_bitmask;
1251 calldata->res.fattr = &calldata->fattr;
1252 calldata->res.server = server;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001253 calldata->path.mnt = mntget(path->mnt);
1254 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001255
Trond Myklebustb39e6252007-06-11 23:05:07 -04001256 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_close_ops, calldata);
1257 if (IS_ERR(task))
1258 return PTR_ERR(task);
1259 rpc_put_task(task);
1260 return 0;
Trond Myklebust95121352005-10-18 14:20:12 -07001261out_free_calldata:
1262 kfree(calldata);
1263out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001264 nfs4_put_open_state(state);
1265 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001266 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001269static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
Trond Myklebust02a913a2005-10-18 14:20:17 -07001270{
1271 struct file *filp;
1272
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001273 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001274 if (!IS_ERR(filp)) {
1275 struct nfs_open_context *ctx;
1276 ctx = (struct nfs_open_context *)filp->private_data;
1277 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001278 return 0;
1279 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001280 nfs4_close_state(path, state, nd->intent.open.flags);
Trond Myklebust95cf9592006-04-18 13:14:06 -04001281 return PTR_ERR(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001282}
1283
1284struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1286{
Trond Myklebustad389da2007-06-05 12:30:00 -04001287 struct path path = {
1288 .mnt = nd->mnt,
1289 .dentry = dentry,
1290 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct iattr attr;
1292 struct rpc_cred *cred;
1293 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001294 struct dentry *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 if (nd->flags & LOOKUP_CREATE) {
1297 attr.ia_mode = nd->intent.open.create_mode;
1298 attr.ia_valid = ATTR_MODE;
1299 if (!IS_POSIXACL(dir))
1300 attr.ia_mode &= ~current->fs->umask;
1301 } else {
1302 attr.ia_valid = 0;
1303 BUG_ON(nd->intent.open.flags & O_CREAT);
1304 }
1305
David Howells1f163412006-08-22 20:06:11 -04001306 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001308 return (struct dentry *)cred;
Trond Myklebustad389da2007-06-05 12:30:00 -04001309 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001311 if (IS_ERR(state)) {
1312 if (PTR_ERR(state) == -ENOENT)
1313 d_add(dentry, NULL);
1314 return (struct dentry *)state;
1315 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001316 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001317 if (res != NULL)
1318 dentry = res;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001319 nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001320 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001324nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Trond Myklebustad389da2007-06-05 12:30:00 -04001326 struct path path = {
1327 .mnt = nd->mnt,
1328 .dentry = dentry,
1329 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 struct rpc_cred *cred;
1331 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
David Howells1f163412006-08-22 20:06:11 -04001333 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (IS_ERR(cred))
1335 return PTR_ERR(cred);
1336 state = nfs4_open_delegated(dentry->d_inode, openflags, cred);
1337 if (IS_ERR(state))
Trond Myklebustad389da2007-06-05 12:30:00 -04001338 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001340 if (IS_ERR(state)) {
1341 switch (PTR_ERR(state)) {
1342 case -EPERM:
1343 case -EACCES:
1344 case -EDQUOT:
1345 case -ENOSPC:
1346 case -EROFS:
1347 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1348 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001349 default:
1350 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001351 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001352 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001353 if (state->inode == dentry->d_inode) {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001354 nfs4_intent_set_file(nd, &path, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return 1;
1356 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001357 nfs4_close_state(&path, state, openflags);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001358out_drop:
1359 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 return 0;
1361}
1362
1363
1364static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1365{
1366 struct nfs4_server_caps_res res = {};
1367 struct rpc_message msg = {
1368 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1369 .rpc_argp = fhandle,
1370 .rpc_resp = &res,
1371 };
1372 int status;
1373
1374 status = rpc_call_sync(server->client, &msg, 0);
1375 if (status == 0) {
1376 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1377 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1378 server->caps |= NFS_CAP_ACLS;
1379 if (res.has_links != 0)
1380 server->caps |= NFS_CAP_HARDLINKS;
1381 if (res.has_symlinks != 0)
1382 server->caps |= NFS_CAP_SYMLINKS;
1383 server->acl_bitmask = res.acl_bitmask;
1384 }
1385 return status;
1386}
1387
Trond Myklebust55a97592006-06-09 09:34:19 -04001388int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
1390 struct nfs4_exception exception = { };
1391 int err;
1392 do {
1393 err = nfs4_handle_exception(server,
1394 _nfs4_server_capabilities(server, fhandle),
1395 &exception);
1396 } while (exception.retry);
1397 return err;
1398}
1399
1400static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1401 struct nfs_fsinfo *info)
1402{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 struct nfs4_lookup_root_arg args = {
1404 .bitmask = nfs4_fattr_bitmap,
1405 };
1406 struct nfs4_lookup_res res = {
1407 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04001408 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 .fh = fhandle,
1410 };
1411 struct rpc_message msg = {
1412 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1413 .rpc_argp = &args,
1414 .rpc_resp = &res,
1415 };
Trond Myklebust0e574af2005-10-27 22:12:38 -04001416 nfs_fattr_init(info->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return rpc_call_sync(server->client, &msg, 0);
1418}
1419
1420static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1421 struct nfs_fsinfo *info)
1422{
1423 struct nfs4_exception exception = { };
1424 int err;
1425 do {
1426 err = nfs4_handle_exception(server,
1427 _nfs4_lookup_root(server, fhandle, info),
1428 &exception);
1429 } while (exception.retry);
1430 return err;
1431}
1432
David Howells54ceac42006-08-22 20:06:13 -04001433/*
1434 * get the file handle for the "/" directory on the server
1435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04001437 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 int status;
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (status == 0)
1443 status = nfs4_server_capabilities(server, fhandle);
1444 if (status == 0)
1445 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08001446 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
Manoj Naik6b97fd32006-06-09 09:34:29 -04001449/*
1450 * Get locations and (maybe) other attributes of a referral.
1451 * Note that we'll actually follow the referral later when
1452 * we detect fsid mismatch in inode revalidation
1453 */
1454static int nfs4_get_referral(struct inode *dir, struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
1455{
1456 int status = -ENOMEM;
1457 struct page *page = NULL;
1458 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04001459
1460 page = alloc_page(GFP_KERNEL);
1461 if (page == NULL)
1462 goto out;
1463 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1464 if (locations == NULL)
1465 goto out;
1466
Trond Myklebustc228fd32007-01-13 02:28:11 -05001467 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001468 if (status != 0)
1469 goto out;
1470 /* Make sure server returned a different fsid for the referral */
1471 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
1472 dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name);
1473 status = -EIO;
1474 goto out;
1475 }
1476
1477 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1478 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1479 if (!fattr->mode)
1480 fattr->mode = S_IFDIR;
1481 memset(fhandle, 0, sizeof(struct nfs_fh));
1482out:
1483 if (page)
1484 __free_page(page);
1485 if (locations)
1486 kfree(locations);
1487 return status;
1488}
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1491{
1492 struct nfs4_getattr_arg args = {
1493 .fh = fhandle,
1494 .bitmask = server->attr_bitmask,
1495 };
1496 struct nfs4_getattr_res res = {
1497 .fattr = fattr,
1498 .server = server,
1499 };
1500 struct rpc_message msg = {
1501 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1502 .rpc_argp = &args,
1503 .rpc_resp = &res,
1504 };
1505
Trond Myklebust0e574af2005-10-27 22:12:38 -04001506 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return rpc_call_sync(server->client, &msg, 0);
1508}
1509
1510static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1511{
1512 struct nfs4_exception exception = { };
1513 int err;
1514 do {
1515 err = nfs4_handle_exception(server,
1516 _nfs4_proc_getattr(server, fhandle, fattr),
1517 &exception);
1518 } while (exception.retry);
1519 return err;
1520}
1521
1522/*
1523 * The file is not closed if it is opened due to the a request to change
1524 * the size of the file. The open call will not be needed once the
1525 * VFS layer lookup-intents are implemented.
1526 *
1527 * Close is called when the inode is destroyed.
1528 * If we haven't opened the file for O_WRONLY, we
1529 * need to in the size_change case to obtain a stateid.
1530 *
1531 * Got race?
1532 * Because OPEN is always done by name in nfsv4, it is
1533 * possible that we opened a different file by the same
1534 * name. We can recognize this race condition, but we
1535 * can't do anything about it besides returning an error.
1536 *
1537 * This will be fixed with VFS changes (lookup-intent).
1538 */
1539static int
1540nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1541 struct iattr *sattr)
1542{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001543 struct rpc_cred *cred;
1544 struct inode *inode = dentry->d_inode;
Trond Myklebustd5308382005-11-04 15:33:38 -05001545 struct nfs_open_context *ctx;
1546 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 int status;
1548
Trond Myklebust0e574af2005-10-27 22:12:38 -04001549 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
David Howells1f163412006-08-22 20:06:11 -04001551 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001552 if (IS_ERR(cred))
1553 return PTR_ERR(cred);
Trond Myklebustd5308382005-11-04 15:33:38 -05001554
1555 /* Search for an existing open(O_WRITE) file */
1556 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1557 if (ctx != NULL)
1558 state = ctx->state;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001559
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001560 status = nfs4_do_setattr(inode, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001561 if (status == 0)
1562 nfs_setattr_update_inode(inode, sattr);
Trond Myklebustd5308382005-11-04 15:33:38 -05001563 if (ctx != NULL)
1564 put_nfs_open_context(ctx);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001565 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return status;
1567}
1568
David Howells2b3de442006-08-22 20:06:09 -04001569static int _nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1570 struct qstr *name, struct nfs_fh *fhandle,
1571 struct nfs_fattr *fattr)
1572{
1573 int status;
1574 struct nfs4_lookup_arg args = {
1575 .bitmask = server->attr_bitmask,
1576 .dir_fh = dirfh,
1577 .name = name,
1578 };
1579 struct nfs4_lookup_res res = {
1580 .server = server,
1581 .fattr = fattr,
1582 .fh = fhandle,
1583 };
1584 struct rpc_message msg = {
1585 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1586 .rpc_argp = &args,
1587 .rpc_resp = &res,
1588 };
1589
1590 nfs_fattr_init(fattr);
1591
1592 dprintk("NFS call lookupfh %s\n", name->name);
1593 status = rpc_call_sync(server->client, &msg, 0);
1594 dprintk("NFS reply lookupfh: %d\n", status);
1595 if (status == -NFS4ERR_MOVED)
1596 status = -EREMOTE;
1597 return status;
1598}
1599
1600static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1601 struct qstr *name, struct nfs_fh *fhandle,
1602 struct nfs_fattr *fattr)
1603{
1604 struct nfs4_exception exception = { };
1605 int err;
1606 do {
1607 err = nfs4_handle_exception(server,
1608 _nfs4_proc_lookupfh(server, dirfh, name,
1609 fhandle, fattr),
1610 &exception);
1611 } while (exception.retry);
1612 return err;
1613}
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615static int _nfs4_proc_lookup(struct inode *dir, struct qstr *name,
1616 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1617{
1618 int status;
1619 struct nfs_server *server = NFS_SERVER(dir);
1620 struct nfs4_lookup_arg args = {
1621 .bitmask = server->attr_bitmask,
1622 .dir_fh = NFS_FH(dir),
1623 .name = name,
1624 };
1625 struct nfs4_lookup_res res = {
1626 .server = server,
1627 .fattr = fattr,
1628 .fh = fhandle,
1629 };
1630 struct rpc_message msg = {
1631 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1632 .rpc_argp = &args,
1633 .rpc_resp = &res,
1634 };
1635
Trond Myklebust0e574af2005-10-27 22:12:38 -04001636 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 dprintk("NFS call lookup %s\n", name->name);
1639 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001640 if (status == -NFS4ERR_MOVED)
1641 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 dprintk("NFS reply lookup: %d\n", status);
1643 return status;
1644}
1645
1646static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1647{
1648 struct nfs4_exception exception = { };
1649 int err;
1650 do {
1651 err = nfs4_handle_exception(NFS_SERVER(dir),
1652 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1653 &exception);
1654 } while (exception.retry);
1655 return err;
1656}
1657
1658static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1659{
1660 struct nfs4_accessargs args = {
1661 .fh = NFS_FH(inode),
1662 };
1663 struct nfs4_accessres res = { 0 };
1664 struct rpc_message msg = {
1665 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1666 .rpc_argp = &args,
1667 .rpc_resp = &res,
1668 .rpc_cred = entry->cred,
1669 };
1670 int mode = entry->mask;
1671 int status;
1672
1673 /*
1674 * Determine which access bits we want to ask for...
1675 */
1676 if (mode & MAY_READ)
1677 args.access |= NFS4_ACCESS_READ;
1678 if (S_ISDIR(inode->i_mode)) {
1679 if (mode & MAY_WRITE)
1680 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1681 if (mode & MAY_EXEC)
1682 args.access |= NFS4_ACCESS_LOOKUP;
1683 } else {
1684 if (mode & MAY_WRITE)
1685 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1686 if (mode & MAY_EXEC)
1687 args.access |= NFS4_ACCESS_EXECUTE;
1688 }
1689 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1690 if (!status) {
1691 entry->mask = 0;
1692 if (res.access & NFS4_ACCESS_READ)
1693 entry->mask |= MAY_READ;
1694 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1695 entry->mask |= MAY_WRITE;
1696 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1697 entry->mask |= MAY_EXEC;
1698 }
1699 return status;
1700}
1701
1702static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1703{
1704 struct nfs4_exception exception = { };
1705 int err;
1706 do {
1707 err = nfs4_handle_exception(NFS_SERVER(inode),
1708 _nfs4_proc_access(inode, entry),
1709 &exception);
1710 } while (exception.retry);
1711 return err;
1712}
1713
1714/*
1715 * TODO: For the time being, we don't try to get any attributes
1716 * along with any of the zero-copy operations READ, READDIR,
1717 * READLINK, WRITE.
1718 *
1719 * In the case of the first three, we want to put the GETATTR
1720 * after the read-type operation -- this is because it is hard
1721 * to predict the length of a GETATTR response in v4, and thus
1722 * align the READ data correctly. This means that the GETATTR
1723 * may end up partially falling into the page cache, and we should
1724 * shift it into the 'tail' of the xdr_buf before processing.
1725 * To do this efficiently, we need to know the total length
1726 * of data received, which doesn't seem to be available outside
1727 * of the RPC layer.
1728 *
1729 * In the case of WRITE, we also want to put the GETATTR after
1730 * the operation -- in this case because we want to make sure
1731 * we get the post-operation mtime and size. This means that
1732 * we can't use xdr_encode_pages() as written: we need a variant
1733 * of it which would leave room in the 'tail' iovec.
1734 *
1735 * Both of these changes to the XDR layer would in fact be quite
1736 * minor, but I decided to leave them for a subsequent patch.
1737 */
1738static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1739 unsigned int pgbase, unsigned int pglen)
1740{
1741 struct nfs4_readlink args = {
1742 .fh = NFS_FH(inode),
1743 .pgbase = pgbase,
1744 .pglen = pglen,
1745 .pages = &page,
1746 };
1747 struct rpc_message msg = {
1748 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1749 .rpc_argp = &args,
1750 .rpc_resp = NULL,
1751 };
1752
1753 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1754}
1755
1756static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1757 unsigned int pgbase, unsigned int pglen)
1758{
1759 struct nfs4_exception exception = { };
1760 int err;
1761 do {
1762 err = nfs4_handle_exception(NFS_SERVER(inode),
1763 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1764 &exception);
1765 } while (exception.retry);
1766 return err;
1767}
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769/*
1770 * Got race?
1771 * We will need to arrange for the VFS layer to provide an atomic open.
1772 * Until then, this create/open method is prone to inefficiency and race
1773 * conditions due to the lookup, create, and open VFS calls from sys_open()
1774 * placed on the wire.
1775 *
1776 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1777 * The file will be opened again in the subsequent VFS open call
1778 * (nfs4_proc_file_open).
1779 *
1780 * The open for read will just hang around to be used by any process that
1781 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1782 */
1783
1784static int
1785nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07001786 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
Trond Myklebustad389da2007-06-05 12:30:00 -04001788 struct path path = {
1789 .mnt = nd->mnt,
1790 .dentry = dentry,
1791 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 struct nfs4_state *state;
1793 struct rpc_cred *cred;
1794 int status = 0;
1795
David Howells1f163412006-08-22 20:06:11 -04001796 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (IS_ERR(cred)) {
1798 status = PTR_ERR(cred);
1799 goto out;
1800 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001801 state = nfs4_do_open(dir, &path, flags, sattr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 put_rpccred(cred);
1803 if (IS_ERR(state)) {
1804 status = PTR_ERR(state);
1805 goto out;
1806 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001807 d_instantiate(dentry, igrab(state->inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (flags & O_EXCL) {
1809 struct nfs_fattr fattr;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001810 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001811 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04001812 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001813 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001814 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001815 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001816 status = nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001817 else
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001818 nfs4_close_state(&path, state, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819out:
1820 return status;
1821}
1822
1823static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1824{
Trond Myklebust16e42952005-10-27 22:12:44 -04001825 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 struct nfs4_remove_arg args = {
1827 .fh = NFS_FH(dir),
1828 .name = name,
Trond Myklebust16e42952005-10-27 22:12:44 -04001829 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 };
Trond Myklebust16e42952005-10-27 22:12:44 -04001831 struct nfs_fattr dir_attr;
1832 struct nfs4_remove_res res = {
1833 .server = server,
1834 .dir_attr = &dir_attr,
1835 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 struct rpc_message msg = {
1837 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1838 .rpc_argp = &args,
1839 .rpc_resp = &res,
1840 };
1841 int status;
1842
Trond Myklebust16e42952005-10-27 22:12:44 -04001843 nfs_fattr_init(res.dir_attr);
1844 status = rpc_call_sync(server->client, &msg, 0);
1845 if (status == 0) {
1846 update_changeattr(dir, &res.cinfo);
1847 nfs_post_op_update_inode(dir, res.dir_attr);
1848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return status;
1850}
1851
1852static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1853{
1854 struct nfs4_exception exception = { };
1855 int err;
1856 do {
1857 err = nfs4_handle_exception(NFS_SERVER(dir),
1858 _nfs4_proc_remove(dir, name),
1859 &exception);
1860 } while (exception.retry);
1861 return err;
1862}
1863
1864struct unlink_desc {
1865 struct nfs4_remove_arg args;
Trond Myklebust16e42952005-10-27 22:12:44 -04001866 struct nfs4_remove_res res;
1867 struct nfs_fattr dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868};
1869
1870static int nfs4_proc_unlink_setup(struct rpc_message *msg, struct dentry *dir,
1871 struct qstr *name)
1872{
Trond Myklebust16e42952005-10-27 22:12:44 -04001873 struct nfs_server *server = NFS_SERVER(dir->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 struct unlink_desc *up;
1875
Robert P. J. Day5cbded52006-12-13 00:35:56 -08001876 up = kmalloc(sizeof(*up), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (!up)
1878 return -ENOMEM;
1879
1880 up->args.fh = NFS_FH(dir->d_inode);
1881 up->args.name = name;
Trond Myklebust16e42952005-10-27 22:12:44 -04001882 up->args.bitmask = server->attr_bitmask;
1883 up->res.server = server;
1884 up->res.dir_attr = &up->dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
1887 msg->rpc_argp = &up->args;
1888 msg->rpc_resp = &up->res;
1889 return 0;
1890}
1891
1892static int nfs4_proc_unlink_done(struct dentry *dir, struct rpc_task *task)
1893{
1894 struct rpc_message *msg = &task->tk_msg;
1895 struct unlink_desc *up;
1896
1897 if (msg->rpc_resp != NULL) {
1898 up = container_of(msg->rpc_resp, struct unlink_desc, res);
Trond Myklebust16e42952005-10-27 22:12:44 -04001899 update_changeattr(dir->d_inode, &up->res.cinfo);
1900 nfs_post_op_update_inode(dir->d_inode, up->res.dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 kfree(up);
1902 msg->rpc_resp = NULL;
1903 msg->rpc_argp = NULL;
1904 }
1905 return 0;
1906}
1907
1908static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1909 struct inode *new_dir, struct qstr *new_name)
1910{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001911 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 struct nfs4_rename_arg arg = {
1913 .old_dir = NFS_FH(old_dir),
1914 .new_dir = NFS_FH(new_dir),
1915 .old_name = old_name,
1916 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001917 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001919 struct nfs_fattr old_fattr, new_fattr;
1920 struct nfs4_rename_res res = {
1921 .server = server,
1922 .old_fattr = &old_fattr,
1923 .new_fattr = &new_fattr,
1924 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 struct rpc_message msg = {
1926 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
1927 .rpc_argp = &arg,
1928 .rpc_resp = &res,
1929 };
1930 int status;
1931
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001932 nfs_fattr_init(res.old_fattr);
1933 nfs_fattr_init(res.new_fattr);
1934 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 if (!status) {
1937 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001938 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001940 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
1942 return status;
1943}
1944
1945static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1946 struct inode *new_dir, struct qstr *new_name)
1947{
1948 struct nfs4_exception exception = { };
1949 int err;
1950 do {
1951 err = nfs4_handle_exception(NFS_SERVER(old_dir),
1952 _nfs4_proc_rename(old_dir, old_name,
1953 new_dir, new_name),
1954 &exception);
1955 } while (exception.retry);
1956 return err;
1957}
1958
1959static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
1960{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001961 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 struct nfs4_link_arg arg = {
1963 .fh = NFS_FH(inode),
1964 .dir_fh = NFS_FH(dir),
1965 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001966 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001968 struct nfs_fattr fattr, dir_attr;
1969 struct nfs4_link_res res = {
1970 .server = server,
1971 .fattr = &fattr,
1972 .dir_attr = &dir_attr,
1973 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 struct rpc_message msg = {
1975 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
1976 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001977 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 };
1979 int status;
1980
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001981 nfs_fattr_init(res.fattr);
1982 nfs_fattr_init(res.dir_attr);
1983 status = rpc_call_sync(server->client, &msg, 0);
1984 if (!status) {
1985 update_changeattr(dir, &res.cinfo);
1986 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04001987 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 return status;
1991}
1992
1993static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
1994{
1995 struct nfs4_exception exception = { };
1996 int err;
1997 do {
1998 err = nfs4_handle_exception(NFS_SERVER(inode),
1999 _nfs4_proc_link(inode, dir, name),
2000 &exception);
2001 } while (exception.retry);
2002 return err;
2003}
2004
Chuck Lever4f390c12006-08-22 20:06:22 -04002005static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002006 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
2008 struct nfs_server *server = NFS_SERVER(dir);
Chuck Lever4f390c12006-08-22 20:06:22 -04002009 struct nfs_fh fhandle;
2010 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 struct nfs4_create_arg arg = {
2012 .dir_fh = NFS_FH(dir),
2013 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002014 .name = &dentry->d_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 .attrs = sattr,
2016 .ftype = NF4LNK,
2017 .bitmask = server->attr_bitmask,
2018 };
2019 struct nfs4_create_res res = {
2020 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002021 .fh = &fhandle,
2022 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002023 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 };
2025 struct rpc_message msg = {
2026 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK],
2027 .rpc_argp = &arg,
2028 .rpc_resp = &res,
2029 };
2030 int status;
2031
Chuck Lever94a6d752006-08-22 20:06:23 -04002032 if (len > NFS4_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -04002034
Chuck Lever94a6d752006-08-22 20:06:23 -04002035 arg.u.symlink.pages = &page;
2036 arg.u.symlink.len = len;
Chuck Lever4f390c12006-08-22 20:06:22 -04002037 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002038 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Chuck Lever4f390c12006-08-22 20:06:22 -04002041 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 update_changeattr(dir, &res.dir_cinfo);
Chuck Lever4f390c12006-08-22 20:06:22 -04002043 nfs_post_op_update_inode(dir, res.dir_fattr);
2044 status = nfs_instantiate(dentry, &fhandle, &fattr);
2045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return status;
2047}
2048
Chuck Lever4f390c12006-08-22 20:06:22 -04002049static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002050 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051{
2052 struct nfs4_exception exception = { };
2053 int err;
2054 do {
2055 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002056 _nfs4_proc_symlink(dir, dentry, page,
2057 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 &exception);
2059 } while (exception.retry);
2060 return err;
2061}
2062
2063static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2064 struct iattr *sattr)
2065{
2066 struct nfs_server *server = NFS_SERVER(dir);
2067 struct nfs_fh fhandle;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002068 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 struct nfs4_create_arg arg = {
2070 .dir_fh = NFS_FH(dir),
2071 .server = server,
2072 .name = &dentry->d_name,
2073 .attrs = sattr,
2074 .ftype = NF4DIR,
2075 .bitmask = server->attr_bitmask,
2076 };
2077 struct nfs4_create_res res = {
2078 .server = server,
2079 .fh = &fhandle,
2080 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002081 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 };
2083 struct rpc_message msg = {
2084 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2085 .rpc_argp = &arg,
2086 .rpc_resp = &res,
2087 };
2088 int status;
2089
Trond Myklebust0e574af2005-10-27 22:12:38 -04002090 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002091 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2094 if (!status) {
2095 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002096 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 status = nfs_instantiate(dentry, &fhandle, &fattr);
2098 }
2099 return status;
2100}
2101
2102static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2103 struct iattr *sattr)
2104{
2105 struct nfs4_exception exception = { };
2106 int err;
2107 do {
2108 err = nfs4_handle_exception(NFS_SERVER(dir),
2109 _nfs4_proc_mkdir(dir, dentry, sattr),
2110 &exception);
2111 } while (exception.retry);
2112 return err;
2113}
2114
2115static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2116 u64 cookie, struct page *page, unsigned int count, int plus)
2117{
2118 struct inode *dir = dentry->d_inode;
2119 struct nfs4_readdir_arg args = {
2120 .fh = NFS_FH(dir),
2121 .pages = &page,
2122 .pgbase = 0,
2123 .count = count,
2124 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2125 };
2126 struct nfs4_readdir_res res;
2127 struct rpc_message msg = {
2128 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2129 .rpc_argp = &args,
2130 .rpc_resp = &res,
2131 .rpc_cred = cred,
2132 };
2133 int status;
2134
Trond Myklebusteadf4592005-06-22 17:16:39 +00002135 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__,
2136 dentry->d_parent->d_name.name,
2137 dentry->d_name.name,
2138 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2140 res.pgbase = args.pgbase;
2141 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2142 if (status == 0)
2143 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebusteadf4592005-06-22 17:16:39 +00002144 dprintk("%s: returns %d\n", __FUNCTION__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 return status;
2146}
2147
2148static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2149 u64 cookie, struct page *page, unsigned int count, int plus)
2150{
2151 struct nfs4_exception exception = { };
2152 int err;
2153 do {
2154 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2155 _nfs4_proc_readdir(dentry, cred, cookie,
2156 page, count, plus),
2157 &exception);
2158 } while (exception.retry);
2159 return err;
2160}
2161
2162static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2163 struct iattr *sattr, dev_t rdev)
2164{
2165 struct nfs_server *server = NFS_SERVER(dir);
2166 struct nfs_fh fh;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002167 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 struct nfs4_create_arg arg = {
2169 .dir_fh = NFS_FH(dir),
2170 .server = server,
2171 .name = &dentry->d_name,
2172 .attrs = sattr,
2173 .bitmask = server->attr_bitmask,
2174 };
2175 struct nfs4_create_res res = {
2176 .server = server,
2177 .fh = &fh,
2178 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002179 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 };
2181 struct rpc_message msg = {
2182 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2183 .rpc_argp = &arg,
2184 .rpc_resp = &res,
2185 };
2186 int status;
2187 int mode = sattr->ia_mode;
2188
Trond Myklebust0e574af2005-10-27 22:12:38 -04002189 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002190 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2193 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2194 if (S_ISFIFO(mode))
2195 arg.ftype = NF4FIFO;
2196 else if (S_ISBLK(mode)) {
2197 arg.ftype = NF4BLK;
2198 arg.u.device.specdata1 = MAJOR(rdev);
2199 arg.u.device.specdata2 = MINOR(rdev);
2200 }
2201 else if (S_ISCHR(mode)) {
2202 arg.ftype = NF4CHR;
2203 arg.u.device.specdata1 = MAJOR(rdev);
2204 arg.u.device.specdata2 = MINOR(rdev);
2205 }
2206 else
2207 arg.ftype = NF4SOCK;
2208
2209 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2210 if (status == 0) {
2211 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002212 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 status = nfs_instantiate(dentry, &fh, &fattr);
2214 }
2215 return status;
2216}
2217
2218static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2219 struct iattr *sattr, dev_t rdev)
2220{
2221 struct nfs4_exception exception = { };
2222 int err;
2223 do {
2224 err = nfs4_handle_exception(NFS_SERVER(dir),
2225 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2226 &exception);
2227 } while (exception.retry);
2228 return err;
2229}
2230
2231static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2232 struct nfs_fsstat *fsstat)
2233{
2234 struct nfs4_statfs_arg args = {
2235 .fh = fhandle,
2236 .bitmask = server->attr_bitmask,
2237 };
2238 struct rpc_message msg = {
2239 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2240 .rpc_argp = &args,
2241 .rpc_resp = fsstat,
2242 };
2243
Trond Myklebust0e574af2005-10-27 22:12:38 -04002244 nfs_fattr_init(fsstat->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 return rpc_call_sync(server->client, &msg, 0);
2246}
2247
2248static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2249{
2250 struct nfs4_exception exception = { };
2251 int err;
2252 do {
2253 err = nfs4_handle_exception(server,
2254 _nfs4_proc_statfs(server, fhandle, fsstat),
2255 &exception);
2256 } while (exception.retry);
2257 return err;
2258}
2259
2260static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2261 struct nfs_fsinfo *fsinfo)
2262{
2263 struct nfs4_fsinfo_arg args = {
2264 .fh = fhandle,
2265 .bitmask = server->attr_bitmask,
2266 };
2267 struct rpc_message msg = {
2268 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2269 .rpc_argp = &args,
2270 .rpc_resp = fsinfo,
2271 };
2272
2273 return rpc_call_sync(server->client, &msg, 0);
2274}
2275
2276static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2277{
2278 struct nfs4_exception exception = { };
2279 int err;
2280
2281 do {
2282 err = nfs4_handle_exception(server,
2283 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2284 &exception);
2285 } while (exception.retry);
2286 return err;
2287}
2288
2289static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2290{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002291 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2293}
2294
2295static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2296 struct nfs_pathconf *pathconf)
2297{
2298 struct nfs4_pathconf_arg args = {
2299 .fh = fhandle,
2300 .bitmask = server->attr_bitmask,
2301 };
2302 struct rpc_message msg = {
2303 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2304 .rpc_argp = &args,
2305 .rpc_resp = pathconf,
2306 };
2307
2308 /* None of the pathconf attributes are mandatory to implement */
2309 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2310 memset(pathconf, 0, sizeof(*pathconf));
2311 return 0;
2312 }
2313
Trond Myklebust0e574af2005-10-27 22:12:38 -04002314 nfs_fattr_init(pathconf->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 return rpc_call_sync(server->client, &msg, 0);
2316}
2317
2318static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2319 struct nfs_pathconf *pathconf)
2320{
2321 struct nfs4_exception exception = { };
2322 int err;
2323
2324 do {
2325 err = nfs4_handle_exception(server,
2326 _nfs4_proc_pathconf(server, fhandle, pathconf),
2327 &exception);
2328 } while (exception.retry);
2329 return err;
2330}
2331
Trond Myklebustec06c092006-03-20 13:44:27 -05002332static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
Trond Myklebustec06c092006-03-20 13:44:27 -05002334 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Trond Myklebustec06c092006-03-20 13:44:27 -05002336 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002338 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
2340 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002341 renew_lease(server, data->timestamp);
2342 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
2344
Trond Myklebustec06c092006-03-20 13:44:27 -05002345static void nfs4_proc_read_setup(struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 struct rpc_message msg = {
2348 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ],
2349 .rpc_argp = &data->args,
2350 .rpc_resp = &data->res,
2351 .rpc_cred = data->cred,
2352 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354 data->timestamp = jiffies;
2355
Trond Myklebustec06c092006-03-20 13:44:27 -05002356 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357}
2358
Trond Myklebust788e7a82006-03-20 13:44:27 -05002359static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 struct inode *inode = data->inode;
2362
2363 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2364 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002365 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002367 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002369 nfs_post_op_update_inode(inode, data->res.fattr);
2370 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002371 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
Trond Myklebust788e7a82006-03-20 13:44:27 -05002374static void nfs4_proc_write_setup(struct nfs_write_data *data, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 struct rpc_message msg = {
2377 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE],
2378 .rpc_argp = &data->args,
2379 .rpc_resp = &data->res,
2380 .rpc_cred = data->cred,
2381 };
2382 struct inode *inode = data->inode;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002383 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 int stable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386 if (how & FLUSH_STABLE) {
2387 if (!NFS_I(inode)->ncommit)
2388 stable = NFS_FILE_SYNC;
2389 else
2390 stable = NFS_DATA_SYNC;
2391 } else
2392 stable = NFS_UNSTABLE;
2393 data->args.stable = stable;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002394 data->args.bitmask = server->attr_bitmask;
2395 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397 data->timestamp = jiffies;
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 /* Finalize the task. */
Trond Myklebust788e7a82006-03-20 13:44:27 -05002400 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401}
2402
Trond Myklebust788e7a82006-03-20 13:44:27 -05002403static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 struct inode *inode = data->inode;
2406
2407 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2408 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002409 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002411 if (task->tk_status >= 0)
2412 nfs_post_op_update_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002413 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
Trond Myklebust788e7a82006-03-20 13:44:27 -05002416static void nfs4_proc_commit_setup(struct nfs_write_data *data, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 struct rpc_message msg = {
2419 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
2420 .rpc_argp = &data->args,
2421 .rpc_resp = &data->res,
2422 .rpc_cred = data->cred,
2423 };
Trond Myklebust788e7a82006-03-20 13:44:27 -05002424 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002426 data->args.bitmask = server->attr_bitmask;
2427 data->res.server = server;
2428
Trond Myklebust788e7a82006-03-20 13:44:27 -05002429 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
2432/*
2433 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2434 * standalone procedure for queueing an asynchronous RENEW.
2435 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002436static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
David Howellsadfa6f92006-08-22 20:06:08 -04002438 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002439 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441 if (task->tk_status < 0) {
2442 switch (task->tk_status) {
2443 case -NFS4ERR_STALE_CLIENTID:
2444 case -NFS4ERR_EXPIRED:
2445 case -NFS4ERR_CB_PATH_DOWN:
2446 nfs4_schedule_state_recovery(clp);
2447 }
2448 return;
2449 }
2450 spin_lock(&clp->cl_lock);
2451 if (time_before(clp->cl_last_renewal,timestamp))
2452 clp->cl_last_renewal = timestamp;
2453 spin_unlock(&clp->cl_lock);
2454}
2455
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002456static const struct rpc_call_ops nfs4_renew_ops = {
2457 .rpc_call_done = nfs4_renew_done,
2458};
2459
David Howellsadfa6f92006-08-22 20:06:08 -04002460int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
2462 struct rpc_message msg = {
2463 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2464 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002465 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 };
2467
2468 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002469 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
David Howellsadfa6f92006-08-22 20:06:08 -04002472int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
2474 struct rpc_message msg = {
2475 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2476 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002477 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 };
2479 unsigned long now = jiffies;
2480 int status;
2481
2482 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2483 if (status < 0)
2484 return status;
2485 spin_lock(&clp->cl_lock);
2486 if (time_before(clp->cl_last_renewal,now))
2487 clp->cl_last_renewal = now;
2488 spin_unlock(&clp->cl_lock);
2489 return 0;
2490}
2491
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002492static inline int nfs4_server_supports_acls(struct nfs_server *server)
2493{
2494 return (server->caps & NFS_CAP_ACLS)
2495 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2496 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2497}
2498
2499/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2500 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2501 * the stack.
2502 */
2503#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2504
2505static void buf_to_pages(const void *buf, size_t buflen,
2506 struct page **pages, unsigned int *pgbase)
2507{
2508 const void *p = buf;
2509
2510 *pgbase = offset_in_page(buf);
2511 p -= *pgbase;
2512 while (p < buf + buflen) {
2513 *(pages++) = virt_to_page(p);
2514 p += PAGE_CACHE_SIZE;
2515 }
2516}
2517
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002518struct nfs4_cached_acl {
2519 int cached;
2520 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002521 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002522};
2523
2524static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002525{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002526 struct nfs_inode *nfsi = NFS_I(inode);
2527
2528 spin_lock(&inode->i_lock);
2529 kfree(nfsi->nfs4_acl);
2530 nfsi->nfs4_acl = acl;
2531 spin_unlock(&inode->i_lock);
2532}
2533
2534static void nfs4_zap_acl_attr(struct inode *inode)
2535{
2536 nfs4_set_cached_acl(inode, NULL);
2537}
2538
2539static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2540{
2541 struct nfs_inode *nfsi = NFS_I(inode);
2542 struct nfs4_cached_acl *acl;
2543 int ret = -ENOENT;
2544
2545 spin_lock(&inode->i_lock);
2546 acl = nfsi->nfs4_acl;
2547 if (acl == NULL)
2548 goto out;
2549 if (buf == NULL) /* user is just asking for length */
2550 goto out_len;
2551 if (acl->cached == 0)
2552 goto out;
2553 ret = -ERANGE; /* see getxattr(2) man page */
2554 if (acl->len > buflen)
2555 goto out;
2556 memcpy(buf, acl->data, acl->len);
2557out_len:
2558 ret = acl->len;
2559out:
2560 spin_unlock(&inode->i_lock);
2561 return ret;
2562}
2563
2564static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2565{
2566 struct nfs4_cached_acl *acl;
2567
2568 if (buf && acl_len <= PAGE_SIZE) {
2569 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2570 if (acl == NULL)
2571 goto out;
2572 acl->cached = 1;
2573 memcpy(acl->data, buf, acl_len);
2574 } else {
2575 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2576 if (acl == NULL)
2577 goto out;
2578 acl->cached = 0;
2579 }
2580 acl->len = acl_len;
2581out:
2582 nfs4_set_cached_acl(inode, acl);
2583}
2584
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002585static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002586{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002587 struct page *pages[NFS4ACL_MAXPAGES];
2588 struct nfs_getaclargs args = {
2589 .fh = NFS_FH(inode),
2590 .acl_pages = pages,
2591 .acl_len = buflen,
2592 };
2593 size_t resp_len = buflen;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002594 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002595 struct rpc_message msg = {
2596 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2597 .rpc_argp = &args,
2598 .rpc_resp = &resp_len,
2599 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002600 struct page *localpage = NULL;
2601 int ret;
2602
2603 if (buflen < PAGE_SIZE) {
2604 /* As long as we're doing a round trip to the server anyway,
2605 * let's be prepared for a page of acl data. */
2606 localpage = alloc_page(GFP_KERNEL);
2607 resp_buf = page_address(localpage);
2608 if (localpage == NULL)
2609 return -ENOMEM;
2610 args.acl_pages[0] = localpage;
2611 args.acl_pgbase = 0;
J. Bruce Fields1d95db82005-10-13 16:54:32 -04002612 resp_len = args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002613 } else {
2614 resp_buf = buf;
2615 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2616 }
2617 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2618 if (ret)
2619 goto out_free;
2620 if (resp_len > args.acl_len)
2621 nfs4_write_cached_acl(inode, NULL, resp_len);
2622 else
2623 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2624 if (buf) {
2625 ret = -ERANGE;
2626 if (resp_len > buflen)
2627 goto out_free;
2628 if (localpage)
2629 memcpy(buf, resp_buf, resp_len);
2630 }
2631 ret = resp_len;
2632out_free:
2633 if (localpage)
2634 __free_page(localpage);
2635 return ret;
2636}
2637
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002638static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2639{
2640 struct nfs4_exception exception = { };
2641 ssize_t ret;
2642 do {
2643 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2644 if (ret >= 0)
2645 break;
2646 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2647 } while (exception.retry);
2648 return ret;
2649}
2650
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002651static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2652{
2653 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002654 int ret;
2655
2656 if (!nfs4_server_supports_acls(server))
2657 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002658 ret = nfs_revalidate_inode(server, inode);
2659 if (ret < 0)
2660 return ret;
2661 ret = nfs4_read_cached_acl(inode, buf, buflen);
2662 if (ret != -ENOENT)
2663 return ret;
2664 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002665}
2666
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002667static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002668{
2669 struct nfs_server *server = NFS_SERVER(inode);
2670 struct page *pages[NFS4ACL_MAXPAGES];
2671 struct nfs_setaclargs arg = {
2672 .fh = NFS_FH(inode),
2673 .acl_pages = pages,
2674 .acl_len = buflen,
2675 };
2676 struct rpc_message msg = {
2677 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2678 .rpc_argp = &arg,
2679 .rpc_resp = NULL,
2680 };
2681 int ret;
2682
2683 if (!nfs4_server_supports_acls(server))
2684 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002685 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002686 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
David Howells1f163412006-08-22 20:06:11 -04002687 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
J. Bruce Fields08efa202007-05-01 10:56:25 -04002688 nfs_zap_caches(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002689 return ret;
2690}
2691
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002692static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2693{
2694 struct nfs4_exception exception = { };
2695 int err;
2696 do {
2697 err = nfs4_handle_exception(NFS_SERVER(inode),
2698 __nfs4_proc_set_acl(inode, buf, buflen),
2699 &exception);
2700 } while (exception.retry);
2701 return err;
2702}
2703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704static int
Trond Myklebustfaf5f492005-10-18 14:20:15 -07002705nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706{
David Howells7539bba2006-08-22 20:06:09 -04002707 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709 if (!clp || task->tk_status >= 0)
2710 return 0;
2711 switch(task->tk_status) {
2712 case -NFS4ERR_STALE_CLIENTID:
2713 case -NFS4ERR_STALE_STATEID:
2714 case -NFS4ERR_EXPIRED:
2715 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL, NULL);
2716 nfs4_schedule_state_recovery(clp);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002717 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 rpc_wake_up_task(task);
2719 task->tk_status = 0;
2720 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 case -NFS4ERR_DELAY:
Chuck Lever006ea732006-03-20 13:44:14 -05002722 nfs_inc_server_stats((struct nfs_server *) server,
2723 NFSIOS_DELAY);
2724 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2726 task->tk_status = 0;
2727 return -EAGAIN;
2728 case -NFS4ERR_OLD_STATEID:
2729 task->tk_status = 0;
2730 return -EAGAIN;
2731 }
2732 task->tk_status = nfs4_map_errors(task->tk_status);
2733 return 0;
2734}
2735
Trond Myklebust433fbe42006-01-03 09:55:22 +01002736static int nfs4_wait_bit_interruptible(void *word)
2737{
2738 if (signal_pending(current))
2739 return -ERESTARTSYS;
2740 schedule();
2741 return 0;
2742}
2743
David Howellsadfa6f92006-08-22 20:06:08 -04002744static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 sigset_t oldset;
Trond Myklebust433fbe42006-01-03 09:55:22 +01002747 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
2749 might_sleep();
2750
Trond Myklebuste1485822006-12-13 16:43:13 -05002751 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2752
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 rpc_clnt_sigmask(clnt, &oldset);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002754 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
2755 nfs4_wait_bit_interruptible,
2756 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 rpc_clnt_sigunmask(clnt, &oldset);
Trond Myklebuste1485822006-12-13 16:43:13 -05002758
2759 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 return res;
2761}
2762
2763static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2764{
2765 sigset_t oldset;
2766 int res = 0;
2767
2768 might_sleep();
2769
2770 if (*timeout <= 0)
2771 *timeout = NFS4_POLL_RETRY_MIN;
2772 if (*timeout > NFS4_POLL_RETRY_MAX)
2773 *timeout = NFS4_POLL_RETRY_MAX;
2774 rpc_clnt_sigmask(clnt, &oldset);
2775 if (clnt->cl_intr) {
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002776 schedule_timeout_interruptible(*timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (signalled())
2778 res = -ERESTARTSYS;
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002779 } else
2780 schedule_timeout_uninterruptible(*timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 rpc_clnt_sigunmask(clnt, &oldset);
2782 *timeout <<= 1;
2783 return res;
2784}
2785
2786/* This is the error handling routine for processes that are allowed
2787 * to sleep.
2788 */
Trond Myklebust10afec92007-05-14 17:16:04 -04002789static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790{
David Howells7539bba2006-08-22 20:06:09 -04002791 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 int ret = errorcode;
2793
2794 exception->retry = 0;
2795 switch(errorcode) {
2796 case 0:
2797 return 0;
2798 case -NFS4ERR_STALE_CLIENTID:
2799 case -NFS4ERR_STALE_STATEID:
2800 case -NFS4ERR_EXPIRED:
Trond Myklebust433fbe42006-01-03 09:55:22 +01002801 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 ret = nfs4_wait_clnt_recover(server->client, clp);
2803 if (ret == 0)
2804 exception->retry = 1;
2805 break;
Trond Myklebustc5149832006-09-15 08:25:04 -04002806 case -NFS4ERR_FILE_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 case -NFS4ERR_GRACE:
2808 case -NFS4ERR_DELAY:
2809 ret = nfs4_delay(server->client, &exception->timeout);
Trond Myklebust2c566172005-11-04 15:33:50 -05002810 if (ret != 0)
2811 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 case -NFS4ERR_OLD_STATEID:
Trond Myklebust2c566172005-11-04 15:33:50 -05002813 exception->retry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 }
2815 /* We failed to handle the error */
2816 return nfs4_map_errors(ret);
2817}
2818
David Howellsadfa6f92006-08-22 20:06:08 -04002819int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
2821 nfs4_verifier sc_verifier;
2822 struct nfs4_setclientid setclientid = {
2823 .sc_verifier = &sc_verifier,
2824 .sc_prog = program,
2825 };
2826 struct rpc_message msg = {
2827 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2828 .rpc_argp = &setclientid,
2829 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002830 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 };
Al Virobc4785c2006-10-19 23:28:51 -07002832 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 int loop = 0;
2834 int status;
2835
Al Virobc4785c2006-10-19 23:28:51 -07002836 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2838 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2839
2840 for(;;) {
2841 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
2842 sizeof(setclientid.sc_name), "%s/%u.%u.%u.%u %s %u",
David Howells24c8dbb2006-08-22 20:06:10 -04002843 clp->cl_ipaddr, NIPQUAD(clp->cl_addr.sin_addr),
Trond Myklebust286d7d62006-01-03 09:55:26 +01002844 cred->cr_ops->cr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 clp->cl_id_uniquifier);
2846 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
2847 sizeof(setclientid.sc_netid), "tcp");
2848 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
2849 sizeof(setclientid.sc_uaddr), "%s.%d.%d",
2850 clp->cl_ipaddr, port >> 8, port & 255);
2851
2852 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2853 if (status != -NFS4ERR_CLID_INUSE)
2854 break;
2855 if (signalled())
2856 break;
2857 if (loop++ & 1)
2858 ssleep(clp->cl_lease_time + 1);
2859 else
2860 if (++clp->cl_id_uniquifier == 0)
2861 break;
2862 }
2863 return status;
2864}
2865
David Howellsadfa6f92006-08-22 20:06:08 -04002866static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867{
2868 struct nfs_fsinfo fsinfo;
2869 struct rpc_message msg = {
2870 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2871 .rpc_argp = clp,
2872 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002873 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 };
2875 unsigned long now;
2876 int status;
2877
2878 now = jiffies;
2879 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2880 if (status == 0) {
2881 spin_lock(&clp->cl_lock);
2882 clp->cl_lease_time = fsinfo.lease_time * HZ;
2883 clp->cl_last_renewal = now;
Trond Myklebust58d97142006-01-03 09:55:24 +01002884 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 spin_unlock(&clp->cl_lock);
2886 }
2887 return status;
2888}
2889
David Howellsadfa6f92006-08-22 20:06:08 -04002890int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05002891{
2892 long timeout;
2893 int err;
2894 do {
2895 err = _nfs4_proc_setclientid_confirm(clp, cred);
2896 switch (err) {
2897 case 0:
2898 return err;
2899 case -NFS4ERR_RESOURCE:
2900 /* The IBM lawyers misread another document! */
2901 case -NFS4ERR_DELAY:
2902 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2903 }
2904 } while (err == 0);
2905 return err;
2906}
2907
Trond Myklebustfe650402006-01-03 09:55:18 +01002908struct nfs4_delegreturndata {
2909 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002910 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01002911 struct nfs_fh fh;
2912 nfs4_stateid stateid;
2913 struct rpc_cred *cred;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002914 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002915 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01002916 int rpc_status;
2917};
2918
2919static void nfs4_delegreturn_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920{
Trond Myklebustfe650402006-01-03 09:55:18 +01002921 struct nfs4_delegreturndata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 struct rpc_message msg = {
2923 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
Trond Myklebustfe650402006-01-03 09:55:18 +01002924 .rpc_argp = &data->args,
Trond Myklebustfa178f22006-01-03 09:55:38 +01002925 .rpc_resp = &data->res,
Trond Myklebustfe650402006-01-03 09:55:18 +01002926 .rpc_cred = data->cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 };
Trond Myklebustfa178f22006-01-03 09:55:38 +01002928 nfs_fattr_init(data->res.fattr);
Trond Myklebustfe650402006-01-03 09:55:18 +01002929 rpc_call_setup(task, &msg, 0);
2930}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
Trond Myklebustfe650402006-01-03 09:55:18 +01002932static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2933{
2934 struct nfs4_delegreturndata *data = calldata;
2935 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002936 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01002937 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01002938}
2939
2940static void nfs4_delegreturn_release(void *calldata)
2941{
2942 struct nfs4_delegreturndata *data = calldata;
2943
2944 put_rpccred(data->cred);
2945 kfree(calldata);
2946}
2947
Jesper Juhlc8d149f2006-03-20 13:44:07 -05002948static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01002949 .rpc_call_prepare = nfs4_delegreturn_prepare,
2950 .rpc_call_done = nfs4_delegreturn_done,
2951 .rpc_release = nfs4_delegreturn_release,
2952};
2953
2954static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
2955{
2956 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002957 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01002958 struct rpc_task *task;
2959 int status;
2960
2961 data = kmalloc(sizeof(*data), GFP_KERNEL);
2962 if (data == NULL)
2963 return -ENOMEM;
2964 data->args.fhandle = &data->fh;
2965 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002966 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01002967 nfs_copy_fh(&data->fh, NFS_FH(inode));
2968 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01002969 data->res.fattr = &data->fattr;
2970 data->res.server = server;
Trond Myklebustfe650402006-01-03 09:55:18 +01002971 data->cred = get_rpccred(cred);
Trond Myklebust26e976a2006-01-03 09:55:21 +01002972 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01002973 data->rpc_status = 0;
2974
2975 task = rpc_run_task(NFS_CLIENT(inode), RPC_TASK_ASYNC, &nfs4_delegreturn_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05002976 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01002977 return PTR_ERR(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01002978 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebustfa178f22006-01-03 09:55:38 +01002979 if (status == 0) {
Trond Myklebustfe650402006-01-03 09:55:18 +01002980 status = data->rpc_status;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002981 if (status == 0)
2982 nfs_post_op_update_inode(inode, &data->fattr);
2983 }
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05002984 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01002985 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
2987
2988int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
2989{
2990 struct nfs_server *server = NFS_SERVER(inode);
2991 struct nfs4_exception exception = { };
2992 int err;
2993 do {
2994 err = _nfs4_proc_delegreturn(inode, cred, stateid);
2995 switch (err) {
2996 case -NFS4ERR_STALE_STATEID:
2997 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 case 0:
2999 return 0;
3000 }
3001 err = nfs4_handle_exception(server, err, &exception);
3002 } while (exception.retry);
3003 return err;
3004}
3005
3006#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3007#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3008
3009/*
3010 * sleep, with exponential backoff, and retry the LOCK operation.
3011 */
3012static unsigned long
3013nfs4_set_lock_task_retry(unsigned long timeout)
3014{
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07003015 schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 timeout <<= 1;
3017 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3018 return NFS4_LOCK_MAXTIMEOUT;
3019 return timeout;
3020}
3021
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3023{
3024 struct inode *inode = state->inode;
3025 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003026 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003027 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003029 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003031 struct nfs_lockt_res res = {
3032 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 };
3034 struct rpc_message msg = {
3035 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3036 .rpc_argp = &arg,
3037 .rpc_resp = &res,
3038 .rpc_cred = state->owner->so_cred,
3039 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 struct nfs4_lock_state *lsp;
3041 int status;
3042
3043 down_read(&clp->cl_sem);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003044 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003045 status = nfs4_set_lock_state(state, request);
3046 if (status != 0)
3047 goto out;
3048 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003049 arg.lock_owner.id = lsp->ls_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003051 switch (status) {
3052 case 0:
3053 request->fl_type = F_UNLCK;
3054 break;
3055 case -NFS4ERR_DENIED:
3056 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003058 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003059out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 up_read(&clp->cl_sem);
3061 return status;
3062}
3063
3064static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3065{
3066 struct nfs4_exception exception = { };
3067 int err;
3068
3069 do {
3070 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3071 _nfs4_proc_getlk(state, cmd, request),
3072 &exception);
3073 } while (exception.retry);
3074 return err;
3075}
3076
3077static int do_vfs_lock(struct file *file, struct file_lock *fl)
3078{
3079 int res = 0;
3080 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3081 case FL_POSIX:
3082 res = posix_lock_file_wait(file, fl);
3083 break;
3084 case FL_FLOCK:
3085 res = flock_lock_file_wait(file, fl);
3086 break;
3087 default:
3088 BUG();
3089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 return res;
3091}
3092
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003093struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003094 struct nfs_locku_args arg;
3095 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003096 struct nfs4_lock_state *lsp;
3097 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003098 struct file_lock fl;
3099 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003100 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003101};
3102
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003103static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3104 struct nfs_open_context *ctx,
3105 struct nfs4_lock_state *lsp,
3106 struct nfs_seqid *seqid)
3107{
3108 struct nfs4_unlockdata *p;
3109 struct inode *inode = lsp->ls_state->inode;
3110
3111 p = kmalloc(sizeof(*p), GFP_KERNEL);
3112 if (p == NULL)
3113 return NULL;
3114 p->arg.fh = NFS_FH(inode);
3115 p->arg.fl = &p->fl;
3116 p->arg.seqid = seqid;
3117 p->arg.stateid = &lsp->ls_stateid;
3118 p->lsp = lsp;
3119 atomic_inc(&lsp->ls_count);
3120 /* Ensure we don't close file until we're done freeing locks! */
3121 p->ctx = get_nfs_open_context(ctx);
3122 memcpy(&p->fl, fl, sizeof(p->fl));
3123 p->server = NFS_SERVER(inode);
3124 return p;
3125}
3126
Trond Myklebust06f814a2006-01-03 09:55:07 +01003127static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003128{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003129 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003130 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003131 nfs4_put_lock_state(calldata->lsp);
3132 put_nfs_open_context(calldata->ctx);
3133 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003134}
3135
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003136static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003137{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003138 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003139
Trond Myklebust06f814a2006-01-03 09:55:07 +01003140 if (RPC_ASSASSINATED(task))
3141 return;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003142 nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003143 switch (task->tk_status) {
3144 case 0:
3145 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003146 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003147 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003148 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003149 break;
3150 case -NFS4ERR_STALE_STATEID:
3151 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003152 break;
3153 default:
Trond Myklebusta6a352e2006-12-13 16:43:06 -05003154 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003155 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003156 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003157}
3158
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003159static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003160{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003161 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 struct rpc_message msg = {
3163 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003164 .rpc_argp = &calldata->arg,
3165 .rpc_resp = &calldata->res,
3166 .rpc_cred = calldata->lsp->ls_state->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003169 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003170 return;
3171 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003172 /* Note: exit _without_ running nfs4_locku_done */
3173 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003174 return;
3175 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003176 calldata->timestamp = jiffies;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003177 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178}
3179
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003180static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003181 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003182 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003183 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003184};
3185
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003186static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3187 struct nfs_open_context *ctx,
3188 struct nfs4_lock_state *lsp,
3189 struct nfs_seqid *seqid)
3190{
3191 struct nfs4_unlockdata *data;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003192
3193 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3194 if (data == NULL) {
3195 nfs_free_seqid(seqid);
3196 return ERR_PTR(-ENOMEM);
3197 }
3198
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003199 return rpc_run_task(NFS_CLIENT(lsp->ls_state->inode), RPC_TASK_ASYNC, &nfs4_locku_ops, data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003200}
3201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3203{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003204 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003205 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003206 struct rpc_task *task;
3207 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
Trond Myklebust9b073572006-06-29 16:38:34 -04003209 status = nfs4_set_lock_state(state, request);
3210 /* Unlock _before_ we do the RPC call */
3211 request->fl_flags |= FL_EXISTS;
3212 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3213 goto out;
3214 if (status != 0)
3215 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003216 /* Is this a delegated lock? */
3217 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003218 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003219 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003220 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003221 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003222 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003223 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003224 task = nfs4_do_unlck(request, request->fl_file->private_data, lsp, seqid);
3225 status = PTR_ERR(task);
3226 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003227 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003228 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003229 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003230out:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003231 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232}
3233
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003234struct nfs4_lockdata {
3235 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003236 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003237 struct nfs4_lock_state *lsp;
3238 struct nfs_open_context *ctx;
3239 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003240 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003241 int rpc_status;
3242 int cancelled;
3243};
3244
3245static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3246 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3247{
3248 struct nfs4_lockdata *p;
3249 struct inode *inode = lsp->ls_state->inode;
3250 struct nfs_server *server = NFS_SERVER(inode);
3251
3252 p = kzalloc(sizeof(*p), GFP_KERNEL);
3253 if (p == NULL)
3254 return NULL;
3255
3256 p->arg.fh = NFS_FH(inode);
3257 p->arg.fl = &p->fl;
3258 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3259 if (p->arg.lock_seqid == NULL)
3260 goto out_free;
3261 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003262 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003263 p->arg.lock_owner.id = lsp->ls_id;
3264 p->lsp = lsp;
3265 atomic_inc(&lsp->ls_count);
3266 p->ctx = get_nfs_open_context(ctx);
3267 memcpy(&p->fl, fl, sizeof(p->fl));
3268 return p;
3269out_free:
3270 kfree(p);
3271 return NULL;
3272}
3273
3274static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3275{
3276 struct nfs4_lockdata *data = calldata;
3277 struct nfs4_state *state = data->lsp->ls_state;
3278 struct nfs4_state_owner *sp = state->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 struct rpc_message msg = {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003280 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3281 .rpc_argp = &data->arg,
3282 .rpc_resp = &data->res,
3283 .rpc_cred = sp->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003286 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3287 return;
3288 dprintk("%s: begin!\n", __FUNCTION__);
3289 /* Do we need to do an open_to_lock_owner? */
3290 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
3291 data->arg.open_seqid = nfs_alloc_seqid(&sp->so_seqid);
3292 if (data->arg.open_seqid == NULL) {
3293 data->rpc_status = -ENOMEM;
3294 task->tk_action = NULL;
Trond Myklebust06735b32005-10-18 14:20:15 -07003295 goto out;
Trond Myklebust06735b32005-10-18 14:20:15 -07003296 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003297 data->arg.open_stateid = &state->stateid;
3298 data->arg.new_lock_owner = 1;
3299 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003300 data->timestamp = jiffies;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003301 rpc_call_setup(task, &msg, 0);
Trond Myklebust06735b32005-10-18 14:20:15 -07003302out:
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003303 dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status);
3304}
3305
3306static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3307{
3308 struct nfs4_lockdata *data = calldata;
3309
3310 dprintk("%s: begin!\n", __FUNCTION__);
3311
3312 data->rpc_status = task->tk_status;
3313 if (RPC_ASSASSINATED(task))
3314 goto out;
3315 if (data->arg.new_lock_owner != 0) {
3316 nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid);
3317 if (data->rpc_status == 0)
3318 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3319 else
3320 goto out;
3321 }
3322 if (data->rpc_status == 0) {
3323 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3324 sizeof(data->lsp->ls_stateid.data));
3325 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003326 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003327 }
3328 nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid);
3329out:
3330 dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status);
3331}
3332
3333static void nfs4_lock_release(void *calldata)
3334{
3335 struct nfs4_lockdata *data = calldata;
3336
3337 dprintk("%s: begin!\n", __FUNCTION__);
3338 if (data->arg.open_seqid != NULL)
3339 nfs_free_seqid(data->arg.open_seqid);
3340 if (data->cancelled != 0) {
3341 struct rpc_task *task;
3342 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3343 data->arg.lock_seqid);
3344 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003345 rpc_put_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003346 dprintk("%s: cancelling lock!\n", __FUNCTION__);
3347 } else
3348 nfs_free_seqid(data->arg.lock_seqid);
3349 nfs4_put_lock_state(data->lsp);
3350 put_nfs_open_context(data->ctx);
3351 kfree(data);
3352 dprintk("%s: done!\n", __FUNCTION__);
3353}
3354
3355static const struct rpc_call_ops nfs4_lock_ops = {
3356 .rpc_call_prepare = nfs4_lock_prepare,
3357 .rpc_call_done = nfs4_lock_done,
3358 .rpc_release = nfs4_lock_release,
3359};
3360
3361static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3362{
3363 struct nfs4_lockdata *data;
3364 struct rpc_task *task;
3365 int ret;
3366
3367 dprintk("%s: begin!\n", __FUNCTION__);
3368 data = nfs4_alloc_lockdata(fl, fl->fl_file->private_data,
3369 fl->fl_u.nfs4_fl.owner);
3370 if (data == NULL)
3371 return -ENOMEM;
3372 if (IS_SETLKW(cmd))
3373 data->arg.block = 1;
3374 if (reclaim != 0)
3375 data->arg.reclaim = 1;
3376 task = rpc_run_task(NFS_CLIENT(state->inode), RPC_TASK_ASYNC,
3377 &nfs4_lock_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003378 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003379 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003380 ret = nfs4_wait_for_completion_rpc_task(task);
3381 if (ret == 0) {
3382 ret = data->rpc_status;
3383 if (ret == -NFS4ERR_DENIED)
3384 ret = -EAGAIN;
3385 } else
3386 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003387 rpc_put_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003388 dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret);
3389 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390}
3391
3392static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3393{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003394 struct nfs_server *server = NFS_SERVER(state->inode);
3395 struct nfs4_exception exception = { };
3396 int err;
3397
3398 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003399 /* Cache the lock if possible... */
3400 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3401 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003402 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3403 if (err != -NFS4ERR_DELAY)
3404 break;
3405 nfs4_handle_exception(server, err, &exception);
3406 } while (exception.retry);
3407 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408}
3409
3410static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3411{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003412 struct nfs_server *server = NFS_SERVER(state->inode);
3413 struct nfs4_exception exception = { };
3414 int err;
3415
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003416 err = nfs4_set_lock_state(state, request);
3417 if (err != 0)
3418 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003419 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003420 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3421 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003422 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3423 if (err != -NFS4ERR_DELAY)
3424 break;
3425 nfs4_handle_exception(server, err, &exception);
3426 } while (exception.retry);
3427 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428}
3429
3430static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3431{
David Howellsadfa6f92006-08-22 20:06:08 -04003432 struct nfs_client *clp = state->owner->so_client;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003433 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 int status;
3435
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003436 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003437 status = nfs4_set_lock_state(state, request);
3438 if (status != 0)
3439 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003440 request->fl_flags |= FL_ACCESS;
3441 status = do_vfs_lock(request->fl_file, request);
3442 if (status < 0)
3443 goto out;
3444 down_read(&clp->cl_sem);
3445 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3446 struct nfs_inode *nfsi = NFS_I(state->inode);
3447 /* Yes: cache locks! */
3448 down_read(&nfsi->rwsem);
3449 /* ...but avoid races with delegation recall... */
3450 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3451 request->fl_flags = fl_flags & ~FL_SLEEP;
3452 status = do_vfs_lock(request->fl_file, request);
3453 up_read(&nfsi->rwsem);
3454 goto out_unlock;
3455 }
3456 up_read(&nfsi->rwsem);
3457 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003458 status = _nfs4_do_setlk(state, cmd, request, 0);
3459 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003460 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003461 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003462 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003463 if (do_vfs_lock(request->fl_file, request) < 0)
3464 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003465out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 up_read(&clp->cl_sem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003467out:
3468 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 return status;
3470}
3471
3472static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3473{
3474 struct nfs4_exception exception = { };
3475 int err;
3476
3477 do {
3478 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3479 _nfs4_proc_setlk(state, cmd, request),
3480 &exception);
3481 } while (exception.retry);
3482 return err;
3483}
3484
3485static int
3486nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3487{
3488 struct nfs_open_context *ctx;
3489 struct nfs4_state *state;
3490 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3491 int status;
3492
3493 /* verify open state */
3494 ctx = (struct nfs_open_context *)filp->private_data;
3495 state = ctx->state;
3496
3497 if (request->fl_start < 0 || request->fl_end < 0)
3498 return -EINVAL;
3499
3500 if (IS_GETLK(cmd))
3501 return nfs4_proc_getlk(state, F_GETLK, request);
3502
3503 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3504 return -EINVAL;
3505
3506 if (request->fl_type == F_UNLCK)
3507 return nfs4_proc_unlck(state, cmd, request);
3508
3509 do {
3510 status = nfs4_proc_setlk(state, cmd, request);
3511 if ((status != -EAGAIN) || IS_SETLK(cmd))
3512 break;
3513 timeout = nfs4_set_lock_task_retry(timeout);
3514 status = -ERESTARTSYS;
3515 if (signalled())
3516 break;
3517 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 return status;
3519}
3520
Trond Myklebust888e6942005-11-04 15:38:11 -05003521int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3522{
3523 struct nfs_server *server = NFS_SERVER(state->inode);
3524 struct nfs4_exception exception = { };
3525 int err;
3526
3527 err = nfs4_set_lock_state(state, fl);
3528 if (err != 0)
3529 goto out;
3530 do {
3531 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3532 if (err != -NFS4ERR_DELAY)
3533 break;
3534 err = nfs4_handle_exception(server, err, &exception);
3535 } while (exception.retry);
3536out:
3537 return err;
3538}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003539
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003540#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3541
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003542int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3543 size_t buflen, int flags)
3544{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003545 struct inode *inode = dentry->d_inode;
3546
3547 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3548 return -EOPNOTSUPP;
3549
3550 if (!S_ISREG(inode->i_mode) &&
3551 (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX))
3552 return -EPERM;
3553
3554 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003555}
3556
3557/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3558 * and that's what we'll do for e.g. user attributes that haven't been set.
3559 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3560 * attributes in kernel-managed attribute namespaces. */
3561ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3562 size_t buflen)
3563{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003564 struct inode *inode = dentry->d_inode;
3565
3566 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3567 return -EOPNOTSUPP;
3568
3569 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003570}
3571
3572ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3573{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003574 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003575
J. Bruce Fields096455a2006-03-20 23:23:42 -05003576 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3577 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003578 if (buf && buflen < len)
3579 return -ERANGE;
3580 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003581 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3582 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003583}
3584
Trond Myklebustc228fd32007-01-13 02:28:11 -05003585int nfs4_proc_fs_locations(struct inode *dir, struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003586 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003587{
3588 struct nfs_server *server = NFS_SERVER(dir);
3589 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003590 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3591 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003592 };
3593 struct nfs4_fs_locations_arg args = {
3594 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05003595 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003596 .page = page,
3597 .bitmask = bitmask,
3598 };
3599 struct rpc_message msg = {
3600 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3601 .rpc_argp = &args,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003602 .rpc_resp = fs_locations,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003603 };
3604 int status;
3605
3606 dprintk("%s: start\n", __FUNCTION__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05003607 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003608 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003609 fs_locations->nlocations = 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003610 status = rpc_call_sync(server->client, &msg, 0);
3611 dprintk("%s: returned status = %d\n", __FUNCTION__, status);
3612 return status;
3613}
3614
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3616 .recover_open = nfs4_open_reclaim,
3617 .recover_lock = nfs4_lock_reclaim,
3618};
3619
3620struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3621 .recover_open = nfs4_open_expired,
3622 .recover_lock = nfs4_lock_expired,
3623};
3624
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003625static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003626 .permission = nfs_permission,
3627 .getattr = nfs_getattr,
3628 .setattr = nfs_setattr,
3629 .getxattr = nfs4_getxattr,
3630 .setxattr = nfs4_setxattr,
3631 .listxattr = nfs4_listxattr,
3632};
3633
David Howells509de812006-08-22 20:06:11 -04003634const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 .version = 4, /* protocol version */
3636 .dentry_ops = &nfs4_dentry_operations,
3637 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003638 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 .getroot = nfs4_proc_get_root,
3640 .getattr = nfs4_proc_getattr,
3641 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003642 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 .lookup = nfs4_proc_lookup,
3644 .access = nfs4_proc_access,
3645 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 .create = nfs4_proc_create,
3647 .remove = nfs4_proc_remove,
3648 .unlink_setup = nfs4_proc_unlink_setup,
3649 .unlink_done = nfs4_proc_unlink_done,
3650 .rename = nfs4_proc_rename,
3651 .link = nfs4_proc_link,
3652 .symlink = nfs4_proc_symlink,
3653 .mkdir = nfs4_proc_mkdir,
3654 .rmdir = nfs4_proc_remove,
3655 .readdir = nfs4_proc_readdir,
3656 .mknod = nfs4_proc_mknod,
3657 .statfs = nfs4_proc_statfs,
3658 .fsinfo = nfs4_proc_fsinfo,
3659 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003660 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 .decode_dirent = nfs4_decode_dirent,
3662 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003663 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003665 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003667 .commit_done = nfs4_commit_done,
Trond Myklebust02a913a2005-10-18 14:20:17 -07003668 .file_open = nfs_open,
3669 .file_release = nfs_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003671 .clear_acl_cache = nfs4_zap_acl_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672};
3673
3674/*
3675 * Local variables:
3676 * c-basic-offset: 8
3677 * End:
3678 */