]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/overlayfs/util.c
ovl: cleanup ovl_update_time()
[mirror_ubuntu-hirsute-kernel.git] / fs / overlayfs / util.c
CommitLineData
bbb1e54d
MS
1/*
2 * Copyright (C) 2011 Novell Inc.
3 * Copyright (C) 2016 Red Hat, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 */
9
10#include <linux/fs.h>
11#include <linux/mount.h>
12#include <linux/slab.h>
5b825c3a 13#include <linux/cred.h>
bbb1e54d 14#include <linux/xattr.h>
02bcd157
AG
15#include <linux/exportfs.h>
16#include <linux/uuid.h>
caf70cb2
AG
17#include <linux/namei.h>
18#include <linux/ratelimit.h>
bbb1e54d 19#include "overlayfs.h"
bbb1e54d
MS
20
21int ovl_want_write(struct dentry *dentry)
22{
23 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
24 return mnt_want_write(ofs->upper_mnt);
25}
26
27void ovl_drop_write(struct dentry *dentry)
28{
29 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
30 mnt_drop_write(ofs->upper_mnt);
31}
32
33struct dentry *ovl_workdir(struct dentry *dentry)
34{
35 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
36 return ofs->workdir;
37}
38
39const struct cred *ovl_override_creds(struct super_block *sb)
40{
41 struct ovl_fs *ofs = sb->s_fs_info;
42
43 return override_creds(ofs->creator_cred);
44}
45
7bcd74b9
AG
46struct super_block *ovl_same_sb(struct super_block *sb)
47{
48 struct ovl_fs *ofs = sb->s_fs_info;
49
50 return ofs->same_sb;
51}
52
02bcd157
AG
53bool ovl_can_decode_fh(struct super_block *sb)
54{
55 return (sb->s_export_op && sb->s_export_op->fh_to_dentry &&
56 !uuid_is_null(&sb->s_uuid));
57}
58
59struct dentry *ovl_indexdir(struct super_block *sb)
60{
61 struct ovl_fs *ofs = sb->s_fs_info;
62
63 return ofs->indexdir;
64}
65
f168f109
AG
66/* Index all files on copy up. For now only enabled for NFS export */
67bool ovl_index_all(struct super_block *sb)
68{
69 struct ovl_fs *ofs = sb->s_fs_info;
70
71 return ofs->config.nfs_export && ofs->config.index;
72}
73
74/* Verify lower origin on lookup. For now only enabled for NFS export */
75bool ovl_verify_lower(struct super_block *sb)
76{
77 struct ovl_fs *ofs = sb->s_fs_info;
78
79 return ofs->config.nfs_export && ofs->config.index;
80}
81
bbb1e54d
MS
82struct ovl_entry *ovl_alloc_entry(unsigned int numlower)
83{
84 size_t size = offsetof(struct ovl_entry, lowerstack[numlower]);
85 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);
86
87 if (oe)
88 oe->numlower = numlower;
89
90 return oe;
91}
92
93bool ovl_dentry_remote(struct dentry *dentry)
94{
95 return dentry->d_flags &
96 (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE |
97 DCACHE_OP_REAL);
98}
99
100bool ovl_dentry_weird(struct dentry *dentry)
101{
102 return dentry->d_flags & (DCACHE_NEED_AUTOMOUNT |
103 DCACHE_MANAGE_TRANSIT |
104 DCACHE_OP_HASH |
105 DCACHE_OP_COMPARE);
106}
107
108enum ovl_path_type ovl_path_type(struct dentry *dentry)
109{
110 struct ovl_entry *oe = dentry->d_fsdata;
111 enum ovl_path_type type = 0;
112
09d8b586 113 if (ovl_dentry_upper(dentry)) {
bbb1e54d
MS
114 type = __OVL_PATH_UPPER;
115
116 /*
59548503 117 * Non-dir dentry can hold lower dentry of its copy up origin.
bbb1e54d 118 */
59548503
AG
119 if (oe->numlower) {
120 type |= __OVL_PATH_ORIGIN;
121 if (d_is_dir(dentry))
122 type |= __OVL_PATH_MERGE;
123 }
bbb1e54d
MS
124 } else {
125 if (oe->numlower > 1)
126 type |= __OVL_PATH_MERGE;
127 }
128 return type;
129}
130
131void ovl_path_upper(struct dentry *dentry, struct path *path)
132{
133 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
bbb1e54d
MS
134
135 path->mnt = ofs->upper_mnt;
09d8b586 136 path->dentry = ovl_dentry_upper(dentry);
bbb1e54d
MS
137}
138
139void ovl_path_lower(struct dentry *dentry, struct path *path)
140{
141 struct ovl_entry *oe = dentry->d_fsdata;
142
b9343632
CR
143 if (oe->numlower) {
144 path->mnt = oe->lowerstack[0].layer->mnt;
145 path->dentry = oe->lowerstack[0].dentry;
146 } else {
147 *path = (struct path) { };
148 }
bbb1e54d
MS
149}
150
151enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path)
152{
153 enum ovl_path_type type = ovl_path_type(dentry);
154
155 if (!OVL_TYPE_UPPER(type))
156 ovl_path_lower(dentry, path);
157 else
158 ovl_path_upper(dentry, path);
159
160 return type;
161}
162
163struct dentry *ovl_dentry_upper(struct dentry *dentry)
164{
09d8b586 165 return ovl_upperdentry_dereference(OVL_I(d_inode(dentry)));
bbb1e54d
MS
166}
167
168struct dentry *ovl_dentry_lower(struct dentry *dentry)
169{
170 struct ovl_entry *oe = dentry->d_fsdata;
171
09d8b586 172 return oe->numlower ? oe->lowerstack[0].dentry : NULL;
bbb1e54d
MS
173}
174
175struct dentry *ovl_dentry_real(struct dentry *dentry)
176{
09d8b586 177 return ovl_dentry_upper(dentry) ?: ovl_dentry_lower(dentry);
bbb1e54d
MS
178}
179
1d88f183
MS
180struct dentry *ovl_i_dentry_upper(struct inode *inode)
181{
182 return ovl_upperdentry_dereference(OVL_I(inode));
183}
184
09d8b586 185struct inode *ovl_inode_upper(struct inode *inode)
25b7713a 186{
1d88f183 187 struct dentry *upperdentry = ovl_i_dentry_upper(inode);
25b7713a 188
09d8b586
MS
189 return upperdentry ? d_inode(upperdentry) : NULL;
190}
25b7713a 191
09d8b586
MS
192struct inode *ovl_inode_lower(struct inode *inode)
193{
194 return OVL_I(inode)->lower;
195}
25b7713a 196
09d8b586
MS
197struct inode *ovl_inode_real(struct inode *inode)
198{
199 return ovl_inode_upper(inode) ?: ovl_inode_lower(inode);
25b7713a
MS
200}
201
09d8b586 202
4edb83bb 203struct ovl_dir_cache *ovl_dir_cache(struct inode *inode)
bbb1e54d 204{
4edb83bb 205 return OVL_I(inode)->cache;
bbb1e54d
MS
206}
207
4edb83bb 208void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache)
bbb1e54d 209{
4edb83bb 210 OVL_I(inode)->cache = cache;
bbb1e54d
MS
211}
212
c62520a8
AG
213void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry)
214{
215 set_bit(flag, &OVL_E(dentry)->flags);
216}
217
218void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry)
219{
220 clear_bit(flag, &OVL_E(dentry)->flags);
221}
222
223bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry)
224{
225 return test_bit(flag, &OVL_E(dentry)->flags);
226}
227
bbb1e54d
MS
228bool ovl_dentry_is_opaque(struct dentry *dentry)
229{
c62520a8 230 return ovl_dentry_test_flag(OVL_E_OPAQUE, dentry);
bbb1e54d
MS
231}
232
233bool ovl_dentry_is_whiteout(struct dentry *dentry)
234{
235 return !dentry->d_inode && ovl_dentry_is_opaque(dentry);
236}
237
5cf5b477 238void ovl_dentry_set_opaque(struct dentry *dentry)
bbb1e54d 239{
c62520a8 240 ovl_dentry_set_flag(OVL_E_OPAQUE, dentry);
bbb1e54d
MS
241}
242
55acc661 243/*
aa3ff3c1
AG
244 * For hard links and decoded file handles, it's possible for ovl_dentry_upper()
245 * to return positive, while there's no actual upper alias for the inode.
246 * Copy up code needs to know about the existence of the upper alias, so it
247 * can't use ovl_dentry_upper().
55acc661
MS
248 */
249bool ovl_dentry_has_upper_alias(struct dentry *dentry)
250{
c62520a8 251 return ovl_dentry_test_flag(OVL_E_UPPER_ALIAS, dentry);
55acc661
MS
252}
253
254void ovl_dentry_set_upper_alias(struct dentry *dentry)
255{
c62520a8 256 ovl_dentry_set_flag(OVL_E_UPPER_ALIAS, dentry);
55acc661
MS
257}
258
a6c60655
MS
259bool ovl_redirect_dir(struct super_block *sb)
260{
261 struct ovl_fs *ofs = sb->s_fs_info;
262
21a22878 263 return ofs->config.redirect_dir && !ofs->noxattr;
a6c60655
MS
264}
265
266const char *ovl_dentry_get_redirect(struct dentry *dentry)
267{
cf31c463 268 return OVL_I(d_inode(dentry))->redirect;
a6c60655
MS
269}
270
271void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect)
272{
cf31c463 273 struct ovl_inode *oi = OVL_I(d_inode(dentry));
a6c60655 274
cf31c463
MS
275 kfree(oi->redirect);
276 oi->redirect = redirect;
a6c60655
MS
277}
278
09d8b586
MS
279void ovl_inode_init(struct inode *inode, struct dentry *upperdentry,
280 struct dentry *lowerdentry)
bbb1e54d 281{
695b46e7
AG
282 struct inode *realinode = d_inode(upperdentry ?: lowerdentry);
283
09d8b586
MS
284 if (upperdentry)
285 OVL_I(inode)->__upperdentry = upperdentry;
286 if (lowerdentry)
31747eda 287 OVL_I(inode)->lower = igrab(d_inode(lowerdentry));
bbb1e54d 288
695b46e7
AG
289 ovl_copyattr(realinode, inode);
290 if (!inode->i_ino)
291 inode->i_ino = realinode->i_ino;
bbb1e54d
MS
292}
293
09d8b586 294void ovl_inode_update(struct inode *inode, struct dentry *upperdentry)
bbb1e54d 295{
09d8b586 296 struct inode *upperinode = d_inode(upperdentry);
e6d2ebdd 297
09d8b586
MS
298 WARN_ON(OVL_I(inode)->__upperdentry);
299
25b7713a 300 /*
09d8b586 301 * Make sure upperdentry is consistent before making it visible
25b7713a
MS
302 */
303 smp_wmb();
09d8b586 304 OVL_I(inode)->__upperdentry = upperdentry;
31747eda 305 if (inode_unhashed(inode)) {
695b46e7
AG
306 if (!inode->i_ino)
307 inode->i_ino = upperinode->i_ino;
25b7713a 308 inode->i_private = upperinode;
bbb1e54d 309 __insert_inode_hash(inode, (unsigned long) upperinode);
25b7713a 310 }
bbb1e54d
MS
311}
312
4edb83bb 313void ovl_dentry_version_inc(struct dentry *dentry, bool impurity)
bbb1e54d 314{
04a01ac7 315 struct inode *inode = d_inode(dentry);
bbb1e54d 316
04a01ac7 317 WARN_ON(!inode_is_locked(inode));
4edb83bb
MS
318 /*
319 * Version is used by readdir code to keep cache consistent. For merge
320 * dirs all changes need to be noted. For non-merge dirs, cache only
321 * contains impure (ones which have been copied up and have origins)
322 * entries, so only need to note changes to impure entries.
323 */
324 if (OVL_TYPE_MERGE(ovl_path_type(dentry)) || impurity)
325 OVL_I(inode)->version++;
bbb1e54d
MS
326}
327
328u64 ovl_dentry_version_get(struct dentry *dentry)
329{
04a01ac7 330 struct inode *inode = d_inode(dentry);
bbb1e54d 331
04a01ac7
MS
332 WARN_ON(!inode_is_locked(inode));
333 return OVL_I(inode)->version;
bbb1e54d
MS
334}
335
336bool ovl_is_whiteout(struct dentry *dentry)
337{
338 struct inode *inode = dentry->d_inode;
339
340 return inode && IS_WHITEOUT(inode);
341}
342
343struct file *ovl_path_open(struct path *path, int flags)
344{
345 return dentry_open(path, flags | O_NOATIME, current_cred());
346}
39d3d60a
AG
347
348int ovl_copy_up_start(struct dentry *dentry)
349{
a015dafc 350 struct ovl_inode *oi = OVL_I(d_inode(dentry));
39d3d60a
AG
351 int err;
352
a015dafc 353 err = mutex_lock_interruptible(&oi->lock);
59be0971 354 if (!err && ovl_dentry_has_upper_alias(dentry)) {
a015dafc
AG
355 err = 1; /* Already copied up */
356 mutex_unlock(&oi->lock);
39d3d60a 357 }
39d3d60a
AG
358
359 return err;
360}
361
362void ovl_copy_up_end(struct dentry *dentry)
363{
a015dafc 364 mutex_unlock(&OVL_I(d_inode(dentry))->lock);
39d3d60a 365}
82b749b2 366
b79e05aa
AG
367bool ovl_check_origin_xattr(struct dentry *dentry)
368{
369 int res;
370
371 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, NULL, 0);
372
373 /* Zero size value means "copied up but origin unknown" */
374 if (res >= 0)
375 return true;
376
377 return false;
378}
379
f3a15685
AG
380bool ovl_check_dir_xattr(struct dentry *dentry, const char *name)
381{
382 int res;
383 char val;
384
385 if (!d_is_dir(dentry))
386 return false;
387
388 res = vfs_getxattr(dentry, name, &val, 1);
389 if (res == 1 && val == 'y')
390 return true;
391
392 return false;
393}
394
82b749b2
AG
395int ovl_check_setxattr(struct dentry *dentry, struct dentry *upperdentry,
396 const char *name, const void *value, size_t size,
397 int xerr)
398{
399 int err;
400 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
401
402 if (ofs->noxattr)
403 return xerr;
404
405 err = ovl_do_setxattr(upperdentry, name, value, size, 0);
406
407 if (err == -EOPNOTSUPP) {
408 pr_warn("overlayfs: cannot set %s xattr on upper\n", name);
409 ofs->noxattr = true;
410 return xerr;
411 }
412
413 return err;
414}
f3a15685
AG
415
416int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry)
417{
418 int err;
f3a15685 419
13c72075 420 if (ovl_test_flag(OVL_IMPURE, d_inode(dentry)))
f3a15685
AG
421 return 0;
422
423 /*
424 * Do not fail when upper doesn't support xattrs.
425 * Upper inodes won't have origin nor redirect xattr anyway.
426 */
427 err = ovl_check_setxattr(dentry, upperdentry, OVL_XATTR_IMPURE,
428 "y", 1, 0);
429 if (!err)
13c72075 430 ovl_set_flag(OVL_IMPURE, d_inode(dentry));
f3a15685
AG
431
432 return err;
433}
13c72075
MS
434
435void ovl_set_flag(unsigned long flag, struct inode *inode)
436{
437 set_bit(flag, &OVL_I(inode)->flags);
438}
439
4edb83bb
MS
440void ovl_clear_flag(unsigned long flag, struct inode *inode)
441{
442 clear_bit(flag, &OVL_I(inode)->flags);
443}
444
13c72075
MS
445bool ovl_test_flag(unsigned long flag, struct inode *inode)
446{
447 return test_bit(flag, &OVL_I(inode)->flags);
448}
ad0af710
AG
449
450/**
451 * Caller must hold a reference to inode to prevent it from being freed while
452 * it is marked inuse.
453 */
454bool ovl_inuse_trylock(struct dentry *dentry)
455{
456 struct inode *inode = d_inode(dentry);
457 bool locked = false;
458
459 spin_lock(&inode->i_lock);
460 if (!(inode->i_state & I_OVL_INUSE)) {
461 inode->i_state |= I_OVL_INUSE;
462 locked = true;
463 }
464 spin_unlock(&inode->i_lock);
465
466 return locked;
467}
468
469void ovl_inuse_unlock(struct dentry *dentry)
470{
471 if (dentry) {
472 struct inode *inode = d_inode(dentry);
473
474 spin_lock(&inode->i_lock);
475 WARN_ON(!(inode->i_state & I_OVL_INUSE));
476 inode->i_state &= ~I_OVL_INUSE;
477 spin_unlock(&inode->i_lock);
478 }
479}
5f8415d6 480
24b33ee1
AG
481/*
482 * Does this overlay dentry need to be indexed on copy up?
483 */
484bool ovl_need_index(struct dentry *dentry)
485{
486 struct dentry *lower = ovl_dentry_lower(dentry);
487
488 if (!lower || !ovl_indexdir(dentry->d_sb))
489 return false;
490
fbd2d207 491 /* Index all files for NFS export and consistency verification */
016b720f 492 if (ovl_index_all(dentry->d_sb))
fbd2d207
AG
493 return true;
494
24b33ee1
AG
495 /* Index only lower hardlinks on copy up */
496 if (!d_is_dir(lower) && d_inode(lower)->i_nlink > 1)
497 return true;
498
499 return false;
500}
501
9f4ec904 502/* Caller must hold OVL_I(inode)->lock */
caf70cb2
AG
503static void ovl_cleanup_index(struct dentry *dentry)
504{
e7dd0e71
AG
505 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
506 struct inode *dir = indexdir->d_inode;
caf70cb2
AG
507 struct dentry *lowerdentry = ovl_dentry_lower(dentry);
508 struct dentry *upperdentry = ovl_dentry_upper(dentry);
509 struct dentry *index = NULL;
510 struct inode *inode;
511 struct qstr name;
512 int err;
513
514 err = ovl_get_index_name(lowerdentry, &name);
515 if (err)
516 goto fail;
517
518 inode = d_inode(upperdentry);
89a17556 519 if (!S_ISDIR(inode->i_mode) && inode->i_nlink != 1) {
caf70cb2
AG
520 pr_warn_ratelimited("overlayfs: cleanup linked index (%pd2, ino=%lu, nlink=%u)\n",
521 upperdentry, inode->i_ino, inode->i_nlink);
522 /*
523 * We either have a bug with persistent union nlink or a lower
524 * hardlink was added while overlay is mounted. Adding a lower
525 * hardlink and then unlinking all overlay hardlinks would drop
526 * overlay nlink to zero before all upper inodes are unlinked.
527 * As a safety measure, when that situation is detected, set
528 * the overlay nlink to the index inode nlink minus one for the
529 * index entry itself.
530 */
531 set_nlink(d_inode(dentry), inode->i_nlink - 1);
532 ovl_set_nlink_upper(dentry);
533 goto out;
534 }
535
536 inode_lock_nested(dir, I_MUTEX_PARENT);
e7dd0e71 537 index = lookup_one_len(name.name, indexdir, name.len);
caf70cb2 538 err = PTR_ERR(index);
e7dd0e71 539 if (IS_ERR(index)) {
9f4ec904 540 index = NULL;
e7dd0e71
AG
541 } else if (ovl_index_all(dentry->d_sb)) {
542 /* Whiteout orphan index to block future open by handle */
543 err = ovl_cleanup_and_whiteout(indexdir, dir, index);
544 } else {
545 /* Cleanup orphan index entries */
546 err = ovl_cleanup(dir, index);
547 }
9f4ec904 548
caf70cb2
AG
549 inode_unlock(dir);
550 if (err)
551 goto fail;
552
553out:
554 dput(index);
555 return;
556
557fail:
558 pr_err("overlayfs: cleanup index of '%pd2' failed (%i)\n", dentry, err);
559 goto out;
560}
561
5f8415d6
AG
562/*
563 * Operations that change overlay inode and upper inode nlink need to be
564 * synchronized with copy up for persistent nlink accounting.
565 */
566int ovl_nlink_start(struct dentry *dentry, bool *locked)
567{
568 struct ovl_inode *oi = OVL_I(d_inode(dentry));
569 const struct cred *old_cred;
570 int err;
571
89a17556 572 if (!d_inode(dentry))
5f8415d6
AG
573 return 0;
574
575 /*
576 * With inodes index is enabled, we store the union overlay nlink
24b33ee1 577 * in an xattr on the index inode. When whiting out an indexed lower,
5f8415d6
AG
578 * we need to decrement the overlay persistent nlink, but before the
579 * first copy up, we have no upper index inode to store the xattr.
580 *
24b33ee1 581 * As a workaround, before whiteout/rename over an indexed lower,
5f8415d6
AG
582 * copy up to create the upper index. Creating the upper index will
583 * initialize the overlay nlink, so it could be dropped if unlink
584 * or rename succeeds.
585 *
586 * TODO: implement metadata only index copy up when called with
587 * ovl_copy_up_flags(dentry, O_PATH).
588 */
24b33ee1 589 if (ovl_need_index(dentry) && !ovl_dentry_has_upper_alias(dentry)) {
5f8415d6
AG
590 err = ovl_copy_up(dentry);
591 if (err)
592 return err;
593 }
594
595 err = mutex_lock_interruptible(&oi->lock);
596 if (err)
597 return err;
598
89a17556 599 if (d_is_dir(dentry) || !ovl_test_flag(OVL_INDEX, d_inode(dentry)))
5f8415d6
AG
600 goto out;
601
602 old_cred = ovl_override_creds(dentry->d_sb);
603 /*
604 * The overlay inode nlink should be incremented/decremented IFF the
605 * upper operation succeeds, along with nlink change of upper inode.
606 * Therefore, before link/unlink/rename, we store the union nlink
607 * value relative to the upper inode nlink in an upper inode xattr.
608 */
609 err = ovl_set_nlink_upper(dentry);
610 revert_creds(old_cred);
611
612out:
613 if (err)
614 mutex_unlock(&oi->lock);
615 else
616 *locked = true;
617
618 return err;
619}
620
621void ovl_nlink_end(struct dentry *dentry, bool locked)
622{
caf70cb2
AG
623 if (locked) {
624 if (ovl_test_flag(OVL_INDEX, d_inode(dentry)) &&
625 d_inode(dentry)->i_nlink == 0) {
626 const struct cred *old_cred;
627
628 old_cred = ovl_override_creds(dentry->d_sb);
629 ovl_cleanup_index(dentry);
630 revert_creds(old_cred);
631 }
632
5f8415d6 633 mutex_unlock(&OVL_I(d_inode(dentry))->lock);
caf70cb2 634 }
5f8415d6 635}
5820dc08
AG
636
637int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir)
638{
639 /* Workdir should not be the same as upperdir */
640 if (workdir == upperdir)
641 goto err;
642
643 /* Workdir should not be subdir of upperdir and vice versa */
644 if (lock_rename(workdir, upperdir) != NULL)
645 goto err_unlock;
646
647 return 0;
648
649err_unlock:
650 unlock_rename(workdir, upperdir);
651err:
652 pr_err("overlayfs: failed to lock workdir+upperdir\n");
653 return -EIO;
654}