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