1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2011 Novell Inc.
8 #include <linux/slab.h>
9 #include <linux/namei.h>
10 #include <linux/file.h>
11 #include <linux/xattr.h>
12 #include <linux/rbtree.h>
13 #include <linux/security.h>
14 #include <linux/cred.h>
15 #include <linux/ratelimit.h>
16 #include "overlayfs.h"
18 struct ovl_cache_entry {
23 struct list_head l_node;
25 struct ovl_cache_entry *next_maybe_whiteout;
31 struct ovl_dir_cache {
34 struct list_head entries;
38 struct ovl_readdir_data {
39 struct dir_context ctx;
40 struct dentry *dentry;
43 struct list_head *list;
44 struct list_head middle;
45 struct ovl_cache_entry *first_maybe_whiteout;
49 bool d_type_supported;
55 struct ovl_dir_cache *cache;
56 struct list_head *cursor;
57 struct file *realfile;
58 struct file *upperfile;
61 static struct ovl_cache_entry *ovl_cache_entry_from_node(struct rb_node *n)
63 return rb_entry(n, struct ovl_cache_entry, node);
66 static bool ovl_cache_entry_find_link(const char *name, int len,
67 struct rb_node ***link,
68 struct rb_node **parent)
71 struct rb_node **newp = *link;
73 while (!found && *newp) {
75 struct ovl_cache_entry *tmp;
78 tmp = ovl_cache_entry_from_node(*newp);
79 cmp = strncmp(name, tmp->name, len);
81 newp = &tmp->node.rb_right;
82 else if (cmp < 0 || len < tmp->len)
83 newp = &tmp->node.rb_left;
92 static struct ovl_cache_entry *ovl_cache_entry_find(struct rb_root *root,
93 const char *name, int len)
95 struct rb_node *node = root->rb_node;
99 struct ovl_cache_entry *p = ovl_cache_entry_from_node(node);
101 cmp = strncmp(name, p->name, len);
103 node = p->node.rb_right;
104 else if (cmp < 0 || len < p->len)
105 node = p->node.rb_left;
113 static bool ovl_calc_d_ino(struct ovl_readdir_data *rdd,
114 struct ovl_cache_entry *p)
116 /* Don't care if not doing ovl_iter() */
120 /* Always recalc d_ino when remapping lower inode numbers */
121 if (ovl_xino_bits(OVL_FS(rdd->dentry->d_sb)))
124 /* Always recalc d_ino for parent */
125 if (strcmp(p->name, "..") == 0)
128 /* If this is lower, then native d_ino will do */
133 * Recalc d_ino for '.' and for all entries if dir is impure (contains
136 if ((p->name[0] == '.' && p->len == 1) ||
137 ovl_test_flag(OVL_IMPURE, d_inode(rdd->dentry)))
143 static struct ovl_cache_entry *ovl_cache_entry_new(struct ovl_readdir_data *rdd,
144 const char *name, int len,
145 u64 ino, unsigned int d_type)
147 struct ovl_cache_entry *p;
148 size_t size = offsetof(struct ovl_cache_entry, name[len + 1]);
150 p = kmalloc(size, GFP_KERNEL);
154 memcpy(p->name, name, len);
160 /* Defer setting d_ino for upper entry to ovl_iterate() */
161 if (ovl_calc_d_ino(rdd, p))
163 p->is_upper = rdd->is_upper;
164 p->is_whiteout = false;
166 if (d_type == DT_CHR) {
167 p->next_maybe_whiteout = rdd->first_maybe_whiteout;
168 rdd->first_maybe_whiteout = p;
173 static bool ovl_cache_entry_add_rb(struct ovl_readdir_data *rdd,
174 const char *name, int len, u64 ino,
177 struct rb_node **newp = &rdd->root->rb_node;
178 struct rb_node *parent = NULL;
179 struct ovl_cache_entry *p;
181 if (ovl_cache_entry_find_link(name, len, &newp, &parent))
184 p = ovl_cache_entry_new(rdd, name, len, ino, d_type);
190 list_add_tail(&p->l_node, rdd->list);
191 rb_link_node(&p->node, parent, newp);
192 rb_insert_color(&p->node, rdd->root);
197 static bool ovl_fill_lowest(struct ovl_readdir_data *rdd,
198 const char *name, int namelen,
199 loff_t offset, u64 ino, unsigned int d_type)
201 struct ovl_cache_entry *p;
203 p = ovl_cache_entry_find(rdd->root, name, namelen);
205 list_move_tail(&p->l_node, &rdd->middle);
207 p = ovl_cache_entry_new(rdd, name, namelen, ino, d_type);
211 list_add_tail(&p->l_node, &rdd->middle);
214 return rdd->err == 0;
217 void ovl_cache_free(struct list_head *list)
219 struct ovl_cache_entry *p;
220 struct ovl_cache_entry *n;
222 list_for_each_entry_safe(p, n, list, l_node)
225 INIT_LIST_HEAD(list);
228 void ovl_dir_cache_free(struct inode *inode)
230 struct ovl_dir_cache *cache = ovl_dir_cache(inode);
233 ovl_cache_free(&cache->entries);
238 static void ovl_cache_put(struct ovl_dir_file *od, struct inode *inode)
240 struct ovl_dir_cache *cache = od->cache;
242 WARN_ON(cache->refcount <= 0);
244 if (!cache->refcount) {
245 if (ovl_dir_cache(inode) == cache)
246 ovl_set_dir_cache(inode, NULL);
248 ovl_cache_free(&cache->entries);
253 static bool ovl_fill_merge(struct dir_context *ctx, const char *name,
254 int namelen, loff_t offset, u64 ino,
257 struct ovl_readdir_data *rdd =
258 container_of(ctx, struct ovl_readdir_data, ctx);
262 return ovl_cache_entry_add_rb(rdd, name, namelen, ino, d_type);
264 return ovl_fill_lowest(rdd, name, namelen, offset, ino, d_type);
267 static int ovl_check_whiteouts(const struct path *path, struct ovl_readdir_data *rdd)
270 struct ovl_cache_entry *p;
271 struct dentry *dentry, *dir = path->dentry;
272 const struct cred *old_cred;
274 old_cred = ovl_override_creds(rdd->dentry->d_sb);
276 err = down_write_killable(&dir->d_inode->i_rwsem);
278 while (rdd->first_maybe_whiteout) {
279 p = rdd->first_maybe_whiteout;
280 rdd->first_maybe_whiteout = p->next_maybe_whiteout;
281 dentry = lookup_one(mnt_idmap(path->mnt), p->name, dir, p->len);
282 if (!IS_ERR(dentry)) {
283 p->is_whiteout = ovl_is_whiteout(dentry);
287 inode_unlock(dir->d_inode);
289 revert_creds(old_cred);
294 static inline int ovl_dir_read(const struct path *realpath,
295 struct ovl_readdir_data *rdd)
297 struct file *realfile;
300 realfile = ovl_path_open(realpath, O_RDONLY | O_LARGEFILE);
301 if (IS_ERR(realfile))
302 return PTR_ERR(realfile);
304 rdd->first_maybe_whiteout = NULL;
309 err = iterate_dir(realfile, &rdd->ctx);
312 } while (!err && rdd->count);
314 if (!err && rdd->first_maybe_whiteout && rdd->dentry)
315 err = ovl_check_whiteouts(realpath, rdd);
322 static void ovl_dir_reset(struct file *file)
324 struct ovl_dir_file *od = file->private_data;
325 struct ovl_dir_cache *cache = od->cache;
326 struct inode *inode = file_inode(file);
329 if (cache && ovl_inode_version_get(inode) != cache->version) {
330 ovl_cache_put(od, inode);
334 is_real = ovl_dir_is_real(inode);
335 if (od->is_real != is_real) {
336 /* is_real can only become false when dir is copied up */
337 if (WARN_ON(is_real))
343 static int ovl_dir_read_merged(struct dentry *dentry, struct list_head *list,
344 struct rb_root *root)
347 struct path realpath;
348 struct ovl_readdir_data rdd = {
349 .ctx.actor = ovl_fill_merge,
357 for (idx = 0; idx != -1; idx = next) {
358 next = ovl_path_next(idx, dentry, &realpath);
359 rdd.is_upper = ovl_dentry_upper(dentry) == realpath.dentry;
362 err = ovl_dir_read(&realpath, &rdd);
367 * Insert lowest layer entries before upper ones, this
368 * allows offsets to be reasonably constant
370 list_add(&rdd.middle, rdd.list);
371 rdd.is_lowest = true;
372 err = ovl_dir_read(&realpath, &rdd);
373 list_del(&rdd.middle);
379 static void ovl_seek_cursor(struct ovl_dir_file *od, loff_t pos)
384 list_for_each(p, &od->cache->entries) {
389 /* Cursor is safe since the cache is stable */
393 static struct ovl_dir_cache *ovl_cache_get(struct dentry *dentry)
396 struct ovl_dir_cache *cache;
397 struct inode *inode = d_inode(dentry);
399 cache = ovl_dir_cache(inode);
400 if (cache && ovl_inode_version_get(inode) == cache->version) {
401 WARN_ON(!cache->refcount);
405 ovl_set_dir_cache(d_inode(dentry), NULL);
407 cache = kzalloc(sizeof(struct ovl_dir_cache), GFP_KERNEL);
409 return ERR_PTR(-ENOMEM);
412 INIT_LIST_HEAD(&cache->entries);
413 cache->root = RB_ROOT;
415 res = ovl_dir_read_merged(dentry, &cache->entries, &cache->root);
417 ovl_cache_free(&cache->entries);
422 cache->version = ovl_inode_version_get(inode);
423 ovl_set_dir_cache(inode, cache);
428 /* Map inode number to lower fs unique range */
429 static u64 ovl_remap_lower_ino(u64 ino, int xinobits, int fsid,
430 const char *name, int namelen, bool warn)
432 unsigned int xinoshift = 64 - xinobits;
434 if (unlikely(ino >> xinoshift)) {
436 pr_warn_ratelimited("d_ino too big (%.*s, ino=%llu, xinobits=%d)\n",
437 namelen, name, ino, xinobits);
443 * The lowest xinobit is reserved for mapping the non-peresistent inode
444 * numbers range, but this range is only exposed via st_ino, not here.
446 return ino | ((u64)fsid) << (xinoshift + 1);
450 * Set d_ino for upper entries. Non-upper entries should always report
451 * the uppermost real inode ino and should not call this function.
453 * When not all layer are on same fs, report real ino also for upper.
455 * When all layers are on the same fs, and upper has a reference to
456 * copy up origin, call vfs_getattr() on the overlay entry to make
457 * sure that d_ino will be consistent with st_ino from stat(2).
459 static int ovl_cache_update_ino(const struct path *path, struct ovl_cache_entry *p)
462 struct dentry *dir = path->dentry;
463 struct ovl_fs *ofs = OVL_FS(dir->d_sb);
464 struct dentry *this = NULL;
465 enum ovl_path_type type;
466 u64 ino = p->real_ino;
467 int xinobits = ovl_xino_bits(ofs);
470 if (!ovl_same_dev(ofs))
473 if (p->name[0] == '.') {
478 if (p->len == 2 && p->name[1] == '.') {
479 /* we shall not be moved */
480 this = dget(dir->d_parent);
484 this = lookup_one(mnt_idmap(path->mnt), p->name, dir, p->len);
485 if (IS_ERR_OR_NULL(this) || !this->d_inode) {
486 /* Mark a stale entry */
487 p->is_whiteout = true;
497 type = ovl_path_type(this);
498 if (OVL_TYPE_ORIGIN(type)) {
500 struct path statpath = *path;
502 statpath.dentry = this;
503 err = vfs_getattr(&statpath, &stat, STATX_INO, 0);
508 * Directory inode is always on overlay st_dev.
509 * Non-dir with ovl_same_dev() could be on pseudo st_dev in case
510 * of xino bits overflow.
512 WARN_ON_ONCE(S_ISDIR(stat.mode) &&
513 dir->d_sb->s_dev != stat.dev);
515 } else if (xinobits && !OVL_TYPE_UPPER(type)) {
516 ino = ovl_remap_lower_ino(ino, xinobits,
517 ovl_layer_lower(this)->fsid,
528 pr_warn_ratelimited("failed to look up (%s) for ino (%i)\n",
533 static bool ovl_fill_plain(struct dir_context *ctx, const char *name,
534 int namelen, loff_t offset, u64 ino,
537 struct ovl_cache_entry *p;
538 struct ovl_readdir_data *rdd =
539 container_of(ctx, struct ovl_readdir_data, ctx);
542 p = ovl_cache_entry_new(rdd, name, namelen, ino, d_type);
547 list_add_tail(&p->l_node, rdd->list);
552 static int ovl_dir_read_impure(const struct path *path, struct list_head *list,
553 struct rb_root *root)
556 struct path realpath;
557 struct ovl_cache_entry *p, *n;
558 struct ovl_readdir_data rdd = {
559 .ctx.actor = ovl_fill_plain,
564 INIT_LIST_HEAD(list);
566 ovl_path_upper(path->dentry, &realpath);
568 err = ovl_dir_read(&realpath, &rdd);
572 list_for_each_entry_safe(p, n, list, l_node) {
573 if (strcmp(p->name, ".") != 0 &&
574 strcmp(p->name, "..") != 0) {
575 err = ovl_cache_update_ino(path, p);
579 if (p->ino == p->real_ino) {
580 list_del(&p->l_node);
583 struct rb_node **newp = &root->rb_node;
584 struct rb_node *parent = NULL;
586 if (WARN_ON(ovl_cache_entry_find_link(p->name, p->len,
590 rb_link_node(&p->node, parent, newp);
591 rb_insert_color(&p->node, root);
597 static struct ovl_dir_cache *ovl_cache_get_impure(const struct path *path)
600 struct dentry *dentry = path->dentry;
601 struct inode *inode = d_inode(dentry);
602 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
603 struct ovl_dir_cache *cache;
605 cache = ovl_dir_cache(inode);
606 if (cache && ovl_inode_version_get(inode) == cache->version)
609 /* Impure cache is not refcounted, free it here */
610 ovl_dir_cache_free(inode);
611 ovl_set_dir_cache(inode, NULL);
613 cache = kzalloc(sizeof(struct ovl_dir_cache), GFP_KERNEL);
615 return ERR_PTR(-ENOMEM);
617 res = ovl_dir_read_impure(path, &cache->entries, &cache->root);
619 ovl_cache_free(&cache->entries);
623 if (list_empty(&cache->entries)) {
625 * A good opportunity to get rid of an unneeded "impure" flag.
626 * Removing the "impure" xattr is best effort.
628 if (!ovl_want_write(dentry)) {
629 ovl_removexattr(ofs, ovl_dentry_upper(dentry),
631 ovl_drop_write(dentry);
633 ovl_clear_flag(OVL_IMPURE, inode);
638 cache->version = ovl_inode_version_get(inode);
639 ovl_set_dir_cache(inode, cache);
644 struct ovl_readdir_translate {
645 struct dir_context *orig_ctx;
646 struct ovl_dir_cache *cache;
647 struct dir_context ctx;
654 static bool ovl_fill_real(struct dir_context *ctx, const char *name,
655 int namelen, loff_t offset, u64 ino,
658 struct ovl_readdir_translate *rdt =
659 container_of(ctx, struct ovl_readdir_translate, ctx);
660 struct dir_context *orig_ctx = rdt->orig_ctx;
662 if (rdt->parent_ino && strcmp(name, "..") == 0) {
663 ino = rdt->parent_ino;
664 } else if (rdt->cache) {
665 struct ovl_cache_entry *p;
667 p = ovl_cache_entry_find(&rdt->cache->root, name, namelen);
670 } else if (rdt->xinobits) {
671 ino = ovl_remap_lower_ino(ino, rdt->xinobits, rdt->fsid,
672 name, namelen, rdt->xinowarn);
675 return orig_ctx->actor(orig_ctx, name, namelen, offset, ino, d_type);
678 static bool ovl_is_impure_dir(struct file *file)
680 struct ovl_dir_file *od = file->private_data;
681 struct inode *dir = file_inode(file);
684 * Only upper dir can be impure, but if we are in the middle of
685 * iterating a lower real dir, dir could be copied up and marked
686 * impure. We only want the impure cache if we started iterating
687 * a real upper dir to begin with.
689 return od->is_upper && ovl_test_flag(OVL_IMPURE, dir);
693 static int ovl_iterate_real(struct file *file, struct dir_context *ctx)
696 struct ovl_dir_file *od = file->private_data;
697 struct dentry *dir = file->f_path.dentry;
698 struct ovl_fs *ofs = OVL_FS(dir->d_sb);
699 const struct ovl_layer *lower_layer = ovl_layer_lower(dir);
700 struct ovl_readdir_translate rdt = {
701 .ctx.actor = ovl_fill_real,
703 .xinobits = ovl_xino_bits(ofs),
704 .xinowarn = ovl_xino_warn(ofs),
707 if (rdt.xinobits && lower_layer)
708 rdt.fsid = lower_layer->fsid;
710 if (OVL_TYPE_MERGE(ovl_path_type(dir->d_parent))) {
712 struct path statpath = file->f_path;
714 statpath.dentry = dir->d_parent;
715 err = vfs_getattr(&statpath, &stat, STATX_INO, 0);
719 WARN_ON_ONCE(dir->d_sb->s_dev != stat.dev);
720 rdt.parent_ino = stat.ino;
723 if (ovl_is_impure_dir(file)) {
724 rdt.cache = ovl_cache_get_impure(&file->f_path);
725 if (IS_ERR(rdt.cache))
726 return PTR_ERR(rdt.cache);
729 err = iterate_dir(od->realfile, &rdt.ctx);
730 ctx->pos = rdt.ctx.pos;
736 static int ovl_iterate(struct file *file, struct dir_context *ctx)
738 struct ovl_dir_file *od = file->private_data;
739 struct dentry *dentry = file->f_path.dentry;
740 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
741 struct ovl_cache_entry *p;
742 const struct cred *old_cred;
745 old_cred = ovl_override_creds(dentry->d_sb);
751 * If parent is merge, then need to adjust d_ino for '..', if
752 * dir is impure then need to adjust d_ino for copied up
755 if (ovl_xino_bits(ofs) ||
757 (ovl_is_impure_dir(file) ||
758 OVL_TYPE_MERGE(ovl_path_type(dentry->d_parent))))) {
759 err = ovl_iterate_real(file, ctx);
761 err = iterate_dir(od->realfile, ctx);
767 struct ovl_dir_cache *cache;
769 cache = ovl_cache_get(dentry);
770 err = PTR_ERR(cache);
775 ovl_seek_cursor(od, ctx->pos);
778 while (od->cursor != &od->cache->entries) {
779 p = list_entry(od->cursor, struct ovl_cache_entry, l_node);
780 if (!p->is_whiteout) {
782 err = ovl_cache_update_ino(&file->f_path, p);
787 /* ovl_cache_update_ino() sets is_whiteout on stale entry */
788 if (!p->is_whiteout) {
789 if (!dir_emit(ctx, p->name, p->len, p->ino, p->type))
792 od->cursor = p->l_node.next;
797 revert_creds(old_cred);
801 static loff_t ovl_dir_llseek(struct file *file, loff_t offset, int origin)
804 struct ovl_dir_file *od = file->private_data;
806 inode_lock(file_inode(file));
811 res = vfs_llseek(od->realfile, offset, origin);
812 file->f_pos = od->realfile->f_pos;
818 offset += file->f_pos;
828 if (offset != file->f_pos) {
829 file->f_pos = offset;
831 ovl_seek_cursor(od, offset);
836 inode_unlock(file_inode(file));
841 static struct file *ovl_dir_open_realfile(const struct file *file,
842 const struct path *realpath)
845 const struct cred *old_cred;
847 old_cred = ovl_override_creds(file_inode(file)->i_sb);
848 res = ovl_path_open(realpath, O_RDONLY | (file->f_flags & O_LARGEFILE));
849 revert_creds(old_cred);
855 * Like ovl_real_fdget(), returns upperfile if dir was copied up since open.
856 * Unlike ovl_real_fdget(), this caches upperfile in file->private_data.
858 * TODO: use same abstract type for file->private_data of dir and file so
859 * upperfile could also be cached for files as well.
861 struct file *ovl_dir_real_file(const struct file *file, bool want_upper)
864 struct ovl_dir_file *od = file->private_data;
865 struct dentry *dentry = file->f_path.dentry;
866 struct file *old, *realfile = od->realfile;
868 if (!OVL_TYPE_UPPER(ovl_path_type(dentry)))
869 return want_upper ? NULL : realfile;
872 * Need to check if we started out being a lower dir, but got copied up
875 realfile = READ_ONCE(od->upperfile);
877 struct path upperpath;
879 ovl_path_upper(dentry, &upperpath);
880 realfile = ovl_dir_open_realfile(file, &upperpath);
881 if (IS_ERR(realfile))
884 old = cmpxchg_release(&od->upperfile, NULL, realfile);
895 static int ovl_dir_fsync(struct file *file, loff_t start, loff_t end,
898 struct file *realfile;
901 err = ovl_sync_status(OVL_FS(file_inode(file)->i_sb));
905 realfile = ovl_dir_real_file(file, true);
906 err = PTR_ERR_OR_ZERO(realfile);
908 /* Nothing to sync for lower */
909 if (!realfile || err)
912 return vfs_fsync_range(realfile, start, end, datasync);
915 static int ovl_dir_release(struct inode *inode, struct file *file)
917 struct ovl_dir_file *od = file->private_data;
921 ovl_cache_put(od, inode);
932 static int ovl_dir_open(struct inode *inode, struct file *file)
934 struct path realpath;
935 struct file *realfile;
936 struct ovl_dir_file *od;
937 enum ovl_path_type type;
939 od = kzalloc(sizeof(struct ovl_dir_file), GFP_KERNEL);
943 type = ovl_path_real(file->f_path.dentry, &realpath);
944 realfile = ovl_dir_open_realfile(file, &realpath);
945 if (IS_ERR(realfile)) {
947 return PTR_ERR(realfile);
949 od->realfile = realfile;
950 od->is_real = ovl_dir_is_real(inode);
951 od->is_upper = OVL_TYPE_UPPER(type);
952 file->private_data = od;
957 const struct file_operations ovl_dir_operations = {
958 .read = generic_read_dir,
959 .open = ovl_dir_open,
960 .iterate = ovl_iterate,
961 .llseek = ovl_dir_llseek,
962 .fsync = ovl_dir_fsync,
963 .release = ovl_dir_release,
966 int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list)
969 struct ovl_cache_entry *p, *n;
970 struct rb_root root = RB_ROOT;
971 const struct cred *old_cred;
973 old_cred = ovl_override_creds(dentry->d_sb);
974 err = ovl_dir_read_merged(dentry, list, &root);
975 revert_creds(old_cred);
981 list_for_each_entry_safe(p, n, list, l_node) {
983 * Select whiteouts in upperdir, they should
984 * be cleared when deleting this directory.
986 if (p->is_whiteout) {
992 if (p->name[0] == '.') {
995 if (p->len == 2 && p->name[1] == '.')
1002 list_del(&p->l_node);
1009 void ovl_cleanup_whiteouts(struct ovl_fs *ofs, struct dentry *upper,
1010 struct list_head *list)
1012 struct ovl_cache_entry *p;
1014 inode_lock_nested(upper->d_inode, I_MUTEX_CHILD);
1015 list_for_each_entry(p, list, l_node) {
1016 struct dentry *dentry;
1018 if (WARN_ON(!p->is_whiteout || !p->is_upper))
1021 dentry = ovl_lookup_upper(ofs, p->name, upper, p->len);
1022 if (IS_ERR(dentry)) {
1023 pr_err("lookup '%s/%.*s' failed (%i)\n",
1024 upper->d_name.name, p->len, p->name,
1025 (int) PTR_ERR(dentry));
1028 if (dentry->d_inode)
1029 ovl_cleanup(ofs, upper->d_inode, dentry);
1032 inode_unlock(upper->d_inode);
1035 static bool ovl_check_d_type(struct dir_context *ctx, const char *name,
1036 int namelen, loff_t offset, u64 ino,
1037 unsigned int d_type)
1039 struct ovl_readdir_data *rdd =
1040 container_of(ctx, struct ovl_readdir_data, ctx);
1042 /* Even if d_type is not supported, DT_DIR is returned for . and .. */
1043 if (!strncmp(name, ".", namelen) || !strncmp(name, "..", namelen))
1046 if (d_type != DT_UNKNOWN)
1047 rdd->d_type_supported = true;
1053 * Returns 1 if d_type is supported, 0 not supported/unknown. Negative values
1054 * if error is encountered.
1056 int ovl_check_d_type_supported(const struct path *realpath)
1059 struct ovl_readdir_data rdd = {
1060 .ctx.actor = ovl_check_d_type,
1061 .d_type_supported = false,
1064 err = ovl_dir_read(realpath, &rdd);
1068 return rdd.d_type_supported;
1071 #define OVL_INCOMPATDIR_NAME "incompat"
1073 static int ovl_workdir_cleanup_recurse(struct ovl_fs *ofs, const struct path *path,
1077 struct inode *dir = path->dentry->d_inode;
1079 struct ovl_cache_entry *p;
1080 struct ovl_readdir_data rdd = {
1081 .ctx.actor = ovl_fill_plain,
1084 bool incompat = false;
1087 * The "work/incompat" directory is treated specially - if it is not
1088 * empty, instead of printing a generic error and mounting read-only,
1089 * we will error about incompat features and fail the mount.
1091 * When called from ovl_indexdir_cleanup(), path->dentry->d_name.name
1095 !strcmp(path->dentry->d_name.name, OVL_INCOMPATDIR_NAME))
1098 err = ovl_dir_read(path, &rdd);
1102 inode_lock_nested(dir, I_MUTEX_PARENT);
1103 list_for_each_entry(p, &list, l_node) {
1104 struct dentry *dentry;
1106 if (p->name[0] == '.') {
1109 if (p->len == 2 && p->name[1] == '.')
1111 } else if (incompat) {
1112 pr_err("overlay with incompat feature '%s' cannot be mounted\n",
1117 dentry = ovl_lookup_upper(ofs, p->name, path->dentry, p->len);
1120 if (dentry->d_inode)
1121 err = ovl_workdir_cleanup(ofs, dir, path->mnt, dentry, level);
1128 ovl_cache_free(&list);
1132 int ovl_workdir_cleanup(struct ovl_fs *ofs, struct inode *dir,
1133 struct vfsmount *mnt, struct dentry *dentry, int level)
1137 if (!d_is_dir(dentry) || level > 1) {
1138 return ovl_cleanup(ofs, dir, dentry);
1141 err = ovl_do_rmdir(ofs, dir, dentry);
1143 struct path path = { .mnt = mnt, .dentry = dentry };
1146 err = ovl_workdir_cleanup_recurse(ofs, &path, level + 1);
1147 inode_lock_nested(dir, I_MUTEX_PARENT);
1149 err = ovl_cleanup(ofs, dir, dentry);
1155 int ovl_indexdir_cleanup(struct ovl_fs *ofs)
1158 struct dentry *indexdir = ofs->indexdir;
1159 struct dentry *index = NULL;
1160 struct inode *dir = indexdir->d_inode;
1161 struct path path = { .mnt = ovl_upper_mnt(ofs), .dentry = indexdir };
1163 struct ovl_cache_entry *p;
1164 struct ovl_readdir_data rdd = {
1165 .ctx.actor = ovl_fill_plain,
1169 err = ovl_dir_read(&path, &rdd);
1173 inode_lock_nested(dir, I_MUTEX_PARENT);
1174 list_for_each_entry(p, &list, l_node) {
1175 if (p->name[0] == '.') {
1178 if (p->len == 2 && p->name[1] == '.')
1181 index = ovl_lookup_upper(ofs, p->name, indexdir, p->len);
1182 if (IS_ERR(index)) {
1183 err = PTR_ERR(index);
1187 /* Cleanup leftover from index create/cleanup attempt */
1188 if (index->d_name.name[0] == '#') {
1189 err = ovl_workdir_cleanup(ofs, dir, path.mnt, index, 1);
1194 err = ovl_verify_index(ofs, index);
1197 } else if (err == -ESTALE) {
1198 /* Cleanup stale index entries */
1199 err = ovl_cleanup(ofs, dir, index);
1200 } else if (err != -ENOENT) {
1202 * Abort mount to avoid corrupting the index if
1203 * an incompatible index entry was found or on out
1207 } else if (ofs->config.nfs_export) {
1209 * Whiteout orphan index to block future open by
1210 * handle after overlay nlink dropped to zero.
1212 err = ovl_cleanup_and_whiteout(ofs, dir, index);
1214 /* Cleanup orphan index entries */
1215 err = ovl_cleanup(ofs, dir, index);
1228 ovl_cache_free(&list);
1230 pr_err("failed index dir cleanup (%i)\n", err);