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_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;
233 static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
234 struct nfs4_state_owner *sp, int flags,
235 const struct iattr *attrs)
237 struct dentry *parent = dget_parent(path->dentry);
238 struct inode *dir = parent->d_inode;
239 struct nfs_server *server = NFS_SERVER(dir);
240 struct nfs4_opendata *p;
242 p = kzalloc(sizeof(*p), GFP_KERNEL);
245 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
246 if (p->o_arg.seqid == NULL)
248 p->path.mnt = mntget(path->mnt);
249 p->path.dentry = dget(path->dentry);
252 atomic_inc(&sp->so_count);
253 p->o_arg.fh = NFS_FH(dir);
254 p->o_arg.open_flags = flags,
255 p->o_arg.clientid = server->nfs_client->cl_clientid;
256 p->o_arg.id = sp->so_id;
257 p->o_arg.name = &p->path.dentry->d_name;
258 p->o_arg.server = server;
259 p->o_arg.bitmask = server->attr_bitmask;
260 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
261 p->o_res.f_attr = &p->f_attr;
262 p->o_res.dir_attr = &p->dir_attr;
263 p->o_res.server = server;
264 nfs_fattr_init(&p->f_attr);
265 nfs_fattr_init(&p->dir_attr);
266 if (flags & O_EXCL) {
267 u32 *s = (u32 *) p->o_arg.u.verifier.data;
270 } else if (flags & O_CREAT) {
271 p->o_arg.u.attrs = &p->attrs;
272 memcpy(&p->attrs, attrs, sizeof(p->attrs));
274 p->c_arg.fh = &p->o_res.fh;
275 p->c_arg.stateid = &p->o_res.stateid;
276 p->c_arg.seqid = p->o_arg.seqid;
286 static void nfs4_opendata_free(struct kref *kref)
288 struct nfs4_opendata *p = container_of(kref,
289 struct nfs4_opendata, kref);
291 nfs_free_seqid(p->o_arg.seqid);
292 nfs4_put_state_owner(p->owner);
294 dput(p->path.dentry);
299 static void nfs4_opendata_put(struct nfs4_opendata *p)
302 kref_put(&p->kref, nfs4_opendata_free);
305 static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
310 rpc_clnt_sigmask(task->tk_client, &oldset);
311 ret = rpc_wait_for_completion_task(task);
312 rpc_clnt_sigunmask(task->tk_client, &oldset);
316 static inline void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
318 switch (open_flags) {
325 case FMODE_READ|FMODE_WRITE:
330 static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags)
332 struct inode *inode = state->inode;
334 open_flags &= (FMODE_READ|FMODE_WRITE);
335 /* Protect against nfs4_find_state_byowner() */
336 spin_lock(&state->owner->so_lock);
337 spin_lock(&inode->i_lock);
338 memcpy(&state->stateid, stateid, sizeof(state->stateid));
339 update_open_stateflags(state, open_flags);
340 nfs4_state_set_mode_locked(state, state->state | open_flags);
341 spin_unlock(&inode->i_lock);
342 spin_unlock(&state->owner->so_lock);
345 static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
348 struct nfs4_state *state = NULL;
350 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
352 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
355 state = nfs4_get_open_state(inode, data->owner);
358 update_open_stateid(state, &data->o_res.stateid, data->o_arg.open_flags);
365 static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
367 struct nfs_inode *nfsi = NFS_I(state->inode);
368 struct nfs_open_context *ctx;
370 spin_lock(&state->inode->i_lock);
371 list_for_each_entry(ctx, &nfsi->open_files, list) {
372 if (ctx->state != state)
374 get_nfs_open_context(ctx);
375 spin_unlock(&state->inode->i_lock);
378 spin_unlock(&state->inode->i_lock);
379 return ERR_PTR(-ENOENT);
382 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, nfs4_stateid *stateid)
386 opendata->o_arg.open_flags = openflags;
387 ret = _nfs4_proc_open(opendata);
390 memcpy(stateid->data, opendata->o_res.stateid.data,
391 sizeof(stateid->data));
395 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
397 nfs4_stateid stateid;
398 struct nfs4_state *newstate;
403 /* memory barrier prior to reading state->n_* */
405 if (state->n_rdwr != 0) {
406 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &stateid);
409 mode |= FMODE_READ|FMODE_WRITE;
410 if (opendata->o_res.delegation_type != 0)
411 delegation = opendata->o_res.delegation_type;
414 if (state->n_wronly != 0) {
415 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &stateid);
419 if (opendata->o_res.delegation_type != 0)
420 delegation = opendata->o_res.delegation_type;
423 if (state->n_rdonly != 0) {
424 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &stateid);
429 clear_bit(NFS_DELEGATED_STATE, &state->flags);
432 if (opendata->o_res.delegation_type == 0)
433 opendata->o_res.delegation_type = delegation;
434 opendata->o_arg.open_flags |= mode;
435 newstate = nfs4_opendata_to_nfs4_state(opendata);
436 if (newstate != NULL) {
437 if (opendata->o_res.delegation_type != 0) {
438 struct nfs_inode *nfsi = NFS_I(newstate->inode);
439 int delegation_flags = 0;
440 if (nfsi->delegation)
441 delegation_flags = nfsi->delegation->flags;
442 if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
443 nfs_inode_set_delegation(newstate->inode,
444 opendata->owner->so_cred,
447 nfs_inode_reclaim_delegation(newstate->inode,
448 opendata->owner->so_cred,
451 nfs4_close_state(&opendata->path, newstate, opendata->o_arg.open_flags);
453 if (newstate != state)
460 * reclaim state on the server after a reboot.
462 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
464 struct nfs_delegation *delegation = NFS_I(state->inode)->delegation;
465 struct nfs4_opendata *opendata;
466 int delegation_type = 0;
469 if (delegation != NULL) {
470 if (!(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
471 memcpy(&state->stateid, &delegation->stateid,
472 sizeof(state->stateid));
473 set_bit(NFS_DELEGATED_STATE, &state->flags);
476 delegation_type = delegation->type;
478 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
479 if (opendata == NULL)
481 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
482 opendata->o_arg.fh = NFS_FH(state->inode);
483 nfs_copy_fh(&opendata->o_res.fh, opendata->o_arg.fh);
484 opendata->o_arg.u.delegation_type = delegation_type;
485 status = nfs4_open_recover(opendata, state);
486 nfs4_opendata_put(opendata);
490 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
492 struct nfs_server *server = NFS_SERVER(state->inode);
493 struct nfs4_exception exception = { };
496 err = _nfs4_do_open_reclaim(ctx, state);
497 if (err != -NFS4ERR_DELAY)
499 nfs4_handle_exception(server, err, &exception);
500 } while (exception.retry);
504 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
506 struct nfs_open_context *ctx;
509 ctx = nfs4_state_find_open_context(state);
512 ret = nfs4_do_open_reclaim(ctx, state);
513 put_nfs_open_context(ctx);
517 static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state)
519 struct nfs4_state_owner *sp = state->owner;
520 struct nfs4_opendata *opendata;
523 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
525 opendata = nfs4_opendata_alloc(&ctx->path, sp, 0, NULL);
526 if (opendata == NULL)
528 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
529 memcpy(opendata->o_arg.u.delegation.data, state->stateid.data,
530 sizeof(opendata->o_arg.u.delegation.data));
531 ret = nfs4_open_recover(opendata, state);
532 nfs4_opendata_put(opendata);
536 int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state)
538 struct nfs4_exception exception = { };
539 struct nfs_server *server = NFS_SERVER(state->inode);
542 err = _nfs4_open_delegation_recall(ctx, state);
546 case -NFS4ERR_STALE_CLIENTID:
547 case -NFS4ERR_STALE_STATEID:
548 case -NFS4ERR_EXPIRED:
549 /* Don't recall a delegation if it was lost */
550 nfs4_schedule_state_recovery(server->nfs_client);
553 err = nfs4_handle_exception(server, err, &exception);
554 } while (exception.retry);
558 static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
560 struct nfs4_opendata *data = calldata;
561 struct rpc_message msg = {
562 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
563 .rpc_argp = &data->c_arg,
564 .rpc_resp = &data->c_res,
565 .rpc_cred = data->owner->so_cred,
567 data->timestamp = jiffies;
568 rpc_call_setup(task, &msg, 0);
571 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
573 struct nfs4_opendata *data = calldata;
575 data->rpc_status = task->tk_status;
576 if (RPC_ASSASSINATED(task))
578 if (data->rpc_status == 0) {
579 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
580 sizeof(data->o_res.stateid.data));
581 renew_lease(data->o_res.server, data->timestamp);
583 nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid);
584 nfs_confirm_seqid(&data->owner->so_seqid, data->rpc_status);
587 static void nfs4_open_confirm_release(void *calldata)
589 struct nfs4_opendata *data = calldata;
590 struct nfs4_state *state = NULL;
592 /* If this request hasn't been cancelled, do nothing */
593 if (data->cancelled == 0)
595 /* In case of error, no cleanup! */
596 if (data->rpc_status != 0)
598 nfs_confirm_seqid(&data->owner->so_seqid, 0);
599 state = nfs4_opendata_to_nfs4_state(data);
601 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
603 nfs4_opendata_put(data);
606 static const struct rpc_call_ops nfs4_open_confirm_ops = {
607 .rpc_call_prepare = nfs4_open_confirm_prepare,
608 .rpc_call_done = nfs4_open_confirm_done,
609 .rpc_release = nfs4_open_confirm_release,
613 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
615 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
617 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
618 struct rpc_task *task;
621 kref_get(&data->kref);
623 * If rpc_run_task() ends up calling ->rpc_release(), we
624 * want to ensure that it takes the 'error' code path.
626 data->rpc_status = -ENOMEM;
627 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_confirm_ops, data);
629 return PTR_ERR(task);
630 status = nfs4_wait_for_completion_rpc_task(task);
635 status = data->rpc_status;
640 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
642 struct nfs4_opendata *data = calldata;
643 struct nfs4_state_owner *sp = data->owner;
644 struct rpc_message msg = {
645 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
646 .rpc_argp = &data->o_arg,
647 .rpc_resp = &data->o_res,
648 .rpc_cred = sp->so_cred,
651 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
653 /* Update sequence id. */
654 data->o_arg.id = sp->so_id;
655 data->o_arg.clientid = sp->so_client->cl_clientid;
656 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
657 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
658 data->timestamp = jiffies;
659 rpc_call_setup(task, &msg, 0);
662 static void nfs4_open_done(struct rpc_task *task, void *calldata)
664 struct nfs4_opendata *data = calldata;
666 data->rpc_status = task->tk_status;
667 if (RPC_ASSASSINATED(task))
669 if (task->tk_status == 0) {
670 switch (data->o_res.f_attr->mode & S_IFMT) {
674 data->rpc_status = -ELOOP;
677 data->rpc_status = -EISDIR;
680 data->rpc_status = -ENOTDIR;
682 renew_lease(data->o_res.server, data->timestamp);
684 nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid);
687 static void nfs4_open_release(void *calldata)
689 struct nfs4_opendata *data = calldata;
690 struct nfs4_state *state = NULL;
692 /* If this request hasn't been cancelled, do nothing */
693 if (data->cancelled == 0)
695 /* In case of error, no cleanup! */
696 if (data->rpc_status != 0)
698 /* In case we need an open_confirm, no cleanup! */
699 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
701 nfs_confirm_seqid(&data->owner->so_seqid, 0);
702 state = nfs4_opendata_to_nfs4_state(data);
704 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
706 nfs4_opendata_put(data);
709 static const struct rpc_call_ops nfs4_open_ops = {
710 .rpc_call_prepare = nfs4_open_prepare,
711 .rpc_call_done = nfs4_open_done,
712 .rpc_release = nfs4_open_release,
716 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
718 static int _nfs4_proc_open(struct nfs4_opendata *data)
720 struct inode *dir = data->dir->d_inode;
721 struct nfs_server *server = NFS_SERVER(dir);
722 struct nfs_openargs *o_arg = &data->o_arg;
723 struct nfs_openres *o_res = &data->o_res;
724 struct rpc_task *task;
727 kref_get(&data->kref);
729 * If rpc_run_task() ends up calling ->rpc_release(), we
730 * want to ensure that it takes the 'error' code path.
732 data->rpc_status = -ENOMEM;
733 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_ops, data);
735 return PTR_ERR(task);
736 status = nfs4_wait_for_completion_rpc_task(task);
741 status = data->rpc_status;
746 if (o_arg->open_flags & O_CREAT) {
747 update_changeattr(dir, &o_res->cinfo);
748 nfs_post_op_update_inode(dir, o_res->dir_attr);
750 nfs_refresh_inode(dir, o_res->dir_attr);
751 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
752 status = _nfs4_proc_open_confirm(data);
756 nfs_confirm_seqid(&data->owner->so_seqid, 0);
757 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
758 return server->nfs_client->rpc_ops->getattr(server, &o_res->fh, o_res->f_attr);
762 static int _nfs4_do_access(struct inode *inode, struct rpc_cred *cred, int openflags)
764 struct nfs_access_entry cache;
768 if (openflags & FMODE_READ)
770 if (openflags & FMODE_WRITE)
772 status = nfs_access_get_cached(inode, cred, &cache);
776 /* Be clever: ask server to check for all possible rights */
777 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
779 cache.jiffies = jiffies;
780 status = _nfs4_proc_access(inode, &cache);
783 nfs_access_add_cache(inode, &cache);
785 if ((cache.mask & mask) == mask)
790 static int nfs4_recover_expired_lease(struct nfs_server *server)
792 struct nfs_client *clp = server->nfs_client;
796 ret = nfs4_wait_clnt_recover(server->client, clp);
799 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
801 nfs4_schedule_state_recovery(clp);
808 * reclaim state on the server after a network partition.
809 * Assumes caller holds the appropriate lock
811 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
813 struct inode *inode = state->inode;
814 struct nfs_delegation *delegation = NFS_I(inode)->delegation;
815 struct nfs4_opendata *opendata;
816 int openflags = state->state & (FMODE_READ|FMODE_WRITE);
819 if (delegation != NULL && !(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
820 ret = _nfs4_do_access(inode, ctx->cred, openflags);
823 memcpy(&state->stateid, &delegation->stateid, sizeof(state->stateid));
824 set_bit(NFS_DELEGATED_STATE, &state->flags);
827 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, openflags, NULL);
828 if (opendata == NULL)
830 ret = nfs4_open_recover(opendata, state);
831 if (ret == -ESTALE) {
832 /* Invalidate the state owner so we don't ever use it again */
833 nfs4_drop_state_owner(state->owner);
834 d_drop(ctx->path.dentry);
836 nfs4_opendata_put(opendata);
840 static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
842 struct nfs_server *server = NFS_SERVER(state->inode);
843 struct nfs4_exception exception = { };
847 err = _nfs4_open_expired(ctx, state);
848 if (err == -NFS4ERR_DELAY)
849 nfs4_handle_exception(server, err, &exception);
850 } while (exception.retry);
854 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
856 struct nfs_open_context *ctx;
859 ctx = nfs4_state_find_open_context(state);
862 ret = nfs4_do_open_expired(ctx, state);
863 put_nfs_open_context(ctx);
868 * Returns a referenced nfs4_state if there is an open delegation on the file
870 static int _nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred, struct nfs4_state **res)
872 struct nfs_delegation *delegation;
873 struct nfs_server *server = NFS_SERVER(inode);
874 struct nfs_client *clp = server->nfs_client;
875 struct nfs_inode *nfsi = NFS_I(inode);
876 struct nfs4_state_owner *sp = NULL;
877 struct nfs4_state *state = NULL;
878 int open_flags = flags & (FMODE_READ|FMODE_WRITE);
882 if (!(sp = nfs4_get_state_owner(server, cred))) {
883 dprintk("%s: nfs4_get_state_owner failed!\n", __FUNCTION__);
886 err = nfs4_recover_expired_lease(server);
888 goto out_put_state_owner;
889 /* Protect against reboot recovery - NOTE ORDER! */
890 down_read(&clp->cl_sem);
891 /* Protect against delegation recall */
892 down_read(&nfsi->rwsem);
893 delegation = NFS_I(inode)->delegation;
895 if (delegation == NULL || (delegation->type & open_flags) != open_flags)
898 state = nfs4_get_open_state(inode, sp);
903 if ((state->state & open_flags) == open_flags) {
904 spin_lock(&inode->i_lock);
905 update_open_stateflags(state, open_flags);
906 spin_unlock(&inode->i_lock);
908 } else if (state->state != 0)
909 goto out_put_open_state;
912 err = _nfs4_do_access(inode, cred, open_flags);
915 goto out_put_open_state;
916 set_bit(NFS_DELEGATED_STATE, &state->flags);
917 update_open_stateid(state, &delegation->stateid, open_flags);
919 nfs4_put_state_owner(sp);
920 up_read(&nfsi->rwsem);
921 up_read(&clp->cl_sem);
925 nfs4_put_open_state(state);
927 up_read(&nfsi->rwsem);
928 up_read(&clp->cl_sem);
930 nfs_inode_return_delegation(inode);
932 nfs4_put_state_owner(sp);
936 static struct nfs4_state *nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred)
938 struct nfs4_exception exception = { };
939 struct nfs4_state *res = ERR_PTR(-EIO);
943 err = _nfs4_open_delegated(inode, flags, cred, &res);
946 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(inode),
948 } while (exception.retry);
953 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
954 * fields corresponding to attributes that were used to store the verifier.
955 * Make sure we clobber those fields in the later setattr call
957 static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
959 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
960 !(sattr->ia_valid & ATTR_ATIME_SET))
961 sattr->ia_valid |= ATTR_ATIME;
963 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
964 !(sattr->ia_valid & ATTR_MTIME_SET))
965 sattr->ia_valid |= ATTR_MTIME;
969 * Returns a referenced nfs4_state
971 static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
973 struct nfs4_state_owner *sp;
974 struct nfs4_state *state = NULL;
975 struct nfs_server *server = NFS_SERVER(dir);
976 struct nfs_client *clp = server->nfs_client;
977 struct nfs4_opendata *opendata;
980 /* Protect against reboot recovery conflicts */
982 if (!(sp = nfs4_get_state_owner(server, cred))) {
983 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
986 status = nfs4_recover_expired_lease(server);
988 goto err_put_state_owner;
989 down_read(&clp->cl_sem);
991 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
992 if (opendata == NULL)
993 goto err_release_rwsem;
995 status = _nfs4_proc_open(opendata);
997 goto err_opendata_put;
999 if (opendata->o_arg.open_flags & O_EXCL)
1000 nfs4_exclusive_attrset(opendata, sattr);
1003 state = nfs4_opendata_to_nfs4_state(opendata);
1005 goto err_opendata_put;
1006 if (opendata->o_res.delegation_type != 0)
1007 nfs_inode_set_delegation(state->inode, cred, &opendata->o_res);
1008 nfs4_opendata_put(opendata);
1009 nfs4_put_state_owner(sp);
1010 up_read(&clp->cl_sem);
1014 nfs4_opendata_put(opendata);
1016 up_read(&clp->cl_sem);
1017 err_put_state_owner:
1018 nfs4_put_state_owner(sp);
1025 static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred)
1027 struct nfs4_exception exception = { };
1028 struct nfs4_state *res;
1032 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
1035 /* NOTE: BAD_SEQID means the server and client disagree about the
1036 * book-keeping w.r.t. state-changing operations
1037 * (OPEN/CLOSE/LOCK/LOCKU...)
1038 * It is actually a sign of a bug on the client or on the server.
1040 * If we receive a BAD_SEQID error in the particular case of
1041 * doing an OPEN, we assume that nfs_increment_open_seqid() will
1042 * have unhashed the old state_owner for us, and that we can
1043 * therefore safely retry using a new one. We should still warn
1044 * the user though...
1046 if (status == -NFS4ERR_BAD_SEQID) {
1047 printk(KERN_WARNING "NFS: v4 server returned a bad sequence-id error!\n");
1048 exception.retry = 1;
1052 * BAD_STATEID on OPEN means that the server cancelled our
1053 * state before it received the OPEN_CONFIRM.
1054 * Recover by retrying the request as per the discussion
1055 * on Page 181 of RFC3530.
1057 if (status == -NFS4ERR_BAD_STATEID) {
1058 exception.retry = 1;
1061 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1062 status, &exception));
1063 } while (exception.retry);
1067 static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1068 struct iattr *sattr, struct nfs4_state *state)
1070 struct nfs_server *server = NFS_SERVER(inode);
1071 struct nfs_setattrargs arg = {
1072 .fh = NFS_FH(inode),
1075 .bitmask = server->attr_bitmask,
1077 struct nfs_setattrres res = {
1081 struct rpc_message msg = {
1082 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1086 unsigned long timestamp = jiffies;
1089 nfs_fattr_init(fattr);
1091 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1092 /* Use that stateid */
1093 } else if (state != NULL) {
1094 msg.rpc_cred = state->owner->so_cred;
1095 nfs4_copy_stateid(&arg.stateid, state, current->files);
1097 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1099 status = rpc_call_sync(server->client, &msg, 0);
1100 if (status == 0 && state != NULL)
1101 renew_lease(server, timestamp);
1105 static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1106 struct iattr *sattr, struct nfs4_state *state)
1108 struct nfs_server *server = NFS_SERVER(inode);
1109 struct nfs4_exception exception = { };
1112 err = nfs4_handle_exception(server,
1113 _nfs4_do_setattr(inode, fattr, sattr, state),
1115 } while (exception.retry);
1119 struct nfs4_closedata {
1121 struct inode *inode;
1122 struct nfs4_state *state;
1123 struct nfs_closeargs arg;
1124 struct nfs_closeres res;
1125 struct nfs_fattr fattr;
1126 unsigned long timestamp;
1129 static void nfs4_free_closedata(void *data)
1131 struct nfs4_closedata *calldata = data;
1132 struct nfs4_state_owner *sp = calldata->state->owner;
1134 nfs4_put_open_state(calldata->state);
1135 nfs_free_seqid(calldata->arg.seqid);
1136 nfs4_put_state_owner(sp);
1137 dput(calldata->path.dentry);
1138 mntput(calldata->path.mnt);
1142 static void nfs4_close_done(struct rpc_task *task, void *data)
1144 struct nfs4_closedata *calldata = data;
1145 struct nfs4_state *state = calldata->state;
1146 struct nfs_server *server = NFS_SERVER(calldata->inode);
1148 if (RPC_ASSASSINATED(task))
1150 /* hmm. we are done with the inode, and in the process of freeing
1151 * the state_owner. we keep this around to process errors
1153 nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid);
1154 switch (task->tk_status) {
1156 memcpy(&state->stateid, &calldata->res.stateid,
1157 sizeof(state->stateid));
1158 renew_lease(server, calldata->timestamp);
1160 case -NFS4ERR_STALE_STATEID:
1161 case -NFS4ERR_EXPIRED:
1164 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1165 rpc_restart_call(task);
1169 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
1172 static void nfs4_close_prepare(struct rpc_task *task, void *data)
1174 struct nfs4_closedata *calldata = data;
1175 struct nfs4_state *state = calldata->state;
1176 struct rpc_message msg = {
1177 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1178 .rpc_argp = &calldata->arg,
1179 .rpc_resp = &calldata->res,
1180 .rpc_cred = state->owner->so_cred,
1182 int mode = 0, old_mode;
1184 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
1186 /* Recalculate the new open mode in case someone reopened the file
1187 * while we were waiting in line to be scheduled.
1189 spin_lock(&state->owner->so_lock);
1190 spin_lock(&calldata->inode->i_lock);
1191 mode = old_mode = state->state;
1192 if (state->n_rdwr == 0) {
1193 if (state->n_rdonly == 0)
1194 mode &= ~FMODE_READ;
1195 if (state->n_wronly == 0)
1196 mode &= ~FMODE_WRITE;
1198 nfs4_state_set_mode_locked(state, mode);
1199 spin_unlock(&calldata->inode->i_lock);
1200 spin_unlock(&state->owner->so_lock);
1201 if (mode == old_mode || test_bit(NFS_DELEGATED_STATE, &state->flags)) {
1202 /* Note: exit _without_ calling nfs4_close_done */
1203 task->tk_action = NULL;
1206 nfs_fattr_init(calldata->res.fattr);
1208 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1209 calldata->arg.open_flags = mode;
1210 calldata->timestamp = jiffies;
1211 rpc_call_setup(task, &msg, 0);
1214 static const struct rpc_call_ops nfs4_close_ops = {
1215 .rpc_call_prepare = nfs4_close_prepare,
1216 .rpc_call_done = nfs4_close_done,
1217 .rpc_release = nfs4_free_closedata,
1221 * It is possible for data to be read/written from a mem-mapped file
1222 * after the sys_close call (which hits the vfs layer as a flush).
1223 * This means that we can't safely call nfsv4 close on a file until
1224 * the inode is cleared. This in turn means that we are not good
1225 * NFSv4 citizens - we do not indicate to the server to update the file's
1226 * share state even when we are done with one of the three share
1227 * stateid's in the inode.
1229 * NOTE: Caller must be holding the sp->so_owner semaphore!
1231 int nfs4_do_close(struct path *path, struct nfs4_state *state)
1233 struct nfs_server *server = NFS_SERVER(state->inode);
1234 struct nfs4_closedata *calldata;
1235 struct nfs4_state_owner *sp = state->owner;
1236 struct rpc_task *task;
1237 int status = -ENOMEM;
1239 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
1240 if (calldata == NULL)
1242 calldata->inode = state->inode;
1243 calldata->state = state;
1244 calldata->arg.fh = NFS_FH(state->inode);
1245 calldata->arg.stateid = &state->stateid;
1246 /* Serialization for the sequence id */
1247 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
1248 if (calldata->arg.seqid == NULL)
1249 goto out_free_calldata;
1250 calldata->arg.bitmask = server->attr_bitmask;
1251 calldata->res.fattr = &calldata->fattr;
1252 calldata->res.server = server;
1253 calldata->path.mnt = mntget(path->mnt);
1254 calldata->path.dentry = dget(path->dentry);
1256 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_close_ops, calldata);
1258 return PTR_ERR(task);
1264 nfs4_put_open_state(state);
1265 nfs4_put_state_owner(sp);
1269 static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
1273 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
1274 if (!IS_ERR(filp)) {
1275 struct nfs_open_context *ctx;
1276 ctx = (struct nfs_open_context *)filp->private_data;
1280 nfs4_close_state(path, state, nd->intent.open.flags);
1281 return PTR_ERR(filp);
1285 nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1287 struct path path = {
1292 struct rpc_cred *cred;
1293 struct nfs4_state *state;
1296 if (nd->flags & LOOKUP_CREATE) {
1297 attr.ia_mode = nd->intent.open.create_mode;
1298 attr.ia_valid = ATTR_MODE;
1299 if (!IS_POSIXACL(dir))
1300 attr.ia_mode &= ~current->fs->umask;
1303 BUG_ON(nd->intent.open.flags & O_CREAT);
1306 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1308 return (struct dentry *)cred;
1309 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
1311 if (IS_ERR(state)) {
1312 if (PTR_ERR(state) == -ENOENT)
1313 d_add(dentry, NULL);
1314 return (struct dentry *)state;
1316 res = d_add_unique(dentry, igrab(state->inode));
1319 nfs4_intent_set_file(nd, &path, state);
1324 nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
1326 struct path path = {
1330 struct rpc_cred *cred;
1331 struct nfs4_state *state;
1333 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1335 return PTR_ERR(cred);
1336 state = nfs4_open_delegated(dentry->d_inode, openflags, cred);
1338 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
1340 if (IS_ERR(state)) {
1341 switch (PTR_ERR(state)) {
1347 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1353 if (state->inode == dentry->d_inode) {
1354 nfs4_intent_set_file(nd, &path, state);
1357 nfs4_close_state(&path, state, openflags);
1364 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1366 struct nfs4_server_caps_res res = {};
1367 struct rpc_message msg = {
1368 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1369 .rpc_argp = fhandle,
1374 status = rpc_call_sync(server->client, &msg, 0);
1376 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1377 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1378 server->caps |= NFS_CAP_ACLS;
1379 if (res.has_links != 0)
1380 server->caps |= NFS_CAP_HARDLINKS;
1381 if (res.has_symlinks != 0)
1382 server->caps |= NFS_CAP_SYMLINKS;
1383 server->acl_bitmask = res.acl_bitmask;
1388 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1390 struct nfs4_exception exception = { };
1393 err = nfs4_handle_exception(server,
1394 _nfs4_server_capabilities(server, fhandle),
1396 } while (exception.retry);
1400 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1401 struct nfs_fsinfo *info)
1403 struct nfs4_lookup_root_arg args = {
1404 .bitmask = nfs4_fattr_bitmap,
1406 struct nfs4_lookup_res res = {
1408 .fattr = info->fattr,
1411 struct rpc_message msg = {
1412 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1416 nfs_fattr_init(info->fattr);
1417 return rpc_call_sync(server->client, &msg, 0);
1420 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1421 struct nfs_fsinfo *info)
1423 struct nfs4_exception exception = { };
1426 err = nfs4_handle_exception(server,
1427 _nfs4_lookup_root(server, fhandle, info),
1429 } while (exception.retry);
1434 * get the file handle for the "/" directory on the server
1436 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
1437 struct nfs_fsinfo *info)
1441 status = nfs4_lookup_root(server, fhandle, info);
1443 status = nfs4_server_capabilities(server, fhandle);
1445 status = nfs4_do_fsinfo(server, fhandle, info);
1446 return nfs4_map_errors(status);
1450 * Get locations and (maybe) other attributes of a referral.
1451 * Note that we'll actually follow the referral later when
1452 * we detect fsid mismatch in inode revalidation
1454 static int nfs4_get_referral(struct inode *dir, struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
1456 int status = -ENOMEM;
1457 struct page *page = NULL;
1458 struct nfs4_fs_locations *locations = NULL;
1460 page = alloc_page(GFP_KERNEL);
1463 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1464 if (locations == NULL)
1467 status = nfs4_proc_fs_locations(dir, name, locations, page);
1470 /* Make sure server returned a different fsid for the referral */
1471 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
1472 dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name);
1477 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1478 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1480 fattr->mode = S_IFDIR;
1481 memset(fhandle, 0, sizeof(struct nfs_fh));
1490 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1492 struct nfs4_getattr_arg args = {
1494 .bitmask = server->attr_bitmask,
1496 struct nfs4_getattr_res res = {
1500 struct rpc_message msg = {
1501 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1506 nfs_fattr_init(fattr);
1507 return rpc_call_sync(server->client, &msg, 0);
1510 static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1512 struct nfs4_exception exception = { };
1515 err = nfs4_handle_exception(server,
1516 _nfs4_proc_getattr(server, fhandle, fattr),
1518 } while (exception.retry);
1523 * The file is not closed if it is opened due to the a request to change
1524 * the size of the file. The open call will not be needed once the
1525 * VFS layer lookup-intents are implemented.
1527 * Close is called when the inode is destroyed.
1528 * If we haven't opened the file for O_WRONLY, we
1529 * need to in the size_change case to obtain a stateid.
1532 * Because OPEN is always done by name in nfsv4, it is
1533 * possible that we opened a different file by the same
1534 * name. We can recognize this race condition, but we
1535 * can't do anything about it besides returning an error.
1537 * This will be fixed with VFS changes (lookup-intent).
1540 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1541 struct iattr *sattr)
1543 struct rpc_cred *cred;
1544 struct inode *inode = dentry->d_inode;
1545 struct nfs_open_context *ctx;
1546 struct nfs4_state *state = NULL;
1549 nfs_fattr_init(fattr);
1551 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
1553 return PTR_ERR(cred);
1555 /* Search for an existing open(O_WRITE) file */
1556 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1560 status = nfs4_do_setattr(inode, fattr, sattr, state);
1562 nfs_setattr_update_inode(inode, sattr);
1564 put_nfs_open_context(ctx);
1569 static int _nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1570 struct qstr *name, struct nfs_fh *fhandle,
1571 struct nfs_fattr *fattr)
1574 struct nfs4_lookup_arg args = {
1575 .bitmask = server->attr_bitmask,
1579 struct nfs4_lookup_res res = {
1584 struct rpc_message msg = {
1585 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1590 nfs_fattr_init(fattr);
1592 dprintk("NFS call lookupfh %s\n", name->name);
1593 status = rpc_call_sync(server->client, &msg, 0);
1594 dprintk("NFS reply lookupfh: %d\n", status);
1595 if (status == -NFS4ERR_MOVED)
1600 static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1601 struct qstr *name, struct nfs_fh *fhandle,
1602 struct nfs_fattr *fattr)
1604 struct nfs4_exception exception = { };
1607 err = nfs4_handle_exception(server,
1608 _nfs4_proc_lookupfh(server, dirfh, name,
1611 } while (exception.retry);
1615 static int _nfs4_proc_lookup(struct inode *dir, struct qstr *name,
1616 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1619 struct nfs_server *server = NFS_SERVER(dir);
1620 struct nfs4_lookup_arg args = {
1621 .bitmask = server->attr_bitmask,
1622 .dir_fh = NFS_FH(dir),
1625 struct nfs4_lookup_res res = {
1630 struct rpc_message msg = {
1631 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1636 nfs_fattr_init(fattr);
1638 dprintk("NFS call lookup %s\n", name->name);
1639 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
1640 if (status == -NFS4ERR_MOVED)
1641 status = nfs4_get_referral(dir, name, fattr, fhandle);
1642 dprintk("NFS reply lookup: %d\n", status);
1646 static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1648 struct nfs4_exception exception = { };
1651 err = nfs4_handle_exception(NFS_SERVER(dir),
1652 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1654 } while (exception.retry);
1658 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1660 struct nfs4_accessargs args = {
1661 .fh = NFS_FH(inode),
1663 struct nfs4_accessres res = { 0 };
1664 struct rpc_message msg = {
1665 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1668 .rpc_cred = entry->cred,
1670 int mode = entry->mask;
1674 * Determine which access bits we want to ask for...
1676 if (mode & MAY_READ)
1677 args.access |= NFS4_ACCESS_READ;
1678 if (S_ISDIR(inode->i_mode)) {
1679 if (mode & MAY_WRITE)
1680 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1681 if (mode & MAY_EXEC)
1682 args.access |= NFS4_ACCESS_LOOKUP;
1684 if (mode & MAY_WRITE)
1685 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1686 if (mode & MAY_EXEC)
1687 args.access |= NFS4_ACCESS_EXECUTE;
1689 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1692 if (res.access & NFS4_ACCESS_READ)
1693 entry->mask |= MAY_READ;
1694 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1695 entry->mask |= MAY_WRITE;
1696 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1697 entry->mask |= MAY_EXEC;
1702 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1704 struct nfs4_exception exception = { };
1707 err = nfs4_handle_exception(NFS_SERVER(inode),
1708 _nfs4_proc_access(inode, entry),
1710 } while (exception.retry);
1715 * TODO: For the time being, we don't try to get any attributes
1716 * along with any of the zero-copy operations READ, READDIR,
1719 * In the case of the first three, we want to put the GETATTR
1720 * after the read-type operation -- this is because it is hard
1721 * to predict the length of a GETATTR response in v4, and thus
1722 * align the READ data correctly. This means that the GETATTR
1723 * may end up partially falling into the page cache, and we should
1724 * shift it into the 'tail' of the xdr_buf before processing.
1725 * To do this efficiently, we need to know the total length
1726 * of data received, which doesn't seem to be available outside
1729 * In the case of WRITE, we also want to put the GETATTR after
1730 * the operation -- in this case because we want to make sure
1731 * we get the post-operation mtime and size. This means that
1732 * we can't use xdr_encode_pages() as written: we need a variant
1733 * of it which would leave room in the 'tail' iovec.
1735 * Both of these changes to the XDR layer would in fact be quite
1736 * minor, but I decided to leave them for a subsequent patch.
1738 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1739 unsigned int pgbase, unsigned int pglen)
1741 struct nfs4_readlink args = {
1742 .fh = NFS_FH(inode),
1747 struct rpc_message msg = {
1748 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1753 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1756 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1757 unsigned int pgbase, unsigned int pglen)
1759 struct nfs4_exception exception = { };
1762 err = nfs4_handle_exception(NFS_SERVER(inode),
1763 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1765 } while (exception.retry);
1771 * We will need to arrange for the VFS layer to provide an atomic open.
1772 * Until then, this create/open method is prone to inefficiency and race
1773 * conditions due to the lookup, create, and open VFS calls from sys_open()
1774 * placed on the wire.
1776 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1777 * The file will be opened again in the subsequent VFS open call
1778 * (nfs4_proc_file_open).
1780 * The open for read will just hang around to be used by any process that
1781 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1785 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
1786 int flags, struct nameidata *nd)
1788 struct path path = {
1792 struct nfs4_state *state;
1793 struct rpc_cred *cred;
1796 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
1798 status = PTR_ERR(cred);
1801 state = nfs4_do_open(dir, &path, flags, sattr, cred);
1803 if (IS_ERR(state)) {
1804 status = PTR_ERR(state);
1807 d_instantiate(dentry, igrab(state->inode));
1808 if (flags & O_EXCL) {
1809 struct nfs_fattr fattr;
1810 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
1812 nfs_setattr_update_inode(state->inode, sattr);
1813 nfs_post_op_update_inode(state->inode, &fattr);
1815 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
1816 status = nfs4_intent_set_file(nd, &path, state);
1818 nfs4_close_state(&path, state, flags);
1823 static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1825 struct nfs_server *server = NFS_SERVER(dir);
1826 struct nfs4_remove_arg args = {
1829 .bitmask = server->attr_bitmask,
1831 struct nfs_fattr dir_attr;
1832 struct nfs4_remove_res res = {
1834 .dir_attr = &dir_attr,
1836 struct rpc_message msg = {
1837 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1843 nfs_fattr_init(res.dir_attr);
1844 status = rpc_call_sync(server->client, &msg, 0);
1846 update_changeattr(dir, &res.cinfo);
1847 nfs_post_op_update_inode(dir, res.dir_attr);
1852 static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1854 struct nfs4_exception exception = { };
1857 err = nfs4_handle_exception(NFS_SERVER(dir),
1858 _nfs4_proc_remove(dir, name),
1860 } while (exception.retry);
1864 struct unlink_desc {
1865 struct nfs4_remove_arg args;
1866 struct nfs4_remove_res res;
1867 struct nfs_fattr dir_attr;
1870 static int nfs4_proc_unlink_setup(struct rpc_message *msg, struct dentry *dir,
1873 struct nfs_server *server = NFS_SERVER(dir->d_inode);
1874 struct unlink_desc *up;
1876 up = kmalloc(sizeof(*up), GFP_KERNEL);
1880 up->args.fh = NFS_FH(dir->d_inode);
1881 up->args.name = name;
1882 up->args.bitmask = server->attr_bitmask;
1883 up->res.server = server;
1884 up->res.dir_attr = &up->dir_attr;
1886 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
1887 msg->rpc_argp = &up->args;
1888 msg->rpc_resp = &up->res;
1892 static int nfs4_proc_unlink_done(struct dentry *dir, struct rpc_task *task)
1894 struct rpc_message *msg = &task->tk_msg;
1895 struct unlink_desc *up;
1897 if (msg->rpc_resp != NULL) {
1898 up = container_of(msg->rpc_resp, struct unlink_desc, res);
1899 update_changeattr(dir->d_inode, &up->res.cinfo);
1900 nfs_post_op_update_inode(dir->d_inode, up->res.dir_attr);
1902 msg->rpc_resp = NULL;
1903 msg->rpc_argp = NULL;
1908 static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1909 struct inode *new_dir, struct qstr *new_name)
1911 struct nfs_server *server = NFS_SERVER(old_dir);
1912 struct nfs4_rename_arg arg = {
1913 .old_dir = NFS_FH(old_dir),
1914 .new_dir = NFS_FH(new_dir),
1915 .old_name = old_name,
1916 .new_name = new_name,
1917 .bitmask = server->attr_bitmask,
1919 struct nfs_fattr old_fattr, new_fattr;
1920 struct nfs4_rename_res res = {
1922 .old_fattr = &old_fattr,
1923 .new_fattr = &new_fattr,
1925 struct rpc_message msg = {
1926 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
1932 nfs_fattr_init(res.old_fattr);
1933 nfs_fattr_init(res.new_fattr);
1934 status = rpc_call_sync(server->client, &msg, 0);
1937 update_changeattr(old_dir, &res.old_cinfo);
1938 nfs_post_op_update_inode(old_dir, res.old_fattr);
1939 update_changeattr(new_dir, &res.new_cinfo);
1940 nfs_post_op_update_inode(new_dir, res.new_fattr);
1945 static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1946 struct inode *new_dir, struct qstr *new_name)
1948 struct nfs4_exception exception = { };
1951 err = nfs4_handle_exception(NFS_SERVER(old_dir),
1952 _nfs4_proc_rename(old_dir, old_name,
1955 } while (exception.retry);
1959 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
1961 struct nfs_server *server = NFS_SERVER(inode);
1962 struct nfs4_link_arg arg = {
1963 .fh = NFS_FH(inode),
1964 .dir_fh = NFS_FH(dir),
1966 .bitmask = server->attr_bitmask,
1968 struct nfs_fattr fattr, dir_attr;
1969 struct nfs4_link_res res = {
1972 .dir_attr = &dir_attr,
1974 struct rpc_message msg = {
1975 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
1981 nfs_fattr_init(res.fattr);
1982 nfs_fattr_init(res.dir_attr);
1983 status = rpc_call_sync(server->client, &msg, 0);
1985 update_changeattr(dir, &res.cinfo);
1986 nfs_post_op_update_inode(dir, res.dir_attr);
1987 nfs_post_op_update_inode(inode, res.fattr);
1993 static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
1995 struct nfs4_exception exception = { };
1998 err = nfs4_handle_exception(NFS_SERVER(inode),
1999 _nfs4_proc_link(inode, dir, name),
2001 } while (exception.retry);
2005 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2006 struct page *page, unsigned int len, struct iattr *sattr)
2008 struct nfs_server *server = NFS_SERVER(dir);
2009 struct nfs_fh fhandle;
2010 struct nfs_fattr fattr, dir_fattr;
2011 struct nfs4_create_arg arg = {
2012 .dir_fh = NFS_FH(dir),
2014 .name = &dentry->d_name,
2017 .bitmask = server->attr_bitmask,
2019 struct nfs4_create_res res = {
2023 .dir_fattr = &dir_fattr,
2025 struct rpc_message msg = {
2026 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK],
2032 if (len > NFS4_MAXPATHLEN)
2033 return -ENAMETOOLONG;
2035 arg.u.symlink.pages = &page;
2036 arg.u.symlink.len = len;
2037 nfs_fattr_init(&fattr);
2038 nfs_fattr_init(&dir_fattr);
2040 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2042 update_changeattr(dir, &res.dir_cinfo);
2043 nfs_post_op_update_inode(dir, res.dir_fattr);
2044 status = nfs_instantiate(dentry, &fhandle, &fattr);
2049 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2050 struct page *page, unsigned int len, struct iattr *sattr)
2052 struct nfs4_exception exception = { };
2055 err = nfs4_handle_exception(NFS_SERVER(dir),
2056 _nfs4_proc_symlink(dir, dentry, page,
2059 } while (exception.retry);
2063 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2064 struct iattr *sattr)
2066 struct nfs_server *server = NFS_SERVER(dir);
2067 struct nfs_fh fhandle;
2068 struct nfs_fattr fattr, dir_fattr;
2069 struct nfs4_create_arg arg = {
2070 .dir_fh = NFS_FH(dir),
2072 .name = &dentry->d_name,
2075 .bitmask = server->attr_bitmask,
2077 struct nfs4_create_res res = {
2081 .dir_fattr = &dir_fattr,
2083 struct rpc_message msg = {
2084 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2090 nfs_fattr_init(&fattr);
2091 nfs_fattr_init(&dir_fattr);
2093 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2095 update_changeattr(dir, &res.dir_cinfo);
2096 nfs_post_op_update_inode(dir, res.dir_fattr);
2097 status = nfs_instantiate(dentry, &fhandle, &fattr);
2102 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2103 struct iattr *sattr)
2105 struct nfs4_exception exception = { };
2108 err = nfs4_handle_exception(NFS_SERVER(dir),
2109 _nfs4_proc_mkdir(dir, dentry, sattr),
2111 } while (exception.retry);
2115 static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2116 u64 cookie, struct page *page, unsigned int count, int plus)
2118 struct inode *dir = dentry->d_inode;
2119 struct nfs4_readdir_arg args = {
2124 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2126 struct nfs4_readdir_res res;
2127 struct rpc_message msg = {
2128 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2135 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__,
2136 dentry->d_parent->d_name.name,
2137 dentry->d_name.name,
2138 (unsigned long long)cookie);
2139 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2140 res.pgbase = args.pgbase;
2141 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2143 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
2144 dprintk("%s: returns %d\n", __FUNCTION__, status);
2148 static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2149 u64 cookie, struct page *page, unsigned int count, int plus)
2151 struct nfs4_exception exception = { };
2154 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2155 _nfs4_proc_readdir(dentry, cred, cookie,
2158 } while (exception.retry);
2162 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2163 struct iattr *sattr, dev_t rdev)
2165 struct nfs_server *server = NFS_SERVER(dir);
2167 struct nfs_fattr fattr, dir_fattr;
2168 struct nfs4_create_arg arg = {
2169 .dir_fh = NFS_FH(dir),
2171 .name = &dentry->d_name,
2173 .bitmask = server->attr_bitmask,
2175 struct nfs4_create_res res = {
2179 .dir_fattr = &dir_fattr,
2181 struct rpc_message msg = {
2182 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2187 int mode = sattr->ia_mode;
2189 nfs_fattr_init(&fattr);
2190 nfs_fattr_init(&dir_fattr);
2192 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2193 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2195 arg.ftype = NF4FIFO;
2196 else if (S_ISBLK(mode)) {
2198 arg.u.device.specdata1 = MAJOR(rdev);
2199 arg.u.device.specdata2 = MINOR(rdev);
2201 else if (S_ISCHR(mode)) {
2203 arg.u.device.specdata1 = MAJOR(rdev);
2204 arg.u.device.specdata2 = MINOR(rdev);
2207 arg.ftype = NF4SOCK;
2209 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2211 update_changeattr(dir, &res.dir_cinfo);
2212 nfs_post_op_update_inode(dir, res.dir_fattr);
2213 status = nfs_instantiate(dentry, &fh, &fattr);
2218 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2219 struct iattr *sattr, dev_t rdev)
2221 struct nfs4_exception exception = { };
2224 err = nfs4_handle_exception(NFS_SERVER(dir),
2225 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2227 } while (exception.retry);
2231 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2232 struct nfs_fsstat *fsstat)
2234 struct nfs4_statfs_arg args = {
2236 .bitmask = server->attr_bitmask,
2238 struct rpc_message msg = {
2239 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2244 nfs_fattr_init(fsstat->fattr);
2245 return rpc_call_sync(server->client, &msg, 0);
2248 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2250 struct nfs4_exception exception = { };
2253 err = nfs4_handle_exception(server,
2254 _nfs4_proc_statfs(server, fhandle, fsstat),
2256 } while (exception.retry);
2260 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2261 struct nfs_fsinfo *fsinfo)
2263 struct nfs4_fsinfo_arg args = {
2265 .bitmask = server->attr_bitmask,
2267 struct rpc_message msg = {
2268 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2273 return rpc_call_sync(server->client, &msg, 0);
2276 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2278 struct nfs4_exception exception = { };
2282 err = nfs4_handle_exception(server,
2283 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2285 } while (exception.retry);
2289 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2291 nfs_fattr_init(fsinfo->fattr);
2292 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2295 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2296 struct nfs_pathconf *pathconf)
2298 struct nfs4_pathconf_arg args = {
2300 .bitmask = server->attr_bitmask,
2302 struct rpc_message msg = {
2303 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2305 .rpc_resp = pathconf,
2308 /* None of the pathconf attributes are mandatory to implement */
2309 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2310 memset(pathconf, 0, sizeof(*pathconf));
2314 nfs_fattr_init(pathconf->fattr);
2315 return rpc_call_sync(server->client, &msg, 0);
2318 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2319 struct nfs_pathconf *pathconf)
2321 struct nfs4_exception exception = { };
2325 err = nfs4_handle_exception(server,
2326 _nfs4_proc_pathconf(server, fhandle, pathconf),
2328 } while (exception.retry);
2332 static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
2334 struct nfs_server *server = NFS_SERVER(data->inode);
2336 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
2337 rpc_restart_call(task);
2340 if (task->tk_status > 0)
2341 renew_lease(server, data->timestamp);
2345 static void nfs4_proc_read_setup(struct nfs_read_data *data)
2347 struct rpc_message msg = {
2348 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ],
2349 .rpc_argp = &data->args,
2350 .rpc_resp = &data->res,
2351 .rpc_cred = data->cred,
2354 data->timestamp = jiffies;
2356 rpc_call_setup(&data->task, &msg, 0);
2359 static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
2361 struct inode *inode = data->inode;
2363 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2364 rpc_restart_call(task);
2367 if (task->tk_status >= 0) {
2368 renew_lease(NFS_SERVER(inode), data->timestamp);
2369 nfs_post_op_update_inode(inode, data->res.fattr);
2374 static void nfs4_proc_write_setup(struct nfs_write_data *data, int how)
2376 struct rpc_message msg = {
2377 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE],
2378 .rpc_argp = &data->args,
2379 .rpc_resp = &data->res,
2380 .rpc_cred = data->cred,
2382 struct inode *inode = data->inode;
2383 struct nfs_server *server = NFS_SERVER(inode);
2386 if (how & FLUSH_STABLE) {
2387 if (!NFS_I(inode)->ncommit)
2388 stable = NFS_FILE_SYNC;
2390 stable = NFS_DATA_SYNC;
2392 stable = NFS_UNSTABLE;
2393 data->args.stable = stable;
2394 data->args.bitmask = server->attr_bitmask;
2395 data->res.server = server;
2397 data->timestamp = jiffies;
2399 /* Finalize the task. */
2400 rpc_call_setup(&data->task, &msg, 0);
2403 static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
2405 struct inode *inode = data->inode;
2407 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2408 rpc_restart_call(task);
2411 if (task->tk_status >= 0)
2412 nfs_post_op_update_inode(inode, data->res.fattr);
2416 static void nfs4_proc_commit_setup(struct nfs_write_data *data, int how)
2418 struct rpc_message msg = {
2419 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
2420 .rpc_argp = &data->args,
2421 .rpc_resp = &data->res,
2422 .rpc_cred = data->cred,
2424 struct nfs_server *server = NFS_SERVER(data->inode);
2426 data->args.bitmask = server->attr_bitmask;
2427 data->res.server = server;
2429 rpc_call_setup(&data->task, &msg, 0);
2433 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2434 * standalone procedure for queueing an asynchronous RENEW.
2436 static void nfs4_renew_done(struct rpc_task *task, void *data)
2438 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
2439 unsigned long timestamp = (unsigned long)data;
2441 if (task->tk_status < 0) {
2442 switch (task->tk_status) {
2443 case -NFS4ERR_STALE_CLIENTID:
2444 case -NFS4ERR_EXPIRED:
2445 case -NFS4ERR_CB_PATH_DOWN:
2446 nfs4_schedule_state_recovery(clp);
2450 spin_lock(&clp->cl_lock);
2451 if (time_before(clp->cl_last_renewal,timestamp))
2452 clp->cl_last_renewal = timestamp;
2453 spin_unlock(&clp->cl_lock);
2456 static const struct rpc_call_ops nfs4_renew_ops = {
2457 .rpc_call_done = nfs4_renew_done,
2460 int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
2462 struct rpc_message msg = {
2463 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2468 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
2469 &nfs4_renew_ops, (void *)jiffies);
2472 int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
2474 struct rpc_message msg = {
2475 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2479 unsigned long now = jiffies;
2482 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2485 spin_lock(&clp->cl_lock);
2486 if (time_before(clp->cl_last_renewal,now))
2487 clp->cl_last_renewal = now;
2488 spin_unlock(&clp->cl_lock);
2492 static inline int nfs4_server_supports_acls(struct nfs_server *server)
2494 return (server->caps & NFS_CAP_ACLS)
2495 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2496 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2499 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2500 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2503 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2505 static void buf_to_pages(const void *buf, size_t buflen,
2506 struct page **pages, unsigned int *pgbase)
2508 const void *p = buf;
2510 *pgbase = offset_in_page(buf);
2512 while (p < buf + buflen) {
2513 *(pages++) = virt_to_page(p);
2514 p += PAGE_CACHE_SIZE;
2518 struct nfs4_cached_acl {
2524 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
2526 struct nfs_inode *nfsi = NFS_I(inode);
2528 spin_lock(&inode->i_lock);
2529 kfree(nfsi->nfs4_acl);
2530 nfsi->nfs4_acl = acl;
2531 spin_unlock(&inode->i_lock);
2534 static void nfs4_zap_acl_attr(struct inode *inode)
2536 nfs4_set_cached_acl(inode, NULL);
2539 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2541 struct nfs_inode *nfsi = NFS_I(inode);
2542 struct nfs4_cached_acl *acl;
2545 spin_lock(&inode->i_lock);
2546 acl = nfsi->nfs4_acl;
2549 if (buf == NULL) /* user is just asking for length */
2551 if (acl->cached == 0)
2553 ret = -ERANGE; /* see getxattr(2) man page */
2554 if (acl->len > buflen)
2556 memcpy(buf, acl->data, acl->len);
2560 spin_unlock(&inode->i_lock);
2564 static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2566 struct nfs4_cached_acl *acl;
2568 if (buf && acl_len <= PAGE_SIZE) {
2569 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2573 memcpy(acl->data, buf, acl_len);
2575 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2582 nfs4_set_cached_acl(inode, acl);
2585 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2587 struct page *pages[NFS4ACL_MAXPAGES];
2588 struct nfs_getaclargs args = {
2589 .fh = NFS_FH(inode),
2593 size_t resp_len = buflen;
2595 struct rpc_message msg = {
2596 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2598 .rpc_resp = &resp_len,
2600 struct page *localpage = NULL;
2603 if (buflen < PAGE_SIZE) {
2604 /* As long as we're doing a round trip to the server anyway,
2605 * let's be prepared for a page of acl data. */
2606 localpage = alloc_page(GFP_KERNEL);
2607 resp_buf = page_address(localpage);
2608 if (localpage == NULL)
2610 args.acl_pages[0] = localpage;
2611 args.acl_pgbase = 0;
2612 resp_len = args.acl_len = PAGE_SIZE;
2615 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2617 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2620 if (resp_len > args.acl_len)
2621 nfs4_write_cached_acl(inode, NULL, resp_len);
2623 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2626 if (resp_len > buflen)
2629 memcpy(buf, resp_buf, resp_len);
2634 __free_page(localpage);
2638 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2640 struct nfs4_exception exception = { };
2643 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2646 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2647 } while (exception.retry);
2651 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2653 struct nfs_server *server = NFS_SERVER(inode);
2656 if (!nfs4_server_supports_acls(server))
2658 ret = nfs_revalidate_inode(server, inode);
2661 ret = nfs4_read_cached_acl(inode, buf, buflen);
2664 return nfs4_get_acl_uncached(inode, buf, buflen);
2667 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2669 struct nfs_server *server = NFS_SERVER(inode);
2670 struct page *pages[NFS4ACL_MAXPAGES];
2671 struct nfs_setaclargs arg = {
2672 .fh = NFS_FH(inode),
2676 struct rpc_message msg = {
2677 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2683 if (!nfs4_server_supports_acls(server))
2685 nfs_inode_return_delegation(inode);
2686 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
2687 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2688 nfs_zap_caches(inode);
2692 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2694 struct nfs4_exception exception = { };
2697 err = nfs4_handle_exception(NFS_SERVER(inode),
2698 __nfs4_proc_set_acl(inode, buf, buflen),
2700 } while (exception.retry);
2705 nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
2707 struct nfs_client *clp = server->nfs_client;
2709 if (!clp || task->tk_status >= 0)
2711 switch(task->tk_status) {
2712 case -NFS4ERR_STALE_CLIENTID:
2713 case -NFS4ERR_STALE_STATEID:
2714 case -NFS4ERR_EXPIRED:
2715 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL, NULL);
2716 nfs4_schedule_state_recovery(clp);
2717 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
2718 rpc_wake_up_task(task);
2719 task->tk_status = 0;
2721 case -NFS4ERR_DELAY:
2722 nfs_inc_server_stats((struct nfs_server *) server,
2724 case -NFS4ERR_GRACE:
2725 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2726 task->tk_status = 0;
2728 case -NFS4ERR_OLD_STATEID:
2729 task->tk_status = 0;
2732 task->tk_status = nfs4_map_errors(task->tk_status);
2736 static int nfs4_wait_bit_interruptible(void *word)
2738 if (signal_pending(current))
2739 return -ERESTARTSYS;
2744 static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
2751 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2753 rpc_clnt_sigmask(clnt, &oldset);
2754 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
2755 nfs4_wait_bit_interruptible,
2756 TASK_INTERRUPTIBLE);
2757 rpc_clnt_sigunmask(clnt, &oldset);
2759 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
2763 static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2771 *timeout = NFS4_POLL_RETRY_MIN;
2772 if (*timeout > NFS4_POLL_RETRY_MAX)
2773 *timeout = NFS4_POLL_RETRY_MAX;
2774 rpc_clnt_sigmask(clnt, &oldset);
2775 if (clnt->cl_intr) {
2776 schedule_timeout_interruptible(*timeout);
2780 schedule_timeout_uninterruptible(*timeout);
2781 rpc_clnt_sigunmask(clnt, &oldset);
2786 /* This is the error handling routine for processes that are allowed
2789 static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
2791 struct nfs_client *clp = server->nfs_client;
2792 int ret = errorcode;
2794 exception->retry = 0;
2798 case -NFS4ERR_STALE_CLIENTID:
2799 case -NFS4ERR_STALE_STATEID:
2800 case -NFS4ERR_EXPIRED:
2801 nfs4_schedule_state_recovery(clp);
2802 ret = nfs4_wait_clnt_recover(server->client, clp);
2804 exception->retry = 1;
2806 case -NFS4ERR_FILE_OPEN:
2807 case -NFS4ERR_GRACE:
2808 case -NFS4ERR_DELAY:
2809 ret = nfs4_delay(server->client, &exception->timeout);
2812 case -NFS4ERR_OLD_STATEID:
2813 exception->retry = 1;
2815 /* We failed to handle the error */
2816 return nfs4_map_errors(ret);
2819 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
2821 nfs4_verifier sc_verifier;
2822 struct nfs4_setclientid setclientid = {
2823 .sc_verifier = &sc_verifier,
2826 struct rpc_message msg = {
2827 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2828 .rpc_argp = &setclientid,
2836 p = (__be32*)sc_verifier.data;
2837 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2838 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2841 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
2842 sizeof(setclientid.sc_name), "%s/%u.%u.%u.%u %s %u",
2843 clp->cl_ipaddr, NIPQUAD(clp->cl_addr.sin_addr),
2844 cred->cr_ops->cr_name,
2845 clp->cl_id_uniquifier);
2846 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
2847 sizeof(setclientid.sc_netid), "tcp");
2848 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
2849 sizeof(setclientid.sc_uaddr), "%s.%d.%d",
2850 clp->cl_ipaddr, port >> 8, port & 255);
2852 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2853 if (status != -NFS4ERR_CLID_INUSE)
2858 ssleep(clp->cl_lease_time + 1);
2860 if (++clp->cl_id_uniquifier == 0)
2866 static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
2868 struct nfs_fsinfo fsinfo;
2869 struct rpc_message msg = {
2870 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2872 .rpc_resp = &fsinfo,
2879 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2881 spin_lock(&clp->cl_lock);
2882 clp->cl_lease_time = fsinfo.lease_time * HZ;
2883 clp->cl_last_renewal = now;
2884 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
2885 spin_unlock(&clp->cl_lock);
2890 int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
2895 err = _nfs4_proc_setclientid_confirm(clp, cred);
2899 case -NFS4ERR_RESOURCE:
2900 /* The IBM lawyers misread another document! */
2901 case -NFS4ERR_DELAY:
2902 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2908 struct nfs4_delegreturndata {
2909 struct nfs4_delegreturnargs args;
2910 struct nfs4_delegreturnres res;
2912 nfs4_stateid stateid;
2913 struct rpc_cred *cred;
2914 unsigned long timestamp;
2915 struct nfs_fattr fattr;
2919 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *calldata)
2921 struct nfs4_delegreturndata *data = calldata;
2922 struct rpc_message msg = {
2923 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
2924 .rpc_argp = &data->args,
2925 .rpc_resp = &data->res,
2926 .rpc_cred = data->cred,
2928 nfs_fattr_init(data->res.fattr);
2929 rpc_call_setup(task, &msg, 0);
2932 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
2934 struct nfs4_delegreturndata *data = calldata;
2935 data->rpc_status = task->tk_status;
2936 if (data->rpc_status == 0)
2937 renew_lease(data->res.server, data->timestamp);
2940 static void nfs4_delegreturn_release(void *calldata)
2942 struct nfs4_delegreturndata *data = calldata;
2944 put_rpccred(data->cred);
2948 static const struct rpc_call_ops nfs4_delegreturn_ops = {
2949 .rpc_call_prepare = nfs4_delegreturn_prepare,
2950 .rpc_call_done = nfs4_delegreturn_done,
2951 .rpc_release = nfs4_delegreturn_release,
2954 static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
2956 struct nfs4_delegreturndata *data;
2957 struct nfs_server *server = NFS_SERVER(inode);
2958 struct rpc_task *task;
2961 data = kmalloc(sizeof(*data), GFP_KERNEL);
2964 data->args.fhandle = &data->fh;
2965 data->args.stateid = &data->stateid;
2966 data->args.bitmask = server->attr_bitmask;
2967 nfs_copy_fh(&data->fh, NFS_FH(inode));
2968 memcpy(&data->stateid, stateid, sizeof(data->stateid));
2969 data->res.fattr = &data->fattr;
2970 data->res.server = server;
2971 data->cred = get_rpccred(cred);
2972 data->timestamp = jiffies;
2973 data->rpc_status = 0;
2975 task = rpc_run_task(NFS_CLIENT(inode), RPC_TASK_ASYNC, &nfs4_delegreturn_ops, data);
2977 return PTR_ERR(task);
2978 status = nfs4_wait_for_completion_rpc_task(task);
2980 status = data->rpc_status;
2982 nfs_post_op_update_inode(inode, &data->fattr);
2988 int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
2990 struct nfs_server *server = NFS_SERVER(inode);
2991 struct nfs4_exception exception = { };
2994 err = _nfs4_proc_delegreturn(inode, cred, stateid);
2996 case -NFS4ERR_STALE_STATEID:
2997 case -NFS4ERR_EXPIRED:
3001 err = nfs4_handle_exception(server, err, &exception);
3002 } while (exception.retry);
3006 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3007 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3010 * sleep, with exponential backoff, and retry the LOCK operation.
3012 static unsigned long
3013 nfs4_set_lock_task_retry(unsigned long timeout)
3015 schedule_timeout_interruptible(timeout);
3017 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3018 return NFS4_LOCK_MAXTIMEOUT;
3022 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3024 struct inode *inode = state->inode;
3025 struct nfs_server *server = NFS_SERVER(inode);
3026 struct nfs_client *clp = server->nfs_client;
3027 struct nfs_lockt_args arg = {
3028 .fh = NFS_FH(inode),
3031 struct nfs_lockt_res res = {
3034 struct rpc_message msg = {
3035 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3038 .rpc_cred = state->owner->so_cred,
3040 struct nfs4_lock_state *lsp;
3043 down_read(&clp->cl_sem);
3044 arg.lock_owner.clientid = clp->cl_clientid;
3045 status = nfs4_set_lock_state(state, request);
3048 lsp = request->fl_u.nfs4_fl.owner;
3049 arg.lock_owner.id = lsp->ls_id;
3050 status = rpc_call_sync(server->client, &msg, 0);
3053 request->fl_type = F_UNLCK;
3055 case -NFS4ERR_DENIED:
3058 request->fl_ops->fl_release_private(request);
3060 up_read(&clp->cl_sem);
3064 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3066 struct nfs4_exception exception = { };
3070 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3071 _nfs4_proc_getlk(state, cmd, request),
3073 } while (exception.retry);
3077 static int do_vfs_lock(struct file *file, struct file_lock *fl)
3080 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3082 res = posix_lock_file_wait(file, fl);
3085 res = flock_lock_file_wait(file, fl);
3093 struct nfs4_unlockdata {
3094 struct nfs_locku_args arg;
3095 struct nfs_locku_res res;
3096 struct nfs4_lock_state *lsp;
3097 struct nfs_open_context *ctx;
3098 struct file_lock fl;
3099 const struct nfs_server *server;
3100 unsigned long timestamp;
3103 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3104 struct nfs_open_context *ctx,
3105 struct nfs4_lock_state *lsp,
3106 struct nfs_seqid *seqid)
3108 struct nfs4_unlockdata *p;
3109 struct inode *inode = lsp->ls_state->inode;
3111 p = kmalloc(sizeof(*p), GFP_KERNEL);
3114 p->arg.fh = NFS_FH(inode);
3116 p->arg.seqid = seqid;
3117 p->arg.stateid = &lsp->ls_stateid;
3119 atomic_inc(&lsp->ls_count);
3120 /* Ensure we don't close file until we're done freeing locks! */
3121 p->ctx = get_nfs_open_context(ctx);
3122 memcpy(&p->fl, fl, sizeof(p->fl));
3123 p->server = NFS_SERVER(inode);
3127 static void nfs4_locku_release_calldata(void *data)
3129 struct nfs4_unlockdata *calldata = data;
3130 nfs_free_seqid(calldata->arg.seqid);
3131 nfs4_put_lock_state(calldata->lsp);
3132 put_nfs_open_context(calldata->ctx);
3136 static void nfs4_locku_done(struct rpc_task *task, void *data)
3138 struct nfs4_unlockdata *calldata = data;
3140 if (RPC_ASSASSINATED(task))
3142 nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid);
3143 switch (task->tk_status) {
3145 memcpy(calldata->lsp->ls_stateid.data,
3146 calldata->res.stateid.data,
3147 sizeof(calldata->lsp->ls_stateid.data));
3148 renew_lease(calldata->server, calldata->timestamp);
3150 case -NFS4ERR_STALE_STATEID:
3151 case -NFS4ERR_EXPIRED:
3154 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
3155 rpc_restart_call(task);
3159 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
3161 struct nfs4_unlockdata *calldata = data;
3162 struct rpc_message msg = {
3163 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3164 .rpc_argp = &calldata->arg,
3165 .rpc_resp = &calldata->res,
3166 .rpc_cred = calldata->lsp->ls_state->owner->so_cred,
3169 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
3171 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
3172 /* Note: exit _without_ running nfs4_locku_done */
3173 task->tk_action = NULL;
3176 calldata->timestamp = jiffies;
3177 rpc_call_setup(task, &msg, 0);
3180 static const struct rpc_call_ops nfs4_locku_ops = {
3181 .rpc_call_prepare = nfs4_locku_prepare,
3182 .rpc_call_done = nfs4_locku_done,
3183 .rpc_release = nfs4_locku_release_calldata,
3186 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3187 struct nfs_open_context *ctx,
3188 struct nfs4_lock_state *lsp,
3189 struct nfs_seqid *seqid)
3191 struct nfs4_unlockdata *data;
3193 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3195 nfs_free_seqid(seqid);
3196 return ERR_PTR(-ENOMEM);
3199 return rpc_run_task(NFS_CLIENT(lsp->ls_state->inode), RPC_TASK_ASYNC, &nfs4_locku_ops, data);
3202 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3204 struct nfs_seqid *seqid;
3205 struct nfs4_lock_state *lsp;
3206 struct rpc_task *task;
3209 status = nfs4_set_lock_state(state, request);
3210 /* Unlock _before_ we do the RPC call */
3211 request->fl_flags |= FL_EXISTS;
3212 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3216 /* Is this a delegated lock? */
3217 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
3219 lsp = request->fl_u.nfs4_fl.owner;
3220 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3224 task = nfs4_do_unlck(request, request->fl_file->private_data, lsp, seqid);
3225 status = PTR_ERR(task);
3228 status = nfs4_wait_for_completion_rpc_task(task);
3234 struct nfs4_lockdata {
3235 struct nfs_lock_args arg;
3236 struct nfs_lock_res res;
3237 struct nfs4_lock_state *lsp;
3238 struct nfs_open_context *ctx;
3239 struct file_lock fl;
3240 unsigned long timestamp;
3245 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3246 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3248 struct nfs4_lockdata *p;
3249 struct inode *inode = lsp->ls_state->inode;
3250 struct nfs_server *server = NFS_SERVER(inode);
3252 p = kzalloc(sizeof(*p), GFP_KERNEL);
3256 p->arg.fh = NFS_FH(inode);
3258 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3259 if (p->arg.lock_seqid == NULL)
3261 p->arg.lock_stateid = &lsp->ls_stateid;
3262 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
3263 p->arg.lock_owner.id = lsp->ls_id;
3265 atomic_inc(&lsp->ls_count);
3266 p->ctx = get_nfs_open_context(ctx);
3267 memcpy(&p->fl, fl, sizeof(p->fl));
3274 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3276 struct nfs4_lockdata *data = calldata;
3277 struct nfs4_state *state = data->lsp->ls_state;
3278 struct nfs4_state_owner *sp = state->owner;
3279 struct rpc_message msg = {
3280 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3281 .rpc_argp = &data->arg,
3282 .rpc_resp = &data->res,
3283 .rpc_cred = sp->so_cred,
3286 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3288 dprintk("%s: begin!\n", __FUNCTION__);
3289 /* Do we need to do an open_to_lock_owner? */
3290 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
3291 data->arg.open_seqid = nfs_alloc_seqid(&sp->so_seqid);
3292 if (data->arg.open_seqid == NULL) {
3293 data->rpc_status = -ENOMEM;
3294 task->tk_action = NULL;
3297 data->arg.open_stateid = &state->stateid;
3298 data->arg.new_lock_owner = 1;
3300 data->timestamp = jiffies;
3301 rpc_call_setup(task, &msg, 0);
3303 dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status);
3306 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3308 struct nfs4_lockdata *data = calldata;
3310 dprintk("%s: begin!\n", __FUNCTION__);
3312 data->rpc_status = task->tk_status;
3313 if (RPC_ASSASSINATED(task))
3315 if (data->arg.new_lock_owner != 0) {
3316 nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid);
3317 if (data->rpc_status == 0)
3318 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3322 if (data->rpc_status == 0) {
3323 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3324 sizeof(data->lsp->ls_stateid.data));
3325 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
3326 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
3328 nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid);
3330 dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status);
3333 static void nfs4_lock_release(void *calldata)
3335 struct nfs4_lockdata *data = calldata;
3337 dprintk("%s: begin!\n", __FUNCTION__);
3338 if (data->arg.open_seqid != NULL)
3339 nfs_free_seqid(data->arg.open_seqid);
3340 if (data->cancelled != 0) {
3341 struct rpc_task *task;
3342 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3343 data->arg.lock_seqid);
3346 dprintk("%s: cancelling lock!\n", __FUNCTION__);
3348 nfs_free_seqid(data->arg.lock_seqid);
3349 nfs4_put_lock_state(data->lsp);
3350 put_nfs_open_context(data->ctx);
3352 dprintk("%s: done!\n", __FUNCTION__);
3355 static const struct rpc_call_ops nfs4_lock_ops = {
3356 .rpc_call_prepare = nfs4_lock_prepare,
3357 .rpc_call_done = nfs4_lock_done,
3358 .rpc_release = nfs4_lock_release,
3361 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3363 struct nfs4_lockdata *data;
3364 struct rpc_task *task;
3367 dprintk("%s: begin!\n", __FUNCTION__);
3368 data = nfs4_alloc_lockdata(fl, fl->fl_file->private_data,
3369 fl->fl_u.nfs4_fl.owner);
3373 data->arg.block = 1;
3375 data->arg.reclaim = 1;
3376 task = rpc_run_task(NFS_CLIENT(state->inode), RPC_TASK_ASYNC,
3377 &nfs4_lock_ops, data);
3379 return PTR_ERR(task);
3380 ret = nfs4_wait_for_completion_rpc_task(task);
3382 ret = data->rpc_status;
3383 if (ret == -NFS4ERR_DENIED)
3386 data->cancelled = 1;
3388 dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret);
3392 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3394 struct nfs_server *server = NFS_SERVER(state->inode);
3395 struct nfs4_exception exception = { };
3399 /* Cache the lock if possible... */
3400 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3402 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3403 if (err != -NFS4ERR_DELAY)
3405 nfs4_handle_exception(server, err, &exception);
3406 } while (exception.retry);
3410 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3412 struct nfs_server *server = NFS_SERVER(state->inode);
3413 struct nfs4_exception exception = { };
3416 err = nfs4_set_lock_state(state, request);
3420 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3422 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3423 if (err != -NFS4ERR_DELAY)
3425 nfs4_handle_exception(server, err, &exception);
3426 } while (exception.retry);
3430 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3432 struct nfs_client *clp = state->owner->so_client;
3433 unsigned char fl_flags = request->fl_flags;
3436 /* Is this a delegated open? */
3437 status = nfs4_set_lock_state(state, request);
3440 request->fl_flags |= FL_ACCESS;
3441 status = do_vfs_lock(request->fl_file, request);
3444 down_read(&clp->cl_sem);
3445 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3446 struct nfs_inode *nfsi = NFS_I(state->inode);
3447 /* Yes: cache locks! */
3448 down_read(&nfsi->rwsem);
3449 /* ...but avoid races with delegation recall... */
3450 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3451 request->fl_flags = fl_flags & ~FL_SLEEP;
3452 status = do_vfs_lock(request->fl_file, request);
3453 up_read(&nfsi->rwsem);
3456 up_read(&nfsi->rwsem);
3458 status = _nfs4_do_setlk(state, cmd, request, 0);
3461 /* Note: we always want to sleep here! */
3462 request->fl_flags = fl_flags | FL_SLEEP;
3463 if (do_vfs_lock(request->fl_file, request) < 0)
3464 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
3466 up_read(&clp->cl_sem);
3468 request->fl_flags = fl_flags;
3472 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3474 struct nfs4_exception exception = { };
3478 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3479 _nfs4_proc_setlk(state, cmd, request),
3481 } while (exception.retry);
3486 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3488 struct nfs_open_context *ctx;
3489 struct nfs4_state *state;
3490 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3493 /* verify open state */
3494 ctx = (struct nfs_open_context *)filp->private_data;
3497 if (request->fl_start < 0 || request->fl_end < 0)
3501 return nfs4_proc_getlk(state, F_GETLK, request);
3503 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3506 if (request->fl_type == F_UNLCK)
3507 return nfs4_proc_unlck(state, cmd, request);
3510 status = nfs4_proc_setlk(state, cmd, request);
3511 if ((status != -EAGAIN) || IS_SETLK(cmd))
3513 timeout = nfs4_set_lock_task_retry(timeout);
3514 status = -ERESTARTSYS;
3517 } while(status < 0);
3521 int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3523 struct nfs_server *server = NFS_SERVER(state->inode);
3524 struct nfs4_exception exception = { };
3527 err = nfs4_set_lock_state(state, fl);
3531 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3532 if (err != -NFS4ERR_DELAY)
3534 err = nfs4_handle_exception(server, err, &exception);
3535 } while (exception.retry);
3540 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3542 int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3543 size_t buflen, int flags)
3545 struct inode *inode = dentry->d_inode;
3547 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3550 if (!S_ISREG(inode->i_mode) &&
3551 (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX))
3554 return nfs4_proc_set_acl(inode, buf, buflen);
3557 /* The getxattr man page suggests returning -ENODATA for unknown attributes,
3558 * and that's what we'll do for e.g. user attributes that haven't been set.
3559 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3560 * attributes in kernel-managed attribute namespaces. */
3561 ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3564 struct inode *inode = dentry->d_inode;
3566 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3569 return nfs4_proc_get_acl(inode, buf, buflen);
3572 ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3574 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
3576 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3578 if (buf && buflen < len)
3581 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3585 int nfs4_proc_fs_locations(struct inode *dir, struct qstr *name,
3586 struct nfs4_fs_locations *fs_locations, struct page *page)
3588 struct nfs_server *server = NFS_SERVER(dir);
3590 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3591 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
3593 struct nfs4_fs_locations_arg args = {
3594 .dir_fh = NFS_FH(dir),
3599 struct rpc_message msg = {
3600 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3602 .rpc_resp = fs_locations,
3606 dprintk("%s: start\n", __FUNCTION__);
3607 nfs_fattr_init(&fs_locations->fattr);
3608 fs_locations->server = server;
3609 fs_locations->nlocations = 0;
3610 status = rpc_call_sync(server->client, &msg, 0);
3611 dprintk("%s: returned status = %d\n", __FUNCTION__, status);
3615 struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3616 .recover_open = nfs4_open_reclaim,
3617 .recover_lock = nfs4_lock_reclaim,
3620 struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3621 .recover_open = nfs4_open_expired,
3622 .recover_lock = nfs4_lock_expired,
3625 static const struct inode_operations nfs4_file_inode_operations = {
3626 .permission = nfs_permission,
3627 .getattr = nfs_getattr,
3628 .setattr = nfs_setattr,
3629 .getxattr = nfs4_getxattr,
3630 .setxattr = nfs4_setxattr,
3631 .listxattr = nfs4_listxattr,
3634 const struct nfs_rpc_ops nfs_v4_clientops = {
3635 .version = 4, /* protocol version */
3636 .dentry_ops = &nfs4_dentry_operations,
3637 .dir_inode_ops = &nfs4_dir_inode_operations,
3638 .file_inode_ops = &nfs4_file_inode_operations,
3639 .getroot = nfs4_proc_get_root,
3640 .getattr = nfs4_proc_getattr,
3641 .setattr = nfs4_proc_setattr,
3642 .lookupfh = nfs4_proc_lookupfh,
3643 .lookup = nfs4_proc_lookup,
3644 .access = nfs4_proc_access,
3645 .readlink = nfs4_proc_readlink,
3646 .create = nfs4_proc_create,
3647 .remove = nfs4_proc_remove,
3648 .unlink_setup = nfs4_proc_unlink_setup,
3649 .unlink_done = nfs4_proc_unlink_done,
3650 .rename = nfs4_proc_rename,
3651 .link = nfs4_proc_link,
3652 .symlink = nfs4_proc_symlink,
3653 .mkdir = nfs4_proc_mkdir,
3654 .rmdir = nfs4_proc_remove,
3655 .readdir = nfs4_proc_readdir,
3656 .mknod = nfs4_proc_mknod,
3657 .statfs = nfs4_proc_statfs,
3658 .fsinfo = nfs4_proc_fsinfo,
3659 .pathconf = nfs4_proc_pathconf,
3660 .set_capabilities = nfs4_server_capabilities,
3661 .decode_dirent = nfs4_decode_dirent,
3662 .read_setup = nfs4_proc_read_setup,
3663 .read_done = nfs4_read_done,
3664 .write_setup = nfs4_proc_write_setup,
3665 .write_done = nfs4_write_done,
3666 .commit_setup = nfs4_proc_commit_setup,
3667 .commit_done = nfs4_commit_done,
3668 .file_open = nfs_open,
3669 .file_release = nfs_release,
3670 .lock = nfs4_proc_lock,
3671 .clear_acl_cache = nfs4_zap_acl_attr,