4 * Client-side procedure declarations for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
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
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.
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>
53 #include "delegation.h"
56 #define NFSDBG_FACILITY NFSDBG_PROC
58 #define NFS4_POLL_RETRY_MIN (HZ/10)
59 #define NFS4_POLL_RETRY_MAX (15*HZ)
62 static int _nfs4_proc_open(struct nfs4_opendata *data);
63 static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
64 static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *);
65 static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception);
66 static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp);
67 static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
68 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
70 /* Prevent leaks of NFSv4 errors into userland */
71 int nfs4_map_errors(int err)
74 dprintk("%s could not handle NFSv4 error %d\n",
82 * This is our standard bitmap for GETATTR requests.
84 const u32 nfs4_fattr_bitmap[2] = {
89 | FATTR4_WORD0_FILEID,
91 | FATTR4_WORD1_NUMLINKS
93 | FATTR4_WORD1_OWNER_GROUP
95 | FATTR4_WORD1_SPACE_USED
96 | FATTR4_WORD1_TIME_ACCESS
97 | FATTR4_WORD1_TIME_METADATA
98 | FATTR4_WORD1_TIME_MODIFY
101 const u32 nfs4_statfs_bitmap[2] = {
102 FATTR4_WORD0_FILES_AVAIL
103 | FATTR4_WORD0_FILES_FREE
104 | FATTR4_WORD0_FILES_TOTAL,
105 FATTR4_WORD1_SPACE_AVAIL
106 | FATTR4_WORD1_SPACE_FREE
107 | FATTR4_WORD1_SPACE_TOTAL
110 const u32 nfs4_pathconf_bitmap[2] = {
112 | FATTR4_WORD0_MAXNAME,
116 const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
117 | FATTR4_WORD0_MAXREAD
118 | FATTR4_WORD0_MAXWRITE
119 | FATTR4_WORD0_LEASE_TIME,
123 const u32 nfs4_fs_locations_bitmap[2] = {
125 | FATTR4_WORD0_CHANGE
128 | FATTR4_WORD0_FILEID
129 | FATTR4_WORD0_FS_LOCATIONS,
131 | FATTR4_WORD1_NUMLINKS
133 | FATTR4_WORD1_OWNER_GROUP
134 | FATTR4_WORD1_RAWDEV
135 | FATTR4_WORD1_SPACE_USED
136 | FATTR4_WORD1_TIME_ACCESS
137 | FATTR4_WORD1_TIME_METADATA
138 | FATTR4_WORD1_TIME_MODIFY
139 | FATTR4_WORD1_MOUNTED_ON_FILEID
142 static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
143 struct nfs4_readdir_arg *readdir)
147 BUG_ON(readdir->count < 80);
149 readdir->cookie = cookie;
150 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
155 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
160 * NFSv4 servers do not return entries for '.' and '..'
161 * Therefore, we fake these entries here. We let '.'
162 * have cookie 0 and '..' have cookie 1. Note that
163 * when talking to the server, we always send cookie 0
166 start = p = kmap_atomic(*readdir->pages, KM_USER0);
169 *p++ = xdr_one; /* next */
170 *p++ = xdr_zero; /* cookie, first word */
171 *p++ = xdr_one; /* cookie, second word */
172 *p++ = xdr_one; /* entry len */
173 memcpy(p, ".\0\0\0", 4); /* entry */
175 *p++ = xdr_one; /* bitmap length */
176 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
177 *p++ = htonl(8); /* attribute buffer length */
178 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
181 *p++ = xdr_one; /* next */
182 *p++ = xdr_zero; /* cookie, first word */
183 *p++ = xdr_two; /* cookie, second word */
184 *p++ = xdr_two; /* entry len */
185 memcpy(p, "..\0\0", 4); /* entry */
187 *p++ = xdr_one; /* bitmap length */
188 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
189 *p++ = htonl(8); /* attribute buffer length */
190 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
192 readdir->pgbase = (char *)p - (char *)start;
193 readdir->count -= readdir->pgbase;
194 kunmap_atomic(start, KM_USER0);
197 static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
199 struct nfs_client *clp = server->nfs_client;
200 spin_lock(&clp->cl_lock);
201 if (time_before(clp->cl_last_renewal,timestamp))
202 clp->cl_last_renewal = timestamp;
203 spin_unlock(&clp->cl_lock);
206 static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
208 struct nfs_inode *nfsi = NFS_I(dir);
210 spin_lock(&dir->i_lock);
211 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
212 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
213 nfsi->cache_change_attribute = jiffies;
214 nfsi->change_attr = cinfo->after;
215 spin_unlock(&dir->i_lock);
218 struct nfs4_opendata {
220 struct nfs_openargs o_arg;
221 struct nfs_openres o_res;
222 struct nfs_open_confirmargs c_arg;
223 struct nfs_open_confirmres c_res;
224 struct nfs_fattr f_attr;
225 struct nfs_fattr dir_attr;
228 struct nfs4_state_owner *owner;
229 struct nfs4_state *state;
231 unsigned long timestamp;
232 unsigned int rpc_done : 1;
238 static void nfs4_init_opendata_res(struct nfs4_opendata *p)
240 p->o_res.f_attr = &p->f_attr;
241 p->o_res.dir_attr = &p->dir_attr;
242 p->o_res.server = p->o_arg.server;
243 nfs_fattr_init(&p->f_attr);
244 nfs_fattr_init(&p->dir_attr);
247 static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
248 struct nfs4_state_owner *sp, int flags,
249 const struct iattr *attrs)
251 struct dentry *parent = dget_parent(path->dentry);
252 struct inode *dir = parent->d_inode;
253 struct nfs_server *server = NFS_SERVER(dir);
254 struct nfs4_opendata *p;
256 p = kzalloc(sizeof(*p), GFP_KERNEL);
259 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
260 if (p->o_arg.seqid == NULL)
262 p->path.mnt = mntget(path->mnt);
263 p->path.dentry = dget(path->dentry);
266 atomic_inc(&sp->so_count);
267 p->o_arg.fh = NFS_FH(dir);
268 p->o_arg.open_flags = flags,
269 p->o_arg.clientid = server->nfs_client->cl_clientid;
270 p->o_arg.id = sp->so_owner_id.id;
271 p->o_arg.name = &p->path.dentry->d_name;
272 p->o_arg.server = server;
273 p->o_arg.bitmask = server->attr_bitmask;
274 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
275 if (flags & O_EXCL) {
276 u32 *s = (u32 *) p->o_arg.u.verifier.data;
279 } else if (flags & O_CREAT) {
280 p->o_arg.u.attrs = &p->attrs;
281 memcpy(&p->attrs, attrs, sizeof(p->attrs));
283 p->c_arg.fh = &p->o_res.fh;
284 p->c_arg.stateid = &p->o_res.stateid;
285 p->c_arg.seqid = p->o_arg.seqid;
286 nfs4_init_opendata_res(p);
296 static void nfs4_opendata_free(struct kref *kref)
298 struct nfs4_opendata *p = container_of(kref,
299 struct nfs4_opendata, kref);
301 nfs_free_seqid(p->o_arg.seqid);
302 if (p->state != NULL)
303 nfs4_put_open_state(p->state);
304 nfs4_put_state_owner(p->owner);
306 dput(p->path.dentry);
311 static void nfs4_opendata_put(struct nfs4_opendata *p)
314 kref_put(&p->kref, nfs4_opendata_free);
317 static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
322 rpc_clnt_sigmask(task->tk_client, &oldset);
323 ret = rpc_wait_for_completion_task(task);
324 rpc_clnt_sigunmask(task->tk_client, &oldset);
328 static int can_open_cached(struct nfs4_state *state, int mode)
331 switch (mode & (FMODE_READ|FMODE_WRITE|O_EXCL)) {
333 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
336 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
338 case FMODE_READ|FMODE_WRITE:
339 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
344 static int can_open_delegated(struct nfs_delegation *delegation, mode_t open_flags)
346 if ((delegation->type & open_flags) != open_flags)
348 if (delegation->flags & NFS_DELEGATION_NEED_RECLAIM)
353 static void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
355 switch (open_flags) {
362 case FMODE_READ|FMODE_WRITE:
365 nfs4_state_set_mode_locked(state, state->state | open_flags);
368 static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
370 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
371 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
372 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
373 switch (open_flags) {
375 set_bit(NFS_O_RDONLY_STATE, &state->flags);
378 set_bit(NFS_O_WRONLY_STATE, &state->flags);
380 case FMODE_READ|FMODE_WRITE:
381 set_bit(NFS_O_RDWR_STATE, &state->flags);
385 static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
387 write_seqlock(&state->seqlock);
388 nfs_set_open_stateid_locked(state, stateid, open_flags);
389 write_sequnlock(&state->seqlock);
392 static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *deleg_stateid, int open_flags)
394 open_flags &= (FMODE_READ|FMODE_WRITE);
396 * Protect the call to nfs4_state_set_mode_locked and
397 * serialise the stateid update
399 write_seqlock(&state->seqlock);
400 if (deleg_stateid != NULL) {
401 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
402 set_bit(NFS_DELEGATED_STATE, &state->flags);
404 if (open_stateid != NULL)
405 nfs_set_open_stateid_locked(state, open_stateid, open_flags);
406 write_sequnlock(&state->seqlock);
407 spin_lock(&state->owner->so_lock);
408 update_open_stateflags(state, open_flags);
409 spin_unlock(&state->owner->so_lock);
412 static void nfs4_return_incompatible_delegation(struct inode *inode, mode_t open_flags)
414 struct nfs_delegation *delegation;
417 delegation = rcu_dereference(NFS_I(inode)->delegation);
418 if (delegation == NULL || (delegation->type & open_flags) == open_flags) {
423 nfs_inode_return_delegation(inode);
426 static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
428 struct nfs4_state *state = opendata->state;
429 struct nfs_inode *nfsi = NFS_I(state->inode);
430 struct nfs_delegation *delegation;
431 int open_mode = opendata->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL);
432 nfs4_stateid stateid;
436 delegation = rcu_dereference(nfsi->delegation);
438 if (can_open_cached(state, open_mode)) {
439 spin_lock(&state->owner->so_lock);
440 if (can_open_cached(state, open_mode)) {
441 update_open_stateflags(state, open_mode);
442 spin_unlock(&state->owner->so_lock);
444 goto out_return_state;
446 spin_unlock(&state->owner->so_lock);
448 if (delegation == NULL)
450 if (!can_open_delegated(delegation, open_mode))
452 /* Save the delegation */
453 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
456 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
462 delegation = rcu_dereference(nfsi->delegation);
463 /* If no delegation, try a cached open */
464 if (delegation == NULL)
466 /* Is the delegation still valid? */
467 if (memcmp(stateid.data, delegation->stateid.data, sizeof(stateid.data)) != 0)
470 update_open_stateid(state, NULL, &stateid, open_mode);
471 goto out_return_state;
477 atomic_inc(&state->count);
481 static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
484 struct nfs4_state *state = NULL;
485 struct nfs_delegation *delegation;
486 nfs4_stateid *deleg_stateid = NULL;
489 if (!data->rpc_done) {
490 state = nfs4_try_open_cached(data);
495 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
497 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
498 ret = PTR_ERR(inode);
502 state = nfs4_get_open_state(inode, data->owner);
505 if (data->o_res.delegation_type != 0) {
506 int delegation_flags = 0;
509 delegation = rcu_dereference(NFS_I(inode)->delegation);
511 delegation_flags = delegation->flags;
513 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
514 nfs_inode_set_delegation(state->inode,
515 data->owner->so_cred,
518 nfs_inode_reclaim_delegation(state->inode,
519 data->owner->so_cred,
523 delegation = rcu_dereference(NFS_I(inode)->delegation);
524 if (delegation != NULL)
525 deleg_stateid = &delegation->stateid;
526 update_open_stateid(state, &data->o_res.stateid, deleg_stateid, data->o_arg.open_flags);
537 static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
539 struct nfs_inode *nfsi = NFS_I(state->inode);
540 struct nfs_open_context *ctx;
542 spin_lock(&state->inode->i_lock);
543 list_for_each_entry(ctx, &nfsi->open_files, list) {
544 if (ctx->state != state)
546 get_nfs_open_context(ctx);
547 spin_unlock(&state->inode->i_lock);
550 spin_unlock(&state->inode->i_lock);
551 return ERR_PTR(-ENOENT);
554 static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
556 struct nfs4_opendata *opendata;
558 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
559 if (opendata == NULL)
560 return ERR_PTR(-ENOMEM);
561 opendata->state = state;
562 atomic_inc(&state->count);
566 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, struct nfs4_state **res)
568 struct nfs4_state *newstate;
571 opendata->o_arg.open_flags = openflags;
572 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
573 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
574 nfs4_init_opendata_res(opendata);
575 ret = _nfs4_proc_open(opendata);
578 newstate = nfs4_opendata_to_nfs4_state(opendata);
579 if (IS_ERR(newstate))
580 return PTR_ERR(newstate);
581 nfs4_close_state(&opendata->path, newstate, openflags);
586 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
588 struct nfs4_state *newstate;
591 /* memory barrier prior to reading state->n_* */
592 clear_bit(NFS_DELEGATED_STATE, &state->flags);
594 if (state->n_rdwr != 0) {
595 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
598 if (newstate != state)
601 if (state->n_wronly != 0) {
602 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
605 if (newstate != state)
608 if (state->n_rdonly != 0) {
609 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
612 if (newstate != state)
616 * We may have performed cached opens for all three recoveries.
617 * Check if we need to update the current stateid.
619 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
620 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
621 write_seqlock(&state->seqlock);
622 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
623 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
624 write_sequnlock(&state->seqlock);
631 * reclaim state on the server after a reboot.
633 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
635 struct nfs_delegation *delegation;
636 struct nfs4_opendata *opendata;
637 int delegation_type = 0;
640 opendata = nfs4_open_recoverdata_alloc(ctx, state);
641 if (IS_ERR(opendata))
642 return PTR_ERR(opendata);
643 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
644 opendata->o_arg.fh = NFS_FH(state->inode);
646 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
647 if (delegation != NULL && (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) != 0)
648 delegation_type = delegation->type;
650 opendata->o_arg.u.delegation_type = delegation_type;
651 status = nfs4_open_recover(opendata, state);
652 nfs4_opendata_put(opendata);
656 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
658 struct nfs_server *server = NFS_SERVER(state->inode);
659 struct nfs4_exception exception = { };
662 err = _nfs4_do_open_reclaim(ctx, state);
663 if (err != -NFS4ERR_DELAY)
665 nfs4_handle_exception(server, err, &exception);
666 } while (exception.retry);
670 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
672 struct nfs_open_context *ctx;
675 ctx = nfs4_state_find_open_context(state);
678 ret = nfs4_do_open_reclaim(ctx, state);
679 put_nfs_open_context(ctx);
683 static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
685 struct nfs4_opendata *opendata;
688 opendata = nfs4_open_recoverdata_alloc(ctx, state);
689 if (IS_ERR(opendata))
690 return PTR_ERR(opendata);
691 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
692 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
693 sizeof(opendata->o_arg.u.delegation.data));
694 ret = nfs4_open_recover(opendata, state);
695 nfs4_opendata_put(opendata);
699 int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
701 struct nfs4_exception exception = { };
702 struct nfs_server *server = NFS_SERVER(state->inode);
705 err = _nfs4_open_delegation_recall(ctx, state, stateid);
709 case -NFS4ERR_STALE_CLIENTID:
710 case -NFS4ERR_STALE_STATEID:
711 case -NFS4ERR_EXPIRED:
712 /* Don't recall a delegation if it was lost */
713 nfs4_schedule_state_recovery(server->nfs_client);
716 err = nfs4_handle_exception(server, err, &exception);
717 } while (exception.retry);
721 static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
723 struct nfs4_opendata *data = calldata;
724 struct rpc_message msg = {
725 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
726 .rpc_argp = &data->c_arg,
727 .rpc_resp = &data->c_res,
728 .rpc_cred = data->owner->so_cred,
730 data->timestamp = jiffies;
731 rpc_call_setup(task, &msg, 0);
734 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
736 struct nfs4_opendata *data = calldata;
738 data->rpc_status = task->tk_status;
739 if (RPC_ASSASSINATED(task))
741 if (data->rpc_status == 0) {
742 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
743 sizeof(data->o_res.stateid.data));
744 renew_lease(data->o_res.server, data->timestamp);
747 nfs_confirm_seqid(&data->owner->so_seqid, data->rpc_status);
748 nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid);
751 static void nfs4_open_confirm_release(void *calldata)
753 struct nfs4_opendata *data = calldata;
754 struct nfs4_state *state = NULL;
756 /* If this request hasn't been cancelled, do nothing */
757 if (data->cancelled == 0)
759 /* In case of error, no cleanup! */
762 nfs_confirm_seqid(&data->owner->so_seqid, 0);
763 state = nfs4_opendata_to_nfs4_state(data);
765 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
767 nfs4_opendata_put(data);
770 static const struct rpc_call_ops nfs4_open_confirm_ops = {
771 .rpc_call_prepare = nfs4_open_confirm_prepare,
772 .rpc_call_done = nfs4_open_confirm_done,
773 .rpc_release = nfs4_open_confirm_release,
777 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
779 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
781 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
782 struct rpc_task *task;
785 kref_get(&data->kref);
787 data->rpc_status = 0;
788 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_confirm_ops, data);
790 return PTR_ERR(task);
791 status = nfs4_wait_for_completion_rpc_task(task);
796 status = data->rpc_status;
801 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
803 struct nfs4_opendata *data = calldata;
804 struct nfs4_state_owner *sp = data->owner;
805 struct rpc_message msg = {
806 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
807 .rpc_argp = &data->o_arg,
808 .rpc_resp = &data->o_res,
809 .rpc_cred = sp->so_cred,
812 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
815 * Check if we still need to send an OPEN call, or if we can use
816 * a delegation instead.
818 if (data->state != NULL) {
819 struct nfs_delegation *delegation;
821 if (can_open_cached(data->state, data->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL)))
824 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
825 if (delegation != NULL &&
826 (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) == 0) {
832 /* Update sequence id. */
833 data->o_arg.id = sp->so_owner_id.id;
834 data->o_arg.clientid = sp->so_client->cl_clientid;
835 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
836 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
837 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
839 data->timestamp = jiffies;
840 rpc_call_setup(task, &msg, 0);
843 task->tk_action = NULL;
847 static void nfs4_open_done(struct rpc_task *task, void *calldata)
849 struct nfs4_opendata *data = calldata;
851 data->rpc_status = task->tk_status;
852 if (RPC_ASSASSINATED(task))
854 if (task->tk_status == 0) {
855 switch (data->o_res.f_attr->mode & S_IFMT) {
859 data->rpc_status = -ELOOP;
862 data->rpc_status = -EISDIR;
865 data->rpc_status = -ENOTDIR;
867 renew_lease(data->o_res.server, data->timestamp);
868 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
869 nfs_confirm_seqid(&data->owner->so_seqid, 0);
871 nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid);
875 static void nfs4_open_release(void *calldata)
877 struct nfs4_opendata *data = calldata;
878 struct nfs4_state *state = NULL;
880 /* If this request hasn't been cancelled, do nothing */
881 if (data->cancelled == 0)
883 /* In case of error, no cleanup! */
884 if (data->rpc_status != 0 || !data->rpc_done)
886 /* In case we need an open_confirm, no cleanup! */
887 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
889 nfs_confirm_seqid(&data->owner->so_seqid, 0);
890 state = nfs4_opendata_to_nfs4_state(data);
892 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
894 nfs4_opendata_put(data);
897 static const struct rpc_call_ops nfs4_open_ops = {
898 .rpc_call_prepare = nfs4_open_prepare,
899 .rpc_call_done = nfs4_open_done,
900 .rpc_release = nfs4_open_release,
904 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
906 static int _nfs4_proc_open(struct nfs4_opendata *data)
908 struct inode *dir = data->dir->d_inode;
909 struct nfs_server *server = NFS_SERVER(dir);
910 struct nfs_openargs *o_arg = &data->o_arg;
911 struct nfs_openres *o_res = &data->o_res;
912 struct rpc_task *task;
915 kref_get(&data->kref);
917 data->rpc_status = 0;
919 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_ops, data);
921 return PTR_ERR(task);
922 status = nfs4_wait_for_completion_rpc_task(task);
927 status = data->rpc_status;
929 if (status != 0 || !data->rpc_done)
932 if (o_res->fh.size == 0)
933 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
935 if (o_arg->open_flags & O_CREAT) {
936 update_changeattr(dir, &o_res->cinfo);
937 nfs_post_op_update_inode(dir, o_res->dir_attr);
939 nfs_refresh_inode(dir, o_res->dir_attr);
940 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
941 status = _nfs4_proc_open_confirm(data);
945 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
946 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
950 static int nfs4_recover_expired_lease(struct nfs_server *server)
952 struct nfs_client *clp = server->nfs_client;
956 ret = nfs4_wait_clnt_recover(server->client, clp);
959 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
961 nfs4_schedule_state_recovery(clp);
968 * reclaim state on the server after a network partition.
969 * Assumes caller holds the appropriate lock
971 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
973 struct nfs4_opendata *opendata;
976 opendata = nfs4_open_recoverdata_alloc(ctx, state);
977 if (IS_ERR(opendata))
978 return PTR_ERR(opendata);
979 ret = nfs4_open_recover(opendata, state);
980 if (ret == -ESTALE) {
981 /* Invalidate the state owner so we don't ever use it again */
982 nfs4_drop_state_owner(state->owner);
983 d_drop(ctx->path.dentry);
985 nfs4_opendata_put(opendata);
989 static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
991 struct nfs_server *server = NFS_SERVER(state->inode);
992 struct nfs4_exception exception = { };
996 err = _nfs4_open_expired(ctx, state);
997 if (err == -NFS4ERR_DELAY)
998 nfs4_handle_exception(server, err, &exception);
999 } while (exception.retry);
1003 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1005 struct nfs_open_context *ctx;
1008 ctx = nfs4_state_find_open_context(state);
1010 return PTR_ERR(ctx);
1011 ret = nfs4_do_open_expired(ctx, state);
1012 put_nfs_open_context(ctx);
1017 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1018 * fields corresponding to attributes that were used to store the verifier.
1019 * Make sure we clobber those fields in the later setattr call
1021 static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1023 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1024 !(sattr->ia_valid & ATTR_ATIME_SET))
1025 sattr->ia_valid |= ATTR_ATIME;
1027 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1028 !(sattr->ia_valid & ATTR_MTIME_SET))
1029 sattr->ia_valid |= ATTR_MTIME;
1033 * Returns a referenced nfs4_state
1035 static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
1037 struct nfs4_state_owner *sp;
1038 struct nfs4_state *state = NULL;
1039 struct nfs_server *server = NFS_SERVER(dir);
1040 struct nfs_client *clp = server->nfs_client;
1041 struct nfs4_opendata *opendata;
1044 /* Protect against reboot recovery conflicts */
1046 if (!(sp = nfs4_get_state_owner(server, cred))) {
1047 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1050 status = nfs4_recover_expired_lease(server);
1052 goto err_put_state_owner;
1053 if (path->dentry->d_inode != NULL)
1054 nfs4_return_incompatible_delegation(path->dentry->d_inode, flags & (FMODE_READ|FMODE_WRITE));
1055 down_read(&clp->cl_sem);
1057 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
1058 if (opendata == NULL)
1059 goto err_release_rwsem;
1061 if (path->dentry->d_inode != NULL)
1062 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1064 status = _nfs4_proc_open(opendata);
1066 goto err_opendata_put;
1068 if (opendata->o_arg.open_flags & O_EXCL)
1069 nfs4_exclusive_attrset(opendata, sattr);
1071 state = nfs4_opendata_to_nfs4_state(opendata);
1072 status = PTR_ERR(state);
1074 goto err_opendata_put;
1075 nfs4_opendata_put(opendata);
1076 nfs4_put_state_owner(sp);
1077 up_read(&clp->cl_sem);
1081 nfs4_opendata_put(opendata);
1083 up_read(&clp->cl_sem);
1084 err_put_state_owner:
1085 nfs4_put_state_owner(sp);
1092 static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred)
1094 struct nfs4_exception exception = { };
1095 struct nfs4_state *res;
1099 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
1102 /* NOTE: BAD_SEQID means the server and client disagree about the
1103 * book-keeping w.r.t. state-changing operations
1104 * (OPEN/CLOSE/LOCK/LOCKU...)
1105 * It is actually a sign of a bug on the client or on the server.
1107 * If we receive a BAD_SEQID error in the particular case of
1108 * doing an OPEN, we assume that nfs_increment_open_seqid() will
1109 * have unhashed the old state_owner for us, and that we can
1110 * therefore safely retry using a new one. We should still warn
1111 * the user though...
1113 if (status == -NFS4ERR_BAD_SEQID) {
1114 printk(KERN_WARNING "NFS: v4 server %s "
1115 " returned a bad sequence-id error!\n",
1116 NFS_SERVER(dir)->nfs_client->cl_hostname);
1117 exception.retry = 1;
1121 * BAD_STATEID on OPEN means that the server cancelled our
1122 * state before it received the OPEN_CONFIRM.
1123 * Recover by retrying the request as per the discussion
1124 * on Page 181 of RFC3530.
1126 if (status == -NFS4ERR_BAD_STATEID) {
1127 exception.retry = 1;
1130 if (status == -EAGAIN) {
1131 /* We must have found a delegation */
1132 exception.retry = 1;
1135 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1136 status, &exception));
1137 } while (exception.retry);
1141 static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1142 struct iattr *sattr, struct nfs4_state *state)
1144 struct nfs_server *server = NFS_SERVER(inode);
1145 struct nfs_setattrargs arg = {
1146 .fh = NFS_FH(inode),
1149 .bitmask = server->attr_bitmask,
1151 struct nfs_setattrres res = {
1155 struct rpc_message msg = {
1156 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1160 unsigned long timestamp = jiffies;
1163 nfs_fattr_init(fattr);
1165 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1166 /* Use that stateid */
1167 } else if (state != NULL) {
1168 msg.rpc_cred = state->owner->so_cred;
1169 nfs4_copy_stateid(&arg.stateid, state, current->files);
1171 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1173 status = rpc_call_sync(server->client, &msg, 0);
1174 if (status == 0 && state != NULL)
1175 renew_lease(server, timestamp);
1179 static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1180 struct iattr *sattr, struct nfs4_state *state)
1182 struct nfs_server *server = NFS_SERVER(inode);
1183 struct nfs4_exception exception = { };
1186 err = nfs4_handle_exception(server,
1187 _nfs4_do_setattr(inode, fattr, sattr, state),
1189 } while (exception.retry);
1193 struct nfs4_closedata {
1195 struct inode *inode;
1196 struct nfs4_state *state;
1197 struct nfs_closeargs arg;
1198 struct nfs_closeres res;
1199 struct nfs_fattr fattr;
1200 unsigned long timestamp;
1203 static void nfs4_free_closedata(void *data)
1205 struct nfs4_closedata *calldata = data;
1206 struct nfs4_state_owner *sp = calldata->state->owner;
1208 nfs4_put_open_state(calldata->state);
1209 nfs_free_seqid(calldata->arg.seqid);
1210 nfs4_put_state_owner(sp);
1211 dput(calldata->path.dentry);
1212 mntput(calldata->path.mnt);
1216 static void nfs4_close_done(struct rpc_task *task, void *data)
1218 struct nfs4_closedata *calldata = data;
1219 struct nfs4_state *state = calldata->state;
1220 struct nfs_server *server = NFS_SERVER(calldata->inode);
1222 if (RPC_ASSASSINATED(task))
1224 /* hmm. we are done with the inode, and in the process of freeing
1225 * the state_owner. we keep this around to process errors
1227 nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid);
1228 switch (task->tk_status) {
1230 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
1231 renew_lease(server, calldata->timestamp);
1233 case -NFS4ERR_STALE_STATEID:
1234 case -NFS4ERR_EXPIRED:
1237 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1238 rpc_restart_call(task);
1242 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
1245 static void nfs4_close_prepare(struct rpc_task *task, void *data)
1247 struct nfs4_closedata *calldata = data;
1248 struct nfs4_state *state = calldata->state;
1249 struct rpc_message msg = {
1250 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1251 .rpc_argp = &calldata->arg,
1252 .rpc_resp = &calldata->res,
1253 .rpc_cred = state->owner->so_cred,
1255 int clear_rd, clear_wr, clear_rdwr;
1257 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
1260 clear_rd = clear_wr = clear_rdwr = 0;
1261 spin_lock(&state->owner->so_lock);
1262 /* Calculate the change in open mode */
1263 if (state->n_rdwr == 0) {
1264 if (state->n_rdonly == 0) {
1265 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1266 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1268 if (state->n_wronly == 0) {
1269 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1270 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1273 spin_unlock(&state->owner->so_lock);
1274 if (!clear_rd && !clear_wr && !clear_rdwr) {
1275 /* Note: exit _without_ calling nfs4_close_done */
1276 task->tk_action = NULL;
1279 nfs_fattr_init(calldata->res.fattr);
1280 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
1281 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1282 calldata->arg.open_flags = FMODE_READ;
1283 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
1284 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1285 calldata->arg.open_flags = FMODE_WRITE;
1287 calldata->timestamp = jiffies;
1288 rpc_call_setup(task, &msg, 0);
1291 static const struct rpc_call_ops nfs4_close_ops = {
1292 .rpc_call_prepare = nfs4_close_prepare,
1293 .rpc_call_done = nfs4_close_done,
1294 .rpc_release = nfs4_free_closedata,
1298 * It is possible for data to be read/written from a mem-mapped file
1299 * after the sys_close call (which hits the vfs layer as a flush).
1300 * This means that we can't safely call nfsv4 close on a file until
1301 * the inode is cleared. This in turn means that we are not good
1302 * NFSv4 citizens - we do not indicate to the server to update the file's
1303 * share state even when we are done with one of the three share
1304 * stateid's in the inode.
1306 * NOTE: Caller must be holding the sp->so_owner semaphore!
1308 int nfs4_do_close(struct path *path, struct nfs4_state *state)
1310 struct nfs_server *server = NFS_SERVER(state->inode);
1311 struct nfs4_closedata *calldata;
1312 struct nfs4_state_owner *sp = state->owner;
1313 struct rpc_task *task;
1314 int status = -ENOMEM;
1316 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
1317 if (calldata == NULL)
1319 calldata->inode = state->inode;
1320 calldata->state = state;
1321 calldata->arg.fh = NFS_FH(state->inode);
1322 calldata->arg.stateid = &state->open_stateid;
1323 /* Serialization for the sequence id */
1324 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
1325 if (calldata->arg.seqid == NULL)
1326 goto out_free_calldata;
1327 calldata->arg.bitmask = server->attr_bitmask;
1328 calldata->res.fattr = &calldata->fattr;
1329 calldata->res.server = server;
1330 calldata->path.mnt = mntget(path->mnt);
1331 calldata->path.dentry = dget(path->dentry);
1333 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_close_ops, calldata);
1335 return PTR_ERR(task);
1341 nfs4_put_open_state(state);
1342 nfs4_put_state_owner(sp);
1346 static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
1351 /* If the open_intent is for execute, we have an extra check to make */
1352 if (nd->intent.open.flags & FMODE_EXEC) {
1353 ret = nfs_may_open(state->inode,
1354 state->owner->so_cred,
1355 nd->intent.open.flags);
1359 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
1360 if (!IS_ERR(filp)) {
1361 struct nfs_open_context *ctx;
1362 ctx = nfs_file_open_context(filp);
1366 ret = PTR_ERR(filp);
1368 nfs4_close_state(path, state, nd->intent.open.flags);
1373 nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1375 struct path path = {
1380 struct rpc_cred *cred;
1381 struct nfs4_state *state;
1384 if (nd->flags & LOOKUP_CREATE) {
1385 attr.ia_mode = nd->intent.open.create_mode;
1386 attr.ia_valid = ATTR_MODE;
1387 if (!IS_POSIXACL(dir))
1388 attr.ia_mode &= ~current->fs->umask;
1391 BUG_ON(nd->intent.open.flags & O_CREAT);
1394 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1396 return (struct dentry *)cred;
1397 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
1399 if (IS_ERR(state)) {
1400 if (PTR_ERR(state) == -ENOENT) {
1401 d_add(dentry, NULL);
1402 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1404 return (struct dentry *)state;
1406 res = d_add_unique(dentry, igrab(state->inode));
1409 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
1410 nfs4_intent_set_file(nd, &path, state);
1415 nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
1417 struct path path = {
1421 struct rpc_cred *cred;
1422 struct nfs4_state *state;
1424 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1426 return PTR_ERR(cred);
1427 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
1429 if (IS_ERR(state)) {
1430 switch (PTR_ERR(state)) {
1436 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1442 if (state->inode == dentry->d_inode) {
1443 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1444 nfs4_intent_set_file(nd, &path, state);
1447 nfs4_close_state(&path, state, openflags);
1454 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1456 struct nfs4_server_caps_res res = {};
1457 struct rpc_message msg = {
1458 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1459 .rpc_argp = fhandle,
1464 status = rpc_call_sync(server->client, &msg, 0);
1466 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1467 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1468 server->caps |= NFS_CAP_ACLS;
1469 if (res.has_links != 0)
1470 server->caps |= NFS_CAP_HARDLINKS;
1471 if (res.has_symlinks != 0)
1472 server->caps |= NFS_CAP_SYMLINKS;
1473 server->acl_bitmask = res.acl_bitmask;
1478 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1480 struct nfs4_exception exception = { };
1483 err = nfs4_handle_exception(server,
1484 _nfs4_server_capabilities(server, fhandle),
1486 } while (exception.retry);
1490 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1491 struct nfs_fsinfo *info)
1493 struct nfs4_lookup_root_arg args = {
1494 .bitmask = nfs4_fattr_bitmap,
1496 struct nfs4_lookup_res res = {
1498 .fattr = info->fattr,
1501 struct rpc_message msg = {
1502 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1506 nfs_fattr_init(info->fattr);
1507 return rpc_call_sync(server->client, &msg, 0);
1510 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1511 struct nfs_fsinfo *info)
1513 struct nfs4_exception exception = { };
1516 err = nfs4_handle_exception(server,
1517 _nfs4_lookup_root(server, fhandle, info),
1519 } while (exception.retry);
1524 * get the file handle for the "/" directory on the server
1526 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
1527 struct nfs_fsinfo *info)
1531 status = nfs4_lookup_root(server, fhandle, info);
1533 status = nfs4_server_capabilities(server, fhandle);
1535 status = nfs4_do_fsinfo(server, fhandle, info);
1536 return nfs4_map_errors(status);
1540 * Get locations and (maybe) other attributes of a referral.
1541 * Note that we'll actually follow the referral later when
1542 * we detect fsid mismatch in inode revalidation
1544 static int nfs4_get_referral(struct inode *dir, const struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
1546 int status = -ENOMEM;
1547 struct page *page = NULL;
1548 struct nfs4_fs_locations *locations = NULL;
1550 page = alloc_page(GFP_KERNEL);
1553 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1554 if (locations == NULL)
1557 status = nfs4_proc_fs_locations(dir, name, locations, page);
1560 /* Make sure server returned a different fsid for the referral */
1561 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
1562 dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name);
1567 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1568 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1570 fattr->mode = S_IFDIR;
1571 memset(fhandle, 0, sizeof(struct nfs_fh));
1580 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1582 struct nfs4_getattr_arg args = {
1584 .bitmask = server->attr_bitmask,
1586 struct nfs4_getattr_res res = {
1590 struct rpc_message msg = {
1591 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1596 nfs_fattr_init(fattr);
1597 return rpc_call_sync(server->client, &msg, 0);
1600 static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1602 struct nfs4_exception exception = { };
1605 err = nfs4_handle_exception(server,
1606 _nfs4_proc_getattr(server, fhandle, fattr),
1608 } while (exception.retry);
1613 * The file is not closed if it is opened due to the a request to change
1614 * the size of the file. The open call will not be needed once the
1615 * VFS layer lookup-intents are implemented.
1617 * Close is called when the inode is destroyed.
1618 * If we haven't opened the file for O_WRONLY, we
1619 * need to in the size_change case to obtain a stateid.
1622 * Because OPEN is always done by name in nfsv4, it is
1623 * possible that we opened a different file by the same
1624 * name. We can recognize this race condition, but we
1625 * can't do anything about it besides returning an error.
1627 * This will be fixed with VFS changes (lookup-intent).
1630 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1631 struct iattr *sattr)
1633 struct rpc_cred *cred;
1634 struct inode *inode = dentry->d_inode;
1635 struct nfs_open_context *ctx;
1636 struct nfs4_state *state = NULL;
1639 nfs_fattr_init(fattr);
1641 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
1643 return PTR_ERR(cred);
1645 /* Search for an existing open(O_WRITE) file */
1646 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1650 status = nfs4_do_setattr(inode, fattr, sattr, state);
1652 nfs_setattr_update_inode(inode, sattr);
1654 put_nfs_open_context(ctx);
1659 static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
1660 const struct qstr *name, struct nfs_fh *fhandle,
1661 struct nfs_fattr *fattr)
1664 struct nfs4_lookup_arg args = {
1665 .bitmask = server->attr_bitmask,
1669 struct nfs4_lookup_res res = {
1674 struct rpc_message msg = {
1675 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1680 nfs_fattr_init(fattr);
1682 dprintk("NFS call lookupfh %s\n", name->name);
1683 status = rpc_call_sync(server->client, &msg, 0);
1684 dprintk("NFS reply lookupfh: %d\n", status);
1688 static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1689 struct qstr *name, struct nfs_fh *fhandle,
1690 struct nfs_fattr *fattr)
1692 struct nfs4_exception exception = { };
1695 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1697 if (err == -NFS4ERR_MOVED) {
1701 err = nfs4_handle_exception(server, err, &exception);
1702 } while (exception.retry);
1706 static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
1707 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1711 dprintk("NFS call lookup %s\n", name->name);
1712 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
1713 if (status == -NFS4ERR_MOVED)
1714 status = nfs4_get_referral(dir, name, fattr, fhandle);
1715 dprintk("NFS reply lookup: %d\n", status);
1719 static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1721 struct nfs4_exception exception = { };
1724 err = nfs4_handle_exception(NFS_SERVER(dir),
1725 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1727 } while (exception.retry);
1731 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1733 struct nfs_server *server = NFS_SERVER(inode);
1734 struct nfs_fattr fattr;
1735 struct nfs4_accessargs args = {
1736 .fh = NFS_FH(inode),
1737 .bitmask = server->attr_bitmask,
1739 struct nfs4_accessres res = {
1743 struct rpc_message msg = {
1744 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1747 .rpc_cred = entry->cred,
1749 int mode = entry->mask;
1753 * Determine which access bits we want to ask for...
1755 if (mode & MAY_READ)
1756 args.access |= NFS4_ACCESS_READ;
1757 if (S_ISDIR(inode->i_mode)) {
1758 if (mode & MAY_WRITE)
1759 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1760 if (mode & MAY_EXEC)
1761 args.access |= NFS4_ACCESS_LOOKUP;
1763 if (mode & MAY_WRITE)
1764 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1765 if (mode & MAY_EXEC)
1766 args.access |= NFS4_ACCESS_EXECUTE;
1768 nfs_fattr_init(&fattr);
1769 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1772 if (res.access & NFS4_ACCESS_READ)
1773 entry->mask |= MAY_READ;
1774 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1775 entry->mask |= MAY_WRITE;
1776 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1777 entry->mask |= MAY_EXEC;
1778 nfs_refresh_inode(inode, &fattr);
1783 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1785 struct nfs4_exception exception = { };
1788 err = nfs4_handle_exception(NFS_SERVER(inode),
1789 _nfs4_proc_access(inode, entry),
1791 } while (exception.retry);
1796 * TODO: For the time being, we don't try to get any attributes
1797 * along with any of the zero-copy operations READ, READDIR,
1800 * In the case of the first three, we want to put the GETATTR
1801 * after the read-type operation -- this is because it is hard
1802 * to predict the length of a GETATTR response in v4, and thus
1803 * align the READ data correctly. This means that the GETATTR
1804 * may end up partially falling into the page cache, and we should
1805 * shift it into the 'tail' of the xdr_buf before processing.
1806 * To do this efficiently, we need to know the total length
1807 * of data received, which doesn't seem to be available outside
1810 * In the case of WRITE, we also want to put the GETATTR after
1811 * the operation -- in this case because we want to make sure
1812 * we get the post-operation mtime and size. This means that
1813 * we can't use xdr_encode_pages() as written: we need a variant
1814 * of it which would leave room in the 'tail' iovec.
1816 * Both of these changes to the XDR layer would in fact be quite
1817 * minor, but I decided to leave them for a subsequent patch.
1819 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1820 unsigned int pgbase, unsigned int pglen)
1822 struct nfs4_readlink args = {
1823 .fh = NFS_FH(inode),
1828 struct rpc_message msg = {
1829 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1834 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1837 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1838 unsigned int pgbase, unsigned int pglen)
1840 struct nfs4_exception exception = { };
1843 err = nfs4_handle_exception(NFS_SERVER(inode),
1844 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1846 } while (exception.retry);
1852 * We will need to arrange for the VFS layer to provide an atomic open.
1853 * Until then, this create/open method is prone to inefficiency and race
1854 * conditions due to the lookup, create, and open VFS calls from sys_open()
1855 * placed on the wire.
1857 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1858 * The file will be opened again in the subsequent VFS open call
1859 * (nfs4_proc_file_open).
1861 * The open for read will just hang around to be used by any process that
1862 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1866 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
1867 int flags, struct nameidata *nd)
1869 struct path path = {
1873 struct nfs4_state *state;
1874 struct rpc_cred *cred;
1877 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1879 status = PTR_ERR(cred);
1882 state = nfs4_do_open(dir, &path, flags, sattr, cred);
1885 if (IS_ERR(state)) {
1886 status = PTR_ERR(state);
1889 d_add(dentry, igrab(state->inode));
1890 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1891 if (flags & O_EXCL) {
1892 struct nfs_fattr fattr;
1893 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
1895 nfs_setattr_update_inode(state->inode, sattr);
1896 nfs_post_op_update_inode(state->inode, &fattr);
1898 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
1899 status = nfs4_intent_set_file(nd, &path, state);
1901 nfs4_close_state(&path, state, flags);
1906 static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1908 struct nfs_server *server = NFS_SERVER(dir);
1909 struct nfs_removeargs args = {
1911 .name.len = name->len,
1912 .name.name = name->name,
1913 .bitmask = server->attr_bitmask,
1915 struct nfs_removeres res = {
1918 struct rpc_message msg = {
1919 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1925 nfs_fattr_init(&res.dir_attr);
1926 status = rpc_call_sync(server->client, &msg, 0);
1928 update_changeattr(dir, &res.cinfo);
1929 nfs_post_op_update_inode(dir, &res.dir_attr);
1934 static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1936 struct nfs4_exception exception = { };
1939 err = nfs4_handle_exception(NFS_SERVER(dir),
1940 _nfs4_proc_remove(dir, name),
1942 } while (exception.retry);
1946 static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
1948 struct nfs_server *server = NFS_SERVER(dir);
1949 struct nfs_removeargs *args = msg->rpc_argp;
1950 struct nfs_removeres *res = msg->rpc_resp;
1952 args->bitmask = server->attr_bitmask;
1953 res->server = server;
1954 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
1957 static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
1959 struct nfs_removeres *res = task->tk_msg.rpc_resp;
1961 if (nfs4_async_handle_error(task, res->server) == -EAGAIN)
1963 update_changeattr(dir, &res->cinfo);
1964 nfs_post_op_update_inode(dir, &res->dir_attr);
1968 static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1969 struct inode *new_dir, struct qstr *new_name)
1971 struct nfs_server *server = NFS_SERVER(old_dir);
1972 struct nfs4_rename_arg arg = {
1973 .old_dir = NFS_FH(old_dir),
1974 .new_dir = NFS_FH(new_dir),
1975 .old_name = old_name,
1976 .new_name = new_name,
1977 .bitmask = server->attr_bitmask,
1979 struct nfs_fattr old_fattr, new_fattr;
1980 struct nfs4_rename_res res = {
1982 .old_fattr = &old_fattr,
1983 .new_fattr = &new_fattr,
1985 struct rpc_message msg = {
1986 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
1992 nfs_fattr_init(res.old_fattr);
1993 nfs_fattr_init(res.new_fattr);
1994 status = rpc_call_sync(server->client, &msg, 0);
1997 update_changeattr(old_dir, &res.old_cinfo);
1998 nfs_post_op_update_inode(old_dir, res.old_fattr);
1999 update_changeattr(new_dir, &res.new_cinfo);
2000 nfs_post_op_update_inode(new_dir, res.new_fattr);
2005 static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2006 struct inode *new_dir, struct qstr *new_name)
2008 struct nfs4_exception exception = { };
2011 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2012 _nfs4_proc_rename(old_dir, old_name,
2015 } while (exception.retry);
2019 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2021 struct nfs_server *server = NFS_SERVER(inode);
2022 struct nfs4_link_arg arg = {
2023 .fh = NFS_FH(inode),
2024 .dir_fh = NFS_FH(dir),
2026 .bitmask = server->attr_bitmask,
2028 struct nfs_fattr fattr, dir_attr;
2029 struct nfs4_link_res res = {
2032 .dir_attr = &dir_attr,
2034 struct rpc_message msg = {
2035 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2041 nfs_fattr_init(res.fattr);
2042 nfs_fattr_init(res.dir_attr);
2043 status = rpc_call_sync(server->client, &msg, 0);
2045 update_changeattr(dir, &res.cinfo);
2046 nfs_post_op_update_inode(dir, res.dir_attr);
2047 nfs_post_op_update_inode(inode, res.fattr);
2053 static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2055 struct nfs4_exception exception = { };
2058 err = nfs4_handle_exception(NFS_SERVER(inode),
2059 _nfs4_proc_link(inode, dir, name),
2061 } while (exception.retry);
2065 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2066 struct page *page, unsigned int len, struct iattr *sattr)
2068 struct nfs_server *server = NFS_SERVER(dir);
2069 struct nfs_fh fhandle;
2070 struct nfs_fattr fattr, dir_fattr;
2071 struct nfs4_create_arg arg = {
2072 .dir_fh = NFS_FH(dir),
2074 .name = &dentry->d_name,
2077 .bitmask = server->attr_bitmask,
2079 struct nfs4_create_res res = {
2083 .dir_fattr = &dir_fattr,
2085 struct rpc_message msg = {
2086 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK],
2092 if (len > NFS4_MAXPATHLEN)
2093 return -ENAMETOOLONG;
2095 arg.u.symlink.pages = &page;
2096 arg.u.symlink.len = len;
2097 nfs_fattr_init(&fattr);
2098 nfs_fattr_init(&dir_fattr);
2100 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2102 update_changeattr(dir, &res.dir_cinfo);
2103 nfs_post_op_update_inode(dir, res.dir_fattr);
2104 status = nfs_instantiate(dentry, &fhandle, &fattr);
2109 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2110 struct page *page, unsigned int len, struct iattr *sattr)
2112 struct nfs4_exception exception = { };
2115 err = nfs4_handle_exception(NFS_SERVER(dir),
2116 _nfs4_proc_symlink(dir, dentry, page,
2119 } while (exception.retry);
2123 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2124 struct iattr *sattr)
2126 struct nfs_server *server = NFS_SERVER(dir);
2127 struct nfs_fh fhandle;
2128 struct nfs_fattr fattr, dir_fattr;
2129 struct nfs4_create_arg arg = {
2130 .dir_fh = NFS_FH(dir),
2132 .name = &dentry->d_name,
2135 .bitmask = server->attr_bitmask,
2137 struct nfs4_create_res res = {
2141 .dir_fattr = &dir_fattr,
2143 struct rpc_message msg = {
2144 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2150 nfs_fattr_init(&fattr);
2151 nfs_fattr_init(&dir_fattr);
2153 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2155 update_changeattr(dir, &res.dir_cinfo);
2156 nfs_post_op_update_inode(dir, res.dir_fattr);
2157 status = nfs_instantiate(dentry, &fhandle, &fattr);
2162 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2163 struct iattr *sattr)
2165 struct nfs4_exception exception = { };
2168 err = nfs4_handle_exception(NFS_SERVER(dir),
2169 _nfs4_proc_mkdir(dir, dentry, sattr),
2171 } while (exception.retry);
2175 static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2176 u64 cookie, struct page *page, unsigned int count, int plus)
2178 struct inode *dir = dentry->d_inode;
2179 struct nfs4_readdir_arg args = {
2184 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2186 struct nfs4_readdir_res res;
2187 struct rpc_message msg = {
2188 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2195 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__,
2196 dentry->d_parent->d_name.name,
2197 dentry->d_name.name,
2198 (unsigned long long)cookie);
2199 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2200 res.pgbase = args.pgbase;
2201 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2203 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
2205 nfs_invalidate_atime(dir);
2207 dprintk("%s: returns %d\n", __FUNCTION__, status);
2211 static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2212 u64 cookie, struct page *page, unsigned int count, int plus)
2214 struct nfs4_exception exception = { };
2217 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2218 _nfs4_proc_readdir(dentry, cred, cookie,
2221 } while (exception.retry);
2225 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2226 struct iattr *sattr, dev_t rdev)
2228 struct nfs_server *server = NFS_SERVER(dir);
2230 struct nfs_fattr fattr, dir_fattr;
2231 struct nfs4_create_arg arg = {
2232 .dir_fh = NFS_FH(dir),
2234 .name = &dentry->d_name,
2236 .bitmask = server->attr_bitmask,
2238 struct nfs4_create_res res = {
2242 .dir_fattr = &dir_fattr,
2244 struct rpc_message msg = {
2245 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2250 int mode = sattr->ia_mode;
2252 nfs_fattr_init(&fattr);
2253 nfs_fattr_init(&dir_fattr);
2255 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2256 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2258 arg.ftype = NF4FIFO;
2259 else if (S_ISBLK(mode)) {
2261 arg.u.device.specdata1 = MAJOR(rdev);
2262 arg.u.device.specdata2 = MINOR(rdev);
2264 else if (S_ISCHR(mode)) {
2266 arg.u.device.specdata1 = MAJOR(rdev);
2267 arg.u.device.specdata2 = MINOR(rdev);
2270 arg.ftype = NF4SOCK;
2272 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2274 update_changeattr(dir, &res.dir_cinfo);
2275 nfs_post_op_update_inode(dir, res.dir_fattr);
2276 status = nfs_instantiate(dentry, &fh, &fattr);
2281 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2282 struct iattr *sattr, dev_t rdev)
2284 struct nfs4_exception exception = { };
2287 err = nfs4_handle_exception(NFS_SERVER(dir),
2288 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2290 } while (exception.retry);
2294 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2295 struct nfs_fsstat *fsstat)
2297 struct nfs4_statfs_arg args = {
2299 .bitmask = server->attr_bitmask,
2301 struct rpc_message msg = {
2302 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2307 nfs_fattr_init(fsstat->fattr);
2308 return rpc_call_sync(server->client, &msg, 0);
2311 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2313 struct nfs4_exception exception = { };
2316 err = nfs4_handle_exception(server,
2317 _nfs4_proc_statfs(server, fhandle, fsstat),
2319 } while (exception.retry);
2323 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2324 struct nfs_fsinfo *fsinfo)
2326 struct nfs4_fsinfo_arg args = {
2328 .bitmask = server->attr_bitmask,
2330 struct rpc_message msg = {
2331 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2336 return rpc_call_sync(server->client, &msg, 0);
2339 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2341 struct nfs4_exception exception = { };
2345 err = nfs4_handle_exception(server,
2346 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2348 } while (exception.retry);
2352 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2354 nfs_fattr_init(fsinfo->fattr);
2355 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2358 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2359 struct nfs_pathconf *pathconf)
2361 struct nfs4_pathconf_arg args = {
2363 .bitmask = server->attr_bitmask,
2365 struct rpc_message msg = {
2366 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2368 .rpc_resp = pathconf,
2371 /* None of the pathconf attributes are mandatory to implement */
2372 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2373 memset(pathconf, 0, sizeof(*pathconf));
2377 nfs_fattr_init(pathconf->fattr);
2378 return rpc_call_sync(server->client, &msg, 0);
2381 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2382 struct nfs_pathconf *pathconf)
2384 struct nfs4_exception exception = { };
2388 err = nfs4_handle_exception(server,
2389 _nfs4_proc_pathconf(server, fhandle, pathconf),
2391 } while (exception.retry);
2395 static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
2397 struct nfs_server *server = NFS_SERVER(data->inode);
2399 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
2400 rpc_restart_call(task);
2404 nfs_invalidate_atime(data->inode);
2405 if (task->tk_status > 0)
2406 renew_lease(server, data->timestamp);
2410 static void nfs4_proc_read_setup(struct nfs_read_data *data)
2412 struct rpc_message msg = {
2413 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ],
2414 .rpc_argp = &data->args,
2415 .rpc_resp = &data->res,
2416 .rpc_cred = data->cred,
2419 data->timestamp = jiffies;
2421 rpc_call_setup(&data->task, &msg, 0);
2424 static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
2426 struct inode *inode = data->inode;
2428 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2429 rpc_restart_call(task);
2432 if (task->tk_status >= 0) {
2433 renew_lease(NFS_SERVER(inode), data->timestamp);
2434 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
2439 static void nfs4_proc_write_setup(struct nfs_write_data *data, int how)
2441 struct rpc_message msg = {
2442 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE],
2443 .rpc_argp = &data->args,
2444 .rpc_resp = &data->res,
2445 .rpc_cred = data->cred,
2447 struct inode *inode = data->inode;
2448 struct nfs_server *server = NFS_SERVER(inode);
2451 if (how & FLUSH_STABLE) {
2452 if (!NFS_I(inode)->ncommit)
2453 stable = NFS_FILE_SYNC;
2455 stable = NFS_DATA_SYNC;
2457 stable = NFS_UNSTABLE;
2458 data->args.stable = stable;
2459 data->args.bitmask = server->attr_bitmask;
2460 data->res.server = server;
2462 data->timestamp = jiffies;
2464 /* Finalize the task. */
2465 rpc_call_setup(&data->task, &msg, 0);
2468 static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
2470 struct inode *inode = data->inode;
2472 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2473 rpc_restart_call(task);
2476 nfs_refresh_inode(inode, data->res.fattr);
2480 static void nfs4_proc_commit_setup(struct nfs_write_data *data, int how)
2482 struct rpc_message msg = {
2483 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
2484 .rpc_argp = &data->args,
2485 .rpc_resp = &data->res,
2486 .rpc_cred = data->cred,
2488 struct nfs_server *server = NFS_SERVER(data->inode);
2490 data->args.bitmask = server->attr_bitmask;
2491 data->res.server = server;
2493 rpc_call_setup(&data->task, &msg, 0);
2497 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2498 * standalone procedure for queueing an asynchronous RENEW.
2500 static void nfs4_renew_done(struct rpc_task *task, void *data)
2502 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
2503 unsigned long timestamp = (unsigned long)data;
2505 if (task->tk_status < 0) {
2506 switch (task->tk_status) {
2507 case -NFS4ERR_STALE_CLIENTID:
2508 case -NFS4ERR_EXPIRED:
2509 case -NFS4ERR_CB_PATH_DOWN:
2510 nfs4_schedule_state_recovery(clp);
2514 spin_lock(&clp->cl_lock);
2515 if (time_before(clp->cl_last_renewal,timestamp))
2516 clp->cl_last_renewal = timestamp;
2517 spin_unlock(&clp->cl_lock);
2520 static const struct rpc_call_ops nfs4_renew_ops = {
2521 .rpc_call_done = nfs4_renew_done,
2524 int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
2526 struct rpc_message msg = {
2527 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2532 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
2533 &nfs4_renew_ops, (void *)jiffies);
2536 int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
2538 struct rpc_message msg = {
2539 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2543 unsigned long now = jiffies;
2546 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2549 spin_lock(&clp->cl_lock);
2550 if (time_before(clp->cl_last_renewal,now))
2551 clp->cl_last_renewal = now;
2552 spin_unlock(&clp->cl_lock);
2556 static inline int nfs4_server_supports_acls(struct nfs_server *server)
2558 return (server->caps & NFS_CAP_ACLS)
2559 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2560 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2563 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2564 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2567 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2569 static void buf_to_pages(const void *buf, size_t buflen,
2570 struct page **pages, unsigned int *pgbase)
2572 const void *p = buf;
2574 *pgbase = offset_in_page(buf);
2576 while (p < buf + buflen) {
2577 *(pages++) = virt_to_page(p);
2578 p += PAGE_CACHE_SIZE;
2582 struct nfs4_cached_acl {
2588 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
2590 struct nfs_inode *nfsi = NFS_I(inode);
2592 spin_lock(&inode->i_lock);
2593 kfree(nfsi->nfs4_acl);
2594 nfsi->nfs4_acl = acl;
2595 spin_unlock(&inode->i_lock);
2598 static void nfs4_zap_acl_attr(struct inode *inode)
2600 nfs4_set_cached_acl(inode, NULL);
2603 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2605 struct nfs_inode *nfsi = NFS_I(inode);
2606 struct nfs4_cached_acl *acl;
2609 spin_lock(&inode->i_lock);
2610 acl = nfsi->nfs4_acl;
2613 if (buf == NULL) /* user is just asking for length */
2615 if (acl->cached == 0)
2617 ret = -ERANGE; /* see getxattr(2) man page */
2618 if (acl->len > buflen)
2620 memcpy(buf, acl->data, acl->len);
2624 spin_unlock(&inode->i_lock);
2628 static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2630 struct nfs4_cached_acl *acl;
2632 if (buf && acl_len <= PAGE_SIZE) {
2633 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2637 memcpy(acl->data, buf, acl_len);
2639 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2646 nfs4_set_cached_acl(inode, acl);
2649 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2651 struct page *pages[NFS4ACL_MAXPAGES];
2652 struct nfs_getaclargs args = {
2653 .fh = NFS_FH(inode),
2657 size_t resp_len = buflen;
2659 struct rpc_message msg = {
2660 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2662 .rpc_resp = &resp_len,
2664 struct page *localpage = NULL;
2667 if (buflen < PAGE_SIZE) {
2668 /* As long as we're doing a round trip to the server anyway,
2669 * let's be prepared for a page of acl data. */
2670 localpage = alloc_page(GFP_KERNEL);
2671 resp_buf = page_address(localpage);
2672 if (localpage == NULL)
2674 args.acl_pages[0] = localpage;
2675 args.acl_pgbase = 0;
2676 resp_len = args.acl_len = PAGE_SIZE;
2679 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2681 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2684 if (resp_len > args.acl_len)
2685 nfs4_write_cached_acl(inode, NULL, resp_len);
2687 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2690 if (resp_len > buflen)
2693 memcpy(buf, resp_buf, resp_len);
2698 __free_page(localpage);
2702 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2704 struct nfs4_exception exception = { };
2707 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2710 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2711 } while (exception.retry);
2715 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2717 struct nfs_server *server = NFS_SERVER(inode);
2720 if (!nfs4_server_supports_acls(server))
2722 ret = nfs_revalidate_inode(server, inode);
2725 ret = nfs4_read_cached_acl(inode, buf, buflen);
2728 return nfs4_get_acl_uncached(inode, buf, buflen);
2731 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2733 struct nfs_server *server = NFS_SERVER(inode);
2734 struct page *pages[NFS4ACL_MAXPAGES];
2735 struct nfs_setaclargs arg = {
2736 .fh = NFS_FH(inode),
2740 struct rpc_message msg = {
2741 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2747 if (!nfs4_server_supports_acls(server))
2749 nfs_inode_return_delegation(inode);
2750 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
2751 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2752 nfs_zap_caches(inode);
2756 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2758 struct nfs4_exception exception = { };
2761 err = nfs4_handle_exception(NFS_SERVER(inode),
2762 __nfs4_proc_set_acl(inode, buf, buflen),
2764 } while (exception.retry);
2769 nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
2771 struct nfs_client *clp = server->nfs_client;
2773 if (!clp || task->tk_status >= 0)
2775 switch(task->tk_status) {
2776 case -NFS4ERR_STALE_CLIENTID:
2777 case -NFS4ERR_STALE_STATEID:
2778 case -NFS4ERR_EXPIRED:
2779 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL, NULL);
2780 nfs4_schedule_state_recovery(clp);
2781 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
2782 rpc_wake_up_task(task);
2783 task->tk_status = 0;
2785 case -NFS4ERR_DELAY:
2786 nfs_inc_server_stats((struct nfs_server *) server,
2788 case -NFS4ERR_GRACE:
2789 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2790 task->tk_status = 0;
2792 case -NFS4ERR_OLD_STATEID:
2793 task->tk_status = 0;
2796 task->tk_status = nfs4_map_errors(task->tk_status);
2800 static int nfs4_wait_bit_interruptible(void *word)
2802 if (signal_pending(current))
2803 return -ERESTARTSYS;
2808 static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
2815 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2817 rpc_clnt_sigmask(clnt, &oldset);
2818 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
2819 nfs4_wait_bit_interruptible,
2820 TASK_INTERRUPTIBLE);
2821 rpc_clnt_sigunmask(clnt, &oldset);
2823 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
2827 static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2835 *timeout = NFS4_POLL_RETRY_MIN;
2836 if (*timeout > NFS4_POLL_RETRY_MAX)
2837 *timeout = NFS4_POLL_RETRY_MAX;
2838 rpc_clnt_sigmask(clnt, &oldset);
2839 if (clnt->cl_intr) {
2840 schedule_timeout_interruptible(*timeout);
2844 schedule_timeout_uninterruptible(*timeout);
2845 rpc_clnt_sigunmask(clnt, &oldset);
2850 /* This is the error handling routine for processes that are allowed
2853 static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
2855 struct nfs_client *clp = server->nfs_client;
2856 int ret = errorcode;
2858 exception->retry = 0;
2862 case -NFS4ERR_STALE_CLIENTID:
2863 case -NFS4ERR_STALE_STATEID:
2864 case -NFS4ERR_EXPIRED:
2865 nfs4_schedule_state_recovery(clp);
2866 ret = nfs4_wait_clnt_recover(server->client, clp);
2868 exception->retry = 1;
2870 case -NFS4ERR_FILE_OPEN:
2871 case -NFS4ERR_GRACE:
2872 case -NFS4ERR_DELAY:
2873 ret = nfs4_delay(server->client, &exception->timeout);
2876 case -NFS4ERR_OLD_STATEID:
2877 exception->retry = 1;
2879 /* We failed to handle the error */
2880 return nfs4_map_errors(ret);
2883 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
2885 nfs4_verifier sc_verifier;
2886 struct nfs4_setclientid setclientid = {
2887 .sc_verifier = &sc_verifier,
2890 struct rpc_message msg = {
2891 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2892 .rpc_argp = &setclientid,
2900 p = (__be32*)sc_verifier.data;
2901 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2902 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2905 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
2906 sizeof(setclientid.sc_name), "%s/%u.%u.%u.%u %s %u",
2907 clp->cl_ipaddr, NIPQUAD(clp->cl_addr.sin_addr),
2908 cred->cr_ops->cr_name,
2909 clp->cl_id_uniquifier);
2910 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
2911 sizeof(setclientid.sc_netid), "tcp");
2912 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
2913 sizeof(setclientid.sc_uaddr), "%s.%d.%d",
2914 clp->cl_ipaddr, port >> 8, port & 255);
2916 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2917 if (status != -NFS4ERR_CLID_INUSE)
2922 ssleep(clp->cl_lease_time + 1);
2924 if (++clp->cl_id_uniquifier == 0)
2930 static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
2932 struct nfs_fsinfo fsinfo;
2933 struct rpc_message msg = {
2934 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2936 .rpc_resp = &fsinfo,
2943 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2945 spin_lock(&clp->cl_lock);
2946 clp->cl_lease_time = fsinfo.lease_time * HZ;
2947 clp->cl_last_renewal = now;
2948 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
2949 spin_unlock(&clp->cl_lock);
2954 int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
2959 err = _nfs4_proc_setclientid_confirm(clp, cred);
2963 case -NFS4ERR_RESOURCE:
2964 /* The IBM lawyers misread another document! */
2965 case -NFS4ERR_DELAY:
2966 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2972 struct nfs4_delegreturndata {
2973 struct nfs4_delegreturnargs args;
2974 struct nfs4_delegreturnres res;
2976 nfs4_stateid stateid;
2977 struct rpc_cred *cred;
2978 unsigned long timestamp;
2979 struct nfs_fattr fattr;
2983 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *calldata)
2985 struct nfs4_delegreturndata *data = calldata;
2986 struct rpc_message msg = {
2987 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
2988 .rpc_argp = &data->args,
2989 .rpc_resp = &data->res,
2990 .rpc_cred = data->cred,
2992 nfs_fattr_init(data->res.fattr);
2993 rpc_call_setup(task, &msg, 0);
2996 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2998 struct nfs4_delegreturndata *data = calldata;
2999 data->rpc_status = task->tk_status;
3000 if (data->rpc_status == 0)
3001 renew_lease(data->res.server, data->timestamp);
3004 static void nfs4_delegreturn_release(void *calldata)
3006 struct nfs4_delegreturndata *data = calldata;
3008 put_rpccred(data->cred);
3012 static const struct rpc_call_ops nfs4_delegreturn_ops = {
3013 .rpc_call_prepare = nfs4_delegreturn_prepare,
3014 .rpc_call_done = nfs4_delegreturn_done,
3015 .rpc_release = nfs4_delegreturn_release,
3018 static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
3020 struct nfs4_delegreturndata *data;
3021 struct nfs_server *server = NFS_SERVER(inode);
3022 struct rpc_task *task;
3025 data = kmalloc(sizeof(*data), GFP_KERNEL);
3028 data->args.fhandle = &data->fh;
3029 data->args.stateid = &data->stateid;
3030 data->args.bitmask = server->attr_bitmask;
3031 nfs_copy_fh(&data->fh, NFS_FH(inode));
3032 memcpy(&data->stateid, stateid, sizeof(data->stateid));
3033 data->res.fattr = &data->fattr;
3034 data->res.server = server;
3035 data->cred = get_rpccred(cred);
3036 data->timestamp = jiffies;
3037 data->rpc_status = 0;
3039 task = rpc_run_task(NFS_CLIENT(inode), RPC_TASK_ASYNC, &nfs4_delegreturn_ops, data);
3041 return PTR_ERR(task);
3042 status = nfs4_wait_for_completion_rpc_task(task);
3044 status = data->rpc_status;
3046 nfs_refresh_inode(inode, &data->fattr);
3052 int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
3054 struct nfs_server *server = NFS_SERVER(inode);
3055 struct nfs4_exception exception = { };
3058 err = _nfs4_proc_delegreturn(inode, cred, stateid);
3060 case -NFS4ERR_STALE_STATEID:
3061 case -NFS4ERR_EXPIRED:
3065 err = nfs4_handle_exception(server, err, &exception);
3066 } while (exception.retry);
3070 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3071 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3074 * sleep, with exponential backoff, and retry the LOCK operation.
3076 static unsigned long
3077 nfs4_set_lock_task_retry(unsigned long timeout)
3079 schedule_timeout_interruptible(timeout);
3081 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3082 return NFS4_LOCK_MAXTIMEOUT;
3086 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3088 struct inode *inode = state->inode;
3089 struct nfs_server *server = NFS_SERVER(inode);
3090 struct nfs_client *clp = server->nfs_client;
3091 struct nfs_lockt_args arg = {
3092 .fh = NFS_FH(inode),
3095 struct nfs_lockt_res res = {
3098 struct rpc_message msg = {
3099 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3102 .rpc_cred = state->owner->so_cred,
3104 struct nfs4_lock_state *lsp;
3107 down_read(&clp->cl_sem);
3108 arg.lock_owner.clientid = clp->cl_clientid;
3109 status = nfs4_set_lock_state(state, request);
3112 lsp = request->fl_u.nfs4_fl.owner;
3113 arg.lock_owner.id = lsp->ls_id.id;
3114 status = rpc_call_sync(server->client, &msg, 0);
3117 request->fl_type = F_UNLCK;
3119 case -NFS4ERR_DENIED:
3122 request->fl_ops->fl_release_private(request);
3124 up_read(&clp->cl_sem);
3128 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3130 struct nfs4_exception exception = { };
3134 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3135 _nfs4_proc_getlk(state, cmd, request),
3137 } while (exception.retry);
3141 static int do_vfs_lock(struct file *file, struct file_lock *fl)
3144 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3146 res = posix_lock_file_wait(file, fl);
3149 res = flock_lock_file_wait(file, fl);
3157 struct nfs4_unlockdata {
3158 struct nfs_locku_args arg;
3159 struct nfs_locku_res res;
3160 struct nfs4_lock_state *lsp;
3161 struct nfs_open_context *ctx;
3162 struct file_lock fl;
3163 const struct nfs_server *server;
3164 unsigned long timestamp;
3167 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3168 struct nfs_open_context *ctx,
3169 struct nfs4_lock_state *lsp,
3170 struct nfs_seqid *seqid)
3172 struct nfs4_unlockdata *p;
3173 struct inode *inode = lsp->ls_state->inode;
3175 p = kmalloc(sizeof(*p), GFP_KERNEL);
3178 p->arg.fh = NFS_FH(inode);
3180 p->arg.seqid = seqid;
3181 p->arg.stateid = &lsp->ls_stateid;
3183 atomic_inc(&lsp->ls_count);
3184 /* Ensure we don't close file until we're done freeing locks! */
3185 p->ctx = get_nfs_open_context(ctx);
3186 memcpy(&p->fl, fl, sizeof(p->fl));
3187 p->server = NFS_SERVER(inode);
3191 static void nfs4_locku_release_calldata(void *data)
3193 struct nfs4_unlockdata *calldata = data;
3194 nfs_free_seqid(calldata->arg.seqid);
3195 nfs4_put_lock_state(calldata->lsp);
3196 put_nfs_open_context(calldata->ctx);
3200 static void nfs4_locku_done(struct rpc_task *task, void *data)
3202 struct nfs4_unlockdata *calldata = data;
3204 if (RPC_ASSASSINATED(task))
3206 nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid);
3207 switch (task->tk_status) {
3209 memcpy(calldata->lsp->ls_stateid.data,
3210 calldata->res.stateid.data,
3211 sizeof(calldata->lsp->ls_stateid.data));
3212 renew_lease(calldata->server, calldata->timestamp);
3214 case -NFS4ERR_STALE_STATEID:
3215 case -NFS4ERR_EXPIRED:
3218 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
3219 rpc_restart_call(task);
3223 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
3225 struct nfs4_unlockdata *calldata = data;
3226 struct rpc_message msg = {
3227 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3228 .rpc_argp = &calldata->arg,
3229 .rpc_resp = &calldata->res,
3230 .rpc_cred = calldata->lsp->ls_state->owner->so_cred,
3233 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
3235 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
3236 /* Note: exit _without_ running nfs4_locku_done */
3237 task->tk_action = NULL;
3240 calldata->timestamp = jiffies;
3241 rpc_call_setup(task, &msg, 0);
3244 static const struct rpc_call_ops nfs4_locku_ops = {
3245 .rpc_call_prepare = nfs4_locku_prepare,
3246 .rpc_call_done = nfs4_locku_done,
3247 .rpc_release = nfs4_locku_release_calldata,
3250 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3251 struct nfs_open_context *ctx,
3252 struct nfs4_lock_state *lsp,
3253 struct nfs_seqid *seqid)
3255 struct nfs4_unlockdata *data;
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);
3264 nfs_free_seqid(seqid);
3265 return ERR_PTR(-ENOMEM);
3268 return rpc_run_task(NFS_CLIENT(lsp->ls_state->inode), RPC_TASK_ASYNC, &nfs4_locku_ops, data);
3271 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3273 struct nfs_seqid *seqid;
3274 struct nfs4_lock_state *lsp;
3275 struct rpc_task *task;
3278 status = nfs4_set_lock_state(state, request);
3279 /* Unlock _before_ we do the RPC call */
3280 request->fl_flags |= FL_EXISTS;
3281 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3285 /* Is this a delegated lock? */
3286 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
3288 lsp = request->fl_u.nfs4_fl.owner;
3289 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3293 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
3294 status = PTR_ERR(task);
3297 status = nfs4_wait_for_completion_rpc_task(task);
3303 struct nfs4_lockdata {
3304 struct nfs_lock_args arg;
3305 struct nfs_lock_res res;
3306 struct nfs4_lock_state *lsp;
3307 struct nfs_open_context *ctx;
3308 struct file_lock fl;
3309 unsigned long timestamp;
3314 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3315 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3317 struct nfs4_lockdata *p;
3318 struct inode *inode = lsp->ls_state->inode;
3319 struct nfs_server *server = NFS_SERVER(inode);
3321 p = kzalloc(sizeof(*p), GFP_KERNEL);
3325 p->arg.fh = NFS_FH(inode);
3327 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3328 if (p->arg.lock_seqid == NULL)
3330 p->arg.lock_stateid = &lsp->ls_stateid;
3331 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
3332 p->arg.lock_owner.id = lsp->ls_id.id;
3334 atomic_inc(&lsp->ls_count);
3335 p->ctx = get_nfs_open_context(ctx);
3336 memcpy(&p->fl, fl, sizeof(p->fl));
3343 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3345 struct nfs4_lockdata *data = calldata;
3346 struct nfs4_state *state = data->lsp->ls_state;
3347 struct nfs4_state_owner *sp = state->owner;
3348 struct rpc_message msg = {
3349 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3350 .rpc_argp = &data->arg,
3351 .rpc_resp = &data->res,
3352 .rpc_cred = sp->so_cred,
3355 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3357 dprintk("%s: begin!\n", __FUNCTION__);
3358 /* Do we need to do an open_to_lock_owner? */
3359 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
3360 data->arg.open_seqid = nfs_alloc_seqid(&sp->so_seqid);
3361 if (data->arg.open_seqid == NULL) {
3362 data->rpc_status = -ENOMEM;
3363 task->tk_action = NULL;
3366 data->arg.open_stateid = &state->stateid;
3367 data->arg.new_lock_owner = 1;
3369 data->timestamp = jiffies;
3370 rpc_call_setup(task, &msg, 0);
3372 dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status);
3375 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3377 struct nfs4_lockdata *data = calldata;
3379 dprintk("%s: begin!\n", __FUNCTION__);
3381 data->rpc_status = task->tk_status;
3382 if (RPC_ASSASSINATED(task))
3384 if (data->arg.new_lock_owner != 0) {
3385 nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid);
3386 if (data->rpc_status == 0)
3387 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
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 nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid);
3399 dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status);
3402 static void nfs4_lock_release(void *calldata)
3404 struct nfs4_lockdata *data = calldata;
3406 dprintk("%s: begin!\n", __FUNCTION__);
3407 if (data->arg.open_seqid != NULL)
3408 nfs_free_seqid(data->arg.open_seqid);
3409 if (data->cancelled != 0) {
3410 struct rpc_task *task;
3411 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3412 data->arg.lock_seqid);
3415 dprintk("%s: cancelling lock!\n", __FUNCTION__);
3417 nfs_free_seqid(data->arg.lock_seqid);
3418 nfs4_put_lock_state(data->lsp);
3419 put_nfs_open_context(data->ctx);
3421 dprintk("%s: done!\n", __FUNCTION__);
3424 static const struct rpc_call_ops nfs4_lock_ops = {
3425 .rpc_call_prepare = nfs4_lock_prepare,
3426 .rpc_call_done = nfs4_lock_done,
3427 .rpc_release = nfs4_lock_release,
3430 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3432 struct nfs4_lockdata *data;
3433 struct rpc_task *task;
3436 dprintk("%s: begin!\n", __FUNCTION__);
3437 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
3438 fl->fl_u.nfs4_fl.owner);
3442 data->arg.block = 1;
3444 data->arg.reclaim = 1;
3445 task = rpc_run_task(NFS_CLIENT(state->inode), RPC_TASK_ASYNC,
3446 &nfs4_lock_ops, data);
3448 return PTR_ERR(task);
3449 ret = nfs4_wait_for_completion_rpc_task(task);
3451 ret = data->rpc_status;
3452 if (ret == -NFS4ERR_DENIED)
3455 data->cancelled = 1;
3457 dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret);
3461 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3463 struct nfs_server *server = NFS_SERVER(state->inode);
3464 struct nfs4_exception exception = { };
3468 /* Cache the lock if possible... */
3469 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3471 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3472 if (err != -NFS4ERR_DELAY)
3474 nfs4_handle_exception(server, err, &exception);
3475 } while (exception.retry);
3479 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3481 struct nfs_server *server = NFS_SERVER(state->inode);
3482 struct nfs4_exception exception = { };
3485 err = nfs4_set_lock_state(state, request);
3489 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3491 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3492 if (err != -NFS4ERR_DELAY)
3494 nfs4_handle_exception(server, err, &exception);
3495 } while (exception.retry);
3499 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3501 struct nfs_client *clp = state->owner->so_client;
3502 unsigned char fl_flags = request->fl_flags;
3505 /* Is this a delegated open? */
3506 status = nfs4_set_lock_state(state, request);
3509 request->fl_flags |= FL_ACCESS;
3510 status = do_vfs_lock(request->fl_file, request);
3513 down_read(&clp->cl_sem);
3514 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3515 struct nfs_inode *nfsi = NFS_I(state->inode);
3516 /* Yes: cache locks! */
3517 down_read(&nfsi->rwsem);
3518 /* ...but avoid races with delegation recall... */
3519 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3520 request->fl_flags = fl_flags & ~FL_SLEEP;
3521 status = do_vfs_lock(request->fl_file, request);
3522 up_read(&nfsi->rwsem);
3525 up_read(&nfsi->rwsem);
3527 status = _nfs4_do_setlk(state, cmd, request, 0);
3530 /* Note: we always want to sleep here! */
3531 request->fl_flags = fl_flags | FL_SLEEP;
3532 if (do_vfs_lock(request->fl_file, request) < 0)
3533 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
3535 up_read(&clp->cl_sem);
3537 request->fl_flags = fl_flags;
3541 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3543 struct nfs4_exception exception = { };
3547 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3548 _nfs4_proc_setlk(state, cmd, request),
3550 } while (exception.retry);
3555 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3557 struct nfs_open_context *ctx;
3558 struct nfs4_state *state;
3559 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3562 /* verify open state */
3563 ctx = nfs_file_open_context(filp);
3566 if (request->fl_start < 0 || request->fl_end < 0)
3570 return nfs4_proc_getlk(state, F_GETLK, request);
3572 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3575 if (request->fl_type == F_UNLCK)
3576 return nfs4_proc_unlck(state, cmd, request);
3579 status = nfs4_proc_setlk(state, cmd, request);
3580 if ((status != -EAGAIN) || IS_SETLK(cmd))
3582 timeout = nfs4_set_lock_task_retry(timeout);
3583 status = -ERESTARTSYS;
3586 } while(status < 0);
3590 int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3592 struct nfs_server *server = NFS_SERVER(state->inode);
3593 struct nfs4_exception exception = { };
3596 err = nfs4_set_lock_state(state, fl);
3600 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3601 if (err != -NFS4ERR_DELAY)
3603 err = nfs4_handle_exception(server, err, &exception);
3604 } while (exception.retry);
3609 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3611 int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3612 size_t buflen, int flags)
3614 struct inode *inode = dentry->d_inode;
3616 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3619 if (!S_ISREG(inode->i_mode) &&
3620 (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX))
3623 return nfs4_proc_set_acl(inode, buf, buflen);
3626 /* The getxattr man page suggests returning -ENODATA for unknown attributes,
3627 * and that's what we'll do for e.g. user attributes that haven't been set.
3628 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3629 * attributes in kernel-managed attribute namespaces. */
3630 ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3633 struct inode *inode = dentry->d_inode;
3635 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3638 return nfs4_proc_get_acl(inode, buf, buflen);
3641 ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3643 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
3645 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3647 if (buf && buflen < len)
3650 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3654 int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
3655 struct nfs4_fs_locations *fs_locations, struct page *page)
3657 struct nfs_server *server = NFS_SERVER(dir);
3659 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3660 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
3662 struct nfs4_fs_locations_arg args = {
3663 .dir_fh = NFS_FH(dir),
3668 struct rpc_message msg = {
3669 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3671 .rpc_resp = fs_locations,
3675 dprintk("%s: start\n", __FUNCTION__);
3676 nfs_fattr_init(&fs_locations->fattr);
3677 fs_locations->server = server;
3678 fs_locations->nlocations = 0;
3679 status = rpc_call_sync(server->client, &msg, 0);
3680 dprintk("%s: returned status = %d\n", __FUNCTION__, status);
3684 struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3685 .recover_open = nfs4_open_reclaim,
3686 .recover_lock = nfs4_lock_reclaim,
3689 struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3690 .recover_open = nfs4_open_expired,
3691 .recover_lock = nfs4_lock_expired,
3694 static const struct inode_operations nfs4_file_inode_operations = {
3695 .permission = nfs_permission,
3696 .getattr = nfs_getattr,
3697 .setattr = nfs_setattr,
3698 .getxattr = nfs4_getxattr,
3699 .setxattr = nfs4_setxattr,
3700 .listxattr = nfs4_listxattr,
3703 const struct nfs_rpc_ops nfs_v4_clientops = {
3704 .version = 4, /* protocol version */
3705 .dentry_ops = &nfs4_dentry_operations,
3706 .dir_inode_ops = &nfs4_dir_inode_operations,
3707 .file_inode_ops = &nfs4_file_inode_operations,
3708 .getroot = nfs4_proc_get_root,
3709 .getattr = nfs4_proc_getattr,
3710 .setattr = nfs4_proc_setattr,
3711 .lookupfh = nfs4_proc_lookupfh,
3712 .lookup = nfs4_proc_lookup,
3713 .access = nfs4_proc_access,
3714 .readlink = nfs4_proc_readlink,
3715 .create = nfs4_proc_create,
3716 .remove = nfs4_proc_remove,
3717 .unlink_setup = nfs4_proc_unlink_setup,
3718 .unlink_done = nfs4_proc_unlink_done,
3719 .rename = nfs4_proc_rename,
3720 .link = nfs4_proc_link,
3721 .symlink = nfs4_proc_symlink,
3722 .mkdir = nfs4_proc_mkdir,
3723 .rmdir = nfs4_proc_remove,
3724 .readdir = nfs4_proc_readdir,
3725 .mknod = nfs4_proc_mknod,
3726 .statfs = nfs4_proc_statfs,
3727 .fsinfo = nfs4_proc_fsinfo,
3728 .pathconf = nfs4_proc_pathconf,
3729 .set_capabilities = nfs4_server_capabilities,
3730 .decode_dirent = nfs4_decode_dirent,
3731 .read_setup = nfs4_proc_read_setup,
3732 .read_done = nfs4_read_done,
3733 .write_setup = nfs4_proc_write_setup,
3734 .write_done = nfs4_write_done,
3735 .commit_setup = nfs4_proc_commit_setup,
3736 .commit_done = nfs4_commit_done,
3737 .file_open = nfs_open,
3738 .file_release = nfs_release,
3739 .lock = nfs4_proc_lock,
3740 .clear_acl_cache = nfs4_zap_acl_attr,