xref: /openbmc/linux/fs/overlayfs/overlayfs.h (revision b0504bfe)
1d2912cb1SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-only */
2e9be9d5eSMiklos Szeredi /*
3e9be9d5eSMiklos Szeredi  *
4e9be9d5eSMiklos Szeredi  * Copyright (C) 2011 Novell Inc.
5e9be9d5eSMiklos Szeredi  */
6e9be9d5eSMiklos Szeredi 
7e9be9d5eSMiklos Szeredi #include <linux/kernel.h>
83a1e819bSAmir Goldstein #include <linux/uuid.h>
946e5d0a3SMiklos Szeredi #include <linux/fs.h>
10bf070890SAlexander Larsson #include <linux/fsverity.h>
1122f289ceSChristian Brauner #include <linux/namei.h>
120e641857SChristian Brauner #include <linux/posix_acl.h>
130e641857SChristian Brauner #include <linux/posix_acl_xattr.h>
14ee023c30SAmir Goldstein #include "ovl_entry.h"
15e9be9d5eSMiklos Szeredi 
161bd0a3aeSlijiazi #undef pr_fmt
171bd0a3aeSlijiazi #define pr_fmt(fmt) "overlayfs: " fmt
181bd0a3aeSlijiazi 
19e9be9d5eSMiklos Szeredi enum ovl_path_type {
2038e813dbSMiklos Szeredi 	__OVL_PATH_UPPER	= (1 << 0),
2138e813dbSMiklos Szeredi 	__OVL_PATH_MERGE	= (1 << 1),
2259548503SAmir Goldstein 	__OVL_PATH_ORIGIN	= (1 << 2),
23e9be9d5eSMiklos Szeredi };
24e9be9d5eSMiklos Szeredi 
251afaba1eSMiklos Szeredi #define OVL_TYPE_UPPER(type)	((type) & __OVL_PATH_UPPER)
261afaba1eSMiklos Szeredi #define OVL_TYPE_MERGE(type)	((type) & __OVL_PATH_MERGE)
2759548503SAmir Goldstein #define OVL_TYPE_ORIGIN(type)	((type) & __OVL_PATH_ORIGIN)
28d837a49bSMiklos Szeredi 
292d2f2d73SMiklos Szeredi #define OVL_XATTR_NAMESPACE "overlay."
302d2f2d73SMiklos Szeredi #define OVL_XATTR_TRUSTED_PREFIX XATTR_TRUSTED_PREFIX OVL_XATTR_NAMESPACE
312d2f2d73SMiklos Szeredi #define OVL_XATTR_USER_PREFIX XATTR_USER_PREFIX OVL_XATTR_NAMESPACE
3243d193f8SMiklos Szeredi 
3343d193f8SMiklos Szeredi enum ovl_xattr {
3443d193f8SMiklos Szeredi 	OVL_XATTR_OPAQUE,
3543d193f8SMiklos Szeredi 	OVL_XATTR_REDIRECT,
3643d193f8SMiklos Szeredi 	OVL_XATTR_ORIGIN,
3743d193f8SMiklos Szeredi 	OVL_XATTR_IMPURE,
3843d193f8SMiklos Szeredi 	OVL_XATTR_NLINK,
3943d193f8SMiklos Szeredi 	OVL_XATTR_UPPER,
4043d193f8SMiklos Szeredi 	OVL_XATTR_METACOPY,
41096a218aSAmir Goldstein 	OVL_XATTR_PROTATTR,
4243d193f8SMiklos Szeredi };
433a1e819bSAmir Goldstein 
44c62520a8SAmir Goldstein enum ovl_inode_flag {
45b79e05aaSAmir Goldstein 	/* Pure upper dir that may contain non pure upper entries */
4613c72075SMiklos Szeredi 	OVL_IMPURE,
47b79e05aaSAmir Goldstein 	/* Non-merge dir that may contain whiteout entries */
48b79e05aaSAmir Goldstein 	OVL_WHITEOUTS,
49359f392cSAmir Goldstein 	OVL_INDEX,
500c288874SVivek Goyal 	OVL_UPPERDATA,
51a00c2d59SVivek Goyal 	/* Inode number will remain constant over copy up. */
52a00c2d59SVivek Goyal 	OVL_CONST_INO,
53184996e9SAlexander Larsson 	OVL_HAS_DIGEST,
54184996e9SAlexander Larsson 	OVL_VERIFIED_DIGEST,
5513c72075SMiklos Szeredi };
5613c72075SMiklos Szeredi 
57c62520a8SAmir Goldstein enum ovl_entry_flag {
58c62520a8SAmir Goldstein 	OVL_E_UPPER_ALIAS,
59c62520a8SAmir Goldstein 	OVL_E_OPAQUE,
602ca3c148SAmir Goldstein 	OVL_E_CONNECTED,
61c62520a8SAmir Goldstein };
62c62520a8SAmir Goldstein 
63926e94d7SAmir Goldstein enum {
64af5f2396SAmir Goldstein 	OVL_REDIRECT_OFF,	/* "off" mode is never used. In effect	*/
65af5f2396SAmir Goldstein 	OVL_REDIRECT_FOLLOW,	/* ...it translates to either "follow"	*/
66af5f2396SAmir Goldstein 	OVL_REDIRECT_NOFOLLOW,	/* ...or "nofollow".			*/
67af5f2396SAmir Goldstein 	OVL_REDIRECT_ON,
68af5f2396SAmir Goldstein };
69af5f2396SAmir Goldstein 
70af5f2396SAmir Goldstein enum {
71*b0504bfeSAmir Goldstein 	OVL_UUID_OFF,
72*b0504bfeSAmir Goldstein 	OVL_UUID_NULL,
73*b0504bfeSAmir Goldstein 	OVL_UUID_ON,
74*b0504bfeSAmir Goldstein };
75*b0504bfeSAmir Goldstein 
76*b0504bfeSAmir Goldstein enum {
77926e94d7SAmir Goldstein 	OVL_XINO_OFF,
78926e94d7SAmir Goldstein 	OVL_XINO_AUTO,
79926e94d7SAmir Goldstein 	OVL_XINO_ON,
80926e94d7SAmir Goldstein };
81926e94d7SAmir Goldstein 
82ae8cba40SAlexander Larsson enum {
83ae8cba40SAlexander Larsson 	OVL_VERITY_OFF,
84ae8cba40SAlexander Larsson 	OVL_VERITY_ON,
85ae8cba40SAlexander Larsson 	OVL_VERITY_REQUIRE,
86ae8cba40SAlexander Larsson };
87ae8cba40SAlexander Larsson 
883a1e819bSAmir Goldstein /*
893a1e819bSAmir Goldstein  * The tuple (fh,uuid) is a universal unique identifier for a copy up origin,
903a1e819bSAmir Goldstein  * where:
913a1e819bSAmir Goldstein  * origin.fh	- exported file handle of the lower file
923a1e819bSAmir Goldstein  * origin.uuid	- uuid of the lower filesystem
933a1e819bSAmir Goldstein  */
943a1e819bSAmir Goldstein #define OVL_FH_VERSION	0
953a1e819bSAmir Goldstein #define OVL_FH_MAGIC	0xfb
963a1e819bSAmir Goldstein 
973a1e819bSAmir Goldstein /* CPU byte order required for fid decoding:  */
983a1e819bSAmir Goldstein #define OVL_FH_FLAG_BIG_ENDIAN	(1 << 0)
993a1e819bSAmir Goldstein #define OVL_FH_FLAG_ANY_ENDIAN	(1 << 1)
10054fb347eSAmir Goldstein /* Is the real inode encoded in fid an upper inode? */
10154fb347eSAmir Goldstein #define OVL_FH_FLAG_PATH_UPPER	(1 << 2)
1023a1e819bSAmir Goldstein 
103961af647SAmir Goldstein #define OVL_FH_FLAG_ALL (OVL_FH_FLAG_BIG_ENDIAN | OVL_FH_FLAG_ANY_ENDIAN | \
104961af647SAmir Goldstein 			 OVL_FH_FLAG_PATH_UPPER)
1053a1e819bSAmir Goldstein 
1063a1e819bSAmir Goldstein #if defined(__LITTLE_ENDIAN)
1073a1e819bSAmir Goldstein #define OVL_FH_FLAG_CPU_ENDIAN 0
1083a1e819bSAmir Goldstein #elif defined(__BIG_ENDIAN)
1093a1e819bSAmir Goldstein #define OVL_FH_FLAG_CPU_ENDIAN OVL_FH_FLAG_BIG_ENDIAN
1103a1e819bSAmir Goldstein #else
1113a1e819bSAmir Goldstein #error Endianness not defined
1123a1e819bSAmir Goldstein #endif
1133a1e819bSAmir Goldstein 
114cbe7fba8SAmir Goldstein /* The type used to be returned by overlay exportfs for misaligned fid */
115cbe7fba8SAmir Goldstein #define OVL_FILEID_V0	0xfb
116cbe7fba8SAmir Goldstein /* The type returned by overlay exportfs for 32bit aligned fid */
117cbe7fba8SAmir Goldstein #define OVL_FILEID_V1	0xf8
1188ed5eec9SAmir Goldstein 
119cbe7fba8SAmir Goldstein /* On-disk format for "origin" file handle */
120cbe7fba8SAmir Goldstein struct ovl_fb {
1213a1e819bSAmir Goldstein 	u8 version;	/* 0 */
1223a1e819bSAmir Goldstein 	u8 magic;	/* 0xfb */
1233a1e819bSAmir Goldstein 	u8 len;		/* size of this header + size of fid */
1243a1e819bSAmir Goldstein 	u8 flags;	/* OVL_FH_FLAG_* */
1253a1e819bSAmir Goldstein 	u8 type;	/* fid_type of fid */
12601633fd2SChristoph Hellwig 	uuid_t uuid;	/* uuid of filesystem */
1270efbe7c4SGustavo A. R. Silva 	u32 fid[];	/* file identifier should be 32bit aligned in-memory */
1283a1e819bSAmir Goldstein } __packed;
129e9be9d5eSMiklos Szeredi 
130cbe7fba8SAmir Goldstein /* In-memory and on-wire format for overlay file handle */
131cbe7fba8SAmir Goldstein struct ovl_fh {
132cbe7fba8SAmir Goldstein 	u8 padding[3];	/* make sure fb.fid is 32bit aligned */
133cbe7fba8SAmir Goldstein 	union {
134cbe7fba8SAmir Goldstein 		struct ovl_fb fb;
135cf8aa9bfSKees Cook 		DECLARE_FLEX_ARRAY(u8, buf);
136cbe7fba8SAmir Goldstein 	};
137cbe7fba8SAmir Goldstein } __packed;
138cbe7fba8SAmir Goldstein 
139cbe7fba8SAmir Goldstein #define OVL_FH_WIRE_OFFSET	offsetof(struct ovl_fh, fb)
140cbe7fba8SAmir Goldstein #define OVL_FH_LEN(fh)		(OVL_FH_WIRE_OFFSET + (fh)->fb.len)
141cbe7fba8SAmir Goldstein #define OVL_FH_FID_OFFSET	(OVL_FH_WIRE_OFFSET + \
142cbe7fba8SAmir Goldstein 				 offsetof(struct ovl_fb, fid))
143cbe7fba8SAmir Goldstein 
144bf070890SAlexander Larsson /* On-disk format for "metacopy" xattr (if non-zero size) */
145bf070890SAlexander Larsson struct ovl_metacopy {
146bf070890SAlexander Larsson 	u8 version;	/* 0 */
147bf070890SAlexander Larsson 	u8 len;         /* size of this header + used digest bytes */
148bf070890SAlexander Larsson 	u8 flags;
149bf070890SAlexander Larsson 	u8 digest_algo;	/* FS_VERITY_HASH_ALG_* constant, 0 for no digest */
150bf070890SAlexander Larsson 	u8 digest[FS_VERITY_MAX_DIGEST_SIZE];  /* Only the used part on disk */
151bf070890SAlexander Larsson } __packed;
152bf070890SAlexander Larsson 
153bf070890SAlexander Larsson #define OVL_METACOPY_MAX_SIZE (sizeof(struct ovl_metacopy))
154bf070890SAlexander Larsson #define OVL_METACOPY_MIN_SIZE (OVL_METACOPY_MAX_SIZE - FS_VERITY_MAX_DIGEST_SIZE)
155bf070890SAlexander Larsson #define OVL_METACOPY_INIT { 0, OVL_METACOPY_MIN_SIZE }
156bf070890SAlexander Larsson 
157bf070890SAlexander Larsson static inline int ovl_metadata_digest_size(const struct ovl_metacopy *metacopy)
158bf070890SAlexander Larsson {
159bf070890SAlexander Larsson 	if (metacopy->len < OVL_METACOPY_MIN_SIZE)
160bf070890SAlexander Larsson 		return 0;
161bf070890SAlexander Larsson 	return (int)metacopy->len - OVL_METACOPY_MIN_SIZE;
162bf070890SAlexander Larsson }
163bf070890SAlexander Larsson 
1642d2f2d73SMiklos Szeredi extern const char *const ovl_xattr_table[][2];
16543d193f8SMiklos Szeredi static inline const char *ovl_xattr(struct ovl_fs *ofs, enum ovl_xattr ox)
16643d193f8SMiklos Szeredi {
1672d2f2d73SMiklos Szeredi 	return ovl_xattr_table[ox][ofs->config.userxattr];
16843d193f8SMiklos Szeredi }
16943d193f8SMiklos Szeredi 
170a15506eaSChristian Brauner /*
171a15506eaSChristian Brauner  * When changing ownership of an upper object map the intended ownership
172a15506eaSChristian Brauner  * according to the upper layer's idmapping. When an upper mount idmaps files
173a15506eaSChristian Brauner  * that are stored on-disk as owned by id 1001 to id 1000 this means stat on
174a15506eaSChristian Brauner  * this object will report it as being owned by id 1000 when calling stat via
175a15506eaSChristian Brauner  * the upper mount.
176a15506eaSChristian Brauner  * In order to change ownership of an object so stat reports id 1000 when
177a15506eaSChristian Brauner  * called on an idmapped upper mount the value written to disk - i.e., the
178a15506eaSChristian Brauner  * value stored in ia_*id - must 1001. The mount mapping helper will thus take
179a15506eaSChristian Brauner  * care to map 1000 to 1001.
180a15506eaSChristian Brauner  * The mnt idmapping helpers are nops if the upper layer isn't idmapped.
181a15506eaSChristian Brauner  */
182a15506eaSChristian Brauner static inline int ovl_do_notify_change(struct ovl_fs *ofs,
183a15506eaSChristian Brauner 				       struct dentry *upperdentry,
184a15506eaSChristian Brauner 				       struct iattr *attr)
185a15506eaSChristian Brauner {
186abf08576SChristian Brauner 	return notify_change(ovl_upper_mnt_idmap(ofs), upperdentry, attr, NULL);
187a15506eaSChristian Brauner }
188a15506eaSChristian Brauner 
189576bb263SChristian Brauner static inline int ovl_do_rmdir(struct ovl_fs *ofs,
190576bb263SChristian Brauner 			       struct inode *dir, struct dentry *dentry)
191e9be9d5eSMiklos Szeredi {
192abf08576SChristian Brauner 	int err = vfs_rmdir(ovl_upper_mnt_idmap(ofs), dir, dentry);
1936cf00764SAmir Goldstein 
194e9be9d5eSMiklos Szeredi 	pr_debug("rmdir(%pd2) = %i\n", dentry, err);
195e9be9d5eSMiklos Szeredi 	return err;
196e9be9d5eSMiklos Szeredi }
197e9be9d5eSMiklos Szeredi 
198576bb263SChristian Brauner static inline int ovl_do_unlink(struct ovl_fs *ofs, struct inode *dir,
199576bb263SChristian Brauner 				struct dentry *dentry)
200e9be9d5eSMiklos Szeredi {
201abf08576SChristian Brauner 	int err = vfs_unlink(ovl_upper_mnt_idmap(ofs), dir, dentry, NULL);
2026cf00764SAmir Goldstein 
203e9be9d5eSMiklos Szeredi 	pr_debug("unlink(%pd2) = %i\n", dentry, err);
204e9be9d5eSMiklos Szeredi 	return err;
205e9be9d5eSMiklos Szeredi }
206e9be9d5eSMiklos Szeredi 
207576bb263SChristian Brauner static inline int ovl_do_link(struct ovl_fs *ofs, struct dentry *old_dentry,
208576bb263SChristian Brauner 			      struct inode *dir, struct dentry *new_dentry)
209e9be9d5eSMiklos Szeredi {
210abf08576SChristian Brauner 	int err = vfs_link(old_dentry, ovl_upper_mnt_idmap(ofs), dir,
211abf08576SChristian Brauner 			   new_dentry, NULL);
2126cf00764SAmir Goldstein 
2136cf00764SAmir Goldstein 	pr_debug("link(%pd2, %pd2) = %i\n", old_dentry, new_dentry, err);
214e9be9d5eSMiklos Szeredi 	return err;
215e9be9d5eSMiklos Szeredi }
216e9be9d5eSMiklos Szeredi 
217576bb263SChristian Brauner static inline int ovl_do_create(struct ovl_fs *ofs,
218576bb263SChristian Brauner 				struct inode *dir, struct dentry *dentry,
2196cf00764SAmir Goldstein 				umode_t mode)
220e9be9d5eSMiklos Szeredi {
221abf08576SChristian Brauner 	int err = vfs_create(ovl_upper_mnt_idmap(ofs), dir, dentry, mode, true);
2226cf00764SAmir Goldstein 
223e9be9d5eSMiklos Szeredi 	pr_debug("create(%pd2, 0%o) = %i\n", dentry, mode, err);
224e9be9d5eSMiklos Szeredi 	return err;
225e9be9d5eSMiklos Szeredi }
226e9be9d5eSMiklos Szeredi 
227576bb263SChristian Brauner static inline int ovl_do_mkdir(struct ovl_fs *ofs,
228576bb263SChristian Brauner 			       struct inode *dir, struct dentry *dentry,
2296cf00764SAmir Goldstein 			       umode_t mode)
230e9be9d5eSMiklos Szeredi {
231abf08576SChristian Brauner 	int err = vfs_mkdir(ovl_upper_mnt_idmap(ofs), dir, dentry, mode);
232e9be9d5eSMiklos Szeredi 	pr_debug("mkdir(%pd2, 0%o) = %i\n", dentry, mode, err);
233e9be9d5eSMiklos Szeredi 	return err;
234e9be9d5eSMiklos Szeredi }
235e9be9d5eSMiklos Szeredi 
236576bb263SChristian Brauner static inline int ovl_do_mknod(struct ovl_fs *ofs,
237576bb263SChristian Brauner 			       struct inode *dir, struct dentry *dentry,
2386cf00764SAmir Goldstein 			       umode_t mode, dev_t dev)
239e9be9d5eSMiklos Szeredi {
240abf08576SChristian Brauner 	int err = vfs_mknod(ovl_upper_mnt_idmap(ofs), dir, dentry, mode, dev);
2416cf00764SAmir Goldstein 
2426cf00764SAmir Goldstein 	pr_debug("mknod(%pd2, 0%o, 0%o) = %i\n", dentry, mode, dev, err);
243e9be9d5eSMiklos Szeredi 	return err;
244e9be9d5eSMiklos Szeredi }
245e9be9d5eSMiklos Szeredi 
246576bb263SChristian Brauner static inline int ovl_do_symlink(struct ovl_fs *ofs,
247576bb263SChristian Brauner 				 struct inode *dir, struct dentry *dentry,
2486cf00764SAmir Goldstein 				 const char *oldname)
249e9be9d5eSMiklos Szeredi {
250abf08576SChristian Brauner 	int err = vfs_symlink(ovl_upper_mnt_idmap(ofs), dir, dentry, oldname);
2516cf00764SAmir Goldstein 
252e9be9d5eSMiklos Szeredi 	pr_debug("symlink(\"%s\", %pd2) = %i\n", oldname, dentry, err);
253e9be9d5eSMiklos Szeredi 	return err;
254e9be9d5eSMiklos Szeredi }
255e9be9d5eSMiklos Szeredi 
2562d343087SAl Viro static inline ssize_t ovl_do_getxattr(const struct path *path, const char *name,
257dad7017aSChristian Brauner 				      void *value, size_t size)
258d5dc7486SMiklos Szeredi {
259dad7017aSChristian Brauner 	int err, len;
260dad7017aSChristian Brauner 
261dad7017aSChristian Brauner 	WARN_ON(path->dentry->d_sb != path->mnt->mnt_sb);
262dad7017aSChristian Brauner 
2634609e1f1SChristian Brauner 	err = vfs_getxattr(mnt_idmap(path->mnt), path->dentry,
264dad7017aSChristian Brauner 			       name, value, size);
265dad7017aSChristian Brauner 	len = (value && err > 0) ? err : 0;
2665e717c6fSAmir Goldstein 
2675e717c6fSAmir Goldstein 	pr_debug("getxattr(%pd2, \"%s\", \"%*pE\", %zu, 0) = %i\n",
268dad7017aSChristian Brauner 		 path->dentry, name, min(len, 48), value, size, err);
2695e717c6fSAmir Goldstein 	return err;
270d5dc7486SMiklos Szeredi }
271d5dc7486SMiklos Szeredi 
272dad7017aSChristian Brauner static inline ssize_t ovl_getxattr_upper(struct ovl_fs *ofs,
273dad7017aSChristian Brauner 					 struct dentry *upperdentry,
274c914c0e2SAmir Goldstein 					 enum ovl_xattr ox, void *value,
275610afc0bSMiklos Szeredi 					 size_t size)
276e9be9d5eSMiklos Szeredi {
277dad7017aSChristian Brauner 	struct path upperpath = {
278dad7017aSChristian Brauner 		.dentry = upperdentry,
279dad7017aSChristian Brauner 		.mnt = ovl_upper_mnt(ofs),
280dad7017aSChristian Brauner 	};
281dad7017aSChristian Brauner 
282dad7017aSChristian Brauner 	return ovl_do_getxattr(&upperpath, ovl_xattr(ofs, ox), value, size);
283dad7017aSChristian Brauner }
284dad7017aSChristian Brauner 
285dad7017aSChristian Brauner static inline ssize_t ovl_path_getxattr(struct ovl_fs *ofs,
2862d343087SAl Viro 					 const struct path *path,
287dad7017aSChristian Brauner 					 enum ovl_xattr ox, void *value,
288dad7017aSChristian Brauner 					 size_t size)
289dad7017aSChristian Brauner {
290dad7017aSChristian Brauner 	return ovl_do_getxattr(path, ovl_xattr(ofs, ox), value, size);
291c914c0e2SAmir Goldstein }
292c914c0e2SAmir Goldstein 
293c914c0e2SAmir Goldstein static inline int ovl_do_setxattr(struct ovl_fs *ofs, struct dentry *dentry,
294c914c0e2SAmir Goldstein 				  const char *name, const void *value,
295c914c0e2SAmir Goldstein 				  size_t size, int flags)
296c914c0e2SAmir Goldstein {
2974609e1f1SChristian Brauner 	int err = vfs_setxattr(ovl_upper_mnt_idmap(ofs), dentry, name,
2986344e669SChristian Brauner 			       value, size, flags);
299c914c0e2SAmir Goldstein 
300c914c0e2SAmir Goldstein 	pr_debug("setxattr(%pd2, \"%s\", \"%*pE\", %zu, %d) = %i\n",
301c914c0e2SAmir Goldstein 		 dentry, name, min((int)size, 48), value, size, flags, err);
302e9be9d5eSMiklos Szeredi 	return err;
303e9be9d5eSMiklos Szeredi }
304e9be9d5eSMiklos Szeredi 
305c914c0e2SAmir Goldstein static inline int ovl_setxattr(struct ovl_fs *ofs, struct dentry *dentry,
306c914c0e2SAmir Goldstein 			       enum ovl_xattr ox, const void *value,
307c914c0e2SAmir Goldstein 			       size_t size)
308e9be9d5eSMiklos Szeredi {
309c914c0e2SAmir Goldstein 	return ovl_do_setxattr(ofs, dentry, ovl_xattr(ofs, ox), value, size, 0);
310c914c0e2SAmir Goldstein }
311c914c0e2SAmir Goldstein 
312c914c0e2SAmir Goldstein static inline int ovl_do_removexattr(struct ovl_fs *ofs, struct dentry *dentry,
313c914c0e2SAmir Goldstein 				     const char *name)
314c914c0e2SAmir Goldstein {
3154609e1f1SChristian Brauner 	int err = vfs_removexattr(ovl_upper_mnt_idmap(ofs), dentry, name);
316e9be9d5eSMiklos Szeredi 	pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err);
317e9be9d5eSMiklos Szeredi 	return err;
318e9be9d5eSMiklos Szeredi }
319e9be9d5eSMiklos Szeredi 
320c914c0e2SAmir Goldstein static inline int ovl_removexattr(struct ovl_fs *ofs, struct dentry *dentry,
321c914c0e2SAmir Goldstein 				  enum ovl_xattr ox)
322c914c0e2SAmir Goldstein {
323c914c0e2SAmir Goldstein 	return ovl_do_removexattr(ofs, dentry, ovl_xattr(ofs, ox));
324c914c0e2SAmir Goldstein }
325c914c0e2SAmir Goldstein 
3260e641857SChristian Brauner static inline int ovl_do_set_acl(struct ovl_fs *ofs, struct dentry *dentry,
3270e641857SChristian Brauner 				 const char *acl_name, struct posix_acl *acl)
3280e641857SChristian Brauner {
32913e83a49SChristian Brauner 	return vfs_set_acl(ovl_upper_mnt_idmap(ofs), dentry, acl_name, acl);
3300e641857SChristian Brauner }
3310e641857SChristian Brauner 
3320e641857SChristian Brauner static inline int ovl_do_remove_acl(struct ovl_fs *ofs, struct dentry *dentry,
3330e641857SChristian Brauner 				    const char *acl_name)
3340e641857SChristian Brauner {
33513e83a49SChristian Brauner 	return vfs_remove_acl(ovl_upper_mnt_idmap(ofs), dentry, acl_name);
3360e641857SChristian Brauner }
3370e641857SChristian Brauner 
338576bb263SChristian Brauner static inline int ovl_do_rename(struct ovl_fs *ofs, struct inode *olddir,
339576bb263SChristian Brauner 				struct dentry *olddentry, struct inode *newdir,
340576bb263SChristian Brauner 				struct dentry *newdentry, unsigned int flags)
341e9be9d5eSMiklos Szeredi {
342e9be9d5eSMiklos Szeredi 	int err;
3439fe61450SChristian Brauner 	struct renamedata rd = {
344abf08576SChristian Brauner 		.old_mnt_idmap	= ovl_upper_mnt_idmap(ofs),
3459fe61450SChristian Brauner 		.old_dir 	= olddir,
3469fe61450SChristian Brauner 		.old_dentry 	= olddentry,
347abf08576SChristian Brauner 		.new_mnt_idmap	= ovl_upper_mnt_idmap(ofs),
3489fe61450SChristian Brauner 		.new_dir 	= newdir,
3499fe61450SChristian Brauner 		.new_dentry 	= newdentry,
3509fe61450SChristian Brauner 		.flags 		= flags,
3519fe61450SChristian Brauner 	};
352e9be9d5eSMiklos Szeredi 
3536cf00764SAmir Goldstein 	pr_debug("rename(%pd2, %pd2, 0x%x)\n", olddentry, newdentry, flags);
3549fe61450SChristian Brauner 	err = vfs_rename(&rd);
355e9be9d5eSMiklos Szeredi 	if (err) {
3562773bf00SMiklos Szeredi 		pr_debug("...rename(%pd2, %pd2, ...) = %i\n",
357e9be9d5eSMiklos Szeredi 			 olddentry, newdentry, err);
358e9be9d5eSMiklos Szeredi 	}
359e9be9d5eSMiklos Szeredi 	return err;
360e9be9d5eSMiklos Szeredi }
361e9be9d5eSMiklos Szeredi 
362576bb263SChristian Brauner static inline int ovl_do_whiteout(struct ovl_fs *ofs,
363576bb263SChristian Brauner 				  struct inode *dir, struct dentry *dentry)
364e9be9d5eSMiklos Szeredi {
365abf08576SChristian Brauner 	int err = vfs_whiteout(ovl_upper_mnt_idmap(ofs), dir, dentry);
366e9be9d5eSMiklos Szeredi 	pr_debug("whiteout(%pd2) = %i\n", dentry, err);
367e9be9d5eSMiklos Szeredi 	return err;
368e9be9d5eSMiklos Szeredi }
369e9be9d5eSMiklos Szeredi 
3702b1a7746SMiklos Szeredi static inline struct file *ovl_do_tmpfile(struct ovl_fs *ofs,
371576bb263SChristian Brauner 					  struct dentry *dentry, umode_t mode)
372e7f52429SAmir Goldstein {
3732b1a7746SMiklos Szeredi 	struct path path = { .mnt = ovl_upper_mnt(ofs), .dentry = dentry };
374d56e0ddbSAmir Goldstein 	struct file *file = kernel_tmpfile_open(ovl_upper_mnt_idmap(ofs), &path,
375d56e0ddbSAmir Goldstein 						mode, O_LARGEFILE | O_WRONLY,
376d56e0ddbSAmir Goldstein 						current_cred());
3772b1a7746SMiklos Szeredi 	int err = PTR_ERR_OR_ZERO(file);
378e7f52429SAmir Goldstein 
379e7f52429SAmir Goldstein 	pr_debug("tmpfile(%pd2, 0%o) = %i\n", dentry, mode, err);
3802b1a7746SMiklos Szeredi 	return file;
381e7f52429SAmir Goldstein }
382e7f52429SAmir Goldstein 
38322f289ceSChristian Brauner static inline struct dentry *ovl_lookup_upper(struct ovl_fs *ofs,
38422f289ceSChristian Brauner 					      const char *name,
38522f289ceSChristian Brauner 					      struct dentry *base, int len)
38622f289ceSChristian Brauner {
3874609e1f1SChristian Brauner 	return lookup_one(ovl_upper_mnt_idmap(ofs), name, base, len);
38822f289ceSChristian Brauner }
38922f289ceSChristian Brauner 
3900c288874SVivek Goyal static inline bool ovl_open_flags_need_copy_up(int flags)
3910c288874SVivek Goyal {
3920c288874SVivek Goyal 	if (!flags)
3930c288874SVivek Goyal 		return false;
3940c288874SVivek Goyal 
3950c288874SVivek Goyal 	return ((OPEN_FMODE(flags) & FMODE_WRITE) || (flags & O_TRUNC));
3960c288874SVivek Goyal }
3970c288874SVivek Goyal 
398bbb1e54dSMiklos Szeredi /* util.c */
399bbb1e54dSMiklos Szeredi int ovl_want_write(struct dentry *dentry);
400bbb1e54dSMiklos Szeredi void ovl_drop_write(struct dentry *dentry);
401bbb1e54dSMiklos Szeredi struct dentry *ovl_workdir(struct dentry *dentry);
402bbb1e54dSMiklos Szeredi const struct cred *ovl_override_creds(struct super_block *sb);
403e487d889SAmir Goldstein int ovl_can_decode_fh(struct super_block *sb);
40402bcd157SAmir Goldstein struct dentry *ovl_indexdir(struct super_block *sb);
405f168f109SAmir Goldstein bool ovl_index_all(struct super_block *sb);
406f168f109SAmir Goldstein bool ovl_verify_lower(struct super_block *sb);
407163db0daSAmir Goldstein struct ovl_path *ovl_stack_alloc(unsigned int n);
408163db0daSAmir Goldstein void ovl_stack_cpy(struct ovl_path *dst, struct ovl_path *src, unsigned int n);
409163db0daSAmir Goldstein void ovl_stack_put(struct ovl_path *stack, unsigned int n);
410163db0daSAmir Goldstein void ovl_stack_free(struct ovl_path *stack, unsigned int n);
411bbb1e54dSMiklos Szeredi struct ovl_entry *ovl_alloc_entry(unsigned int numlower);
412163db0daSAmir Goldstein void ovl_free_entry(struct ovl_entry *oe);
413bbb1e54dSMiklos Szeredi bool ovl_dentry_remote(struct dentry *dentry);
414b07d5cc9SAmir Goldstein void ovl_dentry_update_reval(struct dentry *dentry, struct dentry *realdentry);
4150af950f5SAmir Goldstein void ovl_dentry_init_reval(struct dentry *dentry, struct dentry *upperdentry,
4160af950f5SAmir Goldstein 			   struct ovl_entry *oe);
417b07d5cc9SAmir Goldstein void ovl_dentry_init_flags(struct dentry *dentry, struct dentry *upperdentry,
4180af950f5SAmir Goldstein 			   struct ovl_entry *oe, unsigned int mask);
419bbb1e54dSMiklos Szeredi bool ovl_dentry_weird(struct dentry *dentry);
420e9be9d5eSMiklos Szeredi enum ovl_path_type ovl_path_type(struct dentry *dentry);
421e9be9d5eSMiklos Szeredi void ovl_path_upper(struct dentry *dentry, struct path *path);
422e9be9d5eSMiklos Szeredi void ovl_path_lower(struct dentry *dentry, struct path *path);
4234f93b426SVivek Goyal void ovl_path_lowerdata(struct dentry *dentry, struct path *path);
424b2dd05f1SZhihao Cheng struct inode *ovl_i_path_real(struct inode *inode, struct path *path);
425e9be9d5eSMiklos Szeredi enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path);
4261248ea4bSAmir Goldstein enum ovl_path_type ovl_path_realdata(struct dentry *dentry, struct path *path);
427e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_upper(struct dentry *dentry);
428e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_lower(struct dentry *dentry);
429647d253fSVivek Goyal struct dentry *ovl_dentry_lowerdata(struct dentry *dentry);
43042dd69aeSAmir Goldstein int ovl_dentry_set_lowerdata(struct dentry *dentry, struct ovl_path *datapath);
431ffa5723cSAmir Goldstein const struct ovl_layer *ovl_i_layer_lower(struct inode *inode);
43213464165SMiklos Szeredi const struct ovl_layer *ovl_layer_lower(struct dentry *dentry);
433e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_real(struct dentry *dentry);
4341d88f183SMiklos Szeredi struct dentry *ovl_i_dentry_upper(struct inode *inode);
43509d8b586SMiklos Szeredi struct inode *ovl_inode_upper(struct inode *inode);
43609d8b586SMiklos Szeredi struct inode *ovl_inode_lower(struct inode *inode);
4372664bd08SVivek Goyal struct inode *ovl_inode_lowerdata(struct inode *inode);
43809d8b586SMiklos Szeredi struct inode *ovl_inode_real(struct inode *inode);
4394823d49cSVivek Goyal struct inode *ovl_inode_realdata(struct inode *inode);
4402b21da92SAmir Goldstein const char *ovl_lowerdata_redirect(struct inode *inode);
4414edb83bbSMiklos Szeredi struct ovl_dir_cache *ovl_dir_cache(struct inode *inode);
4424edb83bbSMiklos Szeredi void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache);
443c62520a8SAmir Goldstein void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry);
444c62520a8SAmir Goldstein void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry);
445c62520a8SAmir Goldstein bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry);
446e9be9d5eSMiklos Szeredi bool ovl_dentry_is_opaque(struct dentry *dentry);
447c412ce49SMiklos Szeredi bool ovl_dentry_is_whiteout(struct dentry *dentry);
4485cf5b477SMiklos Szeredi void ovl_dentry_set_opaque(struct dentry *dentry);
44955acc661SMiklos Szeredi bool ovl_dentry_has_upper_alias(struct dentry *dentry);
45055acc661SMiklos Szeredi void ovl_dentry_set_upper_alias(struct dentry *dentry);
4510c288874SVivek Goyal bool ovl_dentry_needs_data_copy_up(struct dentry *dentry, int flags);
4520c288874SVivek Goyal bool ovl_dentry_needs_data_copy_up_locked(struct dentry *dentry, int flags);
4530c288874SVivek Goyal bool ovl_has_upperdata(struct inode *inode);
4540c288874SVivek Goyal void ovl_set_upperdata(struct inode *inode);
455a6c60655SMiklos Szeredi const char *ovl_dentry_get_redirect(struct dentry *dentry);
456a6c60655SMiklos Szeredi void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect);
45709d8b586SMiklos Szeredi void ovl_inode_update(struct inode *inode, struct dentry *upperdentry);
458d9854c87SMiklos Szeredi void ovl_dir_modified(struct dentry *dentry, bool impurity);
4591fa9c5c5SMiklos Szeredi u64 ovl_inode_version_get(struct inode *inode);
460bbb1e54dSMiklos Szeredi bool ovl_is_whiteout(struct dentry *dentry);
4612d343087SAl Viro struct file *ovl_path_open(const struct path *path, int flags);
4620c288874SVivek Goyal int ovl_copy_up_start(struct dentry *dentry, int flags);
46339d3d60aSAmir Goldstein void ovl_copy_up_end(struct dentry *dentry);
4640c288874SVivek Goyal bool ovl_already_copied_up(struct dentry *dentry, int flags);
4652d343087SAl Viro bool ovl_path_check_dir_xattr(struct ovl_fs *ofs, const struct path *path,
46643d193f8SMiklos Szeredi 			      enum ovl_xattr ox);
4672d343087SAl Viro bool ovl_path_check_origin_xattr(struct ovl_fs *ofs, const struct path *path);
468dad7017aSChristian Brauner 
469dad7017aSChristian Brauner static inline bool ovl_check_origin_xattr(struct ovl_fs *ofs,
470dad7017aSChristian Brauner 					  struct dentry *upperdentry)
471dad7017aSChristian Brauner {
472dad7017aSChristian Brauner 	struct path upperpath = {
473dad7017aSChristian Brauner 		.dentry = upperdentry,
474dad7017aSChristian Brauner 		.mnt = ovl_upper_mnt(ofs),
475dad7017aSChristian Brauner 	};
476dad7017aSChristian Brauner 	return ovl_path_check_origin_xattr(ofs, &upperpath);
477dad7017aSChristian Brauner }
478dad7017aSChristian Brauner 
479a0c236b1SAmir Goldstein int ovl_check_setxattr(struct ovl_fs *ofs, struct dentry *upperdentry,
48043d193f8SMiklos Szeredi 		       enum ovl_xattr ox, const void *value, size_t size,
481f3a15685SAmir Goldstein 		       int xerr);
482f3a15685SAmir Goldstein int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry);
483ad0af710SAmir Goldstein bool ovl_inuse_trylock(struct dentry *dentry);
484ad0af710SAmir Goldstein void ovl_inuse_unlock(struct dentry *dentry);
485146d62e5SAmir Goldstein bool ovl_is_inuse(struct dentry *dentry);
48624b33ee1SAmir Goldstein bool ovl_need_index(struct dentry *dentry);
4870e32992fSAmir Goldstein int ovl_nlink_start(struct dentry *dentry);
4880e32992fSAmir Goldstein void ovl_nlink_end(struct dentry *dentry);
4895820dc08SAmir Goldstein int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir);
490bf070890SAlexander Larsson int ovl_check_metacopy_xattr(struct ovl_fs *ofs, const struct path *path,
491bf070890SAlexander Larsson 			     struct ovl_metacopy *data);
492184996e9SAlexander Larsson int ovl_set_metacopy_xattr(struct ovl_fs *ofs, struct dentry *d,
493184996e9SAlexander Larsson 			   struct ovl_metacopy *metacopy);
49467d756c2SVivek Goyal bool ovl_is_metacopy_dentry(struct dentry *dentry);
4952d343087SAl Viro char *ovl_get_redirect_xattr(struct ovl_fs *ofs, const struct path *path, int padding);
4960c71faf5SAlexander Larsson int ovl_ensure_verity_loaded(struct path *path);
497184996e9SAlexander Larsson int ovl_get_verity_xattr(struct ovl_fs *ofs, const struct path *path,
498184996e9SAlexander Larsson 			 u8 *digest_buf, int *buf_length);
499184996e9SAlexander Larsson int ovl_validate_verity(struct ovl_fs *ofs,
500184996e9SAlexander Larsson 			struct path *metapath,
501184996e9SAlexander Larsson 			struct path *datapath);
5020c71faf5SAlexander Larsson int ovl_get_verity_digest(struct ovl_fs *ofs, struct path *src,
5030c71faf5SAlexander Larsson 			  struct ovl_metacopy *metacopy);
504335d3fc5SSargun Dhillon int ovl_sync_status(struct ovl_fs *ofs);
505f3a15685SAmir Goldstein 
50665cd913eSAmir Goldstein static inline void ovl_set_flag(unsigned long flag, struct inode *inode)
50765cd913eSAmir Goldstein {
50865cd913eSAmir Goldstein 	set_bit(flag, &OVL_I(inode)->flags);
50965cd913eSAmir Goldstein }
51065cd913eSAmir Goldstein 
51165cd913eSAmir Goldstein static inline void ovl_clear_flag(unsigned long flag, struct inode *inode)
51265cd913eSAmir Goldstein {
51365cd913eSAmir Goldstein 	clear_bit(flag, &OVL_I(inode)->flags);
51465cd913eSAmir Goldstein }
51565cd913eSAmir Goldstein 
51665cd913eSAmir Goldstein static inline bool ovl_test_flag(unsigned long flag, struct inode *inode)
51765cd913eSAmir Goldstein {
51865cd913eSAmir Goldstein 	return test_bit(flag, &OVL_I(inode)->flags);
51965cd913eSAmir Goldstein }
52065cd913eSAmir Goldstein 
521610afc0bSMiklos Szeredi static inline bool ovl_is_impuredir(struct super_block *sb,
522dad7017aSChristian Brauner 				    struct dentry *upperdentry)
523f3a15685SAmir Goldstein {
524dad7017aSChristian Brauner 	struct ovl_fs *ofs = OVL_FS(sb);
525dad7017aSChristian Brauner 	struct path upperpath = {
526dad7017aSChristian Brauner 		.dentry = upperdentry,
527dad7017aSChristian Brauner 		.mnt = ovl_upper_mnt(ofs),
528dad7017aSChristian Brauner 	};
529dad7017aSChristian Brauner 
530dad7017aSChristian Brauner 	return ovl_path_check_dir_xattr(ofs, &upperpath, OVL_XATTR_IMPURE);
531f3a15685SAmir Goldstein }
532f3a15685SAmir Goldstein 
533af5f2396SAmir Goldstein static inline bool ovl_redirect_follow(struct ovl_fs *ofs)
534af5f2396SAmir Goldstein {
535af5f2396SAmir Goldstein 	return ofs->config.redirect_mode != OVL_REDIRECT_NOFOLLOW;
536af5f2396SAmir Goldstein }
537af5f2396SAmir Goldstein 
538af5f2396SAmir Goldstein static inline bool ovl_redirect_dir(struct ovl_fs *ofs)
539af5f2396SAmir Goldstein {
540af5f2396SAmir Goldstein 	return ofs->config.redirect_mode == OVL_REDIRECT_ON;
541af5f2396SAmir Goldstein }
542af5f2396SAmir Goldstein 
543*b0504bfeSAmir Goldstein static inline bool ovl_origin_uuid(struct ovl_fs *ofs)
544*b0504bfeSAmir Goldstein {
545*b0504bfeSAmir Goldstein 	return ofs->config.uuid != OVL_UUID_OFF;
546*b0504bfeSAmir Goldstein }
547*b0504bfeSAmir Goldstein 
548*b0504bfeSAmir Goldstein static inline bool ovl_has_fsid(struct ovl_fs *ofs)
549*b0504bfeSAmir Goldstein {
550*b0504bfeSAmir Goldstein 	return ofs->config.uuid == OVL_UUID_ON;
551*b0504bfeSAmir Goldstein }
552*b0504bfeSAmir Goldstein 
553926e94d7SAmir Goldstein /*
554926e94d7SAmir Goldstein  * With xino=auto, we do best effort to keep all inodes on same st_dev and
555926e94d7SAmir Goldstein  * d_ino consistent with st_ino.
556926e94d7SAmir Goldstein  * With xino=on, we do the same effort but we warn if we failed.
557926e94d7SAmir Goldstein  */
558dcb399deSAmir Goldstein static inline bool ovl_xino_warn(struct ovl_fs *ofs)
559926e94d7SAmir Goldstein {
560dcb399deSAmir Goldstein 	return ofs->config.xino == OVL_XINO_ON;
561926e94d7SAmir Goldstein }
562926e94d7SAmir Goldstein 
563af5f2396SAmir Goldstein /*
564af5f2396SAmir Goldstein  * To avoid regressions in existing setups with overlay lower offline changes,
565af5f2396SAmir Goldstein  * we allow lower changes only if none of the new features are used.
566af5f2396SAmir Goldstein  */
567af5f2396SAmir Goldstein static inline bool ovl_allow_offline_changes(struct ovl_fs *ofs)
568af5f2396SAmir Goldstein {
569af5f2396SAmir Goldstein 	return (!ofs->config.index && !ofs->config.metacopy &&
570af5f2396SAmir Goldstein 		!ovl_redirect_dir(ofs) && !ovl_xino_warn(ofs));
5710f831ec8SAmir Goldstein }
572e487d889SAmir Goldstein 
573e487d889SAmir Goldstein /* All layers on same fs? */
574dcb399deSAmir Goldstein static inline bool ovl_same_fs(struct ovl_fs *ofs)
575bbb1e54dSMiklos Szeredi {
576dcb399deSAmir Goldstein 	return ofs->xino_mode == 0;
5778a22efa1SAmir Goldstein }
5788a22efa1SAmir Goldstein 
5798a22efa1SAmir Goldstein /* All overlay inodes have same st_dev? */
580dcb399deSAmir Goldstein static inline bool ovl_same_dev(struct ovl_fs *ofs)
5811e92e307SAmir Goldstein {
582dcb399deSAmir Goldstein 	return ofs->xino_mode >= 0;
5831e92e307SAmir Goldstein }
5841e92e307SAmir Goldstein 
585dcb399deSAmir Goldstein static inline unsigned int ovl_xino_bits(struct ovl_fs *ofs)
5861e92e307SAmir Goldstein {
587dcb399deSAmir Goldstein 	return ovl_same_dev(ofs) ? ofs->xino_mode : 0;
588f941866fSAmir Goldstein }
58905122443SAmir Goldstein 
590531d3040SAmir Goldstein static inline void ovl_inode_lock(struct inode *inode)
591531d3040SAmir Goldstein {
592531d3040SAmir Goldstein 	mutex_lock(&OVL_I(inode)->lock);
593531d3040SAmir Goldstein }
594531d3040SAmir Goldstein 
595531d3040SAmir Goldstein static inline int ovl_inode_lock_interruptible(struct inode *inode)
5961e92e307SAmir Goldstein {
5971e92e307SAmir Goldstein 	return mutex_lock_interruptible(&OVL_I(inode)->lock);
5981e92e307SAmir Goldstein }
5991e92e307SAmir Goldstein 
6001e92e307SAmir Goldstein static inline void ovl_inode_unlock(struct inode *inode)
6011e92e307SAmir Goldstein {
6021e92e307SAmir Goldstein 	mutex_unlock(&OVL_I(inode)->lock);
6031e92e307SAmir Goldstein }
6041e92e307SAmir Goldstein 
605e9be9d5eSMiklos Szeredi 
606bbb1e54dSMiklos Szeredi /* namei.c */
607cbe7fba8SAmir Goldstein int ovl_check_fb_len(struct ovl_fb *fb, int fb_len);
608cbe7fba8SAmir Goldstein 
609cbe7fba8SAmir Goldstein static inline int ovl_check_fh_len(struct ovl_fh *fh, int fh_len)
610cbe7fba8SAmir Goldstein {
611522f6e6cSAmir Goldstein 	if (fh_len < sizeof(struct ovl_fh))
612522f6e6cSAmir Goldstein 		return -EINVAL;
613522f6e6cSAmir Goldstein 
614cbe7fba8SAmir Goldstein 	return ovl_check_fb_len(&fh->fb, fh_len - OVL_FH_WIRE_OFFSET);
615cbe7fba8SAmir Goldstein }
616cbe7fba8SAmir Goldstein 
6171cdb0cb6SPavel Tikhomirov struct dentry *ovl_decode_real_fh(struct ovl_fs *ofs, struct ovl_fh *fh,
6181cdb0cb6SPavel Tikhomirov 				  struct vfsmount *mnt, bool connected);
61905122443SAmir Goldstein int ovl_check_origin_fh(struct ovl_fs *ofs, struct ovl_fh *fh, bool connected,
6201eff1a1dSAmir Goldstein 			struct dentry *upperdentry, struct ovl_path **stackp);
621610afc0bSMiklos Szeredi int ovl_verify_set_fh(struct ovl_fs *ofs, struct dentry *dentry,
62243d193f8SMiklos Szeredi 		      enum ovl_xattr ox, struct dentry *real, bool is_upper,
623610afc0bSMiklos Szeredi 		      bool set);
6248ea28765SAmir Goldstein struct dentry *ovl_index_upper(struct ovl_fs *ofs, struct dentry *index,
6258ea28765SAmir Goldstein 			       bool connected);
626415543d5SAmir Goldstein int ovl_verify_index(struct ovl_fs *ofs, struct dentry *index);
6271cdb0cb6SPavel Tikhomirov int ovl_get_index_name(struct ovl_fs *ofs, struct dentry *origin,
6281cdb0cb6SPavel Tikhomirov 		       struct qstr *name);
62991ffe7beSAmir Goldstein struct dentry *ovl_get_index_fh(struct ovl_fs *ofs, struct ovl_fh *fh);
63006170154SAmir Goldstein struct dentry *ovl_lookup_index(struct ovl_fs *ofs, struct dentry *upper,
63106170154SAmir Goldstein 				struct dentry *origin, bool verify);
632bbb1e54dSMiklos Szeredi int ovl_path_next(int idx, struct dentry *dentry, struct path *path);
633184996e9SAlexander Larsson int ovl_verify_lowerdata(struct dentry *dentry);
6341eff1a1dSAmir Goldstein struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
6351eff1a1dSAmir Goldstein 			  unsigned int flags);
636bbb1e54dSMiklos Szeredi bool ovl_lower_positive(struct dentry *dentry);
637e9be9d5eSMiklos Szeredi 
638610afc0bSMiklos Szeredi static inline int ovl_verify_origin(struct ovl_fs *ofs, struct dentry *upper,
63905122443SAmir Goldstein 				    struct dentry *origin, bool set)
64005122443SAmir Goldstein {
641610afc0bSMiklos Szeredi 	return ovl_verify_set_fh(ofs, upper, OVL_XATTR_ORIGIN, origin,
642610afc0bSMiklos Szeredi 				 false, set);
64305122443SAmir Goldstein }
64405122443SAmir Goldstein 
645610afc0bSMiklos Szeredi static inline int ovl_verify_upper(struct ovl_fs *ofs, struct dentry *index,
646ad1d615cSAmir Goldstein 				   struct dentry *upper, bool set)
647ad1d615cSAmir Goldstein {
648610afc0bSMiklos Szeredi 	return ovl_verify_set_fh(ofs, index, OVL_XATTR_UPPER, upper, true, set);
649ad1d615cSAmir Goldstein }
650ad1d615cSAmir Goldstein 
651e9be9d5eSMiklos Szeredi /* readdir.c */
652e9be9d5eSMiklos Szeredi extern const struct file_operations ovl_dir_operations;
65361536bedSAmir Goldstein struct file *ovl_dir_real_file(const struct file *file, bool want_upper);
654e9be9d5eSMiklos Szeredi int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list);
655576bb263SChristian Brauner void ovl_cleanup_whiteouts(struct ovl_fs *ofs, struct dentry *upper,
656576bb263SChristian Brauner 			   struct list_head *list);
657e9be9d5eSMiklos Szeredi void ovl_cache_free(struct list_head *list);
6584edb83bbSMiklos Szeredi void ovl_dir_cache_free(struct inode *inode);
6592d343087SAl Viro int ovl_check_d_type_supported(const struct path *realpath);
660576bb263SChristian Brauner int ovl_workdir_cleanup(struct ovl_fs *ofs, struct inode *dir,
661576bb263SChristian Brauner 			struct vfsmount *mnt, struct dentry *dentry, int level);
6621eff1a1dSAmir Goldstein int ovl_indexdir_cleanup(struct ovl_fs *ofs);
663e9be9d5eSMiklos Szeredi 
66465cd913eSAmir Goldstein /*
66565cd913eSAmir Goldstein  * Can we iterate real dir directly?
66665cd913eSAmir Goldstein  *
66765cd913eSAmir Goldstein  * Non-merge dir may contain whiteouts from a time it was a merge upper, before
66865cd913eSAmir Goldstein  * lower dir was removed under it and possibly before it was rotated from upper
66965cd913eSAmir Goldstein  * to lower layer.
67065cd913eSAmir Goldstein  */
6711fa9c5c5SMiklos Szeredi static inline bool ovl_dir_is_real(struct inode *dir)
67265cd913eSAmir Goldstein {
6731fa9c5c5SMiklos Szeredi 	return !ovl_test_flag(OVL_WHITEOUTS, dir);
67465cd913eSAmir Goldstein }
67565cd913eSAmir Goldstein 
676e9be9d5eSMiklos Szeredi /* inode.c */
6775f8415d6SAmir Goldstein int ovl_set_nlink_upper(struct dentry *dentry);
6785f8415d6SAmir Goldstein int ovl_set_nlink_lower(struct dentry *dentry);
679610afc0bSMiklos Szeredi unsigned int ovl_get_nlink(struct ovl_fs *ofs, struct dentry *lowerdentry,
680caf70cb2SAmir Goldstein 			   struct dentry *upperdentry,
681caf70cb2SAmir Goldstein 			   unsigned int fallback);
682c1632a0fSChristian Brauner int ovl_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
683549c7297SChristian Brauner 		struct iattr *attr);
684b74d24f7SChristian Brauner int ovl_getattr(struct mnt_idmap *idmap, const struct path *path,
685549c7297SChristian Brauner 		struct kstat *stat, u32 request_mask, unsigned int flags);
6864609e1f1SChristian Brauner int ovl_permission(struct mnt_idmap *idmap, struct inode *inode,
687549c7297SChristian Brauner 		   int mask);
6881d88f183SMiklos Szeredi int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name,
6891d88f183SMiklos Szeredi 		  const void *value, size_t size, int flags);
6901d88f183SMiklos Szeredi int ovl_xattr_get(struct dentry *dentry, struct inode *inode, const char *name,
6910eb45fc3SAndreas Gruenbacher 		  void *value, size_t size);
692e9be9d5eSMiklos Szeredi ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size);
693ded53656SYang Xu 
694ded53656SYang Xu #ifdef CONFIG_FS_POSIX_ACL
69577435322SChristian Brauner struct posix_acl *do_ovl_get_acl(struct mnt_idmap *idmap,
6966c0a8bfbSChristian Brauner 				 struct inode *inode, int type,
6976c0a8bfbSChristian Brauner 				 bool rcu, bool noperm);
6986c0a8bfbSChristian Brauner static inline struct posix_acl *ovl_get_inode_acl(struct inode *inode, int type,
6996c0a8bfbSChristian Brauner 						  bool rcu)
7006c0a8bfbSChristian Brauner {
70177435322SChristian Brauner 	return do_ovl_get_acl(&nop_mnt_idmap, inode, type, rcu, true);
7026c0a8bfbSChristian Brauner }
70377435322SChristian Brauner static inline struct posix_acl *ovl_get_acl(struct mnt_idmap *idmap,
7046c0a8bfbSChristian Brauner 					    struct dentry *dentry, int type)
7056c0a8bfbSChristian Brauner {
70677435322SChristian Brauner 	return do_ovl_get_acl(idmap, d_inode(dentry), type, false, false);
7076c0a8bfbSChristian Brauner }
70813e83a49SChristian Brauner int ovl_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
7090e641857SChristian Brauner 		struct posix_acl *acl, int type);
71031acceb9SChristian Brauner struct posix_acl *ovl_get_acl_path(const struct path *path,
71131acceb9SChristian Brauner 				   const char *acl_name, bool noperm);
712ded53656SYang Xu #else
7136c0a8bfbSChristian Brauner #define ovl_get_inode_acl	NULL
714ded53656SYang Xu #define ovl_get_acl		NULL
7150e641857SChristian Brauner #define ovl_set_acl		NULL
71631acceb9SChristian Brauner static inline struct posix_acl *ovl_get_acl_path(const struct path *path,
71731acceb9SChristian Brauner 						 const char *acl_name,
71831acceb9SChristian Brauner 						 bool noperm)
71931acceb9SChristian Brauner {
72031acceb9SChristian Brauner 	return NULL;
72131acceb9SChristian Brauner }
722ded53656SYang Xu #endif
723ded53656SYang Xu 
72495582b00SDeepa Dinamani int ovl_update_time(struct inode *inode, struct timespec64 *ts, int flags);
725610afc0bSMiklos Szeredi bool ovl_is_private_xattr(struct super_block *sb, const char *name);
726e9be9d5eSMiklos Szeredi 
727ac6a52ebSVivek Goyal struct ovl_inode_params {
72801b39dccSAmir Goldstein 	struct inode *newinode;
729ac6a52ebSVivek Goyal 	struct dentry *upperdentry;
7300af950f5SAmir Goldstein 	struct ovl_entry *oe;
73174c6e384SMiklos Szeredi 	bool index;
7329cec54c8SVivek Goyal 	char *redirect;
7332b21da92SAmir Goldstein 	char *lowerdata_redirect;
734ac6a52ebSVivek Goyal };
73562c832edSAmir Goldstein void ovl_inode_init(struct inode *inode, struct ovl_inode_params *oip,
73662c832edSAmir Goldstein 		    unsigned long ino, int fsid);
737ca4c8a3aSMiklos Szeredi struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev);
7384b91c30aSAmir Goldstein struct inode *ovl_lookup_inode(struct super_block *sb, struct dentry *real,
7394b91c30aSAmir Goldstein 			       bool is_upper);
740146d62e5SAmir Goldstein bool ovl_lookup_trap_inode(struct super_block *sb, struct dentry *dir);
741146d62e5SAmir Goldstein struct inode *ovl_get_trap_inode(struct super_block *sb, struct dentry *dir);
742ac6a52ebSVivek Goyal struct inode *ovl_get_inode(struct super_block *sb,
743ac6a52ebSVivek Goyal 			    struct ovl_inode_params *oip);
7442878dffcSChristian Brauner void ovl_copyattr(struct inode *to);
745e9be9d5eSMiklos Szeredi 
74672db8211SAmir Goldstein /* vfs inode flags copied from real to ovl inode */
74772db8211SAmir Goldstein #define OVL_COPY_I_FLAGS_MASK	(S_SYNC | S_NOATIME | S_APPEND | S_IMMUTABLE)
748096a218aSAmir Goldstein /* vfs inode flags read from overlay.protattr xattr to ovl inode */
749096a218aSAmir Goldstein #define OVL_PROT_I_FLAGS_MASK	(S_APPEND | S_IMMUTABLE)
75072db8211SAmir Goldstein 
75172db8211SAmir Goldstein /*
75272db8211SAmir Goldstein  * fileattr flags copied from lower to upper inode on copy up.
753096a218aSAmir Goldstein  * We cannot copy up immutable/append-only flags, because that would prevent
754096a218aSAmir Goldstein  * linking temp inode to upper dir, so we store them in xattr instead.
75572db8211SAmir Goldstein  */
75672db8211SAmir Goldstein #define OVL_COPY_FS_FLAGS_MASK	(FS_SYNC_FL | FS_NOATIME_FL)
75772db8211SAmir Goldstein #define OVL_COPY_FSX_FLAGS_MASK	(FS_XFLAG_SYNC | FS_XFLAG_NOATIME)
758096a218aSAmir Goldstein #define OVL_PROT_FS_FLAGS_MASK  (FS_APPEND_FL | FS_IMMUTABLE_FL)
759096a218aSAmir Goldstein #define OVL_PROT_FSX_FLAGS_MASK (FS_XFLAG_APPEND | FS_XFLAG_IMMUTABLE)
760096a218aSAmir Goldstein 
761096a218aSAmir Goldstein void ovl_check_protattr(struct inode *inode, struct dentry *upper);
762096a218aSAmir Goldstein int ovl_set_protattr(struct inode *inode, struct dentry *upper,
763096a218aSAmir Goldstein 		      struct fileattr *fa);
76472db8211SAmir Goldstein 
7654f357295SMiklos Szeredi static inline void ovl_copyflags(struct inode *from, struct inode *to)
7664f357295SMiklos Szeredi {
76772db8211SAmir Goldstein 	unsigned int mask = OVL_COPY_I_FLAGS_MASK;
7684f357295SMiklos Szeredi 
7694f357295SMiklos Szeredi 	inode_set_flags(to, from->i_flags & mask, mask);
7704f357295SMiklos Szeredi }
7714f357295SMiklos Szeredi 
772e9be9d5eSMiklos Szeredi /* dir.c */
773e9be9d5eSMiklos Szeredi extern const struct inode_operations ovl_dir_inode_operations;
774c21c839bSChengguang Xu int ovl_cleanup_and_whiteout(struct ovl_fs *ofs, struct inode *dir,
775e7dd0e71SAmir Goldstein 			     struct dentry *dentry);
776471ec5dcSAmir Goldstein struct ovl_cattr {
77732a3d848SAl Viro 	dev_t rdev;
77832a3d848SAl Viro 	umode_t mode;
77932a3d848SAl Viro 	const char *link;
780471ec5dcSAmir Goldstein 	struct dentry *hardlink;
78132a3d848SAl Viro };
782471ec5dcSAmir Goldstein 
783471ec5dcSAmir Goldstein #define OVL_CATTR(m) (&(struct ovl_cattr) { .mode = (m) })
784471ec5dcSAmir Goldstein 
785576bb263SChristian Brauner int ovl_mkdir_real(struct ovl_fs *ofs, struct inode *dir,
786576bb263SChristian Brauner 		   struct dentry **newdentry, umode_t mode);
787576bb263SChristian Brauner struct dentry *ovl_create_real(struct ovl_fs *ofs,
788576bb263SChristian Brauner 			       struct inode *dir, struct dentry *newdentry,
789471ec5dcSAmir Goldstein 			       struct ovl_cattr *attr);
790576bb263SChristian Brauner int ovl_cleanup(struct ovl_fs *ofs, struct inode *dir, struct dentry *dentry);
791576bb263SChristian Brauner struct dentry *ovl_lookup_temp(struct ovl_fs *ofs, struct dentry *workdir);
792576bb263SChristian Brauner struct dentry *ovl_create_temp(struct ovl_fs *ofs, struct dentry *workdir,
793576bb263SChristian Brauner 			       struct ovl_cattr *attr);
794e9be9d5eSMiklos Szeredi 
795d1d04ef8SMiklos Szeredi /* file.c */
796d1d04ef8SMiklos Szeredi extern const struct file_operations ovl_file_operations;
7972406a307SJiufei Xue int __init ovl_aio_request_cache_init(void);
7982406a307SJiufei Xue void ovl_aio_request_cache_destroy(void);
7992d343087SAl Viro int ovl_real_fileattr_get(const struct path *realpath, struct fileattr *fa);
8002d343087SAl Viro int ovl_real_fileattr_set(const struct path *realpath, struct fileattr *fa);
80166dbfabfSMiklos Szeredi int ovl_fileattr_get(struct dentry *dentry, struct fileattr *fa);
8028782a9aeSChristian Brauner int ovl_fileattr_set(struct mnt_idmap *idmap,
80366dbfabfSMiklos Szeredi 		     struct dentry *dentry, struct fileattr *fa);
804d1d04ef8SMiklos Szeredi 
805e9be9d5eSMiklos Szeredi /* copy_up.c */
806e9be9d5eSMiklos Szeredi int ovl_copy_up(struct dentry *dentry);
807d1e6f6a9SVivek Goyal int ovl_copy_up_with_data(struct dentry *dentry);
8083428030dSAmir Goldstein int ovl_maybe_copy_up(struct dentry *dentry, int flags);
8092d343087SAl Viro int ovl_copy_xattr(struct super_block *sb, const struct path *path, struct dentry *new);
8105272eaf3SChristian Brauner int ovl_set_attr(struct ovl_fs *ofs, struct dentry *upper, struct kstat *stat);
8111cdb0cb6SPavel Tikhomirov struct ovl_fh *ovl_encode_real_fh(struct ovl_fs *ofs, struct dentry *real,
8121cdb0cb6SPavel Tikhomirov 				  bool is_upper);
813a0c236b1SAmir Goldstein int ovl_set_origin(struct ovl_fs *ofs, struct dentry *lower,
814a0c236b1SAmir Goldstein 		   struct dentry *upper);
8158ed5eec9SAmir Goldstein 
8168ed5eec9SAmir Goldstein /* export.c */
8178ed5eec9SAmir Goldstein extern const struct export_operations ovl_export_operations;
81816aac5adSAmir Goldstein extern const struct export_operations ovl_export_fid_operations;
8197fb7998bSChristian Brauner 
8207fb7998bSChristian Brauner /* super.c */
8217fb7998bSChristian Brauner int ovl_fill_super(struct super_block *sb, struct fs_context *fc);
8227fb7998bSChristian Brauner 
8237fb7998bSChristian Brauner /* Will this overlay be forced to mount/remount ro? */
8247fb7998bSChristian Brauner static inline bool ovl_force_readonly(struct ovl_fs *ofs)
8257fb7998bSChristian Brauner {
8267fb7998bSChristian Brauner 	return (!ovl_upper_mnt(ofs) || !ofs->workdir);
8277fb7998bSChristian Brauner }
828