14ce79717STrond Myklebust /* 24ce79717STrond Myklebust * linux/fs/nfs/nfs4_fs.h 34ce79717STrond Myklebust * 44ce79717STrond Myklebust * Copyright (C) 2005 Trond Myklebust 54ce79717STrond Myklebust * 64ce79717STrond Myklebust * NFSv4-specific filesystem definitions and declarations 74ce79717STrond Myklebust */ 84ce79717STrond Myklebust 94ce79717STrond Myklebust #ifndef __LINUX_FS_NFS_NFS4_FS_H 104ce79717STrond Myklebust #define __LINUX_FS_NFS_NFS4_FS_H 114ce79717STrond Myklebust 1289d77c8fSBryan Schumaker #if IS_ENABLED(CONFIG_NFS_V4) 134ce79717STrond Myklebust 144ce79717STrond Myklebust struct idmap; 154ce79717STrond Myklebust 164ce79717STrond Myklebust enum nfs4_client_state { 17e005e804STrond Myklebust NFS4CLNT_MANAGER_RUNNING = 0, 18e598d843STrond Myklebust NFS4CLNT_CHECK_LEASE, 1958d9714aSTrond Myklebust NFS4CLNT_LEASE_EXPIRED, 20b79a4a1bSTrond Myklebust NFS4CLNT_RECLAIM_REBOOT, 21b79a4a1bSTrond Myklebust NFS4CLNT_RECLAIM_NOGRACE, 22707fb4b3STrond Myklebust NFS4CLNT_DELEGRETURN, 236df08189SAndy Adamson NFS4CLNT_SESSION_RESET, 24b9efa1b2SAndy Adamson NFS4CLNT_RECALL_SLOT, 25fd954ae1STrond Myklebust NFS4CLNT_LEASE_CONFIRM, 2678fe0f41SWeston Andros Adamson NFS4CLNT_SERVER_SCOPE_MISMATCH, 272c820d9aSChuck Lever NFS4CLNT_PURGE_STATE, 28a9e64442SWeston Andros Adamson NFS4CLNT_BIND_CONN_TO_SESSION, 294ce79717STrond Myklebust }; 304ce79717STrond Myklebust 31a2118c33STrond Myklebust enum nfs4_session_state { 321055d76dSTrond Myklebust NFS4_SESSION_INITING, 33a2118c33STrond Myklebust NFS4_SESSION_DRAINING, 34a2118c33STrond Myklebust }; 35a2118c33STrond Myklebust 362f60ea6bSTrond Myklebust #define NFS4_RENEW_TIMEOUT 0x01 372f60ea6bSTrond Myklebust #define NFS4_RENEW_DELEGATION_CB 0x02 382f60ea6bSTrond Myklebust 3997dc1359STrond Myklebust struct nfs4_minor_version_ops { 4097dc1359STrond Myklebust u32 minor_version; 4197dc1359STrond Myklebust 427c513058SBryan Schumaker int (*call_sync)(struct rpc_clnt *clnt, 437c513058SBryan Schumaker struct nfs_server *server, 4497dc1359STrond Myklebust struct rpc_message *msg, 4597dc1359STrond Myklebust struct nfs4_sequence_args *args, 4697dc1359STrond Myklebust struct nfs4_sequence_res *res, 4797dc1359STrond Myklebust int cache_reply); 4836281caaSTrond Myklebust bool (*match_stateid)(const nfs4_stateid *, 49e047a10cSTrond Myklebust const nfs4_stateid *); 50fca78d6dSBryan Schumaker int (*find_root_sec)(struct nfs_server *, struct nfs_fh *, 51fca78d6dSBryan Schumaker struct nfs_fsinfo *); 52c48f4f35STrond Myklebust const struct nfs4_state_recovery_ops *reboot_recovery_ops; 53c48f4f35STrond Myklebust const struct nfs4_state_recovery_ops *nograce_recovery_ops; 54c48f4f35STrond Myklebust const struct nfs4_state_maintenance_ops *state_renewal_ops; 5597dc1359STrond Myklebust }; 5697dc1359STrond Myklebust 57cee54fc9STrond Myklebust #define NFS_SEQID_CONFIRMED 1 58cee54fc9STrond Myklebust struct nfs_seqid_counter { 5995b72eb0STrond Myklebust ktime_t create_time; 6048c22eb2STrond Myklebust int owner_id; 61cee54fc9STrond Myklebust int flags; 62cee54fc9STrond Myklebust u32 counter; 637ba127abSTrond Myklebust spinlock_t lock; /* Protects the list */ 647ba127abSTrond Myklebust struct list_head list; /* Defines sequence of RPC calls */ 657ba127abSTrond Myklebust struct rpc_wait_queue wait; /* RPC call delay queue */ 66cee54fc9STrond Myklebust }; 67cee54fc9STrond Myklebust 68cee54fc9STrond Myklebust struct nfs_seqid { 69cee54fc9STrond Myklebust struct nfs_seqid_counter *sequence; 704e51336aSTrond Myklebust struct list_head list; 714601df20STrond Myklebust struct rpc_task *task; 72cee54fc9STrond Myklebust }; 73cee54fc9STrond Myklebust 74cee54fc9STrond Myklebust static inline void nfs_confirm_seqid(struct nfs_seqid_counter *seqid, int status) 75cee54fc9STrond Myklebust { 76cee54fc9STrond Myklebust if (seqid_mutating_err(-status)) 77cee54fc9STrond Myklebust seqid->flags |= NFS_SEQID_CONFIRMED; 78cee54fc9STrond Myklebust } 79cee54fc9STrond Myklebust 80cee54fc9STrond Myklebust /* 814ce79717STrond Myklebust * NFS4 state_owners and lock_owners are simply labels for ordered 824ce79717STrond Myklebust * sequences of RPC calls. Their sole purpose is to provide once-only 834ce79717STrond Myklebust * semantics by allowing the server to identify replayed requests. 844ce79717STrond Myklebust */ 854ce79717STrond Myklebust struct nfs4_state_owner { 866f2e64d3STrond Myklebust struct nfs_server *so_server; 870aaaf5c4SChuck Lever struct list_head so_lru; 880aaaf5c4SChuck Lever unsigned long so_expires; 8924d292b8SChuck Lever struct rb_node so_server_node; 904ce79717STrond Myklebust 914ce79717STrond Myklebust struct rpc_cred *so_cred; /* Associated cred */ 929f958ab8STrond Myklebust 939f958ab8STrond Myklebust spinlock_t so_lock; 949f958ab8STrond Myklebust atomic_t so_count; 957eff03aeSTrond Myklebust unsigned long so_flags; 964ce79717STrond Myklebust struct list_head so_states; 97cee54fc9STrond Myklebust struct nfs_seqid_counter so_seqid; 984ce79717STrond Myklebust }; 994ce79717STrond Myklebust 1007eff03aeSTrond Myklebust enum { 1017eff03aeSTrond Myklebust NFS_OWNER_RECLAIM_REBOOT, 1027eff03aeSTrond Myklebust NFS_OWNER_RECLAIM_NOGRACE 1037eff03aeSTrond Myklebust }; 1047eff03aeSTrond Myklebust 105afe6c27cSAlexandros Batsakis #define NFS_LOCK_NEW 0 106afe6c27cSAlexandros Batsakis #define NFS_LOCK_RECLAIM 1 107afe6c27cSAlexandros Batsakis #define NFS_LOCK_EXPIRED 2 108afe6c27cSAlexandros Batsakis 1094ce79717STrond Myklebust /* 1104ce79717STrond Myklebust * struct nfs4_state maintains the client-side state for a given 1114ce79717STrond Myklebust * (state_owner,inode) tuple (OPEN) or state_owner (LOCK). 1124ce79717STrond Myklebust * 1134ce79717STrond Myklebust * OPEN: 1144ce79717STrond Myklebust * In order to know when to OPEN_DOWNGRADE or CLOSE the state on the server, 1154ce79717STrond Myklebust * we need to know how many files are open for reading or writing on a 1164ce79717STrond Myklebust * given inode. This information too is stored here. 1174ce79717STrond Myklebust * 1184ce79717STrond Myklebust * LOCK: one nfs4_state (LOCK) to hold the lock stateid nfs4_state(OPEN) 1194ce79717STrond Myklebust */ 1204ce79717STrond Myklebust 12177041ed9STrond Myklebust struct nfs4_lock_owner { 12277041ed9STrond Myklebust unsigned int lo_type; 12377041ed9STrond Myklebust #define NFS4_ANY_LOCK_TYPE (0U) 12477041ed9STrond Myklebust #define NFS4_FLOCK_LOCK_TYPE (1U << 0) 12577041ed9STrond Myklebust #define NFS4_POSIX_LOCK_TYPE (1U << 1) 12677041ed9STrond Myklebust union { 12777041ed9STrond Myklebust fl_owner_t posix_owner; 12877041ed9STrond Myklebust pid_t flock_owner; 12977041ed9STrond Myklebust } lo_u; 13077041ed9STrond Myklebust }; 13177041ed9STrond Myklebust 1324ce79717STrond Myklebust struct nfs4_lock_state { 1334ce79717STrond Myklebust struct list_head ls_locks; /* Other lock stateids */ 1348d0a8a9dSTrond Myklebust struct nfs4_state * ls_state; /* Pointer to open state */ 135795a88c9STrond Myklebust #define NFS_LOCK_INITIALIZED 0 136795a88c9STrond Myklebust unsigned long ls_flags; 137cee54fc9STrond Myklebust struct nfs_seqid_counter ls_seqid; 1384ce79717STrond Myklebust nfs4_stateid ls_stateid; 1394ce79717STrond Myklebust atomic_t ls_count; 14077041ed9STrond Myklebust struct nfs4_lock_owner ls_owner; 1414ce79717STrond Myklebust }; 1424ce79717STrond Myklebust 1434ce79717STrond Myklebust /* bits for nfs4_state->flags */ 1444ce79717STrond Myklebust enum { 1454ce79717STrond Myklebust LK_STATE_IN_USE, 146003707c7STrond Myklebust NFS_DELEGATED_STATE, /* Current stateid is delegation */ 147003707c7STrond Myklebust NFS_O_RDONLY_STATE, /* OPEN stateid has read-only state */ 148003707c7STrond Myklebust NFS_O_WRONLY_STATE, /* OPEN stateid has write-only state */ 149003707c7STrond Myklebust NFS_O_RDWR_STATE, /* OPEN stateid has read/write state */ 150b79a4a1bSTrond Myklebust NFS_STATE_RECLAIM_REBOOT, /* OPEN stateid server rebooted */ 151b79a4a1bSTrond Myklebust NFS_STATE_RECLAIM_NOGRACE, /* OPEN stateid needs to recover state */ 1528e469ebdSTrond Myklebust NFS_STATE_POSIX_LOCKS, /* Posix locks are supported */ 1534ce79717STrond Myklebust }; 1544ce79717STrond Myklebust 1554ce79717STrond Myklebust struct nfs4_state { 1564ce79717STrond Myklebust struct list_head open_states; /* List of states for the same state_owner */ 1574ce79717STrond Myklebust struct list_head inode_states; /* List of states for the same inode */ 1584ce79717STrond Myklebust struct list_head lock_states; /* List of subservient lock stateids */ 1594ce79717STrond Myklebust 1604ce79717STrond Myklebust struct nfs4_state_owner *owner; /* Pointer to the open owner */ 1614ce79717STrond Myklebust struct inode *inode; /* Pointer to the inode */ 1624ce79717STrond Myklebust 1634ce79717STrond Myklebust unsigned long flags; /* Do we hold any locks? */ 1648d0a8a9dSTrond Myklebust spinlock_t state_lock; /* Protects the lock_states list */ 1654ce79717STrond Myklebust 1668bda4e4cSTrond Myklebust seqlock_t seqlock; /* Protects the stateid/open_stateid */ 167003707c7STrond Myklebust nfs4_stateid stateid; /* Current stateid: may be delegation */ 168003707c7STrond Myklebust nfs4_stateid open_stateid; /* OPEN stateid */ 1694ce79717STrond Myklebust 1708bda4e4cSTrond Myklebust /* The following 3 fields are protected by owner->so_lock */ 171003707c7STrond Myklebust unsigned int n_rdonly; /* Number of read-only references */ 172003707c7STrond Myklebust unsigned int n_wronly; /* Number of write-only references */ 173003707c7STrond Myklebust unsigned int n_rdwr; /* Number of read/write references */ 174dc0b027dSTrond Myklebust fmode_t state; /* State on the server (R,W, or RW) */ 1754ce79717STrond Myklebust atomic_t count; 1764ce79717STrond Myklebust }; 1774ce79717STrond Myklebust 1784ce79717STrond Myklebust 1794ce79717STrond Myklebust struct nfs4_exception { 1804ce79717STrond Myklebust long timeout; 1814ce79717STrond Myklebust int retry; 1829e33bed5STrond Myklebust struct nfs4_state *state; 1833114ea7aSTrond Myklebust struct inode *inode; 1844ce79717STrond Myklebust }; 1854ce79717STrond Myklebust 1864ce79717STrond Myklebust struct nfs4_state_recovery_ops { 1877eff03aeSTrond Myklebust int owner_flag_bit; 188b79a4a1bSTrond Myklebust int state_flag_bit; 1894ce79717STrond Myklebust int (*recover_open)(struct nfs4_state_owner *, struct nfs4_state *); 1904ce79717STrond Myklebust int (*recover_lock)(struct nfs4_state *, struct file_lock *); 191591d71cbSAndy Adamson int (*establish_clid)(struct nfs_client *, struct rpc_cred *); 19290a16617SAndy Adamson struct rpc_cred * (*get_clid_cred)(struct nfs_client *); 193fce5c838SRicardo Labiaga int (*reclaim_complete)(struct nfs_client *); 19405f4c350SChuck Lever int (*detect_trunking)(struct nfs_client *, struct nfs_client **, 19505f4c350SChuck Lever struct rpc_cred *); 1964ce79717STrond Myklebust }; 1974ce79717STrond Myklebust 19829fba38bSBenny Halevy struct nfs4_state_maintenance_ops { 1992f60ea6bSTrond Myklebust int (*sched_state_renewal)(struct nfs_client *, struct rpc_cred *, unsigned); 200a7b72103SAndy Adamson struct rpc_cred * (*get_state_renewal_cred_locked)(struct nfs_client *); 2018e69514fSBenny Halevy int (*renew_lease)(struct nfs_client *, struct rpc_cred *); 20229fba38bSBenny Halevy }; 20329fba38bSBenny Halevy 204f786aa90SAl Viro extern const struct dentry_operations nfs4_dentry_operations; 20573a79706SBryan Schumaker 20673a79706SBryan Schumaker /* dir.c */ 20773a79706SBryan Schumaker int nfs_atomic_open(struct inode *, struct dentry *, struct file *, 20873a79706SBryan Schumaker unsigned, umode_t, int *); 2096b3b5496SJ. Bruce Fields 2101ae811eeSbjschuma@gmail.com /* super.c */ 2111ae811eeSbjschuma@gmail.com extern struct file_system_type nfs4_fs_type; 2121ae811eeSbjschuma@gmail.com 21372de53ecSBryan Schumaker /* nfs4namespace.c */ 2142671bfc3SBryan Schumaker rpc_authflavor_t nfs_find_best_sec(struct nfs4_secinfo_flavors *); 21572de53ecSBryan Schumaker struct rpc_clnt *nfs4_create_sec_client(struct rpc_clnt *, struct inode *, struct qstr *); 216281cad46SBryan Schumaker struct vfsmount *nfs4_submount(struct nfs_server *, struct dentry *, 217281cad46SBryan Schumaker struct nfs_fh *, struct nfs_fattr *); 21872de53ecSBryan Schumaker 2194ce79717STrond Myklebust /* nfs4proc.c */ 220bb8b27e5STrond Myklebust extern int nfs4_proc_setclientid(struct nfs_client *, u32, unsigned short, struct rpc_cred *, struct nfs4_setclientid_res *); 221bb8b27e5STrond Myklebust extern int nfs4_proc_setclientid_confirm(struct nfs_client *, struct nfs4_setclientid_res *arg, struct rpc_cred *); 2223028eb2bSBryan Schumaker extern int nfs4_proc_get_rootfh(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); 2232cf047c9STrond Myklebust extern int nfs4_proc_bind_conn_to_session(struct nfs_client *, struct rpc_cred *cred); 2244d643d1dSAndy Adamson extern int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred); 22566245539STrond Myklebust extern int nfs4_destroy_clientid(struct nfs_client *clp); 226591d71cbSAndy Adamson extern int nfs4_init_clientid(struct nfs_client *, struct rpc_cred *); 2274d643d1dSAndy Adamson extern int nfs41_init_clientid(struct nfs_client *, struct rpc_cred *); 2281f7977c1STrond Myklebust extern int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait); 22955a97593STrond Myklebust extern int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle); 230f05d147fSBryan Schumaker extern int nfs4_proc_fs_locations(struct rpc_clnt *, struct inode *, const struct qstr *, 231f05d147fSBryan Schumaker struct nfs4_fs_locations *, struct page *); 232f05d147fSBryan Schumaker extern struct rpc_clnt *nfs4_proc_lookup_mountpoint(struct inode *, struct qstr *, 233f05d147fSBryan Schumaker struct nfs_fh *, struct nfs_fattr *); 23472de53ecSBryan Schumaker extern int nfs4_proc_secinfo(struct inode *, const struct qstr *, struct nfs4_secinfo_flavors *); 235cf470c3eSTrond Myklebust extern int nfs4_release_lockowner(struct nfs4_lock_state *); 23664c2ce8bSAneesh Kumar K.V extern const struct xattr_handler *nfs4_xattr_handlers[]; 2374ce79717STrond Myklebust 238557134a3SAndy Adamson #if defined(CONFIG_NFS_V4_1) 239035168abSTrond Myklebust static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server) 240035168abSTrond Myklebust { 241035168abSTrond Myklebust return server->nfs_client->cl_session; 242035168abSTrond Myklebust } 243035168abSTrond Myklebust 244961a828dSTrond Myklebust extern bool nfs4_set_task_privileged(struct rpc_task *task, void *dummy); 245035168abSTrond Myklebust extern int nfs4_setup_sequence(const struct nfs_server *server, 246fbcd4abcSAndy Adamson struct nfs4_sequence_args *args, struct nfs4_sequence_res *res, 2479d12b216STrond Myklebust struct rpc_task *task); 248dc70d7b3SAndy Adamson extern int nfs41_setup_sequence(struct nfs4_session *session, 249dc70d7b3SAndy Adamson struct nfs4_sequence_args *args, struct nfs4_sequence_res *res, 2509d12b216STrond Myklebust struct rpc_task *task); 251557134a3SAndy Adamson extern void nfs4_destroy_session(struct nfs4_session *session); 252557134a3SAndy Adamson extern struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp); 253848f5bdaSTrond Myklebust extern int nfs4_proc_create_session(struct nfs_client *, struct rpc_cred *); 254848f5bdaSTrond Myklebust extern int nfs4_proc_destroy_session(struct nfs4_session *, struct rpc_cred *); 255fccba804STrond Myklebust extern int nfs4_init_session(struct nfs_server *server); 2569430fb6bSRicardo Labiaga extern int nfs4_proc_get_lease_time(struct nfs_client *clp, 2579430fb6bSRicardo Labiaga struct nfs_fsinfo *fsinfo); 258863a3c6cSAndy Adamson extern int nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, 259ef311537SAndy Adamson bool sync); 26094de8b27SAndy Adamson 261e3725ec0STrond Myklebust extern struct nfs4_slot *nfs4_alloc_slots(struct nfs4_slot_table *table, 262e3725ec0STrond Myklebust u32 max_slots, gfp_t gfp_flags); 2639216106aSTrond Myklebust 26494de8b27SAndy Adamson static inline bool 26594de8b27SAndy Adamson is_ds_only_client(struct nfs_client *clp) 26694de8b27SAndy Adamson { 26794de8b27SAndy Adamson return (clp->cl_exchange_flags & EXCHGID4_FLAG_MASK_PNFS) == 26894de8b27SAndy Adamson EXCHGID4_FLAG_USE_PNFS_DS; 26994de8b27SAndy Adamson } 270d83217c1SAndy Adamson 271d83217c1SAndy Adamson static inline bool 272d83217c1SAndy Adamson is_ds_client(struct nfs_client *clp) 273d83217c1SAndy Adamson { 274d83217c1SAndy Adamson return clp->cl_exchange_flags & EXCHGID4_FLAG_USE_PNFS_DS; 275d83217c1SAndy Adamson } 276fbcd4abcSAndy Adamson #else /* CONFIG_NFS_v4_1 */ 277035168abSTrond Myklebust static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server) 278035168abSTrond Myklebust { 279035168abSTrond Myklebust return NULL; 280035168abSTrond Myklebust } 281035168abSTrond Myklebust 282035168abSTrond Myklebust static inline int nfs4_setup_sequence(const struct nfs_server *server, 283fbcd4abcSAndy Adamson struct nfs4_sequence_args *args, struct nfs4_sequence_res *res, 2849d12b216STrond Myklebust struct rpc_task *task) 285fbcd4abcSAndy Adamson { 286fbcd4abcSAndy Adamson return 0; 287fbcd4abcSAndy Adamson } 288fccba804STrond Myklebust 289fccba804STrond Myklebust static inline int nfs4_init_session(struct nfs_server *server) 290fccba804STrond Myklebust { 291fccba804STrond Myklebust return 0; 292fccba804STrond Myklebust } 29394de8b27SAndy Adamson 29494de8b27SAndy Adamson static inline bool 29594de8b27SAndy Adamson is_ds_only_client(struct nfs_client *clp) 29694de8b27SAndy Adamson { 29794de8b27SAndy Adamson return false; 29894de8b27SAndy Adamson } 299d83217c1SAndy Adamson 300d83217c1SAndy Adamson static inline bool 301d83217c1SAndy Adamson is_ds_client(struct nfs_client *clp) 302d83217c1SAndy Adamson { 303d83217c1SAndy Adamson return false; 304d83217c1SAndy Adamson } 305557134a3SAndy Adamson #endif /* CONFIG_NFS_V4_1 */ 3064ce79717STrond Myklebust 30797dc1359STrond Myklebust extern const struct nfs4_minor_version_ops *nfs_v4_minor_ops[]; 30829fba38bSBenny Halevy 3091549210fSTrond Myklebust extern const u32 nfs4_fattr_bitmap[3]; 3104ce79717STrond Myklebust extern const u32 nfs4_statfs_bitmap[2]; 3114ce79717STrond Myklebust extern const u32 nfs4_pathconf_bitmap[2]; 312dae100c2SFred Isaman extern const u32 nfs4_fsinfo_bitmap[3]; 313830b8e33SManoj Naik extern const u32 nfs4_fs_locations_bitmap[2]; 3144ce79717STrond Myklebust 315cdb7ecedSBryan Schumaker void nfs4_free_client(struct nfs_client *); 316cdb7ecedSBryan Schumaker 3176663ee7fSBryan Schumaker struct nfs_client *nfs4_alloc_client(const struct nfs_client_initdata *); 3186663ee7fSBryan Schumaker 3194ce79717STrond Myklebust /* nfs4renewd.c */ 320adfa6f98SDavid Howells extern void nfs4_schedule_state_renewal(struct nfs_client *); 3214ce79717STrond Myklebust extern void nfs4_renewd_prepare_shutdown(struct nfs_server *); 322adfa6f98SDavid Howells extern void nfs4_kill_renewd(struct nfs_client *); 32365f27f38SDavid Howells extern void nfs4_renew_state(struct work_struct *); 3244ce79717STrond Myklebust 3254ce79717STrond Myklebust /* nfs4state.c */ 326a7b72103SAndy Adamson struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp); 3276dc9d57aSTrond Myklebust struct rpc_cred *nfs4_get_renew_cred_locked(struct nfs_client *clp); 32805f4c350SChuck Lever int nfs4_discover_server_trunking(struct nfs_client *clp, 32905f4c350SChuck Lever struct nfs_client **); 33005f4c350SChuck Lever int nfs40_discover_server_trunking(struct nfs_client *clp, 33105f4c350SChuck Lever struct nfs_client **, struct rpc_cred *); 332a7b72103SAndy Adamson #if defined(CONFIG_NFS_V4_1) 333a7b72103SAndy Adamson struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp); 334b4b82607SAndy Adamson struct rpc_cred *nfs4_get_exchange_id_cred(struct nfs_client *clp); 33505f4c350SChuck Lever int nfs41_discover_server_trunking(struct nfs_client *clp, 33605f4c350SChuck Lever struct nfs_client **, struct rpc_cred *); 3379f594791STrond Myklebust extern void nfs4_schedule_session_recovery(struct nfs4_session *, int); 3380400a6b0STrond Myklebust #else 3399f594791STrond Myklebust static inline void nfs4_schedule_session_recovery(struct nfs4_session *session, int err) 3400400a6b0STrond Myklebust { 3410400a6b0STrond Myklebust } 342a7b72103SAndy Adamson #endif /* CONFIG_NFS_V4_1 */ 3434ce79717STrond Myklebust 344d1e284d5STrond Myklebust extern struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *, struct rpc_cred *, gfp_t); 3454ce79717STrond Myklebust extern void nfs4_put_state_owner(struct nfs4_state_owner *); 3460aaaf5c4SChuck Lever extern void nfs4_purge_state_owners(struct nfs_server *); 3474ce79717STrond Myklebust extern struct nfs4_state * nfs4_get_open_state(struct inode *, struct nfs4_state_owner *); 3484ce79717STrond Myklebust extern void nfs4_put_open_state(struct nfs4_state *); 349643168c2SAl Viro extern void nfs4_close_state(struct nfs4_state *, fmode_t); 350643168c2SAl Viro extern void nfs4_close_sync(struct nfs4_state *, fmode_t); 351dc0b027dSTrond Myklebust extern void nfs4_state_set_mode_locked(struct nfs4_state *, fmode_t); 352a1d0b5eeSTrond Myklebust extern void nfs_inode_find_state_and_recover(struct inode *inode, 353a1d0b5eeSTrond Myklebust const nfs4_stateid *stateid); 3540400a6b0STrond Myklebust extern void nfs4_schedule_lease_recovery(struct nfs_client *); 355b0d3ded1STrond Myklebust extern void nfs4_schedule_state_manager(struct nfs_client *); 356042b60beSTrond Myklebust extern void nfs4_schedule_path_down_recovery(struct nfs_client *clp); 3570400a6b0STrond Myklebust extern void nfs4_schedule_stateid_recovery(const struct nfs_server *, struct nfs4_state *); 3580629e370SAlexandros Batsakis extern void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags); 359b9efa1b2SAndy Adamson extern void nfs41_handle_recall_slot(struct nfs_client *clp); 36078fe0f41SWeston Andros Adamson extern void nfs41_handle_server_scope(struct nfs_client *, 36179d4e1f0SChuck Lever struct nfs41_server_scope **); 362faf5f49cSTrond Myklebust extern void nfs4_put_lock_state(struct nfs4_lock_state *lsp); 3638d0a8a9dSTrond Myklebust extern int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl); 3644fc8796dSTrond Myklebust extern void nfs4_select_rw_stateid(nfs4_stateid *, struct nfs4_state *, 3652a369153STrond Myklebust fmode_t, const struct nfs_lockowner *); 3664ce79717STrond Myklebust 3678535b2beSTrond Myklebust extern struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask); 368cee54fc9STrond Myklebust extern int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task); 369cee54fc9STrond Myklebust extern void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid); 370cee54fc9STrond Myklebust extern void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid); 37172211dbeSTrond Myklebust extern void nfs_release_seqid(struct nfs_seqid *seqid); 372cee54fc9STrond Myklebust extern void nfs_free_seqid(struct nfs_seqid *seqid); 373cee54fc9STrond Myklebust 3745ae67c4fSTrond Myklebust extern void nfs4_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp); 375cf470c3eSTrond Myklebust 3764ce79717STrond Myklebust extern const nfs4_stateid zero_stateid; 3774ce79717STrond Myklebust 378129d1977SBryan Schumaker /* nfs4super.c */ 379fbdefd64SBryan Schumaker struct nfs_mount_info; 380ab7017a3SBryan Schumaker extern struct nfs_subversion nfs_v4; 381ff9099f2SBryan Schumaker struct dentry *nfs4_try_mount(int, const char *, struct nfs_mount_info *, struct nfs_subversion *); 382fac1e8e4SBryan Schumaker extern bool nfs4_disable_idmapping; 383fac1e8e4SBryan Schumaker extern unsigned short max_session_slots; 384fac1e8e4SBryan Schumaker extern unsigned short send_implementation_id; 38589d77c8fSBryan Schumaker 3866f2ea7f2SChuck Lever #define NFS4_CLIENT_ID_UNIQ_LEN (64) 3876f2ea7f2SChuck Lever extern char nfs4_client_id_uniquifier[NFS4_CLIENT_ID_UNIQ_LEN]; 3886f2ea7f2SChuck Lever 389466bfe7fSBryan Schumaker /* nfs4sysctl.c */ 390466bfe7fSBryan Schumaker #ifdef CONFIG_SYSCTL 391466bfe7fSBryan Schumaker int nfs4_register_sysctl(void); 392466bfe7fSBryan Schumaker void nfs4_unregister_sysctl(void); 393466bfe7fSBryan Schumaker #else 394466bfe7fSBryan Schumaker static inline int nfs4_register_sysctl(void) 395466bfe7fSBryan Schumaker { 396466bfe7fSBryan Schumaker return 0; 397466bfe7fSBryan Schumaker } 398466bfe7fSBryan Schumaker 3990add3e85SRandy Dunlap static inline void nfs4_unregister_sysctl(void) 400466bfe7fSBryan Schumaker { 401466bfe7fSBryan Schumaker } 402466bfe7fSBryan Schumaker #endif 403466bfe7fSBryan Schumaker 4044ce79717STrond Myklebust /* nfs4xdr.c */ 4054ce79717STrond Myklebust extern struct rpc_procinfo nfs4_procedures[]; 4064ce79717STrond Myklebust 4074ce79717STrond Myklebust struct nfs4_mount_data; 4084ce79717STrond Myklebust 4094ce79717STrond Myklebust /* callback_xdr.c */ 4104ce79717STrond Myklebust extern struct svc_version nfs4_callback_version1; 41107bccc2dSAlexandros Batsakis extern struct svc_version nfs4_callback_version4; 4124ce79717STrond Myklebust 413f597c537STrond Myklebust static inline void nfs4_stateid_copy(nfs4_stateid *dst, const nfs4_stateid *src) 414f597c537STrond Myklebust { 4152d2f24adSTrond Myklebust memcpy(dst, src, sizeof(*dst)); 416f597c537STrond Myklebust } 417f597c537STrond Myklebust 418f597c537STrond Myklebust static inline bool nfs4_stateid_match(const nfs4_stateid *dst, const nfs4_stateid *src) 419f597c537STrond Myklebust { 4202d2f24adSTrond Myklebust return memcmp(dst, src, sizeof(*dst)) == 0; 421f597c537STrond Myklebust } 422f597c537STrond Myklebust 4234ce79717STrond Myklebust #else 4244ce79717STrond Myklebust 425643168c2SAl Viro #define nfs4_close_state(a, b) do { } while (0) 426643168c2SAl Viro #define nfs4_close_sync(a, b) do { } while (0) 4274ce79717STrond Myklebust 4284ce79717STrond Myklebust #endif /* CONFIG_NFS_V4 */ 4294ce79717STrond Myklebust #endif /* __LINUX_FS_NFS_NFS4_FS.H */ 430