ovl: fix wrong WARN_ON() in ovl_cache_update_ino()
[linux-block.git] / fs / overlayfs / copy_up.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
e9be9d5e
MS
2/*
3 *
4 * Copyright (C) 2011 Novell Inc.
e9be9d5e
MS
5 */
6
fb5bb2c3 7#include <linux/module.h>
e9be9d5e
MS
8#include <linux/fs.h>
9#include <linux/slab.h>
10#include <linux/file.h>
11#include <linux/splice.h>
12#include <linux/xattr.h>
13#include <linux/security.h>
14#include <linux/uaccess.h>
174cd4b1 15#include <linux/sched/signal.h>
5b825c3a 16#include <linux/cred.h>
e9be9d5e 17#include <linux/namei.h>
fb5bb2c3
DH
18#include <linux/fdtable.h>
19#include <linux/ratelimit.h>
3a1e819b 20#include <linux/exportfs.h>
e9be9d5e
MS
21#include "overlayfs.h"
22
23#define OVL_COPY_UP_CHUNK_SIZE (1 << 20)
24
670c2324 25static int ovl_ccup_set(const char *buf, const struct kernel_param *param)
fb5bb2c3 26{
670c2324 27 pr_warn("overlayfs: \"check_copy_up\" module option is obsolete\n");
fb5bb2c3
DH
28 return 0;
29}
30
670c2324 31static int ovl_ccup_get(char *buf, const struct kernel_param *param)
fb5bb2c3 32{
670c2324 33 return sprintf(buf, "N\n");
fb5bb2c3
DH
34}
35
670c2324 36module_param_call(check_copy_up, ovl_ccup_set, ovl_ccup_get, NULL, 0644);
253e7483 37MODULE_PARM_DESC(check_copy_up, "Obsolete; does nothing");
670c2324 38
e9be9d5e
MS
39int ovl_copy_xattr(struct dentry *old, struct dentry *new)
40{
e4ad29fa
VC
41 ssize_t list_size, size, value_size = 0;
42 char *buf, *name, *value = NULL;
43 int uninitialized_var(error);
8b326c61 44 size_t slen;
e9be9d5e 45
5d6c3191
AG
46 if (!(old->d_inode->i_opflags & IOP_XATTR) ||
47 !(new->d_inode->i_opflags & IOP_XATTR))
e9be9d5e
MS
48 return 0;
49
50 list_size = vfs_listxattr(old, NULL, 0);
51 if (list_size <= 0) {
52 if (list_size == -EOPNOTSUPP)
53 return 0;
54 return list_size;
55 }
56
57 buf = kzalloc(list_size, GFP_KERNEL);
58 if (!buf)
59 return -ENOMEM;
60
e9be9d5e
MS
61 list_size = vfs_listxattr(old, buf, list_size);
62 if (list_size <= 0) {
63 error = list_size;
e4ad29fa 64 goto out;
e9be9d5e
MS
65 }
66
8b326c61
MS
67 for (name = buf; list_size; name += slen) {
68 slen = strnlen(name, list_size) + 1;
69
70 /* underlying fs providing us with an broken xattr list? */
71 if (WARN_ON(slen > list_size)) {
72 error = -EIO;
73 break;
74 }
75 list_size -= slen;
76
0956254a
MS
77 if (ovl_is_private_xattr(name))
78 continue;
e4ad29fa
VC
79retry:
80 size = vfs_getxattr(old, name, value, value_size);
81 if (size == -ERANGE)
82 size = vfs_getxattr(old, name, NULL, 0);
83
97daf8b9 84 if (size < 0) {
e9be9d5e 85 error = size;
e4ad29fa 86 break;
e9be9d5e 87 }
e4ad29fa
VC
88
89 if (size > value_size) {
90 void *new;
91
92 new = krealloc(value, size, GFP_KERNEL);
93 if (!new) {
94 error = -ENOMEM;
95 break;
96 }
97 value = new;
98 value_size = size;
99 goto retry;
100 }
101
121ab822
VG
102 error = security_inode_copy_up_xattr(name);
103 if (error < 0 && error != -EOPNOTSUPP)
104 break;
105 if (error == 1) {
106 error = 0;
107 continue; /* Discard */
108 }
e9be9d5e
MS
109 error = vfs_setxattr(new, name, value, size, 0);
110 if (error)
e4ad29fa 111 break;
e9be9d5e 112 }
e9be9d5e
MS
113 kfree(value);
114out:
115 kfree(buf);
116 return error;
117}
118
119static int ovl_copy_up_data(struct path *old, struct path *new, loff_t len)
120{
121 struct file *old_file;
122 struct file *new_file;
123 loff_t old_pos = 0;
124 loff_t new_pos = 0;
42ec3d4c 125 loff_t cloned;
e9be9d5e
MS
126 int error = 0;
127
128 if (len == 0)
129 return 0;
130
0480334f 131 old_file = ovl_path_open(old, O_LARGEFILE | O_RDONLY);
e9be9d5e
MS
132 if (IS_ERR(old_file))
133 return PTR_ERR(old_file);
134
0480334f 135 new_file = ovl_path_open(new, O_LARGEFILE | O_WRONLY);
e9be9d5e
MS
136 if (IS_ERR(new_file)) {
137 error = PTR_ERR(new_file);
138 goto out_fput;
139 }
140
2ea98466 141 /* Try to use clone_file_range to clone up within the same fs */
452ce659 142 cloned = do_clone_file_range(old_file, 0, new_file, 0, len, 0);
42ec3d4c 143 if (cloned == len)
2ea98466
AG
144 goto out;
145 /* Couldn't clone, so now we try to copy the data */
2ea98466 146
e9be9d5e
MS
147 /* FIXME: copy up sparse files efficiently */
148 while (len) {
149 size_t this_len = OVL_COPY_UP_CHUNK_SIZE;
150 long bytes;
151
152 if (len < this_len)
153 this_len = len;
154
155 if (signal_pending_state(TASK_KILLABLE, current)) {
156 error = -EINTR;
157 break;
158 }
159
160 bytes = do_splice_direct(old_file, &old_pos,
161 new_file, &new_pos,
162 this_len, SPLICE_F_MOVE);
163 if (bytes <= 0) {
164 error = bytes;
165 break;
166 }
167 WARN_ON(old_pos != new_pos);
168
169 len -= bytes;
170 }
2ea98466 171out:
641089c1
MS
172 if (!error)
173 error = vfs_fsync(new_file, 0);
e9be9d5e
MS
174 fput(new_file);
175out_fput:
176 fput(old_file);
177 return error;
178}
179
0c288874
VG
180static int ovl_set_size(struct dentry *upperdentry, struct kstat *stat)
181{
182 struct iattr attr = {
183 .ia_valid = ATTR_SIZE,
184 .ia_size = stat->size,
185 };
186
187 return notify_change(upperdentry, &attr, NULL);
188}
189
e9be9d5e
MS
190static int ovl_set_timestamps(struct dentry *upperdentry, struct kstat *stat)
191{
192 struct iattr attr = {
193 .ia_valid =
194 ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET,
195 .ia_atime = stat->atime,
196 .ia_mtime = stat->mtime,
197 };
198
199 return notify_change(upperdentry, &attr, NULL);
200}
201
202int ovl_set_attr(struct dentry *upperdentry, struct kstat *stat)
203{
204 int err = 0;
205
206 if (!S_ISLNK(stat->mode)) {
207 struct iattr attr = {
208 .ia_valid = ATTR_MODE,
209 .ia_mode = stat->mode,
210 };
211 err = notify_change(upperdentry, &attr, NULL);
212 }
213 if (!err) {
214 struct iattr attr = {
215 .ia_valid = ATTR_UID | ATTR_GID,
216 .ia_uid = stat->uid,
217 .ia_gid = stat->gid,
218 };
219 err = notify_change(upperdentry, &attr, NULL);
220 }
221 if (!err)
222 ovl_set_timestamps(upperdentry, stat);
223
224 return err;
e9be9d5e
MS
225}
226
5b2cccd3 227struct ovl_fh *ovl_encode_real_fh(struct dentry *real, bool is_upper)
3a1e819b
AG
228{
229 struct ovl_fh *fh;
ec7bbb53 230 int fh_type, dwords;
3a1e819b 231 int buflen = MAX_HANDLE_SZ;
05122443 232 uuid_t *uuid = &real->d_sb->s_uuid;
ec7bbb53 233 int err;
3a1e819b 234
ec7bbb53
AG
235 /* Make sure the real fid stays 32bit aligned */
236 BUILD_BUG_ON(OVL_FH_FID_OFFSET % 4);
237 BUILD_BUG_ON(MAX_HANDLE_SZ + OVL_FH_FID_OFFSET > 255);
238
239 fh = kzalloc(buflen + OVL_FH_FID_OFFSET, GFP_KERNEL);
240 if (!fh)
3a1e819b
AG
241 return ERR_PTR(-ENOMEM);
242
243 /*
244 * We encode a non-connectable file handle for non-dir, because we
245 * only need to find the lower inode number and we don't want to pay
246 * the price or reconnecting the dentry.
247 */
248 dwords = buflen >> 2;
ec7bbb53 249 fh_type = exportfs_encode_fh(real, (void *)fh->fb.fid, &dwords, 0);
3a1e819b
AG
250 buflen = (dwords << 2);
251
ec7bbb53 252 err = -EIO;
3a1e819b
AG
253 if (WARN_ON(fh_type < 0) ||
254 WARN_ON(buflen > MAX_HANDLE_SZ) ||
255 WARN_ON(fh_type == FILEID_INVALID))
ec7bbb53 256 goto out_err;
3a1e819b 257
cbe7fba8
AG
258 fh->fb.version = OVL_FH_VERSION;
259 fh->fb.magic = OVL_FH_MAGIC;
260 fh->fb.type = fh_type;
261 fh->fb.flags = OVL_FH_FLAG_CPU_ENDIAN;
54fb347e
AG
262 /*
263 * When we will want to decode an overlay dentry from this handle
264 * and all layers are on the same fs, if we get a disconncted real
265 * dentry when we decode fid, the only way to tell if we should assign
266 * it to upperdentry or to lowerstack is by checking this flag.
267 */
268 if (is_upper)
cbe7fba8 269 fh->fb.flags |= OVL_FH_FLAG_PATH_UPPER;
ec7bbb53 270 fh->fb.len = sizeof(fh->fb) + buflen;
cbe7fba8 271 fh->fb.uuid = *uuid;
3a1e819b 272
3a1e819b 273 return fh;
ec7bbb53
AG
274
275out_err:
276 kfree(fh);
277 return ERR_PTR(err);
3a1e819b
AG
278}
279
9678e630
AG
280int ovl_set_origin(struct dentry *dentry, struct dentry *lower,
281 struct dentry *upper)
3a1e819b 282{
3a1e819b
AG
283 const struct ovl_fh *fh = NULL;
284 int err;
285
286 /*
287 * When lower layer doesn't support export operations store a 'null' fh,
288 * so we can use the overlay.origin xattr to distignuish between a copy
289 * up and a pure upper inode.
290 */
02bcd157 291 if (ovl_can_decode_fh(lower->d_sb)) {
5b2cccd3 292 fh = ovl_encode_real_fh(lower, false);
3a1e819b
AG
293 if (IS_ERR(fh))
294 return PTR_ERR(fh);
295 }
296
6266d465
MS
297 /*
298 * Do not fail when upper doesn't support xattrs.
299 */
cbe7fba8
AG
300 err = ovl_check_setxattr(dentry, upper, OVL_XATTR_ORIGIN, fh->buf,
301 fh ? fh->fb.len : 0, 0);
3a1e819b
AG
302 kfree(fh);
303
304 return err;
305}
306
016b720f
AG
307/* Store file handle of @upper dir in @index dir entry */
308static int ovl_set_upper_fh(struct dentry *upper, struct dentry *index)
309{
310 const struct ovl_fh *fh;
311 int err;
312
5b2cccd3 313 fh = ovl_encode_real_fh(upper, true);
016b720f
AG
314 if (IS_ERR(fh))
315 return PTR_ERR(fh);
316
cbe7fba8 317 err = ovl_do_setxattr(index, OVL_XATTR_UPPER, fh->buf, fh->fb.len, 0);
016b720f
AG
318
319 kfree(fh);
320 return err;
321}
322
323/*
324 * Create and install index entry.
325 *
326 * Caller must hold i_mutex on indexdir.
327 */
328static int ovl_create_index(struct dentry *dentry, struct dentry *origin,
329 struct dentry *upper)
330{
331 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
332 struct inode *dir = d_inode(indexdir);
333 struct dentry *index = NULL;
334 struct dentry *temp = NULL;
335 struct qstr name = { };
336 int err;
337
338 /*
339 * For now this is only used for creating index entry for directories,
340 * because non-dir are copied up directly to index and then hardlinked
341 * to upper dir.
342 *
343 * TODO: implement create index for non-dir, so we can call it when
344 * encoding file handle for non-dir in case index does not exist.
345 */
346 if (WARN_ON(!d_is_dir(dentry)))
347 return -EIO;
348
349 /* Directory not expected to be indexed before copy up */
350 if (WARN_ON(ovl_test_flag(OVL_INDEX, d_inode(dentry))))
351 return -EIO;
352
353 err = ovl_get_index_name(origin, &name);
354 if (err)
355 return err;
356
137ec526 357 temp = ovl_create_temp(indexdir, OVL_CATTR(S_IFDIR | 0));
b148cba4 358 err = PTR_ERR(temp);
016b720f 359 if (IS_ERR(temp))
b148cba4 360 goto free_name;
016b720f 361
016b720f
AG
362 err = ovl_set_upper_fh(upper, temp);
363 if (err)
b148cba4 364 goto out;
016b720f
AG
365
366 index = lookup_one_len(name.name, indexdir, name.len);
367 if (IS_ERR(index)) {
368 err = PTR_ERR(index);
369 } else {
370 err = ovl_do_rename(dir, temp, dir, index, 0);
371 dput(index);
372 }
016b720f 373out:
b148cba4
MS
374 if (err)
375 ovl_cleanup(dir, temp);
016b720f 376 dput(temp);
b148cba4 377free_name:
016b720f
AG
378 kfree(name.name);
379 return err;
016b720f
AG
380}
381
f4439de1
AG
382struct ovl_copy_up_ctx {
383 struct dentry *parent;
384 struct dentry *dentry;
385 struct path lowerpath;
386 struct kstat stat;
387 struct kstat pstat;
388 const char *link;
389 struct dentry *destdir;
390 struct qstr destname;
391 struct dentry *workdir;
f4439de1 392 bool origin;
016b720f 393 bool indexed;
44d5bf10 394 bool metacopy;
f4439de1
AG
395};
396
397static int ovl_link_up(struct ovl_copy_up_ctx *c)
59be0971
AG
398{
399 int err;
400 struct dentry *upper;
f4439de1 401 struct dentry *upperdir = ovl_dentry_upper(c->parent);
59be0971
AG
402 struct inode *udir = d_inode(upperdir);
403
f4439de1
AG
404 /* Mark parent "impure" because it may now contain non-pure upper */
405 err = ovl_set_impure(c->parent, upperdir);
406 if (err)
407 return err;
408
409 err = ovl_set_nlink_lower(c->dentry);
5f8415d6
AG
410 if (err)
411 return err;
412
59be0971 413 inode_lock_nested(udir, I_MUTEX_PARENT);
f4439de1
AG
414 upper = lookup_one_len(c->dentry->d_name.name, upperdir,
415 c->dentry->d_name.len);
59be0971
AG
416 err = PTR_ERR(upper);
417 if (!IS_ERR(upper)) {
6cf00764 418 err = ovl_do_link(ovl_dentry_upper(c->dentry), udir, upper);
59be0971
AG
419 dput(upper);
420
f4439de1
AG
421 if (!err) {
422 /* Restore timestamps on parent (best effort) */
423 ovl_set_timestamps(upperdir, &c->pstat);
424 ovl_dentry_set_upper_alias(c->dentry);
425 }
59be0971
AG
426 }
427 inode_unlock(udir);
aa3ff3c1
AG
428 if (err)
429 return err;
430
431 err = ovl_set_nlink_upper(c->dentry);
59be0971
AG
432
433 return err;
434}
435
23f0ab13 436static int ovl_copy_up_inode(struct ovl_copy_up_ctx *c, struct dentry *temp)
7d90b853 437{
7d90b853
MS
438 int err;
439
5f32879e
VG
440 /*
441 * Copy up data first and then xattrs. Writing data after
442 * xattrs will remove security.capability xattr automatically.
443 */
444 if (S_ISREG(c->stat.mode) && !c->metacopy) {
445 struct path upperpath, datapath;
446
447 ovl_path_upper(c->dentry, &upperpath);
448 if (WARN_ON(upperpath.dentry != NULL))
449 return -EIO;
450 upperpath.dentry = temp;
451
452 ovl_path_lowerdata(c->dentry, &datapath);
453 err = ovl_copy_up_data(&datapath, &upperpath, c->stat.size);
454 if (err)
455 return err;
456 }
457
23f0ab13 458 err = ovl_copy_xattr(c->lowerpath.dentry, temp);
e9be9d5e 459 if (err)
02209d10 460 return err;
e9be9d5e 461
3a1e819b
AG
462 /*
463 * Store identifier of lower inode in upper inode xattr to
464 * allow lookup of the copy up origin inode.
fbaf94ee
MS
465 *
466 * Don't set origin when we are breaking the association with a lower
467 * hard link.
3a1e819b 468 */
59be0971 469 if (c->origin) {
23f0ab13 470 err = ovl_set_origin(c->dentry, c->lowerpath.dentry, temp);
fbaf94ee 471 if (err)
02209d10 472 return err;
fbaf94ee 473 }
3a1e819b 474
0c288874
VG
475 if (c->metacopy) {
476 err = ovl_check_setxattr(c->dentry, temp, OVL_XATTR_METACOPY,
477 NULL, 0, -EOPNOTSUPP);
478 if (err)
479 return err;
480 }
481
bd64e575 482 inode_lock(temp->d_inode);
0c288874
VG
483 if (c->metacopy)
484 err = ovl_set_size(temp, &c->stat);
485 if (!err)
486 err = ovl_set_attr(temp, &c->stat);
bd64e575
VG
487 inode_unlock(temp->d_inode);
488
489 return err;
02209d10
AG
490}
491
6b52243f
MS
492struct ovl_cu_creds {
493 const struct cred *old;
494 struct cred *new;
495};
496
497static int ovl_prep_cu_creds(struct dentry *dentry, struct ovl_cu_creds *cc)
b10cdcdc
AG
498{
499 int err;
b10cdcdc 500
6b52243f
MS
501 cc->old = cc->new = NULL;
502 err = security_inode_copy_up(dentry, &cc->new);
b10cdcdc 503 if (err < 0)
6b52243f 504 return err;
b10cdcdc 505
6b52243f
MS
506 if (cc->new)
507 cc->old = override_creds(cc->new);
b10cdcdc 508
6b52243f 509 return 0;
b10cdcdc
AG
510}
511
6b52243f 512static void ovl_revert_cu_creds(struct ovl_cu_creds *cc)
b10cdcdc 513{
6b52243f
MS
514 if (cc->new) {
515 revert_creds(cc->old);
516 put_cred(cc->new);
517 }
b10cdcdc
AG
518}
519
520/*
521 * Copyup using workdir to prepare temp file. Used when copying up directories,
522 * special files or when upper fs doesn't support O_TMPFILE.
523 */
524static int ovl_copy_up_workdir(struct ovl_copy_up_ctx *c)
02209d10 525{
b79e05aa 526 struct inode *inode;
6b52243f
MS
527 struct inode *udir = d_inode(c->destdir), *wdir = d_inode(c->workdir);
528 struct dentry *temp, *upper;
529 struct ovl_cu_creds cc;
02209d10 530 int err;
6b52243f
MS
531 struct ovl_cattr cattr = {
532 /* Can't properly set mode on creation because of the umask */
533 .mode = c->stat.mode & S_IFMT,
534 .rdev = c->stat.rdev,
535 .link = c->link
536 };
02209d10 537
b10cdcdc
AG
538 err = ovl_lock_rename_workdir(c->workdir, c->destdir);
539 if (err)
540 return err;
541
6b52243f
MS
542 err = ovl_prep_cu_creds(c->dentry, &cc);
543 if (err)
544 goto unlock;
545
546 temp = ovl_create_temp(c->workdir, &cattr);
547 ovl_revert_cu_creds(&cc);
548
b10cdcdc 549 err = PTR_ERR(temp);
b148cba4 550 if (IS_ERR(temp))
b10cdcdc 551 goto unlock;
02209d10 552
23f0ab13 553 err = ovl_copy_up_inode(c, temp);
02209d10 554 if (err)
b10cdcdc 555 goto cleanup;
02209d10 556
016b720f
AG
557 if (S_ISDIR(c->stat.mode) && c->indexed) {
558 err = ovl_create_index(c->dentry, c->lowerpath.dentry, temp);
559 if (err)
b10cdcdc 560 goto cleanup;
016b720f
AG
561 }
562
6b52243f
MS
563 upper = lookup_one_len(c->destname.name, c->destdir, c->destname.len);
564 err = PTR_ERR(upper);
565 if (IS_ERR(upper))
566 goto cleanup;
567
568 err = ovl_do_rename(wdir, temp, udir, upper, 0);
569 dput(upper);
e9be9d5e 570 if (err)
b10cdcdc 571 goto cleanup;
e9be9d5e 572
0c288874
VG
573 if (!c->metacopy)
574 ovl_set_upperdata(d_inode(c->dentry));
b79e05aa 575 inode = d_inode(c->dentry);
6b52243f 576 ovl_inode_update(inode, temp);
b79e05aa
AG
577 if (S_ISDIR(inode->i_mode))
578 ovl_set_flag(OVL_WHITEOUTS, inode);
b10cdcdc
AG
579unlock:
580 unlock_rename(c->workdir, c->destdir);
581
582 return err;
583
584cleanup:
6b52243f
MS
585 ovl_cleanup(wdir, temp);
586 dput(temp);
587 goto unlock;
b10cdcdc
AG
588}
589
6b52243f
MS
590/* Copyup using O_TMPFILE which does not require cross dir locking */
591static int ovl_copy_up_tmpfile(struct ovl_copy_up_ctx *c)
b10cdcdc 592{
6b52243f
MS
593 struct inode *udir = d_inode(c->destdir);
594 struct dentry *temp, *upper;
595 struct ovl_cu_creds cc;
b10cdcdc 596 int err;
b10cdcdc 597
6b52243f
MS
598 err = ovl_prep_cu_creds(c->dentry, &cc);
599 if (err)
600 return err;
b10cdcdc
AG
601
602 temp = ovl_do_tmpfile(c->workdir, c->stat.mode);
6b52243f 603 ovl_revert_cu_creds(&cc);
b10cdcdc 604
6b52243f
MS
605 if (IS_ERR(temp))
606 return PTR_ERR(temp);
b10cdcdc 607
6b52243f
MS
608 err = ovl_copy_up_inode(c, temp);
609 if (err)
610 goto out_dput;
b10cdcdc
AG
611
612 inode_lock_nested(udir, I_MUTEX_PARENT);
613
614 upper = lookup_one_len(c->destname.name, c->destdir, c->destname.len);
615 err = PTR_ERR(upper);
6b52243f
MS
616 if (!IS_ERR(upper)) {
617 err = ovl_do_link(temp, udir, upper);
618 dput(upper);
619 }
b10cdcdc
AG
620 inode_unlock(udir);
621
b10cdcdc 622 if (err)
6b52243f 623 goto out_dput;
b10cdcdc
AG
624
625 if (!c->metacopy)
626 ovl_set_upperdata(d_inode(c->dentry));
6b52243f 627 ovl_inode_update(d_inode(c->dentry), temp);
b79e05aa 628
6b52243f
MS
629 return 0;
630
631out_dput:
42f269b9 632 dput(temp);
e9be9d5e 633 return err;
e9be9d5e
MS
634}
635
636/*
637 * Copy up a single dentry
638 *
a6c60655
MS
639 * All renames start with copy up of source if necessary. The actual
640 * rename will only proceed once the copy up was successful. Copy up uses
641 * upper parent i_mutex for exclusion. Since rename can change d_parent it
642 * is possible that the copy up will lock the old parent. At that point
643 * the file will have already been copied up anyway.
e9be9d5e 644 */
a6fb235a 645static int ovl_do_copy_up(struct ovl_copy_up_ctx *c)
e9be9d5e 646{
e9be9d5e 647 int err;
23f0ab13 648 struct ovl_fs *ofs = c->dentry->d_sb->s_fs_info;
016b720f 649 bool to_index = false;
59be0971 650
016b720f
AG
651 /*
652 * Indexed non-dir is copied up directly to the index entry and then
653 * hardlinked to upper dir. Indexed dir is copied up to indexdir,
654 * then index entry is created and then copied up dir installed.
655 * Copying dir up to indexdir instead of workdir simplifies locking.
656 */
657 if (ovl_need_index(c->dentry)) {
658 c->indexed = true;
659 if (S_ISDIR(c->stat.mode))
660 c->workdir = ovl_indexdir(c->dentry->d_sb);
661 else
662 to_index = true;
663 }
664
665 if (S_ISDIR(c->stat.mode) || c->stat.nlink == 1 || to_index)
59be0971
AG
666 c->origin = true;
667
016b720f 668 if (to_index) {
59be0971
AG
669 c->destdir = ovl_indexdir(c->dentry->d_sb);
670 err = ovl_get_index_name(c->lowerpath.dentry, &c->destname);
671 if (err)
672 return err;
aa3ff3c1
AG
673 } else if (WARN_ON(!c->parent)) {
674 /* Disconnected dentry must be copied up to index dir */
675 return -EIO;
59be0971
AG
676 } else {
677 /*
678 * Mark parent "impure" because it may now contain non-pure
679 * upper
680 */
681 err = ovl_set_impure(c->parent, c->destdir);
682 if (err)
683 return err;
684 }
e9be9d5e 685
01ad3eb8 686 /* Should we copyup with O_TMPFILE or with workdir? */
b10cdcdc
AG
687 if (S_ISREG(c->stat.mode) && ofs->tmpfile)
688 err = ovl_copy_up_tmpfile(c);
689 else
690 err = ovl_copy_up_workdir(c);
aa3ff3c1
AG
691 if (err)
692 goto out;
693
694 if (c->indexed)
016b720f
AG
695 ovl_set_flag(OVL_INDEX, d_inode(c->dentry));
696
697 if (to_index) {
aa3ff3c1
AG
698 /* Initialize nlink for copy up of disconnected dentry */
699 err = ovl_set_nlink_upper(c->dentry);
700 } else {
59be0971
AG
701 struct inode *udir = d_inode(c->destdir);
702
703 /* Restore timestamps on parent (best effort) */
704 inode_lock(udir);
705 ovl_set_timestamps(c->destdir, &c->pstat);
706 inode_unlock(udir);
707
708 ovl_dentry_set_upper_alias(c->dentry);
e9be9d5e
MS
709 }
710
aa3ff3c1
AG
711out:
712 if (to_index)
713 kfree(c->destname.name);
a6fb235a
MS
714 return err;
715}
716
44d5bf10
VG
717static bool ovl_need_meta_copy_up(struct dentry *dentry, umode_t mode,
718 int flags)
719{
720 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
721
44d5bf10
VG
722 if (!ofs->config.metacopy)
723 return false;
724
725 if (!S_ISREG(mode))
726 return false;
727
728 if (flags && ((OPEN_FMODE(flags) & FMODE_WRITE) || (flags & O_TRUNC)))
729 return false;
730
731 return true;
732}
733
0c288874
VG
734/* Copy up data of an inode which was copied up metadata only in the past. */
735static int ovl_copy_up_meta_inode_data(struct ovl_copy_up_ctx *c)
736{
4f93b426 737 struct path upperpath, datapath;
0c288874 738 int err;
993a0b2a
VG
739 char *capability = NULL;
740 ssize_t uninitialized_var(cap_size);
0c288874
VG
741
742 ovl_path_upper(c->dentry, &upperpath);
743 if (WARN_ON(upperpath.dentry == NULL))
744 return -EIO;
745
4f93b426
VG
746 ovl_path_lowerdata(c->dentry, &datapath);
747 if (WARN_ON(datapath.dentry == NULL))
748 return -EIO;
749
993a0b2a
VG
750 if (c->stat.size) {
751 err = cap_size = ovl_getxattr(upperpath.dentry, XATTR_NAME_CAPS,
752 &capability, 0);
753 if (err < 0 && err != -ENODATA)
754 goto out;
755 }
756
4f93b426 757 err = ovl_copy_up_data(&datapath, &upperpath, c->stat.size);
0c288874 758 if (err)
993a0b2a
VG
759 goto out_free;
760
761 /*
762 * Writing to upper file will clear security.capability xattr. We
763 * don't want that to happen for normal copy-up operation.
764 */
765 if (capability) {
766 err = ovl_do_setxattr(upperpath.dentry, XATTR_NAME_CAPS,
767 capability, cap_size, 0);
768 if (err)
769 goto out_free;
770 }
771
0c288874
VG
772
773 err = vfs_removexattr(upperpath.dentry, OVL_XATTR_METACOPY);
774 if (err)
993a0b2a 775 goto out_free;
0c288874
VG
776
777 ovl_set_upperdata(d_inode(c->dentry));
993a0b2a
VG
778out_free:
779 kfree(capability);
780out:
0c288874
VG
781 return err;
782}
783
a6fb235a
MS
784static int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
785 int flags)
786{
787 int err;
788 DEFINE_DELAYED_CALL(done);
789 struct path parentpath;
790 struct ovl_copy_up_ctx ctx = {
791 .parent = parent,
792 .dentry = dentry,
793 .workdir = ovl_workdir(dentry),
794 };
795
796 if (WARN_ON(!ctx.workdir))
797 return -EROFS;
798
799 ovl_path_lower(dentry, &ctx.lowerpath);
800 err = vfs_getattr(&ctx.lowerpath, &ctx.stat,
801 STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
802 if (err)
803 return err;
804
44d5bf10
VG
805 ctx.metacopy = ovl_need_meta_copy_up(dentry, ctx.stat.mode, flags);
806
aa3ff3c1
AG
807 if (parent) {
808 ovl_path_upper(parent, &parentpath);
809 ctx.destdir = parentpath.dentry;
810 ctx.destname = dentry->d_name;
a6fb235a 811
aa3ff3c1
AG
812 err = vfs_getattr(&parentpath, &ctx.pstat,
813 STATX_ATIME | STATX_MTIME,
814 AT_STATX_SYNC_AS_STAT);
815 if (err)
816 return err;
817 }
a6fb235a
MS
818
819 /* maybe truncate regular file. this has no effect on dirs */
820 if (flags & O_TRUNC)
821 ctx.stat.size = 0;
822
823 if (S_ISLNK(ctx.stat.mode)) {
824 ctx.link = vfs_get_link(ctx.lowerpath.dentry, &done);
825 if (IS_ERR(ctx.link))
826 return PTR_ERR(ctx.link);
827 }
a6fb235a 828
0c288874 829 err = ovl_copy_up_start(dentry, flags);
fd210b7d
MS
830 /* err < 0: interrupted, err > 0: raced with another copy-up */
831 if (unlikely(err)) {
832 if (err > 0)
833 err = 0;
834 } else {
59be0971
AG
835 if (!ovl_dentry_upper(dentry))
836 err = ovl_do_copy_up(&ctx);
aa3ff3c1 837 if (!err && parent && !ovl_dentry_has_upper_alias(dentry))
f4439de1 838 err = ovl_link_up(&ctx);
0c288874
VG
839 if (!err && ovl_dentry_needs_data_copy_up_locked(dentry, flags))
840 err = ovl_copy_up_meta_inode_data(&ctx);
fd210b7d
MS
841 ovl_copy_up_end(dentry);
842 }
7764235b 843 do_delayed_call(&done);
e9be9d5e
MS
844
845 return err;
846}
847
9aba6521 848int ovl_copy_up_flags(struct dentry *dentry, int flags)
e9be9d5e 849{
8eac98b8
VG
850 int err = 0;
851 const struct cred *old_cred = ovl_override_creds(dentry->d_sb);
aa3ff3c1
AG
852 bool disconnected = (dentry->d_flags & DCACHE_DISCONNECTED);
853
854 /*
855 * With NFS export, copy up can get called for a disconnected non-dir.
856 * In this case, we will copy up lower inode to index dir without
857 * linking it to upper dir.
858 */
859 if (WARN_ON(disconnected && d_is_dir(dentry)))
860 return -EIO;
e9be9d5e 861
e9be9d5e
MS
862 while (!err) {
863 struct dentry *next;
aa3ff3c1 864 struct dentry *parent = NULL;
e9be9d5e 865
0c288874 866 if (ovl_already_copied_up(dentry, flags))
e9be9d5e
MS
867 break;
868
869 next = dget(dentry);
870 /* find the topmost dentry not yet copied up */
aa3ff3c1 871 for (; !disconnected;) {
e9be9d5e
MS
872 parent = dget_parent(next);
873
59be0971 874 if (ovl_dentry_upper(parent))
e9be9d5e
MS
875 break;
876
877 dput(next);
878 next = parent;
879 }
880
a6fb235a 881 err = ovl_copy_up_one(parent, next, flags);
e9be9d5e
MS
882
883 dput(parent);
884 dput(next);
885 }
8eac98b8 886 revert_creds(old_cred);
e9be9d5e
MS
887
888 return err;
889}
9aba6521 890
d6eac039
VG
891static bool ovl_open_need_copy_up(struct dentry *dentry, int flags)
892{
893 /* Copy up of disconnected dentry does not set upper alias */
0c288874 894 if (ovl_already_copied_up(dentry, flags))
d6eac039
VG
895 return false;
896
897 if (special_file(d_inode(dentry)->i_mode))
898 return false;
899
0c288874 900 if (!ovl_open_flags_need_copy_up(flags))
d6eac039
VG
901 return false;
902
903 return true;
904}
905
3428030d 906int ovl_maybe_copy_up(struct dentry *dentry, int flags)
d6eac039
VG
907{
908 int err = 0;
909
3428030d 910 if (ovl_open_need_copy_up(dentry, flags)) {
d6eac039
VG
911 err = ovl_want_write(dentry);
912 if (!err) {
3428030d 913 err = ovl_copy_up_flags(dentry, flags);
d6eac039
VG
914 ovl_drop_write(dentry);
915 }
916 }
917
918 return err;
919}
920
d1e6f6a9
VG
921int ovl_copy_up_with_data(struct dentry *dentry)
922{
923 return ovl_copy_up_flags(dentry, O_WRONLY);
924}
925
9aba6521
AG
926int ovl_copy_up(struct dentry *dentry)
927{
928 return ovl_copy_up_flags(dentry, 0);
929}