task.c revision 4f39360a7fd9146ba3e907c6f1dbed489e323c19
/*
* Copyright (C) 1998, 1999 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
*/
/*
* Principal Author: Bob Halley
*/
#include <config.h>
#include <isc/assertions.h>
#include <isc/condition.h>
#include "util.h"
#ifdef ISC_TASK_TRACE
task, isc_thread_self())
#else
#define XTRACE(m)
#define XTHREADTRACE(m)
#endif
/***
*** Types.
***/
typedef enum {
} task_state_t;
#define VALID_TASK(t) ((t) != NULL && \
(t)->magic == TASK_MAGIC)
struct isc_task {
/* Not locked. */
unsigned int magic;
/* Locked by task lock. */
unsigned int references;
unsigned int quantum;
unsigned int flags;
/* Locked by task manager lock. */
};
#define TASK_F_DONEOK 0x01
#define TASK_F_SENDOK 0x02
#define TASK_F_SHUTTINGDOWN 0x04
#define VALID_MANAGER(m) ((m) != NULL && \
(m)->magic == TASK_MANAGER_MAGIC)
struct isc_taskmgr {
/* Not locked. */
unsigned int magic;
unsigned int workers;
/* Locked by task manager lock. */
unsigned int default_quantum;
};
#define DEFAULT_DEFAULT_QUANTUM 5
/***
*** Tasks.
***/
static void
XTRACE("free task");
/*
* All tasks have completed and the
* task manager is exiting. Wake up
* any idle worker threads so they
* can exit.
*/
}
}
isc_task_t **taskp)
{
return (ISC_R_NOMEMORY);
"isc_mutex_init() failed");
return (ISC_R_UNEXPECTED);
}
/* XXX Should disallow if task manager is exiting. */
return (ISC_R_SUCCESS);
}
void
task->references++;
}
void
XTRACE("isc_task_detach");
task->references--;
if (free_task)
}
}
XTRACE("sending");
/*
* We're trying hard to hold locks for as short a time as possible.
* We're also trying to hold as few locks as possible. This is why
* some processing is deferred until after a lock is released.
*/
/*
* Note: we require that task->state == task_state_done implies
* (task->flags & TASK_F_SENDOK) == 0.
*/
}
} else {
else
}
if (disallowed)
return (result);
if (was_idle) {
/*
* We need to add this task to the ready queue.
*
* We've waited until now to do it, rather than doing it
* while holding the task lock, because we don't want to
* block while holding the task lock.
*
* We've changed the state to ready, so no one else will
* be trying to add this task to the ready queue. The
* only way to leave the ready state is by executing the
* task. It thus doesn't matter if events are added,
* removed, or shutting_down is started in the interval
* between the time we released the task lock, and the time
* we add the task to the ready queue.
*/
}
XTRACE("sent");
return (ISC_R_SUCCESS);
}
unsigned int
}
unsigned int
{
unsigned int purge_count;
/*
* Purge events matching 'sender' and whose type is >= first and
* <= last. sender == NULL means "any sender".
*
* Purging never changes the state of the task.
*/
purge_count = 0;
event = next_event) {
}
}
event = next_event) {
purge_count++;
}
return (purge_count);
}
else {
if (allowed)
else
}
return (result);
}
else if (allowed &&
} else {
if (allowed)
else
}
return (result);
}
NULL,
arg,
sizeof *event);
return (ISC_R_NOMEMORY);
} else
if (disallowed)
return (result);
}
void
/*
* This routine is very similar to isc_task_send() above.
*/
XTRACE("shutting down");
} else
}
/*
* Note that we post shutdown events LIFO.
*/
}
}
}
if (was_idle && queued_something) {
}
}
void
}
/***
*** Task Manager.
***/
static isc_threadresult_t
#ifdef _WIN32
#endif
XTHREADTRACE("start");
/*
* Again we're trying to hold the lock for as short a time as possible
* and to do as little locking and unlocking as possible.
*
* In both while loops, the appropriate lock must be held before the
* while body starts. Code which acquired the lock at the top of
* the loop would be more readable, but would result in a lot of
* extra locking. Compare:
*
* Straightforward:
*
* LOCK();
* ...
* UNLOCK();
* while (expression) {
* LOCK();
* ...
* UNLOCK();
*
* Unlocked part here...
*
* LOCK();
* ...
* UNLOCK();
* }
*
* Note how if the loop continues we unlock and then immediately lock.
* For N iterations of the loop, this code does 2N+1 locks and 2N+1
* unlocks. Also note that the lock is not held when the while
* condition is tested, which may or may not be important, depending
* on the expression.
*
* As written:
*
* LOCK();
* while (expression) {
* ...
* UNLOCK();
*
* Unlocked part here...
*
* LOCK();
* ...
* }
* UNLOCK();
*
* For N iterations of the loop, this code does N+1 locks and N+1
* unlocks. The while expression is always protected by the lock.
*/
/*
* For reasons similar to those given in the comment in
* isc_task_send() above, it is safe for us to dequeue
* the task while only holding the manager lock, and then
* change the task to running state while only holding the
* task lock.
*/
XTHREADTRACE("wait");
XTHREADTRACE("awake");
}
XTHREADTRACE("working");
unsigned int dispatch_count = 0;
/*
* Note we only unlock the manager lock if we actually
* have a task to do. We must reacquire the manager
* lock before exiting the 'if (task != NULL)' block.
*/
/*
* The task became runnable, but all events
* in the run queue were subsequently purged.
* Put the task to sleep.
*/
XTRACE("ready but empty");
} else
while (!done) {
/*
* Execute the event action.
*/
XTRACE("execute action");
}
/*
* Nothing else to do for this task
* right now. If it is shutting down,
* then it is done, otherwise we just
* put it to sleep.
*/
XTRACE("empty");
XTRACE("done");
if (task->references == 0)
} else
/*
* Our quantum has expired, but
* there is more work to be done.
* We'll requeue it to the ready
* queue later.
*
* We don't check quantum until
* dispatching at least one event,
* so the minimum quantum is one.
*/
XTRACE("quantum");
}
}
if (free_task)
if (requeue) {
/*
* We know we're awake, so we don't have
* to wakeup any sleeping threads if the
* ready queue is empty before we requeue.
*
* A possible optimization if the queue is
* empty is to 'goto' the 'if (task != NULL)'
* block, avoiding the ENQUEUE of the task
* and the subsequent immediate DEQUEUE
* (since it is the only executable task).
* We don't do this because then we'd be
* skipping the exit_requested check. The
* cost of ENQUEUE is low anyway, especially
* when you consider that we'd have to do
* an extra EMPTY check to see if we could
* do the optimization. If the ready queue
* were usually nonempty, the 'optimization'
* might even hurt rather than help.
*/
}
}
}
XTHREADTRACE("exit");
return ((isc_threadresult_t)0);
}
static void
}
{
unsigned int i, started = 0;
return (ISC_R_NOMEMORY);
return (ISC_R_NOMEMORY);
}
"isc_mutex_init() failed");
return (ISC_R_UNEXPECTED);
}
if (default_quantum == 0)
"isc_condition_init() failed");
return (ISC_R_UNEXPECTED);
}
/*
* Start workers.
*/
for (i = 0; i < workers; i++) {
started++;
}
}
if (started == 0) {
return (ISC_R_NOTHREADS);
}
return (ISC_R_SUCCESS);
}
void
unsigned int i;
XTHREADTRACE("isc_taskmgr_destroy");
/*
* Only one non-worker thread may ever call this routine.
* If a worker thread wants to initiate shutdown of the
* task manager, it should ask some non-worker thread to call
* isc_taskmgr_destroy(), e.g. by signalling a condition variable
* that the startup thread is sleeping on.
*/
/*
* Unlike elsewhere, we're going to hold this lock a long time.
* We need to do so, because otherwise the list of tasks could
* change while we were traversing it.
*
* This is also the only function where we will hold both the
* task manager lock and a task lock at the same time.
*/
/*
* Make sure we only get called once.
*/
/*
* Post shutdown event(s) to every task (if they haven't already been
* posted).
*/
} else {
}
}
/*
* Note that we post shutdown events LIFO.
*/
link);
}
}
}
}
/*
* Wake up any sleeping workers. This ensures we get work done if
* there's work left to do, and if there are already no tasks left
* it will cause the workers to see manager->exiting.
*/
/*
* Wait for all the worker threads to exit.
*/
}