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/delay.h>
40 #include <linux/errno.h>
41 #include <linux/string.h>
42 #include <linux/slab.h>
43 #include <linux/sunrpc/clnt.h>
44 #include <linux/sunrpc/gss_api.h>
45 #include <linux/nfs.h>
46 #include <linux/nfs4.h>
47 #include <linux/nfs_fs.h>
48 #include <linux/nfs_page.h>
49 #include <linux/nfs_mount.h>
50 #include <linux/namei.h>
51 #include <linux/mount.h>
52 #include <linux/module.h>
53 #include <linux/sunrpc/bc_xprt.h>
54 #include <linux/xattr.h>
55 #include <linux/utsname.h>
58 #include "delegation.h"
64 #define NFSDBG_FACILITY NFSDBG_PROC
66 #define NFS4_POLL_RETRY_MIN (HZ/10)
67 #define NFS4_POLL_RETRY_MAX (15*HZ)
69 #define NFS4_MAX_LOOP_ON_RECOVER (10)
72 static int _nfs4_proc_open(struct nfs4_opendata *data);
73 static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
74 static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
75 static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
76 static int _nfs4_proc_lookup(struct rpc_clnt *client, struct inode *dir,
77 const struct qstr *name, struct nfs_fh *fhandle,
78 struct nfs_fattr *fattr);
79 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
80 static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
81 struct nfs_fattr *fattr, struct iattr *sattr,
82 struct nfs4_state *state);
84 /* Prevent leaks of NFSv4 errors into userland */
85 static int nfs4_map_errors(int err)
90 case -NFS4ERR_RESOURCE:
92 case -NFS4ERR_WRONGSEC:
94 case -NFS4ERR_BADOWNER:
95 case -NFS4ERR_BADNAME:
98 dprintk("%s could not handle NFSv4 error %d\n",
106 * This is our standard bitmap for GETATTR requests.
108 const u32 nfs4_fattr_bitmap[2] = {
110 | FATTR4_WORD0_CHANGE
113 | FATTR4_WORD0_FILEID,
115 | FATTR4_WORD1_NUMLINKS
117 | FATTR4_WORD1_OWNER_GROUP
118 | FATTR4_WORD1_RAWDEV
119 | FATTR4_WORD1_SPACE_USED
120 | FATTR4_WORD1_TIME_ACCESS
121 | FATTR4_WORD1_TIME_METADATA
122 | FATTR4_WORD1_TIME_MODIFY
125 const u32 nfs4_statfs_bitmap[2] = {
126 FATTR4_WORD0_FILES_AVAIL
127 | FATTR4_WORD0_FILES_FREE
128 | FATTR4_WORD0_FILES_TOTAL,
129 FATTR4_WORD1_SPACE_AVAIL
130 | FATTR4_WORD1_SPACE_FREE
131 | FATTR4_WORD1_SPACE_TOTAL
134 const u32 nfs4_pathconf_bitmap[2] = {
136 | FATTR4_WORD0_MAXNAME,
140 const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
141 | FATTR4_WORD0_MAXREAD
142 | FATTR4_WORD0_MAXWRITE
143 | FATTR4_WORD0_LEASE_TIME,
144 FATTR4_WORD1_TIME_DELTA
145 | FATTR4_WORD1_FS_LAYOUT_TYPES
148 const u32 nfs4_fs_locations_bitmap[2] = {
150 | FATTR4_WORD0_CHANGE
153 | FATTR4_WORD0_FILEID
154 | FATTR4_WORD0_FS_LOCATIONS,
156 | FATTR4_WORD1_NUMLINKS
158 | FATTR4_WORD1_OWNER_GROUP
159 | FATTR4_WORD1_RAWDEV
160 | FATTR4_WORD1_SPACE_USED
161 | FATTR4_WORD1_TIME_ACCESS
162 | FATTR4_WORD1_TIME_METADATA
163 | FATTR4_WORD1_TIME_MODIFY
164 | FATTR4_WORD1_MOUNTED_ON_FILEID
167 static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
168 struct nfs4_readdir_arg *readdir)
172 BUG_ON(readdir->count < 80);
174 readdir->cookie = cookie;
175 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
180 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
185 * NFSv4 servers do not return entries for '.' and '..'
186 * Therefore, we fake these entries here. We let '.'
187 * have cookie 0 and '..' have cookie 1. Note that
188 * when talking to the server, we always send cookie 0
191 start = p = kmap_atomic(*readdir->pages, KM_USER0);
194 *p++ = xdr_one; /* next */
195 *p++ = xdr_zero; /* cookie, first word */
196 *p++ = xdr_one; /* cookie, second word */
197 *p++ = xdr_one; /* entry len */
198 memcpy(p, ".\0\0\0", 4); /* entry */
200 *p++ = xdr_one; /* bitmap length */
201 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
202 *p++ = htonl(8); /* attribute buffer length */
203 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
206 *p++ = xdr_one; /* next */
207 *p++ = xdr_zero; /* cookie, first word */
208 *p++ = xdr_two; /* cookie, second word */
209 *p++ = xdr_two; /* entry len */
210 memcpy(p, "..\0\0", 4); /* entry */
212 *p++ = xdr_one; /* bitmap length */
213 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
214 *p++ = htonl(8); /* attribute buffer length */
215 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
217 readdir->pgbase = (char *)p - (char *)start;
218 readdir->count -= readdir->pgbase;
219 kunmap_atomic(start, KM_USER0);
222 static int nfs4_wait_clnt_recover(struct nfs_client *clp)
228 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
229 nfs_wait_bit_killable, TASK_KILLABLE);
233 static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
240 *timeout = NFS4_POLL_RETRY_MIN;
241 if (*timeout > NFS4_POLL_RETRY_MAX)
242 *timeout = NFS4_POLL_RETRY_MAX;
243 schedule_timeout_killable(*timeout);
244 if (fatal_signal_pending(current))
250 /* This is the error handling routine for processes that are allowed
253 static int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
255 struct nfs_client *clp = server->nfs_client;
256 struct nfs4_state *state = exception->state;
259 exception->retry = 0;
263 case -NFS4ERR_ADMIN_REVOKED:
264 case -NFS4ERR_BAD_STATEID:
265 case -NFS4ERR_OPENMODE:
268 nfs4_schedule_stateid_recovery(server, state);
269 goto wait_on_recovery;
270 case -NFS4ERR_EXPIRED:
272 nfs4_schedule_stateid_recovery(server, state);
273 case -NFS4ERR_STALE_STATEID:
274 case -NFS4ERR_STALE_CLIENTID:
275 nfs4_schedule_lease_recovery(clp);
276 goto wait_on_recovery;
277 #if defined(CONFIG_NFS_V4_1)
278 case -NFS4ERR_BADSESSION:
279 case -NFS4ERR_BADSLOT:
280 case -NFS4ERR_BAD_HIGH_SLOT:
281 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
282 case -NFS4ERR_DEADSESSION:
283 case -NFS4ERR_SEQ_FALSE_RETRY:
284 case -NFS4ERR_SEQ_MISORDERED:
285 dprintk("%s ERROR: %d Reset session\n", __func__,
287 nfs4_schedule_session_recovery(clp->cl_session);
288 exception->retry = 1;
290 #endif /* defined(CONFIG_NFS_V4_1) */
291 case -NFS4ERR_FILE_OPEN:
292 if (exception->timeout > HZ) {
293 /* We have retried a decent amount, time to
302 ret = nfs4_delay(server->client, &exception->timeout);
305 case -NFS4ERR_RETRY_UNCACHED_REP:
306 case -NFS4ERR_OLD_STATEID:
307 exception->retry = 1;
309 case -NFS4ERR_BADOWNER:
310 /* The following works around a Linux server bug! */
311 case -NFS4ERR_BADNAME:
312 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
313 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
314 exception->retry = 1;
315 printk(KERN_WARNING "NFS: v4 server %s "
316 "does not accept raw "
318 "Reenabling the idmapper.\n",
319 server->nfs_client->cl_hostname);
322 /* We failed to handle the error */
323 return nfs4_map_errors(ret);
325 ret = nfs4_wait_clnt_recover(clp);
327 exception->retry = 1;
332 static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
334 spin_lock(&clp->cl_lock);
335 if (time_before(clp->cl_last_renewal,timestamp))
336 clp->cl_last_renewal = timestamp;
337 spin_unlock(&clp->cl_lock);
340 static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
342 do_renew_lease(server->nfs_client, timestamp);
345 #if defined(CONFIG_NFS_V4_1)
348 * nfs4_free_slot - free a slot and efficiently update slot table.
350 * freeing a slot is trivially done by clearing its respective bit
352 * If the freed slotid equals highest_used_slotid we want to update it
353 * so that the server would be able to size down the slot table if needed,
354 * otherwise we know that the highest_used_slotid is still in use.
355 * When updating highest_used_slotid there may be "holes" in the bitmap
356 * so we need to scan down from highest_used_slotid to 0 looking for the now
357 * highest slotid in use.
358 * If none found, highest_used_slotid is set to -1.
360 * Must be called while holding tbl->slot_tbl_lock
363 nfs4_free_slot(struct nfs4_slot_table *tbl, struct nfs4_slot *free_slot)
365 int free_slotid = free_slot - tbl->slots;
366 int slotid = free_slotid;
368 BUG_ON(slotid < 0 || slotid >= NFS4_MAX_SLOT_TABLE);
369 /* clear used bit in bitmap */
370 __clear_bit(slotid, tbl->used_slots);
372 /* update highest_used_slotid when it is freed */
373 if (slotid == tbl->highest_used_slotid) {
374 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
375 if (slotid < tbl->max_slots)
376 tbl->highest_used_slotid = slotid;
378 tbl->highest_used_slotid = -1;
380 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__,
381 free_slotid, tbl->highest_used_slotid);
385 * Signal state manager thread if session fore channel is drained
387 static void nfs4_check_drain_fc_complete(struct nfs4_session *ses)
389 struct rpc_task *task;
391 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state)) {
392 task = rpc_wake_up_next(&ses->fc_slot_table.slot_tbl_waitq);
394 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
398 if (ses->fc_slot_table.highest_used_slotid != -1)
401 dprintk("%s COMPLETE: Session Fore Channel Drained\n", __func__);
402 complete(&ses->fc_slot_table.complete);
406 * Signal state manager thread if session back channel is drained
408 void nfs4_check_drain_bc_complete(struct nfs4_session *ses)
410 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state) ||
411 ses->bc_slot_table.highest_used_slotid != -1)
413 dprintk("%s COMPLETE: Session Back Channel Drained\n", __func__);
414 complete(&ses->bc_slot_table.complete);
417 static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
419 struct nfs4_slot_table *tbl;
421 tbl = &res->sr_session->fc_slot_table;
423 /* just wake up the next guy waiting since
424 * we may have not consumed a slot after all */
425 dprintk("%s: No slot\n", __func__);
429 spin_lock(&tbl->slot_tbl_lock);
430 nfs4_free_slot(tbl, res->sr_slot);
431 nfs4_check_drain_fc_complete(res->sr_session);
432 spin_unlock(&tbl->slot_tbl_lock);
436 static int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
438 unsigned long timestamp;
439 struct nfs_client *clp;
442 * sr_status remains 1 if an RPC level error occurred. The server
443 * may or may not have processed the sequence operation..
444 * Proceed as if the server received and processed the sequence
447 if (res->sr_status == 1)
448 res->sr_status = NFS_OK;
450 /* don't increment the sequence number if the task wasn't sent */
451 if (!RPC_WAS_SENT(task))
454 /* Check the SEQUENCE operation status */
455 switch (res->sr_status) {
457 /* Update the slot's sequence and clientid lease timer */
458 ++res->sr_slot->seq_nr;
459 timestamp = res->sr_renewal_time;
460 clp = res->sr_session->clp;
461 do_renew_lease(clp, timestamp);
462 /* Check sequence flags */
463 if (res->sr_status_flags != 0)
464 nfs4_schedule_lease_recovery(clp);
467 /* The server detected a resend of the RPC call and
468 * returned NFS4ERR_DELAY as per Section 2.10.6.2
471 dprintk("%s: slot=%td seq=%d: Operation in progress\n",
473 res->sr_slot - res->sr_session->fc_slot_table.slots,
474 res->sr_slot->seq_nr);
477 /* Just update the slot sequence no. */
478 ++res->sr_slot->seq_nr;
481 /* The session may be reset by one of the error handlers. */
482 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
483 nfs41_sequence_free_slot(res);
486 if (!rpc_restart_call(task))
488 rpc_delay(task, NFS4_POLL_RETRY_MAX);
492 static int nfs4_sequence_done(struct rpc_task *task,
493 struct nfs4_sequence_res *res)
495 if (res->sr_session == NULL)
497 return nfs41_sequence_done(task, res);
501 * nfs4_find_slot - efficiently look for a free slot
503 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
504 * If found, we mark the slot as used, update the highest_used_slotid,
505 * and respectively set up the sequence operation args.
506 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
508 * Note: must be called with under the slot_tbl_lock.
511 nfs4_find_slot(struct nfs4_slot_table *tbl)
514 u8 ret_id = NFS4_MAX_SLOT_TABLE;
515 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
517 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
518 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
520 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
521 if (slotid >= tbl->max_slots)
523 __set_bit(slotid, tbl->used_slots);
524 if (slotid > tbl->highest_used_slotid)
525 tbl->highest_used_slotid = slotid;
528 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
529 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
533 int nfs41_setup_sequence(struct nfs4_session *session,
534 struct nfs4_sequence_args *args,
535 struct nfs4_sequence_res *res,
537 struct rpc_task *task)
539 struct nfs4_slot *slot;
540 struct nfs4_slot_table *tbl;
543 dprintk("--> %s\n", __func__);
544 /* slot already allocated? */
545 if (res->sr_slot != NULL)
548 tbl = &session->fc_slot_table;
550 spin_lock(&tbl->slot_tbl_lock);
551 if (test_bit(NFS4_SESSION_DRAINING, &session->session_state) &&
552 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
554 * The state manager will wait until the slot table is empty.
555 * Schedule the reset thread
557 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
558 spin_unlock(&tbl->slot_tbl_lock);
559 dprintk("%s Schedule Session Reset\n", __func__);
563 if (!rpc_queue_empty(&tbl->slot_tbl_waitq) &&
564 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
565 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
566 spin_unlock(&tbl->slot_tbl_lock);
567 dprintk("%s enforce FIFO order\n", __func__);
571 slotid = nfs4_find_slot(tbl);
572 if (slotid == NFS4_MAX_SLOT_TABLE) {
573 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
574 spin_unlock(&tbl->slot_tbl_lock);
575 dprintk("<-- %s: no free slots\n", __func__);
578 spin_unlock(&tbl->slot_tbl_lock);
580 rpc_task_set_priority(task, RPC_PRIORITY_NORMAL);
581 slot = tbl->slots + slotid;
582 args->sa_session = session;
583 args->sa_slotid = slotid;
584 args->sa_cache_this = cache_reply;
586 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
588 res->sr_session = session;
590 res->sr_renewal_time = jiffies;
591 res->sr_status_flags = 0;
593 * sr_status is only set in decode_sequence, and so will remain
594 * set to 1 if an rpc level failure occurs.
599 EXPORT_SYMBOL_GPL(nfs41_setup_sequence);
601 int nfs4_setup_sequence(const struct nfs_server *server,
602 struct nfs4_sequence_args *args,
603 struct nfs4_sequence_res *res,
605 struct rpc_task *task)
607 struct nfs4_session *session = nfs4_get_session(server);
610 if (session == NULL) {
611 args->sa_session = NULL;
612 res->sr_session = NULL;
616 dprintk("--> %s clp %p session %p sr_slot %td\n",
617 __func__, session->clp, session, res->sr_slot ?
618 res->sr_slot - session->fc_slot_table.slots : -1);
620 ret = nfs41_setup_sequence(session, args, res, cache_reply,
623 dprintk("<-- %s status=%d\n", __func__, ret);
627 struct nfs41_call_sync_data {
628 const struct nfs_server *seq_server;
629 struct nfs4_sequence_args *seq_args;
630 struct nfs4_sequence_res *seq_res;
634 static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
636 struct nfs41_call_sync_data *data = calldata;
638 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
640 if (nfs4_setup_sequence(data->seq_server, data->seq_args,
641 data->seq_res, data->cache_reply, task))
643 rpc_call_start(task);
646 static void nfs41_call_priv_sync_prepare(struct rpc_task *task, void *calldata)
648 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
649 nfs41_call_sync_prepare(task, calldata);
652 static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
654 struct nfs41_call_sync_data *data = calldata;
656 nfs41_sequence_done(task, data->seq_res);
659 struct rpc_call_ops nfs41_call_sync_ops = {
660 .rpc_call_prepare = nfs41_call_sync_prepare,
661 .rpc_call_done = nfs41_call_sync_done,
664 struct rpc_call_ops nfs41_call_priv_sync_ops = {
665 .rpc_call_prepare = nfs41_call_priv_sync_prepare,
666 .rpc_call_done = nfs41_call_sync_done,
669 static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
670 struct nfs_server *server,
671 struct rpc_message *msg,
672 struct nfs4_sequence_args *args,
673 struct nfs4_sequence_res *res,
678 struct rpc_task *task;
679 struct nfs41_call_sync_data data = {
680 .seq_server = server,
683 .cache_reply = cache_reply,
685 struct rpc_task_setup task_setup = {
688 .callback_ops = &nfs41_call_sync_ops,
689 .callback_data = &data
694 task_setup.callback_ops = &nfs41_call_priv_sync_ops;
695 task = rpc_run_task(&task_setup);
699 ret = task->tk_status;
705 int _nfs4_call_sync_session(struct rpc_clnt *clnt,
706 struct nfs_server *server,
707 struct rpc_message *msg,
708 struct nfs4_sequence_args *args,
709 struct nfs4_sequence_res *res,
712 return nfs4_call_sync_sequence(clnt, server, msg, args, res, cache_reply, 0);
716 static int nfs4_sequence_done(struct rpc_task *task,
717 struct nfs4_sequence_res *res)
721 #endif /* CONFIG_NFS_V4_1 */
723 int _nfs4_call_sync(struct rpc_clnt *clnt,
724 struct nfs_server *server,
725 struct rpc_message *msg,
726 struct nfs4_sequence_args *args,
727 struct nfs4_sequence_res *res,
730 args->sa_session = res->sr_session = NULL;
731 return rpc_call_sync(clnt, msg, 0);
735 int nfs4_call_sync(struct rpc_clnt *clnt,
736 struct nfs_server *server,
737 struct rpc_message *msg,
738 struct nfs4_sequence_args *args,
739 struct nfs4_sequence_res *res,
742 return server->nfs_client->cl_mvops->call_sync(clnt, server, msg,
743 args, res, cache_reply);
746 static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
748 struct nfs_inode *nfsi = NFS_I(dir);
750 spin_lock(&dir->i_lock);
751 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
752 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
753 nfs_force_lookup_revalidate(dir);
754 nfsi->change_attr = cinfo->after;
755 spin_unlock(&dir->i_lock);
758 struct nfs4_opendata {
760 struct nfs_openargs o_arg;
761 struct nfs_openres o_res;
762 struct nfs_open_confirmargs c_arg;
763 struct nfs_open_confirmres c_res;
764 struct nfs_fattr f_attr;
765 struct nfs_fattr dir_attr;
768 struct nfs4_state_owner *owner;
769 struct nfs4_state *state;
771 unsigned long timestamp;
772 unsigned int rpc_done : 1;
778 static void nfs4_init_opendata_res(struct nfs4_opendata *p)
780 p->o_res.f_attr = &p->f_attr;
781 p->o_res.dir_attr = &p->dir_attr;
782 p->o_res.seqid = p->o_arg.seqid;
783 p->c_res.seqid = p->c_arg.seqid;
784 p->o_res.server = p->o_arg.server;
785 nfs_fattr_init(&p->f_attr);
786 nfs_fattr_init(&p->dir_attr);
789 static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
790 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
791 const struct iattr *attrs,
794 struct dentry *parent = dget_parent(path->dentry);
795 struct inode *dir = parent->d_inode;
796 struct nfs_server *server = NFS_SERVER(dir);
797 struct nfs4_opendata *p;
799 p = kzalloc(sizeof(*p), gfp_mask);
802 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid, gfp_mask);
803 if (p->o_arg.seqid == NULL)
809 atomic_inc(&sp->so_count);
810 p->o_arg.fh = NFS_FH(dir);
811 p->o_arg.open_flags = flags;
812 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
813 p->o_arg.clientid = server->nfs_client->cl_clientid;
814 p->o_arg.id = sp->so_owner_id.id;
815 p->o_arg.name = &p->path.dentry->d_name;
816 p->o_arg.server = server;
817 p->o_arg.bitmask = server->attr_bitmask;
818 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
819 if (flags & O_CREAT) {
822 p->o_arg.u.attrs = &p->attrs;
823 memcpy(&p->attrs, attrs, sizeof(p->attrs));
824 s = (u32 *) p->o_arg.u.verifier.data;
828 p->c_arg.fh = &p->o_res.fh;
829 p->c_arg.stateid = &p->o_res.stateid;
830 p->c_arg.seqid = p->o_arg.seqid;
831 nfs4_init_opendata_res(p);
841 static void nfs4_opendata_free(struct kref *kref)
843 struct nfs4_opendata *p = container_of(kref,
844 struct nfs4_opendata, kref);
846 nfs_free_seqid(p->o_arg.seqid);
847 if (p->state != NULL)
848 nfs4_put_open_state(p->state);
849 nfs4_put_state_owner(p->owner);
855 static void nfs4_opendata_put(struct nfs4_opendata *p)
858 kref_put(&p->kref, nfs4_opendata_free);
861 static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
865 ret = rpc_wait_for_completion_task(task);
869 static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
873 if (open_mode & O_EXCL)
875 switch (mode & (FMODE_READ|FMODE_WRITE)) {
877 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
878 && state->n_rdonly != 0;
881 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
882 && state->n_wronly != 0;
884 case FMODE_READ|FMODE_WRITE:
885 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
886 && state->n_rdwr != 0;
892 static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
894 if ((delegation->type & fmode) != fmode)
896 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
898 nfs_mark_delegation_referenced(delegation);
902 static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
911 case FMODE_READ|FMODE_WRITE:
914 nfs4_state_set_mode_locked(state, state->state | fmode);
917 static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
919 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
920 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
921 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
924 set_bit(NFS_O_RDONLY_STATE, &state->flags);
927 set_bit(NFS_O_WRONLY_STATE, &state->flags);
929 case FMODE_READ|FMODE_WRITE:
930 set_bit(NFS_O_RDWR_STATE, &state->flags);
934 static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
936 write_seqlock(&state->seqlock);
937 nfs_set_open_stateid_locked(state, stateid, fmode);
938 write_sequnlock(&state->seqlock);
941 static void __update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, const nfs4_stateid *deleg_stateid, fmode_t fmode)
944 * Protect the call to nfs4_state_set_mode_locked and
945 * serialise the stateid update
947 write_seqlock(&state->seqlock);
948 if (deleg_stateid != NULL) {
949 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
950 set_bit(NFS_DELEGATED_STATE, &state->flags);
952 if (open_stateid != NULL)
953 nfs_set_open_stateid_locked(state, open_stateid, fmode);
954 write_sequnlock(&state->seqlock);
955 spin_lock(&state->owner->so_lock);
956 update_open_stateflags(state, fmode);
957 spin_unlock(&state->owner->so_lock);
960 static int update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *delegation, fmode_t fmode)
962 struct nfs_inode *nfsi = NFS_I(state->inode);
963 struct nfs_delegation *deleg_cur;
966 fmode &= (FMODE_READ|FMODE_WRITE);
969 deleg_cur = rcu_dereference(nfsi->delegation);
970 if (deleg_cur == NULL)
973 spin_lock(&deleg_cur->lock);
974 if (nfsi->delegation != deleg_cur ||
975 (deleg_cur->type & fmode) != fmode)
976 goto no_delegation_unlock;
978 if (delegation == NULL)
979 delegation = &deleg_cur->stateid;
980 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
981 goto no_delegation_unlock;
983 nfs_mark_delegation_referenced(deleg_cur);
984 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
986 no_delegation_unlock:
987 spin_unlock(&deleg_cur->lock);
991 if (!ret && open_stateid != NULL) {
992 __update_open_stateid(state, open_stateid, NULL, fmode);
1000 static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
1002 struct nfs_delegation *delegation;
1005 delegation = rcu_dereference(NFS_I(inode)->delegation);
1006 if (delegation == NULL || (delegation->type & fmode) == fmode) {
1011 nfs_inode_return_delegation(inode);
1014 static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
1016 struct nfs4_state *state = opendata->state;
1017 struct nfs_inode *nfsi = NFS_I(state->inode);
1018 struct nfs_delegation *delegation;
1019 int open_mode = opendata->o_arg.open_flags & O_EXCL;
1020 fmode_t fmode = opendata->o_arg.fmode;
1021 nfs4_stateid stateid;
1025 if (can_open_cached(state, fmode, open_mode)) {
1026 spin_lock(&state->owner->so_lock);
1027 if (can_open_cached(state, fmode, open_mode)) {
1028 update_open_stateflags(state, fmode);
1029 spin_unlock(&state->owner->so_lock);
1030 goto out_return_state;
1032 spin_unlock(&state->owner->so_lock);
1035 delegation = rcu_dereference(nfsi->delegation);
1036 if (delegation == NULL ||
1037 !can_open_delegated(delegation, fmode)) {
1041 /* Save the delegation */
1042 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
1044 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
1049 /* Try to update the stateid using the delegation */
1050 if (update_open_stateid(state, NULL, &stateid, fmode))
1051 goto out_return_state;
1054 return ERR_PTR(ret);
1056 atomic_inc(&state->count);
1060 static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1062 struct inode *inode;
1063 struct nfs4_state *state = NULL;
1064 struct nfs_delegation *delegation;
1067 if (!data->rpc_done) {
1068 state = nfs4_try_open_cached(data);
1073 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
1075 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
1076 ret = PTR_ERR(inode);
1080 state = nfs4_get_open_state(inode, data->owner);
1083 if (data->o_res.delegation_type != 0) {
1084 int delegation_flags = 0;
1087 delegation = rcu_dereference(NFS_I(inode)->delegation);
1089 delegation_flags = delegation->flags;
1091 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
1092 nfs_inode_set_delegation(state->inode,
1093 data->owner->so_cred,
1096 nfs_inode_reclaim_delegation(state->inode,
1097 data->owner->so_cred,
1101 update_open_stateid(state, &data->o_res.stateid, NULL,
1109 return ERR_PTR(ret);
1112 static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1114 struct nfs_inode *nfsi = NFS_I(state->inode);
1115 struct nfs_open_context *ctx;
1117 spin_lock(&state->inode->i_lock);
1118 list_for_each_entry(ctx, &nfsi->open_files, list) {
1119 if (ctx->state != state)
1121 get_nfs_open_context(ctx);
1122 spin_unlock(&state->inode->i_lock);
1125 spin_unlock(&state->inode->i_lock);
1126 return ERR_PTR(-ENOENT);
1129 static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1131 struct nfs4_opendata *opendata;
1133 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL, GFP_NOFS);
1134 if (opendata == NULL)
1135 return ERR_PTR(-ENOMEM);
1136 opendata->state = state;
1137 atomic_inc(&state->count);
1141 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
1143 struct nfs4_state *newstate;
1146 opendata->o_arg.open_flags = 0;
1147 opendata->o_arg.fmode = fmode;
1148 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1149 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1150 nfs4_init_opendata_res(opendata);
1151 ret = _nfs4_recover_proc_open(opendata);
1154 newstate = nfs4_opendata_to_nfs4_state(opendata);
1155 if (IS_ERR(newstate))
1156 return PTR_ERR(newstate);
1157 nfs4_close_state(&opendata->path, newstate, fmode);
1162 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1164 struct nfs4_state *newstate;
1167 /* memory barrier prior to reading state->n_* */
1168 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1170 if (state->n_rdwr != 0) {
1171 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1172 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
1175 if (newstate != state)
1178 if (state->n_wronly != 0) {
1179 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1180 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
1183 if (newstate != state)
1186 if (state->n_rdonly != 0) {
1187 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1188 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
1191 if (newstate != state)
1195 * We may have performed cached opens for all three recoveries.
1196 * Check if we need to update the current stateid.
1198 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1199 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
1200 write_seqlock(&state->seqlock);
1201 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1202 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
1203 write_sequnlock(&state->seqlock);
1210 * reclaim state on the server after a reboot.
1212 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
1214 struct nfs_delegation *delegation;
1215 struct nfs4_opendata *opendata;
1216 fmode_t delegation_type = 0;
1219 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1220 if (IS_ERR(opendata))
1221 return PTR_ERR(opendata);
1222 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1223 opendata->o_arg.fh = NFS_FH(state->inode);
1225 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1226 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
1227 delegation_type = delegation->type;
1229 opendata->o_arg.u.delegation_type = delegation_type;
1230 status = nfs4_open_recover(opendata, state);
1231 nfs4_opendata_put(opendata);
1235 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
1237 struct nfs_server *server = NFS_SERVER(state->inode);
1238 struct nfs4_exception exception = { };
1241 err = _nfs4_do_open_reclaim(ctx, state);
1242 if (err != -NFS4ERR_DELAY)
1244 nfs4_handle_exception(server, err, &exception);
1245 } while (exception.retry);
1249 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1251 struct nfs_open_context *ctx;
1254 ctx = nfs4_state_find_open_context(state);
1256 return PTR_ERR(ctx);
1257 ret = nfs4_do_open_reclaim(ctx, state);
1258 put_nfs_open_context(ctx);
1262 static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
1264 struct nfs4_opendata *opendata;
1267 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1268 if (IS_ERR(opendata))
1269 return PTR_ERR(opendata);
1270 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
1271 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
1272 sizeof(opendata->o_arg.u.delegation.data));
1273 ret = nfs4_open_recover(opendata, state);
1274 nfs4_opendata_put(opendata);
1278 int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
1280 struct nfs4_exception exception = { };
1281 struct nfs_server *server = NFS_SERVER(state->inode);
1284 err = _nfs4_open_delegation_recall(ctx, state, stateid);
1290 case -NFS4ERR_BADSESSION:
1291 case -NFS4ERR_BADSLOT:
1292 case -NFS4ERR_BAD_HIGH_SLOT:
1293 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1294 case -NFS4ERR_DEADSESSION:
1295 nfs4_schedule_session_recovery(server->nfs_client->cl_session);
1297 case -NFS4ERR_STALE_CLIENTID:
1298 case -NFS4ERR_STALE_STATEID:
1299 case -NFS4ERR_EXPIRED:
1300 /* Don't recall a delegation if it was lost */
1301 nfs4_schedule_lease_recovery(server->nfs_client);
1305 * The show must go on: exit, but mark the
1306 * stateid as needing recovery.
1308 case -NFS4ERR_ADMIN_REVOKED:
1309 case -NFS4ERR_BAD_STATEID:
1310 nfs4_schedule_stateid_recovery(server, state);
1313 * User RPCSEC_GSS context has expired.
1314 * We cannot recover this stateid now, so
1315 * skip it and allow recovery thread to
1322 err = nfs4_handle_exception(server, err, &exception);
1323 } while (exception.retry);
1328 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1330 struct nfs4_opendata *data = calldata;
1332 data->rpc_status = task->tk_status;
1333 if (data->rpc_status == 0) {
1334 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1335 sizeof(data->o_res.stateid.data));
1336 nfs_confirm_seqid(&data->owner->so_seqid, 0);
1337 renew_lease(data->o_res.server, data->timestamp);
1342 static void nfs4_open_confirm_release(void *calldata)
1344 struct nfs4_opendata *data = calldata;
1345 struct nfs4_state *state = NULL;
1347 /* If this request hasn't been cancelled, do nothing */
1348 if (data->cancelled == 0)
1350 /* In case of error, no cleanup! */
1351 if (!data->rpc_done)
1353 state = nfs4_opendata_to_nfs4_state(data);
1355 nfs4_close_state(&data->path, state, data->o_arg.fmode);
1357 nfs4_opendata_put(data);
1360 static const struct rpc_call_ops nfs4_open_confirm_ops = {
1361 .rpc_call_done = nfs4_open_confirm_done,
1362 .rpc_release = nfs4_open_confirm_release,
1366 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1368 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1370 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1371 struct rpc_task *task;
1372 struct rpc_message msg = {
1373 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1374 .rpc_argp = &data->c_arg,
1375 .rpc_resp = &data->c_res,
1376 .rpc_cred = data->owner->so_cred,
1378 struct rpc_task_setup task_setup_data = {
1379 .rpc_client = server->client,
1380 .rpc_message = &msg,
1381 .callback_ops = &nfs4_open_confirm_ops,
1382 .callback_data = data,
1383 .workqueue = nfsiod_workqueue,
1384 .flags = RPC_TASK_ASYNC,
1388 kref_get(&data->kref);
1390 data->rpc_status = 0;
1391 data->timestamp = jiffies;
1392 task = rpc_run_task(&task_setup_data);
1394 return PTR_ERR(task);
1395 status = nfs4_wait_for_completion_rpc_task(task);
1397 data->cancelled = 1;
1400 status = data->rpc_status;
1405 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
1407 struct nfs4_opendata *data = calldata;
1408 struct nfs4_state_owner *sp = data->owner;
1410 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1413 * Check if we still need to send an OPEN call, or if we can use
1414 * a delegation instead.
1416 if (data->state != NULL) {
1417 struct nfs_delegation *delegation;
1419 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
1422 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1423 if (delegation != NULL &&
1424 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
1430 /* Update sequence id. */
1431 data->o_arg.id = sp->so_owner_id.id;
1432 data->o_arg.clientid = sp->so_server->nfs_client->cl_clientid;
1433 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
1434 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
1435 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1437 data->timestamp = jiffies;
1438 if (nfs4_setup_sequence(data->o_arg.server,
1439 &data->o_arg.seq_args,
1440 &data->o_res.seq_res, 1, task))
1442 rpc_call_start(task);
1445 task->tk_action = NULL;
1449 static void nfs4_recover_open_prepare(struct rpc_task *task, void *calldata)
1451 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
1452 nfs4_open_prepare(task, calldata);
1455 static void nfs4_open_done(struct rpc_task *task, void *calldata)
1457 struct nfs4_opendata *data = calldata;
1459 data->rpc_status = task->tk_status;
1461 if (!nfs4_sequence_done(task, &data->o_res.seq_res))
1464 if (task->tk_status == 0) {
1465 switch (data->o_res.f_attr->mode & S_IFMT) {
1469 data->rpc_status = -ELOOP;
1472 data->rpc_status = -EISDIR;
1475 data->rpc_status = -ENOTDIR;
1477 renew_lease(data->o_res.server, data->timestamp);
1478 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1479 nfs_confirm_seqid(&data->owner->so_seqid, 0);
1484 static void nfs4_open_release(void *calldata)
1486 struct nfs4_opendata *data = calldata;
1487 struct nfs4_state *state = NULL;
1489 /* If this request hasn't been cancelled, do nothing */
1490 if (data->cancelled == 0)
1492 /* In case of error, no cleanup! */
1493 if (data->rpc_status != 0 || !data->rpc_done)
1495 /* In case we need an open_confirm, no cleanup! */
1496 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1498 state = nfs4_opendata_to_nfs4_state(data);
1500 nfs4_close_state(&data->path, state, data->o_arg.fmode);
1502 nfs4_opendata_put(data);
1505 static const struct rpc_call_ops nfs4_open_ops = {
1506 .rpc_call_prepare = nfs4_open_prepare,
1507 .rpc_call_done = nfs4_open_done,
1508 .rpc_release = nfs4_open_release,
1511 static const struct rpc_call_ops nfs4_recover_open_ops = {
1512 .rpc_call_prepare = nfs4_recover_open_prepare,
1513 .rpc_call_done = nfs4_open_done,
1514 .rpc_release = nfs4_open_release,
1517 static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
1519 struct inode *dir = data->dir->d_inode;
1520 struct nfs_server *server = NFS_SERVER(dir);
1521 struct nfs_openargs *o_arg = &data->o_arg;
1522 struct nfs_openres *o_res = &data->o_res;
1523 struct rpc_task *task;
1524 struct rpc_message msg = {
1525 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1528 .rpc_cred = data->owner->so_cred,
1530 struct rpc_task_setup task_setup_data = {
1531 .rpc_client = server->client,
1532 .rpc_message = &msg,
1533 .callback_ops = &nfs4_open_ops,
1534 .callback_data = data,
1535 .workqueue = nfsiod_workqueue,
1536 .flags = RPC_TASK_ASYNC,
1540 kref_get(&data->kref);
1542 data->rpc_status = 0;
1543 data->cancelled = 0;
1545 task_setup_data.callback_ops = &nfs4_recover_open_ops;
1546 task = rpc_run_task(&task_setup_data);
1548 return PTR_ERR(task);
1549 status = nfs4_wait_for_completion_rpc_task(task);
1551 data->cancelled = 1;
1554 status = data->rpc_status;
1560 static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
1562 struct inode *dir = data->dir->d_inode;
1563 struct nfs_openres *o_res = &data->o_res;
1566 status = nfs4_run_open_task(data, 1);
1567 if (status != 0 || !data->rpc_done)
1570 nfs_refresh_inode(dir, o_res->dir_attr);
1572 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
1573 status = _nfs4_proc_open_confirm(data);
1582 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1584 static int _nfs4_proc_open(struct nfs4_opendata *data)
1586 struct inode *dir = data->dir->d_inode;
1587 struct nfs_server *server = NFS_SERVER(dir);
1588 struct nfs_openargs *o_arg = &data->o_arg;
1589 struct nfs_openres *o_res = &data->o_res;
1592 status = nfs4_run_open_task(data, 0);
1593 if (status != 0 || !data->rpc_done)
1596 if (o_arg->open_flags & O_CREAT) {
1597 update_changeattr(dir, &o_res->cinfo);
1598 nfs_post_op_update_inode(dir, o_res->dir_attr);
1600 nfs_refresh_inode(dir, o_res->dir_attr);
1601 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
1602 server->caps &= ~NFS_CAP_POSIX_LOCK;
1603 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
1604 status = _nfs4_proc_open_confirm(data);
1608 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
1609 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
1613 static int nfs4_client_recover_expired_lease(struct nfs_client *clp)
1618 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
1619 ret = nfs4_wait_clnt_recover(clp);
1622 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1623 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
1625 nfs4_schedule_state_manager(clp);
1631 static int nfs4_recover_expired_lease(struct nfs_server *server)
1633 return nfs4_client_recover_expired_lease(server->nfs_client);
1638 * reclaim state on the server after a network partition.
1639 * Assumes caller holds the appropriate lock
1641 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
1643 struct nfs4_opendata *opendata;
1646 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1647 if (IS_ERR(opendata))
1648 return PTR_ERR(opendata);
1649 ret = nfs4_open_recover(opendata, state);
1651 d_drop(ctx->path.dentry);
1652 nfs4_opendata_put(opendata);
1656 static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
1658 struct nfs_server *server = NFS_SERVER(state->inode);
1659 struct nfs4_exception exception = { };
1663 err = _nfs4_open_expired(ctx, state);
1667 case -NFS4ERR_GRACE:
1668 case -NFS4ERR_DELAY:
1669 nfs4_handle_exception(server, err, &exception);
1672 } while (exception.retry);
1677 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1679 struct nfs_open_context *ctx;
1682 ctx = nfs4_state_find_open_context(state);
1684 return PTR_ERR(ctx);
1685 ret = nfs4_do_open_expired(ctx, state);
1686 put_nfs_open_context(ctx);
1691 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1692 * fields corresponding to attributes that were used to store the verifier.
1693 * Make sure we clobber those fields in the later setattr call
1695 static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1697 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1698 !(sattr->ia_valid & ATTR_ATIME_SET))
1699 sattr->ia_valid |= ATTR_ATIME;
1701 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1702 !(sattr->ia_valid & ATTR_MTIME_SET))
1703 sattr->ia_valid |= ATTR_MTIME;
1707 * Returns a referenced nfs4_state
1709 static int _nfs4_do_open(struct inode *dir, struct path *path, fmode_t fmode, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
1711 struct nfs4_state_owner *sp;
1712 struct nfs4_state *state = NULL;
1713 struct nfs_server *server = NFS_SERVER(dir);
1714 struct nfs4_opendata *opendata;
1717 /* Protect against reboot recovery conflicts */
1719 if (!(sp = nfs4_get_state_owner(server, cred))) {
1720 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1723 status = nfs4_recover_expired_lease(server);
1725 goto err_put_state_owner;
1726 if (path->dentry->d_inode != NULL)
1727 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
1729 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr, GFP_KERNEL);
1730 if (opendata == NULL)
1731 goto err_put_state_owner;
1733 if (path->dentry->d_inode != NULL)
1734 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1736 status = _nfs4_proc_open(opendata);
1738 goto err_opendata_put;
1740 state = nfs4_opendata_to_nfs4_state(opendata);
1741 status = PTR_ERR(state);
1743 goto err_opendata_put;
1744 if (server->caps & NFS_CAP_POSIX_LOCK)
1745 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
1747 if (opendata->o_arg.open_flags & O_EXCL) {
1748 nfs4_exclusive_attrset(opendata, sattr);
1750 nfs_fattr_init(opendata->o_res.f_attr);
1751 status = nfs4_do_setattr(state->inode, cred,
1752 opendata->o_res.f_attr, sattr,
1755 nfs_setattr_update_inode(state->inode, sattr);
1756 nfs_post_op_update_inode(state->inode, opendata->o_res.f_attr);
1758 nfs4_opendata_put(opendata);
1759 nfs4_put_state_owner(sp);
1763 nfs4_opendata_put(opendata);
1764 err_put_state_owner:
1765 nfs4_put_state_owner(sp);
1772 static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, fmode_t fmode, int flags, struct iattr *sattr, struct rpc_cred *cred)
1774 struct nfs4_exception exception = { };
1775 struct nfs4_state *res;
1779 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
1782 /* NOTE: BAD_SEQID means the server and client disagree about the
1783 * book-keeping w.r.t. state-changing operations
1784 * (OPEN/CLOSE/LOCK/LOCKU...)
1785 * It is actually a sign of a bug on the client or on the server.
1787 * If we receive a BAD_SEQID error in the particular case of
1788 * doing an OPEN, we assume that nfs_increment_open_seqid() will
1789 * have unhashed the old state_owner for us, and that we can
1790 * therefore safely retry using a new one. We should still warn
1791 * the user though...
1793 if (status == -NFS4ERR_BAD_SEQID) {
1794 printk(KERN_WARNING "NFS: v4 server %s "
1795 " returned a bad sequence-id error!\n",
1796 NFS_SERVER(dir)->nfs_client->cl_hostname);
1797 exception.retry = 1;
1801 * BAD_STATEID on OPEN means that the server cancelled our
1802 * state before it received the OPEN_CONFIRM.
1803 * Recover by retrying the request as per the discussion
1804 * on Page 181 of RFC3530.
1806 if (status == -NFS4ERR_BAD_STATEID) {
1807 exception.retry = 1;
1810 if (status == -EAGAIN) {
1811 /* We must have found a delegation */
1812 exception.retry = 1;
1815 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1816 status, &exception));
1817 } while (exception.retry);
1821 static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1822 struct nfs_fattr *fattr, struct iattr *sattr,
1823 struct nfs4_state *state)
1825 struct nfs_server *server = NFS_SERVER(inode);
1826 struct nfs_setattrargs arg = {
1827 .fh = NFS_FH(inode),
1830 .bitmask = server->attr_bitmask,
1832 struct nfs_setattrres res = {
1836 struct rpc_message msg = {
1837 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1842 unsigned long timestamp = jiffies;
1845 nfs_fattr_init(fattr);
1847 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1848 /* Use that stateid */
1849 } else if (state != NULL) {
1850 nfs4_copy_stateid(&arg.stateid, state, current->files, current->tgid);
1852 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1854 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
1855 if (status == 0 && state != NULL)
1856 renew_lease(server, timestamp);
1860 static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1861 struct nfs_fattr *fattr, struct iattr *sattr,
1862 struct nfs4_state *state)
1864 struct nfs_server *server = NFS_SERVER(inode);
1865 struct nfs4_exception exception = { };
1868 err = nfs4_handle_exception(server,
1869 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
1871 } while (exception.retry);
1875 struct nfs4_closedata {
1877 struct inode *inode;
1878 struct nfs4_state *state;
1879 struct nfs_closeargs arg;
1880 struct nfs_closeres res;
1881 struct nfs_fattr fattr;
1882 unsigned long timestamp;
1887 static void nfs4_free_closedata(void *data)
1889 struct nfs4_closedata *calldata = data;
1890 struct nfs4_state_owner *sp = calldata->state->owner;
1893 pnfs_roc_release(calldata->state->inode);
1894 nfs4_put_open_state(calldata->state);
1895 nfs_free_seqid(calldata->arg.seqid);
1896 nfs4_put_state_owner(sp);
1897 path_put(&calldata->path);
1901 static void nfs4_close_clear_stateid_flags(struct nfs4_state *state,
1904 spin_lock(&state->owner->so_lock);
1905 if (!(fmode & FMODE_READ))
1906 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1907 if (!(fmode & FMODE_WRITE))
1908 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1909 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1910 spin_unlock(&state->owner->so_lock);
1913 static void nfs4_close_done(struct rpc_task *task, void *data)
1915 struct nfs4_closedata *calldata = data;
1916 struct nfs4_state *state = calldata->state;
1917 struct nfs_server *server = NFS_SERVER(calldata->inode);
1919 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
1921 /* hmm. we are done with the inode, and in the process of freeing
1922 * the state_owner. we keep this around to process errors
1924 switch (task->tk_status) {
1927 pnfs_roc_set_barrier(state->inode,
1928 calldata->roc_barrier);
1929 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
1930 renew_lease(server, calldata->timestamp);
1931 nfs4_close_clear_stateid_flags(state,
1932 calldata->arg.fmode);
1934 case -NFS4ERR_STALE_STATEID:
1935 case -NFS4ERR_OLD_STATEID:
1936 case -NFS4ERR_BAD_STATEID:
1937 case -NFS4ERR_EXPIRED:
1938 if (calldata->arg.fmode == 0)
1941 if (nfs4_async_handle_error(task, server, state) == -EAGAIN)
1942 rpc_restart_call_prepare(task);
1944 nfs_release_seqid(calldata->arg.seqid);
1945 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
1948 static void nfs4_close_prepare(struct rpc_task *task, void *data)
1950 struct nfs4_closedata *calldata = data;
1951 struct nfs4_state *state = calldata->state;
1954 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
1957 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1958 calldata->arg.fmode = FMODE_READ|FMODE_WRITE;
1959 spin_lock(&state->owner->so_lock);
1960 /* Calculate the change in open mode */
1961 if (state->n_rdwr == 0) {
1962 if (state->n_rdonly == 0) {
1963 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
1964 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1965 calldata->arg.fmode &= ~FMODE_READ;
1967 if (state->n_wronly == 0) {
1968 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
1969 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1970 calldata->arg.fmode &= ~FMODE_WRITE;
1973 spin_unlock(&state->owner->so_lock);
1976 /* Note: exit _without_ calling nfs4_close_done */
1977 task->tk_action = NULL;
1981 if (calldata->arg.fmode == 0) {
1982 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
1983 if (calldata->roc &&
1984 pnfs_roc_drain(calldata->inode, &calldata->roc_barrier)) {
1985 rpc_sleep_on(&NFS_SERVER(calldata->inode)->roc_rpcwaitq,
1991 nfs_fattr_init(calldata->res.fattr);
1992 calldata->timestamp = jiffies;
1993 if (nfs4_setup_sequence(NFS_SERVER(calldata->inode),
1994 &calldata->arg.seq_args, &calldata->res.seq_res,
1997 rpc_call_start(task);
2000 static const struct rpc_call_ops nfs4_close_ops = {
2001 .rpc_call_prepare = nfs4_close_prepare,
2002 .rpc_call_done = nfs4_close_done,
2003 .rpc_release = nfs4_free_closedata,
2007 * It is possible for data to be read/written from a mem-mapped file
2008 * after the sys_close call (which hits the vfs layer as a flush).
2009 * This means that we can't safely call nfsv4 close on a file until
2010 * the inode is cleared. This in turn means that we are not good
2011 * NFSv4 citizens - we do not indicate to the server to update the file's
2012 * share state even when we are done with one of the three share
2013 * stateid's in the inode.
2015 * NOTE: Caller must be holding the sp->so_owner semaphore!
2017 int nfs4_do_close(struct path *path, struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc)
2019 struct nfs_server *server = NFS_SERVER(state->inode);
2020 struct nfs4_closedata *calldata;
2021 struct nfs4_state_owner *sp = state->owner;
2022 struct rpc_task *task;
2023 struct rpc_message msg = {
2024 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
2025 .rpc_cred = state->owner->so_cred,
2027 struct rpc_task_setup task_setup_data = {
2028 .rpc_client = server->client,
2029 .rpc_message = &msg,
2030 .callback_ops = &nfs4_close_ops,
2031 .workqueue = nfsiod_workqueue,
2032 .flags = RPC_TASK_ASYNC,
2034 int status = -ENOMEM;
2036 calldata = kzalloc(sizeof(*calldata), gfp_mask);
2037 if (calldata == NULL)
2039 calldata->inode = state->inode;
2040 calldata->state = state;
2041 calldata->arg.fh = NFS_FH(state->inode);
2042 calldata->arg.stateid = &state->open_stateid;
2043 /* Serialization for the sequence id */
2044 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid, gfp_mask);
2045 if (calldata->arg.seqid == NULL)
2046 goto out_free_calldata;
2047 calldata->arg.fmode = 0;
2048 calldata->arg.bitmask = server->cache_consistency_bitmask;
2049 calldata->res.fattr = &calldata->fattr;
2050 calldata->res.seqid = calldata->arg.seqid;
2051 calldata->res.server = server;
2052 calldata->roc = roc;
2054 calldata->path = *path;
2056 msg.rpc_argp = &calldata->arg;
2057 msg.rpc_resp = &calldata->res;
2058 task_setup_data.callback_data = calldata;
2059 task = rpc_run_task(&task_setup_data);
2061 return PTR_ERR(task);
2064 status = rpc_wait_for_completion_task(task);
2071 pnfs_roc_release(state->inode);
2072 nfs4_put_open_state(state);
2073 nfs4_put_state_owner(sp);
2077 static struct inode *
2078 nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx, int open_flags, struct iattr *attr)
2080 struct nfs4_state *state;
2082 /* Protect against concurrent sillydeletes */
2083 state = nfs4_do_open(dir, &ctx->path, ctx->mode, open_flags, attr, ctx->cred);
2085 return ERR_CAST(state);
2087 return igrab(state->inode);
2090 static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
2092 if (ctx->state == NULL)
2095 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
2097 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
2100 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2102 struct nfs4_server_caps_arg args = {
2105 struct nfs4_server_caps_res res = {};
2106 struct rpc_message msg = {
2107 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
2113 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
2115 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
2116 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2117 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2118 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2119 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2120 NFS_CAP_CTIME|NFS_CAP_MTIME);
2121 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2122 server->caps |= NFS_CAP_ACLS;
2123 if (res.has_links != 0)
2124 server->caps |= NFS_CAP_HARDLINKS;
2125 if (res.has_symlinks != 0)
2126 server->caps |= NFS_CAP_SYMLINKS;
2127 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2128 server->caps |= NFS_CAP_FILEID;
2129 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2130 server->caps |= NFS_CAP_MODE;
2131 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2132 server->caps |= NFS_CAP_NLINK;
2133 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2134 server->caps |= NFS_CAP_OWNER;
2135 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2136 server->caps |= NFS_CAP_OWNER_GROUP;
2137 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2138 server->caps |= NFS_CAP_ATIME;
2139 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2140 server->caps |= NFS_CAP_CTIME;
2141 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2142 server->caps |= NFS_CAP_MTIME;
2144 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2145 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2146 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
2147 server->acl_bitmask = res.acl_bitmask;
2153 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2155 struct nfs4_exception exception = { };
2158 err = nfs4_handle_exception(server,
2159 _nfs4_server_capabilities(server, fhandle),
2161 } while (exception.retry);
2165 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2166 struct nfs_fsinfo *info)
2168 struct nfs4_lookup_root_arg args = {
2169 .bitmask = nfs4_fattr_bitmap,
2171 struct nfs4_lookup_res res = {
2173 .fattr = info->fattr,
2176 struct rpc_message msg = {
2177 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2182 nfs_fattr_init(info->fattr);
2183 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
2186 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2187 struct nfs_fsinfo *info)
2189 struct nfs4_exception exception = { };
2192 err = _nfs4_lookup_root(server, fhandle, info);
2195 case -NFS4ERR_WRONGSEC:
2198 err = nfs4_handle_exception(server, err, &exception);
2200 } while (exception.retry);
2204 static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
2205 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
2207 struct rpc_auth *auth;
2210 auth = rpcauth_create(flavor, server->client);
2215 ret = nfs4_lookup_root(server, fhandle, info);
2220 static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
2221 struct nfs_fsinfo *info)
2223 int i, len, status = 0;
2224 rpc_authflavor_t flav_array[NFS_MAX_SECFLAVORS];
2226 len = gss_mech_list_pseudoflavors(&flav_array[0]);
2227 flav_array[len] = RPC_AUTH_NULL;
2230 for (i = 0; i < len; i++) {
2231 status = nfs4_lookup_root_sec(server, fhandle, info, flav_array[i]);
2232 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
2237 * -EACCESS could mean that the user doesn't have correct permissions
2238 * to access the mount. It could also mean that we tried to mount
2239 * with a gss auth flavor, but rpc.gssd isn't running. Either way,
2240 * existing mount programs don't handle -EACCES very well so it should
2241 * be mapped to -EPERM instead.
2243 if (status == -EACCES)
2249 * get the file handle for the "/" directory on the server
2251 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
2252 struct nfs_fsinfo *info)
2254 int status = nfs4_lookup_root(server, fhandle, info);
2255 if ((status == -NFS4ERR_WRONGSEC) && !(server->flags & NFS_MOUNT_SECFLAVOUR))
2257 * A status of -NFS4ERR_WRONGSEC will be mapped to -EPERM
2258 * by nfs4_map_errors() as this function exits.
2260 status = nfs4_find_root_sec(server, fhandle, info);
2262 status = nfs4_server_capabilities(server, fhandle);
2264 status = nfs4_do_fsinfo(server, fhandle, info);
2265 return nfs4_map_errors(status);
2269 * Get locations and (maybe) other attributes of a referral.
2270 * Note that we'll actually follow the referral later when
2271 * we detect fsid mismatch in inode revalidation
2273 static int nfs4_get_referral(struct inode *dir, const struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
2275 int status = -ENOMEM;
2276 struct page *page = NULL;
2277 struct nfs4_fs_locations *locations = NULL;
2279 page = alloc_page(GFP_KERNEL);
2282 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2283 if (locations == NULL)
2286 status = nfs4_proc_fs_locations(dir, name, locations, page);
2289 /* Make sure server returned a different fsid for the referral */
2290 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
2291 dprintk("%s: server did not return a different fsid for a referral at %s\n", __func__, name->name);
2296 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2297 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2299 fattr->mode = S_IFDIR;
2300 memset(fhandle, 0, sizeof(struct nfs_fh));
2308 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2310 struct nfs4_getattr_arg args = {
2312 .bitmask = server->attr_bitmask,
2314 struct nfs4_getattr_res res = {
2318 struct rpc_message msg = {
2319 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2324 nfs_fattr_init(fattr);
2325 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
2328 static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2330 struct nfs4_exception exception = { };
2333 err = nfs4_handle_exception(server,
2334 _nfs4_proc_getattr(server, fhandle, fattr),
2336 } while (exception.retry);
2341 * The file is not closed if it is opened due to the a request to change
2342 * the size of the file. The open call will not be needed once the
2343 * VFS layer lookup-intents are implemented.
2345 * Close is called when the inode is destroyed.
2346 * If we haven't opened the file for O_WRONLY, we
2347 * need to in the size_change case to obtain a stateid.
2350 * Because OPEN is always done by name in nfsv4, it is
2351 * possible that we opened a different file by the same
2352 * name. We can recognize this race condition, but we
2353 * can't do anything about it besides returning an error.
2355 * This will be fixed with VFS changes (lookup-intent).
2358 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2359 struct iattr *sattr)
2361 struct inode *inode = dentry->d_inode;
2362 struct rpc_cred *cred = NULL;
2363 struct nfs4_state *state = NULL;
2366 nfs_fattr_init(fattr);
2368 /* Search for an existing open(O_WRITE) file */
2369 if (sattr->ia_valid & ATTR_FILE) {
2370 struct nfs_open_context *ctx;
2372 ctx = nfs_file_open_context(sattr->ia_file);
2379 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
2381 nfs_setattr_update_inode(inode, sattr);
2385 static int _nfs4_proc_lookupfh(struct rpc_clnt *clnt, struct nfs_server *server,
2386 const struct nfs_fh *dirfh, const struct qstr *name,
2387 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2390 struct nfs4_lookup_arg args = {
2391 .bitmask = server->attr_bitmask,
2395 struct nfs4_lookup_res res = {
2400 struct rpc_message msg = {
2401 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2406 nfs_fattr_init(fattr);
2408 dprintk("NFS call lookupfh %s\n", name->name);
2409 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0);
2410 dprintk("NFS reply lookupfh: %d\n", status);
2414 static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2415 struct qstr *name, struct nfs_fh *fhandle,
2416 struct nfs_fattr *fattr)
2418 struct nfs4_exception exception = { };
2421 err = _nfs4_proc_lookupfh(server->client, server, dirfh, name, fhandle, fattr);
2423 if (err == -NFS4ERR_MOVED) {
2427 err = nfs4_handle_exception(server, err, &exception);
2428 } while (exception.retry);
2432 static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
2433 const struct qstr *name, struct nfs_fh *fhandle,
2434 struct nfs_fattr *fattr)
2438 dprintk("NFS call lookup %s\n", name->name);
2439 status = _nfs4_proc_lookupfh(clnt, NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
2440 if (status == -NFS4ERR_MOVED)
2441 status = nfs4_get_referral(dir, name, fattr, fhandle);
2442 dprintk("NFS reply lookup: %d\n", status);
2446 void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr, struct nfs_fh *fh)
2448 memset(fh, 0, sizeof(struct nfs_fh));
2449 fattr->fsid.major = 1;
2450 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
2451 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_FSID | NFS_ATTR_FATTR_MOUNTPOINT;
2452 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
2456 static int nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir, struct qstr *name,
2457 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2459 struct nfs4_exception exception = { };
2462 err = nfs4_handle_exception(NFS_SERVER(dir),
2463 _nfs4_proc_lookup(clnt, dir, name, fhandle, fattr),
2466 nfs_fixup_secinfo_attributes(fattr, fhandle);
2467 } while (exception.retry);
2471 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2473 struct nfs_server *server = NFS_SERVER(inode);
2474 struct nfs4_accessargs args = {
2475 .fh = NFS_FH(inode),
2476 .bitmask = server->attr_bitmask,
2478 struct nfs4_accessres res = {
2481 struct rpc_message msg = {
2482 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2485 .rpc_cred = entry->cred,
2487 int mode = entry->mask;
2491 * Determine which access bits we want to ask for...
2493 if (mode & MAY_READ)
2494 args.access |= NFS4_ACCESS_READ;
2495 if (S_ISDIR(inode->i_mode)) {
2496 if (mode & MAY_WRITE)
2497 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2498 if (mode & MAY_EXEC)
2499 args.access |= NFS4_ACCESS_LOOKUP;
2501 if (mode & MAY_WRITE)
2502 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2503 if (mode & MAY_EXEC)
2504 args.access |= NFS4_ACCESS_EXECUTE;
2507 res.fattr = nfs_alloc_fattr();
2508 if (res.fattr == NULL)
2511 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
2514 if (res.access & NFS4_ACCESS_READ)
2515 entry->mask |= MAY_READ;
2516 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2517 entry->mask |= MAY_WRITE;
2518 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2519 entry->mask |= MAY_EXEC;
2520 nfs_refresh_inode(inode, res.fattr);
2522 nfs_free_fattr(res.fattr);
2526 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2528 struct nfs4_exception exception = { };
2531 err = nfs4_handle_exception(NFS_SERVER(inode),
2532 _nfs4_proc_access(inode, entry),
2534 } while (exception.retry);
2539 * TODO: For the time being, we don't try to get any attributes
2540 * along with any of the zero-copy operations READ, READDIR,
2543 * In the case of the first three, we want to put the GETATTR
2544 * after the read-type operation -- this is because it is hard
2545 * to predict the length of a GETATTR response in v4, and thus
2546 * align the READ data correctly. This means that the GETATTR
2547 * may end up partially falling into the page cache, and we should
2548 * shift it into the 'tail' of the xdr_buf before processing.
2549 * To do this efficiently, we need to know the total length
2550 * of data received, which doesn't seem to be available outside
2553 * In the case of WRITE, we also want to put the GETATTR after
2554 * the operation -- in this case because we want to make sure
2555 * we get the post-operation mtime and size. This means that
2556 * we can't use xdr_encode_pages() as written: we need a variant
2557 * of it which would leave room in the 'tail' iovec.
2559 * Both of these changes to the XDR layer would in fact be quite
2560 * minor, but I decided to leave them for a subsequent patch.
2562 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2563 unsigned int pgbase, unsigned int pglen)
2565 struct nfs4_readlink args = {
2566 .fh = NFS_FH(inode),
2571 struct nfs4_readlink_res res;
2572 struct rpc_message msg = {
2573 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2578 return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0);
2581 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2582 unsigned int pgbase, unsigned int pglen)
2584 struct nfs4_exception exception = { };
2587 err = nfs4_handle_exception(NFS_SERVER(inode),
2588 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2590 } while (exception.retry);
2596 * We will need to arrange for the VFS layer to provide an atomic open.
2597 * Until then, this create/open method is prone to inefficiency and race
2598 * conditions due to the lookup, create, and open VFS calls from sys_open()
2599 * placed on the wire.
2601 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2602 * The file will be opened again in the subsequent VFS open call
2603 * (nfs4_proc_file_open).
2605 * The open for read will just hang around to be used by any process that
2606 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2610 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
2611 int flags, struct nfs_open_context *ctx)
2613 struct path my_path = {
2616 struct path *path = &my_path;
2617 struct nfs4_state *state;
2618 struct rpc_cred *cred = NULL;
2627 sattr->ia_mode &= ~current_umask();
2628 state = nfs4_do_open(dir, path, fmode, flags, sattr, cred);
2630 if (IS_ERR(state)) {
2631 status = PTR_ERR(state);
2634 d_add(dentry, igrab(state->inode));
2635 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
2639 nfs4_close_sync(path, state, fmode);
2644 static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2646 struct nfs_server *server = NFS_SERVER(dir);
2647 struct nfs_removeargs args = {
2649 .name.len = name->len,
2650 .name.name = name->name,
2651 .bitmask = server->attr_bitmask,
2653 struct nfs_removeres res = {
2656 struct rpc_message msg = {
2657 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2661 int status = -ENOMEM;
2663 res.dir_attr = nfs_alloc_fattr();
2664 if (res.dir_attr == NULL)
2667 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
2669 update_changeattr(dir, &res.cinfo);
2670 nfs_post_op_update_inode(dir, res.dir_attr);
2672 nfs_free_fattr(res.dir_attr);
2677 static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2679 struct nfs4_exception exception = { };
2682 err = nfs4_handle_exception(NFS_SERVER(dir),
2683 _nfs4_proc_remove(dir, name),
2685 } while (exception.retry);
2689 static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
2691 struct nfs_server *server = NFS_SERVER(dir);
2692 struct nfs_removeargs *args = msg->rpc_argp;
2693 struct nfs_removeres *res = msg->rpc_resp;
2695 args->bitmask = server->cache_consistency_bitmask;
2696 res->server = server;
2697 res->seq_res.sr_slot = NULL;
2698 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
2701 static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
2703 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2705 if (!nfs4_sequence_done(task, &res->seq_res))
2707 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
2709 update_changeattr(dir, &res->cinfo);
2710 nfs_post_op_update_inode(dir, res->dir_attr);
2714 static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
2716 struct nfs_server *server = NFS_SERVER(dir);
2717 struct nfs_renameargs *arg = msg->rpc_argp;
2718 struct nfs_renameres *res = msg->rpc_resp;
2720 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
2721 arg->bitmask = server->attr_bitmask;
2722 res->server = server;
2725 static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
2726 struct inode *new_dir)
2728 struct nfs_renameres *res = task->tk_msg.rpc_resp;
2730 if (!nfs4_sequence_done(task, &res->seq_res))
2732 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
2735 update_changeattr(old_dir, &res->old_cinfo);
2736 nfs_post_op_update_inode(old_dir, res->old_fattr);
2737 update_changeattr(new_dir, &res->new_cinfo);
2738 nfs_post_op_update_inode(new_dir, res->new_fattr);
2742 static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2743 struct inode *new_dir, struct qstr *new_name)
2745 struct nfs_server *server = NFS_SERVER(old_dir);
2746 struct nfs_renameargs arg = {
2747 .old_dir = NFS_FH(old_dir),
2748 .new_dir = NFS_FH(new_dir),
2749 .old_name = old_name,
2750 .new_name = new_name,
2751 .bitmask = server->attr_bitmask,
2753 struct nfs_renameres res = {
2756 struct rpc_message msg = {
2757 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2761 int status = -ENOMEM;
2763 res.old_fattr = nfs_alloc_fattr();
2764 res.new_fattr = nfs_alloc_fattr();
2765 if (res.old_fattr == NULL || res.new_fattr == NULL)
2768 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
2770 update_changeattr(old_dir, &res.old_cinfo);
2771 nfs_post_op_update_inode(old_dir, res.old_fattr);
2772 update_changeattr(new_dir, &res.new_cinfo);
2773 nfs_post_op_update_inode(new_dir, res.new_fattr);
2776 nfs_free_fattr(res.new_fattr);
2777 nfs_free_fattr(res.old_fattr);
2781 static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2782 struct inode *new_dir, struct qstr *new_name)
2784 struct nfs4_exception exception = { };
2787 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2788 _nfs4_proc_rename(old_dir, old_name,
2791 } while (exception.retry);
2795 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2797 struct nfs_server *server = NFS_SERVER(inode);
2798 struct nfs4_link_arg arg = {
2799 .fh = NFS_FH(inode),
2800 .dir_fh = NFS_FH(dir),
2802 .bitmask = server->attr_bitmask,
2804 struct nfs4_link_res res = {
2807 struct rpc_message msg = {
2808 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2812 int status = -ENOMEM;
2814 res.fattr = nfs_alloc_fattr();
2815 res.dir_attr = nfs_alloc_fattr();
2816 if (res.fattr == NULL || res.dir_attr == NULL)
2819 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
2821 update_changeattr(dir, &res.cinfo);
2822 nfs_post_op_update_inode(dir, res.dir_attr);
2823 nfs_post_op_update_inode(inode, res.fattr);
2826 nfs_free_fattr(res.dir_attr);
2827 nfs_free_fattr(res.fattr);
2831 static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2833 struct nfs4_exception exception = { };
2836 err = nfs4_handle_exception(NFS_SERVER(inode),
2837 _nfs4_proc_link(inode, dir, name),
2839 } while (exception.retry);
2843 struct nfs4_createdata {
2844 struct rpc_message msg;
2845 struct nfs4_create_arg arg;
2846 struct nfs4_create_res res;
2848 struct nfs_fattr fattr;
2849 struct nfs_fattr dir_fattr;
2852 static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2853 struct qstr *name, struct iattr *sattr, u32 ftype)
2855 struct nfs4_createdata *data;
2857 data = kzalloc(sizeof(*data), GFP_KERNEL);
2859 struct nfs_server *server = NFS_SERVER(dir);
2861 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2862 data->msg.rpc_argp = &data->arg;
2863 data->msg.rpc_resp = &data->res;
2864 data->arg.dir_fh = NFS_FH(dir);
2865 data->arg.server = server;
2866 data->arg.name = name;
2867 data->arg.attrs = sattr;
2868 data->arg.ftype = ftype;
2869 data->arg.bitmask = server->attr_bitmask;
2870 data->res.server = server;
2871 data->res.fh = &data->fh;
2872 data->res.fattr = &data->fattr;
2873 data->res.dir_fattr = &data->dir_fattr;
2874 nfs_fattr_init(data->res.fattr);
2875 nfs_fattr_init(data->res.dir_fattr);
2880 static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2882 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
2883 &data->arg.seq_args, &data->res.seq_res, 1);
2885 update_changeattr(dir, &data->res.dir_cinfo);
2886 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2887 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2892 static void nfs4_free_createdata(struct nfs4_createdata *data)
2897 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2898 struct page *page, unsigned int len, struct iattr *sattr)
2900 struct nfs4_createdata *data;
2901 int status = -ENAMETOOLONG;
2903 if (len > NFS4_MAXPATHLEN)
2907 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2911 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2912 data->arg.u.symlink.pages = &page;
2913 data->arg.u.symlink.len = len;
2915 status = nfs4_do_create(dir, dentry, data);
2917 nfs4_free_createdata(data);
2922 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
2923 struct page *page, unsigned int len, struct iattr *sattr)
2925 struct nfs4_exception exception = { };
2928 err = nfs4_handle_exception(NFS_SERVER(dir),
2929 _nfs4_proc_symlink(dir, dentry, page,
2932 } while (exception.retry);
2936 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2937 struct iattr *sattr)
2939 struct nfs4_createdata *data;
2940 int status = -ENOMEM;
2942 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2946 status = nfs4_do_create(dir, dentry, data);
2948 nfs4_free_createdata(data);
2953 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2954 struct iattr *sattr)
2956 struct nfs4_exception exception = { };
2959 sattr->ia_mode &= ~current_umask();
2961 err = nfs4_handle_exception(NFS_SERVER(dir),
2962 _nfs4_proc_mkdir(dir, dentry, sattr),
2964 } while (exception.retry);
2968 static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2969 u64 cookie, struct page **pages, unsigned int count, int plus)
2971 struct inode *dir = dentry->d_inode;
2972 struct nfs4_readdir_arg args = {
2977 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2980 struct nfs4_readdir_res res;
2981 struct rpc_message msg = {
2982 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2989 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
2990 dentry->d_parent->d_name.name,
2991 dentry->d_name.name,
2992 (unsigned long long)cookie);
2993 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2994 res.pgbase = args.pgbase;
2995 status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0);
2997 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
2998 status += args.pgbase;
3001 nfs_invalidate_atime(dir);
3003 dprintk("%s: returns %d\n", __func__, status);
3007 static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
3008 u64 cookie, struct page **pages, unsigned int count, int plus)
3010 struct nfs4_exception exception = { };
3013 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
3014 _nfs4_proc_readdir(dentry, cred, cookie,
3015 pages, count, plus),
3017 } while (exception.retry);
3021 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
3022 struct iattr *sattr, dev_t rdev)
3024 struct nfs4_createdata *data;
3025 int mode = sattr->ia_mode;
3026 int status = -ENOMEM;
3028 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
3029 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
3031 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
3036 data->arg.ftype = NF4FIFO;
3037 else if (S_ISBLK(mode)) {
3038 data->arg.ftype = NF4BLK;
3039 data->arg.u.device.specdata1 = MAJOR(rdev);
3040 data->arg.u.device.specdata2 = MINOR(rdev);
3042 else if (S_ISCHR(mode)) {
3043 data->arg.ftype = NF4CHR;
3044 data->arg.u.device.specdata1 = MAJOR(rdev);
3045 data->arg.u.device.specdata2 = MINOR(rdev);
3048 status = nfs4_do_create(dir, dentry, data);
3050 nfs4_free_createdata(data);
3055 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
3056 struct iattr *sattr, dev_t rdev)
3058 struct nfs4_exception exception = { };
3061 sattr->ia_mode &= ~current_umask();
3063 err = nfs4_handle_exception(NFS_SERVER(dir),
3064 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
3066 } while (exception.retry);
3070 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
3071 struct nfs_fsstat *fsstat)
3073 struct nfs4_statfs_arg args = {
3075 .bitmask = server->attr_bitmask,
3077 struct nfs4_statfs_res res = {
3080 struct rpc_message msg = {
3081 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
3086 nfs_fattr_init(fsstat->fattr);
3087 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3090 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
3092 struct nfs4_exception exception = { };
3095 err = nfs4_handle_exception(server,
3096 _nfs4_proc_statfs(server, fhandle, fsstat),
3098 } while (exception.retry);
3102 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
3103 struct nfs_fsinfo *fsinfo)
3105 struct nfs4_fsinfo_arg args = {
3107 .bitmask = server->attr_bitmask,
3109 struct nfs4_fsinfo_res res = {
3112 struct rpc_message msg = {
3113 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
3118 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3121 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
3123 struct nfs4_exception exception = { };
3127 err = nfs4_handle_exception(server,
3128 _nfs4_do_fsinfo(server, fhandle, fsinfo),
3130 } while (exception.retry);
3134 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
3136 nfs_fattr_init(fsinfo->fattr);
3137 return nfs4_do_fsinfo(server, fhandle, fsinfo);
3140 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3141 struct nfs_pathconf *pathconf)
3143 struct nfs4_pathconf_arg args = {
3145 .bitmask = server->attr_bitmask,
3147 struct nfs4_pathconf_res res = {
3148 .pathconf = pathconf,
3150 struct rpc_message msg = {
3151 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
3156 /* None of the pathconf attributes are mandatory to implement */
3157 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
3158 memset(pathconf, 0, sizeof(*pathconf));
3162 nfs_fattr_init(pathconf->fattr);
3163 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3166 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3167 struct nfs_pathconf *pathconf)
3169 struct nfs4_exception exception = { };
3173 err = nfs4_handle_exception(server,
3174 _nfs4_proc_pathconf(server, fhandle, pathconf),
3176 } while (exception.retry);
3180 static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_read_data *data)
3182 struct nfs_server *server = NFS_SERVER(data->inode);
3184 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
3185 nfs_restart_rpc(task, server->nfs_client);
3189 nfs_invalidate_atime(data->inode);
3190 if (task->tk_status > 0)
3191 renew_lease(server, data->timestamp);
3195 static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
3198 dprintk("--> %s\n", __func__);
3200 if (!nfs4_sequence_done(task, &data->res.seq_res))
3203 return data->read_done_cb(task, data);
3206 static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
3208 data->timestamp = jiffies;
3209 data->read_done_cb = nfs4_read_done_cb;
3210 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
3213 /* Reset the the nfs_read_data to send the read to the MDS. */
3214 void nfs4_reset_read(struct rpc_task *task, struct nfs_read_data *data)
3216 dprintk("%s Reset task for i/o through\n", __func__);
3217 put_lseg(data->lseg);
3219 /* offsets will differ in the dense stripe case */
3220 data->args.offset = data->mds_offset;
3221 data->ds_clp = NULL;
3222 data->args.fh = NFS_FH(data->inode);
3223 data->read_done_cb = nfs4_read_done_cb;
3224 task->tk_ops = data->mds_ops;
3225 rpc_task_reset_client(task, NFS_CLIENT(data->inode));
3227 EXPORT_SYMBOL_GPL(nfs4_reset_read);
3229 static int nfs4_write_done_cb(struct rpc_task *task, struct nfs_write_data *data)
3231 struct inode *inode = data->inode;
3233 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
3234 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
3237 if (task->tk_status >= 0) {
3238 renew_lease(NFS_SERVER(inode), data->timestamp);
3239 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
3244 static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
3246 if (!nfs4_sequence_done(task, &data->res.seq_res))
3248 return data->write_done_cb(task, data);
3251 /* Reset the the nfs_write_data to send the write to the MDS. */
3252 void nfs4_reset_write(struct rpc_task *task, struct nfs_write_data *data)
3254 dprintk("%s Reset task for i/o through\n", __func__);
3255 put_lseg(data->lseg);
3257 data->ds_clp = NULL;
3258 data->write_done_cb = nfs4_write_done_cb;
3259 data->args.fh = NFS_FH(data->inode);
3260 data->args.bitmask = data->res.server->cache_consistency_bitmask;
3261 data->args.offset = data->mds_offset;
3262 data->res.fattr = &data->fattr;
3263 task->tk_ops = data->mds_ops;
3264 rpc_task_reset_client(task, NFS_CLIENT(data->inode));
3266 EXPORT_SYMBOL_GPL(nfs4_reset_write);
3268 static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
3270 struct nfs_server *server = NFS_SERVER(data->inode);
3273 data->args.bitmask = NULL;
3274 data->res.fattr = NULL;
3276 data->args.bitmask = server->cache_consistency_bitmask;
3277 if (!data->write_done_cb)
3278 data->write_done_cb = nfs4_write_done_cb;
3279 data->res.server = server;
3280 data->timestamp = jiffies;
3282 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
3285 static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_write_data *data)
3287 struct inode *inode = data->inode;
3289 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
3290 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
3293 nfs_refresh_inode(inode, data->res.fattr);
3297 static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
3299 if (!nfs4_sequence_done(task, &data->res.seq_res))
3301 return data->write_done_cb(task, data);
3304 static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
3306 struct nfs_server *server = NFS_SERVER(data->inode);
3309 data->args.bitmask = NULL;
3310 data->res.fattr = NULL;
3312 data->args.bitmask = server->cache_consistency_bitmask;
3313 if (!data->write_done_cb)
3314 data->write_done_cb = nfs4_commit_done_cb;
3315 data->res.server = server;
3316 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
3319 struct nfs4_renewdata {
3320 struct nfs_client *client;
3321 unsigned long timestamp;
3325 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3326 * standalone procedure for queueing an asynchronous RENEW.
3328 static void nfs4_renew_release(void *calldata)
3330 struct nfs4_renewdata *data = calldata;
3331 struct nfs_client *clp = data->client;
3333 if (atomic_read(&clp->cl_count) > 1)
3334 nfs4_schedule_state_renewal(clp);
3335 nfs_put_client(clp);
3339 static void nfs4_renew_done(struct rpc_task *task, void *calldata)
3341 struct nfs4_renewdata *data = calldata;
3342 struct nfs_client *clp = data->client;
3343 unsigned long timestamp = data->timestamp;
3345 if (task->tk_status < 0) {
3346 /* Unless we're shutting down, schedule state recovery! */
3347 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
3348 nfs4_schedule_lease_recovery(clp);
3351 do_renew_lease(clp, timestamp);
3354 static const struct rpc_call_ops nfs4_renew_ops = {
3355 .rpc_call_done = nfs4_renew_done,
3356 .rpc_release = nfs4_renew_release,
3359 int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
3361 struct rpc_message msg = {
3362 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3366 struct nfs4_renewdata *data;
3368 if (!atomic_inc_not_zero(&clp->cl_count))
3370 data = kmalloc(sizeof(*data), GFP_KERNEL);
3374 data->timestamp = jiffies;
3375 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
3376 &nfs4_renew_ops, data);
3379 int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
3381 struct rpc_message msg = {
3382 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3386 unsigned long now = jiffies;
3389 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3392 do_renew_lease(clp, now);
3396 static inline int nfs4_server_supports_acls(struct nfs_server *server)
3398 return (server->caps & NFS_CAP_ACLS)
3399 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3400 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3403 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3404 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3407 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3409 static void buf_to_pages(const void *buf, size_t buflen,
3410 struct page **pages, unsigned int *pgbase)
3412 const void *p = buf;
3414 *pgbase = offset_in_page(buf);
3416 while (p < buf + buflen) {
3417 *(pages++) = virt_to_page(p);
3418 p += PAGE_CACHE_SIZE;
3422 static int buf_to_pages_noslab(const void *buf, size_t buflen,
3423 struct page **pages, unsigned int *pgbase)
3425 struct page *newpage, **spages;
3431 len = min_t(size_t, PAGE_CACHE_SIZE, buflen);
3432 newpage = alloc_page(GFP_KERNEL);
3434 if (newpage == NULL)
3436 memcpy(page_address(newpage), buf, len);
3441 } while (buflen != 0);
3447 __free_page(spages[rc-1]);
3451 struct nfs4_cached_acl {
3457 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
3459 struct nfs_inode *nfsi = NFS_I(inode);
3461 spin_lock(&inode->i_lock);
3462 kfree(nfsi->nfs4_acl);
3463 nfsi->nfs4_acl = acl;
3464 spin_unlock(&inode->i_lock);
3467 static void nfs4_zap_acl_attr(struct inode *inode)
3469 nfs4_set_cached_acl(inode, NULL);
3472 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3474 struct nfs_inode *nfsi = NFS_I(inode);
3475 struct nfs4_cached_acl *acl;
3478 spin_lock(&inode->i_lock);
3479 acl = nfsi->nfs4_acl;
3482 if (buf == NULL) /* user is just asking for length */
3484 if (acl->cached == 0)
3486 ret = -ERANGE; /* see getxattr(2) man page */
3487 if (acl->len > buflen)
3489 memcpy(buf, acl->data, acl->len);
3493 spin_unlock(&inode->i_lock);
3497 static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3499 struct nfs4_cached_acl *acl;
3501 if (buf && acl_len <= PAGE_SIZE) {
3502 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3506 memcpy(acl->data, buf, acl_len);
3508 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3515 nfs4_set_cached_acl(inode, acl);
3518 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3520 struct page *pages[NFS4ACL_MAXPAGES];
3521 struct nfs_getaclargs args = {
3522 .fh = NFS_FH(inode),
3526 struct nfs_getaclres res = {
3530 struct rpc_message msg = {
3531 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3535 struct page *localpage = NULL;
3538 if (buflen < PAGE_SIZE) {
3539 /* As long as we're doing a round trip to the server anyway,
3540 * let's be prepared for a page of acl data. */
3541 localpage = alloc_page(GFP_KERNEL);
3542 resp_buf = page_address(localpage);
3543 if (localpage == NULL)
3545 args.acl_pages[0] = localpage;
3546 args.acl_pgbase = 0;
3547 args.acl_len = PAGE_SIZE;
3550 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3552 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0);
3555 if (res.acl_len > args.acl_len)
3556 nfs4_write_cached_acl(inode, NULL, res.acl_len);
3558 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
3561 if (res.acl_len > buflen)
3564 memcpy(buf, resp_buf, res.acl_len);
3569 __free_page(localpage);
3573 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3575 struct nfs4_exception exception = { };
3578 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3581 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3582 } while (exception.retry);
3586 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3588 struct nfs_server *server = NFS_SERVER(inode);
3591 if (!nfs4_server_supports_acls(server))
3593 ret = nfs_revalidate_inode(server, inode);
3596 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
3597 nfs_zap_acl_cache(inode);
3598 ret = nfs4_read_cached_acl(inode, buf, buflen);
3601 return nfs4_get_acl_uncached(inode, buf, buflen);
3604 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3606 struct nfs_server *server = NFS_SERVER(inode);
3607 struct page *pages[NFS4ACL_MAXPAGES];
3608 struct nfs_setaclargs arg = {
3609 .fh = NFS_FH(inode),
3613 struct nfs_setaclres res;
3614 struct rpc_message msg = {
3615 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3621 if (!nfs4_server_supports_acls(server))
3623 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
3626 nfs_inode_return_delegation(inode);
3627 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
3630 * Free each page after tx, so the only ref left is
3631 * held by the network stack
3634 put_page(pages[i-1]);
3637 * Acl update can result in inode attribute update.
3638 * so mark the attribute cache invalid.
3640 spin_lock(&inode->i_lock);
3641 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
3642 spin_unlock(&inode->i_lock);
3643 nfs_access_zap_cache(inode);
3644 nfs_zap_acl_cache(inode);
3648 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3650 struct nfs4_exception exception = { };
3653 err = nfs4_handle_exception(NFS_SERVER(inode),
3654 __nfs4_proc_set_acl(inode, buf, buflen),
3656 } while (exception.retry);
3661 nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
3663 struct nfs_client *clp = server->nfs_client;
3665 if (task->tk_status >= 0)
3667 switch(task->tk_status) {
3668 case -NFS4ERR_ADMIN_REVOKED:
3669 case -NFS4ERR_BAD_STATEID:
3670 case -NFS4ERR_OPENMODE:
3673 nfs4_schedule_stateid_recovery(server, state);
3674 goto wait_on_recovery;
3675 case -NFS4ERR_EXPIRED:
3677 nfs4_schedule_stateid_recovery(server, state);
3678 case -NFS4ERR_STALE_STATEID:
3679 case -NFS4ERR_STALE_CLIENTID:
3680 nfs4_schedule_lease_recovery(clp);
3681 goto wait_on_recovery;
3682 #if defined(CONFIG_NFS_V4_1)
3683 case -NFS4ERR_BADSESSION:
3684 case -NFS4ERR_BADSLOT:
3685 case -NFS4ERR_BAD_HIGH_SLOT:
3686 case -NFS4ERR_DEADSESSION:
3687 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3688 case -NFS4ERR_SEQ_FALSE_RETRY:
3689 case -NFS4ERR_SEQ_MISORDERED:
3690 dprintk("%s ERROR %d, Reset session\n", __func__,
3692 nfs4_schedule_session_recovery(clp->cl_session);
3693 task->tk_status = 0;
3695 #endif /* CONFIG_NFS_V4_1 */
3696 case -NFS4ERR_DELAY:
3697 nfs_inc_server_stats(server, NFSIOS_DELAY);
3698 case -NFS4ERR_GRACE:
3700 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3701 task->tk_status = 0;
3703 case -NFS4ERR_RETRY_UNCACHED_REP:
3704 case -NFS4ERR_OLD_STATEID:
3705 task->tk_status = 0;
3708 task->tk_status = nfs4_map_errors(task->tk_status);
3711 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
3712 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
3713 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
3714 task->tk_status = 0;
3718 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
3719 unsigned short port, struct rpc_cred *cred,
3720 struct nfs4_setclientid_res *res)
3722 nfs4_verifier sc_verifier;
3723 struct nfs4_setclientid setclientid = {
3724 .sc_verifier = &sc_verifier,
3726 .sc_cb_ident = clp->cl_cb_ident,
3728 struct rpc_message msg = {
3729 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3730 .rpc_argp = &setclientid,
3738 p = (__be32*)sc_verifier.data;
3739 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3740 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3743 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
3744 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
3746 rpc_peeraddr2str(clp->cl_rpcclient,
3748 rpc_peeraddr2str(clp->cl_rpcclient,
3750 clp->cl_rpcclient->cl_auth->au_ops->au_name,
3751 clp->cl_id_uniquifier);
3752 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
3753 sizeof(setclientid.sc_netid),
3754 rpc_peeraddr2str(clp->cl_rpcclient,
3755 RPC_DISPLAY_NETID));
3756 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
3757 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
3758 clp->cl_ipaddr, port >> 8, port & 255);
3760 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
3761 if (status != -NFS4ERR_CLID_INUSE)
3764 ++clp->cl_id_uniquifier;
3768 ssleep(clp->cl_lease_time / HZ + 1);
3773 int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
3774 struct nfs4_setclientid_res *arg,
3775 struct rpc_cred *cred)
3777 struct nfs_fsinfo fsinfo;
3778 struct rpc_message msg = {
3779 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
3781 .rpc_resp = &fsinfo,
3788 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
3790 spin_lock(&clp->cl_lock);
3791 clp->cl_lease_time = fsinfo.lease_time * HZ;
3792 clp->cl_last_renewal = now;
3793 spin_unlock(&clp->cl_lock);
3798 struct nfs4_delegreturndata {
3799 struct nfs4_delegreturnargs args;
3800 struct nfs4_delegreturnres res;
3802 nfs4_stateid stateid;
3803 unsigned long timestamp;
3804 struct nfs_fattr fattr;
3808 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3810 struct nfs4_delegreturndata *data = calldata;
3812 if (!nfs4_sequence_done(task, &data->res.seq_res))
3815 switch (task->tk_status) {
3816 case -NFS4ERR_STALE_STATEID:
3817 case -NFS4ERR_EXPIRED:
3819 renew_lease(data->res.server, data->timestamp);
3822 if (nfs4_async_handle_error(task, data->res.server, NULL) ==
3824 nfs_restart_rpc(task, data->res.server->nfs_client);
3828 data->rpc_status = task->tk_status;
3831 static void nfs4_delegreturn_release(void *calldata)
3836 #if defined(CONFIG_NFS_V4_1)
3837 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3839 struct nfs4_delegreturndata *d_data;
3841 d_data = (struct nfs4_delegreturndata *)data;
3843 if (nfs4_setup_sequence(d_data->res.server,
3844 &d_data->args.seq_args,
3845 &d_data->res.seq_res, 1, task))
3847 rpc_call_start(task);
3849 #endif /* CONFIG_NFS_V4_1 */
3851 static const struct rpc_call_ops nfs4_delegreturn_ops = {
3852 #if defined(CONFIG_NFS_V4_1)
3853 .rpc_call_prepare = nfs4_delegreturn_prepare,
3854 #endif /* CONFIG_NFS_V4_1 */
3855 .rpc_call_done = nfs4_delegreturn_done,
3856 .rpc_release = nfs4_delegreturn_release,
3859 static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
3861 struct nfs4_delegreturndata *data;
3862 struct nfs_server *server = NFS_SERVER(inode);
3863 struct rpc_task *task;
3864 struct rpc_message msg = {
3865 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3868 struct rpc_task_setup task_setup_data = {
3869 .rpc_client = server->client,
3870 .rpc_message = &msg,
3871 .callback_ops = &nfs4_delegreturn_ops,
3872 .flags = RPC_TASK_ASYNC,
3876 data = kzalloc(sizeof(*data), GFP_NOFS);
3879 data->args.fhandle = &data->fh;
3880 data->args.stateid = &data->stateid;
3881 data->args.bitmask = server->attr_bitmask;
3882 nfs_copy_fh(&data->fh, NFS_FH(inode));
3883 memcpy(&data->stateid, stateid, sizeof(data->stateid));
3884 data->res.fattr = &data->fattr;
3885 data->res.server = server;
3886 nfs_fattr_init(data->res.fattr);
3887 data->timestamp = jiffies;
3888 data->rpc_status = 0;
3890 task_setup_data.callback_data = data;
3891 msg.rpc_argp = &data->args;
3892 msg.rpc_resp = &data->res;
3893 task = rpc_run_task(&task_setup_data);
3895 return PTR_ERR(task);
3898 status = nfs4_wait_for_completion_rpc_task(task);
3901 status = data->rpc_status;
3904 nfs_refresh_inode(inode, &data->fattr);
3910 int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
3912 struct nfs_server *server = NFS_SERVER(inode);
3913 struct nfs4_exception exception = { };
3916 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
3918 case -NFS4ERR_STALE_STATEID:
3919 case -NFS4ERR_EXPIRED:
3923 err = nfs4_handle_exception(server, err, &exception);
3924 } while (exception.retry);
3928 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3929 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3932 * sleep, with exponential backoff, and retry the LOCK operation.
3934 static unsigned long
3935 nfs4_set_lock_task_retry(unsigned long timeout)
3937 schedule_timeout_killable(timeout);
3939 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3940 return NFS4_LOCK_MAXTIMEOUT;
3944 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3946 struct inode *inode = state->inode;
3947 struct nfs_server *server = NFS_SERVER(inode);
3948 struct nfs_client *clp = server->nfs_client;
3949 struct nfs_lockt_args arg = {
3950 .fh = NFS_FH(inode),
3953 struct nfs_lockt_res res = {
3956 struct rpc_message msg = {
3957 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3960 .rpc_cred = state->owner->so_cred,
3962 struct nfs4_lock_state *lsp;
3965 arg.lock_owner.clientid = clp->cl_clientid;
3966 status = nfs4_set_lock_state(state, request);
3969 lsp = request->fl_u.nfs4_fl.owner;
3970 arg.lock_owner.id = lsp->ls_id.id;
3971 arg.lock_owner.s_dev = server->s_dev;
3972 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
3975 request->fl_type = F_UNLCK;
3977 case -NFS4ERR_DENIED:
3980 request->fl_ops->fl_release_private(request);
3985 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3987 struct nfs4_exception exception = { };
3991 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3992 _nfs4_proc_getlk(state, cmd, request),
3994 } while (exception.retry);
3998 static int do_vfs_lock(struct file *file, struct file_lock *fl)
4001 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
4003 res = posix_lock_file_wait(file, fl);
4006 res = flock_lock_file_wait(file, fl);
4014 struct nfs4_unlockdata {
4015 struct nfs_locku_args arg;
4016 struct nfs_locku_res res;
4017 struct nfs4_lock_state *lsp;
4018 struct nfs_open_context *ctx;
4019 struct file_lock fl;
4020 const struct nfs_server *server;
4021 unsigned long timestamp;
4024 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
4025 struct nfs_open_context *ctx,
4026 struct nfs4_lock_state *lsp,
4027 struct nfs_seqid *seqid)
4029 struct nfs4_unlockdata *p;
4030 struct inode *inode = lsp->ls_state->inode;
4032 p = kzalloc(sizeof(*p), GFP_NOFS);
4035 p->arg.fh = NFS_FH(inode);
4037 p->arg.seqid = seqid;
4038 p->res.seqid = seqid;
4039 p->arg.stateid = &lsp->ls_stateid;
4041 atomic_inc(&lsp->ls_count);
4042 /* Ensure we don't close file until we're done freeing locks! */
4043 p->ctx = get_nfs_open_context(ctx);
4044 memcpy(&p->fl, fl, sizeof(p->fl));
4045 p->server = NFS_SERVER(inode);
4049 static void nfs4_locku_release_calldata(void *data)
4051 struct nfs4_unlockdata *calldata = data;
4052 nfs_free_seqid(calldata->arg.seqid);
4053 nfs4_put_lock_state(calldata->lsp);
4054 put_nfs_open_context(calldata->ctx);
4058 static void nfs4_locku_done(struct rpc_task *task, void *data)
4060 struct nfs4_unlockdata *calldata = data;
4062 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
4064 switch (task->tk_status) {
4066 memcpy(calldata->lsp->ls_stateid.data,
4067 calldata->res.stateid.data,
4068 sizeof(calldata->lsp->ls_stateid.data));
4069 renew_lease(calldata->server, calldata->timestamp);
4071 case -NFS4ERR_BAD_STATEID:
4072 case -NFS4ERR_OLD_STATEID:
4073 case -NFS4ERR_STALE_STATEID:
4074 case -NFS4ERR_EXPIRED:
4077 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
4078 nfs_restart_rpc(task,
4079 calldata->server->nfs_client);
4083 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
4085 struct nfs4_unlockdata *calldata = data;
4087 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
4089 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
4090 /* Note: exit _without_ running nfs4_locku_done */
4091 task->tk_action = NULL;
4094 calldata->timestamp = jiffies;
4095 if (nfs4_setup_sequence(calldata->server,
4096 &calldata->arg.seq_args,
4097 &calldata->res.seq_res, 1, task))
4099 rpc_call_start(task);
4102 static const struct rpc_call_ops nfs4_locku_ops = {
4103 .rpc_call_prepare = nfs4_locku_prepare,
4104 .rpc_call_done = nfs4_locku_done,
4105 .rpc_release = nfs4_locku_release_calldata,
4108 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
4109 struct nfs_open_context *ctx,
4110 struct nfs4_lock_state *lsp,
4111 struct nfs_seqid *seqid)
4113 struct nfs4_unlockdata *data;
4114 struct rpc_message msg = {
4115 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
4116 .rpc_cred = ctx->cred,
4118 struct rpc_task_setup task_setup_data = {
4119 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
4120 .rpc_message = &msg,
4121 .callback_ops = &nfs4_locku_ops,
4122 .workqueue = nfsiod_workqueue,
4123 .flags = RPC_TASK_ASYNC,
4126 /* Ensure this is an unlock - when canceling a lock, the
4127 * canceled lock is passed in, and it won't be an unlock.
4129 fl->fl_type = F_UNLCK;
4131 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
4133 nfs_free_seqid(seqid);
4134 return ERR_PTR(-ENOMEM);
4137 msg.rpc_argp = &data->arg;
4138 msg.rpc_resp = &data->res;
4139 task_setup_data.callback_data = data;
4140 return rpc_run_task(&task_setup_data);
4143 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
4145 struct nfs_inode *nfsi = NFS_I(state->inode);
4146 struct nfs_seqid *seqid;
4147 struct nfs4_lock_state *lsp;
4148 struct rpc_task *task;
4150 unsigned char fl_flags = request->fl_flags;
4152 status = nfs4_set_lock_state(state, request);
4153 /* Unlock _before_ we do the RPC call */
4154 request->fl_flags |= FL_EXISTS;
4155 down_read(&nfsi->rwsem);
4156 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
4157 up_read(&nfsi->rwsem);
4160 up_read(&nfsi->rwsem);
4163 /* Is this a delegated lock? */
4164 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
4166 lsp = request->fl_u.nfs4_fl.owner;
4167 seqid = nfs_alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
4171 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
4172 status = PTR_ERR(task);
4175 status = nfs4_wait_for_completion_rpc_task(task);
4178 request->fl_flags = fl_flags;
4182 struct nfs4_lockdata {
4183 struct nfs_lock_args arg;
4184 struct nfs_lock_res res;
4185 struct nfs4_lock_state *lsp;
4186 struct nfs_open_context *ctx;
4187 struct file_lock fl;
4188 unsigned long timestamp;
4191 struct nfs_server *server;
4194 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
4195 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
4198 struct nfs4_lockdata *p;
4199 struct inode *inode = lsp->ls_state->inode;
4200 struct nfs_server *server = NFS_SERVER(inode);
4202 p = kzalloc(sizeof(*p), gfp_mask);
4206 p->arg.fh = NFS_FH(inode);
4208 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
4209 if (p->arg.open_seqid == NULL)
4211 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid, gfp_mask);
4212 if (p->arg.lock_seqid == NULL)
4213 goto out_free_seqid;
4214 p->arg.lock_stateid = &lsp->ls_stateid;
4215 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
4216 p->arg.lock_owner.id = lsp->ls_id.id;
4217 p->arg.lock_owner.s_dev = server->s_dev;
4218 p->res.lock_seqid = p->arg.lock_seqid;
4221 atomic_inc(&lsp->ls_count);
4222 p->ctx = get_nfs_open_context(ctx);
4223 memcpy(&p->fl, fl, sizeof(p->fl));
4226 nfs_free_seqid(p->arg.open_seqid);
4232 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
4234 struct nfs4_lockdata *data = calldata;
4235 struct nfs4_state *state = data->lsp->ls_state;
4237 dprintk("%s: begin!\n", __func__);
4238 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
4240 /* Do we need to do an open_to_lock_owner? */
4241 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
4242 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
4244 data->arg.open_stateid = &state->stateid;
4245 data->arg.new_lock_owner = 1;
4246 data->res.open_seqid = data->arg.open_seqid;
4248 data->arg.new_lock_owner = 0;
4249 data->timestamp = jiffies;
4250 if (nfs4_setup_sequence(data->server,
4251 &data->arg.seq_args,
4252 &data->res.seq_res, 1, task))
4254 rpc_call_start(task);
4255 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
4258 static void nfs4_recover_lock_prepare(struct rpc_task *task, void *calldata)
4260 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
4261 nfs4_lock_prepare(task, calldata);
4264 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
4266 struct nfs4_lockdata *data = calldata;
4268 dprintk("%s: begin!\n", __func__);
4270 if (!nfs4_sequence_done(task, &data->res.seq_res))
4273 data->rpc_status = task->tk_status;
4274 if (data->arg.new_lock_owner != 0) {
4275 if (data->rpc_status == 0)
4276 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
4280 if (data->rpc_status == 0) {
4281 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
4282 sizeof(data->lsp->ls_stateid.data));
4283 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
4284 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
4287 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
4290 static void nfs4_lock_release(void *calldata)
4292 struct nfs4_lockdata *data = calldata;
4294 dprintk("%s: begin!\n", __func__);
4295 nfs_free_seqid(data->arg.open_seqid);
4296 if (data->cancelled != 0) {
4297 struct rpc_task *task;
4298 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
4299 data->arg.lock_seqid);
4301 rpc_put_task_async(task);
4302 dprintk("%s: cancelling lock!\n", __func__);
4304 nfs_free_seqid(data->arg.lock_seqid);
4305 nfs4_put_lock_state(data->lsp);
4306 put_nfs_open_context(data->ctx);
4308 dprintk("%s: done!\n", __func__);
4311 static const struct rpc_call_ops nfs4_lock_ops = {
4312 .rpc_call_prepare = nfs4_lock_prepare,
4313 .rpc_call_done = nfs4_lock_done,
4314 .rpc_release = nfs4_lock_release,
4317 static const struct rpc_call_ops nfs4_recover_lock_ops = {
4318 .rpc_call_prepare = nfs4_recover_lock_prepare,
4319 .rpc_call_done = nfs4_lock_done,
4320 .rpc_release = nfs4_lock_release,
4323 static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
4326 case -NFS4ERR_ADMIN_REVOKED:
4327 case -NFS4ERR_BAD_STATEID:
4328 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
4329 if (new_lock_owner != 0 ||
4330 (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
4331 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
4333 case -NFS4ERR_STALE_STATEID:
4334 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
4335 case -NFS4ERR_EXPIRED:
4336 nfs4_schedule_lease_recovery(server->nfs_client);
4340 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
4342 struct nfs4_lockdata *data;
4343 struct rpc_task *task;
4344 struct rpc_message msg = {
4345 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
4346 .rpc_cred = state->owner->so_cred,
4348 struct rpc_task_setup task_setup_data = {
4349 .rpc_client = NFS_CLIENT(state->inode),
4350 .rpc_message = &msg,
4351 .callback_ops = &nfs4_lock_ops,
4352 .workqueue = nfsiod_workqueue,
4353 .flags = RPC_TASK_ASYNC,
4357 dprintk("%s: begin!\n", __func__);
4358 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
4359 fl->fl_u.nfs4_fl.owner,
4360 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
4364 data->arg.block = 1;
4365 if (recovery_type > NFS_LOCK_NEW) {
4366 if (recovery_type == NFS_LOCK_RECLAIM)
4367 data->arg.reclaim = NFS_LOCK_RECLAIM;
4368 task_setup_data.callback_ops = &nfs4_recover_lock_ops;
4370 msg.rpc_argp = &data->arg;
4371 msg.rpc_resp = &data->res;
4372 task_setup_data.callback_data = data;
4373 task = rpc_run_task(&task_setup_data);
4375 return PTR_ERR(task);
4376 ret = nfs4_wait_for_completion_rpc_task(task);
4378 ret = data->rpc_status;
4380 nfs4_handle_setlk_error(data->server, data->lsp,
4381 data->arg.new_lock_owner, ret);
4383 data->cancelled = 1;
4385 dprintk("%s: done, ret = %d!\n", __func__, ret);
4389 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4391 struct nfs_server *server = NFS_SERVER(state->inode);
4392 struct nfs4_exception exception = { };
4396 /* Cache the lock if possible... */
4397 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4399 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
4400 if (err != -NFS4ERR_DELAY)
4402 nfs4_handle_exception(server, err, &exception);
4403 } while (exception.retry);
4407 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4409 struct nfs_server *server = NFS_SERVER(state->inode);
4410 struct nfs4_exception exception = { };
4413 err = nfs4_set_lock_state(state, request);
4417 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4419 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
4423 case -NFS4ERR_GRACE:
4424 case -NFS4ERR_DELAY:
4425 nfs4_handle_exception(server, err, &exception);
4428 } while (exception.retry);
4433 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4435 struct nfs_inode *nfsi = NFS_I(state->inode);
4436 unsigned char fl_flags = request->fl_flags;
4437 int status = -ENOLCK;
4439 if ((fl_flags & FL_POSIX) &&
4440 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
4442 /* Is this a delegated open? */
4443 status = nfs4_set_lock_state(state, request);
4446 request->fl_flags |= FL_ACCESS;
4447 status = do_vfs_lock(request->fl_file, request);
4450 down_read(&nfsi->rwsem);
4451 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
4452 /* Yes: cache locks! */
4453 /* ...but avoid races with delegation recall... */
4454 request->fl_flags = fl_flags & ~FL_SLEEP;
4455 status = do_vfs_lock(request->fl_file, request);
4458 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
4461 /* Note: we always want to sleep here! */
4462 request->fl_flags = fl_flags | FL_SLEEP;
4463 if (do_vfs_lock(request->fl_file, request) < 0)
4464 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
4466 up_read(&nfsi->rwsem);
4468 request->fl_flags = fl_flags;
4472 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4474 struct nfs4_exception exception = { };
4478 err = _nfs4_proc_setlk(state, cmd, request);
4479 if (err == -NFS4ERR_DENIED)
4481 err = nfs4_handle_exception(NFS_SERVER(state->inode),
4483 } while (exception.retry);
4488 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4490 struct nfs_open_context *ctx;
4491 struct nfs4_state *state;
4492 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4495 /* verify open state */
4496 ctx = nfs_file_open_context(filp);
4499 if (request->fl_start < 0 || request->fl_end < 0)
4502 if (IS_GETLK(cmd)) {
4504 return nfs4_proc_getlk(state, F_GETLK, request);
4508 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4511 if (request->fl_type == F_UNLCK) {
4513 return nfs4_proc_unlck(state, cmd, request);
4520 status = nfs4_proc_setlk(state, cmd, request);
4521 if ((status != -EAGAIN) || IS_SETLK(cmd))
4523 timeout = nfs4_set_lock_task_retry(timeout);
4524 status = -ERESTARTSYS;
4527 } while(status < 0);
4531 int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4533 struct nfs_server *server = NFS_SERVER(state->inode);
4534 struct nfs4_exception exception = { };
4537 err = nfs4_set_lock_state(state, fl);
4541 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
4544 printk(KERN_ERR "%s: unhandled error %d.\n",
4549 case -NFS4ERR_EXPIRED:
4550 nfs4_schedule_stateid_recovery(server, state);
4551 case -NFS4ERR_STALE_CLIENTID:
4552 case -NFS4ERR_STALE_STATEID:
4553 nfs4_schedule_lease_recovery(server->nfs_client);
4555 case -NFS4ERR_BADSESSION:
4556 case -NFS4ERR_BADSLOT:
4557 case -NFS4ERR_BAD_HIGH_SLOT:
4558 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
4559 case -NFS4ERR_DEADSESSION:
4560 nfs4_schedule_session_recovery(server->nfs_client->cl_session);
4564 * The show must go on: exit, but mark the
4565 * stateid as needing recovery.
4567 case -NFS4ERR_ADMIN_REVOKED:
4568 case -NFS4ERR_BAD_STATEID:
4569 case -NFS4ERR_OPENMODE:
4570 nfs4_schedule_stateid_recovery(server, state);
4575 * User RPCSEC_GSS context has expired.
4576 * We cannot recover this stateid now, so
4577 * skip it and allow recovery thread to
4583 case -NFS4ERR_DENIED:
4584 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4587 case -NFS4ERR_DELAY:
4590 err = nfs4_handle_exception(server, err, &exception);
4591 } while (exception.retry);
4596 static void nfs4_release_lockowner_release(void *calldata)
4601 const struct rpc_call_ops nfs4_release_lockowner_ops = {
4602 .rpc_release = nfs4_release_lockowner_release,
4605 void nfs4_release_lockowner(const struct nfs4_lock_state *lsp)
4607 struct nfs_server *server = lsp->ls_state->owner->so_server;
4608 struct nfs_release_lockowner_args *args;
4609 struct rpc_message msg = {
4610 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
4613 if (server->nfs_client->cl_mvops->minor_version != 0)
4615 args = kmalloc(sizeof(*args), GFP_NOFS);
4618 args->lock_owner.clientid = server->nfs_client->cl_clientid;
4619 args->lock_owner.id = lsp->ls_id.id;
4620 args->lock_owner.s_dev = server->s_dev;
4621 msg.rpc_argp = args;
4622 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, args);
4625 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4627 static int nfs4_xattr_set_nfs4_acl(struct dentry *dentry, const char *key,
4628 const void *buf, size_t buflen,
4629 int flags, int type)
4631 if (strcmp(key, "") != 0)
4634 return nfs4_proc_set_acl(dentry->d_inode, buf, buflen);
4637 static int nfs4_xattr_get_nfs4_acl(struct dentry *dentry, const char *key,
4638 void *buf, size_t buflen, int type)
4640 if (strcmp(key, "") != 0)
4643 return nfs4_proc_get_acl(dentry->d_inode, buf, buflen);
4646 static size_t nfs4_xattr_list_nfs4_acl(struct dentry *dentry, char *list,
4647 size_t list_len, const char *name,
4648 size_t name_len, int type)
4650 size_t len = sizeof(XATTR_NAME_NFSV4_ACL);
4652 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4655 if (list && len <= list_len)
4656 memcpy(list, XATTR_NAME_NFSV4_ACL, len);
4660 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4662 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4663 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4664 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4667 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4668 NFS_ATTR_FATTR_NLINK;
4669 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4673 int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
4674 struct nfs4_fs_locations *fs_locations, struct page *page)
4676 struct nfs_server *server = NFS_SERVER(dir);
4678 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4679 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
4681 struct nfs4_fs_locations_arg args = {
4682 .dir_fh = NFS_FH(dir),
4687 struct nfs4_fs_locations_res res = {
4688 .fs_locations = fs_locations,
4690 struct rpc_message msg = {
4691 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4697 dprintk("%s: start\n", __func__);
4698 nfs_fattr_init(&fs_locations->fattr);
4699 fs_locations->server = server;
4700 fs_locations->nlocations = 0;
4701 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4702 nfs_fixup_referral_attributes(&fs_locations->fattr);
4703 dprintk("%s: returned status = %d\n", __func__, status);
4707 static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors)
4710 struct nfs4_secinfo_arg args = {
4711 .dir_fh = NFS_FH(dir),
4714 struct nfs4_secinfo_res res = {
4717 struct rpc_message msg = {
4718 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
4723 dprintk("NFS call secinfo %s\n", name->name);
4724 status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0);
4725 dprintk("NFS reply secinfo: %d\n", status);
4729 int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors)
4731 struct nfs4_exception exception = { };
4734 err = nfs4_handle_exception(NFS_SERVER(dir),
4735 _nfs4_proc_secinfo(dir, name, flavors),
4737 } while (exception.retry);
4741 #ifdef CONFIG_NFS_V4_1
4743 * Check the exchange flags returned by the server for invalid flags, having
4744 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
4747 static int nfs4_check_cl_exchange_flags(u32 flags)
4749 if (flags & ~EXCHGID4_FLAG_MASK_R)
4751 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
4752 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
4754 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
4758 return -NFS4ERR_INVAL;
4762 * nfs4_proc_exchange_id()
4764 * Since the clientid has expired, all compounds using sessions
4765 * associated with the stale clientid will be returning
4766 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4767 * be in some phase of session reset.
4769 int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
4771 nfs4_verifier verifier;
4772 struct nfs41_exchange_id_args args = {
4774 .flags = EXCHGID4_FLAG_SUPP_MOVED_REFER,
4776 struct nfs41_exchange_id_res res = {
4780 struct rpc_message msg = {
4781 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4788 dprintk("--> %s\n", __func__);
4789 BUG_ON(clp == NULL);
4791 p = (u32 *)verifier.data;
4792 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4793 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4794 args.verifier = &verifier;
4796 args.id_len = scnprintf(args.id, sizeof(args.id),
4799 init_utsname()->nodename,
4800 init_utsname()->domainname,
4801 clp->cl_rpcclient->cl_auth->au_flavor);
4803 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
4805 status = nfs4_check_cl_exchange_flags(clp->cl_exchange_flags);
4806 dprintk("<-- %s status= %d\n", __func__, status);
4810 struct nfs4_get_lease_time_data {
4811 struct nfs4_get_lease_time_args *args;
4812 struct nfs4_get_lease_time_res *res;
4813 struct nfs_client *clp;
4816 static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4820 struct nfs4_get_lease_time_data *data =
4821 (struct nfs4_get_lease_time_data *)calldata;
4823 dprintk("--> %s\n", __func__);
4824 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
4825 /* just setup sequence, do not trigger session recovery
4826 since we're invoked within one */
4827 ret = nfs41_setup_sequence(data->clp->cl_session,
4828 &data->args->la_seq_args,
4829 &data->res->lr_seq_res, 0, task);
4831 BUG_ON(ret == -EAGAIN);
4832 rpc_call_start(task);
4833 dprintk("<-- %s\n", __func__);
4837 * Called from nfs4_state_manager thread for session setup, so don't recover
4838 * from sequence operation or clientid errors.
4840 static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4842 struct nfs4_get_lease_time_data *data =
4843 (struct nfs4_get_lease_time_data *)calldata;
4845 dprintk("--> %s\n", __func__);
4846 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
4848 switch (task->tk_status) {
4849 case -NFS4ERR_DELAY:
4850 case -NFS4ERR_GRACE:
4851 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4852 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4853 task->tk_status = 0;
4855 case -NFS4ERR_RETRY_UNCACHED_REP:
4856 nfs_restart_rpc(task, data->clp);
4859 dprintk("<-- %s\n", __func__);
4862 struct rpc_call_ops nfs4_get_lease_time_ops = {
4863 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4864 .rpc_call_done = nfs4_get_lease_time_done,
4867 int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4869 struct rpc_task *task;
4870 struct nfs4_get_lease_time_args args;
4871 struct nfs4_get_lease_time_res res = {
4872 .lr_fsinfo = fsinfo,
4874 struct nfs4_get_lease_time_data data = {
4879 struct rpc_message msg = {
4880 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4884 struct rpc_task_setup task_setup = {
4885 .rpc_client = clp->cl_rpcclient,
4886 .rpc_message = &msg,
4887 .callback_ops = &nfs4_get_lease_time_ops,
4888 .callback_data = &data,
4889 .flags = RPC_TASK_TIMEOUT,
4893 dprintk("--> %s\n", __func__);
4894 task = rpc_run_task(&task_setup);
4897 status = PTR_ERR(task);
4899 status = task->tk_status;
4902 dprintk("<-- %s return %d\n", __func__, status);
4908 * Reset a slot table
4910 static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, u32 max_reqs,
4913 struct nfs4_slot *new = NULL;
4917 dprintk("--> %s: max_reqs=%u, tbl->max_slots %d\n", __func__,
4918 max_reqs, tbl->max_slots);
4920 /* Does the newly negotiated max_reqs match the existing slot table? */
4921 if (max_reqs != tbl->max_slots) {
4923 new = kmalloc(max_reqs * sizeof(struct nfs4_slot),
4930 spin_lock(&tbl->slot_tbl_lock);
4933 tbl->max_slots = max_reqs;
4935 for (i = 0; i < tbl->max_slots; ++i)
4936 tbl->slots[i].seq_nr = ivalue;
4937 spin_unlock(&tbl->slot_tbl_lock);
4938 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4939 tbl, tbl->slots, tbl->max_slots);
4941 dprintk("<-- %s: return %d\n", __func__, ret);
4946 * Reset the forechannel and backchannel slot tables
4948 static int nfs4_reset_slot_tables(struct nfs4_session *session)
4952 status = nfs4_reset_slot_table(&session->fc_slot_table,
4953 session->fc_attrs.max_reqs, 1);
4957 status = nfs4_reset_slot_table(&session->bc_slot_table,
4958 session->bc_attrs.max_reqs, 0);
4962 /* Destroy the slot table */
4963 static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4965 if (session->fc_slot_table.slots != NULL) {
4966 kfree(session->fc_slot_table.slots);
4967 session->fc_slot_table.slots = NULL;
4969 if (session->bc_slot_table.slots != NULL) {
4970 kfree(session->bc_slot_table.slots);
4971 session->bc_slot_table.slots = NULL;
4977 * Initialize slot table
4979 static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4980 int max_slots, int ivalue)
4982 struct nfs4_slot *slot;
4985 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4987 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
4989 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_NOFS);
4994 spin_lock(&tbl->slot_tbl_lock);
4995 tbl->max_slots = max_slots;
4997 tbl->highest_used_slotid = -1; /* no slot is currently used */
4998 spin_unlock(&tbl->slot_tbl_lock);
4999 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
5000 tbl, tbl->slots, tbl->max_slots);
5002 dprintk("<-- %s: return %d\n", __func__, ret);
5007 * Initialize the forechannel and backchannel tables
5009 static int nfs4_init_slot_tables(struct nfs4_session *session)
5011 struct nfs4_slot_table *tbl;
5014 tbl = &session->fc_slot_table;
5015 if (tbl->slots == NULL) {
5016 status = nfs4_init_slot_table(tbl,
5017 session->fc_attrs.max_reqs, 1);
5022 tbl = &session->bc_slot_table;
5023 if (tbl->slots == NULL) {
5024 status = nfs4_init_slot_table(tbl,
5025 session->bc_attrs.max_reqs, 0);
5027 nfs4_destroy_slot_tables(session);
5033 struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
5035 struct nfs4_session *session;
5036 struct nfs4_slot_table *tbl;
5038 session = kzalloc(sizeof(struct nfs4_session), GFP_NOFS);
5042 tbl = &session->fc_slot_table;
5043 tbl->highest_used_slotid = -1;
5044 spin_lock_init(&tbl->slot_tbl_lock);
5045 rpc_init_priority_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
5046 init_completion(&tbl->complete);
5048 tbl = &session->bc_slot_table;
5049 tbl->highest_used_slotid = -1;
5050 spin_lock_init(&tbl->slot_tbl_lock);
5051 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
5052 init_completion(&tbl->complete);
5054 session->session_state = 1<<NFS4_SESSION_INITING;
5060 void nfs4_destroy_session(struct nfs4_session *session)
5062 nfs4_proc_destroy_session(session);
5063 dprintk("%s Destroy backchannel for xprt %p\n",
5064 __func__, session->clp->cl_rpcclient->cl_xprt);
5065 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
5066 NFS41_BC_MIN_CALLBACKS);
5067 nfs4_destroy_slot_tables(session);
5072 * Initialize the values to be used by the client in CREATE_SESSION
5073 * If nfs4_init_session set the fore channel request and response sizes,
5076 * Set the back channel max_resp_sz_cached to zero to force the client to
5077 * always set csa_cachethis to FALSE because the current implementation
5078 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
5080 static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
5082 struct nfs4_session *session = args->client->cl_session;
5083 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
5084 mxresp_sz = session->fc_attrs.max_resp_sz;
5087 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
5089 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
5090 /* Fore channel attributes */
5091 args->fc_attrs.headerpadsz = 0;
5092 args->fc_attrs.max_rqst_sz = mxrqst_sz;
5093 args->fc_attrs.max_resp_sz = mxresp_sz;
5094 args->fc_attrs.max_ops = NFS4_MAX_OPS;
5095 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
5097 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
5098 "max_ops=%u max_reqs=%u\n",
5100 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
5101 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
5103 /* Back channel attributes */
5104 args->bc_attrs.headerpadsz = 0;
5105 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
5106 args->bc_attrs.max_resp_sz = PAGE_SIZE;
5107 args->bc_attrs.max_resp_sz_cached = 0;
5108 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
5109 args->bc_attrs.max_reqs = 1;
5111 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
5112 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
5114 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
5115 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
5116 args->bc_attrs.max_reqs);
5119 static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
5121 struct nfs4_channel_attrs *sent = &args->fc_attrs;
5122 struct nfs4_channel_attrs *rcvd = &session->fc_attrs;
5124 if (rcvd->headerpadsz > sent->headerpadsz)
5126 if (rcvd->max_resp_sz > sent->max_resp_sz)
5129 * Our requested max_ops is the minimum we need; we're not
5130 * prepared to break up compounds into smaller pieces than that.
5131 * So, no point even trying to continue if the server won't
5134 if (rcvd->max_ops < sent->max_ops)
5136 if (rcvd->max_reqs == 0)
5141 static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
5143 struct nfs4_channel_attrs *sent = &args->bc_attrs;
5144 struct nfs4_channel_attrs *rcvd = &session->bc_attrs;
5146 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
5148 if (rcvd->max_resp_sz < sent->max_resp_sz)
5150 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
5152 /* These would render the backchannel useless: */
5153 if (rcvd->max_ops == 0)
5155 if (rcvd->max_reqs == 0)
5160 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
5161 struct nfs4_session *session)
5165 ret = nfs4_verify_fore_channel_attrs(args, session);
5168 return nfs4_verify_back_channel_attrs(args, session);
5171 static int _nfs4_proc_create_session(struct nfs_client *clp)
5173 struct nfs4_session *session = clp->cl_session;
5174 struct nfs41_create_session_args args = {
5176 .cb_program = NFS4_CALLBACK,
5178 struct nfs41_create_session_res res = {
5181 struct rpc_message msg = {
5182 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
5188 nfs4_init_channel_attrs(&args);
5189 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
5191 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
5194 /* Verify the session's negotiated channel_attrs values */
5195 status = nfs4_verify_channel_attrs(&args, session);
5197 /* Increment the clientid slot sequence id */
5205 * Issues a CREATE_SESSION operation to the server.
5206 * It is the responsibility of the caller to verify the session is
5207 * expired before calling this routine.
5209 int nfs4_proc_create_session(struct nfs_client *clp)
5213 struct nfs4_session *session = clp->cl_session;
5215 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
5217 status = _nfs4_proc_create_session(clp);
5221 /* Init and reset the fore channel */
5222 status = nfs4_init_slot_tables(session);
5223 dprintk("slot table initialization returned %d\n", status);
5226 status = nfs4_reset_slot_tables(session);
5227 dprintk("slot table reset returned %d\n", status);
5231 ptr = (unsigned *)&session->sess_id.data[0];
5232 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
5233 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
5235 dprintk("<-- %s\n", __func__);
5240 * Issue the over-the-wire RPC DESTROY_SESSION.
5241 * The caller must serialize access to this routine.
5243 int nfs4_proc_destroy_session(struct nfs4_session *session)
5246 struct rpc_message msg;
5248 dprintk("--> nfs4_proc_destroy_session\n");
5250 /* session is still being setup */
5251 if (session->clp->cl_cons_state != NFS_CS_READY)
5254 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
5255 msg.rpc_argp = session;
5256 msg.rpc_resp = NULL;
5257 msg.rpc_cred = NULL;
5258 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
5262 "Got error %d from the server on DESTROY_SESSION. "
5263 "Session has been destroyed regardless...\n", status);
5265 dprintk("<-- nfs4_proc_destroy_session\n");
5269 int nfs4_init_session(struct nfs_server *server)
5271 struct nfs_client *clp = server->nfs_client;
5272 struct nfs4_session *session;
5273 unsigned int rsize, wsize;
5276 if (!nfs4_has_session(clp))
5279 session = clp->cl_session;
5280 if (!test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state))
5283 rsize = server->rsize;
5285 rsize = NFS_MAX_FILE_IO_SIZE;
5286 wsize = server->wsize;
5288 wsize = NFS_MAX_FILE_IO_SIZE;
5290 session->fc_attrs.max_rqst_sz = wsize + nfs41_maxwrite_overhead;
5291 session->fc_attrs.max_resp_sz = rsize + nfs41_maxread_overhead;
5293 ret = nfs4_recover_expired_lease(server);
5295 ret = nfs4_check_client_ready(clp);
5299 int nfs4_init_ds_session(struct nfs_client *clp)
5301 struct nfs4_session *session = clp->cl_session;
5304 if (!test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state))
5307 ret = nfs4_client_recover_expired_lease(clp);
5309 /* Test for the DS role */
5310 if (!is_ds_client(clp))
5313 ret = nfs4_check_client_ready(clp);
5317 EXPORT_SYMBOL_GPL(nfs4_init_ds_session);
5321 * Renew the cl_session lease.
5323 struct nfs4_sequence_data {
5324 struct nfs_client *clp;
5325 struct nfs4_sequence_args args;
5326 struct nfs4_sequence_res res;
5329 static void nfs41_sequence_release(void *data)
5331 struct nfs4_sequence_data *calldata = data;
5332 struct nfs_client *clp = calldata->clp;
5334 if (atomic_read(&clp->cl_count) > 1)
5335 nfs4_schedule_state_renewal(clp);
5336 nfs_put_client(clp);
5340 static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5342 switch(task->tk_status) {
5343 case -NFS4ERR_DELAY:
5344 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5347 nfs4_schedule_lease_recovery(clp);
5352 static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
5354 struct nfs4_sequence_data *calldata = data;
5355 struct nfs_client *clp = calldata->clp;
5357 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
5360 if (task->tk_status < 0) {
5361 dprintk("%s ERROR %d\n", __func__, task->tk_status);
5362 if (atomic_read(&clp->cl_count) == 1)
5365 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
5366 rpc_restart_call_prepare(task);
5370 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
5372 dprintk("<-- %s\n", __func__);
5375 static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
5377 struct nfs4_sequence_data *calldata = data;
5378 struct nfs_client *clp = calldata->clp;
5379 struct nfs4_sequence_args *args;
5380 struct nfs4_sequence_res *res;
5382 args = task->tk_msg.rpc_argp;
5383 res = task->tk_msg.rpc_resp;
5385 if (nfs41_setup_sequence(clp->cl_session, args, res, 0, task))
5387 rpc_call_start(task);
5390 static const struct rpc_call_ops nfs41_sequence_ops = {
5391 .rpc_call_done = nfs41_sequence_call_done,
5392 .rpc_call_prepare = nfs41_sequence_prepare,
5393 .rpc_release = nfs41_sequence_release,
5396 static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5398 struct nfs4_sequence_data *calldata;
5399 struct rpc_message msg = {
5400 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
5403 struct rpc_task_setup task_setup_data = {
5404 .rpc_client = clp->cl_rpcclient,
5405 .rpc_message = &msg,
5406 .callback_ops = &nfs41_sequence_ops,
5407 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFT,
5410 if (!atomic_inc_not_zero(&clp->cl_count))
5411 return ERR_PTR(-EIO);
5412 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
5413 if (calldata == NULL) {
5414 nfs_put_client(clp);
5415 return ERR_PTR(-ENOMEM);
5417 msg.rpc_argp = &calldata->args;
5418 msg.rpc_resp = &calldata->res;
5419 calldata->clp = clp;
5420 task_setup_data.callback_data = calldata;
5422 return rpc_run_task(&task_setup_data);
5425 static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5427 struct rpc_task *task;
5430 task = _nfs41_proc_sequence(clp, cred);
5432 ret = PTR_ERR(task);
5434 rpc_put_task_async(task);
5435 dprintk("<-- %s status=%d\n", __func__, ret);
5439 static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5441 struct rpc_task *task;
5444 task = _nfs41_proc_sequence(clp, cred);
5446 ret = PTR_ERR(task);
5449 ret = rpc_wait_for_completion_task(task);
5451 struct nfs4_sequence_res *res = task->tk_msg.rpc_resp;
5453 if (task->tk_status == 0)
5454 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags);
5455 ret = task->tk_status;
5459 dprintk("<-- %s status=%d\n", __func__, ret);
5463 struct nfs4_reclaim_complete_data {
5464 struct nfs_client *clp;
5465 struct nfs41_reclaim_complete_args arg;
5466 struct nfs41_reclaim_complete_res res;
5469 static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
5471 struct nfs4_reclaim_complete_data *calldata = data;
5473 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
5474 if (nfs41_setup_sequence(calldata->clp->cl_session,
5475 &calldata->arg.seq_args,
5476 &calldata->res.seq_res, 0, task))
5479 rpc_call_start(task);
5482 static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5484 switch(task->tk_status) {
5486 case -NFS4ERR_COMPLETE_ALREADY:
5487 case -NFS4ERR_WRONG_CRED: /* What to do here? */
5489 case -NFS4ERR_DELAY:
5490 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5492 case -NFS4ERR_RETRY_UNCACHED_REP:
5495 nfs4_schedule_lease_recovery(clp);
5500 static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
5502 struct nfs4_reclaim_complete_data *calldata = data;
5503 struct nfs_client *clp = calldata->clp;
5504 struct nfs4_sequence_res *res = &calldata->res.seq_res;
5506 dprintk("--> %s\n", __func__);
5507 if (!nfs41_sequence_done(task, res))
5510 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
5511 rpc_restart_call_prepare(task);
5514 dprintk("<-- %s\n", __func__);
5517 static void nfs4_free_reclaim_complete_data(void *data)
5519 struct nfs4_reclaim_complete_data *calldata = data;
5524 static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
5525 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
5526 .rpc_call_done = nfs4_reclaim_complete_done,
5527 .rpc_release = nfs4_free_reclaim_complete_data,
5531 * Issue a global reclaim complete.
5533 static int nfs41_proc_reclaim_complete(struct nfs_client *clp)
5535 struct nfs4_reclaim_complete_data *calldata;
5536 struct rpc_task *task;
5537 struct rpc_message msg = {
5538 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
5540 struct rpc_task_setup task_setup_data = {
5541 .rpc_client = clp->cl_rpcclient,
5542 .rpc_message = &msg,
5543 .callback_ops = &nfs4_reclaim_complete_call_ops,
5544 .flags = RPC_TASK_ASYNC,
5546 int status = -ENOMEM;
5548 dprintk("--> %s\n", __func__);
5549 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
5550 if (calldata == NULL)
5552 calldata->clp = clp;
5553 calldata->arg.one_fs = 0;
5555 msg.rpc_argp = &calldata->arg;
5556 msg.rpc_resp = &calldata->res;
5557 task_setup_data.callback_data = calldata;
5558 task = rpc_run_task(&task_setup_data);
5560 status = PTR_ERR(task);
5563 status = nfs4_wait_for_completion_rpc_task(task);
5565 status = task->tk_status;
5569 dprintk("<-- %s status=%d\n", __func__, status);
5574 nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
5576 struct nfs4_layoutget *lgp = calldata;
5577 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5579 dprintk("--> %s\n", __func__);
5580 /* Note the is a race here, where a CB_LAYOUTRECALL can come in
5581 * right now covering the LAYOUTGET we are about to send.
5582 * However, that is not so catastrophic, and there seems
5583 * to be no way to prevent it completely.
5585 if (nfs4_setup_sequence(server, &lgp->args.seq_args,
5586 &lgp->res.seq_res, 0, task))
5588 if (pnfs_choose_layoutget_stateid(&lgp->args.stateid,
5589 NFS_I(lgp->args.inode)->layout,
5590 lgp->args.ctx->state)) {
5591 rpc_exit(task, NFS4_OK);
5594 rpc_call_start(task);
5597 static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
5599 struct nfs4_layoutget *lgp = calldata;
5600 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5602 dprintk("--> %s\n", __func__);
5604 if (!nfs4_sequence_done(task, &lgp->res.seq_res))
5607 switch (task->tk_status) {
5610 case -NFS4ERR_LAYOUTTRYLATER:
5611 case -NFS4ERR_RECALLCONFLICT:
5612 task->tk_status = -NFS4ERR_DELAY;
5615 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
5616 rpc_restart_call_prepare(task);
5620 dprintk("<-- %s\n", __func__);
5623 static void nfs4_layoutget_release(void *calldata)
5625 struct nfs4_layoutget *lgp = calldata;
5627 dprintk("--> %s\n", __func__);
5628 put_nfs_open_context(lgp->args.ctx);
5630 dprintk("<-- %s\n", __func__);
5633 static const struct rpc_call_ops nfs4_layoutget_call_ops = {
5634 .rpc_call_prepare = nfs4_layoutget_prepare,
5635 .rpc_call_done = nfs4_layoutget_done,
5636 .rpc_release = nfs4_layoutget_release,
5639 int nfs4_proc_layoutget(struct nfs4_layoutget *lgp)
5641 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5642 struct rpc_task *task;
5643 struct rpc_message msg = {
5644 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
5645 .rpc_argp = &lgp->args,
5646 .rpc_resp = &lgp->res,
5648 struct rpc_task_setup task_setup_data = {
5649 .rpc_client = server->client,
5650 .rpc_message = &msg,
5651 .callback_ops = &nfs4_layoutget_call_ops,
5652 .callback_data = lgp,
5653 .flags = RPC_TASK_ASYNC,
5657 dprintk("--> %s\n", __func__);
5659 lgp->res.layoutp = &lgp->args.layout;
5660 lgp->res.seq_res.sr_slot = NULL;
5661 task = rpc_run_task(&task_setup_data);
5663 return PTR_ERR(task);
5664 status = nfs4_wait_for_completion_rpc_task(task);
5666 status = task->tk_status;
5668 status = pnfs_layout_process(lgp);
5670 dprintk("<-- %s status=%d\n", __func__, status);
5675 _nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
5677 struct nfs4_getdeviceinfo_args args = {
5680 struct nfs4_getdeviceinfo_res res = {
5683 struct rpc_message msg = {
5684 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
5690 dprintk("--> %s\n", __func__);
5691 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
5692 dprintk("<-- %s status=%d\n", __func__, status);
5697 int nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
5699 struct nfs4_exception exception = { };
5703 err = nfs4_handle_exception(server,
5704 _nfs4_proc_getdeviceinfo(server, pdev),
5706 } while (exception.retry);
5709 EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
5711 static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
5713 struct nfs4_layoutcommit_data *data = calldata;
5714 struct nfs_server *server = NFS_SERVER(data->args.inode);
5716 if (nfs4_setup_sequence(server, &data->args.seq_args,
5717 &data->res.seq_res, 1, task))
5719 rpc_call_start(task);
5723 nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
5725 struct nfs4_layoutcommit_data *data = calldata;
5726 struct nfs_server *server = NFS_SERVER(data->args.inode);
5728 if (!nfs4_sequence_done(task, &data->res.seq_res))
5731 switch (task->tk_status) { /* Just ignore these failures */
5732 case NFS4ERR_DELEG_REVOKED: /* layout was recalled */
5733 case NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
5734 case NFS4ERR_BADLAYOUT: /* no layout */
5735 case NFS4ERR_GRACE: /* loca_recalim always false */
5736 task->tk_status = 0;
5739 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
5740 nfs_restart_rpc(task, server->nfs_client);
5744 if (task->tk_status == 0)
5745 nfs_post_op_update_inode_force_wcc(data->args.inode,
5749 static void nfs4_layoutcommit_release(void *calldata)
5751 struct nfs4_layoutcommit_data *data = calldata;
5753 /* Matched by references in pnfs_set_layoutcommit */
5754 put_lseg(data->lseg);
5755 put_rpccred(data->cred);
5759 static const struct rpc_call_ops nfs4_layoutcommit_ops = {
5760 .rpc_call_prepare = nfs4_layoutcommit_prepare,
5761 .rpc_call_done = nfs4_layoutcommit_done,
5762 .rpc_release = nfs4_layoutcommit_release,
5766 nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
5768 struct rpc_message msg = {
5769 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
5770 .rpc_argp = &data->args,
5771 .rpc_resp = &data->res,
5772 .rpc_cred = data->cred,
5774 struct rpc_task_setup task_setup_data = {
5775 .task = &data->task,
5776 .rpc_client = NFS_CLIENT(data->args.inode),
5777 .rpc_message = &msg,
5778 .callback_ops = &nfs4_layoutcommit_ops,
5779 .callback_data = data,
5780 .flags = RPC_TASK_ASYNC,
5782 struct rpc_task *task;
5785 dprintk("NFS: %4d initiating layoutcommit call. sync %d "
5786 "lbw: %llu inode %lu\n",
5787 data->task.tk_pid, sync,
5788 data->args.lastbytewritten,
5789 data->args.inode->i_ino);
5791 task = rpc_run_task(&task_setup_data);
5793 return PTR_ERR(task);
5796 status = nfs4_wait_for_completion_rpc_task(task);
5799 status = task->tk_status;
5801 dprintk("%s: status %d\n", __func__, status);
5805 #endif /* CONFIG_NFS_V4_1 */
5807 struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
5808 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
5809 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
5810 .recover_open = nfs4_open_reclaim,
5811 .recover_lock = nfs4_lock_reclaim,
5812 .establish_clid = nfs4_init_clientid,
5813 .get_clid_cred = nfs4_get_setclientid_cred,
5816 #if defined(CONFIG_NFS_V4_1)
5817 struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
5818 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
5819 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
5820 .recover_open = nfs4_open_reclaim,
5821 .recover_lock = nfs4_lock_reclaim,
5822 .establish_clid = nfs41_init_clientid,
5823 .get_clid_cred = nfs4_get_exchange_id_cred,
5824 .reclaim_complete = nfs41_proc_reclaim_complete,
5826 #endif /* CONFIG_NFS_V4_1 */
5828 struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
5829 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
5830 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
5831 .recover_open = nfs4_open_expired,
5832 .recover_lock = nfs4_lock_expired,
5833 .establish_clid = nfs4_init_clientid,
5834 .get_clid_cred = nfs4_get_setclientid_cred,
5837 #if defined(CONFIG_NFS_V4_1)
5838 struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
5839 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
5840 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
5841 .recover_open = nfs4_open_expired,
5842 .recover_lock = nfs4_lock_expired,
5843 .establish_clid = nfs41_init_clientid,
5844 .get_clid_cred = nfs4_get_exchange_id_cred,
5846 #endif /* CONFIG_NFS_V4_1 */
5848 struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
5849 .sched_state_renewal = nfs4_proc_async_renew,
5850 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
5851 .renew_lease = nfs4_proc_renew,
5854 #if defined(CONFIG_NFS_V4_1)
5855 struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
5856 .sched_state_renewal = nfs41_proc_async_sequence,
5857 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
5858 .renew_lease = nfs4_proc_sequence,
5862 static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
5864 .call_sync = _nfs4_call_sync,
5865 .validate_stateid = nfs4_validate_delegation_stateid,
5866 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
5867 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
5868 .state_renewal_ops = &nfs40_state_renewal_ops,
5871 #if defined(CONFIG_NFS_V4_1)
5872 static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
5874 .call_sync = _nfs4_call_sync_session,
5875 .validate_stateid = nfs41_validate_delegation_stateid,
5876 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
5877 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
5878 .state_renewal_ops = &nfs41_state_renewal_ops,
5882 const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
5883 [0] = &nfs_v4_0_minor_ops,
5884 #if defined(CONFIG_NFS_V4_1)
5885 [1] = &nfs_v4_1_minor_ops,
5889 static const struct inode_operations nfs4_file_inode_operations = {
5890 .permission = nfs_permission,
5891 .getattr = nfs_getattr,
5892 .setattr = nfs_setattr,
5893 .getxattr = generic_getxattr,
5894 .setxattr = generic_setxattr,
5895 .listxattr = generic_listxattr,
5896 .removexattr = generic_removexattr,
5899 const struct nfs_rpc_ops nfs_v4_clientops = {
5900 .version = 4, /* protocol version */
5901 .dentry_ops = &nfs4_dentry_operations,
5902 .dir_inode_ops = &nfs4_dir_inode_operations,
5903 .file_inode_ops = &nfs4_file_inode_operations,
5904 .getroot = nfs4_proc_get_root,
5905 .getattr = nfs4_proc_getattr,
5906 .setattr = nfs4_proc_setattr,
5907 .lookupfh = nfs4_proc_lookupfh,
5908 .lookup = nfs4_proc_lookup,
5909 .access = nfs4_proc_access,
5910 .readlink = nfs4_proc_readlink,
5911 .create = nfs4_proc_create,
5912 .remove = nfs4_proc_remove,
5913 .unlink_setup = nfs4_proc_unlink_setup,
5914 .unlink_done = nfs4_proc_unlink_done,
5915 .rename = nfs4_proc_rename,
5916 .rename_setup = nfs4_proc_rename_setup,
5917 .rename_done = nfs4_proc_rename_done,
5918 .link = nfs4_proc_link,
5919 .symlink = nfs4_proc_symlink,
5920 .mkdir = nfs4_proc_mkdir,
5921 .rmdir = nfs4_proc_remove,
5922 .readdir = nfs4_proc_readdir,
5923 .mknod = nfs4_proc_mknod,
5924 .statfs = nfs4_proc_statfs,
5925 .fsinfo = nfs4_proc_fsinfo,
5926 .pathconf = nfs4_proc_pathconf,
5927 .set_capabilities = nfs4_server_capabilities,
5928 .decode_dirent = nfs4_decode_dirent,
5929 .read_setup = nfs4_proc_read_setup,
5930 .read_done = nfs4_read_done,
5931 .write_setup = nfs4_proc_write_setup,
5932 .write_done = nfs4_write_done,
5933 .commit_setup = nfs4_proc_commit_setup,
5934 .commit_done = nfs4_commit_done,
5935 .lock = nfs4_proc_lock,
5936 .clear_acl_cache = nfs4_zap_acl_attr,
5937 .close_context = nfs4_close_context,
5938 .open_context = nfs4_atomic_open,
5939 .init_client = nfs4_init_client,
5940 .secinfo = nfs4_proc_secinfo,
5943 static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
5944 .prefix = XATTR_NAME_NFSV4_ACL,
5945 .list = nfs4_xattr_list_nfs4_acl,
5946 .get = nfs4_xattr_get_nfs4_acl,
5947 .set = nfs4_xattr_set_nfs4_acl,
5950 const struct xattr_handler *nfs4_xattr_handlers[] = {
5951 &nfs4_xattr_nfs4_acl_handler,