Blame SOURCES/autofs-5.1.7-add-tree_mapent_cleanup_offsets.patch

9a499a
autofs-5.1.7 - add tree_mapent_cleanup_offsets()
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
Add function tree_mapent_cleanup_offsets() to the mapent tree handling
9a499a
implementation.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG        |    1 +
9a499a
 include/mounts.h |    1 +
9a499a
 lib/mounts.c     |   45 +++++++++++++++++++++++++++++++++++++++++++++
9a499a
 3 files changed, 47 insertions(+)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -37,6 +37,7 @@
9a499a
 - add tree_mapent_delete_offsets().
9a499a
 - add tree_mapent_traverse_subtree().
9a499a
 - fix mount_fullpath().
9a499a
+- add tree_mapent_cleanup_offsets().
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/include/mounts.h
9a499a
+++ autofs-5.1.4/include/mounts.h
9a499a
@@ -171,6 +171,7 @@ void mnts_set_mounted_mount(struct autof
9a499a
 struct tree_node *tree_mapent_root(struct mapent *me);
9a499a
 int tree_mapent_add_node(struct mapent_cache *mc, const char *base, const char *key);
9a499a
 int tree_mapent_delete_offsets(struct mapent_cache *mc, const char *key);
9a499a
+void tree_mapent_cleanup_offsets(struct mapent *oe);
9a499a
 int unlink_mount_tree(struct autofs_point *ap, const char *mp);
9a499a
 void free_mnt_list(struct mnt_list *list);
9a499a
 int is_mounted(const char *mp, unsigned int type);
9a499a
--- autofs-5.1.4.orig/lib/mounts.c
9a499a
+++ autofs-5.1.4/lib/mounts.c
9a499a
@@ -1647,6 +1647,51 @@ int tree_mapent_delete_offsets(struct ma
9a499a
 	return 1;
9a499a
 }
9a499a
 
9a499a
+static void tree_mapent_umount_mount(struct autofs_point *ap, const char *mp)
9a499a
+{
9a499a
+	if (is_mounted(mp, MNTS_ALL)) {
9a499a
+		if (umount(mp)) {
9a499a
+			error(ap->logopt, "error recovering from mount fail");
9a499a
+			error(ap->logopt, "cannot umount %s", mp);
9a499a
+		}
9a499a
+	}
9a499a
+}
9a499a
+
9a499a
+static int tree_mapent_cleanup_offsets_work(struct tree_node *n, void *ptr)
9a499a
+{
9a499a
+	struct mapent *oe = MAPENT(n);
9a499a
+	struct traverse_subtree_context *ctxt = ptr;
9a499a
+
9a499a
+	tree_mapent_umount_mount(ctxt->ap, oe->key);
9a499a
+
9a499a
+	return 1;
9a499a
+}
9a499a
+
9a499a
+void tree_mapent_cleanup_offsets(struct mapent *oe)
9a499a
+{
9a499a
+	struct tree_node *base = MAPENT_NODE(oe);
9a499a
+	struct traverse_subtree_context ctxt = {
9a499a
+		.ap = oe->mc->ap,
9a499a
+		.base = base,
9a499a
+		.strict = 0,
9a499a
+	};
9a499a
+	struct autofs_point *ap = oe->mc->ap;
9a499a
+
9a499a
+	tree_mapent_traverse_subtree(base, tree_mapent_cleanup_offsets_work, &ctxt);
9a499a
+
9a499a
+	/* Cleanup base mount after offsets have been cleaned up */
9a499a
+	if (*oe->key == '/')
9a499a
+		tree_mapent_umount_mount(ap, oe->key);
9a499a
+	else {
9a499a
+		char mp[PATH_MAX + 1];
9a499a
+
9a499a
+		if (!mount_fullpath(mp, PATH_MAX, ap->path, oe->key))
9a499a
+			error(ap->logopt, "mount path is too long");
9a499a
+		else
9a499a
+			tree_mapent_umount_mount(ap, mp);
9a499a
+	}
9a499a
+}
9a499a
+
9a499a
 /* From glibc decode_name() */
9a499a
 /* Since the values in a line are separated by spaces, a name cannot
9a499a
  * contain a space.  Therefore some programs encode spaces in names