Blame SOURCES/autofs-5.1.7-make-tree-implementation-data-independent.patch

9a499a
autofs-5.1.7 - make tree implementation data independent
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
Generalise the tree implementation so that it's independent of the
9a499a
data structure that's used.
9a499a
9a499a
Do this by refactoring it into core tree functions and functions
9a499a
specific to the data structure to be used so that different data
9a499a
structures can be used when needed by adding an implementation for
9a499a
the data structure specific functions.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG        |    1 
9a499a
 include/mounts.h |   29 +++++++++
9a499a
 lib/mounts.c     |  174 ++++++++++++++++++++++++++++++++++---------------------
9a499a
 3 files changed, 140 insertions(+), 64 deletions(-)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -31,6 +31,7 @@
9a499a
 - add some multi-mount macros.
9a499a
 - remove unused functions cache_dump_multi() and cache_dump_cache().
9a499a
 - add a len field to struct autofs_point.
9a499a
+- make tree implementation data independent.
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
@@ -51,10 +51,36 @@ extern const unsigned int t_indirect;
9a499a
 extern const unsigned int t_direct;
9a499a
 extern const unsigned int t_offset;
9a499a
 
9a499a
+struct mnt_list;
9a499a
 struct mapent;
9a499a
 
9a499a
+struct tree_ops;
9a499a
+
9a499a
+struct tree_node {
9a499a
+	struct tree_ops *ops;
9a499a
+	struct tree_node *left;
9a499a
+	struct tree_node *right;
9a499a
+};
9a499a
+#define INIT_TREE_NODE(ptr)	((ptr)->ops = NULL, (ptr)->left = NULL, (ptr)->right = NULL)
9a499a
+
9a499a
+#define MNT_LIST(n)		(container_of(n, struct mnt_list, node))
9a499a
+#define MNT_LIST_NODE(ptr)	((struct tree_node *) &((struct mnt_list *) ptr)->node)
9a499a
+
9a499a
+typedef struct tree_node *(*tree_new_t) (void *ptr);
9a499a
+typedef int  (*tree_cmp_t) (struct tree_node *n, void *ptr);
9a499a
+typedef void (*tree_free_t) (struct tree_node *n);
9a499a
+
9a499a
+struct tree_ops {
9a499a
+	tree_new_t new;
9a499a
+	tree_cmp_t cmp;
9a499a
+	tree_free_t free;
9a499a
+};
9a499a
+
9a499a
+typedef int (*tree_work_fn_t) (struct tree_node *n, void *ptr);
9a499a
+
9a499a
 struct mnt_list {
9a499a
 	char *mp;
9a499a
+	size_t len;
9a499a
 	unsigned int flags;
9a499a
 
9a499a
 	/* Hash of all mounts */
9a499a
@@ -79,6 +105,9 @@ struct mnt_list {
9a499a
 	unsigned int amd_cache_opts;
9a499a
 	struct list_head amdmount;
9a499a
 
9a499a
+	/* Tree operations */
9a499a
+	struct tree_node node;
9a499a
+
9a499a
 	/*
9a499a
 	 * List operations ie. get_mnt_list.
9a499a
 	 */
9a499a
--- autofs-5.1.4.orig/lib/mounts.c
9a499a
+++ autofs-5.1.4/lib/mounts.c
9a499a
@@ -68,6 +68,17 @@ static pthread_mutex_t ext_mount_hash_mu
9a499a
 static DEFINE_HASHTABLE(mnts_hash, MNTS_HASH_BITS);
9a499a
 static pthread_mutex_t mnts_hash_mutex = PTHREAD_MUTEX_INITIALIZER;
9a499a
 
9a499a
+static struct tree_node *tree_mnt_new(void *ptr);
9a499a
+static int tree_mnt_cmp(struct tree_node *n, void *ptr);
9a499a
+static void tree_mnt_free(struct tree_node *n);
9a499a
+
9a499a
+static struct tree_ops mnt_ops = {
9a499a
+	.new = tree_mnt_new,
9a499a
+	.cmp = tree_mnt_cmp,
9a499a
+	.free = tree_mnt_free,
9a499a
+};
9a499a
+static struct tree_ops *tree_mnt_ops = &mnt_ops;
9a499a
+
9a499a
 unsigned int linux_version_code(void)
9a499a
 {
9a499a
 	struct utsname my_utsname;
9a499a
@@ -904,6 +915,7 @@ static struct mnt_list *mnts_alloc_mount
9a499a
 		this = NULL;
9a499a
 		goto done;
9a499a
 	}
9a499a
+	this->len = strlen(mp);
9a499a
 
9a499a
 	this->ref = 1;
9a499a
 	INIT_HLIST_NODE(&this->hash);
9a499a
@@ -912,6 +924,7 @@ static struct mnt_list *mnts_alloc_mount
9a499a
 	INIT_LIST_HEAD(&this->submount_work);
9a499a
 	INIT_LIST_HEAD(&this->amdmount);
9a499a
 	INIT_LIST_HEAD(&this->expire);
9a499a
+	INIT_TREE_NODE(&this->node);
9a499a
 done:
9a499a
 	return this;
9a499a
 }
9a499a
@@ -1225,91 +1238,58 @@ done:
9a499a
 	return has_mounted_mounts;
9a499a
 }
9a499a
 
9a499a
-struct tree_node {
9a499a
-	struct mnt_list *mnt;
9a499a
-	struct tree_node *left;
9a499a
-	struct tree_node *right;
9a499a
-};
9a499a
-
9a499a
-static struct tree_node *tree_new(struct mnt_list *mnt)
9a499a
-{
9a499a
-	struct tree_node *n;
9a499a
-
9a499a
-	n = malloc(sizeof(struct tree_node));
9a499a
-	if (!n)
9a499a
-		return NULL;
9a499a
-	memset(n, 0, sizeof(struct tree_node));
9a499a
-	n->mnt = mnt;
9a499a
-
9a499a
-	return n;
9a499a
-}
9a499a
-
9a499a
-static struct tree_node *tree_root(struct mnt_list *mnt)
9a499a
+static inline struct tree_node *tree_root(struct tree_ops *ops, void *ptr)
9a499a
 {
9a499a
-	struct tree_node *n;
9a499a
-
9a499a
-	n = tree_new(mnt);
9a499a
-	if (!n) {
9a499a
-		error(LOGOPT_ANY, "failed to allcate tree root");
9a499a
-		return NULL;
9a499a
-	}
9a499a
-
9a499a
-	return n;
9a499a
+	return ops->new(ptr);
9a499a
 }
9a499a
 
9a499a
-static struct tree_node *tree_add_left(struct tree_node *n, struct mnt_list *mnt)
9a499a
+static struct tree_node *tree_add_left(struct tree_node *n, void *ptr)
9a499a
 {
9a499a
 	struct tree_node *new;
9a499a
 
9a499a
-	new = tree_new(mnt);
9a499a
-	if (!new) {
9a499a
-		error(LOGOPT_ANY, "failed to allcate tree node");
9a499a
-		return NULL;
9a499a
-	}
9a499a
+	new = n->ops->new(ptr);
9a499a
 	n->left = new;
9a499a
 
9a499a
-	return n;
9a499a
+	return new;
9a499a
 }
9a499a
 
9a499a
-static struct tree_node *tree_add_right(struct tree_node *n, struct mnt_list *mnt)
9a499a
+static struct tree_node *tree_add_right(struct tree_node *n, void *ptr)
9a499a
 {
9a499a
 	struct tree_node *new;
9a499a
 
9a499a
-	new = tree_new(mnt);
9a499a
-	if (!new) {
9a499a
-		error(LOGOPT_ANY, "failed to allcate tree node");
9a499a
-		return NULL;
9a499a
-	}
9a499a
+	new = n->ops->new(ptr);
9a499a
 	n->right = new;
9a499a
 
9a499a
-	return n;
9a499a
+	return new;
9a499a
 }
9a499a
 
9a499a
-static struct tree_node *tree_add_node(struct tree_node *root, struct mnt_list *mnt)
9a499a
+static struct tree_node *tree_add_node(struct tree_node *root, void *ptr)
9a499a
 {
9a499a
 	struct tree_node *p, *q;
9a499a
-	unsigned int mp_len;
9a499a
-
9a499a
-	mp_len = strlen(mnt->mp);
9a499a
+	struct tree_ops *ops = root->ops;
9a499a
+	int eq;
9a499a
 
9a499a
 	q = root;
9a499a
 	p = root;
9a499a
 
9a499a
-	while (q && strcmp(mnt->mp, p->mnt->mp)) {
9a499a
+	while (q) {
9a499a
 		p = q;
9a499a
-		if (mp_len < strlen(p->mnt->mp))
9a499a
+		eq = ops->cmp(p, ptr);
9a499a
+		if (!eq)
9a499a
+			break;
9a499a
+		if (eq < 0)
9a499a
 			q = p->left;
9a499a
 		else
9a499a
 			q = p->right;
9a499a
 	}
9a499a
 
9a499a
-	if (strcmp(mnt->mp, p->mnt->mp) == 0)
9a499a
-		error(LOGOPT_ANY, "duplicate entry in mounts list");
9a499a
+	if (!eq)
9a499a
+		error(LOGOPT_ANY, "cannot add duplicate entry to tree");
9a499a
 	else {
9a499a
-		if (mp_len < strlen(p->mnt->mp))
9a499a
-			return tree_add_left(p, mnt);
9a499a
+		if (eq < 0)
9a499a
+			return tree_add_left(p, ptr);
9a499a
 		else
9a499a
-			return tree_add_right(p, mnt);
9a499a
+			return tree_add_right(p, ptr);
9a499a
 	}
9a499a
 
9a499a
 	return NULL;
9a499a
@@ -1317,26 +1297,92 @@ static struct tree_node *tree_add_node(s
9a499a
 
9a499a
 static void tree_free(struct tree_node *root)
9a499a
 {
9a499a
+	struct tree_ops *ops = root->ops;
9a499a
+
9a499a
 	if (root->right)
9a499a
 		tree_free(root->right);
9a499a
 	if (root->left)
9a499a
 		tree_free(root->left);
9a499a
-	free(root);
9a499a
+	ops->free(root);
9a499a
+}
9a499a
+
9a499a
+static int tree_traverse_inorder(struct tree_node *n, tree_work_fn_t work, void *ptr)
9a499a
+{
9a499a
+	int ret;
9a499a
+
9a499a
+	if (n->left) {
9a499a
+		ret = tree_traverse_inorder(n->left, work, ptr);
9a499a
+		if (!ret)
9a499a
+			goto done;
9a499a
+	}
9a499a
+	ret = work(n, ptr);
9a499a
+	if (!ret)
9a499a
+		goto done;
9a499a
+	if (n->right) {
9a499a
+		ret = tree_traverse_inorder(n->right, work, ptr);
9a499a
+		if (!ret)
9a499a
+			goto done;
9a499a
+	}
9a499a
+done:
9a499a
+	return ret;
9a499a
+}
9a499a
+
9a499a
+static struct tree_node *tree_mnt_root(struct mnt_list *mnt)
9a499a
+{
9a499a
+	return tree_root(tree_mnt_ops, mnt);
9a499a
+}
9a499a
+
9a499a
+static struct tree_node *tree_mnt_new(void *ptr)
9a499a
+{
9a499a
+	struct tree_node *n = MNT_LIST_NODE(ptr);
9a499a
+
9a499a
+	n->ops = tree_mnt_ops;
9a499a
+	n->left = NULL;
9a499a
+	n->right = NULL;
9a499a
+
9a499a
+	return n;
9a499a
+}
9a499a
+
9a499a
+static int tree_mnt_cmp(struct tree_node *n, void *ptr)
9a499a
+{
9a499a
+	struct mnt_list *n_mnt = MNT_LIST(n);
9a499a
+	size_t n_mnt_len = n_mnt->len;
9a499a
+	struct mnt_list *mnt = ptr;
9a499a
+	size_t mnt_len = mnt->len;
9a499a
+	int eq;
9a499a
+
9a499a
+	eq = strcmp(mnt->mp, n_mnt->mp);
9a499a
+	if (!eq)
9a499a
+		return 0;
9a499a
+	return (mnt_len < n_mnt_len) ? -1 : 1;
9a499a
+}
9a499a
+
9a499a
+static void tree_mnt_free(struct tree_node *n)
9a499a
+{
9a499a
+	n->ops = NULL;
9a499a
+	n->left = NULL;
9a499a
+	n->right = NULL;
9a499a
 }
9a499a
 
9a499a
-static void tree_traverse(struct tree_node *n, struct list_head *mnts)
9a499a
+static int tree_mnt_expire_list_work(struct tree_node *n, void *ptr)
9a499a
 {
9a499a
-	if (n->right)
9a499a
-		tree_traverse(n->right, mnts);
9a499a
-	list_add_tail(&n->mnt->expire, mnts);
9a499a
-	if (n->left)
9a499a
-		tree_traverse(n->left, mnts);
9a499a
+	struct mnt_list *mnt = MNT_LIST(n);
9a499a
+	struct list_head *mnts = ptr;
9a499a
+
9a499a
+	/* The expire of the root offset of an offset tree is the same
9a499a
+	 * as expiring the offset tree root itself (if theree is a root
9a499a
+	 * offset).
9a499a
+	 */
9a499a
+	if (mnt->mp[mnt->len - 1] != '/')
9a499a
+		list_add(&mnt->expire, mnts);
9a499a
+
9a499a
+	return 1;
9a499a
 }
9a499a
 
9a499a
 void mnts_get_expire_list(struct list_head *mnts, struct autofs_point *ap)
9a499a
 {
9a499a
-	struct mnt_list *mnt;
9a499a
 	struct tree_node *tree = NULL;
9a499a
+	struct mnt_list *mnt;
9a499a
 
9a499a
 	mnts_hash_mutex_lock();
9a499a
 	if (list_empty(&ap->mounts))
9a499a
@@ -1351,7 +1397,7 @@ void mnts_get_expire_list(struct list_he
9a499a
 		__mnts_get_mount(mnt);
9a499a
 
9a499a
 		if (!tree) {
9a499a
-			tree = tree_root(mnt);
9a499a
+			tree = tree_mnt_root(mnt);
9a499a
 			if (!tree) {
9a499a
 				error(LOGOPT_ANY, "failed to create expire tree root");
9a499a
 				goto done;
9a499a
@@ -1367,7 +1413,7 @@ void mnts_get_expire_list(struct list_he
9a499a
 		}
9a499a
 	}
9a499a
 
9a499a
-	tree_traverse(tree, mnts);
9a499a
+	tree_traverse_inorder(tree, tree_mnt_expire_list_work, mnts);
9a499a
 	tree_free(tree);
9a499a
 done:
9a499a
 	mnts_hash_mutex_unlock();