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> 10ee023c30SAmir Goldstein #include "ovl_entry.h" 11e9be9d5eSMiklos Szeredi 121bd0a3aeSlijiazi #undef pr_fmt 131bd0a3aeSlijiazi #define pr_fmt(fmt) "overlayfs: " fmt 141bd0a3aeSlijiazi 15e9be9d5eSMiklos Szeredi enum ovl_path_type { 1638e813dbSMiklos Szeredi __OVL_PATH_UPPER = (1 << 0), 1738e813dbSMiklos Szeredi __OVL_PATH_MERGE = (1 << 1), 1859548503SAmir Goldstein __OVL_PATH_ORIGIN = (1 << 2), 19e9be9d5eSMiklos Szeredi }; 20e9be9d5eSMiklos Szeredi 211afaba1eSMiklos Szeredi #define OVL_TYPE_UPPER(type) ((type) & __OVL_PATH_UPPER) 221afaba1eSMiklos Szeredi #define OVL_TYPE_MERGE(type) ((type) & __OVL_PATH_MERGE) 2359548503SAmir Goldstein #define OVL_TYPE_ORIGIN(type) ((type) & __OVL_PATH_ORIGIN) 24d837a49bSMiklos Szeredi 252d2f2d73SMiklos Szeredi #define OVL_XATTR_NAMESPACE "overlay." 262d2f2d73SMiklos Szeredi #define OVL_XATTR_TRUSTED_PREFIX XATTR_TRUSTED_PREFIX OVL_XATTR_NAMESPACE 272d2f2d73SMiklos Szeredi #define OVL_XATTR_USER_PREFIX XATTR_USER_PREFIX OVL_XATTR_NAMESPACE 2843d193f8SMiklos Szeredi 2943d193f8SMiklos Szeredi enum ovl_xattr { 3043d193f8SMiklos Szeredi OVL_XATTR_OPAQUE, 3143d193f8SMiklos Szeredi OVL_XATTR_REDIRECT, 3243d193f8SMiklos Szeredi OVL_XATTR_ORIGIN, 3343d193f8SMiklos Szeredi OVL_XATTR_IMPURE, 3443d193f8SMiklos Szeredi OVL_XATTR_NLINK, 3543d193f8SMiklos Szeredi OVL_XATTR_UPPER, 3643d193f8SMiklos Szeredi OVL_XATTR_METACOPY, 37096a218aSAmir Goldstein OVL_XATTR_PROTATTR, 3843d193f8SMiklos Szeredi }; 393a1e819bSAmir Goldstein 40c62520a8SAmir Goldstein enum ovl_inode_flag { 41b79e05aaSAmir Goldstein /* Pure upper dir that may contain non pure upper entries */ 4213c72075SMiklos Szeredi OVL_IMPURE, 43b79e05aaSAmir Goldstein /* Non-merge dir that may contain whiteout entries */ 44b79e05aaSAmir Goldstein OVL_WHITEOUTS, 45359f392cSAmir Goldstein OVL_INDEX, 460c288874SVivek Goyal OVL_UPPERDATA, 47a00c2d59SVivek Goyal /* Inode number will remain constant over copy up. */ 48a00c2d59SVivek Goyal OVL_CONST_INO, 4913c72075SMiklos Szeredi }; 5013c72075SMiklos Szeredi 51c62520a8SAmir Goldstein enum ovl_entry_flag { 52c62520a8SAmir Goldstein OVL_E_UPPER_ALIAS, 53c62520a8SAmir Goldstein OVL_E_OPAQUE, 542ca3c148SAmir Goldstein OVL_E_CONNECTED, 55c62520a8SAmir Goldstein }; 56c62520a8SAmir Goldstein 57926e94d7SAmir Goldstein enum { 58926e94d7SAmir Goldstein OVL_XINO_OFF, 59926e94d7SAmir Goldstein OVL_XINO_AUTO, 60926e94d7SAmir Goldstein OVL_XINO_ON, 61926e94d7SAmir Goldstein }; 62926e94d7SAmir Goldstein 633a1e819bSAmir Goldstein /* 643a1e819bSAmir Goldstein * The tuple (fh,uuid) is a universal unique identifier for a copy up origin, 653a1e819bSAmir Goldstein * where: 663a1e819bSAmir Goldstein * origin.fh - exported file handle of the lower file 673a1e819bSAmir Goldstein * origin.uuid - uuid of the lower filesystem 683a1e819bSAmir Goldstein */ 693a1e819bSAmir Goldstein #define OVL_FH_VERSION 0 703a1e819bSAmir Goldstein #define OVL_FH_MAGIC 0xfb 713a1e819bSAmir Goldstein 723a1e819bSAmir Goldstein /* CPU byte order required for fid decoding: */ 733a1e819bSAmir Goldstein #define OVL_FH_FLAG_BIG_ENDIAN (1 << 0) 743a1e819bSAmir Goldstein #define OVL_FH_FLAG_ANY_ENDIAN (1 << 1) 7554fb347eSAmir Goldstein /* Is the real inode encoded in fid an upper inode? */ 7654fb347eSAmir Goldstein #define OVL_FH_FLAG_PATH_UPPER (1 << 2) 773a1e819bSAmir Goldstein 78961af647SAmir Goldstein #define OVL_FH_FLAG_ALL (OVL_FH_FLAG_BIG_ENDIAN | OVL_FH_FLAG_ANY_ENDIAN | \ 79961af647SAmir Goldstein OVL_FH_FLAG_PATH_UPPER) 803a1e819bSAmir Goldstein 813a1e819bSAmir Goldstein #if defined(__LITTLE_ENDIAN) 823a1e819bSAmir Goldstein #define OVL_FH_FLAG_CPU_ENDIAN 0 833a1e819bSAmir Goldstein #elif defined(__BIG_ENDIAN) 843a1e819bSAmir Goldstein #define OVL_FH_FLAG_CPU_ENDIAN OVL_FH_FLAG_BIG_ENDIAN 853a1e819bSAmir Goldstein #else 863a1e819bSAmir Goldstein #error Endianness not defined 873a1e819bSAmir Goldstein #endif 883a1e819bSAmir Goldstein 89cbe7fba8SAmir Goldstein /* The type used to be returned by overlay exportfs for misaligned fid */ 90cbe7fba8SAmir Goldstein #define OVL_FILEID_V0 0xfb 91cbe7fba8SAmir Goldstein /* The type returned by overlay exportfs for 32bit aligned fid */ 92cbe7fba8SAmir Goldstein #define OVL_FILEID_V1 0xf8 938ed5eec9SAmir Goldstein 94cbe7fba8SAmir Goldstein /* On-disk format for "origin" file handle */ 95cbe7fba8SAmir Goldstein struct ovl_fb { 963a1e819bSAmir Goldstein u8 version; /* 0 */ 973a1e819bSAmir Goldstein u8 magic; /* 0xfb */ 983a1e819bSAmir Goldstein u8 len; /* size of this header + size of fid */ 993a1e819bSAmir Goldstein u8 flags; /* OVL_FH_FLAG_* */ 1003a1e819bSAmir Goldstein u8 type; /* fid_type of fid */ 10101633fd2SChristoph Hellwig uuid_t uuid; /* uuid of filesystem */ 1020efbe7c4SGustavo A. R. Silva u32 fid[]; /* file identifier should be 32bit aligned in-memory */ 1033a1e819bSAmir Goldstein } __packed; 104e9be9d5eSMiklos Szeredi 105cbe7fba8SAmir Goldstein /* In-memory and on-wire format for overlay file handle */ 106cbe7fba8SAmir Goldstein struct ovl_fh { 107cbe7fba8SAmir Goldstein u8 padding[3]; /* make sure fb.fid is 32bit aligned */ 108cbe7fba8SAmir Goldstein union { 109cbe7fba8SAmir Goldstein struct ovl_fb fb; 110cbe7fba8SAmir Goldstein u8 buf[0]; 111cbe7fba8SAmir Goldstein }; 112cbe7fba8SAmir Goldstein } __packed; 113cbe7fba8SAmir Goldstein 114cbe7fba8SAmir Goldstein #define OVL_FH_WIRE_OFFSET offsetof(struct ovl_fh, fb) 115cbe7fba8SAmir Goldstein #define OVL_FH_LEN(fh) (OVL_FH_WIRE_OFFSET + (fh)->fb.len) 116cbe7fba8SAmir Goldstein #define OVL_FH_FID_OFFSET (OVL_FH_WIRE_OFFSET + \ 117cbe7fba8SAmir Goldstein offsetof(struct ovl_fb, fid)) 118cbe7fba8SAmir Goldstein 1192d2f2d73SMiklos Szeredi extern const char *const ovl_xattr_table[][2]; 12043d193f8SMiklos Szeredi static inline const char *ovl_xattr(struct ovl_fs *ofs, enum ovl_xattr ox) 12143d193f8SMiklos Szeredi { 1222d2f2d73SMiklos Szeredi return ovl_xattr_table[ox][ofs->config.userxattr]; 12343d193f8SMiklos Szeredi } 12443d193f8SMiklos Szeredi 125576bb263SChristian Brauner static inline int ovl_do_rmdir(struct ovl_fs *ofs, 126576bb263SChristian Brauner struct inode *dir, struct dentry *dentry) 127e9be9d5eSMiklos Szeredi { 128c67cf654SChristian Brauner int err = vfs_rmdir(ovl_upper_mnt_userns(ofs), dir, dentry); 1296cf00764SAmir Goldstein 130e9be9d5eSMiklos Szeredi pr_debug("rmdir(%pd2) = %i\n", dentry, err); 131e9be9d5eSMiklos Szeredi return err; 132e9be9d5eSMiklos Szeredi } 133e9be9d5eSMiklos Szeredi 134576bb263SChristian Brauner static inline int ovl_do_unlink(struct ovl_fs *ofs, struct inode *dir, 135576bb263SChristian Brauner struct dentry *dentry) 136e9be9d5eSMiklos Szeredi { 137c67cf654SChristian Brauner int err = vfs_unlink(ovl_upper_mnt_userns(ofs), dir, dentry, NULL); 1386cf00764SAmir Goldstein 139e9be9d5eSMiklos Szeredi pr_debug("unlink(%pd2) = %i\n", dentry, err); 140e9be9d5eSMiklos Szeredi return err; 141e9be9d5eSMiklos Szeredi } 142e9be9d5eSMiklos Szeredi 143576bb263SChristian Brauner static inline int ovl_do_link(struct ovl_fs *ofs, struct dentry *old_dentry, 144576bb263SChristian Brauner struct inode *dir, struct dentry *new_dentry) 145e9be9d5eSMiklos Szeredi { 146c67cf654SChristian Brauner int err = vfs_link(old_dentry, ovl_upper_mnt_userns(ofs), dir, new_dentry, NULL); 1476cf00764SAmir Goldstein 1486cf00764SAmir Goldstein pr_debug("link(%pd2, %pd2) = %i\n", old_dentry, new_dentry, err); 149e9be9d5eSMiklos Szeredi return err; 150e9be9d5eSMiklos Szeredi } 151e9be9d5eSMiklos Szeredi 152576bb263SChristian Brauner static inline int ovl_do_create(struct ovl_fs *ofs, 153576bb263SChristian Brauner struct inode *dir, struct dentry *dentry, 1546cf00764SAmir Goldstein umode_t mode) 155e9be9d5eSMiklos Szeredi { 156c67cf654SChristian Brauner int err = vfs_create(ovl_upper_mnt_userns(ofs), dir, dentry, mode, true); 1576cf00764SAmir Goldstein 158e9be9d5eSMiklos Szeredi pr_debug("create(%pd2, 0%o) = %i\n", dentry, mode, err); 159e9be9d5eSMiklos Szeredi return err; 160e9be9d5eSMiklos Szeredi } 161e9be9d5eSMiklos Szeredi 162576bb263SChristian Brauner static inline int ovl_do_mkdir(struct ovl_fs *ofs, 163576bb263SChristian Brauner struct inode *dir, struct dentry *dentry, 1646cf00764SAmir Goldstein umode_t mode) 165e9be9d5eSMiklos Szeredi { 166c67cf654SChristian Brauner int err = vfs_mkdir(ovl_upper_mnt_userns(ofs), dir, dentry, mode); 167e9be9d5eSMiklos Szeredi pr_debug("mkdir(%pd2, 0%o) = %i\n", dentry, mode, err); 168e9be9d5eSMiklos Szeredi return err; 169e9be9d5eSMiklos Szeredi } 170e9be9d5eSMiklos Szeredi 171576bb263SChristian Brauner static inline int ovl_do_mknod(struct ovl_fs *ofs, 172576bb263SChristian Brauner struct inode *dir, struct dentry *dentry, 1736cf00764SAmir Goldstein umode_t mode, dev_t dev) 174e9be9d5eSMiklos Szeredi { 175c67cf654SChristian Brauner int err = vfs_mknod(ovl_upper_mnt_userns(ofs), dir, dentry, mode, dev); 1766cf00764SAmir Goldstein 1776cf00764SAmir Goldstein pr_debug("mknod(%pd2, 0%o, 0%o) = %i\n", dentry, mode, dev, err); 178e9be9d5eSMiklos Szeredi return err; 179e9be9d5eSMiklos Szeredi } 180e9be9d5eSMiklos Szeredi 181576bb263SChristian Brauner static inline int ovl_do_symlink(struct ovl_fs *ofs, 182576bb263SChristian Brauner struct inode *dir, struct dentry *dentry, 1836cf00764SAmir Goldstein const char *oldname) 184e9be9d5eSMiklos Szeredi { 185c67cf654SChristian Brauner int err = vfs_symlink(ovl_upper_mnt_userns(ofs), dir, dentry, oldname); 1866cf00764SAmir Goldstein 187e9be9d5eSMiklos Szeredi pr_debug("symlink(\"%s\", %pd2) = %i\n", oldname, dentry, err); 188e9be9d5eSMiklos Szeredi return err; 189e9be9d5eSMiklos Szeredi } 190e9be9d5eSMiklos Szeredi 191610afc0bSMiklos Szeredi static inline ssize_t ovl_do_getxattr(struct ovl_fs *ofs, struct dentry *dentry, 192c914c0e2SAmir Goldstein const char *name, void *value, 193610afc0bSMiklos Szeredi size_t size) 194d5dc7486SMiklos Szeredi { 1955e717c6fSAmir Goldstein int err = vfs_getxattr(&init_user_ns, dentry, name, value, size); 1965e717c6fSAmir Goldstein int len = (value && err > 0) ? err : 0; 1975e717c6fSAmir Goldstein 1985e717c6fSAmir Goldstein pr_debug("getxattr(%pd2, \"%s\", \"%*pE\", %zu, 0) = %i\n", 1995e717c6fSAmir Goldstein dentry, name, min(len, 48), value, size, err); 2005e717c6fSAmir Goldstein return err; 201d5dc7486SMiklos Szeredi } 202d5dc7486SMiklos Szeredi 203c914c0e2SAmir Goldstein static inline ssize_t ovl_getxattr(struct ovl_fs *ofs, struct dentry *dentry, 204c914c0e2SAmir Goldstein enum ovl_xattr ox, void *value, 205610afc0bSMiklos Szeredi size_t size) 206e9be9d5eSMiklos Szeredi { 207c914c0e2SAmir Goldstein return ovl_do_getxattr(ofs, dentry, ovl_xattr(ofs, ox), value, size); 208c914c0e2SAmir Goldstein } 209c914c0e2SAmir Goldstein 210c914c0e2SAmir Goldstein static inline int ovl_do_setxattr(struct ovl_fs *ofs, struct dentry *dentry, 211c914c0e2SAmir Goldstein const char *name, const void *value, 212c914c0e2SAmir Goldstein size_t size, int flags) 213c914c0e2SAmir Goldstein { 214c914c0e2SAmir Goldstein int err = vfs_setxattr(&init_user_ns, dentry, name, value, size, flags); 215c914c0e2SAmir Goldstein 216c914c0e2SAmir Goldstein pr_debug("setxattr(%pd2, \"%s\", \"%*pE\", %zu, %d) = %i\n", 217c914c0e2SAmir Goldstein dentry, name, min((int)size, 48), value, size, flags, err); 218e9be9d5eSMiklos Szeredi return err; 219e9be9d5eSMiklos Szeredi } 220e9be9d5eSMiklos Szeredi 221c914c0e2SAmir Goldstein static inline int ovl_setxattr(struct ovl_fs *ofs, struct dentry *dentry, 222c914c0e2SAmir Goldstein enum ovl_xattr ox, const void *value, 223c914c0e2SAmir Goldstein size_t size) 224e9be9d5eSMiklos Szeredi { 225c914c0e2SAmir Goldstein return ovl_do_setxattr(ofs, dentry, ovl_xattr(ofs, ox), value, size, 0); 226c914c0e2SAmir Goldstein } 227c914c0e2SAmir Goldstein 228c914c0e2SAmir Goldstein static inline int ovl_do_removexattr(struct ovl_fs *ofs, struct dentry *dentry, 229c914c0e2SAmir Goldstein const char *name) 230c914c0e2SAmir Goldstein { 231c7c7a1a1STycho Andersen int err = vfs_removexattr(&init_user_ns, dentry, name); 232e9be9d5eSMiklos Szeredi pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err); 233e9be9d5eSMiklos Szeredi return err; 234e9be9d5eSMiklos Szeredi } 235e9be9d5eSMiklos Szeredi 236c914c0e2SAmir Goldstein static inline int ovl_removexattr(struct ovl_fs *ofs, struct dentry *dentry, 237c914c0e2SAmir Goldstein enum ovl_xattr ox) 238c914c0e2SAmir Goldstein { 239c914c0e2SAmir Goldstein return ovl_do_removexattr(ofs, dentry, ovl_xattr(ofs, ox)); 240c914c0e2SAmir Goldstein } 241c914c0e2SAmir Goldstein 242576bb263SChristian Brauner static inline int ovl_do_rename(struct ovl_fs *ofs, struct inode *olddir, 243576bb263SChristian Brauner struct dentry *olddentry, struct inode *newdir, 244576bb263SChristian Brauner struct dentry *newdentry, unsigned int flags) 245e9be9d5eSMiklos Szeredi { 246e9be9d5eSMiklos Szeredi int err; 2479fe61450SChristian Brauner struct renamedata rd = { 248c67cf654SChristian Brauner .old_mnt_userns = ovl_upper_mnt_userns(ofs), 2499fe61450SChristian Brauner .old_dir = olddir, 2509fe61450SChristian Brauner .old_dentry = olddentry, 251c67cf654SChristian Brauner .new_mnt_userns = ovl_upper_mnt_userns(ofs), 2529fe61450SChristian Brauner .new_dir = newdir, 2539fe61450SChristian Brauner .new_dentry = newdentry, 2549fe61450SChristian Brauner .flags = flags, 2559fe61450SChristian Brauner }; 256e9be9d5eSMiklos Szeredi 2576cf00764SAmir Goldstein pr_debug("rename(%pd2, %pd2, 0x%x)\n", olddentry, newdentry, flags); 2589fe61450SChristian Brauner err = vfs_rename(&rd); 259e9be9d5eSMiklos Szeredi if (err) { 2602773bf00SMiklos Szeredi pr_debug("...rename(%pd2, %pd2, ...) = %i\n", 261e9be9d5eSMiklos Szeredi olddentry, newdentry, err); 262e9be9d5eSMiklos Szeredi } 263e9be9d5eSMiklos Szeredi return err; 264e9be9d5eSMiklos Szeredi } 265e9be9d5eSMiklos Szeredi 266576bb263SChristian Brauner static inline int ovl_do_whiteout(struct ovl_fs *ofs, 267576bb263SChristian Brauner struct inode *dir, struct dentry *dentry) 268e9be9d5eSMiklos Szeredi { 269c67cf654SChristian Brauner int err = vfs_whiteout(ovl_upper_mnt_userns(ofs), dir, dentry); 270e9be9d5eSMiklos Szeredi pr_debug("whiteout(%pd2) = %i\n", dentry, err); 271e9be9d5eSMiklos Szeredi return err; 272e9be9d5eSMiklos Szeredi } 273e9be9d5eSMiklos Szeredi 274576bb263SChristian Brauner static inline struct dentry *ovl_do_tmpfile(struct ovl_fs *ofs, 275576bb263SChristian Brauner struct dentry *dentry, umode_t mode) 276e7f52429SAmir Goldstein { 277c67cf654SChristian Brauner struct dentry *ret = vfs_tmpfile(ovl_upper_mnt_userns(ofs), dentry, mode, 0); 2787879cb43SVasyl Gomonovych int err = PTR_ERR_OR_ZERO(ret); 279e7f52429SAmir Goldstein 280e7f52429SAmir Goldstein pr_debug("tmpfile(%pd2, 0%o) = %i\n", dentry, mode, err); 281e7f52429SAmir Goldstein return ret; 282e7f52429SAmir Goldstein } 283e7f52429SAmir Goldstein 2840c288874SVivek Goyal static inline bool ovl_open_flags_need_copy_up(int flags) 2850c288874SVivek Goyal { 2860c288874SVivek Goyal if (!flags) 2870c288874SVivek Goyal return false; 2880c288874SVivek Goyal 2890c288874SVivek Goyal return ((OPEN_FMODE(flags) & FMODE_WRITE) || (flags & O_TRUNC)); 2900c288874SVivek Goyal } 2910c288874SVivek Goyal 292ca45275cSVyacheslav Yurkov static inline bool ovl_allow_offline_changes(struct ovl_fs *ofs) 293ca45275cSVyacheslav Yurkov { 294ca45275cSVyacheslav Yurkov /* 295ca45275cSVyacheslav Yurkov * To avoid regressions in existing setups with overlay lower offline 296ca45275cSVyacheslav Yurkov * changes, we allow lower changes only if none of the new features 297ca45275cSVyacheslav Yurkov * are used. 298ca45275cSVyacheslav Yurkov */ 299ca45275cSVyacheslav Yurkov return (!ofs->config.index && !ofs->config.metacopy && 300ca45275cSVyacheslav Yurkov !ofs->config.redirect_dir && ofs->config.xino != OVL_XINO_ON); 301ca45275cSVyacheslav Yurkov } 302ca45275cSVyacheslav Yurkov 303ca45275cSVyacheslav Yurkov 304bbb1e54dSMiklos Szeredi /* util.c */ 305bbb1e54dSMiklos Szeredi int ovl_want_write(struct dentry *dentry); 306bbb1e54dSMiklos Szeredi void ovl_drop_write(struct dentry *dentry); 307bbb1e54dSMiklos Szeredi struct dentry *ovl_workdir(struct dentry *dentry); 308bbb1e54dSMiklos Szeredi const struct cred *ovl_override_creds(struct super_block *sb); 309e487d889SAmir Goldstein int ovl_can_decode_fh(struct super_block *sb); 31002bcd157SAmir Goldstein struct dentry *ovl_indexdir(struct super_block *sb); 311f168f109SAmir Goldstein bool ovl_index_all(struct super_block *sb); 312f168f109SAmir Goldstein bool ovl_verify_lower(struct super_block *sb); 313bbb1e54dSMiklos Szeredi struct ovl_entry *ovl_alloc_entry(unsigned int numlower); 314bbb1e54dSMiklos Szeredi bool ovl_dentry_remote(struct dentry *dentry); 315f4288844SMiklos Szeredi void ovl_dentry_update_reval(struct dentry *dentry, struct dentry *upperdentry, 316f4288844SMiklos Szeredi unsigned int mask); 317bbb1e54dSMiklos Szeredi bool ovl_dentry_weird(struct dentry *dentry); 318e9be9d5eSMiklos Szeredi enum ovl_path_type ovl_path_type(struct dentry *dentry); 319e9be9d5eSMiklos Szeredi void ovl_path_upper(struct dentry *dentry, struct path *path); 320e9be9d5eSMiklos Szeredi void ovl_path_lower(struct dentry *dentry, struct path *path); 3214f93b426SVivek Goyal void ovl_path_lowerdata(struct dentry *dentry, struct path *path); 322e9be9d5eSMiklos Szeredi enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path); 323*1248ea4bSAmir Goldstein enum ovl_path_type ovl_path_realdata(struct dentry *dentry, struct path *path); 324e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_upper(struct dentry *dentry); 325e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_lower(struct dentry *dentry); 326647d253fSVivek Goyal struct dentry *ovl_dentry_lowerdata(struct dentry *dentry); 32713464165SMiklos Szeredi const struct ovl_layer *ovl_layer_lower(struct dentry *dentry); 328e9be9d5eSMiklos Szeredi struct dentry *ovl_dentry_real(struct dentry *dentry); 3291d88f183SMiklos Szeredi struct dentry *ovl_i_dentry_upper(struct inode *inode); 33009d8b586SMiklos Szeredi struct inode *ovl_inode_upper(struct inode *inode); 33109d8b586SMiklos Szeredi struct inode *ovl_inode_lower(struct inode *inode); 3322664bd08SVivek Goyal struct inode *ovl_inode_lowerdata(struct inode *inode); 33309d8b586SMiklos Szeredi struct inode *ovl_inode_real(struct inode *inode); 3344823d49cSVivek Goyal struct inode *ovl_inode_realdata(struct inode *inode); 3354edb83bbSMiklos Szeredi struct ovl_dir_cache *ovl_dir_cache(struct inode *inode); 3364edb83bbSMiklos Szeredi void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache); 337c62520a8SAmir Goldstein void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry); 338c62520a8SAmir Goldstein void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry); 339c62520a8SAmir Goldstein bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry); 340e9be9d5eSMiklos Szeredi bool ovl_dentry_is_opaque(struct dentry *dentry); 341c412ce49SMiklos Szeredi bool ovl_dentry_is_whiteout(struct dentry *dentry); 3425cf5b477SMiklos Szeredi void ovl_dentry_set_opaque(struct dentry *dentry); 34355acc661SMiklos Szeredi bool ovl_dentry_has_upper_alias(struct dentry *dentry); 34455acc661SMiklos Szeredi void ovl_dentry_set_upper_alias(struct dentry *dentry); 3450c288874SVivek Goyal bool ovl_dentry_needs_data_copy_up(struct dentry *dentry, int flags); 3460c288874SVivek Goyal bool ovl_dentry_needs_data_copy_up_locked(struct dentry *dentry, int flags); 3470c288874SVivek Goyal bool ovl_has_upperdata(struct inode *inode); 3480c288874SVivek Goyal void ovl_set_upperdata(struct inode *inode); 349a6c60655SMiklos Szeredi bool ovl_redirect_dir(struct super_block *sb); 350a6c60655SMiklos Szeredi const char *ovl_dentry_get_redirect(struct dentry *dentry); 351a6c60655SMiklos Szeredi void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect); 35209d8b586SMiklos Szeredi void ovl_inode_update(struct inode *inode, struct dentry *upperdentry); 353d9854c87SMiklos Szeredi void ovl_dir_modified(struct dentry *dentry, bool impurity); 354bbb1e54dSMiklos Szeredi u64 ovl_dentry_version_get(struct dentry *dentry); 355bbb1e54dSMiklos Szeredi bool ovl_is_whiteout(struct dentry *dentry); 356e9be9d5eSMiklos Szeredi struct file *ovl_path_open(struct path *path, int flags); 3570c288874SVivek Goyal int ovl_copy_up_start(struct dentry *dentry, int flags); 35839d3d60aSAmir Goldstein void ovl_copy_up_end(struct dentry *dentry); 3590c288874SVivek Goyal bool ovl_already_copied_up(struct dentry *dentry, int flags); 360610afc0bSMiklos Szeredi bool ovl_check_origin_xattr(struct ovl_fs *ofs, struct dentry *dentry); 361610afc0bSMiklos Szeredi bool ovl_check_dir_xattr(struct super_block *sb, struct dentry *dentry, 36243d193f8SMiklos Szeredi enum ovl_xattr ox); 363a0c236b1SAmir Goldstein int ovl_check_setxattr(struct ovl_fs *ofs, struct dentry *upperdentry, 36443d193f8SMiklos Szeredi enum ovl_xattr ox, const void *value, size_t size, 365f3a15685SAmir Goldstein int xerr); 366f3a15685SAmir Goldstein int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry); 367ad0af710SAmir Goldstein bool ovl_inuse_trylock(struct dentry *dentry); 368ad0af710SAmir Goldstein void ovl_inuse_unlock(struct dentry *dentry); 369146d62e5SAmir Goldstein bool ovl_is_inuse(struct dentry *dentry); 37024b33ee1SAmir Goldstein bool ovl_need_index(struct dentry *dentry); 3710e32992fSAmir Goldstein int ovl_nlink_start(struct dentry *dentry); 3720e32992fSAmir Goldstein void ovl_nlink_end(struct dentry *dentry); 3735820dc08SAmir Goldstein int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir); 374610afc0bSMiklos Szeredi int ovl_check_metacopy_xattr(struct ovl_fs *ofs, struct dentry *dentry); 37567d756c2SVivek Goyal bool ovl_is_metacopy_dentry(struct dentry *dentry); 376610afc0bSMiklos Szeredi char *ovl_get_redirect_xattr(struct ovl_fs *ofs, struct dentry *dentry, 377610afc0bSMiklos Szeredi int padding); 378335d3fc5SSargun Dhillon int ovl_sync_status(struct ovl_fs *ofs); 379f3a15685SAmir Goldstein 38065cd913eSAmir Goldstein static inline void ovl_set_flag(unsigned long flag, struct inode *inode) 38165cd913eSAmir Goldstein { 38265cd913eSAmir Goldstein set_bit(flag, &OVL_I(inode)->flags); 38365cd913eSAmir Goldstein } 38465cd913eSAmir Goldstein 38565cd913eSAmir Goldstein static inline void ovl_clear_flag(unsigned long flag, struct inode *inode) 38665cd913eSAmir Goldstein { 38765cd913eSAmir Goldstein clear_bit(flag, &OVL_I(inode)->flags); 38865cd913eSAmir Goldstein } 38965cd913eSAmir Goldstein 39065cd913eSAmir Goldstein static inline bool ovl_test_flag(unsigned long flag, struct inode *inode) 39165cd913eSAmir Goldstein { 39265cd913eSAmir Goldstein return test_bit(flag, &OVL_I(inode)->flags); 39365cd913eSAmir Goldstein } 39465cd913eSAmir Goldstein 395610afc0bSMiklos Szeredi static inline bool ovl_is_impuredir(struct super_block *sb, 396610afc0bSMiklos Szeredi struct dentry *dentry) 397f3a15685SAmir Goldstein { 398610afc0bSMiklos Szeredi return ovl_check_dir_xattr(sb, dentry, OVL_XATTR_IMPURE); 399f3a15685SAmir Goldstein } 400f3a15685SAmir Goldstein 401926e94d7SAmir Goldstein /* 402926e94d7SAmir Goldstein * With xino=auto, we do best effort to keep all inodes on same st_dev and 403926e94d7SAmir Goldstein * d_ino consistent with st_ino. 404926e94d7SAmir Goldstein * With xino=on, we do the same effort but we warn if we failed. 405926e94d7SAmir Goldstein */ 406926e94d7SAmir Goldstein static inline bool ovl_xino_warn(struct super_block *sb) 407926e94d7SAmir Goldstein { 408926e94d7SAmir Goldstein return OVL_FS(sb)->config.xino == OVL_XINO_ON; 409926e94d7SAmir Goldstein } 410926e94d7SAmir Goldstein 4110f831ec8SAmir Goldstein /* All layers on same fs? */ 4120f831ec8SAmir Goldstein static inline bool ovl_same_fs(struct super_block *sb) 4130f831ec8SAmir Goldstein { 4140f831ec8SAmir Goldstein return OVL_FS(sb)->xino_mode == 0; 4150f831ec8SAmir Goldstein } 4160f831ec8SAmir Goldstein 4170f831ec8SAmir Goldstein /* All overlay inodes have same st_dev? */ 4180f831ec8SAmir Goldstein static inline bool ovl_same_dev(struct super_block *sb) 4190f831ec8SAmir Goldstein { 4200f831ec8SAmir Goldstein return OVL_FS(sb)->xino_mode >= 0; 4210f831ec8SAmir Goldstein } 4220f831ec8SAmir Goldstein 423e487d889SAmir Goldstein static inline unsigned int ovl_xino_bits(struct super_block *sb) 424e487d889SAmir Goldstein { 4250f831ec8SAmir Goldstein return ovl_same_dev(sb) ? OVL_FS(sb)->xino_mode : 0; 426e487d889SAmir Goldstein } 427e487d889SAmir Goldstein 428531d3040SAmir Goldstein static inline void ovl_inode_lock(struct inode *inode) 429531d3040SAmir Goldstein { 430531d3040SAmir Goldstein mutex_lock(&OVL_I(inode)->lock); 431531d3040SAmir Goldstein } 432531d3040SAmir Goldstein 433531d3040SAmir Goldstein static inline int ovl_inode_lock_interruptible(struct inode *inode) 4341e92e307SAmir Goldstein { 4351e92e307SAmir Goldstein return mutex_lock_interruptible(&OVL_I(inode)->lock); 4361e92e307SAmir Goldstein } 4371e92e307SAmir Goldstein 4381e92e307SAmir Goldstein static inline void ovl_inode_unlock(struct inode *inode) 4391e92e307SAmir Goldstein { 4401e92e307SAmir Goldstein mutex_unlock(&OVL_I(inode)->lock); 4411e92e307SAmir Goldstein } 4421e92e307SAmir Goldstein 443e9be9d5eSMiklos Szeredi 444bbb1e54dSMiklos Szeredi /* namei.c */ 445cbe7fba8SAmir Goldstein int ovl_check_fb_len(struct ovl_fb *fb, int fb_len); 446cbe7fba8SAmir Goldstein 447cbe7fba8SAmir Goldstein static inline int ovl_check_fh_len(struct ovl_fh *fh, int fh_len) 448cbe7fba8SAmir Goldstein { 449522f6e6cSAmir Goldstein if (fh_len < sizeof(struct ovl_fh)) 450522f6e6cSAmir Goldstein return -EINVAL; 451522f6e6cSAmir Goldstein 452cbe7fba8SAmir Goldstein return ovl_check_fb_len(&fh->fb, fh_len - OVL_FH_WIRE_OFFSET); 453cbe7fba8SAmir Goldstein } 454cbe7fba8SAmir Goldstein 4551cdb0cb6SPavel Tikhomirov struct dentry *ovl_decode_real_fh(struct ovl_fs *ofs, struct ovl_fh *fh, 4561cdb0cb6SPavel Tikhomirov struct vfsmount *mnt, bool connected); 4578a22efa1SAmir Goldstein int ovl_check_origin_fh(struct ovl_fs *ofs, struct ovl_fh *fh, bool connected, 458f941866fSAmir Goldstein struct dentry *upperdentry, struct ovl_path **stackp); 459610afc0bSMiklos Szeredi int ovl_verify_set_fh(struct ovl_fs *ofs, struct dentry *dentry, 46043d193f8SMiklos Szeredi enum ovl_xattr ox, struct dentry *real, bool is_upper, 461610afc0bSMiklos Szeredi bool set); 4623b0bfc6eSAmir Goldstein struct dentry *ovl_index_upper(struct ovl_fs *ofs, struct dentry *index); 4631eff1a1dSAmir Goldstein int ovl_verify_index(struct ovl_fs *ofs, struct dentry *index); 4641cdb0cb6SPavel Tikhomirov int ovl_get_index_name(struct ovl_fs *ofs, struct dentry *origin, 4651cdb0cb6SPavel Tikhomirov struct qstr *name); 46691ffe7beSAmir Goldstein struct dentry *ovl_get_index_fh(struct ovl_fs *ofs, struct ovl_fh *fh); 46706170154SAmir Goldstein struct dentry *ovl_lookup_index(struct ovl_fs *ofs, struct dentry *upper, 46806170154SAmir Goldstein struct dentry *origin, bool verify); 469bbb1e54dSMiklos Szeredi int ovl_path_next(int idx, struct dentry *dentry, struct path *path); 4701eff1a1dSAmir Goldstein struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry, 4711eff1a1dSAmir Goldstein unsigned int flags); 472bbb1e54dSMiklos Szeredi bool ovl_lower_positive(struct dentry *dentry); 473e9be9d5eSMiklos Szeredi 474610afc0bSMiklos Szeredi static inline int ovl_verify_origin(struct ovl_fs *ofs, struct dentry *upper, 47505122443SAmir Goldstein struct dentry *origin, bool set) 47605122443SAmir Goldstein { 477610afc0bSMiklos Szeredi return ovl_verify_set_fh(ofs, upper, OVL_XATTR_ORIGIN, origin, 478610afc0bSMiklos Szeredi false, set); 47905122443SAmir Goldstein } 48005122443SAmir Goldstein 481610afc0bSMiklos Szeredi static inline int ovl_verify_upper(struct ovl_fs *ofs, struct dentry *index, 482ad1d615cSAmir Goldstein struct dentry *upper, bool set) 483ad1d615cSAmir Goldstein { 484610afc0bSMiklos Szeredi return ovl_verify_set_fh(ofs, index, OVL_XATTR_UPPER, upper, true, set); 485ad1d615cSAmir Goldstein } 486ad1d615cSAmir Goldstein 487e9be9d5eSMiklos Szeredi /* readdir.c */ 488e9be9d5eSMiklos Szeredi extern const struct file_operations ovl_dir_operations; 48961536bedSAmir Goldstein struct file *ovl_dir_real_file(const struct file *file, bool want_upper); 490e9be9d5eSMiklos Szeredi int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list); 491576bb263SChristian Brauner void ovl_cleanup_whiteouts(struct ovl_fs *ofs, struct dentry *upper, 492576bb263SChristian Brauner struct list_head *list); 493e9be9d5eSMiklos Szeredi void ovl_cache_free(struct list_head *list); 4944edb83bbSMiklos Szeredi void ovl_dir_cache_free(struct inode *inode); 49545aebeafSVivek Goyal int ovl_check_d_type_supported(struct path *realpath); 496576bb263SChristian Brauner int ovl_workdir_cleanup(struct ovl_fs *ofs, struct inode *dir, 497576bb263SChristian Brauner struct vfsmount *mnt, struct dentry *dentry, int level); 4981eff1a1dSAmir Goldstein int ovl_indexdir_cleanup(struct ovl_fs *ofs); 499e9be9d5eSMiklos Szeredi 50065cd913eSAmir Goldstein /* 50165cd913eSAmir Goldstein * Can we iterate real dir directly? 50265cd913eSAmir Goldstein * 50365cd913eSAmir Goldstein * Non-merge dir may contain whiteouts from a time it was a merge upper, before 50465cd913eSAmir Goldstein * lower dir was removed under it and possibly before it was rotated from upper 50565cd913eSAmir Goldstein * to lower layer. 50665cd913eSAmir Goldstein */ 50765cd913eSAmir Goldstein static inline bool ovl_dir_is_real(struct dentry *dir) 50865cd913eSAmir Goldstein { 50965cd913eSAmir Goldstein return !ovl_test_flag(OVL_WHITEOUTS, d_inode(dir)); 51065cd913eSAmir Goldstein } 51165cd913eSAmir Goldstein 512e9be9d5eSMiklos Szeredi /* inode.c */ 5135f8415d6SAmir Goldstein int ovl_set_nlink_upper(struct dentry *dentry); 5145f8415d6SAmir Goldstein int ovl_set_nlink_lower(struct dentry *dentry); 515610afc0bSMiklos Szeredi unsigned int ovl_get_nlink(struct ovl_fs *ofs, struct dentry *lowerdentry, 516caf70cb2SAmir Goldstein struct dentry *upperdentry, 517caf70cb2SAmir Goldstein unsigned int fallback); 518549c7297SChristian Brauner int ovl_setattr(struct user_namespace *mnt_userns, struct dentry *dentry, 519549c7297SChristian Brauner struct iattr *attr); 520549c7297SChristian Brauner int ovl_getattr(struct user_namespace *mnt_userns, const struct path *path, 521549c7297SChristian Brauner struct kstat *stat, u32 request_mask, unsigned int flags); 522549c7297SChristian Brauner int ovl_permission(struct user_namespace *mnt_userns, struct inode *inode, 523549c7297SChristian Brauner int mask); 5241d88f183SMiklos Szeredi int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name, 5251d88f183SMiklos Szeredi const void *value, size_t size, int flags); 5261d88f183SMiklos Szeredi int ovl_xattr_get(struct dentry *dentry, struct inode *inode, const char *name, 5270eb45fc3SAndreas Gruenbacher void *value, size_t size); 528e9be9d5eSMiklos Szeredi ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size); 5290cad6246SMiklos Szeredi struct posix_acl *ovl_get_acl(struct inode *inode, int type, bool rcu); 53095582b00SDeepa Dinamani int ovl_update_time(struct inode *inode, struct timespec64 *ts, int flags); 531610afc0bSMiklos Szeredi bool ovl_is_private_xattr(struct super_block *sb, const char *name); 532e9be9d5eSMiklos Szeredi 533ac6a52ebSVivek Goyal struct ovl_inode_params { 53401b39dccSAmir Goldstein struct inode *newinode; 535ac6a52ebSVivek Goyal struct dentry *upperdentry; 536ac6a52ebSVivek Goyal struct ovl_path *lowerpath; 53774c6e384SMiklos Szeredi bool index; 538ac6a52ebSVivek Goyal unsigned int numlower; 5399cec54c8SVivek Goyal char *redirect; 5402664bd08SVivek Goyal struct dentry *lowerdata; 541ac6a52ebSVivek Goyal }; 54262c832edSAmir Goldstein void ovl_inode_init(struct inode *inode, struct ovl_inode_params *oip, 54362c832edSAmir Goldstein unsigned long ino, int fsid); 544ca4c8a3aSMiklos Szeredi struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev); 5454b91c30aSAmir Goldstein struct inode *ovl_lookup_inode(struct super_block *sb, struct dentry *real, 5464b91c30aSAmir Goldstein bool is_upper); 547146d62e5SAmir Goldstein bool ovl_lookup_trap_inode(struct super_block *sb, struct dentry *dir); 548146d62e5SAmir Goldstein struct inode *ovl_get_trap_inode(struct super_block *sb, struct dentry *dir); 549ac6a52ebSVivek Goyal struct inode *ovl_get_inode(struct super_block *sb, 550ac6a52ebSVivek Goyal struct ovl_inode_params *oip); 551e9be9d5eSMiklos Szeredi static inline void ovl_copyattr(struct inode *from, struct inode *to) 552e9be9d5eSMiklos Szeredi { 553e9be9d5eSMiklos Szeredi to->i_uid = from->i_uid; 554e9be9d5eSMiklos Szeredi to->i_gid = from->i_gid; 55507a2daabSVivek Goyal to->i_mode = from->i_mode; 556d719e8f2SMiklos Szeredi to->i_atime = from->i_atime; 557d719e8f2SMiklos Szeredi to->i_mtime = from->i_mtime; 558d719e8f2SMiklos Szeredi to->i_ctime = from->i_ctime; 55946e5d0a3SMiklos Szeredi i_size_write(to, i_size_read(from)); 560e9be9d5eSMiklos Szeredi } 561e9be9d5eSMiklos Szeredi 56272db8211SAmir Goldstein /* vfs inode flags copied from real to ovl inode */ 56372db8211SAmir Goldstein #define OVL_COPY_I_FLAGS_MASK (S_SYNC | S_NOATIME | S_APPEND | S_IMMUTABLE) 564096a218aSAmir Goldstein /* vfs inode flags read from overlay.protattr xattr to ovl inode */ 565096a218aSAmir Goldstein #define OVL_PROT_I_FLAGS_MASK (S_APPEND | S_IMMUTABLE) 56672db8211SAmir Goldstein 56772db8211SAmir Goldstein /* 56872db8211SAmir Goldstein * fileattr flags copied from lower to upper inode on copy up. 569096a218aSAmir Goldstein * We cannot copy up immutable/append-only flags, because that would prevent 570096a218aSAmir Goldstein * linking temp inode to upper dir, so we store them in xattr instead. 57172db8211SAmir Goldstein */ 57272db8211SAmir Goldstein #define OVL_COPY_FS_FLAGS_MASK (FS_SYNC_FL | FS_NOATIME_FL) 57372db8211SAmir Goldstein #define OVL_COPY_FSX_FLAGS_MASK (FS_XFLAG_SYNC | FS_XFLAG_NOATIME) 574096a218aSAmir Goldstein #define OVL_PROT_FS_FLAGS_MASK (FS_APPEND_FL | FS_IMMUTABLE_FL) 575096a218aSAmir Goldstein #define OVL_PROT_FSX_FLAGS_MASK (FS_XFLAG_APPEND | FS_XFLAG_IMMUTABLE) 576096a218aSAmir Goldstein 577096a218aSAmir Goldstein void ovl_check_protattr(struct inode *inode, struct dentry *upper); 578096a218aSAmir Goldstein int ovl_set_protattr(struct inode *inode, struct dentry *upper, 579096a218aSAmir Goldstein struct fileattr *fa); 58072db8211SAmir Goldstein 5814f357295SMiklos Szeredi static inline void ovl_copyflags(struct inode *from, struct inode *to) 5824f357295SMiklos Szeredi { 58372db8211SAmir Goldstein unsigned int mask = OVL_COPY_I_FLAGS_MASK; 5844f357295SMiklos Szeredi 5854f357295SMiklos Szeredi inode_set_flags(to, from->i_flags & mask, mask); 5864f357295SMiklos Szeredi } 5874f357295SMiklos Szeredi 588e9be9d5eSMiklos Szeredi /* dir.c */ 589e9be9d5eSMiklos Szeredi extern const struct inode_operations ovl_dir_inode_operations; 590c21c839bSChengguang Xu int ovl_cleanup_and_whiteout(struct ovl_fs *ofs, struct inode *dir, 591e7dd0e71SAmir Goldstein struct dentry *dentry); 592471ec5dcSAmir Goldstein struct ovl_cattr { 59332a3d848SAl Viro dev_t rdev; 59432a3d848SAl Viro umode_t mode; 59532a3d848SAl Viro const char *link; 596471ec5dcSAmir Goldstein struct dentry *hardlink; 59732a3d848SAl Viro }; 598471ec5dcSAmir Goldstein 599471ec5dcSAmir Goldstein #define OVL_CATTR(m) (&(struct ovl_cattr) { .mode = (m) }) 600471ec5dcSAmir Goldstein 601576bb263SChristian Brauner int ovl_mkdir_real(struct ovl_fs *ofs, struct inode *dir, 602576bb263SChristian Brauner struct dentry **newdentry, umode_t mode); 603576bb263SChristian Brauner struct dentry *ovl_create_real(struct ovl_fs *ofs, 604576bb263SChristian Brauner struct inode *dir, struct dentry *newdentry, 605471ec5dcSAmir Goldstein struct ovl_cattr *attr); 606576bb263SChristian Brauner int ovl_cleanup(struct ovl_fs *ofs, struct inode *dir, struct dentry *dentry); 607576bb263SChristian Brauner struct dentry *ovl_lookup_temp(struct ovl_fs *ofs, struct dentry *workdir); 608576bb263SChristian Brauner struct dentry *ovl_create_temp(struct ovl_fs *ofs, struct dentry *workdir, 609576bb263SChristian Brauner struct ovl_cattr *attr); 610e9be9d5eSMiklos Szeredi 611d1d04ef8SMiklos Szeredi /* file.c */ 612d1d04ef8SMiklos Szeredi extern const struct file_operations ovl_file_operations; 6132406a307SJiufei Xue int __init ovl_aio_request_cache_init(void); 6142406a307SJiufei Xue void ovl_aio_request_cache_destroy(void); 61572db8211SAmir Goldstein int ovl_real_fileattr_get(struct path *realpath, struct fileattr *fa); 61672db8211SAmir Goldstein int ovl_real_fileattr_set(struct path *realpath, struct fileattr *fa); 61766dbfabfSMiklos Szeredi int ovl_fileattr_get(struct dentry *dentry, struct fileattr *fa); 61866dbfabfSMiklos Szeredi int ovl_fileattr_set(struct user_namespace *mnt_userns, 61966dbfabfSMiklos Szeredi struct dentry *dentry, struct fileattr *fa); 620d1d04ef8SMiklos Szeredi 621e9be9d5eSMiklos Szeredi /* copy_up.c */ 622e9be9d5eSMiklos Szeredi int ovl_copy_up(struct dentry *dentry); 623d1e6f6a9SVivek Goyal int ovl_copy_up_with_data(struct dentry *dentry); 6243428030dSAmir Goldstein int ovl_maybe_copy_up(struct dentry *dentry, int flags); 625610afc0bSMiklos Szeredi int ovl_copy_xattr(struct super_block *sb, struct dentry *old, 626610afc0bSMiklos Szeredi struct dentry *new); 6275272eaf3SChristian Brauner int ovl_set_attr(struct ovl_fs *ofs, struct dentry *upper, struct kstat *stat); 6281cdb0cb6SPavel Tikhomirov struct ovl_fh *ovl_encode_real_fh(struct ovl_fs *ofs, struct dentry *real, 6291cdb0cb6SPavel Tikhomirov bool is_upper); 630a0c236b1SAmir Goldstein int ovl_set_origin(struct ovl_fs *ofs, struct dentry *lower, 631a0c236b1SAmir Goldstein struct dentry *upper); 6328ed5eec9SAmir Goldstein 6338ed5eec9SAmir Goldstein /* export.c */ 6348ed5eec9SAmir Goldstein extern const struct export_operations ovl_export_operations; 635