Blame SOURCES/autofs-5.1.7-remove-obsolete-functions.patch

9a499a
autofs-5.1.7 - remove obsolete functions
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
Remove the code that's no longer used due to the tree mapent
9a499a
implementation.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG           |    1 
9a499a
 include/automount.h |   10 -
9a499a
 include/mounts.h    |    2 
9a499a
 lib/cache.c         |  227 -------------------------------------
9a499a
 lib/mounts.c        |  311 ----------------------------------------------------
9a499a
 modules/parse_sun.c |   56 ---------
9a499a
 6 files changed, 2 insertions(+), 605 deletions(-)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -41,6 +41,7 @@
9a499a
 - add set_offset_tree_catatonic().
9a499a
 - add mount and umount offsets functions.
9a499a
 - switch to use tree implementation for offsets.
9a499a
+- remove obsolete functions.
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/include/automount.h
9a499a
+++ autofs-5.1.4/include/automount.h
9a499a
@@ -162,16 +162,13 @@ struct stack {
9a499a
 struct mapent {
9a499a
 	struct mapent *next;
9a499a
 	struct list_head ino_index;
9a499a
-	struct list_head multi_list;
9a499a
 	struct mapent_cache *mc;
9a499a
 	struct map_source *source;
9a499a
 	/* Need to know owner if we're a multi-mount */
9a499a
 	struct tree_node *mm_root;
9a499a
+	/* Parent nesting point within multi-mount */
9a499a
 	struct tree_node *mm_parent;
9a499a
 	struct tree_node node;
9a499a
-	struct mapent *multi;
9a499a
-	/* Parent nesting point within multi-mount */
9a499a
-	struct mapent *parent;
9a499a
 	char *key;
9a499a
 	size_t len;
9a499a
 	char *mapent;
9a499a
@@ -209,23 +206,18 @@ struct mapent *cache_lookup_next(struct
9a499a
 struct mapent *cache_lookup_key_next(struct mapent *me);
9a499a
 struct mapent *cache_lookup(struct mapent_cache *mc, const char *key);
9a499a
 struct mapent *cache_lookup_distinct(struct mapent_cache *mc, const char *key);
9a499a
-struct mapent *cache_lookup_offset(const char *prefix, const char *offset, int start, struct list_head *head);
9a499a
 struct mapent *cache_partial_match(struct mapent_cache *mc, const char *prefix);
9a499a
 struct mapent *cache_partial_match_wild(struct mapent_cache *mc, const char *prefix);
9a499a
 int cache_add(struct mapent_cache *mc, struct map_source *ms, const char *key, const char *mapent, time_t age);
9a499a
 int cache_update_offset(struct mapent_cache *mc, const char *mkey, const char *key, const char *mapent, time_t age);
9a499a
 void cache_update_negative(struct mapent_cache *mc, struct map_source *ms, const char *key, time_t timeout);
9a499a
 struct mapent *cache_get_offset_parent(struct mapent_cache *mc, const char *key);
9a499a
-int cache_set_offset_parent(struct mapent_cache *mc, const char *offset);
9a499a
 int cache_update(struct mapent_cache *mc, struct map_source *ms, const char *key, const char *mapent, time_t age);
9a499a
 int cache_delete(struct mapent_cache *mc, const char *key);
9a499a
-int cache_delete_offset(struct mapent_cache *mc, const char *key);
9a499a
-int cache_delete_offset_list(struct mapent_cache *mc, const char *key);
9a499a
 void cache_release(struct map_source *map);
9a499a
 void cache_clean_null_cache(struct mapent_cache *mc);
9a499a
 void cache_release_null_cache(struct master *master);
9a499a
 struct mapent *cache_enumerate(struct mapent_cache *mc, struct mapent *me);
9a499a
-char *cache_get_offset(const char *prefix, char *offset, int start, struct list_head *head, struct list_head **pos);
9a499a
 
9a499a
 /* Utility functions */
9a499a
 
9a499a
--- autofs-5.1.4.orig/include/mounts.h
9a499a
+++ autofs-5.1.4/include/mounts.h
9a499a
@@ -187,8 +187,6 @@ void set_indirect_mount_tree_catatonic(s
9a499a
 void set_direct_mount_tree_catatonic(struct autofs_point *, struct mapent *);
9a499a
 int umount_ent(struct autofs_point *, const char *);
9a499a
 int umount_amd_ext_mount(struct autofs_point *, const char *);
9a499a
-int mount_multi_triggers(struct autofs_point *, struct mapent *, const char *, unsigned int, const char *);
9a499a
-int umount_multi_triggers(struct autofs_point *, struct mapent *, char *, const char *);
9a499a
 int clean_stale_multi_triggers(struct autofs_point *, struct mapent *, char *, const char *);
9a499a
 
9a499a
 #endif
9a499a
--- autofs-5.1.4.orig/lib/cache.c
9a499a
+++ autofs-5.1.4/lib/cache.c
9a499a
@@ -461,30 +461,6 @@ struct mapent *cache_lookup_distinct(str
9a499a
 	return NULL;
9a499a
 }
9a499a
 
9a499a
-/* Lookup an offset within a multi-mount entry */
9a499a
-struct mapent *cache_lookup_offset(const char *prefix, const char *offset, int start, struct list_head *head)
9a499a
-{
9a499a
-	struct list_head *p;
9a499a
-	struct mapent *this;
9a499a
-	/* Keys for direct maps may be as long as a path name */
9a499a
-	char o_key[PATH_MAX];
9a499a
-	/* Avoid "//" at the beginning of paths */
9a499a
-	const char *path_prefix = strlen(prefix) > 1 ? prefix : "";
9a499a
-	size_t size;
9a499a
-
9a499a
-	/* root offset duplicates "/" */
9a499a
-	size = snprintf(o_key, sizeof(o_key), "%s%s", path_prefix, offset);
9a499a
-	if (size >= sizeof(o_key))
9a499a
-		return NULL;
9a499a
-
9a499a
-	list_for_each(p, head) {
9a499a
-		this = list_entry(p, struct mapent, multi_list);
9a499a
-		if (!strcmp(&this->key[start], o_key))
9a499a
-			return this;
9a499a
-	}
9a499a
-	return NULL;
9a499a
-}
9a499a
-
9a499a
 /* cache must be read locked by caller */
9a499a
 static struct mapent *__cache_partial_match(struct mapent_cache *mc,
9a499a
 					    const char *prefix,
9a499a
@@ -583,9 +559,6 @@ int cache_add(struct mapent_cache *mc, s
9a499a
 	me->mm_parent = NULL;
9a499a
 	INIT_TREE_NODE(&me->node);
9a499a
 	INIT_LIST_HEAD(&me->ino_index);
9a499a
-	INIT_LIST_HEAD(&me->multi_list);
9a499a
-	me->multi = NULL;
9a499a
-	me->parent = NULL;
9a499a
 	me->ioctlfd = -1;
9a499a
 	me->dev = (dev_t) -1;
9a499a
 	me->ino = (ino_t) -1;
9a499a
@@ -616,33 +589,6 @@ int cache_add(struct mapent_cache *mc, s
9a499a
 }
9a499a
 
9a499a
 /* cache must be write locked by caller */
9a499a
-static void cache_add_ordered_offset(struct mapent *me, struct list_head *head)
9a499a
-{
9a499a
-	struct list_head *p;
9a499a
-	struct mapent *this;
9a499a
-
9a499a
-	list_for_each(p, head) {
9a499a
-		size_t tlen;
9a499a
-		int eq;
9a499a
-
9a499a
-		this = list_entry(p, struct mapent, multi_list);
9a499a
-		tlen = strlen(this->key);
9a499a
-
9a499a
-		eq = strncmp(this->key, me->key, tlen);
9a499a
-		if (!eq && tlen == strlen(me->key))
9a499a
-			return;
9a499a
-
9a499a
-		if (eq > 0) {
9a499a
-			list_add_tail(&me->multi_list, p);
9a499a
-			return;
9a499a
-		}
9a499a
-	}
9a499a
-	list_add_tail(&me->multi_list, p);
9a499a
-
9a499a
-	return;
9a499a
-}
9a499a
-
9a499a
-/* cache must be write locked by caller */
9a499a
 int cache_update_offset(struct mapent_cache *mc, const char *mkey, const char *key, const char *mapent, time_t age)
9a499a
 {
9a499a
 	unsigned logopt = mc->ap ? mc->ap->logopt : master_get_logopt();
9a499a
@@ -747,25 +693,6 @@ struct mapent *cache_get_offset_parent(s
9a499a
 	return NULL;
9a499a
 }
9a499a
 
9a499a
-int cache_set_offset_parent(struct mapent_cache *mc, const char *offset)
9a499a
-{
9a499a
-	struct mapent *this, *parent;
9a499a
-
9a499a
-	this = cache_lookup_distinct(mc, offset);
9a499a
-	if (!this)
9a499a
-		return 0;
9a499a
-	if (!IS_MM(this))
9a499a
-		return 0;
9a499a
-
9a499a
-	parent = cache_get_offset_parent(mc, offset);
9a499a
-	if (parent)
9a499a
-		this->parent = parent;
9a499a
-	else
9a499a
-		this->parent = MM_ROOT(this);
9a499a
-
9a499a
-	return 1;
9a499a
-}
9a499a
-
9a499a
 /* cache must be write locked by caller */
9a499a
 int cache_update(struct mapent_cache *mc, struct map_source *ms, const char *key, const char *mapent, time_t age)
9a499a
 {
9a499a
@@ -807,50 +734,6 @@ int cache_update(struct mapent_cache *mc
9a499a
 	return ret;
9a499a
 }
9a499a
 
9a499a
-/* cache write lock of the multi mount owner must be held by caller */
9a499a
-int cache_delete_offset(struct mapent_cache *mc, const char *key)
9a499a
-{
9a499a
-	u_int32_t hashval = hash(key, mc->size);
9a499a
-	struct mapent *me = NULL, *pred;
9a499a
-	int status;
9a499a
-
9a499a
-	me = mc->hash[hashval];
9a499a
-	if (!me)
9a499a
-		return CHE_FAIL;
9a499a
-
9a499a
-	if (strcmp(key, me->key) == 0) {
9a499a
-		if (IS_MM(me) && IS_MM_ROOT(me))
9a499a
-			return CHE_FAIL;
9a499a
-		mc->hash[hashval] = me->next;
9a499a
-		goto delete;
9a499a
-	}
9a499a
-
9a499a
-	while (me->next != NULL) {
9a499a
-		pred = me;
9a499a
-		me = me->next;
9a499a
-		if (strcmp(key, me->key) == 0) {
9a499a
-			if (IS_MM(me) && IS_MM_ROOT(me))
9a499a
-				return CHE_FAIL;
9a499a
-			pred->next = me->next;
9a499a
-			goto delete;
9a499a
-		}
9a499a
-	}
9a499a
-
9a499a
-	return CHE_FAIL;
9a499a
-
9a499a
-delete:
9a499a
-	list_del(&me->multi_list);
9a499a
-	ino_index_lock(mc);
9a499a
-	list_del(&me->ino_index);
9a499a
-	ino_index_unlock(mc);
9a499a
-	free(me->key);
9a499a
-	if (me->mapent)
9a499a
-		free(me->mapent);
9a499a
-	free(me);
9a499a
-
9a499a
-	return CHE_OK;
9a499a
-}
9a499a
-
9a499a
 /* cache must be write locked by caller */
9a499a
 int cache_delete(struct mapent_cache *mc, const char *key)
9a499a
 {
9a499a
@@ -1024,113 +907,3 @@ struct mapent *cache_enumerate(struct ma
9a499a
 
9a499a
 	return cache_lookup_next(mc, me);
9a499a
 }
9a499a
-
9a499a
-/*
9a499a
- * Get each offset from list head under prefix.
9a499a
- * Maintain traversal current position in pos for subsequent calls. 
9a499a
- * Return each offset into offset.
9a499a
- */
9a499a
-/* cache must be read locked by caller */
9a499a
-char *cache_get_offset(const char *prefix, char *offset, int start,
9a499a
-			struct list_head *head, struct list_head **pos)
9a499a
-{
9a499a
-	struct list_head *next;
9a499a
-	struct mapent *this;
9a499a
-	size_t plen = strlen(prefix);
9a499a
-	size_t len = 0;
9a499a
-
9a499a
-	if (*pos == head)
9a499a
-		return NULL;
9a499a
-
9a499a
-	/* Find an offset */
9a499a
-	*offset = '\0';
9a499a
-	next = *pos ? (*pos)->next : head->next;
9a499a
-	while (next != head) {
9a499a
-		char *offset_start, *pstart, *pend;
9a499a
-
9a499a
-		this = list_entry(next, struct mapent, multi_list);
9a499a
-		*pos = next;
9a499a
-		next = next->next;
9a499a
-
9a499a
-		offset_start = &this->key[start];
9a499a
-		if (strlen(offset_start) <= plen)
9a499a
-			continue;
9a499a
-
9a499a
-		if (!strncmp(prefix, offset_start, plen)) {
9a499a
-			struct mapent *np = NULL;
9a499a
-			char pe[PATH_MAX + 1];
9a499a
-
9a499a
-			/* "/" doesn't count for root offset */
9a499a
-			if (plen == 1)
9a499a
-				pstart = &offset_start[plen - 1];
9a499a
-			else
9a499a
-				pstart = &offset_start[plen];
9a499a
-
9a499a
-			/* not part of this sub-tree */
9a499a
-			if (*pstart != '/')
9a499a
-				continue;
9a499a
-
9a499a
-			/* get next offset */
9a499a
-			pend = pstart;
9a499a
-			while (*pend++) {
9a499a
-				size_t nest_pt_offset;
9a499a
-
9a499a
-				if (*pend != '/')
9a499a
-					continue;
9a499a
-
9a499a
-				nest_pt_offset = start + pend - pstart;
9a499a
-				if (plen > 1)
9a499a
-					nest_pt_offset += plen;
9a499a
-				strcpy(pe, this->key);
9a499a
-				pe[nest_pt_offset] = '\0';
9a499a
-
9a499a
-				np = cache_lookup_distinct(this->mc, pe);
9a499a
-				if (np)
9a499a
-					break;
9a499a
-			}
9a499a
-			if (np)
9a499a
-				continue;
9a499a
-			len = pend - pstart - 1;
9a499a
-			strncpy(offset, pstart, len);
9a499a
-			offset[len] ='\0';
9a499a
-			break;
9a499a
-		}
9a499a
-	}
9a499a
-
9a499a
-	/* Seek to next offset */
9a499a
-	while (next != head) {
9a499a
-		char *offset_start, *pstart;
9a499a
-
9a499a
-		this = list_entry(next, struct mapent, multi_list);
9a499a
-
9a499a
-		offset_start = &this->key[start];
9a499a
-		if (strlen(offset_start) <= plen + len)
9a499a
-			break;
9a499a
-
9a499a
-		/* "/" doesn't count for root offset */
9a499a
-		if (plen == 1)
9a499a
-			pstart = &offset_start[plen - 1];
9a499a
-		else
9a499a
-			pstart = &offset_start[plen];
9a499a
-
9a499a
-		/* not part of this sub-tree */
9a499a
-		if (*pstart != '/')
9a499a
-			break;
9a499a
-
9a499a
-		/* new offset */
9a499a
-		if (!*(pstart + len + 1))
9a499a
-			break;
9a499a
-
9a499a
-		/* compare offset */
9a499a
-		if (pstart[len] != '/' ||
9a499a
-		    strlen(pstart) != len ||
9a499a
-		    strncmp(offset, pstart, len))
9a499a
-			break;
9a499a
-
9a499a
-		*pos = next;
9a499a
-		next = next->next;
9a499a
-	}
9a499a
-
9a499a
-	return *offset ? offset : NULL;
9a499a
-}
9a499a
-
9a499a
--- autofs-5.1.4.orig/lib/mounts.c
9a499a
+++ autofs-5.1.4/lib/mounts.c
9a499a
@@ -2849,21 +2849,6 @@ static void set_offset_tree_catatonic(st
9a499a
 	tree_traverse_inorder(MAPENT_ROOT(me), set_offset_tree_catatonic_work, NULL);
9a499a
 }
9a499a
 
9a499a
-static void set_multi_mount_tree_catatonic(struct autofs_point *ap, struct mapent *me)
9a499a
-{
9a499a
-	if (!list_empty(&me->multi_list)) {
9a499a
-		struct list_head *head = &me->multi_list;
9a499a
-		struct list_head *p;
9a499a
-
9a499a
-		list_for_each(p, head) {
9a499a
-			struct mapent *this;
9a499a
-
9a499a
-			this = list_entry(p, struct mapent, multi_list);
9a499a
-			set_mount_catatonic(ap, this, this->ioctlfd);
9a499a
-		}
9a499a
-	}
9a499a
-}
9a499a
-
9a499a
 void set_indirect_mount_tree_catatonic(struct autofs_point *ap)
9a499a
 {
9a499a
 	struct master_mapent *entry = ap->entry;
9a499a
@@ -3028,299 +3013,3 @@ done:
9a499a
 out:
9a499a
 	return rv;
9a499a
 }
9a499a
-
9a499a
-static int do_mount_autofs_offset(struct autofs_point *ap, struct mapent *oe)
9a499a
-{
9a499a
-	int mounted = 0;
9a499a
-	int ret;
9a499a
-
9a499a
-	debug(ap->logopt, "mount offset %s", oe->key);
9a499a
-
9a499a
-	ret = mount_autofs_offset(ap, oe);
9a499a
-	if (ret >= MOUNT_OFFSET_OK)
9a499a
-		mounted++;
9a499a
-	else {
9a499a
-		if (ret != MOUNT_OFFSET_IGNORE)
9a499a
-			warn(ap->logopt, "failed to mount offset");
9a499a
-		else {
9a499a
-			debug(ap->logopt, "ignoring \"nohide\" trigger %s",
9a499a
-			      oe->key);
9a499a
-			/*
9a499a
-			 * Ok, so we shouldn't modify the mapent but
9a499a
-			 * mount requests are blocked at a point above
9a499a
-			 * this and expire only uses the mapent key or
9a499a
-			 * holds the cache write lock.
9a499a
-			 */
9a499a
-			free(oe->mapent);
9a499a
-			oe->mapent = NULL;
9a499a
-		}
9a499a
-	}
9a499a
-
9a499a
-	return mounted;
9a499a
-}
9a499a
-
9a499a
-static int rmdir_path_offset(struct autofs_point *ap, struct mapent *oe)
9a499a
-{
9a499a
-	char *dir, *path;
9a499a
-	unsigned int split;
9a499a
-	int ret;
9a499a
-
9a499a
-	if (ap->type == LKP_DIRECT)
9a499a
-		return rmdir_path(ap, oe->key, MM_ROOT(oe)->dev);
9a499a
-
9a499a
-	dir = strdup(oe->key);
9a499a
-
9a499a
-	if (ap->flags & MOUNT_FLAG_GHOST)
9a499a
-		split = ap->len + strlen(MM_ROOT(oe)->key) + 1;
9a499a
-	else
9a499a
-		split = ap->len;
9a499a
-
9a499a
-	dir[split] = '\0';
9a499a
-	path = &dir[split + 1];
9a499a
-
9a499a
-	if (chdir(dir) == -1) {
9a499a
-		error(ap->logopt, "failed to chdir to %s", dir);
9a499a
-		free(dir);
9a499a
-		return -1;
9a499a
-	}
9a499a
-
9a499a
-	ret = rmdir_path(ap, path, ap->dev);
9a499a
-
9a499a
-	free(dir);
9a499a
-
9a499a
-	if (chdir("/") == -1)
9a499a
-		error(ap->logopt, "failed to chdir to /");
9a499a
-
9a499a
-	return ret;
9a499a
-}
9a499a
-
9a499a
-static int do_umount_offset(struct autofs_point *ap,
9a499a
-			    struct mapent *oe, const char *root, int start);
9a499a
-
9a499a
-static int do_umount_multi_triggers(struct autofs_point *ap,
9a499a
-				    struct mapent *me, const char *root,
9a499a
-				    int start, const char *base)
9a499a
-{
9a499a
-	char path[PATH_MAX + 1];
9a499a
-	char *offset;
9a499a
-	struct mapent *oe;
9a499a
-	struct list_head *mm_root, *pos;
9a499a
-	const char o_root[] = "/";
9a499a
-	const char *mm_base;
9a499a
-	int left;
9a499a
-	unsigned int root_len;
9a499a
-	unsigned int mm_base_len;
9a499a
-
9a499a
-	left = 0;
9a499a
-
9a499a
-	mm_root = &me->multi->multi_list;
9a499a
-
9a499a
-	if (!base)
9a499a
-		mm_base = o_root;
9a499a
-	else
9a499a
-		mm_base = base;
9a499a
-
9a499a
-	pos = NULL;
9a499a
-	offset = path;
9a499a
-	root_len = start;
9a499a
-	mm_base_len = strlen(mm_base);
9a499a
-
9a499a
-	while ((offset = cache_get_offset(mm_base, offset, start, mm_root, &pos))) {
9a499a
-		char key[PATH_MAX + 1];
9a499a
-		int key_len = root_len + strlen(offset);
9a499a
-
9a499a
-		if (mm_base_len > 1)
9a499a
-			key_len += mm_base_len;
9a499a
-
9a499a
-		if (key_len > PATH_MAX) {
9a499a
-			warn(ap->logopt, "path loo long");
9a499a
-			continue;
9a499a
-		}
9a499a
-
9a499a
-		strcpy(key, root);
9a499a
-		if (mm_base_len > 1)
9a499a
-			strcat(key, mm_base);
9a499a
-		strcat(key, offset);
9a499a
-
9a499a
-		oe = cache_lookup_distinct(me->mc, key);
9a499a
-		/* root offset is a special case */
9a499a
-		if (!oe || (strlen(oe->key) - start) == 1)
9a499a
-			continue;
9a499a
-
9a499a
-		left += do_umount_offset(ap, oe, root, start);
9a499a
-	}
9a499a
-
9a499a
-	return left;
9a499a
-}
9a499a
-
9a499a
-static int do_umount_offset(struct autofs_point *ap,
9a499a
-			    struct mapent *oe, const char *root, int start)
9a499a
-{
9a499a
-	char *oe_base;
9a499a
-	int left = 0;
9a499a
-
9a499a
-	/*
9a499a
-	 * Check for and umount subtree offsets resulting from
9a499a
-	 * nonstrict mount fail.
9a499a
-	 */
9a499a
-	oe_base = oe->key + start;
9a499a
-	left += do_umount_multi_triggers(ap, oe, root, start, oe_base);
9a499a
-
9a499a
-	/*
9a499a
-	 * If an offset that has an active mount has been removed
9a499a
-	 * from the multi-mount we don't want to attempt to trigger
9a499a
-	 * mounts for it. Obviously this is because it has been
9a499a
-	 * removed, but less obvious is the potential strange
9a499a
-	 * behaviour that can result if we do try and mount it
9a499a
-	 * again after it's been expired. For example, if an NFS
9a499a
-	 * file system is no longer exported and is later umounted
9a499a
-	 * it can be mounted again without any error message but
9a499a
-	 * shows as an empty directory. That's going to confuse
9a499a
-	 * people for sure.
9a499a
-	 *
9a499a
-	 * If the mount cannot be umounted (the process is now
9a499a
-	 * using a stale mount) the offset needs to be invalidated
9a499a
-	 * so no further mounts will be attempted but the offset
9a499a
-	 * cache entry must remain so expires can continue to
9a499a
-	 * attempt to umount it. If the mount can be umounted and
9a499a
-	 * the offset is removed, at least for NFS we will get
9a499a
-	 * ESTALE errors when attempting list the directory.
9a499a
-	 */
9a499a
-	if (oe->ioctlfd != -1 ||
9a499a
-	    is_mounted(oe->key, MNTS_REAL)) {
9a499a
-		if (umount_ent(ap, oe->key) &&
9a499a
-		    is_mounted(oe->key, MNTS_REAL)) {
9a499a
-			debug(ap->logopt,
9a499a
-			      "offset %s has active mount, invalidate",
9a499a
-			      oe->key);
9a499a
-			/*
9a499a
-			 * Ok, so we shouldn't modify the mapent but
9a499a
-			 * mount requests are blocked at a point above
9a499a
-			 * this and expire only uses the mapent key or
9a499a
-			 * holds the cache write lock.
9a499a
-			 */
9a499a
-			if (oe->mapent) {
9a499a
-				free(oe->mapent);
9a499a
-				oe->mapent = NULL;
9a499a
-			}
9a499a
-			return ++left;
9a499a
-		}
9a499a
-	}
9a499a
-
9a499a
-	debug(ap->logopt, "umount offset %s", oe->key);
9a499a
-
9a499a
-	if (umount_autofs_offset(ap, oe)) {
9a499a
-		warn(ap->logopt, "failed to umount offset");
9a499a
-		left++;
9a499a
-	} else {
9a499a
-		struct stat st;
9a499a
-		int ret;
9a499a
-
9a499a
-		if (!(oe->flags & MOUNT_FLAG_DIR_CREATED))
9a499a
-			return left;
9a499a
-
9a499a
-		/*
9a499a
-		 * An error due to partial directory removal is
9a499a
-		 * ok so only try and remount the offset if the
9a499a
-		 * actual mount point still exists.
9a499a
-		 */
9a499a
-		ret = rmdir_path_offset(ap, oe);
9a499a
-		if (ret == -1 && !stat(oe->key, &st)) {
9a499a
-			ret = do_mount_autofs_offset(ap, oe);
9a499a
-			if (ret)
9a499a
-				left++;
9a499a
-			/* But we did origianlly create this */
9a499a
-			oe->flags |= MOUNT_FLAG_DIR_CREATED;
9a499a
-		}
9a499a
-	}
9a499a
-	return left;
9a499a
-}
9a499a
-
9a499a
-int mount_multi_triggers(struct autofs_point *ap, struct mapent *me,
9a499a
-			 const char *root, unsigned int start, const char *base)
9a499a
-{
9a499a
-	char path[PATH_MAX + 1];
9a499a
-	char *offset = path;
9a499a
-	struct mapent *oe;
9a499a
-	struct list_head *pos = NULL;
9a499a
-	unsigned int root_len = strlen(root);
9a499a
-	int mounted;
9a499a
-
9a499a
-	mounted = 0;
9a499a
-	offset = cache_get_offset(base, offset, start, &me->multi_list, &pos;;
9a499a
-	while (offset) {
9a499a
-		char key[PATH_MAX + 1];
9a499a
-		int key_len = root_len + strlen(offset);
9a499a
-
9a499a
-		if (key_len > PATH_MAX) {
9a499a
-			warn(ap->logopt, "path loo long");
9a499a
-			goto cont;
9a499a
-		}
9a499a
-
9a499a
-		/* The root offset is always mounted seperately so the
9a499a
-		 * offset path will always be root + offset.
9a499a
-		 */
9a499a
-		strcpy(key, root);
9a499a
-		strcat(key, offset);
9a499a
-
9a499a
-		oe = cache_lookup_distinct(me->mc, key);
9a499a
-		if (!oe || !oe->mapent)
9a499a
-			goto cont;
9a499a
-		if (oe->age != MM_ROOT(me)->age) {
9a499a
-			/* Best effort */
9a499a
-			do_umount_offset(ap, oe, root, start);
9a499a
-			goto cont;
9a499a
-		}
9a499a
-
9a499a
-		mounted += do_mount_autofs_offset(ap, oe);
9a499a
-
9a499a
-		/*
9a499a
-		 * If re-constructing a multi-mount it's necessary to walk
9a499a
-		 * into nested mounts, unlike the usual "mount only what's
9a499a
-		 * needed as you go" behavior.
9a499a
-		 */
9a499a
-		if (ap->state == ST_READMAP && ap->flags & MOUNT_FLAG_REMOUNT) {
9a499a
-			if (oe->ioctlfd != -1 ||
9a499a
-			    is_mounted(oe->key, MNTS_REAL))
9a499a
-				mount_multi_triggers(ap, oe, key, key_len, base);
9a499a
-		}
9a499a
-cont:
9a499a
-		offset = cache_get_offset(base,
9a499a
-				offset, start, &me->multi_list, &pos;;
9a499a
-	}
9a499a
-
9a499a
-	return mounted;
9a499a
-}
9a499a
-
9a499a
-int umount_multi_triggers(struct autofs_point *ap, struct mapent *me, char *root, const char *base)
9a499a
-{
9a499a
-	int left, start;
9a499a
-
9a499a
-	start = strlen(root);
9a499a
-
9a499a
-	left = do_umount_multi_triggers(ap, me, root, start, base);
9a499a
-
9a499a
-	if (!left && IS_MM_ROOT(me)) {
9a499a
-		/*
9a499a
-		 * Special case.
9a499a
-		 * If we can't umount the root container then we can't
9a499a
-		 * delete the offsets from the cache and we need to put
9a499a
-		 * the offset triggers back.
9a499a
-		 */
9a499a
-		if (is_mounted(root, MNTS_REAL)) {
9a499a
-			info(ap->logopt, "unmounting dir = %s", root);
9a499a
-			if (umount_ent(ap, root) &&
9a499a
-			    is_mounted(root, MNTS_REAL)) {
9a499a
-				if (mount_multi_triggers(ap, me, root, start, "/") < 0)
9a499a
-					warn(ap->logopt,
9a499a
-					     "failed to remount offset triggers");
9a499a
-				return ++left;
9a499a
-			}
9a499a
-		}
9a499a
-
9a499a
-	       /* check for mounted mount entry and remove it if found */
9a499a
-               mnts_remove_mount(root, MNTS_MOUNTED);
9a499a
-	}
9a499a
-
9a499a
-	return left;
9a499a
-}
9a499a
--- autofs-5.1.4.orig/modules/parse_sun.c
9a499a
+++ autofs-5.1.4/modules/parse_sun.c
9a499a
@@ -1076,62 +1076,6 @@ next:
9a499a
 	return (p - ent);
9a499a
 }
9a499a
 
9a499a
-static void cleanup_multi_triggers(struct autofs_point *ap,
9a499a
-			    struct mapent *me, const char *root, int start,
9a499a
-			    const char *base)
9a499a
-{
9a499a
-	char path[PATH_MAX + 1];
9a499a
-	char offset[PATH_MAX + 1];
9a499a
-	char *poffset = offset;
9a499a
-	struct mapent *oe;
9a499a
-	struct list_head *mm_root, *pos;
9a499a
-	const char o_root[] = "/";
9a499a
-	const char *mm_base;
9a499a
-	unsigned int root_len;
9a499a
-	unsigned int mm_base_len;
9a499a
-
9a499a
-	mm_root = &me->multi->multi_list;
9a499a
-
9a499a
-	if (!base)
9a499a
-		mm_base = o_root;
9a499a
-	else
9a499a
-		mm_base = base;
9a499a
-
9a499a
-	pos = NULL;
9a499a
-	root_len = strlen(root);
9a499a
-	mm_base_len = strlen(mm_base);
9a499a
-
9a499a
-	/* Make sure "none" of the offsets have an active mount. */
9a499a
-	while ((poffset = cache_get_offset(mm_base, poffset, start, mm_root, &pos))) {
9a499a
-		unsigned int path_len = root_len + strlen(poffset);
9a499a
-
9a499a
-		if (mm_base_len > 1)
9a499a
-			path_len += mm_base_len;
9a499a
-
9a499a
-		if (path_len > PATH_MAX) {
9a499a
-			warn(ap->logopt, "path loo long");
9a499a
-			continue;
9a499a
-		}
9a499a
-
9a499a
-		strcpy(path, root);
9a499a
-		if (mm_base_len > 1)
9a499a
-			strcat(path, mm_base);
9a499a
-		strcat(path, poffset);
9a499a
-
9a499a
-		oe = cache_lookup_distinct(me->mc, path);
9a499a
-		/* root offset is a special case */
9a499a
-		if (!oe || !oe->mapent || (strlen(oe->key) - start) == 1)
9a499a
-			continue;
9a499a
-
9a499a
-		if (umount(path)) {
9a499a
-			error(ap->logopt, "error recovering from mount fail");
9a499a
-			error(ap->logopt, "cannot umount offset %s", path);
9a499a
-		}
9a499a
-	}
9a499a
-
9a499a
-	return;
9a499a
-}
9a499a
-
9a499a
 static int mount_subtree(struct autofs_point *ap, struct mapent_cache *mc,
9a499a
 			 const char *name, char *loc, char *options, void *ctxt)
9a499a
 {