blob: 8feaf232f2e4c9dba8bd63181914a94afcbda3f0 [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 Myklebust24ac23a2006-01-03 09:55:11 +0100217 atomic_t count;
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 Myklebust24ac23a2006-01-03 09:55:11 +0100248 atomic_set(&p->count, 1);
Trond Myklebustad389da2007-06-05 12:30:00 -0400249 p->path.mnt = mntget(path->mnt);
250 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100251 p->dir = parent;
252 p->owner = sp;
253 atomic_inc(&sp->so_count);
254 p->o_arg.fh = NFS_FH(dir);
255 p->o_arg.open_flags = flags,
David Howells7539bba2006-08-22 20:06:09 -0400256 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100257 p->o_arg.id = sp->so_id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400258 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100259 p->o_arg.server = server;
260 p->o_arg.bitmask = server->attr_bitmask;
261 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
262 p->o_res.f_attr = &p->f_attr;
263 p->o_res.dir_attr = &p->dir_attr;
264 p->o_res.server = server;
265 nfs_fattr_init(&p->f_attr);
266 nfs_fattr_init(&p->dir_attr);
267 if (flags & O_EXCL) {
268 u32 *s = (u32 *) p->o_arg.u.verifier.data;
269 s[0] = jiffies;
270 s[1] = current->pid;
271 } else if (flags & O_CREAT) {
272 p->o_arg.u.attrs = &p->attrs;
273 memcpy(&p->attrs, attrs, sizeof(p->attrs));
274 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100275 p->c_arg.fh = &p->o_res.fh;
276 p->c_arg.stateid = &p->o_res.stateid;
277 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100278 return p;
279err_free:
280 kfree(p);
281err:
282 dput(parent);
283 return NULL;
284}
285
286static void nfs4_opendata_free(struct nfs4_opendata *p)
287{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100288 if (p != NULL && atomic_dec_and_test(&p->count)) {
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100289 nfs_free_seqid(p->o_arg.seqid);
290 nfs4_put_state_owner(p->owner);
291 dput(p->dir);
Trond Myklebustad389da2007-06-05 12:30:00 -0400292 dput(p->path.dentry);
293 mntput(p->path.mnt);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100294 kfree(p);
295 }
296}
297
Trond Myklebust95121352005-10-18 14:20:12 -0700298/* Helper for asynchronous RPC calls */
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100299static int nfs4_call_async(struct rpc_clnt *clnt,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100300 const struct rpc_call_ops *tk_ops, void *calldata)
Trond Myklebust95121352005-10-18 14:20:12 -0700301{
302 struct rpc_task *task;
303
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100304 if (!(task = rpc_new_task(clnt, RPC_TASK_ASYNC, tk_ops, calldata)))
Trond Myklebust95121352005-10-18 14:20:12 -0700305 return -ENOMEM;
Trond Myklebust95121352005-10-18 14:20:12 -0700306 rpc_execute(task);
307 return 0;
308}
309
Trond Myklebust06f814a2006-01-03 09:55:07 +0100310static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
311{
312 sigset_t oldset;
313 int ret;
314
315 rpc_clnt_sigmask(task->tk_client, &oldset);
316 ret = rpc_wait_for_completion_task(task);
317 rpc_clnt_sigunmask(task->tk_client, &oldset);
318 return ret;
319}
320
Trond Myklebuste7616922006-01-03 09:55:13 +0100321static inline void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
322{
323 switch (open_flags) {
324 case FMODE_WRITE:
325 state->n_wronly++;
326 break;
327 case FMODE_READ:
328 state->n_rdonly++;
329 break;
330 case FMODE_READ|FMODE_WRITE:
331 state->n_rdwr++;
332 }
333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
336{
337 struct inode *inode = state->inode;
338
339 open_flags &= (FMODE_READ|FMODE_WRITE);
Trond Myklebustd5308382005-11-04 15:33:38 -0500340 /* Protect against nfs4_find_state_byowner() */
Trond Myklebustec073422005-10-20 14:22:47 -0700341 spin_lock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 spin_lock(&inode->i_lock);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500343 memcpy(&state->stateid, stateid, sizeof(state->stateid));
Trond Myklebuste7616922006-01-03 09:55:13 +0100344 update_open_stateflags(state, open_flags);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500345 nfs4_state_set_mode_locked(state, state->state | open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700347 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100350static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
351{
352 struct inode *inode;
353 struct nfs4_state *state = NULL;
354
355 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
356 goto out;
357 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500358 if (IS_ERR(inode))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100359 goto out;
360 state = nfs4_get_open_state(inode, data->owner);
361 if (state == NULL)
362 goto put_inode;
363 update_open_stateid(state, &data->o_res.stateid, data->o_arg.open_flags);
364put_inode:
365 iput(inode);
366out:
367 return state;
368}
369
Trond Myklebust864472e2006-01-03 09:55:15 +0100370static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
371{
372 struct nfs_inode *nfsi = NFS_I(state->inode);
373 struct nfs_open_context *ctx;
374
375 spin_lock(&state->inode->i_lock);
376 list_for_each_entry(ctx, &nfsi->open_files, list) {
377 if (ctx->state != state)
378 continue;
379 get_nfs_open_context(ctx);
380 spin_unlock(&state->inode->i_lock);
381 return ctx;
382 }
383 spin_unlock(&state->inode->i_lock);
384 return ERR_PTR(-ENOENT);
385}
386
387static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, nfs4_stateid *stateid)
388{
389 int ret;
390
391 opendata->o_arg.open_flags = openflags;
392 ret = _nfs4_proc_open(opendata);
393 if (ret != 0)
394 return ret;
395 memcpy(stateid->data, opendata->o_res.stateid.data,
396 sizeof(stateid->data));
397 return 0;
398}
399
400static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
401{
402 nfs4_stateid stateid;
403 struct nfs4_state *newstate;
404 int mode = 0;
405 int delegation = 0;
406 int ret;
407
408 /* memory barrier prior to reading state->n_* */
409 smp_rmb();
410 if (state->n_rdwr != 0) {
411 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &stateid);
412 if (ret != 0)
413 return ret;
414 mode |= FMODE_READ|FMODE_WRITE;
415 if (opendata->o_res.delegation_type != 0)
416 delegation = opendata->o_res.delegation_type;
417 smp_rmb();
418 }
419 if (state->n_wronly != 0) {
420 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &stateid);
421 if (ret != 0)
422 return ret;
423 mode |= FMODE_WRITE;
424 if (opendata->o_res.delegation_type != 0)
425 delegation = opendata->o_res.delegation_type;
426 smp_rmb();
427 }
428 if (state->n_rdonly != 0) {
429 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &stateid);
430 if (ret != 0)
431 return ret;
432 mode |= FMODE_READ;
433 }
434 clear_bit(NFS_DELEGATED_STATE, &state->flags);
435 if (mode == 0)
436 return 0;
437 if (opendata->o_res.delegation_type == 0)
438 opendata->o_res.delegation_type = delegation;
439 opendata->o_arg.open_flags |= mode;
440 newstate = nfs4_opendata_to_nfs4_state(opendata);
441 if (newstate != NULL) {
442 if (opendata->o_res.delegation_type != 0) {
443 struct nfs_inode *nfsi = NFS_I(newstate->inode);
444 int delegation_flags = 0;
445 if (nfsi->delegation)
446 delegation_flags = nfsi->delegation->flags;
447 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
448 nfs_inode_set_delegation(newstate->inode,
449 opendata->owner->so_cred,
450 &opendata->o_res);
451 else
452 nfs_inode_reclaim_delegation(newstate->inode,
453 opendata->owner->so_cred,
454 &opendata->o_res);
455 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400456 nfs4_close_state(&opendata->path, newstate, opendata->o_arg.open_flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100457 }
458 if (newstate != state)
459 return -ESTALE;
460 return 0;
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/*
464 * OPEN_RECLAIM:
465 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400467static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Trond Myklebust864472e2006-01-03 09:55:15 +0100469 struct nfs_delegation *delegation = NFS_I(state->inode)->delegation;
470 struct nfs4_opendata *opendata;
471 int delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int status;
473
474 if (delegation != NULL) {
475 if (!(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
476 memcpy(&state->stateid, &delegation->stateid,
477 sizeof(state->stateid));
478 set_bit(NFS_DELEGATED_STATE, &state->flags);
479 return 0;
480 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100481 delegation_type = delegation->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Trond Myklebustad389da2007-06-05 12:30:00 -0400483 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
Trond Myklebust864472e2006-01-03 09:55:15 +0100484 if (opendata == NULL)
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700485 return -ENOMEM;
Trond Myklebust864472e2006-01-03 09:55:15 +0100486 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
487 opendata->o_arg.fh = NFS_FH(state->inode);
488 nfs_copy_fh(&opendata->o_res.fh, opendata->o_arg.fh);
489 opendata->o_arg.u.delegation_type = delegation_type;
490 status = nfs4_open_recover(opendata, state);
491 nfs4_opendata_free(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return status;
493}
494
Trond Myklebust539cd032007-06-05 11:46:42 -0400495static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 struct nfs_server *server = NFS_SERVER(state->inode);
498 struct nfs4_exception exception = { };
499 int err;
500 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400501 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000502 if (err != -NFS4ERR_DELAY)
503 break;
504 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 } while (exception.retry);
506 return err;
507}
508
Trond Myklebust864472e2006-01-03 09:55:15 +0100509static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
510{
511 struct nfs_open_context *ctx;
512 int ret;
513
514 ctx = nfs4_state_find_open_context(state);
515 if (IS_ERR(ctx))
516 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400517 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100518 put_nfs_open_context(ctx);
519 return ret;
520}
521
Trond Myklebust539cd032007-06-05 11:46:42 -0400522static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 struct nfs4_state_owner *sp = state->owner;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100525 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100526 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust864472e2006-01-03 09:55:15 +0100529 return 0;
Trond Myklebustad389da2007-06-05 12:30:00 -0400530 opendata = nfs4_opendata_alloc(&ctx->path, sp, 0, NULL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100531 if (opendata == NULL)
Trond Myklebust864472e2006-01-03 09:55:15 +0100532 return -ENOMEM;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100533 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100534 memcpy(opendata->o_arg.u.delegation.data, state->stateid.data,
535 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100536 ret = nfs4_open_recover(opendata, state);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100537 nfs4_opendata_free(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100538 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
Trond Myklebust539cd032007-06-05 11:46:42 -0400541int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -0400544 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 int err;
546 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400547 err = _nfs4_open_delegation_recall(ctx, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 switch (err) {
549 case 0:
550 return err;
551 case -NFS4ERR_STALE_CLIENTID:
552 case -NFS4ERR_STALE_STATEID:
553 case -NFS4ERR_EXPIRED:
554 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400555 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return err;
557 }
558 err = nfs4_handle_exception(server, err, &exception);
559 } while (exception.retry);
560 return err;
561}
562
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100563static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100565 struct nfs4_opendata *data = calldata;
566 struct rpc_message msg = {
567 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
568 .rpc_argp = &data->c_arg,
569 .rpc_resp = &data->c_res,
570 .rpc_cred = data->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 };
Trond Myklebust26e976a2006-01-03 09:55:21 +0100572 data->timestamp = jiffies;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100573 rpc_call_setup(task, &msg, 0);
574}
575
576static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
577{
578 struct nfs4_opendata *data = calldata;
579
580 data->rpc_status = task->tk_status;
581 if (RPC_ASSASSINATED(task))
582 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100583 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100584 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
585 sizeof(data->o_res.stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +0100586 renew_lease(data->o_res.server, data->timestamp);
587 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100588 nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid);
589 nfs_confirm_seqid(&data->owner->so_seqid, data->rpc_status);
590}
591
592static void nfs4_open_confirm_release(void *calldata)
593{
594 struct nfs4_opendata *data = calldata;
595 struct nfs4_state *state = NULL;
596
597 /* If this request hasn't been cancelled, do nothing */
598 if (data->cancelled == 0)
599 goto out_free;
600 /* In case of error, no cleanup! */
601 if (data->rpc_status != 0)
602 goto out_free;
603 nfs_confirm_seqid(&data->owner->so_seqid, 0);
604 state = nfs4_opendata_to_nfs4_state(data);
605 if (state != NULL)
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400606 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100607out_free:
608 nfs4_opendata_free(data);
609}
610
611static const struct rpc_call_ops nfs4_open_confirm_ops = {
612 .rpc_call_prepare = nfs4_open_confirm_prepare,
613 .rpc_call_done = nfs4_open_confirm_done,
614 .rpc_release = nfs4_open_confirm_release,
615};
616
617/*
618 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
619 */
620static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
621{
622 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
623 struct rpc_task *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int status;
625
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100626 atomic_inc(&data->count);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500627 /*
628 * If rpc_run_task() ends up calling ->rpc_release(), we
629 * want to ensure that it takes the 'error' code path.
630 */
631 data->rpc_status = -ENOMEM;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100632 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_confirm_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500633 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100634 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100635 status = nfs4_wait_for_completion_rpc_task(task);
636 if (status != 0) {
637 data->cancelled = 1;
638 smp_wmb();
639 } else
640 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500641 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return status;
643}
644
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100645static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100647 struct nfs4_opendata *data = calldata;
648 struct nfs4_state_owner *sp = data->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 struct rpc_message msg = {
650 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100651 .rpc_argp = &data->o_arg,
652 .rpc_resp = &data->o_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 .rpc_cred = sp->so_cred,
654 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100655
656 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
657 return;
658 /* Update sequence id. */
659 data->o_arg.id = sp->so_id;
660 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust864472e2006-01-03 09:55:15 +0100661 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
662 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust26e976a2006-01-03 09:55:21 +0100663 data->timestamp = jiffies;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100664 rpc_call_setup(task, &msg, 0);
665}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100667static void nfs4_open_done(struct rpc_task *task, void *calldata)
668{
669 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100671 data->rpc_status = task->tk_status;
672 if (RPC_ASSASSINATED(task))
673 return;
674 if (task->tk_status == 0) {
675 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -0700676 case S_IFREG:
677 break;
678 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100679 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700680 break;
681 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100682 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700683 break;
684 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100685 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700686 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100687 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust6f926b52005-10-18 14:20:18 -0700688 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100689 nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid);
690}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700691
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100692static void nfs4_open_release(void *calldata)
693{
694 struct nfs4_opendata *data = calldata;
695 struct nfs4_state *state = NULL;
696
697 /* If this request hasn't been cancelled, do nothing */
698 if (data->cancelled == 0)
699 goto out_free;
700 /* In case of error, no cleanup! */
701 if (data->rpc_status != 0)
702 goto out_free;
703 /* In case we need an open_confirm, no cleanup! */
704 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
705 goto out_free;
706 nfs_confirm_seqid(&data->owner->so_seqid, 0);
707 state = nfs4_opendata_to_nfs4_state(data);
708 if (state != NULL)
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400709 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100710out_free:
711 nfs4_opendata_free(data);
712}
713
714static const struct rpc_call_ops nfs4_open_ops = {
715 .rpc_call_prepare = nfs4_open_prepare,
716 .rpc_call_done = nfs4_open_done,
717 .rpc_release = nfs4_open_release,
718};
719
720/*
721 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
722 */
723static int _nfs4_proc_open(struct nfs4_opendata *data)
724{
725 struct inode *dir = data->dir->d_inode;
726 struct nfs_server *server = NFS_SERVER(dir);
727 struct nfs_openargs *o_arg = &data->o_arg;
728 struct nfs_openres *o_res = &data->o_res;
729 struct rpc_task *task;
730 int status;
731
732 atomic_inc(&data->count);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500733 /*
734 * If rpc_run_task() ends up calling ->rpc_release(), we
735 * want to ensure that it takes the 'error' code path.
736 */
737 data->rpc_status = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100738 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500739 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100740 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100741 status = nfs4_wait_for_completion_rpc_task(task);
742 if (status != 0) {
743 data->cancelled = 1;
744 smp_wmb();
745 } else
746 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500747 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100749 return status;
750
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400751 if (o_arg->open_flags & O_CREAT) {
752 update_changeattr(dir, &o_res->cinfo);
753 nfs_post_op_update_inode(dir, o_res->dir_attr);
754 } else
755 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100757 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100759 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100761 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
David Howells8fa5c002006-08-22 20:06:12 -0400763 return server->nfs_client->rpc_ops->getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100764 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
767static int _nfs4_do_access(struct inode *inode, struct rpc_cred *cred, int openflags)
768{
769 struct nfs_access_entry cache;
770 int mask = 0;
771 int status;
772
773 if (openflags & FMODE_READ)
774 mask |= MAY_READ;
775 if (openflags & FMODE_WRITE)
776 mask |= MAY_WRITE;
777 status = nfs_access_get_cached(inode, cred, &cache);
778 if (status == 0)
779 goto out;
780
781 /* Be clever: ask server to check for all possible rights */
782 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
783 cache.cred = cred;
784 cache.jiffies = jiffies;
785 status = _nfs4_proc_access(inode, &cache);
786 if (status != 0)
787 return status;
788 nfs_access_add_cache(inode, &cache);
789out:
790 if ((cache.mask & mask) == mask)
791 return 0;
792 return -EACCES;
793}
794
Trond Myklebust10afec92007-05-14 17:16:04 -0400795static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +0100796{
David Howells7539bba2006-08-22 20:06:09 -0400797 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -0400798 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +0100799
Trond Myklebust6b309542006-09-14 14:03:14 -0400800 for (;;) {
801 ret = nfs4_wait_clnt_recover(server->client, clp);
802 if (ret != 0)
803 return ret;
804 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
805 break;
Trond Myklebust58d97142006-01-03 09:55:24 +0100806 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -0400807 }
808 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +0100809}
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811/*
812 * OPEN_EXPIRED:
813 * reclaim state on the server after a network partition.
814 * Assumes caller holds the appropriate lock
815 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400816static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 struct inode *inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 struct nfs_delegation *delegation = NFS_I(inode)->delegation;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100820 struct nfs4_opendata *opendata;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100821 int openflags = state->state & (FMODE_READ|FMODE_WRITE);
Trond Myklebust864472e2006-01-03 09:55:15 +0100822 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if (delegation != NULL && !(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
Trond Myklebust539cd032007-06-05 11:46:42 -0400825 ret = _nfs4_do_access(inode, ctx->cred, openflags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100826 if (ret < 0)
827 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 memcpy(&state->stateid, &delegation->stateid, sizeof(state->stateid));
829 set_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100830 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
Trond Myklebustad389da2007-06-05 12:30:00 -0400832 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, openflags, NULL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100833 if (opendata == NULL)
Trond Myklebust864472e2006-01-03 09:55:15 +0100834 return -ENOMEM;
835 ret = nfs4_open_recover(opendata, state);
836 if (ret == -ESTALE) {
837 /* Invalidate the state owner so we don't ever use it again */
Trond Myklebust539cd032007-06-05 11:46:42 -0400838 nfs4_drop_state_owner(state->owner);
839 d_drop(ctx->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100841 nfs4_opendata_free(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100842 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Trond Myklebust539cd032007-06-05 11:46:42 -0400845static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +0000846{
Trond Myklebust539cd032007-06-05 11:46:42 -0400847 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000848 struct nfs4_exception exception = { };
849 int err;
850
851 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400852 err = _nfs4_open_expired(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000853 if (err == -NFS4ERR_DELAY)
854 nfs4_handle_exception(server, err, &exception);
855 } while (exception.retry);
856 return err;
857}
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
860{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +0100862 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Trond Myklebust864472e2006-01-03 09:55:15 +0100864 ctx = nfs4_state_find_open_context(state);
865 if (IS_ERR(ctx))
866 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400867 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100868 put_nfs_open_context(ctx);
869 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
872/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100873 * Returns a referenced nfs4_state if there is an open delegation on the file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 */
875static int _nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred, struct nfs4_state **res)
876{
877 struct nfs_delegation *delegation;
878 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -0400879 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct nfs_inode *nfsi = NFS_I(inode);
881 struct nfs4_state_owner *sp = NULL;
882 struct nfs4_state *state = NULL;
883 int open_flags = flags & (FMODE_READ|FMODE_WRITE);
884 int err;
885
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100886 err = -ENOMEM;
887 if (!(sp = nfs4_get_state_owner(server, cred))) {
888 dprintk("%s: nfs4_get_state_owner failed!\n", __FUNCTION__);
889 return err;
890 }
Trond Myklebust58d97142006-01-03 09:55:24 +0100891 err = nfs4_recover_expired_lease(server);
892 if (err != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100893 goto out_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* Protect against reboot recovery - NOTE ORDER! */
895 down_read(&clp->cl_sem);
896 /* Protect against delegation recall */
897 down_read(&nfsi->rwsem);
898 delegation = NFS_I(inode)->delegation;
899 err = -ENOENT;
900 if (delegation == NULL || (delegation->type & open_flags) != open_flags)
901 goto out_err;
902 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 state = nfs4_get_open_state(inode, sp);
904 if (state == NULL)
905 goto out_err;
906
907 err = -ENOENT;
908 if ((state->state & open_flags) == open_flags) {
909 spin_lock(&inode->i_lock);
Trond Myklebuste7616922006-01-03 09:55:13 +0100910 update_open_stateflags(state, open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 spin_unlock(&inode->i_lock);
912 goto out_ok;
913 } else if (state->state != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100914 goto out_put_open_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 lock_kernel();
917 err = _nfs4_do_access(inode, cred, open_flags);
918 unlock_kernel();
919 if (err != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100920 goto out_put_open_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 set_bit(NFS_DELEGATED_STATE, &state->flags);
922 update_open_stateid(state, &delegation->stateid, open_flags);
923out_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 nfs4_put_state_owner(sp);
925 up_read(&nfsi->rwsem);
926 up_read(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 *res = state;
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100928 return 0;
929out_put_open_state:
930 nfs4_put_open_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 up_read(&nfsi->rwsem);
933 up_read(&clp->cl_sem);
Trond Myklebustb8e5c4c2005-10-18 14:20:20 -0700934 if (err != -EACCES)
935 nfs_inode_return_delegation(inode);
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100936out_put_state_owner:
937 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return err;
939}
940
941static struct nfs4_state *nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred)
942{
943 struct nfs4_exception exception = { };
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500944 struct nfs4_state *res = ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 int err;
946
947 do {
948 err = _nfs4_open_delegated(inode, flags, cred, &res);
949 if (err == 0)
950 break;
951 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(inode),
952 err, &exception));
953 } while (exception.retry);
954 return res;
955}
956
957/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100958 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 */
Trond Myklebustad389da2007-06-05 12:30:00 -0400960static 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 -0700961{
962 struct nfs4_state_owner *sp;
963 struct nfs4_state *state = NULL;
964 struct nfs_server *server = NFS_SERVER(dir);
David Howells7539bba2006-08-22 20:06:09 -0400965 struct nfs_client *clp = server->nfs_client;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100966 struct nfs4_opendata *opendata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 status = -ENOMEM;
971 if (!(sp = nfs4_get_state_owner(server, cred))) {
972 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
973 goto out_err;
974 }
Trond Myklebust58d97142006-01-03 09:55:24 +0100975 status = nfs4_recover_expired_lease(server);
976 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100977 goto err_put_state_owner;
Trond Myklebust58d97142006-01-03 09:55:24 +0100978 down_read(&clp->cl_sem);
979 status = -ENOMEM;
Trond Myklebustad389da2007-06-05 12:30:00 -0400980 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100981 if (opendata == NULL)
Trond Myklebust76723de2006-09-15 08:11:51 -0400982 goto err_release_rwsem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100984 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (status != 0)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100986 goto err_opendata_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 status = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100989 state = nfs4_opendata_to_nfs4_state(opendata);
990 if (state == NULL)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100991 goto err_opendata_free;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100992 if (opendata->o_res.delegation_type != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100993 nfs_inode_set_delegation(state->inode, cred, &opendata->o_res);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100994 nfs4_opendata_free(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 nfs4_put_state_owner(sp);
996 up_read(&clp->cl_sem);
997 *res = state;
998 return 0;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100999err_opendata_free:
1000 nfs4_opendata_free(opendata);
Trond Myklebust76723de2006-09-15 08:11:51 -04001001err_release_rwsem:
1002 up_read(&clp->cl_sem);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001003err_put_state_owner:
1004 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 *res = NULL;
1007 return status;
1008}
1009
1010
Trond Myklebustad389da2007-06-05 12:30:00 -04001011static 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 -07001012{
1013 struct nfs4_exception exception = { };
1014 struct nfs4_state *res;
1015 int status;
1016
1017 do {
Trond Myklebustad389da2007-06-05 12:30:00 -04001018 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (status == 0)
1020 break;
1021 /* NOTE: BAD_SEQID means the server and client disagree about the
1022 * book-keeping w.r.t. state-changing operations
1023 * (OPEN/CLOSE/LOCK/LOCKU...)
1024 * It is actually a sign of a bug on the client or on the server.
1025 *
1026 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001027 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 * have unhashed the old state_owner for us, and that we can
1029 * therefore safely retry using a new one. We should still warn
1030 * the user though...
1031 */
1032 if (status == -NFS4ERR_BAD_SEQID) {
1033 printk(KERN_WARNING "NFS: v4 server returned a bad sequence-id error!\n");
1034 exception.retry = 1;
1035 continue;
1036 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001037 /*
1038 * BAD_STATEID on OPEN means that the server cancelled our
1039 * state before it received the OPEN_CONFIRM.
1040 * Recover by retrying the request as per the discussion
1041 * on Page 181 of RFC3530.
1042 */
1043 if (status == -NFS4ERR_BAD_STATEID) {
1044 exception.retry = 1;
1045 continue;
1046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1048 status, &exception));
1049 } while (exception.retry);
1050 return res;
1051}
1052
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001053static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1054 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001056 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001058 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 .iap = sattr,
1060 .server = server,
1061 .bitmask = server->attr_bitmask,
1062 };
1063 struct nfs_setattrres res = {
1064 .fattr = fattr,
1065 .server = server,
1066 };
1067 struct rpc_message msg = {
1068 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1069 .rpc_argp = &arg,
1070 .rpc_resp = &res,
1071 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001072 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001073 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Trond Myklebust0e574af2005-10-27 22:12:38 -04001075 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001077 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1078 /* Use that stateid */
1079 } else if (state != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 msg.rpc_cred = state->owner->so_cred;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001081 nfs4_copy_stateid(&arg.stateid, state, current->files);
1082 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1084
Trond Myklebust65e43082005-08-16 11:49:44 -04001085 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001086 if (status == 0 && state != NULL)
1087 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001088 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001091static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1092 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001094 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 struct nfs4_exception exception = { };
1096 int err;
1097 do {
1098 err = nfs4_handle_exception(server,
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001099 _nfs4_do_setattr(inode, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 &exception);
1101 } while (exception.retry);
1102 return err;
1103}
1104
1105struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001106 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 struct inode *inode;
1108 struct nfs4_state *state;
1109 struct nfs_closeargs arg;
1110 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001111 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001112 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113};
1114
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001115static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001116{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001117 struct nfs4_closedata *calldata = data;
1118 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001119
1120 nfs4_put_open_state(calldata->state);
1121 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001122 nfs4_put_state_owner(sp);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001123 dput(calldata->path.dentry);
1124 mntput(calldata->path.mnt);
Trond Myklebust95121352005-10-18 14:20:12 -07001125 kfree(calldata);
1126}
1127
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001128static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001130 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 struct nfs_server *server = NFS_SERVER(calldata->inode);
1133
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001134 if (RPC_ASSASSINATED(task))
1135 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 /* hmm. we are done with the inode, and in the process of freeing
1137 * the state_owner. we keep this around to process errors
1138 */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001139 nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 switch (task->tk_status) {
1141 case 0:
1142 memcpy(&state->stateid, &calldata->res.stateid,
1143 sizeof(state->stateid));
Trond Myklebust26e976a2006-01-03 09:55:21 +01001144 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 break;
1146 case -NFS4ERR_STALE_STATEID:
1147 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 break;
1149 default:
1150 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1151 rpc_restart_call(task);
1152 return;
1153 }
1154 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001155 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001158static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001160 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001161 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 struct rpc_message msg = {
1163 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1164 .rpc_argp = &calldata->arg,
1165 .rpc_resp = &calldata->res,
Trond Myklebust95121352005-10-18 14:20:12 -07001166 .rpc_cred = state->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 };
Trond Myklebust4cecb762005-11-04 15:32:58 -05001168 int mode = 0, old_mode;
Trond Myklebust95121352005-10-18 14:20:12 -07001169
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001170 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001171 return;
Trond Myklebust95121352005-10-18 14:20:12 -07001172 /* Recalculate the new open mode in case someone reopened the file
1173 * while we were waiting in line to be scheduled.
1174 */
Trond Myklebust4cecb762005-11-04 15:32:58 -05001175 spin_lock(&state->owner->so_lock);
1176 spin_lock(&calldata->inode->i_lock);
1177 mode = old_mode = state->state;
Trond Myklebuste7616922006-01-03 09:55:13 +01001178 if (state->n_rdwr == 0) {
1179 if (state->n_rdonly == 0)
1180 mode &= ~FMODE_READ;
1181 if (state->n_wronly == 0)
1182 mode &= ~FMODE_WRITE;
1183 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001184 nfs4_state_set_mode_locked(state, mode);
1185 spin_unlock(&calldata->inode->i_lock);
1186 spin_unlock(&state->owner->so_lock);
1187 if (mode == old_mode || test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001188 /* Note: exit _without_ calling nfs4_close_done */
1189 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001190 return;
1191 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001192 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust95121352005-10-18 14:20:12 -07001193 if (mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust95121352005-10-18 14:20:12 -07001195 calldata->arg.open_flags = mode;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001196 calldata->timestamp = jiffies;
Trond Myklebust95121352005-10-18 14:20:12 -07001197 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001200static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001201 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001202 .rpc_call_done = nfs4_close_done,
1203 .rpc_release = nfs4_free_closedata,
1204};
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206/*
1207 * It is possible for data to be read/written from a mem-mapped file
1208 * after the sys_close call (which hits the vfs layer as a flush).
1209 * This means that we can't safely call nfsv4 close on a file until
1210 * the inode is cleared. This in turn means that we are not good
1211 * NFSv4 citizens - we do not indicate to the server to update the file's
1212 * share state even when we are done with one of the three share
1213 * stateid's in the inode.
1214 *
1215 * NOTE: Caller must be holding the sp->so_owner semaphore!
1216 */
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001217int nfs4_do_close(struct path *path, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001219 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 struct nfs4_closedata *calldata;
Trond Myklebust95121352005-10-18 14:20:12 -07001221 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Trond Myklebust95121352005-10-18 14:20:12 -07001223 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001225 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001226 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001228 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust95121352005-10-18 14:20:12 -07001229 calldata->arg.stateid = &state->stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001231 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001232 if (calldata->arg.seqid == NULL)
1233 goto out_free_calldata;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001234 calldata->arg.bitmask = server->attr_bitmask;
1235 calldata->res.fattr = &calldata->fattr;
1236 calldata->res.server = server;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001237 calldata->path.mnt = mntget(path->mnt);
1238 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001239
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001240 status = nfs4_call_async(server->client, &nfs4_close_ops, calldata);
Trond Myklebust95121352005-10-18 14:20:12 -07001241 if (status == 0)
1242 goto out;
1243
1244 nfs_free_seqid(calldata->arg.seqid);
1245out_free_calldata:
1246 kfree(calldata);
1247out:
1248 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001251static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
Trond Myklebust02a913a2005-10-18 14:20:17 -07001252{
1253 struct file *filp;
1254
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001255 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001256 if (!IS_ERR(filp)) {
1257 struct nfs_open_context *ctx;
1258 ctx = (struct nfs_open_context *)filp->private_data;
1259 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001260 return 0;
1261 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001262 nfs4_close_state(path, state, nd->intent.open.flags);
Trond Myklebust95cf9592006-04-18 13:14:06 -04001263 return PTR_ERR(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001264}
1265
1266struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1268{
Trond Myklebustad389da2007-06-05 12:30:00 -04001269 struct path path = {
1270 .mnt = nd->mnt,
1271 .dentry = dentry,
1272 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct iattr attr;
1274 struct rpc_cred *cred;
1275 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001276 struct dentry *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 if (nd->flags & LOOKUP_CREATE) {
1279 attr.ia_mode = nd->intent.open.create_mode;
1280 attr.ia_valid = ATTR_MODE;
1281 if (!IS_POSIXACL(dir))
1282 attr.ia_mode &= ~current->fs->umask;
1283 } else {
1284 attr.ia_valid = 0;
1285 BUG_ON(nd->intent.open.flags & O_CREAT);
1286 }
1287
David Howells1f163412006-08-22 20:06:11 -04001288 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001290 return (struct dentry *)cred;
Trond Myklebustad389da2007-06-05 12:30:00 -04001291 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001293 if (IS_ERR(state)) {
1294 if (PTR_ERR(state) == -ENOENT)
1295 d_add(dentry, NULL);
1296 return (struct dentry *)state;
1297 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001298 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001299 if (res != NULL)
1300 dentry = res;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001301 nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001302 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
1305int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001306nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Trond Myklebustad389da2007-06-05 12:30:00 -04001308 struct path path = {
1309 .mnt = nd->mnt,
1310 .dentry = dentry,
1311 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 struct rpc_cred *cred;
1313 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
David Howells1f163412006-08-22 20:06:11 -04001315 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (IS_ERR(cred))
1317 return PTR_ERR(cred);
1318 state = nfs4_open_delegated(dentry->d_inode, openflags, cred);
1319 if (IS_ERR(state))
Trond Myklebustad389da2007-06-05 12:30:00 -04001320 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001322 if (IS_ERR(state)) {
1323 switch (PTR_ERR(state)) {
1324 case -EPERM:
1325 case -EACCES:
1326 case -EDQUOT:
1327 case -ENOSPC:
1328 case -EROFS:
1329 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1330 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001331 default:
1332 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001333 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001334 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001335 if (state->inode == dentry->d_inode) {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001336 nfs4_intent_set_file(nd, &path, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return 1;
1338 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001339 nfs4_close_state(&path, state, openflags);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001340out_drop:
1341 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return 0;
1343}
1344
1345
1346static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1347{
1348 struct nfs4_server_caps_res res = {};
1349 struct rpc_message msg = {
1350 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1351 .rpc_argp = fhandle,
1352 .rpc_resp = &res,
1353 };
1354 int status;
1355
1356 status = rpc_call_sync(server->client, &msg, 0);
1357 if (status == 0) {
1358 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1359 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1360 server->caps |= NFS_CAP_ACLS;
1361 if (res.has_links != 0)
1362 server->caps |= NFS_CAP_HARDLINKS;
1363 if (res.has_symlinks != 0)
1364 server->caps |= NFS_CAP_SYMLINKS;
1365 server->acl_bitmask = res.acl_bitmask;
1366 }
1367 return status;
1368}
1369
Trond Myklebust55a97592006-06-09 09:34:19 -04001370int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
1372 struct nfs4_exception exception = { };
1373 int err;
1374 do {
1375 err = nfs4_handle_exception(server,
1376 _nfs4_server_capabilities(server, fhandle),
1377 &exception);
1378 } while (exception.retry);
1379 return err;
1380}
1381
1382static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1383 struct nfs_fsinfo *info)
1384{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 struct nfs4_lookup_root_arg args = {
1386 .bitmask = nfs4_fattr_bitmap,
1387 };
1388 struct nfs4_lookup_res res = {
1389 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04001390 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 .fh = fhandle,
1392 };
1393 struct rpc_message msg = {
1394 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1395 .rpc_argp = &args,
1396 .rpc_resp = &res,
1397 };
Trond Myklebust0e574af2005-10-27 22:12:38 -04001398 nfs_fattr_init(info->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return rpc_call_sync(server->client, &msg, 0);
1400}
1401
1402static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1403 struct nfs_fsinfo *info)
1404{
1405 struct nfs4_exception exception = { };
1406 int err;
1407 do {
1408 err = nfs4_handle_exception(server,
1409 _nfs4_lookup_root(server, fhandle, info),
1410 &exception);
1411 } while (exception.retry);
1412 return err;
1413}
1414
David Howells54ceac42006-08-22 20:06:13 -04001415/*
1416 * get the file handle for the "/" directory on the server
1417 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04001419 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 int status;
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (status == 0)
1425 status = nfs4_server_capabilities(server, fhandle);
1426 if (status == 0)
1427 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08001428 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Manoj Naik6b97fd32006-06-09 09:34:29 -04001431/*
1432 * Get locations and (maybe) other attributes of a referral.
1433 * Note that we'll actually follow the referral later when
1434 * we detect fsid mismatch in inode revalidation
1435 */
1436static int nfs4_get_referral(struct inode *dir, struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
1437{
1438 int status = -ENOMEM;
1439 struct page *page = NULL;
1440 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04001441
1442 page = alloc_page(GFP_KERNEL);
1443 if (page == NULL)
1444 goto out;
1445 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1446 if (locations == NULL)
1447 goto out;
1448
Trond Myklebustc228fd32007-01-13 02:28:11 -05001449 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001450 if (status != 0)
1451 goto out;
1452 /* Make sure server returned a different fsid for the referral */
1453 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
1454 dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name);
1455 status = -EIO;
1456 goto out;
1457 }
1458
1459 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1460 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1461 if (!fattr->mode)
1462 fattr->mode = S_IFDIR;
1463 memset(fhandle, 0, sizeof(struct nfs_fh));
1464out:
1465 if (page)
1466 __free_page(page);
1467 if (locations)
1468 kfree(locations);
1469 return status;
1470}
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1473{
1474 struct nfs4_getattr_arg args = {
1475 .fh = fhandle,
1476 .bitmask = server->attr_bitmask,
1477 };
1478 struct nfs4_getattr_res res = {
1479 .fattr = fattr,
1480 .server = server,
1481 };
1482 struct rpc_message msg = {
1483 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1484 .rpc_argp = &args,
1485 .rpc_resp = &res,
1486 };
1487
Trond Myklebust0e574af2005-10-27 22:12:38 -04001488 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return rpc_call_sync(server->client, &msg, 0);
1490}
1491
1492static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1493{
1494 struct nfs4_exception exception = { };
1495 int err;
1496 do {
1497 err = nfs4_handle_exception(server,
1498 _nfs4_proc_getattr(server, fhandle, fattr),
1499 &exception);
1500 } while (exception.retry);
1501 return err;
1502}
1503
1504/*
1505 * The file is not closed if it is opened due to the a request to change
1506 * the size of the file. The open call will not be needed once the
1507 * VFS layer lookup-intents are implemented.
1508 *
1509 * Close is called when the inode is destroyed.
1510 * If we haven't opened the file for O_WRONLY, we
1511 * need to in the size_change case to obtain a stateid.
1512 *
1513 * Got race?
1514 * Because OPEN is always done by name in nfsv4, it is
1515 * possible that we opened a different file by the same
1516 * name. We can recognize this race condition, but we
1517 * can't do anything about it besides returning an error.
1518 *
1519 * This will be fixed with VFS changes (lookup-intent).
1520 */
1521static int
1522nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1523 struct iattr *sattr)
1524{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001525 struct rpc_cred *cred;
1526 struct inode *inode = dentry->d_inode;
Trond Myklebustd5308382005-11-04 15:33:38 -05001527 struct nfs_open_context *ctx;
1528 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 int status;
1530
Trond Myklebust0e574af2005-10-27 22:12:38 -04001531 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
David Howells1f163412006-08-22 20:06:11 -04001533 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001534 if (IS_ERR(cred))
1535 return PTR_ERR(cred);
Trond Myklebustd5308382005-11-04 15:33:38 -05001536
1537 /* Search for an existing open(O_WRITE) file */
1538 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1539 if (ctx != NULL)
1540 state = ctx->state;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001541
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001542 status = nfs4_do_setattr(inode, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001543 if (status == 0)
1544 nfs_setattr_update_inode(inode, sattr);
Trond Myklebustd5308382005-11-04 15:33:38 -05001545 if (ctx != NULL)
1546 put_nfs_open_context(ctx);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001547 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return status;
1549}
1550
David Howells2b3de442006-08-22 20:06:09 -04001551static int _nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1552 struct qstr *name, struct nfs_fh *fhandle,
1553 struct nfs_fattr *fattr)
1554{
1555 int status;
1556 struct nfs4_lookup_arg args = {
1557 .bitmask = server->attr_bitmask,
1558 .dir_fh = dirfh,
1559 .name = name,
1560 };
1561 struct nfs4_lookup_res res = {
1562 .server = server,
1563 .fattr = fattr,
1564 .fh = fhandle,
1565 };
1566 struct rpc_message msg = {
1567 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1568 .rpc_argp = &args,
1569 .rpc_resp = &res,
1570 };
1571
1572 nfs_fattr_init(fattr);
1573
1574 dprintk("NFS call lookupfh %s\n", name->name);
1575 status = rpc_call_sync(server->client, &msg, 0);
1576 dprintk("NFS reply lookupfh: %d\n", status);
1577 if (status == -NFS4ERR_MOVED)
1578 status = -EREMOTE;
1579 return status;
1580}
1581
1582static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1583 struct qstr *name, struct nfs_fh *fhandle,
1584 struct nfs_fattr *fattr)
1585{
1586 struct nfs4_exception exception = { };
1587 int err;
1588 do {
1589 err = nfs4_handle_exception(server,
1590 _nfs4_proc_lookupfh(server, dirfh, name,
1591 fhandle, fattr),
1592 &exception);
1593 } while (exception.retry);
1594 return err;
1595}
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597static int _nfs4_proc_lookup(struct inode *dir, struct qstr *name,
1598 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1599{
1600 int status;
1601 struct nfs_server *server = NFS_SERVER(dir);
1602 struct nfs4_lookup_arg args = {
1603 .bitmask = server->attr_bitmask,
1604 .dir_fh = NFS_FH(dir),
1605 .name = name,
1606 };
1607 struct nfs4_lookup_res res = {
1608 .server = server,
1609 .fattr = fattr,
1610 .fh = fhandle,
1611 };
1612 struct rpc_message msg = {
1613 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1614 .rpc_argp = &args,
1615 .rpc_resp = &res,
1616 };
1617
Trond Myklebust0e574af2005-10-27 22:12:38 -04001618 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 dprintk("NFS call lookup %s\n", name->name);
1621 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001622 if (status == -NFS4ERR_MOVED)
1623 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 dprintk("NFS reply lookup: %d\n", status);
1625 return status;
1626}
1627
1628static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1629{
1630 struct nfs4_exception exception = { };
1631 int err;
1632 do {
1633 err = nfs4_handle_exception(NFS_SERVER(dir),
1634 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1635 &exception);
1636 } while (exception.retry);
1637 return err;
1638}
1639
1640static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1641{
1642 struct nfs4_accessargs args = {
1643 .fh = NFS_FH(inode),
1644 };
1645 struct nfs4_accessres res = { 0 };
1646 struct rpc_message msg = {
1647 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1648 .rpc_argp = &args,
1649 .rpc_resp = &res,
1650 .rpc_cred = entry->cred,
1651 };
1652 int mode = entry->mask;
1653 int status;
1654
1655 /*
1656 * Determine which access bits we want to ask for...
1657 */
1658 if (mode & MAY_READ)
1659 args.access |= NFS4_ACCESS_READ;
1660 if (S_ISDIR(inode->i_mode)) {
1661 if (mode & MAY_WRITE)
1662 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1663 if (mode & MAY_EXEC)
1664 args.access |= NFS4_ACCESS_LOOKUP;
1665 } else {
1666 if (mode & MAY_WRITE)
1667 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1668 if (mode & MAY_EXEC)
1669 args.access |= NFS4_ACCESS_EXECUTE;
1670 }
1671 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1672 if (!status) {
1673 entry->mask = 0;
1674 if (res.access & NFS4_ACCESS_READ)
1675 entry->mask |= MAY_READ;
1676 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1677 entry->mask |= MAY_WRITE;
1678 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1679 entry->mask |= MAY_EXEC;
1680 }
1681 return status;
1682}
1683
1684static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1685{
1686 struct nfs4_exception exception = { };
1687 int err;
1688 do {
1689 err = nfs4_handle_exception(NFS_SERVER(inode),
1690 _nfs4_proc_access(inode, entry),
1691 &exception);
1692 } while (exception.retry);
1693 return err;
1694}
1695
1696/*
1697 * TODO: For the time being, we don't try to get any attributes
1698 * along with any of the zero-copy operations READ, READDIR,
1699 * READLINK, WRITE.
1700 *
1701 * In the case of the first three, we want to put the GETATTR
1702 * after the read-type operation -- this is because it is hard
1703 * to predict the length of a GETATTR response in v4, and thus
1704 * align the READ data correctly. This means that the GETATTR
1705 * may end up partially falling into the page cache, and we should
1706 * shift it into the 'tail' of the xdr_buf before processing.
1707 * To do this efficiently, we need to know the total length
1708 * of data received, which doesn't seem to be available outside
1709 * of the RPC layer.
1710 *
1711 * In the case of WRITE, we also want to put the GETATTR after
1712 * the operation -- in this case because we want to make sure
1713 * we get the post-operation mtime and size. This means that
1714 * we can't use xdr_encode_pages() as written: we need a variant
1715 * of it which would leave room in the 'tail' iovec.
1716 *
1717 * Both of these changes to the XDR layer would in fact be quite
1718 * minor, but I decided to leave them for a subsequent patch.
1719 */
1720static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1721 unsigned int pgbase, unsigned int pglen)
1722{
1723 struct nfs4_readlink args = {
1724 .fh = NFS_FH(inode),
1725 .pgbase = pgbase,
1726 .pglen = pglen,
1727 .pages = &page,
1728 };
1729 struct rpc_message msg = {
1730 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1731 .rpc_argp = &args,
1732 .rpc_resp = NULL,
1733 };
1734
1735 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1736}
1737
1738static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1739 unsigned int pgbase, unsigned int pglen)
1740{
1741 struct nfs4_exception exception = { };
1742 int err;
1743 do {
1744 err = nfs4_handle_exception(NFS_SERVER(inode),
1745 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1746 &exception);
1747 } while (exception.retry);
1748 return err;
1749}
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/*
1752 * Got race?
1753 * We will need to arrange for the VFS layer to provide an atomic open.
1754 * Until then, this create/open method is prone to inefficiency and race
1755 * conditions due to the lookup, create, and open VFS calls from sys_open()
1756 * placed on the wire.
1757 *
1758 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1759 * The file will be opened again in the subsequent VFS open call
1760 * (nfs4_proc_file_open).
1761 *
1762 * The open for read will just hang around to be used by any process that
1763 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1764 */
1765
1766static int
1767nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07001768 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
Trond Myklebustad389da2007-06-05 12:30:00 -04001770 struct path path = {
1771 .mnt = nd->mnt,
1772 .dentry = dentry,
1773 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 struct nfs4_state *state;
1775 struct rpc_cred *cred;
1776 int status = 0;
1777
David Howells1f163412006-08-22 20:06:11 -04001778 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (IS_ERR(cred)) {
1780 status = PTR_ERR(cred);
1781 goto out;
1782 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001783 state = nfs4_do_open(dir, &path, flags, sattr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 put_rpccred(cred);
1785 if (IS_ERR(state)) {
1786 status = PTR_ERR(state);
1787 goto out;
1788 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001789 d_instantiate(dentry, igrab(state->inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (flags & O_EXCL) {
1791 struct nfs_fattr fattr;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001792 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001793 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04001794 nfs_setattr_update_inode(state->inode, sattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001795 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001796 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001797 status = nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001798 else
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001799 nfs4_close_state(&path, state, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800out:
1801 return status;
1802}
1803
1804static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1805{
Trond Myklebust16e42952005-10-27 22:12:44 -04001806 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 struct nfs4_remove_arg args = {
1808 .fh = NFS_FH(dir),
1809 .name = name,
Trond Myklebust16e42952005-10-27 22:12:44 -04001810 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 };
Trond Myklebust16e42952005-10-27 22:12:44 -04001812 struct nfs_fattr dir_attr;
1813 struct nfs4_remove_res res = {
1814 .server = server,
1815 .dir_attr = &dir_attr,
1816 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 struct rpc_message msg = {
1818 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1819 .rpc_argp = &args,
1820 .rpc_resp = &res,
1821 };
1822 int status;
1823
Trond Myklebust16e42952005-10-27 22:12:44 -04001824 nfs_fattr_init(res.dir_attr);
1825 status = rpc_call_sync(server->client, &msg, 0);
1826 if (status == 0) {
1827 update_changeattr(dir, &res.cinfo);
1828 nfs_post_op_update_inode(dir, res.dir_attr);
1829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 return status;
1831}
1832
1833static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1834{
1835 struct nfs4_exception exception = { };
1836 int err;
1837 do {
1838 err = nfs4_handle_exception(NFS_SERVER(dir),
1839 _nfs4_proc_remove(dir, name),
1840 &exception);
1841 } while (exception.retry);
1842 return err;
1843}
1844
1845struct unlink_desc {
1846 struct nfs4_remove_arg args;
Trond Myklebust16e42952005-10-27 22:12:44 -04001847 struct nfs4_remove_res res;
1848 struct nfs_fattr dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849};
1850
1851static int nfs4_proc_unlink_setup(struct rpc_message *msg, struct dentry *dir,
1852 struct qstr *name)
1853{
Trond Myklebust16e42952005-10-27 22:12:44 -04001854 struct nfs_server *server = NFS_SERVER(dir->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 struct unlink_desc *up;
1856
Robert P. J. Day5cbded52006-12-13 00:35:56 -08001857 up = kmalloc(sizeof(*up), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (!up)
1859 return -ENOMEM;
1860
1861 up->args.fh = NFS_FH(dir->d_inode);
1862 up->args.name = name;
Trond Myklebust16e42952005-10-27 22:12:44 -04001863 up->args.bitmask = server->attr_bitmask;
1864 up->res.server = server;
1865 up->res.dir_attr = &up->dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
1868 msg->rpc_argp = &up->args;
1869 msg->rpc_resp = &up->res;
1870 return 0;
1871}
1872
1873static int nfs4_proc_unlink_done(struct dentry *dir, struct rpc_task *task)
1874{
1875 struct rpc_message *msg = &task->tk_msg;
1876 struct unlink_desc *up;
1877
1878 if (msg->rpc_resp != NULL) {
1879 up = container_of(msg->rpc_resp, struct unlink_desc, res);
Trond Myklebust16e42952005-10-27 22:12:44 -04001880 update_changeattr(dir->d_inode, &up->res.cinfo);
1881 nfs_post_op_update_inode(dir->d_inode, up->res.dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 kfree(up);
1883 msg->rpc_resp = NULL;
1884 msg->rpc_argp = NULL;
1885 }
1886 return 0;
1887}
1888
1889static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1890 struct inode *new_dir, struct qstr *new_name)
1891{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001892 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 struct nfs4_rename_arg arg = {
1894 .old_dir = NFS_FH(old_dir),
1895 .new_dir = NFS_FH(new_dir),
1896 .old_name = old_name,
1897 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001898 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001900 struct nfs_fattr old_fattr, new_fattr;
1901 struct nfs4_rename_res res = {
1902 .server = server,
1903 .old_fattr = &old_fattr,
1904 .new_fattr = &new_fattr,
1905 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 struct rpc_message msg = {
1907 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
1908 .rpc_argp = &arg,
1909 .rpc_resp = &res,
1910 };
1911 int status;
1912
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001913 nfs_fattr_init(res.old_fattr);
1914 nfs_fattr_init(res.new_fattr);
1915 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917 if (!status) {
1918 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001919 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001921 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923 return status;
1924}
1925
1926static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1927 struct inode *new_dir, struct qstr *new_name)
1928{
1929 struct nfs4_exception exception = { };
1930 int err;
1931 do {
1932 err = nfs4_handle_exception(NFS_SERVER(old_dir),
1933 _nfs4_proc_rename(old_dir, old_name,
1934 new_dir, new_name),
1935 &exception);
1936 } while (exception.retry);
1937 return err;
1938}
1939
1940static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
1941{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001942 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 struct nfs4_link_arg arg = {
1944 .fh = NFS_FH(inode),
1945 .dir_fh = NFS_FH(dir),
1946 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001947 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001949 struct nfs_fattr fattr, dir_attr;
1950 struct nfs4_link_res res = {
1951 .server = server,
1952 .fattr = &fattr,
1953 .dir_attr = &dir_attr,
1954 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 struct rpc_message msg = {
1956 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
1957 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001958 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 };
1960 int status;
1961
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001962 nfs_fattr_init(res.fattr);
1963 nfs_fattr_init(res.dir_attr);
1964 status = rpc_call_sync(server->client, &msg, 0);
1965 if (!status) {
1966 update_changeattr(dir, &res.cinfo);
1967 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04001968 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04001969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 return status;
1972}
1973
1974static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
1975{
1976 struct nfs4_exception exception = { };
1977 int err;
1978 do {
1979 err = nfs4_handle_exception(NFS_SERVER(inode),
1980 _nfs4_proc_link(inode, dir, name),
1981 &exception);
1982 } while (exception.retry);
1983 return err;
1984}
1985
Chuck Lever4f390c12006-08-22 20:06:22 -04001986static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04001987 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
1989 struct nfs_server *server = NFS_SERVER(dir);
Chuck Lever4f390c12006-08-22 20:06:22 -04001990 struct nfs_fh fhandle;
1991 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 struct nfs4_create_arg arg = {
1993 .dir_fh = NFS_FH(dir),
1994 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04001995 .name = &dentry->d_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 .attrs = sattr,
1997 .ftype = NF4LNK,
1998 .bitmask = server->attr_bitmask,
1999 };
2000 struct nfs4_create_res res = {
2001 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002002 .fh = &fhandle,
2003 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002004 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 };
2006 struct rpc_message msg = {
2007 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK],
2008 .rpc_argp = &arg,
2009 .rpc_resp = &res,
2010 };
2011 int status;
2012
Chuck Lever94a6d752006-08-22 20:06:23 -04002013 if (len > NFS4_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 return -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -04002015
Chuck Lever94a6d752006-08-22 20:06:23 -04002016 arg.u.symlink.pages = &page;
2017 arg.u.symlink.len = len;
Chuck Lever4f390c12006-08-22 20:06:22 -04002018 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002019 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Chuck Lever4f390c12006-08-22 20:06:22 -04002022 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 update_changeattr(dir, &res.dir_cinfo);
Chuck Lever4f390c12006-08-22 20:06:22 -04002024 nfs_post_op_update_inode(dir, res.dir_fattr);
2025 status = nfs_instantiate(dentry, &fhandle, &fattr);
2026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return status;
2028}
2029
Chuck Lever4f390c12006-08-22 20:06:22 -04002030static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002031 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032{
2033 struct nfs4_exception exception = { };
2034 int err;
2035 do {
2036 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002037 _nfs4_proc_symlink(dir, dentry, page,
2038 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 &exception);
2040 } while (exception.retry);
2041 return err;
2042}
2043
2044static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2045 struct iattr *sattr)
2046{
2047 struct nfs_server *server = NFS_SERVER(dir);
2048 struct nfs_fh fhandle;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002049 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 struct nfs4_create_arg arg = {
2051 .dir_fh = NFS_FH(dir),
2052 .server = server,
2053 .name = &dentry->d_name,
2054 .attrs = sattr,
2055 .ftype = NF4DIR,
2056 .bitmask = server->attr_bitmask,
2057 };
2058 struct nfs4_create_res res = {
2059 .server = server,
2060 .fh = &fhandle,
2061 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002062 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 };
2064 struct rpc_message msg = {
2065 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2066 .rpc_argp = &arg,
2067 .rpc_resp = &res,
2068 };
2069 int status;
2070
Trond Myklebust0e574af2005-10-27 22:12:38 -04002071 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002072 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2075 if (!status) {
2076 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002077 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 status = nfs_instantiate(dentry, &fhandle, &fattr);
2079 }
2080 return status;
2081}
2082
2083static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2084 struct iattr *sattr)
2085{
2086 struct nfs4_exception exception = { };
2087 int err;
2088 do {
2089 err = nfs4_handle_exception(NFS_SERVER(dir),
2090 _nfs4_proc_mkdir(dir, dentry, sattr),
2091 &exception);
2092 } while (exception.retry);
2093 return err;
2094}
2095
2096static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2097 u64 cookie, struct page *page, unsigned int count, int plus)
2098{
2099 struct inode *dir = dentry->d_inode;
2100 struct nfs4_readdir_arg args = {
2101 .fh = NFS_FH(dir),
2102 .pages = &page,
2103 .pgbase = 0,
2104 .count = count,
2105 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2106 };
2107 struct nfs4_readdir_res res;
2108 struct rpc_message msg = {
2109 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2110 .rpc_argp = &args,
2111 .rpc_resp = &res,
2112 .rpc_cred = cred,
2113 };
2114 int status;
2115
Trond Myklebusteadf4592005-06-22 17:16:39 +00002116 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__,
2117 dentry->d_parent->d_name.name,
2118 dentry->d_name.name,
2119 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2121 res.pgbase = args.pgbase;
2122 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2123 if (status == 0)
2124 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebusteadf4592005-06-22 17:16:39 +00002125 dprintk("%s: returns %d\n", __FUNCTION__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return status;
2127}
2128
2129static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2130 u64 cookie, struct page *page, unsigned int count, int plus)
2131{
2132 struct nfs4_exception exception = { };
2133 int err;
2134 do {
2135 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2136 _nfs4_proc_readdir(dentry, cred, cookie,
2137 page, count, plus),
2138 &exception);
2139 } while (exception.retry);
2140 return err;
2141}
2142
2143static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2144 struct iattr *sattr, dev_t rdev)
2145{
2146 struct nfs_server *server = NFS_SERVER(dir);
2147 struct nfs_fh fh;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002148 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 struct nfs4_create_arg arg = {
2150 .dir_fh = NFS_FH(dir),
2151 .server = server,
2152 .name = &dentry->d_name,
2153 .attrs = sattr,
2154 .bitmask = server->attr_bitmask,
2155 };
2156 struct nfs4_create_res res = {
2157 .server = server,
2158 .fh = &fh,
2159 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002160 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 };
2162 struct rpc_message msg = {
2163 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2164 .rpc_argp = &arg,
2165 .rpc_resp = &res,
2166 };
2167 int status;
2168 int mode = sattr->ia_mode;
2169
Trond Myklebust0e574af2005-10-27 22:12:38 -04002170 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002171 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2174 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2175 if (S_ISFIFO(mode))
2176 arg.ftype = NF4FIFO;
2177 else if (S_ISBLK(mode)) {
2178 arg.ftype = NF4BLK;
2179 arg.u.device.specdata1 = MAJOR(rdev);
2180 arg.u.device.specdata2 = MINOR(rdev);
2181 }
2182 else if (S_ISCHR(mode)) {
2183 arg.ftype = NF4CHR;
2184 arg.u.device.specdata1 = MAJOR(rdev);
2185 arg.u.device.specdata2 = MINOR(rdev);
2186 }
2187 else
2188 arg.ftype = NF4SOCK;
2189
2190 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2191 if (status == 0) {
2192 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002193 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 status = nfs_instantiate(dentry, &fh, &fattr);
2195 }
2196 return status;
2197}
2198
2199static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2200 struct iattr *sattr, dev_t rdev)
2201{
2202 struct nfs4_exception exception = { };
2203 int err;
2204 do {
2205 err = nfs4_handle_exception(NFS_SERVER(dir),
2206 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2207 &exception);
2208 } while (exception.retry);
2209 return err;
2210}
2211
2212static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2213 struct nfs_fsstat *fsstat)
2214{
2215 struct nfs4_statfs_arg args = {
2216 .fh = fhandle,
2217 .bitmask = server->attr_bitmask,
2218 };
2219 struct rpc_message msg = {
2220 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2221 .rpc_argp = &args,
2222 .rpc_resp = fsstat,
2223 };
2224
Trond Myklebust0e574af2005-10-27 22:12:38 -04002225 nfs_fattr_init(fsstat->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 return rpc_call_sync(server->client, &msg, 0);
2227}
2228
2229static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2230{
2231 struct nfs4_exception exception = { };
2232 int err;
2233 do {
2234 err = nfs4_handle_exception(server,
2235 _nfs4_proc_statfs(server, fhandle, fsstat),
2236 &exception);
2237 } while (exception.retry);
2238 return err;
2239}
2240
2241static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2242 struct nfs_fsinfo *fsinfo)
2243{
2244 struct nfs4_fsinfo_arg args = {
2245 .fh = fhandle,
2246 .bitmask = server->attr_bitmask,
2247 };
2248 struct rpc_message msg = {
2249 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2250 .rpc_argp = &args,
2251 .rpc_resp = fsinfo,
2252 };
2253
2254 return rpc_call_sync(server->client, &msg, 0);
2255}
2256
2257static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2258{
2259 struct nfs4_exception exception = { };
2260 int err;
2261
2262 do {
2263 err = nfs4_handle_exception(server,
2264 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2265 &exception);
2266 } while (exception.retry);
2267 return err;
2268}
2269
2270static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2271{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002272 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2274}
2275
2276static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2277 struct nfs_pathconf *pathconf)
2278{
2279 struct nfs4_pathconf_arg args = {
2280 .fh = fhandle,
2281 .bitmask = server->attr_bitmask,
2282 };
2283 struct rpc_message msg = {
2284 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2285 .rpc_argp = &args,
2286 .rpc_resp = pathconf,
2287 };
2288
2289 /* None of the pathconf attributes are mandatory to implement */
2290 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2291 memset(pathconf, 0, sizeof(*pathconf));
2292 return 0;
2293 }
2294
Trond Myklebust0e574af2005-10-27 22:12:38 -04002295 nfs_fattr_init(pathconf->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 return rpc_call_sync(server->client, &msg, 0);
2297}
2298
2299static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2300 struct nfs_pathconf *pathconf)
2301{
2302 struct nfs4_exception exception = { };
2303 int err;
2304
2305 do {
2306 err = nfs4_handle_exception(server,
2307 _nfs4_proc_pathconf(server, fhandle, pathconf),
2308 &exception);
2309 } while (exception.retry);
2310 return err;
2311}
2312
Trond Myklebustec06c092006-03-20 13:44:27 -05002313static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
Trond Myklebustec06c092006-03-20 13:44:27 -05002315 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Trond Myklebustec06c092006-03-20 13:44:27 -05002317 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002319 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
2321 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002322 renew_lease(server, data->timestamp);
2323 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
Trond Myklebustec06c092006-03-20 13:44:27 -05002326static void nfs4_proc_read_setup(struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 struct rpc_message msg = {
2329 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ],
2330 .rpc_argp = &data->args,
2331 .rpc_resp = &data->res,
2332 .rpc_cred = data->cred,
2333 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 data->timestamp = jiffies;
2336
Trond Myklebustec06c092006-03-20 13:44:27 -05002337 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338}
2339
Trond Myklebust788e7a82006-03-20 13:44:27 -05002340static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 struct inode *inode = data->inode;
2343
2344 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2345 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002346 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002348 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002350 nfs_post_op_update_inode(inode, data->res.fattr);
2351 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354
Trond Myklebust788e7a82006-03-20 13:44:27 -05002355static void nfs4_proc_write_setup(struct nfs_write_data *data, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 struct rpc_message msg = {
2358 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE],
2359 .rpc_argp = &data->args,
2360 .rpc_resp = &data->res,
2361 .rpc_cred = data->cred,
2362 };
2363 struct inode *inode = data->inode;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002364 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 int stable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 if (how & FLUSH_STABLE) {
2368 if (!NFS_I(inode)->ncommit)
2369 stable = NFS_FILE_SYNC;
2370 else
2371 stable = NFS_DATA_SYNC;
2372 } else
2373 stable = NFS_UNSTABLE;
2374 data->args.stable = stable;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002375 data->args.bitmask = server->attr_bitmask;
2376 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
2378 data->timestamp = jiffies;
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 /* Finalize the task. */
Trond Myklebust788e7a82006-03-20 13:44:27 -05002381 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382}
2383
Trond Myklebust788e7a82006-03-20 13:44:27 -05002384static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 struct inode *inode = data->inode;
2387
2388 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2389 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002390 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002392 if (task->tk_status >= 0)
2393 nfs_post_op_update_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002394 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}
2396
Trond Myklebust788e7a82006-03-20 13:44:27 -05002397static void nfs4_proc_commit_setup(struct nfs_write_data *data, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 struct rpc_message msg = {
2400 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
2401 .rpc_argp = &data->args,
2402 .rpc_resp = &data->res,
2403 .rpc_cred = data->cred,
2404 };
Trond Myklebust788e7a82006-03-20 13:44:27 -05002405 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002407 data->args.bitmask = server->attr_bitmask;
2408 data->res.server = server;
2409
Trond Myklebust788e7a82006-03-20 13:44:27 -05002410 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411}
2412
2413/*
2414 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2415 * standalone procedure for queueing an asynchronous RENEW.
2416 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002417static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418{
David Howellsadfa6f92006-08-22 20:06:08 -04002419 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002420 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 if (task->tk_status < 0) {
2423 switch (task->tk_status) {
2424 case -NFS4ERR_STALE_CLIENTID:
2425 case -NFS4ERR_EXPIRED:
2426 case -NFS4ERR_CB_PATH_DOWN:
2427 nfs4_schedule_state_recovery(clp);
2428 }
2429 return;
2430 }
2431 spin_lock(&clp->cl_lock);
2432 if (time_before(clp->cl_last_renewal,timestamp))
2433 clp->cl_last_renewal = timestamp;
2434 spin_unlock(&clp->cl_lock);
2435}
2436
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002437static const struct rpc_call_ops nfs4_renew_ops = {
2438 .rpc_call_done = nfs4_renew_done,
2439};
2440
David Howellsadfa6f92006-08-22 20:06:08 -04002441int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
2443 struct rpc_message msg = {
2444 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2445 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002446 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 };
2448
2449 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002450 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451}
2452
David Howellsadfa6f92006-08-22 20:06:08 -04002453int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
2455 struct rpc_message msg = {
2456 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2457 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002458 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 };
2460 unsigned long now = jiffies;
2461 int status;
2462
2463 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2464 if (status < 0)
2465 return status;
2466 spin_lock(&clp->cl_lock);
2467 if (time_before(clp->cl_last_renewal,now))
2468 clp->cl_last_renewal = now;
2469 spin_unlock(&clp->cl_lock);
2470 return 0;
2471}
2472
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002473static inline int nfs4_server_supports_acls(struct nfs_server *server)
2474{
2475 return (server->caps & NFS_CAP_ACLS)
2476 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2477 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2478}
2479
2480/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2481 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2482 * the stack.
2483 */
2484#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2485
2486static void buf_to_pages(const void *buf, size_t buflen,
2487 struct page **pages, unsigned int *pgbase)
2488{
2489 const void *p = buf;
2490
2491 *pgbase = offset_in_page(buf);
2492 p -= *pgbase;
2493 while (p < buf + buflen) {
2494 *(pages++) = virt_to_page(p);
2495 p += PAGE_CACHE_SIZE;
2496 }
2497}
2498
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002499struct nfs4_cached_acl {
2500 int cached;
2501 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002502 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002503};
2504
2505static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002506{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002507 struct nfs_inode *nfsi = NFS_I(inode);
2508
2509 spin_lock(&inode->i_lock);
2510 kfree(nfsi->nfs4_acl);
2511 nfsi->nfs4_acl = acl;
2512 spin_unlock(&inode->i_lock);
2513}
2514
2515static void nfs4_zap_acl_attr(struct inode *inode)
2516{
2517 nfs4_set_cached_acl(inode, NULL);
2518}
2519
2520static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2521{
2522 struct nfs_inode *nfsi = NFS_I(inode);
2523 struct nfs4_cached_acl *acl;
2524 int ret = -ENOENT;
2525
2526 spin_lock(&inode->i_lock);
2527 acl = nfsi->nfs4_acl;
2528 if (acl == NULL)
2529 goto out;
2530 if (buf == NULL) /* user is just asking for length */
2531 goto out_len;
2532 if (acl->cached == 0)
2533 goto out;
2534 ret = -ERANGE; /* see getxattr(2) man page */
2535 if (acl->len > buflen)
2536 goto out;
2537 memcpy(buf, acl->data, acl->len);
2538out_len:
2539 ret = acl->len;
2540out:
2541 spin_unlock(&inode->i_lock);
2542 return ret;
2543}
2544
2545static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2546{
2547 struct nfs4_cached_acl *acl;
2548
2549 if (buf && acl_len <= PAGE_SIZE) {
2550 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2551 if (acl == NULL)
2552 goto out;
2553 acl->cached = 1;
2554 memcpy(acl->data, buf, acl_len);
2555 } else {
2556 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2557 if (acl == NULL)
2558 goto out;
2559 acl->cached = 0;
2560 }
2561 acl->len = acl_len;
2562out:
2563 nfs4_set_cached_acl(inode, acl);
2564}
2565
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002566static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002567{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002568 struct page *pages[NFS4ACL_MAXPAGES];
2569 struct nfs_getaclargs args = {
2570 .fh = NFS_FH(inode),
2571 .acl_pages = pages,
2572 .acl_len = buflen,
2573 };
2574 size_t resp_len = buflen;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002575 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002576 struct rpc_message msg = {
2577 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2578 .rpc_argp = &args,
2579 .rpc_resp = &resp_len,
2580 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002581 struct page *localpage = NULL;
2582 int ret;
2583
2584 if (buflen < PAGE_SIZE) {
2585 /* As long as we're doing a round trip to the server anyway,
2586 * let's be prepared for a page of acl data. */
2587 localpage = alloc_page(GFP_KERNEL);
2588 resp_buf = page_address(localpage);
2589 if (localpage == NULL)
2590 return -ENOMEM;
2591 args.acl_pages[0] = localpage;
2592 args.acl_pgbase = 0;
J. Bruce Fields1d95db82005-10-13 16:54:32 -04002593 resp_len = args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002594 } else {
2595 resp_buf = buf;
2596 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2597 }
2598 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2599 if (ret)
2600 goto out_free;
2601 if (resp_len > args.acl_len)
2602 nfs4_write_cached_acl(inode, NULL, resp_len);
2603 else
2604 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2605 if (buf) {
2606 ret = -ERANGE;
2607 if (resp_len > buflen)
2608 goto out_free;
2609 if (localpage)
2610 memcpy(buf, resp_buf, resp_len);
2611 }
2612 ret = resp_len;
2613out_free:
2614 if (localpage)
2615 __free_page(localpage);
2616 return ret;
2617}
2618
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002619static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2620{
2621 struct nfs4_exception exception = { };
2622 ssize_t ret;
2623 do {
2624 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2625 if (ret >= 0)
2626 break;
2627 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2628 } while (exception.retry);
2629 return ret;
2630}
2631
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002632static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2633{
2634 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002635 int ret;
2636
2637 if (!nfs4_server_supports_acls(server))
2638 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002639 ret = nfs_revalidate_inode(server, inode);
2640 if (ret < 0)
2641 return ret;
2642 ret = nfs4_read_cached_acl(inode, buf, buflen);
2643 if (ret != -ENOENT)
2644 return ret;
2645 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002646}
2647
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002648static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002649{
2650 struct nfs_server *server = NFS_SERVER(inode);
2651 struct page *pages[NFS4ACL_MAXPAGES];
2652 struct nfs_setaclargs arg = {
2653 .fh = NFS_FH(inode),
2654 .acl_pages = pages,
2655 .acl_len = buflen,
2656 };
2657 struct rpc_message msg = {
2658 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2659 .rpc_argp = &arg,
2660 .rpc_resp = NULL,
2661 };
2662 int ret;
2663
2664 if (!nfs4_server_supports_acls(server))
2665 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002666 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002667 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
David Howells1f163412006-08-22 20:06:11 -04002668 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
J. Bruce Fields08efa202007-05-01 10:56:25 -04002669 nfs_zap_caches(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002670 return ret;
2671}
2672
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002673static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2674{
2675 struct nfs4_exception exception = { };
2676 int err;
2677 do {
2678 err = nfs4_handle_exception(NFS_SERVER(inode),
2679 __nfs4_proc_set_acl(inode, buf, buflen),
2680 &exception);
2681 } while (exception.retry);
2682 return err;
2683}
2684
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685static int
Trond Myklebustfaf5f492005-10-18 14:20:15 -07002686nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
David Howells7539bba2006-08-22 20:06:09 -04002688 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690 if (!clp || task->tk_status >= 0)
2691 return 0;
2692 switch(task->tk_status) {
2693 case -NFS4ERR_STALE_CLIENTID:
2694 case -NFS4ERR_STALE_STATEID:
2695 case -NFS4ERR_EXPIRED:
2696 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL, NULL);
2697 nfs4_schedule_state_recovery(clp);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002698 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 rpc_wake_up_task(task);
2700 task->tk_status = 0;
2701 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 case -NFS4ERR_DELAY:
Chuck Lever006ea732006-03-20 13:44:14 -05002703 nfs_inc_server_stats((struct nfs_server *) server,
2704 NFSIOS_DELAY);
2705 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2707 task->tk_status = 0;
2708 return -EAGAIN;
2709 case -NFS4ERR_OLD_STATEID:
2710 task->tk_status = 0;
2711 return -EAGAIN;
2712 }
2713 task->tk_status = nfs4_map_errors(task->tk_status);
2714 return 0;
2715}
2716
Trond Myklebust433fbe42006-01-03 09:55:22 +01002717static int nfs4_wait_bit_interruptible(void *word)
2718{
2719 if (signal_pending(current))
2720 return -ERESTARTSYS;
2721 schedule();
2722 return 0;
2723}
2724
David Howellsadfa6f92006-08-22 20:06:08 -04002725static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 sigset_t oldset;
Trond Myklebust433fbe42006-01-03 09:55:22 +01002728 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730 might_sleep();
2731
Trond Myklebuste1485822006-12-13 16:43:13 -05002732 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 rpc_clnt_sigmask(clnt, &oldset);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002735 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
2736 nfs4_wait_bit_interruptible,
2737 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 rpc_clnt_sigunmask(clnt, &oldset);
Trond Myklebuste1485822006-12-13 16:43:13 -05002739
2740 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 return res;
2742}
2743
2744static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2745{
2746 sigset_t oldset;
2747 int res = 0;
2748
2749 might_sleep();
2750
2751 if (*timeout <= 0)
2752 *timeout = NFS4_POLL_RETRY_MIN;
2753 if (*timeout > NFS4_POLL_RETRY_MAX)
2754 *timeout = NFS4_POLL_RETRY_MAX;
2755 rpc_clnt_sigmask(clnt, &oldset);
2756 if (clnt->cl_intr) {
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002757 schedule_timeout_interruptible(*timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 if (signalled())
2759 res = -ERESTARTSYS;
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002760 } else
2761 schedule_timeout_uninterruptible(*timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 rpc_clnt_sigunmask(clnt, &oldset);
2763 *timeout <<= 1;
2764 return res;
2765}
2766
2767/* This is the error handling routine for processes that are allowed
2768 * to sleep.
2769 */
Trond Myklebust10afec92007-05-14 17:16:04 -04002770static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771{
David Howells7539bba2006-08-22 20:06:09 -04002772 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 int ret = errorcode;
2774
2775 exception->retry = 0;
2776 switch(errorcode) {
2777 case 0:
2778 return 0;
2779 case -NFS4ERR_STALE_CLIENTID:
2780 case -NFS4ERR_STALE_STATEID:
2781 case -NFS4ERR_EXPIRED:
Trond Myklebust433fbe42006-01-03 09:55:22 +01002782 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 ret = nfs4_wait_clnt_recover(server->client, clp);
2784 if (ret == 0)
2785 exception->retry = 1;
2786 break;
Trond Myklebustc5149832006-09-15 08:25:04 -04002787 case -NFS4ERR_FILE_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 case -NFS4ERR_GRACE:
2789 case -NFS4ERR_DELAY:
2790 ret = nfs4_delay(server->client, &exception->timeout);
Trond Myklebust2c566172005-11-04 15:33:50 -05002791 if (ret != 0)
2792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 case -NFS4ERR_OLD_STATEID:
Trond Myklebust2c566172005-11-04 15:33:50 -05002794 exception->retry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 }
2796 /* We failed to handle the error */
2797 return nfs4_map_errors(ret);
2798}
2799
David Howellsadfa6f92006-08-22 20:06:08 -04002800int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801{
2802 nfs4_verifier sc_verifier;
2803 struct nfs4_setclientid setclientid = {
2804 .sc_verifier = &sc_verifier,
2805 .sc_prog = program,
2806 };
2807 struct rpc_message msg = {
2808 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2809 .rpc_argp = &setclientid,
2810 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002811 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 };
Al Virobc4785c2006-10-19 23:28:51 -07002813 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 int loop = 0;
2815 int status;
2816
Al Virobc4785c2006-10-19 23:28:51 -07002817 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2819 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2820
2821 for(;;) {
2822 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
2823 sizeof(setclientid.sc_name), "%s/%u.%u.%u.%u %s %u",
David Howells24c8dbb2006-08-22 20:06:10 -04002824 clp->cl_ipaddr, NIPQUAD(clp->cl_addr.sin_addr),
Trond Myklebust286d7d62006-01-03 09:55:26 +01002825 cred->cr_ops->cr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 clp->cl_id_uniquifier);
2827 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
2828 sizeof(setclientid.sc_netid), "tcp");
2829 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
2830 sizeof(setclientid.sc_uaddr), "%s.%d.%d",
2831 clp->cl_ipaddr, port >> 8, port & 255);
2832
2833 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2834 if (status != -NFS4ERR_CLID_INUSE)
2835 break;
2836 if (signalled())
2837 break;
2838 if (loop++ & 1)
2839 ssleep(clp->cl_lease_time + 1);
2840 else
2841 if (++clp->cl_id_uniquifier == 0)
2842 break;
2843 }
2844 return status;
2845}
2846
David Howellsadfa6f92006-08-22 20:06:08 -04002847static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
2849 struct nfs_fsinfo fsinfo;
2850 struct rpc_message msg = {
2851 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2852 .rpc_argp = clp,
2853 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002854 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 };
2856 unsigned long now;
2857 int status;
2858
2859 now = jiffies;
2860 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2861 if (status == 0) {
2862 spin_lock(&clp->cl_lock);
2863 clp->cl_lease_time = fsinfo.lease_time * HZ;
2864 clp->cl_last_renewal = now;
Trond Myklebust58d97142006-01-03 09:55:24 +01002865 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 spin_unlock(&clp->cl_lock);
2867 }
2868 return status;
2869}
2870
David Howellsadfa6f92006-08-22 20:06:08 -04002871int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05002872{
2873 long timeout;
2874 int err;
2875 do {
2876 err = _nfs4_proc_setclientid_confirm(clp, cred);
2877 switch (err) {
2878 case 0:
2879 return err;
2880 case -NFS4ERR_RESOURCE:
2881 /* The IBM lawyers misread another document! */
2882 case -NFS4ERR_DELAY:
2883 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2884 }
2885 } while (err == 0);
2886 return err;
2887}
2888
Trond Myklebustfe650402006-01-03 09:55:18 +01002889struct nfs4_delegreturndata {
2890 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002891 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01002892 struct nfs_fh fh;
2893 nfs4_stateid stateid;
2894 struct rpc_cred *cred;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002895 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002896 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01002897 int rpc_status;
2898};
2899
2900static void nfs4_delegreturn_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
Trond Myklebustfe650402006-01-03 09:55:18 +01002902 struct nfs4_delegreturndata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 struct rpc_message msg = {
2904 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
Trond Myklebustfe650402006-01-03 09:55:18 +01002905 .rpc_argp = &data->args,
Trond Myklebustfa178f22006-01-03 09:55:38 +01002906 .rpc_resp = &data->res,
Trond Myklebustfe650402006-01-03 09:55:18 +01002907 .rpc_cred = data->cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 };
Trond Myklebustfa178f22006-01-03 09:55:38 +01002909 nfs_fattr_init(data->res.fattr);
Trond Myklebustfe650402006-01-03 09:55:18 +01002910 rpc_call_setup(task, &msg, 0);
2911}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Trond Myklebustfe650402006-01-03 09:55:18 +01002913static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2914{
2915 struct nfs4_delegreturndata *data = calldata;
2916 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002917 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01002918 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01002919}
2920
2921static void nfs4_delegreturn_release(void *calldata)
2922{
2923 struct nfs4_delegreturndata *data = calldata;
2924
2925 put_rpccred(data->cred);
2926 kfree(calldata);
2927}
2928
Jesper Juhlc8d149f2006-03-20 13:44:07 -05002929static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01002930 .rpc_call_prepare = nfs4_delegreturn_prepare,
2931 .rpc_call_done = nfs4_delegreturn_done,
2932 .rpc_release = nfs4_delegreturn_release,
2933};
2934
2935static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
2936{
2937 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002938 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01002939 struct rpc_task *task;
2940 int status;
2941
2942 data = kmalloc(sizeof(*data), GFP_KERNEL);
2943 if (data == NULL)
2944 return -ENOMEM;
2945 data->args.fhandle = &data->fh;
2946 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002947 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01002948 nfs_copy_fh(&data->fh, NFS_FH(inode));
2949 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01002950 data->res.fattr = &data->fattr;
2951 data->res.server = server;
Trond Myklebustfe650402006-01-03 09:55:18 +01002952 data->cred = get_rpccred(cred);
Trond Myklebust26e976a2006-01-03 09:55:21 +01002953 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01002954 data->rpc_status = 0;
2955
2956 task = rpc_run_task(NFS_CLIENT(inode), RPC_TASK_ASYNC, &nfs4_delegreturn_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05002957 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01002958 return PTR_ERR(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01002959 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebustfa178f22006-01-03 09:55:38 +01002960 if (status == 0) {
Trond Myklebustfe650402006-01-03 09:55:18 +01002961 status = data->rpc_status;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002962 if (status == 0)
2963 nfs_post_op_update_inode(inode, &data->fattr);
2964 }
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05002965 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01002966 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967}
2968
2969int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
2970{
2971 struct nfs_server *server = NFS_SERVER(inode);
2972 struct nfs4_exception exception = { };
2973 int err;
2974 do {
2975 err = _nfs4_proc_delegreturn(inode, cred, stateid);
2976 switch (err) {
2977 case -NFS4ERR_STALE_STATEID:
2978 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 case 0:
2980 return 0;
2981 }
2982 err = nfs4_handle_exception(server, err, &exception);
2983 } while (exception.retry);
2984 return err;
2985}
2986
2987#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
2988#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
2989
2990/*
2991 * sleep, with exponential backoff, and retry the LOCK operation.
2992 */
2993static unsigned long
2994nfs4_set_lock_task_retry(unsigned long timeout)
2995{
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002996 schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 timeout <<= 1;
2998 if (timeout > NFS4_LOCK_MAXTIMEOUT)
2999 return NFS4_LOCK_MAXTIMEOUT;
3000 return timeout;
3001}
3002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3004{
3005 struct inode *inode = state->inode;
3006 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003007 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003008 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003010 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003012 struct nfs_lockt_res res = {
3013 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 };
3015 struct rpc_message msg = {
3016 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3017 .rpc_argp = &arg,
3018 .rpc_resp = &res,
3019 .rpc_cred = state->owner->so_cred,
3020 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 struct nfs4_lock_state *lsp;
3022 int status;
3023
3024 down_read(&clp->cl_sem);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003025 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003026 status = nfs4_set_lock_state(state, request);
3027 if (status != 0)
3028 goto out;
3029 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003030 arg.lock_owner.id = lsp->ls_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003032 switch (status) {
3033 case 0:
3034 request->fl_type = F_UNLCK;
3035 break;
3036 case -NFS4ERR_DENIED:
3037 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003039 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003040out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 up_read(&clp->cl_sem);
3042 return status;
3043}
3044
3045static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3046{
3047 struct nfs4_exception exception = { };
3048 int err;
3049
3050 do {
3051 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3052 _nfs4_proc_getlk(state, cmd, request),
3053 &exception);
3054 } while (exception.retry);
3055 return err;
3056}
3057
3058static int do_vfs_lock(struct file *file, struct file_lock *fl)
3059{
3060 int res = 0;
3061 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3062 case FL_POSIX:
3063 res = posix_lock_file_wait(file, fl);
3064 break;
3065 case FL_FLOCK:
3066 res = flock_lock_file_wait(file, fl);
3067 break;
3068 default:
3069 BUG();
3070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 return res;
3072}
3073
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003074struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003075 struct nfs_locku_args arg;
3076 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003077 struct nfs4_lock_state *lsp;
3078 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003079 struct file_lock fl;
3080 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003081 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003082};
3083
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003084static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3085 struct nfs_open_context *ctx,
3086 struct nfs4_lock_state *lsp,
3087 struct nfs_seqid *seqid)
3088{
3089 struct nfs4_unlockdata *p;
3090 struct inode *inode = lsp->ls_state->inode;
3091
3092 p = kmalloc(sizeof(*p), GFP_KERNEL);
3093 if (p == NULL)
3094 return NULL;
3095 p->arg.fh = NFS_FH(inode);
3096 p->arg.fl = &p->fl;
3097 p->arg.seqid = seqid;
3098 p->arg.stateid = &lsp->ls_stateid;
3099 p->lsp = lsp;
3100 atomic_inc(&lsp->ls_count);
3101 /* Ensure we don't close file until we're done freeing locks! */
3102 p->ctx = get_nfs_open_context(ctx);
3103 memcpy(&p->fl, fl, sizeof(p->fl));
3104 p->server = NFS_SERVER(inode);
3105 return p;
3106}
3107
Trond Myklebust06f814a2006-01-03 09:55:07 +01003108static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003109{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003110 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003111 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003112 nfs4_put_lock_state(calldata->lsp);
3113 put_nfs_open_context(calldata->ctx);
3114 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003115}
3116
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003117static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003118{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003119 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003120
Trond Myklebust06f814a2006-01-03 09:55:07 +01003121 if (RPC_ASSASSINATED(task))
3122 return;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003123 nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003124 switch (task->tk_status) {
3125 case 0:
3126 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003127 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003128 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003129 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003130 break;
3131 case -NFS4ERR_STALE_STATEID:
3132 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003133 break;
3134 default:
Trond Myklebusta6a352e2006-12-13 16:43:06 -05003135 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003136 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003137 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003138}
3139
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003140static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003141{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003142 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 struct rpc_message msg = {
3144 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003145 .rpc_argp = &calldata->arg,
3146 .rpc_resp = &calldata->res,
3147 .rpc_cred = calldata->lsp->ls_state->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003150 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003151 return;
3152 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003153 /* Note: exit _without_ running nfs4_locku_done */
3154 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003155 return;
3156 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003157 calldata->timestamp = jiffies;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003158 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159}
3160
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003161static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003162 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003163 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003164 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003165};
3166
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003167static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3168 struct nfs_open_context *ctx,
3169 struct nfs4_lock_state *lsp,
3170 struct nfs_seqid *seqid)
3171{
3172 struct nfs4_unlockdata *data;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003173
3174 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3175 if (data == NULL) {
3176 nfs_free_seqid(seqid);
3177 return ERR_PTR(-ENOMEM);
3178 }
3179
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003180 return rpc_run_task(NFS_CLIENT(lsp->ls_state->inode), RPC_TASK_ASYNC, &nfs4_locku_ops, data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003181}
3182
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3184{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003185 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003186 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003187 struct rpc_task *task;
3188 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Trond Myklebust9b073572006-06-29 16:38:34 -04003190 status = nfs4_set_lock_state(state, request);
3191 /* Unlock _before_ we do the RPC call */
3192 request->fl_flags |= FL_EXISTS;
3193 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3194 goto out;
3195 if (status != 0)
3196 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003197 /* Is this a delegated lock? */
3198 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003199 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003200 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003201 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003202 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003203 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003204 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003205 task = nfs4_do_unlck(request, request->fl_file->private_data, lsp, seqid);
3206 status = PTR_ERR(task);
3207 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003208 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003209 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003210 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003211out:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003212 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213}
3214
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003215struct nfs4_lockdata {
3216 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003217 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003218 struct nfs4_lock_state *lsp;
3219 struct nfs_open_context *ctx;
3220 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003221 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003222 int rpc_status;
3223 int cancelled;
3224};
3225
3226static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3227 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3228{
3229 struct nfs4_lockdata *p;
3230 struct inode *inode = lsp->ls_state->inode;
3231 struct nfs_server *server = NFS_SERVER(inode);
3232
3233 p = kzalloc(sizeof(*p), GFP_KERNEL);
3234 if (p == NULL)
3235 return NULL;
3236
3237 p->arg.fh = NFS_FH(inode);
3238 p->arg.fl = &p->fl;
3239 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3240 if (p->arg.lock_seqid == NULL)
3241 goto out_free;
3242 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003243 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003244 p->arg.lock_owner.id = lsp->ls_id;
3245 p->lsp = lsp;
3246 atomic_inc(&lsp->ls_count);
3247 p->ctx = get_nfs_open_context(ctx);
3248 memcpy(&p->fl, fl, sizeof(p->fl));
3249 return p;
3250out_free:
3251 kfree(p);
3252 return NULL;
3253}
3254
3255static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3256{
3257 struct nfs4_lockdata *data = calldata;
3258 struct nfs4_state *state = data->lsp->ls_state;
3259 struct nfs4_state_owner *sp = state->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 struct rpc_message msg = {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003261 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3262 .rpc_argp = &data->arg,
3263 .rpc_resp = &data->res,
3264 .rpc_cred = sp->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003267 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3268 return;
3269 dprintk("%s: begin!\n", __FUNCTION__);
3270 /* Do we need to do an open_to_lock_owner? */
3271 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
3272 data->arg.open_seqid = nfs_alloc_seqid(&sp->so_seqid);
3273 if (data->arg.open_seqid == NULL) {
3274 data->rpc_status = -ENOMEM;
3275 task->tk_action = NULL;
Trond Myklebust06735b32005-10-18 14:20:15 -07003276 goto out;
Trond Myklebust06735b32005-10-18 14:20:15 -07003277 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003278 data->arg.open_stateid = &state->stateid;
3279 data->arg.new_lock_owner = 1;
3280 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003281 data->timestamp = jiffies;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003282 rpc_call_setup(task, &msg, 0);
Trond Myklebust06735b32005-10-18 14:20:15 -07003283out:
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003284 dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status);
3285}
3286
3287static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3288{
3289 struct nfs4_lockdata *data = calldata;
3290
3291 dprintk("%s: begin!\n", __FUNCTION__);
3292
3293 data->rpc_status = task->tk_status;
3294 if (RPC_ASSASSINATED(task))
3295 goto out;
3296 if (data->arg.new_lock_owner != 0) {
3297 nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid);
3298 if (data->rpc_status == 0)
3299 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3300 else
3301 goto out;
3302 }
3303 if (data->rpc_status == 0) {
3304 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3305 sizeof(data->lsp->ls_stateid.data));
3306 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003307 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003308 }
3309 nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid);
3310out:
3311 dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status);
3312}
3313
3314static void nfs4_lock_release(void *calldata)
3315{
3316 struct nfs4_lockdata *data = calldata;
3317
3318 dprintk("%s: begin!\n", __FUNCTION__);
3319 if (data->arg.open_seqid != NULL)
3320 nfs_free_seqid(data->arg.open_seqid);
3321 if (data->cancelled != 0) {
3322 struct rpc_task *task;
3323 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3324 data->arg.lock_seqid);
3325 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003326 rpc_put_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003327 dprintk("%s: cancelling lock!\n", __FUNCTION__);
3328 } else
3329 nfs_free_seqid(data->arg.lock_seqid);
3330 nfs4_put_lock_state(data->lsp);
3331 put_nfs_open_context(data->ctx);
3332 kfree(data);
3333 dprintk("%s: done!\n", __FUNCTION__);
3334}
3335
3336static const struct rpc_call_ops nfs4_lock_ops = {
3337 .rpc_call_prepare = nfs4_lock_prepare,
3338 .rpc_call_done = nfs4_lock_done,
3339 .rpc_release = nfs4_lock_release,
3340};
3341
3342static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3343{
3344 struct nfs4_lockdata *data;
3345 struct rpc_task *task;
3346 int ret;
3347
3348 dprintk("%s: begin!\n", __FUNCTION__);
3349 data = nfs4_alloc_lockdata(fl, fl->fl_file->private_data,
3350 fl->fl_u.nfs4_fl.owner);
3351 if (data == NULL)
3352 return -ENOMEM;
3353 if (IS_SETLKW(cmd))
3354 data->arg.block = 1;
3355 if (reclaim != 0)
3356 data->arg.reclaim = 1;
3357 task = rpc_run_task(NFS_CLIENT(state->inode), RPC_TASK_ASYNC,
3358 &nfs4_lock_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003359 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003360 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003361 ret = nfs4_wait_for_completion_rpc_task(task);
3362 if (ret == 0) {
3363 ret = data->rpc_status;
3364 if (ret == -NFS4ERR_DENIED)
3365 ret = -EAGAIN;
3366 } else
3367 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003368 rpc_put_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003369 dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret);
3370 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371}
3372
3373static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3374{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003375 struct nfs_server *server = NFS_SERVER(state->inode);
3376 struct nfs4_exception exception = { };
3377 int err;
3378
3379 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003380 /* Cache the lock if possible... */
3381 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3382 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003383 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3384 if (err != -NFS4ERR_DELAY)
3385 break;
3386 nfs4_handle_exception(server, err, &exception);
3387 } while (exception.retry);
3388 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389}
3390
3391static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3392{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003393 struct nfs_server *server = NFS_SERVER(state->inode);
3394 struct nfs4_exception exception = { };
3395 int err;
3396
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003397 err = nfs4_set_lock_state(state, request);
3398 if (err != 0)
3399 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003400 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003401 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3402 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003403 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3404 if (err != -NFS4ERR_DELAY)
3405 break;
3406 nfs4_handle_exception(server, err, &exception);
3407 } while (exception.retry);
3408 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409}
3410
3411static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3412{
David Howellsadfa6f92006-08-22 20:06:08 -04003413 struct nfs_client *clp = state->owner->so_client;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003414 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 int status;
3416
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003417 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003418 status = nfs4_set_lock_state(state, request);
3419 if (status != 0)
3420 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003421 request->fl_flags |= FL_ACCESS;
3422 status = do_vfs_lock(request->fl_file, request);
3423 if (status < 0)
3424 goto out;
3425 down_read(&clp->cl_sem);
3426 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3427 struct nfs_inode *nfsi = NFS_I(state->inode);
3428 /* Yes: cache locks! */
3429 down_read(&nfsi->rwsem);
3430 /* ...but avoid races with delegation recall... */
3431 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3432 request->fl_flags = fl_flags & ~FL_SLEEP;
3433 status = do_vfs_lock(request->fl_file, request);
3434 up_read(&nfsi->rwsem);
3435 goto out_unlock;
3436 }
3437 up_read(&nfsi->rwsem);
3438 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003439 status = _nfs4_do_setlk(state, cmd, request, 0);
3440 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003441 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003442 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003443 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003444 if (do_vfs_lock(request->fl_file, request) < 0)
3445 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003446out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 up_read(&clp->cl_sem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003448out:
3449 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 return status;
3451}
3452
3453static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3454{
3455 struct nfs4_exception exception = { };
3456 int err;
3457
3458 do {
3459 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3460 _nfs4_proc_setlk(state, cmd, request),
3461 &exception);
3462 } while (exception.retry);
3463 return err;
3464}
3465
3466static int
3467nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3468{
3469 struct nfs_open_context *ctx;
3470 struct nfs4_state *state;
3471 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3472 int status;
3473
3474 /* verify open state */
3475 ctx = (struct nfs_open_context *)filp->private_data;
3476 state = ctx->state;
3477
3478 if (request->fl_start < 0 || request->fl_end < 0)
3479 return -EINVAL;
3480
3481 if (IS_GETLK(cmd))
3482 return nfs4_proc_getlk(state, F_GETLK, request);
3483
3484 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3485 return -EINVAL;
3486
3487 if (request->fl_type == F_UNLCK)
3488 return nfs4_proc_unlck(state, cmd, request);
3489
3490 do {
3491 status = nfs4_proc_setlk(state, cmd, request);
3492 if ((status != -EAGAIN) || IS_SETLK(cmd))
3493 break;
3494 timeout = nfs4_set_lock_task_retry(timeout);
3495 status = -ERESTARTSYS;
3496 if (signalled())
3497 break;
3498 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 return status;
3500}
3501
Trond Myklebust888e6942005-11-04 15:38:11 -05003502int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3503{
3504 struct nfs_server *server = NFS_SERVER(state->inode);
3505 struct nfs4_exception exception = { };
3506 int err;
3507
3508 err = nfs4_set_lock_state(state, fl);
3509 if (err != 0)
3510 goto out;
3511 do {
3512 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3513 if (err != -NFS4ERR_DELAY)
3514 break;
3515 err = nfs4_handle_exception(server, err, &exception);
3516 } while (exception.retry);
3517out:
3518 return err;
3519}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003520
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003521#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3522
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003523int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3524 size_t buflen, int flags)
3525{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003526 struct inode *inode = dentry->d_inode;
3527
3528 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3529 return -EOPNOTSUPP;
3530
3531 if (!S_ISREG(inode->i_mode) &&
3532 (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX))
3533 return -EPERM;
3534
3535 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003536}
3537
3538/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3539 * and that's what we'll do for e.g. user attributes that haven't been set.
3540 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3541 * attributes in kernel-managed attribute namespaces. */
3542ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3543 size_t buflen)
3544{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003545 struct inode *inode = dentry->d_inode;
3546
3547 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3548 return -EOPNOTSUPP;
3549
3550 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003551}
3552
3553ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3554{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003555 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003556
J. Bruce Fields096455a2006-03-20 23:23:42 -05003557 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3558 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003559 if (buf && buflen < len)
3560 return -ERANGE;
3561 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003562 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3563 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003564}
3565
Trond Myklebustc228fd32007-01-13 02:28:11 -05003566int nfs4_proc_fs_locations(struct inode *dir, struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003567 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003568{
3569 struct nfs_server *server = NFS_SERVER(dir);
3570 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003571 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3572 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003573 };
3574 struct nfs4_fs_locations_arg args = {
3575 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05003576 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003577 .page = page,
3578 .bitmask = bitmask,
3579 };
3580 struct rpc_message msg = {
3581 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3582 .rpc_argp = &args,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003583 .rpc_resp = fs_locations,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003584 };
3585 int status;
3586
3587 dprintk("%s: start\n", __FUNCTION__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05003588 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003589 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003590 fs_locations->nlocations = 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003591 status = rpc_call_sync(server->client, &msg, 0);
3592 dprintk("%s: returned status = %d\n", __FUNCTION__, status);
3593 return status;
3594}
3595
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3597 .recover_open = nfs4_open_reclaim,
3598 .recover_lock = nfs4_lock_reclaim,
3599};
3600
3601struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3602 .recover_open = nfs4_open_expired,
3603 .recover_lock = nfs4_lock_expired,
3604};
3605
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003606static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003607 .permission = nfs_permission,
3608 .getattr = nfs_getattr,
3609 .setattr = nfs_setattr,
3610 .getxattr = nfs4_getxattr,
3611 .setxattr = nfs4_setxattr,
3612 .listxattr = nfs4_listxattr,
3613};
3614
David Howells509de812006-08-22 20:06:11 -04003615const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 .version = 4, /* protocol version */
3617 .dentry_ops = &nfs4_dentry_operations,
3618 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003619 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 .getroot = nfs4_proc_get_root,
3621 .getattr = nfs4_proc_getattr,
3622 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003623 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 .lookup = nfs4_proc_lookup,
3625 .access = nfs4_proc_access,
3626 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 .create = nfs4_proc_create,
3628 .remove = nfs4_proc_remove,
3629 .unlink_setup = nfs4_proc_unlink_setup,
3630 .unlink_done = nfs4_proc_unlink_done,
3631 .rename = nfs4_proc_rename,
3632 .link = nfs4_proc_link,
3633 .symlink = nfs4_proc_symlink,
3634 .mkdir = nfs4_proc_mkdir,
3635 .rmdir = nfs4_proc_remove,
3636 .readdir = nfs4_proc_readdir,
3637 .mknod = nfs4_proc_mknod,
3638 .statfs = nfs4_proc_statfs,
3639 .fsinfo = nfs4_proc_fsinfo,
3640 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003641 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 .decode_dirent = nfs4_decode_dirent,
3643 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003644 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003646 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003648 .commit_done = nfs4_commit_done,
Trond Myklebust02a913a2005-10-18 14:20:17 -07003649 .file_open = nfs_open,
3650 .file_release = nfs_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003652 .clear_acl_cache = nfs4_zap_acl_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653};
3654
3655/*
3656 * Local variables:
3657 * c-basic-offset: 8
3658 * End:
3659 */