blob: 6673a77884d9daeeee1f11f565ef541779e28fa7 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David Howellsf7b422b2006-06-09 09:34:33 -04002/*
3 * NFS internal definitions
4 */
5
Andy Adamsoneedc0202009-04-01 09:22:41 -04006#include "nfs4_fs.h"
David Howellsf2aedb72019-12-10 07:31:13 -05007#include <linux/fs_context.h>
Eric Parisf9c3a382008-03-05 14:20:18 -05008#include <linux/security.h>
Trond Myklebust1264a2f2013-08-12 16:06:31 -04009#include <linux/crc32.h>
David Howells9954bf92019-12-10 07:31:04 -050010#include <linux/sunrpc/addr.h>
Peng Tao47af81f2014-11-10 08:35:34 +080011#include <linux/nfs_page.h>
Ingo Molnar5dd43ce2017-06-20 12:19:09 +020012#include <linux/wait_bit.h>
David Howellsf7b422b2006-06-09 09:34:33 -040013
Scott Mayhew62a55d02019-12-10 07:31:14 -050014#define NFS_SB_MASK (SB_RDONLY|SB_NOSUID|SB_NODEV|SB_NOEXEC|SB_SYNCHRONOUS)
David Howells08734042009-04-03 16:42:42 +010015
Peng Tao20fa1902017-06-29 06:34:53 -070016extern const struct export_operations nfs_export_ops;
17
David Howells54ceac42006-08-22 20:06:13 -040018struct nfs_string;
David Howellsf2aedb72019-12-10 07:31:13 -050019struct nfs_pageio_descriptor;
David Howells54ceac42006-08-22 20:06:13 -040020
Bryan Schumaker7ebb9312011-03-24 17:12:30 +000021static inline void nfs_attr_check_mountpoint(struct super_block *parent, struct nfs_fattr *fattr)
22{
23 if (!nfs_fsid_equal(&NFS_SB(parent)->fsid, &fattr->fsid))
24 fattr->valid |= NFS_ATTR_FATTR_MOUNTPOINT;
25}
26
Andy Adamson533eb462011-06-13 18:25:56 -040027static inline int nfs_attr_use_mounted_on_fileid(struct nfs_fattr *fattr)
28{
29 if (((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) == 0) ||
30 (((fattr->valid & NFS_ATTR_FATTR_MOUNTPOINT) == 0) &&
31 ((fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL) == 0)))
32 return 0;
Andy Adamson533eb462011-06-13 18:25:56 -040033 return 1;
34}
35
Trond Myklebustf7b37b82020-01-14 12:06:34 -050036static inline bool nfs_lookup_is_soft_revalidate(const struct dentry *dentry)
37{
38 if (!(NFS_SB(dentry->d_sb)->flags & NFS_MOUNT_SOFTREVAL))
39 return false;
40 if (!d_is_positive(dentry) || !NFS_FH(d_inode(dentry))->size)
41 return false;
42 return true;
43}
44
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040045/*
Chuck Levera14017d2009-06-17 18:02:12 -070046 * Note: RFC 1813 doesn't limit the number of auth flavors that
47 * a server can return, so make something up.
48 */
49#define NFS_MAX_SECFLAVORS (12)
50
51/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -040052 * Value used if the user did not specify a port value.
53 */
54#define NFS_UNSPEC_PORT (-1)
55
Trond Myklebusta956bed2016-08-16 10:26:47 -040056#define NFS_UNSPEC_RETRANS (UINT_MAX)
57#define NFS_UNSPEC_TIMEO (UINT_MAX)
58
Chuck Lever4cfd74f2009-09-08 19:49:47 -040059/*
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -040060 * Maximum number of pages that readdir can use for creating
61 * a vmapped array of pages.
62 */
Max Kellermanndb531db2019-07-12 16:18:06 +020063#define NFS_MAX_READDIR_PAGES 8
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -040064
Bryan Schumakerfcf10392012-07-16 16:39:18 -040065struct nfs_client_initdata {
66 unsigned long init_flags;
Trond Myklebust5c6e5b62016-06-22 14:13:12 -040067 const char *hostname; /* Hostname of the server */
68 const struct sockaddr *addr; /* Address of the server */
69 const char *nodename; /* Hostname of the client */
70 const char *ip_addr; /* IP address of the client */
Bryan Schumakerfcf10392012-07-16 16:39:18 -040071 size_t addrlen;
Bryan Schumakerab7017a2012-07-30 16:05:16 -040072 struct nfs_subversion *nfs_mod;
Bryan Schumakerfcf10392012-07-16 16:39:18 -040073 int proto;
74 u32 minorversion;
Trond Myklebust66190792017-04-27 11:13:40 -040075 unsigned int nconnect;
Bryan Schumakerfcf10392012-07-16 16:39:18 -040076 struct net *net;
Trond Myklebust5c6e5b62016-06-22 14:13:12 -040077 const struct rpc_timeout *timeparms;
Trond Myklebust1a58e8a2019-04-24 17:46:43 -040078 const struct cred *cred;
Bryan Schumakerfcf10392012-07-16 16:39:18 -040079};
80
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -040081/*
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040082 * In-kernel mount arguments
83 */
David Howells5eb005c2019-12-10 07:31:06 -050084struct nfs_fs_context {
David Howellsf2aedb72019-12-10 07:31:13 -050085 bool internal;
86 bool skip_reconfig_option_check;
87 bool need_mount;
88 bool sloppy;
David Howellse5581002019-12-10 07:31:10 -050089 unsigned int flags; /* NFS{,4}_MOUNT_* flags */
Chuck Lever8cb7f742012-09-14 17:23:14 -040090 unsigned int rsize, wsize;
91 unsigned int timeo, retrans;
David Howellse5581002019-12-10 07:31:10 -050092 unsigned int acregmin, acregmax;
93 unsigned int acdirmin, acdirmax;
Chuck Lever8cb7f742012-09-14 17:23:14 -040094 unsigned int namlen;
David Howellsb797cac2009-04-03 16:42:48 +010095 unsigned int options;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040096 unsigned int bsize;
Weston Andros Adamsona3f73c22013-10-18 15:15:16 -040097 struct nfs_auth_info auth_info;
98 rpc_authflavor_t selected_flavor;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040099 char *client_address;
Chuck Lever764302c2009-09-08 19:50:03 -0400100 unsigned int version;
Mike Sager3fd5be92009-04-01 09:21:48 -0400101 unsigned int minorversion;
David Howells08734042009-04-03 16:42:42 +0100102 char *fscache_uniq;
David Howellsf8ee01e2019-12-10 07:31:07 -0500103 unsigned short protofamily;
104 unsigned short mountfamily;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400105
106 struct {
David Howellse5581002019-12-10 07:31:10 -0500107 union {
108 struct sockaddr address;
109 struct sockaddr_storage _address;
110 };
Chuck Lever4c568012007-12-10 14:59:28 -0500111 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400112 char *hostname;
Chuck Lever78fa7012008-03-14 14:10:15 -0400113 u32 version;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400114 int port;
Chuck Lever78fa7012008-03-14 14:10:15 -0400115 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400116 } mount_server;
117
118 struct {
David Howellse5581002019-12-10 07:31:10 -0500119 union {
120 struct sockaddr address;
121 struct sockaddr_storage _address;
122 };
Chuck Lever4c568012007-12-10 14:59:28 -0500123 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400124 char *hostname;
125 char *export_path;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400126 int port;
Chuck Lever78fa7012008-03-14 14:10:15 -0400127 unsigned short protocol;
Trond Myklebust28cc5cd2017-04-26 23:30:48 -0400128 unsigned short nconnect;
David Howellsf2aedb72019-12-10 07:31:13 -0500129 unsigned short export_path_len;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400130 } nfs_server;
Eric Parisf9c3a382008-03-05 14:20:18 -0500131
Scott Mayhew62a55d02019-12-10 07:31:14 -0500132 struct nfs_fh *mntfh;
133 struct nfs_server *server;
134 struct nfs_subversion *nfs_mod;
David Howells48be8a62019-12-10 07:31:09 -0500135
Scott Mayhew62a55d02019-12-10 07:31:14 -0500136 /* Information for a cloned mount. */
137 struct nfs_clone_mount {
138 struct super_block *sb;
139 struct dentry *dentry;
140 struct nfs_fattr *fattr;
141 unsigned int inherited_bsize;
142 } clone_data;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400143};
144
Scott Mayhewce8866f02019-12-10 07:31:15 -0500145#define nfs_errorf(fc, fmt, ...) errorf(fc, fmt, ## __VA_ARGS__)
146#define nfs_invalf(fc, fmt, ...) invalf(fc, fmt, ## __VA_ARGS__)
147#define nfs_warnf(fc, fmt, ...) warnf(fc, fmt, ## __VA_ARGS__)
148
David Howellsf2aedb72019-12-10 07:31:13 -0500149static inline struct nfs_fs_context *nfs_fc2context(const struct fs_context *fc)
150{
151 return fc->fs_private;
152}
153
Chuck Lever146ec942008-12-23 15:21:34 -0500154/* mount_clnt.c */
Chuck Leverc5d120f2008-12-23 15:21:35 -0500155struct nfs_mount_request {
156 struct sockaddr *sap;
157 size_t salen;
158 char *hostname;
159 char *dirpath;
160 u32 version;
161 unsigned short protocol;
162 struct nfs_fh *fh;
Chuck Lever50a737f2008-12-23 15:21:37 -0500163 int noresvport;
Chuck Lever8e02f6b9a2009-06-17 18:02:13 -0700164 unsigned int *auth_flav_len;
165 rpc_authflavor_t *auth_flavs;
Stanislav Kinsbursky6d59b8d2012-01-10 16:12:54 +0400166 struct net *net;
Chuck Leverc5d120f2008-12-23 15:21:35 -0500167};
168
169extern int nfs_mount(struct nfs_mount_request *info);
Chuck Lever0b524122009-08-09 15:09:30 -0400170extern void nfs_umount(const struct nfs_mount_request *info);
Chuck Lever146ec942008-12-23 15:21:34 -0500171
David Howells24c8dbb2006-08-22 20:06:10 -0400172/* client.c */
Trond Myklebusta613fa12012-01-20 13:53:56 -0500173extern const struct rpc_program nfs_program;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000174extern void nfs_clients_init(struct net *net);
Trond Myklebust10b7a702019-02-06 09:32:50 -0500175extern void nfs_clients_exit(struct net *net);
Bryan Schumaker6663ee72012-06-20 15:53:46 -0400176extern struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *);
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400177int nfs_create_rpc_client(struct nfs_client *, const struct nfs_client_initdata *, rpc_authflavor_t);
Anna Schumaker7d38de32016-11-17 15:15:55 -0500178struct nfs_client *nfs_get_client(const struct nfs_client_initdata *);
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400179int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *, struct nfs_fattr *);
180void nfs_server_insert_lists(struct nfs_server *);
Chuck Lever32e62b72013-10-17 14:12:28 -0400181void nfs_server_remove_lists(struct nfs_server *);
Trond Myklebusta956bed2016-08-16 10:26:47 -0400182void nfs_init_timeout_values(struct rpc_timeout *to, int proto, int timeo, int retrans);
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400183int nfs_init_server_rpcclient(struct nfs_server *, const struct rpc_timeout *t,
184 rpc_authflavor_t);
185struct nfs_server *nfs_alloc_server(void);
186void nfs_server_copy_userdata(struct nfs_server *, struct nfs_server *);
David Howells54ceac42006-08-22 20:06:13 -0400187
David Howells24c8dbb2006-08-22 20:06:10 -0400188extern void nfs_put_client(struct nfs_client *);
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400189extern void nfs_free_client(struct nfs_client *);
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000190extern struct nfs_client *nfs4_find_client_ident(struct net *, int);
Andy Adamsonc36fca52011-01-06 02:04:32 +0000191extern struct nfs_client *
Stanislav Kinsburskyc7add9a2012-01-26 15:11:49 +0400192nfs4_find_client_sessionid(struct net *, const struct sockaddr *,
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400193 struct nfs4_sessionid *, u32);
Scott Mayhew62a55d02019-12-10 07:31:14 -0500194extern struct nfs_server *nfs_create_server(struct fs_context *);
195extern struct nfs_server *nfs4_create_server(struct fs_context *);
196extern struct nfs_server *nfs4_create_referral_server(struct fs_context *);
Chuck Lever32e62b72013-10-17 14:12:28 -0400197extern int nfs4_update_server(struct nfs_server *server, const char *hostname,
Trond Myklebust292f5032014-02-16 21:42:56 -0500198 struct sockaddr *sap, size_t salen,
199 struct net *net);
David Howells54ceac42006-08-22 20:06:13 -0400200extern void nfs_free_server(struct nfs_server *server);
201extern struct nfs_server *nfs_clone_server(struct nfs_server *,
202 struct nfs_fh *,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -0400203 struct nfs_fattr *,
204 rpc_authflavor_t);
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500205extern bool nfs_client_init_is_complete(const struct nfs_client *clp);
206extern int nfs_client_init_status(const struct nfs_client *clp);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400207extern int nfs_wait_client_init_complete(const struct nfs_client *clp);
Andy Adamson76db6d92009-04-01 09:22:38 -0400208extern void nfs_mark_client_ready(struct nfs_client *clp, int state);
Tigran Mkrtchyan3fc75f12016-06-13 19:57:35 +0200209extern struct nfs_client *nfs4_set_ds_client(struct nfs_server *mds_srv,
Andy Adamsond83217c2011-03-01 01:34:17 +0000210 const struct sockaddr *ds_addr,
Andy Adamson98fc6852012-04-27 17:53:45 -0400211 int ds_addrlen, int ds_proto,
212 unsigned int ds_timeo,
Peng Tao064172f2014-05-29 21:07:00 +0800213 unsigned int ds_retrans,
Anna Schumaker7d38de32016-11-17 15:15:55 -0500214 u32 minor_version);
Andy Adamson0e201622013-09-06 14:14:00 -0400215extern struct rpc_clnt *nfs4_find_or_create_ds_client(struct nfs_client *,
216 struct inode *);
Tigran Mkrtchyanb224f7c2016-06-13 20:52:00 +0200217extern struct nfs_client *nfs3_set_ds_client(struct nfs_server *mds_srv,
Peng Tao1a04c6e2014-05-30 18:15:57 +0800218 const struct sockaddr *ds_addr, int ds_addrlen,
219 int ds_proto, unsigned int ds_timeo,
Anna Schumaker7d38de32016-11-17 15:15:55 -0500220 unsigned int ds_retrans);
David Howells6aaca562006-08-22 20:06:13 -0400221#ifdef CONFIG_PROC_FS
222extern int __init nfs_fs_proc_init(void);
223extern void nfs_fs_proc_exit(void);
Eric W. Biederman65b38852014-07-31 04:35:20 -0700224extern int nfs_fs_proc_net_init(struct net *net);
225extern void nfs_fs_proc_net_exit(struct net *net);
David Howells6aaca562006-08-22 20:06:13 -0400226#else
Eric W. Biederman65b38852014-07-31 04:35:20 -0700227static inline int nfs_fs_proc_net_init(struct net *net)
228{
229 return 0;
230}
231static inline void nfs_fs_proc_net_exit(struct net *net)
232{
233}
David Howells6aaca562006-08-22 20:06:13 -0400234static inline int nfs_fs_proc_init(void)
235{
236 return 0;
237}
238static inline void nfs_fs_proc_exit(void)
239{
240}
241#endif
David Howells24c8dbb2006-08-22 20:06:10 -0400242
David Howellsf7b422b2006-06-09 09:34:33 -0400243/* callback_xdr.c */
Christoph Hellwige9679182017-05-12 16:21:37 +0200244extern const struct svc_version nfs4_callback_version1;
245extern const struct svc_version nfs4_callback_version4;
David Howellsf7b422b2006-06-09 09:34:33 -0400246
David Howellsf2aedb72019-12-10 07:31:13 -0500247/* fs_context.c */
248extern struct file_system_type nfs_fs_type;
David Howells9954bf92019-12-10 07:31:04 -0500249
David Howellsf7b422b2006-06-09 09:34:33 -0400250/* pagelist.c */
251extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700252extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400253extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700254extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400255extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700256extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400257
David Howellsf7b422b2006-06-09 09:34:33 -0400258extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700259extern void nfs_destroy_directcache(void);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400260extern void nfs_pgheader_init(struct nfs_pageio_descriptor *desc,
261 struct nfs_pgio_header *hdr,
262 void (*release)(struct nfs_pgio_header *hdr));
263void nfs_set_pgio_error(struct nfs_pgio_header *hdr, int error, loff_t pos);
Benjamin Coddington210c7c12016-01-06 10:40:18 -0500264int nfs_iocounter_wait(struct nfs_lock_context *l_ctx);
Trond Myklebust577b4232013-04-08 21:38:12 -0400265
Anna Schumaker41d8d5b2014-05-06 09:12:40 -0400266extern const struct nfs_pageio_ops nfs_pgio_rw_ops;
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -0400267struct nfs_pgio_header *nfs_pgio_header_alloc(const struct nfs_rw_ops *);
268void nfs_pgio_header_free(struct nfs_pgio_header *);
Anna Schumakeref2c4882014-05-06 09:12:36 -0400269int nfs_generic_pgio(struct nfs_pageio_descriptor *, struct nfs_pgio_header *);
Peng Tao46a5ab42014-06-13 23:02:25 +0800270int nfs_initiate_pgio(struct rpc_clnt *clnt, struct nfs_pgio_header *hdr,
NeilBrowna52458b2018-12-03 11:30:31 +1100271 const struct cred *cred, const struct nfs_rpc_ops *rpc_ops,
Peng Tao46a5ab42014-06-13 23:02:25 +0800272 const struct rpc_call_ops *call_ops, int how, int flags);
Weston Andros Adamsond4581382014-07-11 10:20:48 -0400273void nfs_free_request(struct nfs_page *req);
Peng Tao48d635f2014-11-10 08:35:35 +0800274struct nfs_pgio_mirror *
275nfs_pgio_current_mirror(struct nfs_pageio_descriptor *desc);
Anna Schumaker00bfa302014-05-06 09:12:29 -0400276
Trond Myklebust138a2932015-10-01 17:17:06 -0400277static inline bool nfs_match_open_context(const struct nfs_open_context *ctx1,
278 const struct nfs_open_context *ctx2)
279{
NeilBrowna52458b2018-12-03 11:30:31 +1100280 return cred_fscmp(ctx1->cred, ctx2->cred) == 0 && ctx1->state == ctx2->state;
Trond Myklebust138a2932015-10-01 17:17:06 -0400281}
282
David Howellsf7b422b2006-06-09 09:34:33 -0400283/* nfs2xdr.c */
Christoph Hellwig499b4982017-05-12 15:36:49 +0200284extern const struct rpc_procinfo nfs_procedures[];
Chuck Lever573c4e12010-12-14 14:58:11 +0000285extern int nfs2_decode_dirent(struct xdr_stream *,
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400286 struct nfs_entry *, bool);
David Howellsf7b422b2006-06-09 09:34:33 -0400287
288/* nfs3xdr.c */
Christoph Hellwig499b4982017-05-12 15:36:49 +0200289extern const struct rpc_procinfo nfs3_procedures[];
Chuck Lever573c4e12010-12-14 14:58:11 +0000290extern int nfs3_decode_dirent(struct xdr_stream *,
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400291 struct nfs_entry *, bool);
David Howellsf7b422b2006-06-09 09:34:33 -0400292
293/* nfs4xdr.c */
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400294#if IS_ENABLED(CONFIG_NFS_V4)
Chuck Lever573c4e12010-12-14 14:58:11 +0000295extern int nfs4_decode_dirent(struct xdr_stream *,
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400296 struct nfs_entry *, bool);
David Howells7d4e2742006-08-22 20:06:07 -0400297#endif
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500298#ifdef CONFIG_NFS_V4_1
299extern const u32 nfs41_maxread_overhead;
300extern const u32 nfs41_maxwrite_overhead;
Andy Adamsonf1c097b2013-06-25 19:02:53 -0400301extern const u32 nfs41_maxgetdevinfo_overhead;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500302#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400303
304/* nfs4proc.c */
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400305#if IS_ENABLED(CONFIG_NFS_V4)
Christoph Hellwig499b4982017-05-12 15:36:49 +0200306extern const struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700307#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400308
Anna Schumaker694e0962013-11-13 12:29:08 -0500309#ifdef CONFIG_NFS_V4_SECURITY_LABEL
310extern struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags);
Kinglong Meea49c2692015-07-27 15:31:38 +0800311static inline struct nfs4_label *
312nfs4_label_copy(struct nfs4_label *dst, struct nfs4_label *src)
313{
314 if (!dst || !src)
315 return NULL;
316
317 if (src->len > NFS4_MAXLABELLEN)
318 return NULL;
319
320 dst->lfs = src->lfs;
321 dst->pi = src->pi;
322 dst->len = src->len;
323 memcpy(dst->label, src->label, src->len);
324
325 return dst;
326}
Anna Schumaker694e0962013-11-13 12:29:08 -0500327static inline void nfs4_label_free(struct nfs4_label *label)
328{
329 if (label) {
330 kfree(label->label);
331 kfree(label);
332 }
333 return;
334}
Trond Myklebustfd1defc2014-02-06 14:38:53 -0500335
336static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi)
337{
338 if (nfs_server_capable(&nfsi->vfs_inode, NFS_CAP_SECURITY_LABEL))
339 nfsi->cache_validity |= NFS_INO_INVALID_LABEL;
340}
Anna Schumaker694e0962013-11-13 12:29:08 -0500341#else
342static inline struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags) { return NULL; }
343static inline void nfs4_label_free(void *label) {}
Trond Myklebustfd1defc2014-02-06 14:38:53 -0500344static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi)
345{
346}
Kinglong Meea49c2692015-07-27 15:31:38 +0800347static inline struct nfs4_label *
348nfs4_label_copy(struct nfs4_label *dst, struct nfs4_label *src)
349{
350 return NULL;
351}
Anna Schumaker694e0962013-11-13 12:29:08 -0500352#endif /* CONFIG_NFS_V4_SECURITY_LABEL */
353
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400354/* proc.c */
355void nfs_close_context(struct nfs_open_context *ctx, int is_sync);
Chuck Lever8cab4c32012-05-21 22:45:59 -0400356extern struct nfs_client *nfs_init_client(struct nfs_client *clp,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400357 const struct nfs_client_initdata *);
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400358
Trond Myklebust979df722006-07-25 11:28:19 -0400359/* dir.c */
Trond Myklebust1bcf4c52016-12-02 09:15:37 -0500360extern void nfs_advise_use_readdirplus(struct inode *dir);
Trond Myklebust311324a2014-02-07 17:02:08 -0500361extern void nfs_force_use_readdirplus(struct inode *dir);
Dave Chinner1ab6c492013-08-28 10:18:09 +1000362extern unsigned long nfs_access_cache_count(struct shrinker *shrink,
363 struct shrink_control *sc);
364extern unsigned long nfs_access_cache_scan(struct shrinker *shrink,
365 struct shrink_control *sc);
Bryan Schumaker597d9282012-07-16 16:39:10 -0400366struct dentry *nfs_lookup(struct inode *, struct dentry *, unsigned int);
367int nfs_create(struct inode *, struct dentry *, umode_t, bool);
368int nfs_mkdir(struct inode *, struct dentry *, umode_t);
369int nfs_rmdir(struct inode *, struct dentry *);
370int nfs_unlink(struct inode *, struct dentry *);
371int nfs_symlink(struct inode *, struct dentry *, const char *);
372int nfs_link(struct dentry *, struct inode *, struct dentry *);
373int nfs_mknod(struct inode *, struct dentry *, umode_t, dev_t);
Miklos Szeredi1cd66c92016-09-27 11:03:58 +0200374int nfs_rename(struct inode *, struct dentry *,
375 struct inode *, struct dentry *, unsigned int);
Trond Myklebust979df722006-07-25 11:28:19 -0400376
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400377/* file.c */
Christoph Hellwig4ff79bc2016-03-02 17:35:54 +0100378int nfs_file_fsync(struct file *file, loff_t start, loff_t end, int datasync);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400379loff_t nfs_file_llseek(struct file *, loff_t, int);
Al Viro3aa2d192014-04-02 20:14:12 -0400380ssize_t nfs_file_read(struct kiocb *, struct iov_iter *);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400381int nfs_file_mmap(struct file *, struct vm_area_struct *);
Al Viroedaf4362014-04-03 14:07:25 -0400382ssize_t nfs_file_write(struct kiocb *, struct iov_iter *);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400383int nfs_file_release(struct inode *, struct file *);
384int nfs_lock(struct file *, int, struct file_lock *);
385int nfs_flock(struct file *, int, struct file_lock *);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400386int nfs_check_flags(int);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400387
David Howellsf7b422b2006-06-09 09:34:33 -0400388/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500389extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400390extern struct inode *nfs_alloc_inode(struct super_block *sb);
Al Viroca1a1992019-04-15 20:19:40 -0400391extern void nfs_free_inode(struct inode *);
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100392extern int nfs_write_inode(struct inode *, struct writeback_control *);
Trond Myklebusteed99352012-12-14 14:36:36 -0500393extern int nfs_drop_inode(struct inode *);
Bryan Schumaker19d87ca2012-07-30 16:05:21 -0400394extern void nfs_clear_inode(struct inode *);
Al Virob57922d2010-06-07 14:34:48 -0400395extern void nfs_evict_inode(struct inode *);
Trond Myklebustf41f7412008-06-11 17:39:04 -0400396void nfs_zap_acl_cache(struct inode *inode);
Trond Myklebust61540bf2016-12-08 18:18:38 -0500397extern bool nfs_check_cache_invalid(struct inode *, unsigned long);
Peter Zijlstradfd01f02015-12-13 22:11:16 +0100398extern int nfs_wait_bit_killable(struct wait_bit_key *key, int mode);
David Howells5e4def22017-11-02 15:27:44 +0000399extern int nfs_wait_atomic_killable(atomic_t *p, unsigned int mode);
David Howellsf7b422b2006-06-09 09:34:33 -0400400
401/* super.c */
Bryan Schumaker6a744902012-07-30 16:05:20 -0400402extern const struct super_operations nfs_sops;
Weston Andros Adamson4d4b69d2013-10-18 15:15:19 -0400403bool nfs_auth_info_match(const struct nfs_auth_info *, rpc_authflavor_t);
David Howellsf2aedb72019-12-10 07:31:13 -0500404int nfs_try_get_tree(struct fs_context *);
405int nfs_get_tree_common(struct fs_context *);
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400406void nfs_kill_super(struct super_block *);
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200407
David Howellsf7b422b2006-06-09 09:34:33 -0400408extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200409
David Howellsf7b422b2006-06-09 09:34:33 -0400410extern int __init register_nfs_fs(void);
411extern void __exit unregister_nfs_fs(void);
Trond Myklebustea7c38f2015-02-05 15:13:24 -0500412extern bool nfs_sb_active(struct super_block *sb);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400413extern void nfs_sb_deactive(struct super_block *sb);
Trond Myklebust3c9e5022020-02-26 19:16:09 -0500414extern int nfs_client_for_each_server(struct nfs_client *clp,
415 int (*fn)(struct nfs_server *, void *),
416 void *data);
Trond Myklebusta5864c92016-06-03 17:07:19 -0400417/* io.c */
418extern void nfs_start_io_read(struct inode *inode);
419extern void nfs_end_io_read(struct inode *inode);
420extern void nfs_start_io_write(struct inode *inode);
421extern void nfs_end_io_write(struct inode *inode);
422extern void nfs_start_io_direct(struct inode *inode);
423extern void nfs_end_io_direct(struct inode *inode);
424
Trond Myklebust651b0e72016-06-25 17:24:46 -0400425static inline bool nfs_file_io_is_buffered(struct nfs_inode *nfsi)
426{
427 return test_bit(NFS_INO_ODIRECT, &nfsi->flags) == 0;
428}
429
David Howellsf7b422b2006-06-09 09:34:33 -0400430/* namespace.c */
Ben Hutchings97a54862012-10-21 19:23:52 +0100431#define NFS_PATH_CANONICAL 1
Al Virob514f872011-03-16 06:26:11 -0400432extern char *nfs_path(char **p, struct dentry *dentry,
Ben Hutchings97a54862012-10-21 19:23:52 +0100433 char *buffer, ssize_t buflen, unsigned flags);
David Howells36d43a42011-01-14 18:45:42 +0000434extern struct vfsmount *nfs_d_automount(struct path *path);
David Howellsf2aedb72019-12-10 07:31:13 -0500435int nfs_submount(struct fs_context *, struct nfs_server *);
436int nfs_do_submount(struct fs_context *);
David Howellsf7b422b2006-06-09 09:34:33 -0400437
David Howells54ceac42006-08-22 20:06:13 -0400438/* getroot.c */
Scott Mayhew62a55d02019-12-10 07:31:14 -0500439extern int nfs_get_root(struct super_block *s, struct fs_context *fc);
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400440#if IS_ENABLED(CONFIG_NFS_V4)
Trond Myklebust5e6b1992013-09-07 12:58:57 -0400441extern int nfs4_get_rootfh(struct nfs_server *server, struct nfs_fh *mntfh, bool);
David Howells7d4e2742006-08-22 20:06:07 -0400442#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400443
Fred Isaman061ae2e2012-04-20 14:47:48 -0400444struct nfs_pgio_completion_ops;
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400445/* read.c */
Fred Isaman584aa812012-04-20 14:47:51 -0400446extern void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200447 struct inode *inode, bool force_mds,
Fred Isaman584aa812012-04-20 14:47:51 -0400448 const struct nfs_pgio_completion_ops *compl_ops);
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400449extern void nfs_read_prepare(struct rpc_task *task, void *calldata);
Trond Myklebust493292d2011-07-13 15:58:28 -0400450extern void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio);
Trond Myklebuste885de12011-06-10 13:30:23 -0400451
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400452/* super.c */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400453void nfs_umount_begin(struct super_block *);
454int nfs_statfs(struct dentry *, struct kstatfs *);
455int nfs_show_options(struct seq_file *, struct dentry *);
456int nfs_show_devname(struct seq_file *, struct dentry *);
457int nfs_show_path(struct seq_file *, struct dentry *);
458int nfs_show_stats(struct seq_file *, struct dentry *);
David Howellsf2aedb72019-12-10 07:31:13 -0500459int nfs_reconfigure(struct fs_context *);
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400460
Andy Adamsondef6ed72009-04-01 09:22:26 -0400461/* write.c */
Fred Isaman1763da12012-04-20 14:47:57 -0400462extern void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
Christoph Hellwiga20c93e2014-04-16 15:07:21 +0200463 struct inode *inode, int ioflags, bool force_mds,
Fred Isaman1763da12012-04-20 14:47:57 -0400464 const struct nfs_pgio_completion_ops *compl_ops);
Trond Myklebustdce81292011-07-13 15:59:19 -0400465extern void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400466extern void nfs_commit_free(struct nfs_commit_data *p);
Andy Adamsondef6ed72009-04-01 09:22:26 -0400467extern void nfs_write_prepare(struct rpc_task *task, void *calldata);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400468extern void nfs_commit_prepare(struct rpc_task *task, void *calldata);
469extern int nfs_initiate_commit(struct rpc_clnt *clnt,
470 struct nfs_commit_data *data,
Peng Taoc36aae92014-06-09 07:10:14 +0800471 const struct nfs_rpc_ops *nfs_ops,
Fred Isamane0c2b382011-03-23 13:27:53 +0000472 const struct rpc_call_ops *call_ops,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400473 int how, int flags);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400474extern void nfs_init_commit(struct nfs_commit_data *data,
Fred Isamane0c2b382011-03-23 13:27:53 +0000475 struct list_head *head,
Fred Isamanf453a542012-04-20 14:47:54 -0400476 struct pnfs_layout_segment *lseg,
477 struct nfs_commit_info *cinfo);
Fred Isaman1763da12012-04-20 14:47:57 -0400478int nfs_scan_commit_list(struct list_head *src, struct list_head *dst,
479 struct nfs_commit_info *cinfo, int max);
Anna Schumakerce595152014-05-06 09:12:34 -0400480unsigned long nfs_reqs_to_commit(struct nfs_commit_info *);
Fred Isaman1763da12012-04-20 14:47:57 -0400481int nfs_scan_commit(struct inode *inode, struct list_head *dst,
482 struct nfs_commit_info *cinfo);
483void nfs_mark_request_commit(struct nfs_page *req,
484 struct pnfs_layout_segment *lseg,
Weston Andros Adamsonb57ff132014-09-05 18:20:21 -0400485 struct nfs_commit_info *cinfo,
486 u32 ds_commit_idx);
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400487int nfs_write_need_commit(struct nfs_pgio_header *);
Trond Myklebusta08a8cd2015-02-26 17:36:09 -0500488void nfs_writeback_update_inode(struct nfs_pgio_header *hdr);
Fred Isaman1763da12012-04-20 14:47:57 -0400489int nfs_generic_commit_list(struct inode *inode, struct list_head *head,
490 int how, struct nfs_commit_info *cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +0000491void nfs_retry_commit(struct list_head *page_list,
Fred Isamanea2cf222012-04-20 14:47:53 -0400492 struct pnfs_layout_segment *lseg,
Weston Andros Adamsonb57ff132014-09-05 18:20:21 -0400493 struct nfs_commit_info *cinfo,
494 u32 ds_commit_idx);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400495void nfs_commitdata_release(struct nfs_commit_data *data);
Anna Schumaker6272dcc2016-01-15 16:54:15 -0500496void nfs_request_add_commit_list(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -0400497 struct nfs_commit_info *cinfo);
Trond Myklebust86d80f92015-07-31 16:24:30 -0400498void nfs_request_add_commit_list_locked(struct nfs_page *req,
499 struct list_head *dst,
500 struct nfs_commit_info *cinfo);
Fred Isamanea2cf222012-04-20 14:47:53 -0400501void nfs_request_remove_commit_list(struct nfs_page *req,
502 struct nfs_commit_info *cinfo);
503void nfs_init_cinfo(struct nfs_commit_info *cinfo,
504 struct inode *inode,
505 struct nfs_direct_req *dreq);
Andy Adamsondc248262013-08-14 11:59:16 -0400506int nfs_key_timeout_notify(struct file *filp, struct inode *inode);
Scott Mayhewce52914e2016-06-07 15:14:48 -0400507bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400508void nfs_pageio_stop_mirroring(struct nfs_pageio_descriptor *pgio);
Fred Isamane0c2b382011-03-23 13:27:53 +0000509
Trond Myklebust837bb1d2016-06-25 18:12:03 -0400510int nfs_filemap_write_and_wait_range(struct address_space *mapping,
511 loff_t lstart, loff_t lend);
512
Trond Myklebusta5314a72016-06-01 21:42:32 -0400513#ifdef CONFIG_NFS_V4_1
Trond Myklebuste3b9f7e2020-03-20 19:06:48 -0400514static inline void
515pnfs_bucket_clear_pnfs_ds_commit_verifiers(struct pnfs_commit_bucket *buckets,
516 unsigned int nbuckets)
517{
518 unsigned int i;
519
520 for (i = 0; i < nbuckets; i++)
521 buckets[i].direct_verf.committed = NFS_INVALID_STABLE_HOW;
522}
Trond Myklebusta5314a72016-06-01 21:42:32 -0400523static inline
524void nfs_clear_pnfs_ds_commit_verifiers(struct pnfs_ds_commit_info *cinfo)
525{
Trond Myklebuste3b9f7e2020-03-20 19:06:48 -0400526 struct pnfs_commit_array *array;
Trond Myklebusta5314a72016-06-01 21:42:32 -0400527
Trond Myklebusta9901892020-03-20 16:04:06 -0400528 rcu_read_lock();
529 list_for_each_entry_rcu(array, &cinfo->commits, cinfo_list)
Trond Myklebuste3b9f7e2020-03-20 19:06:48 -0400530 pnfs_bucket_clear_pnfs_ds_commit_verifiers(array->buckets,
531 array->nbuckets);
Trond Myklebusta9901892020-03-20 16:04:06 -0400532 rcu_read_unlock();
Trond Myklebusta5314a72016-06-01 21:42:32 -0400533}
534#else
535static inline
536void nfs_clear_pnfs_ds_commit_verifiers(struct pnfs_ds_commit_info *cinfo)
537{
538}
539#endif
540
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400541#ifdef CONFIG_MIGRATION
542extern int nfs_migrate_page(struct address_space *,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800543 struct page *, struct page *, enum migrate_mode);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400544#endif
Andy Adamsondef6ed72009-04-01 09:22:26 -0400545
Trond Myklebust8fc3c382016-06-01 21:32:24 -0400546static inline int
547nfs_write_verifier_cmp(const struct nfs_write_verifier *v1,
548 const struct nfs_write_verifier *v2)
549{
550 return memcmp(v1->data, v2->data, sizeof(v1->data));
551}
552
Trond Myklebust1f284762020-03-21 09:27:46 -0400553static inline bool
554nfs_write_match_verf(const struct nfs_writeverf *verf,
555 struct nfs_page *req)
556{
557 return verf->committed > NFS_UNSTABLE &&
558 !nfs_write_verifier_cmp(&req->wb_verf, &verf->verifier);
559}
560
Jeff Layton0e862a42014-03-17 07:06:55 -0400561/* unlink.c */
562extern struct rpc_task *
563nfs_async_rename(struct inode *old_dir, struct inode *new_dir,
564 struct dentry *old_dentry, struct dentry *new_dentry,
565 void (*complete)(struct rpc_task *, struct nfs_renamedata *));
566extern int nfs_sillyrename(struct inode *dir, struct dentry *dentry);
567
Fred Isaman1763da12012-04-20 14:47:57 -0400568/* direct.c */
569void nfs_init_cinfo_from_dreq(struct nfs_commit_info *cinfo,
570 struct nfs_direct_req *dreq);
Peng Tao62965562012-09-25 14:55:57 +0800571extern ssize_t nfs_dreq_bytes_left(struct nfs_direct_req *dreq);
Fred Isaman1763da12012-04-20 14:47:57 -0400572
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400573/* nfs4proc.c */
Chuck Lever8cab4c32012-05-21 22:45:59 -0400574extern struct nfs_client *nfs4_init_client(struct nfs_client *clp,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400575 const struct nfs_client_initdata *);
Chuck Lever05f4c352012-09-14 17:24:32 -0400576extern int nfs40_walk_client_list(struct nfs_client *clp,
577 struct nfs_client **result,
NeilBrowna52458b2018-12-03 11:30:31 +1100578 const struct cred *cred);
Chuck Lever05f4c352012-09-14 17:24:32 -0400579extern int nfs41_walk_client_list(struct nfs_client *clp,
580 struct nfs_client **result,
NeilBrowna52458b2018-12-03 11:30:31 +1100581 const struct cred *cred);
Santosh kumar pradhan10e037d2018-12-19 12:29:57 +0530582extern void nfs4_test_session_trunk(struct rpc_clnt *clnt,
583 struct rpc_xprt *xprt,
584 void *data);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400585
Trond Myklebustea7c38f2015-02-05 15:13:24 -0500586static inline struct inode *nfs_igrab_and_active(struct inode *inode)
587{
588 inode = igrab(inode);
589 if (inode != NULL && !nfs_sb_active(inode->i_sb)) {
590 iput(inode);
591 inode = NULL;
592 }
593 return inode;
594}
595
596static inline void nfs_iput_and_deactive(struct inode *inode)
597{
598 if (inode != NULL) {
599 struct super_block *sb = inode->i_sb;
600
601 iput(inode);
602 nfs_sb_deactive(sb);
603 }
604}
605
Andy Adamson557134a2009-04-01 09:21:53 -0400606/*
David Howellsf7b422b2006-06-09 09:34:33 -0400607 * Determine the device name as a string
608 */
Al Virob514f872011-03-16 06:26:11 -0400609static inline char *nfs_devname(struct dentry *dentry,
David Howells54ceac42006-08-22 20:06:13 -0400610 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400611{
Al Virob514f872011-03-16 06:26:11 -0400612 char *dummy;
Ben Hutchings97a54862012-10-21 19:23:52 +0100613 return nfs_path(&dummy, dentry, buffer, buflen, NFS_PATH_CANONICAL);
David Howellsf7b422b2006-06-09 09:34:33 -0400614}
615
616/*
617 * Determine the actual block size (and log2 thereof)
618 */
619static inline
620unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
621{
622 /* make sure blocksize is a power of two */
623 if ((bsize & (bsize - 1)) || nrbitsp) {
624 unsigned char nrbits;
625
626 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
627 ;
628 bsize = 1 << nrbits;
629 if (nrbitsp)
630 *nrbitsp = nrbits;
631 }
632
633 return bsize;
634}
635
636/*
637 * Calculate the number of 512byte blocks used.
638 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400639static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400640{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400641 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400642 return (used > ULONG_MAX) ? ULONG_MAX : used;
643}
644
645/*
646 * Compute and set NFS server blocksize
647 */
648static inline
649unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
650{
651 if (bsize < NFS_MIN_FILE_IO_SIZE)
652 bsize = NFS_DEF_FILE_IO_SIZE;
653 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
654 bsize = NFS_MAX_FILE_IO_SIZE;
655
656 return nfs_block_bits(bsize, nrbitsp);
657}
658
659/*
660 * Determine the maximum file size for a superblock
661 */
662static inline
663void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
664{
665 sb->s_maxbytes = (loff_t)maxfilesize;
666 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
667 sb->s_maxbytes = MAX_LFS_FILESIZE;
668}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500669
670/*
NeilBrown8d928902020-06-01 21:48:21 -0700671 * Record the page as unstable (an extra writeback period) and mark its
672 * inode as dirty.
Tom Haynesd15bc382015-02-13 13:19:53 -0800673 */
674static inline
Trond Myklebust86d80f92015-07-31 16:24:30 -0400675void nfs_mark_page_unstable(struct page *page, struct nfs_commit_info *cinfo)
Tom Haynesd15bc382015-02-13 13:19:53 -0800676{
Trond Myklebust86d80f92015-07-31 16:24:30 -0400677 if (!cinfo->dreq) {
678 struct inode *inode = page_file_mapping(page)->host;
Tom Haynesd15bc382015-02-13 13:19:53 -0800679
NeilBrown8d928902020-06-01 21:48:21 -0700680 /* This page is really still in write-back - just that the
681 * writeback is happening on the server now.
682 */
683 inc_node_page_state(page, NR_WRITEBACK);
684 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Trond Myklebust86d80f92015-07-31 16:24:30 -0400685 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
686 }
Tom Haynesd15bc382015-02-13 13:19:53 -0800687}
688
689/*
Trond Myklebust49a70f22006-12-05 00:35:38 -0500690 * Determine the number of bytes of data the page contains
691 */
692static inline
693unsigned int nfs_page_length(struct page *page)
694{
Mel Gormand56b4dd2012-07-31 16:45:06 -0700695 loff_t i_size = i_size_read(page_file_mapping(page)->host);
Trond Myklebust49a70f22006-12-05 00:35:38 -0500696
697 if (i_size > 0) {
Huang Ying8cd79782016-10-07 17:00:24 -0700698 pgoff_t index = page_index(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300699 pgoff_t end_index = (i_size - 1) >> PAGE_SHIFT;
Huang Ying8cd79782016-10-07 17:00:24 -0700700 if (index < end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300701 return PAGE_SIZE;
Huang Ying8cd79782016-10-07 17:00:24 -0700702 if (index == end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300703 return ((i_size - 1) & ~PAGE_MASK) + 1;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500704 }
705 return 0;
706}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400707
708/*
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500709 * Convert a umode to a dirent->d_type
710 */
711static inline
712unsigned char nfs_umode_to_dtype(umode_t mode)
713{
714 return (mode >> 12) & 15;
715}
716
717/*
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400718 * Determine the number of pages in an array of length 'len' and
719 * with a base offset of 'base'
720 */
721static inline
722unsigned int nfs_page_array_len(unsigned int base, size_t len)
723{
724 return ((unsigned long)len + (unsigned long)base +
725 PAGE_SIZE - 1) >> PAGE_SHIFT;
726}
Trond Myklebust0110ee12009-12-07 09:00:24 -0500727
Trond Myklebust3a1556e2012-04-27 13:48:18 -0400728/*
Arnd Bergmannae084832019-11-11 21:16:23 +0100729 * Convert a struct timespec64 into a 64-bit change attribute
Trond Myklebust3a1556e2012-04-27 13:48:18 -0400730 *
Arnd Bergmannae084832019-11-11 21:16:23 +0100731 * This does approximately the same thing as timespec64_to_ns(),
Trond Myklebust3a1556e2012-04-27 13:48:18 -0400732 * but for calculation efficiency, we multiply the seconds by
733 * 1024*1024*1024.
734 */
735static inline
Trond Myklebuste86d5a02019-10-04 16:38:56 -0400736u64 nfs_timespec_to_change_attr(const struct timespec64 *ts)
Trond Myklebust3a1556e2012-04-27 13:48:18 -0400737{
738 return ((u64)ts->tv_sec << 30) + ts->tv_nsec;
739}
Trond Myklebust1264a2f2013-08-12 16:06:31 -0400740
741#ifdef CONFIG_CRC32
742/**
743 * nfs_fhandle_hash - calculate the crc32 hash for the filehandle
744 * @fh - pointer to filehandle
745 *
746 * returns a crc32 hash for the filehandle that is compatible with
747 * the one displayed by "wireshark".
748 */
749static inline u32 nfs_fhandle_hash(const struct nfs_fh *fh)
750{
751 return ~crc32_le(0xFFFFFFFF, &fh->data[0], fh->size);
752}
Olga Kornievskaia48c95792015-11-24 13:29:41 -0500753static inline u32 nfs_stateid_hash(const nfs4_stateid *stateid)
754{
755 return ~crc32_le(0xFFFFFFFF, &stateid->other[0],
756 NFS4_STATEID_OTHER_SIZE);
757}
Trond Myklebust1264a2f2013-08-12 16:06:31 -0400758#else
759static inline u32 nfs_fhandle_hash(const struct nfs_fh *fh)
760{
761 return 0;
762}
Olga Kornievskaia48c95792015-11-24 13:29:41 -0500763static inline u32 nfs_stateid_hash(nfs4_stateid *stateid)
764{
765 return 0;
766}
Trond Myklebust1264a2f2013-08-12 16:06:31 -0400767#endif
Peng Tao0bcbf032015-12-05 15:57:31 +0800768
769static inline bool nfs_error_is_fatal(int err)
770{
771 switch (err) {
772 case -ERESTARTSYS:
Trond Myklebust7dc58ca2019-01-22 07:39:09 -0500773 case -EINTR:
Trond Myklebust54551d82017-04-26 12:21:49 -0400774 case -EACCES:
775 case -EDQUOT:
776 case -EFBIG:
Peng Tao0bcbf032015-12-05 15:57:31 +0800777 case -EIO:
778 case -ENOSPC:
779 case -EROFS:
Trond Myklebust54551d82017-04-26 12:21:49 -0400780 case -ESTALE:
Peng Tao0bcbf032015-12-05 15:57:31 +0800781 case -E2BIG:
Trond Myklebust2dc23af2019-02-13 08:29:27 -0500782 case -ENOMEM:
Trond Myklebust11982a72019-04-07 13:58:59 -0400783 case -ETIMEDOUT:
Peng Tao0bcbf032015-12-05 15:57:31 +0800784 return true;
785 default:
786 return false;
787 }
788}
NeilBrownbf4b4902017-09-11 13:15:50 +1000789
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400790static inline bool nfs_error_is_fatal_on_server(int err)
791{
792 switch (err) {
793 case 0:
794 case -ERESTARTSYS:
795 case -EINTR:
796 return false;
797 }
798 return nfs_error_is_fatal(err);
799}
David Howells9954bf92019-12-10 07:31:04 -0500800
801/*
802 * Select between a default port value and a user-specified port value.
803 * If a zero value is set, then autobind will be used.
804 */
805static inline void nfs_set_port(struct sockaddr *sap, int *port,
806 const unsigned short default_port)
807{
808 if (*port == NFS_UNSPEC_PORT)
809 *port = default_port;
810
811 rpc_set_port(sap, *port);
812}