1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2011 Novell Inc.
7 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/file.h>
11 #include <linux/fileattr.h>
12 #include <linux/splice.h>
13 #include <linux/xattr.h>
14 #include <linux/security.h>
15 #include <linux/uaccess.h>
16 #include <linux/sched/signal.h>
17 #include <linux/cred.h>
18 #include <linux/namei.h>
19 #include <linux/fdtable.h>
20 #include <linux/ratelimit.h>
21 #include <linux/exportfs.h>
22 #include "overlayfs.h"
24 #define OVL_COPY_UP_CHUNK_SIZE (1 << 20)
26 static int ovl_ccup_set(const char *buf, const struct kernel_param *param)
28 pr_warn("\"check_copy_up\" module option is obsolete\n");
32 static int ovl_ccup_get(char *buf, const struct kernel_param *param)
34 return sprintf(buf, "N\n");
37 module_param_call(check_copy_up, ovl_ccup_set, ovl_ccup_get, NULL, 0644);
38 MODULE_PARM_DESC(check_copy_up, "Obsolete; does nothing");
40 static bool ovl_must_copy_xattr(const char *name)
42 return !strcmp(name, XATTR_POSIX_ACL_ACCESS) ||
43 !strcmp(name, XATTR_POSIX_ACL_DEFAULT) ||
44 !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN);
47 static int ovl_copy_acl(struct ovl_fs *ofs, const struct path *path,
48 struct dentry *dentry, const char *acl_name)
51 struct posix_acl *clone, *real_acl = NULL;
53 real_acl = ovl_get_acl_path(path, acl_name, false);
57 if (IS_ERR(real_acl)) {
58 err = PTR_ERR(real_acl);
59 if (err == -ENODATA || err == -EOPNOTSUPP)
64 clone = posix_acl_clone(real_acl, GFP_KERNEL);
65 posix_acl_release(real_acl); /* release original acl */
69 err = ovl_do_set_acl(ofs, dentry, acl_name, clone);
71 /* release cloned acl */
72 posix_acl_release(clone);
76 int ovl_copy_xattr(struct super_block *sb, const struct path *oldpath, struct dentry *new)
78 struct dentry *old = oldpath->dentry;
79 ssize_t list_size, size, value_size = 0;
80 char *buf, *name, *value = NULL;
84 if (!old->d_inode->i_op->listxattr || !new->d_inode->i_op->listxattr)
87 list_size = vfs_listxattr(old, NULL, 0);
89 if (list_size == -EOPNOTSUPP)
94 buf = kvzalloc(list_size, GFP_KERNEL);
98 list_size = vfs_listxattr(old, buf, list_size);
104 for (name = buf; list_size; name += slen) {
105 slen = strnlen(name, list_size) + 1;
107 /* underlying fs providing us with an broken xattr list? */
108 if (WARN_ON(slen > list_size)) {
114 if (ovl_is_private_xattr(sb, name))
117 error = security_inode_copy_up_xattr(name);
118 if (error < 0 && error != -EOPNOTSUPP)
122 continue; /* Discard */
125 if (is_posix_acl_xattr(name)) {
126 error = ovl_copy_acl(OVL_FS(sb), oldpath, new, name);
129 /* POSIX ACLs must be copied. */
134 size = ovl_do_getxattr(oldpath, name, value, value_size);
136 size = ovl_do_getxattr(oldpath, name, NULL, 0);
143 if (size > value_size) {
146 new = kvmalloc(size, GFP_KERNEL);
157 error = ovl_do_setxattr(OVL_FS(sb), new, name, value, size, 0);
159 if (error != -EOPNOTSUPP || ovl_must_copy_xattr(name))
162 /* Ignore failure to copy unknown xattrs */
172 static int ovl_copy_fileattr(struct inode *inode, const struct path *old,
173 const struct path *new)
175 struct fileattr oldfa = { .flags_valid = true };
176 struct fileattr newfa = { .flags_valid = true };
179 err = ovl_real_fileattr_get(old, &oldfa);
181 /* Ntfs-3g returns -EINVAL for "no fileattr support" */
182 if (err == -ENOTTY || err == -EINVAL)
184 pr_warn("failed to retrieve lower fileattr (%pd2, err=%i)\n",
190 * We cannot set immutable and append-only flags on upper inode,
191 * because we would not be able to link upper inode to upper dir
192 * not set overlay private xattr on upper inode.
193 * Store these flags in overlay.protattr xattr instead.
195 if (oldfa.flags & OVL_PROT_FS_FLAGS_MASK) {
196 err = ovl_set_protattr(inode, new->dentry, &oldfa);
198 pr_warn_once("copying fileattr: no xattr on upper\n");
203 /* Don't bother copying flags if none are set */
204 if (!(oldfa.flags & OVL_COPY_FS_FLAGS_MASK))
207 err = ovl_real_fileattr_get(new, &newfa);
210 * Returning an error if upper doesn't support fileattr will
211 * result in a regression, so revert to the old behavior.
213 if (err == -ENOTTY || err == -EINVAL) {
214 pr_warn_once("copying fileattr: no support on upper\n");
217 pr_warn("failed to retrieve upper fileattr (%pd2, err=%i)\n",
222 BUILD_BUG_ON(OVL_COPY_FS_FLAGS_MASK & ~FS_COMMON_FL);
223 newfa.flags &= ~OVL_COPY_FS_FLAGS_MASK;
224 newfa.flags |= (oldfa.flags & OVL_COPY_FS_FLAGS_MASK);
226 BUILD_BUG_ON(OVL_COPY_FSX_FLAGS_MASK & ~FS_XFLAG_COMMON);
227 newfa.fsx_xflags &= ~OVL_COPY_FSX_FLAGS_MASK;
228 newfa.fsx_xflags |= (oldfa.fsx_xflags & OVL_COPY_FSX_FLAGS_MASK);
230 return ovl_real_fileattr_set(new, &newfa);
233 static int ovl_copy_up_file(struct ovl_fs *ofs, struct dentry *dentry,
234 struct file *new_file, loff_t len)
236 struct path datapath;
237 struct file *old_file;
241 loff_t data_pos = -1;
243 bool skip_hole = false;
246 ovl_path_lowerdata(dentry, &datapath);
247 if (WARN_ON(datapath.dentry == NULL))
250 old_file = ovl_path_open(&datapath, O_LARGEFILE | O_RDONLY);
251 if (IS_ERR(old_file))
252 return PTR_ERR(old_file);
254 /* Try to use clone_file_range to clone up within the same fs */
255 cloned = do_clone_file_range(old_file, 0, new_file, 0, len, 0);
258 /* Couldn't clone, so now we try to copy the data */
260 /* Check if lower fs supports seek operation */
261 if (old_file->f_mode & FMODE_LSEEK)
265 size_t this_len = OVL_COPY_UP_CHUNK_SIZE;
271 if (signal_pending_state(TASK_KILLABLE, current)) {
277 * Fill zero for hole will cost unnecessary disk space
278 * and meanwhile slow down the copy-up speed, so we do
279 * an optimization for hole during copy-up, it relies
280 * on SEEK_DATA implementation in lower fs so if lower
281 * fs does not support it, copy-up will behave as before.
283 * Detail logic of hole detection as below:
284 * When we detect next data position is larger than current
285 * position we will skip that hole, otherwise we copy
286 * data in the size of OVL_COPY_UP_CHUNK_SIZE. Actually,
287 * it may not recognize all kind of holes and sometimes
288 * only skips partial of hole area. However, it will be
289 * enough for most of the use cases.
292 if (skip_hole && data_pos < old_pos) {
293 data_pos = vfs_llseek(old_file, old_pos, SEEK_DATA);
294 if (data_pos > old_pos) {
295 hole_len = data_pos - old_pos;
297 old_pos = new_pos = data_pos;
299 } else if (data_pos == -ENXIO) {
301 } else if (data_pos < 0) {
306 bytes = do_splice_direct(old_file, &old_pos,
308 this_len, SPLICE_F_MOVE);
313 WARN_ON(old_pos != new_pos);
317 if (!error && ovl_should_sync(ofs))
318 error = vfs_fsync(new_file, 0);
324 static int ovl_set_size(struct ovl_fs *ofs,
325 struct dentry *upperdentry, struct kstat *stat)
327 struct iattr attr = {
328 .ia_valid = ATTR_SIZE,
329 .ia_size = stat->size,
332 return ovl_do_notify_change(ofs, upperdentry, &attr);
335 static int ovl_set_timestamps(struct ovl_fs *ofs, struct dentry *upperdentry,
338 struct iattr attr = {
340 ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET,
341 .ia_atime = stat->atime,
342 .ia_mtime = stat->mtime,
345 return ovl_do_notify_change(ofs, upperdentry, &attr);
348 int ovl_set_attr(struct ovl_fs *ofs, struct dentry *upperdentry,
353 if (!S_ISLNK(stat->mode)) {
354 struct iattr attr = {
355 .ia_valid = ATTR_MODE,
356 .ia_mode = stat->mode,
358 err = ovl_do_notify_change(ofs, upperdentry, &attr);
361 struct iattr attr = {
362 .ia_valid = ATTR_UID | ATTR_GID,
363 .ia_vfsuid = VFSUIDT_INIT(stat->uid),
364 .ia_vfsgid = VFSGIDT_INIT(stat->gid),
366 err = ovl_do_notify_change(ofs, upperdentry, &attr);
369 ovl_set_timestamps(ofs, upperdentry, stat);
374 struct ovl_fh *ovl_encode_real_fh(struct ovl_fs *ofs, struct dentry *real,
379 int buflen = MAX_HANDLE_SZ;
380 uuid_t *uuid = &real->d_sb->s_uuid;
383 /* Make sure the real fid stays 32bit aligned */
384 BUILD_BUG_ON(OVL_FH_FID_OFFSET % 4);
385 BUILD_BUG_ON(MAX_HANDLE_SZ + OVL_FH_FID_OFFSET > 255);
387 fh = kzalloc(buflen + OVL_FH_FID_OFFSET, GFP_KERNEL);
389 return ERR_PTR(-ENOMEM);
392 * We encode a non-connectable file handle for non-dir, because we
393 * only need to find the lower inode number and we don't want to pay
394 * the price or reconnecting the dentry.
396 dwords = buflen >> 2;
397 fh_type = exportfs_encode_fh(real, (void *)fh->fb.fid, &dwords, 0);
398 buflen = (dwords << 2);
401 if (WARN_ON(fh_type < 0) ||
402 WARN_ON(buflen > MAX_HANDLE_SZ) ||
403 WARN_ON(fh_type == FILEID_INVALID))
406 fh->fb.version = OVL_FH_VERSION;
407 fh->fb.magic = OVL_FH_MAGIC;
408 fh->fb.type = fh_type;
409 fh->fb.flags = OVL_FH_FLAG_CPU_ENDIAN;
411 * When we will want to decode an overlay dentry from this handle
412 * and all layers are on the same fs, if we get a disconncted real
413 * dentry when we decode fid, the only way to tell if we should assign
414 * it to upperdentry or to lowerstack is by checking this flag.
417 fh->fb.flags |= OVL_FH_FLAG_PATH_UPPER;
418 fh->fb.len = sizeof(fh->fb) + buflen;
419 if (ofs->config.uuid)
429 int ovl_set_origin(struct ovl_fs *ofs, struct dentry *lower,
430 struct dentry *upper)
432 const struct ovl_fh *fh = NULL;
436 * When lower layer doesn't support export operations store a 'null' fh,
437 * so we can use the overlay.origin xattr to distignuish between a copy
438 * up and a pure upper inode.
440 if (ovl_can_decode_fh(lower->d_sb)) {
441 fh = ovl_encode_real_fh(ofs, lower, false);
447 * Do not fail when upper doesn't support xattrs.
449 err = ovl_check_setxattr(ofs, upper, OVL_XATTR_ORIGIN, fh->buf,
450 fh ? fh->fb.len : 0, 0);
453 /* Ignore -EPERM from setting "user.*" on symlink/special */
454 return err == -EPERM ? 0 : err;
457 /* Store file handle of @upper dir in @index dir entry */
458 static int ovl_set_upper_fh(struct ovl_fs *ofs, struct dentry *upper,
459 struct dentry *index)
461 const struct ovl_fh *fh;
464 fh = ovl_encode_real_fh(ofs, upper, true);
468 err = ovl_setxattr(ofs, index, OVL_XATTR_UPPER, fh->buf, fh->fb.len);
475 * Create and install index entry.
477 * Caller must hold i_mutex on indexdir.
479 static int ovl_create_index(struct dentry *dentry, struct dentry *origin,
480 struct dentry *upper)
482 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
483 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
484 struct inode *dir = d_inode(indexdir);
485 struct dentry *index = NULL;
486 struct dentry *temp = NULL;
487 struct qstr name = { };
491 * For now this is only used for creating index entry for directories,
492 * because non-dir are copied up directly to index and then hardlinked
495 * TODO: implement create index for non-dir, so we can call it when
496 * encoding file handle for non-dir in case index does not exist.
498 if (WARN_ON(!d_is_dir(dentry)))
501 /* Directory not expected to be indexed before copy up */
502 if (WARN_ON(ovl_test_flag(OVL_INDEX, d_inode(dentry))))
505 err = ovl_get_index_name(ofs, origin, &name);
509 temp = ovl_create_temp(ofs, indexdir, OVL_CATTR(S_IFDIR | 0));
514 err = ovl_set_upper_fh(ofs, upper, temp);
518 index = ovl_lookup_upper(ofs, name.name, indexdir, name.len);
520 err = PTR_ERR(index);
522 err = ovl_do_rename(ofs, dir, temp, dir, index, 0);
527 ovl_cleanup(ofs, dir, temp);
534 struct ovl_copy_up_ctx {
535 struct dentry *parent;
536 struct dentry *dentry;
537 struct path lowerpath;
541 struct dentry *destdir;
542 struct qstr destname;
543 struct dentry *workdir;
549 static int ovl_link_up(struct ovl_copy_up_ctx *c)
552 struct dentry *upper;
553 struct dentry *upperdir = ovl_dentry_upper(c->parent);
554 struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
555 struct inode *udir = d_inode(upperdir);
557 /* Mark parent "impure" because it may now contain non-pure upper */
558 err = ovl_set_impure(c->parent, upperdir);
562 err = ovl_set_nlink_lower(c->dentry);
566 inode_lock_nested(udir, I_MUTEX_PARENT);
567 upper = ovl_lookup_upper(ofs, c->dentry->d_name.name, upperdir,
568 c->dentry->d_name.len);
569 err = PTR_ERR(upper);
570 if (!IS_ERR(upper)) {
571 err = ovl_do_link(ofs, ovl_dentry_upper(c->dentry), udir, upper);
575 /* Restore timestamps on parent (best effort) */
576 ovl_set_timestamps(ofs, upperdir, &c->pstat);
577 ovl_dentry_set_upper_alias(c->dentry);
578 ovl_dentry_update_reval(c->dentry, upper);
585 err = ovl_set_nlink_upper(c->dentry);
590 static int ovl_copy_up_data(struct ovl_copy_up_ctx *c, const struct path *temp)
592 struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
593 struct file *new_file;
596 if (!S_ISREG(c->stat.mode) || c->metacopy || !c->stat.size)
599 new_file = ovl_path_open(temp, O_LARGEFILE | O_WRONLY);
600 if (IS_ERR(new_file))
601 return PTR_ERR(new_file);
603 err = ovl_copy_up_file(ofs, c->dentry, new_file, c->stat.size);
609 static int ovl_copy_up_metadata(struct ovl_copy_up_ctx *c, struct dentry *temp)
611 struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
612 struct inode *inode = d_inode(c->dentry);
613 struct path upperpath = { .mnt = ovl_upper_mnt(ofs), .dentry = temp };
616 err = ovl_copy_xattr(c->dentry->d_sb, &c->lowerpath, temp);
620 if (inode->i_flags & OVL_COPY_I_FLAGS_MASK) {
622 * Copy the fileattr inode flags that are the source of already
625 err = ovl_copy_fileattr(inode, &c->lowerpath, &upperpath);
631 * Store identifier of lower inode in upper inode xattr to
632 * allow lookup of the copy up origin inode.
634 * Don't set origin when we are breaking the association with a lower
638 err = ovl_set_origin(ofs, c->lowerpath.dentry, temp);
644 err = ovl_check_setxattr(ofs, temp, OVL_XATTR_METACOPY,
645 NULL, 0, -EOPNOTSUPP);
650 inode_lock(temp->d_inode);
651 if (S_ISREG(c->stat.mode))
652 err = ovl_set_size(ofs, temp, &c->stat);
654 err = ovl_set_attr(ofs, temp, &c->stat);
655 inode_unlock(temp->d_inode);
660 struct ovl_cu_creds {
661 const struct cred *old;
665 static int ovl_prep_cu_creds(struct dentry *dentry, struct ovl_cu_creds *cc)
669 cc->old = cc->new = NULL;
670 err = security_inode_copy_up(dentry, &cc->new);
675 cc->old = override_creds(cc->new);
680 static void ovl_revert_cu_creds(struct ovl_cu_creds *cc)
683 revert_creds(cc->old);
689 * Copyup using workdir to prepare temp file. Used when copying up directories,
690 * special files or when upper fs doesn't support O_TMPFILE.
692 static int ovl_copy_up_workdir(struct ovl_copy_up_ctx *c)
694 struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
696 struct inode *udir = d_inode(c->destdir), *wdir = d_inode(c->workdir);
697 struct path path = { .mnt = ovl_upper_mnt(ofs) };
698 struct dentry *temp, *upper;
699 struct ovl_cu_creds cc;
701 struct ovl_cattr cattr = {
702 /* Can't properly set mode on creation because of the umask */
703 .mode = c->stat.mode & S_IFMT,
704 .rdev = c->stat.rdev,
708 /* workdir and destdir could be the same when copying up to indexdir */
710 if (lock_rename(c->workdir, c->destdir) != NULL)
713 err = ovl_prep_cu_creds(c->dentry, &cc);
717 temp = ovl_create_temp(ofs, c->workdir, &cattr);
718 ovl_revert_cu_creds(&cc);
725 * Copy up data first and then xattrs. Writing data after
726 * xattrs will remove security.capability xattr automatically.
729 err = ovl_copy_up_data(c, &path);
733 err = ovl_copy_up_metadata(c, temp);
737 if (S_ISDIR(c->stat.mode) && c->indexed) {
738 err = ovl_create_index(c->dentry, c->lowerpath.dentry, temp);
743 upper = ovl_lookup_upper(ofs, c->destname.name, c->destdir,
745 err = PTR_ERR(upper);
749 err = ovl_do_rename(ofs, wdir, temp, udir, upper, 0);
755 ovl_set_upperdata(d_inode(c->dentry));
756 inode = d_inode(c->dentry);
757 ovl_inode_update(inode, temp);
758 if (S_ISDIR(inode->i_mode))
759 ovl_set_flag(OVL_WHITEOUTS, inode);
761 unlock_rename(c->workdir, c->destdir);
766 ovl_cleanup(ofs, wdir, temp);
771 /* Copyup using O_TMPFILE which does not require cross dir locking */
772 static int ovl_copy_up_tmpfile(struct ovl_copy_up_ctx *c)
774 struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
775 struct inode *udir = d_inode(c->destdir);
776 struct dentry *temp, *upper;
777 struct file *tmpfile;
778 struct ovl_cu_creds cc;
781 err = ovl_prep_cu_creds(c->dentry, &cc);
785 tmpfile = ovl_do_tmpfile(ofs, c->workdir, c->stat.mode);
786 ovl_revert_cu_creds(&cc);
789 return PTR_ERR(tmpfile);
791 temp = tmpfile->f_path.dentry;
792 if (!c->metacopy && c->stat.size) {
793 err = ovl_copy_up_file(ofs, c->dentry, tmpfile, c->stat.size);
798 err = ovl_copy_up_metadata(c, temp);
802 inode_lock_nested(udir, I_MUTEX_PARENT);
804 upper = ovl_lookup_upper(ofs, c->destname.name, c->destdir,
806 err = PTR_ERR(upper);
807 if (!IS_ERR(upper)) {
808 err = ovl_do_link(ofs, temp, udir, upper);
817 ovl_set_upperdata(d_inode(c->dentry));
818 ovl_inode_update(d_inode(c->dentry), dget(temp));
826 * Copy up a single dentry
828 * All renames start with copy up of source if necessary. The actual
829 * rename will only proceed once the copy up was successful. Copy up uses
830 * upper parent i_mutex for exclusion. Since rename can change d_parent it
831 * is possible that the copy up will lock the old parent. At that point
832 * the file will have already been copied up anyway.
834 static int ovl_do_copy_up(struct ovl_copy_up_ctx *c)
837 struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
838 bool to_index = false;
841 * Indexed non-dir is copied up directly to the index entry and then
842 * hardlinked to upper dir. Indexed dir is copied up to indexdir,
843 * then index entry is created and then copied up dir installed.
844 * Copying dir up to indexdir instead of workdir simplifies locking.
846 if (ovl_need_index(c->dentry)) {
848 if (S_ISDIR(c->stat.mode))
849 c->workdir = ovl_indexdir(c->dentry->d_sb);
854 if (S_ISDIR(c->stat.mode) || c->stat.nlink == 1 || to_index)
858 c->destdir = ovl_indexdir(c->dentry->d_sb);
859 err = ovl_get_index_name(ofs, c->lowerpath.dentry, &c->destname);
862 } else if (WARN_ON(!c->parent)) {
863 /* Disconnected dentry must be copied up to index dir */
867 * Mark parent "impure" because it may now contain non-pure
870 err = ovl_set_impure(c->parent, c->destdir);
875 /* Should we copyup with O_TMPFILE or with workdir? */
876 if (S_ISREG(c->stat.mode) && ofs->tmpfile)
877 err = ovl_copy_up_tmpfile(c);
879 err = ovl_copy_up_workdir(c);
884 ovl_set_flag(OVL_INDEX, d_inode(c->dentry));
887 /* Initialize nlink for copy up of disconnected dentry */
888 err = ovl_set_nlink_upper(c->dentry);
890 struct inode *udir = d_inode(c->destdir);
892 /* Restore timestamps on parent (best effort) */
894 ovl_set_timestamps(ofs, c->destdir, &c->pstat);
897 ovl_dentry_set_upper_alias(c->dentry);
898 ovl_dentry_update_reval(c->dentry, ovl_dentry_upper(c->dentry));
903 kfree(c->destname.name);
907 static bool ovl_need_meta_copy_up(struct dentry *dentry, umode_t mode,
910 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
912 if (!ofs->config.metacopy)
918 if (flags && ((OPEN_FMODE(flags) & FMODE_WRITE) || (flags & O_TRUNC)))
924 static ssize_t ovl_getxattr_value(const struct path *path, char *name, char **value)
929 res = ovl_do_getxattr(path, name, NULL, 0);
930 if (res == -ENODATA || res == -EOPNOTSUPP)
934 buf = kzalloc(res, GFP_KERNEL);
938 res = ovl_do_getxattr(path, name, buf, res);
947 /* Copy up data of an inode which was copied up metadata only in the past. */
948 static int ovl_copy_up_meta_inode_data(struct ovl_copy_up_ctx *c)
950 struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
951 struct path upperpath;
953 char *capability = NULL;
956 ovl_path_upper(c->dentry, &upperpath);
957 if (WARN_ON(upperpath.dentry == NULL))
961 err = cap_size = ovl_getxattr_value(&upperpath, XATTR_NAME_CAPS,
967 err = ovl_copy_up_data(c, &upperpath);
972 * Writing to upper file will clear security.capability xattr. We
973 * don't want that to happen for normal copy-up operation.
976 err = ovl_do_setxattr(ofs, upperpath.dentry, XATTR_NAME_CAPS,
977 capability, cap_size, 0);
983 err = ovl_removexattr(ofs, upperpath.dentry, OVL_XATTR_METACOPY);
987 ovl_set_upperdata(d_inode(c->dentry));
994 static int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
998 DEFINE_DELAYED_CALL(done);
999 struct path parentpath;
1000 struct ovl_copy_up_ctx ctx = {
1003 .workdir = ovl_workdir(dentry),
1006 if (WARN_ON(!ctx.workdir))
1009 ovl_path_lower(dentry, &ctx.lowerpath);
1010 err = vfs_getattr(&ctx.lowerpath, &ctx.stat,
1011 STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
1015 if (!kuid_has_mapping(current_user_ns(), ctx.stat.uid) ||
1016 !kgid_has_mapping(current_user_ns(), ctx.stat.gid))
1019 ctx.metacopy = ovl_need_meta_copy_up(dentry, ctx.stat.mode, flags);
1022 ovl_path_upper(parent, &parentpath);
1023 ctx.destdir = parentpath.dentry;
1024 ctx.destname = dentry->d_name;
1026 err = vfs_getattr(&parentpath, &ctx.pstat,
1027 STATX_ATIME | STATX_MTIME,
1028 AT_STATX_SYNC_AS_STAT);
1033 /* maybe truncate regular file. this has no effect on dirs */
1034 if (flags & O_TRUNC)
1037 if (S_ISLNK(ctx.stat.mode)) {
1038 ctx.link = vfs_get_link(ctx.lowerpath.dentry, &done);
1039 if (IS_ERR(ctx.link))
1040 return PTR_ERR(ctx.link);
1043 err = ovl_copy_up_start(dentry, flags);
1044 /* err < 0: interrupted, err > 0: raced with another copy-up */
1045 if (unlikely(err)) {
1049 if (!ovl_dentry_upper(dentry))
1050 err = ovl_do_copy_up(&ctx);
1051 if (!err && parent && !ovl_dentry_has_upper_alias(dentry))
1052 err = ovl_link_up(&ctx);
1053 if (!err && ovl_dentry_needs_data_copy_up_locked(dentry, flags))
1054 err = ovl_copy_up_meta_inode_data(&ctx);
1055 ovl_copy_up_end(dentry);
1057 do_delayed_call(&done);
1062 static int ovl_copy_up_flags(struct dentry *dentry, int flags)
1065 const struct cred *old_cred;
1066 bool disconnected = (dentry->d_flags & DCACHE_DISCONNECTED);
1069 * With NFS export, copy up can get called for a disconnected non-dir.
1070 * In this case, we will copy up lower inode to index dir without
1071 * linking it to upper dir.
1073 if (WARN_ON(disconnected && d_is_dir(dentry)))
1077 * We may not need lowerdata if we are only doing metacopy up, but it is
1078 * not very important to optimize this case, so do lazy lowerdata lookup
1079 * before any copy up, so we can do it before taking ovl_inode_lock().
1081 err = ovl_maybe_lookup_lowerdata(dentry);
1085 old_cred = ovl_override_creds(dentry->d_sb);
1087 struct dentry *next;
1088 struct dentry *parent = NULL;
1090 if (ovl_already_copied_up(dentry, flags))
1093 next = dget(dentry);
1094 /* find the topmost dentry not yet copied up */
1095 for (; !disconnected;) {
1096 parent = dget_parent(next);
1098 if (ovl_dentry_upper(parent))
1105 err = ovl_copy_up_one(parent, next, flags);
1110 revert_creds(old_cred);
1115 static bool ovl_open_need_copy_up(struct dentry *dentry, int flags)
1117 /* Copy up of disconnected dentry does not set upper alias */
1118 if (ovl_already_copied_up(dentry, flags))
1121 if (special_file(d_inode(dentry)->i_mode))
1124 if (!ovl_open_flags_need_copy_up(flags))
1130 int ovl_maybe_copy_up(struct dentry *dentry, int flags)
1134 if (ovl_open_need_copy_up(dentry, flags)) {
1135 err = ovl_want_write(dentry);
1137 err = ovl_copy_up_flags(dentry, flags);
1138 ovl_drop_write(dentry);
1145 int ovl_copy_up_with_data(struct dentry *dentry)
1147 return ovl_copy_up_flags(dentry, O_WRONLY);
1150 int ovl_copy_up(struct dentry *dentry)
1152 return ovl_copy_up_flags(dentry, 0);