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> 1022f289ceSChristian Brauner #include <linux/namei.h> 110e641857SChristian Brauner #include <linux/posix_acl.h> 120e641857SChristian Brauner #include <linux/posix_acl_xattr.h> 13ee023c30SAmir Goldstein #include "ovl_entry.h" 14e9be9d5eSMiklos Szeredi 151bd0a3aeSlijiazi #undef pr_fmt 161bd0a3aeSlijiazi #define pr_fmt(fmt) "overlayfs: " fmt 171bd0a3aeSlijiazi 18e9be9d5eSMiklos Szeredi enum ovl_path_type { 1938e813dbSMiklos Szeredi __OVL_PATH_UPPER = (1 << 0), 2038e813dbSMiklos Szeredi __OVL_PATH_MERGE = (1 << 1), 2159548503SAmir Goldstein __OVL_PATH_ORIGIN = (1 << 2), 22e9be9d5eSMiklos Szeredi }; 23e9be9d5eSMiklos Szeredi 241afaba1eSMiklos Szeredi #define OVL_TYPE_UPPER(type) ((type) & __OVL_PATH_UPPER) 251afaba1eSMiklos Szeredi #define OVL_TYPE_MERGE(type) ((type) & __OVL_PATH_MERGE) 2659548503SAmir Goldstein #define OVL_TYPE_ORIGIN(type) ((type) & __OVL_PATH_ORIGIN) 27d837a49bSMiklos Szeredi 282d2f2d73SMiklos Szeredi #define OVL_XATTR_NAMESPACE "overlay." 292d2f2d73SMiklos Szeredi #define OVL_XATTR_TRUSTED_PREFIX XATTR_TRUSTED_PREFIX OVL_XATTR_NAMESPACE 302d2f2d73SMiklos Szeredi #define OVL_XATTR_USER_PREFIX XATTR_USER_PREFIX OVL_XATTR_NAMESPACE 3143d193f8SMiklos Szeredi 3243d193f8SMiklos Szeredi enum ovl_xattr { 3343d193f8SMiklos Szeredi OVL_XATTR_OPAQUE, 3443d193f8SMiklos Szeredi OVL_XATTR_REDIRECT, 3543d193f8SMiklos Szeredi OVL_XATTR_ORIGIN, 3643d193f8SMiklos Szeredi OVL_XATTR_IMPURE, 3743d193f8SMiklos Szeredi OVL_XATTR_NLINK, 3843d193f8SMiklos Szeredi OVL_XATTR_UPPER, 3943d193f8SMiklos Szeredi OVL_XATTR_METACOPY, 40096a218aSAmir Goldstein OVL_XATTR_PROTATTR, 4143d193f8SMiklos Szeredi }; 423a1e819bSAmir Goldstein 43c62520a8SAmir Goldstein enum ovl_inode_flag { 44b79e05aaSAmir Goldstein /* Pure upper dir that may contain non pure upper entries */ 4513c72075SMiklos Szeredi OVL_IMPURE, 46b79e05aaSAmir Goldstein /* Non-merge dir that may contain whiteout entries */ 47b79e05aaSAmir Goldstein OVL_WHITEOUTS, 48359f392cSAmir Goldstein OVL_INDEX, 490c288874SVivek Goyal OVL_UPPERDATA, 50a00c2d59SVivek Goyal /* Inode number will remain constant over copy up. */ 51a00c2d59SVivek Goyal OVL_CONST_INO, 5213c72075SMiklos Szeredi }; 5313c72075SMiklos Szeredi 54c62520a8SAmir Goldstein enum ovl_entry_flag { 55c62520a8SAmir Goldstein OVL_E_UPPER_ALIAS, 56c62520a8SAmir Goldstein OVL_E_OPAQUE, 572ca3c148SAmir Goldstein OVL_E_CONNECTED, 58c62520a8SAmir Goldstein }; 59c62520a8SAmir Goldstein 60926e94d7SAmir Goldstein enum { 61*af5f2396SAmir Goldstein OVL_REDIRECT_OFF, /* "off" mode is never used. In effect */ 62*af5f2396SAmir Goldstein OVL_REDIRECT_FOLLOW, /* ...it translates to either "follow" */ 63*af5f2396SAmir Goldstein OVL_REDIRECT_NOFOLLOW, /* ...or "nofollow". */ 64*af5f2396SAmir Goldstein OVL_REDIRECT_ON, 65*af5f2396SAmir Goldstein }; 66*af5f2396SAmir Goldstein 67*af5f2396SAmir Goldstein enum { 68926e94d7SAmir Goldstein OVL_XINO_OFF, 69926e94d7SAmir Goldstein OVL_XINO_AUTO, 70926e94d7SAmir Goldstein OVL_XINO_ON, 71926e94d7SAmir Goldstein }; 72926e94d7SAmir Goldstein 733a1e819bSAmir Goldstein /* 743a1e819bSAmir Goldstein * The tuple (fh,uuid) is a universal unique identifier for a copy up origin, 753a1e819bSAmir Goldstein * where: 763a1e819bSAmir Goldstein * origin.fh - exported file handle of the lower file 773a1e819bSAmir Goldstein * origin.uuid - uuid of the lower filesystem 783a1e819bSAmir Goldstein */ 793a1e819bSAmir Goldstein #define OVL_FH_VERSION 0 803a1e819bSAmir Goldstein #define OVL_FH_MAGIC 0xfb 813a1e819bSAmir Goldstein 823a1e819bSAmir Goldstein /* CPU byte order required for fid decoding: */ 833a1e819bSAmir Goldstein #define OVL_FH_FLAG_BIG_ENDIAN (1 << 0) 843a1e819bSAmir Goldstein #define OVL_FH_FLAG_ANY_ENDIAN (1 << 1) 8554fb347eSAmir Goldstein /* Is the real inode encoded in fid an upper inode? */ 8654fb347eSAmir Goldstein #define OVL_FH_FLAG_PATH_UPPER (1 << 2) 873a1e819bSAmir Goldstein 88961af647SAmir Goldstein #define OVL_FH_FLAG_ALL (OVL_FH_FLAG_BIG_ENDIAN | OVL_FH_FLAG_ANY_ENDIAN | \ 89961af647SAmir Goldstein OVL_FH_FLAG_PATH_UPPER) 903a1e819bSAmir Goldstein 913a1e819bSAmir Goldstein #if defined(__LITTLE_ENDIAN) 923a1e819bSAmir Goldstein #define OVL_FH_FLAG_CPU_ENDIAN 0 933a1e819bSAmir Goldstein #elif defined(__BIG_ENDIAN) 943a1e819bSAmir Goldstein #define OVL_FH_FLAG_CPU_ENDIAN OVL_FH_FLAG_BIG_ENDIAN 953a1e819bSAmir Goldstein #else 963a1e819bSAmir Goldstein #error Endianness not defined 973a1e819bSAmir Goldstein #endif 983a1e819bSAmir Goldstein 99cbe7fba8SAmir Goldstein /* The type used to be returned by overlay exportfs for misaligned fid */ 100cbe7fba8SAmir Goldstein #define OVL_FILEID_V0 0xfb 101cbe7fba8SAmir Goldstein /* The type returned by overlay exportfs for 32bit aligned fid */ 102cbe7fba8SAmir Goldstein #define OVL_FILEID_V1 0xf8 1038ed5eec9SAmir Goldstein 104cbe7fba8SAmir Goldstein /* On-disk format for "origin" file handle */ 105cbe7fba8SAmir Goldstein struct ovl_fb { 1063a1e819bSAmir Goldstein u8 version; /* 0 */ 1073a1e819bSAmir Goldstein u8 magic; /* 0xfb */ 1083a1e819bSAmir Goldstein u8 len; /* size of this header + size of fid */ 1093a1e819bSAmir Goldstein u8 flags; /* OVL_FH_FLAG_* */ 1103a1e819bSAmir Goldstein u8 type; /* fid_type of fid */ 11101633fd2SChristoph Hellwig uuid_t uuid; /* uuid of filesystem */ 1120efbe7c4SGustavo A. R. Silva u32 fid[]; /* file identifier should be 32bit aligned in-memory */ 1133a1e819bSAmir Goldstein } __packed; 114e9be9d5eSMiklos Szeredi 115cbe7fba8SAmir Goldstein /* In-memory and on-wire format for overlay file handle */ 116cbe7fba8SAmir Goldstein struct ovl_fh { 117cbe7fba8SAmir Goldstein u8 padding[3]; /* make sure fb.fid is 32bit aligned */ 118cbe7fba8SAmir Goldstein union { 119cbe7fba8SAmir Goldstein struct ovl_fb fb; 120cf8aa9bfSKees Cook DECLARE_FLEX_ARRAY(u8, buf); 121cbe7fba8SAmir Goldstein }; 122cbe7fba8SAmir Goldstein } __packed; 123cbe7fba8SAmir Goldstein 124cbe7fba8SAmir Goldstein #define OVL_FH_WIRE_OFFSET offsetof(struct ovl_fh, fb) 125cbe7fba8SAmir Goldstein #define OVL_FH_LEN(fh) (OVL_FH_WIRE_OFFSET + (fh)->fb.len) 126cbe7fba8SAmir Goldstein #define OVL_FH_FID_OFFSET (OVL_FH_WIRE_OFFSET + \ 127cbe7fba8SAmir Goldstein offsetof(struct ovl_fb, fid)) 128cbe7fba8SAmir Goldstein 1292d2f2d73SMiklos Szeredi extern const char *const ovl_xattr_table[][2]; 13043d193f8SMiklos Szeredi static inline const char *ovl_xattr(struct ovl_fs *ofs, enum ovl_xattr ox) 13143d193f8SMiklos Szeredi { 1322d2f2d73SMiklos Szeredi return ovl_xattr_table[ox][ofs->config.userxattr]; 13343d193f8SMiklos Szeredi } 13443d193f8SMiklos Szeredi 135a15506eaSChristian Brauner /* 136a15506eaSChristian Brauner * When changing ownership of an upper object map the intended ownership 137a15506eaSChristian Brauner * according to the upper layer's idmapping. When an upper mount idmaps files 138a15506eaSChristian Brauner * that are stored on-disk as owned by id 1001 to id 1000 this means stat on 139a15506eaSChristian Brauner * this object will report it as being owned by id 1000 when calling stat via 140a15506eaSChristian Brauner * the upper mount. 141a15506eaSChristian Brauner * In order to change ownership of an object so stat reports id 1000 when 142a15506eaSChristian Brauner * called on an idmapped upper mount the value written to disk - i.e., the 143a15506eaSChristian Brauner * value stored in ia_*id - must 1001. The mount mapping helper will thus take 144a15506eaSChristian Brauner * care to map 1000 to 1001. 145a15506eaSChristian Brauner * The mnt idmapping helpers are nops if the upper layer isn't idmapped. 146a15506eaSChristian Brauner */ 147a15506eaSChristian Brauner static inline int ovl_do_notify_change(struct ovl_fs *ofs, 148a15506eaSChristian Brauner struct dentry *upperdentry, 149a15506eaSChristian Brauner struct iattr *attr) 150a15506eaSChristian Brauner { 151abf08576SChristian Brauner return notify_change(ovl_upper_mnt_idmap(ofs), upperdentry, attr, NULL); 152a15506eaSChristian Brauner } 153a15506eaSChristian Brauner 154576bb263SChristian Brauner static inline int ovl_do_rmdir(struct ovl_fs *ofs, 155576bb263SChristian Brauner struct inode *dir, struct dentry *dentry) 156e9be9d5eSMiklos Szeredi { 157abf08576SChristian Brauner int err = vfs_rmdir(ovl_upper_mnt_idmap(ofs), dir, dentry); 1586cf00764SAmir Goldstein 159e9be9d5eSMiklos Szeredi pr_debug("rmdir(%pd2) = %i\n", dentry, err); 160e9be9d5eSMiklos Szeredi return err; 161e9be9d5eSMiklos Szeredi } 162e9be9d5eSMiklos Szeredi 163576bb263SChristian Brauner static inline int ovl_do_unlink(struct ovl_fs *ofs, struct inode *dir, 164576bb263SChristian Brauner struct dentry *dentry) 165e9be9d5eSMiklos Szeredi { 166abf08576SChristian Brauner int err = vfs_unlink(ovl_upper_mnt_idmap(ofs), dir, dentry, NULL); 1676cf00764SAmir Goldstein 168e9be9d5eSMiklos Szeredi pr_debug("unlink(%pd2) = %i\n", dentry, err); 169e9be9d5eSMiklos Szeredi return err; 170e9be9d5eSMiklos Szeredi } 171e9be9d5eSMiklos Szeredi 172576bb263SChristian Brauner static inline int ovl_do_link(struct ovl_fs *ofs, struct dentry *old_dentry, 173576bb263SChristian Brauner struct inode *dir, struct dentry *new_dentry) 174e9be9d5eSMiklos Szeredi { 175abf08576SChristian Brauner int err = vfs_link(old_dentry, ovl_upper_mnt_idmap(ofs), dir, 176abf08576SChristian Brauner new_dentry, NULL); 1776cf00764SAmir Goldstein 1786cf00764SAmir Goldstein pr_debug("link(%pd2, %pd2) = %i\n", old_dentry, new_dentry, err); 179e9be9d5eSMiklos Szeredi return err; 180e9be9d5eSMiklos Szeredi } 181e9be9d5eSMiklos Szeredi 182576bb263SChristian Brauner static inline int ovl_do_create(struct ovl_fs *ofs, 183576bb263SChristian Brauner struct inode *dir, struct dentry *dentry, 1846cf00764SAmir Goldstein umode_t mode) 185e9be9d5eSMiklos Szeredi { 186abf08576SChristian Brauner int err = vfs_create(ovl_upper_mnt_idmap(ofs), dir, dentry, mode, true); 1876cf00764SAmir Goldstein 188e9be9d5eSMiklos Szeredi pr_debug("create(%pd2, 0%o) = %i\n", dentry, mode, err); 189e9be9d5eSMiklos Szeredi return err; 190e9be9d5eSMiklos Szeredi } 191e9be9d5eSMiklos Szeredi 192576bb263SChristian Brauner static inline int ovl_do_mkdir(struct ovl_fs *ofs, 193576bb263SChristian Brauner struct inode *dir, struct dentry *dentry, 1946cf00764SAmir Goldstein umode_t mode) 195e9be9d5eSMiklos Szeredi { 196abf08576SChristian Brauner int err = vfs_mkdir(ovl_upper_mnt_idmap(ofs), dir, dentry, mode); 197e9be9d5eSMiklos Szeredi pr_debug("mkdir(%pd2, 0%o) = %i\n", dentry, mode, err); 198e9be9d5eSMiklos Szeredi return err; 199e9be9d5eSMiklos Szeredi } 200e9be9d5eSMiklos Szeredi 201576bb263SChristian Brauner static inline int ovl_do_mknod(struct ovl_fs *ofs, 202576bb263SChristian Brauner struct inode *dir, struct dentry *dentry, 2036cf00764SAmir Goldstein umode_t mode, dev_t dev) 204e9be9d5eSMiklos Szeredi { 205abf08576SChristian Brauner int err = vfs_mknod(ovl_upper_mnt_idmap(ofs), dir, dentry, mode, dev); 2066cf00764SAmir Goldstein 2076cf00764SAmir Goldstein pr_debug("mknod(%pd2, 0%o, 0%o) = %i\n", dentry, mode, dev, err); 208e9be9d5eSMiklos Szeredi return err; 209e9be9d5eSMiklos Szeredi } 210e9be9d5eSMiklos Szeredi 211576bb263SChristian Brauner static inline int ovl_do_symlink(struct ovl_fs *ofs, 212576bb263SChristian Brauner struct inode *dir, struct dentry *dentry, 2136cf00764SAmir Goldstein const char *oldname) 214e9be9d5eSMiklos Szeredi { 215abf08576SChristian Brauner int err = vfs_symlink(ovl_upper_mnt_idmap(ofs), dir, dentry, oldname); 2166cf00764SAmir Goldstein 217e9be9d5eSMiklos Szeredi pr_debug("symlink(\"%s\", %pd2) = %i\n", oldname, dentry, err); 218e9be9d5eSMiklos Szeredi return err; 219e9be9d5eSMiklos Szeredi } 220e9be9d5eSMiklos Szeredi 2212d343087SAl Viro static inline ssize_t ovl_do_getxattr(const struct path *path, const char *name, 222dad7017aSChristian Brauner void *value, size_t size) 223d5dc7486SMiklos Szeredi { 224dad7017aSChristian Brauner int err, len; 225dad7017aSChristian Brauner 226dad7017aSChristian Brauner WARN_ON(path->dentry->d_sb != path->mnt->mnt_sb); 227dad7017aSChristian Brauner 2284609e1f1SChristian Brauner err = vfs_getxattr(mnt_idmap(path->mnt), path->dentry, 229dad7017aSChristian Brauner name, value, size); 230dad7017aSChristian Brauner len = (value && err > 0) ? err : 0; 2315e717c6fSAmir Goldstein 2325e717c6fSAmir Goldstein pr_debug("getxattr(%pd2, \"%s\", \"%*pE\", %zu, 0) = %i\n", 233dad7017aSChristian Brauner path->dentry, name, min(len, 48), value, size, err); 2345e717c6fSAmir Goldstein return err; 235d5dc7486SMiklos Szeredi } 236d5dc7486SMiklos Szeredi 237dad7017aSChristian Brauner static inline ssize_t ovl_getxattr_upper(struct ovl_fs *ofs, 238dad7017aSChristian Brauner struct dentry *upperdentry, 239c914c0e2SAmir Goldstein enum ovl_xattr ox, void *value, 240610afc0bSMiklos Szeredi size_t size) 241e9be9d5eSMiklos Szeredi { 242dad7017aSChristian Brauner struct path upperpath = { 243dad7017aSChristian Brauner .dentry = upperdentry, 244dad7017aSChristian Brauner .mnt = ovl_upper_mnt(ofs), 245dad7017aSChristian Brauner }; 246dad7017aSChristian Brauner 247dad7017aSChristian Brauner return ovl_do_getxattr(&upperpath, ovl_xattr(ofs, ox), value, size); 248dad7017aSChristian Brauner } 249dad7017aSChristian Brauner 250dad7017aSChristian Brauner static inline ssize_t ovl_path_getxattr(struct ovl_fs *ofs, 2512d343087SAl Viro const struct path *path, 252dad7017aSChristian Brauner enum ovl_xattr ox, void *value, 253dad7017aSChristian Brauner size_t size) 254dad7017aSChristian Brauner { 255dad7017aSChristian Brauner return ovl_do_getxattr(path, ovl_xattr(ofs, ox), value, size); 256c914c0e2SAmir Goldstein } 257c914c0e2SAmir Goldstein 258c914c0e2SAmir Goldstein static inline int ovl_do_setxattr(struct ovl_fs *ofs, struct dentry *dentry, 259c914c0e2SAmir Goldstein const char *name, const void *value, 260c914c0e2SAmir Goldstein size_t size, int flags) 261c914c0e2SAmir Goldstein { 2624609e1f1SChristian Brauner int err = vfs_setxattr(ovl_upper_mnt_idmap(ofs), dentry, name, 2636344e669SChristian Brauner value, size, flags); 264c914c0e2SAmir Goldstein 265c914c0e2SAmir Goldstein pr_debug("setxattr(%pd2, \"%s\", \"%*pE\", %zu, %d) = %i\n", 266c914c0e2SAmir Goldstein dentry, name, min((int)size, 48), value, size, flags, err); 267e9be9d5eSMiklos Szeredi return err; 268e9be9d5eSMiklos Szeredi } 269e9be9d5eSMiklos Szeredi 270c914c0e2SAmir Goldstein static inline int ovl_setxattr(struct ovl_fs *ofs, struct dentry *dentry, 271c914c0e2SAmir Goldstein enum ovl_xattr ox, const void *value, 272c914c0e2SAmir Goldstein size_t size) 273e9be9d5eSMiklos Szeredi { 274c914c0e2SAmir Goldstein return ovl_do_setxattr(ofs, dentry, ovl_xattr(ofs, ox), value, size, 0); 275c914c0e2SAmir Goldstein } 276c914c0e2SAmir Goldstein 277c914c0e2SAmir Goldstein static inline int ovl_do_removexattr(struct ovl_fs *ofs, struct dentry *dentry, 278c914c0e2SAmir Goldstein const char *name) 279c914c0e2SAmir Goldstein { 2804609e1f1SChristian Brauner int err = vfs_removexattr(ovl_upper_mnt_idmap(ofs), dentry, name); 281e9be9d5eSMiklos Szeredi pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err); 282e9be9d5eSMiklos Szeredi return err; 283e9be9d5eSMiklos Szeredi } 284e9be9d5eSMiklos Szeredi 285c914c0e2SAmir Goldstein static inline int ovl_removexattr(struct ovl_fs *ofs, struct dentry *dentry, 286c914c0e2SAmir Goldstein enum ovl_xattr ox) 287c914c0e2SAmir Goldstein { 288c914c0e2SAmir Goldstein return ovl_do_removexattr(ofs, dentry, ovl_xattr(ofs, ox)); 289c914c0e2SAmir Goldstein } 290c914c0e2SAmir Goldstein 2910e641857SChristian Brauner static inline int ovl_do_set_acl(struct ovl_fs *ofs, struct dentry *dentry, 2920e641857SChristian Brauner const char *acl_name, struct posix_acl *acl) 2930e641857SChristian Brauner { 29413e83a49SChristian Brauner return vfs_set_acl(ovl_upper_mnt_idmap(ofs), dentry, acl_name, acl); 2950e641857SChristian Brauner } 2960e641857SChristian Brauner 2970e641857SChristian Brauner static inline int ovl_do_remove_acl(struct ovl_fs *ofs, struct dentry *dentry, 2980e641857SChristian Brauner const char *acl_name) 2990e641857SChristian Brauner { 30013e83a49SChristian Brauner return vfs_remove_acl(ovl_upper_mnt_idmap(ofs), dentry, acl_name); 3010e641857SChristian Brauner } 3020e641857SChristian Brauner 303576bb263SChristian Brauner static inline int ovl_do_rename(struct ovl_fs *ofs, struct inode *olddir, 304576bb263SChristian Brauner struct dentry *olddentry, struct inode *newdir, 305576bb263SChristian Brauner struct dentry *newdentry, unsigned int flags) 306e9be9d5eSMiklos Szeredi { 307e9be9d5eSMiklos Szeredi int err; 3089fe61450SChristian Brauner struct renamedata rd = { 309abf08576SChristian Brauner .old_mnt_idmap = ovl_upper_mnt_idmap(ofs), 3109fe61450SChristian Brauner .old_dir = olddir, 3119fe61450SChristian Brauner .old_dentry = olddentry, 312abf08576SChristian Brauner .new_mnt_idmap = ovl_upper_mnt_idmap(ofs), 3139fe61450SChristian Brauner .new_dir = newdir, 3149fe61450SChristian Brauner .new_dentry = newdentry, 3159fe61450SChristian Brauner .flags = flags, 3169fe61450SChristian Brauner }; 317e9be9d5eSMiklos Szeredi 3186cf00764SAmir Goldstein pr_debug("rename(%pd2, %pd2, 0x%x)\n", olddentry, newdentry, flags); 3199fe61450SChristian Brauner err = vfs_rename(&rd); 320e9be9d5eSMiklos Szeredi if (err) { 3212773bf00SMiklos Szeredi pr_debug("...rename(%pd2, %pd2, ...) = %i\n", 322e9be9d5eSMiklos Szeredi olddentry, newdentry, err); 323e9be9d5eSMiklos Szeredi } 324e9be9d5eSMiklos Szeredi return err; 325e9be9d5eSMiklos Szeredi } 326e9be9d5eSMiklos Szeredi 327576bb263SChristian Brauner static inline int ovl_do_whiteout(struct ovl_fs *ofs, 328576bb263SChristian Brauner struct inode *dir, struct dentry *dentry) 329e9be9d5eSMiklos Szeredi { 330abf08576SChristian Brauner int err = vfs_whiteout(ovl_upper_mnt_idmap(ofs), dir, dentry); 331e9be9d5eSMiklos Szeredi pr_debug("whiteout(%pd2) = %i\n", dentry, err); 332e9be9d5eSMiklos Szeredi return err; 333e9be9d5eSMiklos Szeredi } 334e9be9d5eSMiklos Szeredi 3352b1a7746SMiklos Szeredi static inline struct file *ovl_do_tmpfile(struct ovl_fs *ofs, 336576bb263SChristian Brauner struct dentry *dentry, umode_t mode) 337e7f52429SAmir Goldstein { 3382b1a7746SMiklos Szeredi struct path path = { .mnt = ovl_upper_mnt(ofs), .dentry = dentry }; 339abf08576SChristian Brauner struct file *file = vfs_tmpfile_open(ovl_upper_mnt_idmap(ofs), &path, mode, 3402b1a7746SMiklos Szeredi O_LARGEFILE | O_WRONLY, current_cred()); 3412b1a7746SMiklos Szeredi int err = PTR_ERR_OR_ZERO(file); 342e7f52429SAmir Goldstein 343e7f52429SAmir Goldstein pr_debug("tmpfile(%pd2, 0%o) = %i\n", dentry, mode, err); 3442b1a7746SMiklos Szeredi return file; 345e7f52429SAmir Goldstein } 346e7f52429SAmir Goldstein 34722f289ceSChristian Brauner static inline struct dentry *ovl_lookup_upper(struct ovl_fs *ofs, 34822f289ceSChristian Brauner const char *name, 34922f289ceSChristian Brauner struct dentry *base, int len) 35022f289ceSChristian Brauner { 3514609e1f1SChristian Brauner return lookup_one(ovl_upper_mnt_idmap(ofs), name, base, len); 35222f289ceSChristian Brauner } 35322f289ceSChristian Brauner 3540c288874SVivek Goyal static inline bool ovl_open_flags_need_copy_up(int flags) 3550c288874SVivek Goyal { 3560c288874SVivek Goyal if (!flags) 3570c288874SVivek Goyal return false; 3580c288874SVivek Goyal 3590c288874SVivek Goyal return ((OPEN_FMODE(flags) & FMODE_WRITE) || (flags & O_TRUNC)); 3600c288874SVivek Goyal } 3610c288874SVivek Goyal 362ca45275cSVyacheslav Yurkov 363bbb1e54dSMiklos Szeredi /* util.c */ 364bbb1e54dSMiklos Szeredi int ovl_want_write(struct dentry *dentry); 365bbb1e54dSMiklos Szeredi void ovl_drop_write(struct dentry *dentry); 366bbb1e54dSMiklos Szeredi struct dentry *ovl_workdir(struct dentry *dentry); 367bbb1e54dSMiklos Szeredi const struct cred *ovl_override_creds(struct super_block *sb); 368e487d889SAmir Goldstein int ovl_can_decode_fh(struct super_block *sb); 36902bcd157SAmir Goldstein struct dentry *ovl_indexdir(struct super_block *sb); 370f168f109SAmir Goldstein bool ovl_index_all(struct super_block *sb); 371f168f109SAmir Goldstein bool ovl_verify_lower(struct super_block *sb); 372163db0daSAmir Goldstein struct ovl_path *ovl_stack_alloc(unsigned int n); 373163db0daSAmir Goldstein void ovl_stack_cpy(struct ovl_path *dst, struct ovl_path *src, unsigned int n); 374163db0daSAmir Goldstein void ovl_stack_put(struct ovl_path *stack, unsigned int n); 375163db0daSAmir Goldstein void ovl_stack_free(struct ovl_path *stack, unsigned int n); 376bbb1e54dSMiklos Szeredi struct ovl_entry *ovl_alloc_entry(unsigned int numlower); 377163db0daSAmir Goldstein void ovl_free_entry(struct ovl_entry *oe); 378bbb1e54dSMiklos Szeredi bool ovl_dentry_remote(struct dentry *dentry); 379b07d5cc9SAmir Goldstein void ovl_dentry_update_reval(struct dentry *dentry, struct dentry *realdentry); 3800af950f5SAmir Goldstein void ovl_dentry_init_reval(struct dentry *dentry, struct dentry *upperdentry, 3810af950f5SAmir Goldstein struct ovl_entry *oe); 382b07d5cc9SAmir Goldstein void ovl_dentry_init_flags(struct dentry *dentry, struct dentry *upperdentry, 3830af950f5SAmir Goldstein struct ovl_entry *oe, unsigned int mask); 384bbb1e54dSMiklos Szeredi bool ovl_dentry_weird(struct dentry *dentry); 385e9be9d5eSMiklos Szeredi enum ovl_path_type ovl_path_type(struct dentry *dentry); 386e9be9d5eSMiklos Szeredi void ovl_path_upper(struct dentry *dentry, struct path *path); 387e9be9d5eSMiklos Szeredi void ovl_path_lower(struct dentry *dentry, struct path *path); 3884f93b426SVivek Goyal void ovl_path_lowerdata(struct dentry *dentry, struct path *path); 389b2dd05f1SZhihao Cheng struct inode *ovl_i_path_real(struct inode *inode, struct path *path); 390e9be9d5eSMiklos Szeredi enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path); 3911248ea4bSAmir Goldstein enum ovl_path_type ovl_path_realdata(struct dentry *dentry, struct path *path); 392e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_upper(struct dentry *dentry); 393e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_lower(struct dentry *dentry); 394647d253fSVivek Goyal struct dentry *ovl_dentry_lowerdata(struct dentry *dentry); 39542dd69aeSAmir Goldstein int ovl_dentry_set_lowerdata(struct dentry *dentry, struct ovl_path *datapath); 396ffa5723cSAmir Goldstein const struct ovl_layer *ovl_i_layer_lower(struct inode *inode); 39713464165SMiklos Szeredi const struct ovl_layer *ovl_layer_lower(struct dentry *dentry); 398e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_real(struct dentry *dentry); 3991d88f183SMiklos Szeredi struct dentry *ovl_i_dentry_upper(struct inode *inode); 40009d8b586SMiklos Szeredi struct inode *ovl_inode_upper(struct inode *inode); 40109d8b586SMiklos Szeredi struct inode *ovl_inode_lower(struct inode *inode); 4022664bd08SVivek Goyal struct inode *ovl_inode_lowerdata(struct inode *inode); 40309d8b586SMiklos Szeredi struct inode *ovl_inode_real(struct inode *inode); 4044823d49cSVivek Goyal struct inode *ovl_inode_realdata(struct inode *inode); 4052b21da92SAmir Goldstein const char *ovl_lowerdata_redirect(struct inode *inode); 4064edb83bbSMiklos Szeredi struct ovl_dir_cache *ovl_dir_cache(struct inode *inode); 4074edb83bbSMiklos Szeredi void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache); 408c62520a8SAmir Goldstein void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry); 409c62520a8SAmir Goldstein void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry); 410c62520a8SAmir Goldstein bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry); 411e9be9d5eSMiklos Szeredi bool ovl_dentry_is_opaque(struct dentry *dentry); 412c412ce49SMiklos Szeredi bool ovl_dentry_is_whiteout(struct dentry *dentry); 4135cf5b477SMiklos Szeredi void ovl_dentry_set_opaque(struct dentry *dentry); 41455acc661SMiklos Szeredi bool ovl_dentry_has_upper_alias(struct dentry *dentry); 41555acc661SMiklos Szeredi void ovl_dentry_set_upper_alias(struct dentry *dentry); 4160c288874SVivek Goyal bool ovl_dentry_needs_data_copy_up(struct dentry *dentry, int flags); 4170c288874SVivek Goyal bool ovl_dentry_needs_data_copy_up_locked(struct dentry *dentry, int flags); 4180c288874SVivek Goyal bool ovl_has_upperdata(struct inode *inode); 4190c288874SVivek Goyal void ovl_set_upperdata(struct inode *inode); 420a6c60655SMiklos Szeredi const char *ovl_dentry_get_redirect(struct dentry *dentry); 421a6c60655SMiklos Szeredi void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect); 42209d8b586SMiklos Szeredi void ovl_inode_update(struct inode *inode, struct dentry *upperdentry); 423d9854c87SMiklos Szeredi void ovl_dir_modified(struct dentry *dentry, bool impurity); 4241fa9c5c5SMiklos Szeredi u64 ovl_inode_version_get(struct inode *inode); 425bbb1e54dSMiklos Szeredi bool ovl_is_whiteout(struct dentry *dentry); 4262d343087SAl Viro struct file *ovl_path_open(const struct path *path, int flags); 4270c288874SVivek Goyal int ovl_copy_up_start(struct dentry *dentry, int flags); 42839d3d60aSAmir Goldstein void ovl_copy_up_end(struct dentry *dentry); 4290c288874SVivek Goyal bool ovl_already_copied_up(struct dentry *dentry, int flags); 4302d343087SAl Viro bool ovl_path_check_dir_xattr(struct ovl_fs *ofs, const struct path *path, 43143d193f8SMiklos Szeredi enum ovl_xattr ox); 4322d343087SAl Viro bool ovl_path_check_origin_xattr(struct ovl_fs *ofs, const struct path *path); 433dad7017aSChristian Brauner 434dad7017aSChristian Brauner static inline bool ovl_check_origin_xattr(struct ovl_fs *ofs, 435dad7017aSChristian Brauner struct dentry *upperdentry) 436dad7017aSChristian Brauner { 437dad7017aSChristian Brauner struct path upperpath = { 438dad7017aSChristian Brauner .dentry = upperdentry, 439dad7017aSChristian Brauner .mnt = ovl_upper_mnt(ofs), 440dad7017aSChristian Brauner }; 441dad7017aSChristian Brauner return ovl_path_check_origin_xattr(ofs, &upperpath); 442dad7017aSChristian Brauner } 443dad7017aSChristian Brauner 444a0c236b1SAmir Goldstein int ovl_check_setxattr(struct ovl_fs *ofs, struct dentry *upperdentry, 44543d193f8SMiklos Szeredi enum ovl_xattr ox, const void *value, size_t size, 446f3a15685SAmir Goldstein int xerr); 447f3a15685SAmir Goldstein int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry); 448ad0af710SAmir Goldstein bool ovl_inuse_trylock(struct dentry *dentry); 449ad0af710SAmir Goldstein void ovl_inuse_unlock(struct dentry *dentry); 450146d62e5SAmir Goldstein bool ovl_is_inuse(struct dentry *dentry); 45124b33ee1SAmir Goldstein bool ovl_need_index(struct dentry *dentry); 4520e32992fSAmir Goldstein int ovl_nlink_start(struct dentry *dentry); 4530e32992fSAmir Goldstein void ovl_nlink_end(struct dentry *dentry); 4545820dc08SAmir Goldstein int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir); 4552d343087SAl Viro int ovl_check_metacopy_xattr(struct ovl_fs *ofs, const struct path *path); 45667d756c2SVivek Goyal bool ovl_is_metacopy_dentry(struct dentry *dentry); 4572d343087SAl Viro char *ovl_get_redirect_xattr(struct ovl_fs *ofs, const struct path *path, int padding); 458335d3fc5SSargun Dhillon int ovl_sync_status(struct ovl_fs *ofs); 459f3a15685SAmir Goldstein 46065cd913eSAmir Goldstein static inline void ovl_set_flag(unsigned long flag, struct inode *inode) 46165cd913eSAmir Goldstein { 46265cd913eSAmir Goldstein set_bit(flag, &OVL_I(inode)->flags); 46365cd913eSAmir Goldstein } 46465cd913eSAmir Goldstein 46565cd913eSAmir Goldstein static inline void ovl_clear_flag(unsigned long flag, struct inode *inode) 46665cd913eSAmir Goldstein { 46765cd913eSAmir Goldstein clear_bit(flag, &OVL_I(inode)->flags); 46865cd913eSAmir Goldstein } 46965cd913eSAmir Goldstein 47065cd913eSAmir Goldstein static inline bool ovl_test_flag(unsigned long flag, struct inode *inode) 47165cd913eSAmir Goldstein { 47265cd913eSAmir Goldstein return test_bit(flag, &OVL_I(inode)->flags); 47365cd913eSAmir Goldstein } 47465cd913eSAmir Goldstein 475610afc0bSMiklos Szeredi static inline bool ovl_is_impuredir(struct super_block *sb, 476dad7017aSChristian Brauner struct dentry *upperdentry) 477f3a15685SAmir Goldstein { 478dad7017aSChristian Brauner struct ovl_fs *ofs = OVL_FS(sb); 479dad7017aSChristian Brauner struct path upperpath = { 480dad7017aSChristian Brauner .dentry = upperdentry, 481dad7017aSChristian Brauner .mnt = ovl_upper_mnt(ofs), 482dad7017aSChristian Brauner }; 483dad7017aSChristian Brauner 484dad7017aSChristian Brauner return ovl_path_check_dir_xattr(ofs, &upperpath, OVL_XATTR_IMPURE); 485f3a15685SAmir Goldstein } 486f3a15685SAmir Goldstein 487*af5f2396SAmir Goldstein static inline bool ovl_redirect_follow(struct ovl_fs *ofs) 488*af5f2396SAmir Goldstein { 489*af5f2396SAmir Goldstein return ofs->config.redirect_mode != OVL_REDIRECT_NOFOLLOW; 490*af5f2396SAmir Goldstein } 491*af5f2396SAmir Goldstein 492*af5f2396SAmir Goldstein static inline bool ovl_redirect_dir(struct ovl_fs *ofs) 493*af5f2396SAmir Goldstein { 494*af5f2396SAmir Goldstein return ofs->config.redirect_mode == OVL_REDIRECT_ON; 495*af5f2396SAmir Goldstein } 496*af5f2396SAmir Goldstein 497926e94d7SAmir Goldstein /* 498926e94d7SAmir Goldstein * With xino=auto, we do best effort to keep all inodes on same st_dev and 499926e94d7SAmir Goldstein * d_ino consistent with st_ino. 500926e94d7SAmir Goldstein * With xino=on, we do the same effort but we warn if we failed. 501926e94d7SAmir Goldstein */ 502dcb399deSAmir Goldstein static inline bool ovl_xino_warn(struct ovl_fs *ofs) 503926e94d7SAmir Goldstein { 504dcb399deSAmir Goldstein return ofs->config.xino == OVL_XINO_ON; 505926e94d7SAmir Goldstein } 506926e94d7SAmir Goldstein 507*af5f2396SAmir Goldstein /* 508*af5f2396SAmir Goldstein * To avoid regressions in existing setups with overlay lower offline changes, 509*af5f2396SAmir Goldstein * we allow lower changes only if none of the new features are used. 510*af5f2396SAmir Goldstein */ 511*af5f2396SAmir Goldstein static inline bool ovl_allow_offline_changes(struct ovl_fs *ofs) 512*af5f2396SAmir Goldstein { 513*af5f2396SAmir Goldstein return (!ofs->config.index && !ofs->config.metacopy && 514*af5f2396SAmir Goldstein !ovl_redirect_dir(ofs) && !ovl_xino_warn(ofs)); 515*af5f2396SAmir Goldstein } 516*af5f2396SAmir Goldstein 5170f831ec8SAmir Goldstein /* All layers on same fs? */ 518dcb399deSAmir Goldstein static inline bool ovl_same_fs(struct ovl_fs *ofs) 5190f831ec8SAmir Goldstein { 520dcb399deSAmir Goldstein return ofs->xino_mode == 0; 5210f831ec8SAmir Goldstein } 5220f831ec8SAmir Goldstein 5230f831ec8SAmir Goldstein /* All overlay inodes have same st_dev? */ 524dcb399deSAmir Goldstein static inline bool ovl_same_dev(struct ovl_fs *ofs) 5250f831ec8SAmir Goldstein { 526dcb399deSAmir Goldstein return ofs->xino_mode >= 0; 5270f831ec8SAmir Goldstein } 5280f831ec8SAmir Goldstein 529dcb399deSAmir Goldstein static inline unsigned int ovl_xino_bits(struct ovl_fs *ofs) 530e487d889SAmir Goldstein { 531dcb399deSAmir Goldstein return ovl_same_dev(ofs) ? ofs->xino_mode : 0; 532e487d889SAmir Goldstein } 533e487d889SAmir Goldstein 534531d3040SAmir Goldstein static inline void ovl_inode_lock(struct inode *inode) 535531d3040SAmir Goldstein { 536531d3040SAmir Goldstein mutex_lock(&OVL_I(inode)->lock); 537531d3040SAmir Goldstein } 538531d3040SAmir Goldstein 539531d3040SAmir Goldstein static inline int ovl_inode_lock_interruptible(struct inode *inode) 5401e92e307SAmir Goldstein { 5411e92e307SAmir Goldstein return mutex_lock_interruptible(&OVL_I(inode)->lock); 5421e92e307SAmir Goldstein } 5431e92e307SAmir Goldstein 5441e92e307SAmir Goldstein static inline void ovl_inode_unlock(struct inode *inode) 5451e92e307SAmir Goldstein { 5461e92e307SAmir Goldstein mutex_unlock(&OVL_I(inode)->lock); 5471e92e307SAmir Goldstein } 5481e92e307SAmir Goldstein 549e9be9d5eSMiklos Szeredi 550bbb1e54dSMiklos Szeredi /* namei.c */ 551cbe7fba8SAmir Goldstein int ovl_check_fb_len(struct ovl_fb *fb, int fb_len); 552cbe7fba8SAmir Goldstein 553cbe7fba8SAmir Goldstein static inline int ovl_check_fh_len(struct ovl_fh *fh, int fh_len) 554cbe7fba8SAmir Goldstein { 555522f6e6cSAmir Goldstein if (fh_len < sizeof(struct ovl_fh)) 556522f6e6cSAmir Goldstein return -EINVAL; 557522f6e6cSAmir Goldstein 558cbe7fba8SAmir Goldstein return ovl_check_fb_len(&fh->fb, fh_len - OVL_FH_WIRE_OFFSET); 559cbe7fba8SAmir Goldstein } 560cbe7fba8SAmir Goldstein 5611cdb0cb6SPavel Tikhomirov struct dentry *ovl_decode_real_fh(struct ovl_fs *ofs, struct ovl_fh *fh, 5621cdb0cb6SPavel Tikhomirov struct vfsmount *mnt, bool connected); 5638a22efa1SAmir Goldstein int ovl_check_origin_fh(struct ovl_fs *ofs, struct ovl_fh *fh, bool connected, 564f941866fSAmir Goldstein struct dentry *upperdentry, struct ovl_path **stackp); 565610afc0bSMiklos Szeredi int ovl_verify_set_fh(struct ovl_fs *ofs, struct dentry *dentry, 56643d193f8SMiklos Szeredi enum ovl_xattr ox, struct dentry *real, bool is_upper, 567610afc0bSMiklos Szeredi bool set); 5688ea28765SAmir Goldstein struct dentry *ovl_index_upper(struct ovl_fs *ofs, struct dentry *index, 5698ea28765SAmir Goldstein bool connected); 5701eff1a1dSAmir Goldstein int ovl_verify_index(struct ovl_fs *ofs, struct dentry *index); 5711cdb0cb6SPavel Tikhomirov int ovl_get_index_name(struct ovl_fs *ofs, struct dentry *origin, 5721cdb0cb6SPavel Tikhomirov struct qstr *name); 57391ffe7beSAmir Goldstein struct dentry *ovl_get_index_fh(struct ovl_fs *ofs, struct ovl_fh *fh); 57406170154SAmir Goldstein struct dentry *ovl_lookup_index(struct ovl_fs *ofs, struct dentry *upper, 57506170154SAmir Goldstein struct dentry *origin, bool verify); 576bbb1e54dSMiklos Szeredi int ovl_path_next(int idx, struct dentry *dentry, struct path *path); 57742dd69aeSAmir Goldstein int ovl_maybe_lookup_lowerdata(struct dentry *dentry); 5781eff1a1dSAmir Goldstein struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry, 5791eff1a1dSAmir Goldstein unsigned int flags); 580bbb1e54dSMiklos Szeredi bool ovl_lower_positive(struct dentry *dentry); 581e9be9d5eSMiklos Szeredi 582610afc0bSMiklos Szeredi static inline int ovl_verify_origin(struct ovl_fs *ofs, struct dentry *upper, 58305122443SAmir Goldstein struct dentry *origin, bool set) 58405122443SAmir Goldstein { 585610afc0bSMiklos Szeredi return ovl_verify_set_fh(ofs, upper, OVL_XATTR_ORIGIN, origin, 586610afc0bSMiklos Szeredi false, set); 58705122443SAmir Goldstein } 58805122443SAmir Goldstein 589610afc0bSMiklos Szeredi static inline int ovl_verify_upper(struct ovl_fs *ofs, struct dentry *index, 590ad1d615cSAmir Goldstein struct dentry *upper, bool set) 591ad1d615cSAmir Goldstein { 592610afc0bSMiklos Szeredi return ovl_verify_set_fh(ofs, index, OVL_XATTR_UPPER, upper, true, set); 593ad1d615cSAmir Goldstein } 594ad1d615cSAmir Goldstein 595e9be9d5eSMiklos Szeredi /* readdir.c */ 596e9be9d5eSMiklos Szeredi extern const struct file_operations ovl_dir_operations; 59761536bedSAmir Goldstein struct file *ovl_dir_real_file(const struct file *file, bool want_upper); 598e9be9d5eSMiklos Szeredi int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list); 599576bb263SChristian Brauner void ovl_cleanup_whiteouts(struct ovl_fs *ofs, struct dentry *upper, 600576bb263SChristian Brauner struct list_head *list); 601e9be9d5eSMiklos Szeredi void ovl_cache_free(struct list_head *list); 6024edb83bbSMiklos Szeredi void ovl_dir_cache_free(struct inode *inode); 6032d343087SAl Viro int ovl_check_d_type_supported(const struct path *realpath); 604576bb263SChristian Brauner int ovl_workdir_cleanup(struct ovl_fs *ofs, struct inode *dir, 605576bb263SChristian Brauner struct vfsmount *mnt, struct dentry *dentry, int level); 6061eff1a1dSAmir Goldstein int ovl_indexdir_cleanup(struct ovl_fs *ofs); 607e9be9d5eSMiklos Szeredi 60865cd913eSAmir Goldstein /* 60965cd913eSAmir Goldstein * Can we iterate real dir directly? 61065cd913eSAmir Goldstein * 61165cd913eSAmir Goldstein * Non-merge dir may contain whiteouts from a time it was a merge upper, before 61265cd913eSAmir Goldstein * lower dir was removed under it and possibly before it was rotated from upper 61365cd913eSAmir Goldstein * to lower layer. 61465cd913eSAmir Goldstein */ 6151fa9c5c5SMiklos Szeredi static inline bool ovl_dir_is_real(struct inode *dir) 61665cd913eSAmir Goldstein { 6171fa9c5c5SMiklos Szeredi return !ovl_test_flag(OVL_WHITEOUTS, dir); 61865cd913eSAmir Goldstein } 61965cd913eSAmir Goldstein 620e9be9d5eSMiklos Szeredi /* inode.c */ 6215f8415d6SAmir Goldstein int ovl_set_nlink_upper(struct dentry *dentry); 6225f8415d6SAmir Goldstein int ovl_set_nlink_lower(struct dentry *dentry); 623610afc0bSMiklos Szeredi unsigned int ovl_get_nlink(struct ovl_fs *ofs, struct dentry *lowerdentry, 624caf70cb2SAmir Goldstein struct dentry *upperdentry, 625caf70cb2SAmir Goldstein unsigned int fallback); 626c1632a0fSChristian Brauner int ovl_setattr(struct mnt_idmap *idmap, struct dentry *dentry, 627549c7297SChristian Brauner struct iattr *attr); 628b74d24f7SChristian Brauner int ovl_getattr(struct mnt_idmap *idmap, const struct path *path, 629549c7297SChristian Brauner struct kstat *stat, u32 request_mask, unsigned int flags); 6304609e1f1SChristian Brauner int ovl_permission(struct mnt_idmap *idmap, struct inode *inode, 631549c7297SChristian Brauner int mask); 6321d88f183SMiklos Szeredi int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name, 6331d88f183SMiklos Szeredi const void *value, size_t size, int flags); 6341d88f183SMiklos Szeredi int ovl_xattr_get(struct dentry *dentry, struct inode *inode, const char *name, 6350eb45fc3SAndreas Gruenbacher void *value, size_t size); 636e9be9d5eSMiklos Szeredi ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size); 637ded53656SYang Xu 638ded53656SYang Xu #ifdef CONFIG_FS_POSIX_ACL 63977435322SChristian Brauner struct posix_acl *do_ovl_get_acl(struct mnt_idmap *idmap, 6406c0a8bfbSChristian Brauner struct inode *inode, int type, 6416c0a8bfbSChristian Brauner bool rcu, bool noperm); 6426c0a8bfbSChristian Brauner static inline struct posix_acl *ovl_get_inode_acl(struct inode *inode, int type, 6436c0a8bfbSChristian Brauner bool rcu) 6446c0a8bfbSChristian Brauner { 64577435322SChristian Brauner return do_ovl_get_acl(&nop_mnt_idmap, inode, type, rcu, true); 6466c0a8bfbSChristian Brauner } 64777435322SChristian Brauner static inline struct posix_acl *ovl_get_acl(struct mnt_idmap *idmap, 6486c0a8bfbSChristian Brauner struct dentry *dentry, int type) 6496c0a8bfbSChristian Brauner { 65077435322SChristian Brauner return do_ovl_get_acl(idmap, d_inode(dentry), type, false, false); 6516c0a8bfbSChristian Brauner } 65213e83a49SChristian Brauner int ovl_set_acl(struct mnt_idmap *idmap, struct dentry *dentry, 6530e641857SChristian Brauner struct posix_acl *acl, int type); 65431acceb9SChristian Brauner struct posix_acl *ovl_get_acl_path(const struct path *path, 65531acceb9SChristian Brauner const char *acl_name, bool noperm); 656ded53656SYang Xu #else 6576c0a8bfbSChristian Brauner #define ovl_get_inode_acl NULL 658ded53656SYang Xu #define ovl_get_acl NULL 6590e641857SChristian Brauner #define ovl_set_acl NULL 66031acceb9SChristian Brauner static inline struct posix_acl *ovl_get_acl_path(const struct path *path, 66131acceb9SChristian Brauner const char *acl_name, 66231acceb9SChristian Brauner bool noperm) 66331acceb9SChristian Brauner { 66431acceb9SChristian Brauner return NULL; 66531acceb9SChristian Brauner } 666ded53656SYang Xu #endif 667ded53656SYang Xu 66895582b00SDeepa Dinamani int ovl_update_time(struct inode *inode, struct timespec64 *ts, int flags); 669610afc0bSMiklos Szeredi bool ovl_is_private_xattr(struct super_block *sb, const char *name); 670e9be9d5eSMiklos Szeredi 671ac6a52ebSVivek Goyal struct ovl_inode_params { 67201b39dccSAmir Goldstein struct inode *newinode; 673ac6a52ebSVivek Goyal struct dentry *upperdentry; 6740af950f5SAmir Goldstein struct ovl_entry *oe; 67574c6e384SMiklos Szeredi bool index; 6769cec54c8SVivek Goyal char *redirect; 6772b21da92SAmir Goldstein char *lowerdata_redirect; 678ac6a52ebSVivek Goyal }; 67962c832edSAmir Goldstein void ovl_inode_init(struct inode *inode, struct ovl_inode_params *oip, 68062c832edSAmir Goldstein unsigned long ino, int fsid); 681ca4c8a3aSMiklos Szeredi struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev); 6824b91c30aSAmir Goldstein struct inode *ovl_lookup_inode(struct super_block *sb, struct dentry *real, 6834b91c30aSAmir Goldstein bool is_upper); 684146d62e5SAmir Goldstein bool ovl_lookup_trap_inode(struct super_block *sb, struct dentry *dir); 685146d62e5SAmir Goldstein struct inode *ovl_get_trap_inode(struct super_block *sb, struct dentry *dir); 686ac6a52ebSVivek Goyal struct inode *ovl_get_inode(struct super_block *sb, 687ac6a52ebSVivek Goyal struct ovl_inode_params *oip); 6882878dffcSChristian Brauner void ovl_copyattr(struct inode *to); 689e9be9d5eSMiklos Szeredi 69072db8211SAmir Goldstein /* vfs inode flags copied from real to ovl inode */ 69172db8211SAmir Goldstein #define OVL_COPY_I_FLAGS_MASK (S_SYNC | S_NOATIME | S_APPEND | S_IMMUTABLE) 692096a218aSAmir Goldstein /* vfs inode flags read from overlay.protattr xattr to ovl inode */ 693096a218aSAmir Goldstein #define OVL_PROT_I_FLAGS_MASK (S_APPEND | S_IMMUTABLE) 69472db8211SAmir Goldstein 69572db8211SAmir Goldstein /* 69672db8211SAmir Goldstein * fileattr flags copied from lower to upper inode on copy up. 697096a218aSAmir Goldstein * We cannot copy up immutable/append-only flags, because that would prevent 698096a218aSAmir Goldstein * linking temp inode to upper dir, so we store them in xattr instead. 69972db8211SAmir Goldstein */ 70072db8211SAmir Goldstein #define OVL_COPY_FS_FLAGS_MASK (FS_SYNC_FL | FS_NOATIME_FL) 70172db8211SAmir Goldstein #define OVL_COPY_FSX_FLAGS_MASK (FS_XFLAG_SYNC | FS_XFLAG_NOATIME) 702096a218aSAmir Goldstein #define OVL_PROT_FS_FLAGS_MASK (FS_APPEND_FL | FS_IMMUTABLE_FL) 703096a218aSAmir Goldstein #define OVL_PROT_FSX_FLAGS_MASK (FS_XFLAG_APPEND | FS_XFLAG_IMMUTABLE) 704096a218aSAmir Goldstein 705096a218aSAmir Goldstein void ovl_check_protattr(struct inode *inode, struct dentry *upper); 706096a218aSAmir Goldstein int ovl_set_protattr(struct inode *inode, struct dentry *upper, 707096a218aSAmir Goldstein struct fileattr *fa); 70872db8211SAmir Goldstein 7094f357295SMiklos Szeredi static inline void ovl_copyflags(struct inode *from, struct inode *to) 7104f357295SMiklos Szeredi { 71172db8211SAmir Goldstein unsigned int mask = OVL_COPY_I_FLAGS_MASK; 7124f357295SMiklos Szeredi 7134f357295SMiklos Szeredi inode_set_flags(to, from->i_flags & mask, mask); 7144f357295SMiklos Szeredi } 7154f357295SMiklos Szeredi 716e9be9d5eSMiklos Szeredi /* dir.c */ 717e9be9d5eSMiklos Szeredi extern const struct inode_operations ovl_dir_inode_operations; 718c21c839bSChengguang Xu int ovl_cleanup_and_whiteout(struct ovl_fs *ofs, struct inode *dir, 719e7dd0e71SAmir Goldstein struct dentry *dentry); 720471ec5dcSAmir Goldstein struct ovl_cattr { 72132a3d848SAl Viro dev_t rdev; 72232a3d848SAl Viro umode_t mode; 72332a3d848SAl Viro const char *link; 724471ec5dcSAmir Goldstein struct dentry *hardlink; 72532a3d848SAl Viro }; 726471ec5dcSAmir Goldstein 727471ec5dcSAmir Goldstein #define OVL_CATTR(m) (&(struct ovl_cattr) { .mode = (m) }) 728471ec5dcSAmir Goldstein 729576bb263SChristian Brauner int ovl_mkdir_real(struct ovl_fs *ofs, struct inode *dir, 730576bb263SChristian Brauner struct dentry **newdentry, umode_t mode); 731576bb263SChristian Brauner struct dentry *ovl_create_real(struct ovl_fs *ofs, 732576bb263SChristian Brauner struct inode *dir, struct dentry *newdentry, 733471ec5dcSAmir Goldstein struct ovl_cattr *attr); 734576bb263SChristian Brauner int ovl_cleanup(struct ovl_fs *ofs, struct inode *dir, struct dentry *dentry); 735576bb263SChristian Brauner struct dentry *ovl_lookup_temp(struct ovl_fs *ofs, struct dentry *workdir); 736576bb263SChristian Brauner struct dentry *ovl_create_temp(struct ovl_fs *ofs, struct dentry *workdir, 737576bb263SChristian Brauner struct ovl_cattr *attr); 738e9be9d5eSMiklos Szeredi 739d1d04ef8SMiklos Szeredi /* file.c */ 740d1d04ef8SMiklos Szeredi extern const struct file_operations ovl_file_operations; 7412406a307SJiufei Xue int __init ovl_aio_request_cache_init(void); 7422406a307SJiufei Xue void ovl_aio_request_cache_destroy(void); 7432d343087SAl Viro int ovl_real_fileattr_get(const struct path *realpath, struct fileattr *fa); 7442d343087SAl Viro int ovl_real_fileattr_set(const struct path *realpath, struct fileattr *fa); 74566dbfabfSMiklos Szeredi int ovl_fileattr_get(struct dentry *dentry, struct fileattr *fa); 7468782a9aeSChristian Brauner int ovl_fileattr_set(struct mnt_idmap *idmap, 74766dbfabfSMiklos Szeredi struct dentry *dentry, struct fileattr *fa); 748d1d04ef8SMiklos Szeredi 749e9be9d5eSMiklos Szeredi /* copy_up.c */ 750e9be9d5eSMiklos Szeredi int ovl_copy_up(struct dentry *dentry); 751d1e6f6a9SVivek Goyal int ovl_copy_up_with_data(struct dentry *dentry); 7523428030dSAmir Goldstein int ovl_maybe_copy_up(struct dentry *dentry, int flags); 7532d343087SAl Viro int ovl_copy_xattr(struct super_block *sb, const struct path *path, struct dentry *new); 7545272eaf3SChristian Brauner int ovl_set_attr(struct ovl_fs *ofs, struct dentry *upper, struct kstat *stat); 7551cdb0cb6SPavel Tikhomirov struct ovl_fh *ovl_encode_real_fh(struct ovl_fs *ofs, struct dentry *real, 7561cdb0cb6SPavel Tikhomirov bool is_upper); 757a0c236b1SAmir Goldstein int ovl_set_origin(struct ovl_fs *ofs, struct dentry *lower, 758a0c236b1SAmir Goldstein struct dentry *upper); 7598ed5eec9SAmir Goldstein 7608ed5eec9SAmir Goldstein /* export.c */ 7618ed5eec9SAmir Goldstein extern const struct export_operations ovl_export_operations; 762