blob: 7f60beb40df3213829338ef32bb6705e908ac7b6 [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
58#define NFS4_POLL_RETRY_MIN (1*HZ)
59#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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static void nfs4_setup_readdir(u64 cookie, u32 *verifier, struct dentry *dentry,
142 struct nfs4_readdir_arg *readdir)
143{
144 u32 *start, *p;
145
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 */
165 start = p = (u32 *)kmap_atomic(*readdir->pages, KM_USER0);
166
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;
224 struct dentry *dentry;
225 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
233static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
234 struct nfs4_state_owner *sp, int flags,
235 const struct iattr *attrs)
236{
237 struct dentry *parent = dget_parent(dentry);
238 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 Myklebuste56e0b782006-01-03 09:55:08 +0100249 p->dentry = dget(dentry);
250 p->dir = parent;
251 p->owner = sp;
252 atomic_inc(&sp->so_count);
253 p->o_arg.fh = NFS_FH(dir);
254 p->o_arg.open_flags = flags,
David Howells7539bba2006-08-22 20:06:09 -0400255 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100256 p->o_arg.id = sp->so_id;
257 p->o_arg.name = &dentry->d_name;
258 p->o_arg.server = server;
259 p->o_arg.bitmask = server->attr_bitmask;
260 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
261 p->o_res.f_attr = &p->f_attr;
262 p->o_res.dir_attr = &p->dir_attr;
263 p->o_res.server = server;
264 nfs_fattr_init(&p->f_attr);
265 nfs_fattr_init(&p->dir_attr);
266 if (flags & O_EXCL) {
267 u32 *s = (u32 *) p->o_arg.u.verifier.data;
268 s[0] = jiffies;
269 s[1] = current->pid;
270 } else if (flags & O_CREAT) {
271 p->o_arg.u.attrs = &p->attrs;
272 memcpy(&p->attrs, attrs, sizeof(p->attrs));
273 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100274 p->c_arg.fh = &p->o_res.fh;
275 p->c_arg.stateid = &p->o_res.stateid;
276 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100277 return p;
278err_free:
279 kfree(p);
280err:
281 dput(parent);
282 return NULL;
283}
284
285static void nfs4_opendata_free(struct nfs4_opendata *p)
286{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100287 if (p != NULL && atomic_dec_and_test(&p->count)) {
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100288 nfs_free_seqid(p->o_arg.seqid);
289 nfs4_put_state_owner(p->owner);
290 dput(p->dir);
291 dput(p->dentry);
292 kfree(p);
293 }
294}
295
Trond Myklebust95121352005-10-18 14:20:12 -0700296/* Helper for asynchronous RPC calls */
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100297static int nfs4_call_async(struct rpc_clnt *clnt,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100298 const struct rpc_call_ops *tk_ops, void *calldata)
Trond Myklebust95121352005-10-18 14:20:12 -0700299{
300 struct rpc_task *task;
301
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100302 if (!(task = rpc_new_task(clnt, RPC_TASK_ASYNC, tk_ops, calldata)))
Trond Myklebust95121352005-10-18 14:20:12 -0700303 return -ENOMEM;
Trond Myklebust95121352005-10-18 14:20:12 -0700304 rpc_execute(task);
305 return 0;
306}
307
Trond Myklebust06f814a2006-01-03 09:55:07 +0100308static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
309{
310 sigset_t oldset;
311 int ret;
312
313 rpc_clnt_sigmask(task->tk_client, &oldset);
314 ret = rpc_wait_for_completion_task(task);
315 rpc_clnt_sigunmask(task->tk_client, &oldset);
316 return ret;
317}
318
Trond Myklebuste7616922006-01-03 09:55:13 +0100319static inline void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
320{
321 switch (open_flags) {
322 case FMODE_WRITE:
323 state->n_wronly++;
324 break;
325 case FMODE_READ:
326 state->n_rdonly++;
327 break;
328 case FMODE_READ|FMODE_WRITE:
329 state->n_rdwr++;
330 }
331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
334{
335 struct inode *inode = state->inode;
336
337 open_flags &= (FMODE_READ|FMODE_WRITE);
Trond Myklebustd5308382005-11-04 15:33:38 -0500338 /* Protect against nfs4_find_state_byowner() */
Trond Myklebustec073422005-10-20 14:22:47 -0700339 spin_lock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 spin_lock(&inode->i_lock);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500341 memcpy(&state->stateid, stateid, sizeof(state->stateid));
Trond Myklebuste7616922006-01-03 09:55:13 +0100342 update_open_stateflags(state, open_flags);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500343 nfs4_state_set_mode_locked(state, state->state | open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700345 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100348static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
349{
350 struct inode *inode;
351 struct nfs4_state *state = NULL;
352
353 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
354 goto out;
355 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500356 if (IS_ERR(inode))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100357 goto out;
358 state = nfs4_get_open_state(inode, data->owner);
359 if (state == NULL)
360 goto put_inode;
361 update_open_stateid(state, &data->o_res.stateid, data->o_arg.open_flags);
362put_inode:
363 iput(inode);
364out:
365 return state;
366}
367
Trond Myklebust864472e2006-01-03 09:55:15 +0100368static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
369{
370 struct nfs_inode *nfsi = NFS_I(state->inode);
371 struct nfs_open_context *ctx;
372
373 spin_lock(&state->inode->i_lock);
374 list_for_each_entry(ctx, &nfsi->open_files, list) {
375 if (ctx->state != state)
376 continue;
377 get_nfs_open_context(ctx);
378 spin_unlock(&state->inode->i_lock);
379 return ctx;
380 }
381 spin_unlock(&state->inode->i_lock);
382 return ERR_PTR(-ENOENT);
383}
384
385static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, nfs4_stateid *stateid)
386{
387 int ret;
388
389 opendata->o_arg.open_flags = openflags;
390 ret = _nfs4_proc_open(opendata);
391 if (ret != 0)
392 return ret;
393 memcpy(stateid->data, opendata->o_res.stateid.data,
394 sizeof(stateid->data));
395 return 0;
396}
397
398static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
399{
400 nfs4_stateid stateid;
401 struct nfs4_state *newstate;
402 int mode = 0;
403 int delegation = 0;
404 int ret;
405
406 /* memory barrier prior to reading state->n_* */
407 smp_rmb();
408 if (state->n_rdwr != 0) {
409 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &stateid);
410 if (ret != 0)
411 return ret;
412 mode |= FMODE_READ|FMODE_WRITE;
413 if (opendata->o_res.delegation_type != 0)
414 delegation = opendata->o_res.delegation_type;
415 smp_rmb();
416 }
417 if (state->n_wronly != 0) {
418 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &stateid);
419 if (ret != 0)
420 return ret;
421 mode |= FMODE_WRITE;
422 if (opendata->o_res.delegation_type != 0)
423 delegation = opendata->o_res.delegation_type;
424 smp_rmb();
425 }
426 if (state->n_rdonly != 0) {
427 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &stateid);
428 if (ret != 0)
429 return ret;
430 mode |= FMODE_READ;
431 }
432 clear_bit(NFS_DELEGATED_STATE, &state->flags);
433 if (mode == 0)
434 return 0;
435 if (opendata->o_res.delegation_type == 0)
436 opendata->o_res.delegation_type = delegation;
437 opendata->o_arg.open_flags |= mode;
438 newstate = nfs4_opendata_to_nfs4_state(opendata);
439 if (newstate != NULL) {
440 if (opendata->o_res.delegation_type != 0) {
441 struct nfs_inode *nfsi = NFS_I(newstate->inode);
442 int delegation_flags = 0;
443 if (nfsi->delegation)
444 delegation_flags = nfsi->delegation->flags;
445 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
446 nfs_inode_set_delegation(newstate->inode,
447 opendata->owner->so_cred,
448 &opendata->o_res);
449 else
450 nfs_inode_reclaim_delegation(newstate->inode,
451 opendata->owner->so_cred,
452 &opendata->o_res);
453 }
454 nfs4_close_state(newstate, opendata->o_arg.open_flags);
455 }
456 if (newstate != state)
457 return -ESTALE;
458 return 0;
459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/*
462 * OPEN_RECLAIM:
463 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 */
Trond Myklebust864472e2006-01-03 09:55:15 +0100465static int _nfs4_do_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Trond Myklebust864472e2006-01-03 09:55:15 +0100467 struct nfs_delegation *delegation = NFS_I(state->inode)->delegation;
468 struct nfs4_opendata *opendata;
469 int delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 int status;
471
472 if (delegation != NULL) {
473 if (!(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
474 memcpy(&state->stateid, &delegation->stateid,
475 sizeof(state->stateid));
476 set_bit(NFS_DELEGATED_STATE, &state->flags);
477 return 0;
478 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100479 delegation_type = delegation->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100481 opendata = nfs4_opendata_alloc(dentry, sp, 0, NULL);
482 if (opendata == NULL)
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700483 return -ENOMEM;
Trond Myklebust864472e2006-01-03 09:55:15 +0100484 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
485 opendata->o_arg.fh = NFS_FH(state->inode);
486 nfs_copy_fh(&opendata->o_res.fh, opendata->o_arg.fh);
487 opendata->o_arg.u.delegation_type = delegation_type;
488 status = nfs4_open_recover(opendata, state);
489 nfs4_opendata_free(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return status;
491}
492
Trond Myklebust864472e2006-01-03 09:55:15 +0100493static int nfs4_do_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 struct nfs_server *server = NFS_SERVER(state->inode);
496 struct nfs4_exception exception = { };
497 int err;
498 do {
Trond Myklebust864472e2006-01-03 09:55:15 +0100499 err = _nfs4_do_open_reclaim(sp, state, dentry);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000500 if (err != -NFS4ERR_DELAY)
501 break;
502 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 } while (exception.retry);
504 return err;
505}
506
Trond Myklebust864472e2006-01-03 09:55:15 +0100507static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
508{
509 struct nfs_open_context *ctx;
510 int ret;
511
512 ctx = nfs4_state_find_open_context(state);
513 if (IS_ERR(ctx))
514 return PTR_ERR(ctx);
515 ret = nfs4_do_open_reclaim(sp, state, ctx->dentry);
516 put_nfs_open_context(ctx);
517 return ret;
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static int _nfs4_open_delegation_recall(struct dentry *dentry, struct nfs4_state *state)
521{
522 struct nfs4_state_owner *sp = state->owner;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100523 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100524 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust864472e2006-01-03 09:55:15 +0100527 return 0;
528 opendata = nfs4_opendata_alloc(dentry, sp, 0, NULL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100529 if (opendata == NULL)
Trond Myklebust864472e2006-01-03 09:55:15 +0100530 return -ENOMEM;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100531 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100532 memcpy(opendata->o_arg.u.delegation.data, state->stateid.data,
533 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100534 ret = nfs4_open_recover(opendata, state);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100535 nfs4_opendata_free(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100536 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539int nfs4_open_delegation_recall(struct dentry *dentry, struct nfs4_state *state)
540{
541 struct nfs4_exception exception = { };
542 struct nfs_server *server = NFS_SERVER(dentry->d_inode);
543 int err;
544 do {
545 err = _nfs4_open_delegation_recall(dentry, state);
546 switch (err) {
547 case 0:
548 return err;
549 case -NFS4ERR_STALE_CLIENTID:
550 case -NFS4ERR_STALE_STATEID:
551 case -NFS4ERR_EXPIRED:
552 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400553 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return err;
555 }
556 err = nfs4_handle_exception(server, err, &exception);
557 } while (exception.retry);
558 return err;
559}
560
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100561static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100563 struct nfs4_opendata *data = calldata;
564 struct rpc_message msg = {
565 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
566 .rpc_argp = &data->c_arg,
567 .rpc_resp = &data->c_res,
568 .rpc_cred = data->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 };
Trond Myklebust26e976a2006-01-03 09:55:21 +0100570 data->timestamp = jiffies;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100571 rpc_call_setup(task, &msg, 0);
572}
573
574static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
575{
576 struct nfs4_opendata *data = calldata;
577
578 data->rpc_status = task->tk_status;
579 if (RPC_ASSASSINATED(task))
580 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100581 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100582 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
583 sizeof(data->o_res.stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +0100584 renew_lease(data->o_res.server, data->timestamp);
585 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100586 nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid);
587 nfs_confirm_seqid(&data->owner->so_seqid, data->rpc_status);
588}
589
590static void nfs4_open_confirm_release(void *calldata)
591{
592 struct nfs4_opendata *data = calldata;
593 struct nfs4_state *state = NULL;
594
595 /* If this request hasn't been cancelled, do nothing */
596 if (data->cancelled == 0)
597 goto out_free;
598 /* In case of error, no cleanup! */
599 if (data->rpc_status != 0)
600 goto out_free;
601 nfs_confirm_seqid(&data->owner->so_seqid, 0);
602 state = nfs4_opendata_to_nfs4_state(data);
603 if (state != NULL)
604 nfs4_close_state(state, data->o_arg.open_flags);
605out_free:
606 nfs4_opendata_free(data);
607}
608
609static const struct rpc_call_ops nfs4_open_confirm_ops = {
610 .rpc_call_prepare = nfs4_open_confirm_prepare,
611 .rpc_call_done = nfs4_open_confirm_done,
612 .rpc_release = nfs4_open_confirm_release,
613};
614
615/*
616 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
617 */
618static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
619{
620 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
621 struct rpc_task *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int status;
623
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100624 atomic_inc(&data->count);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500625 /*
626 * If rpc_run_task() ends up calling ->rpc_release(), we
627 * want to ensure that it takes the 'error' code path.
628 */
629 data->rpc_status = -ENOMEM;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100630 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_confirm_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500631 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100632 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100633 status = nfs4_wait_for_completion_rpc_task(task);
634 if (status != 0) {
635 data->cancelled = 1;
636 smp_wmb();
637 } else
638 status = data->rpc_status;
639 rpc_release_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return status;
641}
642
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100643static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100645 struct nfs4_opendata *data = calldata;
646 struct nfs4_state_owner *sp = data->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 struct rpc_message msg = {
648 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100649 .rpc_argp = &data->o_arg,
650 .rpc_resp = &data->o_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 .rpc_cred = sp->so_cred,
652 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100653
654 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
655 return;
656 /* Update sequence id. */
657 data->o_arg.id = sp->so_id;
658 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust864472e2006-01-03 09:55:15 +0100659 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
660 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust26e976a2006-01-03 09:55:21 +0100661 data->timestamp = jiffies;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100662 rpc_call_setup(task, &msg, 0);
663}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100665static void nfs4_open_done(struct rpc_task *task, void *calldata)
666{
667 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100669 data->rpc_status = task->tk_status;
670 if (RPC_ASSASSINATED(task))
671 return;
672 if (task->tk_status == 0) {
673 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -0700674 case S_IFREG:
675 break;
676 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100677 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700678 break;
679 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100680 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700681 break;
682 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100683 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700684 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100685 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust6f926b52005-10-18 14:20:18 -0700686 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100687 nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid);
688}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700689
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100690static void nfs4_open_release(void *calldata)
691{
692 struct nfs4_opendata *data = calldata;
693 struct nfs4_state *state = NULL;
694
695 /* If this request hasn't been cancelled, do nothing */
696 if (data->cancelled == 0)
697 goto out_free;
698 /* In case of error, no cleanup! */
699 if (data->rpc_status != 0)
700 goto out_free;
701 /* In case we need an open_confirm, no cleanup! */
702 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
703 goto out_free;
704 nfs_confirm_seqid(&data->owner->so_seqid, 0);
705 state = nfs4_opendata_to_nfs4_state(data);
706 if (state != NULL)
707 nfs4_close_state(state, data->o_arg.open_flags);
708out_free:
709 nfs4_opendata_free(data);
710}
711
712static const struct rpc_call_ops nfs4_open_ops = {
713 .rpc_call_prepare = nfs4_open_prepare,
714 .rpc_call_done = nfs4_open_done,
715 .rpc_release = nfs4_open_release,
716};
717
718/*
719 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
720 */
721static int _nfs4_proc_open(struct nfs4_opendata *data)
722{
723 struct inode *dir = data->dir->d_inode;
724 struct nfs_server *server = NFS_SERVER(dir);
725 struct nfs_openargs *o_arg = &data->o_arg;
726 struct nfs_openres *o_res = &data->o_res;
727 struct rpc_task *task;
728 int status;
729
730 atomic_inc(&data->count);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500731 /*
732 * If rpc_run_task() ends up calling ->rpc_release(), we
733 * want to ensure that it takes the 'error' code path.
734 */
735 data->rpc_status = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100736 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500737 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100738 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100739 status = nfs4_wait_for_completion_rpc_task(task);
740 if (status != 0) {
741 data->cancelled = 1;
742 smp_wmb();
743 } else
744 status = data->rpc_status;
745 rpc_release_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100747 return status;
748
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400749 if (o_arg->open_flags & O_CREAT) {
750 update_changeattr(dir, &o_res->cinfo);
751 nfs_post_op_update_inode(dir, o_res->dir_attr);
752 } else
753 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100755 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100757 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100759 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
David Howells8fa5c002006-08-22 20:06:12 -0400761 return server->nfs_client->rpc_ops->getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765static int _nfs4_do_access(struct inode *inode, struct rpc_cred *cred, int openflags)
766{
767 struct nfs_access_entry cache;
768 int mask = 0;
769 int status;
770
771 if (openflags & FMODE_READ)
772 mask |= MAY_READ;
773 if (openflags & FMODE_WRITE)
774 mask |= MAY_WRITE;
775 status = nfs_access_get_cached(inode, cred, &cache);
776 if (status == 0)
777 goto out;
778
779 /* Be clever: ask server to check for all possible rights */
780 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
781 cache.cred = cred;
782 cache.jiffies = jiffies;
783 status = _nfs4_proc_access(inode, &cache);
784 if (status != 0)
785 return status;
786 nfs_access_add_cache(inode, &cache);
787out:
788 if ((cache.mask & mask) == mask)
789 return 0;
790 return -EACCES;
791}
792
Trond Myklebust58d97142006-01-03 09:55:24 +0100793int nfs4_recover_expired_lease(struct nfs_server *server)
794{
David Howells7539bba2006-08-22 20:06:09 -0400795 struct nfs_client *clp = server->nfs_client;
Trond Myklebust58d97142006-01-03 09:55:24 +0100796
797 if (test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
798 nfs4_schedule_state_recovery(clp);
799 return nfs4_wait_clnt_recover(server->client, clp);
800}
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802/*
803 * OPEN_EXPIRED:
804 * reclaim state on the server after a network partition.
805 * Assumes caller holds the appropriate lock
806 */
807static int _nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
808{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct inode *inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 struct nfs_delegation *delegation = NFS_I(inode)->delegation;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100811 struct nfs4_opendata *opendata;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100812 int openflags = state->state & (FMODE_READ|FMODE_WRITE);
Trond Myklebust864472e2006-01-03 09:55:15 +0100813 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 if (delegation != NULL && !(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
Trond Myklebust864472e2006-01-03 09:55:15 +0100816 ret = _nfs4_do_access(inode, sp->so_cred, openflags);
817 if (ret < 0)
818 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 memcpy(&state->stateid, &delegation->stateid, sizeof(state->stateid));
820 set_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100823 opendata = nfs4_opendata_alloc(dentry, sp, openflags, NULL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100824 if (opendata == NULL)
Trond Myklebust864472e2006-01-03 09:55:15 +0100825 return -ENOMEM;
826 ret = nfs4_open_recover(opendata, state);
827 if (ret == -ESTALE) {
828 /* Invalidate the state owner so we don't ever use it again */
829 nfs4_drop_state_owner(sp);
830 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100832 nfs4_opendata_free(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100833 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Trond Myklebust202b50d2005-06-22 17:16:29 +0000836static inline int nfs4_do_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
837{
838 struct nfs_server *server = NFS_SERVER(dentry->d_inode);
839 struct nfs4_exception exception = { };
840 int err;
841
842 do {
843 err = _nfs4_open_expired(sp, state, dentry);
844 if (err == -NFS4ERR_DELAY)
845 nfs4_handle_exception(server, err, &exception);
846 } while (exception.retry);
847 return err;
848}
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
851{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +0100853 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Trond Myklebust864472e2006-01-03 09:55:15 +0100855 ctx = nfs4_state_find_open_context(state);
856 if (IS_ERR(ctx))
857 return PTR_ERR(ctx);
858 ret = nfs4_do_open_expired(sp, state, ctx->dentry);
859 put_nfs_open_context(ctx);
860 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
863/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100864 * Returns a referenced nfs4_state if there is an open delegation on the file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 */
866static int _nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred, struct nfs4_state **res)
867{
868 struct nfs_delegation *delegation;
869 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -0400870 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 struct nfs_inode *nfsi = NFS_I(inode);
872 struct nfs4_state_owner *sp = NULL;
873 struct nfs4_state *state = NULL;
874 int open_flags = flags & (FMODE_READ|FMODE_WRITE);
875 int err;
876
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100877 err = -ENOMEM;
878 if (!(sp = nfs4_get_state_owner(server, cred))) {
879 dprintk("%s: nfs4_get_state_owner failed!\n", __FUNCTION__);
880 return err;
881 }
Trond Myklebust58d97142006-01-03 09:55:24 +0100882 err = nfs4_recover_expired_lease(server);
883 if (err != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100884 goto out_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 /* Protect against reboot recovery - NOTE ORDER! */
886 down_read(&clp->cl_sem);
887 /* Protect against delegation recall */
888 down_read(&nfsi->rwsem);
889 delegation = NFS_I(inode)->delegation;
890 err = -ENOENT;
891 if (delegation == NULL || (delegation->type & open_flags) != open_flags)
892 goto out_err;
893 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 state = nfs4_get_open_state(inode, sp);
895 if (state == NULL)
896 goto out_err;
897
898 err = -ENOENT;
899 if ((state->state & open_flags) == open_flags) {
900 spin_lock(&inode->i_lock);
Trond Myklebuste7616922006-01-03 09:55:13 +0100901 update_open_stateflags(state, open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 spin_unlock(&inode->i_lock);
903 goto out_ok;
904 } else if (state->state != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100905 goto out_put_open_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 lock_kernel();
908 err = _nfs4_do_access(inode, cred, open_flags);
909 unlock_kernel();
910 if (err != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100911 goto out_put_open_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 set_bit(NFS_DELEGATED_STATE, &state->flags);
913 update_open_stateid(state, &delegation->stateid, open_flags);
914out_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 nfs4_put_state_owner(sp);
916 up_read(&nfsi->rwsem);
917 up_read(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 *res = state;
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100919 return 0;
920out_put_open_state:
921 nfs4_put_open_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 up_read(&nfsi->rwsem);
924 up_read(&clp->cl_sem);
Trond Myklebustb8e5c4c2005-10-18 14:20:20 -0700925 if (err != -EACCES)
926 nfs_inode_return_delegation(inode);
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100927out_put_state_owner:
928 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return err;
930}
931
932static struct nfs4_state *nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred)
933{
934 struct nfs4_exception exception = { };
Trond Myklebusta162a6b2006-03-20 13:44:10 -0500935 struct nfs4_state *res = ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 int err;
937
938 do {
939 err = _nfs4_open_delegated(inode, flags, cred, &res);
940 if (err == 0)
941 break;
942 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(inode),
943 err, &exception));
944 } while (exception.retry);
945 return res;
946}
947
948/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100949 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 */
951static int _nfs4_do_open(struct inode *dir, struct dentry *dentry, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
952{
953 struct nfs4_state_owner *sp;
954 struct nfs4_state *state = NULL;
955 struct nfs_server *server = NFS_SERVER(dir);
David Howells7539bba2006-08-22 20:06:09 -0400956 struct nfs_client *clp = server->nfs_client;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100957 struct nfs4_opendata *opendata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 status = -ENOMEM;
962 if (!(sp = nfs4_get_state_owner(server, cred))) {
963 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
964 goto out_err;
965 }
Trond Myklebust58d97142006-01-03 09:55:24 +0100966 status = nfs4_recover_expired_lease(server);
967 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100968 goto err_put_state_owner;
Trond Myklebust58d97142006-01-03 09:55:24 +0100969 down_read(&clp->cl_sem);
970 status = -ENOMEM;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100971 opendata = nfs4_opendata_alloc(dentry, sp, flags, sattr);
972 if (opendata == NULL)
Trond Myklebust76723de2006-09-15 08:11:51 -0400973 goto err_release_rwsem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100975 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (status != 0)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100977 goto err_opendata_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 status = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100980 state = nfs4_opendata_to_nfs4_state(opendata);
981 if (state == NULL)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100982 goto err_opendata_free;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100983 if (opendata->o_res.delegation_type != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100984 nfs_inode_set_delegation(state->inode, cred, &opendata->o_res);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100985 nfs4_opendata_free(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 nfs4_put_state_owner(sp);
987 up_read(&clp->cl_sem);
988 *res = state;
989 return 0;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100990err_opendata_free:
991 nfs4_opendata_free(opendata);
Trond Myklebust76723de2006-09-15 08:11:51 -0400992err_release_rwsem:
993 up_read(&clp->cl_sem);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100994err_put_state_owner:
995 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 *res = NULL;
998 return status;
999}
1000
1001
1002static struct nfs4_state *nfs4_do_open(struct inode *dir, struct dentry *dentry, int flags, struct iattr *sattr, struct rpc_cred *cred)
1003{
1004 struct nfs4_exception exception = { };
1005 struct nfs4_state *res;
1006 int status;
1007
1008 do {
1009 status = _nfs4_do_open(dir, dentry, flags, sattr, cred, &res);
1010 if (status == 0)
1011 break;
1012 /* NOTE: BAD_SEQID means the server and client disagree about the
1013 * book-keeping w.r.t. state-changing operations
1014 * (OPEN/CLOSE/LOCK/LOCKU...)
1015 * It is actually a sign of a bug on the client or on the server.
1016 *
1017 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001018 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 * have unhashed the old state_owner for us, and that we can
1020 * therefore safely retry using a new one. We should still warn
1021 * the user though...
1022 */
1023 if (status == -NFS4ERR_BAD_SEQID) {
1024 printk(KERN_WARNING "NFS: v4 server returned a bad sequence-id error!\n");
1025 exception.retry = 1;
1026 continue;
1027 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001028 /*
1029 * BAD_STATEID on OPEN means that the server cancelled our
1030 * state before it received the OPEN_CONFIRM.
1031 * Recover by retrying the request as per the discussion
1032 * on Page 181 of RFC3530.
1033 */
1034 if (status == -NFS4ERR_BAD_STATEID) {
1035 exception.retry = 1;
1036 continue;
1037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1039 status, &exception));
1040 } while (exception.retry);
1041 return res;
1042}
1043
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001044static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1045 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001047 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001049 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 .iap = sattr,
1051 .server = server,
1052 .bitmask = server->attr_bitmask,
1053 };
1054 struct nfs_setattrres res = {
1055 .fattr = fattr,
1056 .server = server,
1057 };
1058 struct rpc_message msg = {
1059 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1060 .rpc_argp = &arg,
1061 .rpc_resp = &res,
1062 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001063 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001064 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Trond Myklebust0e574af2005-10-27 22:12:38 -04001066 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001068 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1069 /* Use that stateid */
1070 } else if (state != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 msg.rpc_cred = state->owner->so_cred;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001072 nfs4_copy_stateid(&arg.stateid, state, current->files);
1073 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1075
Trond Myklebust65e43082005-08-16 11:49:44 -04001076 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001077 if (status == 0 && state != NULL)
1078 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001079 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001082static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1083 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001085 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 struct nfs4_exception exception = { };
1087 int err;
1088 do {
1089 err = nfs4_handle_exception(server,
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001090 _nfs4_do_setattr(inode, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 &exception);
1092 } while (exception.retry);
1093 return err;
1094}
1095
1096struct nfs4_closedata {
1097 struct inode *inode;
1098 struct nfs4_state *state;
1099 struct nfs_closeargs arg;
1100 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001101 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001102 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103};
1104
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001105static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001106{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001107 struct nfs4_closedata *calldata = data;
1108 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001109
1110 nfs4_put_open_state(calldata->state);
1111 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001112 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001113 kfree(calldata);
1114}
1115
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001116static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001118 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 struct nfs_server *server = NFS_SERVER(calldata->inode);
1121
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001122 if (RPC_ASSASSINATED(task))
1123 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 /* hmm. we are done with the inode, and in the process of freeing
1125 * the state_owner. we keep this around to process errors
1126 */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001127 nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 switch (task->tk_status) {
1129 case 0:
1130 memcpy(&state->stateid, &calldata->res.stateid,
1131 sizeof(state->stateid));
Trond Myklebust26e976a2006-01-03 09:55:21 +01001132 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 break;
1134 case -NFS4ERR_STALE_STATEID:
1135 case -NFS4ERR_EXPIRED:
David Howells7539bba2006-08-22 20:06:09 -04001136 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 break;
1138 default:
1139 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1140 rpc_restart_call(task);
1141 return;
1142 }
1143 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001144 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001147static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001149 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001150 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 struct rpc_message msg = {
1152 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1153 .rpc_argp = &calldata->arg,
1154 .rpc_resp = &calldata->res,
Trond Myklebust95121352005-10-18 14:20:12 -07001155 .rpc_cred = state->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 };
Trond Myklebust4cecb762005-11-04 15:32:58 -05001157 int mode = 0, old_mode;
Trond Myklebust95121352005-10-18 14:20:12 -07001158
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001159 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001160 return;
Trond Myklebust95121352005-10-18 14:20:12 -07001161 /* Recalculate the new open mode in case someone reopened the file
1162 * while we were waiting in line to be scheduled.
1163 */
Trond Myklebust4cecb762005-11-04 15:32:58 -05001164 spin_lock(&state->owner->so_lock);
1165 spin_lock(&calldata->inode->i_lock);
1166 mode = old_mode = state->state;
Trond Myklebuste7616922006-01-03 09:55:13 +01001167 if (state->n_rdwr == 0) {
1168 if (state->n_rdonly == 0)
1169 mode &= ~FMODE_READ;
1170 if (state->n_wronly == 0)
1171 mode &= ~FMODE_WRITE;
1172 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001173 nfs4_state_set_mode_locked(state, mode);
1174 spin_unlock(&calldata->inode->i_lock);
1175 spin_unlock(&state->owner->so_lock);
1176 if (mode == old_mode || test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001177 /* Note: exit _without_ calling nfs4_close_done */
1178 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001179 return;
1180 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001181 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust95121352005-10-18 14:20:12 -07001182 if (mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust95121352005-10-18 14:20:12 -07001184 calldata->arg.open_flags = mode;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001185 calldata->timestamp = jiffies;
Trond Myklebust95121352005-10-18 14:20:12 -07001186 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001189static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001190 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001191 .rpc_call_done = nfs4_close_done,
1192 .rpc_release = nfs4_free_closedata,
1193};
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195/*
1196 * It is possible for data to be read/written from a mem-mapped file
1197 * after the sys_close call (which hits the vfs layer as a flush).
1198 * This means that we can't safely call nfsv4 close on a file until
1199 * the inode is cleared. This in turn means that we are not good
1200 * NFSv4 citizens - we do not indicate to the server to update the file's
1201 * share state even when we are done with one of the three share
1202 * stateid's in the inode.
1203 *
1204 * NOTE: Caller must be holding the sp->so_owner semaphore!
1205 */
Trond Myklebust4cecb762005-11-04 15:32:58 -05001206int nfs4_do_close(struct inode *inode, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
Trond Myklebust516a6af2005-10-27 22:12:41 -04001208 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 struct nfs4_closedata *calldata;
Trond Myklebust95121352005-10-18 14:20:12 -07001210 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Trond Myklebust95121352005-10-18 14:20:12 -07001212 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001214 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 calldata->inode = inode;
1216 calldata->state = state;
1217 calldata->arg.fh = NFS_FH(inode);
Trond Myklebust95121352005-10-18 14:20:12 -07001218 calldata->arg.stateid = &state->stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001220 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001221 if (calldata->arg.seqid == NULL)
1222 goto out_free_calldata;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001223 calldata->arg.bitmask = server->attr_bitmask;
1224 calldata->res.fattr = &calldata->fattr;
1225 calldata->res.server = server;
Trond Myklebust95121352005-10-18 14:20:12 -07001226
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001227 status = nfs4_call_async(server->client, &nfs4_close_ops, calldata);
Trond Myklebust95121352005-10-18 14:20:12 -07001228 if (status == 0)
1229 goto out;
1230
1231 nfs_free_seqid(calldata->arg.seqid);
1232out_free_calldata:
1233 kfree(calldata);
1234out:
1235 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
Trond Myklebust95cf9592006-04-18 13:14:06 -04001238static int nfs4_intent_set_file(struct nameidata *nd, struct dentry *dentry, struct nfs4_state *state)
Trond Myklebust02a913a2005-10-18 14:20:17 -07001239{
1240 struct file *filp;
1241
1242 filp = lookup_instantiate_filp(nd, dentry, NULL);
1243 if (!IS_ERR(filp)) {
1244 struct nfs_open_context *ctx;
1245 ctx = (struct nfs_open_context *)filp->private_data;
1246 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001247 return 0;
1248 }
1249 nfs4_close_state(state, nd->intent.open.flags);
1250 return PTR_ERR(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001251}
1252
1253struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1255{
1256 struct iattr attr;
1257 struct rpc_cred *cred;
1258 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001259 struct dentry *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 if (nd->flags & LOOKUP_CREATE) {
1262 attr.ia_mode = nd->intent.open.create_mode;
1263 attr.ia_valid = ATTR_MODE;
1264 if (!IS_POSIXACL(dir))
1265 attr.ia_mode &= ~current->fs->umask;
1266 } else {
1267 attr.ia_valid = 0;
1268 BUG_ON(nd->intent.open.flags & O_CREAT);
1269 }
1270
David Howells1f163412006-08-22 20:06:11 -04001271 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001273 return (struct dentry *)cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 state = nfs4_do_open(dir, dentry, nd->intent.open.flags, &attr, cred);
1275 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001276 if (IS_ERR(state)) {
1277 if (PTR_ERR(state) == -ENOENT)
1278 d_add(dentry, NULL);
1279 return (struct dentry *)state;
1280 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001281 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001282 if (res != NULL)
1283 dentry = res;
1284 nfs4_intent_set_file(nd, dentry, state);
1285 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
1288int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001289nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
1291 struct rpc_cred *cred;
1292 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
David Howells1f163412006-08-22 20:06:11 -04001294 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (IS_ERR(cred))
1296 return PTR_ERR(cred);
1297 state = nfs4_open_delegated(dentry->d_inode, openflags, cred);
1298 if (IS_ERR(state))
1299 state = nfs4_do_open(dir, dentry, openflags, NULL, cred);
1300 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001301 if (IS_ERR(state)) {
1302 switch (PTR_ERR(state)) {
1303 case -EPERM:
1304 case -EACCES:
1305 case -EDQUOT:
1306 case -ENOSPC:
1307 case -EROFS:
1308 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1309 return 1;
1310 case -ENOENT:
1311 if (dentry->d_inode == NULL)
1312 return 1;
1313 }
1314 goto out_drop;
1315 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001316 if (state->inode == dentry->d_inode) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001317 nfs4_intent_set_file(nd, dentry, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return 1;
1319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 nfs4_close_state(state, openflags);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001321out_drop:
1322 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324}
1325
1326
1327static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1328{
1329 struct nfs4_server_caps_res res = {};
1330 struct rpc_message msg = {
1331 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1332 .rpc_argp = fhandle,
1333 .rpc_resp = &res,
1334 };
1335 int status;
1336
1337 status = rpc_call_sync(server->client, &msg, 0);
1338 if (status == 0) {
1339 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1340 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1341 server->caps |= NFS_CAP_ACLS;
1342 if (res.has_links != 0)
1343 server->caps |= NFS_CAP_HARDLINKS;
1344 if (res.has_symlinks != 0)
1345 server->caps |= NFS_CAP_SYMLINKS;
1346 server->acl_bitmask = res.acl_bitmask;
1347 }
1348 return status;
1349}
1350
Trond Myklebust55a97592006-06-09 09:34:19 -04001351int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 struct nfs4_exception exception = { };
1354 int err;
1355 do {
1356 err = nfs4_handle_exception(server,
1357 _nfs4_server_capabilities(server, fhandle),
1358 &exception);
1359 } while (exception.retry);
1360 return err;
1361}
1362
1363static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1364 struct nfs_fsinfo *info)
1365{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 struct nfs4_lookup_root_arg args = {
1367 .bitmask = nfs4_fattr_bitmap,
1368 };
1369 struct nfs4_lookup_res res = {
1370 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04001371 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 .fh = fhandle,
1373 };
1374 struct rpc_message msg = {
1375 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1376 .rpc_argp = &args,
1377 .rpc_resp = &res,
1378 };
Trond Myklebust0e574af2005-10-27 22:12:38 -04001379 nfs_fattr_init(info->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return rpc_call_sync(server->client, &msg, 0);
1381}
1382
1383static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1384 struct nfs_fsinfo *info)
1385{
1386 struct nfs4_exception exception = { };
1387 int err;
1388 do {
1389 err = nfs4_handle_exception(server,
1390 _nfs4_lookup_root(server, fhandle, info),
1391 &exception);
1392 } while (exception.retry);
1393 return err;
1394}
1395
David Howells54ceac42006-08-22 20:06:13 -04001396/*
1397 * get the file handle for the "/" directory on the server
1398 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04001400 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 int status;
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (status == 0)
1406 status = nfs4_server_capabilities(server, fhandle);
1407 if (status == 0)
1408 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08001409 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
Manoj Naik6b97fd32006-06-09 09:34:29 -04001412/*
1413 * Get locations and (maybe) other attributes of a referral.
1414 * Note that we'll actually follow the referral later when
1415 * we detect fsid mismatch in inode revalidation
1416 */
1417static int nfs4_get_referral(struct inode *dir, struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
1418{
1419 int status = -ENOMEM;
1420 struct page *page = NULL;
1421 struct nfs4_fs_locations *locations = NULL;
1422 struct dentry dentry = {};
1423
1424 page = alloc_page(GFP_KERNEL);
1425 if (page == NULL)
1426 goto out;
1427 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1428 if (locations == NULL)
1429 goto out;
1430
1431 dentry.d_name.name = name->name;
1432 dentry.d_name.len = name->len;
1433 status = nfs4_proc_fs_locations(dir, &dentry, locations, page);
1434 if (status != 0)
1435 goto out;
1436 /* Make sure server returned a different fsid for the referral */
1437 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
1438 dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name);
1439 status = -EIO;
1440 goto out;
1441 }
1442
1443 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1444 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1445 if (!fattr->mode)
1446 fattr->mode = S_IFDIR;
1447 memset(fhandle, 0, sizeof(struct nfs_fh));
1448out:
1449 if (page)
1450 __free_page(page);
1451 if (locations)
1452 kfree(locations);
1453 return status;
1454}
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1457{
1458 struct nfs4_getattr_arg args = {
1459 .fh = fhandle,
1460 .bitmask = server->attr_bitmask,
1461 };
1462 struct nfs4_getattr_res res = {
1463 .fattr = fattr,
1464 .server = server,
1465 };
1466 struct rpc_message msg = {
1467 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1468 .rpc_argp = &args,
1469 .rpc_resp = &res,
1470 };
1471
Trond Myklebust0e574af2005-10-27 22:12:38 -04001472 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return rpc_call_sync(server->client, &msg, 0);
1474}
1475
1476static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1477{
1478 struct nfs4_exception exception = { };
1479 int err;
1480 do {
1481 err = nfs4_handle_exception(server,
1482 _nfs4_proc_getattr(server, fhandle, fattr),
1483 &exception);
1484 } while (exception.retry);
1485 return err;
1486}
1487
1488/*
1489 * The file is not closed if it is opened due to the a request to change
1490 * the size of the file. The open call will not be needed once the
1491 * VFS layer lookup-intents are implemented.
1492 *
1493 * Close is called when the inode is destroyed.
1494 * If we haven't opened the file for O_WRONLY, we
1495 * need to in the size_change case to obtain a stateid.
1496 *
1497 * Got race?
1498 * Because OPEN is always done by name in nfsv4, it is
1499 * possible that we opened a different file by the same
1500 * name. We can recognize this race condition, but we
1501 * can't do anything about it besides returning an error.
1502 *
1503 * This will be fixed with VFS changes (lookup-intent).
1504 */
1505static int
1506nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1507 struct iattr *sattr)
1508{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001509 struct rpc_cred *cred;
1510 struct inode *inode = dentry->d_inode;
Trond Myklebustd5308382005-11-04 15:33:38 -05001511 struct nfs_open_context *ctx;
1512 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 int status;
1514
Trond Myklebust0e574af2005-10-27 22:12:38 -04001515 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
David Howells1f163412006-08-22 20:06:11 -04001517 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001518 if (IS_ERR(cred))
1519 return PTR_ERR(cred);
Trond Myklebustd5308382005-11-04 15:33:38 -05001520
1521 /* Search for an existing open(O_WRITE) file */
1522 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1523 if (ctx != NULL)
1524 state = ctx->state;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001525
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001526 status = nfs4_do_setattr(inode, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001527 if (status == 0)
1528 nfs_setattr_update_inode(inode, sattr);
Trond Myklebustd5308382005-11-04 15:33:38 -05001529 if (ctx != NULL)
1530 put_nfs_open_context(ctx);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001531 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 return status;
1533}
1534
David Howells2b3de442006-08-22 20:06:09 -04001535static int _nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1536 struct qstr *name, struct nfs_fh *fhandle,
1537 struct nfs_fattr *fattr)
1538{
1539 int status;
1540 struct nfs4_lookup_arg args = {
1541 .bitmask = server->attr_bitmask,
1542 .dir_fh = dirfh,
1543 .name = name,
1544 };
1545 struct nfs4_lookup_res res = {
1546 .server = server,
1547 .fattr = fattr,
1548 .fh = fhandle,
1549 };
1550 struct rpc_message msg = {
1551 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1552 .rpc_argp = &args,
1553 .rpc_resp = &res,
1554 };
1555
1556 nfs_fattr_init(fattr);
1557
1558 dprintk("NFS call lookupfh %s\n", name->name);
1559 status = rpc_call_sync(server->client, &msg, 0);
1560 dprintk("NFS reply lookupfh: %d\n", status);
1561 if (status == -NFS4ERR_MOVED)
1562 status = -EREMOTE;
1563 return status;
1564}
1565
1566static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1567 struct qstr *name, struct nfs_fh *fhandle,
1568 struct nfs_fattr *fattr)
1569{
1570 struct nfs4_exception exception = { };
1571 int err;
1572 do {
1573 err = nfs4_handle_exception(server,
1574 _nfs4_proc_lookupfh(server, dirfh, name,
1575 fhandle, fattr),
1576 &exception);
1577 } while (exception.retry);
1578 return err;
1579}
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581static int _nfs4_proc_lookup(struct inode *dir, struct qstr *name,
1582 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1583{
1584 int status;
1585 struct nfs_server *server = NFS_SERVER(dir);
1586 struct nfs4_lookup_arg args = {
1587 .bitmask = server->attr_bitmask,
1588 .dir_fh = NFS_FH(dir),
1589 .name = name,
1590 };
1591 struct nfs4_lookup_res res = {
1592 .server = server,
1593 .fattr = fattr,
1594 .fh = fhandle,
1595 };
1596 struct rpc_message msg = {
1597 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1598 .rpc_argp = &args,
1599 .rpc_resp = &res,
1600 };
1601
Trond Myklebust0e574af2005-10-27 22:12:38 -04001602 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 dprintk("NFS call lookup %s\n", name->name);
1605 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001606 if (status == -NFS4ERR_MOVED)
1607 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 dprintk("NFS reply lookup: %d\n", status);
1609 return status;
1610}
1611
1612static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1613{
1614 struct nfs4_exception exception = { };
1615 int err;
1616 do {
1617 err = nfs4_handle_exception(NFS_SERVER(dir),
1618 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1619 &exception);
1620 } while (exception.retry);
1621 return err;
1622}
1623
1624static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1625{
1626 struct nfs4_accessargs args = {
1627 .fh = NFS_FH(inode),
1628 };
1629 struct nfs4_accessres res = { 0 };
1630 struct rpc_message msg = {
1631 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1632 .rpc_argp = &args,
1633 .rpc_resp = &res,
1634 .rpc_cred = entry->cred,
1635 };
1636 int mode = entry->mask;
1637 int status;
1638
1639 /*
1640 * Determine which access bits we want to ask for...
1641 */
1642 if (mode & MAY_READ)
1643 args.access |= NFS4_ACCESS_READ;
1644 if (S_ISDIR(inode->i_mode)) {
1645 if (mode & MAY_WRITE)
1646 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1647 if (mode & MAY_EXEC)
1648 args.access |= NFS4_ACCESS_LOOKUP;
1649 } else {
1650 if (mode & MAY_WRITE)
1651 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1652 if (mode & MAY_EXEC)
1653 args.access |= NFS4_ACCESS_EXECUTE;
1654 }
1655 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1656 if (!status) {
1657 entry->mask = 0;
1658 if (res.access & NFS4_ACCESS_READ)
1659 entry->mask |= MAY_READ;
1660 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1661 entry->mask |= MAY_WRITE;
1662 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1663 entry->mask |= MAY_EXEC;
1664 }
1665 return status;
1666}
1667
1668static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1669{
1670 struct nfs4_exception exception = { };
1671 int err;
1672 do {
1673 err = nfs4_handle_exception(NFS_SERVER(inode),
1674 _nfs4_proc_access(inode, entry),
1675 &exception);
1676 } while (exception.retry);
1677 return err;
1678}
1679
1680/*
1681 * TODO: For the time being, we don't try to get any attributes
1682 * along with any of the zero-copy operations READ, READDIR,
1683 * READLINK, WRITE.
1684 *
1685 * In the case of the first three, we want to put the GETATTR
1686 * after the read-type operation -- this is because it is hard
1687 * to predict the length of a GETATTR response in v4, and thus
1688 * align the READ data correctly. This means that the GETATTR
1689 * may end up partially falling into the page cache, and we should
1690 * shift it into the 'tail' of the xdr_buf before processing.
1691 * To do this efficiently, we need to know the total length
1692 * of data received, which doesn't seem to be available outside
1693 * of the RPC layer.
1694 *
1695 * In the case of WRITE, we also want to put the GETATTR after
1696 * the operation -- in this case because we want to make sure
1697 * we get the post-operation mtime and size. This means that
1698 * we can't use xdr_encode_pages() as written: we need a variant
1699 * of it which would leave room in the 'tail' iovec.
1700 *
1701 * Both of these changes to the XDR layer would in fact be quite
1702 * minor, but I decided to leave them for a subsequent patch.
1703 */
1704static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1705 unsigned int pgbase, unsigned int pglen)
1706{
1707 struct nfs4_readlink args = {
1708 .fh = NFS_FH(inode),
1709 .pgbase = pgbase,
1710 .pglen = pglen,
1711 .pages = &page,
1712 };
1713 struct rpc_message msg = {
1714 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1715 .rpc_argp = &args,
1716 .rpc_resp = NULL,
1717 };
1718
1719 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1720}
1721
1722static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1723 unsigned int pgbase, unsigned int pglen)
1724{
1725 struct nfs4_exception exception = { };
1726 int err;
1727 do {
1728 err = nfs4_handle_exception(NFS_SERVER(inode),
1729 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1730 &exception);
1731 } while (exception.retry);
1732 return err;
1733}
1734
1735static int _nfs4_proc_read(struct nfs_read_data *rdata)
1736{
1737 int flags = rdata->flags;
1738 struct inode *inode = rdata->inode;
1739 struct nfs_fattr *fattr = rdata->res.fattr;
1740 struct nfs_server *server = NFS_SERVER(inode);
1741 struct rpc_message msg = {
1742 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ],
1743 .rpc_argp = &rdata->args,
1744 .rpc_resp = &rdata->res,
1745 .rpc_cred = rdata->cred,
1746 };
1747 unsigned long timestamp = jiffies;
1748 int status;
1749
1750 dprintk("NFS call read %d @ %Ld\n", rdata->args.count,
1751 (long long) rdata->args.offset);
1752
Trond Myklebust0e574af2005-10-27 22:12:38 -04001753 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 status = rpc_call_sync(server->client, &msg, flags);
1755 if (!status)
1756 renew_lease(server, timestamp);
1757 dprintk("NFS reply read: %d\n", status);
1758 return status;
1759}
1760
1761static int nfs4_proc_read(struct nfs_read_data *rdata)
1762{
1763 struct nfs4_exception exception = { };
1764 int err;
1765 do {
1766 err = nfs4_handle_exception(NFS_SERVER(rdata->inode),
1767 _nfs4_proc_read(rdata),
1768 &exception);
1769 } while (exception.retry);
1770 return err;
1771}
1772
1773static int _nfs4_proc_write(struct nfs_write_data *wdata)
1774{
1775 int rpcflags = wdata->flags;
1776 struct inode *inode = wdata->inode;
1777 struct nfs_fattr *fattr = wdata->res.fattr;
1778 struct nfs_server *server = NFS_SERVER(inode);
1779 struct rpc_message msg = {
1780 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE],
1781 .rpc_argp = &wdata->args,
1782 .rpc_resp = &wdata->res,
1783 .rpc_cred = wdata->cred,
1784 };
1785 int status;
1786
1787 dprintk("NFS call write %d @ %Ld\n", wdata->args.count,
1788 (long long) wdata->args.offset);
1789
Trond Myklebust3b6efee2005-12-03 15:20:21 -05001790 wdata->args.bitmask = server->attr_bitmask;
1791 wdata->res.server = server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001792 wdata->timestamp = jiffies;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001793 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 status = rpc_call_sync(server->client, &msg, rpcflags);
1795 dprintk("NFS reply write: %d\n", status);
Trond Myklebust3b6efee2005-12-03 15:20:21 -05001796 if (status < 0)
1797 return status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001798 renew_lease(server, wdata->timestamp);
Trond Myklebust3b6efee2005-12-03 15:20:21 -05001799 nfs_post_op_update_inode(inode, fattr);
1800 return wdata->res.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
1803static int nfs4_proc_write(struct nfs_write_data *wdata)
1804{
1805 struct nfs4_exception exception = { };
1806 int err;
1807 do {
1808 err = nfs4_handle_exception(NFS_SERVER(wdata->inode),
1809 _nfs4_proc_write(wdata),
1810 &exception);
1811 } while (exception.retry);
1812 return err;
1813}
1814
1815static int _nfs4_proc_commit(struct nfs_write_data *cdata)
1816{
1817 struct inode *inode = cdata->inode;
1818 struct nfs_fattr *fattr = cdata->res.fattr;
1819 struct nfs_server *server = NFS_SERVER(inode);
1820 struct rpc_message msg = {
1821 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
1822 .rpc_argp = &cdata->args,
1823 .rpc_resp = &cdata->res,
1824 .rpc_cred = cdata->cred,
1825 };
1826 int status;
1827
1828 dprintk("NFS call commit %d @ %Ld\n", cdata->args.count,
1829 (long long) cdata->args.offset);
1830
Trond Myklebust3b6efee2005-12-03 15:20:21 -05001831 cdata->args.bitmask = server->attr_bitmask;
1832 cdata->res.server = server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001833 cdata->timestamp = jiffies;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001834 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001836 if (status >= 0)
1837 renew_lease(server, cdata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 dprintk("NFS reply commit: %d\n", status);
Trond Myklebust3b6efee2005-12-03 15:20:21 -05001839 if (status >= 0)
1840 nfs_post_op_update_inode(inode, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return status;
1842}
1843
1844static int nfs4_proc_commit(struct nfs_write_data *cdata)
1845{
1846 struct nfs4_exception exception = { };
1847 int err;
1848 do {
1849 err = nfs4_handle_exception(NFS_SERVER(cdata->inode),
1850 _nfs4_proc_commit(cdata),
1851 &exception);
1852 } while (exception.retry);
1853 return err;
1854}
1855
1856/*
1857 * Got race?
1858 * We will need to arrange for the VFS layer to provide an atomic open.
1859 * Until then, this create/open method is prone to inefficiency and race
1860 * conditions due to the lookup, create, and open VFS calls from sys_open()
1861 * placed on the wire.
1862 *
1863 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1864 * The file will be opened again in the subsequent VFS open call
1865 * (nfs4_proc_file_open).
1866 *
1867 * The open for read will just hang around to be used by any process that
1868 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1869 */
1870
1871static int
1872nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07001873 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
1875 struct nfs4_state *state;
1876 struct rpc_cred *cred;
1877 int status = 0;
1878
David Howells1f163412006-08-22 20:06:11 -04001879 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (IS_ERR(cred)) {
1881 status = PTR_ERR(cred);
1882 goto out;
1883 }
1884 state = nfs4_do_open(dir, dentry, flags, sattr, cred);
1885 put_rpccred(cred);
1886 if (IS_ERR(state)) {
1887 status = PTR_ERR(state);
1888 goto out;
1889 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001890 d_instantiate(dentry, igrab(state->inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (flags & O_EXCL) {
1892 struct nfs_fattr fattr;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001893 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001894 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04001895 nfs_setattr_update_inode(state->inode, sattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001896 }
1897 if (status == 0 && nd != NULL && (nd->flags & LOOKUP_OPEN))
Trond Myklebust95cf9592006-04-18 13:14:06 -04001898 status = nfs4_intent_set_file(nd, dentry, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001899 else
1900 nfs4_close_state(state, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901out:
1902 return status;
1903}
1904
1905static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1906{
Trond Myklebust16e42952005-10-27 22:12:44 -04001907 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 struct nfs4_remove_arg args = {
1909 .fh = NFS_FH(dir),
1910 .name = name,
Trond Myklebust16e42952005-10-27 22:12:44 -04001911 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 };
Trond Myklebust16e42952005-10-27 22:12:44 -04001913 struct nfs_fattr dir_attr;
1914 struct nfs4_remove_res res = {
1915 .server = server,
1916 .dir_attr = &dir_attr,
1917 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 struct rpc_message msg = {
1919 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1920 .rpc_argp = &args,
1921 .rpc_resp = &res,
1922 };
1923 int status;
1924
Trond Myklebust16e42952005-10-27 22:12:44 -04001925 nfs_fattr_init(res.dir_attr);
1926 status = rpc_call_sync(server->client, &msg, 0);
1927 if (status == 0) {
1928 update_changeattr(dir, &res.cinfo);
1929 nfs_post_op_update_inode(dir, res.dir_attr);
1930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 return status;
1932}
1933
1934static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1935{
1936 struct nfs4_exception exception = { };
1937 int err;
1938 do {
1939 err = nfs4_handle_exception(NFS_SERVER(dir),
1940 _nfs4_proc_remove(dir, name),
1941 &exception);
1942 } while (exception.retry);
1943 return err;
1944}
1945
1946struct unlink_desc {
1947 struct nfs4_remove_arg args;
Trond Myklebust16e42952005-10-27 22:12:44 -04001948 struct nfs4_remove_res res;
1949 struct nfs_fattr dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950};
1951
1952static int nfs4_proc_unlink_setup(struct rpc_message *msg, struct dentry *dir,
1953 struct qstr *name)
1954{
Trond Myklebust16e42952005-10-27 22:12:44 -04001955 struct nfs_server *server = NFS_SERVER(dir->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 struct unlink_desc *up;
1957
1958 up = (struct unlink_desc *) kmalloc(sizeof(*up), GFP_KERNEL);
1959 if (!up)
1960 return -ENOMEM;
1961
1962 up->args.fh = NFS_FH(dir->d_inode);
1963 up->args.name = name;
Trond Myklebust16e42952005-10-27 22:12:44 -04001964 up->args.bitmask = server->attr_bitmask;
1965 up->res.server = server;
1966 up->res.dir_attr = &up->dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
1969 msg->rpc_argp = &up->args;
1970 msg->rpc_resp = &up->res;
1971 return 0;
1972}
1973
1974static int nfs4_proc_unlink_done(struct dentry *dir, struct rpc_task *task)
1975{
1976 struct rpc_message *msg = &task->tk_msg;
1977 struct unlink_desc *up;
1978
1979 if (msg->rpc_resp != NULL) {
1980 up = container_of(msg->rpc_resp, struct unlink_desc, res);
Trond Myklebust16e42952005-10-27 22:12:44 -04001981 update_changeattr(dir->d_inode, &up->res.cinfo);
1982 nfs_post_op_update_inode(dir->d_inode, up->res.dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 kfree(up);
1984 msg->rpc_resp = NULL;
1985 msg->rpc_argp = NULL;
1986 }
1987 return 0;
1988}
1989
1990static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1991 struct inode *new_dir, struct qstr *new_name)
1992{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001993 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 struct nfs4_rename_arg arg = {
1995 .old_dir = NFS_FH(old_dir),
1996 .new_dir = NFS_FH(new_dir),
1997 .old_name = old_name,
1998 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04001999 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002001 struct nfs_fattr old_fattr, new_fattr;
2002 struct nfs4_rename_res res = {
2003 .server = server,
2004 .old_fattr = &old_fattr,
2005 .new_fattr = &new_fattr,
2006 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 struct rpc_message msg = {
2008 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2009 .rpc_argp = &arg,
2010 .rpc_resp = &res,
2011 };
2012 int status;
2013
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002014 nfs_fattr_init(res.old_fattr);
2015 nfs_fattr_init(res.new_fattr);
2016 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 if (!status) {
2019 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002020 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002022 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 }
2024 return status;
2025}
2026
2027static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2028 struct inode *new_dir, struct qstr *new_name)
2029{
2030 struct nfs4_exception exception = { };
2031 int err;
2032 do {
2033 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2034 _nfs4_proc_rename(old_dir, old_name,
2035 new_dir, new_name),
2036 &exception);
2037 } while (exception.retry);
2038 return err;
2039}
2040
2041static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2042{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002043 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 struct nfs4_link_arg arg = {
2045 .fh = NFS_FH(inode),
2046 .dir_fh = NFS_FH(dir),
2047 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002048 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002050 struct nfs_fattr fattr, dir_attr;
2051 struct nfs4_link_res res = {
2052 .server = server,
2053 .fattr = &fattr,
2054 .dir_attr = &dir_attr,
2055 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 struct rpc_message msg = {
2057 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2058 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002059 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 };
2061 int status;
2062
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002063 nfs_fattr_init(res.fattr);
2064 nfs_fattr_init(res.dir_attr);
2065 status = rpc_call_sync(server->client, &msg, 0);
2066 if (!status) {
2067 update_changeattr(dir, &res.cinfo);
2068 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002069 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 return status;
2073}
2074
2075static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2076{
2077 struct nfs4_exception exception = { };
2078 int err;
2079 do {
2080 err = nfs4_handle_exception(NFS_SERVER(inode),
2081 _nfs4_proc_link(inode, dir, name),
2082 &exception);
2083 } while (exception.retry);
2084 return err;
2085}
2086
Chuck Lever4f390c12006-08-22 20:06:22 -04002087static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002088 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
2090 struct nfs_server *server = NFS_SERVER(dir);
Chuck Lever4f390c12006-08-22 20:06:22 -04002091 struct nfs_fh fhandle;
2092 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 struct nfs4_create_arg arg = {
2094 .dir_fh = NFS_FH(dir),
2095 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002096 .name = &dentry->d_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 .attrs = sattr,
2098 .ftype = NF4LNK,
2099 .bitmask = server->attr_bitmask,
2100 };
2101 struct nfs4_create_res res = {
2102 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002103 .fh = &fhandle,
2104 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002105 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 };
2107 struct rpc_message msg = {
2108 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK],
2109 .rpc_argp = &arg,
2110 .rpc_resp = &res,
2111 };
2112 int status;
2113
Chuck Lever94a6d752006-08-22 20:06:23 -04002114 if (len > NFS4_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 return -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -04002116
Chuck Lever94a6d752006-08-22 20:06:23 -04002117 arg.u.symlink.pages = &page;
2118 arg.u.symlink.len = len;
Chuck Lever4f390c12006-08-22 20:06:22 -04002119 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002120 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Chuck Lever4f390c12006-08-22 20:06:22 -04002123 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 update_changeattr(dir, &res.dir_cinfo);
Chuck Lever4f390c12006-08-22 20:06:22 -04002125 nfs_post_op_update_inode(dir, res.dir_fattr);
2126 status = nfs_instantiate(dentry, &fhandle, &fattr);
2127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return status;
2129}
2130
Chuck Lever4f390c12006-08-22 20:06:22 -04002131static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002132 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
2134 struct nfs4_exception exception = { };
2135 int err;
2136 do {
2137 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002138 _nfs4_proc_symlink(dir, dentry, page,
2139 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 &exception);
2141 } while (exception.retry);
2142 return err;
2143}
2144
2145static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2146 struct iattr *sattr)
2147{
2148 struct nfs_server *server = NFS_SERVER(dir);
2149 struct nfs_fh fhandle;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002150 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 struct nfs4_create_arg arg = {
2152 .dir_fh = NFS_FH(dir),
2153 .server = server,
2154 .name = &dentry->d_name,
2155 .attrs = sattr,
2156 .ftype = NF4DIR,
2157 .bitmask = server->attr_bitmask,
2158 };
2159 struct nfs4_create_res res = {
2160 .server = server,
2161 .fh = &fhandle,
2162 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002163 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 };
2165 struct rpc_message msg = {
2166 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2167 .rpc_argp = &arg,
2168 .rpc_resp = &res,
2169 };
2170 int status;
2171
Trond Myklebust0e574af2005-10-27 22:12:38 -04002172 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002173 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2176 if (!status) {
2177 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002178 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 status = nfs_instantiate(dentry, &fhandle, &fattr);
2180 }
2181 return status;
2182}
2183
2184static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2185 struct iattr *sattr)
2186{
2187 struct nfs4_exception exception = { };
2188 int err;
2189 do {
2190 err = nfs4_handle_exception(NFS_SERVER(dir),
2191 _nfs4_proc_mkdir(dir, dentry, sattr),
2192 &exception);
2193 } while (exception.retry);
2194 return err;
2195}
2196
2197static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2198 u64 cookie, struct page *page, unsigned int count, int plus)
2199{
2200 struct inode *dir = dentry->d_inode;
2201 struct nfs4_readdir_arg args = {
2202 .fh = NFS_FH(dir),
2203 .pages = &page,
2204 .pgbase = 0,
2205 .count = count,
2206 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2207 };
2208 struct nfs4_readdir_res res;
2209 struct rpc_message msg = {
2210 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2211 .rpc_argp = &args,
2212 .rpc_resp = &res,
2213 .rpc_cred = cred,
2214 };
2215 int status;
2216
Trond Myklebusteadf4592005-06-22 17:16:39 +00002217 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__,
2218 dentry->d_parent->d_name.name,
2219 dentry->d_name.name,
2220 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 lock_kernel();
2222 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2223 res.pgbase = args.pgbase;
2224 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2225 if (status == 0)
2226 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
2227 unlock_kernel();
Trond Myklebusteadf4592005-06-22 17:16:39 +00002228 dprintk("%s: returns %d\n", __FUNCTION__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 return status;
2230}
2231
2232static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2233 u64 cookie, struct page *page, unsigned int count, int plus)
2234{
2235 struct nfs4_exception exception = { };
2236 int err;
2237 do {
2238 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2239 _nfs4_proc_readdir(dentry, cred, cookie,
2240 page, count, plus),
2241 &exception);
2242 } while (exception.retry);
2243 return err;
2244}
2245
2246static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2247 struct iattr *sattr, dev_t rdev)
2248{
2249 struct nfs_server *server = NFS_SERVER(dir);
2250 struct nfs_fh fh;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002251 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 struct nfs4_create_arg arg = {
2253 .dir_fh = NFS_FH(dir),
2254 .server = server,
2255 .name = &dentry->d_name,
2256 .attrs = sattr,
2257 .bitmask = server->attr_bitmask,
2258 };
2259 struct nfs4_create_res res = {
2260 .server = server,
2261 .fh = &fh,
2262 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002263 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 };
2265 struct rpc_message msg = {
2266 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2267 .rpc_argp = &arg,
2268 .rpc_resp = &res,
2269 };
2270 int status;
2271 int mode = sattr->ia_mode;
2272
Trond Myklebust0e574af2005-10-27 22:12:38 -04002273 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002274 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2277 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2278 if (S_ISFIFO(mode))
2279 arg.ftype = NF4FIFO;
2280 else if (S_ISBLK(mode)) {
2281 arg.ftype = NF4BLK;
2282 arg.u.device.specdata1 = MAJOR(rdev);
2283 arg.u.device.specdata2 = MINOR(rdev);
2284 }
2285 else if (S_ISCHR(mode)) {
2286 arg.ftype = NF4CHR;
2287 arg.u.device.specdata1 = MAJOR(rdev);
2288 arg.u.device.specdata2 = MINOR(rdev);
2289 }
2290 else
2291 arg.ftype = NF4SOCK;
2292
2293 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2294 if (status == 0) {
2295 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002296 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 status = nfs_instantiate(dentry, &fh, &fattr);
2298 }
2299 return status;
2300}
2301
2302static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2303 struct iattr *sattr, dev_t rdev)
2304{
2305 struct nfs4_exception exception = { };
2306 int err;
2307 do {
2308 err = nfs4_handle_exception(NFS_SERVER(dir),
2309 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2310 &exception);
2311 } while (exception.retry);
2312 return err;
2313}
2314
2315static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2316 struct nfs_fsstat *fsstat)
2317{
2318 struct nfs4_statfs_arg args = {
2319 .fh = fhandle,
2320 .bitmask = server->attr_bitmask,
2321 };
2322 struct rpc_message msg = {
2323 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2324 .rpc_argp = &args,
2325 .rpc_resp = fsstat,
2326 };
2327
Trond Myklebust0e574af2005-10-27 22:12:38 -04002328 nfs_fattr_init(fsstat->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 return rpc_call_sync(server->client, &msg, 0);
2330}
2331
2332static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2333{
2334 struct nfs4_exception exception = { };
2335 int err;
2336 do {
2337 err = nfs4_handle_exception(server,
2338 _nfs4_proc_statfs(server, fhandle, fsstat),
2339 &exception);
2340 } while (exception.retry);
2341 return err;
2342}
2343
2344static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2345 struct nfs_fsinfo *fsinfo)
2346{
2347 struct nfs4_fsinfo_arg args = {
2348 .fh = fhandle,
2349 .bitmask = server->attr_bitmask,
2350 };
2351 struct rpc_message msg = {
2352 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2353 .rpc_argp = &args,
2354 .rpc_resp = fsinfo,
2355 };
2356
2357 return rpc_call_sync(server->client, &msg, 0);
2358}
2359
2360static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2361{
2362 struct nfs4_exception exception = { };
2363 int err;
2364
2365 do {
2366 err = nfs4_handle_exception(server,
2367 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2368 &exception);
2369 } while (exception.retry);
2370 return err;
2371}
2372
2373static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2374{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002375 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2377}
2378
2379static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2380 struct nfs_pathconf *pathconf)
2381{
2382 struct nfs4_pathconf_arg args = {
2383 .fh = fhandle,
2384 .bitmask = server->attr_bitmask,
2385 };
2386 struct rpc_message msg = {
2387 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2388 .rpc_argp = &args,
2389 .rpc_resp = pathconf,
2390 };
2391
2392 /* None of the pathconf attributes are mandatory to implement */
2393 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2394 memset(pathconf, 0, sizeof(*pathconf));
2395 return 0;
2396 }
2397
Trond Myklebust0e574af2005-10-27 22:12:38 -04002398 nfs_fattr_init(pathconf->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 return rpc_call_sync(server->client, &msg, 0);
2400}
2401
2402static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2403 struct nfs_pathconf *pathconf)
2404{
2405 struct nfs4_exception exception = { };
2406 int err;
2407
2408 do {
2409 err = nfs4_handle_exception(server,
2410 _nfs4_proc_pathconf(server, fhandle, pathconf),
2411 &exception);
2412 } while (exception.retry);
2413 return err;
2414}
2415
Trond Myklebustec06c092006-03-20 13:44:27 -05002416static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
Trond Myklebustec06c092006-03-20 13:44:27 -05002418 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Trond Myklebustec06c092006-03-20 13:44:27 -05002420 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002422 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 }
2424 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002425 renew_lease(server, data->timestamp);
2426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
Trond Myklebustec06c092006-03-20 13:44:27 -05002429static void nfs4_proc_read_setup(struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 struct rpc_message msg = {
2432 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ],
2433 .rpc_argp = &data->args,
2434 .rpc_resp = &data->res,
2435 .rpc_cred = data->cred,
2436 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438 data->timestamp = jiffies;
2439
Trond Myklebustec06c092006-03-20 13:44:27 -05002440 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441}
2442
Trond Myklebust788e7a82006-03-20 13:44:27 -05002443static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 struct inode *inode = data->inode;
2446
2447 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2448 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002449 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002451 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002453 nfs_post_op_update_inode(inode, data->res.fattr);
2454 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456}
2457
Trond Myklebust788e7a82006-03-20 13:44:27 -05002458static void nfs4_proc_write_setup(struct nfs_write_data *data, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 struct rpc_message msg = {
2461 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE],
2462 .rpc_argp = &data->args,
2463 .rpc_resp = &data->res,
2464 .rpc_cred = data->cred,
2465 };
2466 struct inode *inode = data->inode;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002467 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 int stable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 if (how & FLUSH_STABLE) {
2471 if (!NFS_I(inode)->ncommit)
2472 stable = NFS_FILE_SYNC;
2473 else
2474 stable = NFS_DATA_SYNC;
2475 } else
2476 stable = NFS_UNSTABLE;
2477 data->args.stable = stable;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002478 data->args.bitmask = server->attr_bitmask;
2479 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481 data->timestamp = jiffies;
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 /* Finalize the task. */
Trond Myklebust788e7a82006-03-20 13:44:27 -05002484 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485}
2486
Trond Myklebust788e7a82006-03-20 13:44:27 -05002487static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 struct inode *inode = data->inode;
2490
2491 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2492 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002493 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002495 if (task->tk_status >= 0)
2496 nfs_post_op_update_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002497 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
Trond Myklebust788e7a82006-03-20 13:44:27 -05002500static void nfs4_proc_commit_setup(struct nfs_write_data *data, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 struct rpc_message msg = {
2503 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
2504 .rpc_argp = &data->args,
2505 .rpc_resp = &data->res,
2506 .rpc_cred = data->cred,
2507 };
Trond Myklebust788e7a82006-03-20 13:44:27 -05002508 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002510 data->args.bitmask = server->attr_bitmask;
2511 data->res.server = server;
2512
Trond Myklebust788e7a82006-03-20 13:44:27 -05002513 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
2515
2516/*
2517 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2518 * standalone procedure for queueing an asynchronous RENEW.
2519 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002520static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
David Howellsadfa6f92006-08-22 20:06:08 -04002522 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002523 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525 if (task->tk_status < 0) {
2526 switch (task->tk_status) {
2527 case -NFS4ERR_STALE_CLIENTID:
2528 case -NFS4ERR_EXPIRED:
2529 case -NFS4ERR_CB_PATH_DOWN:
2530 nfs4_schedule_state_recovery(clp);
2531 }
2532 return;
2533 }
2534 spin_lock(&clp->cl_lock);
2535 if (time_before(clp->cl_last_renewal,timestamp))
2536 clp->cl_last_renewal = timestamp;
2537 spin_unlock(&clp->cl_lock);
2538}
2539
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002540static const struct rpc_call_ops nfs4_renew_ops = {
2541 .rpc_call_done = nfs4_renew_done,
2542};
2543
David Howellsadfa6f92006-08-22 20:06:08 -04002544int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
2546 struct rpc_message msg = {
2547 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2548 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002549 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 };
2551
2552 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002553 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554}
2555
David Howellsadfa6f92006-08-22 20:06:08 -04002556int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
2558 struct rpc_message msg = {
2559 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2560 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002561 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 };
2563 unsigned long now = jiffies;
2564 int status;
2565
2566 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2567 if (status < 0)
2568 return status;
2569 spin_lock(&clp->cl_lock);
2570 if (time_before(clp->cl_last_renewal,now))
2571 clp->cl_last_renewal = now;
2572 spin_unlock(&clp->cl_lock);
2573 return 0;
2574}
2575
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002576static inline int nfs4_server_supports_acls(struct nfs_server *server)
2577{
2578 return (server->caps & NFS_CAP_ACLS)
2579 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2580 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2581}
2582
2583/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2584 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2585 * the stack.
2586 */
2587#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2588
2589static void buf_to_pages(const void *buf, size_t buflen,
2590 struct page **pages, unsigned int *pgbase)
2591{
2592 const void *p = buf;
2593
2594 *pgbase = offset_in_page(buf);
2595 p -= *pgbase;
2596 while (p < buf + buflen) {
2597 *(pages++) = virt_to_page(p);
2598 p += PAGE_CACHE_SIZE;
2599 }
2600}
2601
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002602struct nfs4_cached_acl {
2603 int cached;
2604 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002605 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002606};
2607
2608static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002609{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002610 struct nfs_inode *nfsi = NFS_I(inode);
2611
2612 spin_lock(&inode->i_lock);
2613 kfree(nfsi->nfs4_acl);
2614 nfsi->nfs4_acl = acl;
2615 spin_unlock(&inode->i_lock);
2616}
2617
2618static void nfs4_zap_acl_attr(struct inode *inode)
2619{
2620 nfs4_set_cached_acl(inode, NULL);
2621}
2622
2623static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2624{
2625 struct nfs_inode *nfsi = NFS_I(inode);
2626 struct nfs4_cached_acl *acl;
2627 int ret = -ENOENT;
2628
2629 spin_lock(&inode->i_lock);
2630 acl = nfsi->nfs4_acl;
2631 if (acl == NULL)
2632 goto out;
2633 if (buf == NULL) /* user is just asking for length */
2634 goto out_len;
2635 if (acl->cached == 0)
2636 goto out;
2637 ret = -ERANGE; /* see getxattr(2) man page */
2638 if (acl->len > buflen)
2639 goto out;
2640 memcpy(buf, acl->data, acl->len);
2641out_len:
2642 ret = acl->len;
2643out:
2644 spin_unlock(&inode->i_lock);
2645 return ret;
2646}
2647
2648static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2649{
2650 struct nfs4_cached_acl *acl;
2651
2652 if (buf && acl_len <= PAGE_SIZE) {
2653 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2654 if (acl == NULL)
2655 goto out;
2656 acl->cached = 1;
2657 memcpy(acl->data, buf, acl_len);
2658 } else {
2659 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2660 if (acl == NULL)
2661 goto out;
2662 acl->cached = 0;
2663 }
2664 acl->len = acl_len;
2665out:
2666 nfs4_set_cached_acl(inode, acl);
2667}
2668
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002669static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002670{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002671 struct page *pages[NFS4ACL_MAXPAGES];
2672 struct nfs_getaclargs args = {
2673 .fh = NFS_FH(inode),
2674 .acl_pages = pages,
2675 .acl_len = buflen,
2676 };
2677 size_t resp_len = buflen;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002678 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002679 struct rpc_message msg = {
2680 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2681 .rpc_argp = &args,
2682 .rpc_resp = &resp_len,
2683 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002684 struct page *localpage = NULL;
2685 int ret;
2686
2687 if (buflen < PAGE_SIZE) {
2688 /* As long as we're doing a round trip to the server anyway,
2689 * let's be prepared for a page of acl data. */
2690 localpage = alloc_page(GFP_KERNEL);
2691 resp_buf = page_address(localpage);
2692 if (localpage == NULL)
2693 return -ENOMEM;
2694 args.acl_pages[0] = localpage;
2695 args.acl_pgbase = 0;
J. Bruce Fields1d95db82005-10-13 16:54:32 -04002696 resp_len = args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002697 } else {
2698 resp_buf = buf;
2699 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2700 }
2701 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2702 if (ret)
2703 goto out_free;
2704 if (resp_len > args.acl_len)
2705 nfs4_write_cached_acl(inode, NULL, resp_len);
2706 else
2707 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2708 if (buf) {
2709 ret = -ERANGE;
2710 if (resp_len > buflen)
2711 goto out_free;
2712 if (localpage)
2713 memcpy(buf, resp_buf, resp_len);
2714 }
2715 ret = resp_len;
2716out_free:
2717 if (localpage)
2718 __free_page(localpage);
2719 return ret;
2720}
2721
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002722static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2723{
2724 struct nfs4_exception exception = { };
2725 ssize_t ret;
2726 do {
2727 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2728 if (ret >= 0)
2729 break;
2730 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2731 } while (exception.retry);
2732 return ret;
2733}
2734
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002735static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2736{
2737 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002738 int ret;
2739
2740 if (!nfs4_server_supports_acls(server))
2741 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002742 ret = nfs_revalidate_inode(server, inode);
2743 if (ret < 0)
2744 return ret;
2745 ret = nfs4_read_cached_acl(inode, buf, buflen);
2746 if (ret != -ENOENT)
2747 return ret;
2748 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002749}
2750
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002751static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002752{
2753 struct nfs_server *server = NFS_SERVER(inode);
2754 struct page *pages[NFS4ACL_MAXPAGES];
2755 struct nfs_setaclargs arg = {
2756 .fh = NFS_FH(inode),
2757 .acl_pages = pages,
2758 .acl_len = buflen,
2759 };
2760 struct rpc_message msg = {
2761 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2762 .rpc_argp = &arg,
2763 .rpc_resp = NULL,
2764 };
2765 int ret;
2766
2767 if (!nfs4_server_supports_acls(server))
2768 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002769 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002770 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
David Howells1f163412006-08-22 20:06:11 -04002771 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002772 if (ret == 0)
2773 nfs4_write_cached_acl(inode, buf, buflen);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002774 return ret;
2775}
2776
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002777static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2778{
2779 struct nfs4_exception exception = { };
2780 int err;
2781 do {
2782 err = nfs4_handle_exception(NFS_SERVER(inode),
2783 __nfs4_proc_set_acl(inode, buf, buflen),
2784 &exception);
2785 } while (exception.retry);
2786 return err;
2787}
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789static int
Trond Myklebustfaf5f492005-10-18 14:20:15 -07002790nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791{
David Howells7539bba2006-08-22 20:06:09 -04002792 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 if (!clp || task->tk_status >= 0)
2795 return 0;
2796 switch(task->tk_status) {
2797 case -NFS4ERR_STALE_CLIENTID:
2798 case -NFS4ERR_STALE_STATEID:
2799 case -NFS4ERR_EXPIRED:
2800 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL, NULL);
2801 nfs4_schedule_state_recovery(clp);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002802 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 rpc_wake_up_task(task);
2804 task->tk_status = 0;
2805 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 case -NFS4ERR_DELAY:
Chuck Lever006ea732006-03-20 13:44:14 -05002807 nfs_inc_server_stats((struct nfs_server *) server,
2808 NFSIOS_DELAY);
2809 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2811 task->tk_status = 0;
2812 return -EAGAIN;
2813 case -NFS4ERR_OLD_STATEID:
2814 task->tk_status = 0;
2815 return -EAGAIN;
2816 }
2817 task->tk_status = nfs4_map_errors(task->tk_status);
2818 return 0;
2819}
2820
Trond Myklebust433fbe42006-01-03 09:55:22 +01002821static int nfs4_wait_bit_interruptible(void *word)
2822{
2823 if (signal_pending(current))
2824 return -ERESTARTSYS;
2825 schedule();
2826 return 0;
2827}
2828
David Howellsadfa6f92006-08-22 20:06:08 -04002829static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 sigset_t oldset;
Trond Myklebust433fbe42006-01-03 09:55:22 +01002832 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
2834 might_sleep();
2835
2836 rpc_clnt_sigmask(clnt, &oldset);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002837 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
2838 nfs4_wait_bit_interruptible,
2839 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 rpc_clnt_sigunmask(clnt, &oldset);
2841 return res;
2842}
2843
2844static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2845{
2846 sigset_t oldset;
2847 int res = 0;
2848
2849 might_sleep();
2850
2851 if (*timeout <= 0)
2852 *timeout = NFS4_POLL_RETRY_MIN;
2853 if (*timeout > NFS4_POLL_RETRY_MAX)
2854 *timeout = NFS4_POLL_RETRY_MAX;
2855 rpc_clnt_sigmask(clnt, &oldset);
2856 if (clnt->cl_intr) {
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002857 schedule_timeout_interruptible(*timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 if (signalled())
2859 res = -ERESTARTSYS;
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002860 } else
2861 schedule_timeout_uninterruptible(*timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 rpc_clnt_sigunmask(clnt, &oldset);
2863 *timeout <<= 1;
2864 return res;
2865}
2866
2867/* This is the error handling routine for processes that are allowed
2868 * to sleep.
2869 */
Trond Myklebustfaf5f492005-10-18 14:20:15 -07002870int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871{
David Howells7539bba2006-08-22 20:06:09 -04002872 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 int ret = errorcode;
2874
2875 exception->retry = 0;
2876 switch(errorcode) {
2877 case 0:
2878 return 0;
2879 case -NFS4ERR_STALE_CLIENTID:
2880 case -NFS4ERR_STALE_STATEID:
2881 case -NFS4ERR_EXPIRED:
Trond Myklebust433fbe42006-01-03 09:55:22 +01002882 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 ret = nfs4_wait_clnt_recover(server->client, clp);
2884 if (ret == 0)
2885 exception->retry = 1;
2886 break;
2887 case -NFS4ERR_GRACE:
2888 case -NFS4ERR_DELAY:
2889 ret = nfs4_delay(server->client, &exception->timeout);
Trond Myklebust2c566172005-11-04 15:33:50 -05002890 if (ret != 0)
2891 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 case -NFS4ERR_OLD_STATEID:
Trond Myklebust2c566172005-11-04 15:33:50 -05002893 exception->retry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 }
2895 /* We failed to handle the error */
2896 return nfs4_map_errors(ret);
2897}
2898
David Howellsadfa6f92006-08-22 20:06:08 -04002899int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
2901 nfs4_verifier sc_verifier;
2902 struct nfs4_setclientid setclientid = {
2903 .sc_verifier = &sc_verifier,
2904 .sc_prog = program,
2905 };
2906 struct rpc_message msg = {
2907 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2908 .rpc_argp = &setclientid,
2909 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002910 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 };
2912 u32 *p;
2913 int loop = 0;
2914 int status;
2915
2916 p = (u32*)sc_verifier.data;
2917 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2918 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2919
2920 for(;;) {
2921 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
2922 sizeof(setclientid.sc_name), "%s/%u.%u.%u.%u %s %u",
David Howells24c8dbb2006-08-22 20:06:10 -04002923 clp->cl_ipaddr, NIPQUAD(clp->cl_addr.sin_addr),
Trond Myklebust286d7d62006-01-03 09:55:26 +01002924 cred->cr_ops->cr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 clp->cl_id_uniquifier);
2926 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
2927 sizeof(setclientid.sc_netid), "tcp");
2928 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
2929 sizeof(setclientid.sc_uaddr), "%s.%d.%d",
2930 clp->cl_ipaddr, port >> 8, port & 255);
2931
2932 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2933 if (status != -NFS4ERR_CLID_INUSE)
2934 break;
2935 if (signalled())
2936 break;
2937 if (loop++ & 1)
2938 ssleep(clp->cl_lease_time + 1);
2939 else
2940 if (++clp->cl_id_uniquifier == 0)
2941 break;
2942 }
2943 return status;
2944}
2945
David Howellsadfa6f92006-08-22 20:06:08 -04002946static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947{
2948 struct nfs_fsinfo fsinfo;
2949 struct rpc_message msg = {
2950 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2951 .rpc_argp = clp,
2952 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002953 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 };
2955 unsigned long now;
2956 int status;
2957
2958 now = jiffies;
2959 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2960 if (status == 0) {
2961 spin_lock(&clp->cl_lock);
2962 clp->cl_lease_time = fsinfo.lease_time * HZ;
2963 clp->cl_last_renewal = now;
Trond Myklebust58d97142006-01-03 09:55:24 +01002964 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 spin_unlock(&clp->cl_lock);
2966 }
2967 return status;
2968}
2969
David Howellsadfa6f92006-08-22 20:06:08 -04002970int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05002971{
2972 long timeout;
2973 int err;
2974 do {
2975 err = _nfs4_proc_setclientid_confirm(clp, cred);
2976 switch (err) {
2977 case 0:
2978 return err;
2979 case -NFS4ERR_RESOURCE:
2980 /* The IBM lawyers misread another document! */
2981 case -NFS4ERR_DELAY:
2982 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2983 }
2984 } while (err == 0);
2985 return err;
2986}
2987
Trond Myklebustfe650402006-01-03 09:55:18 +01002988struct nfs4_delegreturndata {
2989 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002990 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01002991 struct nfs_fh fh;
2992 nfs4_stateid stateid;
2993 struct rpc_cred *cred;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002994 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01002995 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01002996 int rpc_status;
2997};
2998
2999static void nfs4_delegreturn_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000{
Trond Myklebustfe650402006-01-03 09:55:18 +01003001 struct nfs4_delegreturndata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 struct rpc_message msg = {
3003 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
Trond Myklebustfe650402006-01-03 09:55:18 +01003004 .rpc_argp = &data->args,
Trond Myklebustfa178f22006-01-03 09:55:38 +01003005 .rpc_resp = &data->res,
Trond Myklebustfe650402006-01-03 09:55:18 +01003006 .rpc_cred = data->cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 };
Trond Myklebustfa178f22006-01-03 09:55:38 +01003008 nfs_fattr_init(data->res.fattr);
Trond Myklebustfe650402006-01-03 09:55:18 +01003009 rpc_call_setup(task, &msg, 0);
3010}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Trond Myklebustfe650402006-01-03 09:55:18 +01003012static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3013{
3014 struct nfs4_delegreturndata *data = calldata;
3015 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003016 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01003017 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01003018}
3019
3020static void nfs4_delegreturn_release(void *calldata)
3021{
3022 struct nfs4_delegreturndata *data = calldata;
3023
3024 put_rpccred(data->cred);
3025 kfree(calldata);
3026}
3027
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003028static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01003029 .rpc_call_prepare = nfs4_delegreturn_prepare,
3030 .rpc_call_done = nfs4_delegreturn_done,
3031 .rpc_release = nfs4_delegreturn_release,
3032};
3033
3034static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
3035{
3036 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003037 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003038 struct rpc_task *task;
3039 int status;
3040
3041 data = kmalloc(sizeof(*data), GFP_KERNEL);
3042 if (data == NULL)
3043 return -ENOMEM;
3044 data->args.fhandle = &data->fh;
3045 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003046 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003047 nfs_copy_fh(&data->fh, NFS_FH(inode));
3048 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003049 data->res.fattr = &data->fattr;
3050 data->res.server = server;
Trond Myklebustfe650402006-01-03 09:55:18 +01003051 data->cred = get_rpccred(cred);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003052 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003053 data->rpc_status = 0;
3054
3055 task = rpc_run_task(NFS_CLIENT(inode), RPC_TASK_ASYNC, &nfs4_delegreturn_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003056 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003057 return PTR_ERR(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003058 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebustfa178f22006-01-03 09:55:38 +01003059 if (status == 0) {
Trond Myklebustfe650402006-01-03 09:55:18 +01003060 status = data->rpc_status;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003061 if (status == 0)
3062 nfs_post_op_update_inode(inode, &data->fattr);
3063 }
Trond Myklebustfe650402006-01-03 09:55:18 +01003064 rpc_release_task(task);
3065 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066}
3067
3068int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
3069{
3070 struct nfs_server *server = NFS_SERVER(inode);
3071 struct nfs4_exception exception = { };
3072 int err;
3073 do {
3074 err = _nfs4_proc_delegreturn(inode, cred, stateid);
3075 switch (err) {
3076 case -NFS4ERR_STALE_STATEID:
3077 case -NFS4ERR_EXPIRED:
David Howells7539bba2006-08-22 20:06:09 -04003078 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 case 0:
3080 return 0;
3081 }
3082 err = nfs4_handle_exception(server, err, &exception);
3083 } while (exception.retry);
3084 return err;
3085}
3086
3087#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3088#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3089
3090/*
3091 * sleep, with exponential backoff, and retry the LOCK operation.
3092 */
3093static unsigned long
3094nfs4_set_lock_task_retry(unsigned long timeout)
3095{
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07003096 schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 timeout <<= 1;
3098 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3099 return NFS4_LOCK_MAXTIMEOUT;
3100 return timeout;
3101}
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3104{
3105 struct inode *inode = state->inode;
3106 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003107 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003108 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003110 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003112 struct nfs_lockt_res res = {
3113 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 };
3115 struct rpc_message msg = {
3116 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3117 .rpc_argp = &arg,
3118 .rpc_resp = &res,
3119 .rpc_cred = state->owner->so_cred,
3120 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 struct nfs4_lock_state *lsp;
3122 int status;
3123
3124 down_read(&clp->cl_sem);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003125 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003126 status = nfs4_set_lock_state(state, request);
3127 if (status != 0)
3128 goto out;
3129 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003130 arg.lock_owner.id = lsp->ls_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003132 switch (status) {
3133 case 0:
3134 request->fl_type = F_UNLCK;
3135 break;
3136 case -NFS4ERR_DENIED:
3137 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003139out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 up_read(&clp->cl_sem);
3141 return status;
3142}
3143
3144static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3145{
3146 struct nfs4_exception exception = { };
3147 int err;
3148
3149 do {
3150 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3151 _nfs4_proc_getlk(state, cmd, request),
3152 &exception);
3153 } while (exception.retry);
3154 return err;
3155}
3156
3157static int do_vfs_lock(struct file *file, struct file_lock *fl)
3158{
3159 int res = 0;
3160 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3161 case FL_POSIX:
3162 res = posix_lock_file_wait(file, fl);
3163 break;
3164 case FL_FLOCK:
3165 res = flock_lock_file_wait(file, fl);
3166 break;
3167 default:
3168 BUG();
3169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 return res;
3171}
3172
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003173struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003174 struct nfs_locku_args arg;
3175 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003176 struct nfs4_lock_state *lsp;
3177 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003178 struct file_lock fl;
3179 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003180 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003181};
3182
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003183static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3184 struct nfs_open_context *ctx,
3185 struct nfs4_lock_state *lsp,
3186 struct nfs_seqid *seqid)
3187{
3188 struct nfs4_unlockdata *p;
3189 struct inode *inode = lsp->ls_state->inode;
3190
3191 p = kmalloc(sizeof(*p), GFP_KERNEL);
3192 if (p == NULL)
3193 return NULL;
3194 p->arg.fh = NFS_FH(inode);
3195 p->arg.fl = &p->fl;
3196 p->arg.seqid = seqid;
3197 p->arg.stateid = &lsp->ls_stateid;
3198 p->lsp = lsp;
3199 atomic_inc(&lsp->ls_count);
3200 /* Ensure we don't close file until we're done freeing locks! */
3201 p->ctx = get_nfs_open_context(ctx);
3202 memcpy(&p->fl, fl, sizeof(p->fl));
3203 p->server = NFS_SERVER(inode);
3204 return p;
3205}
3206
Trond Myklebust06f814a2006-01-03 09:55:07 +01003207static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003208{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003209 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003210 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003211 nfs4_put_lock_state(calldata->lsp);
3212 put_nfs_open_context(calldata->ctx);
3213 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003214}
3215
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003216static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003217{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003218 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003219
Trond Myklebust06f814a2006-01-03 09:55:07 +01003220 if (RPC_ASSASSINATED(task))
3221 return;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003222 nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003223 switch (task->tk_status) {
3224 case 0:
3225 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003226 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003227 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003228 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003229 break;
3230 case -NFS4ERR_STALE_STATEID:
3231 case -NFS4ERR_EXPIRED:
David Howells7539bba2006-08-22 20:06:09 -04003232 nfs4_schedule_state_recovery(calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003233 break;
3234 default:
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003235 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN) {
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003236 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003237 }
3238 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003239}
3240
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003241static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003242{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003243 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 struct rpc_message msg = {
3245 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003246 .rpc_argp = &calldata->arg,
3247 .rpc_resp = &calldata->res,
3248 .rpc_cred = calldata->lsp->ls_state->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003251 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003252 return;
3253 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003254 /* Note: exit _without_ running nfs4_locku_done */
3255 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003256 return;
3257 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003258 calldata->timestamp = jiffies;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003259 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260}
3261
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003262static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003263 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003264 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003265 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003266};
3267
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003268static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3269 struct nfs_open_context *ctx,
3270 struct nfs4_lock_state *lsp,
3271 struct nfs_seqid *seqid)
3272{
3273 struct nfs4_unlockdata *data;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003274
3275 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3276 if (data == NULL) {
3277 nfs_free_seqid(seqid);
3278 return ERR_PTR(-ENOMEM);
3279 }
3280
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003281 return rpc_run_task(NFS_CLIENT(lsp->ls_state->inode), RPC_TASK_ASYNC, &nfs4_locku_ops, data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003282}
3283
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3285{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003286 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003287 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003288 struct rpc_task *task;
3289 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Trond Myklebust9b073572006-06-29 16:38:34 -04003291 status = nfs4_set_lock_state(state, request);
3292 /* Unlock _before_ we do the RPC call */
3293 request->fl_flags |= FL_EXISTS;
3294 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3295 goto out;
3296 if (status != 0)
3297 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003298 /* Is this a delegated lock? */
3299 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003300 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003301 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003302 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003303 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003304 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003305 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003306 task = nfs4_do_unlck(request, request->fl_file->private_data, lsp, seqid);
3307 status = PTR_ERR(task);
3308 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003309 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003310 status = nfs4_wait_for_completion_rpc_task(task);
3311 rpc_release_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003312out:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003313 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314}
3315
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003316struct nfs4_lockdata {
3317 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003318 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003319 struct nfs4_lock_state *lsp;
3320 struct nfs_open_context *ctx;
3321 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003322 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003323 int rpc_status;
3324 int cancelled;
3325};
3326
3327static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3328 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3329{
3330 struct nfs4_lockdata *p;
3331 struct inode *inode = lsp->ls_state->inode;
3332 struct nfs_server *server = NFS_SERVER(inode);
3333
3334 p = kzalloc(sizeof(*p), GFP_KERNEL);
3335 if (p == NULL)
3336 return NULL;
3337
3338 p->arg.fh = NFS_FH(inode);
3339 p->arg.fl = &p->fl;
3340 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3341 if (p->arg.lock_seqid == NULL)
3342 goto out_free;
3343 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003344 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003345 p->arg.lock_owner.id = lsp->ls_id;
3346 p->lsp = lsp;
3347 atomic_inc(&lsp->ls_count);
3348 p->ctx = get_nfs_open_context(ctx);
3349 memcpy(&p->fl, fl, sizeof(p->fl));
3350 return p;
3351out_free:
3352 kfree(p);
3353 return NULL;
3354}
3355
3356static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3357{
3358 struct nfs4_lockdata *data = calldata;
3359 struct nfs4_state *state = data->lsp->ls_state;
3360 struct nfs4_state_owner *sp = state->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 struct rpc_message msg = {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003362 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3363 .rpc_argp = &data->arg,
3364 .rpc_resp = &data->res,
3365 .rpc_cred = sp->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003368 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3369 return;
3370 dprintk("%s: begin!\n", __FUNCTION__);
3371 /* Do we need to do an open_to_lock_owner? */
3372 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
3373 data->arg.open_seqid = nfs_alloc_seqid(&sp->so_seqid);
3374 if (data->arg.open_seqid == NULL) {
3375 data->rpc_status = -ENOMEM;
3376 task->tk_action = NULL;
Trond Myklebust06735b32005-10-18 14:20:15 -07003377 goto out;
Trond Myklebust06735b32005-10-18 14:20:15 -07003378 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003379 data->arg.open_stateid = &state->stateid;
3380 data->arg.new_lock_owner = 1;
3381 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003382 data->timestamp = jiffies;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003383 rpc_call_setup(task, &msg, 0);
Trond Myklebust06735b32005-10-18 14:20:15 -07003384out:
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003385 dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status);
3386}
3387
3388static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3389{
3390 struct nfs4_lockdata *data = calldata;
3391
3392 dprintk("%s: begin!\n", __FUNCTION__);
3393
3394 data->rpc_status = task->tk_status;
3395 if (RPC_ASSASSINATED(task))
3396 goto out;
3397 if (data->arg.new_lock_owner != 0) {
3398 nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid);
3399 if (data->rpc_status == 0)
3400 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3401 else
3402 goto out;
3403 }
3404 if (data->rpc_status == 0) {
3405 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3406 sizeof(data->lsp->ls_stateid.data));
3407 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003408 renew_lease(NFS_SERVER(data->ctx->dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003409 }
3410 nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid);
3411out:
3412 dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status);
3413}
3414
3415static void nfs4_lock_release(void *calldata)
3416{
3417 struct nfs4_lockdata *data = calldata;
3418
3419 dprintk("%s: begin!\n", __FUNCTION__);
3420 if (data->arg.open_seqid != NULL)
3421 nfs_free_seqid(data->arg.open_seqid);
3422 if (data->cancelled != 0) {
3423 struct rpc_task *task;
3424 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3425 data->arg.lock_seqid);
3426 if (!IS_ERR(task))
3427 rpc_release_task(task);
3428 dprintk("%s: cancelling lock!\n", __FUNCTION__);
3429 } else
3430 nfs_free_seqid(data->arg.lock_seqid);
3431 nfs4_put_lock_state(data->lsp);
3432 put_nfs_open_context(data->ctx);
3433 kfree(data);
3434 dprintk("%s: done!\n", __FUNCTION__);
3435}
3436
3437static const struct rpc_call_ops nfs4_lock_ops = {
3438 .rpc_call_prepare = nfs4_lock_prepare,
3439 .rpc_call_done = nfs4_lock_done,
3440 .rpc_release = nfs4_lock_release,
3441};
3442
3443static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3444{
3445 struct nfs4_lockdata *data;
3446 struct rpc_task *task;
3447 int ret;
3448
3449 dprintk("%s: begin!\n", __FUNCTION__);
3450 data = nfs4_alloc_lockdata(fl, fl->fl_file->private_data,
3451 fl->fl_u.nfs4_fl.owner);
3452 if (data == NULL)
3453 return -ENOMEM;
3454 if (IS_SETLKW(cmd))
3455 data->arg.block = 1;
3456 if (reclaim != 0)
3457 data->arg.reclaim = 1;
3458 task = rpc_run_task(NFS_CLIENT(state->inode), RPC_TASK_ASYNC,
3459 &nfs4_lock_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003460 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003461 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003462 ret = nfs4_wait_for_completion_rpc_task(task);
3463 if (ret == 0) {
3464 ret = data->rpc_status;
3465 if (ret == -NFS4ERR_DENIED)
3466 ret = -EAGAIN;
3467 } else
3468 data->cancelled = 1;
3469 rpc_release_task(task);
3470 dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret);
3471 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472}
3473
3474static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3475{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003476 struct nfs_server *server = NFS_SERVER(state->inode);
3477 struct nfs4_exception exception = { };
3478 int err;
3479
3480 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003481 /* Cache the lock if possible... */
3482 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3483 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003484 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3485 if (err != -NFS4ERR_DELAY)
3486 break;
3487 nfs4_handle_exception(server, err, &exception);
3488 } while (exception.retry);
3489 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490}
3491
3492static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3493{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003494 struct nfs_server *server = NFS_SERVER(state->inode);
3495 struct nfs4_exception exception = { };
3496 int err;
3497
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003498 err = nfs4_set_lock_state(state, request);
3499 if (err != 0)
3500 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003501 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003502 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3503 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003504 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3505 if (err != -NFS4ERR_DELAY)
3506 break;
3507 nfs4_handle_exception(server, err, &exception);
3508 } while (exception.retry);
3509 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510}
3511
3512static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3513{
David Howellsadfa6f92006-08-22 20:06:08 -04003514 struct nfs_client *clp = state->owner->so_client;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003515 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 int status;
3517
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003518 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003519 status = nfs4_set_lock_state(state, request);
3520 if (status != 0)
3521 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003522 request->fl_flags |= FL_ACCESS;
3523 status = do_vfs_lock(request->fl_file, request);
3524 if (status < 0)
3525 goto out;
3526 down_read(&clp->cl_sem);
3527 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3528 struct nfs_inode *nfsi = NFS_I(state->inode);
3529 /* Yes: cache locks! */
3530 down_read(&nfsi->rwsem);
3531 /* ...but avoid races with delegation recall... */
3532 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3533 request->fl_flags = fl_flags & ~FL_SLEEP;
3534 status = do_vfs_lock(request->fl_file, request);
3535 up_read(&nfsi->rwsem);
3536 goto out_unlock;
3537 }
3538 up_read(&nfsi->rwsem);
3539 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003540 status = _nfs4_do_setlk(state, cmd, request, 0);
3541 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003542 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003543 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003544 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003545 if (do_vfs_lock(request->fl_file, request) < 0)
3546 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003547out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 up_read(&clp->cl_sem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003549out:
3550 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 return status;
3552}
3553
3554static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3555{
3556 struct nfs4_exception exception = { };
3557 int err;
3558
3559 do {
3560 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3561 _nfs4_proc_setlk(state, cmd, request),
3562 &exception);
3563 } while (exception.retry);
3564 return err;
3565}
3566
3567static int
3568nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3569{
3570 struct nfs_open_context *ctx;
3571 struct nfs4_state *state;
3572 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3573 int status;
3574
3575 /* verify open state */
3576 ctx = (struct nfs_open_context *)filp->private_data;
3577 state = ctx->state;
3578
3579 if (request->fl_start < 0 || request->fl_end < 0)
3580 return -EINVAL;
3581
3582 if (IS_GETLK(cmd))
3583 return nfs4_proc_getlk(state, F_GETLK, request);
3584
3585 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3586 return -EINVAL;
3587
3588 if (request->fl_type == F_UNLCK)
3589 return nfs4_proc_unlck(state, cmd, request);
3590
3591 do {
3592 status = nfs4_proc_setlk(state, cmd, request);
3593 if ((status != -EAGAIN) || IS_SETLK(cmd))
3594 break;
3595 timeout = nfs4_set_lock_task_retry(timeout);
3596 status = -ERESTARTSYS;
3597 if (signalled())
3598 break;
3599 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 return status;
3601}
3602
Trond Myklebust888e6942005-11-04 15:38:11 -05003603int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3604{
3605 struct nfs_server *server = NFS_SERVER(state->inode);
3606 struct nfs4_exception exception = { };
3607 int err;
3608
3609 err = nfs4_set_lock_state(state, fl);
3610 if (err != 0)
3611 goto out;
3612 do {
3613 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3614 if (err != -NFS4ERR_DELAY)
3615 break;
3616 err = nfs4_handle_exception(server, err, &exception);
3617 } while (exception.retry);
3618out:
3619 return err;
3620}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003621
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003622#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3623
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003624int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3625 size_t buflen, int flags)
3626{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003627 struct inode *inode = dentry->d_inode;
3628
3629 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3630 return -EOPNOTSUPP;
3631
3632 if (!S_ISREG(inode->i_mode) &&
3633 (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX))
3634 return -EPERM;
3635
3636 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003637}
3638
3639/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3640 * and that's what we'll do for e.g. user attributes that haven't been set.
3641 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3642 * attributes in kernel-managed attribute namespaces. */
3643ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3644 size_t buflen)
3645{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003646 struct inode *inode = dentry->d_inode;
3647
3648 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3649 return -EOPNOTSUPP;
3650
3651 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003652}
3653
3654ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3655{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003656 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003657
J. Bruce Fields096455a2006-03-20 23:23:42 -05003658 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3659 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003660 if (buf && buflen < len)
3661 return -ERANGE;
3662 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003663 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3664 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003665}
3666
Trond Myklebust683b57b2006-06-09 09:34:22 -04003667int nfs4_proc_fs_locations(struct inode *dir, struct dentry *dentry,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003668 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003669{
3670 struct nfs_server *server = NFS_SERVER(dir);
3671 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003672 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3673 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003674 };
3675 struct nfs4_fs_locations_arg args = {
3676 .dir_fh = NFS_FH(dir),
3677 .name = &dentry->d_name,
3678 .page = page,
3679 .bitmask = bitmask,
3680 };
3681 struct rpc_message msg = {
3682 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3683 .rpc_argp = &args,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003684 .rpc_resp = fs_locations,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003685 };
3686 int status;
3687
3688 dprintk("%s: start\n", __FUNCTION__);
3689 fs_locations->fattr.valid = 0;
3690 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003691 fs_locations->nlocations = 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003692 status = rpc_call_sync(server->client, &msg, 0);
3693 dprintk("%s: returned status = %d\n", __FUNCTION__, status);
3694 return status;
3695}
3696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3698 .recover_open = nfs4_open_reclaim,
3699 .recover_lock = nfs4_lock_reclaim,
3700};
3701
3702struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3703 .recover_open = nfs4_open_expired,
3704 .recover_lock = nfs4_lock_expired,
3705};
3706
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003707static struct inode_operations nfs4_file_inode_operations = {
3708 .permission = nfs_permission,
3709 .getattr = nfs_getattr,
3710 .setattr = nfs_setattr,
3711 .getxattr = nfs4_getxattr,
3712 .setxattr = nfs4_setxattr,
3713 .listxattr = nfs4_listxattr,
3714};
3715
David Howells509de812006-08-22 20:06:11 -04003716const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 .version = 4, /* protocol version */
3718 .dentry_ops = &nfs4_dentry_operations,
3719 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003720 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 .getroot = nfs4_proc_get_root,
3722 .getattr = nfs4_proc_getattr,
3723 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003724 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 .lookup = nfs4_proc_lookup,
3726 .access = nfs4_proc_access,
3727 .readlink = nfs4_proc_readlink,
3728 .read = nfs4_proc_read,
3729 .write = nfs4_proc_write,
3730 .commit = nfs4_proc_commit,
3731 .create = nfs4_proc_create,
3732 .remove = nfs4_proc_remove,
3733 .unlink_setup = nfs4_proc_unlink_setup,
3734 .unlink_done = nfs4_proc_unlink_done,
3735 .rename = nfs4_proc_rename,
3736 .link = nfs4_proc_link,
3737 .symlink = nfs4_proc_symlink,
3738 .mkdir = nfs4_proc_mkdir,
3739 .rmdir = nfs4_proc_remove,
3740 .readdir = nfs4_proc_readdir,
3741 .mknod = nfs4_proc_mknod,
3742 .statfs = nfs4_proc_statfs,
3743 .fsinfo = nfs4_proc_fsinfo,
3744 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003745 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 .decode_dirent = nfs4_decode_dirent,
3747 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003748 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003750 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003752 .commit_done = nfs4_commit_done,
Trond Myklebust02a913a2005-10-18 14:20:17 -07003753 .file_open = nfs_open,
3754 .file_release = nfs_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003756 .clear_acl_cache = nfs4_zap_acl_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757};
3758
3759/*
3760 * Local variables:
3761 * c-basic-offset: 8
3762 * End:
3763 */