blob: a87fe854f0083229a19167e65993111a79482084 [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 Myklebust9157c312012-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 */
Trond Myklebust66190792017-04-27 11:13:40 -040061 unsigned int cl_nconnect; /* Number of connections */
NeilBrown5e169232018-12-03 11:30:30 +110062 const char * cl_principal; /* used for machine cred */
Trond Myklebust7c67db32008-04-07 20:50:11 -040063
Bryan Schumaker89d77c82012-07-30 16:05:25 -040064#if IS_ENABLED(CONFIG_NFS_V4)
Andy Adamson0e201622013-09-06 14:14:00 -040065 struct list_head cl_ds_clients; /* auth flavor data servers */
David Howells24c8dbb2006-08-22 20:06:10 -040066 u64 cl_clientid; /* constant */
Trond Myklebustfd954ae2011-04-24 14:28:18 -040067 nfs4_verifier cl_confirm; /* Clientid verifier */
David Howells24c8dbb2006-08-22 20:06:10 -040068 unsigned long cl_state;
69
David Howells24c8dbb2006-08-22 20:06:10 -040070 spinlock_t cl_lock;
71
72 unsigned long cl_lease_time;
73 unsigned long cl_last_renewal;
David Howells52bad642006-11-22 14:54:01 +000074 struct delayed_work cl_renewd;
David Howells24c8dbb2006-08-22 20:06:10 -040075
76 struct rpc_wait_queue cl_rpcwaitq;
77
David Howells24c8dbb2006-08-22 20:06:10 -040078 /* idmapper */
79 struct idmap * cl_idmap;
80
Trond Myklebustceb3a162015-01-03 15:16:04 -050081 /* Client owner identifier */
82 const char * cl_owner_id;
83
Andy Adamsonf4eecd52011-01-06 02:04:30 +000084 u32 cl_cb_ident; /* v4.0 callback identifier */
Trond Myklebust97dc1352010-06-16 09:52:26 -040085 const struct nfs4_minor_version_ops *cl_mvops;
Chuck Leverc9fdeb22013-10-17 14:13:02 -040086 unsigned long cl_mig_gen;
David Howells14727282009-04-03 16:42:42 +010087
Chuck Leverabf79bb2013-08-09 12:49:11 -040088 /* NFSv4.0 transport blocking */
89 struct nfs4_slot_table *cl_slot_tbl;
90
Benny Halevy99fe60d2009-04-01 09:22:29 -040091 /* The sequence id to use for the next CREATE_SESSION */
92 u32 cl_seqid;
93 /* The flags used for obtaining the clientid during EXCHANGE_ID */
94 u32 cl_exchange_flags;
Chuck Lever722baaf2012-05-21 22:44:22 -040095 struct nfs4_session *cl_session; /* shared session */
Chuck Lever05f4c352012-09-14 17:24:32 -040096 bool cl_preserve_clid;
Chuck Leveracdeb692012-05-21 22:46:16 -040097 struct nfs41_server_owner *cl_serverowner;
Chuck Lever79d4e1f2012-05-21 22:44:31 -040098 struct nfs41_server_scope *cl_serverscope;
Chuck Lever59155542012-05-21 22:44:41 -040099 struct nfs41_impl_id *cl_implid;
Weston Andros Adamson2031cd12013-08-13 16:37:32 -0400100 /* nfs 4.1+ state protection modes: */
101 unsigned long cl_sp4_flags;
102#define NFS_SP4_MACH_CRED_MINIMAL 1 /* Minimal sp4_mach_cred - state ops
103 * must use machine cred */
Weston Andros Adamsonfa940722013-08-13 16:37:34 -0400104#define NFS_SP4_MACH_CRED_CLEANUP 2 /* CLOSE and LOCKU */
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -0400105#define NFS_SP4_MACH_CRED_SECINFO 3 /* SECINFO and SECINFO_NO_NAME */
Weston Andros Adamson3787d502013-08-13 16:37:36 -0400106#define NFS_SP4_MACH_CRED_STATEID 4 /* TEST_STATEID and FREE_STATEID */
Weston Andros Adamson8c21c622013-08-13 16:37:37 -0400107#define NFS_SP4_MACH_CRED_WRITE 5 /* WRITE */
108#define NFS_SP4_MACH_CRED_COMMIT 6 /* COMMIT */
Andrew Elble99ade3c2015-12-02 09:39:51 -0500109#define NFS_SP4_MACH_CRED_PNFS_CLEANUP 7 /* LAYOUTRETURN */
Jeff Laytona1d617d82016-09-17 18:17:39 -0400110#if IS_ENABLED(CONFIG_NFS_V4_1)
111 wait_queue_head_t cl_lock_waitq;
112#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500113#endif /* CONFIG_NFS_V4 */
Andy Adamson557134a2009-04-01 09:21:53 -0400114
Peng Tao1a04c6e2014-05-30 18:15:57 +0800115 /* Our own IP address, as a null-terminated string.
116 * This is used to generate the mv0 callback address.
117 */
118 char cl_ipaddr[48];
119
David Howells14727282009-04-03 16:42:42 +0100120#ifdef CONFIG_NFS_FSCACHE
121 struct fscache_cookie *fscache; /* client index cache cookie */
122#endif
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -0400123
Chuck Lever73ea6662012-05-21 22:44:50 -0400124 struct net *cl_net;
Olga Kornievskaiabc0c9072018-07-09 15:13:32 -0400125 struct list_head pending_cb_stateids;
David Howells24c8dbb2006-08-22 20:06:10 -0400126};
127
128/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * NFS client parameters stored in the superblock.
130 */
131struct nfs_server {
David Howells27951bd2006-08-22 20:06:11 -0400132 struct nfs_client * nfs_client; /* shared client and NFS4 state */
David Howells54ceac42006-08-22 20:06:13 -0400133 struct list_head client_link; /* List of other nfs_server structs
134 * that share the same client
135 */
136 struct list_head master_link; /* link in master servers list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 struct rpc_clnt * client; /* RPC client handle */
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000138 struct rpc_clnt * client_acl; /* ACL RPC client handle */
Chuck Lever9289e7f2008-01-11 17:09:52 -0500139 struct nlm_host *nlm_host; /* NLM client handle */
Tejun Heo003cb602010-02-02 14:39:01 +0900140 struct nfs_iostats __percpu *io_stats; /* I/O statistics */
Peter Zijlstra277866a2007-05-08 00:35:12 -0700141 atomic_long_t writeback; /* number of writeback pages */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 int flags; /* various flags */
Trond Myklebust7b1355b2019-04-07 13:59:00 -0400143
144/* The following are for internal use only. Also see uapi/linux/nfs_mount.h */
145#define NFS_MOUNT_LOOKUP_CACHE_NONEG 0x10000
146#define NFS_MOUNT_LOOKUP_CACHE_NONE 0x20000
147#define NFS_MOUNT_NORESVPORT 0x40000
148#define NFS_MOUNT_LEGACY_INTERFACE 0x80000
149#define NFS_MOUNT_LOCAL_FLOCK 0x100000
150#define NFS_MOUNT_LOCAL_FCNTL 0x200000
Trond Myklebust91a575e2019-04-07 13:59:01 -0400151#define NFS_MOUNT_SOFTERR 0x400000
Trond Myklebust7b1355b2019-04-07 13:59:00 -0400152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 unsigned int caps; /* server capabilities */
154 unsigned int rsize; /* read size */
155 unsigned int rpages; /* read size (in pages) */
156 unsigned int wsize; /* write size */
157 unsigned int wpages; /* write size (in pages) */
158 unsigned int wtmult; /* server disk block size */
159 unsigned int dtsize; /* readdir size */
Chuck Leverf22d6d72008-03-14 14:10:22 -0400160 unsigned short port; /* "port=" setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 unsigned int bsize; /* server block size */
162 unsigned int acregmin; /* attr cache timeouts */
163 unsigned int acregmax;
164 unsigned int acdirmin;
165 unsigned int acdirmax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 unsigned int namelen;
David Howellsc6a6f192009-04-03 16:42:42 +0100167 unsigned int options; /* extra options enabled by mount */
Peng Tao2a92ee92015-09-26 02:24:37 +0800168 unsigned int clone_blksize; /* granularity of a CLONE operation */
David Howellsc6a6f192009-04-03 16:42:42 +0100169#define NFS_OPTION_FSCACHE 0x00000001 /* - local caching enabled */
Chuck Lever89652612012-09-14 17:24:11 -0400170#define NFS_OPTION_MIGRATION 0x00000002 /* - NFSv4 migration enabled */
David Howells54ceac42006-08-22 20:06:13 -0400171
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -0400172 struct nfs_fsid fsid;
David Howells54ceac42006-08-22 20:06:13 -0400173 __u64 maxfilesize; /* maximum file size */
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700174 struct timespec time_delta; /* smallest time granularity */
Chuck Lever67ec9f42006-03-20 13:44:15 -0500175 unsigned long mount_time; /* when this fs was mounted */
Chuck Leverce6cda12013-10-17 14:12:56 -0400176 struct super_block *super; /* VFS super block */
David Howells54ceac42006-08-22 20:06:13 -0400177 dev_t s_dev; /* superblock dev numbers */
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400178 struct nfs_auth_info auth_info; /* parsed auth flavors */
David Howells54ceac42006-08-22 20:06:13 -0400179
David Howells08734042009-04-03 16:42:42 +0100180#ifdef CONFIG_NFS_FSCACHE
181 struct nfs_fscache_key *fscache_key; /* unique key for superblock */
182 struct fscache_cookie *fscache; /* superblock cookie */
183#endif
184
Trond Myklebusta00ed252011-07-31 16:39:04 -0400185 u32 pnfs_blksize; /* layout_blksize attr */
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400186#if IS_ENABLED(CONFIG_NFS_V4)
Fred Isamandae100c2011-07-30 20:52:37 -0400187 u32 attr_bitmask[3];/* V4 bitmask representing the set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 of attributes supported on this
189 filesystem */
David Quigleyaa9c2662013-05-22 12:50:44 -0400190 u32 attr_bitmask_nl[3];
191 /* V4 bitmask representing the
192 set of attributes supported
193 on this filesystem excluding
194 the label support bit. */
Kinglong Mee8c612822015-08-26 21:12:58 +0800195 u32 exclcreat_bitmask[3];
196 /* V4 bitmask representing the
197 set of attributes supported
198 on this filesystem for the
199 exclusive create. */
David Quigleya09df2c2013-05-22 12:50:41 -0400200 u32 cache_consistency_bitmask[3];
Trond Myklebusta65318b2009-03-11 14:10:28 -0400201 /* V4 bitmask representing the subset
202 of change attribute, size, ctime
203 and mtime attributes supported by
204 the server */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 u32 acl_bitmask; /* V4 bitmask representing the ACEs
206 that are supported on this
207 filesystem */
Chuck Lever264e6352012-03-01 17:02:05 -0500208 u32 fh_expire_type; /* V4 bitmask representing file
209 handle volatility type for
210 this filesystem */
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400211 struct pnfs_layoutdriver_type *pnfs_curr_ld; /* Active layout driver */
Fred Isamanf7e89172011-01-06 11:36:32 +0000212 struct rpc_wait_queue roc_rpcwaitq;
Fred Isaman2f9fd182011-07-30 20:52:46 -0400213 void *pnfs_ld_data; /* per mount point data */
Chuck Lever24d292b2010-12-24 01:32:43 +0000214
215 /* the following fields are protected by nfs_client->cl_lock */
216 struct rb_root state_owners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#endif
Trond Myklebust9157c312012-01-17 22:04:24 -0500218 struct ida openowner_id;
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500219 struct ida lockowner_id;
Chuck Lever0aaaf5c2011-12-06 16:13:48 -0500220 struct list_head state_owners_lru;
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400221 struct list_head layouts;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000222 struct list_head delegations;
Olga Kornievskaia62164f32018-07-09 15:13:31 -0400223 struct list_head ss_copies;
Chuck Leverc9fdeb22013-10-17 14:13:02 -0400224
225 unsigned long mig_gen;
226 unsigned long mig_status;
227#define NFS_MIG_IN_TRANSITION (1)
228#define NFS_MIG_FAILED (2)
Chuck Lever8dcbec62017-06-08 11:52:44 -0400229#define NFS_MIG_TSM_POSSIBLE (3)
Chuck Leverc9fdeb22013-10-17 14:13:02 -0400230
David Howells54ceac42006-08-22 20:06:13 -0400231 void (*destroy)(struct nfs_server *);
Steve Dicksonef818a22007-11-08 04:05:04 -0500232
233 atomic_t active; /* Keep trace of any activity to this server */
Chuck Lever3f8400d2008-03-14 14:10:30 -0400234
235 /* mountd-related mount options */
236 struct sockaddr_storage mountd_address;
237 size_t mountd_addrlen;
238 u32 mountd_version;
239 unsigned short mountd_port;
240 unsigned short mountd_protocol;
Benjamin Coddington7d6ddf82017-04-11 12:50:10 -0400241 struct rpc_wait_queue uoc_rpcwaitq;
Trond Myklebust8d8928d2018-03-05 12:03:00 -0500242
243 /* XDR related information */
244 unsigned int read_hdrsize;
Trond Myklebust1a58e8a2019-04-24 17:46:43 -0400245
246 /* User namespace info */
247 const struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248};
249
250/* Server capabilities */
251#define NFS_CAP_READDIRPLUS (1U << 0)
252#define NFS_CAP_HARDLINKS (1U << 1)
253#define NFS_CAP_SYMLINKS (1U << 2)
254#define NFS_CAP_ACLS (1U << 3)
255#define NFS_CAP_ATOMIC_OPEN (1U << 4)
Trond Myklebustcd812592015-07-05 11:12:07 -0400256/* #define NFS_CAP_CHANGE_ATTR (1U << 5) */
Fred Isaman6e012602016-10-04 15:26:41 -0400257#define NFS_CAP_LGOPEN (1U << 5)
Trond Myklebust62ab4602009-08-09 15:06:19 -0400258#define NFS_CAP_FILEID (1U << 6)
259#define NFS_CAP_MODE (1U << 7)
260#define NFS_CAP_NLINK (1U << 8)
261#define NFS_CAP_OWNER (1U << 9)
262#define NFS_CAP_OWNER_GROUP (1U << 10)
263#define NFS_CAP_ATIME (1U << 11)
264#define NFS_CAP_CTIME (1U << 12)
265#define NFS_CAP_MTIME (1U << 13)
Trond Myklebust0df5dd42010-04-11 16:48:44 -0400266#define NFS_CAP_POSIX_LOCK (1U << 14)
Trond Myklebustb064eca22011-02-22 15:44:32 -0800267#define NFS_CAP_UIDGID_NOMAP (1U << 15)
Trond Myklebust3b664862013-03-17 15:31:15 -0400268#define NFS_CAP_STATEID_NFSV41 (1U << 16)
Trond Myklebust49f9a0f2013-03-15 16:44:28 -0400269#define NFS_CAP_ATOMIC_OPEN_V1 (1U << 17)
David Quigleye64a4212013-05-22 12:50:39 -0400270#define NFS_CAP_SECURITY_LABEL (1U << 18)
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -0400271#define NFS_CAP_SEEK (1U << 19)
Anna Schumakerf4ac1672014-11-25 13:18:15 -0500272#define NFS_CAP_ALLOCATE (1U << 20)
Anna Schumaker624bd5b2014-11-25 13:18:16 -0500273#define NFS_CAP_DEALLOCATE (1U << 21)
Trond Myklebust6c5a0d82015-06-27 11:45:46 -0400274#define NFS_CAP_LAYOUTSTATS (1U << 22)
Peng Taoe5341f32015-09-26 02:24:35 +0800275#define NFS_CAP_CLONE (1U << 23)
Anna Schumaker2e724482013-05-21 16:53:03 -0400276#define NFS_CAP_COPY (1U << 24)
Olga Kornievskaiacb95dee2018-07-09 15:13:29 -0400277#define NFS_CAP_OFFLOAD_CANCEL (1U << 25)
Trond Myklebust3eb86092019-02-08 10:31:05 -0500278#define NFS_CAP_LAYOUTERROR (1U << 26)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280#endif