4 * Client-side procedure declarations for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
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_proc_access(struct inode *inode, struct nfs_access_entry *entry);
66 static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception);
67 static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp);
69 /* Prevent leaks of NFSv4 errors into userland */
70 int nfs4_map_errors(int err)
73 dprintk("%s could not handle NFSv4 error %d\n",
81 * This is our standard bitmap for GETATTR requests.
83 const u32 nfs4_fattr_bitmap[2] = {
88 | FATTR4_WORD0_FILEID,
90 | FATTR4_WORD1_NUMLINKS
92 | FATTR4_WORD1_OWNER_GROUP
94 | FATTR4_WORD1_SPACE_USED
95 | FATTR4_WORD1_TIME_ACCESS
96 | FATTR4_WORD1_TIME_METADATA
97 | FATTR4_WORD1_TIME_MODIFY
100 const u32 nfs4_statfs_bitmap[2] = {
101 FATTR4_WORD0_FILES_AVAIL
102 | FATTR4_WORD0_FILES_FREE
103 | FATTR4_WORD0_FILES_TOTAL,
104 FATTR4_WORD1_SPACE_AVAIL
105 | FATTR4_WORD1_SPACE_FREE
106 | FATTR4_WORD1_SPACE_TOTAL
109 const u32 nfs4_pathconf_bitmap[2] = {
111 | FATTR4_WORD0_MAXNAME,
115 const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
116 | FATTR4_WORD0_MAXREAD
117 | FATTR4_WORD0_MAXWRITE
118 | FATTR4_WORD0_LEASE_TIME,
122 const u32 nfs4_fs_locations_bitmap[2] = {
124 | FATTR4_WORD0_CHANGE
127 | FATTR4_WORD0_FILEID
128 | FATTR4_WORD0_FS_LOCATIONS,
130 | FATTR4_WORD1_NUMLINKS
132 | FATTR4_WORD1_OWNER_GROUP
133 | FATTR4_WORD1_RAWDEV
134 | FATTR4_WORD1_SPACE_USED
135 | FATTR4_WORD1_TIME_ACCESS
136 | FATTR4_WORD1_TIME_METADATA
137 | FATTR4_WORD1_TIME_MODIFY
138 | FATTR4_WORD1_MOUNTED_ON_FILEID
141 static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
142 struct nfs4_readdir_arg *readdir)
146 BUG_ON(readdir->count < 80);
148 readdir->cookie = cookie;
149 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
154 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
159 * NFSv4 servers do not return entries for '.' and '..'
160 * Therefore, we fake these entries here. We let '.'
161 * have cookie 0 and '..' have cookie 1. Note that
162 * when talking to the server, we always send cookie 0
165 start = p = kmap_atomic(*readdir->pages, KM_USER0);
168 *p++ = xdr_one; /* next */
169 *p++ = xdr_zero; /* cookie, first word */
170 *p++ = xdr_one; /* cookie, second word */
171 *p++ = xdr_one; /* entry len */
172 memcpy(p, ".\0\0\0", 4); /* entry */
174 *p++ = xdr_one; /* bitmap length */
175 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
176 *p++ = htonl(8); /* attribute buffer length */
177 p = xdr_encode_hyper(p, dentry->d_inode->i_ino);
180 *p++ = xdr_one; /* next */
181 *p++ = xdr_zero; /* cookie, first word */
182 *p++ = xdr_two; /* cookie, second word */
183 *p++ = xdr_two; /* entry len */
184 memcpy(p, "..\0\0", 4); /* entry */
186 *p++ = xdr_one; /* bitmap length */
187 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
188 *p++ = htonl(8); /* attribute buffer length */
189 p = xdr_encode_hyper(p, dentry->d_parent->d_inode->i_ino);
191 readdir->pgbase = (char *)p - (char *)start;
192 readdir->count -= readdir->pgbase;
193 kunmap_atomic(start, KM_USER0);
196 static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
198 struct nfs_client *clp = server->nfs_client;
199 spin_lock(&clp->cl_lock);
200 if (time_before(clp->cl_last_renewal,timestamp))
201 clp->cl_last_renewal = timestamp;
202 spin_unlock(&clp->cl_lock);
205 static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
207 struct nfs_inode *nfsi = NFS_I(dir);
209 spin_lock(&dir->i_lock);
210 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
211 if (cinfo->before == nfsi->change_attr && cinfo->atomic)
212 nfsi->change_attr = cinfo->after;
213 spin_unlock(&dir->i_lock);
216 struct nfs4_opendata {
218 struct nfs_openargs o_arg;
219 struct nfs_openres o_res;
220 struct nfs_open_confirmargs c_arg;
221 struct nfs_open_confirmres c_res;
222 struct nfs_fattr f_attr;
223 struct nfs_fattr dir_attr;
226 struct nfs4_state_owner *owner;
228 unsigned long timestamp;
234 static void nfs4_init_opendata_res(struct nfs4_opendata *p)
236 p->o_res.f_attr = &p->f_attr;
237 p->o_res.dir_attr = &p->dir_attr;
238 p->o_res.server = p->o_arg.server;
239 nfs_fattr_init(&p->f_attr);
240 nfs_fattr_init(&p->dir_attr);
243 static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
244 struct nfs4_state_owner *sp, int flags,
245 const struct iattr *attrs)
247 struct dentry *parent = dget_parent(path->dentry);
248 struct inode *dir = parent->d_inode;
249 struct nfs_server *server = NFS_SERVER(dir);
250 struct nfs4_opendata *p;
252 p = kzalloc(sizeof(*p), GFP_KERNEL);
255 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
256 if (p->o_arg.seqid == NULL)
258 p->path.mnt = mntget(path->mnt);
259 p->path.dentry = dget(path->dentry);
262 atomic_inc(&sp->so_count);
263 p->o_arg.fh = NFS_FH(dir);
264 p->o_arg.open_flags = flags,
265 p->o_arg.clientid = server->nfs_client->cl_clientid;
266 p->o_arg.id = sp->so_owner_id.id;
267 p->o_arg.name = &p->path.dentry->d_name;
268 p->o_arg.server = server;
269 p->o_arg.bitmask = server->attr_bitmask;
270 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
271 if (flags & O_EXCL) {
272 u32 *s = (u32 *) p->o_arg.u.verifier.data;
275 } else if (flags & O_CREAT) {
276 p->o_arg.u.attrs = &p->attrs;
277 memcpy(&p->attrs, attrs, sizeof(p->attrs));
279 p->c_arg.fh = &p->o_res.fh;
280 p->c_arg.stateid = &p->o_res.stateid;
281 p->c_arg.seqid = p->o_arg.seqid;
282 nfs4_init_opendata_res(p);
292 static void nfs4_opendata_free(struct kref *kref)
294 struct nfs4_opendata *p = container_of(kref,
295 struct nfs4_opendata, kref);
297 nfs_free_seqid(p->o_arg.seqid);
298 nfs4_put_state_owner(p->owner);
300 dput(p->path.dentry);
305 static void nfs4_opendata_put(struct nfs4_opendata *p)
308 kref_put(&p->kref, nfs4_opendata_free);
311 static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
316 rpc_clnt_sigmask(task->tk_client, &oldset);
317 ret = rpc_wait_for_completion_task(task);
318 rpc_clnt_sigunmask(task->tk_client, &oldset);
322 static void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
324 switch (open_flags) {
331 case FMODE_READ|FMODE_WRITE:
334 nfs4_state_set_mode_locked(state, state->state | open_flags);
337 static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
339 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
340 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
341 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
342 switch (open_flags) {
344 set_bit(NFS_O_RDONLY_STATE, &state->flags);
347 set_bit(NFS_O_WRONLY_STATE, &state->flags);
349 case FMODE_READ|FMODE_WRITE:
350 set_bit(NFS_O_RDWR_STATE, &state->flags);
354 static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
356 spin_lock(&state->owner->so_lock);
357 spin_lock(&state->inode->i_lock);
358 nfs_set_open_stateid_locked(state, stateid, open_flags);
359 spin_unlock(&state->inode->i_lock);
360 spin_unlock(&state->owner->so_lock);
363 static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *deleg_stateid, int open_flags)
365 struct inode *inode = state->inode;
367 open_flags &= (FMODE_READ|FMODE_WRITE);
368 /* Protect against nfs4_find_state_byowner() */
369 spin_lock(&state->owner->so_lock);
370 spin_lock(&inode->i_lock);
371 if (deleg_stateid != NULL) {
372 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
373 set_bit(NFS_DELEGATED_STATE, &state->flags);
375 if (open_stateid != NULL)
376 nfs_set_open_stateid_locked(state, open_stateid, open_flags);
377 update_open_stateflags(state, open_flags);
378 spin_unlock(&inode->i_lock);
379 spin_unlock(&state->owner->so_lock);
382 static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
385 struct nfs4_state *state = NULL;
386 struct nfs_delegation *delegation;
387 nfs4_stateid *deleg_stateid = NULL;
389 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
391 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
394 state = nfs4_get_open_state(inode, data->owner);
397 if (data->o_res.delegation_type != 0) {
398 int delegation_flags = 0;
401 delegation = rcu_dereference(NFS_I(inode)->delegation);
403 delegation_flags = delegation->flags;
405 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
406 nfs_inode_set_delegation(state->inode,
407 data->owner->so_cred,
410 nfs_inode_reclaim_delegation(state->inode,
411 data->owner->so_cred,
415 delegation = rcu_dereference(NFS_I(inode)->delegation);
416 if (delegation != NULL)
417 deleg_stateid = &delegation->stateid;
418 update_open_stateid(state, &data->o_res.stateid, deleg_stateid, data->o_arg.open_flags);
426 static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
428 struct nfs_inode *nfsi = NFS_I(state->inode);
429 struct nfs_open_context *ctx;
431 spin_lock(&state->inode->i_lock);
432 list_for_each_entry(ctx, &nfsi->open_files, list) {
433 if (ctx->state != state)
435 get_nfs_open_context(ctx);
436 spin_unlock(&state->inode->i_lock);
439 spin_unlock(&state->inode->i_lock);
440 return ERR_PTR(-ENOENT);
443 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, struct nfs4_state **res)
445 struct nfs4_state *newstate;
448 opendata->o_arg.open_flags = openflags;
449 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
450 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
451 nfs4_init_opendata_res(opendata);
452 ret = _nfs4_proc_open(opendata);
455 newstate = nfs4_opendata_to_nfs4_state(opendata);
456 if (newstate != NULL)
457 nfs4_close_state(&opendata->path, newstate, openflags);
462 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
464 struct nfs4_state *newstate;
467 /* memory barrier prior to reading state->n_* */
468 clear_bit(NFS_DELEGATED_STATE, &state->flags);
470 if (state->n_rdwr != 0) {
471 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
474 if (newstate != state)
477 if (state->n_wronly != 0) {
478 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
481 if (newstate != state)
484 if (state->n_rdonly != 0) {
485 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
488 if (newstate != state)
496 * reclaim state on the server after a reboot.
498 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
500 struct nfs_delegation *delegation = NFS_I(state->inode)->delegation;
501 struct nfs4_opendata *opendata;
502 int delegation_type = 0;
505 if (delegation != NULL) {
506 if (!(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
507 memcpy(&state->stateid, &delegation->stateid,
508 sizeof(state->stateid));
509 set_bit(NFS_DELEGATED_STATE, &state->flags);
512 delegation_type = delegation->type;
514 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
515 if (opendata == NULL)
517 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
518 opendata->o_arg.fh = NFS_FH(state->inode);
519 nfs_copy_fh(&opendata->o_res.fh, opendata->o_arg.fh);
520 opendata->o_arg.u.delegation_type = delegation_type;
521 status = nfs4_open_recover(opendata, state);
522 nfs4_opendata_put(opendata);
526 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
528 struct nfs_server *server = NFS_SERVER(state->inode);
529 struct nfs4_exception exception = { };
532 err = _nfs4_do_open_reclaim(ctx, state);
533 if (err != -NFS4ERR_DELAY)
535 nfs4_handle_exception(server, err, &exception);
536 } while (exception.retry);
540 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
542 struct nfs_open_context *ctx;
545 ctx = nfs4_state_find_open_context(state);
548 ret = nfs4_do_open_reclaim(ctx, state);
549 put_nfs_open_context(ctx);
553 static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
555 struct nfs4_state_owner *sp = state->owner;
556 struct nfs4_opendata *opendata;
559 opendata = nfs4_opendata_alloc(&ctx->path, sp, 0, NULL);
560 if (opendata == NULL)
562 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
563 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
564 sizeof(opendata->o_arg.u.delegation.data));
565 ret = nfs4_open_recover(opendata, state);
566 nfs4_opendata_put(opendata);
570 int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
572 struct nfs4_exception exception = { };
573 struct nfs_server *server = NFS_SERVER(state->inode);
576 err = _nfs4_open_delegation_recall(ctx, state, stateid);
580 case -NFS4ERR_STALE_CLIENTID:
581 case -NFS4ERR_STALE_STATEID:
582 case -NFS4ERR_EXPIRED:
583 /* Don't recall a delegation if it was lost */
584 nfs4_schedule_state_recovery(server->nfs_client);
587 err = nfs4_handle_exception(server, err, &exception);
588 } while (exception.retry);
592 static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
594 struct nfs4_opendata *data = calldata;
595 struct rpc_message msg = {
596 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
597 .rpc_argp = &data->c_arg,
598 .rpc_resp = &data->c_res,
599 .rpc_cred = data->owner->so_cred,
601 data->timestamp = jiffies;
602 rpc_call_setup(task, &msg, 0);
605 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
607 struct nfs4_opendata *data = calldata;
609 data->rpc_status = task->tk_status;
610 if (RPC_ASSASSINATED(task))
612 if (data->rpc_status == 0) {
613 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
614 sizeof(data->o_res.stateid.data));
615 renew_lease(data->o_res.server, data->timestamp);
617 nfs_confirm_seqid(&data->owner->so_seqid, data->rpc_status);
618 nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid);
621 static void nfs4_open_confirm_release(void *calldata)
623 struct nfs4_opendata *data = calldata;
624 struct nfs4_state *state = NULL;
626 /* If this request hasn't been cancelled, do nothing */
627 if (data->cancelled == 0)
629 /* In case of error, no cleanup! */
630 if (data->rpc_status != 0)
632 nfs_confirm_seqid(&data->owner->so_seqid, 0);
633 state = nfs4_opendata_to_nfs4_state(data);
635 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
637 nfs4_opendata_put(data);
640 static const struct rpc_call_ops nfs4_open_confirm_ops = {
641 .rpc_call_prepare = nfs4_open_confirm_prepare,
642 .rpc_call_done = nfs4_open_confirm_done,
643 .rpc_release = nfs4_open_confirm_release,
647 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
649 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
651 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
652 struct rpc_task *task;
655 kref_get(&data->kref);
657 * If rpc_run_task() ends up calling ->rpc_release(), we
658 * want to ensure that it takes the 'error' code path.
660 data->rpc_status = -ENOMEM;
661 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_confirm_ops, data);
663 return PTR_ERR(task);
664 status = nfs4_wait_for_completion_rpc_task(task);
669 status = data->rpc_status;
674 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
676 struct nfs4_opendata *data = calldata;
677 struct nfs4_state_owner *sp = data->owner;
678 struct rpc_message msg = {
679 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
680 .rpc_argp = &data->o_arg,
681 .rpc_resp = &data->o_res,
682 .rpc_cred = sp->so_cred,
685 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
687 /* Update sequence id. */
688 data->o_arg.id = sp->so_owner_id.id;
689 data->o_arg.clientid = sp->so_client->cl_clientid;
690 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
691 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
692 data->timestamp = jiffies;
693 rpc_call_setup(task, &msg, 0);
696 static void nfs4_open_done(struct rpc_task *task, void *calldata)
698 struct nfs4_opendata *data = calldata;
700 data->rpc_status = task->tk_status;
701 if (RPC_ASSASSINATED(task))
703 if (task->tk_status == 0) {
704 switch (data->o_res.f_attr->mode & S_IFMT) {
708 data->rpc_status = -ELOOP;
711 data->rpc_status = -EISDIR;
714 data->rpc_status = -ENOTDIR;
716 renew_lease(data->o_res.server, data->timestamp);
717 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
718 nfs_confirm_seqid(&data->owner->so_seqid, 0);
720 nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid);
723 static void nfs4_open_release(void *calldata)
725 struct nfs4_opendata *data = calldata;
726 struct nfs4_state *state = NULL;
728 /* If this request hasn't been cancelled, do nothing */
729 if (data->cancelled == 0)
731 /* In case of error, no cleanup! */
732 if (data->rpc_status != 0)
734 /* In case we need an open_confirm, no cleanup! */
735 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
737 nfs_confirm_seqid(&data->owner->so_seqid, 0);
738 state = nfs4_opendata_to_nfs4_state(data);
740 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
742 nfs4_opendata_put(data);
745 static const struct rpc_call_ops nfs4_open_ops = {
746 .rpc_call_prepare = nfs4_open_prepare,
747 .rpc_call_done = nfs4_open_done,
748 .rpc_release = nfs4_open_release,
752 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
754 static int _nfs4_proc_open(struct nfs4_opendata *data)
756 struct inode *dir = data->dir->d_inode;
757 struct nfs_server *server = NFS_SERVER(dir);
758 struct nfs_openargs *o_arg = &data->o_arg;
759 struct nfs_openres *o_res = &data->o_res;
760 struct rpc_task *task;
763 kref_get(&data->kref);
765 * If rpc_run_task() ends up calling ->rpc_release(), we
766 * want to ensure that it takes the 'error' code path.
768 data->rpc_status = -ENOMEM;
770 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_ops, data);
772 return PTR_ERR(task);
773 status = nfs4_wait_for_completion_rpc_task(task);
778 status = data->rpc_status;
783 if (o_arg->open_flags & O_CREAT) {
784 update_changeattr(dir, &o_res->cinfo);
785 nfs_post_op_update_inode(dir, o_res->dir_attr);
787 nfs_refresh_inode(dir, o_res->dir_attr);
788 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
789 status = _nfs4_proc_open_confirm(data);
793 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
794 return server->nfs_client->rpc_ops->getattr(server, &o_res->fh, o_res->f_attr);
798 static int _nfs4_do_access(struct inode *inode, struct rpc_cred *cred, int openflags)
800 struct nfs_access_entry cache;
804 if (openflags & FMODE_READ)
806 if (openflags & FMODE_WRITE)
808 if (openflags & FMODE_EXEC)
810 status = nfs_access_get_cached(inode, cred, &cache);
814 /* Be clever: ask server to check for all possible rights */
815 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
817 cache.jiffies = jiffies;
818 status = _nfs4_proc_access(inode, &cache);
821 nfs_access_add_cache(inode, &cache);
823 if ((cache.mask & mask) == mask)
828 static int nfs4_recover_expired_lease(struct nfs_server *server)
830 struct nfs_client *clp = server->nfs_client;
834 ret = nfs4_wait_clnt_recover(server->client, clp);
837 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
839 nfs4_schedule_state_recovery(clp);
846 * reclaim state on the server after a network partition.
847 * Assumes caller holds the appropriate lock
849 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
851 struct inode *inode = state->inode;
852 struct nfs_delegation *delegation = NFS_I(inode)->delegation;
853 struct nfs4_opendata *opendata;
854 int openflags = state->state & (FMODE_READ|FMODE_WRITE);
857 if (delegation != NULL && !(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
858 ret = _nfs4_do_access(inode, ctx->cred, openflags);
861 memcpy(&state->stateid, &delegation->stateid, sizeof(state->stateid));
862 set_bit(NFS_DELEGATED_STATE, &state->flags);
865 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, openflags, NULL);
866 if (opendata == NULL)
868 ret = nfs4_open_recover(opendata, state);
869 if (ret == -ESTALE) {
870 /* Invalidate the state owner so we don't ever use it again */
871 nfs4_drop_state_owner(state->owner);
872 d_drop(ctx->path.dentry);
874 nfs4_opendata_put(opendata);
878 static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
880 struct nfs_server *server = NFS_SERVER(state->inode);
881 struct nfs4_exception exception = { };
885 err = _nfs4_open_expired(ctx, state);
886 if (err == -NFS4ERR_DELAY)
887 nfs4_handle_exception(server, err, &exception);
888 } while (exception.retry);
892 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
894 struct nfs_open_context *ctx;
897 ctx = nfs4_state_find_open_context(state);
900 ret = nfs4_do_open_expired(ctx, state);
901 put_nfs_open_context(ctx);
906 * Returns a referenced nfs4_state if there is an open delegation on the file
908 static int _nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred, struct nfs4_state **res)
910 struct nfs_delegation *delegation;
911 struct nfs_server *server = NFS_SERVER(inode);
912 struct nfs_client *clp = server->nfs_client;
913 struct nfs_inode *nfsi = NFS_I(inode);
914 struct nfs4_state_owner *sp = NULL;
915 struct nfs4_state *state = NULL;
916 int open_flags = flags & (FMODE_READ|FMODE_WRITE);
920 if (!(sp = nfs4_get_state_owner(server, cred))) {
921 dprintk("%s: nfs4_get_state_owner failed!\n", __FUNCTION__);
924 err = nfs4_recover_expired_lease(server);
926 goto out_put_state_owner;
927 /* Protect against reboot recovery - NOTE ORDER! */
928 down_read(&clp->cl_sem);
929 /* Protect against delegation recall */
930 down_read(&nfsi->rwsem);
931 delegation = NFS_I(inode)->delegation;
933 if (delegation == NULL || (delegation->type & open_flags) != open_flags)
936 state = nfs4_get_open_state(inode, sp);
941 if ((state->state & open_flags) == open_flags) {
942 spin_lock(&inode->i_lock);
943 update_open_stateflags(state, open_flags);
944 spin_unlock(&inode->i_lock);
946 } else if (state->state != 0)
947 goto out_put_open_state;
950 err = _nfs4_do_access(inode, cred, open_flags);
953 goto out_put_open_state;
954 update_open_stateid(state, NULL, &delegation->stateid, open_flags);
956 nfs4_put_state_owner(sp);
957 up_read(&nfsi->rwsem);
958 up_read(&clp->cl_sem);
962 nfs4_put_open_state(state);
964 up_read(&nfsi->rwsem);
965 up_read(&clp->cl_sem);
967 nfs_inode_return_delegation(inode);
969 nfs4_put_state_owner(sp);
973 static struct nfs4_state *nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred)
975 struct nfs4_exception exception = { };
976 struct nfs4_state *res = ERR_PTR(-EIO);
980 err = _nfs4_open_delegated(inode, flags, cred, &res);
983 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(inode),
985 } while (exception.retry);
990 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
991 * fields corresponding to attributes that were used to store the verifier.
992 * Make sure we clobber those fields in the later setattr call
994 static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
996 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
997 !(sattr->ia_valid & ATTR_ATIME_SET))
998 sattr->ia_valid |= ATTR_ATIME;
1000 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1001 !(sattr->ia_valid & ATTR_MTIME_SET))
1002 sattr->ia_valid |= ATTR_MTIME;
1006 * Returns a referenced nfs4_state
1008 static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
1010 struct nfs4_state_owner *sp;
1011 struct nfs4_state *state = NULL;
1012 struct nfs_server *server = NFS_SERVER(dir);
1013 struct nfs_client *clp = server->nfs_client;
1014 struct nfs4_opendata *opendata;
1017 /* Protect against reboot recovery conflicts */
1019 if (!(sp = nfs4_get_state_owner(server, cred))) {
1020 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1023 status = nfs4_recover_expired_lease(server);
1025 goto err_put_state_owner;
1026 down_read(&clp->cl_sem);
1028 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
1029 if (opendata == NULL)
1030 goto err_release_rwsem;
1032 status = _nfs4_proc_open(opendata);
1034 goto err_opendata_put;
1036 if (opendata->o_arg.open_flags & O_EXCL)
1037 nfs4_exclusive_attrset(opendata, sattr);
1040 state = nfs4_opendata_to_nfs4_state(opendata);
1042 goto err_opendata_put;
1043 nfs4_opendata_put(opendata);
1044 nfs4_put_state_owner(sp);
1045 up_read(&clp->cl_sem);
1049 nfs4_opendata_put(opendata);
1051 up_read(&clp->cl_sem);
1052 err_put_state_owner:
1053 nfs4_put_state_owner(sp);
1060 static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred)
1062 struct nfs4_exception exception = { };
1063 struct nfs4_state *res;
1067 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
1070 /* NOTE: BAD_SEQID means the server and client disagree about the
1071 * book-keeping w.r.t. state-changing operations
1072 * (OPEN/CLOSE/LOCK/LOCKU...)
1073 * It is actually a sign of a bug on the client or on the server.
1075 * If we receive a BAD_SEQID error in the particular case of
1076 * doing an OPEN, we assume that nfs_increment_open_seqid() will
1077 * have unhashed the old state_owner for us, and that we can
1078 * therefore safely retry using a new one. We should still warn
1079 * the user though...
1081 if (status == -NFS4ERR_BAD_SEQID) {
1082 printk(KERN_WARNING "NFS: v4 server returned a bad sequence-id error!\n");
1083 exception.retry = 1;
1087 * BAD_STATEID on OPEN means that the server cancelled our
1088 * state before it received the OPEN_CONFIRM.
1089 * Recover by retrying the request as per the discussion
1090 * on Page 181 of RFC3530.
1092 if (status == -NFS4ERR_BAD_STATEID) {
1093 exception.retry = 1;
1096 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1097 status, &exception));
1098 } while (exception.retry);
1102 static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1103 struct iattr *sattr, struct nfs4_state *state)
1105 struct nfs_server *server = NFS_SERVER(inode);
1106 struct nfs_setattrargs arg = {
1107 .fh = NFS_FH(inode),
1110 .bitmask = server->attr_bitmask,
1112 struct nfs_setattrres res = {
1116 struct rpc_message msg = {
1117 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1121 unsigned long timestamp = jiffies;
1124 nfs_fattr_init(fattr);
1126 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1127 /* Use that stateid */
1128 } else if (state != NULL) {
1129 msg.rpc_cred = state->owner->so_cred;
1130 nfs4_copy_stateid(&arg.stateid, state, current->files);
1132 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1134 status = rpc_call_sync(server->client, &msg, 0);
1135 if (status == 0 && state != NULL)
1136 renew_lease(server, timestamp);
1140 static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1141 struct iattr *sattr, struct nfs4_state *state)
1143 struct nfs_server *server = NFS_SERVER(inode);
1144 struct nfs4_exception exception = { };
1147 err = nfs4_handle_exception(server,
1148 _nfs4_do_setattr(inode, fattr, sattr, state),
1150 } while (exception.retry);
1154 struct nfs4_closedata {
1156 struct inode *inode;
1157 struct nfs4_state *state;
1158 struct nfs_closeargs arg;
1159 struct nfs_closeres res;
1160 struct nfs_fattr fattr;
1161 unsigned long timestamp;
1164 static void nfs4_free_closedata(void *data)
1166 struct nfs4_closedata *calldata = data;
1167 struct nfs4_state_owner *sp = calldata->state->owner;
1169 nfs4_put_open_state(calldata->state);
1170 nfs_free_seqid(calldata->arg.seqid);
1171 nfs4_put_state_owner(sp);
1172 dput(calldata->path.dentry);
1173 mntput(calldata->path.mnt);
1177 static void nfs4_close_done(struct rpc_task *task, void *data)
1179 struct nfs4_closedata *calldata = data;
1180 struct nfs4_state *state = calldata->state;
1181 struct nfs_server *server = NFS_SERVER(calldata->inode);
1183 if (RPC_ASSASSINATED(task))
1185 /* hmm. we are done with the inode, and in the process of freeing
1186 * the state_owner. we keep this around to process errors
1188 nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid);
1189 switch (task->tk_status) {
1191 nfs_set_open_stateid(state, &calldata->res.stateid, calldata->arg.open_flags);
1192 renew_lease(server, calldata->timestamp);
1194 case -NFS4ERR_STALE_STATEID:
1195 case -NFS4ERR_EXPIRED:
1198 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1199 rpc_restart_call(task);
1203 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
1206 static void nfs4_close_prepare(struct rpc_task *task, void *data)
1208 struct nfs4_closedata *calldata = data;
1209 struct nfs4_state *state = calldata->state;
1210 struct rpc_message msg = {
1211 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1212 .rpc_argp = &calldata->arg,
1213 .rpc_resp = &calldata->res,
1214 .rpc_cred = state->owner->so_cred,
1216 int clear_rd, clear_wr, clear_rdwr;
1219 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
1222 mode = FMODE_READ|FMODE_WRITE;
1223 clear_rd = clear_wr = clear_rdwr = 0;
1224 spin_lock(&state->owner->so_lock);
1225 spin_lock(&calldata->inode->i_lock);
1226 /* Calculate the change in open mode */
1227 if (state->n_rdwr == 0) {
1228 if (state->n_rdonly == 0) {
1229 mode &= ~FMODE_READ;
1230 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1231 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1233 if (state->n_wronly == 0) {
1234 mode &= ~FMODE_WRITE;
1235 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1236 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1239 spin_unlock(&calldata->inode->i_lock);
1240 spin_unlock(&state->owner->so_lock);
1241 if (!clear_rd && !clear_wr && !clear_rdwr) {
1242 /* Note: exit _without_ calling nfs4_close_done */
1243 task->tk_action = NULL;
1246 nfs_fattr_init(calldata->res.fattr);
1248 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1249 calldata->arg.open_flags = mode;
1250 calldata->timestamp = jiffies;
1251 rpc_call_setup(task, &msg, 0);
1254 static const struct rpc_call_ops nfs4_close_ops = {
1255 .rpc_call_prepare = nfs4_close_prepare,
1256 .rpc_call_done = nfs4_close_done,
1257 .rpc_release = nfs4_free_closedata,
1261 * It is possible for data to be read/written from a mem-mapped file
1262 * after the sys_close call (which hits the vfs layer as a flush).
1263 * This means that we can't safely call nfsv4 close on a file until
1264 * the inode is cleared. This in turn means that we are not good
1265 * NFSv4 citizens - we do not indicate to the server to update the file's
1266 * share state even when we are done with one of the three share
1267 * stateid's in the inode.
1269 * NOTE: Caller must be holding the sp->so_owner semaphore!
1271 int nfs4_do_close(struct path *path, struct nfs4_state *state)
1273 struct nfs_server *server = NFS_SERVER(state->inode);
1274 struct nfs4_closedata *calldata;
1275 struct nfs4_state_owner *sp = state->owner;
1276 struct rpc_task *task;
1277 int status = -ENOMEM;
1279 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
1280 if (calldata == NULL)
1282 calldata->inode = state->inode;
1283 calldata->state = state;
1284 calldata->arg.fh = NFS_FH(state->inode);
1285 calldata->arg.stateid = &state->open_stateid;
1286 /* Serialization for the sequence id */
1287 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
1288 if (calldata->arg.seqid == NULL)
1289 goto out_free_calldata;
1290 calldata->arg.bitmask = server->attr_bitmask;
1291 calldata->res.fattr = &calldata->fattr;
1292 calldata->res.server = server;
1293 calldata->path.mnt = mntget(path->mnt);
1294 calldata->path.dentry = dget(path->dentry);
1296 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_close_ops, calldata);
1298 return PTR_ERR(task);
1304 nfs4_put_open_state(state);
1305 nfs4_put_state_owner(sp);
1309 static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
1314 /* If the open_intent is for execute, we have an extra check to make */
1315 if (nd->intent.open.flags & FMODE_EXEC) {
1316 ret = _nfs4_do_access(state->inode,
1317 state->owner->so_cred,
1318 nd->intent.open.flags);
1322 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
1323 if (!IS_ERR(filp)) {
1324 struct nfs_open_context *ctx;
1325 ctx = (struct nfs_open_context *)filp->private_data;
1329 ret = PTR_ERR(filp);
1331 nfs4_close_state(path, state, nd->intent.open.flags);
1336 nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1338 struct path path = {
1343 struct rpc_cred *cred;
1344 struct nfs4_state *state;
1347 if (nd->flags & LOOKUP_CREATE) {
1348 attr.ia_mode = nd->intent.open.create_mode;
1349 attr.ia_valid = ATTR_MODE;
1350 if (!IS_POSIXACL(dir))
1351 attr.ia_mode &= ~current->fs->umask;
1354 BUG_ON(nd->intent.open.flags & O_CREAT);
1357 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1359 return (struct dentry *)cred;
1360 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
1362 if (IS_ERR(state)) {
1363 if (PTR_ERR(state) == -ENOENT)
1364 d_add(dentry, NULL);
1365 return (struct dentry *)state;
1367 res = d_add_unique(dentry, igrab(state->inode));
1370 nfs4_intent_set_file(nd, &path, state);
1375 nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
1377 struct path path = {
1381 struct rpc_cred *cred;
1382 struct nfs4_state *state;
1384 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1386 return PTR_ERR(cred);
1387 state = nfs4_open_delegated(dentry->d_inode, openflags, cred);
1389 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
1391 if (IS_ERR(state)) {
1392 switch (PTR_ERR(state)) {
1398 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1404 if (state->inode == dentry->d_inode) {
1405 nfs4_intent_set_file(nd, &path, state);
1408 nfs4_close_state(&path, state, openflags);
1415 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1417 struct nfs4_server_caps_res res = {};
1418 struct rpc_message msg = {
1419 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1420 .rpc_argp = fhandle,
1425 status = rpc_call_sync(server->client, &msg, 0);
1427 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1428 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1429 server->caps |= NFS_CAP_ACLS;
1430 if (res.has_links != 0)
1431 server->caps |= NFS_CAP_HARDLINKS;
1432 if (res.has_symlinks != 0)
1433 server->caps |= NFS_CAP_SYMLINKS;
1434 server->acl_bitmask = res.acl_bitmask;
1439 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1441 struct nfs4_exception exception = { };
1444 err = nfs4_handle_exception(server,
1445 _nfs4_server_capabilities(server, fhandle),
1447 } while (exception.retry);
1451 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1452 struct nfs_fsinfo *info)
1454 struct nfs4_lookup_root_arg args = {
1455 .bitmask = nfs4_fattr_bitmap,
1457 struct nfs4_lookup_res res = {
1459 .fattr = info->fattr,
1462 struct rpc_message msg = {
1463 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1467 nfs_fattr_init(info->fattr);
1468 return rpc_call_sync(server->client, &msg, 0);
1471 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1472 struct nfs_fsinfo *info)
1474 struct nfs4_exception exception = { };
1477 err = nfs4_handle_exception(server,
1478 _nfs4_lookup_root(server, fhandle, info),
1480 } while (exception.retry);
1485 * get the file handle for the "/" directory on the server
1487 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
1488 struct nfs_fsinfo *info)
1492 status = nfs4_lookup_root(server, fhandle, info);
1494 status = nfs4_server_capabilities(server, fhandle);
1496 status = nfs4_do_fsinfo(server, fhandle, info);
1497 return nfs4_map_errors(status);
1501 * Get locations and (maybe) other attributes of a referral.
1502 * Note that we'll actually follow the referral later when
1503 * we detect fsid mismatch in inode revalidation
1505 static int nfs4_get_referral(struct inode *dir, struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
1507 int status = -ENOMEM;
1508 struct page *page = NULL;
1509 struct nfs4_fs_locations *locations = NULL;
1511 page = alloc_page(GFP_KERNEL);
1514 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1515 if (locations == NULL)
1518 status = nfs4_proc_fs_locations(dir, name, locations, page);
1521 /* Make sure server returned a different fsid for the referral */
1522 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
1523 dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name);
1528 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1529 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1531 fattr->mode = S_IFDIR;
1532 memset(fhandle, 0, sizeof(struct nfs_fh));
1541 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1543 struct nfs4_getattr_arg args = {
1545 .bitmask = server->attr_bitmask,
1547 struct nfs4_getattr_res res = {
1551 struct rpc_message msg = {
1552 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1557 nfs_fattr_init(fattr);
1558 return rpc_call_sync(server->client, &msg, 0);
1561 static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1563 struct nfs4_exception exception = { };
1566 err = nfs4_handle_exception(server,
1567 _nfs4_proc_getattr(server, fhandle, fattr),
1569 } while (exception.retry);
1574 * The file is not closed if it is opened due to the a request to change
1575 * the size of the file. The open call will not be needed once the
1576 * VFS layer lookup-intents are implemented.
1578 * Close is called when the inode is destroyed.
1579 * If we haven't opened the file for O_WRONLY, we
1580 * need to in the size_change case to obtain a stateid.
1583 * Because OPEN is always done by name in nfsv4, it is
1584 * possible that we opened a different file by the same
1585 * name. We can recognize this race condition, but we
1586 * can't do anything about it besides returning an error.
1588 * This will be fixed with VFS changes (lookup-intent).
1591 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1592 struct iattr *sattr)
1594 struct rpc_cred *cred;
1595 struct inode *inode = dentry->d_inode;
1596 struct nfs_open_context *ctx;
1597 struct nfs4_state *state = NULL;
1600 nfs_fattr_init(fattr);
1602 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
1604 return PTR_ERR(cred);
1606 /* Search for an existing open(O_WRITE) file */
1607 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1611 status = nfs4_do_setattr(inode, fattr, sattr, state);
1613 nfs_setattr_update_inode(inode, sattr);
1615 put_nfs_open_context(ctx);
1620 static int _nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1621 struct qstr *name, struct nfs_fh *fhandle,
1622 struct nfs_fattr *fattr)
1625 struct nfs4_lookup_arg args = {
1626 .bitmask = server->attr_bitmask,
1630 struct nfs4_lookup_res res = {
1635 struct rpc_message msg = {
1636 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1641 nfs_fattr_init(fattr);
1643 dprintk("NFS call lookupfh %s\n", name->name);
1644 status = rpc_call_sync(server->client, &msg, 0);
1645 dprintk("NFS reply lookupfh: %d\n", status);
1649 static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1650 struct qstr *name, struct nfs_fh *fhandle,
1651 struct nfs_fattr *fattr)
1653 struct nfs4_exception exception = { };
1656 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1658 if (err == -NFS4ERR_MOVED) {
1662 err = nfs4_handle_exception(server, err, &exception);
1663 } while (exception.retry);
1667 static int _nfs4_proc_lookup(struct inode *dir, struct qstr *name,
1668 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1672 dprintk("NFS call lookup %s\n", name->name);
1673 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
1674 if (status == -NFS4ERR_MOVED)
1675 status = nfs4_get_referral(dir, name, fattr, fhandle);
1676 dprintk("NFS reply lookup: %d\n", status);
1680 static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1682 struct nfs4_exception exception = { };
1685 err = nfs4_handle_exception(NFS_SERVER(dir),
1686 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1688 } while (exception.retry);
1692 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1694 struct nfs4_accessargs args = {
1695 .fh = NFS_FH(inode),
1697 struct nfs4_accessres res = { 0 };
1698 struct rpc_message msg = {
1699 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1702 .rpc_cred = entry->cred,
1704 int mode = entry->mask;
1708 * Determine which access bits we want to ask for...
1710 if (mode & MAY_READ)
1711 args.access |= NFS4_ACCESS_READ;
1712 if (S_ISDIR(inode->i_mode)) {
1713 if (mode & MAY_WRITE)
1714 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1715 if (mode & MAY_EXEC)
1716 args.access |= NFS4_ACCESS_LOOKUP;
1718 if (mode & MAY_WRITE)
1719 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1720 if (mode & MAY_EXEC)
1721 args.access |= NFS4_ACCESS_EXECUTE;
1723 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1726 if (res.access & NFS4_ACCESS_READ)
1727 entry->mask |= MAY_READ;
1728 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1729 entry->mask |= MAY_WRITE;
1730 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1731 entry->mask |= MAY_EXEC;
1736 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1738 struct nfs4_exception exception = { };
1741 err = nfs4_handle_exception(NFS_SERVER(inode),
1742 _nfs4_proc_access(inode, entry),
1744 } while (exception.retry);
1749 * TODO: For the time being, we don't try to get any attributes
1750 * along with any of the zero-copy operations READ, READDIR,
1753 * In the case of the first three, we want to put the GETATTR
1754 * after the read-type operation -- this is because it is hard
1755 * to predict the length of a GETATTR response in v4, and thus
1756 * align the READ data correctly. This means that the GETATTR
1757 * may end up partially falling into the page cache, and we should
1758 * shift it into the 'tail' of the xdr_buf before processing.
1759 * To do this efficiently, we need to know the total length
1760 * of data received, which doesn't seem to be available outside
1763 * In the case of WRITE, we also want to put the GETATTR after
1764 * the operation -- in this case because we want to make sure
1765 * we get the post-operation mtime and size. This means that
1766 * we can't use xdr_encode_pages() as written: we need a variant
1767 * of it which would leave room in the 'tail' iovec.
1769 * Both of these changes to the XDR layer would in fact be quite
1770 * minor, but I decided to leave them for a subsequent patch.
1772 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1773 unsigned int pgbase, unsigned int pglen)
1775 struct nfs4_readlink args = {
1776 .fh = NFS_FH(inode),
1781 struct rpc_message msg = {
1782 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1787 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1790 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1791 unsigned int pgbase, unsigned int pglen)
1793 struct nfs4_exception exception = { };
1796 err = nfs4_handle_exception(NFS_SERVER(inode),
1797 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1799 } while (exception.retry);
1805 * We will need to arrange for the VFS layer to provide an atomic open.
1806 * Until then, this create/open method is prone to inefficiency and race
1807 * conditions due to the lookup, create, and open VFS calls from sys_open()
1808 * placed on the wire.
1810 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1811 * The file will be opened again in the subsequent VFS open call
1812 * (nfs4_proc_file_open).
1814 * The open for read will just hang around to be used by any process that
1815 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1819 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
1820 int flags, struct nameidata *nd)
1822 struct path path = {
1826 struct nfs4_state *state;
1827 struct rpc_cred *cred;
1830 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1832 status = PTR_ERR(cred);
1835 state = nfs4_do_open(dir, &path, flags, sattr, cred);
1837 if (IS_ERR(state)) {
1838 status = PTR_ERR(state);
1841 d_instantiate(dentry, igrab(state->inode));
1842 if (flags & O_EXCL) {
1843 struct nfs_fattr fattr;
1844 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
1846 nfs_setattr_update_inode(state->inode, sattr);
1847 nfs_post_op_update_inode(state->inode, &fattr);
1849 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
1850 status = nfs4_intent_set_file(nd, &path, state);
1852 nfs4_close_state(&path, state, flags);
1857 static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1859 struct nfs_server *server = NFS_SERVER(dir);
1860 struct nfs4_remove_arg args = {
1863 .bitmask = server->attr_bitmask,
1865 struct nfs_fattr dir_attr;
1866 struct nfs4_remove_res res = {
1868 .dir_attr = &dir_attr,
1870 struct rpc_message msg = {
1871 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1877 nfs_fattr_init(res.dir_attr);
1878 status = rpc_call_sync(server->client, &msg, 0);
1880 update_changeattr(dir, &res.cinfo);
1881 nfs_post_op_update_inode(dir, res.dir_attr);
1886 static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1888 struct nfs4_exception exception = { };
1891 err = nfs4_handle_exception(NFS_SERVER(dir),
1892 _nfs4_proc_remove(dir, name),
1894 } while (exception.retry);
1898 struct unlink_desc {
1899 struct nfs4_remove_arg args;
1900 struct nfs4_remove_res res;
1901 struct nfs_fattr dir_attr;
1904 static int nfs4_proc_unlink_setup(struct rpc_message *msg, struct dentry *dir,
1907 struct nfs_server *server = NFS_SERVER(dir->d_inode);
1908 struct unlink_desc *up;
1910 up = kmalloc(sizeof(*up), GFP_KERNEL);
1914 up->args.fh = NFS_FH(dir->d_inode);
1915 up->args.name = name;
1916 up->args.bitmask = server->attr_bitmask;
1917 up->res.server = server;
1918 up->res.dir_attr = &up->dir_attr;
1920 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
1921 msg->rpc_argp = &up->args;
1922 msg->rpc_resp = &up->res;
1926 static int nfs4_proc_unlink_done(struct dentry *dir, struct rpc_task *task)
1928 struct rpc_message *msg = &task->tk_msg;
1929 struct unlink_desc *up;
1931 if (msg->rpc_resp != NULL) {
1932 up = container_of(msg->rpc_resp, struct unlink_desc, res);
1933 update_changeattr(dir->d_inode, &up->res.cinfo);
1934 nfs_post_op_update_inode(dir->d_inode, up->res.dir_attr);
1936 msg->rpc_resp = NULL;
1937 msg->rpc_argp = NULL;
1942 static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1943 struct inode *new_dir, struct qstr *new_name)
1945 struct nfs_server *server = NFS_SERVER(old_dir);
1946 struct nfs4_rename_arg arg = {
1947 .old_dir = NFS_FH(old_dir),
1948 .new_dir = NFS_FH(new_dir),
1949 .old_name = old_name,
1950 .new_name = new_name,
1951 .bitmask = server->attr_bitmask,
1953 struct nfs_fattr old_fattr, new_fattr;
1954 struct nfs4_rename_res res = {
1956 .old_fattr = &old_fattr,
1957 .new_fattr = &new_fattr,
1959 struct rpc_message msg = {
1960 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
1966 nfs_fattr_init(res.old_fattr);
1967 nfs_fattr_init(res.new_fattr);
1968 status = rpc_call_sync(server->client, &msg, 0);
1971 update_changeattr(old_dir, &res.old_cinfo);
1972 nfs_post_op_update_inode(old_dir, res.old_fattr);
1973 update_changeattr(new_dir, &res.new_cinfo);
1974 nfs_post_op_update_inode(new_dir, res.new_fattr);
1979 static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1980 struct inode *new_dir, struct qstr *new_name)
1982 struct nfs4_exception exception = { };
1985 err = nfs4_handle_exception(NFS_SERVER(old_dir),
1986 _nfs4_proc_rename(old_dir, old_name,
1989 } while (exception.retry);
1993 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
1995 struct nfs_server *server = NFS_SERVER(inode);
1996 struct nfs4_link_arg arg = {
1997 .fh = NFS_FH(inode),
1998 .dir_fh = NFS_FH(dir),
2000 .bitmask = server->attr_bitmask,
2002 struct nfs_fattr fattr, dir_attr;
2003 struct nfs4_link_res res = {
2006 .dir_attr = &dir_attr,
2008 struct rpc_message msg = {
2009 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2015 nfs_fattr_init(res.fattr);
2016 nfs_fattr_init(res.dir_attr);
2017 status = rpc_call_sync(server->client, &msg, 0);
2019 update_changeattr(dir, &res.cinfo);
2020 nfs_post_op_update_inode(dir, res.dir_attr);
2021 nfs_post_op_update_inode(inode, res.fattr);
2027 static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2029 struct nfs4_exception exception = { };
2032 err = nfs4_handle_exception(NFS_SERVER(inode),
2033 _nfs4_proc_link(inode, dir, name),
2035 } while (exception.retry);
2039 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2040 struct page *page, unsigned int len, struct iattr *sattr)
2042 struct nfs_server *server = NFS_SERVER(dir);
2043 struct nfs_fh fhandle;
2044 struct nfs_fattr fattr, dir_fattr;
2045 struct nfs4_create_arg arg = {
2046 .dir_fh = NFS_FH(dir),
2048 .name = &dentry->d_name,
2051 .bitmask = server->attr_bitmask,
2053 struct nfs4_create_res res = {
2057 .dir_fattr = &dir_fattr,
2059 struct rpc_message msg = {
2060 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK],
2066 if (len > NFS4_MAXPATHLEN)
2067 return -ENAMETOOLONG;
2069 arg.u.symlink.pages = &page;
2070 arg.u.symlink.len = len;
2071 nfs_fattr_init(&fattr);
2072 nfs_fattr_init(&dir_fattr);
2074 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2076 update_changeattr(dir, &res.dir_cinfo);
2077 nfs_post_op_update_inode(dir, res.dir_fattr);
2078 status = nfs_instantiate(dentry, &fhandle, &fattr);
2083 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2084 struct page *page, unsigned int len, struct iattr *sattr)
2086 struct nfs4_exception exception = { };
2089 err = nfs4_handle_exception(NFS_SERVER(dir),
2090 _nfs4_proc_symlink(dir, dentry, page,
2093 } while (exception.retry);
2097 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2098 struct iattr *sattr)
2100 struct nfs_server *server = NFS_SERVER(dir);
2101 struct nfs_fh fhandle;
2102 struct nfs_fattr fattr, dir_fattr;
2103 struct nfs4_create_arg arg = {
2104 .dir_fh = NFS_FH(dir),
2106 .name = &dentry->d_name,
2109 .bitmask = server->attr_bitmask,
2111 struct nfs4_create_res res = {
2115 .dir_fattr = &dir_fattr,
2117 struct rpc_message msg = {
2118 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2124 nfs_fattr_init(&fattr);
2125 nfs_fattr_init(&dir_fattr);
2127 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2129 update_changeattr(dir, &res.dir_cinfo);
2130 nfs_post_op_update_inode(dir, res.dir_fattr);
2131 status = nfs_instantiate(dentry, &fhandle, &fattr);
2136 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2137 struct iattr *sattr)
2139 struct nfs4_exception exception = { };
2142 err = nfs4_handle_exception(NFS_SERVER(dir),
2143 _nfs4_proc_mkdir(dir, dentry, sattr),
2145 } while (exception.retry);
2149 static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2150 u64 cookie, struct page *page, unsigned int count, int plus)
2152 struct inode *dir = dentry->d_inode;
2153 struct nfs4_readdir_arg args = {
2158 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2160 struct nfs4_readdir_res res;
2161 struct rpc_message msg = {
2162 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2169 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__,
2170 dentry->d_parent->d_name.name,
2171 dentry->d_name.name,
2172 (unsigned long long)cookie);
2173 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2174 res.pgbase = args.pgbase;
2175 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2177 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
2178 dprintk("%s: returns %d\n", __FUNCTION__, status);
2182 static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2183 u64 cookie, struct page *page, unsigned int count, int plus)
2185 struct nfs4_exception exception = { };
2188 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2189 _nfs4_proc_readdir(dentry, cred, cookie,
2192 } while (exception.retry);
2196 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2197 struct iattr *sattr, dev_t rdev)
2199 struct nfs_server *server = NFS_SERVER(dir);
2201 struct nfs_fattr fattr, dir_fattr;
2202 struct nfs4_create_arg arg = {
2203 .dir_fh = NFS_FH(dir),
2205 .name = &dentry->d_name,
2207 .bitmask = server->attr_bitmask,
2209 struct nfs4_create_res res = {
2213 .dir_fattr = &dir_fattr,
2215 struct rpc_message msg = {
2216 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2221 int mode = sattr->ia_mode;
2223 nfs_fattr_init(&fattr);
2224 nfs_fattr_init(&dir_fattr);
2226 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2227 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2229 arg.ftype = NF4FIFO;
2230 else if (S_ISBLK(mode)) {
2232 arg.u.device.specdata1 = MAJOR(rdev);
2233 arg.u.device.specdata2 = MINOR(rdev);
2235 else if (S_ISCHR(mode)) {
2237 arg.u.device.specdata1 = MAJOR(rdev);
2238 arg.u.device.specdata2 = MINOR(rdev);
2241 arg.ftype = NF4SOCK;
2243 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2245 update_changeattr(dir, &res.dir_cinfo);
2246 nfs_post_op_update_inode(dir, res.dir_fattr);
2247 status = nfs_instantiate(dentry, &fh, &fattr);
2252 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2253 struct iattr *sattr, dev_t rdev)
2255 struct nfs4_exception exception = { };
2258 err = nfs4_handle_exception(NFS_SERVER(dir),
2259 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2261 } while (exception.retry);
2265 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2266 struct nfs_fsstat *fsstat)
2268 struct nfs4_statfs_arg args = {
2270 .bitmask = server->attr_bitmask,
2272 struct rpc_message msg = {
2273 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2278 nfs_fattr_init(fsstat->fattr);
2279 return rpc_call_sync(server->client, &msg, 0);
2282 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2284 struct nfs4_exception exception = { };
2287 err = nfs4_handle_exception(server,
2288 _nfs4_proc_statfs(server, fhandle, fsstat),
2290 } while (exception.retry);
2294 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2295 struct nfs_fsinfo *fsinfo)
2297 struct nfs4_fsinfo_arg args = {
2299 .bitmask = server->attr_bitmask,
2301 struct rpc_message msg = {
2302 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2307 return rpc_call_sync(server->client, &msg, 0);
2310 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2312 struct nfs4_exception exception = { };
2316 err = nfs4_handle_exception(server,
2317 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2319 } while (exception.retry);
2323 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2325 nfs_fattr_init(fsinfo->fattr);
2326 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2329 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2330 struct nfs_pathconf *pathconf)
2332 struct nfs4_pathconf_arg args = {
2334 .bitmask = server->attr_bitmask,
2336 struct rpc_message msg = {
2337 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2339 .rpc_resp = pathconf,
2342 /* None of the pathconf attributes are mandatory to implement */
2343 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2344 memset(pathconf, 0, sizeof(*pathconf));
2348 nfs_fattr_init(pathconf->fattr);
2349 return rpc_call_sync(server->client, &msg, 0);
2352 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2353 struct nfs_pathconf *pathconf)
2355 struct nfs4_exception exception = { };
2359 err = nfs4_handle_exception(server,
2360 _nfs4_proc_pathconf(server, fhandle, pathconf),
2362 } while (exception.retry);
2366 static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
2368 struct nfs_server *server = NFS_SERVER(data->inode);
2370 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
2371 rpc_restart_call(task);
2374 if (task->tk_status > 0)
2375 renew_lease(server, data->timestamp);
2379 static void nfs4_proc_read_setup(struct nfs_read_data *data)
2381 struct rpc_message msg = {
2382 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ],
2383 .rpc_argp = &data->args,
2384 .rpc_resp = &data->res,
2385 .rpc_cred = data->cred,
2388 data->timestamp = jiffies;
2390 rpc_call_setup(&data->task, &msg, 0);
2393 static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
2395 struct inode *inode = data->inode;
2397 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2398 rpc_restart_call(task);
2401 if (task->tk_status >= 0) {
2402 renew_lease(NFS_SERVER(inode), data->timestamp);
2403 nfs_post_op_update_inode(inode, data->res.fattr);
2408 static void nfs4_proc_write_setup(struct nfs_write_data *data, int how)
2410 struct rpc_message msg = {
2411 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE],
2412 .rpc_argp = &data->args,
2413 .rpc_resp = &data->res,
2414 .rpc_cred = data->cred,
2416 struct inode *inode = data->inode;
2417 struct nfs_server *server = NFS_SERVER(inode);
2420 if (how & FLUSH_STABLE) {
2421 if (!NFS_I(inode)->ncommit)
2422 stable = NFS_FILE_SYNC;
2424 stable = NFS_DATA_SYNC;
2426 stable = NFS_UNSTABLE;
2427 data->args.stable = stable;
2428 data->args.bitmask = server->attr_bitmask;
2429 data->res.server = server;
2431 data->timestamp = jiffies;
2433 /* Finalize the task. */
2434 rpc_call_setup(&data->task, &msg, 0);
2437 static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
2439 struct inode *inode = data->inode;
2441 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2442 rpc_restart_call(task);
2445 if (task->tk_status >= 0)
2446 nfs_post_op_update_inode(inode, data->res.fattr);
2450 static void nfs4_proc_commit_setup(struct nfs_write_data *data, int how)
2452 struct rpc_message msg = {
2453 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
2454 .rpc_argp = &data->args,
2455 .rpc_resp = &data->res,
2456 .rpc_cred = data->cred,
2458 struct nfs_server *server = NFS_SERVER(data->inode);
2460 data->args.bitmask = server->attr_bitmask;
2461 data->res.server = server;
2463 rpc_call_setup(&data->task, &msg, 0);
2467 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2468 * standalone procedure for queueing an asynchronous RENEW.
2470 static void nfs4_renew_done(struct rpc_task *task, void *data)
2472 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
2473 unsigned long timestamp = (unsigned long)data;
2475 if (task->tk_status < 0) {
2476 switch (task->tk_status) {
2477 case -NFS4ERR_STALE_CLIENTID:
2478 case -NFS4ERR_EXPIRED:
2479 case -NFS4ERR_CB_PATH_DOWN:
2480 nfs4_schedule_state_recovery(clp);
2484 spin_lock(&clp->cl_lock);
2485 if (time_before(clp->cl_last_renewal,timestamp))
2486 clp->cl_last_renewal = timestamp;
2487 spin_unlock(&clp->cl_lock);
2490 static const struct rpc_call_ops nfs4_renew_ops = {
2491 .rpc_call_done = nfs4_renew_done,
2494 int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
2496 struct rpc_message msg = {
2497 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2502 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
2503 &nfs4_renew_ops, (void *)jiffies);
2506 int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
2508 struct rpc_message msg = {
2509 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2513 unsigned long now = jiffies;
2516 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2519 spin_lock(&clp->cl_lock);
2520 if (time_before(clp->cl_last_renewal,now))
2521 clp->cl_last_renewal = now;
2522 spin_unlock(&clp->cl_lock);
2526 static inline int nfs4_server_supports_acls(struct nfs_server *server)
2528 return (server->caps & NFS_CAP_ACLS)
2529 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2530 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2533 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2534 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2537 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2539 static void buf_to_pages(const void *buf, size_t buflen,
2540 struct page **pages, unsigned int *pgbase)
2542 const void *p = buf;
2544 *pgbase = offset_in_page(buf);
2546 while (p < buf + buflen) {
2547 *(pages++) = virt_to_page(p);
2548 p += PAGE_CACHE_SIZE;
2552 struct nfs4_cached_acl {
2558 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
2560 struct nfs_inode *nfsi = NFS_I(inode);
2562 spin_lock(&inode->i_lock);
2563 kfree(nfsi->nfs4_acl);
2564 nfsi->nfs4_acl = acl;
2565 spin_unlock(&inode->i_lock);
2568 static void nfs4_zap_acl_attr(struct inode *inode)
2570 nfs4_set_cached_acl(inode, NULL);
2573 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2575 struct nfs_inode *nfsi = NFS_I(inode);
2576 struct nfs4_cached_acl *acl;
2579 spin_lock(&inode->i_lock);
2580 acl = nfsi->nfs4_acl;
2583 if (buf == NULL) /* user is just asking for length */
2585 if (acl->cached == 0)
2587 ret = -ERANGE; /* see getxattr(2) man page */
2588 if (acl->len > buflen)
2590 memcpy(buf, acl->data, acl->len);
2594 spin_unlock(&inode->i_lock);
2598 static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2600 struct nfs4_cached_acl *acl;
2602 if (buf && acl_len <= PAGE_SIZE) {
2603 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2607 memcpy(acl->data, buf, acl_len);
2609 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2616 nfs4_set_cached_acl(inode, acl);
2619 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2621 struct page *pages[NFS4ACL_MAXPAGES];
2622 struct nfs_getaclargs args = {
2623 .fh = NFS_FH(inode),
2627 size_t resp_len = buflen;
2629 struct rpc_message msg = {
2630 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2632 .rpc_resp = &resp_len,
2634 struct page *localpage = NULL;
2637 if (buflen < PAGE_SIZE) {
2638 /* As long as we're doing a round trip to the server anyway,
2639 * let's be prepared for a page of acl data. */
2640 localpage = alloc_page(GFP_KERNEL);
2641 resp_buf = page_address(localpage);
2642 if (localpage == NULL)
2644 args.acl_pages[0] = localpage;
2645 args.acl_pgbase = 0;
2646 resp_len = args.acl_len = PAGE_SIZE;
2649 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2651 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2654 if (resp_len > args.acl_len)
2655 nfs4_write_cached_acl(inode, NULL, resp_len);
2657 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2660 if (resp_len > buflen)
2663 memcpy(buf, resp_buf, resp_len);
2668 __free_page(localpage);
2672 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2674 struct nfs4_exception exception = { };
2677 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2680 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2681 } while (exception.retry);
2685 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2687 struct nfs_server *server = NFS_SERVER(inode);
2690 if (!nfs4_server_supports_acls(server))
2692 ret = nfs_revalidate_inode(server, inode);
2695 ret = nfs4_read_cached_acl(inode, buf, buflen);
2698 return nfs4_get_acl_uncached(inode, buf, buflen);
2701 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2703 struct nfs_server *server = NFS_SERVER(inode);
2704 struct page *pages[NFS4ACL_MAXPAGES];
2705 struct nfs_setaclargs arg = {
2706 .fh = NFS_FH(inode),
2710 struct rpc_message msg = {
2711 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2717 if (!nfs4_server_supports_acls(server))
2719 nfs_inode_return_delegation(inode);
2720 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
2721 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2722 nfs_zap_caches(inode);
2726 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2728 struct nfs4_exception exception = { };
2731 err = nfs4_handle_exception(NFS_SERVER(inode),
2732 __nfs4_proc_set_acl(inode, buf, buflen),
2734 } while (exception.retry);
2739 nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
2741 struct nfs_client *clp = server->nfs_client;
2743 if (!clp || task->tk_status >= 0)
2745 switch(task->tk_status) {
2746 case -NFS4ERR_STALE_CLIENTID:
2747 case -NFS4ERR_STALE_STATEID:
2748 case -NFS4ERR_EXPIRED:
2749 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL, NULL);
2750 nfs4_schedule_state_recovery(clp);
2751 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
2752 rpc_wake_up_task(task);
2753 task->tk_status = 0;
2755 case -NFS4ERR_DELAY:
2756 nfs_inc_server_stats((struct nfs_server *) server,
2758 case -NFS4ERR_GRACE:
2759 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2760 task->tk_status = 0;
2762 case -NFS4ERR_OLD_STATEID:
2763 task->tk_status = 0;
2766 task->tk_status = nfs4_map_errors(task->tk_status);
2770 static int nfs4_wait_bit_interruptible(void *word)
2772 if (signal_pending(current))
2773 return -ERESTARTSYS;
2778 static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
2785 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2787 rpc_clnt_sigmask(clnt, &oldset);
2788 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
2789 nfs4_wait_bit_interruptible,
2790 TASK_INTERRUPTIBLE);
2791 rpc_clnt_sigunmask(clnt, &oldset);
2793 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
2797 static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2805 *timeout = NFS4_POLL_RETRY_MIN;
2806 if (*timeout > NFS4_POLL_RETRY_MAX)
2807 *timeout = NFS4_POLL_RETRY_MAX;
2808 rpc_clnt_sigmask(clnt, &oldset);
2809 if (clnt->cl_intr) {
2810 schedule_timeout_interruptible(*timeout);
2814 schedule_timeout_uninterruptible(*timeout);
2815 rpc_clnt_sigunmask(clnt, &oldset);
2820 /* This is the error handling routine for processes that are allowed
2823 static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
2825 struct nfs_client *clp = server->nfs_client;
2826 int ret = errorcode;
2828 exception->retry = 0;
2832 case -NFS4ERR_STALE_CLIENTID:
2833 case -NFS4ERR_STALE_STATEID:
2834 case -NFS4ERR_EXPIRED:
2835 nfs4_schedule_state_recovery(clp);
2836 ret = nfs4_wait_clnt_recover(server->client, clp);
2838 exception->retry = 1;
2840 case -NFS4ERR_FILE_OPEN:
2841 case -NFS4ERR_GRACE:
2842 case -NFS4ERR_DELAY:
2843 ret = nfs4_delay(server->client, &exception->timeout);
2846 case -NFS4ERR_OLD_STATEID:
2847 exception->retry = 1;
2849 /* We failed to handle the error */
2850 return nfs4_map_errors(ret);
2853 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
2855 nfs4_verifier sc_verifier;
2856 struct nfs4_setclientid setclientid = {
2857 .sc_verifier = &sc_verifier,
2860 struct rpc_message msg = {
2861 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2862 .rpc_argp = &setclientid,
2870 p = (__be32*)sc_verifier.data;
2871 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2872 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2875 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
2876 sizeof(setclientid.sc_name), "%s/%u.%u.%u.%u %s %u",
2877 clp->cl_ipaddr, NIPQUAD(clp->cl_addr.sin_addr),
2878 cred->cr_ops->cr_name,
2879 clp->cl_id_uniquifier);
2880 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
2881 sizeof(setclientid.sc_netid), "tcp");
2882 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
2883 sizeof(setclientid.sc_uaddr), "%s.%d.%d",
2884 clp->cl_ipaddr, port >> 8, port & 255);
2886 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2887 if (status != -NFS4ERR_CLID_INUSE)
2892 ssleep(clp->cl_lease_time + 1);
2894 if (++clp->cl_id_uniquifier == 0)
2900 static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
2902 struct nfs_fsinfo fsinfo;
2903 struct rpc_message msg = {
2904 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2906 .rpc_resp = &fsinfo,
2913 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2915 spin_lock(&clp->cl_lock);
2916 clp->cl_lease_time = fsinfo.lease_time * HZ;
2917 clp->cl_last_renewal = now;
2918 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
2919 spin_unlock(&clp->cl_lock);
2924 int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
2929 err = _nfs4_proc_setclientid_confirm(clp, cred);
2933 case -NFS4ERR_RESOURCE:
2934 /* The IBM lawyers misread another document! */
2935 case -NFS4ERR_DELAY:
2936 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2942 struct nfs4_delegreturndata {
2943 struct nfs4_delegreturnargs args;
2944 struct nfs4_delegreturnres res;
2946 nfs4_stateid stateid;
2947 struct rpc_cred *cred;
2948 unsigned long timestamp;
2949 struct nfs_fattr fattr;
2953 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *calldata)
2955 struct nfs4_delegreturndata *data = calldata;
2956 struct rpc_message msg = {
2957 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
2958 .rpc_argp = &data->args,
2959 .rpc_resp = &data->res,
2960 .rpc_cred = data->cred,
2962 nfs_fattr_init(data->res.fattr);
2963 rpc_call_setup(task, &msg, 0);
2966 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2968 struct nfs4_delegreturndata *data = calldata;
2969 data->rpc_status = task->tk_status;
2970 if (data->rpc_status == 0)
2971 renew_lease(data->res.server, data->timestamp);
2974 static void nfs4_delegreturn_release(void *calldata)
2976 struct nfs4_delegreturndata *data = calldata;
2978 put_rpccred(data->cred);
2982 static const struct rpc_call_ops nfs4_delegreturn_ops = {
2983 .rpc_call_prepare = nfs4_delegreturn_prepare,
2984 .rpc_call_done = nfs4_delegreturn_done,
2985 .rpc_release = nfs4_delegreturn_release,
2988 static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
2990 struct nfs4_delegreturndata *data;
2991 struct nfs_server *server = NFS_SERVER(inode);
2992 struct rpc_task *task;
2995 data = kmalloc(sizeof(*data), GFP_KERNEL);
2998 data->args.fhandle = &data->fh;
2999 data->args.stateid = &data->stateid;
3000 data->args.bitmask = server->attr_bitmask;
3001 nfs_copy_fh(&data->fh, NFS_FH(inode));
3002 memcpy(&data->stateid, stateid, sizeof(data->stateid));
3003 data->res.fattr = &data->fattr;
3004 data->res.server = server;
3005 data->cred = get_rpccred(cred);
3006 data->timestamp = jiffies;
3007 data->rpc_status = 0;
3009 task = rpc_run_task(NFS_CLIENT(inode), RPC_TASK_ASYNC, &nfs4_delegreturn_ops, data);
3011 return PTR_ERR(task);
3012 status = nfs4_wait_for_completion_rpc_task(task);
3014 status = data->rpc_status;
3016 nfs_post_op_update_inode(inode, &data->fattr);
3022 int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
3024 struct nfs_server *server = NFS_SERVER(inode);
3025 struct nfs4_exception exception = { };
3028 err = _nfs4_proc_delegreturn(inode, cred, stateid);
3030 case -NFS4ERR_STALE_STATEID:
3031 case -NFS4ERR_EXPIRED:
3035 err = nfs4_handle_exception(server, err, &exception);
3036 } while (exception.retry);
3040 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3041 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3044 * sleep, with exponential backoff, and retry the LOCK operation.
3046 static unsigned long
3047 nfs4_set_lock_task_retry(unsigned long timeout)
3049 schedule_timeout_interruptible(timeout);
3051 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3052 return NFS4_LOCK_MAXTIMEOUT;
3056 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3058 struct inode *inode = state->inode;
3059 struct nfs_server *server = NFS_SERVER(inode);
3060 struct nfs_client *clp = server->nfs_client;
3061 struct nfs_lockt_args arg = {
3062 .fh = NFS_FH(inode),
3065 struct nfs_lockt_res res = {
3068 struct rpc_message msg = {
3069 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3072 .rpc_cred = state->owner->so_cred,
3074 struct nfs4_lock_state *lsp;
3077 down_read(&clp->cl_sem);
3078 arg.lock_owner.clientid = clp->cl_clientid;
3079 status = nfs4_set_lock_state(state, request);
3082 lsp = request->fl_u.nfs4_fl.owner;
3083 arg.lock_owner.id = lsp->ls_id.id;
3084 status = rpc_call_sync(server->client, &msg, 0);
3087 request->fl_type = F_UNLCK;
3089 case -NFS4ERR_DENIED:
3092 request->fl_ops->fl_release_private(request);
3094 up_read(&clp->cl_sem);
3098 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3100 struct nfs4_exception exception = { };
3104 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3105 _nfs4_proc_getlk(state, cmd, request),
3107 } while (exception.retry);
3111 static int do_vfs_lock(struct file *file, struct file_lock *fl)
3114 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3116 res = posix_lock_file_wait(file, fl);
3119 res = flock_lock_file_wait(file, fl);
3127 struct nfs4_unlockdata {
3128 struct nfs_locku_args arg;
3129 struct nfs_locku_res res;
3130 struct nfs4_lock_state *lsp;
3131 struct nfs_open_context *ctx;
3132 struct file_lock fl;
3133 const struct nfs_server *server;
3134 unsigned long timestamp;
3137 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3138 struct nfs_open_context *ctx,
3139 struct nfs4_lock_state *lsp,
3140 struct nfs_seqid *seqid)
3142 struct nfs4_unlockdata *p;
3143 struct inode *inode = lsp->ls_state->inode;
3145 p = kmalloc(sizeof(*p), GFP_KERNEL);
3148 p->arg.fh = NFS_FH(inode);
3150 p->arg.seqid = seqid;
3151 p->arg.stateid = &lsp->ls_stateid;
3153 atomic_inc(&lsp->ls_count);
3154 /* Ensure we don't close file until we're done freeing locks! */
3155 p->ctx = get_nfs_open_context(ctx);
3156 memcpy(&p->fl, fl, sizeof(p->fl));
3157 p->server = NFS_SERVER(inode);
3161 static void nfs4_locku_release_calldata(void *data)
3163 struct nfs4_unlockdata *calldata = data;
3164 nfs_free_seqid(calldata->arg.seqid);
3165 nfs4_put_lock_state(calldata->lsp);
3166 put_nfs_open_context(calldata->ctx);
3170 static void nfs4_locku_done(struct rpc_task *task, void *data)
3172 struct nfs4_unlockdata *calldata = data;
3174 if (RPC_ASSASSINATED(task))
3176 nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid);
3177 switch (task->tk_status) {
3179 memcpy(calldata->lsp->ls_stateid.data,
3180 calldata->res.stateid.data,
3181 sizeof(calldata->lsp->ls_stateid.data));
3182 renew_lease(calldata->server, calldata->timestamp);
3184 case -NFS4ERR_STALE_STATEID:
3185 case -NFS4ERR_EXPIRED:
3188 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
3189 rpc_restart_call(task);
3193 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
3195 struct nfs4_unlockdata *calldata = data;
3196 struct rpc_message msg = {
3197 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3198 .rpc_argp = &calldata->arg,
3199 .rpc_resp = &calldata->res,
3200 .rpc_cred = calldata->lsp->ls_state->owner->so_cred,
3203 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
3205 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
3206 /* Note: exit _without_ running nfs4_locku_done */
3207 task->tk_action = NULL;
3210 calldata->timestamp = jiffies;
3211 rpc_call_setup(task, &msg, 0);
3214 static const struct rpc_call_ops nfs4_locku_ops = {
3215 .rpc_call_prepare = nfs4_locku_prepare,
3216 .rpc_call_done = nfs4_locku_done,
3217 .rpc_release = nfs4_locku_release_calldata,
3220 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3221 struct nfs_open_context *ctx,
3222 struct nfs4_lock_state *lsp,
3223 struct nfs_seqid *seqid)
3225 struct nfs4_unlockdata *data;
3227 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3229 nfs_free_seqid(seqid);
3230 return ERR_PTR(-ENOMEM);
3233 return rpc_run_task(NFS_CLIENT(lsp->ls_state->inode), RPC_TASK_ASYNC, &nfs4_locku_ops, data);
3236 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3238 struct nfs_seqid *seqid;
3239 struct nfs4_lock_state *lsp;
3240 struct rpc_task *task;
3243 status = nfs4_set_lock_state(state, request);
3244 /* Unlock _before_ we do the RPC call */
3245 request->fl_flags |= FL_EXISTS;
3246 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3250 /* Is this a delegated lock? */
3251 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
3253 lsp = request->fl_u.nfs4_fl.owner;
3254 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3258 task = nfs4_do_unlck(request, request->fl_file->private_data, lsp, seqid);
3259 status = PTR_ERR(task);
3262 status = nfs4_wait_for_completion_rpc_task(task);
3268 struct nfs4_lockdata {
3269 struct nfs_lock_args arg;
3270 struct nfs_lock_res res;
3271 struct nfs4_lock_state *lsp;
3272 struct nfs_open_context *ctx;
3273 struct file_lock fl;
3274 unsigned long timestamp;
3279 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3280 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3282 struct nfs4_lockdata *p;
3283 struct inode *inode = lsp->ls_state->inode;
3284 struct nfs_server *server = NFS_SERVER(inode);
3286 p = kzalloc(sizeof(*p), GFP_KERNEL);
3290 p->arg.fh = NFS_FH(inode);
3292 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3293 if (p->arg.lock_seqid == NULL)
3295 p->arg.lock_stateid = &lsp->ls_stateid;
3296 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
3297 p->arg.lock_owner.id = lsp->ls_id.id;
3299 atomic_inc(&lsp->ls_count);
3300 p->ctx = get_nfs_open_context(ctx);
3301 memcpy(&p->fl, fl, sizeof(p->fl));
3308 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3310 struct nfs4_lockdata *data = calldata;
3311 struct nfs4_state *state = data->lsp->ls_state;
3312 struct nfs4_state_owner *sp = state->owner;
3313 struct rpc_message msg = {
3314 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3315 .rpc_argp = &data->arg,
3316 .rpc_resp = &data->res,
3317 .rpc_cred = sp->so_cred,
3320 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3322 dprintk("%s: begin!\n", __FUNCTION__);
3323 /* Do we need to do an open_to_lock_owner? */
3324 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
3325 data->arg.open_seqid = nfs_alloc_seqid(&sp->so_seqid);
3326 if (data->arg.open_seqid == NULL) {
3327 data->rpc_status = -ENOMEM;
3328 task->tk_action = NULL;
3331 data->arg.open_stateid = &state->stateid;
3332 data->arg.new_lock_owner = 1;
3334 data->timestamp = jiffies;
3335 rpc_call_setup(task, &msg, 0);
3337 dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status);
3340 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3342 struct nfs4_lockdata *data = calldata;
3344 dprintk("%s: begin!\n", __FUNCTION__);
3346 data->rpc_status = task->tk_status;
3347 if (RPC_ASSASSINATED(task))
3349 if (data->arg.new_lock_owner != 0) {
3350 nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid);
3351 if (data->rpc_status == 0)
3352 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3356 if (data->rpc_status == 0) {
3357 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3358 sizeof(data->lsp->ls_stateid.data));
3359 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
3360 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
3362 nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid);
3364 dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status);
3367 static void nfs4_lock_release(void *calldata)
3369 struct nfs4_lockdata *data = calldata;
3371 dprintk("%s: begin!\n", __FUNCTION__);
3372 if (data->arg.open_seqid != NULL)
3373 nfs_free_seqid(data->arg.open_seqid);
3374 if (data->cancelled != 0) {
3375 struct rpc_task *task;
3376 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3377 data->arg.lock_seqid);
3380 dprintk("%s: cancelling lock!\n", __FUNCTION__);
3382 nfs_free_seqid(data->arg.lock_seqid);
3383 nfs4_put_lock_state(data->lsp);
3384 put_nfs_open_context(data->ctx);
3386 dprintk("%s: done!\n", __FUNCTION__);
3389 static const struct rpc_call_ops nfs4_lock_ops = {
3390 .rpc_call_prepare = nfs4_lock_prepare,
3391 .rpc_call_done = nfs4_lock_done,
3392 .rpc_release = nfs4_lock_release,
3395 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3397 struct nfs4_lockdata *data;
3398 struct rpc_task *task;
3401 dprintk("%s: begin!\n", __FUNCTION__);
3402 data = nfs4_alloc_lockdata(fl, fl->fl_file->private_data,
3403 fl->fl_u.nfs4_fl.owner);
3407 data->arg.block = 1;
3409 data->arg.reclaim = 1;
3410 task = rpc_run_task(NFS_CLIENT(state->inode), RPC_TASK_ASYNC,
3411 &nfs4_lock_ops, data);
3413 return PTR_ERR(task);
3414 ret = nfs4_wait_for_completion_rpc_task(task);
3416 ret = data->rpc_status;
3417 if (ret == -NFS4ERR_DENIED)
3420 data->cancelled = 1;
3422 dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret);
3426 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3428 struct nfs_server *server = NFS_SERVER(state->inode);
3429 struct nfs4_exception exception = { };
3433 /* Cache the lock if possible... */
3434 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3436 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3437 if (err != -NFS4ERR_DELAY)
3439 nfs4_handle_exception(server, err, &exception);
3440 } while (exception.retry);
3444 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3446 struct nfs_server *server = NFS_SERVER(state->inode);
3447 struct nfs4_exception exception = { };
3450 err = nfs4_set_lock_state(state, request);
3454 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3456 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3457 if (err != -NFS4ERR_DELAY)
3459 nfs4_handle_exception(server, err, &exception);
3460 } while (exception.retry);
3464 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3466 struct nfs_client *clp = state->owner->so_client;
3467 unsigned char fl_flags = request->fl_flags;
3470 /* Is this a delegated open? */
3471 status = nfs4_set_lock_state(state, request);
3474 request->fl_flags |= FL_ACCESS;
3475 status = do_vfs_lock(request->fl_file, request);
3478 down_read(&clp->cl_sem);
3479 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3480 struct nfs_inode *nfsi = NFS_I(state->inode);
3481 /* Yes: cache locks! */
3482 down_read(&nfsi->rwsem);
3483 /* ...but avoid races with delegation recall... */
3484 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3485 request->fl_flags = fl_flags & ~FL_SLEEP;
3486 status = do_vfs_lock(request->fl_file, request);
3487 up_read(&nfsi->rwsem);
3490 up_read(&nfsi->rwsem);
3492 status = _nfs4_do_setlk(state, cmd, request, 0);
3495 /* Note: we always want to sleep here! */
3496 request->fl_flags = fl_flags | FL_SLEEP;
3497 if (do_vfs_lock(request->fl_file, request) < 0)
3498 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
3500 up_read(&clp->cl_sem);
3502 request->fl_flags = fl_flags;
3506 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3508 struct nfs4_exception exception = { };
3512 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3513 _nfs4_proc_setlk(state, cmd, request),
3515 } while (exception.retry);
3520 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3522 struct nfs_open_context *ctx;
3523 struct nfs4_state *state;
3524 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3527 /* verify open state */
3528 ctx = (struct nfs_open_context *)filp->private_data;
3531 if (request->fl_start < 0 || request->fl_end < 0)
3535 return nfs4_proc_getlk(state, F_GETLK, request);
3537 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3540 if (request->fl_type == F_UNLCK)
3541 return nfs4_proc_unlck(state, cmd, request);
3544 status = nfs4_proc_setlk(state, cmd, request);
3545 if ((status != -EAGAIN) || IS_SETLK(cmd))
3547 timeout = nfs4_set_lock_task_retry(timeout);
3548 status = -ERESTARTSYS;
3551 } while(status < 0);
3555 int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3557 struct nfs_server *server = NFS_SERVER(state->inode);
3558 struct nfs4_exception exception = { };
3561 err = nfs4_set_lock_state(state, fl);
3565 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3566 if (err != -NFS4ERR_DELAY)
3568 err = nfs4_handle_exception(server, err, &exception);
3569 } while (exception.retry);
3574 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3576 int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3577 size_t buflen, int flags)
3579 struct inode *inode = dentry->d_inode;
3581 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3584 if (!S_ISREG(inode->i_mode) &&
3585 (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX))
3588 return nfs4_proc_set_acl(inode, buf, buflen);
3591 /* The getxattr man page suggests returning -ENODATA for unknown attributes,
3592 * and that's what we'll do for e.g. user attributes that haven't been set.
3593 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3594 * attributes in kernel-managed attribute namespaces. */
3595 ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3598 struct inode *inode = dentry->d_inode;
3600 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3603 return nfs4_proc_get_acl(inode, buf, buflen);
3606 ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3608 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
3610 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3612 if (buf && buflen < len)
3615 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3619 int nfs4_proc_fs_locations(struct inode *dir, struct qstr *name,
3620 struct nfs4_fs_locations *fs_locations, struct page *page)
3622 struct nfs_server *server = NFS_SERVER(dir);
3624 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3625 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
3627 struct nfs4_fs_locations_arg args = {
3628 .dir_fh = NFS_FH(dir),
3633 struct rpc_message msg = {
3634 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3636 .rpc_resp = fs_locations,
3640 dprintk("%s: start\n", __FUNCTION__);
3641 nfs_fattr_init(&fs_locations->fattr);
3642 fs_locations->server = server;
3643 fs_locations->nlocations = 0;
3644 status = rpc_call_sync(server->client, &msg, 0);
3645 dprintk("%s: returned status = %d\n", __FUNCTION__, status);
3649 struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3650 .recover_open = nfs4_open_reclaim,
3651 .recover_lock = nfs4_lock_reclaim,
3654 struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3655 .recover_open = nfs4_open_expired,
3656 .recover_lock = nfs4_lock_expired,
3659 static const struct inode_operations nfs4_file_inode_operations = {
3660 .permission = nfs_permission,
3661 .getattr = nfs_getattr,
3662 .setattr = nfs_setattr,
3663 .getxattr = nfs4_getxattr,
3664 .setxattr = nfs4_setxattr,
3665 .listxattr = nfs4_listxattr,
3668 const struct nfs_rpc_ops nfs_v4_clientops = {
3669 .version = 4, /* protocol version */
3670 .dentry_ops = &nfs4_dentry_operations,
3671 .dir_inode_ops = &nfs4_dir_inode_operations,
3672 .file_inode_ops = &nfs4_file_inode_operations,
3673 .getroot = nfs4_proc_get_root,
3674 .getattr = nfs4_proc_getattr,
3675 .setattr = nfs4_proc_setattr,
3676 .lookupfh = nfs4_proc_lookupfh,
3677 .lookup = nfs4_proc_lookup,
3678 .access = nfs4_proc_access,
3679 .readlink = nfs4_proc_readlink,
3680 .create = nfs4_proc_create,
3681 .remove = nfs4_proc_remove,
3682 .unlink_setup = nfs4_proc_unlink_setup,
3683 .unlink_done = nfs4_proc_unlink_done,
3684 .rename = nfs4_proc_rename,
3685 .link = nfs4_proc_link,
3686 .symlink = nfs4_proc_symlink,
3687 .mkdir = nfs4_proc_mkdir,
3688 .rmdir = nfs4_proc_remove,
3689 .readdir = nfs4_proc_readdir,
3690 .mknod = nfs4_proc_mknod,
3691 .statfs = nfs4_proc_statfs,
3692 .fsinfo = nfs4_proc_fsinfo,
3693 .pathconf = nfs4_proc_pathconf,
3694 .set_capabilities = nfs4_server_capabilities,
3695 .decode_dirent = nfs4_decode_dirent,
3696 .read_setup = nfs4_proc_read_setup,
3697 .read_done = nfs4_read_done,
3698 .write_setup = nfs4_proc_write_setup,
3699 .write_done = nfs4_write_done,
3700 .commit_setup = nfs4_proc_commit_setup,
3701 .commit_done = nfs4_commit_done,
3702 .file_open = nfs_open,
3703 .file_release = nfs_release,
3704 .lock = nfs4_proc_lock,
3705 .clear_acl_cache = nfs4_zap_acl_attr,