]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/overlayfs/util.c
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
[mirror_ubuntu-hirsute-kernel.git] / fs / overlayfs / util.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
bbb1e54d
MS
2/*
3 * Copyright (C) 2011 Novell Inc.
4 * Copyright (C) 2016 Red Hat, Inc.
bbb1e54d
MS
5 */
6
7#include <linux/fs.h>
8#include <linux/mount.h>
9#include <linux/slab.h>
5b825c3a 10#include <linux/cred.h>
bbb1e54d 11#include <linux/xattr.h>
02bcd157
AG
12#include <linux/exportfs.h>
13#include <linux/uuid.h>
caf70cb2
AG
14#include <linux/namei.h>
15#include <linux/ratelimit.h>
bbb1e54d 16#include "overlayfs.h"
bbb1e54d
MS
17
18int ovl_want_write(struct dentry *dentry)
19{
20 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
21 return mnt_want_write(ofs->upper_mnt);
22}
23
24void ovl_drop_write(struct dentry *dentry)
25{
26 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
27 mnt_drop_write(ofs->upper_mnt);
28}
29
30struct dentry *ovl_workdir(struct dentry *dentry)
31{
32 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
33 return ofs->workdir;
34}
35
36const struct cred *ovl_override_creds(struct super_block *sb)
37{
38 struct ovl_fs *ofs = sb->s_fs_info;
39
40 return override_creds(ofs->creator_cred);
41}
42
7bcd74b9
AG
43struct super_block *ovl_same_sb(struct super_block *sb)
44{
45 struct ovl_fs *ofs = sb->s_fs_info;
46
5148626b
AG
47 if (!ofs->numlowerfs)
48 return ofs->upper_mnt->mnt_sb;
49 else if (ofs->numlowerfs == 1 && !ofs->upper_mnt)
50 return ofs->lower_fs[0].sb;
51 else
52 return NULL;
7bcd74b9
AG
53}
54
e487d889
AG
55/*
56 * Check if underlying fs supports file handles and try to determine encoding
57 * type, in order to deduce maximum inode number used by fs.
58 *
59 * Return 0 if file handles are not supported.
60 * Return 1 (FILEID_INO32_GEN) if fs uses the default 32bit inode encoding.
61 * Return -1 if fs uses a non default encoding with unknown inode size.
62 */
63int ovl_can_decode_fh(struct super_block *sb)
02bcd157 64{
9df085f3 65 if (!sb->s_export_op || !sb->s_export_op->fh_to_dentry)
e487d889
AG
66 return 0;
67
68 return sb->s_export_op->encode_fh ? -1 : FILEID_INO32_GEN;
02bcd157
AG
69}
70
71struct dentry *ovl_indexdir(struct super_block *sb)
72{
73 struct ovl_fs *ofs = sb->s_fs_info;
74
75 return ofs->indexdir;
76}
77
f168f109
AG
78/* Index all files on copy up. For now only enabled for NFS export */
79bool ovl_index_all(struct super_block *sb)
80{
81 struct ovl_fs *ofs = sb->s_fs_info;
82
83 return ofs->config.nfs_export && ofs->config.index;
84}
85
86/* Verify lower origin on lookup. For now only enabled for NFS export */
87bool ovl_verify_lower(struct super_block *sb)
88{
89 struct ovl_fs *ofs = sb->s_fs_info;
90
91 return ofs->config.nfs_export && ofs->config.index;
92}
93
bbb1e54d
MS
94struct ovl_entry *ovl_alloc_entry(unsigned int numlower)
95{
96 size_t size = offsetof(struct ovl_entry, lowerstack[numlower]);
97 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);
98
99 if (oe)
100 oe->numlower = numlower;
101
102 return oe;
103}
104
105bool ovl_dentry_remote(struct dentry *dentry)
106{
107 return dentry->d_flags &
108 (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE |
109 DCACHE_OP_REAL);
110}
111
112bool ovl_dentry_weird(struct dentry *dentry)
113{
114 return dentry->d_flags & (DCACHE_NEED_AUTOMOUNT |
115 DCACHE_MANAGE_TRANSIT |
116 DCACHE_OP_HASH |
117 DCACHE_OP_COMPARE);
118}
119
120enum ovl_path_type ovl_path_type(struct dentry *dentry)
121{
122 struct ovl_entry *oe = dentry->d_fsdata;
123 enum ovl_path_type type = 0;
124
09d8b586 125 if (ovl_dentry_upper(dentry)) {
bbb1e54d
MS
126 type = __OVL_PATH_UPPER;
127
128 /*
59548503 129 * Non-dir dentry can hold lower dentry of its copy up origin.
bbb1e54d 130 */
59548503 131 if (oe->numlower) {
60124877
VG
132 if (ovl_test_flag(OVL_CONST_INO, d_inode(dentry)))
133 type |= __OVL_PATH_ORIGIN;
0b17c28a
VG
134 if (d_is_dir(dentry) ||
135 !ovl_has_upperdata(d_inode(dentry)))
59548503
AG
136 type |= __OVL_PATH_MERGE;
137 }
bbb1e54d
MS
138 } else {
139 if (oe->numlower > 1)
140 type |= __OVL_PATH_MERGE;
141 }
142 return type;
143}
144
145void ovl_path_upper(struct dentry *dentry, struct path *path)
146{
147 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
bbb1e54d
MS
148
149 path->mnt = ofs->upper_mnt;
09d8b586 150 path->dentry = ovl_dentry_upper(dentry);
bbb1e54d
MS
151}
152
153void ovl_path_lower(struct dentry *dentry, struct path *path)
154{
155 struct ovl_entry *oe = dentry->d_fsdata;
156
b9343632
CR
157 if (oe->numlower) {
158 path->mnt = oe->lowerstack[0].layer->mnt;
159 path->dentry = oe->lowerstack[0].dentry;
160 } else {
161 *path = (struct path) { };
162 }
bbb1e54d
MS
163}
164
4f93b426
VG
165void ovl_path_lowerdata(struct dentry *dentry, struct path *path)
166{
167 struct ovl_entry *oe = dentry->d_fsdata;
168
169 if (oe->numlower) {
170 path->mnt = oe->lowerstack[oe->numlower - 1].layer->mnt;
171 path->dentry = oe->lowerstack[oe->numlower - 1].dentry;
172 } else {
173 *path = (struct path) { };
174 }
175}
176
bbb1e54d
MS
177enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path)
178{
179 enum ovl_path_type type = ovl_path_type(dentry);
180
181 if (!OVL_TYPE_UPPER(type))
182 ovl_path_lower(dentry, path);
183 else
184 ovl_path_upper(dentry, path);
185
186 return type;
187}
188
189struct dentry *ovl_dentry_upper(struct dentry *dentry)
190{
09d8b586 191 return ovl_upperdentry_dereference(OVL_I(d_inode(dentry)));
bbb1e54d
MS
192}
193
194struct dentry *ovl_dentry_lower(struct dentry *dentry)
195{
196 struct ovl_entry *oe = dentry->d_fsdata;
197
09d8b586 198 return oe->numlower ? oe->lowerstack[0].dentry : NULL;
bbb1e54d
MS
199}
200
da309e8c
AG
201struct ovl_layer *ovl_layer_lower(struct dentry *dentry)
202{
203 struct ovl_entry *oe = dentry->d_fsdata;
204
205 return oe->numlower ? oe->lowerstack[0].layer : NULL;
206}
207
647d253f
VG
208/*
209 * ovl_dentry_lower() could return either a data dentry or metacopy dentry
210 * dependig on what is stored in lowerstack[0]. At times we need to find
211 * lower dentry which has data (and not metacopy dentry). This helper
212 * returns the lower data dentry.
213 */
214struct dentry *ovl_dentry_lowerdata(struct dentry *dentry)
215{
216 struct ovl_entry *oe = dentry->d_fsdata;
217
218 return oe->numlower ? oe->lowerstack[oe->numlower - 1].dentry : NULL;
219}
220
bbb1e54d
MS
221struct dentry *ovl_dentry_real(struct dentry *dentry)
222{
09d8b586 223 return ovl_dentry_upper(dentry) ?: ovl_dentry_lower(dentry);
bbb1e54d
MS
224}
225
1d88f183
MS
226struct dentry *ovl_i_dentry_upper(struct inode *inode)
227{
228 return ovl_upperdentry_dereference(OVL_I(inode));
229}
230
09d8b586 231struct inode *ovl_inode_upper(struct inode *inode)
25b7713a 232{
1d88f183 233 struct dentry *upperdentry = ovl_i_dentry_upper(inode);
25b7713a 234
09d8b586
MS
235 return upperdentry ? d_inode(upperdentry) : NULL;
236}
25b7713a 237
09d8b586
MS
238struct inode *ovl_inode_lower(struct inode *inode)
239{
240 return OVL_I(inode)->lower;
241}
25b7713a 242
09d8b586
MS
243struct inode *ovl_inode_real(struct inode *inode)
244{
245 return ovl_inode_upper(inode) ?: ovl_inode_lower(inode);
25b7713a
MS
246}
247
2664bd08
VG
248/* Return inode which contains lower data. Do not return metacopy */
249struct inode *ovl_inode_lowerdata(struct inode *inode)
250{
251 if (WARN_ON(!S_ISREG(inode->i_mode)))
252 return NULL;
253
254 return OVL_I(inode)->lowerdata ?: ovl_inode_lower(inode);
255}
09d8b586 256
4823d49c
VG
257/* Return real inode which contains data. Does not return metacopy inode */
258struct inode *ovl_inode_realdata(struct inode *inode)
259{
260 struct inode *upperinode;
261
262 upperinode = ovl_inode_upper(inode);
263 if (upperinode && ovl_has_upperdata(inode))
264 return upperinode;
265
266 return ovl_inode_lowerdata(inode);
267}
268
4edb83bb 269struct ovl_dir_cache *ovl_dir_cache(struct inode *inode)
bbb1e54d 270{
4edb83bb 271 return OVL_I(inode)->cache;
bbb1e54d
MS
272}
273
4edb83bb 274void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache)
bbb1e54d 275{
4edb83bb 276 OVL_I(inode)->cache = cache;
bbb1e54d
MS
277}
278
c62520a8
AG
279void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry)
280{
281 set_bit(flag, &OVL_E(dentry)->flags);
282}
283
284void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry)
285{
286 clear_bit(flag, &OVL_E(dentry)->flags);
287}
288
289bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry)
290{
291 return test_bit(flag, &OVL_E(dentry)->flags);
292}
293
bbb1e54d
MS
294bool ovl_dentry_is_opaque(struct dentry *dentry)
295{
c62520a8 296 return ovl_dentry_test_flag(OVL_E_OPAQUE, dentry);
bbb1e54d
MS
297}
298
299bool ovl_dentry_is_whiteout(struct dentry *dentry)
300{
301 return !dentry->d_inode && ovl_dentry_is_opaque(dentry);
302}
303
5cf5b477 304void ovl_dentry_set_opaque(struct dentry *dentry)
bbb1e54d 305{
c62520a8 306 ovl_dentry_set_flag(OVL_E_OPAQUE, dentry);
bbb1e54d
MS
307}
308
55acc661 309/*
aa3ff3c1
AG
310 * For hard links and decoded file handles, it's possible for ovl_dentry_upper()
311 * to return positive, while there's no actual upper alias for the inode.
312 * Copy up code needs to know about the existence of the upper alias, so it
313 * can't use ovl_dentry_upper().
55acc661
MS
314 */
315bool ovl_dentry_has_upper_alias(struct dentry *dentry)
316{
c62520a8 317 return ovl_dentry_test_flag(OVL_E_UPPER_ALIAS, dentry);
55acc661
MS
318}
319
320void ovl_dentry_set_upper_alias(struct dentry *dentry)
321{
c62520a8 322 ovl_dentry_set_flag(OVL_E_UPPER_ALIAS, dentry);
55acc661
MS
323}
324
0c288874
VG
325static bool ovl_should_check_upperdata(struct inode *inode)
326{
327 if (!S_ISREG(inode->i_mode))
328 return false;
329
330 if (!ovl_inode_lower(inode))
331 return false;
332
333 return true;
334}
335
336bool ovl_has_upperdata(struct inode *inode)
337{
338 if (!ovl_should_check_upperdata(inode))
339 return true;
340
341 if (!ovl_test_flag(OVL_UPPERDATA, inode))
342 return false;
343 /*
344 * Pairs with smp_wmb() in ovl_set_upperdata(). Main user of
345 * ovl_has_upperdata() is ovl_copy_up_meta_inode_data(). Make sure
346 * if setting of OVL_UPPERDATA is visible, then effects of writes
347 * before that are visible too.
348 */
349 smp_rmb();
350 return true;
351}
352
353void ovl_set_upperdata(struct inode *inode)
354{
355 /*
356 * Pairs with smp_rmb() in ovl_has_upperdata(). Make sure
357 * if OVL_UPPERDATA flag is visible, then effects of write operations
358 * before it are visible as well.
359 */
360 smp_wmb();
361 ovl_set_flag(OVL_UPPERDATA, inode);
362}
363
364/* Caller should hold ovl_inode->lock */
365bool ovl_dentry_needs_data_copy_up_locked(struct dentry *dentry, int flags)
366{
367 if (!ovl_open_flags_need_copy_up(flags))
368 return false;
369
370 return !ovl_test_flag(OVL_UPPERDATA, d_inode(dentry));
371}
372
373bool ovl_dentry_needs_data_copy_up(struct dentry *dentry, int flags)
374{
375 if (!ovl_open_flags_need_copy_up(flags))
376 return false;
377
378 return !ovl_has_upperdata(d_inode(dentry));
379}
380
a6c60655
MS
381bool ovl_redirect_dir(struct super_block *sb)
382{
383 struct ovl_fs *ofs = sb->s_fs_info;
384
21a22878 385 return ofs->config.redirect_dir && !ofs->noxattr;
a6c60655
MS
386}
387
388const char *ovl_dentry_get_redirect(struct dentry *dentry)
389{
cf31c463 390 return OVL_I(d_inode(dentry))->redirect;
a6c60655
MS
391}
392
393void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect)
394{
cf31c463 395 struct ovl_inode *oi = OVL_I(d_inode(dentry));
a6c60655 396
cf31c463
MS
397 kfree(oi->redirect);
398 oi->redirect = redirect;
a6c60655
MS
399}
400
09d8b586 401void ovl_inode_init(struct inode *inode, struct dentry *upperdentry,
2664bd08 402 struct dentry *lowerdentry, struct dentry *lowerdata)
bbb1e54d 403{
695b46e7
AG
404 struct inode *realinode = d_inode(upperdentry ?: lowerdentry);
405
09d8b586
MS
406 if (upperdentry)
407 OVL_I(inode)->__upperdentry = upperdentry;
408 if (lowerdentry)
31747eda 409 OVL_I(inode)->lower = igrab(d_inode(lowerdentry));
2664bd08
VG
410 if (lowerdata)
411 OVL_I(inode)->lowerdata = igrab(d_inode(lowerdata));
bbb1e54d 412
695b46e7 413 ovl_copyattr(realinode, inode);
4f357295 414 ovl_copyflags(realinode, inode);
695b46e7
AG
415 if (!inode->i_ino)
416 inode->i_ino = realinode->i_ino;
bbb1e54d
MS
417}
418
09d8b586 419void ovl_inode_update(struct inode *inode, struct dentry *upperdentry)
bbb1e54d 420{
09d8b586 421 struct inode *upperinode = d_inode(upperdentry);
e6d2ebdd 422
09d8b586
MS
423 WARN_ON(OVL_I(inode)->__upperdentry);
424
25b7713a 425 /*
09d8b586 426 * Make sure upperdentry is consistent before making it visible
25b7713a
MS
427 */
428 smp_wmb();
09d8b586 429 OVL_I(inode)->__upperdentry = upperdentry;
31747eda 430 if (inode_unhashed(inode)) {
695b46e7
AG
431 if (!inode->i_ino)
432 inode->i_ino = upperinode->i_ino;
25b7713a 433 inode->i_private = upperinode;
bbb1e54d 434 __insert_inode_hash(inode, (unsigned long) upperinode);
25b7713a 435 }
bbb1e54d
MS
436}
437
d9854c87 438static void ovl_dentry_version_inc(struct dentry *dentry, bool impurity)
bbb1e54d 439{
04a01ac7 440 struct inode *inode = d_inode(dentry);
bbb1e54d 441
04a01ac7 442 WARN_ON(!inode_is_locked(inode));
4edb83bb
MS
443 /*
444 * Version is used by readdir code to keep cache consistent. For merge
445 * dirs all changes need to be noted. For non-merge dirs, cache only
446 * contains impure (ones which have been copied up and have origins)
447 * entries, so only need to note changes to impure entries.
448 */
449 if (OVL_TYPE_MERGE(ovl_path_type(dentry)) || impurity)
450 OVL_I(inode)->version++;
bbb1e54d
MS
451}
452
d9854c87
MS
453void ovl_dir_modified(struct dentry *dentry, bool impurity)
454{
455 /* Copy mtime/ctime */
456 ovl_copyattr(d_inode(ovl_dentry_upper(dentry)), d_inode(dentry));
457
458 ovl_dentry_version_inc(dentry, impurity);
459}
460
bbb1e54d
MS
461u64 ovl_dentry_version_get(struct dentry *dentry)
462{
04a01ac7 463 struct inode *inode = d_inode(dentry);
bbb1e54d 464
04a01ac7
MS
465 WARN_ON(!inode_is_locked(inode));
466 return OVL_I(inode)->version;
bbb1e54d
MS
467}
468
469bool ovl_is_whiteout(struct dentry *dentry)
470{
471 struct inode *inode = dentry->d_inode;
472
473 return inode && IS_WHITEOUT(inode);
474}
475
476struct file *ovl_path_open(struct path *path, int flags)
477{
478 return dentry_open(path, flags | O_NOATIME, current_cred());
479}
39d3d60a 480
0c288874
VG
481/* Caller should hold ovl_inode->lock */
482static bool ovl_already_copied_up_locked(struct dentry *dentry, int flags)
483{
484 bool disconnected = dentry->d_flags & DCACHE_DISCONNECTED;
485
486 if (ovl_dentry_upper(dentry) &&
487 (ovl_dentry_has_upper_alias(dentry) || disconnected) &&
488 !ovl_dentry_needs_data_copy_up_locked(dentry, flags))
489 return true;
490
491 return false;
492}
493
494bool ovl_already_copied_up(struct dentry *dentry, int flags)
2002df85
VG
495{
496 bool disconnected = dentry->d_flags & DCACHE_DISCONNECTED;
497
498 /*
499 * Check if copy-up has happened as well as for upper alias (in
500 * case of hard links) is there.
501 *
502 * Both checks are lockless:
503 * - false negatives: will recheck under oi->lock
504 * - false positives:
505 * + ovl_dentry_upper() uses memory barriers to ensure the
506 * upper dentry is up-to-date
507 * + ovl_dentry_has_upper_alias() relies on locking of
508 * upper parent i_rwsem to prevent reordering copy-up
509 * with rename.
510 */
511 if (ovl_dentry_upper(dentry) &&
0c288874
VG
512 (ovl_dentry_has_upper_alias(dentry) || disconnected) &&
513 !ovl_dentry_needs_data_copy_up(dentry, flags))
2002df85
VG
514 return true;
515
516 return false;
517}
518
0c288874 519int ovl_copy_up_start(struct dentry *dentry, int flags)
39d3d60a 520{
1e92e307 521 struct inode *inode = d_inode(dentry);
39d3d60a
AG
522 int err;
523
1e92e307 524 err = ovl_inode_lock(inode);
0c288874 525 if (!err && ovl_already_copied_up_locked(dentry, flags)) {
a015dafc 526 err = 1; /* Already copied up */
1e92e307 527 ovl_inode_unlock(inode);
39d3d60a 528 }
39d3d60a
AG
529
530 return err;
531}
532
533void ovl_copy_up_end(struct dentry *dentry)
534{
1e92e307 535 ovl_inode_unlock(d_inode(dentry));
39d3d60a 536}
82b749b2 537
b79e05aa
AG
538bool ovl_check_origin_xattr(struct dentry *dentry)
539{
540 int res;
541
542 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, NULL, 0);
543
544 /* Zero size value means "copied up but origin unknown" */
545 if (res >= 0)
546 return true;
547
548 return false;
549}
550
f3a15685
AG
551bool ovl_check_dir_xattr(struct dentry *dentry, const char *name)
552{
553 int res;
554 char val;
555
556 if (!d_is_dir(dentry))
557 return false;
558
559 res = vfs_getxattr(dentry, name, &val, 1);
560 if (res == 1 && val == 'y')
561 return true;
562
563 return false;
564}
565
82b749b2
AG
566int ovl_check_setxattr(struct dentry *dentry, struct dentry *upperdentry,
567 const char *name, const void *value, size_t size,
568 int xerr)
569{
570 int err;
571 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
572
573 if (ofs->noxattr)
574 return xerr;
575
576 err = ovl_do_setxattr(upperdentry, name, value, size, 0);
577
578 if (err == -EOPNOTSUPP) {
579 pr_warn("overlayfs: cannot set %s xattr on upper\n", name);
580 ofs->noxattr = true;
581 return xerr;
582 }
583
584 return err;
585}
f3a15685
AG
586
587int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry)
588{
589 int err;
f3a15685 590
13c72075 591 if (ovl_test_flag(OVL_IMPURE, d_inode(dentry)))
f3a15685
AG
592 return 0;
593
594 /*
595 * Do not fail when upper doesn't support xattrs.
596 * Upper inodes won't have origin nor redirect xattr anyway.
597 */
598 err = ovl_check_setxattr(dentry, upperdentry, OVL_XATTR_IMPURE,
599 "y", 1, 0);
600 if (!err)
13c72075 601 ovl_set_flag(OVL_IMPURE, d_inode(dentry));
f3a15685
AG
602
603 return err;
604}
13c72075
MS
605
606void ovl_set_flag(unsigned long flag, struct inode *inode)
607{
608 set_bit(flag, &OVL_I(inode)->flags);
609}
610
4edb83bb
MS
611void ovl_clear_flag(unsigned long flag, struct inode *inode)
612{
613 clear_bit(flag, &OVL_I(inode)->flags);
614}
615
13c72075
MS
616bool ovl_test_flag(unsigned long flag, struct inode *inode)
617{
618 return test_bit(flag, &OVL_I(inode)->flags);
619}
ad0af710
AG
620
621/**
622 * Caller must hold a reference to inode to prevent it from being freed while
623 * it is marked inuse.
624 */
625bool ovl_inuse_trylock(struct dentry *dentry)
626{
627 struct inode *inode = d_inode(dentry);
628 bool locked = false;
629
630 spin_lock(&inode->i_lock);
631 if (!(inode->i_state & I_OVL_INUSE)) {
632 inode->i_state |= I_OVL_INUSE;
633 locked = true;
634 }
635 spin_unlock(&inode->i_lock);
636
637 return locked;
638}
639
640void ovl_inuse_unlock(struct dentry *dentry)
641{
642 if (dentry) {
643 struct inode *inode = d_inode(dentry);
644
645 spin_lock(&inode->i_lock);
646 WARN_ON(!(inode->i_state & I_OVL_INUSE));
647 inode->i_state &= ~I_OVL_INUSE;
648 spin_unlock(&inode->i_lock);
649 }
650}
5f8415d6 651
146d62e5
AG
652bool ovl_is_inuse(struct dentry *dentry)
653{
654 struct inode *inode = d_inode(dentry);
655 bool inuse;
656
657 spin_lock(&inode->i_lock);
658 inuse = (inode->i_state & I_OVL_INUSE);
659 spin_unlock(&inode->i_lock);
660
661 return inuse;
662}
663
24b33ee1
AG
664/*
665 * Does this overlay dentry need to be indexed on copy up?
666 */
667bool ovl_need_index(struct dentry *dentry)
668{
669 struct dentry *lower = ovl_dentry_lower(dentry);
670
671 if (!lower || !ovl_indexdir(dentry->d_sb))
672 return false;
673
fbd2d207 674 /* Index all files for NFS export and consistency verification */
016b720f 675 if (ovl_index_all(dentry->d_sb))
fbd2d207
AG
676 return true;
677
24b33ee1
AG
678 /* Index only lower hardlinks on copy up */
679 if (!d_is_dir(lower) && d_inode(lower)->i_nlink > 1)
680 return true;
681
682 return false;
683}
684
9f4ec904 685/* Caller must hold OVL_I(inode)->lock */
caf70cb2
AG
686static void ovl_cleanup_index(struct dentry *dentry)
687{
e7dd0e71
AG
688 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
689 struct inode *dir = indexdir->d_inode;
caf70cb2
AG
690 struct dentry *lowerdentry = ovl_dentry_lower(dentry);
691 struct dentry *upperdentry = ovl_dentry_upper(dentry);
692 struct dentry *index = NULL;
693 struct inode *inode;
63e13252 694 struct qstr name = { };
caf70cb2
AG
695 int err;
696
697 err = ovl_get_index_name(lowerdentry, &name);
698 if (err)
699 goto fail;
700
701 inode = d_inode(upperdentry);
89a17556 702 if (!S_ISDIR(inode->i_mode) && inode->i_nlink != 1) {
caf70cb2
AG
703 pr_warn_ratelimited("overlayfs: cleanup linked index (%pd2, ino=%lu, nlink=%u)\n",
704 upperdentry, inode->i_ino, inode->i_nlink);
705 /*
706 * We either have a bug with persistent union nlink or a lower
707 * hardlink was added while overlay is mounted. Adding a lower
708 * hardlink and then unlinking all overlay hardlinks would drop
709 * overlay nlink to zero before all upper inodes are unlinked.
710 * As a safety measure, when that situation is detected, set
711 * the overlay nlink to the index inode nlink minus one for the
712 * index entry itself.
713 */
714 set_nlink(d_inode(dentry), inode->i_nlink - 1);
715 ovl_set_nlink_upper(dentry);
716 goto out;
717 }
718
719 inode_lock_nested(dir, I_MUTEX_PARENT);
e7dd0e71 720 index = lookup_one_len(name.name, indexdir, name.len);
caf70cb2 721 err = PTR_ERR(index);
e7dd0e71 722 if (IS_ERR(index)) {
9f4ec904 723 index = NULL;
e7dd0e71
AG
724 } else if (ovl_index_all(dentry->d_sb)) {
725 /* Whiteout orphan index to block future open by handle */
726 err = ovl_cleanup_and_whiteout(indexdir, dir, index);
727 } else {
728 /* Cleanup orphan index entries */
729 err = ovl_cleanup(dir, index);
730 }
9f4ec904 731
caf70cb2
AG
732 inode_unlock(dir);
733 if (err)
734 goto fail;
735
736out:
63e13252 737 kfree(name.name);
caf70cb2
AG
738 dput(index);
739 return;
740
741fail:
742 pr_err("overlayfs: cleanup index of '%pd2' failed (%i)\n", dentry, err);
743 goto out;
744}
745
5f8415d6
AG
746/*
747 * Operations that change overlay inode and upper inode nlink need to be
748 * synchronized with copy up for persistent nlink accounting.
749 */
0e32992f 750int ovl_nlink_start(struct dentry *dentry)
5f8415d6 751{
1e92e307 752 struct inode *inode = d_inode(dentry);
5f8415d6
AG
753 const struct cred *old_cred;
754 int err;
755
1e92e307 756 if (WARN_ON(!inode))
0e32992f 757 return -ENOENT;
5f8415d6
AG
758
759 /*
760 * With inodes index is enabled, we store the union overlay nlink
24b33ee1 761 * in an xattr on the index inode. When whiting out an indexed lower,
5f8415d6
AG
762 * we need to decrement the overlay persistent nlink, but before the
763 * first copy up, we have no upper index inode to store the xattr.
764 *
24b33ee1 765 * As a workaround, before whiteout/rename over an indexed lower,
5f8415d6
AG
766 * copy up to create the upper index. Creating the upper index will
767 * initialize the overlay nlink, so it could be dropped if unlink
768 * or rename succeeds.
769 *
770 * TODO: implement metadata only index copy up when called with
771 * ovl_copy_up_flags(dentry, O_PATH).
772 */
24b33ee1 773 if (ovl_need_index(dentry) && !ovl_dentry_has_upper_alias(dentry)) {
5f8415d6
AG
774 err = ovl_copy_up(dentry);
775 if (err)
776 return err;
777 }
778
1e92e307 779 err = ovl_inode_lock(inode);
5f8415d6
AG
780 if (err)
781 return err;
782
1e92e307 783 if (d_is_dir(dentry) || !ovl_test_flag(OVL_INDEX, inode))
5f8415d6
AG
784 goto out;
785
786 old_cred = ovl_override_creds(dentry->d_sb);
787 /*
788 * The overlay inode nlink should be incremented/decremented IFF the
789 * upper operation succeeds, along with nlink change of upper inode.
790 * Therefore, before link/unlink/rename, we store the union nlink
791 * value relative to the upper inode nlink in an upper inode xattr.
792 */
793 err = ovl_set_nlink_upper(dentry);
794 revert_creds(old_cred);
795
796out:
797 if (err)
1e92e307 798 ovl_inode_unlock(inode);
5f8415d6
AG
799
800 return err;
801}
802
0e32992f 803void ovl_nlink_end(struct dentry *dentry)
5f8415d6 804{
1e92e307
AG
805 struct inode *inode = d_inode(dentry);
806
807 if (ovl_test_flag(OVL_INDEX, inode) && inode->i_nlink == 0) {
0e32992f 808 const struct cred *old_cred;
caf70cb2 809
0e32992f
AG
810 old_cred = ovl_override_creds(dentry->d_sb);
811 ovl_cleanup_index(dentry);
812 revert_creds(old_cred);
caf70cb2 813 }
0e32992f 814
1e92e307 815 ovl_inode_unlock(inode);
5f8415d6 816}
5820dc08
AG
817
818int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir)
819{
820 /* Workdir should not be the same as upperdir */
821 if (workdir == upperdir)
822 goto err;
823
824 /* Workdir should not be subdir of upperdir and vice versa */
825 if (lock_rename(workdir, upperdir) != NULL)
826 goto err_unlock;
827
828 return 0;
829
830err_unlock:
831 unlock_rename(workdir, upperdir);
832err:
833 pr_err("overlayfs: failed to lock workdir+upperdir\n");
834 return -EIO;
835}
9d3dfea3
VG
836
837/* err < 0, 0 if no metacopy xattr, 1 if metacopy xattr found */
838int ovl_check_metacopy_xattr(struct dentry *dentry)
839{
840 int res;
841
842 /* Only regular files can have metacopy xattr */
843 if (!S_ISREG(d_inode(dentry)->i_mode))
844 return 0;
845
846 res = vfs_getxattr(dentry, OVL_XATTR_METACOPY, NULL, 0);
847 if (res < 0) {
848 if (res == -ENODATA || res == -EOPNOTSUPP)
849 return 0;
850 goto out;
851 }
852
853 return 1;
854out:
855 pr_warn_ratelimited("overlayfs: failed to get metacopy (%i)\n", res);
856 return res;
857}
67d756c2
VG
858
859bool ovl_is_metacopy_dentry(struct dentry *dentry)
860{
861 struct ovl_entry *oe = dentry->d_fsdata;
862
863 if (!d_is_reg(dentry))
864 return false;
865
866 if (ovl_dentry_upper(dentry)) {
867 if (!ovl_has_upperdata(d_inode(dentry)))
868 return true;
869 return false;
870 }
871
872 return (oe->numlower > 1);
873}
0a2d0d3f 874
993a0b2a
VG
875ssize_t ovl_getxattr(struct dentry *dentry, char *name, char **value,
876 size_t padding)
0a2d0d3f 877{
993a0b2a
VG
878 ssize_t res;
879 char *buf = NULL;
0a2d0d3f 880
993a0b2a 881 res = vfs_getxattr(dentry, name, NULL, 0);
0a2d0d3f
VG
882 if (res < 0) {
883 if (res == -ENODATA || res == -EOPNOTSUPP)
993a0b2a 884 return -ENODATA;
0a2d0d3f
VG
885 goto fail;
886 }
887
993a0b2a
VG
888 if (res != 0) {
889 buf = kzalloc(res + padding, GFP_KERNEL);
890 if (!buf)
891 return -ENOMEM;
0a2d0d3f 892
993a0b2a
VG
893 res = vfs_getxattr(dentry, name, buf, res);
894 if (res < 0)
895 goto fail;
896 }
897 *value = buf;
898
899 return res;
900
901fail:
902 pr_warn_ratelimited("overlayfs: failed to get xattr %s: err=%zi)\n",
903 name, res);
904 kfree(buf);
905 return res;
906}
0a2d0d3f 907
993a0b2a
VG
908char *ovl_get_redirect_xattr(struct dentry *dentry, int padding)
909{
910 int res;
911 char *s, *next, *buf = NULL;
912
913 res = ovl_getxattr(dentry, OVL_XATTR_REDIRECT, &buf, padding + 1);
914 if (res == -ENODATA)
915 return NULL;
0a2d0d3f 916 if (res < 0)
993a0b2a 917 return ERR_PTR(res);
0a2d0d3f
VG
918 if (res == 0)
919 goto invalid;
920
921 if (buf[0] == '/') {
922 for (s = buf; *s++ == '/'; s = next) {
923 next = strchrnul(s, '/');
924 if (s == next)
925 goto invalid;
926 }
927 } else {
928 if (strchr(buf, '/') != NULL)
929 goto invalid;
930 }
931
932 return buf;
0a2d0d3f
VG
933invalid:
934 pr_warn_ratelimited("overlayfs: invalid redirect (%s)\n", buf);
935 res = -EINVAL;
993a0b2a
VG
936 kfree(buf);
937 return ERR_PTR(res);
0a2d0d3f 938}