3 * Copyright (C) 2011 Novell Inc.
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.
11 #include <linux/slab.h>
12 #include <linux/namei.h>
13 #include <linux/file.h>
14 #include <linux/xattr.h>
15 #include <linux/rbtree.h>
16 #include <linux/security.h>
17 #include <linux/cred.h>
18 #include <linux/ratelimit.h>
19 #include "overlayfs.h"
21 struct ovl_cache_entry
{
26 struct list_head l_node
;
28 struct ovl_cache_entry
*next_maybe_whiteout
;
34 struct ovl_dir_cache
{
37 struct list_head entries
;
41 struct ovl_readdir_data
{
42 struct dir_context ctx
;
43 struct dentry
*dentry
;
46 struct list_head
*list
;
47 struct list_head middle
;
48 struct ovl_cache_entry
*first_maybe_whiteout
;
52 bool d_type_supported
;
58 struct ovl_dir_cache
*cache
;
59 struct list_head
*cursor
;
60 struct file
*realfile
;
61 struct file
*upperfile
;
64 static struct ovl_cache_entry
*ovl_cache_entry_from_node(struct rb_node
*n
)
66 return rb_entry(n
, struct ovl_cache_entry
, node
);
69 static bool ovl_cache_entry_find_link(const char *name
, int len
,
70 struct rb_node
***link
,
71 struct rb_node
**parent
)
74 struct rb_node
**newp
= *link
;
76 while (!found
&& *newp
) {
78 struct ovl_cache_entry
*tmp
;
81 tmp
= ovl_cache_entry_from_node(*newp
);
82 cmp
= strncmp(name
, tmp
->name
, len
);
84 newp
= &tmp
->node
.rb_right
;
85 else if (cmp
< 0 || len
< tmp
->len
)
86 newp
= &tmp
->node
.rb_left
;
95 static struct ovl_cache_entry
*ovl_cache_entry_find(struct rb_root
*root
,
96 const char *name
, int len
)
98 struct rb_node
*node
= root
->rb_node
;
102 struct ovl_cache_entry
*p
= ovl_cache_entry_from_node(node
);
104 cmp
= strncmp(name
, p
->name
, len
);
106 node
= p
->node
.rb_right
;
107 else if (cmp
< 0 || len
< p
->len
)
108 node
= p
->node
.rb_left
;
116 static bool ovl_calc_d_ino(struct ovl_readdir_data
*rdd
,
117 struct ovl_cache_entry
*p
)
119 /* Don't care if not doing ovl_iter() */
123 /* Always recalc d_ino for parent */
124 if (strcmp(p
->name
, "..") == 0)
127 /* If this is lower, then native d_ino will do */
132 * Recalc d_ino for '.' and for all entries if dir is impure (contains
135 if ((p
->name
[0] == '.' && p
->len
== 1) ||
136 ovl_test_flag(OVL_IMPURE
, d_inode(rdd
->dentry
)))
142 static struct ovl_cache_entry
*ovl_cache_entry_new(struct ovl_readdir_data
*rdd
,
143 const char *name
, int len
,
144 u64 ino
, unsigned int d_type
)
146 struct ovl_cache_entry
*p
;
147 size_t size
= offsetof(struct ovl_cache_entry
, name
[len
+ 1]);
149 p
= kmalloc(size
, GFP_KERNEL
);
153 memcpy(p
->name
, name
, len
);
159 /* Defer setting d_ino for upper entry to ovl_iterate() */
160 if (ovl_calc_d_ino(rdd
, p
))
162 p
->is_upper
= rdd
->is_upper
;
163 p
->is_whiteout
= false;
165 if (d_type
== DT_CHR
) {
166 p
->next_maybe_whiteout
= rdd
->first_maybe_whiteout
;
167 rdd
->first_maybe_whiteout
= p
;
172 static int ovl_cache_entry_add_rb(struct ovl_readdir_data
*rdd
,
173 const char *name
, int len
, u64 ino
,
176 struct rb_node
**newp
= &rdd
->root
->rb_node
;
177 struct rb_node
*parent
= NULL
;
178 struct ovl_cache_entry
*p
;
180 if (ovl_cache_entry_find_link(name
, len
, &newp
, &parent
))
183 p
= ovl_cache_entry_new(rdd
, name
, len
, ino
, d_type
);
189 list_add_tail(&p
->l_node
, rdd
->list
);
190 rb_link_node(&p
->node
, parent
, newp
);
191 rb_insert_color(&p
->node
, rdd
->root
);
196 static int ovl_fill_lowest(struct ovl_readdir_data
*rdd
,
197 const char *name
, int namelen
,
198 loff_t offset
, u64 ino
, unsigned int d_type
)
200 struct ovl_cache_entry
*p
;
202 p
= ovl_cache_entry_find(rdd
->root
, name
, namelen
);
204 list_move_tail(&p
->l_node
, &rdd
->middle
);
206 p
= ovl_cache_entry_new(rdd
, name
, namelen
, ino
, d_type
);
210 list_add_tail(&p
->l_node
, &rdd
->middle
);
216 void ovl_cache_free(struct list_head
*list
)
218 struct ovl_cache_entry
*p
;
219 struct ovl_cache_entry
*n
;
221 list_for_each_entry_safe(p
, n
, list
, l_node
)
224 INIT_LIST_HEAD(list
);
227 void ovl_dir_cache_free(struct inode
*inode
)
229 struct ovl_dir_cache
*cache
= ovl_dir_cache(inode
);
232 ovl_cache_free(&cache
->entries
);
237 static void ovl_cache_put(struct ovl_dir_file
*od
, struct dentry
*dentry
)
239 struct ovl_dir_cache
*cache
= od
->cache
;
241 WARN_ON(cache
->refcount
<= 0);
243 if (!cache
->refcount
) {
244 if (ovl_dir_cache(d_inode(dentry
)) == cache
)
245 ovl_set_dir_cache(d_inode(dentry
), NULL
);
247 ovl_cache_free(&cache
->entries
);
252 static int ovl_fill_merge(struct dir_context
*ctx
, const char *name
,
253 int namelen
, loff_t offset
, u64 ino
,
256 struct ovl_readdir_data
*rdd
=
257 container_of(ctx
, struct ovl_readdir_data
, ctx
);
261 return ovl_cache_entry_add_rb(rdd
, name
, namelen
, ino
, d_type
);
263 return ovl_fill_lowest(rdd
, name
, namelen
, offset
, ino
, d_type
);
266 static int ovl_check_whiteouts(struct dentry
*dir
, struct ovl_readdir_data
*rdd
)
269 struct ovl_cache_entry
*p
;
270 struct dentry
*dentry
;
271 const struct cred
*old_cred
;
273 old_cred
= ovl_override_creds(rdd
->dentry
->d_sb
);
275 err
= down_write_killable(&dir
->d_inode
->i_rwsem
);
277 while (rdd
->first_maybe_whiteout
) {
278 p
= rdd
->first_maybe_whiteout
;
279 rdd
->first_maybe_whiteout
= p
->next_maybe_whiteout
;
280 dentry
= lookup_one_len(p
->name
, dir
, p
->len
);
281 if (!IS_ERR(dentry
)) {
282 p
->is_whiteout
= ovl_is_whiteout(dentry
);
286 inode_unlock(dir
->d_inode
);
288 revert_creds(old_cred
);
293 static inline int ovl_dir_read(struct path
*realpath
,
294 struct ovl_readdir_data
*rdd
)
296 struct file
*realfile
;
299 realfile
= ovl_path_open(realpath
, O_RDONLY
| O_DIRECTORY
);
300 if (IS_ERR(realfile
))
301 return PTR_ERR(realfile
);
303 rdd
->first_maybe_whiteout
= NULL
;
308 err
= iterate_dir(realfile
, &rdd
->ctx
);
311 } while (!err
&& rdd
->count
);
313 if (!err
&& rdd
->first_maybe_whiteout
&& rdd
->dentry
)
314 err
= ovl_check_whiteouts(realpath
->dentry
, rdd
);
322 * Can we iterate real dir directly?
324 * Non-merge dir may contain whiteouts from a time it was a merge upper, before
325 * lower dir was removed under it and possibly before it was rotated from upper
328 static bool ovl_dir_is_real(struct dentry
*dir
)
330 return !ovl_test_flag(OVL_WHITEOUTS
, d_inode(dir
));
333 static void ovl_dir_reset(struct file
*file
)
335 struct ovl_dir_file
*od
= file
->private_data
;
336 struct ovl_dir_cache
*cache
= od
->cache
;
337 struct dentry
*dentry
= file
->f_path
.dentry
;
340 if (cache
&& ovl_dentry_version_get(dentry
) != cache
->version
) {
341 ovl_cache_put(od
, dentry
);
345 is_real
= ovl_dir_is_real(dentry
);
346 if (od
->is_real
!= is_real
) {
347 /* is_real can only become false when dir is copied up */
348 if (WARN_ON(is_real
))
354 static int ovl_dir_read_merged(struct dentry
*dentry
, struct list_head
*list
,
355 struct rb_root
*root
)
358 struct path realpath
;
359 struct ovl_readdir_data rdd
= {
360 .ctx
.actor
= ovl_fill_merge
,
368 for (idx
= 0; idx
!= -1; idx
= next
) {
369 next
= ovl_path_next(idx
, dentry
, &realpath
);
370 rdd
.is_upper
= ovl_dentry_upper(dentry
) == realpath
.dentry
;
373 err
= ovl_dir_read(&realpath
, &rdd
);
378 * Insert lowest layer entries before upper ones, this
379 * allows offsets to be reasonably constant
381 list_add(&rdd
.middle
, rdd
.list
);
382 rdd
.is_lowest
= true;
383 err
= ovl_dir_read(&realpath
, &rdd
);
384 list_del(&rdd
.middle
);
390 static void ovl_seek_cursor(struct ovl_dir_file
*od
, loff_t pos
)
395 list_for_each(p
, &od
->cache
->entries
) {
400 /* Cursor is safe since the cache is stable */
404 static struct ovl_dir_cache
*ovl_cache_get(struct dentry
*dentry
)
407 struct ovl_dir_cache
*cache
;
409 cache
= ovl_dir_cache(d_inode(dentry
));
410 if (cache
&& ovl_dentry_version_get(dentry
) == cache
->version
) {
411 WARN_ON(!cache
->refcount
);
415 ovl_set_dir_cache(d_inode(dentry
), NULL
);
417 cache
= kzalloc(sizeof(struct ovl_dir_cache
), GFP_KERNEL
);
419 return ERR_PTR(-ENOMEM
);
422 INIT_LIST_HEAD(&cache
->entries
);
423 cache
->root
= RB_ROOT
;
425 res
= ovl_dir_read_merged(dentry
, &cache
->entries
, &cache
->root
);
427 ovl_cache_free(&cache
->entries
);
432 cache
->version
= ovl_dentry_version_get(dentry
);
433 ovl_set_dir_cache(d_inode(dentry
), cache
);
439 * Set d_ino for upper entries. Non-upper entries should always report
440 * the uppermost real inode ino and should not call this function.
442 * When not all layer are on same fs, report real ino also for upper.
444 * When all layers are on the same fs, and upper has a reference to
445 * copy up origin, call vfs_getattr() on the overlay entry to make
446 * sure that d_ino will be consistent with st_ino from stat(2).
448 static int ovl_cache_update_ino(struct path
*path
, struct ovl_cache_entry
*p
)
451 struct dentry
*dir
= path
->dentry
;
452 struct dentry
*this = NULL
;
453 enum ovl_path_type type
;
454 u64 ino
= p
->real_ino
;
457 if (!ovl_same_sb(dir
->d_sb
))
460 if (p
->name
[0] == '.') {
465 if (p
->len
== 2 && p
->name
[1] == '.') {
466 /* we shall not be moved */
467 this = dget(dir
->d_parent
);
471 this = lookup_one_len(p
->name
, dir
, p
->len
);
472 if (IS_ERR_OR_NULL(this) || !this->d_inode
) {
482 type
= ovl_path_type(this);
483 if (OVL_TYPE_ORIGIN(type
)) {
485 struct path statpath
= *path
;
487 statpath
.dentry
= this;
488 err
= vfs_getattr(&statpath
, &stat
, STATX_INO
, 0);
492 WARN_ON_ONCE(dir
->d_sb
->s_dev
!= stat
.dev
);
502 pr_warn_ratelimited("overlayfs: failed to look up (%s) for ino (%i)\n",
507 static int ovl_fill_plain(struct dir_context
*ctx
, const char *name
,
508 int namelen
, loff_t offset
, u64 ino
,
511 struct ovl_cache_entry
*p
;
512 struct ovl_readdir_data
*rdd
=
513 container_of(ctx
, struct ovl_readdir_data
, ctx
);
516 p
= ovl_cache_entry_new(rdd
, name
, namelen
, ino
, d_type
);
521 list_add_tail(&p
->l_node
, rdd
->list
);
526 static int ovl_dir_read_impure(struct path
*path
, struct list_head
*list
,
527 struct rb_root
*root
)
530 struct path realpath
;
531 struct ovl_cache_entry
*p
, *n
;
532 struct ovl_readdir_data rdd
= {
533 .ctx
.actor
= ovl_fill_plain
,
538 INIT_LIST_HEAD(list
);
540 ovl_path_upper(path
->dentry
, &realpath
);
542 err
= ovl_dir_read(&realpath
, &rdd
);
546 list_for_each_entry_safe(p
, n
, list
, l_node
) {
547 if (strcmp(p
->name
, ".") != 0 &&
548 strcmp(p
->name
, "..") != 0) {
549 err
= ovl_cache_update_ino(path
, p
);
553 if (p
->ino
== p
->real_ino
) {
554 list_del(&p
->l_node
);
557 struct rb_node
**newp
= &root
->rb_node
;
558 struct rb_node
*parent
= NULL
;
560 if (WARN_ON(ovl_cache_entry_find_link(p
->name
, p
->len
,
564 rb_link_node(&p
->node
, parent
, newp
);
565 rb_insert_color(&p
->node
, root
);
571 static struct ovl_dir_cache
*ovl_cache_get_impure(struct path
*path
)
574 struct dentry
*dentry
= path
->dentry
;
575 struct ovl_dir_cache
*cache
;
577 cache
= ovl_dir_cache(d_inode(dentry
));
578 if (cache
&& ovl_dentry_version_get(dentry
) == cache
->version
)
581 /* Impure cache is not refcounted, free it here */
582 ovl_dir_cache_free(d_inode(dentry
));
583 ovl_set_dir_cache(d_inode(dentry
), NULL
);
585 cache
= kzalloc(sizeof(struct ovl_dir_cache
), GFP_KERNEL
);
587 return ERR_PTR(-ENOMEM
);
589 res
= ovl_dir_read_impure(path
, &cache
->entries
, &cache
->root
);
591 ovl_cache_free(&cache
->entries
);
595 if (list_empty(&cache
->entries
)) {
597 * A good opportunity to get rid of an unneeded "impure" flag.
598 * Removing the "impure" xattr is best effort.
600 if (!ovl_want_write(dentry
)) {
601 ovl_do_removexattr(ovl_dentry_upper(dentry
),
603 ovl_drop_write(dentry
);
605 ovl_clear_flag(OVL_IMPURE
, d_inode(dentry
));
610 cache
->version
= ovl_dentry_version_get(dentry
);
611 ovl_set_dir_cache(d_inode(dentry
), cache
);
616 struct ovl_readdir_translate
{
617 struct dir_context
*orig_ctx
;
618 struct ovl_dir_cache
*cache
;
619 struct dir_context ctx
;
623 static int ovl_fill_real(struct dir_context
*ctx
, const char *name
,
624 int namelen
, loff_t offset
, u64 ino
,
627 struct ovl_readdir_translate
*rdt
=
628 container_of(ctx
, struct ovl_readdir_translate
, ctx
);
629 struct dir_context
*orig_ctx
= rdt
->orig_ctx
;
631 if (rdt
->parent_ino
&& strcmp(name
, "..") == 0)
632 ino
= rdt
->parent_ino
;
633 else if (rdt
->cache
) {
634 struct ovl_cache_entry
*p
;
636 p
= ovl_cache_entry_find(&rdt
->cache
->root
, name
, namelen
);
641 return orig_ctx
->actor(orig_ctx
, name
, namelen
, offset
, ino
, d_type
);
644 static int ovl_iterate_real(struct file
*file
, struct dir_context
*ctx
)
647 struct ovl_dir_file
*od
= file
->private_data
;
648 struct dentry
*dir
= file
->f_path
.dentry
;
649 struct ovl_readdir_translate rdt
= {
650 .ctx
.actor
= ovl_fill_real
,
654 if (OVL_TYPE_MERGE(ovl_path_type(dir
->d_parent
))) {
656 struct path statpath
= file
->f_path
;
658 statpath
.dentry
= dir
->d_parent
;
659 err
= vfs_getattr(&statpath
, &stat
, STATX_INO
, 0);
663 WARN_ON_ONCE(dir
->d_sb
->s_dev
!= stat
.dev
);
664 rdt
.parent_ino
= stat
.ino
;
667 if (ovl_test_flag(OVL_IMPURE
, d_inode(dir
))) {
668 rdt
.cache
= ovl_cache_get_impure(&file
->f_path
);
669 if (IS_ERR(rdt
.cache
))
670 return PTR_ERR(rdt
.cache
);
673 err
= iterate_dir(od
->realfile
, &rdt
.ctx
);
674 ctx
->pos
= rdt
.ctx
.pos
;
680 static int ovl_iterate(struct file
*file
, struct dir_context
*ctx
)
682 struct ovl_dir_file
*od
= file
->private_data
;
683 struct dentry
*dentry
= file
->f_path
.dentry
;
684 struct ovl_cache_entry
*p
;
692 * If parent is merge, then need to adjust d_ino for '..', if
693 * dir is impure then need to adjust d_ino for copied up
696 if (ovl_same_sb(dentry
->d_sb
) &&
697 (ovl_test_flag(OVL_IMPURE
, d_inode(dentry
)) ||
698 OVL_TYPE_MERGE(ovl_path_type(dentry
->d_parent
)))) {
699 return ovl_iterate_real(file
, ctx
);
701 return iterate_dir(od
->realfile
, ctx
);
705 struct ovl_dir_cache
*cache
;
707 cache
= ovl_cache_get(dentry
);
709 return PTR_ERR(cache
);
712 ovl_seek_cursor(od
, ctx
->pos
);
715 while (od
->cursor
!= &od
->cache
->entries
) {
716 p
= list_entry(od
->cursor
, struct ovl_cache_entry
, l_node
);
717 if (!p
->is_whiteout
) {
719 err
= ovl_cache_update_ino(&file
->f_path
, p
);
723 if (!dir_emit(ctx
, p
->name
, p
->len
, p
->ino
, p
->type
))
726 od
->cursor
= p
->l_node
.next
;
732 static loff_t
ovl_dir_llseek(struct file
*file
, loff_t offset
, int origin
)
735 struct ovl_dir_file
*od
= file
->private_data
;
737 inode_lock(file_inode(file
));
742 res
= vfs_llseek(od
->realfile
, offset
, origin
);
743 file
->f_pos
= od
->realfile
->f_pos
;
749 offset
+= file
->f_pos
;
759 if (offset
!= file
->f_pos
) {
760 file
->f_pos
= offset
;
762 ovl_seek_cursor(od
, offset
);
767 inode_unlock(file_inode(file
));
772 static int ovl_dir_fsync(struct file
*file
, loff_t start
, loff_t end
,
775 struct ovl_dir_file
*od
= file
->private_data
;
776 struct dentry
*dentry
= file
->f_path
.dentry
;
777 struct file
*realfile
= od
->realfile
;
779 /* Nothing to sync for lower */
780 if (!OVL_TYPE_UPPER(ovl_path_type(dentry
)))
784 * Need to check if we started out being a lower dir, but got copied up
787 struct inode
*inode
= file_inode(file
);
789 realfile
= READ_ONCE(od
->upperfile
);
791 struct path upperpath
;
793 ovl_path_upper(dentry
, &upperpath
);
794 realfile
= ovl_path_open(&upperpath
, O_RDONLY
);
797 if (!od
->upperfile
) {
798 if (IS_ERR(realfile
)) {
800 return PTR_ERR(realfile
);
802 smp_store_release(&od
->upperfile
, realfile
);
804 /* somebody has beaten us to it */
805 if (!IS_ERR(realfile
))
807 realfile
= od
->upperfile
;
813 return vfs_fsync_range(realfile
, start
, end
, datasync
);
816 static int ovl_dir_release(struct inode
*inode
, struct file
*file
)
818 struct ovl_dir_file
*od
= file
->private_data
;
822 ovl_cache_put(od
, file
->f_path
.dentry
);
833 static int ovl_dir_open(struct inode
*inode
, struct file
*file
)
835 struct path realpath
;
836 struct file
*realfile
;
837 struct ovl_dir_file
*od
;
838 enum ovl_path_type type
;
840 od
= kzalloc(sizeof(struct ovl_dir_file
), GFP_KERNEL
);
844 type
= ovl_path_real(file
->f_path
.dentry
, &realpath
);
845 realfile
= ovl_path_open(&realpath
, file
->f_flags
);
846 if (IS_ERR(realfile
)) {
848 return PTR_ERR(realfile
);
850 od
->realfile
= realfile
;
851 od
->is_real
= ovl_dir_is_real(file
->f_path
.dentry
);
852 od
->is_upper
= OVL_TYPE_UPPER(type
);
853 file
->private_data
= od
;
858 const struct file_operations ovl_dir_operations
= {
859 .read
= generic_read_dir
,
860 .open
= ovl_dir_open
,
861 .iterate
= ovl_iterate
,
862 .llseek
= ovl_dir_llseek
,
863 .fsync
= ovl_dir_fsync
,
864 .release
= ovl_dir_release
,
867 int ovl_check_empty_dir(struct dentry
*dentry
, struct list_head
*list
)
870 struct ovl_cache_entry
*p
, *n
;
871 struct rb_root root
= RB_ROOT
;
872 const struct cred
*old_cred
;
874 old_cred
= ovl_override_creds(dentry
->d_sb
);
875 err
= ovl_dir_read_merged(dentry
, list
, &root
);
876 revert_creds(old_cred
);
882 list_for_each_entry_safe(p
, n
, list
, l_node
) {
884 * Select whiteouts in upperdir, they should
885 * be cleared when deleting this directory.
887 if (p
->is_whiteout
) {
893 if (p
->name
[0] == '.') {
896 if (p
->len
== 2 && p
->name
[1] == '.')
903 list_del(&p
->l_node
);
910 void ovl_cleanup_whiteouts(struct dentry
*upper
, struct list_head
*list
)
912 struct ovl_cache_entry
*p
;
914 inode_lock_nested(upper
->d_inode
, I_MUTEX_CHILD
);
915 list_for_each_entry(p
, list
, l_node
) {
916 struct dentry
*dentry
;
918 if (WARN_ON(!p
->is_whiteout
|| !p
->is_upper
))
921 dentry
= lookup_one_len(p
->name
, upper
, p
->len
);
922 if (IS_ERR(dentry
)) {
923 pr_err("overlayfs: lookup '%s/%.*s' failed (%i)\n",
924 upper
->d_name
.name
, p
->len
, p
->name
,
925 (int) PTR_ERR(dentry
));
929 ovl_cleanup(upper
->d_inode
, dentry
);
932 inode_unlock(upper
->d_inode
);
935 static int ovl_check_d_type(struct dir_context
*ctx
, const char *name
,
936 int namelen
, loff_t offset
, u64 ino
,
939 struct ovl_readdir_data
*rdd
=
940 container_of(ctx
, struct ovl_readdir_data
, ctx
);
942 /* Even if d_type is not supported, DT_DIR is returned for . and .. */
943 if (!strncmp(name
, ".", namelen
) || !strncmp(name
, "..", namelen
))
946 if (d_type
!= DT_UNKNOWN
)
947 rdd
->d_type_supported
= true;
953 * Returns 1 if d_type is supported, 0 not supported/unknown. Negative values
954 * if error is encountered.
956 int ovl_check_d_type_supported(struct path
*realpath
)
959 struct ovl_readdir_data rdd
= {
960 .ctx
.actor
= ovl_check_d_type
,
961 .d_type_supported
= false,
964 err
= ovl_dir_read(realpath
, &rdd
);
968 return rdd
.d_type_supported
;
971 static void ovl_workdir_cleanup_recurse(struct path
*path
, int level
)
974 struct inode
*dir
= path
->dentry
->d_inode
;
976 struct rb_root root
= RB_ROOT
;
977 struct ovl_cache_entry
*p
;
978 struct ovl_readdir_data rdd
= {
979 .ctx
.actor
= ovl_fill_merge
,
986 err
= ovl_dir_read(path
, &rdd
);
990 inode_lock_nested(dir
, I_MUTEX_PARENT
);
991 list_for_each_entry(p
, &list
, l_node
) {
992 struct dentry
*dentry
;
994 if (p
->name
[0] == '.') {
997 if (p
->len
== 2 && p
->name
[1] == '.')
1000 dentry
= lookup_one_len(p
->name
, path
->dentry
, p
->len
);
1003 if (dentry
->d_inode
)
1004 ovl_workdir_cleanup(dir
, path
->mnt
, dentry
, level
);
1009 ovl_cache_free(&list
);
1012 void ovl_workdir_cleanup(struct inode
*dir
, struct vfsmount
*mnt
,
1013 struct dentry
*dentry
, int level
)
1017 if (!d_is_dir(dentry
) || level
> 1) {
1018 ovl_cleanup(dir
, dentry
);
1022 err
= ovl_do_rmdir(dir
, dentry
);
1024 struct path path
= { .mnt
= mnt
, .dentry
= dentry
};
1027 ovl_workdir_cleanup_recurse(&path
, level
+ 1);
1028 inode_lock_nested(dir
, I_MUTEX_PARENT
);
1029 ovl_cleanup(dir
, dentry
);
1033 int ovl_indexdir_cleanup(struct ovl_fs
*ofs
)
1036 struct dentry
*indexdir
= ofs
->indexdir
;
1037 struct dentry
*index
= NULL
;
1038 struct inode
*dir
= indexdir
->d_inode
;
1039 struct path path
= { .mnt
= ofs
->upper_mnt
, .dentry
= indexdir
};
1041 struct rb_root root
= RB_ROOT
;
1042 struct ovl_cache_entry
*p
;
1043 struct ovl_readdir_data rdd
= {
1044 .ctx
.actor
= ovl_fill_merge
,
1051 err
= ovl_dir_read(&path
, &rdd
);
1055 inode_lock_nested(dir
, I_MUTEX_PARENT
);
1056 list_for_each_entry(p
, &list
, l_node
) {
1057 if (p
->name
[0] == '.') {
1060 if (p
->len
== 2 && p
->name
[1] == '.')
1063 index
= lookup_one_len(p
->name
, indexdir
, p
->len
);
1064 if (IS_ERR(index
)) {
1065 err
= PTR_ERR(index
);
1069 err
= ovl_verify_index(ofs
, index
);
1072 } else if (err
== -ESTALE
) {
1073 /* Cleanup stale index entries */
1074 err
= ovl_cleanup(dir
, index
);
1075 } else if (err
!= -ENOENT
) {
1077 * Abort mount to avoid corrupting the index if
1078 * an incompatible index entry was found or on out
1082 } else if (ofs
->config
.nfs_export
) {
1084 * Whiteout orphan index to block future open by
1085 * handle after overlay nlink dropped to zero.
1087 err
= ovl_cleanup_and_whiteout(indexdir
, dir
, index
);
1089 /* Cleanup orphan index entries */
1090 err
= ovl_cleanup(dir
, index
);
1103 ovl_cache_free(&list
);
1105 pr_err("overlayfs: failed index dir cleanup (%i)\n", err
);