2000-06-13 10:42:13 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 15:16:36 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2008-01-08 08:19:56 +08:00
|
|
|
* Copyright 1998-2008 The OpenLDAP Foundation.
|
2000-06-13 10:42:13 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2003-11-26 15:16:36 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
2000-06-13 10:42:13 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2001-12-18 10:25:21 +08:00
|
|
|
#include <ac/stdarg.h>
|
2000-06-13 10:42:13 +08:00
|
|
|
#include <ac/stdlib.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/time.h>
|
2002-08-24 13:39:43 +08:00
|
|
|
#include <ac/errno.h>
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
#include "ldap-int.h"
|
2005-09-18 07:28:08 +08:00
|
|
|
#include "ldap_pvt_thread.h" /* Get the thread interface */
|
2002-01-03 08:12:46 +08:00
|
|
|
#include "ldap_queue.h"
|
2005-09-18 07:28:08 +08:00
|
|
|
#define LDAP_THREAD_POOL_IMPLEMENTATION
|
|
|
|
#include "ldap_thr_debug.h" /* May rename symbols defined below */
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
#ifndef LDAP_THREAD_HAVE_TPOOL
|
|
|
|
|
2005-09-01 09:54:00 +08:00
|
|
|
typedef enum ldap_int_thread_pool_state_e {
|
2000-06-13 10:42:13 +08:00
|
|
|
LDAP_INT_THREAD_POOL_RUNNING,
|
|
|
|
LDAP_INT_THREAD_POOL_FINISHING,
|
2007-05-10 03:53:25 +08:00
|
|
|
LDAP_INT_THREAD_POOL_STOPPING
|
2005-09-01 09:54:00 +08:00
|
|
|
} ldap_int_thread_pool_state_t;
|
2000-06-13 10:42:13 +08:00
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/* Thread-specific key with data and optional free function */
|
2007-10-25 14:42:40 +08:00
|
|
|
typedef struct ldap_int_tpool_key_s {
|
2002-08-24 13:39:43 +08:00
|
|
|
void *ltk_key;
|
|
|
|
void *ltk_data;
|
|
|
|
ldap_pvt_thread_pool_keyfree_t *ltk_free;
|
2007-10-25 14:42:40 +08:00
|
|
|
} ldap_int_tpool_key_t;
|
2002-08-24 13:39:43 +08:00
|
|
|
|
|
|
|
/* Max number of thread-specific keys we store per thread.
|
|
|
|
* We don't expect to use many...
|
|
|
|
*/
|
|
|
|
#define MAXKEYS 32
|
2007-07-02 00:44:59 +08:00
|
|
|
|
|
|
|
/* Max number of threads */
|
2004-03-04 23:35:29 +08:00
|
|
|
#define LDAP_MAXTHR 1024 /* must be a power of 2 */
|
2003-04-12 12:01:40 +08:00
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
/* Context: thread ID and thread-specific key/data pairs */
|
2006-05-02 08:56:42 +08:00
|
|
|
typedef struct ldap_int_thread_userctx_s {
|
|
|
|
ldap_pvt_thread_t ltu_id;
|
2007-10-25 14:42:40 +08:00
|
|
|
ldap_int_tpool_key_t ltu_key[MAXKEYS];
|
2006-05-02 08:56:42 +08:00
|
|
|
} ldap_int_thread_userctx_t;
|
|
|
|
|
2003-05-02 20:23:31 +08:00
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
/* Simple {thread ID -> context} hash table; key=ctx->ltu_id.
|
2007-05-10 05:38:28 +08:00
|
|
|
* Protected by ldap_pvt_thread_pool_mutex except during pauses,
|
2007-05-12 02:48:13 +08:00
|
|
|
* when it is read-only (used by pool_purgekey and pool_context).
|
2007-07-02 00:44:59 +08:00
|
|
|
* Protected by tpool->ltp_mutex during pauses.
|
2007-05-10 05:38:28 +08:00
|
|
|
*/
|
2003-04-12 12:01:40 +08:00
|
|
|
static struct {
|
2007-06-01 23:24:19 +08:00
|
|
|
ldap_int_thread_userctx_t *ctx;
|
|
|
|
/* ctx is valid when not NULL or DELETED_THREAD_CTX */
|
2007-05-10 06:22:44 +08:00
|
|
|
# define DELETED_THREAD_CTX (&ldap_int_main_thrctx + 1) /* dummy addr */
|
2004-03-04 23:35:29 +08:00
|
|
|
} thread_keys[LDAP_MAXTHR];
|
2007-05-10 06:22:44 +08:00
|
|
|
|
|
|
|
#define TID_HASH(tid, hash) do { \
|
|
|
|
unsigned const char *ptr_ = (unsigned const char *)&(tid); \
|
|
|
|
unsigned i_; \
|
|
|
|
for (i_ = 0, (hash) = ptr_[0]; ++i_ < sizeof(tid);) \
|
|
|
|
(hash) += ((hash) << 5) ^ ptr_[i_]; \
|
|
|
|
} while(0)
|
|
|
|
|
2002-08-24 13:39:43 +08:00
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
/* Task for a thread to perform */
|
|
|
|
typedef struct ldap_int_thread_task_s {
|
2001-12-31 11:05:56 +08:00
|
|
|
union {
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_STAILQ_ENTRY(ldap_int_thread_task_s) q;
|
|
|
|
LDAP_SLIST_ENTRY(ldap_int_thread_task_s) l;
|
|
|
|
} ltt_next;
|
|
|
|
ldap_pvt_thread_start_t *ltt_start_routine;
|
|
|
|
void *ltt_arg;
|
|
|
|
} ldap_int_thread_task_t;
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
struct ldap_int_thread_pool_s {
|
2002-01-03 08:12:46 +08:00
|
|
|
LDAP_STAILQ_ENTRY(ldap_int_thread_pool_s) ltp_next;
|
2007-06-01 03:47:38 +08:00
|
|
|
|
2007-07-02 00:44:59 +08:00
|
|
|
/* protect members below, and protect thread_keys[] during pauses */
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_t ltp_mutex;
|
2007-06-01 03:47:38 +08:00
|
|
|
|
|
|
|
/* not paused and something to do for pool_<wrapper/pause/destroy>() */
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_t ltp_cond;
|
2007-06-01 03:47:38 +08:00
|
|
|
|
|
|
|
/* ltp_active_count <= 1 && ltp_pause */
|
2005-03-08 05:02:31 +08:00
|
|
|
ldap_pvt_thread_cond_t ltp_pcond;
|
2007-06-01 03:47:38 +08:00
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
/* pending tasks, and unused task objects */
|
|
|
|
LDAP_STAILQ_HEAD(tcq, ldap_int_thread_task_s) ltp_pending_list;
|
|
|
|
LDAP_SLIST_HEAD(tcl, ldap_int_thread_task_s) ltp_free_list;
|
2007-06-01 03:47:38 +08:00
|
|
|
|
2005-09-01 09:54:00 +08:00
|
|
|
ldap_int_thread_pool_state_t ltp_state;
|
2007-06-01 03:47:38 +08:00
|
|
|
|
|
|
|
/* some active request needs to be the sole active request */
|
2007-05-10 03:53:25 +08:00
|
|
|
int ltp_pause;
|
2007-06-01 03:47:38 +08:00
|
|
|
|
2007-07-03 19:34:14 +08:00
|
|
|
long ltp_max_count; /* max number of threads in pool, or 0 */
|
|
|
|
long ltp_max_pending; /* max pending or paused requests, or 0 */
|
2007-06-01 03:47:38 +08:00
|
|
|
long ltp_pending_count; /* pending or paused requests */
|
|
|
|
long ltp_active_count; /* active, not paused requests */
|
|
|
|
long ltp_open_count; /* number of threads */
|
|
|
|
long ltp_starting; /* currenlty starting threads */
|
2000-06-13 10:42:13 +08:00
|
|
|
};
|
|
|
|
|
2007-06-01 01:15:54 +08:00
|
|
|
static int ldap_int_has_thread_pool = 0;
|
2002-01-03 08:12:46 +08:00
|
|
|
static LDAP_STAILQ_HEAD(tpq, ldap_int_thread_pool_s)
|
2001-12-31 11:05:56 +08:00
|
|
|
ldap_int_thread_pool_list =
|
2002-01-03 08:12:46 +08:00
|
|
|
LDAP_STAILQ_HEAD_INITIALIZER(ldap_int_thread_pool_list);
|
2001-12-31 11:05:56 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
static ldap_pvt_thread_mutex_t ldap_pvt_thread_pool_mutex;
|
|
|
|
|
2002-03-24 01:24:38 +08:00
|
|
|
static void *ldap_int_thread_pool_wrapper( void *pool );
|
2000-06-13 10:42:13 +08:00
|
|
|
|
2007-10-25 14:48:44 +08:00
|
|
|
static ldap_pvt_thread_key_t ldap_tpool_key;
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
/* Context of the main thread */
|
2006-05-02 08:56:42 +08:00
|
|
|
static ldap_int_thread_userctx_t ldap_int_main_thrctx;
|
2005-08-23 12:12:57 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
int
|
|
|
|
ldap_int_thread_pool_startup ( void )
|
|
|
|
{
|
2007-06-01 23:24:19 +08:00
|
|
|
ldap_int_main_thrctx.ltu_id = ldap_pvt_thread_self();
|
2007-10-25 14:48:44 +08:00
|
|
|
ldap_pvt_thread_key_create( &ldap_tpool_key );
|
2001-12-31 14:46:03 +08:00
|
|
|
return ldap_pvt_thread_mutex_init(&ldap_pvt_thread_pool_mutex);
|
2000-06-13 10:42:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_int_thread_pool_shutdown ( void )
|
|
|
|
{
|
2001-12-31 11:05:56 +08:00
|
|
|
struct ldap_int_thread_pool_s *pool;
|
2000-06-13 10:42:13 +08:00
|
|
|
|
2002-01-03 08:12:46 +08:00
|
|
|
while ((pool = LDAP_STAILQ_FIRST(&ldap_int_thread_pool_list)) != NULL) {
|
2005-09-18 07:28:08 +08:00
|
|
|
(ldap_pvt_thread_pool_destroy)(&pool, 0); /* ignore thr_debug macro */
|
2000-06-13 10:42:13 +08:00
|
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_destroy(&ldap_pvt_thread_pool_mutex);
|
2007-10-25 14:48:44 +08:00
|
|
|
ldap_pvt_thread_key_destroy( ldap_tpool_key );
|
2000-06-13 10:42:13 +08:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2005-10-13 07:17:28 +08:00
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/* Create a thread pool */
|
2000-06-13 10:42:13 +08:00
|
|
|
int
|
|
|
|
ldap_pvt_thread_pool_init (
|
|
|
|
ldap_pvt_thread_pool_t *tpool,
|
2000-07-05 03:24:13 +08:00
|
|
|
int max_threads,
|
2000-06-13 10:42:13 +08:00
|
|
|
int max_pending )
|
|
|
|
{
|
|
|
|
ldap_pvt_thread_pool_t pool;
|
2000-06-21 14:09:45 +08:00
|
|
|
int rc;
|
2000-06-13 10:42:13 +08:00
|
|
|
|
2007-06-01 01:15:54 +08:00
|
|
|
/* multiple pools are currently not supported (ITS#4943) */
|
|
|
|
assert(!ldap_int_has_thread_pool);
|
|
|
|
|
2007-05-10 07:25:03 +08:00
|
|
|
if (! (0 <= max_threads && max_threads <= LDAP_MAXTHR))
|
|
|
|
max_threads = 0;
|
2007-07-03 19:34:14 +08:00
|
|
|
if (max_pending < 0)
|
|
|
|
max_pending = 0;
|
2007-05-10 07:25:03 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
*tpool = NULL;
|
|
|
|
pool = (ldap_pvt_thread_pool_t) LDAP_CALLOC(1,
|
|
|
|
sizeof(struct ldap_int_thread_pool_s));
|
|
|
|
|
|
|
|
if (pool == NULL) return(-1);
|
|
|
|
|
2000-06-21 14:09:45 +08:00
|
|
|
rc = ldap_pvt_thread_mutex_init(&pool->ltp_mutex);
|
|
|
|
if (rc != 0)
|
|
|
|
return(rc);
|
|
|
|
rc = ldap_pvt_thread_cond_init(&pool->ltp_cond);
|
2005-03-08 05:02:31 +08:00
|
|
|
if (rc != 0)
|
|
|
|
return(rc);
|
|
|
|
rc = ldap_pvt_thread_cond_init(&pool->ltp_pcond);
|
2000-06-21 14:09:45 +08:00
|
|
|
if (rc != 0)
|
|
|
|
return(rc);
|
2007-06-01 01:15:54 +08:00
|
|
|
|
|
|
|
ldap_int_has_thread_pool = 1;
|
2000-06-13 10:42:13 +08:00
|
|
|
pool->ltp_state = LDAP_INT_THREAD_POOL_RUNNING;
|
2000-07-05 03:24:13 +08:00
|
|
|
pool->ltp_max_count = max_threads;
|
2000-06-13 10:42:13 +08:00
|
|
|
pool->ltp_max_pending = max_pending;
|
2002-01-03 08:12:46 +08:00
|
|
|
LDAP_STAILQ_INIT(&pool->ltp_pending_list);
|
|
|
|
LDAP_SLIST_INIT(&pool->ltp_free_list);
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_lock(&ldap_pvt_thread_pool_mutex);
|
2002-01-03 08:12:46 +08:00
|
|
|
LDAP_STAILQ_INSERT_TAIL(&ldap_int_thread_pool_list, pool, ltp_next);
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&ldap_pvt_thread_pool_mutex);
|
|
|
|
|
2000-06-21 14:09:45 +08:00
|
|
|
#if 0
|
|
|
|
/* THIS WILL NOT WORK on some systems. If the process
|
|
|
|
* forks after starting a thread, there is no guarantee
|
|
|
|
* that the thread will survive the fork. For example,
|
|
|
|
* slapd forks in order to daemonize, and does so after
|
|
|
|
* calling ldap_pvt_thread_pool_init. On some systems,
|
|
|
|
* this initial thread does not run in the child process,
|
|
|
|
* but ltp_open_count == 1, so two things happen:
|
|
|
|
* 1) the first client connection fails, and 2) when
|
|
|
|
* slapd is kill'ed, it never terminates since it waits
|
2000-09-14 05:48:29 +08:00
|
|
|
* for all worker threads to exit. */
|
2000-06-21 14:09:45 +08:00
|
|
|
|
|
|
|
/* start up one thread, just so there is one. no need to
|
|
|
|
* lock the mutex right now, since no threads are running.
|
|
|
|
*/
|
2000-06-13 10:42:13 +08:00
|
|
|
pool->ltp_open_count++;
|
|
|
|
|
2000-06-21 14:09:45 +08:00
|
|
|
ldap_pvt_thread_t thr;
|
2002-03-24 01:24:38 +08:00
|
|
|
rc = ldap_pvt_thread_create( &thr, 1, ldap_int_thread_pool_wrapper, pool );
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
if( rc != 0) {
|
|
|
|
/* couldn't start one? then don't start any */
|
|
|
|
ldap_pvt_thread_mutex_lock(&ldap_pvt_thread_pool_mutex);
|
2002-01-03 08:12:46 +08:00
|
|
|
LDAP_STAILQ_REMOVE(ldap_int_thread_pool_list, pool,
|
2001-12-31 20:37:45 +08:00
|
|
|
ldap_int_thread_pool_s, ltp_next);
|
2007-06-01 01:15:54 +08:00
|
|
|
ldap_int_has_thread_pool = 0;
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&ldap_pvt_thread_pool_mutex);
|
2005-03-08 05:02:31 +08:00
|
|
|
ldap_pvt_thread_cond_destroy(&pool->ltp_pcond);
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_destroy(&pool->ltp_cond);
|
|
|
|
ldap_pvt_thread_mutex_destroy(&pool->ltp_mutex);
|
2002-01-04 07:30:45 +08:00
|
|
|
LDAP_FREE(pool);
|
2000-06-13 10:42:13 +08:00
|
|
|
return(-1);
|
|
|
|
}
|
2000-06-21 14:09:45 +08:00
|
|
|
#endif
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
*tpool = pool;
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2003-04-13 13:48:48 +08:00
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
/* Submit a task to be performed by the thread pool */
|
2000-06-13 10:42:13 +08:00
|
|
|
int
|
|
|
|
ldap_pvt_thread_pool_submit (
|
|
|
|
ldap_pvt_thread_pool_t *tpool,
|
2002-08-24 13:39:43 +08:00
|
|
|
ldap_pvt_thread_start_t *start_routine, void *arg )
|
2000-06-13 10:42:13 +08:00
|
|
|
{
|
|
|
|
struct ldap_int_thread_pool_s *pool;
|
2007-06-11 07:58:38 +08:00
|
|
|
ldap_int_thread_task_t *task;
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_t thr;
|
|
|
|
|
|
|
|
if (tpool == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
pool = *tpool;
|
|
|
|
|
|
|
|
if (pool == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock(&pool->ltp_mutex);
|
2007-05-10 03:53:25 +08:00
|
|
|
if (pool->ltp_state != LDAP_INT_THREAD_POOL_RUNNING
|
2007-07-03 19:34:14 +08:00
|
|
|
|| (pool->ltp_max_pending
|
2000-06-13 10:42:13 +08:00
|
|
|
&& pool->ltp_pending_count >= pool->ltp_max_pending))
|
|
|
|
{
|
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
|
|
|
return(-1);
|
|
|
|
}
|
2007-05-10 03:53:25 +08:00
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
task = LDAP_SLIST_FIRST(&pool->ltp_free_list);
|
|
|
|
if (task) {
|
|
|
|
LDAP_SLIST_REMOVE_HEAD(&pool->ltp_free_list, ltt_next.l);
|
2001-12-31 11:05:56 +08:00
|
|
|
} else {
|
2007-06-11 07:58:38 +08:00
|
|
|
task = (ldap_int_thread_task_t *) LDAP_MALLOC(sizeof(*task));
|
|
|
|
if (task == NULL) {
|
2001-12-31 11:05:56 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
task->ltt_start_routine = start_routine;
|
|
|
|
task->ltt_arg = arg;
|
2001-12-31 11:05:56 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
pool->ltp_pending_count++;
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_STAILQ_INSERT_TAIL(&pool->ltp_pending_list, task, ltt_next.q);
|
2007-05-10 03:53:25 +08:00
|
|
|
if (pool->ltp_pause) {
|
2005-03-08 05:02:31 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
|
|
|
return(0);
|
|
|
|
}
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_signal(&pool->ltp_cond);
|
2005-10-28 18:31:21 +08:00
|
|
|
if (pool->ltp_open_count < pool->ltp_active_count + pool->ltp_pending_count
|
2007-05-10 07:25:03 +08:00
|
|
|
&& (pool->ltp_open_count <
|
|
|
|
(pool->ltp_max_count ? pool->ltp_max_count : LDAP_MAXTHR)))
|
2000-06-13 10:42:13 +08:00
|
|
|
{
|
|
|
|
pool->ltp_open_count++;
|
2000-06-21 14:09:45 +08:00
|
|
|
pool->ltp_starting++;
|
2007-05-31 20:47:24 +08:00
|
|
|
if (0 != ldap_pvt_thread_create(
|
|
|
|
&thr, 1, ldap_int_thread_pool_wrapper, pool))
|
|
|
|
{
|
2000-06-13 10:42:13 +08:00
|
|
|
/* couldn't create thread. back out of
|
|
|
|
* ltp_open_count and check for even worse things.
|
|
|
|
*/
|
2007-05-31 20:47:24 +08:00
|
|
|
pool->ltp_starting--;
|
2000-06-13 10:42:13 +08:00
|
|
|
pool->ltp_open_count--;
|
|
|
|
if (pool->ltp_open_count == 0) {
|
2000-06-21 14:09:45 +08:00
|
|
|
/* no open threads at all?!?
|
2000-06-13 10:42:13 +08:00
|
|
|
*/
|
2007-06-11 07:58:38 +08:00
|
|
|
ldap_int_thread_task_t *ptr;
|
2007-05-10 03:34:49 +08:00
|
|
|
|
|
|
|
/* let pool_destroy know there are no more threads */
|
|
|
|
ldap_pvt_thread_cond_signal(&pool->ltp_cond);
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_STAILQ_FOREACH(ptr, &pool->ltp_pending_list, ltt_next.q)
|
|
|
|
if (ptr == task) break;
|
|
|
|
if (ptr == task) {
|
|
|
|
/* no open threads, task not handled, so
|
|
|
|
* back out of ltp_pending_count, free the task,
|
2000-06-13 10:42:13 +08:00
|
|
|
* report the error.
|
|
|
|
*/
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_STAILQ_REMOVE(&pool->ltp_pending_list, task,
|
|
|
|
ldap_int_thread_task_s, ltt_next.q);
|
2007-05-10 03:34:49 +08:00
|
|
|
pool->ltp_pending_count--;
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_FREE(task);
|
2000-06-13 10:42:13 +08:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* there is another open thread, so this
|
2007-06-11 07:58:38 +08:00
|
|
|
* task will be handled eventually.
|
2007-05-12 02:48:13 +08:00
|
|
|
* continue on, we have signalled that
|
2007-06-11 07:58:38 +08:00
|
|
|
* the task is waiting.
|
2000-06-13 10:42:13 +08:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-31 20:47:24 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
2000-06-13 10:42:13 +08:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/* Set max #threads. value <= 0 means max supported #threads (LDAP_MAXTHR) */
|
2000-07-05 03:24:13 +08:00
|
|
|
int
|
2007-07-02 00:44:59 +08:00
|
|
|
ldap_pvt_thread_pool_maxthreads(
|
|
|
|
ldap_pvt_thread_pool_t *tpool,
|
|
|
|
int max_threads )
|
2000-07-05 03:24:13 +08:00
|
|
|
{
|
|
|
|
struct ldap_int_thread_pool_s *pool;
|
|
|
|
|
2007-05-10 07:25:03 +08:00
|
|
|
if (! (0 <= max_threads && max_threads <= LDAP_MAXTHR))
|
|
|
|
max_threads = 0;
|
|
|
|
|
2000-07-05 03:24:13 +08:00
|
|
|
if (tpool == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
pool = *tpool;
|
|
|
|
|
|
|
|
if (pool == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock(&pool->ltp_mutex);
|
|
|
|
pool->ltp_max_count = max_threads;
|
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/* Inspect the pool */
|
2000-06-13 10:42:13 +08:00
|
|
|
int
|
2007-07-02 00:44:59 +08:00
|
|
|
ldap_pvt_thread_pool_query(
|
|
|
|
ldap_pvt_thread_pool_t *tpool,
|
|
|
|
ldap_pvt_thread_pool_param_t param,
|
|
|
|
void *value )
|
2000-06-13 10:42:13 +08:00
|
|
|
{
|
2006-09-15 02:55:02 +08:00
|
|
|
struct ldap_int_thread_pool_s *pool;
|
|
|
|
int count = -1;
|
2000-06-13 10:42:13 +08:00
|
|
|
|
2006-09-15 02:55:02 +08:00
|
|
|
if ( tpool == NULL || value == NULL ) {
|
|
|
|
return -1;
|
|
|
|
}
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
pool = *tpool;
|
|
|
|
|
2006-09-15 02:55:02 +08:00
|
|
|
if ( pool == NULL ) {
|
|
|
|
return 0;
|
|
|
|
}
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock(&pool->ltp_mutex);
|
2006-09-15 02:55:02 +08:00
|
|
|
switch ( param ) {
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_MAX:
|
|
|
|
count = pool->ltp_max_count;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_MAX_PENDING:
|
|
|
|
count = pool->ltp_max_pending;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_OPEN:
|
|
|
|
count = pool->ltp_open_count;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_STARTING:
|
|
|
|
count = pool->ltp_starting;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_ACTIVE:
|
|
|
|
count = pool->ltp_active_count;
|
|
|
|
break;
|
|
|
|
|
2007-10-08 09:15:49 +08:00
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_PAUSING:
|
|
|
|
count = pool->ltp_pause;
|
|
|
|
break;
|
|
|
|
|
2006-09-15 02:55:02 +08:00
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_PENDING:
|
|
|
|
count = pool->ltp_pending_count;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_BACKLOAD:
|
|
|
|
count = pool->ltp_pending_count + pool->ltp_active_count;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_ACTIVE_MAX:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_PENDING_MAX:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_BACKLOAD_MAX:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_STATE: {
|
|
|
|
static struct {
|
|
|
|
char *name;
|
|
|
|
ldap_int_thread_pool_state_t state;
|
|
|
|
} str2state[] = {
|
|
|
|
{ "running", LDAP_INT_THREAD_POOL_RUNNING },
|
|
|
|
{ "finishing", LDAP_INT_THREAD_POOL_FINISHING },
|
|
|
|
{ "stopping", LDAP_INT_THREAD_POOL_STOPPING },
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
2007-05-10 03:53:25 +08:00
|
|
|
if ( pool->ltp_pause ) {
|
|
|
|
*((char **)value) = "pausing";
|
|
|
|
} else {
|
|
|
|
for ( i = 0; str2state[ i ].name != NULL; i++ ) {
|
|
|
|
if ( str2state[ i ].state == pool->ltp_state ) {
|
|
|
|
break;
|
|
|
|
}
|
2006-09-15 02:55:02 +08:00
|
|
|
}
|
2007-05-10 03:53:25 +08:00
|
|
|
*((char **)value) = str2state[ i ].name;
|
2006-09-15 02:55:02 +08:00
|
|
|
}
|
2007-05-10 03:53:25 +08:00
|
|
|
if ( *((char **)value) != NULL ) {
|
2006-09-15 02:55:02 +08:00
|
|
|
count = -2;
|
|
|
|
}
|
|
|
|
} break;
|
2007-06-01 03:47:38 +08:00
|
|
|
|
|
|
|
case LDAP_PVT_THREAD_POOL_PARAM_UNKNOWN:
|
|
|
|
break;
|
2006-09-15 02:55:02 +08:00
|
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_unlock( &pool->ltp_mutex );
|
|
|
|
|
|
|
|
if ( count > -1 ) {
|
|
|
|
*((int *)value) = count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ( count == -1 ? -1 : 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wrapper for ldap_pvt_thread_pool_query(), left around
|
|
|
|
* for backwards compatibility
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_pool_backload ( ldap_pvt_thread_pool_t *tpool )
|
|
|
|
{
|
|
|
|
int rc, count;
|
|
|
|
|
|
|
|
rc = ldap_pvt_thread_pool_query( tpool,
|
|
|
|
LDAP_PVT_THREAD_POOL_PARAM_BACKLOAD, (void *)&count );
|
|
|
|
|
|
|
|
if ( rc == 0 ) {
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
2000-06-13 10:42:13 +08:00
|
|
|
}
|
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/* Destroy the pool after making its threads finish */
|
2000-06-13 10:42:13 +08:00
|
|
|
int
|
|
|
|
ldap_pvt_thread_pool_destroy ( ldap_pvt_thread_pool_t *tpool, int run_pending )
|
|
|
|
{
|
2001-12-31 11:05:56 +08:00
|
|
|
struct ldap_int_thread_pool_s *pool, *pptr;
|
2007-06-11 07:58:38 +08:00
|
|
|
ldap_int_thread_task_t *task;
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
if (tpool == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
pool = *tpool;
|
|
|
|
|
|
|
|
if (pool == NULL) return(-1);
|
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock(&ldap_pvt_thread_pool_mutex);
|
2002-01-03 08:12:46 +08:00
|
|
|
LDAP_STAILQ_FOREACH(pptr, &ldap_int_thread_pool_list, ltp_next)
|
2001-12-31 11:05:56 +08:00
|
|
|
if (pptr == pool) break;
|
|
|
|
if (pptr == pool)
|
2002-01-03 08:12:46 +08:00
|
|
|
LDAP_STAILQ_REMOVE(&ldap_int_thread_pool_list, pool,
|
2001-12-31 11:05:56 +08:00
|
|
|
ldap_int_thread_pool_s, ltp_next);
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&ldap_pvt_thread_pool_mutex);
|
|
|
|
|
2001-12-31 11:05:56 +08:00
|
|
|
if (pool != pptr) return(-1);
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock(&pool->ltp_mutex);
|
|
|
|
pool->ltp_state = run_pending
|
|
|
|
? LDAP_INT_THREAD_POOL_FINISHING
|
|
|
|
: LDAP_INT_THREAD_POOL_STOPPING;
|
|
|
|
|
2007-05-10 03:53:25 +08:00
|
|
|
while (pool->ltp_open_count) {
|
|
|
|
if (!pool->ltp_pause)
|
|
|
|
ldap_pvt_thread_cond_broadcast(&pool->ltp_cond);
|
2006-01-18 09:55:24 +08:00
|
|
|
ldap_pvt_thread_cond_wait(&pool->ltp_cond, &pool->ltp_mutex);
|
|
|
|
}
|
2006-01-25 07:31:56 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
2000-06-13 10:42:13 +08:00
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
while ((task = LDAP_STAILQ_FIRST(&pool->ltp_pending_list)) != NULL)
|
2000-06-13 10:42:13 +08:00
|
|
|
{
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_STAILQ_REMOVE_HEAD(&pool->ltp_pending_list, ltt_next.q);
|
|
|
|
LDAP_FREE(task);
|
2000-06-13 10:42:13 +08:00
|
|
|
}
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
while ((task = LDAP_SLIST_FIRST(&pool->ltp_free_list)) != NULL)
|
2001-12-31 14:46:03 +08:00
|
|
|
{
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_SLIST_REMOVE_HEAD(&pool->ltp_free_list, ltt_next.l);
|
|
|
|
LDAP_FREE(task);
|
2001-12-31 14:46:03 +08:00
|
|
|
}
|
|
|
|
|
2005-03-08 05:02:31 +08:00
|
|
|
ldap_pvt_thread_cond_destroy(&pool->ltp_pcond);
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_destroy(&pool->ltp_cond);
|
|
|
|
ldap_pvt_thread_mutex_destroy(&pool->ltp_mutex);
|
2002-01-04 07:30:45 +08:00
|
|
|
LDAP_FREE(pool);
|
2007-10-19 05:13:43 +08:00
|
|
|
*tpool = NULL;
|
2007-06-01 01:15:54 +08:00
|
|
|
ldap_int_has_thread_pool = 0;
|
2000-06-13 10:42:13 +08:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
/* Thread loop. Accept and handle submitted tasks. */
|
2000-06-13 10:42:13 +08:00
|
|
|
static void *
|
|
|
|
ldap_int_thread_pool_wrapper (
|
2002-03-24 01:24:38 +08:00
|
|
|
void *xpool )
|
2000-06-13 10:42:13 +08:00
|
|
|
{
|
2002-03-24 01:24:38 +08:00
|
|
|
struct ldap_int_thread_pool_s *pool = xpool;
|
2007-06-11 07:58:38 +08:00
|
|
|
ldap_int_thread_task_t *task;
|
|
|
|
ldap_int_thread_userctx_t ctx, *kctx;
|
2007-05-10 06:22:44 +08:00
|
|
|
unsigned i, keyslot, hash;
|
2000-06-13 10:42:13 +08:00
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
assert(pool != NULL);
|
2000-06-13 10:42:13 +08:00
|
|
|
|
2003-03-27 09:39:42 +08:00
|
|
|
for ( i=0; i<MAXKEYS; i++ ) {
|
2007-06-11 07:58:38 +08:00
|
|
|
ctx.ltu_key[i].ltk_key = NULL;
|
2003-03-27 09:39:42 +08:00
|
|
|
}
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
ctx.ltu_id = ldap_pvt_thread_self();
|
|
|
|
TID_HASH(ctx.ltu_id, hash);
|
2003-04-12 12:01:40 +08:00
|
|
|
|
2007-10-25 14:50:43 +08:00
|
|
|
ldap_pvt_thread_key_setdata( ldap_tpool_key, &ctx );
|
2007-10-25 14:48:44 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_lock(&pool->ltp_mutex);
|
|
|
|
|
2007-05-12 02:48:13 +08:00
|
|
|
/* thread_keys[] is read-only when paused */
|
2007-05-10 05:38:28 +08:00
|
|
|
while (pool->ltp_pause)
|
|
|
|
ldap_pvt_thread_cond_wait(&pool->ltp_cond, &pool->ltp_mutex);
|
|
|
|
|
|
|
|
/* find a key slot to give this thread ID and store a
|
|
|
|
* pointer to our keys there; start at the thread ID
|
|
|
|
* itself (mod LDAP_MAXTHR) and look for an empty slot.
|
|
|
|
*/
|
|
|
|
ldap_pvt_thread_mutex_lock(&ldap_pvt_thread_pool_mutex);
|
|
|
|
for (keyslot = hash & (LDAP_MAXTHR-1);
|
2007-06-01 23:24:19 +08:00
|
|
|
(kctx = thread_keys[keyslot].ctx) && kctx != DELETED_THREAD_CTX;
|
2007-05-10 05:38:28 +08:00
|
|
|
keyslot = (keyslot+1) & (LDAP_MAXTHR-1));
|
2007-06-11 07:58:38 +08:00
|
|
|
thread_keys[keyslot].ctx = &ctx;
|
2007-05-10 05:38:28 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&ldap_pvt_thread_pool_mutex);
|
2003-04-12 12:01:40 +08:00
|
|
|
|
2007-05-31 20:47:24 +08:00
|
|
|
pool->ltp_starting--;
|
|
|
|
|
2007-05-10 03:53:25 +08:00
|
|
|
for (;;) {
|
|
|
|
while (pool->ltp_pause)
|
|
|
|
ldap_pvt_thread_cond_wait(&pool->ltp_cond, &pool->ltp_mutex);
|
|
|
|
|
|
|
|
if (pool->ltp_state == LDAP_INT_THREAD_POOL_STOPPING)
|
|
|
|
break;
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
task = LDAP_STAILQ_FIRST(&pool->ltp_pending_list);
|
|
|
|
if (task == NULL) {
|
2000-06-13 10:42:13 +08:00
|
|
|
if (pool->ltp_state == LDAP_INT_THREAD_POOL_FINISHING)
|
|
|
|
break;
|
2007-05-10 03:53:25 +08:00
|
|
|
|
2007-05-10 07:25:03 +08:00
|
|
|
if (pool->ltp_open_count >
|
|
|
|
(pool->ltp_max_count ? pool->ltp_max_count : LDAP_MAXTHR))
|
2000-07-05 03:24:13 +08:00
|
|
|
{
|
|
|
|
/* too many threads running (can happen if the
|
|
|
|
* maximum threads value is set during ongoing
|
|
|
|
* operation using ldap_pvt_thread_pool_maxthreads)
|
|
|
|
* so let this thread die.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
/* we could check an idle timer here, and let the
|
|
|
|
* thread die if it has been inactive for a while.
|
|
|
|
* only die if there are other open threads (i.e.,
|
2000-06-21 14:09:45 +08:00
|
|
|
* always have at least one thread open). the check
|
|
|
|
* should be like this:
|
|
|
|
* if (pool->ltp_open_count > 1 && pool->ltp_starting == 0)
|
2007-05-10 05:38:28 +08:00
|
|
|
* check timer, wait if ltp_pause, leave thread (break;)
|
2006-01-15 22:21:16 +08:00
|
|
|
*
|
|
|
|
* Just use pthread_cond_timedwait if we want to
|
|
|
|
* check idle time.
|
2000-06-13 10:42:13 +08:00
|
|
|
*/
|
|
|
|
|
2007-05-10 03:53:25 +08:00
|
|
|
assert(pool->ltp_state == LDAP_INT_THREAD_POOL_RUNNING);
|
2007-05-10 03:34:49 +08:00
|
|
|
ldap_pvt_thread_cond_wait(&pool->ltp_cond, &pool->ltp_mutex);
|
2000-06-13 10:42:13 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_STAILQ_REMOVE_HEAD(&pool->ltp_pending_list, ltt_next.q);
|
2000-06-13 10:42:13 +08:00
|
|
|
pool->ltp_pending_count--;
|
|
|
|
pool->ltp_active_count++;
|
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
|
|
|
|
2007-06-11 07:58:38 +08:00
|
|
|
task->ltt_start_routine(&ctx, task->ltt_arg);
|
2002-06-01 04:22:44 +08:00
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock(&pool->ltp_mutex);
|
2007-06-11 07:58:38 +08:00
|
|
|
LDAP_SLIST_INSERT_HEAD(&pool->ltp_free_list, task, ltt_next.l);
|
2003-02-17 20:10:41 +08:00
|
|
|
pool->ltp_active_count--;
|
2007-05-10 03:53:25 +08:00
|
|
|
/* let pool_pause know when it is the sole active thread */
|
|
|
|
if (pool->ltp_active_count < 2)
|
|
|
|
ldap_pvt_thread_cond_signal(&pool->ltp_pcond);
|
2000-06-13 10:42:13 +08:00
|
|
|
}
|
|
|
|
|
2007-07-02 00:44:59 +08:00
|
|
|
/* The ltp_mutex lock protects ctx->ltu_key from pool_purgekey()
|
|
|
|
* during this call, since it prevents new pauses. */
|
2007-06-11 07:58:38 +08:00
|
|
|
ldap_pvt_thread_pool_context_reset(&ctx);
|
2003-03-27 09:39:42 +08:00
|
|
|
|
2007-05-10 05:38:28 +08:00
|
|
|
ldap_pvt_thread_mutex_lock(&ldap_pvt_thread_pool_mutex);
|
2007-05-10 06:22:44 +08:00
|
|
|
thread_keys[keyslot].ctx = DELETED_THREAD_CTX;
|
2007-05-10 05:38:28 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&ldap_pvt_thread_pool_mutex);
|
2003-04-12 12:01:40 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
pool->ltp_open_count--;
|
2006-01-15 22:34:44 +08:00
|
|
|
/* let pool_destroy know we're all done */
|
|
|
|
if (pool->ltp_open_count < 1)
|
|
|
|
ldap_pvt_thread_cond_signal(&pool->ltp_cond);
|
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
|
|
|
|
|
|
|
ldap_pvt_thread_exit(NULL);
|
|
|
|
return(NULL);
|
|
|
|
}
|
2002-08-24 13:39:43 +08:00
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/* Pause the pool. Return when all other threads are paused. */
|
2005-03-08 05:02:31 +08:00
|
|
|
int
|
|
|
|
ldap_pvt_thread_pool_pause (
|
|
|
|
ldap_pvt_thread_pool_t *tpool )
|
|
|
|
{
|
|
|
|
struct ldap_int_thread_pool_s *pool;
|
|
|
|
|
|
|
|
if (tpool == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
pool = *tpool;
|
|
|
|
|
|
|
|
if (pool == NULL)
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock(&pool->ltp_mutex);
|
|
|
|
|
|
|
|
/* If someone else has already requested a pause, we have to wait */
|
2007-06-05 06:18:01 +08:00
|
|
|
if (pool->ltp_pause) {
|
2005-03-08 05:02:31 +08:00
|
|
|
pool->ltp_pending_count++;
|
|
|
|
pool->ltp_active_count--;
|
2007-05-10 03:53:25 +08:00
|
|
|
/* let the other pool_pause() know when it can proceed */
|
|
|
|
if (pool->ltp_active_count < 2)
|
|
|
|
ldap_pvt_thread_cond_signal(&pool->ltp_pcond);
|
2007-06-05 06:18:01 +08:00
|
|
|
do {
|
|
|
|
ldap_pvt_thread_cond_wait(&pool->ltp_cond, &pool->ltp_mutex);
|
|
|
|
} while (pool->ltp_pause);
|
2005-03-08 05:02:31 +08:00
|
|
|
pool->ltp_pending_count--;
|
|
|
|
pool->ltp_active_count++;
|
|
|
|
}
|
2007-05-10 03:53:25 +08:00
|
|
|
|
|
|
|
/* Wait for everyone else to pause or finish */
|
|
|
|
pool->ltp_pause = 1;
|
2005-03-08 05:02:31 +08:00
|
|
|
while (pool->ltp_active_count > 1) {
|
|
|
|
ldap_pvt_thread_cond_wait(&pool->ltp_pcond, &pool->ltp_mutex);
|
|
|
|
}
|
2007-05-10 03:53:25 +08:00
|
|
|
|
2005-03-08 05:02:31 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/* End a pause */
|
2005-03-08 05:02:31 +08:00
|
|
|
int
|
|
|
|
ldap_pvt_thread_pool_resume (
|
|
|
|
ldap_pvt_thread_pool_t *tpool )
|
|
|
|
{
|
|
|
|
struct ldap_int_thread_pool_s *pool;
|
|
|
|
|
|
|
|
if (tpool == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
pool = *tpool;
|
|
|
|
|
|
|
|
if (pool == NULL)
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock(&pool->ltp_mutex);
|
2007-05-10 03:53:25 +08:00
|
|
|
pool->ltp_pause = 0;
|
2007-10-18 14:52:54 +08:00
|
|
|
if (pool->ltp_state == LDAP_INT_THREAD_POOL_RUNNING)
|
|
|
|
ldap_pvt_thread_cond_broadcast(&pool->ltp_cond);
|
2005-03-08 05:02:31 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&pool->ltp_mutex);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/*
|
|
|
|
* Get the key's data and optionally free function in the given context.
|
|
|
|
*/
|
2002-08-24 13:39:43 +08:00
|
|
|
int ldap_pvt_thread_pool_getkey(
|
|
|
|
void *xctx,
|
|
|
|
void *key,
|
|
|
|
void **data,
|
|
|
|
ldap_pvt_thread_pool_keyfree_t **kfree )
|
|
|
|
{
|
2006-05-02 08:56:42 +08:00
|
|
|
ldap_int_thread_userctx_t *ctx = xctx;
|
2002-08-24 13:39:43 +08:00
|
|
|
int i;
|
|
|
|
|
2007-05-10 06:59:04 +08:00
|
|
|
if ( !ctx || !key || !data ) return EINVAL;
|
2002-08-24 13:39:43 +08:00
|
|
|
|
2006-05-02 08:56:42 +08:00
|
|
|
for ( i=0; i<MAXKEYS && ctx->ltu_key[i].ltk_key; i++ ) {
|
|
|
|
if ( ctx->ltu_key[i].ltk_key == key ) {
|
|
|
|
*data = ctx->ltu_key[i].ltk_data;
|
|
|
|
if ( kfree ) *kfree = ctx->ltu_key[i].ltk_free;
|
2002-08-24 13:39:43 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
|
2007-05-10 06:59:04 +08:00
|
|
|
static void
|
|
|
|
clear_key_idx( ldap_int_thread_userctx_t *ctx, int i )
|
|
|
|
{
|
2007-05-31 20:08:50 +08:00
|
|
|
for ( ; i < MAXKEYS-1 && ctx->ltu_key[i+1].ltk_key; i++ )
|
|
|
|
ctx->ltu_key[i] = ctx->ltu_key[i+1];
|
2007-05-10 06:59:04 +08:00
|
|
|
ctx->ltu_key[i].ltk_key = NULL;
|
|
|
|
}
|
|
|
|
|
2007-06-01 03:47:38 +08:00
|
|
|
/*
|
|
|
|
* Set or remove data for the key in the given context.
|
|
|
|
* key can be any unique pointer.
|
|
|
|
* kfree() is an optional function to free the data (but not the key):
|
2007-07-02 00:44:59 +08:00
|
|
|
* pool_context_reset() and pool_purgekey() call kfree(key, data),
|
|
|
|
* but pool_setkey() does not. For pool_setkey() it is the caller's
|
|
|
|
* responsibility to free any existing data with the same key.
|
|
|
|
* kfree() must not call functions taking a tpool argument.
|
2007-06-01 03:47:38 +08:00
|
|
|
*/
|
2008-01-08 05:35:03 +08:00
|
|
|
int ldap_pvt_thread_pool_setkey(
|
2002-08-24 13:39:43 +08:00
|
|
|
void *xctx,
|
|
|
|
void *key,
|
|
|
|
void *data,
|
2007-12-30 02:14:54 +08:00
|
|
|
ldap_pvt_thread_pool_keyfree_t *kfree,
|
|
|
|
void **olddatap,
|
|
|
|
ldap_pvt_thread_pool_keyfree_t **oldkfreep )
|
2002-08-24 13:39:43 +08:00
|
|
|
{
|
2006-05-02 08:56:42 +08:00
|
|
|
ldap_int_thread_userctx_t *ctx = xctx;
|
2007-05-10 06:59:04 +08:00
|
|
|
int i, found;
|
2002-08-24 13:39:43 +08:00
|
|
|
|
2003-04-12 12:01:40 +08:00
|
|
|
if ( !ctx || !key ) return EINVAL;
|
2002-08-24 13:39:43 +08:00
|
|
|
|
2007-05-10 06:59:04 +08:00
|
|
|
for ( i=found=0; i<MAXKEYS; i++ ) {
|
|
|
|
if ( ctx->ltu_key[i].ltk_key == key ) {
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
} else if ( !ctx->ltu_key[i].ltk_key ) {
|
|
|
|
break;
|
2002-08-24 13:39:43 +08:00
|
|
|
}
|
|
|
|
}
|
2007-05-10 06:59:04 +08:00
|
|
|
|
2007-12-30 02:14:54 +08:00
|
|
|
if ( olddatap ) {
|
|
|
|
if ( found ) {
|
|
|
|
*olddatap = ctx->ltu_key[i].ltk_data;
|
|
|
|
} else {
|
|
|
|
*olddatap = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( oldkfreep ) {
|
|
|
|
if ( found ) {
|
|
|
|
*oldkfreep = ctx->ltu_key[i].ltk_free;
|
|
|
|
} else {
|
|
|
|
*oldkfreep = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-10 06:59:04 +08:00
|
|
|
if ( data || kfree ) {
|
|
|
|
if ( i>=MAXKEYS )
|
|
|
|
return ENOMEM;
|
|
|
|
ctx->ltu_key[i].ltk_key = key;
|
|
|
|
ctx->ltu_key[i].ltk_data = data;
|
|
|
|
ctx->ltu_key[i].ltk_free = kfree;
|
|
|
|
} else if ( found ) {
|
|
|
|
clear_key_idx( ctx, i );
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2002-08-24 13:39:43 +08:00
|
|
|
}
|
2003-01-24 14:49:13 +08:00
|
|
|
|
2005-04-23 06:27:29 +08:00
|
|
|
/* Free all elements with this key, no matter which thread they're in.
|
|
|
|
* May only be called while the pool is paused.
|
|
|
|
*/
|
|
|
|
void ldap_pvt_thread_pool_purgekey( void *key )
|
|
|
|
{
|
|
|
|
int i, j;
|
2006-05-02 08:56:42 +08:00
|
|
|
ldap_int_thread_userctx_t *ctx;
|
2005-04-23 06:27:29 +08:00
|
|
|
|
2007-05-10 06:59:04 +08:00
|
|
|
assert ( key != NULL );
|
|
|
|
|
2005-04-23 06:27:29 +08:00
|
|
|
for ( i=0; i<LDAP_MAXTHR; i++ ) {
|
2007-05-10 06:22:44 +08:00
|
|
|
ctx = thread_keys[i].ctx;
|
|
|
|
if ( ctx && ctx != DELETED_THREAD_CTX ) {
|
2007-05-10 06:59:04 +08:00
|
|
|
for ( j=0; j<MAXKEYS && ctx->ltu_key[j].ltk_key; j++ ) {
|
2006-05-02 08:56:42 +08:00
|
|
|
if ( ctx->ltu_key[j].ltk_key == key ) {
|
|
|
|
if (ctx->ltu_key[j].ltk_free)
|
|
|
|
ctx->ltu_key[j].ltk_free( ctx->ltu_key[j].ltk_key,
|
|
|
|
ctx->ltu_key[j].ltk_data );
|
2007-05-10 06:59:04 +08:00
|
|
|
clear_key_idx( ctx, j );
|
2005-04-23 06:27:29 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-24 14:49:13 +08:00
|
|
|
/*
|
2007-06-01 03:47:38 +08:00
|
|
|
* Find the context of the current thread.
|
2003-01-24 14:49:13 +08:00
|
|
|
* This is necessary if the caller does not have access to the
|
|
|
|
* thread context handle (for example, a slapd plugin calling
|
2007-01-25 19:53:09 +08:00
|
|
|
* slapi_search_internal()). No doubt it is more efficient
|
2003-01-24 14:49:13 +08:00
|
|
|
* for the application to keep track of the thread context
|
|
|
|
* handles itself.
|
|
|
|
*/
|
2003-04-12 12:01:40 +08:00
|
|
|
void *ldap_pvt_thread_pool_context( )
|
2003-01-24 14:49:13 +08:00
|
|
|
{
|
2007-10-25 14:48:44 +08:00
|
|
|
void *ctx = NULL;
|
2003-01-24 14:49:13 +08:00
|
|
|
|
2007-10-25 14:48:44 +08:00
|
|
|
ldap_pvt_thread_key_getdata( ldap_tpool_key, &ctx );
|
|
|
|
return ctx ? ctx : &ldap_int_main_thrctx;
|
2003-01-24 14:49:13 +08:00
|
|
|
}
|
|
|
|
|
2007-07-02 00:44:59 +08:00
|
|
|
/*
|
|
|
|
* Free the context's keys.
|
|
|
|
* Must not call functions taking a tpool argument (because this
|
|
|
|
* thread already holds ltp_mutex when called from pool_wrapper()).
|
|
|
|
*/
|
2005-08-23 12:12:57 +08:00
|
|
|
void ldap_pvt_thread_pool_context_reset( void *vctx )
|
2005-08-23 11:25:21 +08:00
|
|
|
{
|
2006-05-02 08:56:42 +08:00
|
|
|
ldap_int_thread_userctx_t *ctx = vctx;
|
2005-08-23 11:25:21 +08:00
|
|
|
int i;
|
|
|
|
|
2007-01-25 19:13:15 +08:00
|
|
|
for ( i=MAXKEYS-1; i>=0; i--) {
|
|
|
|
if ( !ctx->ltu_key[i].ltk_key )
|
|
|
|
continue;
|
2006-05-02 08:56:42 +08:00
|
|
|
if ( ctx->ltu_key[i].ltk_free )
|
|
|
|
ctx->ltu_key[i].ltk_free( ctx->ltu_key[i].ltk_key,
|
|
|
|
ctx->ltu_key[i].ltk_data );
|
|
|
|
ctx->ltu_key[i].ltk_key = NULL;
|
2005-08-23 11:25:21 +08:00
|
|
|
}
|
|
|
|
}
|
2006-05-02 08:56:42 +08:00
|
|
|
|
|
|
|
ldap_pvt_thread_t ldap_pvt_thread_pool_tid( void *vctx )
|
|
|
|
{
|
|
|
|
ldap_int_thread_userctx_t *ctx = vctx;
|
|
|
|
|
|
|
|
return ctx->ltu_id;
|
|
|
|
}
|
2003-05-07 10:06:01 +08:00
|
|
|
#endif /* LDAP_THREAD_HAVE_TPOOL */
|