4 * Client-side procedure declarations for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <linux/delay.h>
40 #include <linux/errno.h>
41 #include <linux/string.h>
42 #include <linux/ratelimit.h>
43 #include <linux/printk.h>
44 #include <linux/slab.h>
45 #include <linux/sunrpc/clnt.h>
46 #include <linux/nfs.h>
47 #include <linux/nfs4.h>
48 #include <linux/nfs_fs.h>
49 #include <linux/nfs_page.h>
50 #include <linux/nfs_mount.h>
51 #include <linux/namei.h>
52 #include <linux/mount.h>
53 #include <linux/module.h>
54 #include <linux/xattr.h>
55 #include <linux/utsname.h>
56 #include <linux/freezer.h>
57 #include <linux/iversion.h>
60 #include "delegation.h"
67 #include "nfs4idmap.h"
68 #include "nfs4session.h"
72 #include "nfs4trace.h"
74 #define NFSDBG_FACILITY NFSDBG_PROC
76 #define NFS4_BITMASK_SZ 3
78 #define NFS4_POLL_RETRY_MIN (HZ/10)
79 #define NFS4_POLL_RETRY_MAX (15*HZ)
81 /* file attributes which can be mapped to nfs attributes */
82 #define NFS4_VALID_ATTRS (ATTR_MODE \
93 static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
94 static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
95 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr);
96 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
97 struct nfs_fattr *fattr, struct inode *inode);
98 static int nfs4_do_setattr(struct inode *inode, const struct cred *cred,
99 struct nfs_fattr *fattr, struct iattr *sattr,
100 struct nfs_open_context *ctx, struct nfs4_label *ilabel);
101 #ifdef CONFIG_NFS_V4_1
102 static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
103 const struct cred *cred,
104 struct nfs4_slot *slot,
106 static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *,
107 const struct cred *);
108 static int nfs41_free_stateid(struct nfs_server *, const nfs4_stateid *,
109 const struct cred *, bool);
112 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
113 static inline struct nfs4_label *
114 nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
115 struct iattr *sattr, struct nfs4_label *label)
122 if (nfs_server_capable(dir, NFS_CAP_SECURITY_LABEL) == 0)
130 err = security_dentry_init_security(dentry, sattr->ia_mode,
131 &dentry->d_name, NULL,
132 (void **)&label->label, &label->len);
139 nfs4_label_release_security(struct nfs4_label *label)
142 security_release_secctx(label->label, label->len);
144 static inline u32 *nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
147 return server->attr_bitmask;
149 return server->attr_bitmask_nl;
152 static inline struct nfs4_label *
153 nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
154 struct iattr *sattr, struct nfs4_label *l)
157 nfs4_label_release_security(struct nfs4_label *label)
160 nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
161 { return server->attr_bitmask; }
164 /* Prevent leaks of NFSv4 errors into userland */
165 static int nfs4_map_errors(int err)
170 case -NFS4ERR_RESOURCE:
171 case -NFS4ERR_LAYOUTTRYLATER:
172 case -NFS4ERR_RECALLCONFLICT:
173 case -NFS4ERR_RETURNCONFLICT:
175 case -NFS4ERR_WRONGSEC:
176 case -NFS4ERR_WRONG_CRED:
178 case -NFS4ERR_BADOWNER:
179 case -NFS4ERR_BADNAME:
181 case -NFS4ERR_SHARE_DENIED:
183 case -NFS4ERR_MINOR_VERS_MISMATCH:
184 return -EPROTONOSUPPORT;
185 case -NFS4ERR_FILE_OPEN:
187 case -NFS4ERR_NOT_SAME:
190 dprintk("%s could not handle NFSv4 error %d\n",
198 * This is our standard bitmap for GETATTR requests.
200 const u32 nfs4_fattr_bitmap[3] = {
202 | FATTR4_WORD0_CHANGE
205 | FATTR4_WORD0_FILEID,
207 | FATTR4_WORD1_NUMLINKS
209 | FATTR4_WORD1_OWNER_GROUP
210 | FATTR4_WORD1_RAWDEV
211 | FATTR4_WORD1_SPACE_USED
212 | FATTR4_WORD1_TIME_ACCESS
213 | FATTR4_WORD1_TIME_METADATA
214 | FATTR4_WORD1_TIME_MODIFY
215 | FATTR4_WORD1_MOUNTED_ON_FILEID,
216 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
217 FATTR4_WORD2_SECURITY_LABEL
221 static const u32 nfs4_pnfs_open_bitmap[3] = {
223 | FATTR4_WORD0_CHANGE
226 | FATTR4_WORD0_FILEID,
228 | FATTR4_WORD1_NUMLINKS
230 | FATTR4_WORD1_OWNER_GROUP
231 | FATTR4_WORD1_RAWDEV
232 | FATTR4_WORD1_SPACE_USED
233 | FATTR4_WORD1_TIME_ACCESS
234 | FATTR4_WORD1_TIME_METADATA
235 | FATTR4_WORD1_TIME_MODIFY,
236 FATTR4_WORD2_MDSTHRESHOLD
237 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
238 | FATTR4_WORD2_SECURITY_LABEL
242 static const u32 nfs4_open_noattr_bitmap[3] = {
244 | FATTR4_WORD0_FILEID,
247 const u32 nfs4_statfs_bitmap[3] = {
248 FATTR4_WORD0_FILES_AVAIL
249 | FATTR4_WORD0_FILES_FREE
250 | FATTR4_WORD0_FILES_TOTAL,
251 FATTR4_WORD1_SPACE_AVAIL
252 | FATTR4_WORD1_SPACE_FREE
253 | FATTR4_WORD1_SPACE_TOTAL
256 const u32 nfs4_pathconf_bitmap[3] = {
258 | FATTR4_WORD0_MAXNAME,
262 const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE
263 | FATTR4_WORD0_MAXREAD
264 | FATTR4_WORD0_MAXWRITE
265 | FATTR4_WORD0_LEASE_TIME,
266 FATTR4_WORD1_TIME_DELTA
267 | FATTR4_WORD1_FS_LAYOUT_TYPES,
268 FATTR4_WORD2_LAYOUT_BLKSIZE
269 | FATTR4_WORD2_CLONE_BLKSIZE
270 | FATTR4_WORD2_CHANGE_ATTR_TYPE
271 | FATTR4_WORD2_XATTR_SUPPORT
274 const u32 nfs4_fs_locations_bitmap[3] = {
278 | FATTR4_WORD0_FILEID
279 | FATTR4_WORD0_FS_LOCATIONS,
281 | FATTR4_WORD1_OWNER_GROUP
282 | FATTR4_WORD1_RAWDEV
283 | FATTR4_WORD1_SPACE_USED
284 | FATTR4_WORD1_TIME_ACCESS
285 | FATTR4_WORD1_TIME_METADATA
286 | FATTR4_WORD1_TIME_MODIFY
287 | FATTR4_WORD1_MOUNTED_ON_FILEID,
290 static void nfs4_bitmap_copy_adjust(__u32 *dst, const __u32 *src,
291 struct inode *inode, unsigned long flags)
293 unsigned long cache_validity;
295 memcpy(dst, src, NFS4_BITMASK_SZ*sizeof(*dst));
296 if (!inode || !nfs4_have_delegation(inode, FMODE_READ))
299 cache_validity = READ_ONCE(NFS_I(inode)->cache_validity) | flags;
301 /* Remove the attributes over which we have full control */
302 dst[1] &= ~FATTR4_WORD1_RAWDEV;
303 if (!(cache_validity & NFS_INO_INVALID_SIZE))
304 dst[0] &= ~FATTR4_WORD0_SIZE;
306 if (!(cache_validity & NFS_INO_INVALID_CHANGE))
307 dst[0] &= ~FATTR4_WORD0_CHANGE;
309 if (!(cache_validity & NFS_INO_INVALID_MODE))
310 dst[1] &= ~FATTR4_WORD1_MODE;
311 if (!(cache_validity & NFS_INO_INVALID_OTHER))
312 dst[1] &= ~(FATTR4_WORD1_OWNER | FATTR4_WORD1_OWNER_GROUP);
315 static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
316 struct nfs4_readdir_arg *readdir)
318 unsigned int attrs = FATTR4_WORD0_FILEID | FATTR4_WORD0_TYPE;
322 readdir->cookie = cookie;
323 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
328 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
333 * NFSv4 servers do not return entries for '.' and '..'
334 * Therefore, we fake these entries here. We let '.'
335 * have cookie 0 and '..' have cookie 1. Note that
336 * when talking to the server, we always send cookie 0
339 start = p = kmap_atomic(*readdir->pages);
342 *p++ = xdr_one; /* next */
343 *p++ = xdr_zero; /* cookie, first word */
344 *p++ = xdr_one; /* cookie, second word */
345 *p++ = xdr_one; /* entry len */
346 memcpy(p, ".\0\0\0", 4); /* entry */
348 *p++ = xdr_one; /* bitmap length */
349 *p++ = htonl(attrs); /* bitmap */
350 *p++ = htonl(12); /* attribute buffer length */
351 *p++ = htonl(NF4DIR);
352 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry)));
355 *p++ = xdr_one; /* next */
356 *p++ = xdr_zero; /* cookie, first word */
357 *p++ = xdr_two; /* cookie, second word */
358 *p++ = xdr_two; /* entry len */
359 memcpy(p, "..\0\0", 4); /* entry */
361 *p++ = xdr_one; /* bitmap length */
362 *p++ = htonl(attrs); /* bitmap */
363 *p++ = htonl(12); /* attribute buffer length */
364 *p++ = htonl(NF4DIR);
365 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent)));
367 readdir->pgbase = (char *)p - (char *)start;
368 readdir->count -= readdir->pgbase;
369 kunmap_atomic(start);
372 static void nfs4_fattr_set_prechange(struct nfs_fattr *fattr, u64 version)
374 if (!(fattr->valid & NFS_ATTR_FATTR_PRECHANGE)) {
375 fattr->pre_change_attr = version;
376 fattr->valid |= NFS_ATTR_FATTR_PRECHANGE;
380 static void nfs4_test_and_free_stateid(struct nfs_server *server,
381 nfs4_stateid *stateid,
382 const struct cred *cred)
384 const struct nfs4_minor_version_ops *ops = server->nfs_client->cl_mvops;
386 ops->test_and_free_expired(server, stateid, cred);
389 static void __nfs4_free_revoked_stateid(struct nfs_server *server,
390 nfs4_stateid *stateid,
391 const struct cred *cred)
393 stateid->type = NFS4_REVOKED_STATEID_TYPE;
394 nfs4_test_and_free_stateid(server, stateid, cred);
397 static void nfs4_free_revoked_stateid(struct nfs_server *server,
398 const nfs4_stateid *stateid,
399 const struct cred *cred)
403 nfs4_stateid_copy(&tmp, stateid);
404 __nfs4_free_revoked_stateid(server, &tmp, cred);
407 static long nfs4_update_delay(long *timeout)
411 return NFS4_POLL_RETRY_MAX;
413 *timeout = NFS4_POLL_RETRY_MIN;
414 if (*timeout > NFS4_POLL_RETRY_MAX)
415 *timeout = NFS4_POLL_RETRY_MAX;
421 static int nfs4_delay_killable(long *timeout)
425 __set_current_state(TASK_KILLABLE|TASK_FREEZABLE_UNSAFE);
426 schedule_timeout(nfs4_update_delay(timeout));
427 if (!__fatal_signal_pending(current))
432 static int nfs4_delay_interruptible(long *timeout)
436 __set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE_UNSAFE);
437 schedule_timeout(nfs4_update_delay(timeout));
438 if (!signal_pending(current))
440 return __fatal_signal_pending(current) ? -EINTR :-ERESTARTSYS;
443 static int nfs4_delay(long *timeout, bool interruptible)
446 return nfs4_delay_interruptible(timeout);
447 return nfs4_delay_killable(timeout);
450 static const nfs4_stateid *
451 nfs4_recoverable_stateid(const nfs4_stateid *stateid)
455 switch (stateid->type) {
456 case NFS4_OPEN_STATEID_TYPE:
457 case NFS4_LOCK_STATEID_TYPE:
458 case NFS4_DELEGATION_STATEID_TYPE:
466 /* This is the error handling routine for processes that are allowed
469 static int nfs4_do_handle_exception(struct nfs_server *server,
470 int errorcode, struct nfs4_exception *exception)
472 struct nfs_client *clp = server->nfs_client;
473 struct nfs4_state *state = exception->state;
474 const nfs4_stateid *stateid;
475 struct inode *inode = exception->inode;
478 exception->delay = 0;
479 exception->recovering = 0;
480 exception->retry = 0;
482 stateid = nfs4_recoverable_stateid(exception->stateid);
483 if (stateid == NULL && state != NULL)
484 stateid = nfs4_recoverable_stateid(&state->stateid);
489 case -NFS4ERR_BADHANDLE:
491 if (inode != NULL && S_ISREG(inode->i_mode))
492 pnfs_destroy_layout(NFS_I(inode));
494 case -NFS4ERR_DELEG_REVOKED:
495 case -NFS4ERR_ADMIN_REVOKED:
496 case -NFS4ERR_EXPIRED:
497 case -NFS4ERR_BAD_STATEID:
498 case -NFS4ERR_PARTNER_NO_AUTH:
499 if (inode != NULL && stateid != NULL) {
500 nfs_inode_find_state_and_recover(inode,
502 goto wait_on_recovery;
505 case -NFS4ERR_OPENMODE:
509 err = nfs_async_inode_return_delegation(inode,
512 goto wait_on_recovery;
513 if (stateid != NULL && stateid->type == NFS4_DELEGATION_STATEID_TYPE) {
514 exception->retry = 1;
520 ret = nfs4_schedule_stateid_recovery(server, state);
523 goto wait_on_recovery;
524 case -NFS4ERR_STALE_STATEID:
525 case -NFS4ERR_STALE_CLIENTID:
526 nfs4_schedule_lease_recovery(clp);
527 goto wait_on_recovery;
529 ret = nfs4_schedule_migration_recovery(server);
532 goto wait_on_recovery;
533 case -NFS4ERR_LEASE_MOVED:
534 nfs4_schedule_lease_moved_recovery(clp);
535 goto wait_on_recovery;
536 #if defined(CONFIG_NFS_V4_1)
537 case -NFS4ERR_BADSESSION:
538 case -NFS4ERR_BADSLOT:
539 case -NFS4ERR_BAD_HIGH_SLOT:
540 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
541 case -NFS4ERR_DEADSESSION:
542 case -NFS4ERR_SEQ_FALSE_RETRY:
543 case -NFS4ERR_SEQ_MISORDERED:
544 /* Handled in nfs41_sequence_process() */
545 goto wait_on_recovery;
546 #endif /* defined(CONFIG_NFS_V4_1) */
547 case -NFS4ERR_FILE_OPEN:
548 if (exception->timeout > HZ) {
549 /* We have retried a decent amount, time to
557 nfs_inc_server_stats(server, NFSIOS_DELAY);
560 case -NFS4ERR_LAYOUTTRYLATER:
561 case -NFS4ERR_RECALLCONFLICT:
562 case -NFS4ERR_RETURNCONFLICT:
563 exception->delay = 1;
566 case -NFS4ERR_RETRY_UNCACHED_REP:
567 case -NFS4ERR_OLD_STATEID:
568 exception->retry = 1;
570 case -NFS4ERR_BADOWNER:
571 /* The following works around a Linux server bug! */
572 case -NFS4ERR_BADNAME:
573 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
574 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
575 exception->retry = 1;
576 printk(KERN_WARNING "NFS: v4 server %s "
577 "does not accept raw "
579 "Reenabling the idmapper.\n",
580 server->nfs_client->cl_hostname);
583 /* We failed to handle the error */
584 return nfs4_map_errors(ret);
586 exception->recovering = 1;
591 * Track the number of NFS4ERR_DELAY related retransmissions and return
592 * EAGAIN if the 'softerr' mount option is set, and we've exceeded the limit
593 * set by 'nfs_delay_retrans'.
595 static int nfs4_exception_should_retrans(const struct nfs_server *server,
596 struct nfs4_exception *exception)
598 if (server->flags & NFS_MOUNT_SOFTERR && nfs_delay_retrans >= 0) {
599 if (exception->retrans++ >= (unsigned short)nfs_delay_retrans)
605 /* This is the error handling routine for processes that are allowed
608 int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
610 struct nfs_client *clp = server->nfs_client;
613 ret = nfs4_do_handle_exception(server, errorcode, exception);
614 if (exception->delay) {
615 int ret2 = nfs4_exception_should_retrans(server, exception);
617 exception->retry = 0;
620 ret = nfs4_delay(&exception->timeout,
621 exception->interruptible);
624 if (exception->recovering) {
625 if (exception->task_is_privileged)
627 ret = nfs4_wait_clnt_recover(clp);
628 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
635 exception->retry = 1;
640 nfs4_async_handle_exception(struct rpc_task *task, struct nfs_server *server,
641 int errorcode, struct nfs4_exception *exception)
643 struct nfs_client *clp = server->nfs_client;
646 ret = nfs4_do_handle_exception(server, errorcode, exception);
647 if (exception->delay) {
648 int ret2 = nfs4_exception_should_retrans(server, exception);
650 exception->retry = 0;
653 rpc_delay(task, nfs4_update_delay(&exception->timeout));
656 if (exception->recovering) {
657 if (exception->task_is_privileged)
659 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
660 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
661 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
664 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
669 exception->retry = 1;
671 * For NFS4ERR_MOVED, the client transport will need to
672 * be recomputed after migration recovery has completed.
674 if (errorcode == -NFS4ERR_MOVED)
675 rpc_task_release_transport(task);
681 nfs4_async_handle_error(struct rpc_task *task, struct nfs_server *server,
682 struct nfs4_state *state, long *timeout)
684 struct nfs4_exception exception = {
688 if (task->tk_status >= 0)
691 exception.timeout = *timeout;
692 task->tk_status = nfs4_async_handle_exception(task, server,
695 if (exception.delay && timeout)
696 *timeout = exception.timeout;
703 * Return 'true' if 'clp' is using an rpc_client that is integrity protected
704 * or 'false' otherwise.
706 static bool _nfs4_is_integrity_protected(struct nfs_client *clp)
708 rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor;
709 return (flavor == RPC_AUTH_GSS_KRB5I) || (flavor == RPC_AUTH_GSS_KRB5P);
712 static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
714 spin_lock(&clp->cl_lock);
715 if (time_before(clp->cl_last_renewal,timestamp))
716 clp->cl_last_renewal = timestamp;
717 spin_unlock(&clp->cl_lock);
720 static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
722 struct nfs_client *clp = server->nfs_client;
724 if (!nfs4_has_session(clp))
725 do_renew_lease(clp, timestamp);
728 struct nfs4_call_sync_data {
729 const struct nfs_server *seq_server;
730 struct nfs4_sequence_args *seq_args;
731 struct nfs4_sequence_res *seq_res;
734 void nfs4_init_sequence(struct nfs4_sequence_args *args,
735 struct nfs4_sequence_res *res, int cache_reply,
738 args->sa_slot = NULL;
739 args->sa_cache_this = cache_reply;
740 args->sa_privileged = privileged;
745 static void nfs40_sequence_free_slot(struct nfs4_sequence_res *res)
747 struct nfs4_slot *slot = res->sr_slot;
748 struct nfs4_slot_table *tbl;
751 spin_lock(&tbl->slot_tbl_lock);
752 if (!nfs41_wake_and_assign_slot(tbl, slot))
753 nfs4_free_slot(tbl, slot);
754 spin_unlock(&tbl->slot_tbl_lock);
759 static int nfs40_sequence_done(struct rpc_task *task,
760 struct nfs4_sequence_res *res)
762 if (res->sr_slot != NULL)
763 nfs40_sequence_free_slot(res);
767 #if defined(CONFIG_NFS_V4_1)
769 static void nfs41_release_slot(struct nfs4_slot *slot)
771 struct nfs4_session *session;
772 struct nfs4_slot_table *tbl;
773 bool send_new_highest_used_slotid = false;
778 session = tbl->session;
780 /* Bump the slot sequence number */
785 spin_lock(&tbl->slot_tbl_lock);
786 /* Be nice to the server: try to ensure that the last transmitted
787 * value for highest_user_slotid <= target_highest_slotid
789 if (tbl->highest_used_slotid > tbl->target_highest_slotid)
790 send_new_highest_used_slotid = true;
792 if (nfs41_wake_and_assign_slot(tbl, slot)) {
793 send_new_highest_used_slotid = false;
796 nfs4_free_slot(tbl, slot);
798 if (tbl->highest_used_slotid != NFS4_NO_SLOT)
799 send_new_highest_used_slotid = false;
801 spin_unlock(&tbl->slot_tbl_lock);
802 if (send_new_highest_used_slotid)
803 nfs41_notify_server(session->clp);
804 if (waitqueue_active(&tbl->slot_waitq))
805 wake_up_all(&tbl->slot_waitq);
808 static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
810 nfs41_release_slot(res->sr_slot);
814 static void nfs4_slot_sequence_record_sent(struct nfs4_slot *slot,
817 if ((s32)(seqnr - slot->seq_nr_highest_sent) > 0)
818 slot->seq_nr_highest_sent = seqnr;
820 static void nfs4_slot_sequence_acked(struct nfs4_slot *slot, u32 seqnr)
822 nfs4_slot_sequence_record_sent(slot, seqnr);
823 slot->seq_nr_last_acked = seqnr;
826 static void nfs4_probe_sequence(struct nfs_client *client, const struct cred *cred,
827 struct nfs4_slot *slot)
829 struct rpc_task *task = _nfs41_proc_sequence(client, cred, slot, true);
831 rpc_put_task_async(task);
834 static int nfs41_sequence_process(struct rpc_task *task,
835 struct nfs4_sequence_res *res)
837 struct nfs4_session *session;
838 struct nfs4_slot *slot = res->sr_slot;
839 struct nfs_client *clp;
845 /* don't increment the sequence number if the task wasn't sent */
846 if (!RPC_WAS_SENT(task) || slot->seq_done)
849 session = slot->table->session;
852 trace_nfs4_sequence_done(session, res);
854 status = res->sr_status;
855 if (task->tk_status == -NFS4ERR_DEADSESSION)
856 status = -NFS4ERR_DEADSESSION;
858 /* Check the SEQUENCE operation status */
861 /* Mark this sequence number as having been acked */
862 nfs4_slot_sequence_acked(slot, slot->seq_nr);
863 /* Update the slot's sequence and clientid lease timer */
865 do_renew_lease(clp, res->sr_timestamp);
866 /* Check sequence flags */
867 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags,
869 nfs41_update_target_slotid(slot->table, slot, res);
873 * sr_status remains 1 if an RPC level error occurred.
874 * The server may or may not have processed the sequence
877 nfs4_slot_sequence_record_sent(slot, slot->seq_nr);
881 /* The server detected a resend of the RPC call and
882 * returned NFS4ERR_DELAY as per Section 2.10.6.2
885 dprintk("%s: slot=%u seq=%u: Operation in progress\n",
890 case -NFS4ERR_RETRY_UNCACHED_REP:
891 case -NFS4ERR_SEQ_FALSE_RETRY:
893 * The server thinks we tried to replay a request.
894 * Retry the call after bumping the sequence ID.
896 nfs4_slot_sequence_acked(slot, slot->seq_nr);
898 case -NFS4ERR_BADSLOT:
900 * The slot id we used was probably retired. Try again
901 * using a different slot id.
903 if (slot->slot_nr < slot->table->target_highest_slotid)
904 goto session_recover;
906 case -NFS4ERR_SEQ_MISORDERED:
907 nfs4_slot_sequence_record_sent(slot, slot->seq_nr);
909 * Were one or more calls using this slot interrupted?
910 * If the server never received the request, then our
911 * transmitted slot sequence number may be too high. However,
912 * if the server did receive the request then it might
913 * accidentally give us a reply with a mismatched operation.
914 * We can sort this out by sending a lone sequence operation
915 * to the server on the same slot.
917 if ((s32)(slot->seq_nr - slot->seq_nr_last_acked) > 1) {
919 if (task->tk_msg.rpc_proc != &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE]) {
920 nfs4_probe_sequence(clp, task->tk_msg.rpc_cred, slot);
927 * A retry might be sent while the original request is
928 * still in progress on the replier. The replier SHOULD
929 * deal with the issue by returning NFS4ERR_DELAY as the
930 * reply to SEQUENCE or CB_SEQUENCE operation, but
931 * implementations MAY return NFS4ERR_SEQ_MISORDERED.
933 * Restart the search after a delay.
935 slot->seq_nr = slot->seq_nr_highest_sent;
937 case -NFS4ERR_BADSESSION:
938 case -NFS4ERR_DEADSESSION:
939 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
940 goto session_recover;
942 /* Just update the slot sequence no. */
946 /* The session may be reset by one of the error handlers. */
947 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
951 set_bit(NFS4_SLOT_TBL_DRAINING, &session->fc_slot_table.slot_tbl_state);
952 nfs4_schedule_session_recovery(session, status);
953 dprintk("%s ERROR: %d Reset session\n", __func__, status);
954 nfs41_sequence_free_slot(res);
959 if (rpc_restart_call_prepare(task)) {
960 nfs41_sequence_free_slot(res);
966 if (!rpc_restart_call(task))
968 rpc_delay(task, NFS4_POLL_RETRY_MAX);
972 int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
974 if (!nfs41_sequence_process(task, res))
976 if (res->sr_slot != NULL)
977 nfs41_sequence_free_slot(res);
981 EXPORT_SYMBOL_GPL(nfs41_sequence_done);
983 static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
985 if (res->sr_slot == NULL)
987 if (res->sr_slot->table->session != NULL)
988 return nfs41_sequence_process(task, res);
989 return nfs40_sequence_done(task, res);
992 static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
994 if (res->sr_slot != NULL) {
995 if (res->sr_slot->table->session != NULL)
996 nfs41_sequence_free_slot(res);
998 nfs40_sequence_free_slot(res);
1002 int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
1004 if (res->sr_slot == NULL)
1006 if (!res->sr_slot->table->session)
1007 return nfs40_sequence_done(task, res);
1008 return nfs41_sequence_done(task, res);
1010 EXPORT_SYMBOL_GPL(nfs4_sequence_done);
1012 static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
1014 struct nfs4_call_sync_data *data = calldata;
1016 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
1018 nfs4_setup_sequence(data->seq_server->nfs_client,
1019 data->seq_args, data->seq_res, task);
1022 static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
1024 struct nfs4_call_sync_data *data = calldata;
1026 nfs41_sequence_done(task, data->seq_res);
1029 static const struct rpc_call_ops nfs41_call_sync_ops = {
1030 .rpc_call_prepare = nfs41_call_sync_prepare,
1031 .rpc_call_done = nfs41_call_sync_done,
1034 #else /* !CONFIG_NFS_V4_1 */
1036 static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
1038 return nfs40_sequence_done(task, res);
1041 static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
1043 if (res->sr_slot != NULL)
1044 nfs40_sequence_free_slot(res);
1047 int nfs4_sequence_done(struct rpc_task *task,
1048 struct nfs4_sequence_res *res)
1050 return nfs40_sequence_done(task, res);
1052 EXPORT_SYMBOL_GPL(nfs4_sequence_done);
1054 #endif /* !CONFIG_NFS_V4_1 */
1056 static void nfs41_sequence_res_init(struct nfs4_sequence_res *res)
1058 res->sr_timestamp = jiffies;
1059 res->sr_status_flags = 0;
1064 void nfs4_sequence_attach_slot(struct nfs4_sequence_args *args,
1065 struct nfs4_sequence_res *res,
1066 struct nfs4_slot *slot)
1070 slot->privileged = args->sa_privileged ? 1 : 0;
1071 args->sa_slot = slot;
1073 res->sr_slot = slot;
1076 int nfs4_setup_sequence(struct nfs_client *client,
1077 struct nfs4_sequence_args *args,
1078 struct nfs4_sequence_res *res,
1079 struct rpc_task *task)
1081 struct nfs4_session *session = nfs4_get_session(client);
1082 struct nfs4_slot_table *tbl = client->cl_slot_tbl;
1083 struct nfs4_slot *slot;
1085 /* slot already allocated? */
1086 if (res->sr_slot != NULL)
1090 tbl = &session->fc_slot_table;
1092 spin_lock(&tbl->slot_tbl_lock);
1093 /* The state manager will wait until the slot table is empty */
1094 if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged)
1097 slot = nfs4_alloc_slot(tbl);
1099 if (slot == ERR_PTR(-ENOMEM))
1100 goto out_sleep_timeout;
1103 spin_unlock(&tbl->slot_tbl_lock);
1105 nfs4_sequence_attach_slot(args, res, slot);
1107 trace_nfs4_setup_sequence(session, args);
1109 nfs41_sequence_res_init(res);
1110 rpc_call_start(task);
1113 /* Try again in 1/4 second */
1114 if (args->sa_privileged)
1115 rpc_sleep_on_priority_timeout(&tbl->slot_tbl_waitq, task,
1116 jiffies + (HZ >> 2), RPC_PRIORITY_PRIVILEGED);
1118 rpc_sleep_on_timeout(&tbl->slot_tbl_waitq, task,
1119 NULL, jiffies + (HZ >> 2));
1120 spin_unlock(&tbl->slot_tbl_lock);
1123 if (args->sa_privileged)
1124 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
1125 RPC_PRIORITY_PRIVILEGED);
1127 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
1128 spin_unlock(&tbl->slot_tbl_lock);
1131 EXPORT_SYMBOL_GPL(nfs4_setup_sequence);
1133 static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata)
1135 struct nfs4_call_sync_data *data = calldata;
1136 nfs4_setup_sequence(data->seq_server->nfs_client,
1137 data->seq_args, data->seq_res, task);
1140 static void nfs40_call_sync_done(struct rpc_task *task, void *calldata)
1142 struct nfs4_call_sync_data *data = calldata;
1143 nfs4_sequence_done(task, data->seq_res);
1146 static const struct rpc_call_ops nfs40_call_sync_ops = {
1147 .rpc_call_prepare = nfs40_call_sync_prepare,
1148 .rpc_call_done = nfs40_call_sync_done,
1151 static int nfs4_call_sync_custom(struct rpc_task_setup *task_setup)
1154 struct rpc_task *task;
1156 task = rpc_run_task(task_setup);
1158 return PTR_ERR(task);
1160 ret = task->tk_status;
1165 static int nfs4_do_call_sync(struct rpc_clnt *clnt,
1166 struct nfs_server *server,
1167 struct rpc_message *msg,
1168 struct nfs4_sequence_args *args,
1169 struct nfs4_sequence_res *res,
1170 unsigned short task_flags)
1172 struct nfs_client *clp = server->nfs_client;
1173 struct nfs4_call_sync_data data = {
1174 .seq_server = server,
1178 struct rpc_task_setup task_setup = {
1181 .callback_ops = clp->cl_mvops->call_sync_ops,
1182 .callback_data = &data,
1183 .flags = task_flags,
1186 return nfs4_call_sync_custom(&task_setup);
1189 static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
1190 struct nfs_server *server,
1191 struct rpc_message *msg,
1192 struct nfs4_sequence_args *args,
1193 struct nfs4_sequence_res *res)
1195 unsigned short task_flags = 0;
1197 if (server->caps & NFS_CAP_MOVEABLE)
1198 task_flags = RPC_TASK_MOVEABLE;
1199 return nfs4_do_call_sync(clnt, server, msg, args, res, task_flags);
1203 int nfs4_call_sync(struct rpc_clnt *clnt,
1204 struct nfs_server *server,
1205 struct rpc_message *msg,
1206 struct nfs4_sequence_args *args,
1207 struct nfs4_sequence_res *res,
1210 nfs4_init_sequence(args, res, cache_reply, 0);
1211 return nfs4_call_sync_sequence(clnt, server, msg, args, res);
1215 nfs4_inc_nlink_locked(struct inode *inode)
1217 nfs_set_cache_invalid(inode, NFS_INO_INVALID_CHANGE |
1218 NFS_INO_INVALID_CTIME |
1219 NFS_INO_INVALID_NLINK);
1224 nfs4_inc_nlink(struct inode *inode)
1226 spin_lock(&inode->i_lock);
1227 nfs4_inc_nlink_locked(inode);
1228 spin_unlock(&inode->i_lock);
1232 nfs4_dec_nlink_locked(struct inode *inode)
1234 nfs_set_cache_invalid(inode, NFS_INO_INVALID_CHANGE |
1235 NFS_INO_INVALID_CTIME |
1236 NFS_INO_INVALID_NLINK);
1241 nfs4_update_changeattr_locked(struct inode *inode,
1242 struct nfs4_change_info *cinfo,
1243 unsigned long timestamp, unsigned long cache_validity)
1245 struct nfs_inode *nfsi = NFS_I(inode);
1246 u64 change_attr = inode_peek_iversion_raw(inode);
1248 cache_validity |= NFS_INO_INVALID_CTIME | NFS_INO_INVALID_MTIME;
1249 if (S_ISDIR(inode->i_mode))
1250 cache_validity |= NFS_INO_INVALID_DATA;
1252 switch (NFS_SERVER(inode)->change_attr_type) {
1253 case NFS4_CHANGE_TYPE_IS_UNDEFINED:
1254 if (cinfo->after == change_attr)
1258 if ((s64)(change_attr - cinfo->after) >= 0)
1262 inode_set_iversion_raw(inode, cinfo->after);
1263 if (!cinfo->atomic || cinfo->before != change_attr) {
1264 if (S_ISDIR(inode->i_mode))
1265 nfs_force_lookup_revalidate(inode);
1267 if (!NFS_PROTO(inode)->have_delegation(inode, FMODE_READ))
1269 NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL |
1270 NFS_INO_INVALID_SIZE | NFS_INO_INVALID_OTHER |
1271 NFS_INO_INVALID_BLOCKS | NFS_INO_INVALID_NLINK |
1272 NFS_INO_INVALID_MODE | NFS_INO_INVALID_XATTR;
1273 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
1275 nfsi->attrtimeo_timestamp = jiffies;
1276 nfsi->read_cache_jiffies = timestamp;
1277 nfsi->attr_gencount = nfs_inc_attr_generation_counter();
1278 nfsi->cache_validity &= ~NFS_INO_INVALID_CHANGE;
1280 nfs_set_cache_invalid(inode, cache_validity);
1284 nfs4_update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo,
1285 unsigned long timestamp, unsigned long cache_validity)
1287 spin_lock(&dir->i_lock);
1288 nfs4_update_changeattr_locked(dir, cinfo, timestamp, cache_validity);
1289 spin_unlock(&dir->i_lock);
1292 struct nfs4_open_createattrs {
1293 struct nfs4_label *label;
1294 struct iattr *sattr;
1295 const __u32 verf[2];
1298 static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server,
1299 int err, struct nfs4_exception *exception)
1303 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1305 server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1;
1306 exception->retry = 1;
1310 static fmode_t _nfs4_ctx_to_accessmode(const struct nfs_open_context *ctx)
1312 return ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC);
1315 static fmode_t _nfs4_ctx_to_openmode(const struct nfs_open_context *ctx)
1317 fmode_t ret = ctx->mode & (FMODE_READ|FMODE_WRITE);
1319 return (ctx->mode & FMODE_EXEC) ? FMODE_READ | ret : ret;
1323 nfs4_map_atomic_open_share(struct nfs_server *server,
1324 fmode_t fmode, int openflags)
1328 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
1330 res = NFS4_SHARE_ACCESS_READ;
1333 res = NFS4_SHARE_ACCESS_WRITE;
1335 case FMODE_READ|FMODE_WRITE:
1336 res = NFS4_SHARE_ACCESS_BOTH;
1338 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1340 /* Want no delegation if we're using O_DIRECT */
1341 if (openflags & O_DIRECT)
1342 res |= NFS4_SHARE_WANT_NO_DELEG;
1347 static enum open_claim_type4
1348 nfs4_map_atomic_open_claim(struct nfs_server *server,
1349 enum open_claim_type4 claim)
1351 if (server->caps & NFS_CAP_ATOMIC_OPEN_V1)
1356 case NFS4_OPEN_CLAIM_FH:
1357 return NFS4_OPEN_CLAIM_NULL;
1358 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1359 return NFS4_OPEN_CLAIM_DELEGATE_CUR;
1360 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1361 return NFS4_OPEN_CLAIM_DELEGATE_PREV;
1365 static void nfs4_init_opendata_res(struct nfs4_opendata *p)
1367 p->o_res.f_attr = &p->f_attr;
1368 p->o_res.seqid = p->o_arg.seqid;
1369 p->c_res.seqid = p->c_arg.seqid;
1370 p->o_res.server = p->o_arg.server;
1371 p->o_res.access_request = p->o_arg.access;
1372 nfs_fattr_init(&p->f_attr);
1373 nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name);
1376 static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
1377 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
1378 const struct nfs4_open_createattrs *c,
1379 enum open_claim_type4 claim,
1382 struct dentry *parent = dget_parent(dentry);
1383 struct inode *dir = d_inode(parent);
1384 struct nfs_server *server = NFS_SERVER(dir);
1385 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
1386 struct nfs4_label *label = (c != NULL) ? c->label : NULL;
1387 struct nfs4_opendata *p;
1389 p = kzalloc(sizeof(*p), gfp_mask);
1393 p->f_attr.label = nfs4_label_alloc(server, gfp_mask);
1394 if (IS_ERR(p->f_attr.label))
1397 p->a_label = nfs4_label_alloc(server, gfp_mask);
1398 if (IS_ERR(p->a_label))
1401 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
1402 p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask);
1403 if (IS_ERR(p->o_arg.seqid))
1404 goto err_free_label;
1405 nfs_sb_active(dentry->d_sb);
1406 p->dentry = dget(dentry);
1409 atomic_inc(&sp->so_count);
1410 p->o_arg.open_flags = flags;
1411 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
1412 p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim);
1413 p->o_arg.share_access = nfs4_map_atomic_open_share(server,
1415 if (flags & O_CREAT) {
1416 p->o_arg.umask = current_umask();
1417 p->o_arg.label = nfs4_label_copy(p->a_label, label);
1418 if (c->sattr != NULL && c->sattr->ia_valid != 0) {
1419 p->o_arg.u.attrs = &p->attrs;
1420 memcpy(&p->attrs, c->sattr, sizeof(p->attrs));
1422 memcpy(p->o_arg.u.verifier.data, c->verf,
1423 sizeof(p->o_arg.u.verifier.data));
1426 /* ask server to check for all possible rights as results
1428 switch (p->o_arg.claim) {
1431 case NFS4_OPEN_CLAIM_NULL:
1432 case NFS4_OPEN_CLAIM_FH:
1433 p->o_arg.access = NFS4_ACCESS_READ | NFS4_ACCESS_MODIFY |
1434 NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE |
1435 NFS4_ACCESS_EXECUTE |
1436 nfs_access_xattr_mask(server);
1438 p->o_arg.clientid = server->nfs_client->cl_clientid;
1439 p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time);
1440 p->o_arg.id.uniquifier = sp->so_seqid.owner_id;
1441 p->o_arg.name = &dentry->d_name;
1442 p->o_arg.server = server;
1443 p->o_arg.bitmask = nfs4_bitmask(server, label);
1444 p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0];
1445 switch (p->o_arg.claim) {
1446 case NFS4_OPEN_CLAIM_NULL:
1447 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1448 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1449 p->o_arg.fh = NFS_FH(dir);
1451 case NFS4_OPEN_CLAIM_PREVIOUS:
1452 case NFS4_OPEN_CLAIM_FH:
1453 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1454 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1455 p->o_arg.fh = NFS_FH(d_inode(dentry));
1457 p->c_arg.fh = &p->o_res.fh;
1458 p->c_arg.stateid = &p->o_res.stateid;
1459 p->c_arg.seqid = p->o_arg.seqid;
1460 nfs4_init_opendata_res(p);
1461 kref_init(&p->kref);
1465 nfs4_label_free(p->a_label);
1467 nfs4_label_free(p->f_attr.label);
1475 static void nfs4_opendata_free(struct kref *kref)
1477 struct nfs4_opendata *p = container_of(kref,
1478 struct nfs4_opendata, kref);
1479 struct super_block *sb = p->dentry->d_sb;
1481 nfs4_lgopen_release(p->lgp);
1482 nfs_free_seqid(p->o_arg.seqid);
1483 nfs4_sequence_free_slot(&p->o_res.seq_res);
1484 if (p->state != NULL)
1485 nfs4_put_open_state(p->state);
1486 nfs4_put_state_owner(p->owner);
1488 nfs4_label_free(p->a_label);
1489 nfs4_label_free(p->f_attr.label);
1493 nfs_sb_deactive(sb);
1494 nfs_fattr_free_names(&p->f_attr);
1495 kfree(p->f_attr.mdsthreshold);
1499 static void nfs4_opendata_put(struct nfs4_opendata *p)
1502 kref_put(&p->kref, nfs4_opendata_free);
1505 static bool nfs4_mode_match_open_stateid(struct nfs4_state *state,
1508 switch(fmode & (FMODE_READ|FMODE_WRITE)) {
1509 case FMODE_READ|FMODE_WRITE:
1510 return state->n_rdwr != 0;
1512 return state->n_wronly != 0;
1514 return state->n_rdonly != 0;
1520 static int can_open_cached(struct nfs4_state *state, fmode_t mode,
1521 int open_mode, enum open_claim_type4 claim)
1525 if (open_mode & (O_EXCL|O_TRUNC))
1528 case NFS4_OPEN_CLAIM_NULL:
1529 case NFS4_OPEN_CLAIM_FH:
1534 switch (mode & (FMODE_READ|FMODE_WRITE)) {
1536 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
1537 && state->n_rdonly != 0;
1540 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
1541 && state->n_wronly != 0;
1543 case FMODE_READ|FMODE_WRITE:
1544 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
1545 && state->n_rdwr != 0;
1551 static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode,
1552 enum open_claim_type4 claim)
1554 if (delegation == NULL)
1556 if ((delegation->type & fmode) != fmode)
1559 case NFS4_OPEN_CLAIM_NULL:
1560 case NFS4_OPEN_CLAIM_FH:
1562 case NFS4_OPEN_CLAIM_PREVIOUS:
1563 if (!test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
1569 nfs_mark_delegation_referenced(delegation);
1573 static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
1582 case FMODE_READ|FMODE_WRITE:
1585 nfs4_state_set_mode_locked(state, state->state | fmode);
1588 #ifdef CONFIG_NFS_V4_1
1589 static bool nfs_open_stateid_recover_openmode(struct nfs4_state *state)
1591 if (state->n_rdonly && !test_bit(NFS_O_RDONLY_STATE, &state->flags))
1593 if (state->n_wronly && !test_bit(NFS_O_WRONLY_STATE, &state->flags))
1595 if (state->n_rdwr && !test_bit(NFS_O_RDWR_STATE, &state->flags))
1599 #endif /* CONFIG_NFS_V4_1 */
1601 static void nfs_state_log_update_open_stateid(struct nfs4_state *state)
1603 if (test_and_clear_bit(NFS_STATE_CHANGE_WAIT, &state->flags))
1604 wake_up_all(&state->waitq);
1607 static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state)
1609 struct nfs_client *clp = state->owner->so_server->nfs_client;
1610 bool need_recover = false;
1612 if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly)
1613 need_recover = true;
1614 if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly)
1615 need_recover = true;
1616 if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr)
1617 need_recover = true;
1619 nfs4_state_mark_reclaim_nograce(clp, state);
1623 * Check for whether or not the caller may update the open stateid
1624 * to the value passed in by stateid.
1626 * Note: This function relies heavily on the server implementing
1627 * RFC7530 Section 9.1.4.2, and RFC5661 Section 8.2.2
1629 * i.e. The stateid seqids have to be initialised to 1, and
1630 * are then incremented on every state transition.
1632 static bool nfs_stateid_is_sequential(struct nfs4_state *state,
1633 const nfs4_stateid *stateid)
1635 if (test_bit(NFS_OPEN_STATE, &state->flags)) {
1636 /* The common case - we're updating to a new sequence number */
1637 if (nfs4_stateid_match_other(stateid, &state->open_stateid)) {
1638 if (nfs4_stateid_is_next(&state->open_stateid, stateid))
1642 /* The server returned a new stateid */
1644 /* This is the first OPEN in this generation */
1645 if (stateid->seqid == cpu_to_be32(1))
1650 static void nfs_resync_open_stateid_locked(struct nfs4_state *state)
1652 if (!(state->n_wronly || state->n_rdonly || state->n_rdwr))
1654 if (state->n_wronly)
1655 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1656 if (state->n_rdonly)
1657 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1659 set_bit(NFS_O_RDWR_STATE, &state->flags);
1660 set_bit(NFS_OPEN_STATE, &state->flags);
1663 static void nfs_clear_open_stateid_locked(struct nfs4_state *state,
1664 nfs4_stateid *stateid, fmode_t fmode)
1666 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1667 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
1669 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1672 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1675 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1676 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1677 clear_bit(NFS_OPEN_STATE, &state->flags);
1679 if (stateid == NULL)
1681 /* Handle OPEN+OPEN_DOWNGRADE races */
1682 if (nfs4_stateid_match_other(stateid, &state->open_stateid) &&
1683 !nfs4_stateid_is_newer(stateid, &state->open_stateid)) {
1684 nfs_resync_open_stateid_locked(state);
1687 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1688 nfs4_stateid_copy(&state->stateid, stateid);
1689 nfs4_stateid_copy(&state->open_stateid, stateid);
1690 trace_nfs4_open_stateid_update(state->inode, stateid, 0);
1692 nfs_state_log_update_open_stateid(state);
1695 static void nfs_clear_open_stateid(struct nfs4_state *state,
1696 nfs4_stateid *arg_stateid,
1697 nfs4_stateid *stateid, fmode_t fmode)
1699 write_seqlock(&state->seqlock);
1700 /* Ignore, if the CLOSE argment doesn't match the current stateid */
1701 if (nfs4_state_match_open_stateid_other(state, arg_stateid))
1702 nfs_clear_open_stateid_locked(state, stateid, fmode);
1703 write_sequnlock(&state->seqlock);
1704 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1705 nfs4_schedule_state_manager(state->owner->so_server->nfs_client);
1708 static void nfs_set_open_stateid_locked(struct nfs4_state *state,
1709 const nfs4_stateid *stateid, nfs4_stateid *freeme)
1710 __must_hold(&state->owner->so_lock)
1711 __must_hold(&state->seqlock)
1719 if (nfs_stateid_is_sequential(state, stateid))
1724 /* Rely on seqids for serialisation with NFSv4.0 */
1725 if (!nfs4_has_session(NFS_SERVER(state->inode)->nfs_client))
1728 set_bit(NFS_STATE_CHANGE_WAIT, &state->flags);
1729 prepare_to_wait(&state->waitq, &wait, TASK_KILLABLE);
1731 * Ensure we process the state changes in the same order
1732 * in which the server processed them by delaying the
1733 * update of the stateid until we are in sequence.
1735 write_sequnlock(&state->seqlock);
1736 spin_unlock(&state->owner->so_lock);
1738 trace_nfs4_open_stateid_update_wait(state->inode, stateid, 0);
1740 if (!fatal_signal_pending(current)) {
1741 if (schedule_timeout(5*HZ) == 0)
1747 finish_wait(&state->waitq, &wait);
1749 spin_lock(&state->owner->so_lock);
1750 write_seqlock(&state->seqlock);
1753 if (test_bit(NFS_OPEN_STATE, &state->flags) &&
1754 !nfs4_stateid_match_other(stateid, &state->open_stateid)) {
1755 nfs4_stateid_copy(freeme, &state->open_stateid);
1756 nfs_test_and_clear_all_open_stateid(state);
1759 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1760 nfs4_stateid_copy(&state->stateid, stateid);
1761 nfs4_stateid_copy(&state->open_stateid, stateid);
1762 trace_nfs4_open_stateid_update(state->inode, stateid, status);
1763 nfs_state_log_update_open_stateid(state);
1766 static void nfs_state_set_open_stateid(struct nfs4_state *state,
1767 const nfs4_stateid *open_stateid,
1769 nfs4_stateid *freeme)
1772 * Protect the call to nfs4_state_set_mode_locked and
1773 * serialise the stateid update
1775 write_seqlock(&state->seqlock);
1776 nfs_set_open_stateid_locked(state, open_stateid, freeme);
1779 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1782 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1784 case FMODE_READ|FMODE_WRITE:
1785 set_bit(NFS_O_RDWR_STATE, &state->flags);
1787 set_bit(NFS_OPEN_STATE, &state->flags);
1788 write_sequnlock(&state->seqlock);
1791 static void nfs_state_clear_open_state_flags(struct nfs4_state *state)
1793 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1794 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1795 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1796 clear_bit(NFS_OPEN_STATE, &state->flags);
1799 static void nfs_state_set_delegation(struct nfs4_state *state,
1800 const nfs4_stateid *deleg_stateid,
1804 * Protect the call to nfs4_state_set_mode_locked and
1805 * serialise the stateid update
1807 write_seqlock(&state->seqlock);
1808 nfs4_stateid_copy(&state->stateid, deleg_stateid);
1809 set_bit(NFS_DELEGATED_STATE, &state->flags);
1810 write_sequnlock(&state->seqlock);
1813 static void nfs_state_clear_delegation(struct nfs4_state *state)
1815 write_seqlock(&state->seqlock);
1816 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
1817 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1818 write_sequnlock(&state->seqlock);
1821 int update_open_stateid(struct nfs4_state *state,
1822 const nfs4_stateid *open_stateid,
1823 const nfs4_stateid *delegation,
1826 struct nfs_server *server = NFS_SERVER(state->inode);
1827 struct nfs_client *clp = server->nfs_client;
1828 struct nfs_inode *nfsi = NFS_I(state->inode);
1829 struct nfs_delegation *deleg_cur;
1830 nfs4_stateid freeme = { };
1833 fmode &= (FMODE_READ|FMODE_WRITE);
1836 spin_lock(&state->owner->so_lock);
1837 if (open_stateid != NULL) {
1838 nfs_state_set_open_stateid(state, open_stateid, fmode, &freeme);
1842 deleg_cur = nfs4_get_valid_delegation(state->inode);
1843 if (deleg_cur == NULL)
1846 spin_lock(&deleg_cur->lock);
1847 if (rcu_dereference(nfsi->delegation) != deleg_cur ||
1848 test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) ||
1849 (deleg_cur->type & fmode) != fmode)
1850 goto no_delegation_unlock;
1852 if (delegation == NULL)
1853 delegation = &deleg_cur->stateid;
1854 else if (!nfs4_stateid_match_other(&deleg_cur->stateid, delegation))
1855 goto no_delegation_unlock;
1857 nfs_mark_delegation_referenced(deleg_cur);
1858 nfs_state_set_delegation(state, &deleg_cur->stateid, fmode);
1860 no_delegation_unlock:
1861 spin_unlock(&deleg_cur->lock);
1864 update_open_stateflags(state, fmode);
1865 spin_unlock(&state->owner->so_lock);
1868 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1869 nfs4_schedule_state_manager(clp);
1870 if (freeme.type != 0)
1871 nfs4_test_and_free_stateid(server, &freeme,
1872 state->owner->so_cred);
1877 static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp,
1878 const nfs4_stateid *stateid)
1880 struct nfs4_state *state = lsp->ls_state;
1883 spin_lock(&state->state_lock);
1884 if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid))
1886 if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid))
1888 nfs4_stateid_copy(&lsp->ls_stateid, stateid);
1891 spin_unlock(&state->state_lock);
1895 static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
1897 struct nfs_delegation *delegation;
1899 fmode &= FMODE_READ|FMODE_WRITE;
1901 delegation = nfs4_get_valid_delegation(inode);
1902 if (delegation == NULL || (delegation->type & fmode) == fmode) {
1907 nfs4_inode_return_delegation(inode);
1910 static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
1912 struct nfs4_state *state = opendata->state;
1913 struct nfs_delegation *delegation;
1914 int open_mode = opendata->o_arg.open_flags;
1915 fmode_t fmode = opendata->o_arg.fmode;
1916 enum open_claim_type4 claim = opendata->o_arg.claim;
1917 nfs4_stateid stateid;
1921 spin_lock(&state->owner->so_lock);
1922 if (can_open_cached(state, fmode, open_mode, claim)) {
1923 update_open_stateflags(state, fmode);
1924 spin_unlock(&state->owner->so_lock);
1925 goto out_return_state;
1927 spin_unlock(&state->owner->so_lock);
1929 delegation = nfs4_get_valid_delegation(state->inode);
1930 if (!can_open_delegated(delegation, fmode, claim)) {
1934 /* Save the delegation */
1935 nfs4_stateid_copy(&stateid, &delegation->stateid);
1937 nfs_release_seqid(opendata->o_arg.seqid);
1938 if (!opendata->is_recover) {
1939 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
1945 /* Try to update the stateid using the delegation */
1946 if (update_open_stateid(state, NULL, &stateid, fmode))
1947 goto out_return_state;
1950 return ERR_PTR(ret);
1952 refcount_inc(&state->count);
1957 nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state)
1959 struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client;
1960 struct nfs_delegation *delegation;
1961 int delegation_flags = 0;
1964 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1966 delegation_flags = delegation->flags;
1968 switch (data->o_arg.claim) {
1971 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1972 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1973 pr_err_ratelimited("NFS: Broken NFSv4 server %s is "
1974 "returning a delegation for "
1975 "OPEN(CLAIM_DELEGATE_CUR)\n",
1979 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
1980 nfs_inode_set_delegation(state->inode,
1981 data->owner->so_cred,
1982 data->o_res.delegation_type,
1983 &data->o_res.delegation,
1984 data->o_res.pagemod_limit);
1986 nfs_inode_reclaim_delegation(state->inode,
1987 data->owner->so_cred,
1988 data->o_res.delegation_type,
1989 &data->o_res.delegation,
1990 data->o_res.pagemod_limit);
1992 if (data->o_res.do_recall)
1993 nfs_async_inode_return_delegation(state->inode,
1994 &data->o_res.delegation);
1998 * Check the inode attributes against the CLAIM_PREVIOUS returned attributes
1999 * and update the nfs4_state.
2001 static struct nfs4_state *
2002 _nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
2004 struct inode *inode = data->state->inode;
2005 struct nfs4_state *state = data->state;
2008 if (!data->rpc_done) {
2009 if (data->rpc_status)
2010 return ERR_PTR(data->rpc_status);
2011 return nfs4_try_open_cached(data);
2014 ret = nfs_refresh_inode(inode, &data->f_attr);
2016 return ERR_PTR(ret);
2018 if (data->o_res.delegation_type != 0)
2019 nfs4_opendata_check_deleg(data, state);
2021 if (!update_open_stateid(state, &data->o_res.stateid,
2022 NULL, data->o_arg.fmode))
2023 return ERR_PTR(-EAGAIN);
2024 refcount_inc(&state->count);
2029 static struct inode *
2030 nfs4_opendata_get_inode(struct nfs4_opendata *data)
2032 struct inode *inode;
2034 switch (data->o_arg.claim) {
2035 case NFS4_OPEN_CLAIM_NULL:
2036 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
2037 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
2038 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
2039 return ERR_PTR(-EAGAIN);
2040 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh,
2044 inode = d_inode(data->dentry);
2046 nfs_refresh_inode(inode, &data->f_attr);
2051 static struct nfs4_state *
2052 nfs4_opendata_find_nfs4_state(struct nfs4_opendata *data)
2054 struct nfs4_state *state;
2055 struct inode *inode;
2057 inode = nfs4_opendata_get_inode(data);
2059 return ERR_CAST(inode);
2060 if (data->state != NULL && data->state->inode == inode) {
2061 state = data->state;
2062 refcount_inc(&state->count);
2064 state = nfs4_get_open_state(inode, data->owner);
2067 state = ERR_PTR(-ENOMEM);
2071 static struct nfs4_state *
2072 _nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
2074 struct nfs4_state *state;
2076 if (!data->rpc_done) {
2077 state = nfs4_try_open_cached(data);
2078 trace_nfs4_cached_open(data->state);
2082 state = nfs4_opendata_find_nfs4_state(data);
2086 if (data->o_res.delegation_type != 0)
2087 nfs4_opendata_check_deleg(data, state);
2088 if (!update_open_stateid(state, &data->o_res.stateid,
2089 NULL, data->o_arg.fmode)) {
2090 nfs4_put_open_state(state);
2091 state = ERR_PTR(-EAGAIN);
2094 nfs_release_seqid(data->o_arg.seqid);
2098 static struct nfs4_state *
2099 nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
2101 struct nfs4_state *ret;
2103 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
2104 ret =_nfs4_opendata_reclaim_to_nfs4_state(data);
2106 ret = _nfs4_opendata_to_nfs4_state(data);
2107 nfs4_sequence_free_slot(&data->o_res.seq_res);
2111 static struct nfs_open_context *
2112 nfs4_state_find_open_context_mode(struct nfs4_state *state, fmode_t mode)
2114 struct nfs_inode *nfsi = NFS_I(state->inode);
2115 struct nfs_open_context *ctx;
2118 list_for_each_entry_rcu(ctx, &nfsi->open_files, list) {
2119 if (ctx->state != state)
2121 if ((ctx->mode & mode) != mode)
2123 if (!get_nfs_open_context(ctx))
2129 return ERR_PTR(-ENOENT);
2132 static struct nfs_open_context *
2133 nfs4_state_find_open_context(struct nfs4_state *state)
2135 struct nfs_open_context *ctx;
2137 ctx = nfs4_state_find_open_context_mode(state, FMODE_READ|FMODE_WRITE);
2140 ctx = nfs4_state_find_open_context_mode(state, FMODE_WRITE);
2143 return nfs4_state_find_open_context_mode(state, FMODE_READ);
2146 static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx,
2147 struct nfs4_state *state, enum open_claim_type4 claim)
2149 struct nfs4_opendata *opendata;
2151 opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0,
2152 NULL, claim, GFP_NOFS);
2153 if (opendata == NULL)
2154 return ERR_PTR(-ENOMEM);
2155 opendata->state = state;
2156 refcount_inc(&state->count);
2160 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata,
2163 struct nfs4_state *newstate;
2164 struct nfs_server *server = NFS_SB(opendata->dentry->d_sb);
2165 int openflags = opendata->o_arg.open_flags;
2168 if (!nfs4_mode_match_open_stateid(opendata->state, fmode))
2170 opendata->o_arg.fmode = fmode;
2171 opendata->o_arg.share_access =
2172 nfs4_map_atomic_open_share(server, fmode, openflags);
2173 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
2174 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
2175 nfs4_init_opendata_res(opendata);
2176 ret = _nfs4_recover_proc_open(opendata);
2179 newstate = nfs4_opendata_to_nfs4_state(opendata);
2180 if (IS_ERR(newstate))
2181 return PTR_ERR(newstate);
2182 if (newstate != opendata->state)
2184 nfs4_close_state(newstate, fmode);
2188 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
2192 /* memory barrier prior to reading state->n_* */
2194 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
2197 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE);
2200 ret = nfs4_open_recover_helper(opendata, FMODE_READ);
2204 * We may have performed cached opens for all three recoveries.
2205 * Check if we need to update the current stateid.
2207 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
2208 !nfs4_stateid_match(&state->stateid, &state->open_stateid)) {
2209 write_seqlock(&state->seqlock);
2210 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
2211 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
2212 write_sequnlock(&state->seqlock);
2219 * reclaim state on the server after a reboot.
2221 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
2223 struct nfs_delegation *delegation;
2224 struct nfs4_opendata *opendata;
2225 fmode_t delegation_type = 0;
2228 opendata = nfs4_open_recoverdata_alloc(ctx, state,
2229 NFS4_OPEN_CLAIM_PREVIOUS);
2230 if (IS_ERR(opendata))
2231 return PTR_ERR(opendata);
2233 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
2234 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
2235 delegation_type = delegation->type;
2237 opendata->o_arg.u.delegation_type = delegation_type;
2238 status = nfs4_open_recover(opendata, state);
2239 nfs4_opendata_put(opendata);
2243 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
2245 struct nfs_server *server = NFS_SERVER(state->inode);
2246 struct nfs4_exception exception = { };
2249 err = _nfs4_do_open_reclaim(ctx, state);
2250 trace_nfs4_open_reclaim(ctx, 0, err);
2251 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2253 if (err != -NFS4ERR_DELAY)
2255 nfs4_handle_exception(server, err, &exception);
2256 } while (exception.retry);
2260 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
2262 struct nfs_open_context *ctx;
2265 ctx = nfs4_state_find_open_context(state);
2268 clear_bit(NFS_DELEGATED_STATE, &state->flags);
2269 nfs_state_clear_open_state_flags(state);
2270 ret = nfs4_do_open_reclaim(ctx, state);
2271 put_nfs_open_context(ctx);
2275 static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct nfs4_state *state, const nfs4_stateid *stateid, struct file_lock *fl, int err)
2279 printk(KERN_ERR "NFS: %s: unhandled error "
2280 "%d.\n", __func__, err);
2288 case -NFS4ERR_BADSESSION:
2289 case -NFS4ERR_BADSLOT:
2290 case -NFS4ERR_BAD_HIGH_SLOT:
2291 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
2292 case -NFS4ERR_DEADSESSION:
2294 case -NFS4ERR_STALE_CLIENTID:
2295 case -NFS4ERR_STALE_STATEID:
2296 /* Don't recall a delegation if it was lost */
2297 nfs4_schedule_lease_recovery(server->nfs_client);
2299 case -NFS4ERR_MOVED:
2300 nfs4_schedule_migration_recovery(server);
2302 case -NFS4ERR_LEASE_MOVED:
2303 nfs4_schedule_lease_moved_recovery(server->nfs_client);
2305 case -NFS4ERR_DELEG_REVOKED:
2306 case -NFS4ERR_ADMIN_REVOKED:
2307 case -NFS4ERR_EXPIRED:
2308 case -NFS4ERR_BAD_STATEID:
2309 case -NFS4ERR_OPENMODE:
2310 nfs_inode_find_state_and_recover(state->inode,
2312 nfs4_schedule_stateid_recovery(server, state);
2314 case -NFS4ERR_DELAY:
2315 case -NFS4ERR_GRACE:
2319 case -NFS4ERR_DENIED:
2321 struct nfs4_lock_state *lsp = fl->fl_u.nfs4_fl.owner;
2323 set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
2330 int nfs4_open_delegation_recall(struct nfs_open_context *ctx,
2331 struct nfs4_state *state, const nfs4_stateid *stateid)
2333 struct nfs_server *server = NFS_SERVER(state->inode);
2334 struct nfs4_opendata *opendata;
2337 opendata = nfs4_open_recoverdata_alloc(ctx, state,
2338 NFS4_OPEN_CLAIM_DELEG_CUR_FH);
2339 if (IS_ERR(opendata))
2340 return PTR_ERR(opendata);
2341 nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid);
2342 if (!test_bit(NFS_O_RDWR_STATE, &state->flags)) {
2343 err = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
2347 if (!test_bit(NFS_O_WRONLY_STATE, &state->flags)) {
2348 err = nfs4_open_recover_helper(opendata, FMODE_WRITE);
2352 if (!test_bit(NFS_O_RDONLY_STATE, &state->flags)) {
2353 err = nfs4_open_recover_helper(opendata, FMODE_READ);
2357 nfs_state_clear_delegation(state);
2359 nfs4_opendata_put(opendata);
2360 return nfs4_handle_delegation_recall_error(server, state, stateid, NULL, err);
2363 static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
2365 struct nfs4_opendata *data = calldata;
2367 nfs4_setup_sequence(data->o_arg.server->nfs_client,
2368 &data->c_arg.seq_args, &data->c_res.seq_res, task);
2371 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
2373 struct nfs4_opendata *data = calldata;
2375 nfs40_sequence_done(task, &data->c_res.seq_res);
2377 data->rpc_status = task->tk_status;
2378 if (data->rpc_status == 0) {
2379 nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid);
2380 nfs_confirm_seqid(&data->owner->so_seqid, 0);
2381 renew_lease(data->o_res.server, data->timestamp);
2382 data->rpc_done = true;
2386 static void nfs4_open_confirm_release(void *calldata)
2388 struct nfs4_opendata *data = calldata;
2389 struct nfs4_state *state = NULL;
2391 /* If this request hasn't been cancelled, do nothing */
2392 if (!data->cancelled)
2394 /* In case of error, no cleanup! */
2395 if (!data->rpc_done)
2397 state = nfs4_opendata_to_nfs4_state(data);
2399 nfs4_close_state(state, data->o_arg.fmode);
2401 nfs4_opendata_put(data);
2404 static const struct rpc_call_ops nfs4_open_confirm_ops = {
2405 .rpc_call_prepare = nfs4_open_confirm_prepare,
2406 .rpc_call_done = nfs4_open_confirm_done,
2407 .rpc_release = nfs4_open_confirm_release,
2411 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
2413 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
2415 struct nfs_server *server = NFS_SERVER(d_inode(data->dir));
2416 struct rpc_task *task;
2417 struct rpc_message msg = {
2418 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
2419 .rpc_argp = &data->c_arg,
2420 .rpc_resp = &data->c_res,
2421 .rpc_cred = data->owner->so_cred,
2423 struct rpc_task_setup task_setup_data = {
2424 .rpc_client = server->client,
2425 .rpc_message = &msg,
2426 .callback_ops = &nfs4_open_confirm_ops,
2427 .callback_data = data,
2428 .workqueue = nfsiod_workqueue,
2429 .flags = RPC_TASK_ASYNC | RPC_TASK_CRED_NOREF,
2433 nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1,
2435 kref_get(&data->kref);
2436 data->rpc_done = false;
2437 data->rpc_status = 0;
2438 data->timestamp = jiffies;
2439 task = rpc_run_task(&task_setup_data);
2441 return PTR_ERR(task);
2442 status = rpc_wait_for_completion_task(task);
2444 data->cancelled = true;
2447 status = data->rpc_status;
2452 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
2454 struct nfs4_opendata *data = calldata;
2455 struct nfs4_state_owner *sp = data->owner;
2456 struct nfs_client *clp = sp->so_server->nfs_client;
2457 enum open_claim_type4 claim = data->o_arg.claim;
2459 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
2462 * Check if we still need to send an OPEN call, or if we can use
2463 * a delegation instead.
2465 if (data->state != NULL) {
2466 struct nfs_delegation *delegation;
2468 if (can_open_cached(data->state, data->o_arg.fmode,
2469 data->o_arg.open_flags, claim))
2472 delegation = nfs4_get_valid_delegation(data->state->inode);
2473 if (can_open_delegated(delegation, data->o_arg.fmode, claim))
2474 goto unlock_no_action;
2477 /* Update client id. */
2478 data->o_arg.clientid = clp->cl_clientid;
2482 case NFS4_OPEN_CLAIM_PREVIOUS:
2483 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
2484 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
2485 data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0];
2487 case NFS4_OPEN_CLAIM_FH:
2488 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
2490 data->timestamp = jiffies;
2491 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
2492 &data->o_arg.seq_args,
2493 &data->o_res.seq_res,
2495 nfs_release_seqid(data->o_arg.seqid);
2497 /* Set the create mode (note dependency on the session type) */
2498 data->o_arg.createmode = NFS4_CREATE_UNCHECKED;
2499 if (data->o_arg.open_flags & O_EXCL) {
2500 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1;
2501 if (clp->cl_mvops->minor_version == 0) {
2502 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE;
2503 /* don't put an ACCESS op in OPEN compound if O_EXCL,
2504 * because ACCESS will return permission denied for
2505 * all bits until close */
2506 data->o_res.access_request = data->o_arg.access = 0;
2507 } else if (nfs4_has_persistent_session(clp))
2508 data->o_arg.createmode = NFS4_CREATE_GUARDED;
2512 trace_nfs4_cached_open(data->state);
2515 task->tk_action = NULL;
2517 nfs4_sequence_done(task, &data->o_res.seq_res);
2520 static void nfs4_open_done(struct rpc_task *task, void *calldata)
2522 struct nfs4_opendata *data = calldata;
2524 data->rpc_status = task->tk_status;
2526 if (!nfs4_sequence_process(task, &data->o_res.seq_res))
2529 if (task->tk_status == 0) {
2530 if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) {
2531 switch (data->o_res.f_attr->mode & S_IFMT) {
2535 data->rpc_status = -ELOOP;
2538 data->rpc_status = -EISDIR;
2541 data->rpc_status = -ENOTDIR;
2544 renew_lease(data->o_res.server, data->timestamp);
2545 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
2546 nfs_confirm_seqid(&data->owner->so_seqid, 0);
2548 data->rpc_done = true;
2551 static void nfs4_open_release(void *calldata)
2553 struct nfs4_opendata *data = calldata;
2554 struct nfs4_state *state = NULL;
2556 /* If this request hasn't been cancelled, do nothing */
2557 if (!data->cancelled)
2559 /* In case of error, no cleanup! */
2560 if (data->rpc_status != 0 || !data->rpc_done)
2562 /* In case we need an open_confirm, no cleanup! */
2563 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
2565 state = nfs4_opendata_to_nfs4_state(data);
2567 nfs4_close_state(state, data->o_arg.fmode);
2569 nfs4_opendata_put(data);
2572 static const struct rpc_call_ops nfs4_open_ops = {
2573 .rpc_call_prepare = nfs4_open_prepare,
2574 .rpc_call_done = nfs4_open_done,
2575 .rpc_release = nfs4_open_release,
2578 static int nfs4_run_open_task(struct nfs4_opendata *data,
2579 struct nfs_open_context *ctx)
2581 struct inode *dir = d_inode(data->dir);
2582 struct nfs_server *server = NFS_SERVER(dir);
2583 struct nfs_openargs *o_arg = &data->o_arg;
2584 struct nfs_openres *o_res = &data->o_res;
2585 struct rpc_task *task;
2586 struct rpc_message msg = {
2587 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
2590 .rpc_cred = data->owner->so_cred,
2592 struct rpc_task_setup task_setup_data = {
2593 .rpc_client = server->client,
2594 .rpc_message = &msg,
2595 .callback_ops = &nfs4_open_ops,
2596 .callback_data = data,
2597 .workqueue = nfsiod_workqueue,
2598 .flags = RPC_TASK_ASYNC | RPC_TASK_CRED_NOREF,
2602 if (nfs_server_capable(dir, NFS_CAP_MOVEABLE))
2603 task_setup_data.flags |= RPC_TASK_MOVEABLE;
2605 kref_get(&data->kref);
2606 data->rpc_done = false;
2607 data->rpc_status = 0;
2608 data->cancelled = false;
2609 data->is_recover = false;
2611 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1, 1);
2612 data->is_recover = true;
2613 task_setup_data.flags |= RPC_TASK_TIMEOUT;
2615 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1, 0);
2616 pnfs_lgopen_prepare(data, ctx);
2618 task = rpc_run_task(&task_setup_data);
2620 return PTR_ERR(task);
2621 status = rpc_wait_for_completion_task(task);
2623 data->cancelled = true;
2626 status = data->rpc_status;
2632 static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
2634 struct inode *dir = d_inode(data->dir);
2635 struct nfs_openres *o_res = &data->o_res;
2638 status = nfs4_run_open_task(data, NULL);
2639 if (status != 0 || !data->rpc_done)
2642 nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr);
2644 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM)
2645 status = _nfs4_proc_open_confirm(data);
2651 * Additional permission checks in order to distinguish between an
2652 * open for read, and an open for execute. This works around the
2653 * fact that NFSv4 OPEN treats read and execute permissions as being
2655 * Note that in the non-execute case, we want to turn off permission
2656 * checking if we just created a new file (POSIX open() semantics).
2658 static int nfs4_opendata_access(const struct cred *cred,
2659 struct nfs4_opendata *opendata,
2660 struct nfs4_state *state, fmode_t fmode)
2662 struct nfs_access_entry cache;
2665 /* access call failed or for some reason the server doesn't
2666 * support any access modes -- defer access call until later */
2667 if (opendata->o_res.access_supported == 0)
2671 if (fmode & FMODE_EXEC) {
2672 /* ONLY check for exec rights */
2673 if (S_ISDIR(state->inode->i_mode))
2674 mask = NFS4_ACCESS_LOOKUP;
2676 mask = NFS4_ACCESS_EXECUTE;
2677 } else if ((fmode & FMODE_READ) && !opendata->file_created)
2678 mask = NFS4_ACCESS_READ;
2680 nfs_access_set_mask(&cache, opendata->o_res.access_result);
2681 nfs_access_add_cache(state->inode, &cache, cred);
2683 flags = NFS4_ACCESS_READ | NFS4_ACCESS_EXECUTE | NFS4_ACCESS_LOOKUP;
2684 if ((mask & ~cache.mask & flags) == 0)
2691 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
2693 static int _nfs4_proc_open(struct nfs4_opendata *data,
2694 struct nfs_open_context *ctx)
2696 struct inode *dir = d_inode(data->dir);
2697 struct nfs_server *server = NFS_SERVER(dir);
2698 struct nfs_openargs *o_arg = &data->o_arg;
2699 struct nfs_openres *o_res = &data->o_res;
2702 status = nfs4_run_open_task(data, ctx);
2703 if (!data->rpc_done)
2706 if (status == -NFS4ERR_BADNAME &&
2707 !(o_arg->open_flags & O_CREAT))
2712 nfs_fattr_map_and_free_names(server, &data->f_attr);
2714 if (o_arg->open_flags & O_CREAT) {
2715 if (o_arg->open_flags & O_EXCL)
2716 data->file_created = true;
2717 else if (o_res->cinfo.before != o_res->cinfo.after)
2718 data->file_created = true;
2719 if (data->file_created ||
2720 inode_peek_iversion_raw(dir) != o_res->cinfo.after)
2721 nfs4_update_changeattr(dir, &o_res->cinfo,
2722 o_res->f_attr->time_start,
2723 NFS_INO_INVALID_DATA);
2725 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
2726 server->caps &= ~NFS_CAP_POSIX_LOCK;
2727 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
2728 status = _nfs4_proc_open_confirm(data);
2732 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) {
2733 struct nfs_fh *fh = &o_res->fh;
2735 nfs4_sequence_free_slot(&o_res->seq_res);
2736 if (o_arg->claim == NFS4_OPEN_CLAIM_FH)
2737 fh = NFS_FH(d_inode(data->dentry));
2738 nfs4_proc_getattr(server, fh, o_res->f_attr, NULL);
2745 * reclaim state on the server after a network partition.
2746 * Assumes caller holds the appropriate lock
2748 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
2750 struct nfs4_opendata *opendata;
2753 opendata = nfs4_open_recoverdata_alloc(ctx, state, NFS4_OPEN_CLAIM_FH);
2754 if (IS_ERR(opendata))
2755 return PTR_ERR(opendata);
2757 * We're not recovering a delegation, so ask for no delegation.
2758 * Otherwise the recovery thread could deadlock with an outstanding
2759 * delegation return.
2761 opendata->o_arg.open_flags = O_DIRECT;
2762 ret = nfs4_open_recover(opendata, state);
2764 d_drop(ctx->dentry);
2765 nfs4_opendata_put(opendata);
2769 static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
2771 struct nfs_server *server = NFS_SERVER(state->inode);
2772 struct nfs4_exception exception = { };
2776 err = _nfs4_open_expired(ctx, state);
2777 trace_nfs4_open_expired(ctx, 0, err);
2778 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2783 case -NFS4ERR_GRACE:
2784 case -NFS4ERR_DELAY:
2785 nfs4_handle_exception(server, err, &exception);
2788 } while (exception.retry);
2793 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2795 struct nfs_open_context *ctx;
2798 ctx = nfs4_state_find_open_context(state);
2801 ret = nfs4_do_open_expired(ctx, state);
2802 put_nfs_open_context(ctx);
2806 static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state,
2807 const nfs4_stateid *stateid)
2809 nfs_remove_bad_delegation(state->inode, stateid);
2810 nfs_state_clear_delegation(state);
2813 static void nfs40_clear_delegation_stateid(struct nfs4_state *state)
2815 if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL)
2816 nfs_finish_clear_delegation_stateid(state, NULL);
2819 static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2821 /* NFSv4.0 doesn't allow for delegation recovery on open expire */
2822 nfs40_clear_delegation_stateid(state);
2823 nfs_state_clear_open_state_flags(state);
2824 return nfs4_open_expired(sp, state);
2827 static int nfs40_test_and_free_expired_stateid(struct nfs_server *server,
2828 nfs4_stateid *stateid,
2829 const struct cred *cred)
2831 return -NFS4ERR_BAD_STATEID;
2834 #if defined(CONFIG_NFS_V4_1)
2835 static int nfs41_test_and_free_expired_stateid(struct nfs_server *server,
2836 nfs4_stateid *stateid,
2837 const struct cred *cred)
2841 switch (stateid->type) {
2844 case NFS4_INVALID_STATEID_TYPE:
2845 case NFS4_SPECIAL_STATEID_TYPE:
2846 return -NFS4ERR_BAD_STATEID;
2847 case NFS4_REVOKED_STATEID_TYPE:
2851 status = nfs41_test_stateid(server, stateid, cred);
2853 case -NFS4ERR_EXPIRED:
2854 case -NFS4ERR_ADMIN_REVOKED:
2855 case -NFS4ERR_DELEG_REVOKED:
2861 /* Ack the revoked state to the server */
2862 nfs41_free_stateid(server, stateid, cred, true);
2863 return -NFS4ERR_EXPIRED;
2866 static int nfs41_check_delegation_stateid(struct nfs4_state *state)
2868 struct nfs_server *server = NFS_SERVER(state->inode);
2869 nfs4_stateid stateid;
2870 struct nfs_delegation *delegation;
2871 const struct cred *cred = NULL;
2872 int status, ret = NFS_OK;
2874 /* Get the delegation credential for use by test/free_stateid */
2876 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
2877 if (delegation == NULL) {
2879 nfs_state_clear_delegation(state);
2883 spin_lock(&delegation->lock);
2884 nfs4_stateid_copy(&stateid, &delegation->stateid);
2886 if (!test_and_clear_bit(NFS_DELEGATION_TEST_EXPIRED,
2887 &delegation->flags)) {
2888 spin_unlock(&delegation->lock);
2893 if (delegation->cred)
2894 cred = get_cred(delegation->cred);
2895 spin_unlock(&delegation->lock);
2897 status = nfs41_test_and_free_expired_stateid(server, &stateid, cred);
2898 trace_nfs4_test_delegation_stateid(state, NULL, status);
2899 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID)
2900 nfs_finish_clear_delegation_stateid(state, &stateid);
2908 static void nfs41_delegation_recover_stateid(struct nfs4_state *state)
2912 if (test_bit(NFS_DELEGATED_STATE, &state->flags) &&
2913 nfs4_copy_delegation_stateid(state->inode, state->state,
2915 nfs4_stateid_match_other(&state->stateid, &tmp))
2916 nfs_state_set_delegation(state, &tmp, state->state);
2918 nfs_state_clear_delegation(state);
2922 * nfs41_check_expired_locks - possibly free a lock stateid
2924 * @state: NFSv4 state for an inode
2926 * Returns NFS_OK if recovery for this stateid is now finished.
2927 * Otherwise a negative NFS4ERR value is returned.
2929 static int nfs41_check_expired_locks(struct nfs4_state *state)
2931 int status, ret = NFS_OK;
2932 struct nfs4_lock_state *lsp, *prev = NULL;
2933 struct nfs_server *server = NFS_SERVER(state->inode);
2935 if (!test_bit(LK_STATE_IN_USE, &state->flags))
2938 spin_lock(&state->state_lock);
2939 list_for_each_entry(lsp, &state->lock_states, ls_locks) {
2940 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
2941 const struct cred *cred = lsp->ls_state->owner->so_cred;
2943 refcount_inc(&lsp->ls_count);
2944 spin_unlock(&state->state_lock);
2946 nfs4_put_lock_state(prev);
2949 status = nfs41_test_and_free_expired_stateid(server,
2952 trace_nfs4_test_lock_stateid(state, lsp, status);
2953 if (status == -NFS4ERR_EXPIRED ||
2954 status == -NFS4ERR_BAD_STATEID) {
2955 clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
2956 lsp->ls_stateid.type = NFS4_INVALID_STATEID_TYPE;
2957 if (!recover_lost_locks)
2958 set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
2959 } else if (status != NFS_OK) {
2961 nfs4_put_lock_state(prev);
2964 spin_lock(&state->state_lock);
2967 spin_unlock(&state->state_lock);
2968 nfs4_put_lock_state(prev);
2974 * nfs41_check_open_stateid - possibly free an open stateid
2976 * @state: NFSv4 state for an inode
2978 * Returns NFS_OK if recovery for this stateid is now finished.
2979 * Otherwise a negative NFS4ERR value is returned.
2981 static int nfs41_check_open_stateid(struct nfs4_state *state)
2983 struct nfs_server *server = NFS_SERVER(state->inode);
2984 nfs4_stateid *stateid = &state->open_stateid;
2985 const struct cred *cred = state->owner->so_cred;
2988 if (test_bit(NFS_OPEN_STATE, &state->flags) == 0)
2989 return -NFS4ERR_BAD_STATEID;
2990 status = nfs41_test_and_free_expired_stateid(server, stateid, cred);
2991 trace_nfs4_test_open_stateid(state, NULL, status);
2992 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) {
2993 nfs_state_clear_open_state_flags(state);
2994 stateid->type = NFS4_INVALID_STATEID_TYPE;
2997 if (nfs_open_stateid_recover_openmode(state))
2998 return -NFS4ERR_OPENMODE;
3002 static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
3006 status = nfs41_check_delegation_stateid(state);
3007 if (status != NFS_OK)
3009 nfs41_delegation_recover_stateid(state);
3011 status = nfs41_check_expired_locks(state);
3012 if (status != NFS_OK)
3014 status = nfs41_check_open_stateid(state);
3015 if (status != NFS_OK)
3016 status = nfs4_open_expired(sp, state);
3022 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
3023 * fields corresponding to attributes that were used to store the verifier.
3024 * Make sure we clobber those fields in the later setattr call
3026 static unsigned nfs4_exclusive_attrset(struct nfs4_opendata *opendata,
3027 struct iattr *sattr, struct nfs4_label **label)
3029 const __u32 *bitmask = opendata->o_arg.server->exclcreat_bitmask;
3034 for (i = 0; i < ARRAY_SIZE(attrset); i++) {
3035 attrset[i] = opendata->o_res.attrset[i];
3036 if (opendata->o_arg.createmode == NFS4_CREATE_EXCLUSIVE4_1)
3037 attrset[i] &= ~bitmask[i];
3040 ret = (opendata->o_arg.createmode == NFS4_CREATE_EXCLUSIVE) ?
3041 sattr->ia_valid : 0;
3043 if ((attrset[1] & (FATTR4_WORD1_TIME_ACCESS|FATTR4_WORD1_TIME_ACCESS_SET))) {
3044 if (sattr->ia_valid & ATTR_ATIME_SET)
3045 ret |= ATTR_ATIME_SET;
3050 if ((attrset[1] & (FATTR4_WORD1_TIME_MODIFY|FATTR4_WORD1_TIME_MODIFY_SET))) {
3051 if (sattr->ia_valid & ATTR_MTIME_SET)
3052 ret |= ATTR_MTIME_SET;
3057 if (!(attrset[2] & FATTR4_WORD2_SECURITY_LABEL))
3062 static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata,
3063 struct nfs_open_context *ctx)
3065 struct nfs4_state_owner *sp = opendata->owner;
3066 struct nfs_server *server = sp->so_server;
3067 struct dentry *dentry;
3068 struct nfs4_state *state;
3069 fmode_t acc_mode = _nfs4_ctx_to_accessmode(ctx);
3070 struct inode *dir = d_inode(opendata->dir);
3071 unsigned long dir_verifier;
3074 dir_verifier = nfs_save_change_attribute(dir);
3076 ret = _nfs4_proc_open(opendata, ctx);
3080 state = _nfs4_opendata_to_nfs4_state(opendata);
3081 ret = PTR_ERR(state);
3085 if (server->caps & NFS_CAP_POSIX_LOCK)
3086 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
3087 if (opendata->o_res.rflags & NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK)
3088 set_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags);
3089 if (opendata->o_res.rflags & NFS4_OPEN_RESULT_PRESERVE_UNLINKED)
3090 set_bit(NFS_INO_PRESERVE_UNLINKED, &NFS_I(state->inode)->flags);
3092 dentry = opendata->dentry;
3093 if (d_really_is_negative(dentry)) {
3094 struct dentry *alias;
3096 alias = d_exact_alias(dentry, state->inode);
3098 alias = d_splice_alias(igrab(state->inode), dentry);
3099 /* d_splice_alias() can't fail here - it's a non-directory */
3102 ctx->dentry = dentry = alias;
3106 switch(opendata->o_arg.claim) {
3109 case NFS4_OPEN_CLAIM_NULL:
3110 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
3111 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
3112 if (!opendata->rpc_done)
3114 if (opendata->o_res.delegation_type != 0)
3115 dir_verifier = nfs_save_change_attribute(dir);
3116 nfs_set_verifier(dentry, dir_verifier);
3119 /* Parse layoutget results before we check for access */
3120 pnfs_parse_lgopen(state->inode, opendata->lgp, ctx);
3122 ret = nfs4_opendata_access(sp->so_cred, opendata, state, acc_mode);
3126 if (d_inode(dentry) == state->inode)
3127 nfs_inode_attach_open_context(ctx);
3130 if (!opendata->cancelled) {
3131 if (opendata->lgp) {
3132 nfs4_lgopen_release(opendata->lgp);
3133 opendata->lgp = NULL;
3135 nfs4_sequence_free_slot(&opendata->o_res.seq_res);
3141 * Returns a referenced nfs4_state
3143 static int _nfs4_do_open(struct inode *dir,
3144 struct nfs_open_context *ctx,
3146 const struct nfs4_open_createattrs *c,
3149 struct nfs4_state_owner *sp;
3150 struct nfs4_state *state = NULL;
3151 struct nfs_server *server = NFS_SERVER(dir);
3152 struct nfs4_opendata *opendata;
3153 struct dentry *dentry = ctx->dentry;
3154 const struct cred *cred = ctx->cred;
3155 struct nfs4_threshold **ctx_th = &ctx->mdsthreshold;
3156 fmode_t fmode = _nfs4_ctx_to_openmode(ctx);
3157 enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL;
3158 struct iattr *sattr = c->sattr;
3159 struct nfs4_label *label = c->label;
3162 /* Protect against reboot recovery conflicts */
3164 sp = nfs4_get_state_owner(server, cred, GFP_KERNEL);
3166 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
3169 status = nfs4_client_recover_expired_lease(server->nfs_client);
3171 goto err_put_state_owner;
3172 if (d_really_is_positive(dentry))
3173 nfs4_return_incompatible_delegation(d_inode(dentry), fmode);
3175 if (d_really_is_positive(dentry))
3176 claim = NFS4_OPEN_CLAIM_FH;
3177 opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags,
3178 c, claim, GFP_KERNEL);
3179 if (opendata == NULL)
3180 goto err_put_state_owner;
3182 if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) {
3183 if (!opendata->f_attr.mdsthreshold) {
3184 opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc();
3185 if (!opendata->f_attr.mdsthreshold)
3186 goto err_opendata_put;
3188 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0];
3190 if (d_really_is_positive(dentry))
3191 opendata->state = nfs4_get_open_state(d_inode(dentry), sp);
3193 status = _nfs4_open_and_get_state(opendata, ctx);
3195 goto err_opendata_put;
3198 if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) &&
3199 (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) {
3200 unsigned attrs = nfs4_exclusive_attrset(opendata, sattr, &label);
3202 * send create attributes which was not set by open
3203 * with an extra setattr.
3205 if (attrs || label) {
3206 unsigned ia_old = sattr->ia_valid;
3208 sattr->ia_valid = attrs;
3209 nfs_fattr_init(opendata->o_res.f_attr);
3210 status = nfs4_do_setattr(state->inode, cred,
3211 opendata->o_res.f_attr, sattr,
3214 nfs_setattr_update_inode(state->inode, sattr,
3215 opendata->o_res.f_attr);
3216 nfs_setsecurity(state->inode, opendata->o_res.f_attr);
3218 sattr->ia_valid = ia_old;
3221 if (opened && opendata->file_created)
3224 if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) {
3225 *ctx_th = opendata->f_attr.mdsthreshold;
3226 opendata->f_attr.mdsthreshold = NULL;
3229 nfs4_opendata_put(opendata);
3230 nfs4_put_state_owner(sp);
3233 nfs4_opendata_put(opendata);
3234 err_put_state_owner:
3235 nfs4_put_state_owner(sp);
3241 static struct nfs4_state *nfs4_do_open(struct inode *dir,
3242 struct nfs_open_context *ctx,
3244 struct iattr *sattr,
3245 struct nfs4_label *label,
3248 struct nfs_server *server = NFS_SERVER(dir);
3249 struct nfs4_exception exception = {
3250 .interruptible = true,
3252 struct nfs4_state *res;
3253 struct nfs4_open_createattrs c = {
3257 [0] = (__u32)jiffies,
3258 [1] = (__u32)current->pid,
3264 status = _nfs4_do_open(dir, ctx, flags, &c, opened);
3266 trace_nfs4_open_file(ctx, flags, status);
3269 /* NOTE: BAD_SEQID means the server and client disagree about the
3270 * book-keeping w.r.t. state-changing operations
3271 * (OPEN/CLOSE/LOCK/LOCKU...)
3272 * It is actually a sign of a bug on the client or on the server.
3274 * If we receive a BAD_SEQID error in the particular case of
3275 * doing an OPEN, we assume that nfs_increment_open_seqid() will
3276 * have unhashed the old state_owner for us, and that we can
3277 * therefore safely retry using a new one. We should still warn
3278 * the user though...
3280 if (status == -NFS4ERR_BAD_SEQID) {
3281 pr_warn_ratelimited("NFS: v4 server %s "
3282 " returned a bad sequence-id error!\n",
3283 NFS_SERVER(dir)->nfs_client->cl_hostname);
3284 exception.retry = 1;
3288 * BAD_STATEID on OPEN means that the server cancelled our
3289 * state before it received the OPEN_CONFIRM.
3290 * Recover by retrying the request as per the discussion
3291 * on Page 181 of RFC3530.
3293 if (status == -NFS4ERR_BAD_STATEID) {
3294 exception.retry = 1;
3297 if (status == -NFS4ERR_EXPIRED) {
3298 nfs4_schedule_lease_recovery(server->nfs_client);
3299 exception.retry = 1;
3302 if (status == -EAGAIN) {
3303 /* We must have found a delegation */
3304 exception.retry = 1;
3307 if (nfs4_clear_cap_atomic_open_v1(server, status, &exception))
3309 res = ERR_PTR(nfs4_handle_exception(server,
3310 status, &exception));
3311 } while (exception.retry);
3315 static int _nfs4_do_setattr(struct inode *inode,
3316 struct nfs_setattrargs *arg,
3317 struct nfs_setattrres *res,
3318 const struct cred *cred,
3319 struct nfs_open_context *ctx)
3321 struct nfs_server *server = NFS_SERVER(inode);
3322 struct rpc_message msg = {
3323 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
3328 const struct cred *delegation_cred = NULL;
3329 unsigned long timestamp = jiffies;
3333 nfs_fattr_init(res->fattr);
3335 /* Servers should only apply open mode checks for file size changes */
3336 truncate = (arg->iap->ia_valid & ATTR_SIZE) ? true : false;
3338 nfs4_inode_make_writeable(inode);
3342 if (nfs4_copy_delegation_stateid(inode, FMODE_WRITE, &arg->stateid, &delegation_cred)) {
3343 /* Use that stateid */
3344 } else if (ctx != NULL && ctx->state) {
3345 struct nfs_lock_context *l_ctx;
3346 if (!nfs4_valid_open_stateid(ctx->state))
3348 l_ctx = nfs_get_lock_context(ctx);
3350 return PTR_ERR(l_ctx);
3351 status = nfs4_select_rw_stateid(ctx->state, FMODE_WRITE, l_ctx,
3352 &arg->stateid, &delegation_cred);
3353 nfs_put_lock_context(l_ctx);
3356 else if (status == -EAGAIN)
3360 nfs4_stateid_copy(&arg->stateid, &zero_stateid);
3362 if (delegation_cred)
3363 msg.rpc_cred = delegation_cred;
3365 status = nfs4_call_sync(server->client, server, &msg, &arg->seq_args, &res->seq_res, 1);
3367 put_cred(delegation_cred);
3368 if (status == 0 && ctx != NULL)
3369 renew_lease(server, timestamp);
3370 trace_nfs4_setattr(inode, &arg->stateid, status);
3374 static int nfs4_do_setattr(struct inode *inode, const struct cred *cred,
3375 struct nfs_fattr *fattr, struct iattr *sattr,
3376 struct nfs_open_context *ctx, struct nfs4_label *ilabel)
3378 struct nfs_server *server = NFS_SERVER(inode);
3379 __u32 bitmask[NFS4_BITMASK_SZ];
3380 struct nfs4_state *state = ctx ? ctx->state : NULL;
3381 struct nfs_setattrargs arg = {
3382 .fh = NFS_FH(inode),
3388 struct nfs_setattrres res = {
3392 struct nfs4_exception exception = {
3395 .stateid = &arg.stateid,
3397 unsigned long adjust_flags = NFS_INO_INVALID_CHANGE;
3400 if (sattr->ia_valid & (ATTR_MODE | ATTR_KILL_SUID | ATTR_KILL_SGID))
3401 adjust_flags |= NFS_INO_INVALID_MODE;
3402 if (sattr->ia_valid & (ATTR_UID | ATTR_GID))
3403 adjust_flags |= NFS_INO_INVALID_OTHER;
3406 nfs4_bitmap_copy_adjust(bitmask, nfs4_bitmask(server, fattr->label),
3407 inode, adjust_flags);
3409 err = _nfs4_do_setattr(inode, &arg, &res, cred, ctx);
3411 case -NFS4ERR_OPENMODE:
3412 if (!(sattr->ia_valid & ATTR_SIZE)) {
3413 pr_warn_once("NFSv4: server %s is incorrectly "
3414 "applying open mode checks to "
3415 "a SETATTR that is not "
3416 "changing file size.\n",
3417 server->nfs_client->cl_hostname);
3419 if (state && !(state->state & FMODE_WRITE)) {
3421 if (sattr->ia_valid & ATTR_OPEN)
3426 err = nfs4_handle_exception(server, err, &exception);
3427 } while (exception.retry);
3433 nfs4_wait_on_layoutreturn(struct inode *inode, struct rpc_task *task)
3435 if (inode == NULL || !nfs_have_layout(inode))
3438 return pnfs_wait_on_layoutreturn(inode, task);
3442 * Update the seqid of an open stateid
3444 static void nfs4_sync_open_stateid(nfs4_stateid *dst,
3445 struct nfs4_state *state)
3452 if (!nfs4_valid_open_stateid(state))
3454 seq = read_seqbegin(&state->seqlock);
3455 if (!nfs4_state_match_open_stateid_other(state, dst)) {
3456 nfs4_stateid_copy(dst, &state->open_stateid);
3457 if (read_seqretry(&state->seqlock, seq))
3461 seqid_open = state->open_stateid.seqid;
3462 if (read_seqretry(&state->seqlock, seq))
3465 dst_seqid = be32_to_cpu(dst->seqid);
3466 if ((s32)(dst_seqid - be32_to_cpu(seqid_open)) < 0)
3467 dst->seqid = seqid_open;
3473 * Update the seqid of an open stateid after receiving
3474 * NFS4ERR_OLD_STATEID
3476 static bool nfs4_refresh_open_old_stateid(nfs4_stateid *dst,
3477 struct nfs4_state *state)
3482 int seq, status = -EAGAIN;
3487 if (!nfs4_valid_open_stateid(state))
3489 seq = read_seqbegin(&state->seqlock);
3490 if (!nfs4_state_match_open_stateid_other(state, dst)) {
3491 if (read_seqretry(&state->seqlock, seq))
3496 write_seqlock(&state->seqlock);
3497 seqid_open = state->open_stateid.seqid;
3499 dst_seqid = be32_to_cpu(dst->seqid);
3501 /* Did another OPEN bump the state's seqid? try again: */
3502 if ((s32)(be32_to_cpu(seqid_open) - dst_seqid) > 0) {
3503 dst->seqid = seqid_open;
3504 write_sequnlock(&state->seqlock);
3509 /* server says we're behind but we haven't seen the update yet */
3510 set_bit(NFS_STATE_CHANGE_WAIT, &state->flags);
3511 prepare_to_wait(&state->waitq, &wait, TASK_KILLABLE);
3512 write_sequnlock(&state->seqlock);
3513 trace_nfs4_close_stateid_update_wait(state->inode, dst, 0);
3515 if (fatal_signal_pending(current))
3518 if (schedule_timeout(5*HZ) != 0)
3521 finish_wait(&state->waitq, &wait);
3525 if (status == -EINTR)
3528 /* we slept the whole 5 seconds, we must have lost a seqid */
3529 dst->seqid = cpu_to_be32(dst_seqid + 1);
3537 struct nfs4_closedata {
3538 struct inode *inode;
3539 struct nfs4_state *state;
3540 struct nfs_closeargs arg;
3541 struct nfs_closeres res;
3543 struct nfs4_layoutreturn_args arg;
3544 struct nfs4_layoutreturn_res res;
3545 struct nfs4_xdr_opaque_data ld_private;
3549 struct nfs_fattr fattr;
3550 unsigned long timestamp;
3553 static void nfs4_free_closedata(void *data)
3555 struct nfs4_closedata *calldata = data;
3556 struct nfs4_state_owner *sp = calldata->state->owner;
3557 struct super_block *sb = calldata->state->inode->i_sb;
3559 if (calldata->lr.roc)
3560 pnfs_roc_release(&calldata->lr.arg, &calldata->lr.res,
3561 calldata->res.lr_ret);
3562 nfs4_put_open_state(calldata->state);
3563 nfs_free_seqid(calldata->arg.seqid);
3564 nfs4_put_state_owner(sp);
3565 nfs_sb_deactive(sb);
3569 static void nfs4_close_done(struct rpc_task *task, void *data)
3571 struct nfs4_closedata *calldata = data;
3572 struct nfs4_state *state = calldata->state;
3573 struct nfs_server *server = NFS_SERVER(calldata->inode);
3574 nfs4_stateid *res_stateid = NULL;
3575 struct nfs4_exception exception = {
3577 .inode = calldata->inode,
3578 .stateid = &calldata->arg.stateid,
3581 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
3583 trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status);
3585 /* Handle Layoutreturn errors */
3586 if (pnfs_roc_done(task, &calldata->arg.lr_args, &calldata->res.lr_res,
3587 &calldata->res.lr_ret) == -EAGAIN)
3590 /* hmm. we are done with the inode, and in the process of freeing
3591 * the state_owner. we keep this around to process errors
3593 switch (task->tk_status) {
3595 res_stateid = &calldata->res.stateid;
3596 renew_lease(server, calldata->timestamp);
3598 case -NFS4ERR_ACCESS:
3599 if (calldata->arg.bitmask != NULL) {
3600 calldata->arg.bitmask = NULL;
3601 calldata->res.fattr = NULL;
3606 case -NFS4ERR_OLD_STATEID:
3607 /* Did we race with OPEN? */
3608 if (nfs4_refresh_open_old_stateid(&calldata->arg.stateid,
3612 case -NFS4ERR_ADMIN_REVOKED:
3613 case -NFS4ERR_STALE_STATEID:
3614 case -NFS4ERR_EXPIRED:
3615 nfs4_free_revoked_stateid(server,
3616 &calldata->arg.stateid,
3617 task->tk_msg.rpc_cred);
3619 case -NFS4ERR_BAD_STATEID:
3620 if (calldata->arg.fmode == 0)
3624 task->tk_status = nfs4_async_handle_exception(task,
3625 server, task->tk_status, &exception);
3626 if (exception.retry)
3629 nfs_clear_open_stateid(state, &calldata->arg.stateid,
3630 res_stateid, calldata->arg.fmode);
3632 task->tk_status = 0;
3633 nfs_release_seqid(calldata->arg.seqid);
3634 nfs_refresh_inode(calldata->inode, &calldata->fattr);
3635 dprintk("%s: ret = %d\n", __func__, task->tk_status);
3638 task->tk_status = 0;
3639 rpc_restart_call_prepare(task);
3643 static void nfs4_close_prepare(struct rpc_task *task, void *data)
3645 struct nfs4_closedata *calldata = data;
3646 struct nfs4_state *state = calldata->state;
3647 struct inode *inode = calldata->inode;
3648 struct nfs_server *server = NFS_SERVER(inode);
3649 struct pnfs_layout_hdr *lo;
3650 bool is_rdonly, is_wronly, is_rdwr;
3653 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
3656 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
3657 spin_lock(&state->owner->so_lock);
3658 is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags);
3659 is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags);
3660 is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags);
3661 /* Calculate the change in open mode */
3662 calldata->arg.fmode = 0;
3663 if (state->n_rdwr == 0) {
3664 if (state->n_rdonly == 0)
3665 call_close |= is_rdonly;
3667 calldata->arg.fmode |= FMODE_READ;
3668 if (state->n_wronly == 0)
3669 call_close |= is_wronly;
3671 calldata->arg.fmode |= FMODE_WRITE;
3672 if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE))
3673 call_close |= is_rdwr;
3675 calldata->arg.fmode |= FMODE_READ|FMODE_WRITE;
3677 nfs4_sync_open_stateid(&calldata->arg.stateid, state);
3678 if (!nfs4_valid_open_stateid(state))
3680 spin_unlock(&state->owner->so_lock);
3683 /* Note: exit _without_ calling nfs4_close_done */
3687 if (!calldata->lr.roc && nfs4_wait_on_layoutreturn(inode, task)) {
3688 nfs_release_seqid(calldata->arg.seqid);
3692 lo = calldata->arg.lr_args ? calldata->arg.lr_args->layout : NULL;
3693 if (lo && !pnfs_layout_is_valid(lo)) {
3694 calldata->arg.lr_args = NULL;
3695 calldata->res.lr_res = NULL;
3698 if (calldata->arg.fmode == 0)
3699 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
3701 if (calldata->arg.fmode == 0 || calldata->arg.fmode == FMODE_READ) {
3702 /* Close-to-open cache consistency revalidation */
3703 if (!nfs4_have_delegation(inode, FMODE_READ)) {
3704 nfs4_bitmask_set(calldata->arg.bitmask_store,
3705 server->cache_consistency_bitmask,
3707 calldata->arg.bitmask = calldata->arg.bitmask_store;
3709 calldata->arg.bitmask = NULL;
3712 calldata->arg.share_access =
3713 nfs4_map_atomic_open_share(NFS_SERVER(inode),
3714 calldata->arg.fmode, 0);
3716 if (calldata->res.fattr == NULL)
3717 calldata->arg.bitmask = NULL;
3718 else if (calldata->arg.bitmask == NULL)
3719 calldata->res.fattr = NULL;
3720 calldata->timestamp = jiffies;
3721 if (nfs4_setup_sequence(NFS_SERVER(inode)->nfs_client,
3722 &calldata->arg.seq_args,
3723 &calldata->res.seq_res,
3725 nfs_release_seqid(calldata->arg.seqid);
3728 task->tk_action = NULL;
3730 nfs4_sequence_done(task, &calldata->res.seq_res);
3733 static const struct rpc_call_ops nfs4_close_ops = {
3734 .rpc_call_prepare = nfs4_close_prepare,
3735 .rpc_call_done = nfs4_close_done,
3736 .rpc_release = nfs4_free_closedata,
3740 * It is possible for data to be read/written from a mem-mapped file
3741 * after the sys_close call (which hits the vfs layer as a flush).
3742 * This means that we can't safely call nfsv4 close on a file until
3743 * the inode is cleared. This in turn means that we are not good
3744 * NFSv4 citizens - we do not indicate to the server to update the file's
3745 * share state even when we are done with one of the three share
3746 * stateid's in the inode.
3748 * NOTE: Caller must be holding the sp->so_owner semaphore!
3750 int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
3752 struct nfs_server *server = NFS_SERVER(state->inode);
3753 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
3754 struct nfs4_closedata *calldata;
3755 struct nfs4_state_owner *sp = state->owner;
3756 struct rpc_task *task;
3757 struct rpc_message msg = {
3758 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
3759 .rpc_cred = state->owner->so_cred,
3761 struct rpc_task_setup task_setup_data = {
3762 .rpc_client = server->client,
3763 .rpc_message = &msg,
3764 .callback_ops = &nfs4_close_ops,
3765 .workqueue = nfsiod_workqueue,
3766 .flags = RPC_TASK_ASYNC | RPC_TASK_CRED_NOREF,
3768 int status = -ENOMEM;
3770 if (nfs_server_capable(state->inode, NFS_CAP_MOVEABLE))
3771 task_setup_data.flags |= RPC_TASK_MOVEABLE;
3773 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP,
3774 &task_setup_data.rpc_client, &msg);
3776 calldata = kzalloc(sizeof(*calldata), gfp_mask);
3777 if (calldata == NULL)
3779 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1, 0);
3780 calldata->inode = state->inode;
3781 calldata->state = state;
3782 calldata->arg.fh = NFS_FH(state->inode);
3783 if (!nfs4_copy_open_stateid(&calldata->arg.stateid, state))
3784 goto out_free_calldata;
3785 /* Serialization for the sequence id */
3786 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
3787 calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask);
3788 if (IS_ERR(calldata->arg.seqid))
3789 goto out_free_calldata;
3790 nfs_fattr_init(&calldata->fattr);
3791 calldata->arg.fmode = 0;
3792 calldata->lr.arg.ld_private = &calldata->lr.ld_private;
3793 calldata->res.fattr = &calldata->fattr;
3794 calldata->res.seqid = calldata->arg.seqid;
3795 calldata->res.server = server;
3796 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
3797 calldata->lr.roc = pnfs_roc(state->inode,
3798 &calldata->lr.arg, &calldata->lr.res, msg.rpc_cred);
3799 if (calldata->lr.roc) {
3800 calldata->arg.lr_args = &calldata->lr.arg;
3801 calldata->res.lr_res = &calldata->lr.res;
3803 nfs_sb_active(calldata->inode->i_sb);
3805 msg.rpc_argp = &calldata->arg;
3806 msg.rpc_resp = &calldata->res;
3807 task_setup_data.callback_data = calldata;
3808 task = rpc_run_task(&task_setup_data);
3810 return PTR_ERR(task);
3813 status = rpc_wait_for_completion_task(task);
3819 nfs4_put_open_state(state);
3820 nfs4_put_state_owner(sp);
3824 static struct inode *
3825 nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx,
3826 int open_flags, struct iattr *attr, int *opened)
3828 struct nfs4_state *state;
3829 struct nfs4_label l, *label;
3831 label = nfs4_label_init_security(dir, ctx->dentry, attr, &l);
3833 /* Protect against concurrent sillydeletes */
3834 state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened);
3836 nfs4_label_release_security(label);
3839 return ERR_CAST(state);
3840 return state->inode;
3843 static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
3845 if (ctx->state == NULL)
3848 nfs4_close_sync(ctx->state, _nfs4_ctx_to_openmode(ctx));
3850 nfs4_close_state(ctx->state, _nfs4_ctx_to_openmode(ctx));
3853 #define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL)
3854 #define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL)
3855 #define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_XATTR_SUPPORT - 1UL)
3857 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3859 u32 bitmask[3] = {}, minorversion = server->nfs_client->cl_minorversion;
3860 struct nfs4_server_caps_arg args = {
3864 struct nfs4_server_caps_res res = {};
3865 struct rpc_message msg = {
3866 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
3873 bitmask[0] = FATTR4_WORD0_SUPPORTED_ATTRS |
3874 FATTR4_WORD0_FH_EXPIRE_TYPE |
3875 FATTR4_WORD0_LINK_SUPPORT |
3876 FATTR4_WORD0_SYMLINK_SUPPORT |
3877 FATTR4_WORD0_ACLSUPPORT |
3878 FATTR4_WORD0_CASE_INSENSITIVE |
3879 FATTR4_WORD0_CASE_PRESERVING;
3881 bitmask[2] = FATTR4_WORD2_SUPPATTR_EXCLCREAT;
3883 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3885 /* Sanity check the server answers */
3886 switch (minorversion) {
3888 res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK;
3889 res.attr_bitmask[2] = 0;
3892 res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK;
3895 res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK;
3897 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
3898 server->caps &= ~(NFS_CAP_ACLS | NFS_CAP_HARDLINKS |
3899 NFS_CAP_SYMLINKS| NFS_CAP_SECURITY_LABEL);
3900 server->fattr_valid = NFS_ATTR_FATTR_V4;
3901 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL &&
3902 res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3903 server->caps |= NFS_CAP_ACLS;
3904 if (res.has_links != 0)
3905 server->caps |= NFS_CAP_HARDLINKS;
3906 if (res.has_symlinks != 0)
3907 server->caps |= NFS_CAP_SYMLINKS;
3908 if (res.case_insensitive)
3909 server->caps |= NFS_CAP_CASE_INSENSITIVE;
3910 if (res.case_preserving)
3911 server->caps |= NFS_CAP_CASE_PRESERVING;
3912 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
3913 if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL)
3914 server->caps |= NFS_CAP_SECURITY_LABEL;
3916 if (res.attr_bitmask[0] & FATTR4_WORD0_FS_LOCATIONS)
3917 server->caps |= NFS_CAP_FS_LOCATIONS;
3918 if (!(res.attr_bitmask[0] & FATTR4_WORD0_FILEID))
3919 server->fattr_valid &= ~NFS_ATTR_FATTR_FILEID;
3920 if (!(res.attr_bitmask[1] & FATTR4_WORD1_MODE))
3921 server->fattr_valid &= ~NFS_ATTR_FATTR_MODE;
3922 if (!(res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS))
3923 server->fattr_valid &= ~NFS_ATTR_FATTR_NLINK;
3924 if (!(res.attr_bitmask[1] & FATTR4_WORD1_OWNER))
3925 server->fattr_valid &= ~(NFS_ATTR_FATTR_OWNER |
3926 NFS_ATTR_FATTR_OWNER_NAME);
3927 if (!(res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP))
3928 server->fattr_valid &= ~(NFS_ATTR_FATTR_GROUP |
3929 NFS_ATTR_FATTR_GROUP_NAME);
3930 if (!(res.attr_bitmask[1] & FATTR4_WORD1_SPACE_USED))
3931 server->fattr_valid &= ~NFS_ATTR_FATTR_SPACE_USED;
3932 if (!(res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS))
3933 server->fattr_valid &= ~NFS_ATTR_FATTR_ATIME;
3934 if (!(res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA))
3935 server->fattr_valid &= ~NFS_ATTR_FATTR_CTIME;
3936 if (!(res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY))
3937 server->fattr_valid &= ~NFS_ATTR_FATTR_MTIME;
3938 memcpy(server->attr_bitmask_nl, res.attr_bitmask,
3939 sizeof(server->attr_bitmask));
3940 server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
3942 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
3943 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
3944 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
3945 server->cache_consistency_bitmask[2] = 0;
3947 /* Avoid a regression due to buggy server */
3948 for (i = 0; i < ARRAY_SIZE(res.exclcreat_bitmask); i++)
3949 res.exclcreat_bitmask[i] &= res.attr_bitmask[i];
3950 memcpy(server->exclcreat_bitmask, res.exclcreat_bitmask,
3951 sizeof(server->exclcreat_bitmask));
3953 server->acl_bitmask = res.acl_bitmask;
3954 server->fh_expire_type = res.fh_expire_type;
3960 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3962 struct nfs4_exception exception = {
3963 .interruptible = true,
3967 nfs4_server_set_init_caps(server);
3969 err = nfs4_handle_exception(server,
3970 _nfs4_server_capabilities(server, fhandle),
3972 } while (exception.retry);
3976 static void test_fs_location_for_trunking(struct nfs4_fs_location *location,
3977 struct nfs_client *clp,
3978 struct nfs_server *server)
3982 for (i = 0; i < location->nservers; i++) {
3983 struct nfs4_string *srv_loc = &location->servers[i];
3984 struct sockaddr_storage addr;
3986 struct xprt_create xprt_args = {
3990 struct nfs4_add_xprt_data xprtdata = {
3993 struct rpc_add_xprt_test rpcdata = {
3994 .add_xprt_test = clp->cl_mvops->session_trunk,
3997 char *servername = NULL;
4002 addrlen = nfs_parse_server_name(srv_loc->data, srv_loc->len,
4003 &addr, sizeof(addr),
4004 clp->cl_net, server->port);
4007 xprt_args.dstaddr = (struct sockaddr *)&addr;
4008 xprt_args.addrlen = addrlen;
4009 servername = kmalloc(srv_loc->len + 1, GFP_KERNEL);
4012 memcpy(servername, srv_loc->data, srv_loc->len);
4013 servername[srv_loc->len] = '\0';
4014 xprt_args.servername = servername;
4016 xprtdata.cred = nfs4_get_clid_cred(clp);
4017 rpc_clnt_add_xprt(clp->cl_rpcclient, &xprt_args,
4018 rpc_clnt_setup_test_and_add_xprt,
4021 put_cred(xprtdata.cred);
4026 static bool _is_same_nfs4_pathname(struct nfs4_pathname *path1,
4027 struct nfs4_pathname *path2)
4031 if (path1->ncomponents != path2->ncomponents)
4033 for (i = 0; i < path1->ncomponents; i++) {
4034 if (path1->components[i].len != path2->components[i].len)
4036 if (memcmp(path1->components[i].data, path2->components[i].data,
4037 path1->components[i].len))
4043 static int _nfs4_discover_trunking(struct nfs_server *server,
4044 struct nfs_fh *fhandle)
4046 struct nfs4_fs_locations *locations = NULL;
4048 const struct cred *cred;
4049 struct nfs_client *clp = server->nfs_client;
4050 const struct nfs4_state_maintenance_ops *ops =
4051 clp->cl_mvops->state_renewal_ops;
4052 int status = -ENOMEM, i;
4054 cred = ops->get_state_renewal_cred(clp);
4056 cred = nfs4_get_clid_cred(clp);
4061 page = alloc_page(GFP_KERNEL);
4064 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
4067 locations->fattr = nfs_alloc_fattr();
4068 if (!locations->fattr)
4071 status = nfs4_proc_get_locations(server, fhandle, locations, page,
4076 for (i = 0; i < locations->nlocations; i++) {
4077 if (!_is_same_nfs4_pathname(&locations->fs_path,
4078 &locations->locations[i].rootpath))
4080 test_fs_location_for_trunking(&locations->locations[i], clp,
4084 kfree(locations->fattr);
4094 static int nfs4_discover_trunking(struct nfs_server *server,
4095 struct nfs_fh *fhandle)
4097 struct nfs4_exception exception = {
4098 .interruptible = true,
4100 struct nfs_client *clp = server->nfs_client;
4103 if (!nfs4_has_session(clp))
4106 err = nfs4_handle_exception(server,
4107 _nfs4_discover_trunking(server, fhandle),
4109 } while (exception.retry);
4114 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
4115 struct nfs_fsinfo *info)
4118 struct nfs4_lookup_root_arg args = {
4121 struct nfs4_lookup_res res = {
4123 .fattr = info->fattr,
4126 struct rpc_message msg = {
4127 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
4132 bitmask[0] = nfs4_fattr_bitmap[0];
4133 bitmask[1] = nfs4_fattr_bitmap[1];
4135 * Process the label in the upcoming getfattr
4137 bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL;
4139 nfs_fattr_init(info->fattr);
4140 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4143 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
4144 struct nfs_fsinfo *info)
4146 struct nfs4_exception exception = {
4147 .interruptible = true,
4151 err = _nfs4_lookup_root(server, fhandle, info);
4152 trace_nfs4_lookup_root(server, fhandle, info->fattr, err);
4155 case -NFS4ERR_WRONGSEC:
4158 err = nfs4_handle_exception(server, err, &exception);
4160 } while (exception.retry);
4165 static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
4166 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
4168 struct rpc_auth_create_args auth_args = {
4169 .pseudoflavor = flavor,
4171 struct rpc_auth *auth;
4173 auth = rpcauth_create(&auth_args, server->client);
4176 return nfs4_lookup_root(server, fhandle, info);
4180 * Retry pseudoroot lookup with various security flavors. We do this when:
4182 * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC
4183 * NFSv4.1: the server does not support the SECINFO_NO_NAME operation
4185 * Returns zero on success, or a negative NFS4ERR value, or a
4186 * negative errno value.
4188 static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
4189 struct nfs_fsinfo *info)
4191 /* Per 3530bis 15.33.5 */
4192 static const rpc_authflavor_t flav_array[] = {
4196 RPC_AUTH_UNIX, /* courtesy */
4199 int status = -EPERM;
4202 if (server->auth_info.flavor_len > 0) {
4203 /* try each flavor specified by user */
4204 for (i = 0; i < server->auth_info.flavor_len; i++) {
4205 status = nfs4_lookup_root_sec(server, fhandle, info,
4206 server->auth_info.flavors[i]);
4207 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
4212 /* no flavors specified by user, try default list */
4213 for (i = 0; i < ARRAY_SIZE(flav_array); i++) {
4214 status = nfs4_lookup_root_sec(server, fhandle, info,
4216 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
4223 * -EACCES could mean that the user doesn't have correct permissions
4224 * to access the mount. It could also mean that we tried to mount
4225 * with a gss auth flavor, but rpc.gssd isn't running. Either way,
4226 * existing mount programs don't handle -EACCES very well so it should
4227 * be mapped to -EPERM instead.
4229 if (status == -EACCES)
4235 * nfs4_proc_get_rootfh - get file handle for server's pseudoroot
4236 * @server: initialized nfs_server handle
4237 * @fhandle: we fill in the pseudo-fs root file handle
4238 * @info: we fill in an FSINFO struct
4239 * @auth_probe: probe the auth flavours
4241 * Returns zero on success, or a negative errno.
4243 int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle,
4244 struct nfs_fsinfo *info,
4250 status = nfs4_lookup_root(server, fhandle, info);
4252 if (auth_probe || status == NFS4ERR_WRONGSEC)
4253 status = server->nfs_client->cl_mvops->find_root_sec(server,
4257 status = nfs4_server_capabilities(server, fhandle);
4259 status = nfs4_do_fsinfo(server, fhandle, info);
4261 return nfs4_map_errors(status);
4264 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh,
4265 struct nfs_fsinfo *info)
4268 struct nfs_fattr *fattr = info->fattr;
4270 error = nfs4_server_capabilities(server, mntfh);
4272 dprintk("nfs4_get_root: getcaps error = %d\n", -error);
4276 error = nfs4_proc_getattr(server, mntfh, fattr, NULL);
4278 dprintk("nfs4_get_root: getattr error = %d\n", -error);
4282 if (fattr->valid & NFS_ATTR_FATTR_FSID &&
4283 !nfs_fsid_equal(&server->fsid, &fattr->fsid))
4284 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
4291 * Get locations and (maybe) other attributes of a referral.
4292 * Note that we'll actually follow the referral later when
4293 * we detect fsid mismatch in inode revalidation
4295 static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir,
4296 const struct qstr *name, struct nfs_fattr *fattr,
4297 struct nfs_fh *fhandle)
4299 int status = -ENOMEM;
4300 struct page *page = NULL;
4301 struct nfs4_fs_locations *locations = NULL;
4303 page = alloc_page(GFP_KERNEL);
4306 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
4307 if (locations == NULL)
4310 locations->fattr = fattr;
4312 status = nfs4_proc_fs_locations(client, dir, name, locations, page);
4317 * If the fsid didn't change, this is a migration event, not a
4318 * referral. Cause us to drop into the exception handler, which
4319 * will kick off migration recovery.
4321 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &fattr->fsid)) {
4322 dprintk("%s: server did not return a different fsid for"
4323 " a referral at %s\n", __func__, name->name);
4324 status = -NFS4ERR_MOVED;
4327 /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */
4328 nfs_fixup_referral_attributes(fattr);
4329 memset(fhandle, 0, sizeof(struct nfs_fh));
4337 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
4338 struct nfs_fattr *fattr, struct inode *inode)
4340 __u32 bitmask[NFS4_BITMASK_SZ];
4341 struct nfs4_getattr_arg args = {
4345 struct nfs4_getattr_res res = {
4349 struct rpc_message msg = {
4350 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
4354 unsigned short task_flags = 0;
4356 if (nfs4_has_session(server->nfs_client))
4357 task_flags = RPC_TASK_MOVEABLE;
4359 /* Is this is an attribute revalidation, subject to softreval? */
4360 if (inode && (server->flags & NFS_MOUNT_SOFTREVAL))
4361 task_flags |= RPC_TASK_TIMEOUT;
4363 nfs4_bitmap_copy_adjust(bitmask, nfs4_bitmask(server, fattr->label), inode, 0);
4364 nfs_fattr_init(fattr);
4365 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 0);
4366 return nfs4_do_call_sync(server->client, server, &msg,
4367 &args.seq_args, &res.seq_res, task_flags);
4370 int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
4371 struct nfs_fattr *fattr, struct inode *inode)
4373 struct nfs4_exception exception = {
4374 .interruptible = true,
4378 err = _nfs4_proc_getattr(server, fhandle, fattr, inode);
4379 trace_nfs4_getattr(server, fhandle, fattr, err);
4380 err = nfs4_handle_exception(server, err,
4382 } while (exception.retry);
4387 * The file is not closed if it is opened due to the a request to change
4388 * the size of the file. The open call will not be needed once the
4389 * VFS layer lookup-intents are implemented.
4391 * Close is called when the inode is destroyed.
4392 * If we haven't opened the file for O_WRONLY, we
4393 * need to in the size_change case to obtain a stateid.
4396 * Because OPEN is always done by name in nfsv4, it is
4397 * possible that we opened a different file by the same
4398 * name. We can recognize this race condition, but we
4399 * can't do anything about it besides returning an error.
4401 * This will be fixed with VFS changes (lookup-intent).
4404 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
4405 struct iattr *sattr)
4407 struct inode *inode = d_inode(dentry);
4408 const struct cred *cred = NULL;
4409 struct nfs_open_context *ctx = NULL;
4412 if (pnfs_ld_layoutret_on_setattr(inode) &&
4413 sattr->ia_valid & ATTR_SIZE &&
4414 sattr->ia_size < i_size_read(inode))
4415 pnfs_commit_and_return_layout(inode);
4417 nfs_fattr_init(fattr);
4419 /* Deal with open(O_TRUNC) */
4420 if (sattr->ia_valid & ATTR_OPEN)
4421 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME);
4423 /* Optimization: if the end result is no change, don't RPC */
4424 if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0)
4427 /* Search for an existing open(O_WRITE) file */
4428 if (sattr->ia_valid & ATTR_FILE) {
4430 ctx = nfs_file_open_context(sattr->ia_file);
4435 /* Return any delegations if we're going to change ACLs */
4436 if ((sattr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0)
4437 nfs4_inode_make_writeable(inode);
4439 status = nfs4_do_setattr(inode, cred, fattr, sattr, ctx, NULL);
4441 nfs_setattr_update_inode(inode, sattr, fattr);
4442 nfs_setsecurity(inode, fattr);
4447 static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
4448 struct dentry *dentry, struct nfs_fh *fhandle,
4449 struct nfs_fattr *fattr)
4451 struct nfs_server *server = NFS_SERVER(dir);
4453 struct nfs4_lookup_arg args = {
4454 .bitmask = server->attr_bitmask,
4455 .dir_fh = NFS_FH(dir),
4456 .name = &dentry->d_name,
4458 struct nfs4_lookup_res res = {
4463 struct rpc_message msg = {
4464 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
4468 unsigned short task_flags = 0;
4470 if (nfs_server_capable(dir, NFS_CAP_MOVEABLE))
4471 task_flags = RPC_TASK_MOVEABLE;
4473 /* Is this is an attribute revalidation, subject to softreval? */
4474 if (nfs_lookup_is_soft_revalidate(dentry))
4475 task_flags |= RPC_TASK_TIMEOUT;
4477 args.bitmask = nfs4_bitmask(server, fattr->label);
4479 nfs_fattr_init(fattr);
4481 dprintk("NFS call lookup %pd2\n", dentry);
4482 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 0);
4483 status = nfs4_do_call_sync(clnt, server, &msg,
4484 &args.seq_args, &res.seq_res, task_flags);
4485 dprintk("NFS reply lookup: %d\n", status);
4489 static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr)
4491 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4492 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT;
4493 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4497 static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir,
4498 struct dentry *dentry, struct nfs_fh *fhandle,
4499 struct nfs_fattr *fattr)
4501 struct nfs4_exception exception = {
4502 .interruptible = true,
4504 struct rpc_clnt *client = *clnt;
4505 const struct qstr *name = &dentry->d_name;
4508 err = _nfs4_proc_lookup(client, dir, dentry, fhandle, fattr);
4509 trace_nfs4_lookup(dir, name, err);
4511 case -NFS4ERR_BADNAME:
4514 case -NFS4ERR_MOVED:
4515 err = nfs4_get_referral(client, dir, name, fattr, fhandle);
4516 if (err == -NFS4ERR_MOVED)
4517 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
4519 case -NFS4ERR_WRONGSEC:
4521 if (client != *clnt)
4523 client = nfs4_negotiate_security(client, dir, name);
4525 return PTR_ERR(client);
4527 exception.retry = 1;
4530 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
4532 } while (exception.retry);
4537 else if (client != *clnt)
4538 rpc_shutdown_client(client);
4543 static int nfs4_proc_lookup(struct inode *dir, struct dentry *dentry,
4544 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
4547 struct rpc_clnt *client = NFS_CLIENT(dir);
4549 status = nfs4_proc_lookup_common(&client, dir, dentry, fhandle, fattr);
4550 if (client != NFS_CLIENT(dir)) {
4551 rpc_shutdown_client(client);
4552 nfs_fixup_secinfo_attributes(fattr);
4558 nfs4_proc_lookup_mountpoint(struct inode *dir, struct dentry *dentry,
4559 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
4561 struct rpc_clnt *client = NFS_CLIENT(dir);
4564 status = nfs4_proc_lookup_common(&client, dir, dentry, fhandle, fattr);
4566 return ERR_PTR(status);
4567 return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client;
4570 static int _nfs4_proc_lookupp(struct inode *inode,
4571 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
4573 struct rpc_clnt *clnt = NFS_CLIENT(inode);
4574 struct nfs_server *server = NFS_SERVER(inode);
4576 struct nfs4_lookupp_arg args = {
4577 .bitmask = server->attr_bitmask,
4578 .fh = NFS_FH(inode),
4580 struct nfs4_lookupp_res res = {
4585 struct rpc_message msg = {
4586 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUPP],
4590 unsigned short task_flags = 0;
4592 if (NFS_SERVER(inode)->flags & NFS_MOUNT_SOFTREVAL)
4593 task_flags |= RPC_TASK_TIMEOUT;
4595 args.bitmask = nfs4_bitmask(server, fattr->label);
4597 nfs_fattr_init(fattr);
4599 dprintk("NFS call lookupp ino=0x%lx\n", inode->i_ino);
4600 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args,
4601 &res.seq_res, task_flags);
4602 dprintk("NFS reply lookupp: %d\n", status);
4606 static int nfs4_proc_lookupp(struct inode *inode, struct nfs_fh *fhandle,
4607 struct nfs_fattr *fattr)
4609 struct nfs4_exception exception = {
4610 .interruptible = true,
4614 err = _nfs4_proc_lookupp(inode, fhandle, fattr);
4615 trace_nfs4_lookupp(inode, err);
4616 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4618 } while (exception.retry);
4622 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry,
4623 const struct cred *cred)
4625 struct nfs_server *server = NFS_SERVER(inode);
4626 struct nfs4_accessargs args = {
4627 .fh = NFS_FH(inode),
4628 .access = entry->mask,
4630 struct nfs4_accessres res = {
4633 struct rpc_message msg = {
4634 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
4641 if (!nfs4_have_delegation(inode, FMODE_READ)) {
4642 res.fattr = nfs_alloc_fattr();
4643 if (res.fattr == NULL)
4645 args.bitmask = server->cache_consistency_bitmask;
4647 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4649 nfs_access_set_mask(entry, res.access);
4651 nfs_refresh_inode(inode, res.fattr);
4653 nfs_free_fattr(res.fattr);
4657 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry,
4658 const struct cred *cred)
4660 struct nfs4_exception exception = {
4661 .interruptible = true,
4665 err = _nfs4_proc_access(inode, entry, cred);
4666 trace_nfs4_access(inode, err);
4667 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4669 } while (exception.retry);
4674 * TODO: For the time being, we don't try to get any attributes
4675 * along with any of the zero-copy operations READ, READDIR,
4678 * In the case of the first three, we want to put the GETATTR
4679 * after the read-type operation -- this is because it is hard
4680 * to predict the length of a GETATTR response in v4, and thus
4681 * align the READ data correctly. This means that the GETATTR
4682 * may end up partially falling into the page cache, and we should
4683 * shift it into the 'tail' of the xdr_buf before processing.
4684 * To do this efficiently, we need to know the total length
4685 * of data received, which doesn't seem to be available outside
4688 * In the case of WRITE, we also want to put the GETATTR after
4689 * the operation -- in this case because we want to make sure
4690 * we get the post-operation mtime and size.
4692 * Both of these changes to the XDR layer would in fact be quite
4693 * minor, but I decided to leave them for a subsequent patch.
4695 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
4696 unsigned int pgbase, unsigned int pglen)
4698 struct nfs4_readlink args = {
4699 .fh = NFS_FH(inode),
4704 struct nfs4_readlink_res res;
4705 struct rpc_message msg = {
4706 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
4711 return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0);
4714 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
4715 unsigned int pgbase, unsigned int pglen)
4717 struct nfs4_exception exception = {
4718 .interruptible = true,
4722 err = _nfs4_proc_readlink(inode, page, pgbase, pglen);
4723 trace_nfs4_readlink(inode, err);
4724 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4726 } while (exception.retry);
4731 * This is just for mknod. open(O_CREAT) will always do ->open_context().
4734 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
4737 struct nfs_server *server = NFS_SERVER(dir);
4738 struct nfs4_label l, *ilabel;
4739 struct nfs_open_context *ctx;
4740 struct nfs4_state *state;
4743 ctx = alloc_nfs_open_context(dentry, FMODE_READ, NULL);
4745 return PTR_ERR(ctx);
4747 ilabel = nfs4_label_init_security(dir, dentry, sattr, &l);
4749 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4750 sattr->ia_mode &= ~current_umask();
4751 state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, NULL);
4752 if (IS_ERR(state)) {
4753 status = PTR_ERR(state);
4757 nfs4_label_release_security(ilabel);
4758 put_nfs_open_context(ctx);
4763 _nfs4_proc_remove(struct inode *dir, const struct qstr *name, u32 ftype)
4765 struct nfs_server *server = NFS_SERVER(dir);
4766 struct nfs_removeargs args = {
4770 struct nfs_removeres res = {
4773 struct rpc_message msg = {
4774 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
4778 unsigned long timestamp = jiffies;
4781 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
4783 spin_lock(&dir->i_lock);
4784 /* Removing a directory decrements nlink in the parent */
4785 if (ftype == NF4DIR && dir->i_nlink > 2)
4786 nfs4_dec_nlink_locked(dir);
4787 nfs4_update_changeattr_locked(dir, &res.cinfo, timestamp,
4788 NFS_INO_INVALID_DATA);
4789 spin_unlock(&dir->i_lock);
4794 static int nfs4_proc_remove(struct inode *dir, struct dentry *dentry)
4796 struct nfs4_exception exception = {
4797 .interruptible = true,
4799 struct inode *inode = d_inode(dentry);
4803 if (inode->i_nlink == 1)
4804 nfs4_inode_return_delegation(inode);
4806 nfs4_inode_make_writeable(inode);
4809 err = _nfs4_proc_remove(dir, &dentry->d_name, NF4REG);
4810 trace_nfs4_remove(dir, &dentry->d_name, err);
4811 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4813 } while (exception.retry);
4817 static int nfs4_proc_rmdir(struct inode *dir, const struct qstr *name)
4819 struct nfs4_exception exception = {
4820 .interruptible = true,
4825 err = _nfs4_proc_remove(dir, name, NF4DIR);
4826 trace_nfs4_remove(dir, name, err);
4827 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4829 } while (exception.retry);
4833 static void nfs4_proc_unlink_setup(struct rpc_message *msg,
4834 struct dentry *dentry,
4835 struct inode *inode)
4837 struct nfs_removeargs *args = msg->rpc_argp;
4838 struct nfs_removeres *res = msg->rpc_resp;
4840 res->server = NFS_SB(dentry->d_sb);
4841 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
4842 nfs4_init_sequence(&args->seq_args, &res->seq_res, 1, 0);
4844 nfs_fattr_init(res->dir_attr);
4847 nfs4_inode_return_delegation(inode);
4848 nfs_d_prune_case_insensitive_aliases(inode);
4852 static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
4854 nfs4_setup_sequence(NFS_SB(data->dentry->d_sb)->nfs_client,
4855 &data->args.seq_args,
4860 static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
4862 struct nfs_unlinkdata *data = task->tk_calldata;
4863 struct nfs_removeres *res = &data->res;
4865 if (!nfs4_sequence_done(task, &res->seq_res))
4867 if (nfs4_async_handle_error(task, res->server, NULL,
4868 &data->timeout) == -EAGAIN)
4870 if (task->tk_status == 0)
4871 nfs4_update_changeattr(dir, &res->cinfo,
4872 res->dir_attr->time_start,
4873 NFS_INO_INVALID_DATA);
4877 static void nfs4_proc_rename_setup(struct rpc_message *msg,
4878 struct dentry *old_dentry,
4879 struct dentry *new_dentry)
4881 struct nfs_renameargs *arg = msg->rpc_argp;
4882 struct nfs_renameres *res = msg->rpc_resp;
4883 struct inode *old_inode = d_inode(old_dentry);
4884 struct inode *new_inode = d_inode(new_dentry);
4887 nfs4_inode_make_writeable(old_inode);
4889 nfs4_inode_return_delegation(new_inode);
4890 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
4891 res->server = NFS_SB(old_dentry->d_sb);
4892 nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1, 0);
4895 static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
4897 nfs4_setup_sequence(NFS_SERVER(data->old_dir)->nfs_client,
4898 &data->args.seq_args,
4903 static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
4904 struct inode *new_dir)
4906 struct nfs_renamedata *data = task->tk_calldata;
4907 struct nfs_renameres *res = &data->res;
4909 if (!nfs4_sequence_done(task, &res->seq_res))
4911 if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN)
4914 if (task->tk_status == 0) {
4915 nfs_d_prune_case_insensitive_aliases(d_inode(data->old_dentry));
4916 if (new_dir != old_dir) {
4917 /* Note: If we moved a directory, nlink will change */
4918 nfs4_update_changeattr(old_dir, &res->old_cinfo,
4919 res->old_fattr->time_start,
4920 NFS_INO_INVALID_NLINK |
4921 NFS_INO_INVALID_DATA);
4922 nfs4_update_changeattr(new_dir, &res->new_cinfo,
4923 res->new_fattr->time_start,
4924 NFS_INO_INVALID_NLINK |
4925 NFS_INO_INVALID_DATA);
4927 nfs4_update_changeattr(old_dir, &res->old_cinfo,
4928 res->old_fattr->time_start,
4929 NFS_INO_INVALID_DATA);
4934 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
4936 struct nfs_server *server = NFS_SERVER(inode);
4937 __u32 bitmask[NFS4_BITMASK_SZ];
4938 struct nfs4_link_arg arg = {
4939 .fh = NFS_FH(inode),
4940 .dir_fh = NFS_FH(dir),
4944 struct nfs4_link_res res = {
4947 struct rpc_message msg = {
4948 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
4952 int status = -ENOMEM;
4954 res.fattr = nfs_alloc_fattr_with_label(server);
4955 if (res.fattr == NULL)
4958 nfs4_inode_make_writeable(inode);
4959 nfs4_bitmap_copy_adjust(bitmask, nfs4_bitmask(server, res.fattr->label), inode,
4960 NFS_INO_INVALID_CHANGE);
4961 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
4963 nfs4_update_changeattr(dir, &res.cinfo, res.fattr->time_start,
4964 NFS_INO_INVALID_DATA);
4965 nfs4_inc_nlink(inode);
4966 status = nfs_post_op_update_inode(inode, res.fattr);
4968 nfs_setsecurity(inode, res.fattr);
4972 nfs_free_fattr(res.fattr);
4976 static int nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
4978 struct nfs4_exception exception = {
4979 .interruptible = true,
4983 err = nfs4_handle_exception(NFS_SERVER(inode),
4984 _nfs4_proc_link(inode, dir, name),
4986 } while (exception.retry);
4990 struct nfs4_createdata {
4991 struct rpc_message msg;
4992 struct nfs4_create_arg arg;
4993 struct nfs4_create_res res;
4995 struct nfs_fattr fattr;
4998 static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
4999 const struct qstr *name, struct iattr *sattr, u32 ftype)
5001 struct nfs4_createdata *data;
5003 data = kzalloc(sizeof(*data), GFP_KERNEL);
5005 struct nfs_server *server = NFS_SERVER(dir);
5007 data->fattr.label = nfs4_label_alloc(server, GFP_KERNEL);
5008 if (IS_ERR(data->fattr.label))
5011 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
5012 data->msg.rpc_argp = &data->arg;
5013 data->msg.rpc_resp = &data->res;
5014 data->arg.dir_fh = NFS_FH(dir);
5015 data->arg.server = server;
5016 data->arg.name = name;
5017 data->arg.attrs = sattr;
5018 data->arg.ftype = ftype;
5019 data->arg.bitmask = nfs4_bitmask(server, data->fattr.label);
5020 data->arg.umask = current_umask();
5021 data->res.server = server;
5022 data->res.fh = &data->fh;
5023 data->res.fattr = &data->fattr;
5024 nfs_fattr_init(data->res.fattr);
5032 static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
5034 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
5035 &data->arg.seq_args, &data->res.seq_res, 1);
5037 spin_lock(&dir->i_lock);
5038 /* Creating a directory bumps nlink in the parent */
5039 if (data->arg.ftype == NF4DIR)
5040 nfs4_inc_nlink_locked(dir);
5041 nfs4_update_changeattr_locked(dir, &data->res.dir_cinfo,
5042 data->res.fattr->time_start,
5043 NFS_INO_INVALID_DATA);
5044 spin_unlock(&dir->i_lock);
5045 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
5050 static void nfs4_free_createdata(struct nfs4_createdata *data)
5052 nfs4_label_free(data->fattr.label);
5056 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
5057 struct folio *folio, unsigned int len, struct iattr *sattr,
5058 struct nfs4_label *label)
5060 struct page *page = &folio->page;
5061 struct nfs4_createdata *data;
5062 int status = -ENAMETOOLONG;
5064 if (len > NFS4_MAXPATHLEN)
5068 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
5072 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
5073 data->arg.u.symlink.pages = &page;
5074 data->arg.u.symlink.len = len;
5075 data->arg.label = label;
5077 status = nfs4_do_create(dir, dentry, data);
5079 nfs4_free_createdata(data);
5084 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
5085 struct folio *folio, unsigned int len, struct iattr *sattr)
5087 struct nfs4_exception exception = {
5088 .interruptible = true,
5090 struct nfs4_label l, *label;
5093 label = nfs4_label_init_security(dir, dentry, sattr, &l);
5096 err = _nfs4_proc_symlink(dir, dentry, folio, len, sattr, label);
5097 trace_nfs4_symlink(dir, &dentry->d_name, err);
5098 err = nfs4_handle_exception(NFS_SERVER(dir), err,
5100 } while (exception.retry);
5102 nfs4_label_release_security(label);
5106 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
5107 struct iattr *sattr, struct nfs4_label *label)
5109 struct nfs4_createdata *data;
5110 int status = -ENOMEM;
5112 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
5116 data->arg.label = label;
5117 status = nfs4_do_create(dir, dentry, data);
5119 nfs4_free_createdata(data);
5124 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
5125 struct iattr *sattr)
5127 struct nfs_server *server = NFS_SERVER(dir);
5128 struct nfs4_exception exception = {
5129 .interruptible = true,
5131 struct nfs4_label l, *label;
5134 label = nfs4_label_init_security(dir, dentry, sattr, &l);
5136 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
5137 sattr->ia_mode &= ~current_umask();
5139 err = _nfs4_proc_mkdir(dir, dentry, sattr, label);
5140 trace_nfs4_mkdir(dir, &dentry->d_name, err);
5141 err = nfs4_handle_exception(NFS_SERVER(dir), err,
5143 } while (exception.retry);
5144 nfs4_label_release_security(label);
5149 static int _nfs4_proc_readdir(struct nfs_readdir_arg *nr_arg,
5150 struct nfs_readdir_res *nr_res)
5152 struct inode *dir = d_inode(nr_arg->dentry);
5153 struct nfs_server *server = NFS_SERVER(dir);
5154 struct nfs4_readdir_arg args = {
5156 .pages = nr_arg->pages,
5158 .count = nr_arg->page_len,
5159 .plus = nr_arg->plus,
5161 struct nfs4_readdir_res res;
5162 struct rpc_message msg = {
5163 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
5166 .rpc_cred = nr_arg->cred,
5170 dprintk("%s: dentry = %pd2, cookie = %llu\n", __func__,
5171 nr_arg->dentry, (unsigned long long)nr_arg->cookie);
5172 if (!(server->caps & NFS_CAP_SECURITY_LABEL))
5173 args.bitmask = server->attr_bitmask_nl;
5175 args.bitmask = server->attr_bitmask;
5177 nfs4_setup_readdir(nr_arg->cookie, nr_arg->verf, nr_arg->dentry, &args);
5178 res.pgbase = args.pgbase;
5179 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args,
5182 memcpy(nr_res->verf, res.verifier.data, NFS4_VERIFIER_SIZE);
5183 status += args.pgbase;
5186 nfs_invalidate_atime(dir);
5188 dprintk("%s: returns %d\n", __func__, status);
5192 static int nfs4_proc_readdir(struct nfs_readdir_arg *arg,
5193 struct nfs_readdir_res *res)
5195 struct nfs4_exception exception = {
5196 .interruptible = true,
5200 err = _nfs4_proc_readdir(arg, res);
5201 trace_nfs4_readdir(d_inode(arg->dentry), err);
5202 err = nfs4_handle_exception(NFS_SERVER(d_inode(arg->dentry)),
5204 } while (exception.retry);
5208 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
5209 struct iattr *sattr, struct nfs4_label *label, dev_t rdev)
5211 struct nfs4_createdata *data;
5212 int mode = sattr->ia_mode;
5213 int status = -ENOMEM;
5215 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
5220 data->arg.ftype = NF4FIFO;
5221 else if (S_ISBLK(mode)) {
5222 data->arg.ftype = NF4BLK;
5223 data->arg.u.device.specdata1 = MAJOR(rdev);
5224 data->arg.u.device.specdata2 = MINOR(rdev);
5226 else if (S_ISCHR(mode)) {
5227 data->arg.ftype = NF4CHR;
5228 data->arg.u.device.specdata1 = MAJOR(rdev);
5229 data->arg.u.device.specdata2 = MINOR(rdev);
5230 } else if (!S_ISSOCK(mode)) {
5235 data->arg.label = label;
5236 status = nfs4_do_create(dir, dentry, data);
5238 nfs4_free_createdata(data);
5243 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
5244 struct iattr *sattr, dev_t rdev)
5246 struct nfs_server *server = NFS_SERVER(dir);
5247 struct nfs4_exception exception = {
5248 .interruptible = true,
5250 struct nfs4_label l, *label;
5253 label = nfs4_label_init_security(dir, dentry, sattr, &l);
5255 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
5256 sattr->ia_mode &= ~current_umask();
5258 err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev);
5259 trace_nfs4_mknod(dir, &dentry->d_name, err);
5260 err = nfs4_handle_exception(NFS_SERVER(dir), err,
5262 } while (exception.retry);
5264 nfs4_label_release_security(label);
5269 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
5270 struct nfs_fsstat *fsstat)
5272 struct nfs4_statfs_arg args = {
5274 .bitmask = server->attr_bitmask,
5276 struct nfs4_statfs_res res = {
5279 struct rpc_message msg = {
5280 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
5285 nfs_fattr_init(fsstat->fattr);
5286 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
5289 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
5291 struct nfs4_exception exception = {
5292 .interruptible = true,
5296 err = nfs4_handle_exception(server,
5297 _nfs4_proc_statfs(server, fhandle, fsstat),
5299 } while (exception.retry);
5303 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
5304 struct nfs_fsinfo *fsinfo)
5306 struct nfs4_fsinfo_arg args = {
5308 .bitmask = server->attr_bitmask,
5310 struct nfs4_fsinfo_res res = {
5313 struct rpc_message msg = {
5314 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
5319 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
5322 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
5324 struct nfs4_exception exception = {
5325 .interruptible = true,
5330 err = _nfs4_do_fsinfo(server, fhandle, fsinfo);
5331 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err);
5333 nfs4_set_lease_period(server->nfs_client, fsinfo->lease_time * HZ);
5336 err = nfs4_handle_exception(server, err, &exception);
5337 } while (exception.retry);
5341 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
5345 nfs_fattr_init(fsinfo->fattr);
5346 error = nfs4_do_fsinfo(server, fhandle, fsinfo);
5348 /* block layout checks this! */
5349 server->pnfs_blksize = fsinfo->blksize;
5350 set_pnfs_layoutdriver(server, fhandle, fsinfo);
5356 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
5357 struct nfs_pathconf *pathconf)
5359 struct nfs4_pathconf_arg args = {
5361 .bitmask = server->attr_bitmask,
5363 struct nfs4_pathconf_res res = {
5364 .pathconf = pathconf,
5366 struct rpc_message msg = {
5367 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
5372 /* None of the pathconf attributes are mandatory to implement */
5373 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
5374 memset(pathconf, 0, sizeof(*pathconf));
5378 nfs_fattr_init(pathconf->fattr);
5379 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
5382 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
5383 struct nfs_pathconf *pathconf)
5385 struct nfs4_exception exception = {
5386 .interruptible = true,
5391 err = nfs4_handle_exception(server,
5392 _nfs4_proc_pathconf(server, fhandle, pathconf),
5394 } while (exception.retry);
5398 int nfs4_set_rw_stateid(nfs4_stateid *stateid,
5399 const struct nfs_open_context *ctx,
5400 const struct nfs_lock_context *l_ctx,
5403 return nfs4_select_rw_stateid(ctx->state, fmode, l_ctx, stateid, NULL);
5405 EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid);
5407 static bool nfs4_stateid_is_current(nfs4_stateid *stateid,
5408 const struct nfs_open_context *ctx,
5409 const struct nfs_lock_context *l_ctx,
5412 nfs4_stateid _current_stateid;
5414 /* If the current stateid represents a lost lock, then exit */
5415 if (nfs4_set_rw_stateid(&_current_stateid, ctx, l_ctx, fmode) == -EIO)
5417 return nfs4_stateid_match(stateid, &_current_stateid);
5420 static bool nfs4_error_stateid_expired(int err)
5423 case -NFS4ERR_DELEG_REVOKED:
5424 case -NFS4ERR_ADMIN_REVOKED:
5425 case -NFS4ERR_BAD_STATEID:
5426 case -NFS4ERR_STALE_STATEID:
5427 case -NFS4ERR_OLD_STATEID:
5428 case -NFS4ERR_OPENMODE:
5429 case -NFS4ERR_EXPIRED:
5435 static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr)
5437 struct nfs_server *server = NFS_SERVER(hdr->inode);
5439 trace_nfs4_read(hdr, task->tk_status);
5440 if (task->tk_status < 0) {
5441 struct nfs4_exception exception = {
5442 .inode = hdr->inode,
5443 .state = hdr->args.context->state,
5444 .stateid = &hdr->args.stateid,
5446 task->tk_status = nfs4_async_handle_exception(task,
5447 server, task->tk_status, &exception);
5448 if (exception.retry) {
5449 rpc_restart_call_prepare(task);
5454 if (task->tk_status > 0)
5455 renew_lease(server, hdr->timestamp);
5459 static bool nfs4_read_stateid_changed(struct rpc_task *task,
5460 struct nfs_pgio_args *args)
5463 if (!nfs4_error_stateid_expired(task->tk_status) ||
5464 nfs4_stateid_is_current(&args->stateid,
5469 rpc_restart_call_prepare(task);
5473 static bool nfs4_read_plus_not_supported(struct rpc_task *task,
5474 struct nfs_pgio_header *hdr)
5476 struct nfs_server *server = NFS_SERVER(hdr->inode);
5477 struct rpc_message *msg = &task->tk_msg;
5479 if (msg->rpc_proc == &nfs4_procedures[NFSPROC4_CLNT_READ_PLUS] &&
5480 task->tk_status == -ENOTSUPP) {
5481 server->caps &= ~NFS_CAP_READ_PLUS;
5482 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
5483 rpc_restart_call_prepare(task);
5489 static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
5491 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
5493 if (nfs4_read_stateid_changed(task, &hdr->args))
5495 if (nfs4_read_plus_not_supported(task, hdr))
5497 if (task->tk_status > 0)
5498 nfs_invalidate_atime(hdr->inode);
5499 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
5500 nfs4_read_done_cb(task, hdr);
5503 #if defined CONFIG_NFS_V4_2 && defined CONFIG_NFS_V4_2_READ_PLUS
5504 static bool nfs42_read_plus_support(struct nfs_pgio_header *hdr,
5505 struct rpc_message *msg)
5507 /* Note: We don't use READ_PLUS with pNFS yet */
5508 if (nfs_server_capable(hdr->inode, NFS_CAP_READ_PLUS) && !hdr->ds_clp) {
5509 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ_PLUS];
5510 return nfs_read_alloc_scratch(hdr, READ_PLUS_SCRATCH_SIZE);
5515 static bool nfs42_read_plus_support(struct nfs_pgio_header *hdr,
5516 struct rpc_message *msg)
5520 #endif /* CONFIG_NFS_V4_2 */
5522 static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr,
5523 struct rpc_message *msg)
5525 hdr->timestamp = jiffies;
5526 if (!hdr->pgio_done_cb)
5527 hdr->pgio_done_cb = nfs4_read_done_cb;
5528 if (!nfs42_read_plus_support(hdr, msg))
5529 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
5530 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0, 0);
5533 static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task,
5534 struct nfs_pgio_header *hdr)
5536 if (nfs4_setup_sequence(NFS_SERVER(hdr->inode)->nfs_client,
5537 &hdr->args.seq_args,
5541 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
5542 hdr->args.lock_context,
5543 hdr->rw_mode) == -EIO)
5545 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags)))
5550 static int nfs4_write_done_cb(struct rpc_task *task,
5551 struct nfs_pgio_header *hdr)
5553 struct inode *inode = hdr->inode;
5555 trace_nfs4_write(hdr, task->tk_status);
5556 if (task->tk_status < 0) {
5557 struct nfs4_exception exception = {
5558 .inode = hdr->inode,
5559 .state = hdr->args.context->state,
5560 .stateid = &hdr->args.stateid,
5562 task->tk_status = nfs4_async_handle_exception(task,
5563 NFS_SERVER(inode), task->tk_status,
5565 if (exception.retry) {
5566 rpc_restart_call_prepare(task);
5570 if (task->tk_status >= 0) {
5571 renew_lease(NFS_SERVER(inode), hdr->timestamp);
5572 nfs_writeback_update_inode(hdr);
5577 static bool nfs4_write_stateid_changed(struct rpc_task *task,
5578 struct nfs_pgio_args *args)
5581 if (!nfs4_error_stateid_expired(task->tk_status) ||
5582 nfs4_stateid_is_current(&args->stateid,
5587 rpc_restart_call_prepare(task);
5591 static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
5593 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
5595 if (nfs4_write_stateid_changed(task, &hdr->args))
5597 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
5598 nfs4_write_done_cb(task, hdr);
5602 bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr)
5604 /* Don't request attributes for pNFS or O_DIRECT writes */
5605 if (hdr->ds_clp != NULL || hdr->dreq != NULL)
5607 /* Otherwise, request attributes if and only if we don't hold
5610 return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0;
5613 void nfs4_bitmask_set(__u32 bitmask[], const __u32 src[],
5614 struct inode *inode, unsigned long cache_validity)
5616 struct nfs_server *server = NFS_SERVER(inode);
5619 memcpy(bitmask, src, sizeof(*bitmask) * NFS4_BITMASK_SZ);
5620 cache_validity |= READ_ONCE(NFS_I(inode)->cache_validity);
5622 if (cache_validity & NFS_INO_INVALID_CHANGE)
5623 bitmask[0] |= FATTR4_WORD0_CHANGE;
5624 if (cache_validity & NFS_INO_INVALID_ATIME)
5625 bitmask[1] |= FATTR4_WORD1_TIME_ACCESS;
5626 if (cache_validity & NFS_INO_INVALID_MODE)
5627 bitmask[1] |= FATTR4_WORD1_MODE;
5628 if (cache_validity & NFS_INO_INVALID_OTHER)
5629 bitmask[1] |= FATTR4_WORD1_OWNER | FATTR4_WORD1_OWNER_GROUP;
5630 if (cache_validity & NFS_INO_INVALID_NLINK)
5631 bitmask[1] |= FATTR4_WORD1_NUMLINKS;
5632 if (cache_validity & NFS_INO_INVALID_CTIME)
5633 bitmask[1] |= FATTR4_WORD1_TIME_METADATA;
5634 if (cache_validity & NFS_INO_INVALID_MTIME)
5635 bitmask[1] |= FATTR4_WORD1_TIME_MODIFY;
5636 if (cache_validity & NFS_INO_INVALID_BLOCKS)
5637 bitmask[1] |= FATTR4_WORD1_SPACE_USED;
5639 if (cache_validity & NFS_INO_INVALID_SIZE)
5640 bitmask[0] |= FATTR4_WORD0_SIZE;
5642 for (i = 0; i < NFS4_BITMASK_SZ; i++)
5643 bitmask[i] &= server->attr_bitmask[i];
5646 static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr,
5647 struct rpc_message *msg,
5648 struct rpc_clnt **clnt)
5650 struct nfs_server *server = NFS_SERVER(hdr->inode);
5652 if (!nfs4_write_need_cache_consistency_data(hdr)) {
5653 hdr->args.bitmask = NULL;
5654 hdr->res.fattr = NULL;
5656 nfs4_bitmask_set(hdr->args.bitmask_store,
5657 server->cache_consistency_bitmask,
5658 hdr->inode, NFS_INO_INVALID_BLOCKS);
5659 hdr->args.bitmask = hdr->args.bitmask_store;
5662 if (!hdr->pgio_done_cb)
5663 hdr->pgio_done_cb = nfs4_write_done_cb;
5664 hdr->res.server = server;
5665 hdr->timestamp = jiffies;
5667 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
5668 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0, 0);
5669 nfs4_state_protect_write(hdr->ds_clp ? hdr->ds_clp : server->nfs_client, clnt, msg, hdr);
5672 static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
5674 nfs4_setup_sequence(NFS_SERVER(data->inode)->nfs_client,
5675 &data->args.seq_args,
5680 static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data)
5682 struct inode *inode = data->inode;
5684 trace_nfs4_commit(data, task->tk_status);
5685 if (nfs4_async_handle_error(task, NFS_SERVER(inode),
5686 NULL, NULL) == -EAGAIN) {
5687 rpc_restart_call_prepare(task);
5693 static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
5695 if (!nfs4_sequence_done(task, &data->res.seq_res))
5697 return data->commit_done_cb(task, data);
5700 static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg,
5701 struct rpc_clnt **clnt)
5703 struct nfs_server *server = NFS_SERVER(data->inode);
5705 if (data->commit_done_cb == NULL)
5706 data->commit_done_cb = nfs4_commit_done_cb;
5707 data->res.server = server;
5708 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
5709 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, 0);
5710 nfs4_state_protect(data->ds_clp ? data->ds_clp : server->nfs_client,
5711 NFS_SP4_MACH_CRED_COMMIT, clnt, msg);
5714 static int _nfs4_proc_commit(struct file *dst, struct nfs_commitargs *args,
5715 struct nfs_commitres *res)
5717 struct inode *dst_inode = file_inode(dst);
5718 struct nfs_server *server = NFS_SERVER(dst_inode);
5719 struct rpc_message msg = {
5720 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
5725 args->fh = NFS_FH(dst_inode);
5726 return nfs4_call_sync(server->client, server, &msg,
5727 &args->seq_args, &res->seq_res, 1);
5730 int nfs4_proc_commit(struct file *dst, __u64 offset, __u32 count, struct nfs_commitres *res)
5732 struct nfs_commitargs args = {
5736 struct nfs_server *dst_server = NFS_SERVER(file_inode(dst));
5737 struct nfs4_exception exception = { };
5741 status = _nfs4_proc_commit(dst, &args, res);
5742 status = nfs4_handle_exception(dst_server, status, &exception);
5743 } while (exception.retry);
5748 struct nfs4_renewdata {
5749 struct nfs_client *client;
5750 unsigned long timestamp;
5754 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
5755 * standalone procedure for queueing an asynchronous RENEW.
5757 static void nfs4_renew_release(void *calldata)
5759 struct nfs4_renewdata *data = calldata;
5760 struct nfs_client *clp = data->client;
5762 if (refcount_read(&clp->cl_count) > 1)
5763 nfs4_schedule_state_renewal(clp);
5764 nfs_put_client(clp);
5768 static void nfs4_renew_done(struct rpc_task *task, void *calldata)
5770 struct nfs4_renewdata *data = calldata;
5771 struct nfs_client *clp = data->client;
5772 unsigned long timestamp = data->timestamp;
5774 trace_nfs4_renew_async(clp, task->tk_status);
5775 switch (task->tk_status) {
5778 case -NFS4ERR_LEASE_MOVED:
5779 nfs4_schedule_lease_moved_recovery(clp);
5782 /* Unless we're shutting down, schedule state recovery! */
5783 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0)
5785 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) {
5786 nfs4_schedule_lease_recovery(clp);
5789 nfs4_schedule_path_down_recovery(clp);
5791 do_renew_lease(clp, timestamp);
5794 static const struct rpc_call_ops nfs4_renew_ops = {
5795 .rpc_call_done = nfs4_renew_done,
5796 .rpc_release = nfs4_renew_release,
5799 static int nfs4_proc_async_renew(struct nfs_client *clp, const struct cred *cred, unsigned renew_flags)
5801 struct rpc_message msg = {
5802 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
5806 struct nfs4_renewdata *data;
5808 if (renew_flags == 0)
5810 if (!refcount_inc_not_zero(&clp->cl_count))
5812 data = kmalloc(sizeof(*data), GFP_NOFS);
5814 nfs_put_client(clp);
5818 data->timestamp = jiffies;
5819 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT,
5820 &nfs4_renew_ops, data);
5823 static int nfs4_proc_renew(struct nfs_client *clp, const struct cred *cred)
5825 struct rpc_message msg = {
5826 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
5830 unsigned long now = jiffies;
5833 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
5836 do_renew_lease(clp, now);
5840 static bool nfs4_server_supports_acls(const struct nfs_server *server,
5841 enum nfs4_acl_type type)
5845 return server->attr_bitmask[0] & FATTR4_WORD0_ACL;
5847 return server->attr_bitmask[1] & FATTR4_WORD1_DACL;
5849 return server->attr_bitmask[1] & FATTR4_WORD1_SACL;
5853 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that
5854 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on
5857 #define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE)
5859 int nfs4_buf_to_pages_noslab(const void *buf, size_t buflen,
5860 struct page **pages)
5862 struct page *newpage, **spages;
5868 len = min_t(size_t, PAGE_SIZE, buflen);
5869 newpage = alloc_page(GFP_KERNEL);
5871 if (newpage == NULL)
5873 memcpy(page_address(newpage), buf, len);
5878 } while (buflen != 0);
5884 __free_page(spages[rc-1]);
5888 struct nfs4_cached_acl {
5889 enum nfs4_acl_type type;
5895 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
5897 struct nfs_inode *nfsi = NFS_I(inode);
5899 spin_lock(&inode->i_lock);
5900 kfree(nfsi->nfs4_acl);
5901 nfsi->nfs4_acl = acl;
5902 spin_unlock(&inode->i_lock);
5905 static void nfs4_zap_acl_attr(struct inode *inode)
5907 nfs4_set_cached_acl(inode, NULL);
5910 static ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf,
5911 size_t buflen, enum nfs4_acl_type type)
5913 struct nfs_inode *nfsi = NFS_I(inode);
5914 struct nfs4_cached_acl *acl;
5917 spin_lock(&inode->i_lock);
5918 acl = nfsi->nfs4_acl;
5921 if (acl->type != type)
5923 if (buf == NULL) /* user is just asking for length */
5925 if (acl->cached == 0)
5927 ret = -ERANGE; /* see getxattr(2) man page */
5928 if (acl->len > buflen)
5930 memcpy(buf, acl->data, acl->len);
5934 spin_unlock(&inode->i_lock);
5938 static void nfs4_write_cached_acl(struct inode *inode, struct page **pages,
5939 size_t pgbase, size_t acl_len,
5940 enum nfs4_acl_type type)
5942 struct nfs4_cached_acl *acl;
5943 size_t buflen = sizeof(*acl) + acl_len;
5945 if (buflen <= PAGE_SIZE) {
5946 acl = kmalloc(buflen, GFP_KERNEL);
5950 _copy_from_pages(acl->data, pages, pgbase, acl_len);
5952 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
5960 nfs4_set_cached_acl(inode, acl);
5964 * The getxattr API returns the required buffer length when called with a
5965 * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating
5966 * the required buf. On a NULL buf, we send a page of data to the server
5967 * guessing that the ACL request can be serviced by a page. If so, we cache
5968 * up to the page of ACL data, and the 2nd call to getxattr is serviced by
5969 * the cache. If not so, we throw away the page, and cache the required
5970 * length. The next getxattr call will then produce another round trip to
5971 * the server, this time with the input buf of the required size.
5973 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf,
5974 size_t buflen, enum nfs4_acl_type type)
5976 struct page **pages;
5977 struct nfs_getaclargs args = {
5978 .fh = NFS_FH(inode),
5982 struct nfs_getaclres res = {
5986 struct rpc_message msg = {
5987 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
5991 unsigned int npages;
5992 int ret = -ENOMEM, i;
5993 struct nfs_server *server = NFS_SERVER(inode);
5996 buflen = server->rsize;
5998 npages = DIV_ROUND_UP(buflen, PAGE_SIZE) + 1;
5999 pages = kmalloc_array(npages, sizeof(struct page *), GFP_KERNEL);
6003 args.acl_pages = pages;
6005 for (i = 0; i < npages; i++) {
6006 pages[i] = alloc_page(GFP_KERNEL);
6011 /* for decoding across pages */
6012 res.acl_scratch = alloc_page(GFP_KERNEL);
6013 if (!res.acl_scratch)
6016 args.acl_len = npages * PAGE_SIZE;
6018 dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n",
6019 __func__, buf, buflen, npages, args.acl_len);
6020 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode),
6021 &msg, &args.seq_args, &res.seq_res, 0);
6025 /* Handle the case where the passed-in buffer is too short */
6026 if (res.acl_flags & NFS4_ACL_TRUNC) {
6027 /* Did the user only issue a request for the acl length? */
6033 nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len,
6036 if (res.acl_len > buflen) {
6040 _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len);
6046 __free_page(pages[i]);
6047 if (res.acl_scratch)
6048 __free_page(res.acl_scratch);
6053 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf,
6054 size_t buflen, enum nfs4_acl_type type)
6056 struct nfs4_exception exception = {
6057 .interruptible = true,
6061 ret = __nfs4_get_acl_uncached(inode, buf, buflen, type);
6062 trace_nfs4_get_acl(inode, ret);
6065 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
6066 } while (exception.retry);
6070 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen,
6071 enum nfs4_acl_type type)
6073 struct nfs_server *server = NFS_SERVER(inode);
6076 if (!nfs4_server_supports_acls(server, type))
6078 ret = nfs_revalidate_inode(inode, NFS_INO_INVALID_CHANGE);
6081 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
6082 nfs_zap_acl_cache(inode);
6083 ret = nfs4_read_cached_acl(inode, buf, buflen, type);
6085 /* -ENOENT is returned if there is no ACL or if there is an ACL
6086 * but no cached acl data, just the acl length */
6088 return nfs4_get_acl_uncached(inode, buf, buflen, type);
6091 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf,
6092 size_t buflen, enum nfs4_acl_type type)
6094 struct nfs_server *server = NFS_SERVER(inode);
6095 struct page *pages[NFS4ACL_MAXPAGES];
6096 struct nfs_setaclargs arg = {
6097 .fh = NFS_FH(inode),
6102 struct nfs_setaclres res;
6103 struct rpc_message msg = {
6104 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
6108 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
6111 /* You can't remove system.nfs4_acl: */
6114 if (!nfs4_server_supports_acls(server, type))
6116 if (npages > ARRAY_SIZE(pages))
6118 i = nfs4_buf_to_pages_noslab(buf, buflen, arg.acl_pages);
6121 nfs4_inode_make_writeable(inode);
6122 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
6125 * Free each page after tx, so the only ref left is
6126 * held by the network stack
6129 put_page(pages[i-1]);
6132 * Acl update can result in inode attribute update.
6133 * so mark the attribute cache invalid.
6135 spin_lock(&inode->i_lock);
6136 nfs_set_cache_invalid(inode, NFS_INO_INVALID_CHANGE |
6137 NFS_INO_INVALID_CTIME |
6138 NFS_INO_REVAL_FORCED);
6139 spin_unlock(&inode->i_lock);
6140 nfs_access_zap_cache(inode);
6141 nfs_zap_acl_cache(inode);
6145 static int nfs4_proc_set_acl(struct inode *inode, const void *buf,
6146 size_t buflen, enum nfs4_acl_type type)
6148 struct nfs4_exception exception = { };
6151 err = __nfs4_proc_set_acl(inode, buf, buflen, type);
6152 trace_nfs4_set_acl(inode, err);
6153 if (err == -NFS4ERR_BADOWNER || err == -NFS4ERR_BADNAME) {
6155 * no need to retry since the kernel
6156 * isn't involved in encoding the ACEs.
6161 err = nfs4_handle_exception(NFS_SERVER(inode), err,
6163 } while (exception.retry);
6167 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
6168 static int _nfs4_get_security_label(struct inode *inode, void *buf,
6171 struct nfs_server *server = NFS_SERVER(inode);
6172 struct nfs4_label label = {0, 0, buflen, buf};
6174 u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
6175 struct nfs_fattr fattr = {
6178 struct nfs4_getattr_arg arg = {
6179 .fh = NFS_FH(inode),
6182 struct nfs4_getattr_res res = {
6186 struct rpc_message msg = {
6187 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
6193 nfs_fattr_init(&fattr);
6195 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0);
6198 if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL))
6203 static int nfs4_get_security_label(struct inode *inode, void *buf,
6206 struct nfs4_exception exception = {
6207 .interruptible = true,
6211 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
6215 err = _nfs4_get_security_label(inode, buf, buflen);
6216 trace_nfs4_get_security_label(inode, err);
6217 err = nfs4_handle_exception(NFS_SERVER(inode), err,
6219 } while (exception.retry);
6223 static int _nfs4_do_set_security_label(struct inode *inode,
6224 struct nfs4_label *ilabel,
6225 struct nfs_fattr *fattr)
6228 struct iattr sattr = {0};
6229 struct nfs_server *server = NFS_SERVER(inode);
6230 const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
6231 struct nfs_setattrargs arg = {
6232 .fh = NFS_FH(inode),
6238 struct nfs_setattrres res = {
6242 struct rpc_message msg = {
6243 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
6249 nfs4_stateid_copy(&arg.stateid, &zero_stateid);
6251 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
6253 dprintk("%s failed: %d\n", __func__, status);
6258 static int nfs4_do_set_security_label(struct inode *inode,
6259 struct nfs4_label *ilabel,
6260 struct nfs_fattr *fattr)
6262 struct nfs4_exception exception = { };
6266 err = _nfs4_do_set_security_label(inode, ilabel, fattr);
6267 trace_nfs4_set_security_label(inode, err);
6268 err = nfs4_handle_exception(NFS_SERVER(inode), err,
6270 } while (exception.retry);
6275 nfs4_set_security_label(struct inode *inode, const void *buf, size_t buflen)
6277 struct nfs4_label ilabel = {0, 0, buflen, (char *)buf };
6278 struct nfs_fattr *fattr;
6281 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
6284 fattr = nfs_alloc_fattr_with_label(NFS_SERVER(inode));
6288 status = nfs4_do_set_security_label(inode, &ilabel, fattr);
6290 nfs_setsecurity(inode, fattr);
6292 nfs_free_fattr(fattr);
6295 #endif /* CONFIG_NFS_V4_SECURITY_LABEL */
6298 static void nfs4_init_boot_verifier(const struct nfs_client *clp,
6299 nfs4_verifier *bootverf)
6303 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
6304 /* An impossible timestamp guarantees this value
6305 * will never match a generated boot time. */
6306 verf[0] = cpu_to_be32(U32_MAX);
6307 verf[1] = cpu_to_be32(U32_MAX);
6309 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
6310 u64 ns = ktime_to_ns(nn->boot_time);
6312 verf[0] = cpu_to_be32(ns >> 32);
6313 verf[1] = cpu_to_be32(ns);
6315 memcpy(bootverf->data, verf, sizeof(bootverf->data));
6319 nfs4_get_uniquifier(struct nfs_client *clp, char *buf, size_t buflen)
6321 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
6322 struct nfs_netns_client *nn_clp = nn->nfs_client;
6329 id = rcu_dereference(nn_clp->identifier);
6331 strscpy(buf, id, buflen);
6335 if (nfs4_client_id_uniquifier[0] != '\0' && buf[0] == '\0')
6336 strscpy(buf, nfs4_client_id_uniquifier, buflen);
6342 nfs4_init_nonuniform_client_string(struct nfs_client *clp)
6344 char buf[NFS4_CLIENT_ID_UNIQ_LEN];
6349 if (clp->cl_owner_id != NULL)
6354 strlen(clp->cl_rpcclient->cl_nodename) +
6356 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR)) +
6360 buflen = nfs4_get_uniquifier(clp, buf, sizeof(buf));
6364 if (len > NFS4_OPAQUE_LIMIT + 1)
6368 * Since this string is allocated at mount time, and held until the
6369 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
6370 * about a memory-reclaim deadlock.
6372 str = kmalloc(len, GFP_KERNEL);
6378 scnprintf(str, len, "Linux NFSv4.0 %s/%s/%s",
6379 clp->cl_rpcclient->cl_nodename, buf,
6380 rpc_peeraddr2str(clp->cl_rpcclient,
6383 scnprintf(str, len, "Linux NFSv4.0 %s/%s",
6384 clp->cl_rpcclient->cl_nodename,
6385 rpc_peeraddr2str(clp->cl_rpcclient,
6389 clp->cl_owner_id = str;
6394 nfs4_init_uniform_client_string(struct nfs_client *clp)
6396 char buf[NFS4_CLIENT_ID_UNIQ_LEN];
6401 if (clp->cl_owner_id != NULL)
6404 len = 10 + 10 + 1 + 10 + 1 +
6405 strlen(clp->cl_rpcclient->cl_nodename) + 1;
6407 buflen = nfs4_get_uniquifier(clp, buf, sizeof(buf));
6411 if (len > NFS4_OPAQUE_LIMIT + 1)
6415 * Since this string is allocated at mount time, and held until the
6416 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
6417 * about a memory-reclaim deadlock.
6419 str = kmalloc(len, GFP_KERNEL);
6424 scnprintf(str, len, "Linux NFSv%u.%u %s/%s",
6425 clp->rpc_ops->version, clp->cl_minorversion,
6426 buf, clp->cl_rpcclient->cl_nodename);
6428 scnprintf(str, len, "Linux NFSv%u.%u %s",
6429 clp->rpc_ops->version, clp->cl_minorversion,
6430 clp->cl_rpcclient->cl_nodename);
6431 clp->cl_owner_id = str;
6436 * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback
6437 * services. Advertise one based on the address family of the
6441 nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len)
6443 if (strchr(clp->cl_ipaddr, ':') != NULL)
6444 return scnprintf(buf, len, "tcp6");
6446 return scnprintf(buf, len, "tcp");
6449 static void nfs4_setclientid_done(struct rpc_task *task, void *calldata)
6451 struct nfs4_setclientid *sc = calldata;
6453 if (task->tk_status == 0)
6454 sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred);
6457 static const struct rpc_call_ops nfs4_setclientid_ops = {
6458 .rpc_call_done = nfs4_setclientid_done,
6462 * nfs4_proc_setclientid - Negotiate client ID
6463 * @clp: state data structure
6464 * @program: RPC program for NFSv4 callback service
6465 * @port: IP port number for NFS4 callback service
6466 * @cred: credential to use for this call
6467 * @res: where to place the result
6469 * Returns zero, a negative errno, or a negative NFS4ERR status code.
6471 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
6472 unsigned short port, const struct cred *cred,
6473 struct nfs4_setclientid_res *res)
6475 nfs4_verifier sc_verifier;
6476 struct nfs4_setclientid setclientid = {
6477 .sc_verifier = &sc_verifier,
6481 struct rpc_message msg = {
6482 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
6483 .rpc_argp = &setclientid,
6487 struct rpc_task_setup task_setup_data = {
6488 .rpc_client = clp->cl_rpcclient,
6489 .rpc_message = &msg,
6490 .callback_ops = &nfs4_setclientid_ops,
6491 .callback_data = &setclientid,
6492 .flags = RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN,
6494 unsigned long now = jiffies;
6497 /* nfs_client_id4 */
6498 nfs4_init_boot_verifier(clp, &sc_verifier);
6500 if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags))
6501 status = nfs4_init_uniform_client_string(clp);
6503 status = nfs4_init_nonuniform_client_string(clp);
6509 setclientid.sc_netid_len =
6510 nfs4_init_callback_netid(clp,
6511 setclientid.sc_netid,
6512 sizeof(setclientid.sc_netid));
6513 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
6514 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
6515 clp->cl_ipaddr, port >> 8, port & 255);
6517 dprintk("NFS call setclientid auth=%s, '%s'\n",
6518 clp->cl_rpcclient->cl_auth->au_ops->au_name,
6521 status = nfs4_call_sync_custom(&task_setup_data);
6522 if (setclientid.sc_cred) {
6523 kfree(clp->cl_acceptor);
6524 clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred);
6525 put_rpccred(setclientid.sc_cred);
6529 do_renew_lease(clp, now);
6531 trace_nfs4_setclientid(clp, status);
6532 dprintk("NFS reply setclientid: %d\n", status);
6537 * nfs4_proc_setclientid_confirm - Confirm client ID
6538 * @clp: state data structure
6539 * @arg: result of a previous SETCLIENTID
6540 * @cred: credential to use for this call
6542 * Returns zero, a negative errno, or a negative NFS4ERR status code.
6544 int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
6545 struct nfs4_setclientid_res *arg,
6546 const struct cred *cred)
6548 struct rpc_message msg = {
6549 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
6555 dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n",
6556 clp->cl_rpcclient->cl_auth->au_ops->au_name,
6558 status = rpc_call_sync(clp->cl_rpcclient, &msg,
6559 RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN);
6560 trace_nfs4_setclientid_confirm(clp, status);
6561 dprintk("NFS reply setclientid_confirm: %d\n", status);
6565 struct nfs4_delegreturndata {
6566 struct nfs4_delegreturnargs args;
6567 struct nfs4_delegreturnres res;
6569 nfs4_stateid stateid;
6570 unsigned long timestamp;
6572 struct nfs4_layoutreturn_args arg;
6573 struct nfs4_layoutreturn_res res;
6574 struct nfs4_xdr_opaque_data ld_private;
6578 struct nfs_fattr fattr;
6580 struct inode *inode;
6583 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
6585 struct nfs4_delegreturndata *data = calldata;
6586 struct nfs4_exception exception = {
6587 .inode = data->inode,
6588 .stateid = &data->stateid,
6589 .task_is_privileged = data->args.seq_args.sa_privileged,
6592 if (!nfs4_sequence_done(task, &data->res.seq_res))
6595 trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status);
6597 /* Handle Layoutreturn errors */
6598 if (pnfs_roc_done(task, &data->args.lr_args, &data->res.lr_res,
6599 &data->res.lr_ret) == -EAGAIN)
6602 switch (task->tk_status) {
6604 renew_lease(data->res.server, data->timestamp);
6606 case -NFS4ERR_ADMIN_REVOKED:
6607 case -NFS4ERR_DELEG_REVOKED:
6608 case -NFS4ERR_EXPIRED:
6609 nfs4_free_revoked_stateid(data->res.server,
6611 task->tk_msg.rpc_cred);
6613 case -NFS4ERR_BAD_STATEID:
6614 case -NFS4ERR_STALE_STATEID:
6616 task->tk_status = 0;
6618 case -NFS4ERR_OLD_STATEID:
6619 if (!nfs4_refresh_delegation_stateid(&data->stateid, data->inode))
6620 nfs4_stateid_seqid_inc(&data->stateid);
6621 if (data->args.bitmask) {
6622 data->args.bitmask = NULL;
6623 data->res.fattr = NULL;
6626 case -NFS4ERR_ACCESS:
6627 if (data->args.bitmask) {
6628 data->args.bitmask = NULL;
6629 data->res.fattr = NULL;
6634 task->tk_status = nfs4_async_handle_exception(task,
6635 data->res.server, task->tk_status,
6637 if (exception.retry)
6640 nfs_delegation_mark_returned(data->inode, data->args.stateid);
6641 data->rpc_status = task->tk_status;
6644 task->tk_status = 0;
6645 rpc_restart_call_prepare(task);
6648 static void nfs4_delegreturn_release(void *calldata)
6650 struct nfs4_delegreturndata *data = calldata;
6651 struct inode *inode = data->inode;
6654 pnfs_roc_release(&data->lr.arg, &data->lr.res,
6657 nfs4_fattr_set_prechange(&data->fattr,
6658 inode_peek_iversion_raw(inode));
6659 nfs_refresh_inode(inode, &data->fattr);
6660 nfs_iput_and_deactive(inode);
6665 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
6667 struct nfs4_delegreturndata *d_data;
6668 struct pnfs_layout_hdr *lo;
6672 if (!d_data->lr.roc && nfs4_wait_on_layoutreturn(d_data->inode, task)) {
6673 nfs4_sequence_done(task, &d_data->res.seq_res);
6677 lo = d_data->args.lr_args ? d_data->args.lr_args->layout : NULL;
6678 if (lo && !pnfs_layout_is_valid(lo)) {
6679 d_data->args.lr_args = NULL;
6680 d_data->res.lr_res = NULL;
6683 nfs4_setup_sequence(d_data->res.server->nfs_client,
6684 &d_data->args.seq_args,
6685 &d_data->res.seq_res,
6689 static const struct rpc_call_ops nfs4_delegreturn_ops = {
6690 .rpc_call_prepare = nfs4_delegreturn_prepare,
6691 .rpc_call_done = nfs4_delegreturn_done,
6692 .rpc_release = nfs4_delegreturn_release,
6695 static int _nfs4_proc_delegreturn(struct inode *inode, const struct cred *cred, const nfs4_stateid *stateid, int issync)
6697 struct nfs4_delegreturndata *data;
6698 struct nfs_server *server = NFS_SERVER(inode);
6699 struct rpc_task *task;
6700 struct rpc_message msg = {
6701 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
6704 struct rpc_task_setup task_setup_data = {
6705 .rpc_client = server->client,
6706 .rpc_message = &msg,
6707 .callback_ops = &nfs4_delegreturn_ops,
6708 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
6712 if (nfs_server_capable(inode, NFS_CAP_MOVEABLE))
6713 task_setup_data.flags |= RPC_TASK_MOVEABLE;
6715 data = kzalloc(sizeof(*data), GFP_KERNEL);
6719 nfs4_state_protect(server->nfs_client,
6720 NFS_SP4_MACH_CRED_CLEANUP,
6721 &task_setup_data.rpc_client, &msg);
6723 data->args.fhandle = &data->fh;
6724 data->args.stateid = &data->stateid;
6725 nfs4_bitmask_set(data->args.bitmask_store,
6726 server->cache_consistency_bitmask, inode, 0);
6727 data->args.bitmask = data->args.bitmask_store;
6728 nfs_copy_fh(&data->fh, NFS_FH(inode));
6729 nfs4_stateid_copy(&data->stateid, stateid);
6730 data->res.fattr = &data->fattr;
6731 data->res.server = server;
6732 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
6733 data->lr.arg.ld_private = &data->lr.ld_private;
6734 nfs_fattr_init(data->res.fattr);
6735 data->timestamp = jiffies;
6736 data->rpc_status = 0;
6737 data->inode = nfs_igrab_and_active(inode);
6738 if (data->inode || issync) {
6739 data->lr.roc = pnfs_roc(inode, &data->lr.arg, &data->lr.res,
6742 data->args.lr_args = &data->lr.arg;
6743 data->res.lr_res = &data->lr.res;
6748 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1,
6751 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1,
6753 task_setup_data.callback_data = data;
6754 msg.rpc_argp = &data->args;
6755 msg.rpc_resp = &data->res;
6756 task = rpc_run_task(&task_setup_data);
6758 return PTR_ERR(task);
6761 status = rpc_wait_for_completion_task(task);
6764 status = data->rpc_status;
6770 int nfs4_proc_delegreturn(struct inode *inode, const struct cred *cred, const nfs4_stateid *stateid, int issync)
6772 struct nfs_server *server = NFS_SERVER(inode);
6773 struct nfs4_exception exception = { };
6776 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
6777 trace_nfs4_delegreturn(inode, stateid, err);
6779 case -NFS4ERR_STALE_STATEID:
6780 case -NFS4ERR_EXPIRED:
6784 err = nfs4_handle_exception(server, err, &exception);
6785 } while (exception.retry);
6789 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6791 struct inode *inode = state->inode;
6792 struct nfs_server *server = NFS_SERVER(inode);
6793 struct nfs_client *clp = server->nfs_client;
6794 struct nfs_lockt_args arg = {
6795 .fh = NFS_FH(inode),
6798 struct nfs_lockt_res res = {
6801 struct rpc_message msg = {
6802 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
6805 .rpc_cred = state->owner->so_cred,
6807 struct nfs4_lock_state *lsp;
6810 arg.lock_owner.clientid = clp->cl_clientid;
6811 status = nfs4_set_lock_state(state, request);
6814 lsp = request->fl_u.nfs4_fl.owner;
6815 arg.lock_owner.id = lsp->ls_seqid.owner_id;
6816 arg.lock_owner.s_dev = server->s_dev;
6817 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
6820 request->c.flc_type = F_UNLCK;
6822 case -NFS4ERR_DENIED:
6825 request->fl_ops->fl_release_private(request);
6826 request->fl_ops = NULL;
6831 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6833 struct nfs4_exception exception = {
6834 .interruptible = true,
6839 err = _nfs4_proc_getlk(state, cmd, request);
6840 trace_nfs4_get_lock(request, state, cmd, err);
6841 err = nfs4_handle_exception(NFS_SERVER(state->inode), err,
6843 } while (exception.retry);
6848 * Update the seqid of a lock stateid after receiving
6849 * NFS4ERR_OLD_STATEID
6851 static bool nfs4_refresh_lock_old_stateid(nfs4_stateid *dst,
6852 struct nfs4_lock_state *lsp)
6854 struct nfs4_state *state = lsp->ls_state;
6857 spin_lock(&state->state_lock);
6858 if (!nfs4_stateid_match_other(dst, &lsp->ls_stateid))
6860 if (!nfs4_stateid_is_newer(&lsp->ls_stateid, dst))
6861 nfs4_stateid_seqid_inc(dst);
6863 dst->seqid = lsp->ls_stateid.seqid;
6866 spin_unlock(&state->state_lock);
6870 static bool nfs4_sync_lock_stateid(nfs4_stateid *dst,
6871 struct nfs4_lock_state *lsp)
6873 struct nfs4_state *state = lsp->ls_state;
6876 spin_lock(&state->state_lock);
6877 ret = !nfs4_stateid_match_other(dst, &lsp->ls_stateid);
6878 nfs4_stateid_copy(dst, &lsp->ls_stateid);
6879 spin_unlock(&state->state_lock);
6883 struct nfs4_unlockdata {
6884 struct nfs_locku_args arg;
6885 struct nfs_locku_res res;
6886 struct nfs4_lock_state *lsp;
6887 struct nfs_open_context *ctx;
6888 struct nfs_lock_context *l_ctx;
6889 struct file_lock fl;
6890 struct nfs_server *server;
6891 unsigned long timestamp;
6894 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
6895 struct nfs_open_context *ctx,
6896 struct nfs4_lock_state *lsp,
6897 struct nfs_seqid *seqid)
6899 struct nfs4_unlockdata *p;
6900 struct nfs4_state *state = lsp->ls_state;
6901 struct inode *inode = state->inode;
6903 p = kzalloc(sizeof(*p), GFP_KERNEL);
6906 p->arg.fh = NFS_FH(inode);
6908 p->arg.seqid = seqid;
6909 p->res.seqid = seqid;
6911 /* Ensure we don't close file until we're done freeing locks! */
6912 p->ctx = get_nfs_open_context(ctx);
6913 p->l_ctx = nfs_get_lock_context(ctx);
6914 locks_init_lock(&p->fl);
6915 locks_copy_lock(&p->fl, fl);
6916 p->server = NFS_SERVER(inode);
6917 spin_lock(&state->state_lock);
6918 nfs4_stateid_copy(&p->arg.stateid, &lsp->ls_stateid);
6919 spin_unlock(&state->state_lock);
6923 static void nfs4_locku_release_calldata(void *data)
6925 struct nfs4_unlockdata *calldata = data;
6926 nfs_free_seqid(calldata->arg.seqid);
6927 nfs4_put_lock_state(calldata->lsp);
6928 nfs_put_lock_context(calldata->l_ctx);
6929 put_nfs_open_context(calldata->ctx);
6933 static void nfs4_locku_done(struct rpc_task *task, void *data)
6935 struct nfs4_unlockdata *calldata = data;
6936 struct nfs4_exception exception = {
6937 .inode = calldata->lsp->ls_state->inode,
6938 .stateid = &calldata->arg.stateid,
6941 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
6943 switch (task->tk_status) {
6945 renew_lease(calldata->server, calldata->timestamp);
6946 locks_lock_inode_wait(calldata->lsp->ls_state->inode, &calldata->fl);
6947 if (nfs4_update_lock_stateid(calldata->lsp,
6948 &calldata->res.stateid))
6951 case -NFS4ERR_ADMIN_REVOKED:
6952 case -NFS4ERR_EXPIRED:
6953 nfs4_free_revoked_stateid(calldata->server,
6954 &calldata->arg.stateid,
6955 task->tk_msg.rpc_cred);
6957 case -NFS4ERR_BAD_STATEID:
6958 case -NFS4ERR_STALE_STATEID:
6959 if (nfs4_sync_lock_stateid(&calldata->arg.stateid,
6961 rpc_restart_call_prepare(task);
6963 case -NFS4ERR_OLD_STATEID:
6964 if (nfs4_refresh_lock_old_stateid(&calldata->arg.stateid,
6966 rpc_restart_call_prepare(task);
6969 task->tk_status = nfs4_async_handle_exception(task,
6970 calldata->server, task->tk_status,
6972 if (exception.retry)
6973 rpc_restart_call_prepare(task);
6975 nfs_release_seqid(calldata->arg.seqid);
6978 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
6980 struct nfs4_unlockdata *calldata = data;
6982 if (test_bit(NFS_CONTEXT_UNLOCK, &calldata->l_ctx->open_context->flags) &&
6983 nfs_async_iocounter_wait(task, calldata->l_ctx))
6986 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
6988 if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) {
6989 /* Note: exit _without_ running nfs4_locku_done */
6992 calldata->timestamp = jiffies;
6993 if (nfs4_setup_sequence(calldata->server->nfs_client,
6994 &calldata->arg.seq_args,
6995 &calldata->res.seq_res,
6997 nfs_release_seqid(calldata->arg.seqid);
7000 task->tk_action = NULL;
7002 nfs4_sequence_done(task, &calldata->res.seq_res);
7005 static const struct rpc_call_ops nfs4_locku_ops = {
7006 .rpc_call_prepare = nfs4_locku_prepare,
7007 .rpc_call_done = nfs4_locku_done,
7008 .rpc_release = nfs4_locku_release_calldata,
7011 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
7012 struct nfs_open_context *ctx,
7013 struct nfs4_lock_state *lsp,
7014 struct nfs_seqid *seqid)
7016 struct nfs4_unlockdata *data;
7017 struct rpc_message msg = {
7018 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
7019 .rpc_cred = ctx->cred,
7021 struct rpc_task_setup task_setup_data = {
7022 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
7023 .rpc_message = &msg,
7024 .callback_ops = &nfs4_locku_ops,
7025 .workqueue = nfsiod_workqueue,
7026 .flags = RPC_TASK_ASYNC,
7029 if (nfs_server_capable(lsp->ls_state->inode, NFS_CAP_MOVEABLE))
7030 task_setup_data.flags |= RPC_TASK_MOVEABLE;
7032 nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client,
7033 NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg);
7035 /* Ensure this is an unlock - when canceling a lock, the
7036 * canceled lock is passed in, and it won't be an unlock.
7038 fl->c.flc_type = F_UNLCK;
7039 if (fl->c.flc_flags & FL_CLOSE)
7040 set_bit(NFS_CONTEXT_UNLOCK, &ctx->flags);
7042 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
7044 nfs_free_seqid(seqid);
7045 return ERR_PTR(-ENOMEM);
7048 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1, 0);
7049 msg.rpc_argp = &data->arg;
7050 msg.rpc_resp = &data->res;
7051 task_setup_data.callback_data = data;
7052 return rpc_run_task(&task_setup_data);
7055 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
7057 struct inode *inode = state->inode;
7058 struct nfs4_state_owner *sp = state->owner;
7059 struct nfs_inode *nfsi = NFS_I(inode);
7060 struct nfs_seqid *seqid;
7061 struct nfs4_lock_state *lsp;
7062 struct rpc_task *task;
7063 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
7065 unsigned char saved_flags = request->c.flc_flags;
7067 status = nfs4_set_lock_state(state, request);
7068 /* Unlock _before_ we do the RPC call */
7069 request->c.flc_flags |= FL_EXISTS;
7070 /* Exclude nfs_delegation_claim_locks() */
7071 mutex_lock(&sp->so_delegreturn_mutex);
7072 /* Exclude nfs4_reclaim_open_stateid() - note nesting! */
7073 down_read(&nfsi->rwsem);
7074 if (locks_lock_inode_wait(inode, request) == -ENOENT) {
7075 up_read(&nfsi->rwsem);
7076 mutex_unlock(&sp->so_delegreturn_mutex);
7079 lsp = request->fl_u.nfs4_fl.owner;
7080 set_bit(NFS_LOCK_UNLOCKING, &lsp->ls_flags);
7081 up_read(&nfsi->rwsem);
7082 mutex_unlock(&sp->so_delegreturn_mutex);
7085 /* Is this a delegated lock? */
7086 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0)
7088 alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid;
7089 seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
7093 task = nfs4_do_unlck(request,
7094 nfs_file_open_context(request->c.flc_file),
7096 status = PTR_ERR(task);
7099 status = rpc_wait_for_completion_task(task);
7102 request->c.flc_flags = saved_flags;
7103 trace_nfs4_unlock(request, state, F_SETLK, status);
7107 struct nfs4_lockdata {
7108 struct nfs_lock_args arg;
7109 struct nfs_lock_res res;
7110 struct nfs4_lock_state *lsp;
7111 struct nfs_open_context *ctx;
7112 struct file_lock fl;
7113 unsigned long timestamp;
7116 struct nfs_server *server;
7119 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
7120 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
7123 struct nfs4_lockdata *p;
7124 struct inode *inode = lsp->ls_state->inode;
7125 struct nfs_server *server = NFS_SERVER(inode);
7126 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
7128 p = kzalloc(sizeof(*p), gfp_mask);
7132 p->arg.fh = NFS_FH(inode);
7134 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
7135 if (IS_ERR(p->arg.open_seqid))
7137 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
7138 p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask);
7139 if (IS_ERR(p->arg.lock_seqid))
7140 goto out_free_seqid;
7141 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
7142 p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
7143 p->arg.lock_owner.s_dev = server->s_dev;
7144 p->res.lock_seqid = p->arg.lock_seqid;
7147 p->ctx = get_nfs_open_context(ctx);
7148 locks_init_lock(&p->fl);
7149 locks_copy_lock(&p->fl, fl);
7152 nfs_free_seqid(p->arg.open_seqid);
7158 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
7160 struct nfs4_lockdata *data = calldata;
7161 struct nfs4_state *state = data->lsp->ls_state;
7163 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
7165 /* Do we need to do an open_to_lock_owner? */
7166 if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) {
7167 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) {
7168 goto out_release_lock_seqid;
7170 nfs4_stateid_copy(&data->arg.open_stateid,
7171 &state->open_stateid);
7172 data->arg.new_lock_owner = 1;
7173 data->res.open_seqid = data->arg.open_seqid;
7175 data->arg.new_lock_owner = 0;
7176 nfs4_stateid_copy(&data->arg.lock_stateid,
7177 &data->lsp->ls_stateid);
7179 if (!nfs4_valid_open_stateid(state)) {
7180 data->rpc_status = -EBADF;
7181 task->tk_action = NULL;
7182 goto out_release_open_seqid;
7184 data->timestamp = jiffies;
7185 if (nfs4_setup_sequence(data->server->nfs_client,
7186 &data->arg.seq_args,
7190 out_release_open_seqid:
7191 nfs_release_seqid(data->arg.open_seqid);
7192 out_release_lock_seqid:
7193 nfs_release_seqid(data->arg.lock_seqid);
7195 nfs4_sequence_done(task, &data->res.seq_res);
7196 dprintk("%s: ret = %d\n", __func__, data->rpc_status);
7199 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
7201 struct nfs4_lockdata *data = calldata;
7202 struct nfs4_lock_state *lsp = data->lsp;
7204 if (!nfs4_sequence_done(task, &data->res.seq_res))
7207 data->rpc_status = task->tk_status;
7208 switch (task->tk_status) {
7210 renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)),
7212 if (data->arg.new_lock && !data->cancelled) {
7213 data->fl.c.flc_flags &= ~(FL_SLEEP | FL_ACCESS);
7214 if (locks_lock_inode_wait(lsp->ls_state->inode, &data->fl) < 0)
7217 if (data->arg.new_lock_owner != 0) {
7218 nfs_confirm_seqid(&lsp->ls_seqid, 0);
7219 nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid);
7220 set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
7221 } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid))
7224 case -NFS4ERR_OLD_STATEID:
7225 if (data->arg.new_lock_owner != 0 &&
7226 nfs4_refresh_open_old_stateid(&data->arg.open_stateid,
7229 if (nfs4_refresh_lock_old_stateid(&data->arg.lock_stateid, lsp))
7232 case -NFS4ERR_BAD_STATEID:
7233 case -NFS4ERR_STALE_STATEID:
7234 case -NFS4ERR_EXPIRED:
7235 if (data->arg.new_lock_owner != 0) {
7236 if (!nfs4_stateid_match(&data->arg.open_stateid,
7237 &lsp->ls_state->open_stateid))
7239 } else if (!nfs4_stateid_match(&data->arg.lock_stateid,
7244 dprintk("%s: ret = %d!\n", __func__, data->rpc_status);
7247 if (!data->cancelled)
7248 rpc_restart_call_prepare(task);
7252 static void nfs4_lock_release(void *calldata)
7254 struct nfs4_lockdata *data = calldata;
7256 nfs_free_seqid(data->arg.open_seqid);
7257 if (data->cancelled && data->rpc_status == 0) {
7258 struct rpc_task *task;
7259 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
7260 data->arg.lock_seqid);
7262 rpc_put_task_async(task);
7263 dprintk("%s: cancelling lock!\n", __func__);
7265 nfs_free_seqid(data->arg.lock_seqid);
7266 nfs4_put_lock_state(data->lsp);
7267 put_nfs_open_context(data->ctx);
7271 static const struct rpc_call_ops nfs4_lock_ops = {
7272 .rpc_call_prepare = nfs4_lock_prepare,
7273 .rpc_call_done = nfs4_lock_done,
7274 .rpc_release = nfs4_lock_release,
7277 static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
7280 case -NFS4ERR_ADMIN_REVOKED:
7281 case -NFS4ERR_EXPIRED:
7282 case -NFS4ERR_BAD_STATEID:
7283 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
7284 if (new_lock_owner != 0 ||
7285 test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0)
7286 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
7288 case -NFS4ERR_STALE_STATEID:
7289 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
7290 nfs4_schedule_lease_recovery(server->nfs_client);
7294 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
7296 struct nfs4_lockdata *data;
7297 struct rpc_task *task;
7298 struct rpc_message msg = {
7299 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
7300 .rpc_cred = state->owner->so_cred,
7302 struct rpc_task_setup task_setup_data = {
7303 .rpc_client = NFS_CLIENT(state->inode),
7304 .rpc_message = &msg,
7305 .callback_ops = &nfs4_lock_ops,
7306 .workqueue = nfsiod_workqueue,
7307 .flags = RPC_TASK_ASYNC | RPC_TASK_CRED_NOREF,
7311 if (nfs_server_capable(state->inode, NFS_CAP_MOVEABLE))
7312 task_setup_data.flags |= RPC_TASK_MOVEABLE;
7314 data = nfs4_alloc_lockdata(fl,
7315 nfs_file_open_context(fl->c.flc_file),
7316 fl->fl_u.nfs4_fl.owner, GFP_KERNEL);
7320 data->arg.block = 1;
7321 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1,
7322 recovery_type > NFS_LOCK_NEW);
7323 msg.rpc_argp = &data->arg;
7324 msg.rpc_resp = &data->res;
7325 task_setup_data.callback_data = data;
7326 if (recovery_type > NFS_LOCK_NEW) {
7327 if (recovery_type == NFS_LOCK_RECLAIM)
7328 data->arg.reclaim = NFS_LOCK_RECLAIM;
7330 data->arg.new_lock = 1;
7331 task = rpc_run_task(&task_setup_data);
7333 return PTR_ERR(task);
7334 ret = rpc_wait_for_completion_task(task);
7336 ret = data->rpc_status;
7338 nfs4_handle_setlk_error(data->server, data->lsp,
7339 data->arg.new_lock_owner, ret);
7341 data->cancelled = true;
7342 trace_nfs4_set_lock(fl, state, &data->res.stateid, cmd, ret);
7344 dprintk("%s: ret = %d\n", __func__, ret);
7348 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
7350 struct nfs_server *server = NFS_SERVER(state->inode);
7351 struct nfs4_exception exception = {
7352 .inode = state->inode,
7357 /* Cache the lock if possible... */
7358 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
7360 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
7361 if (err != -NFS4ERR_DELAY)
7363 nfs4_handle_exception(server, err, &exception);
7364 } while (exception.retry);
7368 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
7370 struct nfs_server *server = NFS_SERVER(state->inode);
7371 struct nfs4_exception exception = {
7372 .inode = state->inode,
7376 err = nfs4_set_lock_state(state, request);
7379 if (!recover_lost_locks) {
7380 set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags);
7384 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
7386 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
7390 case -NFS4ERR_GRACE:
7391 case -NFS4ERR_DELAY:
7392 nfs4_handle_exception(server, err, &exception);
7395 } while (exception.retry);
7400 #if defined(CONFIG_NFS_V4_1)
7401 static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request)
7403 struct nfs4_lock_state *lsp;
7406 status = nfs4_set_lock_state(state, request);
7409 lsp = request->fl_u.nfs4_fl.owner;
7410 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) ||
7411 test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
7413 return nfs4_lock_expired(state, request);
7417 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
7419 struct nfs_inode *nfsi = NFS_I(state->inode);
7420 struct nfs4_state_owner *sp = state->owner;
7421 unsigned char flags = request->c.flc_flags;
7424 request->c.flc_flags |= FL_ACCESS;
7425 status = locks_lock_inode_wait(state->inode, request);
7428 mutex_lock(&sp->so_delegreturn_mutex);
7429 down_read(&nfsi->rwsem);
7430 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
7431 /* Yes: cache locks! */
7432 /* ...but avoid races with delegation recall... */
7433 request->c.flc_flags = flags & ~FL_SLEEP;
7434 status = locks_lock_inode_wait(state->inode, request);
7435 up_read(&nfsi->rwsem);
7436 mutex_unlock(&sp->so_delegreturn_mutex);
7439 up_read(&nfsi->rwsem);
7440 mutex_unlock(&sp->so_delegreturn_mutex);
7441 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
7443 request->c.flc_flags = flags;
7447 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
7449 struct nfs4_exception exception = {
7451 .inode = state->inode,
7452 .interruptible = true,
7457 err = _nfs4_proc_setlk(state, cmd, request);
7458 if (err == -NFS4ERR_DENIED)
7460 err = nfs4_handle_exception(NFS_SERVER(state->inode),
7462 } while (exception.retry);
7466 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
7467 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
7470 nfs4_retry_setlk_simple(struct nfs4_state *state, int cmd,
7471 struct file_lock *request)
7473 int status = -ERESTARTSYS;
7474 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
7476 while(!signalled()) {
7477 status = nfs4_proc_setlk(state, cmd, request);
7478 if ((status != -EAGAIN) || IS_SETLK(cmd))
7480 __set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
7481 schedule_timeout(timeout);
7483 timeout = min_t(unsigned long, NFS4_LOCK_MAXTIMEOUT, timeout);
7484 status = -ERESTARTSYS;
7489 #ifdef CONFIG_NFS_V4_1
7490 struct nfs4_lock_waiter {
7491 struct inode *inode;
7492 struct nfs_lowner owner;
7493 wait_queue_entry_t wait;
7497 nfs4_wake_lock_waiter(wait_queue_entry_t *wait, unsigned int mode, int flags, void *key)
7499 struct nfs4_lock_waiter *waiter =
7500 container_of(wait, struct nfs4_lock_waiter, wait);
7502 /* NULL key means to wake up everyone */
7504 struct cb_notify_lock_args *cbnl = key;
7505 struct nfs_lowner *lowner = &cbnl->cbnl_owner,
7506 *wowner = &waiter->owner;
7508 /* Only wake if the callback was for the same owner. */
7509 if (lowner->id != wowner->id || lowner->s_dev != wowner->s_dev)
7512 /* Make sure it's for the right inode */
7513 if (nfs_compare_fh(NFS_FH(waiter->inode), &cbnl->cbnl_fh))
7517 return woken_wake_function(wait, mode, flags, key);
7521 nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
7523 struct nfs4_lock_state *lsp = request->fl_u.nfs4_fl.owner;
7524 struct nfs_server *server = NFS_SERVER(state->inode);
7525 struct nfs_client *clp = server->nfs_client;
7526 wait_queue_head_t *q = &clp->cl_lock_waitq;
7527 struct nfs4_lock_waiter waiter = {
7528 .inode = state->inode,
7529 .owner = { .clientid = clp->cl_clientid,
7530 .id = lsp->ls_seqid.owner_id,
7531 .s_dev = server->s_dev },
7535 /* Don't bother with waitqueue if we don't expect a callback */
7536 if (!test_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags))
7537 return nfs4_retry_setlk_simple(state, cmd, request);
7539 init_wait(&waiter.wait);
7540 waiter.wait.func = nfs4_wake_lock_waiter;
7541 add_wait_queue(q, &waiter.wait);
7544 status = nfs4_proc_setlk(state, cmd, request);
7545 if (status != -EAGAIN || IS_SETLK(cmd))
7548 status = -ERESTARTSYS;
7549 wait_woken(&waiter.wait, TASK_INTERRUPTIBLE|TASK_FREEZABLE,
7550 NFS4_LOCK_MAXTIMEOUT);
7551 } while (!signalled());
7553 remove_wait_queue(q, &waiter.wait);
7557 #else /* !CONFIG_NFS_V4_1 */
7559 nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
7561 return nfs4_retry_setlk_simple(state, cmd, request);
7566 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
7568 struct nfs_open_context *ctx;
7569 struct nfs4_state *state;
7572 /* verify open state */
7573 ctx = nfs_file_open_context(filp);
7576 if (IS_GETLK(cmd)) {
7578 return nfs4_proc_getlk(state, F_GETLK, request);
7582 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
7585 if (lock_is_unlock(request)) {
7587 return nfs4_proc_unlck(state, cmd, request);
7594 if ((request->c.flc_flags & FL_POSIX) &&
7595 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
7599 * Don't rely on the VFS having checked the file open mode,
7600 * since it won't do this for flock() locks.
7602 switch (request->c.flc_type) {
7604 if (!(filp->f_mode & FMODE_READ))
7608 if (!(filp->f_mode & FMODE_WRITE))
7612 status = nfs4_set_lock_state(state, request);
7616 return nfs4_retry_setlk(state, cmd, request);
7619 static int nfs4_delete_lease(struct file *file, void **priv)
7621 return generic_setlease(file, F_UNLCK, NULL, priv);
7624 static int nfs4_add_lease(struct file *file, int arg, struct file_lease **lease,
7627 struct inode *inode = file_inode(file);
7628 fmode_t type = arg == F_RDLCK ? FMODE_READ : FMODE_WRITE;
7631 /* No delegation, no lease */
7632 if (!nfs4_have_delegation(inode, type))
7634 ret = generic_setlease(file, arg, lease, priv);
7635 if (ret || nfs4_have_delegation(inode, type))
7637 /* We raced with a delegation return */
7638 nfs4_delete_lease(file, priv);
7642 int nfs4_proc_setlease(struct file *file, int arg, struct file_lease **lease,
7648 return nfs4_add_lease(file, arg, lease, priv);
7650 return nfs4_delete_lease(file, priv);
7656 int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid)
7658 struct nfs_server *server = NFS_SERVER(state->inode);
7661 err = nfs4_set_lock_state(state, fl);
7665 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
7666 if (err != -NFS4ERR_DELAY)
7669 } while (err == -NFS4ERR_DELAY);
7670 return nfs4_handle_delegation_recall_error(server, state, stateid, fl, err);
7673 struct nfs_release_lockowner_data {
7674 struct nfs4_lock_state *lsp;
7675 struct nfs_server *server;
7676 struct nfs_release_lockowner_args args;
7677 struct nfs_release_lockowner_res res;
7678 unsigned long timestamp;
7681 static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata)
7683 struct nfs_release_lockowner_data *data = calldata;
7684 struct nfs_server *server = data->server;
7685 nfs4_setup_sequence(server->nfs_client, &data->args.seq_args,
7686 &data->res.seq_res, task);
7687 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
7688 data->timestamp = jiffies;
7691 static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata)
7693 struct nfs_release_lockowner_data *data = calldata;
7694 struct nfs_server *server = data->server;
7696 nfs40_sequence_done(task, &data->res.seq_res);
7698 switch (task->tk_status) {
7700 renew_lease(server, data->timestamp);
7702 case -NFS4ERR_STALE_CLIENTID:
7703 case -NFS4ERR_EXPIRED:
7704 nfs4_schedule_lease_recovery(server->nfs_client);
7706 case -NFS4ERR_LEASE_MOVED:
7707 case -NFS4ERR_DELAY:
7708 if (nfs4_async_handle_error(task, server,
7709 NULL, NULL) == -EAGAIN)
7710 rpc_restart_call_prepare(task);
7714 static void nfs4_release_lockowner_release(void *calldata)
7716 struct nfs_release_lockowner_data *data = calldata;
7717 nfs4_free_lock_state(data->server, data->lsp);
7721 static const struct rpc_call_ops nfs4_release_lockowner_ops = {
7722 .rpc_call_prepare = nfs4_release_lockowner_prepare,
7723 .rpc_call_done = nfs4_release_lockowner_done,
7724 .rpc_release = nfs4_release_lockowner_release,
7728 nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp)
7730 struct nfs_release_lockowner_data *data;
7731 struct rpc_message msg = {
7732 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
7735 if (server->nfs_client->cl_mvops->minor_version != 0)
7738 data = kmalloc(sizeof(*data), GFP_KERNEL);
7742 data->server = server;
7743 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
7744 data->args.lock_owner.id = lsp->ls_seqid.owner_id;
7745 data->args.lock_owner.s_dev = server->s_dev;
7747 msg.rpc_argp = &data->args;
7748 msg.rpc_resp = &data->res;
7749 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0, 0);
7750 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data);
7753 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
7755 static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler,
7756 struct mnt_idmap *idmap,
7757 struct dentry *unused, struct inode *inode,
7758 const char *key, const void *buf,
7759 size_t buflen, int flags)
7761 return nfs4_proc_set_acl(inode, buf, buflen, NFS4ACL_ACL);
7764 static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler,
7765 struct dentry *unused, struct inode *inode,
7766 const char *key, void *buf, size_t buflen)
7768 return nfs4_proc_get_acl(inode, buf, buflen, NFS4ACL_ACL);
7771 static bool nfs4_xattr_list_nfs4_acl(struct dentry *dentry)
7773 return nfs4_server_supports_acls(NFS_SB(dentry->d_sb), NFS4ACL_ACL);
7776 #if defined(CONFIG_NFS_V4_1)
7777 #define XATTR_NAME_NFSV4_DACL "system.nfs4_dacl"
7779 static int nfs4_xattr_set_nfs4_dacl(const struct xattr_handler *handler,
7780 struct mnt_idmap *idmap,
7781 struct dentry *unused, struct inode *inode,
7782 const char *key, const void *buf,
7783 size_t buflen, int flags)
7785 return nfs4_proc_set_acl(inode, buf, buflen, NFS4ACL_DACL);
7788 static int nfs4_xattr_get_nfs4_dacl(const struct xattr_handler *handler,
7789 struct dentry *unused, struct inode *inode,
7790 const char *key, void *buf, size_t buflen)
7792 return nfs4_proc_get_acl(inode, buf, buflen, NFS4ACL_DACL);
7795 static bool nfs4_xattr_list_nfs4_dacl(struct dentry *dentry)
7797 return nfs4_server_supports_acls(NFS_SB(dentry->d_sb), NFS4ACL_DACL);
7800 #define XATTR_NAME_NFSV4_SACL "system.nfs4_sacl"
7802 static int nfs4_xattr_set_nfs4_sacl(const struct xattr_handler *handler,
7803 struct mnt_idmap *idmap,
7804 struct dentry *unused, struct inode *inode,
7805 const char *key, const void *buf,
7806 size_t buflen, int flags)
7808 return nfs4_proc_set_acl(inode, buf, buflen, NFS4ACL_SACL);
7811 static int nfs4_xattr_get_nfs4_sacl(const struct xattr_handler *handler,
7812 struct dentry *unused, struct inode *inode,
7813 const char *key, void *buf, size_t buflen)
7815 return nfs4_proc_get_acl(inode, buf, buflen, NFS4ACL_SACL);
7818 static bool nfs4_xattr_list_nfs4_sacl(struct dentry *dentry)
7820 return nfs4_server_supports_acls(NFS_SB(dentry->d_sb), NFS4ACL_SACL);
7825 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
7827 static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler,
7828 struct mnt_idmap *idmap,
7829 struct dentry *unused, struct inode *inode,
7830 const char *key, const void *buf,
7831 size_t buflen, int flags)
7833 if (security_ismaclabel(key))
7834 return nfs4_set_security_label(inode, buf, buflen);
7839 static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler,
7840 struct dentry *unused, struct inode *inode,
7841 const char *key, void *buf, size_t buflen)
7843 if (security_ismaclabel(key))
7844 return nfs4_get_security_label(inode, buf, buflen);
7849 nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
7853 if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) {
7854 len = security_inode_listsecurity(inode, list, list_len);
7855 if (len >= 0 && list_len && len > list_len)
7861 static const struct xattr_handler nfs4_xattr_nfs4_label_handler = {
7862 .prefix = XATTR_SECURITY_PREFIX,
7863 .get = nfs4_xattr_get_nfs4_label,
7864 .set = nfs4_xattr_set_nfs4_label,
7870 nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
7877 #ifdef CONFIG_NFS_V4_2
7878 static int nfs4_xattr_set_nfs4_user(const struct xattr_handler *handler,
7879 struct mnt_idmap *idmap,
7880 struct dentry *unused, struct inode *inode,
7881 const char *key, const void *buf,
7882 size_t buflen, int flags)
7887 if (!nfs_server_capable(inode, NFS_CAP_XATTR))
7891 * There is no mapping from the MAY_* flags to the NFS_ACCESS_XA*
7892 * flags right now. Handling of xattr operations use the normal
7893 * file read/write permissions.
7895 * Just in case the server has other ideas (which RFC 8276 allows),
7896 * do a cached access check for the XA* flags to possibly avoid
7897 * doing an RPC and getting EACCES back.
7899 if (!nfs_access_get_cached(inode, current_cred(), &mask, true)) {
7900 if (!(mask & NFS_ACCESS_XAWRITE))
7905 ret = nfs42_proc_removexattr(inode, key);
7907 nfs4_xattr_cache_remove(inode, key);
7909 ret = nfs42_proc_setxattr(inode, key, buf, buflen, flags);
7911 nfs4_xattr_cache_add(inode, key, buf, NULL, buflen);
7917 static int nfs4_xattr_get_nfs4_user(const struct xattr_handler *handler,
7918 struct dentry *unused, struct inode *inode,
7919 const char *key, void *buf, size_t buflen)
7924 if (!nfs_server_capable(inode, NFS_CAP_XATTR))
7927 if (!nfs_access_get_cached(inode, current_cred(), &mask, true)) {
7928 if (!(mask & NFS_ACCESS_XAREAD))
7932 ret = nfs_revalidate_inode(inode, NFS_INO_INVALID_CHANGE);
7936 ret = nfs4_xattr_cache_get(inode, key, buf, buflen);
7937 if (ret >= 0 || (ret < 0 && ret != -ENOENT))
7940 ret = nfs42_proc_getxattr(inode, key, buf, buflen);
7946 nfs4_listxattr_nfs4_user(struct inode *inode, char *list, size_t list_len)
7955 if (!nfs_server_capable(inode, NFS_CAP_XATTR))
7958 if (!nfs_access_get_cached(inode, current_cred(), &mask, true)) {
7959 if (!(mask & NFS_ACCESS_XALIST))
7963 ret = nfs_revalidate_inode(inode, NFS_INO_INVALID_CHANGE);
7967 ret = nfs4_xattr_cache_list(inode, list, list_len);
7968 if (ret >= 0 || (ret < 0 && ret != -ENOENT))
7973 buflen = list_len ? list_len : XATTR_LIST_MAX;
7974 buf = list_len ? list : NULL;
7978 ret = nfs42_proc_listxattrs(inode, buf, buflen,
7991 nfs4_xattr_cache_set_list(inode, list, size);
7999 nfs4_listxattr_nfs4_user(struct inode *inode, char *list, size_t list_len)
8003 #endif /* CONFIG_NFS_V4_2 */
8006 * nfs_fhget will use either the mounted_on_fileid or the fileid
8008 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
8010 if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) ||
8011 (fattr->valid & NFS_ATTR_FATTR_FILEID)) &&
8012 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
8013 (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS)))
8016 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
8017 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL;
8018 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
8022 static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
8023 const struct qstr *name,
8024 struct nfs4_fs_locations *fs_locations,
8027 struct nfs_server *server = NFS_SERVER(dir);
8029 struct nfs4_fs_locations_arg args = {
8030 .dir_fh = NFS_FH(dir),
8035 struct nfs4_fs_locations_res res = {
8036 .fs_locations = fs_locations,
8038 struct rpc_message msg = {
8039 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
8045 dprintk("%s: start\n", __func__);
8047 bitmask[0] = nfs4_fattr_bitmap[0] | FATTR4_WORD0_FS_LOCATIONS;
8048 bitmask[1] = nfs4_fattr_bitmap[1];
8050 /* Ask for the fileid of the absent filesystem if mounted_on_fileid
8051 * is not supported */
8052 if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
8053 bitmask[0] &= ~FATTR4_WORD0_FILEID;
8055 bitmask[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
8057 nfs_fattr_init(fs_locations->fattr);
8058 fs_locations->server = server;
8059 fs_locations->nlocations = 0;
8060 status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0);
8061 dprintk("%s: returned status = %d\n", __func__, status);
8065 int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
8066 const struct qstr *name,
8067 struct nfs4_fs_locations *fs_locations,
8070 struct nfs4_exception exception = {
8071 .interruptible = true,
8075 err = _nfs4_proc_fs_locations(client, dir, name,
8076 fs_locations, page);
8077 trace_nfs4_get_fs_locations(dir, name, err);
8078 err = nfs4_handle_exception(NFS_SERVER(dir), err,
8080 } while (exception.retry);
8085 * This operation also signals the server that this client is
8086 * performing migration recovery. The server can stop returning
8087 * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is
8088 * appended to this compound to identify the client ID which is
8089 * performing recovery.
8091 static int _nfs40_proc_get_locations(struct nfs_server *server,
8092 struct nfs_fh *fhandle,
8093 struct nfs4_fs_locations *locations,
8094 struct page *page, const struct cred *cred)
8096 struct rpc_clnt *clnt = server->client;
8098 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
8100 struct nfs4_fs_locations_arg args = {
8101 .clientid = server->nfs_client->cl_clientid,
8105 .migration = 1, /* skip LOOKUP */
8106 .renew = 1, /* append RENEW */
8108 struct nfs4_fs_locations_res res = {
8109 .fs_locations = locations,
8113 struct rpc_message msg = {
8114 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
8119 unsigned long now = jiffies;
8122 nfs_fattr_init(locations->fattr);
8123 locations->server = server;
8124 locations->nlocations = 0;
8126 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
8127 status = nfs4_call_sync_sequence(clnt, server, &msg,
8128 &args.seq_args, &res.seq_res);
8132 renew_lease(server, now);
8136 #ifdef CONFIG_NFS_V4_1
8139 * This operation also signals the server that this client is
8140 * performing migration recovery. The server can stop asserting
8141 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID
8142 * performing this operation is identified in the SEQUENCE
8143 * operation in this compound.
8145 * When the client supports GETATTR(fs_locations_info), it can
8146 * be plumbed in here.
8148 static int _nfs41_proc_get_locations(struct nfs_server *server,
8149 struct nfs_fh *fhandle,
8150 struct nfs4_fs_locations *locations,
8151 struct page *page, const struct cred *cred)
8153 struct rpc_clnt *clnt = server->client;
8155 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
8157 struct nfs4_fs_locations_arg args = {
8161 .migration = 1, /* skip LOOKUP */
8163 struct nfs4_fs_locations_res res = {
8164 .fs_locations = locations,
8167 struct rpc_message msg = {
8168 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
8173 struct nfs4_call_sync_data data = {
8174 .seq_server = server,
8175 .seq_args = &args.seq_args,
8176 .seq_res = &res.seq_res,
8178 struct rpc_task_setup task_setup_data = {
8180 .rpc_message = &msg,
8181 .callback_ops = server->nfs_client->cl_mvops->call_sync_ops,
8182 .callback_data = &data,
8183 .flags = RPC_TASK_NO_ROUND_ROBIN,
8187 nfs_fattr_init(locations->fattr);
8188 locations->server = server;
8189 locations->nlocations = 0;
8191 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
8192 status = nfs4_call_sync_custom(&task_setup_data);
8193 if (status == NFS4_OK &&
8194 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
8195 status = -NFS4ERR_LEASE_MOVED;
8199 #endif /* CONFIG_NFS_V4_1 */
8202 * nfs4_proc_get_locations - discover locations for a migrated FSID
8203 * @server: pointer to nfs_server to process
8204 * @fhandle: pointer to the kernel NFS client file handle
8205 * @locations: result of query
8207 * @cred: credential to use for this operation
8209 * Returns NFS4_OK on success, a negative NFS4ERR status code if the
8210 * operation failed, or a negative errno if a local error occurred.
8212 * On success, "locations" is filled in, but if the server has
8213 * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not
8216 * -NFS4ERR_LEASE_MOVED is returned if the server still has leases
8217 * from this client that require migration recovery.
8219 int nfs4_proc_get_locations(struct nfs_server *server,
8220 struct nfs_fh *fhandle,
8221 struct nfs4_fs_locations *locations,
8222 struct page *page, const struct cred *cred)
8224 struct nfs_client *clp = server->nfs_client;
8225 const struct nfs4_mig_recovery_ops *ops =
8226 clp->cl_mvops->mig_recovery_ops;
8227 struct nfs4_exception exception = {
8228 .interruptible = true,
8232 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
8233 (unsigned long long)server->fsid.major,
8234 (unsigned long long)server->fsid.minor,
8236 nfs_display_fhandle(fhandle, __func__);
8239 status = ops->get_locations(server, fhandle, locations, page,
8241 if (status != -NFS4ERR_DELAY)
8243 nfs4_handle_exception(server, status, &exception);
8244 } while (exception.retry);
8249 * This operation also signals the server that this client is
8250 * performing "lease moved" recovery. The server can stop
8251 * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation
8252 * is appended to this compound to identify the client ID which is
8253 * performing recovery.
8255 static int _nfs40_proc_fsid_present(struct inode *inode, const struct cred *cred)
8257 struct nfs_server *server = NFS_SERVER(inode);
8258 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
8259 struct rpc_clnt *clnt = server->client;
8260 struct nfs4_fsid_present_arg args = {
8261 .fh = NFS_FH(inode),
8262 .clientid = clp->cl_clientid,
8263 .renew = 1, /* append RENEW */
8265 struct nfs4_fsid_present_res res = {
8268 struct rpc_message msg = {
8269 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
8274 unsigned long now = jiffies;
8277 res.fh = nfs_alloc_fhandle();
8281 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
8282 status = nfs4_call_sync_sequence(clnt, server, &msg,
8283 &args.seq_args, &res.seq_res);
8284 nfs_free_fhandle(res.fh);
8288 do_renew_lease(clp, now);
8292 #ifdef CONFIG_NFS_V4_1
8295 * This operation also signals the server that this client is
8296 * performing "lease moved" recovery. The server can stop asserting
8297 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing
8298 * this operation is identified in the SEQUENCE operation in this
8301 static int _nfs41_proc_fsid_present(struct inode *inode, const struct cred *cred)
8303 struct nfs_server *server = NFS_SERVER(inode);
8304 struct rpc_clnt *clnt = server->client;
8305 struct nfs4_fsid_present_arg args = {
8306 .fh = NFS_FH(inode),
8308 struct nfs4_fsid_present_res res = {
8310 struct rpc_message msg = {
8311 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
8318 res.fh = nfs_alloc_fhandle();
8322 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
8323 status = nfs4_call_sync_sequence(clnt, server, &msg,
8324 &args.seq_args, &res.seq_res);
8325 nfs_free_fhandle(res.fh);
8326 if (status == NFS4_OK &&
8327 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
8328 status = -NFS4ERR_LEASE_MOVED;
8332 #endif /* CONFIG_NFS_V4_1 */
8335 * nfs4_proc_fsid_present - Is this FSID present or absent on server?
8336 * @inode: inode on FSID to check
8337 * @cred: credential to use for this operation
8339 * Server indicates whether the FSID is present, moved, or not
8340 * recognized. This operation is necessary to clear a LEASE_MOVED
8341 * condition for this client ID.
8343 * Returns NFS4_OK if the FSID is present on this server,
8344 * -NFS4ERR_MOVED if the FSID is no longer present, a negative
8345 * NFS4ERR code if some error occurred on the server, or a
8346 * negative errno if a local failure occurred.
8348 int nfs4_proc_fsid_present(struct inode *inode, const struct cred *cred)
8350 struct nfs_server *server = NFS_SERVER(inode);
8351 struct nfs_client *clp = server->nfs_client;
8352 const struct nfs4_mig_recovery_ops *ops =
8353 clp->cl_mvops->mig_recovery_ops;
8354 struct nfs4_exception exception = {
8355 .interruptible = true,
8359 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
8360 (unsigned long long)server->fsid.major,
8361 (unsigned long long)server->fsid.minor,
8363 nfs_display_fhandle(NFS_FH(inode), __func__);
8366 status = ops->fsid_present(inode, cred);
8367 if (status != -NFS4ERR_DELAY)
8369 nfs4_handle_exception(server, status, &exception);
8370 } while (exception.retry);
8375 * If 'use_integrity' is true and the state managment nfs_client
8376 * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient
8377 * and the machine credential as per RFC3530bis and RFC5661 Security
8378 * Considerations sections. Otherwise, just use the user cred with the
8379 * filesystem's rpc_client.
8381 static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors, bool use_integrity)
8384 struct rpc_clnt *clnt = NFS_SERVER(dir)->client;
8385 struct nfs_client *clp = NFS_SERVER(dir)->nfs_client;
8386 struct nfs4_secinfo_arg args = {
8387 .dir_fh = NFS_FH(dir),
8390 struct nfs4_secinfo_res res = {
8393 struct rpc_message msg = {
8394 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
8398 struct nfs4_call_sync_data data = {
8399 .seq_server = NFS_SERVER(dir),
8400 .seq_args = &args.seq_args,
8401 .seq_res = &res.seq_res,
8403 struct rpc_task_setup task_setup = {
8405 .rpc_message = &msg,
8406 .callback_ops = clp->cl_mvops->call_sync_ops,
8407 .callback_data = &data,
8408 .flags = RPC_TASK_NO_ROUND_ROBIN,
8410 const struct cred *cred = NULL;
8412 if (use_integrity) {
8413 clnt = clp->cl_rpcclient;
8414 task_setup.rpc_client = clnt;
8416 cred = nfs4_get_clid_cred(clp);
8417 msg.rpc_cred = cred;
8420 dprintk("NFS call secinfo %s\n", name->name);
8422 nfs4_state_protect(clp, NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg);
8423 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 0);
8424 status = nfs4_call_sync_custom(&task_setup);
8426 dprintk("NFS reply secinfo: %d\n", status);
8432 int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name,
8433 struct nfs4_secinfo_flavors *flavors)
8435 struct nfs4_exception exception = {
8436 .interruptible = true,
8440 err = -NFS4ERR_WRONGSEC;
8442 /* try to use integrity protection with machine cred */
8443 if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client))
8444 err = _nfs4_proc_secinfo(dir, name, flavors, true);
8447 * if unable to use integrity protection, or SECINFO with
8448 * integrity protection returns NFS4ERR_WRONGSEC (which is
8449 * disallowed by spec, but exists in deployed servers) use
8450 * the current filesystem's rpc_client and the user cred.
8452 if (err == -NFS4ERR_WRONGSEC)
8453 err = _nfs4_proc_secinfo(dir, name, flavors, false);
8455 trace_nfs4_secinfo(dir, name, err);
8456 err = nfs4_handle_exception(NFS_SERVER(dir), err,
8458 } while (exception.retry);
8462 #ifdef CONFIG_NFS_V4_1
8464 * Check the exchange flags returned by the server for invalid flags, having
8465 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
8468 static int nfs4_check_cl_exchange_flags(u32 flags, u32 version)
8470 if (version >= 2 && (flags & ~EXCHGID4_2_FLAG_MASK_R))
8472 else if (version < 2 && (flags & ~EXCHGID4_FLAG_MASK_R))
8474 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
8475 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
8477 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
8481 return -NFS4ERR_INVAL;
8485 nfs41_same_server_scope(struct nfs41_server_scope *a,
8486 struct nfs41_server_scope *b)
8488 if (a->server_scope_sz != b->server_scope_sz)
8490 return memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0;
8494 nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata)
8496 struct nfs41_bind_conn_to_session_args *args = task->tk_msg.rpc_argp;
8497 struct nfs41_bind_conn_to_session_res *res = task->tk_msg.rpc_resp;
8498 struct nfs_client *clp = args->client;
8500 switch (task->tk_status) {
8501 case -NFS4ERR_BADSESSION:
8502 case -NFS4ERR_DEADSESSION:
8503 nfs4_schedule_session_recovery(clp->cl_session,
8507 if (args->dir == NFS4_CDFC4_FORE_OR_BOTH &&
8508 res->dir != NFS4_CDFS4_BOTH) {
8509 rpc_task_close_connection(task);
8510 if (args->retries++ < MAX_BIND_CONN_TO_SESSION_RETRIES)
8511 rpc_restart_call(task);
8515 static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = {
8516 .rpc_call_done = nfs4_bind_one_conn_to_session_done,
8520 * nfs4_proc_bind_one_conn_to_session()
8522 * The 4.1 client currently uses the same TCP connection for the
8523 * fore and backchannel.
8526 int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt,
8527 struct rpc_xprt *xprt,
8528 struct nfs_client *clp,
8529 const struct cred *cred)
8532 struct nfs41_bind_conn_to_session_args args = {
8534 .dir = NFS4_CDFC4_FORE_OR_BOTH,
8537 struct nfs41_bind_conn_to_session_res res;
8538 struct rpc_message msg = {
8540 &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION],
8545 struct rpc_task_setup task_setup_data = {
8548 .callback_ops = &nfs4_bind_one_conn_to_session_ops,
8549 .rpc_message = &msg,
8550 .flags = RPC_TASK_TIMEOUT,
8552 struct rpc_task *task;
8554 nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id);
8555 if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
8556 args.dir = NFS4_CDFC4_FORE;
8558 /* Do not set the backchannel flag unless this is clnt->cl_xprt */
8559 if (xprt != rcu_access_pointer(clnt->cl_xprt))
8560 args.dir = NFS4_CDFC4_FORE;
8562 task = rpc_run_task(&task_setup_data);
8563 if (!IS_ERR(task)) {
8564 status = task->tk_status;
8567 status = PTR_ERR(task);
8568 trace_nfs4_bind_conn_to_session(clp, status);
8570 if (memcmp(res.sessionid.data,
8571 clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) {
8572 dprintk("NFS: %s: Session ID mismatch\n", __func__);
8575 if ((res.dir & args.dir) != res.dir || res.dir == 0) {
8576 dprintk("NFS: %s: Unexpected direction from server\n",
8580 if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) {
8581 dprintk("NFS: %s: Server returned RDMA mode = true\n",
8590 struct rpc_bind_conn_calldata {
8591 struct nfs_client *clp;
8592 const struct cred *cred;
8596 nfs4_proc_bind_conn_to_session_callback(struct rpc_clnt *clnt,
8597 struct rpc_xprt *xprt,
8600 struct rpc_bind_conn_calldata *p = calldata;
8602 return nfs4_proc_bind_one_conn_to_session(clnt, xprt, p->clp, p->cred);
8605 int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, const struct cred *cred)
8607 struct rpc_bind_conn_calldata data = {
8611 return rpc_clnt_iterate_for_each_xprt(clp->cl_rpcclient,
8612 nfs4_proc_bind_conn_to_session_callback, &data);
8616 * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map
8617 * and operations we'd like to see to enable certain features in the allow map
8619 static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = {
8620 .how = SP4_MACH_CRED,
8621 .enforce.u.words = {
8622 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
8623 1 << (OP_EXCHANGE_ID - 32) |
8624 1 << (OP_CREATE_SESSION - 32) |
8625 1 << (OP_DESTROY_SESSION - 32) |
8626 1 << (OP_DESTROY_CLIENTID - 32)
8629 [0] = 1 << (OP_CLOSE) |
8630 1 << (OP_OPEN_DOWNGRADE) |
8632 1 << (OP_DELEGRETURN) |
8634 [1] = 1 << (OP_SECINFO - 32) |
8635 1 << (OP_SECINFO_NO_NAME - 32) |
8636 1 << (OP_LAYOUTRETURN - 32) |
8637 1 << (OP_TEST_STATEID - 32) |
8638 1 << (OP_FREE_STATEID - 32) |
8639 1 << (OP_WRITE - 32)
8644 * Select the state protection mode for client `clp' given the server results
8645 * from exchange_id in `sp'.
8647 * Returns 0 on success, negative errno otherwise.
8649 static int nfs4_sp4_select_mode(struct nfs_client *clp,
8650 struct nfs41_state_protection *sp)
8652 static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = {
8653 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
8654 1 << (OP_EXCHANGE_ID - 32) |
8655 1 << (OP_CREATE_SESSION - 32) |
8656 1 << (OP_DESTROY_SESSION - 32) |
8657 1 << (OP_DESTROY_CLIENTID - 32)
8659 unsigned long flags = 0;
8663 if (sp->how == SP4_MACH_CRED) {
8664 /* Print state protect result */
8665 dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n");
8666 for (i = 0; i <= LAST_NFS4_OP; i++) {
8667 if (test_bit(i, sp->enforce.u.longs))
8668 dfprintk(MOUNT, " enforce op %d\n", i);
8669 if (test_bit(i, sp->allow.u.longs))
8670 dfprintk(MOUNT, " allow op %d\n", i);
8673 /* make sure nothing is on enforce list that isn't supported */
8674 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) {
8675 if (sp->enforce.u.words[i] & ~supported_enforce[i]) {
8676 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
8683 * Minimal mode - state operations are allowed to use machine
8684 * credential. Note this already happens by default, so the
8685 * client doesn't have to do anything more than the negotiation.
8687 * NOTE: we don't care if EXCHANGE_ID is in the list -
8688 * we're already using the machine cred for exchange_id
8689 * and will never use a different cred.
8691 if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) &&
8692 test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) &&
8693 test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) &&
8694 test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) {
8695 dfprintk(MOUNT, "sp4_mach_cred:\n");
8696 dfprintk(MOUNT, " minimal mode enabled\n");
8697 __set_bit(NFS_SP4_MACH_CRED_MINIMAL, &flags);
8699 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
8704 if (test_bit(OP_CLOSE, sp->allow.u.longs) &&
8705 test_bit(OP_OPEN_DOWNGRADE, sp->allow.u.longs) &&
8706 test_bit(OP_DELEGRETURN, sp->allow.u.longs) &&
8707 test_bit(OP_LOCKU, sp->allow.u.longs)) {
8708 dfprintk(MOUNT, " cleanup mode enabled\n");
8709 __set_bit(NFS_SP4_MACH_CRED_CLEANUP, &flags);
8712 if (test_bit(OP_LAYOUTRETURN, sp->allow.u.longs)) {
8713 dfprintk(MOUNT, " pnfs cleanup mode enabled\n");
8714 __set_bit(NFS_SP4_MACH_CRED_PNFS_CLEANUP, &flags);
8717 if (test_bit(OP_SECINFO, sp->allow.u.longs) &&
8718 test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) {
8719 dfprintk(MOUNT, " secinfo mode enabled\n");
8720 __set_bit(NFS_SP4_MACH_CRED_SECINFO, &flags);
8723 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) &&
8724 test_bit(OP_FREE_STATEID, sp->allow.u.longs)) {
8725 dfprintk(MOUNT, " stateid mode enabled\n");
8726 __set_bit(NFS_SP4_MACH_CRED_STATEID, &flags);
8729 if (test_bit(OP_WRITE, sp->allow.u.longs)) {
8730 dfprintk(MOUNT, " write mode enabled\n");
8731 __set_bit(NFS_SP4_MACH_CRED_WRITE, &flags);
8734 if (test_bit(OP_COMMIT, sp->allow.u.longs)) {
8735 dfprintk(MOUNT, " commit mode enabled\n");
8736 __set_bit(NFS_SP4_MACH_CRED_COMMIT, &flags);
8740 clp->cl_sp4_flags = flags;
8744 struct nfs41_exchange_id_data {
8745 struct nfs41_exchange_id_res res;
8746 struct nfs41_exchange_id_args args;
8749 static void nfs4_exchange_id_release(void *data)
8751 struct nfs41_exchange_id_data *cdata =
8752 (struct nfs41_exchange_id_data *)data;
8754 nfs_put_client(cdata->args.client);
8755 kfree(cdata->res.impl_id);
8756 kfree(cdata->res.server_scope);
8757 kfree(cdata->res.server_owner);
8761 static const struct rpc_call_ops nfs4_exchange_id_call_ops = {
8762 .rpc_release = nfs4_exchange_id_release,
8766 * _nfs4_proc_exchange_id()
8768 * Wrapper for EXCHANGE_ID operation.
8770 static struct rpc_task *
8771 nfs4_run_exchange_id(struct nfs_client *clp, const struct cred *cred,
8772 u32 sp4_how, struct rpc_xprt *xprt)
8774 struct rpc_message msg = {
8775 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
8778 struct rpc_task_setup task_setup_data = {
8779 .rpc_client = clp->cl_rpcclient,
8780 .callback_ops = &nfs4_exchange_id_call_ops,
8781 .rpc_message = &msg,
8782 .flags = RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN,
8784 struct nfs41_exchange_id_data *calldata;
8787 if (!refcount_inc_not_zero(&clp->cl_count))
8788 return ERR_PTR(-EIO);
8791 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
8795 nfs4_init_boot_verifier(clp, &calldata->args.verifier);
8797 status = nfs4_init_uniform_client_string(clp);
8801 calldata->res.server_owner = kzalloc(sizeof(struct nfs41_server_owner),
8804 if (unlikely(calldata->res.server_owner == NULL))
8807 calldata->res.server_scope = kzalloc(sizeof(struct nfs41_server_scope),
8809 if (unlikely(calldata->res.server_scope == NULL))
8810 goto out_server_owner;
8812 calldata->res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS);
8813 if (unlikely(calldata->res.impl_id == NULL))
8814 goto out_server_scope;
8818 calldata->args.state_protect.how = SP4_NONE;
8822 calldata->args.state_protect = nfs4_sp4_mach_cred_request;
8832 task_setup_data.rpc_xprt = xprt;
8833 task_setup_data.flags |= RPC_TASK_SOFTCONN;
8834 memcpy(calldata->args.verifier.data, clp->cl_confirm.data,
8835 sizeof(calldata->args.verifier.data));
8837 calldata->args.client = clp;
8838 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
8839 EXCHGID4_FLAG_BIND_PRINC_STATEID;
8840 #ifdef CONFIG_NFS_V4_1_MIGRATION
8841 calldata->args.flags |= EXCHGID4_FLAG_SUPP_MOVED_MIGR;
8843 if (test_bit(NFS_CS_DS, &clp->cl_flags))
8844 calldata->args.flags |= EXCHGID4_FLAG_USE_PNFS_DS;
8845 msg.rpc_argp = &calldata->args;
8846 msg.rpc_resp = &calldata->res;
8847 task_setup_data.callback_data = calldata;
8849 return rpc_run_task(&task_setup_data);
8852 kfree(calldata->res.impl_id);
8854 kfree(calldata->res.server_scope);
8856 kfree(calldata->res.server_owner);
8860 nfs_put_client(clp);
8861 return ERR_PTR(status);
8865 * _nfs4_proc_exchange_id()
8867 * Wrapper for EXCHANGE_ID operation.
8869 static int _nfs4_proc_exchange_id(struct nfs_client *clp, const struct cred *cred,
8872 struct rpc_task *task;
8873 struct nfs41_exchange_id_args *argp;
8874 struct nfs41_exchange_id_res *resp;
8875 unsigned long now = jiffies;
8878 task = nfs4_run_exchange_id(clp, cred, sp4_how, NULL);
8880 return PTR_ERR(task);
8882 argp = task->tk_msg.rpc_argp;
8883 resp = task->tk_msg.rpc_resp;
8884 status = task->tk_status;
8888 status = nfs4_check_cl_exchange_flags(resp->flags,
8889 clp->cl_mvops->minor_version);
8893 status = nfs4_sp4_select_mode(clp, &resp->state_protect);
8897 do_renew_lease(clp, now);
8899 clp->cl_clientid = resp->clientid;
8900 clp->cl_exchange_flags = resp->flags;
8901 clp->cl_seqid = resp->seqid;
8902 /* Client ID is not confirmed */
8903 if (!(resp->flags & EXCHGID4_FLAG_CONFIRMED_R))
8904 clear_bit(NFS4_SESSION_ESTABLISHED,
8905 &clp->cl_session->session_state);
8907 if (clp->cl_serverscope != NULL &&
8908 !nfs41_same_server_scope(clp->cl_serverscope,
8909 resp->server_scope)) {
8910 dprintk("%s: server_scope mismatch detected\n",
8912 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state);
8915 swap(clp->cl_serverowner, resp->server_owner);
8916 swap(clp->cl_serverscope, resp->server_scope);
8917 swap(clp->cl_implid, resp->impl_id);
8919 /* Save the EXCHANGE_ID verifier session trunk tests */
8920 memcpy(clp->cl_confirm.data, argp->verifier.data,
8921 sizeof(clp->cl_confirm.data));
8923 trace_nfs4_exchange_id(clp, status);
8929 * nfs4_proc_exchange_id()
8931 * Returns zero, a negative errno, or a negative NFS4ERR status code.
8933 * Since the clientid has expired, all compounds using sessions
8934 * associated with the stale clientid will be returning
8935 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
8936 * be in some phase of session reset.
8938 * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used.
8940 int nfs4_proc_exchange_id(struct nfs_client *clp, const struct cred *cred)
8942 rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor;
8945 /* try SP4_MACH_CRED if krb5i/p */
8946 if (authflavor == RPC_AUTH_GSS_KRB5I ||
8947 authflavor == RPC_AUTH_GSS_KRB5P) {
8948 status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED);
8954 return _nfs4_proc_exchange_id(clp, cred, SP4_NONE);
8958 * nfs4_test_session_trunk
8960 * This is an add_xprt_test() test function called from
8961 * rpc_clnt_setup_test_and_add_xprt.
8963 * The rpc_xprt_switch is referrenced by rpc_clnt_setup_test_and_add_xprt
8964 * and is dereferrenced in nfs4_exchange_id_release
8966 * Upon success, add the new transport to the rpc_clnt
8968 * @clnt: struct rpc_clnt to get new transport
8969 * @xprt: the rpc_xprt to test
8970 * @data: call data for _nfs4_proc_exchange_id.
8972 void nfs4_test_session_trunk(struct rpc_clnt *clnt, struct rpc_xprt *xprt,
8975 struct nfs4_add_xprt_data *adata = data;
8976 struct rpc_task *task;
8981 dprintk("--> %s try %s\n", __func__,
8982 xprt->address_strings[RPC_DISPLAY_ADDR]);
8984 sp4_how = (adata->clp->cl_sp4_flags == 0 ? SP4_NONE : SP4_MACH_CRED);
8987 /* Test connection for session trunking. Async exchange_id call */
8988 task = nfs4_run_exchange_id(adata->clp, adata->cred, sp4_how, xprt);
8992 status = task->tk_status;
8994 status = nfs4_detect_session_trunking(adata->clp,
8995 task->tk_msg.rpc_resp, xprt);
8996 trace_nfs4_trunked_exchange_id(adata->clp,
8997 xprt->address_strings[RPC_DISPLAY_ADDR], status);
9000 rpc_clnt_xprt_switch_add_xprt(clnt, xprt);
9001 else if (status != -NFS4ERR_DELAY && rpc_clnt_xprt_switch_has_addr(clnt,
9002 (struct sockaddr *)&xprt->addr))
9003 rpc_clnt_xprt_switch_remove_xprt(clnt, xprt);
9006 if (status == -NFS4ERR_DELAY) {
9011 EXPORT_SYMBOL_GPL(nfs4_test_session_trunk);
9013 static int _nfs4_proc_destroy_clientid(struct nfs_client *clp,
9014 const struct cred *cred)
9016 struct rpc_message msg = {
9017 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID],
9023 status = rpc_call_sync(clp->cl_rpcclient, &msg,
9024 RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN);
9025 trace_nfs4_destroy_clientid(clp, status);
9027 dprintk("NFS: Got error %d from the server %s on "
9028 "DESTROY_CLIENTID.", status, clp->cl_hostname);
9032 static int nfs4_proc_destroy_clientid(struct nfs_client *clp,
9033 const struct cred *cred)
9038 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
9039 ret = _nfs4_proc_destroy_clientid(clp, cred);
9041 case -NFS4ERR_DELAY:
9042 case -NFS4ERR_CLIENTID_BUSY:
9052 int nfs4_destroy_clientid(struct nfs_client *clp)
9054 const struct cred *cred;
9057 if (clp->cl_mvops->minor_version < 1)
9059 if (clp->cl_exchange_flags == 0)
9061 if (clp->cl_preserve_clid)
9063 cred = nfs4_get_clid_cred(clp);
9064 ret = nfs4_proc_destroy_clientid(clp, cred);
9068 case -NFS4ERR_STALE_CLIENTID:
9069 clp->cl_exchange_flags = 0;
9075 #endif /* CONFIG_NFS_V4_1 */
9077 struct nfs4_get_lease_time_data {
9078 struct nfs4_get_lease_time_args *args;
9079 struct nfs4_get_lease_time_res *res;
9080 struct nfs_client *clp;
9083 static void nfs4_get_lease_time_prepare(struct rpc_task *task,
9086 struct nfs4_get_lease_time_data *data =
9087 (struct nfs4_get_lease_time_data *)calldata;
9089 /* just setup sequence, do not trigger session recovery
9090 since we're invoked within one */
9091 nfs4_setup_sequence(data->clp,
9092 &data->args->la_seq_args,
9093 &data->res->lr_seq_res,
9098 * Called from nfs4_state_manager thread for session setup, so don't recover
9099 * from sequence operation or clientid errors.
9101 static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
9103 struct nfs4_get_lease_time_data *data =
9104 (struct nfs4_get_lease_time_data *)calldata;
9106 if (!nfs4_sequence_done(task, &data->res->lr_seq_res))
9108 switch (task->tk_status) {
9109 case -NFS4ERR_DELAY:
9110 case -NFS4ERR_GRACE:
9111 rpc_delay(task, NFS4_POLL_RETRY_MIN);
9112 task->tk_status = 0;
9114 case -NFS4ERR_RETRY_UNCACHED_REP:
9115 rpc_restart_call_prepare(task);
9120 static const struct rpc_call_ops nfs4_get_lease_time_ops = {
9121 .rpc_call_prepare = nfs4_get_lease_time_prepare,
9122 .rpc_call_done = nfs4_get_lease_time_done,
9125 int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
9127 struct nfs4_get_lease_time_args args;
9128 struct nfs4_get_lease_time_res res = {
9129 .lr_fsinfo = fsinfo,
9131 struct nfs4_get_lease_time_data data = {
9136 struct rpc_message msg = {
9137 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
9141 struct rpc_task_setup task_setup = {
9142 .rpc_client = clp->cl_rpcclient,
9143 .rpc_message = &msg,
9144 .callback_ops = &nfs4_get_lease_time_ops,
9145 .callback_data = &data,
9146 .flags = RPC_TASK_TIMEOUT,
9149 nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0, 1);
9150 return nfs4_call_sync_custom(&task_setup);
9153 #ifdef CONFIG_NFS_V4_1
9156 * Initialize the values to be used by the client in CREATE_SESSION
9157 * If nfs4_init_session set the fore channel request and response sizes,
9160 * Set the back channel max_resp_sz_cached to zero to force the client to
9161 * always set csa_cachethis to FALSE because the current implementation
9162 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
9164 static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args,
9165 struct rpc_clnt *clnt)
9167 unsigned int max_rqst_sz, max_resp_sz;
9168 unsigned int max_bc_payload = rpc_max_bc_payload(clnt);
9169 unsigned int max_bc_slots = rpc_num_bc_slots(clnt);
9171 max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead;
9172 max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead;
9174 /* Fore channel attributes */
9175 args->fc_attrs.max_rqst_sz = max_rqst_sz;
9176 args->fc_attrs.max_resp_sz = max_resp_sz;
9177 args->fc_attrs.max_ops = NFS4_MAX_OPS;
9178 args->fc_attrs.max_reqs = max_session_slots;
9180 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
9181 "max_ops=%u max_reqs=%u\n",
9183 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
9184 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
9186 /* Back channel attributes */
9187 args->bc_attrs.max_rqst_sz = max_bc_payload;
9188 args->bc_attrs.max_resp_sz = max_bc_payload;
9189 args->bc_attrs.max_resp_sz_cached = 0;
9190 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
9191 args->bc_attrs.max_reqs = max_t(unsigned short, max_session_cb_slots, 1);
9192 if (args->bc_attrs.max_reqs > max_bc_slots)
9193 args->bc_attrs.max_reqs = max_bc_slots;
9195 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
9196 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
9198 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
9199 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
9200 args->bc_attrs.max_reqs);
9203 static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args,
9204 struct nfs41_create_session_res *res)
9206 struct nfs4_channel_attrs *sent = &args->fc_attrs;
9207 struct nfs4_channel_attrs *rcvd = &res->fc_attrs;
9209 if (rcvd->max_resp_sz > sent->max_resp_sz)
9212 * Our requested max_ops is the minimum we need; we're not
9213 * prepared to break up compounds into smaller pieces than that.
9214 * So, no point even trying to continue if the server won't
9217 if (rcvd->max_ops < sent->max_ops)
9219 if (rcvd->max_reqs == 0)
9221 if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE)
9222 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE;
9226 static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args,
9227 struct nfs41_create_session_res *res)
9229 struct nfs4_channel_attrs *sent = &args->bc_attrs;
9230 struct nfs4_channel_attrs *rcvd = &res->bc_attrs;
9232 if (!(res->flags & SESSION4_BACK_CHAN))
9234 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
9236 if (rcvd->max_resp_sz < sent->max_resp_sz)
9238 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
9240 if (rcvd->max_ops > sent->max_ops)
9242 if (rcvd->max_reqs > sent->max_reqs)
9248 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
9249 struct nfs41_create_session_res *res)
9253 ret = nfs4_verify_fore_channel_attrs(args, res);
9256 return nfs4_verify_back_channel_attrs(args, res);
9259 static void nfs4_update_session(struct nfs4_session *session,
9260 struct nfs41_create_session_res *res)
9262 nfs4_copy_sessionid(&session->sess_id, &res->sessionid);
9263 /* Mark client id and session as being confirmed */
9264 session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
9265 set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state);
9266 session->flags = res->flags;
9267 memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs));
9268 if (res->flags & SESSION4_BACK_CHAN)
9269 memcpy(&session->bc_attrs, &res->bc_attrs,
9270 sizeof(session->bc_attrs));
9273 static int _nfs4_proc_create_session(struct nfs_client *clp,
9274 const struct cred *cred)
9276 struct nfs4_session *session = clp->cl_session;
9277 struct nfs41_create_session_args args = {
9279 .clientid = clp->cl_clientid,
9280 .seqid = clp->cl_seqid,
9281 .cb_program = NFS4_CALLBACK,
9283 struct nfs41_create_session_res res;
9285 struct rpc_message msg = {
9286 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
9293 nfs4_init_channel_attrs(&args, clp->cl_rpcclient);
9294 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
9296 status = rpc_call_sync(session->clp->cl_rpcclient, &msg,
9297 RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN);
9298 trace_nfs4_create_session(clp, status);
9301 case -NFS4ERR_STALE_CLIENTID:
9302 case -NFS4ERR_DELAY:
9311 /* Verify the session's negotiated channel_attrs values */
9312 status = nfs4_verify_channel_attrs(&args, &res);
9313 /* Increment the clientid slot sequence id */
9316 nfs4_update_session(session, &res);
9323 * Issues a CREATE_SESSION operation to the server.
9324 * It is the responsibility of the caller to verify the session is
9325 * expired before calling this routine.
9327 int nfs4_proc_create_session(struct nfs_client *clp, const struct cred *cred)
9331 struct nfs4_session *session = clp->cl_session;
9332 struct nfs4_add_xprt_data xprtdata = {
9335 struct rpc_add_xprt_test rpcdata = {
9336 .add_xprt_test = clp->cl_mvops->session_trunk,
9340 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
9342 status = _nfs4_proc_create_session(clp, cred);
9346 /* Init or reset the session slot tables */
9347 status = nfs4_setup_session_slot_tables(session);
9348 dprintk("slot table setup returned %d\n", status);
9352 ptr = (unsigned *)&session->sess_id.data[0];
9353 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
9354 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
9355 rpc_clnt_probe_trunked_xprts(clp->cl_rpcclient, &rpcdata);
9361 * Issue the over-the-wire RPC DESTROY_SESSION.
9362 * The caller must serialize access to this routine.
9364 int nfs4_proc_destroy_session(struct nfs4_session *session,
9365 const struct cred *cred)
9367 struct rpc_message msg = {
9368 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION],
9369 .rpc_argp = session,
9374 /* session is still being setup */
9375 if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state))
9378 status = rpc_call_sync(session->clp->cl_rpcclient, &msg,
9379 RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN);
9380 trace_nfs4_destroy_session(session->clp, status);
9383 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. "
9384 "Session has been destroyed regardless...\n", status);
9385 rpc_clnt_manage_trunked_xprts(session->clp->cl_rpcclient);
9390 * Renew the cl_session lease.
9392 struct nfs4_sequence_data {
9393 struct nfs_client *clp;
9394 struct nfs4_sequence_args args;
9395 struct nfs4_sequence_res res;
9398 static void nfs41_sequence_release(void *data)
9400 struct nfs4_sequence_data *calldata = data;
9401 struct nfs_client *clp = calldata->clp;
9403 if (refcount_read(&clp->cl_count) > 1)
9404 nfs4_schedule_state_renewal(clp);
9405 nfs_put_client(clp);
9409 static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
9411 switch(task->tk_status) {
9412 case -NFS4ERR_DELAY:
9413 rpc_delay(task, NFS4_POLL_RETRY_MAX);
9416 nfs4_schedule_lease_recovery(clp);
9421 static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
9423 struct nfs4_sequence_data *calldata = data;
9424 struct nfs_client *clp = calldata->clp;
9426 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
9429 trace_nfs4_sequence(clp, task->tk_status);
9430 if (task->tk_status < 0 && !task->tk_client->cl_shutdown) {
9431 dprintk("%s ERROR %d\n", __func__, task->tk_status);
9432 if (refcount_read(&clp->cl_count) == 1)
9435 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
9436 rpc_restart_call_prepare(task);
9440 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
9443 static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
9445 struct nfs4_sequence_data *calldata = data;
9446 struct nfs_client *clp = calldata->clp;
9447 struct nfs4_sequence_args *args;
9448 struct nfs4_sequence_res *res;
9450 args = task->tk_msg.rpc_argp;
9451 res = task->tk_msg.rpc_resp;
9453 nfs4_setup_sequence(clp, args, res, task);
9456 static const struct rpc_call_ops nfs41_sequence_ops = {
9457 .rpc_call_done = nfs41_sequence_call_done,
9458 .rpc_call_prepare = nfs41_sequence_prepare,
9459 .rpc_release = nfs41_sequence_release,
9462 static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
9463 const struct cred *cred,
9464 struct nfs4_slot *slot,
9467 struct nfs4_sequence_data *calldata;
9468 struct rpc_message msg = {
9469 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
9472 struct rpc_task_setup task_setup_data = {
9473 .rpc_client = clp->cl_rpcclient,
9474 .rpc_message = &msg,
9475 .callback_ops = &nfs41_sequence_ops,
9476 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT | RPC_TASK_MOVEABLE,
9478 struct rpc_task *ret;
9480 ret = ERR_PTR(-EIO);
9481 if (!refcount_inc_not_zero(&clp->cl_count))
9484 ret = ERR_PTR(-ENOMEM);
9485 calldata = kzalloc(sizeof(*calldata), GFP_KERNEL);
9486 if (calldata == NULL)
9488 nfs4_init_sequence(&calldata->args, &calldata->res, 0, is_privileged);
9489 nfs4_sequence_attach_slot(&calldata->args, &calldata->res, slot);
9490 msg.rpc_argp = &calldata->args;
9491 msg.rpc_resp = &calldata->res;
9492 calldata->clp = clp;
9493 task_setup_data.callback_data = calldata;
9495 ret = rpc_run_task(&task_setup_data);
9500 nfs_put_client(clp);
9502 nfs41_release_slot(slot);
9506 static int nfs41_proc_async_sequence(struct nfs_client *clp, const struct cred *cred, unsigned renew_flags)
9508 struct rpc_task *task;
9511 if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0)
9513 task = _nfs41_proc_sequence(clp, cred, NULL, false);
9515 ret = PTR_ERR(task);
9517 rpc_put_task_async(task);
9518 dprintk("<-- %s status=%d\n", __func__, ret);
9522 static int nfs4_proc_sequence(struct nfs_client *clp, const struct cred *cred)
9524 struct rpc_task *task;
9527 task = _nfs41_proc_sequence(clp, cred, NULL, true);
9529 ret = PTR_ERR(task);
9532 ret = rpc_wait_for_completion_task(task);
9534 ret = task->tk_status;
9537 dprintk("<-- %s status=%d\n", __func__, ret);
9541 struct nfs4_reclaim_complete_data {
9542 struct nfs_client *clp;
9543 struct nfs41_reclaim_complete_args arg;
9544 struct nfs41_reclaim_complete_res res;
9547 static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
9549 struct nfs4_reclaim_complete_data *calldata = data;
9551 nfs4_setup_sequence(calldata->clp,
9552 &calldata->arg.seq_args,
9553 &calldata->res.seq_res,
9557 static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
9559 switch(task->tk_status) {
9561 wake_up_all(&clp->cl_lock_waitq);
9563 case -NFS4ERR_COMPLETE_ALREADY:
9564 case -NFS4ERR_WRONG_CRED: /* What to do here? */
9566 case -NFS4ERR_DELAY:
9567 rpc_delay(task, NFS4_POLL_RETRY_MAX);
9569 case -NFS4ERR_RETRY_UNCACHED_REP:
9571 dprintk("%s: failed to reclaim complete error %d for server %s, retrying\n",
9572 __func__, task->tk_status, clp->cl_hostname);
9574 case -NFS4ERR_BADSESSION:
9575 case -NFS4ERR_DEADSESSION:
9576 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
9579 nfs4_schedule_lease_recovery(clp);
9584 static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
9586 struct nfs4_reclaim_complete_data *calldata = data;
9587 struct nfs_client *clp = calldata->clp;
9588 struct nfs4_sequence_res *res = &calldata->res.seq_res;
9590 if (!nfs41_sequence_done(task, res))
9593 trace_nfs4_reclaim_complete(clp, task->tk_status);
9594 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
9595 rpc_restart_call_prepare(task);
9600 static void nfs4_free_reclaim_complete_data(void *data)
9602 struct nfs4_reclaim_complete_data *calldata = data;
9607 static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
9608 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
9609 .rpc_call_done = nfs4_reclaim_complete_done,
9610 .rpc_release = nfs4_free_reclaim_complete_data,
9614 * Issue a global reclaim complete.
9616 static int nfs41_proc_reclaim_complete(struct nfs_client *clp,
9617 const struct cred *cred)
9619 struct nfs4_reclaim_complete_data *calldata;
9620 struct rpc_message msg = {
9621 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
9624 struct rpc_task_setup task_setup_data = {
9625 .rpc_client = clp->cl_rpcclient,
9626 .rpc_message = &msg,
9627 .callback_ops = &nfs4_reclaim_complete_call_ops,
9628 .flags = RPC_TASK_NO_ROUND_ROBIN,
9630 int status = -ENOMEM;
9632 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
9633 if (calldata == NULL)
9635 calldata->clp = clp;
9636 calldata->arg.one_fs = 0;
9638 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0, 1);
9639 msg.rpc_argp = &calldata->arg;
9640 msg.rpc_resp = &calldata->res;
9641 task_setup_data.callback_data = calldata;
9642 status = nfs4_call_sync_custom(&task_setup_data);
9644 dprintk("<-- %s status=%d\n", __func__, status);
9649 nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
9651 struct nfs4_layoutget *lgp = calldata;
9652 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
9654 nfs4_setup_sequence(server->nfs_client, &lgp->args.seq_args,
9655 &lgp->res.seq_res, task);
9658 static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
9660 struct nfs4_layoutget *lgp = calldata;
9662 nfs41_sequence_process(task, &lgp->res.seq_res);
9666 nfs4_layoutget_handle_exception(struct rpc_task *task,
9667 struct nfs4_layoutget *lgp, struct nfs4_exception *exception)
9669 struct inode *inode = lgp->args.inode;
9670 struct nfs_server *server = NFS_SERVER(inode);
9671 struct pnfs_layout_hdr *lo = lgp->lo;
9672 int nfs4err = task->tk_status;
9673 int err, status = 0;
9676 dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status);
9678 nfs4_sequence_free_slot(&lgp->res.seq_res);
9680 exception->state = NULL;
9681 exception->stateid = NULL;
9688 * NFS4ERR_LAYOUTUNAVAILABLE means we are not supposed to use pnfs
9689 * on the file. set tk_status to -ENODATA to tell upper layer to
9692 case -NFS4ERR_LAYOUTUNAVAILABLE:
9696 * NFS4ERR_BADLAYOUT means the MDS cannot return a layout of
9697 * length lgp->args.minlength != 0 (see RFC5661 section 18.43.3).
9699 case -NFS4ERR_BADLAYOUT:
9700 status = -EOVERFLOW;
9703 * NFS4ERR_LAYOUTTRYLATER is a conflict with another client
9704 * (or clients) writing to the same RAID stripe except when
9705 * the minlength argument is 0 (see RFC5661 section 18.43.3).
9707 * Treat it like we would RECALLCONFLICT -- we retry for a little
9708 * while, and then eventually give up.
9710 case -NFS4ERR_LAYOUTTRYLATER:
9711 if (lgp->args.minlength == 0) {
9712 status = -EOVERFLOW;
9717 case -NFS4ERR_RECALLCONFLICT:
9718 case -NFS4ERR_RETURNCONFLICT:
9719 status = -ERECALLCONFLICT;
9721 case -NFS4ERR_DELEG_REVOKED:
9722 case -NFS4ERR_ADMIN_REVOKED:
9723 case -NFS4ERR_EXPIRED:
9724 case -NFS4ERR_BAD_STATEID:
9725 exception->timeout = 0;
9726 spin_lock(&inode->i_lock);
9727 /* If the open stateid was bad, then recover it. */
9728 if (!lo || test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags) ||
9729 !nfs4_stateid_match_other(&lgp->args.stateid, &lo->plh_stateid)) {
9730 spin_unlock(&inode->i_lock);
9731 exception->state = lgp->args.ctx->state;
9732 exception->stateid = &lgp->args.stateid;
9737 * Mark the bad layout state as invalid, then retry
9739 pnfs_mark_layout_stateid_invalid(lo, &head);
9740 spin_unlock(&inode->i_lock);
9741 nfs_commit_inode(inode, 0);
9742 pnfs_free_lseg_list(&head);
9747 err = nfs4_handle_exception(server, nfs4err, exception);
9749 if (exception->retry)
9758 size_t max_response_pages(struct nfs_server *server)
9760 u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
9761 return nfs_page_array_len(0, max_resp_sz);
9764 static void nfs4_layoutget_release(void *calldata)
9766 struct nfs4_layoutget *lgp = calldata;
9768 nfs4_sequence_free_slot(&lgp->res.seq_res);
9769 pnfs_layoutget_free(lgp);
9772 static const struct rpc_call_ops nfs4_layoutget_call_ops = {
9773 .rpc_call_prepare = nfs4_layoutget_prepare,
9774 .rpc_call_done = nfs4_layoutget_done,
9775 .rpc_release = nfs4_layoutget_release,
9778 struct pnfs_layout_segment *
9779 nfs4_proc_layoutget(struct nfs4_layoutget *lgp,
9780 struct nfs4_exception *exception)
9782 struct inode *inode = lgp->args.inode;
9783 struct nfs_server *server = NFS_SERVER(inode);
9784 struct rpc_task *task;
9785 struct rpc_message msg = {
9786 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
9787 .rpc_argp = &lgp->args,
9788 .rpc_resp = &lgp->res,
9789 .rpc_cred = lgp->cred,
9791 struct rpc_task_setup task_setup_data = {
9792 .rpc_client = server->client,
9793 .rpc_message = &msg,
9794 .callback_ops = &nfs4_layoutget_call_ops,
9795 .callback_data = lgp,
9796 .flags = RPC_TASK_ASYNC | RPC_TASK_CRED_NOREF |
9799 struct pnfs_layout_segment *lseg = NULL;
9802 nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0, 0);
9803 exception->retry = 0;
9805 task = rpc_run_task(&task_setup_data);
9807 return ERR_CAST(task);
9809 status = rpc_wait_for_completion_task(task);
9813 if (task->tk_status < 0) {
9814 exception->retry = 1;
9815 status = nfs4_layoutget_handle_exception(task, lgp, exception);
9816 } else if (lgp->res.layoutp->len == 0) {
9817 exception->retry = 1;
9819 nfs4_update_delay(&exception->timeout);
9821 lseg = pnfs_layout_process(lgp);
9823 trace_nfs4_layoutget(lgp->args.ctx,
9830 dprintk("<-- %s status=%d\n", __func__, status);
9832 return ERR_PTR(status);
9837 nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata)
9839 struct nfs4_layoutreturn *lrp = calldata;
9841 nfs4_setup_sequence(lrp->clp,
9842 &lrp->args.seq_args,
9845 if (!pnfs_layout_is_valid(lrp->args.layout))
9849 static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata)
9851 struct nfs4_layoutreturn *lrp = calldata;
9852 struct nfs_server *server;
9854 if (!nfs41_sequence_process(task, &lrp->res.seq_res))
9858 * Was there an RPC level error? Assume the call succeeded,
9859 * and that we need to release the layout
9861 if (task->tk_rpc_status != 0 && RPC_WAS_SENT(task)) {
9862 lrp->res.lrs_present = 0;
9866 server = NFS_SERVER(lrp->args.inode);
9867 switch (task->tk_status) {
9868 case -NFS4ERR_OLD_STATEID:
9869 if (nfs4_layout_refresh_old_stateid(&lrp->args.stateid,
9875 task->tk_status = 0;
9879 case -NFS4ERR_DELAY:
9880 if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN)
9886 task->tk_status = 0;
9887 nfs4_sequence_free_slot(&lrp->res.seq_res);
9888 rpc_restart_call_prepare(task);
9891 static void nfs4_layoutreturn_release(void *calldata)
9893 struct nfs4_layoutreturn *lrp = calldata;
9894 struct pnfs_layout_hdr *lo = lrp->args.layout;
9896 pnfs_layoutreturn_free_lsegs(lo, &lrp->args.stateid, &lrp->args.range,
9897 lrp->res.lrs_present ? &lrp->res.stateid : NULL);
9898 nfs4_sequence_free_slot(&lrp->res.seq_res);
9899 if (lrp->ld_private.ops && lrp->ld_private.ops->free)
9900 lrp->ld_private.ops->free(&lrp->ld_private);
9901 pnfs_put_layout_hdr(lrp->args.layout);
9902 nfs_iput_and_deactive(lrp->inode);
9903 put_cred(lrp->cred);
9907 static const struct rpc_call_ops nfs4_layoutreturn_call_ops = {
9908 .rpc_call_prepare = nfs4_layoutreturn_prepare,
9909 .rpc_call_done = nfs4_layoutreturn_done,
9910 .rpc_release = nfs4_layoutreturn_release,
9913 int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync)
9915 struct rpc_task *task;
9916 struct rpc_message msg = {
9917 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN],
9918 .rpc_argp = &lrp->args,
9919 .rpc_resp = &lrp->res,
9920 .rpc_cred = lrp->cred,
9922 struct rpc_task_setup task_setup_data = {
9923 .rpc_client = NFS_SERVER(lrp->args.inode)->client,
9924 .rpc_message = &msg,
9925 .callback_ops = &nfs4_layoutreturn_call_ops,
9926 .callback_data = lrp,
9927 .flags = RPC_TASK_MOVEABLE,
9931 nfs4_state_protect(NFS_SERVER(lrp->args.inode)->nfs_client,
9932 NFS_SP4_MACH_CRED_PNFS_CLEANUP,
9933 &task_setup_data.rpc_client, &msg);
9935 lrp->inode = nfs_igrab_and_active(lrp->args.inode);
9938 nfs4_layoutreturn_release(lrp);
9941 task_setup_data.flags |= RPC_TASK_ASYNC;
9944 nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1,
9947 nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1,
9949 task = rpc_run_task(&task_setup_data);
9951 return PTR_ERR(task);
9953 status = task->tk_status;
9954 trace_nfs4_layoutreturn(lrp->args.inode, &lrp->args.stateid, status);
9955 dprintk("<-- %s status=%d\n", __func__, status);
9961 _nfs4_proc_getdeviceinfo(struct nfs_server *server,
9962 struct pnfs_device *pdev,
9963 const struct cred *cred)
9965 struct nfs4_getdeviceinfo_args args = {
9967 .notify_types = NOTIFY_DEVICEID4_CHANGE |
9968 NOTIFY_DEVICEID4_DELETE,
9970 struct nfs4_getdeviceinfo_res res = {
9973 struct rpc_message msg = {
9974 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
9981 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
9982 if (res.notification & ~args.notify_types)
9983 dprintk("%s: unsupported notification\n", __func__);
9984 if (res.notification != args.notify_types)
9987 trace_nfs4_getdeviceinfo(server, &pdev->dev_id, status);
9989 dprintk("<-- %s status=%d\n", __func__, status);
9994 int nfs4_proc_getdeviceinfo(struct nfs_server *server,
9995 struct pnfs_device *pdev,
9996 const struct cred *cred)
9998 struct nfs4_exception exception = { };
10002 err = nfs4_handle_exception(server,
10003 _nfs4_proc_getdeviceinfo(server, pdev, cred),
10005 } while (exception.retry);
10008 EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
10010 static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
10012 struct nfs4_layoutcommit_data *data = calldata;
10013 struct nfs_server *server = NFS_SERVER(data->args.inode);
10015 nfs4_setup_sequence(server->nfs_client,
10016 &data->args.seq_args,
10017 &data->res.seq_res,
10022 nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
10024 struct nfs4_layoutcommit_data *data = calldata;
10025 struct nfs_server *server = NFS_SERVER(data->args.inode);
10027 if (!nfs41_sequence_done(task, &data->res.seq_res))
10030 switch (task->tk_status) { /* Just ignore these failures */
10031 case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */
10032 case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
10033 case -NFS4ERR_BADLAYOUT: /* no layout */
10034 case -NFS4ERR_GRACE: /* loca_recalim always false */
10035 task->tk_status = 0;
10040 if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) {
10041 rpc_restart_call_prepare(task);
10047 static void nfs4_layoutcommit_release(void *calldata)
10049 struct nfs4_layoutcommit_data *data = calldata;
10051 pnfs_cleanup_layoutcommit(data);
10052 nfs_post_op_update_inode_force_wcc(data->args.inode,
10054 put_cred(data->cred);
10055 nfs_iput_and_deactive(data->inode);
10059 static const struct rpc_call_ops nfs4_layoutcommit_ops = {
10060 .rpc_call_prepare = nfs4_layoutcommit_prepare,
10061 .rpc_call_done = nfs4_layoutcommit_done,
10062 .rpc_release = nfs4_layoutcommit_release,
10066 nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
10068 struct rpc_message msg = {
10069 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
10070 .rpc_argp = &data->args,
10071 .rpc_resp = &data->res,
10072 .rpc_cred = data->cred,
10074 struct rpc_task_setup task_setup_data = {
10075 .task = &data->task,
10076 .rpc_client = NFS_CLIENT(data->args.inode),
10077 .rpc_message = &msg,
10078 .callback_ops = &nfs4_layoutcommit_ops,
10079 .callback_data = data,
10080 .flags = RPC_TASK_MOVEABLE,
10082 struct rpc_task *task;
10085 dprintk("NFS: initiating layoutcommit call. sync %d "
10086 "lbw: %llu inode %lu\n", sync,
10087 data->args.lastbytewritten,
10088 data->args.inode->i_ino);
10091 data->inode = nfs_igrab_and_active(data->args.inode);
10092 if (data->inode == NULL) {
10093 nfs4_layoutcommit_release(data);
10096 task_setup_data.flags = RPC_TASK_ASYNC;
10098 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, 0);
10099 task = rpc_run_task(&task_setup_data);
10101 return PTR_ERR(task);
10103 status = task->tk_status;
10104 trace_nfs4_layoutcommit(data->args.inode, &data->args.stateid, status);
10105 dprintk("%s: status %d\n", __func__, status);
10106 rpc_put_task(task);
10111 * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if
10112 * possible) as per RFC3530bis and RFC5661 Security Considerations sections
10115 _nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
10116 struct nfs_fsinfo *info,
10117 struct nfs4_secinfo_flavors *flavors, bool use_integrity)
10119 struct nfs41_secinfo_no_name_args args = {
10120 .style = SECINFO_STYLE_CURRENT_FH,
10122 struct nfs4_secinfo_res res = {
10123 .flavors = flavors,
10125 struct rpc_message msg = {
10126 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME],
10130 struct nfs4_call_sync_data data = {
10131 .seq_server = server,
10132 .seq_args = &args.seq_args,
10133 .seq_res = &res.seq_res,
10135 struct rpc_task_setup task_setup = {
10136 .rpc_client = server->client,
10137 .rpc_message = &msg,
10138 .callback_ops = server->nfs_client->cl_mvops->call_sync_ops,
10139 .callback_data = &data,
10140 .flags = RPC_TASK_NO_ROUND_ROBIN,
10142 const struct cred *cred = NULL;
10145 if (use_integrity) {
10146 task_setup.rpc_client = server->nfs_client->cl_rpcclient;
10148 cred = nfs4_get_clid_cred(server->nfs_client);
10149 msg.rpc_cred = cred;
10152 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 0);
10153 status = nfs4_call_sync_custom(&task_setup);
10154 dprintk("<-- %s status=%d\n", __func__, status);
10162 nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
10163 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
10165 struct nfs4_exception exception = {
10166 .interruptible = true,
10170 /* first try using integrity protection */
10171 err = -NFS4ERR_WRONGSEC;
10173 /* try to use integrity protection with machine cred */
10174 if (_nfs4_is_integrity_protected(server->nfs_client))
10175 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
10179 * if unable to use integrity protection, or SECINFO with
10180 * integrity protection returns NFS4ERR_WRONGSEC (which is
10181 * disallowed by spec, but exists in deployed servers) use
10182 * the current filesystem's rpc_client and the user cred.
10184 if (err == -NFS4ERR_WRONGSEC)
10185 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
10190 case -NFS4ERR_WRONGSEC:
10194 err = nfs4_handle_exception(server, err, &exception);
10196 } while (exception.retry);
10202 nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
10203 struct nfs_fsinfo *info)
10207 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR;
10208 struct nfs4_secinfo_flavors *flavors;
10209 struct nfs4_secinfo4 *secinfo;
10212 page = alloc_page(GFP_KERNEL);
10218 flavors = page_address(page);
10219 err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
10222 * Fall back on "guess and check" method if
10223 * the server doesn't support SECINFO_NO_NAME
10225 if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) {
10226 err = nfs4_find_root_sec(server, fhandle, info);
10232 for (i = 0; i < flavors->num_flavors; i++) {
10233 secinfo = &flavors->flavors[i];
10235 switch (secinfo->flavor) {
10236 case RPC_AUTH_NULL:
10237 case RPC_AUTH_UNIX:
10239 flavor = rpcauth_get_pseudoflavor(secinfo->flavor,
10240 &secinfo->flavor_info);
10243 flavor = RPC_AUTH_MAXFLAVOR;
10247 if (!nfs_auth_info_match(&server->auth_info, flavor))
10248 flavor = RPC_AUTH_MAXFLAVOR;
10250 if (flavor != RPC_AUTH_MAXFLAVOR) {
10251 err = nfs4_lookup_root_sec(server, fhandle,
10258 if (flavor == RPC_AUTH_MAXFLAVOR)
10263 if (err == -EACCES)
10269 static int _nfs41_test_stateid(struct nfs_server *server,
10270 nfs4_stateid *stateid,
10271 const struct cred *cred)
10274 struct nfs41_test_stateid_args args = {
10275 .stateid = stateid,
10277 struct nfs41_test_stateid_res res;
10278 struct rpc_message msg = {
10279 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID],
10284 struct rpc_clnt *rpc_client = server->client;
10286 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
10287 &rpc_client, &msg);
10289 dprintk("NFS call test_stateid %p\n", stateid);
10290 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
10291 status = nfs4_call_sync_sequence(rpc_client, server, &msg,
10292 &args.seq_args, &res.seq_res);
10293 if (status != NFS_OK) {
10294 dprintk("NFS reply test_stateid: failed, %d\n", status);
10297 dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status);
10298 return -res.status;
10301 static void nfs4_handle_delay_or_session_error(struct nfs_server *server,
10302 int err, struct nfs4_exception *exception)
10304 exception->retry = 0;
10306 case -NFS4ERR_DELAY:
10307 case -NFS4ERR_RETRY_UNCACHED_REP:
10308 nfs4_handle_exception(server, err, exception);
10310 case -NFS4ERR_BADSESSION:
10311 case -NFS4ERR_BADSLOT:
10312 case -NFS4ERR_BAD_HIGH_SLOT:
10313 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
10314 case -NFS4ERR_DEADSESSION:
10315 nfs4_do_handle_exception(server, err, exception);
10320 * nfs41_test_stateid - perform a TEST_STATEID operation
10322 * @server: server / transport on which to perform the operation
10323 * @stateid: state ID to test
10324 * @cred: credential
10326 * Returns NFS_OK if the server recognizes that "stateid" is valid.
10327 * Otherwise a negative NFS4ERR value is returned if the operation
10328 * failed or the state ID is not currently valid.
10330 static int nfs41_test_stateid(struct nfs_server *server,
10331 nfs4_stateid *stateid,
10332 const struct cred *cred)
10334 struct nfs4_exception exception = {
10335 .interruptible = true,
10339 err = _nfs41_test_stateid(server, stateid, cred);
10340 nfs4_handle_delay_or_session_error(server, err, &exception);
10341 } while (exception.retry);
10345 struct nfs_free_stateid_data {
10346 struct nfs_server *server;
10347 struct nfs41_free_stateid_args args;
10348 struct nfs41_free_stateid_res res;
10351 static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata)
10353 struct nfs_free_stateid_data *data = calldata;
10354 nfs4_setup_sequence(data->server->nfs_client,
10355 &data->args.seq_args,
10356 &data->res.seq_res,
10360 static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata)
10362 struct nfs_free_stateid_data *data = calldata;
10364 nfs41_sequence_done(task, &data->res.seq_res);
10366 switch (task->tk_status) {
10367 case -NFS4ERR_DELAY:
10368 if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN)
10369 rpc_restart_call_prepare(task);
10373 static void nfs41_free_stateid_release(void *calldata)
10375 struct nfs_free_stateid_data *data = calldata;
10376 struct nfs_client *clp = data->server->nfs_client;
10378 nfs_put_client(clp);
10382 static const struct rpc_call_ops nfs41_free_stateid_ops = {
10383 .rpc_call_prepare = nfs41_free_stateid_prepare,
10384 .rpc_call_done = nfs41_free_stateid_done,
10385 .rpc_release = nfs41_free_stateid_release,
10389 * nfs41_free_stateid - perform a FREE_STATEID operation
10391 * @server: server / transport on which to perform the operation
10392 * @stateid: state ID to release
10393 * @cred: credential
10394 * @privileged: set to true if this call needs to be privileged
10396 * Note: this function is always asynchronous.
10398 static int nfs41_free_stateid(struct nfs_server *server,
10399 const nfs4_stateid *stateid,
10400 const struct cred *cred,
10403 struct rpc_message msg = {
10404 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID],
10407 struct rpc_task_setup task_setup = {
10408 .rpc_client = server->client,
10409 .rpc_message = &msg,
10410 .callback_ops = &nfs41_free_stateid_ops,
10411 .flags = RPC_TASK_ASYNC | RPC_TASK_MOVEABLE,
10413 struct nfs_free_stateid_data *data;
10414 struct rpc_task *task;
10415 struct nfs_client *clp = server->nfs_client;
10417 if (!refcount_inc_not_zero(&clp->cl_count))
10420 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
10421 &task_setup.rpc_client, &msg);
10423 dprintk("NFS call free_stateid %p\n", stateid);
10424 data = kmalloc(sizeof(*data), GFP_KERNEL);
10427 data->server = server;
10428 nfs4_stateid_copy(&data->args.stateid, stateid);
10430 task_setup.callback_data = data;
10432 msg.rpc_argp = &data->args;
10433 msg.rpc_resp = &data->res;
10434 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, privileged);
10435 task = rpc_run_task(&task_setup);
10437 return PTR_ERR(task);
10438 rpc_put_task(task);
10443 nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
10445 const struct cred *cred = lsp->ls_state->owner->so_cred;
10447 nfs41_free_stateid(server, &lsp->ls_stateid, cred, false);
10448 nfs4_free_lock_state(server, lsp);
10451 static bool nfs41_match_stateid(const nfs4_stateid *s1,
10452 const nfs4_stateid *s2)
10454 if (s1->type != s2->type)
10457 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0)
10460 if (s1->seqid == s2->seqid)
10463 return s1->seqid == 0 || s2->seqid == 0;
10466 #endif /* CONFIG_NFS_V4_1 */
10468 static bool nfs4_match_stateid(const nfs4_stateid *s1,
10469 const nfs4_stateid *s2)
10471 return nfs4_stateid_match(s1, s2);
10475 static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
10476 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
10477 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
10478 .recover_open = nfs4_open_reclaim,
10479 .recover_lock = nfs4_lock_reclaim,
10480 .establish_clid = nfs4_init_clientid,
10481 .detect_trunking = nfs40_discover_server_trunking,
10484 #if defined(CONFIG_NFS_V4_1)
10485 static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
10486 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
10487 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
10488 .recover_open = nfs4_open_reclaim,
10489 .recover_lock = nfs4_lock_reclaim,
10490 .establish_clid = nfs41_init_clientid,
10491 .reclaim_complete = nfs41_proc_reclaim_complete,
10492 .detect_trunking = nfs41_discover_server_trunking,
10494 #endif /* CONFIG_NFS_V4_1 */
10496 static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
10497 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
10498 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
10499 .recover_open = nfs40_open_expired,
10500 .recover_lock = nfs4_lock_expired,
10501 .establish_clid = nfs4_init_clientid,
10504 #if defined(CONFIG_NFS_V4_1)
10505 static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
10506 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
10507 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
10508 .recover_open = nfs41_open_expired,
10509 .recover_lock = nfs41_lock_expired,
10510 .establish_clid = nfs41_init_clientid,
10512 #endif /* CONFIG_NFS_V4_1 */
10514 static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
10515 .sched_state_renewal = nfs4_proc_async_renew,
10516 .get_state_renewal_cred = nfs4_get_renew_cred,
10517 .renew_lease = nfs4_proc_renew,
10520 #if defined(CONFIG_NFS_V4_1)
10521 static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
10522 .sched_state_renewal = nfs41_proc_async_sequence,
10523 .get_state_renewal_cred = nfs4_get_machine_cred,
10524 .renew_lease = nfs4_proc_sequence,
10528 static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = {
10529 .get_locations = _nfs40_proc_get_locations,
10530 .fsid_present = _nfs40_proc_fsid_present,
10533 #if defined(CONFIG_NFS_V4_1)
10534 static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = {
10535 .get_locations = _nfs41_proc_get_locations,
10536 .fsid_present = _nfs41_proc_fsid_present,
10538 #endif /* CONFIG_NFS_V4_1 */
10540 static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
10541 .minor_version = 0,
10542 .init_caps = NFS_CAP_READDIRPLUS
10543 | NFS_CAP_ATOMIC_OPEN
10544 | NFS_CAP_POSIX_LOCK,
10545 .init_client = nfs40_init_client,
10546 .shutdown_client = nfs40_shutdown_client,
10547 .match_stateid = nfs4_match_stateid,
10548 .find_root_sec = nfs4_find_root_sec,
10549 .free_lock_state = nfs4_release_lockowner,
10550 .test_and_free_expired = nfs40_test_and_free_expired_stateid,
10551 .alloc_seqid = nfs_alloc_seqid,
10552 .call_sync_ops = &nfs40_call_sync_ops,
10553 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
10554 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
10555 .state_renewal_ops = &nfs40_state_renewal_ops,
10556 .mig_recovery_ops = &nfs40_mig_recovery_ops,
10559 #if defined(CONFIG_NFS_V4_1)
10560 static struct nfs_seqid *
10561 nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2)
10566 static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
10567 .minor_version = 1,
10568 .init_caps = NFS_CAP_READDIRPLUS
10569 | NFS_CAP_ATOMIC_OPEN
10570 | NFS_CAP_POSIX_LOCK
10571 | NFS_CAP_STATEID_NFSV41
10572 | NFS_CAP_ATOMIC_OPEN_V1
10574 | NFS_CAP_MOVEABLE,
10575 .init_client = nfs41_init_client,
10576 .shutdown_client = nfs41_shutdown_client,
10577 .match_stateid = nfs41_match_stateid,
10578 .find_root_sec = nfs41_find_root_sec,
10579 .free_lock_state = nfs41_free_lock_state,
10580 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
10581 .alloc_seqid = nfs_alloc_no_seqid,
10582 .session_trunk = nfs4_test_session_trunk,
10583 .call_sync_ops = &nfs41_call_sync_ops,
10584 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
10585 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
10586 .state_renewal_ops = &nfs41_state_renewal_ops,
10587 .mig_recovery_ops = &nfs41_mig_recovery_ops,
10591 #if defined(CONFIG_NFS_V4_2)
10592 static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = {
10593 .minor_version = 2,
10594 .init_caps = NFS_CAP_READDIRPLUS
10595 | NFS_CAP_ATOMIC_OPEN
10596 | NFS_CAP_POSIX_LOCK
10597 | NFS_CAP_STATEID_NFSV41
10598 | NFS_CAP_ATOMIC_OPEN_V1
10602 | NFS_CAP_OFFLOAD_CANCEL
10603 | NFS_CAP_COPY_NOTIFY
10604 | NFS_CAP_DEALLOCATE
10606 | NFS_CAP_LAYOUTSTATS
10608 | NFS_CAP_LAYOUTERROR
10609 | NFS_CAP_READ_PLUS
10610 | NFS_CAP_MOVEABLE,
10611 .init_client = nfs41_init_client,
10612 .shutdown_client = nfs41_shutdown_client,
10613 .match_stateid = nfs41_match_stateid,
10614 .find_root_sec = nfs41_find_root_sec,
10615 .free_lock_state = nfs41_free_lock_state,
10616 .call_sync_ops = &nfs41_call_sync_ops,
10617 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
10618 .alloc_seqid = nfs_alloc_no_seqid,
10619 .session_trunk = nfs4_test_session_trunk,
10620 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
10621 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
10622 .state_renewal_ops = &nfs41_state_renewal_ops,
10623 .mig_recovery_ops = &nfs41_mig_recovery_ops,
10627 const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
10628 [0] = &nfs_v4_0_minor_ops,
10629 #if defined(CONFIG_NFS_V4_1)
10630 [1] = &nfs_v4_1_minor_ops,
10632 #if defined(CONFIG_NFS_V4_2)
10633 [2] = &nfs_v4_2_minor_ops,
10637 static ssize_t nfs4_listxattr(struct dentry *dentry, char *list, size_t size)
10639 ssize_t error, error2, error3;
10640 size_t left = size;
10642 error = generic_listxattr(dentry, list, left);
10650 error2 = nfs4_listxattr_nfs4_label(d_inode(dentry), list, left);
10659 error3 = nfs4_listxattr_nfs4_user(d_inode(dentry), list, left);
10663 error += error2 + error3;
10664 if (size && error > size)
10669 static void nfs4_enable_swap(struct inode *inode)
10671 /* The state manager thread must always be running.
10672 * It will notice the client is a swapper, and stay put.
10674 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
10676 nfs4_schedule_state_manager(clp);
10679 static void nfs4_disable_swap(struct inode *inode)
10681 /* The state manager thread will now exit once it is
10684 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
10686 set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state);
10687 clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state);
10688 wake_up_var(&clp->cl_state);
10691 static const struct inode_operations nfs4_dir_inode_operations = {
10692 .create = nfs_create,
10693 .lookup = nfs_lookup,
10694 .atomic_open = nfs_atomic_open,
10696 .unlink = nfs_unlink,
10697 .symlink = nfs_symlink,
10698 .mkdir = nfs_mkdir,
10699 .rmdir = nfs_rmdir,
10700 .mknod = nfs_mknod,
10701 .rename = nfs_rename,
10702 .permission = nfs_permission,
10703 .getattr = nfs_getattr,
10704 .setattr = nfs_setattr,
10705 .listxattr = nfs4_listxattr,
10708 static const struct inode_operations nfs4_file_inode_operations = {
10709 .permission = nfs_permission,
10710 .getattr = nfs_getattr,
10711 .setattr = nfs_setattr,
10712 .listxattr = nfs4_listxattr,
10715 const struct nfs_rpc_ops nfs_v4_clientops = {
10716 .version = 4, /* protocol version */
10717 .dentry_ops = &nfs4_dentry_operations,
10718 .dir_inode_ops = &nfs4_dir_inode_operations,
10719 .file_inode_ops = &nfs4_file_inode_operations,
10720 .file_ops = &nfs4_file_operations,
10721 .getroot = nfs4_proc_get_root,
10722 .submount = nfs4_submount,
10723 .try_get_tree = nfs4_try_get_tree,
10724 .getattr = nfs4_proc_getattr,
10725 .setattr = nfs4_proc_setattr,
10726 .lookup = nfs4_proc_lookup,
10727 .lookupp = nfs4_proc_lookupp,
10728 .access = nfs4_proc_access,
10729 .readlink = nfs4_proc_readlink,
10730 .create = nfs4_proc_create,
10731 .remove = nfs4_proc_remove,
10732 .unlink_setup = nfs4_proc_unlink_setup,
10733 .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare,
10734 .unlink_done = nfs4_proc_unlink_done,
10735 .rename_setup = nfs4_proc_rename_setup,
10736 .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare,
10737 .rename_done = nfs4_proc_rename_done,
10738 .link = nfs4_proc_link,
10739 .symlink = nfs4_proc_symlink,
10740 .mkdir = nfs4_proc_mkdir,
10741 .rmdir = nfs4_proc_rmdir,
10742 .readdir = nfs4_proc_readdir,
10743 .mknod = nfs4_proc_mknod,
10744 .statfs = nfs4_proc_statfs,
10745 .fsinfo = nfs4_proc_fsinfo,
10746 .pathconf = nfs4_proc_pathconf,
10747 .set_capabilities = nfs4_server_capabilities,
10748 .decode_dirent = nfs4_decode_dirent,
10749 .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare,
10750 .read_setup = nfs4_proc_read_setup,
10751 .read_done = nfs4_read_done,
10752 .write_setup = nfs4_proc_write_setup,
10753 .write_done = nfs4_write_done,
10754 .commit_setup = nfs4_proc_commit_setup,
10755 .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare,
10756 .commit_done = nfs4_commit_done,
10757 .lock = nfs4_proc_lock,
10758 .clear_acl_cache = nfs4_zap_acl_attr,
10759 .close_context = nfs4_close_context,
10760 .open_context = nfs4_atomic_open,
10761 .have_delegation = nfs4_have_delegation,
10762 .alloc_client = nfs4_alloc_client,
10763 .init_client = nfs4_init_client,
10764 .free_client = nfs4_free_client,
10765 .create_server = nfs4_create_server,
10766 .clone_server = nfs_clone_server,
10767 .discover_trunking = nfs4_discover_trunking,
10768 .enable_swap = nfs4_enable_swap,
10769 .disable_swap = nfs4_disable_swap,
10772 static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
10773 .name = XATTR_NAME_NFSV4_ACL,
10774 .list = nfs4_xattr_list_nfs4_acl,
10775 .get = nfs4_xattr_get_nfs4_acl,
10776 .set = nfs4_xattr_set_nfs4_acl,
10779 #if defined(CONFIG_NFS_V4_1)
10780 static const struct xattr_handler nfs4_xattr_nfs4_dacl_handler = {
10781 .name = XATTR_NAME_NFSV4_DACL,
10782 .list = nfs4_xattr_list_nfs4_dacl,
10783 .get = nfs4_xattr_get_nfs4_dacl,
10784 .set = nfs4_xattr_set_nfs4_dacl,
10787 static const struct xattr_handler nfs4_xattr_nfs4_sacl_handler = {
10788 .name = XATTR_NAME_NFSV4_SACL,
10789 .list = nfs4_xattr_list_nfs4_sacl,
10790 .get = nfs4_xattr_get_nfs4_sacl,
10791 .set = nfs4_xattr_set_nfs4_sacl,
10795 #ifdef CONFIG_NFS_V4_2
10796 static const struct xattr_handler nfs4_xattr_nfs4_user_handler = {
10797 .prefix = XATTR_USER_PREFIX,
10798 .get = nfs4_xattr_get_nfs4_user,
10799 .set = nfs4_xattr_set_nfs4_user,
10803 const struct xattr_handler * const nfs4_xattr_handlers[] = {
10804 &nfs4_xattr_nfs4_acl_handler,
10805 #if defined(CONFIG_NFS_V4_1)
10806 &nfs4_xattr_nfs4_dacl_handler,
10807 &nfs4_xattr_nfs4_sacl_handler,
10809 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
10810 &nfs4_xattr_nfs4_label_handler,
10812 #ifdef CONFIG_NFS_V4_2
10813 &nfs4_xattr_nfs4_user_handler,