ovl: let helper ovl_i_path_real() return the realinode
[platform/kernel/linux-starfive.git] / fs / overlayfs / copy_up.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *
4  * Copyright (C) 2011 Novell Inc.
5  */
6
7 #include <linux/module.h>
8 #include <linux/fs.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"
23
24 #define OVL_COPY_UP_CHUNK_SIZE (1 << 20)
25
26 static int ovl_ccup_set(const char *buf, const struct kernel_param *param)
27 {
28         pr_warn("\"check_copy_up\" module option is obsolete\n");
29         return 0;
30 }
31
32 static int ovl_ccup_get(char *buf, const struct kernel_param *param)
33 {
34         return sprintf(buf, "N\n");
35 }
36
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");
39
40 static bool ovl_must_copy_xattr(const char *name)
41 {
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);
45 }
46
47 int ovl_copy_xattr(struct super_block *sb, const struct path *oldpath, struct dentry *new)
48 {
49         struct dentry *old = oldpath->dentry;
50         ssize_t list_size, size, value_size = 0;
51         char *buf, *name, *value = NULL;
52         int error = 0;
53         size_t slen;
54
55         if (!(old->d_inode->i_opflags & IOP_XATTR) ||
56             !(new->d_inode->i_opflags & IOP_XATTR))
57                 return 0;
58
59         list_size = vfs_listxattr(old, NULL, 0);
60         if (list_size <= 0) {
61                 if (list_size == -EOPNOTSUPP)
62                         return 0;
63                 return list_size;
64         }
65
66         buf = kvzalloc(list_size, GFP_KERNEL);
67         if (!buf)
68                 return -ENOMEM;
69
70         list_size = vfs_listxattr(old, buf, list_size);
71         if (list_size <= 0) {
72                 error = list_size;
73                 goto out;
74         }
75
76         for (name = buf; list_size; name += slen) {
77                 slen = strnlen(name, list_size) + 1;
78
79                 /* underlying fs providing us with an broken xattr list? */
80                 if (WARN_ON(slen > list_size)) {
81                         error = -EIO;
82                         break;
83                 }
84                 list_size -= slen;
85
86                 if (ovl_is_private_xattr(sb, name))
87                         continue;
88
89                 error = security_inode_copy_up_xattr(name);
90                 if (error < 0 && error != -EOPNOTSUPP)
91                         break;
92                 if (error == 1) {
93                         error = 0;
94                         continue; /* Discard */
95                 }
96 retry:
97                 size = ovl_do_getxattr(oldpath, name, value, value_size);
98                 if (size == -ERANGE)
99                         size = ovl_do_getxattr(oldpath, name, NULL, 0);
100
101                 if (size < 0) {
102                         error = size;
103                         break;
104                 }
105
106                 if (size > value_size) {
107                         void *new;
108
109                         new = kvmalloc(size, GFP_KERNEL);
110                         if (!new) {
111                                 error = -ENOMEM;
112                                 break;
113                         }
114                         kvfree(value);
115                         value = new;
116                         value_size = size;
117                         goto retry;
118                 }
119
120                 error = ovl_do_setxattr(OVL_FS(sb), new, name, value, size, 0);
121                 if (error) {
122                         if (error != -EOPNOTSUPP || ovl_must_copy_xattr(name))
123                                 break;
124
125                         /* Ignore failure to copy unknown xattrs */
126                         error = 0;
127                 }
128         }
129         kvfree(value);
130 out:
131         kvfree(buf);
132         return error;
133 }
134
135 static int ovl_copy_fileattr(struct inode *inode, const struct path *old,
136                              const struct path *new)
137 {
138         struct fileattr oldfa = { .flags_valid = true };
139         struct fileattr newfa = { .flags_valid = true };
140         int err;
141
142         err = ovl_real_fileattr_get(old, &oldfa);
143         if (err) {
144                 /* Ntfs-3g returns -EINVAL for "no fileattr support" */
145                 if (err == -ENOTTY || err == -EINVAL)
146                         return 0;
147                 pr_warn("failed to retrieve lower fileattr (%pd2, err=%i)\n",
148                         old->dentry, err);
149                 return err;
150         }
151
152         /*
153          * We cannot set immutable and append-only flags on upper inode,
154          * because we would not be able to link upper inode to upper dir
155          * not set overlay private xattr on upper inode.
156          * Store these flags in overlay.protattr xattr instead.
157          */
158         if (oldfa.flags & OVL_PROT_FS_FLAGS_MASK) {
159                 err = ovl_set_protattr(inode, new->dentry, &oldfa);
160                 if (err == -EPERM)
161                         pr_warn_once("copying fileattr: no xattr on upper\n");
162                 else if (err)
163                         return err;
164         }
165
166         /* Don't bother copying flags if none are set */
167         if (!(oldfa.flags & OVL_COPY_FS_FLAGS_MASK))
168                 return 0;
169
170         err = ovl_real_fileattr_get(new, &newfa);
171         if (err) {
172                 /*
173                  * Returning an error if upper doesn't support fileattr will
174                  * result in a regression, so revert to the old behavior.
175                  */
176                 if (err == -ENOTTY || err == -EINVAL) {
177                         pr_warn_once("copying fileattr: no support on upper\n");
178                         return 0;
179                 }
180                 pr_warn("failed to retrieve upper fileattr (%pd2, err=%i)\n",
181                         new->dentry, err);
182                 return err;
183         }
184
185         BUILD_BUG_ON(OVL_COPY_FS_FLAGS_MASK & ~FS_COMMON_FL);
186         newfa.flags &= ~OVL_COPY_FS_FLAGS_MASK;
187         newfa.flags |= (oldfa.flags & OVL_COPY_FS_FLAGS_MASK);
188
189         BUILD_BUG_ON(OVL_COPY_FSX_FLAGS_MASK & ~FS_XFLAG_COMMON);
190         newfa.fsx_xflags &= ~OVL_COPY_FSX_FLAGS_MASK;
191         newfa.fsx_xflags |= (oldfa.fsx_xflags & OVL_COPY_FSX_FLAGS_MASK);
192
193         return ovl_real_fileattr_set(new, &newfa);
194 }
195
196 static int ovl_copy_up_file(struct ovl_fs *ofs, struct dentry *dentry,
197                             struct file *new_file, loff_t len)
198 {
199         struct path datapath;
200         struct file *old_file;
201         loff_t old_pos = 0;
202         loff_t new_pos = 0;
203         loff_t cloned;
204         loff_t data_pos = -1;
205         loff_t hole_len;
206         bool skip_hole = false;
207         int error = 0;
208
209         ovl_path_lowerdata(dentry, &datapath);
210         if (WARN_ON(datapath.dentry == NULL))
211                 return -EIO;
212
213         old_file = ovl_path_open(&datapath, O_LARGEFILE | O_RDONLY);
214         if (IS_ERR(old_file))
215                 return PTR_ERR(old_file);
216
217         /* Try to use clone_file_range to clone up within the same fs */
218         cloned = do_clone_file_range(old_file, 0, new_file, 0, len, 0);
219         if (cloned == len)
220                 goto out_fput;
221         /* Couldn't clone, so now we try to copy the data */
222
223         /* Check if lower fs supports seek operation */
224         if (old_file->f_mode & FMODE_LSEEK)
225                 skip_hole = true;
226
227         while (len) {
228                 size_t this_len = OVL_COPY_UP_CHUNK_SIZE;
229                 long bytes;
230
231                 if (len < this_len)
232                         this_len = len;
233
234                 if (signal_pending_state(TASK_KILLABLE, current)) {
235                         error = -EINTR;
236                         break;
237                 }
238
239                 /*
240                  * Fill zero for hole will cost unnecessary disk space
241                  * and meanwhile slow down the copy-up speed, so we do
242                  * an optimization for hole during copy-up, it relies
243                  * on SEEK_DATA implementation in lower fs so if lower
244                  * fs does not support it, copy-up will behave as before.
245                  *
246                  * Detail logic of hole detection as below:
247                  * When we detect next data position is larger than current
248                  * position we will skip that hole, otherwise we copy
249                  * data in the size of OVL_COPY_UP_CHUNK_SIZE. Actually,
250                  * it may not recognize all kind of holes and sometimes
251                  * only skips partial of hole area. However, it will be
252                  * enough for most of the use cases.
253                  */
254
255                 if (skip_hole && data_pos < old_pos) {
256                         data_pos = vfs_llseek(old_file, old_pos, SEEK_DATA);
257                         if (data_pos > old_pos) {
258                                 hole_len = data_pos - old_pos;
259                                 len -= hole_len;
260                                 old_pos = new_pos = data_pos;
261                                 continue;
262                         } else if (data_pos == -ENXIO) {
263                                 break;
264                         } else if (data_pos < 0) {
265                                 skip_hole = false;
266                         }
267                 }
268
269                 bytes = do_splice_direct(old_file, &old_pos,
270                                          new_file, &new_pos,
271                                          this_len, SPLICE_F_MOVE);
272                 if (bytes <= 0) {
273                         error = bytes;
274                         break;
275                 }
276                 WARN_ON(old_pos != new_pos);
277
278                 len -= bytes;
279         }
280         if (!error && ovl_should_sync(ofs))
281                 error = vfs_fsync(new_file, 0);
282 out_fput:
283         fput(old_file);
284         return error;
285 }
286
287 static int ovl_set_size(struct ovl_fs *ofs,
288                         struct dentry *upperdentry, struct kstat *stat)
289 {
290         struct iattr attr = {
291                 .ia_valid = ATTR_SIZE,
292                 .ia_size = stat->size,
293         };
294
295         return ovl_do_notify_change(ofs, upperdentry, &attr);
296 }
297
298 static int ovl_set_timestamps(struct ovl_fs *ofs, struct dentry *upperdentry,
299                               struct kstat *stat)
300 {
301         struct iattr attr = {
302                 .ia_valid =
303                      ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET,
304                 .ia_atime = stat->atime,
305                 .ia_mtime = stat->mtime,
306         };
307
308         return ovl_do_notify_change(ofs, upperdentry, &attr);
309 }
310
311 int ovl_set_attr(struct ovl_fs *ofs, struct dentry *upperdentry,
312                  struct kstat *stat)
313 {
314         int err = 0;
315
316         if (!S_ISLNK(stat->mode)) {
317                 struct iattr attr = {
318                         .ia_valid = ATTR_MODE,
319                         .ia_mode = stat->mode,
320                 };
321                 err = ovl_do_notify_change(ofs, upperdentry, &attr);
322         }
323         if (!err) {
324                 struct iattr attr = {
325                         .ia_valid = ATTR_UID | ATTR_GID,
326                         .ia_vfsuid = VFSUIDT_INIT(stat->uid),
327                         .ia_vfsgid = VFSGIDT_INIT(stat->gid),
328                 };
329                 err = ovl_do_notify_change(ofs, upperdentry, &attr);
330         }
331         if (!err)
332                 ovl_set_timestamps(ofs, upperdentry, stat);
333
334         return err;
335 }
336
337 struct ovl_fh *ovl_encode_real_fh(struct ovl_fs *ofs, struct dentry *real,
338                                   bool is_upper)
339 {
340         struct ovl_fh *fh;
341         int fh_type, dwords;
342         int buflen = MAX_HANDLE_SZ;
343         uuid_t *uuid = &real->d_sb->s_uuid;
344         int err;
345
346         /* Make sure the real fid stays 32bit aligned */
347         BUILD_BUG_ON(OVL_FH_FID_OFFSET % 4);
348         BUILD_BUG_ON(MAX_HANDLE_SZ + OVL_FH_FID_OFFSET > 255);
349
350         fh = kzalloc(buflen + OVL_FH_FID_OFFSET, GFP_KERNEL);
351         if (!fh)
352                 return ERR_PTR(-ENOMEM);
353
354         /*
355          * We encode a non-connectable file handle for non-dir, because we
356          * only need to find the lower inode number and we don't want to pay
357          * the price or reconnecting the dentry.
358          */
359         dwords = buflen >> 2;
360         fh_type = exportfs_encode_fh(real, (void *)fh->fb.fid, &dwords, 0);
361         buflen = (dwords << 2);
362
363         err = -EIO;
364         if (WARN_ON(fh_type < 0) ||
365             WARN_ON(buflen > MAX_HANDLE_SZ) ||
366             WARN_ON(fh_type == FILEID_INVALID))
367                 goto out_err;
368
369         fh->fb.version = OVL_FH_VERSION;
370         fh->fb.magic = OVL_FH_MAGIC;
371         fh->fb.type = fh_type;
372         fh->fb.flags = OVL_FH_FLAG_CPU_ENDIAN;
373         /*
374          * When we will want to decode an overlay dentry from this handle
375          * and all layers are on the same fs, if we get a disconncted real
376          * dentry when we decode fid, the only way to tell if we should assign
377          * it to upperdentry or to lowerstack is by checking this flag.
378          */
379         if (is_upper)
380                 fh->fb.flags |= OVL_FH_FLAG_PATH_UPPER;
381         fh->fb.len = sizeof(fh->fb) + buflen;
382         if (ofs->config.uuid)
383                 fh->fb.uuid = *uuid;
384
385         return fh;
386
387 out_err:
388         kfree(fh);
389         return ERR_PTR(err);
390 }
391
392 int ovl_set_origin(struct ovl_fs *ofs, struct dentry *lower,
393                    struct dentry *upper)
394 {
395         const struct ovl_fh *fh = NULL;
396         int err;
397
398         /*
399          * When lower layer doesn't support export operations store a 'null' fh,
400          * so we can use the overlay.origin xattr to distignuish between a copy
401          * up and a pure upper inode.
402          */
403         if (ovl_can_decode_fh(lower->d_sb)) {
404                 fh = ovl_encode_real_fh(ofs, lower, false);
405                 if (IS_ERR(fh))
406                         return PTR_ERR(fh);
407         }
408
409         /*
410          * Do not fail when upper doesn't support xattrs.
411          */
412         err = ovl_check_setxattr(ofs, upper, OVL_XATTR_ORIGIN, fh->buf,
413                                  fh ? fh->fb.len : 0, 0);
414         kfree(fh);
415
416         /* Ignore -EPERM from setting "user.*" on symlink/special */
417         return err == -EPERM ? 0 : err;
418 }
419
420 /* Store file handle of @upper dir in @index dir entry */
421 static int ovl_set_upper_fh(struct ovl_fs *ofs, struct dentry *upper,
422                             struct dentry *index)
423 {
424         const struct ovl_fh *fh;
425         int err;
426
427         fh = ovl_encode_real_fh(ofs, upper, true);
428         if (IS_ERR(fh))
429                 return PTR_ERR(fh);
430
431         err = ovl_setxattr(ofs, index, OVL_XATTR_UPPER, fh->buf, fh->fb.len);
432
433         kfree(fh);
434         return err;
435 }
436
437 /*
438  * Create and install index entry.
439  *
440  * Caller must hold i_mutex on indexdir.
441  */
442 static int ovl_create_index(struct dentry *dentry, struct dentry *origin,
443                             struct dentry *upper)
444 {
445         struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
446         struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
447         struct inode *dir = d_inode(indexdir);
448         struct dentry *index = NULL;
449         struct dentry *temp = NULL;
450         struct qstr name = { };
451         int err;
452
453         /*
454          * For now this is only used for creating index entry for directories,
455          * because non-dir are copied up directly to index and then hardlinked
456          * to upper dir.
457          *
458          * TODO: implement create index for non-dir, so we can call it when
459          * encoding file handle for non-dir in case index does not exist.
460          */
461         if (WARN_ON(!d_is_dir(dentry)))
462                 return -EIO;
463
464         /* Directory not expected to be indexed before copy up */
465         if (WARN_ON(ovl_test_flag(OVL_INDEX, d_inode(dentry))))
466                 return -EIO;
467
468         err = ovl_get_index_name(ofs, origin, &name);
469         if (err)
470                 return err;
471
472         temp = ovl_create_temp(ofs, indexdir, OVL_CATTR(S_IFDIR | 0));
473         err = PTR_ERR(temp);
474         if (IS_ERR(temp))
475                 goto free_name;
476
477         err = ovl_set_upper_fh(ofs, upper, temp);
478         if (err)
479                 goto out;
480
481         index = ovl_lookup_upper(ofs, name.name, indexdir, name.len);
482         if (IS_ERR(index)) {
483                 err = PTR_ERR(index);
484         } else {
485                 err = ovl_do_rename(ofs, dir, temp, dir, index, 0);
486                 dput(index);
487         }
488 out:
489         if (err)
490                 ovl_cleanup(ofs, dir, temp);
491         dput(temp);
492 free_name:
493         kfree(name.name);
494         return err;
495 }
496
497 struct ovl_copy_up_ctx {
498         struct dentry *parent;
499         struct dentry *dentry;
500         struct path lowerpath;
501         struct kstat stat;
502         struct kstat pstat;
503         const char *link;
504         struct dentry *destdir;
505         struct qstr destname;
506         struct dentry *workdir;
507         bool origin;
508         bool indexed;
509         bool metacopy;
510 };
511
512 static int ovl_link_up(struct ovl_copy_up_ctx *c)
513 {
514         int err;
515         struct dentry *upper;
516         struct dentry *upperdir = ovl_dentry_upper(c->parent);
517         struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
518         struct inode *udir = d_inode(upperdir);
519
520         /* Mark parent "impure" because it may now contain non-pure upper */
521         err = ovl_set_impure(c->parent, upperdir);
522         if (err)
523                 return err;
524
525         err = ovl_set_nlink_lower(c->dentry);
526         if (err)
527                 return err;
528
529         inode_lock_nested(udir, I_MUTEX_PARENT);
530         upper = ovl_lookup_upper(ofs, c->dentry->d_name.name, upperdir,
531                                  c->dentry->d_name.len);
532         err = PTR_ERR(upper);
533         if (!IS_ERR(upper)) {
534                 err = ovl_do_link(ofs, ovl_dentry_upper(c->dentry), udir, upper);
535                 dput(upper);
536
537                 if (!err) {
538                         /* Restore timestamps on parent (best effort) */
539                         ovl_set_timestamps(ofs, upperdir, &c->pstat);
540                         ovl_dentry_set_upper_alias(c->dentry);
541                         ovl_dentry_update_reval(c->dentry, upper);
542                 }
543         }
544         inode_unlock(udir);
545         if (err)
546                 return err;
547
548         err = ovl_set_nlink_upper(c->dentry);
549
550         return err;
551 }
552
553 static int ovl_copy_up_data(struct ovl_copy_up_ctx *c, const struct path *temp)
554 {
555         struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
556         struct file *new_file;
557         int err;
558
559         if (!S_ISREG(c->stat.mode) || c->metacopy || !c->stat.size)
560                 return 0;
561
562         new_file = ovl_path_open(temp, O_LARGEFILE | O_WRONLY);
563         if (IS_ERR(new_file))
564                 return PTR_ERR(new_file);
565
566         err = ovl_copy_up_file(ofs, c->dentry, new_file, c->stat.size);
567         fput(new_file);
568
569         return err;
570 }
571
572 static int ovl_copy_up_metadata(struct ovl_copy_up_ctx *c, struct dentry *temp)
573 {
574         struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
575         struct inode *inode = d_inode(c->dentry);
576         struct path upperpath = { .mnt = ovl_upper_mnt(ofs), .dentry = temp };
577         int err;
578
579         err = ovl_copy_xattr(c->dentry->d_sb, &c->lowerpath, temp);
580         if (err)
581                 return err;
582
583         if (inode->i_flags & OVL_COPY_I_FLAGS_MASK) {
584                 /*
585                  * Copy the fileattr inode flags that are the source of already
586                  * copied i_flags
587                  */
588                 err = ovl_copy_fileattr(inode, &c->lowerpath, &upperpath);
589                 if (err)
590                         return err;
591         }
592
593         /*
594          * Store identifier of lower inode in upper inode xattr to
595          * allow lookup of the copy up origin inode.
596          *
597          * Don't set origin when we are breaking the association with a lower
598          * hard link.
599          */
600         if (c->origin) {
601                 err = ovl_set_origin(ofs, c->lowerpath.dentry, temp);
602                 if (err)
603                         return err;
604         }
605
606         if (c->metacopy) {
607                 err = ovl_check_setxattr(ofs, temp, OVL_XATTR_METACOPY,
608                                          NULL, 0, -EOPNOTSUPP);
609                 if (err)
610                         return err;
611         }
612
613         inode_lock(temp->d_inode);
614         if (S_ISREG(c->stat.mode))
615                 err = ovl_set_size(ofs, temp, &c->stat);
616         if (!err)
617                 err = ovl_set_attr(ofs, temp, &c->stat);
618         inode_unlock(temp->d_inode);
619
620         return err;
621 }
622
623 struct ovl_cu_creds {
624         const struct cred *old;
625         struct cred *new;
626 };
627
628 static int ovl_prep_cu_creds(struct dentry *dentry, struct ovl_cu_creds *cc)
629 {
630         int err;
631
632         cc->old = cc->new = NULL;
633         err = security_inode_copy_up(dentry, &cc->new);
634         if (err < 0)
635                 return err;
636
637         if (cc->new)
638                 cc->old = override_creds(cc->new);
639
640         return 0;
641 }
642
643 static void ovl_revert_cu_creds(struct ovl_cu_creds *cc)
644 {
645         if (cc->new) {
646                 revert_creds(cc->old);
647                 put_cred(cc->new);
648         }
649 }
650
651 /*
652  * Copyup using workdir to prepare temp file.  Used when copying up directories,
653  * special files or when upper fs doesn't support O_TMPFILE.
654  */
655 static int ovl_copy_up_workdir(struct ovl_copy_up_ctx *c)
656 {
657         struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
658         struct inode *inode;
659         struct inode *udir = d_inode(c->destdir), *wdir = d_inode(c->workdir);
660         struct path path = { .mnt = ovl_upper_mnt(ofs) };
661         struct dentry *temp, *upper;
662         struct ovl_cu_creds cc;
663         int err;
664         struct ovl_cattr cattr = {
665                 /* Can't properly set mode on creation because of the umask */
666                 .mode = c->stat.mode & S_IFMT,
667                 .rdev = c->stat.rdev,
668                 .link = c->link
669         };
670
671         /* workdir and destdir could be the same when copying up to indexdir */
672         err = -EIO;
673         if (lock_rename(c->workdir, c->destdir) != NULL)
674                 goto unlock;
675
676         err = ovl_prep_cu_creds(c->dentry, &cc);
677         if (err)
678                 goto unlock;
679
680         temp = ovl_create_temp(ofs, c->workdir, &cattr);
681         ovl_revert_cu_creds(&cc);
682
683         err = PTR_ERR(temp);
684         if (IS_ERR(temp))
685                 goto unlock;
686
687         /*
688          * Copy up data first and then xattrs. Writing data after
689          * xattrs will remove security.capability xattr automatically.
690          */
691         path.dentry = temp;
692         err = ovl_copy_up_data(c, &path);
693         if (err)
694                 goto cleanup;
695
696         err = ovl_copy_up_metadata(c, temp);
697         if (err)
698                 goto cleanup;
699
700         if (S_ISDIR(c->stat.mode) && c->indexed) {
701                 err = ovl_create_index(c->dentry, c->lowerpath.dentry, temp);
702                 if (err)
703                         goto cleanup;
704         }
705
706         upper = ovl_lookup_upper(ofs, c->destname.name, c->destdir,
707                                  c->destname.len);
708         err = PTR_ERR(upper);
709         if (IS_ERR(upper))
710                 goto cleanup;
711
712         err = ovl_do_rename(ofs, wdir, temp, udir, upper, 0);
713         dput(upper);
714         if (err)
715                 goto cleanup;
716
717         if (!c->metacopy)
718                 ovl_set_upperdata(d_inode(c->dentry));
719         inode = d_inode(c->dentry);
720         ovl_inode_update(inode, temp);
721         if (S_ISDIR(inode->i_mode))
722                 ovl_set_flag(OVL_WHITEOUTS, inode);
723 unlock:
724         unlock_rename(c->workdir, c->destdir);
725
726         return err;
727
728 cleanup:
729         ovl_cleanup(ofs, wdir, temp);
730         dput(temp);
731         goto unlock;
732 }
733
734 /* Copyup using O_TMPFILE which does not require cross dir locking */
735 static int ovl_copy_up_tmpfile(struct ovl_copy_up_ctx *c)
736 {
737         struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
738         struct inode *udir = d_inode(c->destdir);
739         struct dentry *temp, *upper;
740         struct file *tmpfile;
741         struct ovl_cu_creds cc;
742         int err;
743
744         err = ovl_prep_cu_creds(c->dentry, &cc);
745         if (err)
746                 return err;
747
748         tmpfile = ovl_do_tmpfile(ofs, c->workdir, c->stat.mode);
749         ovl_revert_cu_creds(&cc);
750
751         if (IS_ERR(tmpfile))
752                 return PTR_ERR(tmpfile);
753
754         temp = tmpfile->f_path.dentry;
755         if (!c->metacopy && c->stat.size) {
756                 err = ovl_copy_up_file(ofs, c->dentry, tmpfile, c->stat.size);
757                 if (err)
758                         goto out_fput;
759         }
760
761         err = ovl_copy_up_metadata(c, temp);
762         if (err)
763                 goto out_fput;
764
765         inode_lock_nested(udir, I_MUTEX_PARENT);
766
767         upper = ovl_lookup_upper(ofs, c->destname.name, c->destdir,
768                                  c->destname.len);
769         err = PTR_ERR(upper);
770         if (!IS_ERR(upper)) {
771                 err = ovl_do_link(ofs, temp, udir, upper);
772                 dput(upper);
773         }
774         inode_unlock(udir);
775
776         if (err)
777                 goto out_fput;
778
779         if (!c->metacopy)
780                 ovl_set_upperdata(d_inode(c->dentry));
781         ovl_inode_update(d_inode(c->dentry), dget(temp));
782
783 out_fput:
784         fput(tmpfile);
785         return err;
786 }
787
788 /*
789  * Copy up a single dentry
790  *
791  * All renames start with copy up of source if necessary.  The actual
792  * rename will only proceed once the copy up was successful.  Copy up uses
793  * upper parent i_mutex for exclusion.  Since rename can change d_parent it
794  * is possible that the copy up will lock the old parent.  At that point
795  * the file will have already been copied up anyway.
796  */
797 static int ovl_do_copy_up(struct ovl_copy_up_ctx *c)
798 {
799         int err;
800         struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
801         bool to_index = false;
802
803         /*
804          * Indexed non-dir is copied up directly to the index entry and then
805          * hardlinked to upper dir. Indexed dir is copied up to indexdir,
806          * then index entry is created and then copied up dir installed.
807          * Copying dir up to indexdir instead of workdir simplifies locking.
808          */
809         if (ovl_need_index(c->dentry)) {
810                 c->indexed = true;
811                 if (S_ISDIR(c->stat.mode))
812                         c->workdir = ovl_indexdir(c->dentry->d_sb);
813                 else
814                         to_index = true;
815         }
816
817         if (S_ISDIR(c->stat.mode) || c->stat.nlink == 1 || to_index)
818                 c->origin = true;
819
820         if (to_index) {
821                 c->destdir = ovl_indexdir(c->dentry->d_sb);
822                 err = ovl_get_index_name(ofs, c->lowerpath.dentry, &c->destname);
823                 if (err)
824                         return err;
825         } else if (WARN_ON(!c->parent)) {
826                 /* Disconnected dentry must be copied up to index dir */
827                 return -EIO;
828         } else {
829                 /*
830                  * Mark parent "impure" because it may now contain non-pure
831                  * upper
832                  */
833                 err = ovl_set_impure(c->parent, c->destdir);
834                 if (err)
835                         return err;
836         }
837
838         /* Should we copyup with O_TMPFILE or with workdir? */
839         if (S_ISREG(c->stat.mode) && ofs->tmpfile)
840                 err = ovl_copy_up_tmpfile(c);
841         else
842                 err = ovl_copy_up_workdir(c);
843         if (err)
844                 goto out;
845
846         if (c->indexed)
847                 ovl_set_flag(OVL_INDEX, d_inode(c->dentry));
848
849         if (to_index) {
850                 /* Initialize nlink for copy up of disconnected dentry */
851                 err = ovl_set_nlink_upper(c->dentry);
852         } else {
853                 struct inode *udir = d_inode(c->destdir);
854
855                 /* Restore timestamps on parent (best effort) */
856                 inode_lock(udir);
857                 ovl_set_timestamps(ofs, c->destdir, &c->pstat);
858                 inode_unlock(udir);
859
860                 ovl_dentry_set_upper_alias(c->dentry);
861                 ovl_dentry_update_reval(c->dentry, ovl_dentry_upper(c->dentry));
862         }
863
864 out:
865         if (to_index)
866                 kfree(c->destname.name);
867         return err;
868 }
869
870 static bool ovl_need_meta_copy_up(struct dentry *dentry, umode_t mode,
871                                   int flags)
872 {
873         struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
874
875         if (!ofs->config.metacopy)
876                 return false;
877
878         if (!S_ISREG(mode))
879                 return false;
880
881         if (flags && ((OPEN_FMODE(flags) & FMODE_WRITE) || (flags & O_TRUNC)))
882                 return false;
883
884         return true;
885 }
886
887 static ssize_t ovl_getxattr_value(const struct path *path, char *name, char **value)
888 {
889         ssize_t res;
890         char *buf;
891
892         res = ovl_do_getxattr(path, name, NULL, 0);
893         if (res == -ENODATA || res == -EOPNOTSUPP)
894                 res = 0;
895
896         if (res > 0) {
897                 buf = kzalloc(res, GFP_KERNEL);
898                 if (!buf)
899                         return -ENOMEM;
900
901                 res = ovl_do_getxattr(path, name, buf, res);
902                 if (res < 0)
903                         kfree(buf);
904                 else
905                         *value = buf;
906         }
907         return res;
908 }
909
910 /* Copy up data of an inode which was copied up metadata only in the past. */
911 static int ovl_copy_up_meta_inode_data(struct ovl_copy_up_ctx *c)
912 {
913         struct ovl_fs *ofs = OVL_FS(c->dentry->d_sb);
914         struct path upperpath;
915         int err;
916         char *capability = NULL;
917         ssize_t cap_size;
918
919         ovl_path_upper(c->dentry, &upperpath);
920         if (WARN_ON(upperpath.dentry == NULL))
921                 return -EIO;
922
923         if (c->stat.size) {
924                 err = cap_size = ovl_getxattr_value(&upperpath, XATTR_NAME_CAPS,
925                                                     &capability);
926                 if (cap_size < 0)
927                         goto out;
928         }
929
930         err = ovl_copy_up_data(c, &upperpath);
931         if (err)
932                 goto out_free;
933
934         /*
935          * Writing to upper file will clear security.capability xattr. We
936          * don't want that to happen for normal copy-up operation.
937          */
938         if (capability) {
939                 err = ovl_do_setxattr(ofs, upperpath.dentry, XATTR_NAME_CAPS,
940                                       capability, cap_size, 0);
941                 if (err)
942                         goto out_free;
943         }
944
945
946         err = ovl_removexattr(ofs, upperpath.dentry, OVL_XATTR_METACOPY);
947         if (err)
948                 goto out_free;
949
950         ovl_set_upperdata(d_inode(c->dentry));
951 out_free:
952         kfree(capability);
953 out:
954         return err;
955 }
956
957 static int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
958                            int flags)
959 {
960         int err;
961         DEFINE_DELAYED_CALL(done);
962         struct path parentpath;
963         struct ovl_copy_up_ctx ctx = {
964                 .parent = parent,
965                 .dentry = dentry,
966                 .workdir = ovl_workdir(dentry),
967         };
968
969         if (WARN_ON(!ctx.workdir))
970                 return -EROFS;
971
972         ovl_path_lower(dentry, &ctx.lowerpath);
973         err = vfs_getattr(&ctx.lowerpath, &ctx.stat,
974                           STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
975         if (err)
976                 return err;
977
978         if (!kuid_has_mapping(current_user_ns(), ctx.stat.uid) ||
979             !kgid_has_mapping(current_user_ns(), ctx.stat.gid))
980                 return -EOVERFLOW;
981
982         ctx.metacopy = ovl_need_meta_copy_up(dentry, ctx.stat.mode, flags);
983
984         if (parent) {
985                 ovl_path_upper(parent, &parentpath);
986                 ctx.destdir = parentpath.dentry;
987                 ctx.destname = dentry->d_name;
988
989                 err = vfs_getattr(&parentpath, &ctx.pstat,
990                                   STATX_ATIME | STATX_MTIME,
991                                   AT_STATX_SYNC_AS_STAT);
992                 if (err)
993                         return err;
994         }
995
996         /* maybe truncate regular file. this has no effect on dirs */
997         if (flags & O_TRUNC)
998                 ctx.stat.size = 0;
999
1000         if (S_ISLNK(ctx.stat.mode)) {
1001                 ctx.link = vfs_get_link(ctx.lowerpath.dentry, &done);
1002                 if (IS_ERR(ctx.link))
1003                         return PTR_ERR(ctx.link);
1004         }
1005
1006         err = ovl_copy_up_start(dentry, flags);
1007         /* err < 0: interrupted, err > 0: raced with another copy-up */
1008         if (unlikely(err)) {
1009                 if (err > 0)
1010                         err = 0;
1011         } else {
1012                 if (!ovl_dentry_upper(dentry))
1013                         err = ovl_do_copy_up(&ctx);
1014                 if (!err && parent && !ovl_dentry_has_upper_alias(dentry))
1015                         err = ovl_link_up(&ctx);
1016                 if (!err && ovl_dentry_needs_data_copy_up_locked(dentry, flags))
1017                         err = ovl_copy_up_meta_inode_data(&ctx);
1018                 ovl_copy_up_end(dentry);
1019         }
1020         do_delayed_call(&done);
1021
1022         return err;
1023 }
1024
1025 static int ovl_copy_up_flags(struct dentry *dentry, int flags)
1026 {
1027         int err = 0;
1028         const struct cred *old_cred;
1029         bool disconnected = (dentry->d_flags & DCACHE_DISCONNECTED);
1030
1031         /*
1032          * With NFS export, copy up can get called for a disconnected non-dir.
1033          * In this case, we will copy up lower inode to index dir without
1034          * linking it to upper dir.
1035          */
1036         if (WARN_ON(disconnected && d_is_dir(dentry)))
1037                 return -EIO;
1038
1039         old_cred = ovl_override_creds(dentry->d_sb);
1040         while (!err) {
1041                 struct dentry *next;
1042                 struct dentry *parent = NULL;
1043
1044                 if (ovl_already_copied_up(dentry, flags))
1045                         break;
1046
1047                 next = dget(dentry);
1048                 /* find the topmost dentry not yet copied up */
1049                 for (; !disconnected;) {
1050                         parent = dget_parent(next);
1051
1052                         if (ovl_dentry_upper(parent))
1053                                 break;
1054
1055                         dput(next);
1056                         next = parent;
1057                 }
1058
1059                 err = ovl_copy_up_one(parent, next, flags);
1060
1061                 dput(parent);
1062                 dput(next);
1063         }
1064         revert_creds(old_cred);
1065
1066         return err;
1067 }
1068
1069 static bool ovl_open_need_copy_up(struct dentry *dentry, int flags)
1070 {
1071         /* Copy up of disconnected dentry does not set upper alias */
1072         if (ovl_already_copied_up(dentry, flags))
1073                 return false;
1074
1075         if (special_file(d_inode(dentry)->i_mode))
1076                 return false;
1077
1078         if (!ovl_open_flags_need_copy_up(flags))
1079                 return false;
1080
1081         return true;
1082 }
1083
1084 int ovl_maybe_copy_up(struct dentry *dentry, int flags)
1085 {
1086         int err = 0;
1087
1088         if (ovl_open_need_copy_up(dentry, flags)) {
1089                 err = ovl_want_write(dentry);
1090                 if (!err) {
1091                         err = ovl_copy_up_flags(dentry, flags);
1092                         ovl_drop_write(dentry);
1093                 }
1094         }
1095
1096         return err;
1097 }
1098
1099 int ovl_copy_up_with_data(struct dentry *dentry)
1100 {
1101         return ovl_copy_up_flags(dentry, O_WRONLY);
1102 }
1103
1104 int ovl_copy_up(struct dentry *dentry)
1105 {
1106         return ovl_copy_up_flags(dentry, 0);
1107 }