blob: 6aa8cc83c3b66317ca0fd20e26d591b7f29654f8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _NFS_FS_SB
3#define _NFS_FS_SB
4
5#include <linux/list.h>
6#include <linux/backing-dev.h>
Trond Myklebust9157c31d2012-01-17 22:04:24 -05007#include <linux/idr.h>
Steve Dicksonef818a22007-11-08 04:05:04 -05008#include <linux/wait.h>
Andy Adamson557134a2009-04-01 09:21:53 -04009#include <linux/nfs_xdr.h>
10#include <linux/sunrpc/xprt.h>
Steve Dicksonef818a22007-11-08 04:05:04 -050011
Arun Sharma600634972011-07-26 16:09:06 -070012#include <linux/atomic.h>
Elena Reshetova212bf412017-10-20 12:53:38 +030013#include <linux/refcount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Andy Adamson557134a2009-04-01 09:21:53 -040015struct nfs4_session;
Chuck Leverd9ef5a82006-03-20 13:44:13 -050016struct nfs_iostats;
Chuck Lever9289e7f2008-01-11 17:09:52 -050017struct nlm_host;
Andy Adamsoncccef3b2009-04-01 09:22:03 -040018struct nfs4_sequence_args;
19struct nfs4_sequence_res;
20struct nfs_server;
Trond Myklebust97dc1352010-06-16 09:52:26 -040021struct nfs4_minor_version_ops;
Chuck Lever79d4e1f2012-05-21 22:44:31 -040022struct nfs41_server_scope;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -050023struct nfs41_impl_id;
Chuck Leverd9ef5a82006-03-20 13:44:13 -050024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
David Howells24c8dbb2006-08-22 20:06:10 -040026 * The nfs_client identifies our client state to the server.
27 */
28struct nfs_client {
Elena Reshetova212bf412017-10-20 12:53:38 +030029 refcount_t cl_count;
Trond Myklebust2a4c8992012-06-14 13:08:38 -040030 atomic_t cl_mds_count;
David Howells24c8dbb2006-08-22 20:06:10 -040031 int cl_cons_state; /* current construction state (-ve: init error) */
32#define NFS_CS_READY 0 /* ready to be used */
33#define NFS_CS_INITING 1 /* busy initialising */
Andy Adamson76db6d92009-04-01 09:22:38 -040034#define NFS_CS_SESSION_INITING 2 /* busy initialising session */
David Howells24c8dbb2006-08-22 20:06:10 -040035 unsigned long cl_res_state; /* NFS resources state */
David Howells24c8dbb2006-08-22 20:06:10 -040036#define NFS_CS_CALLBACK 1 /* - callback started */
37#define NFS_CS_IDMAP 2 /* - idmap started */
Trond Myklebust5dd31772006-08-24 01:03:05 -040038#define NFS_CS_RENEWD 3 /* - renewd started */
Andy Adamsond3b4c9d2011-03-01 01:34:10 +000039#define NFS_CS_STOP_RENEW 4 /* no more state to renew */
Andy Adamsond6fb79d2011-03-01 01:34:11 +000040#define NFS_CS_CHECK_LEASE_TIME 5 /* need to check lease time */
Chuck Lever4bf590e2012-05-21 22:46:07 -040041 unsigned long cl_flags; /* behavior switches */
42#define NFS_CS_NORESVPORT 0 /* - use ephemeral src port */
43#define NFS_CS_DISCRTRY 1 /* - disconnect on RPC retry */
Chuck Lever89652612012-09-14 17:24:11 -040044#define NFS_CS_MIGRATION 2 /* - transparent state migr */
Trond Myklebust98f98cf2013-04-14 11:49:51 -040045#define NFS_CS_INFINITE_SLOTS 3 /* - don't limit TCP slots */
Trond Myklebust99875242013-09-24 12:06:07 -040046#define NFS_CS_NO_RETRANS_TIMEOUT 4 /* - Disable retransmit timeouts */
Chuck Lever8dcbec62017-06-08 11:52:44 -040047#define NFS_CS_TSM_POSSIBLE 5 /* - Maybe state migration */
Chuck Lever6e4cffd2007-12-10 14:58:15 -050048 struct sockaddr_storage cl_addr; /* server identifier */
49 size_t cl_addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -040050 char * cl_hostname; /* hostname of server */
Jeff Laytonf11b2a12014-06-21 20:52:17 -040051 char * cl_acceptor; /* GSSAPI acceptor name */
David Howells24c8dbb2006-08-22 20:06:10 -040052 struct list_head cl_share_link; /* link in global client list */
53 struct list_head cl_superblocks; /* List of nfs_server structs */
54
55 struct rpc_clnt * cl_rpcclient;
David Howells8fa5c002006-08-22 20:06:12 -040056 const struct nfs_rpc_ops *rpc_ops; /* NFS protocol vector */
Trond Myklebust59dca3b2008-01-03 16:29:06 -050057 int cl_proto; /* Network transport protocol */
Bryan Schumakerab7017a2012-07-30 16:05:16 -040058 struct nfs_subversion * cl_nfs_mod; /* pointer to nfs version module */
David Howells24c8dbb2006-08-22 20:06:10 -040059
Benny Halevy94a417f2009-04-01 09:21:49 -040060 u32 cl_minorversion;/* NFSv4 minorversion */
NeilBrown5e169232018-12-03 11:30:30 +110061 const char * cl_principal; /* used for machine cred */
Trond Myklebust7c67db32008-04-07 20:50:11 -040062
Bryan Schumaker89d77c82012-07-30 16:05:25 -040063#if IS_ENABLED(CONFIG_NFS_V4)
Andy Adamson0e201622013-09-06 14:14:00 -040064 struct list_head cl_ds_clients; /* auth flavor data servers */
David Howells24c8dbb2006-08-22 20:06:10 -040065 u64 cl_clientid; /* constant */
Trond Myklebustfd954ae2011-04-24 14:28:18 -040066 nfs4_verifier cl_confirm; /* Clientid verifier */
David Howells24c8dbb2006-08-22 20:06:10 -040067 unsigned long cl_state;
68
David Howells24c8dbb2006-08-22 20:06:10 -040069 spinlock_t cl_lock;
70
71 unsigned long cl_lease_time;
72 unsigned long cl_last_renewal;
David Howells52bad642006-11-22 14:54:01 +000073 struct delayed_work cl_renewd;
David Howells24c8dbb2006-08-22 20:06:10 -040074
75 struct rpc_wait_queue cl_rpcwaitq;
76
David Howells24c8dbb2006-08-22 20:06:10 -040077 /* idmapper */
78 struct idmap * cl_idmap;
79
Trond Myklebustceb3a162015-01-03 15:16:04 -050080 /* Client owner identifier */
81 const char * cl_owner_id;
82
Andy Adamsonf4eecd52011-01-06 02:04:30 +000083 u32 cl_cb_ident; /* v4.0 callback identifier */
Trond Myklebust97dc1352010-06-16 09:52:26 -040084 const struct nfs4_minor_version_ops *cl_mvops;
Chuck Leverc9fdeb22013-10-17 14:13:02 -040085 unsigned long cl_mig_gen;
David Howells14727282009-04-03 16:42:42 +010086
Chuck Leverabf79bb2013-08-09 12:49:11 -040087 /* NFSv4.0 transport blocking */
88 struct nfs4_slot_table *cl_slot_tbl;
89
Benny Halevy99fe60d2009-04-01 09:22:29 -040090 /* The sequence id to use for the next CREATE_SESSION */
91 u32 cl_seqid;
92 /* The flags used for obtaining the clientid during EXCHANGE_ID */
93 u32 cl_exchange_flags;
Chuck Lever722baaf2012-05-21 22:44:22 -040094 struct nfs4_session *cl_session; /* shared session */
Chuck Lever05f4c352012-09-14 17:24:32 -040095 bool cl_preserve_clid;
Chuck Leveracdeb692012-05-21 22:46:16 -040096 struct nfs41_server_owner *cl_serverowner;
Chuck Lever79d4e1f2012-05-21 22:44:31 -040097 struct nfs41_server_scope *cl_serverscope;
Chuck Lever59155542012-05-21 22:44:41 -040098 struct nfs41_impl_id *cl_implid;
Weston Andros Adamson2031cd12013-08-13 16:37:32 -040099 /* nfs 4.1+ state protection modes: */
100 unsigned long cl_sp4_flags;
101#define NFS_SP4_MACH_CRED_MINIMAL 1 /* Minimal sp4_mach_cred - state ops
102 * must use machine cred */
Weston Andros Adamsonfa940722013-08-13 16:37:34 -0400103#define NFS_SP4_MACH_CRED_CLEANUP 2 /* CLOSE and LOCKU */
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -0400104#define NFS_SP4_MACH_CRED_SECINFO 3 /* SECINFO and SECINFO_NO_NAME */
Weston Andros Adamson3787d502013-08-13 16:37:36 -0400105#define NFS_SP4_MACH_CRED_STATEID 4 /* TEST_STATEID and FREE_STATEID */
Weston Andros Adamson8c21c622013-08-13 16:37:37 -0400106#define NFS_SP4_MACH_CRED_WRITE 5 /* WRITE */
107#define NFS_SP4_MACH_CRED_COMMIT 6 /* COMMIT */
Andrew Elble99ade3c2015-12-02 09:39:51 -0500108#define NFS_SP4_MACH_CRED_PNFS_CLEANUP 7 /* LAYOUTRETURN */
Jeff Laytona1d617d82016-09-17 18:17:39 -0400109#if IS_ENABLED(CONFIG_NFS_V4_1)
110 wait_queue_head_t cl_lock_waitq;
111#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500112#endif /* CONFIG_NFS_V4 */
Andy Adamson557134a2009-04-01 09:21:53 -0400113
Peng Tao1a04c6e2014-05-30 18:15:57 +0800114 /* Our own IP address, as a null-terminated string.
115 * This is used to generate the mv0 callback address.
116 */
117 char cl_ipaddr[48];
118
David Howells14727282009-04-03 16:42:42 +0100119#ifdef CONFIG_NFS_FSCACHE
120 struct fscache_cookie *fscache; /* client index cache cookie */
121#endif
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -0400122
Chuck Lever73ea6662012-05-21 22:44:50 -0400123 struct net *cl_net;
Olga Kornievskaiabc0c9072018-07-09 15:13:32 -0400124 struct list_head pending_cb_stateids;
David Howells24c8dbb2006-08-22 20:06:10 -0400125};
126
127/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * NFS client parameters stored in the superblock.
129 */
130struct nfs_server {
David Howells27951bd2006-08-22 20:06:11 -0400131 struct nfs_client * nfs_client; /* shared client and NFS4 state */
David Howells54ceac42006-08-22 20:06:13 -0400132 struct list_head client_link; /* List of other nfs_server structs
133 * that share the same client
134 */
135 struct list_head master_link; /* link in master servers list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 struct rpc_clnt * client; /* RPC client handle */
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000137 struct rpc_clnt * client_acl; /* ACL RPC client handle */
Chuck Lever9289e7f2008-01-11 17:09:52 -0500138 struct nlm_host *nlm_host; /* NLM client handle */
Tejun Heo003cb602010-02-02 14:39:01 +0900139 struct nfs_iostats __percpu *io_stats; /* I/O statistics */
Peter Zijlstra277866a2007-05-08 00:35:12 -0700140 atomic_long_t writeback; /* number of writeback pages */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 int flags; /* various flags */
142 unsigned int caps; /* server capabilities */
143 unsigned int rsize; /* read size */
144 unsigned int rpages; /* read size (in pages) */
145 unsigned int wsize; /* write size */
146 unsigned int wpages; /* write size (in pages) */
147 unsigned int wtmult; /* server disk block size */
148 unsigned int dtsize; /* readdir size */
Chuck Leverf22d6d72008-03-14 14:10:22 -0400149 unsigned short port; /* "port=" setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 unsigned int bsize; /* server block size */
151 unsigned int acregmin; /* attr cache timeouts */
152 unsigned int acregmax;
153 unsigned int acdirmin;
154 unsigned int acdirmax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned int namelen;
David Howellsc6a6f192009-04-03 16:42:42 +0100156 unsigned int options; /* extra options enabled by mount */
Peng Tao2a92ee92015-09-26 02:24:37 +0800157 unsigned int clone_blksize; /* granularity of a CLONE operation */
David Howellsc6a6f192009-04-03 16:42:42 +0100158#define NFS_OPTION_FSCACHE 0x00000001 /* - local caching enabled */
Chuck Lever89652612012-09-14 17:24:11 -0400159#define NFS_OPTION_MIGRATION 0x00000002 /* - NFSv4 migration enabled */
David Howells54ceac42006-08-22 20:06:13 -0400160
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -0400161 struct nfs_fsid fsid;
David Howells54ceac42006-08-22 20:06:13 -0400162 __u64 maxfilesize; /* maximum file size */
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700163 struct timespec time_delta; /* smallest time granularity */
Chuck Lever67ec9f42006-03-20 13:44:15 -0500164 unsigned long mount_time; /* when this fs was mounted */
Chuck Leverce6cda12013-10-17 14:12:56 -0400165 struct super_block *super; /* VFS super block */
David Howells54ceac42006-08-22 20:06:13 -0400166 dev_t s_dev; /* superblock dev numbers */
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400167 struct nfs_auth_info auth_info; /* parsed auth flavors */
David Howells54ceac42006-08-22 20:06:13 -0400168
David Howells08734042009-04-03 16:42:42 +0100169#ifdef CONFIG_NFS_FSCACHE
170 struct nfs_fscache_key *fscache_key; /* unique key for superblock */
171 struct fscache_cookie *fscache; /* superblock cookie */
172#endif
173
Trond Myklebusta00ed252011-07-31 16:39:04 -0400174 u32 pnfs_blksize; /* layout_blksize attr */
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400175#if IS_ENABLED(CONFIG_NFS_V4)
Fred Isamandae100c2011-07-30 20:52:37 -0400176 u32 attr_bitmask[3];/* V4 bitmask representing the set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 of attributes supported on this
178 filesystem */
David Quigleyaa9c2662013-05-22 12:50:44 -0400179 u32 attr_bitmask_nl[3];
180 /* V4 bitmask representing the
181 set of attributes supported
182 on this filesystem excluding
183 the label support bit. */
Kinglong Mee8c612822015-08-26 21:12:58 +0800184 u32 exclcreat_bitmask[3];
185 /* V4 bitmask representing the
186 set of attributes supported
187 on this filesystem for the
188 exclusive create. */
David Quigleya09df2c2013-05-22 12:50:41 -0400189 u32 cache_consistency_bitmask[3];
Trond Myklebusta65318b2009-03-11 14:10:28 -0400190 /* V4 bitmask representing the subset
191 of change attribute, size, ctime
192 and mtime attributes supported by
193 the server */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 u32 acl_bitmask; /* V4 bitmask representing the ACEs
195 that are supported on this
196 filesystem */
Chuck Lever264e6352012-03-01 17:02:05 -0500197 u32 fh_expire_type; /* V4 bitmask representing file
198 handle volatility type for
199 this filesystem */
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400200 struct pnfs_layoutdriver_type *pnfs_curr_ld; /* Active layout driver */
Fred Isamanf7e89172011-01-06 11:36:32 +0000201 struct rpc_wait_queue roc_rpcwaitq;
Fred Isaman2f9fd182011-07-30 20:52:46 -0400202 void *pnfs_ld_data; /* per mount point data */
Chuck Lever24d292b2010-12-24 01:32:43 +0000203
204 /* the following fields are protected by nfs_client->cl_lock */
205 struct rb_root state_owners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#endif
Trond Myklebust9157c31d2012-01-17 22:04:24 -0500207 struct ida openowner_id;
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500208 struct ida lockowner_id;
Chuck Lever0aaaf5c2011-12-06 16:13:48 -0500209 struct list_head state_owners_lru;
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400210 struct list_head layouts;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000211 struct list_head delegations;
Olga Kornievskaia62164f32018-07-09 15:13:31 -0400212 struct list_head ss_copies;
Chuck Leverc9fdeb22013-10-17 14:13:02 -0400213
214 unsigned long mig_gen;
215 unsigned long mig_status;
216#define NFS_MIG_IN_TRANSITION (1)
217#define NFS_MIG_FAILED (2)
Chuck Lever8dcbec62017-06-08 11:52:44 -0400218#define NFS_MIG_TSM_POSSIBLE (3)
Chuck Leverc9fdeb22013-10-17 14:13:02 -0400219
David Howells54ceac42006-08-22 20:06:13 -0400220 void (*destroy)(struct nfs_server *);
Steve Dicksonef818a22007-11-08 04:05:04 -0500221
222 atomic_t active; /* Keep trace of any activity to this server */
Chuck Lever3f8400d2008-03-14 14:10:30 -0400223
224 /* mountd-related mount options */
225 struct sockaddr_storage mountd_address;
226 size_t mountd_addrlen;
227 u32 mountd_version;
228 unsigned short mountd_port;
229 unsigned short mountd_protocol;
Benjamin Coddington7d6ddf82017-04-11 12:50:10 -0400230 struct rpc_wait_queue uoc_rpcwaitq;
Trond Myklebust8d8928d2018-03-05 12:03:00 -0500231
232 /* XDR related information */
233 unsigned int read_hdrsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
236/* Server capabilities */
237#define NFS_CAP_READDIRPLUS (1U << 0)
238#define NFS_CAP_HARDLINKS (1U << 1)
239#define NFS_CAP_SYMLINKS (1U << 2)
240#define NFS_CAP_ACLS (1U << 3)
241#define NFS_CAP_ATOMIC_OPEN (1U << 4)
Trond Myklebustcd812592015-07-05 11:12:07 -0400242/* #define NFS_CAP_CHANGE_ATTR (1U << 5) */
Fred Isaman6e012602016-10-04 15:26:41 -0400243#define NFS_CAP_LGOPEN (1U << 5)
Trond Myklebust62ab460c2009-08-09 15:06:19 -0400244#define NFS_CAP_FILEID (1U << 6)
245#define NFS_CAP_MODE (1U << 7)
246#define NFS_CAP_NLINK (1U << 8)
247#define NFS_CAP_OWNER (1U << 9)
248#define NFS_CAP_OWNER_GROUP (1U << 10)
249#define NFS_CAP_ATIME (1U << 11)
250#define NFS_CAP_CTIME (1U << 12)
251#define NFS_CAP_MTIME (1U << 13)
Trond Myklebust0df5dd42010-04-11 16:48:44 -0400252#define NFS_CAP_POSIX_LOCK (1U << 14)
Trond Myklebustb064eca22011-02-22 15:44:32 -0800253#define NFS_CAP_UIDGID_NOMAP (1U << 15)
Trond Myklebust3b664862013-03-17 15:31:15 -0400254#define NFS_CAP_STATEID_NFSV41 (1U << 16)
Trond Myklebust49f9a0f2013-03-15 16:44:28 -0400255#define NFS_CAP_ATOMIC_OPEN_V1 (1U << 17)
David Quigleye64a4212013-05-22 12:50:39 -0400256#define NFS_CAP_SECURITY_LABEL (1U << 18)
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -0400257#define NFS_CAP_SEEK (1U << 19)
Anna Schumakerf4ac1672014-11-25 13:18:15 -0500258#define NFS_CAP_ALLOCATE (1U << 20)
Anna Schumaker624bd5b2014-11-25 13:18:16 -0500259#define NFS_CAP_DEALLOCATE (1U << 21)
Trond Myklebust6c5a0d82015-06-27 11:45:46 -0400260#define NFS_CAP_LAYOUTSTATS (1U << 22)
Peng Taoe5341f32015-09-26 02:24:35 +0800261#define NFS_CAP_CLONE (1U << 23)
Anna Schumaker2e724482013-05-21 16:53:03 -0400262#define NFS_CAP_COPY (1U << 24)
Olga Kornievskaiacb95dee2018-07-09 15:13:29 -0400263#define NFS_CAP_OFFLOAD_CANCEL (1U << 25)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#endif