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

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