📄 gwthread-pthread.c
字号:
/* ==================================================================== * The Kannel Software License, Version 1.0 * * Copyright (c) 2001-2004 Kannel Group * Copyright (c) 1998-2001 WapIT Ltd. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Kannel Group (http://www.kannel.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Kannel" and "Kannel Group" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please * contact org@kannel.org. * * 5. Products derived from this software may not be called "Kannel", * nor may "Kannel" appear in their name, without prior written * permission of the Kannel Group. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE KANNEL GROUP OR ITS CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Kannel Group. For more information on * the Kannel Group, please see <http://www.kannel.org/>. * * Portions of this software are based upon software originally written at * WapIT Ltd., Helsinki, Finland for the Kannel project. */ /* * gwthread-pthread.c - implementation of gwthread.h using POSIX threads. * * Richard Braakman */#include <unistd.h>#include <errno.h>#include <pthread.h>#include <signal.h>#include <string.h>#include "gwlib/gwlib.h"#ifdef HAVE_LIBSSL#include <openssl/err.h>#endif /* HAVE_LIBSSL *//* Maximum number of live threads we can support at once. Increasing * this will increase the size of the threadtable. Use powers of two * for efficiency. */#define THREADTABLE_SIZE 1024struct threadinfo{ pthread_t self; const char *name; gwthread_func_t *func; long number; int wakefd_recv; int wakefd_send; /* joiners may be NULL. It is not allocated until a thread wants * to register. This is safe because the thread table is always * locked when a thread accesses this field. */ List *joiners; pid_t pid;};struct new_thread_args{ gwthread_func_t *func; void *arg; struct threadinfo *ti;};/* The index is the external thread number modulo the table size; the * thread number allocation code makes sure that there are no collisions. */static struct threadinfo *threadtable[THREADTABLE_SIZE];#define THREAD(t) (threadtable[(t) % THREADTABLE_SIZE])/* Number of threads currently in the thread table. */static long active_threads = 0;/* Number to use for the next thread created. The actual number used * may be higher than this, in order to avoid collisions in the threadtable. * Specifically, (threadnumber % THREADTABLE_SIZE) must be unique for all * live threads. */static long next_threadnumber;/* Info for the main thread is kept statically, because it should not * be deallocated even after the thread module shuts down -- after all, * the main thread is still running, and in practice, it can still * output debug messages which will require the thread number. */static struct threadinfo mainthread;/* Our key for accessing the (struct gwthread *) we stash in the * thread-specific-data area. This is much more efficient than * accessing a global table, which we would have to lock. */static pthread_key_t tsd_key;static pthread_mutex_t threadtable_lock;static void lock(void){ int ret; ret = pthread_mutex_lock(&threadtable_lock); if (ret != 0) { panic(ret, "gwthread-pthread: could not lock thread table"); }}static void unlock(void){ int ret; ret = pthread_mutex_unlock(&threadtable_lock); if (ret != 0) { panic(ret, "gwthread-pthread: could not unlock thread table"); }}/* Empty the wakeup pipe, in case we got several wakeup signals before * noticing. We want to wake up only once. */static void flushpipe(int fd){ unsigned char buf[128]; ssize_t bytes; do { bytes = read(fd, buf, sizeof(buf)); } while (bytes > 0);}/* Allocate and fill a threadinfo structure for a new thread, and store * it in a free slot in the thread table. The thread table must already * be locked by the caller. Return the thread number chosen for this * thread. The caller must make sure that there is room in the table. */static long fill_threadinfo(pthread_t id, const char *name, gwthread_func_t *func, struct threadinfo *ti){ int pipefds[2]; long first_try; gw_assert(active_threads < THREADTABLE_SIZE); ti->self = id; ti->name = name; ti->func = func; ti->pid = -1; if (pipe(pipefds) < 0) { panic(errno, "cannot allocate wakeup pipe for new thread"); } ti->wakefd_recv = pipefds[0]; ti->wakefd_send = pipefds[1]; socket_set_blocking(ti->wakefd_recv, 0); socket_set_blocking(ti->wakefd_send, 0); ti->joiners = NULL; /* Find a free table entry and claim it. */ first_try = next_threadnumber; do { ti->number = next_threadnumber++; /* Check if we looped all the way around the thread table. */ if (ti->number == first_try + THREADTABLE_SIZE) { panic(0, "Cannot have more than %d active threads", THREADTABLE_SIZE); } } while (THREAD(ti->number) != NULL); THREAD(ti->number) = ti; active_threads++; return ti->number;}/* Look up the threadinfo pointer for the current thread */static struct threadinfo *getthreadinfo(void){ struct threadinfo *threadinfo; threadinfo = pthread_getspecific(tsd_key); if (threadinfo == NULL) { panic(0, "gwthread-pthread: pthread_getspecific failed"); } else { gw_assert(pthread_equal(threadinfo->self, pthread_self())); } return threadinfo;}/* * Go through the list of threads waiting for us to exit, and tell * them that we're exiting. The joiner_cond entries are registered * by those threads, and will be cleaned up by them. */static void alert_joiners(void){ struct threadinfo *threadinfo; pthread_cond_t *joiner_cond; threadinfo = getthreadinfo(); if (!threadinfo->joiners) return; while ((joiner_cond = list_extract_first(threadinfo->joiners))) { pthread_cond_broadcast(joiner_cond); }}static void delete_threadinfo(void){ struct threadinfo *threadinfo; threadinfo = getthreadinfo(); list_destroy(threadinfo->joiners, NULL); close(threadinfo->wakefd_recv); close(threadinfo->wakefd_send); THREAD(threadinfo->number) = NULL; active_threads--; gw_assert(threadinfo != &mainthread); gw_free(threadinfo);}static void create_threadinfo_main(void){ int ret; fill_threadinfo(pthread_self(), "main", NULL, &mainthread); ret = pthread_setspecific(tsd_key, &mainthread); if (ret != 0) { panic(ret, "gwthread-pthread: pthread_setspecific failed"); }}void gwthread_init(void){ int ret; int i; pthread_mutex_init(&threadtable_lock, NULL); ret = pthread_key_create(&tsd_key, NULL); if (ret != 0) { panic(ret, "gwthread-pthread: pthread_key_create failed"); } for (i = 0; i < THREADTABLE_SIZE; i++) { threadtable[i] = NULL; } active_threads = 0; create_threadinfo_main();}/* Note that the gwthread library can't shut down completely, because * the main thread will still be running, and it may make calls to * gwthread_self(). */void gwthread_shutdown(void){ int ret; int running; int i; /* Main thread must not have disappeared */ gw_assert(threadtable[0] != NULL); lock(); running = 0; /* Start i at 1 to skip the main thread, which is supposed to be * still running. */ for (i = 1; i < THREADTABLE_SIZE; i++) { if (threadtable[i] != NULL) { debug("gwlib", 0, "Thread %ld (%s) still running", threadtable[i]->number, threadtable[i]->name); running++; } } unlock(); /* We can't do a full cleanup this way */ if (running) return; ret = pthread_mutex_destroy(&threadtable_lock); if (ret != 0) { warning(ret, "cannot destroy threadtable lock"); } /* We can't delete the tsd_key here, because gwthread_self() * still needs it to access the main thread's info. */}static void *new_thread(void *arg){ int ret; struct new_thread_args *p = arg; /* Make sure we don't start until our parent has entered * our thread info in the thread table. */ lock(); unlock(); /* This has to be done here, because pthread_setspecific cannot * be called by our parent on our behalf. That's why the ti * pointer is passed in the new_thread_args structure. */ /* Synchronization is not a problem, because the only thread * that relies on this call having been made is this one -- * no other thread can access our TSD anyway. */ ret = pthread_setspecific(tsd_key, p->ti); if (ret != 0) { panic(ret, "gwthread-pthread: pthread_setspecific failed"); } p->ti->pid = getpid(); debug("gwlib.gwthread", 0, "Thread %ld (%s) maps to pid %ld.", p->ti->number, p->ti->name, (long) p->ti->pid); (p->func)(p->arg); lock(); debug("gwlib.gwthread", 0, "Thread %ld (%s) terminates.", p->ti->number, p->ti->name); alert_joiners();#ifdef HAVE_LIBSSL /* Clear the OpenSSL thread-specific error queue to avoid * memory leaks. */ ERR_remove_state(gwthread_self());#endif /* HAVE_LIBSSL */ /* Must free p before signaling our exit, otherwise there is * a race with gw_check_leaks at shutdown. */ gw_free(p); delete_threadinfo(); unlock(); return NULL;}/* * Change this thread's signal mask to block user-visible signals * (HUP, TERM, QUIT, INT), and store the old signal mask in * *old_set_storage. * Return 0 for success, or -1 if an error occurred. */ /* * This does not work in Darwin alias MacOS X alias Mach kernel, * however. So we define a dummy function doing nothing. */#if defined(DARWIN_OLD) static int pthread_sigmask();#endif static int block_user_signals(sigset_t *old_set_storage){ int ret; sigset_t block_signals; ret = sigemptyset(&block_signals); if (ret != 0) { error(errno, "gwthread-pthread: Couldn't initialize signal set"); return -1; } ret = sigaddset(&block_signals, SIGHUP); ret |= sigaddset(&block_signals, SIGTERM); ret |= sigaddset(&block_signals, SIGQUIT); ret |= sigaddset(&block_signals, SIGINT); if (ret != 0) { error(0, "gwthread-pthread: Couldn't add signal to signal set"); return -1; } ret = pthread_sigmask(SIG_BLOCK, &block_signals, old_set_storage); if (ret != 0) { error(ret, "gwthread-pthread: Couldn't disable signals for thread creation"); return -1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -