NFSv4: Fix state recovery when the client runs over the grace period
[linux-2.6/verdex.git] / fs / nfs / nfs4proc.c
blob279ab36b5a67ab5456412038fcf015f889a2e020
1 /*
2 * fs/nfs/nfs4proc.c
4 * Client-side procedure declarations for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
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.
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.
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>
50 #include <linux/mount.h>
52 #include "nfs4_fs.h"
53 #include "delegation.h"
54 #include "internal.h"
55 #include "iostat.h"
57 #define NFSDBG_FACILITY NFSDBG_PROC
59 #define NFS4_POLL_RETRY_MIN (HZ/10)
60 #define NFS4_POLL_RETRY_MAX (15*HZ)
62 struct nfs4_opendata;
63 static int _nfs4_proc_open(struct nfs4_opendata *data);
64 static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
65 static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *);
66 static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception);
67 static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp);
68 static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
69 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
71 /* Prevent leaks of NFSv4 errors into userland */
72 int nfs4_map_errors(int err)
74 if (err < -1000) {
75 dprintk("%s could not handle NFSv4 error %d\n",
76 __func__, -err);
77 return -EIO;
79 return err;
83 * This is our standard bitmap for GETATTR requests.
85 const u32 nfs4_fattr_bitmap[2] = {
86 FATTR4_WORD0_TYPE
87 | FATTR4_WORD0_CHANGE
88 | FATTR4_WORD0_SIZE
89 | FATTR4_WORD0_FSID
90 | FATTR4_WORD0_FILEID,
91 FATTR4_WORD1_MODE
92 | FATTR4_WORD1_NUMLINKS
93 | FATTR4_WORD1_OWNER
94 | FATTR4_WORD1_OWNER_GROUP
95 | FATTR4_WORD1_RAWDEV
96 | FATTR4_WORD1_SPACE_USED
97 | FATTR4_WORD1_TIME_ACCESS
98 | FATTR4_WORD1_TIME_METADATA
99 | FATTR4_WORD1_TIME_MODIFY
102 const u32 nfs4_statfs_bitmap[2] = {
103 FATTR4_WORD0_FILES_AVAIL
104 | FATTR4_WORD0_FILES_FREE
105 | FATTR4_WORD0_FILES_TOTAL,
106 FATTR4_WORD1_SPACE_AVAIL
107 | FATTR4_WORD1_SPACE_FREE
108 | FATTR4_WORD1_SPACE_TOTAL
111 const u32 nfs4_pathconf_bitmap[2] = {
112 FATTR4_WORD0_MAXLINK
113 | FATTR4_WORD0_MAXNAME,
117 const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
118 | FATTR4_WORD0_MAXREAD
119 | FATTR4_WORD0_MAXWRITE
120 | FATTR4_WORD0_LEASE_TIME,
124 const u32 nfs4_fs_locations_bitmap[2] = {
125 FATTR4_WORD0_TYPE
126 | FATTR4_WORD0_CHANGE
127 | FATTR4_WORD0_SIZE
128 | FATTR4_WORD0_FSID
129 | FATTR4_WORD0_FILEID
130 | FATTR4_WORD0_FS_LOCATIONS,
131 FATTR4_WORD1_MODE
132 | FATTR4_WORD1_NUMLINKS
133 | FATTR4_WORD1_OWNER
134 | FATTR4_WORD1_OWNER_GROUP
135 | FATTR4_WORD1_RAWDEV
136 | FATTR4_WORD1_SPACE_USED
137 | FATTR4_WORD1_TIME_ACCESS
138 | FATTR4_WORD1_TIME_METADATA
139 | FATTR4_WORD1_TIME_MODIFY
140 | FATTR4_WORD1_MOUNTED_ON_FILEID
143 static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
144 struct nfs4_readdir_arg *readdir)
146 __be32 *start, *p;
148 BUG_ON(readdir->count < 80);
149 if (cookie > 2) {
150 readdir->cookie = cookie;
151 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
152 return;
155 readdir->cookie = 0;
156 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
157 if (cookie == 2)
158 return;
161 * NFSv4 servers do not return entries for '.' and '..'
162 * Therefore, we fake these entries here. We let '.'
163 * have cookie 0 and '..' have cookie 1. Note that
164 * when talking to the server, we always send cookie 0
165 * instead of 1 or 2.
167 start = p = kmap_atomic(*readdir->pages, KM_USER0);
169 if (cookie == 0) {
170 *p++ = xdr_one; /* next */
171 *p++ = xdr_zero; /* cookie, first word */
172 *p++ = xdr_one; /* cookie, second word */
173 *p++ = xdr_one; /* entry len */
174 memcpy(p, ".\0\0\0", 4); /* entry */
175 p++;
176 *p++ = xdr_one; /* bitmap length */
177 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
178 *p++ = htonl(8); /* attribute buffer length */
179 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
182 *p++ = xdr_one; /* next */
183 *p++ = xdr_zero; /* cookie, first word */
184 *p++ = xdr_two; /* cookie, second word */
185 *p++ = xdr_two; /* entry len */
186 memcpy(p, "..\0\0", 4); /* entry */
187 p++;
188 *p++ = xdr_one; /* bitmap length */
189 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
190 *p++ = htonl(8); /* attribute buffer length */
191 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
193 readdir->pgbase = (char *)p - (char *)start;
194 readdir->count -= readdir->pgbase;
195 kunmap_atomic(start, KM_USER0);
198 static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
200 struct nfs_client *clp = server->nfs_client;
201 spin_lock(&clp->cl_lock);
202 if (time_before(clp->cl_last_renewal,timestamp))
203 clp->cl_last_renewal = timestamp;
204 spin_unlock(&clp->cl_lock);
207 static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
209 struct nfs_inode *nfsi = NFS_I(dir);
211 spin_lock(&dir->i_lock);
212 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
213 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
214 nfs_force_lookup_revalidate(dir);
215 nfsi->change_attr = cinfo->after;
216 spin_unlock(&dir->i_lock);
219 struct nfs4_opendata {
220 struct kref kref;
221 struct nfs_openargs o_arg;
222 struct nfs_openres o_res;
223 struct nfs_open_confirmargs c_arg;
224 struct nfs_open_confirmres c_res;
225 struct nfs_fattr f_attr;
226 struct nfs_fattr dir_attr;
227 struct path path;
228 struct dentry *dir;
229 struct nfs4_state_owner *owner;
230 struct nfs4_state *state;
231 struct iattr attrs;
232 unsigned long timestamp;
233 unsigned int rpc_done : 1;
234 int rpc_status;
235 int cancelled;
239 static void nfs4_init_opendata_res(struct nfs4_opendata *p)
241 p->o_res.f_attr = &p->f_attr;
242 p->o_res.dir_attr = &p->dir_attr;
243 p->o_res.seqid = p->o_arg.seqid;
244 p->c_res.seqid = p->c_arg.seqid;
245 p->o_res.server = p->o_arg.server;
246 nfs_fattr_init(&p->f_attr);
247 nfs_fattr_init(&p->dir_attr);
250 static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
251 struct nfs4_state_owner *sp, int flags,
252 const struct iattr *attrs)
254 struct dentry *parent = dget_parent(path->dentry);
255 struct inode *dir = parent->d_inode;
256 struct nfs_server *server = NFS_SERVER(dir);
257 struct nfs4_opendata *p;
259 p = kzalloc(sizeof(*p), GFP_KERNEL);
260 if (p == NULL)
261 goto err;
262 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
263 if (p->o_arg.seqid == NULL)
264 goto err_free;
265 p->path.mnt = mntget(path->mnt);
266 p->path.dentry = dget(path->dentry);
267 p->dir = parent;
268 p->owner = sp;
269 atomic_inc(&sp->so_count);
270 p->o_arg.fh = NFS_FH(dir);
271 p->o_arg.open_flags = flags,
272 p->o_arg.clientid = server->nfs_client->cl_clientid;
273 p->o_arg.id = sp->so_owner_id.id;
274 p->o_arg.name = &p->path.dentry->d_name;
275 p->o_arg.server = server;
276 p->o_arg.bitmask = server->attr_bitmask;
277 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
278 if (flags & O_EXCL) {
279 u32 *s = (u32 *) p->o_arg.u.verifier.data;
280 s[0] = jiffies;
281 s[1] = current->pid;
282 } else if (flags & O_CREAT) {
283 p->o_arg.u.attrs = &p->attrs;
284 memcpy(&p->attrs, attrs, sizeof(p->attrs));
286 p->c_arg.fh = &p->o_res.fh;
287 p->c_arg.stateid = &p->o_res.stateid;
288 p->c_arg.seqid = p->o_arg.seqid;
289 nfs4_init_opendata_res(p);
290 kref_init(&p->kref);
291 return p;
292 err_free:
293 kfree(p);
294 err:
295 dput(parent);
296 return NULL;
299 static void nfs4_opendata_free(struct kref *kref)
301 struct nfs4_opendata *p = container_of(kref,
302 struct nfs4_opendata, kref);
304 nfs_free_seqid(p->o_arg.seqid);
305 if (p->state != NULL)
306 nfs4_put_open_state(p->state);
307 nfs4_put_state_owner(p->owner);
308 dput(p->dir);
309 path_put(&p->path);
310 kfree(p);
313 static void nfs4_opendata_put(struct nfs4_opendata *p)
315 if (p != NULL)
316 kref_put(&p->kref, nfs4_opendata_free);
319 static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
321 int ret;
323 ret = rpc_wait_for_completion_task(task);
324 return ret;
327 static int can_open_cached(struct nfs4_state *state, int mode)
329 int ret = 0;
330 switch (mode & (FMODE_READ|FMODE_WRITE|O_EXCL)) {
331 case FMODE_READ:
332 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
333 break;
334 case FMODE_WRITE:
335 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
336 break;
337 case FMODE_READ|FMODE_WRITE:
338 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
340 return ret;
343 static int can_open_delegated(struct nfs_delegation *delegation, mode_t open_flags)
345 if ((delegation->type & open_flags) != open_flags)
346 return 0;
347 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
348 return 0;
349 return 1;
352 static void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
354 switch (open_flags) {
355 case FMODE_WRITE:
356 state->n_wronly++;
357 break;
358 case FMODE_READ:
359 state->n_rdonly++;
360 break;
361 case FMODE_READ|FMODE_WRITE:
362 state->n_rdwr++;
364 nfs4_state_set_mode_locked(state, state->state | open_flags);
367 static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
369 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
370 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
371 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
372 switch (open_flags) {
373 case FMODE_READ:
374 set_bit(NFS_O_RDONLY_STATE, &state->flags);
375 break;
376 case FMODE_WRITE:
377 set_bit(NFS_O_WRONLY_STATE, &state->flags);
378 break;
379 case FMODE_READ|FMODE_WRITE:
380 set_bit(NFS_O_RDWR_STATE, &state->flags);
384 static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
386 write_seqlock(&state->seqlock);
387 nfs_set_open_stateid_locked(state, stateid, open_flags);
388 write_sequnlock(&state->seqlock);
391 static void __update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, const nfs4_stateid *deleg_stateid, int open_flags)
394 * Protect the call to nfs4_state_set_mode_locked and
395 * serialise the stateid update
397 write_seqlock(&state->seqlock);
398 if (deleg_stateid != NULL) {
399 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
400 set_bit(NFS_DELEGATED_STATE, &state->flags);
402 if (open_stateid != NULL)
403 nfs_set_open_stateid_locked(state, open_stateid, open_flags);
404 write_sequnlock(&state->seqlock);
405 spin_lock(&state->owner->so_lock);
406 update_open_stateflags(state, open_flags);
407 spin_unlock(&state->owner->so_lock);
410 static int update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *delegation, int open_flags)
412 struct nfs_inode *nfsi = NFS_I(state->inode);
413 struct nfs_delegation *deleg_cur;
414 int ret = 0;
416 open_flags &= (FMODE_READ|FMODE_WRITE);
418 rcu_read_lock();
419 deleg_cur = rcu_dereference(nfsi->delegation);
420 if (deleg_cur == NULL)
421 goto no_delegation;
423 spin_lock(&deleg_cur->lock);
424 if (nfsi->delegation != deleg_cur ||
425 (deleg_cur->type & open_flags) != open_flags)
426 goto no_delegation_unlock;
428 if (delegation == NULL)
429 delegation = &deleg_cur->stateid;
430 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
431 goto no_delegation_unlock;
433 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, open_flags);
434 ret = 1;
435 no_delegation_unlock:
436 spin_unlock(&deleg_cur->lock);
437 no_delegation:
438 rcu_read_unlock();
440 if (!ret && open_stateid != NULL) {
441 __update_open_stateid(state, open_stateid, NULL, open_flags);
442 ret = 1;
445 return ret;
449 static void nfs4_return_incompatible_delegation(struct inode *inode, mode_t open_flags)
451 struct nfs_delegation *delegation;
453 rcu_read_lock();
454 delegation = rcu_dereference(NFS_I(inode)->delegation);
455 if (delegation == NULL || (delegation->type & open_flags) == open_flags) {
456 rcu_read_unlock();
457 return;
459 rcu_read_unlock();
460 nfs_inode_return_delegation(inode);
463 static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
465 struct nfs4_state *state = opendata->state;
466 struct nfs_inode *nfsi = NFS_I(state->inode);
467 struct nfs_delegation *delegation;
468 int open_mode = opendata->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL);
469 nfs4_stateid stateid;
470 int ret = -EAGAIN;
472 for (;;) {
473 if (can_open_cached(state, open_mode)) {
474 spin_lock(&state->owner->so_lock);
475 if (can_open_cached(state, open_mode)) {
476 update_open_stateflags(state, open_mode);
477 spin_unlock(&state->owner->so_lock);
478 goto out_return_state;
480 spin_unlock(&state->owner->so_lock);
482 rcu_read_lock();
483 delegation = rcu_dereference(nfsi->delegation);
484 if (delegation == NULL ||
485 !can_open_delegated(delegation, open_mode)) {
486 rcu_read_unlock();
487 break;
489 /* Save the delegation */
490 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
491 rcu_read_unlock();
492 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
493 if (ret != 0)
494 goto out;
495 ret = -EAGAIN;
497 /* Try to update the stateid using the delegation */
498 if (update_open_stateid(state, NULL, &stateid, open_mode))
499 goto out_return_state;
501 out:
502 return ERR_PTR(ret);
503 out_return_state:
504 atomic_inc(&state->count);
505 return state;
508 static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
510 struct inode *inode;
511 struct nfs4_state *state = NULL;
512 struct nfs_delegation *delegation;
513 int ret;
515 if (!data->rpc_done) {
516 state = nfs4_try_open_cached(data);
517 goto out;
520 ret = -EAGAIN;
521 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
522 goto err;
523 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
524 ret = PTR_ERR(inode);
525 if (IS_ERR(inode))
526 goto err;
527 ret = -ENOMEM;
528 state = nfs4_get_open_state(inode, data->owner);
529 if (state == NULL)
530 goto err_put_inode;
531 if (data->o_res.delegation_type != 0) {
532 int delegation_flags = 0;
534 rcu_read_lock();
535 delegation = rcu_dereference(NFS_I(inode)->delegation);
536 if (delegation)
537 delegation_flags = delegation->flags;
538 rcu_read_unlock();
539 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
540 nfs_inode_set_delegation(state->inode,
541 data->owner->so_cred,
542 &data->o_res);
543 else
544 nfs_inode_reclaim_delegation(state->inode,
545 data->owner->so_cred,
546 &data->o_res);
549 update_open_stateid(state, &data->o_res.stateid, NULL,
550 data->o_arg.open_flags);
551 iput(inode);
552 out:
553 return state;
554 err_put_inode:
555 iput(inode);
556 err:
557 return ERR_PTR(ret);
560 static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
562 struct nfs_inode *nfsi = NFS_I(state->inode);
563 struct nfs_open_context *ctx;
565 spin_lock(&state->inode->i_lock);
566 list_for_each_entry(ctx, &nfsi->open_files, list) {
567 if (ctx->state != state)
568 continue;
569 get_nfs_open_context(ctx);
570 spin_unlock(&state->inode->i_lock);
571 return ctx;
573 spin_unlock(&state->inode->i_lock);
574 return ERR_PTR(-ENOENT);
577 static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
579 struct nfs4_opendata *opendata;
581 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
582 if (opendata == NULL)
583 return ERR_PTR(-ENOMEM);
584 opendata->state = state;
585 atomic_inc(&state->count);
586 return opendata;
589 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, struct nfs4_state **res)
591 struct nfs4_state *newstate;
592 int ret;
594 opendata->o_arg.open_flags = openflags;
595 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
596 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
597 nfs4_init_opendata_res(opendata);
598 ret = _nfs4_proc_open(opendata);
599 if (ret != 0)
600 return ret;
601 newstate = nfs4_opendata_to_nfs4_state(opendata);
602 if (IS_ERR(newstate))
603 return PTR_ERR(newstate);
604 nfs4_close_state(&opendata->path, newstate, openflags);
605 *res = newstate;
606 return 0;
609 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
611 struct nfs4_state *newstate;
612 int ret;
614 /* memory barrier prior to reading state->n_* */
615 clear_bit(NFS_DELEGATED_STATE, &state->flags);
616 smp_rmb();
617 if (state->n_rdwr != 0) {
618 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
619 if (ret != 0)
620 return ret;
621 if (newstate != state)
622 return -ESTALE;
624 if (state->n_wronly != 0) {
625 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
626 if (ret != 0)
627 return ret;
628 if (newstate != state)
629 return -ESTALE;
631 if (state->n_rdonly != 0) {
632 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
633 if (ret != 0)
634 return ret;
635 if (newstate != state)
636 return -ESTALE;
639 * We may have performed cached opens for all three recoveries.
640 * Check if we need to update the current stateid.
642 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
643 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
644 write_seqlock(&state->seqlock);
645 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
646 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
647 write_sequnlock(&state->seqlock);
649 return 0;
653 * OPEN_RECLAIM:
654 * reclaim state on the server after a reboot.
656 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
658 struct nfs_delegation *delegation;
659 struct nfs4_opendata *opendata;
660 int delegation_type = 0;
661 int status;
663 opendata = nfs4_open_recoverdata_alloc(ctx, state);
664 if (IS_ERR(opendata))
665 return PTR_ERR(opendata);
666 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
667 opendata->o_arg.fh = NFS_FH(state->inode);
668 rcu_read_lock();
669 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
670 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
671 delegation_type = delegation->type;
672 rcu_read_unlock();
673 opendata->o_arg.u.delegation_type = delegation_type;
674 status = nfs4_open_recover(opendata, state);
675 nfs4_opendata_put(opendata);
676 return status;
679 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
681 struct nfs_server *server = NFS_SERVER(state->inode);
682 struct nfs4_exception exception = { };
683 int err;
684 do {
685 err = _nfs4_do_open_reclaim(ctx, state);
686 if (err != -NFS4ERR_DELAY)
687 break;
688 nfs4_handle_exception(server, err, &exception);
689 } while (exception.retry);
690 return err;
693 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
695 struct nfs_open_context *ctx;
696 int ret;
698 ctx = nfs4_state_find_open_context(state);
699 if (IS_ERR(ctx))
700 return PTR_ERR(ctx);
701 ret = nfs4_do_open_reclaim(ctx, state);
702 put_nfs_open_context(ctx);
703 return ret;
706 static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
708 struct nfs4_opendata *opendata;
709 int ret;
711 opendata = nfs4_open_recoverdata_alloc(ctx, state);
712 if (IS_ERR(opendata))
713 return PTR_ERR(opendata);
714 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
715 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
716 sizeof(opendata->o_arg.u.delegation.data));
717 ret = nfs4_open_recover(opendata, state);
718 nfs4_opendata_put(opendata);
719 return ret;
722 int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
724 struct nfs4_exception exception = { };
725 struct nfs_server *server = NFS_SERVER(state->inode);
726 int err;
727 do {
728 err = _nfs4_open_delegation_recall(ctx, state, stateid);
729 switch (err) {
730 case 0:
731 return err;
732 case -NFS4ERR_STALE_CLIENTID:
733 case -NFS4ERR_STALE_STATEID:
734 case -NFS4ERR_EXPIRED:
735 /* Don't recall a delegation if it was lost */
736 nfs4_schedule_state_recovery(server->nfs_client);
737 return err;
739 err = nfs4_handle_exception(server, err, &exception);
740 } while (exception.retry);
741 return err;
744 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
746 struct nfs4_opendata *data = calldata;
748 data->rpc_status = task->tk_status;
749 if (RPC_ASSASSINATED(task))
750 return;
751 if (data->rpc_status == 0) {
752 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
753 sizeof(data->o_res.stateid.data));
754 nfs_confirm_seqid(&data->owner->so_seqid, 0);
755 renew_lease(data->o_res.server, data->timestamp);
756 data->rpc_done = 1;
760 static void nfs4_open_confirm_release(void *calldata)
762 struct nfs4_opendata *data = calldata;
763 struct nfs4_state *state = NULL;
765 /* If this request hasn't been cancelled, do nothing */
766 if (data->cancelled == 0)
767 goto out_free;
768 /* In case of error, no cleanup! */
769 if (!data->rpc_done)
770 goto out_free;
771 state = nfs4_opendata_to_nfs4_state(data);
772 if (!IS_ERR(state))
773 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
774 out_free:
775 nfs4_opendata_put(data);
778 static const struct rpc_call_ops nfs4_open_confirm_ops = {
779 .rpc_call_done = nfs4_open_confirm_done,
780 .rpc_release = nfs4_open_confirm_release,
784 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
786 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
788 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
789 struct rpc_task *task;
790 struct rpc_message msg = {
791 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
792 .rpc_argp = &data->c_arg,
793 .rpc_resp = &data->c_res,
794 .rpc_cred = data->owner->so_cred,
796 struct rpc_task_setup task_setup_data = {
797 .rpc_client = server->client,
798 .rpc_message = &msg,
799 .callback_ops = &nfs4_open_confirm_ops,
800 .callback_data = data,
801 .workqueue = nfsiod_workqueue,
802 .flags = RPC_TASK_ASYNC,
804 int status;
806 kref_get(&data->kref);
807 data->rpc_done = 0;
808 data->rpc_status = 0;
809 data->timestamp = jiffies;
810 task = rpc_run_task(&task_setup_data);
811 if (IS_ERR(task))
812 return PTR_ERR(task);
813 status = nfs4_wait_for_completion_rpc_task(task);
814 if (status != 0) {
815 data->cancelled = 1;
816 smp_wmb();
817 } else
818 status = data->rpc_status;
819 rpc_put_task(task);
820 return status;
823 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
825 struct nfs4_opendata *data = calldata;
826 struct nfs4_state_owner *sp = data->owner;
828 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
829 return;
831 * Check if we still need to send an OPEN call, or if we can use
832 * a delegation instead.
834 if (data->state != NULL) {
835 struct nfs_delegation *delegation;
837 if (can_open_cached(data->state, data->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL)))
838 goto out_no_action;
839 rcu_read_lock();
840 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
841 if (delegation != NULL &&
842 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
843 rcu_read_unlock();
844 goto out_no_action;
846 rcu_read_unlock();
848 /* Update sequence id. */
849 data->o_arg.id = sp->so_owner_id.id;
850 data->o_arg.clientid = sp->so_client->cl_clientid;
851 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
852 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
853 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
855 data->timestamp = jiffies;
856 rpc_call_start(task);
857 return;
858 out_no_action:
859 task->tk_action = NULL;
863 static void nfs4_open_done(struct rpc_task *task, void *calldata)
865 struct nfs4_opendata *data = calldata;
867 data->rpc_status = task->tk_status;
868 if (RPC_ASSASSINATED(task))
869 return;
870 if (task->tk_status == 0) {
871 switch (data->o_res.f_attr->mode & S_IFMT) {
872 case S_IFREG:
873 break;
874 case S_IFLNK:
875 data->rpc_status = -ELOOP;
876 break;
877 case S_IFDIR:
878 data->rpc_status = -EISDIR;
879 break;
880 default:
881 data->rpc_status = -ENOTDIR;
883 renew_lease(data->o_res.server, data->timestamp);
884 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
885 nfs_confirm_seqid(&data->owner->so_seqid, 0);
887 data->rpc_done = 1;
890 static void nfs4_open_release(void *calldata)
892 struct nfs4_opendata *data = calldata;
893 struct nfs4_state *state = NULL;
895 /* If this request hasn't been cancelled, do nothing */
896 if (data->cancelled == 0)
897 goto out_free;
898 /* In case of error, no cleanup! */
899 if (data->rpc_status != 0 || !data->rpc_done)
900 goto out_free;
901 /* In case we need an open_confirm, no cleanup! */
902 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
903 goto out_free;
904 state = nfs4_opendata_to_nfs4_state(data);
905 if (!IS_ERR(state))
906 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
907 out_free:
908 nfs4_opendata_put(data);
911 static const struct rpc_call_ops nfs4_open_ops = {
912 .rpc_call_prepare = nfs4_open_prepare,
913 .rpc_call_done = nfs4_open_done,
914 .rpc_release = nfs4_open_release,
918 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
920 static int _nfs4_proc_open(struct nfs4_opendata *data)
922 struct inode *dir = data->dir->d_inode;
923 struct nfs_server *server = NFS_SERVER(dir);
924 struct nfs_openargs *o_arg = &data->o_arg;
925 struct nfs_openres *o_res = &data->o_res;
926 struct rpc_task *task;
927 struct rpc_message msg = {
928 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
929 .rpc_argp = o_arg,
930 .rpc_resp = o_res,
931 .rpc_cred = data->owner->so_cred,
933 struct rpc_task_setup task_setup_data = {
934 .rpc_client = server->client,
935 .rpc_message = &msg,
936 .callback_ops = &nfs4_open_ops,
937 .callback_data = data,
938 .workqueue = nfsiod_workqueue,
939 .flags = RPC_TASK_ASYNC,
941 int status;
943 kref_get(&data->kref);
944 data->rpc_done = 0;
945 data->rpc_status = 0;
946 data->cancelled = 0;
947 task = rpc_run_task(&task_setup_data);
948 if (IS_ERR(task))
949 return PTR_ERR(task);
950 status = nfs4_wait_for_completion_rpc_task(task);
951 if (status != 0) {
952 data->cancelled = 1;
953 smp_wmb();
954 } else
955 status = data->rpc_status;
956 rpc_put_task(task);
957 if (status != 0 || !data->rpc_done)
958 return status;
960 if (o_res->fh.size == 0)
961 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
963 if (o_arg->open_flags & O_CREAT) {
964 update_changeattr(dir, &o_res->cinfo);
965 nfs_post_op_update_inode(dir, o_res->dir_attr);
966 } else
967 nfs_refresh_inode(dir, o_res->dir_attr);
968 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
969 status = _nfs4_proc_open_confirm(data);
970 if (status != 0)
971 return status;
973 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
974 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
975 return 0;
978 static int nfs4_recover_expired_lease(struct nfs_server *server)
980 struct nfs_client *clp = server->nfs_client;
981 int ret;
983 for (;;) {
984 ret = nfs4_wait_clnt_recover(server->client, clp);
985 if (ret != 0)
986 return ret;
987 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
988 break;
989 nfs4_schedule_state_recovery(clp);
991 return 0;
995 * OPEN_EXPIRED:
996 * reclaim state on the server after a network partition.
997 * Assumes caller holds the appropriate lock
999 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
1001 struct nfs4_opendata *opendata;
1002 int ret;
1004 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1005 if (IS_ERR(opendata))
1006 return PTR_ERR(opendata);
1007 ret = nfs4_open_recover(opendata, state);
1008 if (ret == -ESTALE)
1009 d_drop(ctx->path.dentry);
1010 nfs4_opendata_put(opendata);
1011 return ret;
1014 static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
1016 struct nfs_server *server = NFS_SERVER(state->inode);
1017 struct nfs4_exception exception = { };
1018 int err;
1020 do {
1021 err = _nfs4_open_expired(ctx, state);
1022 if (err == -NFS4ERR_DELAY)
1023 nfs4_handle_exception(server, err, &exception);
1024 } while (exception.retry);
1025 return err;
1028 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1030 struct nfs_open_context *ctx;
1031 int ret;
1033 ctx = nfs4_state_find_open_context(state);
1034 if (IS_ERR(ctx))
1035 return PTR_ERR(ctx);
1036 ret = nfs4_do_open_expired(ctx, state);
1037 put_nfs_open_context(ctx);
1038 return ret;
1042 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1043 * fields corresponding to attributes that were used to store the verifier.
1044 * Make sure we clobber those fields in the later setattr call
1046 static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1048 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1049 !(sattr->ia_valid & ATTR_ATIME_SET))
1050 sattr->ia_valid |= ATTR_ATIME;
1052 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1053 !(sattr->ia_valid & ATTR_MTIME_SET))
1054 sattr->ia_valid |= ATTR_MTIME;
1058 * Returns a referenced nfs4_state
1060 static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
1062 struct nfs4_state_owner *sp;
1063 struct nfs4_state *state = NULL;
1064 struct nfs_server *server = NFS_SERVER(dir);
1065 struct nfs_client *clp = server->nfs_client;
1066 struct nfs4_opendata *opendata;
1067 int status;
1069 /* Protect against reboot recovery conflicts */
1070 status = -ENOMEM;
1071 if (!(sp = nfs4_get_state_owner(server, cred))) {
1072 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1073 goto out_err;
1075 status = nfs4_recover_expired_lease(server);
1076 if (status != 0)
1077 goto err_put_state_owner;
1078 if (path->dentry->d_inode != NULL)
1079 nfs4_return_incompatible_delegation(path->dentry->d_inode, flags & (FMODE_READ|FMODE_WRITE));
1080 down_read(&clp->cl_sem);
1081 status = -ENOMEM;
1082 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
1083 if (opendata == NULL)
1084 goto err_release_rwsem;
1086 if (path->dentry->d_inode != NULL)
1087 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1089 status = _nfs4_proc_open(opendata);
1090 if (status != 0)
1091 goto err_opendata_put;
1093 if (opendata->o_arg.open_flags & O_EXCL)
1094 nfs4_exclusive_attrset(opendata, sattr);
1096 state = nfs4_opendata_to_nfs4_state(opendata);
1097 status = PTR_ERR(state);
1098 if (IS_ERR(state))
1099 goto err_opendata_put;
1100 nfs4_opendata_put(opendata);
1101 nfs4_put_state_owner(sp);
1102 up_read(&clp->cl_sem);
1103 *res = state;
1104 return 0;
1105 err_opendata_put:
1106 nfs4_opendata_put(opendata);
1107 err_release_rwsem:
1108 up_read(&clp->cl_sem);
1109 err_put_state_owner:
1110 nfs4_put_state_owner(sp);
1111 out_err:
1112 *res = NULL;
1113 return status;
1117 static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred)
1119 struct nfs4_exception exception = { };
1120 struct nfs4_state *res;
1121 int status;
1123 do {
1124 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
1125 if (status == 0)
1126 break;
1127 /* NOTE: BAD_SEQID means the server and client disagree about the
1128 * book-keeping w.r.t. state-changing operations
1129 * (OPEN/CLOSE/LOCK/LOCKU...)
1130 * It is actually a sign of a bug on the client or on the server.
1132 * If we receive a BAD_SEQID error in the particular case of
1133 * doing an OPEN, we assume that nfs_increment_open_seqid() will
1134 * have unhashed the old state_owner for us, and that we can
1135 * therefore safely retry using a new one. We should still warn
1136 * the user though...
1138 if (status == -NFS4ERR_BAD_SEQID) {
1139 printk(KERN_WARNING "NFS: v4 server %s "
1140 " returned a bad sequence-id error!\n",
1141 NFS_SERVER(dir)->nfs_client->cl_hostname);
1142 exception.retry = 1;
1143 continue;
1146 * BAD_STATEID on OPEN means that the server cancelled our
1147 * state before it received the OPEN_CONFIRM.
1148 * Recover by retrying the request as per the discussion
1149 * on Page 181 of RFC3530.
1151 if (status == -NFS4ERR_BAD_STATEID) {
1152 exception.retry = 1;
1153 continue;
1155 if (status == -EAGAIN) {
1156 /* We must have found a delegation */
1157 exception.retry = 1;
1158 continue;
1160 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1161 status, &exception));
1162 } while (exception.retry);
1163 return res;
1166 static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1167 struct nfs_fattr *fattr, struct iattr *sattr,
1168 struct nfs4_state *state)
1170 struct nfs_server *server = NFS_SERVER(inode);
1171 struct nfs_setattrargs arg = {
1172 .fh = NFS_FH(inode),
1173 .iap = sattr,
1174 .server = server,
1175 .bitmask = server->attr_bitmask,
1177 struct nfs_setattrres res = {
1178 .fattr = fattr,
1179 .server = server,
1181 struct rpc_message msg = {
1182 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1183 .rpc_argp = &arg,
1184 .rpc_resp = &res,
1185 .rpc_cred = cred,
1187 unsigned long timestamp = jiffies;
1188 int status;
1190 nfs_fattr_init(fattr);
1192 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1193 /* Use that stateid */
1194 } else if (state != NULL) {
1195 nfs4_copy_stateid(&arg.stateid, state, current->files);
1196 } else
1197 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1199 status = rpc_call_sync(server->client, &msg, 0);
1200 if (status == 0 && state != NULL)
1201 renew_lease(server, timestamp);
1202 return status;
1205 static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1206 struct nfs_fattr *fattr, struct iattr *sattr,
1207 struct nfs4_state *state)
1209 struct nfs_server *server = NFS_SERVER(inode);
1210 struct nfs4_exception exception = { };
1211 int err;
1212 do {
1213 err = nfs4_handle_exception(server,
1214 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
1215 &exception);
1216 } while (exception.retry);
1217 return err;
1220 struct nfs4_closedata {
1221 struct path path;
1222 struct inode *inode;
1223 struct nfs4_state *state;
1224 struct nfs_closeargs arg;
1225 struct nfs_closeres res;
1226 struct nfs_fattr fattr;
1227 unsigned long timestamp;
1230 static void nfs4_free_closedata(void *data)
1232 struct nfs4_closedata *calldata = data;
1233 struct nfs4_state_owner *sp = calldata->state->owner;
1235 nfs4_put_open_state(calldata->state);
1236 nfs_free_seqid(calldata->arg.seqid);
1237 nfs4_put_state_owner(sp);
1238 path_put(&calldata->path);
1239 kfree(calldata);
1242 static void nfs4_close_done(struct rpc_task *task, void *data)
1244 struct nfs4_closedata *calldata = data;
1245 struct nfs4_state *state = calldata->state;
1246 struct nfs_server *server = NFS_SERVER(calldata->inode);
1248 if (RPC_ASSASSINATED(task))
1249 return;
1250 /* hmm. we are done with the inode, and in the process of freeing
1251 * the state_owner. we keep this around to process errors
1253 switch (task->tk_status) {
1254 case 0:
1255 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
1256 renew_lease(server, calldata->timestamp);
1257 break;
1258 case -NFS4ERR_STALE_STATEID:
1259 case -NFS4ERR_EXPIRED:
1260 break;
1261 default:
1262 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1263 rpc_restart_call(task);
1264 return;
1267 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
1270 static void nfs4_close_prepare(struct rpc_task *task, void *data)
1272 struct nfs4_closedata *calldata = data;
1273 struct nfs4_state *state = calldata->state;
1274 int clear_rd, clear_wr, clear_rdwr;
1276 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
1277 return;
1279 clear_rd = clear_wr = clear_rdwr = 0;
1280 spin_lock(&state->owner->so_lock);
1281 /* Calculate the change in open mode */
1282 if (state->n_rdwr == 0) {
1283 if (state->n_rdonly == 0) {
1284 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1285 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1287 if (state->n_wronly == 0) {
1288 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1289 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1292 spin_unlock(&state->owner->so_lock);
1293 if (!clear_rd && !clear_wr && !clear_rdwr) {
1294 /* Note: exit _without_ calling nfs4_close_done */
1295 task->tk_action = NULL;
1296 return;
1298 nfs_fattr_init(calldata->res.fattr);
1299 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
1300 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1301 calldata->arg.open_flags = FMODE_READ;
1302 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
1303 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1304 calldata->arg.open_flags = FMODE_WRITE;
1306 calldata->timestamp = jiffies;
1307 rpc_call_start(task);
1310 static const struct rpc_call_ops nfs4_close_ops = {
1311 .rpc_call_prepare = nfs4_close_prepare,
1312 .rpc_call_done = nfs4_close_done,
1313 .rpc_release = nfs4_free_closedata,
1317 * It is possible for data to be read/written from a mem-mapped file
1318 * after the sys_close call (which hits the vfs layer as a flush).
1319 * This means that we can't safely call nfsv4 close on a file until
1320 * the inode is cleared. This in turn means that we are not good
1321 * NFSv4 citizens - we do not indicate to the server to update the file's
1322 * share state even when we are done with one of the three share
1323 * stateid's in the inode.
1325 * NOTE: Caller must be holding the sp->so_owner semaphore!
1327 int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
1329 struct nfs_server *server = NFS_SERVER(state->inode);
1330 struct nfs4_closedata *calldata;
1331 struct nfs4_state_owner *sp = state->owner;
1332 struct rpc_task *task;
1333 struct rpc_message msg = {
1334 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1335 .rpc_cred = state->owner->so_cred,
1337 struct rpc_task_setup task_setup_data = {
1338 .rpc_client = server->client,
1339 .rpc_message = &msg,
1340 .callback_ops = &nfs4_close_ops,
1341 .workqueue = nfsiod_workqueue,
1342 .flags = RPC_TASK_ASYNC,
1344 int status = -ENOMEM;
1346 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
1347 if (calldata == NULL)
1348 goto out;
1349 calldata->inode = state->inode;
1350 calldata->state = state;
1351 calldata->arg.fh = NFS_FH(state->inode);
1352 calldata->arg.stateid = &state->open_stateid;
1353 /* Serialization for the sequence id */
1354 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
1355 if (calldata->arg.seqid == NULL)
1356 goto out_free_calldata;
1357 calldata->arg.bitmask = server->attr_bitmask;
1358 calldata->res.fattr = &calldata->fattr;
1359 calldata->res.seqid = calldata->arg.seqid;
1360 calldata->res.server = server;
1361 calldata->path.mnt = mntget(path->mnt);
1362 calldata->path.dentry = dget(path->dentry);
1364 msg.rpc_argp = &calldata->arg,
1365 msg.rpc_resp = &calldata->res,
1366 task_setup_data.callback_data = calldata;
1367 task = rpc_run_task(&task_setup_data);
1368 if (IS_ERR(task))
1369 return PTR_ERR(task);
1370 status = 0;
1371 if (wait)
1372 status = rpc_wait_for_completion_task(task);
1373 rpc_put_task(task);
1374 return status;
1375 out_free_calldata:
1376 kfree(calldata);
1377 out:
1378 nfs4_put_open_state(state);
1379 nfs4_put_state_owner(sp);
1380 return status;
1383 static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
1385 struct file *filp;
1386 int ret;
1388 /* If the open_intent is for execute, we have an extra check to make */
1389 if (nd->intent.open.flags & FMODE_EXEC) {
1390 ret = nfs_may_open(state->inode,
1391 state->owner->so_cred,
1392 nd->intent.open.flags);
1393 if (ret < 0)
1394 goto out_close;
1396 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
1397 if (!IS_ERR(filp)) {
1398 struct nfs_open_context *ctx;
1399 ctx = nfs_file_open_context(filp);
1400 ctx->state = state;
1401 return 0;
1403 ret = PTR_ERR(filp);
1404 out_close:
1405 nfs4_close_sync(path, state, nd->intent.open.flags);
1406 return ret;
1409 struct dentry *
1410 nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1412 struct path path = {
1413 .mnt = nd->path.mnt,
1414 .dentry = dentry,
1416 struct dentry *parent;
1417 struct iattr attr;
1418 struct rpc_cred *cred;
1419 struct nfs4_state *state;
1420 struct dentry *res;
1422 if (nd->flags & LOOKUP_CREATE) {
1423 attr.ia_mode = nd->intent.open.create_mode;
1424 attr.ia_valid = ATTR_MODE;
1425 if (!IS_POSIXACL(dir))
1426 attr.ia_mode &= ~current->fs->umask;
1427 } else {
1428 attr.ia_valid = 0;
1429 BUG_ON(nd->intent.open.flags & O_CREAT);
1432 cred = rpc_lookup_cred();
1433 if (IS_ERR(cred))
1434 return (struct dentry *)cred;
1435 parent = dentry->d_parent;
1436 /* Protect against concurrent sillydeletes */
1437 nfs_block_sillyrename(parent);
1438 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
1439 put_rpccred(cred);
1440 if (IS_ERR(state)) {
1441 if (PTR_ERR(state) == -ENOENT) {
1442 d_add(dentry, NULL);
1443 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1445 nfs_unblock_sillyrename(parent);
1446 return (struct dentry *)state;
1448 res = d_add_unique(dentry, igrab(state->inode));
1449 if (res != NULL)
1450 path.dentry = res;
1451 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
1452 nfs_unblock_sillyrename(parent);
1453 nfs4_intent_set_file(nd, &path, state);
1454 return res;
1458 nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
1460 struct path path = {
1461 .mnt = nd->path.mnt,
1462 .dentry = dentry,
1464 struct rpc_cred *cred;
1465 struct nfs4_state *state;
1467 cred = rpc_lookup_cred();
1468 if (IS_ERR(cred))
1469 return PTR_ERR(cred);
1470 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
1471 put_rpccred(cred);
1472 if (IS_ERR(state)) {
1473 switch (PTR_ERR(state)) {
1474 case -EPERM:
1475 case -EACCES:
1476 case -EDQUOT:
1477 case -ENOSPC:
1478 case -EROFS:
1479 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1480 return 1;
1481 default:
1482 goto out_drop;
1485 if (state->inode == dentry->d_inode) {
1486 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1487 nfs4_intent_set_file(nd, &path, state);
1488 return 1;
1490 nfs4_close_sync(&path, state, openflags);
1491 out_drop:
1492 d_drop(dentry);
1493 return 0;
1497 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1499 struct nfs4_server_caps_res res = {};
1500 struct rpc_message msg = {
1501 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1502 .rpc_argp = fhandle,
1503 .rpc_resp = &res,
1505 int status;
1507 status = rpc_call_sync(server->client, &msg, 0);
1508 if (status == 0) {
1509 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1510 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1511 server->caps |= NFS_CAP_ACLS;
1512 if (res.has_links != 0)
1513 server->caps |= NFS_CAP_HARDLINKS;
1514 if (res.has_symlinks != 0)
1515 server->caps |= NFS_CAP_SYMLINKS;
1516 server->acl_bitmask = res.acl_bitmask;
1518 return status;
1521 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1523 struct nfs4_exception exception = { };
1524 int err;
1525 do {
1526 err = nfs4_handle_exception(server,
1527 _nfs4_server_capabilities(server, fhandle),
1528 &exception);
1529 } while (exception.retry);
1530 return err;
1533 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1534 struct nfs_fsinfo *info)
1536 struct nfs4_lookup_root_arg args = {
1537 .bitmask = nfs4_fattr_bitmap,
1539 struct nfs4_lookup_res res = {
1540 .server = server,
1541 .fattr = info->fattr,
1542 .fh = fhandle,
1544 struct rpc_message msg = {
1545 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1546 .rpc_argp = &args,
1547 .rpc_resp = &res,
1549 nfs_fattr_init(info->fattr);
1550 return rpc_call_sync(server->client, &msg, 0);
1553 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1554 struct nfs_fsinfo *info)
1556 struct nfs4_exception exception = { };
1557 int err;
1558 do {
1559 err = nfs4_handle_exception(server,
1560 _nfs4_lookup_root(server, fhandle, info),
1561 &exception);
1562 } while (exception.retry);
1563 return err;
1567 * get the file handle for the "/" directory on the server
1569 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
1570 struct nfs_fsinfo *info)
1572 int status;
1574 status = nfs4_lookup_root(server, fhandle, info);
1575 if (status == 0)
1576 status = nfs4_server_capabilities(server, fhandle);
1577 if (status == 0)
1578 status = nfs4_do_fsinfo(server, fhandle, info);
1579 return nfs4_map_errors(status);
1583 * Get locations and (maybe) other attributes of a referral.
1584 * Note that we'll actually follow the referral later when
1585 * we detect fsid mismatch in inode revalidation
1587 static int nfs4_get_referral(struct inode *dir, const struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
1589 int status = -ENOMEM;
1590 struct page *page = NULL;
1591 struct nfs4_fs_locations *locations = NULL;
1593 page = alloc_page(GFP_KERNEL);
1594 if (page == NULL)
1595 goto out;
1596 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1597 if (locations == NULL)
1598 goto out;
1600 status = nfs4_proc_fs_locations(dir, name, locations, page);
1601 if (status != 0)
1602 goto out;
1603 /* Make sure server returned a different fsid for the referral */
1604 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
1605 dprintk("%s: server did not return a different fsid for a referral at %s\n", __func__, name->name);
1606 status = -EIO;
1607 goto out;
1610 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1611 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1612 if (!fattr->mode)
1613 fattr->mode = S_IFDIR;
1614 memset(fhandle, 0, sizeof(struct nfs_fh));
1615 out:
1616 if (page)
1617 __free_page(page);
1618 if (locations)
1619 kfree(locations);
1620 return status;
1623 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1625 struct nfs4_getattr_arg args = {
1626 .fh = fhandle,
1627 .bitmask = server->attr_bitmask,
1629 struct nfs4_getattr_res res = {
1630 .fattr = fattr,
1631 .server = server,
1633 struct rpc_message msg = {
1634 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1635 .rpc_argp = &args,
1636 .rpc_resp = &res,
1639 nfs_fattr_init(fattr);
1640 return rpc_call_sync(server->client, &msg, 0);
1643 static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1645 struct nfs4_exception exception = { };
1646 int err;
1647 do {
1648 err = nfs4_handle_exception(server,
1649 _nfs4_proc_getattr(server, fhandle, fattr),
1650 &exception);
1651 } while (exception.retry);
1652 return err;
1656 * The file is not closed if it is opened due to the a request to change
1657 * the size of the file. The open call will not be needed once the
1658 * VFS layer lookup-intents are implemented.
1660 * Close is called when the inode is destroyed.
1661 * If we haven't opened the file for O_WRONLY, we
1662 * need to in the size_change case to obtain a stateid.
1664 * Got race?
1665 * Because OPEN is always done by name in nfsv4, it is
1666 * possible that we opened a different file by the same
1667 * name. We can recognize this race condition, but we
1668 * can't do anything about it besides returning an error.
1670 * This will be fixed with VFS changes (lookup-intent).
1672 static int
1673 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1674 struct iattr *sattr)
1676 struct inode *inode = dentry->d_inode;
1677 struct rpc_cred *cred = NULL;
1678 struct nfs4_state *state = NULL;
1679 int status;
1681 nfs_fattr_init(fattr);
1683 /* Search for an existing open(O_WRITE) file */
1684 if (sattr->ia_valid & ATTR_FILE) {
1685 struct nfs_open_context *ctx;
1687 ctx = nfs_file_open_context(sattr->ia_file);
1688 if (ctx) {
1689 cred = ctx->cred;
1690 state = ctx->state;
1694 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
1695 if (status == 0)
1696 nfs_setattr_update_inode(inode, sattr);
1697 return status;
1700 static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
1701 const struct qstr *name, struct nfs_fh *fhandle,
1702 struct nfs_fattr *fattr)
1704 int status;
1705 struct nfs4_lookup_arg args = {
1706 .bitmask = server->attr_bitmask,
1707 .dir_fh = dirfh,
1708 .name = name,
1710 struct nfs4_lookup_res res = {
1711 .server = server,
1712 .fattr = fattr,
1713 .fh = fhandle,
1715 struct rpc_message msg = {
1716 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1717 .rpc_argp = &args,
1718 .rpc_resp = &res,
1721 nfs_fattr_init(fattr);
1723 dprintk("NFS call lookupfh %s\n", name->name);
1724 status = rpc_call_sync(server->client, &msg, 0);
1725 dprintk("NFS reply lookupfh: %d\n", status);
1726 return status;
1729 static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1730 struct qstr *name, struct nfs_fh *fhandle,
1731 struct nfs_fattr *fattr)
1733 struct nfs4_exception exception = { };
1734 int err;
1735 do {
1736 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1737 /* FIXME: !!!! */
1738 if (err == -NFS4ERR_MOVED) {
1739 err = -EREMOTE;
1740 break;
1742 err = nfs4_handle_exception(server, err, &exception);
1743 } while (exception.retry);
1744 return err;
1747 static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
1748 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1750 int status;
1752 dprintk("NFS call lookup %s\n", name->name);
1753 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
1754 if (status == -NFS4ERR_MOVED)
1755 status = nfs4_get_referral(dir, name, fattr, fhandle);
1756 dprintk("NFS reply lookup: %d\n", status);
1757 return status;
1760 static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1762 struct nfs4_exception exception = { };
1763 int err;
1764 do {
1765 err = nfs4_handle_exception(NFS_SERVER(dir),
1766 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1767 &exception);
1768 } while (exception.retry);
1769 return err;
1772 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1774 struct nfs_server *server = NFS_SERVER(inode);
1775 struct nfs_fattr fattr;
1776 struct nfs4_accessargs args = {
1777 .fh = NFS_FH(inode),
1778 .bitmask = server->attr_bitmask,
1780 struct nfs4_accessres res = {
1781 .server = server,
1782 .fattr = &fattr,
1784 struct rpc_message msg = {
1785 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1786 .rpc_argp = &args,
1787 .rpc_resp = &res,
1788 .rpc_cred = entry->cred,
1790 int mode = entry->mask;
1791 int status;
1794 * Determine which access bits we want to ask for...
1796 if (mode & MAY_READ)
1797 args.access |= NFS4_ACCESS_READ;
1798 if (S_ISDIR(inode->i_mode)) {
1799 if (mode & MAY_WRITE)
1800 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1801 if (mode & MAY_EXEC)
1802 args.access |= NFS4_ACCESS_LOOKUP;
1803 } else {
1804 if (mode & MAY_WRITE)
1805 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1806 if (mode & MAY_EXEC)
1807 args.access |= NFS4_ACCESS_EXECUTE;
1809 nfs_fattr_init(&fattr);
1810 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1811 if (!status) {
1812 entry->mask = 0;
1813 if (res.access & NFS4_ACCESS_READ)
1814 entry->mask |= MAY_READ;
1815 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1816 entry->mask |= MAY_WRITE;
1817 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1818 entry->mask |= MAY_EXEC;
1819 nfs_refresh_inode(inode, &fattr);
1821 return status;
1824 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1826 struct nfs4_exception exception = { };
1827 int err;
1828 do {
1829 err = nfs4_handle_exception(NFS_SERVER(inode),
1830 _nfs4_proc_access(inode, entry),
1831 &exception);
1832 } while (exception.retry);
1833 return err;
1837 * TODO: For the time being, we don't try to get any attributes
1838 * along with any of the zero-copy operations READ, READDIR,
1839 * READLINK, WRITE.
1841 * In the case of the first three, we want to put the GETATTR
1842 * after the read-type operation -- this is because it is hard
1843 * to predict the length of a GETATTR response in v4, and thus
1844 * align the READ data correctly. This means that the GETATTR
1845 * may end up partially falling into the page cache, and we should
1846 * shift it into the 'tail' of the xdr_buf before processing.
1847 * To do this efficiently, we need to know the total length
1848 * of data received, which doesn't seem to be available outside
1849 * of the RPC layer.
1851 * In the case of WRITE, we also want to put the GETATTR after
1852 * the operation -- in this case because we want to make sure
1853 * we get the post-operation mtime and size. This means that
1854 * we can't use xdr_encode_pages() as written: we need a variant
1855 * of it which would leave room in the 'tail' iovec.
1857 * Both of these changes to the XDR layer would in fact be quite
1858 * minor, but I decided to leave them for a subsequent patch.
1860 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1861 unsigned int pgbase, unsigned int pglen)
1863 struct nfs4_readlink args = {
1864 .fh = NFS_FH(inode),
1865 .pgbase = pgbase,
1866 .pglen = pglen,
1867 .pages = &page,
1869 struct rpc_message msg = {
1870 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1871 .rpc_argp = &args,
1872 .rpc_resp = NULL,
1875 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1878 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1879 unsigned int pgbase, unsigned int pglen)
1881 struct nfs4_exception exception = { };
1882 int err;
1883 do {
1884 err = nfs4_handle_exception(NFS_SERVER(inode),
1885 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1886 &exception);
1887 } while (exception.retry);
1888 return err;
1892 * Got race?
1893 * We will need to arrange for the VFS layer to provide an atomic open.
1894 * Until then, this create/open method is prone to inefficiency and race
1895 * conditions due to the lookup, create, and open VFS calls from sys_open()
1896 * placed on the wire.
1898 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1899 * The file will be opened again in the subsequent VFS open call
1900 * (nfs4_proc_file_open).
1902 * The open for read will just hang around to be used by any process that
1903 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1906 static int
1907 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
1908 int flags, struct nameidata *nd)
1910 struct path path = {
1911 .mnt = nd->path.mnt,
1912 .dentry = dentry,
1914 struct nfs4_state *state;
1915 struct rpc_cred *cred;
1916 int status = 0;
1918 cred = rpc_lookup_cred();
1919 if (IS_ERR(cred)) {
1920 status = PTR_ERR(cred);
1921 goto out;
1923 state = nfs4_do_open(dir, &path, flags, sattr, cred);
1924 d_drop(dentry);
1925 if (IS_ERR(state)) {
1926 status = PTR_ERR(state);
1927 goto out_putcred;
1929 d_add(dentry, igrab(state->inode));
1930 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1931 if (flags & O_EXCL) {
1932 struct nfs_fattr fattr;
1933 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
1934 if (status == 0)
1935 nfs_setattr_update_inode(state->inode, sattr);
1936 nfs_post_op_update_inode(state->inode, &fattr);
1938 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
1939 status = nfs4_intent_set_file(nd, &path, state);
1940 else
1941 nfs4_close_sync(&path, state, flags);
1942 out_putcred:
1943 put_rpccred(cred);
1944 out:
1945 return status;
1948 static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1950 struct nfs_server *server = NFS_SERVER(dir);
1951 struct nfs_removeargs args = {
1952 .fh = NFS_FH(dir),
1953 .name.len = name->len,
1954 .name.name = name->name,
1955 .bitmask = server->attr_bitmask,
1957 struct nfs_removeres res = {
1958 .server = server,
1960 struct rpc_message msg = {
1961 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1962 .rpc_argp = &args,
1963 .rpc_resp = &res,
1965 int status;
1967 nfs_fattr_init(&res.dir_attr);
1968 status = rpc_call_sync(server->client, &msg, 0);
1969 if (status == 0) {
1970 update_changeattr(dir, &res.cinfo);
1971 nfs_post_op_update_inode(dir, &res.dir_attr);
1973 return status;
1976 static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1978 struct nfs4_exception exception = { };
1979 int err;
1980 do {
1981 err = nfs4_handle_exception(NFS_SERVER(dir),
1982 _nfs4_proc_remove(dir, name),
1983 &exception);
1984 } while (exception.retry);
1985 return err;
1988 static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
1990 struct nfs_server *server = NFS_SERVER(dir);
1991 struct nfs_removeargs *args = msg->rpc_argp;
1992 struct nfs_removeres *res = msg->rpc_resp;
1994 args->bitmask = server->attr_bitmask;
1995 res->server = server;
1996 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
1999 static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
2001 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2003 if (nfs4_async_handle_error(task, res->server) == -EAGAIN)
2004 return 0;
2005 update_changeattr(dir, &res->cinfo);
2006 nfs_post_op_update_inode(dir, &res->dir_attr);
2007 return 1;
2010 static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2011 struct inode *new_dir, struct qstr *new_name)
2013 struct nfs_server *server = NFS_SERVER(old_dir);
2014 struct nfs4_rename_arg arg = {
2015 .old_dir = NFS_FH(old_dir),
2016 .new_dir = NFS_FH(new_dir),
2017 .old_name = old_name,
2018 .new_name = new_name,
2019 .bitmask = server->attr_bitmask,
2021 struct nfs_fattr old_fattr, new_fattr;
2022 struct nfs4_rename_res res = {
2023 .server = server,
2024 .old_fattr = &old_fattr,
2025 .new_fattr = &new_fattr,
2027 struct rpc_message msg = {
2028 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2029 .rpc_argp = &arg,
2030 .rpc_resp = &res,
2032 int status;
2034 nfs_fattr_init(res.old_fattr);
2035 nfs_fattr_init(res.new_fattr);
2036 status = rpc_call_sync(server->client, &msg, 0);
2038 if (!status) {
2039 update_changeattr(old_dir, &res.old_cinfo);
2040 nfs_post_op_update_inode(old_dir, res.old_fattr);
2041 update_changeattr(new_dir, &res.new_cinfo);
2042 nfs_post_op_update_inode(new_dir, res.new_fattr);
2044 return status;
2047 static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2048 struct inode *new_dir, struct qstr *new_name)
2050 struct nfs4_exception exception = { };
2051 int err;
2052 do {
2053 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2054 _nfs4_proc_rename(old_dir, old_name,
2055 new_dir, new_name),
2056 &exception);
2057 } while (exception.retry);
2058 return err;
2061 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2063 struct nfs_server *server = NFS_SERVER(inode);
2064 struct nfs4_link_arg arg = {
2065 .fh = NFS_FH(inode),
2066 .dir_fh = NFS_FH(dir),
2067 .name = name,
2068 .bitmask = server->attr_bitmask,
2070 struct nfs_fattr fattr, dir_attr;
2071 struct nfs4_link_res res = {
2072 .server = server,
2073 .fattr = &fattr,
2074 .dir_attr = &dir_attr,
2076 struct rpc_message msg = {
2077 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2078 .rpc_argp = &arg,
2079 .rpc_resp = &res,
2081 int status;
2083 nfs_fattr_init(res.fattr);
2084 nfs_fattr_init(res.dir_attr);
2085 status = rpc_call_sync(server->client, &msg, 0);
2086 if (!status) {
2087 update_changeattr(dir, &res.cinfo);
2088 nfs_post_op_update_inode(dir, res.dir_attr);
2089 nfs_post_op_update_inode(inode, res.fattr);
2092 return status;
2095 static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2097 struct nfs4_exception exception = { };
2098 int err;
2099 do {
2100 err = nfs4_handle_exception(NFS_SERVER(inode),
2101 _nfs4_proc_link(inode, dir, name),
2102 &exception);
2103 } while (exception.retry);
2104 return err;
2107 struct nfs4_createdata {
2108 struct rpc_message msg;
2109 struct nfs4_create_arg arg;
2110 struct nfs4_create_res res;
2111 struct nfs_fh fh;
2112 struct nfs_fattr fattr;
2113 struct nfs_fattr dir_fattr;
2116 static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2117 struct qstr *name, struct iattr *sattr, u32 ftype)
2119 struct nfs4_createdata *data;
2121 data = kzalloc(sizeof(*data), GFP_KERNEL);
2122 if (data != NULL) {
2123 struct nfs_server *server = NFS_SERVER(dir);
2125 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2126 data->msg.rpc_argp = &data->arg;
2127 data->msg.rpc_resp = &data->res;
2128 data->arg.dir_fh = NFS_FH(dir);
2129 data->arg.server = server;
2130 data->arg.name = name;
2131 data->arg.attrs = sattr;
2132 data->arg.ftype = ftype;
2133 data->arg.bitmask = server->attr_bitmask;
2134 data->res.server = server;
2135 data->res.fh = &data->fh;
2136 data->res.fattr = &data->fattr;
2137 data->res.dir_fattr = &data->dir_fattr;
2138 nfs_fattr_init(data->res.fattr);
2139 nfs_fattr_init(data->res.dir_fattr);
2141 return data;
2144 static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2146 int status = rpc_call_sync(NFS_CLIENT(dir), &data->msg, 0);
2147 if (status == 0) {
2148 update_changeattr(dir, &data->res.dir_cinfo);
2149 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2150 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2152 return status;
2155 static void nfs4_free_createdata(struct nfs4_createdata *data)
2157 kfree(data);
2160 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2161 struct page *page, unsigned int len, struct iattr *sattr)
2163 struct nfs4_createdata *data;
2164 int status = -ENAMETOOLONG;
2166 if (len > NFS4_MAXPATHLEN)
2167 goto out;
2169 status = -ENOMEM;
2170 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2171 if (data == NULL)
2172 goto out;
2174 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2175 data->arg.u.symlink.pages = &page;
2176 data->arg.u.symlink.len = len;
2178 status = nfs4_do_create(dir, dentry, data);
2180 nfs4_free_createdata(data);
2181 out:
2182 return status;
2185 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2186 struct page *page, unsigned int len, struct iattr *sattr)
2188 struct nfs4_exception exception = { };
2189 int err;
2190 do {
2191 err = nfs4_handle_exception(NFS_SERVER(dir),
2192 _nfs4_proc_symlink(dir, dentry, page,
2193 len, sattr),
2194 &exception);
2195 } while (exception.retry);
2196 return err;
2199 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2200 struct iattr *sattr)
2202 struct nfs4_createdata *data;
2203 int status = -ENOMEM;
2205 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2206 if (data == NULL)
2207 goto out;
2209 status = nfs4_do_create(dir, dentry, data);
2211 nfs4_free_createdata(data);
2212 out:
2213 return status;
2216 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2217 struct iattr *sattr)
2219 struct nfs4_exception exception = { };
2220 int err;
2221 do {
2222 err = nfs4_handle_exception(NFS_SERVER(dir),
2223 _nfs4_proc_mkdir(dir, dentry, sattr),
2224 &exception);
2225 } while (exception.retry);
2226 return err;
2229 static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2230 u64 cookie, struct page *page, unsigned int count, int plus)
2232 struct inode *dir = dentry->d_inode;
2233 struct nfs4_readdir_arg args = {
2234 .fh = NFS_FH(dir),
2235 .pages = &page,
2236 .pgbase = 0,
2237 .count = count,
2238 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2240 struct nfs4_readdir_res res;
2241 struct rpc_message msg = {
2242 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2243 .rpc_argp = &args,
2244 .rpc_resp = &res,
2245 .rpc_cred = cred,
2247 int status;
2249 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
2250 dentry->d_parent->d_name.name,
2251 dentry->d_name.name,
2252 (unsigned long long)cookie);
2253 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2254 res.pgbase = args.pgbase;
2255 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2256 if (status == 0)
2257 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
2259 nfs_invalidate_atime(dir);
2261 dprintk("%s: returns %d\n", __func__, status);
2262 return status;
2265 static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2266 u64 cookie, struct page *page, unsigned int count, int plus)
2268 struct nfs4_exception exception = { };
2269 int err;
2270 do {
2271 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2272 _nfs4_proc_readdir(dentry, cred, cookie,
2273 page, count, plus),
2274 &exception);
2275 } while (exception.retry);
2276 return err;
2279 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2280 struct iattr *sattr, dev_t rdev)
2282 struct nfs4_createdata *data;
2283 int mode = sattr->ia_mode;
2284 int status = -ENOMEM;
2286 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2287 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2289 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2290 if (data == NULL)
2291 goto out;
2293 if (S_ISFIFO(mode))
2294 data->arg.ftype = NF4FIFO;
2295 else if (S_ISBLK(mode)) {
2296 data->arg.ftype = NF4BLK;
2297 data->arg.u.device.specdata1 = MAJOR(rdev);
2298 data->arg.u.device.specdata2 = MINOR(rdev);
2300 else if (S_ISCHR(mode)) {
2301 data->arg.ftype = NF4CHR;
2302 data->arg.u.device.specdata1 = MAJOR(rdev);
2303 data->arg.u.device.specdata2 = MINOR(rdev);
2306 status = nfs4_do_create(dir, dentry, data);
2308 nfs4_free_createdata(data);
2309 out:
2310 return status;
2313 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2314 struct iattr *sattr, dev_t rdev)
2316 struct nfs4_exception exception = { };
2317 int err;
2318 do {
2319 err = nfs4_handle_exception(NFS_SERVER(dir),
2320 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2321 &exception);
2322 } while (exception.retry);
2323 return err;
2326 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2327 struct nfs_fsstat *fsstat)
2329 struct nfs4_statfs_arg args = {
2330 .fh = fhandle,
2331 .bitmask = server->attr_bitmask,
2333 struct rpc_message msg = {
2334 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2335 .rpc_argp = &args,
2336 .rpc_resp = fsstat,
2339 nfs_fattr_init(fsstat->fattr);
2340 return rpc_call_sync(server->client, &msg, 0);
2343 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2345 struct nfs4_exception exception = { };
2346 int err;
2347 do {
2348 err = nfs4_handle_exception(server,
2349 _nfs4_proc_statfs(server, fhandle, fsstat),
2350 &exception);
2351 } while (exception.retry);
2352 return err;
2355 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2356 struct nfs_fsinfo *fsinfo)
2358 struct nfs4_fsinfo_arg args = {
2359 .fh = fhandle,
2360 .bitmask = server->attr_bitmask,
2362 struct rpc_message msg = {
2363 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2364 .rpc_argp = &args,
2365 .rpc_resp = fsinfo,
2368 return rpc_call_sync(server->client, &msg, 0);
2371 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2373 struct nfs4_exception exception = { };
2374 int err;
2376 do {
2377 err = nfs4_handle_exception(server,
2378 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2379 &exception);
2380 } while (exception.retry);
2381 return err;
2384 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2386 nfs_fattr_init(fsinfo->fattr);
2387 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2390 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2391 struct nfs_pathconf *pathconf)
2393 struct nfs4_pathconf_arg args = {
2394 .fh = fhandle,
2395 .bitmask = server->attr_bitmask,
2397 struct rpc_message msg = {
2398 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2399 .rpc_argp = &args,
2400 .rpc_resp = pathconf,
2403 /* None of the pathconf attributes are mandatory to implement */
2404 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2405 memset(pathconf, 0, sizeof(*pathconf));
2406 return 0;
2409 nfs_fattr_init(pathconf->fattr);
2410 return rpc_call_sync(server->client, &msg, 0);
2413 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2414 struct nfs_pathconf *pathconf)
2416 struct nfs4_exception exception = { };
2417 int err;
2419 do {
2420 err = nfs4_handle_exception(server,
2421 _nfs4_proc_pathconf(server, fhandle, pathconf),
2422 &exception);
2423 } while (exception.retry);
2424 return err;
2427 static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
2429 struct nfs_server *server = NFS_SERVER(data->inode);
2431 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
2432 rpc_restart_call(task);
2433 return -EAGAIN;
2436 nfs_invalidate_atime(data->inode);
2437 if (task->tk_status > 0)
2438 renew_lease(server, data->timestamp);
2439 return 0;
2442 static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
2444 data->timestamp = jiffies;
2445 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
2448 static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
2450 struct inode *inode = data->inode;
2452 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2453 rpc_restart_call(task);
2454 return -EAGAIN;
2456 if (task->tk_status >= 0) {
2457 renew_lease(NFS_SERVER(inode), data->timestamp);
2458 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
2460 return 0;
2463 static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
2465 struct nfs_server *server = NFS_SERVER(data->inode);
2467 data->args.bitmask = server->attr_bitmask;
2468 data->res.server = server;
2469 data->timestamp = jiffies;
2471 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
2474 static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
2476 struct inode *inode = data->inode;
2478 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2479 rpc_restart_call(task);
2480 return -EAGAIN;
2482 nfs_refresh_inode(inode, data->res.fattr);
2483 return 0;
2486 static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
2488 struct nfs_server *server = NFS_SERVER(data->inode);
2490 data->args.bitmask = server->attr_bitmask;
2491 data->res.server = server;
2492 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
2496 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2497 * standalone procedure for queueing an asynchronous RENEW.
2499 static void nfs4_renew_done(struct rpc_task *task, void *data)
2501 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
2502 unsigned long timestamp = (unsigned long)data;
2504 if (task->tk_status < 0) {
2505 switch (task->tk_status) {
2506 case -NFS4ERR_STALE_CLIENTID:
2507 case -NFS4ERR_EXPIRED:
2508 case -NFS4ERR_CB_PATH_DOWN:
2509 nfs4_schedule_state_recovery(clp);
2511 return;
2513 spin_lock(&clp->cl_lock);
2514 if (time_before(clp->cl_last_renewal,timestamp))
2515 clp->cl_last_renewal = timestamp;
2516 spin_unlock(&clp->cl_lock);
2519 static const struct rpc_call_ops nfs4_renew_ops = {
2520 .rpc_call_done = nfs4_renew_done,
2523 int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
2525 struct rpc_message msg = {
2526 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2527 .rpc_argp = clp,
2528 .rpc_cred = cred,
2531 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
2532 &nfs4_renew_ops, (void *)jiffies);
2535 int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
2537 struct rpc_message msg = {
2538 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2539 .rpc_argp = clp,
2540 .rpc_cred = cred,
2542 unsigned long now = jiffies;
2543 int status;
2545 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2546 if (status < 0)
2547 return status;
2548 spin_lock(&clp->cl_lock);
2549 if (time_before(clp->cl_last_renewal,now))
2550 clp->cl_last_renewal = now;
2551 spin_unlock(&clp->cl_lock);
2552 return 0;
2555 static inline int nfs4_server_supports_acls(struct nfs_server *server)
2557 return (server->caps & NFS_CAP_ACLS)
2558 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2559 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2562 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2563 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2564 * the stack.
2566 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2568 static void buf_to_pages(const void *buf, size_t buflen,
2569 struct page **pages, unsigned int *pgbase)
2571 const void *p = buf;
2573 *pgbase = offset_in_page(buf);
2574 p -= *pgbase;
2575 while (p < buf + buflen) {
2576 *(pages++) = virt_to_page(p);
2577 p += PAGE_CACHE_SIZE;
2581 struct nfs4_cached_acl {
2582 int cached;
2583 size_t len;
2584 char data[0];
2587 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
2589 struct nfs_inode *nfsi = NFS_I(inode);
2591 spin_lock(&inode->i_lock);
2592 kfree(nfsi->nfs4_acl);
2593 nfsi->nfs4_acl = acl;
2594 spin_unlock(&inode->i_lock);
2597 static void nfs4_zap_acl_attr(struct inode *inode)
2599 nfs4_set_cached_acl(inode, NULL);
2602 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2604 struct nfs_inode *nfsi = NFS_I(inode);
2605 struct nfs4_cached_acl *acl;
2606 int ret = -ENOENT;
2608 spin_lock(&inode->i_lock);
2609 acl = nfsi->nfs4_acl;
2610 if (acl == NULL)
2611 goto out;
2612 if (buf == NULL) /* user is just asking for length */
2613 goto out_len;
2614 if (acl->cached == 0)
2615 goto out;
2616 ret = -ERANGE; /* see getxattr(2) man page */
2617 if (acl->len > buflen)
2618 goto out;
2619 memcpy(buf, acl->data, acl->len);
2620 out_len:
2621 ret = acl->len;
2622 out:
2623 spin_unlock(&inode->i_lock);
2624 return ret;
2627 static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2629 struct nfs4_cached_acl *acl;
2631 if (buf && acl_len <= PAGE_SIZE) {
2632 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2633 if (acl == NULL)
2634 goto out;
2635 acl->cached = 1;
2636 memcpy(acl->data, buf, acl_len);
2637 } else {
2638 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2639 if (acl == NULL)
2640 goto out;
2641 acl->cached = 0;
2643 acl->len = acl_len;
2644 out:
2645 nfs4_set_cached_acl(inode, acl);
2648 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2650 struct page *pages[NFS4ACL_MAXPAGES];
2651 struct nfs_getaclargs args = {
2652 .fh = NFS_FH(inode),
2653 .acl_pages = pages,
2654 .acl_len = buflen,
2656 size_t resp_len = buflen;
2657 void *resp_buf;
2658 struct rpc_message msg = {
2659 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2660 .rpc_argp = &args,
2661 .rpc_resp = &resp_len,
2663 struct page *localpage = NULL;
2664 int ret;
2666 if (buflen < PAGE_SIZE) {
2667 /* As long as we're doing a round trip to the server anyway,
2668 * let's be prepared for a page of acl data. */
2669 localpage = alloc_page(GFP_KERNEL);
2670 resp_buf = page_address(localpage);
2671 if (localpage == NULL)
2672 return -ENOMEM;
2673 args.acl_pages[0] = localpage;
2674 args.acl_pgbase = 0;
2675 resp_len = args.acl_len = PAGE_SIZE;
2676 } else {
2677 resp_buf = buf;
2678 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2680 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2681 if (ret)
2682 goto out_free;
2683 if (resp_len > args.acl_len)
2684 nfs4_write_cached_acl(inode, NULL, resp_len);
2685 else
2686 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2687 if (buf) {
2688 ret = -ERANGE;
2689 if (resp_len > buflen)
2690 goto out_free;
2691 if (localpage)
2692 memcpy(buf, resp_buf, resp_len);
2694 ret = resp_len;
2695 out_free:
2696 if (localpage)
2697 __free_page(localpage);
2698 return ret;
2701 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2703 struct nfs4_exception exception = { };
2704 ssize_t ret;
2705 do {
2706 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2707 if (ret >= 0)
2708 break;
2709 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2710 } while (exception.retry);
2711 return ret;
2714 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2716 struct nfs_server *server = NFS_SERVER(inode);
2717 int ret;
2719 if (!nfs4_server_supports_acls(server))
2720 return -EOPNOTSUPP;
2721 ret = nfs_revalidate_inode(server, inode);
2722 if (ret < 0)
2723 return ret;
2724 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
2725 nfs_zap_acl_cache(inode);
2726 ret = nfs4_read_cached_acl(inode, buf, buflen);
2727 if (ret != -ENOENT)
2728 return ret;
2729 return nfs4_get_acl_uncached(inode, buf, buflen);
2732 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2734 struct nfs_server *server = NFS_SERVER(inode);
2735 struct page *pages[NFS4ACL_MAXPAGES];
2736 struct nfs_setaclargs arg = {
2737 .fh = NFS_FH(inode),
2738 .acl_pages = pages,
2739 .acl_len = buflen,
2741 struct rpc_message msg = {
2742 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2743 .rpc_argp = &arg,
2744 .rpc_resp = NULL,
2746 int ret;
2748 if (!nfs4_server_supports_acls(server))
2749 return -EOPNOTSUPP;
2750 nfs_inode_return_delegation(inode);
2751 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
2752 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2753 nfs_access_zap_cache(inode);
2754 nfs_zap_acl_cache(inode);
2755 return ret;
2758 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2760 struct nfs4_exception exception = { };
2761 int err;
2762 do {
2763 err = nfs4_handle_exception(NFS_SERVER(inode),
2764 __nfs4_proc_set_acl(inode, buf, buflen),
2765 &exception);
2766 } while (exception.retry);
2767 return err;
2770 static int
2771 nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
2773 struct nfs_client *clp = server->nfs_client;
2775 if (!clp || task->tk_status >= 0)
2776 return 0;
2777 switch(task->tk_status) {
2778 case -NFS4ERR_STALE_CLIENTID:
2779 case -NFS4ERR_STALE_STATEID:
2780 case -NFS4ERR_EXPIRED:
2781 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
2782 nfs4_schedule_state_recovery(clp);
2783 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
2784 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
2785 task->tk_status = 0;
2786 return -EAGAIN;
2787 case -NFS4ERR_DELAY:
2788 nfs_inc_server_stats(server, NFSIOS_DELAY);
2789 case -NFS4ERR_GRACE:
2790 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2791 task->tk_status = 0;
2792 return -EAGAIN;
2793 case -NFS4ERR_OLD_STATEID:
2794 task->tk_status = 0;
2795 return -EAGAIN;
2797 task->tk_status = nfs4_map_errors(task->tk_status);
2798 return 0;
2801 static int nfs4_wait_bit_killable(void *word)
2803 if (fatal_signal_pending(current))
2804 return -ERESTARTSYS;
2805 schedule();
2806 return 0;
2809 static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
2811 int res;
2813 might_sleep();
2815 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2817 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
2818 nfs4_wait_bit_killable, TASK_KILLABLE);
2820 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
2821 return res;
2824 static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2826 int res = 0;
2828 might_sleep();
2830 if (*timeout <= 0)
2831 *timeout = NFS4_POLL_RETRY_MIN;
2832 if (*timeout > NFS4_POLL_RETRY_MAX)
2833 *timeout = NFS4_POLL_RETRY_MAX;
2834 schedule_timeout_killable(*timeout);
2835 if (fatal_signal_pending(current))
2836 res = -ERESTARTSYS;
2837 *timeout <<= 1;
2838 return res;
2841 /* This is the error handling routine for processes that are allowed
2842 * to sleep.
2844 static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
2846 struct nfs_client *clp = server->nfs_client;
2847 int ret = errorcode;
2849 exception->retry = 0;
2850 switch(errorcode) {
2851 case 0:
2852 return 0;
2853 case -NFS4ERR_STALE_CLIENTID:
2854 case -NFS4ERR_STALE_STATEID:
2855 case -NFS4ERR_EXPIRED:
2856 nfs4_schedule_state_recovery(clp);
2857 ret = nfs4_wait_clnt_recover(server->client, clp);
2858 if (ret == 0)
2859 exception->retry = 1;
2860 break;
2861 case -NFS4ERR_FILE_OPEN:
2862 case -NFS4ERR_GRACE:
2863 case -NFS4ERR_DELAY:
2864 ret = nfs4_delay(server->client, &exception->timeout);
2865 if (ret != 0)
2866 break;
2867 case -NFS4ERR_OLD_STATEID:
2868 exception->retry = 1;
2870 /* We failed to handle the error */
2871 return nfs4_map_errors(ret);
2874 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
2876 nfs4_verifier sc_verifier;
2877 struct nfs4_setclientid setclientid = {
2878 .sc_verifier = &sc_verifier,
2879 .sc_prog = program,
2881 struct rpc_message msg = {
2882 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2883 .rpc_argp = &setclientid,
2884 .rpc_resp = clp,
2885 .rpc_cred = cred,
2887 __be32 *p;
2888 int loop = 0;
2889 int status;
2891 p = (__be32*)sc_verifier.data;
2892 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2893 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2895 for(;;) {
2896 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
2897 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
2898 clp->cl_ipaddr,
2899 rpc_peeraddr2str(clp->cl_rpcclient,
2900 RPC_DISPLAY_ADDR),
2901 rpc_peeraddr2str(clp->cl_rpcclient,
2902 RPC_DISPLAY_PROTO),
2903 clp->cl_rpcclient->cl_auth->au_ops->au_name,
2904 clp->cl_id_uniquifier);
2905 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
2906 sizeof(setclientid.sc_netid),
2907 rpc_peeraddr2str(clp->cl_rpcclient,
2908 RPC_DISPLAY_NETID));
2909 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
2910 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
2911 clp->cl_ipaddr, port >> 8, port & 255);
2913 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2914 if (status != -NFS4ERR_CLID_INUSE)
2915 break;
2916 if (signalled())
2917 break;
2918 if (loop++ & 1)
2919 ssleep(clp->cl_lease_time + 1);
2920 else
2921 if (++clp->cl_id_uniquifier == 0)
2922 break;
2924 return status;
2927 static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
2929 struct nfs_fsinfo fsinfo;
2930 struct rpc_message msg = {
2931 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2932 .rpc_argp = clp,
2933 .rpc_resp = &fsinfo,
2934 .rpc_cred = cred,
2936 unsigned long now;
2937 int status;
2939 now = jiffies;
2940 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2941 if (status == 0) {
2942 spin_lock(&clp->cl_lock);
2943 clp->cl_lease_time = fsinfo.lease_time * HZ;
2944 clp->cl_last_renewal = now;
2945 spin_unlock(&clp->cl_lock);
2947 return status;
2950 int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
2952 long timeout = 0;
2953 int err;
2954 do {
2955 err = _nfs4_proc_setclientid_confirm(clp, cred);
2956 switch (err) {
2957 case 0:
2958 return err;
2959 case -NFS4ERR_RESOURCE:
2960 /* The IBM lawyers misread another document! */
2961 case -NFS4ERR_DELAY:
2962 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2964 } while (err == 0);
2965 return err;
2968 struct nfs4_delegreturndata {
2969 struct nfs4_delegreturnargs args;
2970 struct nfs4_delegreturnres res;
2971 struct nfs_fh fh;
2972 nfs4_stateid stateid;
2973 unsigned long timestamp;
2974 struct nfs_fattr fattr;
2975 int rpc_status;
2978 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2980 struct nfs4_delegreturndata *data = calldata;
2981 data->rpc_status = task->tk_status;
2982 if (data->rpc_status == 0)
2983 renew_lease(data->res.server, data->timestamp);
2986 static void nfs4_delegreturn_release(void *calldata)
2988 kfree(calldata);
2991 static const struct rpc_call_ops nfs4_delegreturn_ops = {
2992 .rpc_call_done = nfs4_delegreturn_done,
2993 .rpc_release = nfs4_delegreturn_release,
2996 static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
2998 struct nfs4_delegreturndata *data;
2999 struct nfs_server *server = NFS_SERVER(inode);
3000 struct rpc_task *task;
3001 struct rpc_message msg = {
3002 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3003 .rpc_cred = cred,
3005 struct rpc_task_setup task_setup_data = {
3006 .rpc_client = server->client,
3007 .rpc_message = &msg,
3008 .callback_ops = &nfs4_delegreturn_ops,
3009 .flags = RPC_TASK_ASYNC,
3011 int status = 0;
3013 data = kmalloc(sizeof(*data), GFP_KERNEL);
3014 if (data == NULL)
3015 return -ENOMEM;
3016 data->args.fhandle = &data->fh;
3017 data->args.stateid = &data->stateid;
3018 data->args.bitmask = server->attr_bitmask;
3019 nfs_copy_fh(&data->fh, NFS_FH(inode));
3020 memcpy(&data->stateid, stateid, sizeof(data->stateid));
3021 data->res.fattr = &data->fattr;
3022 data->res.server = server;
3023 nfs_fattr_init(data->res.fattr);
3024 data->timestamp = jiffies;
3025 data->rpc_status = 0;
3027 task_setup_data.callback_data = data;
3028 msg.rpc_argp = &data->args,
3029 msg.rpc_resp = &data->res,
3030 task = rpc_run_task(&task_setup_data);
3031 if (IS_ERR(task))
3032 return PTR_ERR(task);
3033 if (!issync)
3034 goto out;
3035 status = nfs4_wait_for_completion_rpc_task(task);
3036 if (status != 0)
3037 goto out;
3038 status = data->rpc_status;
3039 if (status != 0)
3040 goto out;
3041 nfs_refresh_inode(inode, &data->fattr);
3042 out:
3043 rpc_put_task(task);
3044 return status;
3047 int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
3049 struct nfs_server *server = NFS_SERVER(inode);
3050 struct nfs4_exception exception = { };
3051 int err;
3052 do {
3053 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
3054 switch (err) {
3055 case -NFS4ERR_STALE_STATEID:
3056 case -NFS4ERR_EXPIRED:
3057 case 0:
3058 return 0;
3060 err = nfs4_handle_exception(server, err, &exception);
3061 } while (exception.retry);
3062 return err;
3065 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3066 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3069 * sleep, with exponential backoff, and retry the LOCK operation.
3071 static unsigned long
3072 nfs4_set_lock_task_retry(unsigned long timeout)
3074 schedule_timeout_killable(timeout);
3075 timeout <<= 1;
3076 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3077 return NFS4_LOCK_MAXTIMEOUT;
3078 return timeout;
3081 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3083 struct inode *inode = state->inode;
3084 struct nfs_server *server = NFS_SERVER(inode);
3085 struct nfs_client *clp = server->nfs_client;
3086 struct nfs_lockt_args arg = {
3087 .fh = NFS_FH(inode),
3088 .fl = request,
3090 struct nfs_lockt_res res = {
3091 .denied = request,
3093 struct rpc_message msg = {
3094 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3095 .rpc_argp = &arg,
3096 .rpc_resp = &res,
3097 .rpc_cred = state->owner->so_cred,
3099 struct nfs4_lock_state *lsp;
3100 int status;
3102 down_read(&clp->cl_sem);
3103 arg.lock_owner.clientid = clp->cl_clientid;
3104 status = nfs4_set_lock_state(state, request);
3105 if (status != 0)
3106 goto out;
3107 lsp = request->fl_u.nfs4_fl.owner;
3108 arg.lock_owner.id = lsp->ls_id.id;
3109 status = rpc_call_sync(server->client, &msg, 0);
3110 switch (status) {
3111 case 0:
3112 request->fl_type = F_UNLCK;
3113 break;
3114 case -NFS4ERR_DENIED:
3115 status = 0;
3117 request->fl_ops->fl_release_private(request);
3118 out:
3119 up_read(&clp->cl_sem);
3120 return status;
3123 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3125 struct nfs4_exception exception = { };
3126 int err;
3128 do {
3129 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3130 _nfs4_proc_getlk(state, cmd, request),
3131 &exception);
3132 } while (exception.retry);
3133 return err;
3136 static int do_vfs_lock(struct file *file, struct file_lock *fl)
3138 int res = 0;
3139 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3140 case FL_POSIX:
3141 res = posix_lock_file_wait(file, fl);
3142 break;
3143 case FL_FLOCK:
3144 res = flock_lock_file_wait(file, fl);
3145 break;
3146 default:
3147 BUG();
3149 return res;
3152 struct nfs4_unlockdata {
3153 struct nfs_locku_args arg;
3154 struct nfs_locku_res res;
3155 struct nfs4_lock_state *lsp;
3156 struct nfs_open_context *ctx;
3157 struct file_lock fl;
3158 const struct nfs_server *server;
3159 unsigned long timestamp;
3162 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3163 struct nfs_open_context *ctx,
3164 struct nfs4_lock_state *lsp,
3165 struct nfs_seqid *seqid)
3167 struct nfs4_unlockdata *p;
3168 struct inode *inode = lsp->ls_state->inode;
3170 p = kmalloc(sizeof(*p), GFP_KERNEL);
3171 if (p == NULL)
3172 return NULL;
3173 p->arg.fh = NFS_FH(inode);
3174 p->arg.fl = &p->fl;
3175 p->arg.seqid = seqid;
3176 p->res.seqid = seqid;
3177 p->arg.stateid = &lsp->ls_stateid;
3178 p->lsp = lsp;
3179 atomic_inc(&lsp->ls_count);
3180 /* Ensure we don't close file until we're done freeing locks! */
3181 p->ctx = get_nfs_open_context(ctx);
3182 memcpy(&p->fl, fl, sizeof(p->fl));
3183 p->server = NFS_SERVER(inode);
3184 return p;
3187 static void nfs4_locku_release_calldata(void *data)
3189 struct nfs4_unlockdata *calldata = data;
3190 nfs_free_seqid(calldata->arg.seqid);
3191 nfs4_put_lock_state(calldata->lsp);
3192 put_nfs_open_context(calldata->ctx);
3193 kfree(calldata);
3196 static void nfs4_locku_done(struct rpc_task *task, void *data)
3198 struct nfs4_unlockdata *calldata = data;
3200 if (RPC_ASSASSINATED(task))
3201 return;
3202 switch (task->tk_status) {
3203 case 0:
3204 memcpy(calldata->lsp->ls_stateid.data,
3205 calldata->res.stateid.data,
3206 sizeof(calldata->lsp->ls_stateid.data));
3207 renew_lease(calldata->server, calldata->timestamp);
3208 break;
3209 case -NFS4ERR_STALE_STATEID:
3210 case -NFS4ERR_EXPIRED:
3211 break;
3212 default:
3213 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
3214 rpc_restart_call(task);
3218 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
3220 struct nfs4_unlockdata *calldata = data;
3222 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
3223 return;
3224 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
3225 /* Note: exit _without_ running nfs4_locku_done */
3226 task->tk_action = NULL;
3227 return;
3229 calldata->timestamp = jiffies;
3230 rpc_call_start(task);
3233 static const struct rpc_call_ops nfs4_locku_ops = {
3234 .rpc_call_prepare = nfs4_locku_prepare,
3235 .rpc_call_done = nfs4_locku_done,
3236 .rpc_release = nfs4_locku_release_calldata,
3239 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3240 struct nfs_open_context *ctx,
3241 struct nfs4_lock_state *lsp,
3242 struct nfs_seqid *seqid)
3244 struct nfs4_unlockdata *data;
3245 struct rpc_message msg = {
3246 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3247 .rpc_cred = ctx->cred,
3249 struct rpc_task_setup task_setup_data = {
3250 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
3251 .rpc_message = &msg,
3252 .callback_ops = &nfs4_locku_ops,
3253 .workqueue = nfsiod_workqueue,
3254 .flags = RPC_TASK_ASYNC,
3257 /* Ensure this is an unlock - when canceling a lock, the
3258 * canceled lock is passed in, and it won't be an unlock.
3260 fl->fl_type = F_UNLCK;
3262 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3263 if (data == NULL) {
3264 nfs_free_seqid(seqid);
3265 return ERR_PTR(-ENOMEM);
3268 msg.rpc_argp = &data->arg,
3269 msg.rpc_resp = &data->res,
3270 task_setup_data.callback_data = data;
3271 return rpc_run_task(&task_setup_data);
3274 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3276 struct nfs_seqid *seqid;
3277 struct nfs4_lock_state *lsp;
3278 struct rpc_task *task;
3279 int status = 0;
3280 unsigned char fl_flags = request->fl_flags;
3282 status = nfs4_set_lock_state(state, request);
3283 /* Unlock _before_ we do the RPC call */
3284 request->fl_flags |= FL_EXISTS;
3285 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3286 goto out;
3287 if (status != 0)
3288 goto out;
3289 /* Is this a delegated lock? */
3290 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
3291 goto out;
3292 lsp = request->fl_u.nfs4_fl.owner;
3293 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3294 status = -ENOMEM;
3295 if (seqid == NULL)
3296 goto out;
3297 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
3298 status = PTR_ERR(task);
3299 if (IS_ERR(task))
3300 goto out;
3301 status = nfs4_wait_for_completion_rpc_task(task);
3302 rpc_put_task(task);
3303 out:
3304 request->fl_flags = fl_flags;
3305 return status;
3308 struct nfs4_lockdata {
3309 struct nfs_lock_args arg;
3310 struct nfs_lock_res res;
3311 struct nfs4_lock_state *lsp;
3312 struct nfs_open_context *ctx;
3313 struct file_lock fl;
3314 unsigned long timestamp;
3315 int rpc_status;
3316 int cancelled;
3319 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3320 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3322 struct nfs4_lockdata *p;
3323 struct inode *inode = lsp->ls_state->inode;
3324 struct nfs_server *server = NFS_SERVER(inode);
3326 p = kzalloc(sizeof(*p), GFP_KERNEL);
3327 if (p == NULL)
3328 return NULL;
3330 p->arg.fh = NFS_FH(inode);
3331 p->arg.fl = &p->fl;
3332 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3333 if (p->arg.open_seqid == NULL)
3334 goto out_free;
3335 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3336 if (p->arg.lock_seqid == NULL)
3337 goto out_free_seqid;
3338 p->arg.lock_stateid = &lsp->ls_stateid;
3339 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
3340 p->arg.lock_owner.id = lsp->ls_id.id;
3341 p->res.lock_seqid = p->arg.lock_seqid;
3342 p->lsp = lsp;
3343 atomic_inc(&lsp->ls_count);
3344 p->ctx = get_nfs_open_context(ctx);
3345 memcpy(&p->fl, fl, sizeof(p->fl));
3346 return p;
3347 out_free_seqid:
3348 nfs_free_seqid(p->arg.open_seqid);
3349 out_free:
3350 kfree(p);
3351 return NULL;
3354 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3356 struct nfs4_lockdata *data = calldata;
3357 struct nfs4_state *state = data->lsp->ls_state;
3359 dprintk("%s: begin!\n", __func__);
3360 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3361 return;
3362 /* Do we need to do an open_to_lock_owner? */
3363 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
3364 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3365 return;
3366 data->arg.open_stateid = &state->stateid;
3367 data->arg.new_lock_owner = 1;
3368 data->res.open_seqid = data->arg.open_seqid;
3369 } else
3370 data->arg.new_lock_owner = 0;
3371 data->timestamp = jiffies;
3372 rpc_call_start(task);
3373 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
3376 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3378 struct nfs4_lockdata *data = calldata;
3380 dprintk("%s: begin!\n", __func__);
3382 data->rpc_status = task->tk_status;
3383 if (RPC_ASSASSINATED(task))
3384 goto out;
3385 if (data->arg.new_lock_owner != 0) {
3386 if (data->rpc_status == 0)
3387 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3388 else
3389 goto out;
3391 if (data->rpc_status == 0) {
3392 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3393 sizeof(data->lsp->ls_stateid.data));
3394 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
3395 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
3397 out:
3398 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
3401 static void nfs4_lock_release(void *calldata)
3403 struct nfs4_lockdata *data = calldata;
3405 dprintk("%s: begin!\n", __func__);
3406 nfs_free_seqid(data->arg.open_seqid);
3407 if (data->cancelled != 0) {
3408 struct rpc_task *task;
3409 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3410 data->arg.lock_seqid);
3411 if (!IS_ERR(task))
3412 rpc_put_task(task);
3413 dprintk("%s: cancelling lock!\n", __func__);
3414 } else
3415 nfs_free_seqid(data->arg.lock_seqid);
3416 nfs4_put_lock_state(data->lsp);
3417 put_nfs_open_context(data->ctx);
3418 kfree(data);
3419 dprintk("%s: done!\n", __func__);
3422 static const struct rpc_call_ops nfs4_lock_ops = {
3423 .rpc_call_prepare = nfs4_lock_prepare,
3424 .rpc_call_done = nfs4_lock_done,
3425 .rpc_release = nfs4_lock_release,
3428 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3430 struct nfs4_lockdata *data;
3431 struct rpc_task *task;
3432 struct rpc_message msg = {
3433 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3434 .rpc_cred = state->owner->so_cred,
3436 struct rpc_task_setup task_setup_data = {
3437 .rpc_client = NFS_CLIENT(state->inode),
3438 .rpc_message = &msg,
3439 .callback_ops = &nfs4_lock_ops,
3440 .workqueue = nfsiod_workqueue,
3441 .flags = RPC_TASK_ASYNC,
3443 int ret;
3445 dprintk("%s: begin!\n", __func__);
3446 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
3447 fl->fl_u.nfs4_fl.owner);
3448 if (data == NULL)
3449 return -ENOMEM;
3450 if (IS_SETLKW(cmd))
3451 data->arg.block = 1;
3452 if (reclaim != 0)
3453 data->arg.reclaim = 1;
3454 msg.rpc_argp = &data->arg,
3455 msg.rpc_resp = &data->res,
3456 task_setup_data.callback_data = data;
3457 task = rpc_run_task(&task_setup_data);
3458 if (IS_ERR(task))
3459 return PTR_ERR(task);
3460 ret = nfs4_wait_for_completion_rpc_task(task);
3461 if (ret == 0) {
3462 ret = data->rpc_status;
3463 if (ret == -NFS4ERR_DENIED)
3464 ret = -EAGAIN;
3465 } else
3466 data->cancelled = 1;
3467 rpc_put_task(task);
3468 dprintk("%s: done, ret = %d!\n", __func__, ret);
3469 return ret;
3472 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3474 struct nfs_server *server = NFS_SERVER(state->inode);
3475 struct nfs4_exception exception = { };
3476 int err;
3478 do {
3479 /* Cache the lock if possible... */
3480 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3481 return 0;
3482 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3483 if (err != -NFS4ERR_DELAY)
3484 break;
3485 nfs4_handle_exception(server, err, &exception);
3486 } while (exception.retry);
3487 return err;
3490 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3492 struct nfs_server *server = NFS_SERVER(state->inode);
3493 struct nfs4_exception exception = { };
3494 int err;
3496 err = nfs4_set_lock_state(state, request);
3497 if (err != 0)
3498 return err;
3499 do {
3500 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3501 return 0;
3502 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3503 if (err != -NFS4ERR_DELAY)
3504 break;
3505 nfs4_handle_exception(server, err, &exception);
3506 } while (exception.retry);
3507 return err;
3510 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3512 struct nfs_client *clp = state->owner->so_client;
3513 unsigned char fl_flags = request->fl_flags;
3514 int status;
3516 /* Is this a delegated open? */
3517 status = nfs4_set_lock_state(state, request);
3518 if (status != 0)
3519 goto out;
3520 request->fl_flags |= FL_ACCESS;
3521 status = do_vfs_lock(request->fl_file, request);
3522 if (status < 0)
3523 goto out;
3524 down_read(&clp->cl_sem);
3525 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3526 struct nfs_inode *nfsi = NFS_I(state->inode);
3527 /* Yes: cache locks! */
3528 down_read(&nfsi->rwsem);
3529 /* ...but avoid races with delegation recall... */
3530 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3531 request->fl_flags = fl_flags & ~FL_SLEEP;
3532 status = do_vfs_lock(request->fl_file, request);
3533 up_read(&nfsi->rwsem);
3534 goto out_unlock;
3536 up_read(&nfsi->rwsem);
3538 status = _nfs4_do_setlk(state, cmd, request, 0);
3539 if (status != 0)
3540 goto out_unlock;
3541 /* Note: we always want to sleep here! */
3542 request->fl_flags = fl_flags | FL_SLEEP;
3543 if (do_vfs_lock(request->fl_file, request) < 0)
3544 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
3545 out_unlock:
3546 up_read(&clp->cl_sem);
3547 out:
3548 request->fl_flags = fl_flags;
3549 return status;
3552 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3554 struct nfs4_exception exception = { };
3555 int err;
3557 do {
3558 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3559 _nfs4_proc_setlk(state, cmd, request),
3560 &exception);
3561 } while (exception.retry);
3562 return err;
3565 static int
3566 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3568 struct nfs_open_context *ctx;
3569 struct nfs4_state *state;
3570 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3571 int status;
3573 /* verify open state */
3574 ctx = nfs_file_open_context(filp);
3575 state = ctx->state;
3577 if (request->fl_start < 0 || request->fl_end < 0)
3578 return -EINVAL;
3580 if (IS_GETLK(cmd))
3581 return nfs4_proc_getlk(state, F_GETLK, request);
3583 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3584 return -EINVAL;
3586 if (request->fl_type == F_UNLCK)
3587 return nfs4_proc_unlck(state, cmd, request);
3589 do {
3590 status = nfs4_proc_setlk(state, cmd, request);
3591 if ((status != -EAGAIN) || IS_SETLK(cmd))
3592 break;
3593 timeout = nfs4_set_lock_task_retry(timeout);
3594 status = -ERESTARTSYS;
3595 if (signalled())
3596 break;
3597 } while(status < 0);
3598 return status;
3601 int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3603 struct nfs_server *server = NFS_SERVER(state->inode);
3604 struct nfs4_exception exception = { };
3605 int err;
3607 err = nfs4_set_lock_state(state, fl);
3608 if (err != 0)
3609 goto out;
3610 do {
3611 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3612 if (err != -NFS4ERR_DELAY)
3613 break;
3614 err = nfs4_handle_exception(server, err, &exception);
3615 } while (exception.retry);
3616 out:
3617 return err;
3620 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3622 int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3623 size_t buflen, int flags)
3625 struct inode *inode = dentry->d_inode;
3627 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3628 return -EOPNOTSUPP;
3630 return nfs4_proc_set_acl(inode, buf, buflen);
3633 /* The getxattr man page suggests returning -ENODATA for unknown attributes,
3634 * and that's what we'll do for e.g. user attributes that haven't been set.
3635 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3636 * attributes in kernel-managed attribute namespaces. */
3637 ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3638 size_t buflen)
3640 struct inode *inode = dentry->d_inode;
3642 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3643 return -EOPNOTSUPP;
3645 return nfs4_proc_get_acl(inode, buf, buflen);
3648 ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3650 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
3652 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3653 return 0;
3654 if (buf && buflen < len)
3655 return -ERANGE;
3656 if (buf)
3657 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3658 return len;
3661 int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
3662 struct nfs4_fs_locations *fs_locations, struct page *page)
3664 struct nfs_server *server = NFS_SERVER(dir);
3665 u32 bitmask[2] = {
3666 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3667 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
3669 struct nfs4_fs_locations_arg args = {
3670 .dir_fh = NFS_FH(dir),
3671 .name = name,
3672 .page = page,
3673 .bitmask = bitmask,
3675 struct rpc_message msg = {
3676 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3677 .rpc_argp = &args,
3678 .rpc_resp = fs_locations,
3680 int status;
3682 dprintk("%s: start\n", __func__);
3683 nfs_fattr_init(&fs_locations->fattr);
3684 fs_locations->server = server;
3685 fs_locations->nlocations = 0;
3686 status = rpc_call_sync(server->client, &msg, 0);
3687 dprintk("%s: returned status = %d\n", __func__, status);
3688 return status;
3691 struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3692 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
3693 .recover_open = nfs4_open_reclaim,
3694 .recover_lock = nfs4_lock_reclaim,
3697 struct nfs4_state_recovery_ops nfs4_nograce_recovery_ops = {
3698 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
3699 .recover_open = nfs4_open_expired,
3700 .recover_lock = nfs4_lock_expired,
3703 static const struct inode_operations nfs4_file_inode_operations = {
3704 .permission = nfs_permission,
3705 .getattr = nfs_getattr,
3706 .setattr = nfs_setattr,
3707 .getxattr = nfs4_getxattr,
3708 .setxattr = nfs4_setxattr,
3709 .listxattr = nfs4_listxattr,
3712 const struct nfs_rpc_ops nfs_v4_clientops = {
3713 .version = 4, /* protocol version */
3714 .dentry_ops = &nfs4_dentry_operations,
3715 .dir_inode_ops = &nfs4_dir_inode_operations,
3716 .file_inode_ops = &nfs4_file_inode_operations,
3717 .getroot = nfs4_proc_get_root,
3718 .getattr = nfs4_proc_getattr,
3719 .setattr = nfs4_proc_setattr,
3720 .lookupfh = nfs4_proc_lookupfh,
3721 .lookup = nfs4_proc_lookup,
3722 .access = nfs4_proc_access,
3723 .readlink = nfs4_proc_readlink,
3724 .create = nfs4_proc_create,
3725 .remove = nfs4_proc_remove,
3726 .unlink_setup = nfs4_proc_unlink_setup,
3727 .unlink_done = nfs4_proc_unlink_done,
3728 .rename = nfs4_proc_rename,
3729 .link = nfs4_proc_link,
3730 .symlink = nfs4_proc_symlink,
3731 .mkdir = nfs4_proc_mkdir,
3732 .rmdir = nfs4_proc_remove,
3733 .readdir = nfs4_proc_readdir,
3734 .mknod = nfs4_proc_mknod,
3735 .statfs = nfs4_proc_statfs,
3736 .fsinfo = nfs4_proc_fsinfo,
3737 .pathconf = nfs4_proc_pathconf,
3738 .set_capabilities = nfs4_server_capabilities,
3739 .decode_dirent = nfs4_decode_dirent,
3740 .read_setup = nfs4_proc_read_setup,
3741 .read_done = nfs4_read_done,
3742 .write_setup = nfs4_proc_write_setup,
3743 .write_done = nfs4_write_done,
3744 .commit_setup = nfs4_proc_commit_setup,
3745 .commit_done = nfs4_commit_done,
3746 .lock = nfs4_proc_lock,
3747 .clear_acl_cache = nfs4_zap_acl_attr,
3751 * Local variables:
3752 * c-basic-offset: 8
3753 * End: