blob: 69e80cef5a814f184c1fd58a43308ebd3ecfda50 [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 */
Trond Myklebust4b1b69c2019-10-03 14:08:43 -040048#define NFS_CS_NOPING 6 /* - don't ping on connect */
Trond Myklebust52f98f1a22019-10-17 09:49:45 -040049#define NFS_CS_DS 7 /* - Server is a DS */
Chuck Lever6e4cffd2007-12-10 14:58:15 -050050 struct sockaddr_storage cl_addr; /* server identifier */
51 size_t cl_addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -040052 char * cl_hostname; /* hostname of server */
Jeff Laytonf11b2a12014-06-21 20:52:17 -040053 char * cl_acceptor; /* GSSAPI acceptor name */
David Howells24c8dbb2006-08-22 20:06:10 -040054 struct list_head cl_share_link; /* link in global client list */
55 struct list_head cl_superblocks; /* List of nfs_server structs */
56
57 struct rpc_clnt * cl_rpcclient;
David Howells8fa5c002006-08-22 20:06:12 -040058 const struct nfs_rpc_ops *rpc_ops; /* NFS protocol vector */
Trond Myklebust59dca3b2008-01-03 16:29:06 -050059 int cl_proto; /* Network transport protocol */
Bryan Schumakerab7017a2012-07-30 16:05:16 -040060 struct nfs_subversion * cl_nfs_mod; /* pointer to nfs version module */
David Howells24c8dbb2006-08-22 20:06:10 -040061
Benny Halevy94a417f2009-04-01 09:21:49 -040062 u32 cl_minorversion;/* NFSv4 minorversion */
Trond Myklebust66190792017-04-27 11:13:40 -040063 unsigned int cl_nconnect; /* Number of connections */
NeilBrown5e169232018-12-03 11:30:30 +110064 const char * cl_principal; /* used for machine cred */
Trond Myklebust7c67db32008-04-07 20:50:11 -040065
Bryan Schumaker89d77c82012-07-30 16:05:25 -040066#if IS_ENABLED(CONFIG_NFS_V4)
Andy Adamson0e201622013-09-06 14:14:00 -040067 struct list_head cl_ds_clients; /* auth flavor data servers */
David Howells24c8dbb2006-08-22 20:06:10 -040068 u64 cl_clientid; /* constant */
Trond Myklebustfd954ae2011-04-24 14:28:18 -040069 nfs4_verifier cl_confirm; /* Clientid verifier */
David Howells24c8dbb2006-08-22 20:06:10 -040070 unsigned long cl_state;
71
David Howells24c8dbb2006-08-22 20:06:10 -040072 spinlock_t cl_lock;
73
74 unsigned long cl_lease_time;
75 unsigned long cl_last_renewal;
David Howells52bad642006-11-22 14:54:01 +000076 struct delayed_work cl_renewd;
David Howells24c8dbb2006-08-22 20:06:10 -040077
78 struct rpc_wait_queue cl_rpcwaitq;
79
David Howells24c8dbb2006-08-22 20:06:10 -040080 /* idmapper */
81 struct idmap * cl_idmap;
82
Trond Myklebustceb3a162015-01-03 15:16:04 -050083 /* Client owner identifier */
84 const char * cl_owner_id;
85
Andy Adamsonf4eecd52011-01-06 02:04:30 +000086 u32 cl_cb_ident; /* v4.0 callback identifier */
Trond Myklebust97dc1352010-06-16 09:52:26 -040087 const struct nfs4_minor_version_ops *cl_mvops;
Chuck Leverc9fdeb22013-10-17 14:13:02 -040088 unsigned long cl_mig_gen;
David Howells14727282009-04-03 16:42:42 +010089
Chuck Leverabf79bb2013-08-09 12:49:11 -040090 /* NFSv4.0 transport blocking */
91 struct nfs4_slot_table *cl_slot_tbl;
92
Benny Halevy99fe60d2009-04-01 09:22:29 -040093 /* The sequence id to use for the next CREATE_SESSION */
94 u32 cl_seqid;
95 /* The flags used for obtaining the clientid during EXCHANGE_ID */
96 u32 cl_exchange_flags;
Chuck Lever722baaf2012-05-21 22:44:22 -040097 struct nfs4_session *cl_session; /* shared session */
Chuck Lever05f4c352012-09-14 17:24:32 -040098 bool cl_preserve_clid;
Chuck Leveracdeb692012-05-21 22:46:16 -040099 struct nfs41_server_owner *cl_serverowner;
Chuck Lever79d4e1f2012-05-21 22:44:31 -0400100 struct nfs41_server_scope *cl_serverscope;
Chuck Lever59155542012-05-21 22:44:41 -0400101 struct nfs41_impl_id *cl_implid;
Weston Andros Adamson2031cd12013-08-13 16:37:32 -0400102 /* nfs 4.1+ state protection modes: */
103 unsigned long cl_sp4_flags;
104#define NFS_SP4_MACH_CRED_MINIMAL 1 /* Minimal sp4_mach_cred - state ops
105 * must use machine cred */
Weston Andros Adamsonfa940722013-08-13 16:37:34 -0400106#define NFS_SP4_MACH_CRED_CLEANUP 2 /* CLOSE and LOCKU */
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -0400107#define NFS_SP4_MACH_CRED_SECINFO 3 /* SECINFO and SECINFO_NO_NAME */
Weston Andros Adamson3787d502013-08-13 16:37:36 -0400108#define NFS_SP4_MACH_CRED_STATEID 4 /* TEST_STATEID and FREE_STATEID */
Weston Andros Adamson8c21c622013-08-13 16:37:37 -0400109#define NFS_SP4_MACH_CRED_WRITE 5 /* WRITE */
110#define NFS_SP4_MACH_CRED_COMMIT 6 /* COMMIT */
Andrew Elble99ade3c2015-12-02 09:39:51 -0500111#define NFS_SP4_MACH_CRED_PNFS_CLEANUP 7 /* LAYOUTRETURN */
Jeff Laytona1d617d82016-09-17 18:17:39 -0400112#if IS_ENABLED(CONFIG_NFS_V4_1)
113 wait_queue_head_t cl_lock_waitq;
114#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500115#endif /* CONFIG_NFS_V4 */
Andy Adamson557134a2009-04-01 09:21:53 -0400116
Peng Tao1a04c6e2014-05-30 18:15:57 +0800117 /* Our own IP address, as a null-terminated string.
118 * This is used to generate the mv0 callback address.
119 */
120 char cl_ipaddr[48];
121
David Howells14727282009-04-03 16:42:42 +0100122#ifdef CONFIG_NFS_FSCACHE
123 struct fscache_cookie *fscache; /* client index cache cookie */
124#endif
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -0400125
Chuck Lever73ea6662012-05-21 22:44:50 -0400126 struct net *cl_net;
Olga Kornievskaiabc0c9072018-07-09 15:13:32 -0400127 struct list_head pending_cb_stateids;
David Howells24c8dbb2006-08-22 20:06:10 -0400128};
129
130/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * NFS client parameters stored in the superblock.
132 */
133struct nfs_server {
David Howells27951bd2006-08-22 20:06:11 -0400134 struct nfs_client * nfs_client; /* shared client and NFS4 state */
David Howells54ceac42006-08-22 20:06:13 -0400135 struct list_head client_link; /* List of other nfs_server structs
136 * that share the same client
137 */
138 struct list_head master_link; /* link in master servers list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 struct rpc_clnt * client; /* RPC client handle */
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000140 struct rpc_clnt * client_acl; /* ACL RPC client handle */
Chuck Lever9289e7f2008-01-11 17:09:52 -0500141 struct nlm_host *nlm_host; /* NLM client handle */
Tejun Heo003cb602010-02-02 14:39:01 +0900142 struct nfs_iostats __percpu *io_stats; /* I/O statistics */
Peter Zijlstra277866a2007-05-08 00:35:12 -0700143 atomic_long_t writeback; /* number of writeback pages */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 int flags; /* various flags */
Trond Myklebust7b1355b2019-04-07 13:59:00 -0400145
146/* The following are for internal use only. Also see uapi/linux/nfs_mount.h */
147#define NFS_MOUNT_LOOKUP_CACHE_NONEG 0x10000
148#define NFS_MOUNT_LOOKUP_CACHE_NONE 0x20000
149#define NFS_MOUNT_NORESVPORT 0x40000
150#define NFS_MOUNT_LEGACY_INTERFACE 0x80000
151#define NFS_MOUNT_LOCAL_FLOCK 0x100000
152#define NFS_MOUNT_LOCAL_FCNTL 0x200000
Trond Myklebust91a575e2019-04-07 13:59:01 -0400153#define NFS_MOUNT_SOFTERR 0x400000
Trond Myklebust7b1355b2019-04-07 13:59:00 -0400154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned int caps; /* server capabilities */
156 unsigned int rsize; /* read size */
157 unsigned int rpages; /* read size (in pages) */
158 unsigned int wsize; /* write size */
159 unsigned int wpages; /* write size (in pages) */
160 unsigned int wtmult; /* server disk block size */
161 unsigned int dtsize; /* readdir size */
Chuck Leverf22d6d72008-03-14 14:10:22 -0400162 unsigned short port; /* "port=" setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 unsigned int bsize; /* server block size */
164 unsigned int acregmin; /* attr cache timeouts */
165 unsigned int acregmax;
166 unsigned int acdirmin;
167 unsigned int acdirmax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 unsigned int namelen;
David Howellsc6a6f192009-04-03 16:42:42 +0100169 unsigned int options; /* extra options enabled by mount */
Peng Tao2a92ee92015-09-26 02:24:37 +0800170 unsigned int clone_blksize; /* granularity of a CLONE operation */
David Howellsc6a6f192009-04-03 16:42:42 +0100171#define NFS_OPTION_FSCACHE 0x00000001 /* - local caching enabled */
Chuck Lever89652612012-09-14 17:24:11 -0400172#define NFS_OPTION_MIGRATION 0x00000002 /* - NFSv4 migration enabled */
David Howells54ceac42006-08-22 20:06:13 -0400173
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -0400174 struct nfs_fsid fsid;
David Howells54ceac42006-08-22 20:06:13 -0400175 __u64 maxfilesize; /* maximum file size */
Trond Myklebuste86d5a02019-10-04 16:38:56 -0400176 struct timespec64 time_delta; /* smallest time granularity */
Chuck Lever67ec9f42006-03-20 13:44:15 -0500177 unsigned long mount_time; /* when this fs was mounted */
Chuck Leverce6cda12013-10-17 14:12:56 -0400178 struct super_block *super; /* VFS super block */
David Howells54ceac42006-08-22 20:06:13 -0400179 dev_t s_dev; /* superblock dev numbers */
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400180 struct nfs_auth_info auth_info; /* parsed auth flavors */
David Howells54ceac42006-08-22 20:06:13 -0400181
David Howells08734042009-04-03 16:42:42 +0100182#ifdef CONFIG_NFS_FSCACHE
183 struct nfs_fscache_key *fscache_key; /* unique key for superblock */
184 struct fscache_cookie *fscache; /* superblock cookie */
185#endif
186
Trond Myklebusta00ed252011-07-31 16:39:04 -0400187 u32 pnfs_blksize; /* layout_blksize attr */
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400188#if IS_ENABLED(CONFIG_NFS_V4)
Fred Isamandae100c2011-07-30 20:52:37 -0400189 u32 attr_bitmask[3];/* V4 bitmask representing the set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 of attributes supported on this
191 filesystem */
David Quigleyaa9c2662013-05-22 12:50:44 -0400192 u32 attr_bitmask_nl[3];
193 /* V4 bitmask representing the
194 set of attributes supported
195 on this filesystem excluding
196 the label support bit. */
Kinglong Mee8c612822015-08-26 21:12:58 +0800197 u32 exclcreat_bitmask[3];
198 /* V4 bitmask representing the
199 set of attributes supported
200 on this filesystem for the
201 exclusive create. */
David Quigleya09df2c2013-05-22 12:50:41 -0400202 u32 cache_consistency_bitmask[3];
Trond Myklebusta65318b2009-03-11 14:10:28 -0400203 /* V4 bitmask representing the subset
204 of change attribute, size, ctime
205 and mtime attributes supported by
206 the server */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 u32 acl_bitmask; /* V4 bitmask representing the ACEs
208 that are supported on this
209 filesystem */
Chuck Lever264e6352012-03-01 17:02:05 -0500210 u32 fh_expire_type; /* V4 bitmask representing file
211 handle volatility type for
212 this filesystem */
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400213 struct pnfs_layoutdriver_type *pnfs_curr_ld; /* Active layout driver */
Fred Isamanf7e89172011-01-06 11:36:32 +0000214 struct rpc_wait_queue roc_rpcwaitq;
Fred Isaman2f9fd182011-07-30 20:52:46 -0400215 void *pnfs_ld_data; /* per mount point data */
Chuck Lever24d292b2010-12-24 01:32:43 +0000216
217 /* the following fields are protected by nfs_client->cl_lock */
218 struct rb_root state_owners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#endif
Trond Myklebust9157c312012-01-17 22:04:24 -0500220 struct ida openowner_id;
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500221 struct ida lockowner_id;
Chuck Lever0aaaf5c2011-12-06 16:13:48 -0500222 struct list_head state_owners_lru;
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400223 struct list_head layouts;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000224 struct list_head delegations;
Olga Kornievskaia62164f32018-07-09 15:13:31 -0400225 struct list_head ss_copies;
Chuck Leverc9fdeb22013-10-17 14:13:02 -0400226
227 unsigned long mig_gen;
228 unsigned long mig_status;
229#define NFS_MIG_IN_TRANSITION (1)
230#define NFS_MIG_FAILED (2)
Chuck Lever8dcbec62017-06-08 11:52:44 -0400231#define NFS_MIG_TSM_POSSIBLE (3)
Chuck Leverc9fdeb22013-10-17 14:13:02 -0400232
David Howells54ceac42006-08-22 20:06:13 -0400233 void (*destroy)(struct nfs_server *);
Steve Dicksonef818a22007-11-08 04:05:04 -0500234
235 atomic_t active; /* Keep trace of any activity to this server */
Chuck Lever3f8400d2008-03-14 14:10:30 -0400236
237 /* mountd-related mount options */
238 struct sockaddr_storage mountd_address;
239 size_t mountd_addrlen;
240 u32 mountd_version;
241 unsigned short mountd_port;
242 unsigned short mountd_protocol;
Benjamin Coddington7d6ddf82017-04-11 12:50:10 -0400243 struct rpc_wait_queue uoc_rpcwaitq;
Trond Myklebust8d8928d2018-03-05 12:03:00 -0500244
245 /* XDR related information */
246 unsigned int read_hdrsize;
Trond Myklebust1a58e8a2019-04-24 17:46:43 -0400247
248 /* User namespace info */
249 const struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250};
251
252/* Server capabilities */
253#define NFS_CAP_READDIRPLUS (1U << 0)
254#define NFS_CAP_HARDLINKS (1U << 1)
255#define NFS_CAP_SYMLINKS (1U << 2)
256#define NFS_CAP_ACLS (1U << 3)
257#define NFS_CAP_ATOMIC_OPEN (1U << 4)
Trond Myklebustcd812592015-07-05 11:12:07 -0400258/* #define NFS_CAP_CHANGE_ATTR (1U << 5) */
Fred Isaman6e012602016-10-04 15:26:41 -0400259#define NFS_CAP_LGOPEN (1U << 5)
Trond Myklebust62ab4602009-08-09 15:06:19 -0400260#define NFS_CAP_FILEID (1U << 6)
261#define NFS_CAP_MODE (1U << 7)
262#define NFS_CAP_NLINK (1U << 8)
263#define NFS_CAP_OWNER (1U << 9)
264#define NFS_CAP_OWNER_GROUP (1U << 10)
265#define NFS_CAP_ATIME (1U << 11)
266#define NFS_CAP_CTIME (1U << 12)
267#define NFS_CAP_MTIME (1U << 13)
Trond Myklebust0df5dd42010-04-11 16:48:44 -0400268#define NFS_CAP_POSIX_LOCK (1U << 14)
Trond Myklebustb064eca22011-02-22 15:44:32 -0800269#define NFS_CAP_UIDGID_NOMAP (1U << 15)
Trond Myklebust3b664862013-03-17 15:31:15 -0400270#define NFS_CAP_STATEID_NFSV41 (1U << 16)
Trond Myklebust49f9a0f2013-03-15 16:44:28 -0400271#define NFS_CAP_ATOMIC_OPEN_V1 (1U << 17)
David Quigleye64a4212013-05-22 12:50:39 -0400272#define NFS_CAP_SECURITY_LABEL (1U << 18)
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -0400273#define NFS_CAP_SEEK (1U << 19)
Anna Schumakerf4ac1672014-11-25 13:18:15 -0500274#define NFS_CAP_ALLOCATE (1U << 20)
Anna Schumaker624bd5b2014-11-25 13:18:16 -0500275#define NFS_CAP_DEALLOCATE (1U << 21)
Trond Myklebust6c5a0d82015-06-27 11:45:46 -0400276#define NFS_CAP_LAYOUTSTATS (1U << 22)
Peng Taoe5341f32015-09-26 02:24:35 +0800277#define NFS_CAP_CLONE (1U << 23)
Anna Schumaker2e724482013-05-21 16:53:03 -0400278#define NFS_CAP_COPY (1U << 24)
Olga Kornievskaiacb95dee2018-07-09 15:13:29 -0400279#define NFS_CAP_OFFLOAD_CANCEL (1U << 25)
Trond Myklebust3eb86092019-02-08 10:31:05 -0500280#define NFS_CAP_LAYOUTERROR (1U << 26)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#endif