Blame SOURCES/autofs-5.1.2-create-thread-local-ID-for-mount-attempts.patch

306fa1
autofs-5.1.2 - create thread-local ID for mount attempts
306fa1
306fa1
From: Lars R. Damerow <lars@pixar.com>
306fa1
306fa1
This patch creates key_thread_attempt_id as a pthread key and populates it
306fa1
in each new thread serving a mount attempt. This ID can be used in output logs
306fa1
as an easy string to grep for, allowing admins to quickly see a mount attempt's
306fa1
log entries without the messages from other attempts interleaved.
306fa1
306fa1
The contents of the ID are intended to be opaque, but to get a chance at
306fa1
a unique value for each mount attempt, this patch does a very simple hash
306fa1
computation of the thread's wait_queue_token, the pid of the requesting
306fa1
process, and the key for the mount. The hash is based on the public domain
306fa1
sdbm library.
306fa1
306fa1
Signed-off-by: Lars R. Damerow <lars@pixar.com>
306fa1
Signed-off-by: Ian Kent <raven@themaw.net>
306fa1
---
306fa1
 CHANGELOG           |    1 +
306fa1
 daemon/automount.c  |   24 ++++++++++++++++++++++++
306fa1
 daemon/direct.c     |   17 +++++++++++++++++
306fa1
 daemon/indirect.c   |   17 +++++++++++++++++
306fa1
 include/automount.h |    6 ++++++
306fa1
 5 files changed, 65 insertions(+)
306fa1
306fa1
--- autofs-5.0.7.orig/CHANGELOG
306fa1
+++ autofs-5.0.7/CHANGELOG
306fa1
@@ -236,6 +236,7 @@
306fa1
 - fix bogus check in expire_cleanup().
306fa1
 - delay submount exit for amd submounts.
306fa1
 - add the mount requestor's pid to pending_args.
306fa1
+- create thread-local ID for mount attempts.
306fa1
 
306fa1
 25/07/2012 autofs-5.0.7
306fa1
 =======================
306fa1
--- autofs-5.0.7.orig/daemon/automount.c
306fa1
+++ autofs-5.0.7/daemon/automount.c
306fa1
@@ -89,6 +89,7 @@ struct startup_cond suc = {
306fa1
 	PTHREAD_MUTEX_INITIALIZER, PTHREAD_COND_INITIALIZER, 0, 0};
306fa1
 
306fa1
 pthread_key_t key_thread_stdenv_vars;
306fa1
+pthread_key_t key_thread_attempt_id = (pthread_key_t) 0L;
306fa1
 
306fa1
 #define MAX_OPEN_FILES		10240
306fa1
 
306fa1
@@ -98,6 +99,17 @@ static int umount_all(struct autofs_poin
306fa1
 
306fa1
 extern struct master *master_list;
306fa1
 
306fa1
+/* simple string hash based on public domain sdbm library */
306fa1
+unsigned long sdbm_hash(const char *str, unsigned long seed)
306fa1
+{
306fa1
+	unsigned long hash = seed;
306fa1
+	char c;
306fa1
+
306fa1
+	while ((c = *str++))
306fa1
+		hash = c + (hash << 6) + (hash << 16) - hash;
306fa1
+	return hash;
306fa1
+}
306fa1
+
306fa1
 static int do_mkdir(const char *parent, const char *path, mode_t mode)
306fa1
 {
306fa1
 	int status;
306fa1
@@ -2441,6 +2453,18 @@ int main(int argc, char *argv[])
306fa1
 		       program);
306fa1
 		master_kill(master_list);
306fa1
 		res = write(start_pipefd[1], pst_stat, sizeof(*pst_stat));
306fa1
+		close(start_pipefd[1]);
306fa1
+		release_flag_file();
306fa1
+		macro_free_global_table();
306fa1
+		exit(1);
306fa1
+	}
306fa1
+
306fa1
+	status = pthread_key_create(&key_thread_attempt_id, free);
306fa1
+	if (status) {
306fa1
+		logerr("%s: failed to create thread data key for attempt ID!",
306fa1
+		       program);
306fa1
+		master_kill(master_list);
306fa1
+		res = write(start_pipefd[1], pst_stat, sizeof(*pst_stat));
306fa1
 		close(start_pipefd[1]);
306fa1
 		release_flag_file();
306fa1
 		macro_free_global_table();
306fa1
--- autofs-5.0.7.orig/daemon/direct.c
306fa1
+++ autofs-5.0.7/daemon/direct.c
306fa1
@@ -1210,6 +1210,8 @@ static void *do_mount_direct(void *arg)
306fa1
 	struct autofs_point *ap;
306fa1
 	struct stat st;
306fa1
 	int status, state;
306fa1
+	char attempt_id_comp[20];
306fa1
+	unsigned long *attempt_id;
306fa1
 
306fa1
 	args = (struct pending_args *) arg;
306fa1
 
306fa1
@@ -1219,6 +1221,21 @@ static void *do_mount_direct(void *arg)
306fa1
 
306fa1
 	ap = mt.ap;
306fa1
 
306fa1
+	attempt_id = pthread_getspecific(key_thread_attempt_id);
306fa1
+	if (attempt_id == NULL) {
306fa1
+		attempt_id = (unsigned long *) calloc(1, sizeof(unsigned long));
306fa1
+		if (attempt_id == NULL)
306fa1
+			fatal(ENOMEM);
306fa1
+		snprintf(attempt_id_comp, 20, "%ld", mt.wait_queue_token);
306fa1
+		*attempt_id = sdbm_hash(attempt_id_comp, 0);
306fa1
+		snprintf(attempt_id_comp, 20, "%u", mt.pid);
306fa1
+		*attempt_id = sdbm_hash(attempt_id_comp, *attempt_id);
306fa1
+		*attempt_id = sdbm_hash(mt.name, *attempt_id);
306fa1
+		status = pthread_setspecific(key_thread_attempt_id, attempt_id);
306fa1
+		if (status != 0)
306fa1
+			fatal(status);
306fa1
+	}
306fa1
+
306fa1
 	args->signaled = 1;
306fa1
 	status = pthread_cond_signal(&args->cond);
306fa1
 	if (status)
306fa1
--- autofs-5.0.7.orig/daemon/indirect.c
306fa1
+++ autofs-5.0.7/daemon/indirect.c
306fa1
@@ -726,6 +726,8 @@ static void *do_mount_indirect(void *arg
306fa1
 	char buf[PATH_MAX + 1];
306fa1
 	struct stat st;
306fa1
 	int len, status, state;
306fa1
+	char attempt_id_comp[20];
306fa1
+	unsigned long *attempt_id;
306fa1
 
306fa1
 	args = (struct pending_args *) arg;
306fa1
 
306fa1
@@ -735,6 +737,21 @@ static void *do_mount_indirect(void *arg
306fa1
 
306fa1
 	ap = mt.ap;
306fa1
 
306fa1
+	attempt_id = pthread_getspecific(key_thread_attempt_id);
306fa1
+	if (attempt_id == NULL) {
306fa1
+		attempt_id = (unsigned long *) calloc(1, sizeof(unsigned long));
306fa1
+		if (attempt_id  == NULL)
306fa1
+			fatal(ENOMEM);
306fa1
+		snprintf(attempt_id_comp, 20, "%ld", mt.wait_queue_token);
306fa1
+		*attempt_id = sdbm_hash(attempt_id_comp, 0);
306fa1
+		snprintf(attempt_id_comp, 20, "%u", mt.pid);
306fa1
+		*attempt_id = sdbm_hash(attempt_id_comp, *attempt_id);
306fa1
+		*attempt_id = sdbm_hash(mt.name, *attempt_id);
306fa1
+		status = pthread_setspecific(key_thread_attempt_id, attempt_id);
306fa1
+		if (status != 0)
306fa1
+			fatal(status);
306fa1
+	}
306fa1
+
306fa1
 	args->signaled = 1;
306fa1
 	status = pthread_cond_signal(&args->cond);
306fa1
 	if (status)
306fa1
--- autofs-5.0.7.orig/include/automount.h
306fa1
+++ autofs-5.0.7/include/automount.h
306fa1
@@ -76,6 +76,8 @@ int load_autofs4_module(void);
306fa1
 #define SMB_SUPER_MAGIC    0x0000517BL
306fa1
 #define CIFS_MAGIC_NUMBER  0xFF534D42L
306fa1
 
306fa1
+#define ATTEMPT_ID_SIZE 24
306fa1
+
306fa1
 /* This sould be enough for at least 20 host aliases */
306fa1
 #define HOST_ENT_BUF_SIZE	2048
306fa1
 
306fa1
@@ -241,6 +243,8 @@ const char **copy_argv(int argc, const c
306fa1
 int compare_argv(int argc1, const char **argv1, int argc2, const char **argv2);
306fa1
 int free_argv(int argc, const char **argv);
306fa1
 
306fa1
+unsigned long sdbm_hash(const char *str, unsigned long seed);
306fa1
+
306fa1
 void dump_core(void);
306fa1
 int aquire_lock(void);
306fa1
 void release_lock(void);
306fa1
@@ -480,6 +484,8 @@ struct thread_stdenv_vars {
306fa1
 
306fa1
 extern pthread_key_t key_thread_stdenv_vars;
306fa1
 
306fa1
+extern pthread_key_t key_thread_attempt_id;
306fa1
+
306fa1
 struct kernel_mod_version {
306fa1
 	unsigned int major;
306fa1
 	unsigned int minor;