1999-11-28 05:38:13 +00:00
|
|
|
/*
|
|
|
|
* David Leonard <d@openbsd.org>, 1999. Public domain.
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <pthread.h>
|
2002-09-16 08:45:36 +00:00
|
|
|
#include "thr_private.h"
|
1999-11-28 05:38:13 +00:00
|
|
|
|
2001-04-10 04:19:21 +00:00
|
|
|
__weak_reference(_pthread_cancel, pthread_cancel);
|
|
|
|
__weak_reference(_pthread_setcancelstate, pthread_setcancelstate);
|
|
|
|
__weak_reference(_pthread_setcanceltype, pthread_setcanceltype);
|
|
|
|
__weak_reference(_pthread_testcancel, pthread_testcancel);
|
2001-01-24 13:03:38 +00:00
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
static int checkcancel(struct pthread *curthread);
|
|
|
|
static void testcancel(struct pthread *curthread);
|
|
|
|
static void finish_cancellation(void *arg);
|
|
|
|
|
1999-11-28 05:38:13 +00:00
|
|
|
int
|
2001-01-24 13:03:38 +00:00
|
|
|
_pthread_cancel(pthread_t pthread)
|
1999-11-28 05:38:13 +00:00
|
|
|
{
|
2003-04-18 05:04:16 +00:00
|
|
|
struct pthread *curthread = _get_curthread();
|
1999-11-28 05:38:13 +00:00
|
|
|
int ret;
|
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
if ((ret = _thr_ref_add(curthread, pthread, /*include dead*/0)) == 0) {
|
|
|
|
/*
|
|
|
|
* Take the scheduling lock while we change the cancel flags.
|
|
|
|
*/
|
|
|
|
THR_SCHED_LOCK(curthread, pthread);
|
1999-11-28 05:38:13 +00:00
|
|
|
|
1999-12-17 00:57:54 +00:00
|
|
|
if (((pthread->cancelflags & PTHREAD_CANCEL_DISABLE) != 0) ||
|
2003-04-18 05:04:16 +00:00
|
|
|
(((pthread->cancelflags & THR_AT_CANCEL_POINT) == 0) &&
|
|
|
|
((pthread->cancelflags & PTHREAD_CANCEL_ASYNCHRONOUS) == 0)))
|
1999-12-17 00:57:54 +00:00
|
|
|
/* Just mark it for cancellation: */
|
2003-04-18 05:04:16 +00:00
|
|
|
pthread->cancelflags |= THR_CANCELLING;
|
1999-12-17 00:57:54 +00:00
|
|
|
else {
|
|
|
|
/*
|
|
|
|
* Check if we need to kick it back into the
|
|
|
|
* run queue:
|
|
|
|
*/
|
1999-11-28 05:38:13 +00:00
|
|
|
switch (pthread->state) {
|
|
|
|
case PS_RUNNING:
|
|
|
|
/* No need to resume: */
|
2003-04-18 05:04:16 +00:00
|
|
|
pthread->cancelflags |= THR_CANCELLING;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PS_LOCKWAIT:
|
|
|
|
/*
|
|
|
|
* These can't be removed from the queue.
|
|
|
|
* Just mark it as cancelling and tell it
|
|
|
|
* to yield once it leaves the critical
|
|
|
|
* region.
|
|
|
|
*/
|
|
|
|
pthread->cancelflags |= THR_CANCELLING;
|
|
|
|
pthread->critical_yield = 1;
|
1999-11-28 05:38:13 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PS_SLEEP_WAIT:
|
2003-02-17 10:05:18 +00:00
|
|
|
case PS_SIGSUSPEND:
|
|
|
|
case PS_SIGWAIT:
|
1999-11-28 05:38:13 +00:00
|
|
|
/* Interrupt and resume: */
|
|
|
|
pthread->interrupted = 1;
|
2003-04-18 05:04:16 +00:00
|
|
|
pthread->cancelflags |= THR_CANCELLING;
|
|
|
|
_thr_setrunnable_unlocked(pthread);
|
1999-11-28 05:38:13 +00:00
|
|
|
break;
|
|
|
|
|
2001-05-20 23:08:33 +00:00
|
|
|
case PS_JOIN:
|
2003-04-18 05:04:16 +00:00
|
|
|
pthread->cancelflags |= THR_CANCELLING;
|
2001-08-16 06:31:32 +00:00
|
|
|
break;
|
|
|
|
|
2000-06-14 17:17:41 +00:00
|
|
|
case PS_SUSPENDED:
|
1999-11-28 05:38:13 +00:00
|
|
|
case PS_MUTEX_WAIT:
|
|
|
|
case PS_COND_WAIT:
|
|
|
|
/*
|
|
|
|
* Threads in these states may be in queues.
|
|
|
|
* In order to preserve queue integrity, the
|
|
|
|
* cancelled thread must remove itself from the
|
|
|
|
* queue. Mark the thread as interrupted and
|
|
|
|
* needing cancellation, and set the state to
|
|
|
|
* running. When the thread resumes, it will
|
2000-01-19 07:04:50 +00:00
|
|
|
* remove itself from the queue and call the
|
|
|
|
* cancellation completion routine.
|
1999-11-28 05:38:13 +00:00
|
|
|
*/
|
|
|
|
pthread->interrupted = 1;
|
2003-04-18 05:04:16 +00:00
|
|
|
pthread->cancelflags |= THR_CANCEL_NEEDED;
|
|
|
|
_thr_setrunnable_unlocked(pthread);
|
2000-01-19 07:04:50 +00:00
|
|
|
pthread->continuation = finish_cancellation;
|
1999-11-28 05:38:13 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PS_DEAD:
|
|
|
|
case PS_DEADLOCK:
|
|
|
|
case PS_STATE_MAX:
|
|
|
|
/* Ignore - only here to silence -Wall: */
|
|
|
|
break;
|
1999-12-17 00:57:54 +00:00
|
|
|
}
|
2003-04-18 05:04:16 +00:00
|
|
|
if ((pthread->blocked != 0) &&
|
|
|
|
((pthread->cancelflags & THR_AT_CANCEL_POINT) != 0))
|
|
|
|
kse_thr_interrupt(&pthread->tmbx);
|
1999-11-28 05:38:13 +00:00
|
|
|
}
|
1999-12-17 00:57:54 +00:00
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
/*
|
|
|
|
* Release the thread's scheduling lock and remove the
|
|
|
|
* reference:
|
|
|
|
*/
|
|
|
|
THR_SCHED_UNLOCK(curthread, pthread);
|
|
|
|
_thr_ref_delete(curthread, pthread);
|
1999-11-28 05:38:13 +00:00
|
|
|
}
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-01-24 13:03:38 +00:00
|
|
|
_pthread_setcancelstate(int state, int *oldstate)
|
1999-11-28 05:38:13 +00:00
|
|
|
{
|
2001-01-24 13:03:38 +00:00
|
|
|
struct pthread *curthread = _get_curthread();
|
1999-11-28 05:38:13 +00:00
|
|
|
int ostate;
|
|
|
|
int ret;
|
2003-04-18 05:04:16 +00:00
|
|
|
int need_exit = 0;
|
|
|
|
|
|
|
|
/* Take the scheduling lock while fiddling with the thread's state: */
|
|
|
|
THR_SCHED_LOCK(curthread, curthread);
|
1999-11-28 05:38:13 +00:00
|
|
|
|
2001-01-24 13:03:38 +00:00
|
|
|
ostate = curthread->cancelflags & PTHREAD_CANCEL_DISABLE;
|
1999-11-28 05:38:13 +00:00
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case PTHREAD_CANCEL_ENABLE:
|
|
|
|
if (oldstate != NULL)
|
|
|
|
*oldstate = ostate;
|
2001-01-24 13:03:38 +00:00
|
|
|
curthread->cancelflags &= ~PTHREAD_CANCEL_DISABLE;
|
|
|
|
if ((curthread->cancelflags & PTHREAD_CANCEL_ASYNCHRONOUS) != 0)
|
2003-04-18 05:04:16 +00:00
|
|
|
need_exit = checkcancel(curthread);
|
1999-11-28 05:38:13 +00:00
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
case PTHREAD_CANCEL_DISABLE:
|
|
|
|
if (oldstate != NULL)
|
|
|
|
*oldstate = ostate;
|
2001-01-24 13:03:38 +00:00
|
|
|
curthread->cancelflags |= PTHREAD_CANCEL_DISABLE;
|
1999-11-28 05:38:13 +00:00
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = EINVAL;
|
|
|
|
}
|
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
THR_SCHED_UNLOCK(curthread, curthread);
|
|
|
|
if (need_exit != 0) {
|
|
|
|
_thr_exit_cleanup();
|
|
|
|
pthread_exit(PTHREAD_CANCELED);
|
|
|
|
PANIC("cancel");
|
|
|
|
}
|
1999-11-28 05:38:13 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-01-24 13:03:38 +00:00
|
|
|
_pthread_setcanceltype(int type, int *oldtype)
|
1999-11-28 05:38:13 +00:00
|
|
|
{
|
2001-01-24 13:03:38 +00:00
|
|
|
struct pthread *curthread = _get_curthread();
|
1999-11-28 05:38:13 +00:00
|
|
|
int otype;
|
|
|
|
int ret;
|
2003-04-18 05:04:16 +00:00
|
|
|
int need_exit = 0;
|
|
|
|
|
|
|
|
/* Take the scheduling lock while fiddling with the state: */
|
|
|
|
THR_SCHED_LOCK(curthread, curthread);
|
1999-11-28 05:38:13 +00:00
|
|
|
|
2001-01-24 13:03:38 +00:00
|
|
|
otype = curthread->cancelflags & PTHREAD_CANCEL_ASYNCHRONOUS;
|
1999-11-28 05:38:13 +00:00
|
|
|
switch (type) {
|
|
|
|
case PTHREAD_CANCEL_ASYNCHRONOUS:
|
|
|
|
if (oldtype != NULL)
|
|
|
|
*oldtype = otype;
|
2001-01-24 13:03:38 +00:00
|
|
|
curthread->cancelflags |= PTHREAD_CANCEL_ASYNCHRONOUS;
|
2003-04-18 05:04:16 +00:00
|
|
|
need_exit = checkcancel(curthread);
|
1999-11-28 05:38:13 +00:00
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
case PTHREAD_CANCEL_DEFERRED:
|
|
|
|
if (oldtype != NULL)
|
|
|
|
*oldtype = otype;
|
2001-01-24 13:03:38 +00:00
|
|
|
curthread->cancelflags &= ~PTHREAD_CANCEL_ASYNCHRONOUS;
|
1999-11-28 05:38:13 +00:00
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = EINVAL;
|
|
|
|
}
|
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
THR_SCHED_UNLOCK(curthread, curthread);
|
|
|
|
if (need_exit != 0) {
|
|
|
|
_thr_exit_cleanup();
|
|
|
|
pthread_exit(PTHREAD_CANCELED);
|
|
|
|
PANIC("cancel");
|
|
|
|
}
|
1999-11-28 05:38:13 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
static int
|
|
|
|
checkcancel(struct pthread *curthread)
|
1999-11-28 05:38:13 +00:00
|
|
|
{
|
2001-01-24 13:03:38 +00:00
|
|
|
if (((curthread->cancelflags & PTHREAD_CANCEL_DISABLE) == 0) &&
|
2003-04-18 05:04:16 +00:00
|
|
|
((curthread->cancelflags & THR_CANCELLING) != 0)) {
|
1999-11-28 05:38:13 +00:00
|
|
|
/*
|
|
|
|
* It is possible for this thread to be swapped out
|
|
|
|
* while performing cancellation; do not allow it
|
|
|
|
* to be cancelled again.
|
|
|
|
*/
|
2003-04-18 05:04:16 +00:00
|
|
|
curthread->cancelflags &= ~THR_CANCELLING;
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
testcancel(struct pthread *curthread)
|
|
|
|
{
|
|
|
|
/* Take the scheduling lock while fiddling with the state: */
|
|
|
|
|
|
|
|
if (checkcancel(curthread) != 0) {
|
|
|
|
/* Unlock before exiting: */
|
|
|
|
THR_SCHED_UNLOCK(curthread, curthread);
|
|
|
|
|
|
|
|
_thr_exit_cleanup();
|
1999-11-28 05:38:13 +00:00
|
|
|
pthread_exit(PTHREAD_CANCELED);
|
|
|
|
PANIC("cancel");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-04-18 05:04:16 +00:00
|
|
|
_pthread_testcancel(void)
|
1999-11-28 05:38:13 +00:00
|
|
|
{
|
2001-01-24 13:03:38 +00:00
|
|
|
struct pthread *curthread = _get_curthread();
|
|
|
|
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_LOCK(curthread, curthread);
|
2003-04-18 05:04:16 +00:00
|
|
|
testcancel(curthread);
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_UNLOCK(curthread, curthread);
|
1999-11-28 05:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-04-18 05:04:16 +00:00
|
|
|
_thr_enter_cancellation_point(struct pthread *thread)
|
1999-11-28 05:38:13 +00:00
|
|
|
{
|
2003-04-18 05:04:16 +00:00
|
|
|
/* Look for a cancellation before we block: */
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_LOCK(thread, thread);
|
2003-04-18 05:04:16 +00:00
|
|
|
testcancel(thread);
|
|
|
|
thread->cancelflags |= THR_AT_CANCEL_POINT;
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_UNLOCK(thread, thread);
|
2003-04-18 05:04:16 +00:00
|
|
|
}
|
2001-01-24 13:03:38 +00:00
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
void
|
|
|
|
_thr_leave_cancellation_point(struct pthread *thread)
|
|
|
|
{
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_LOCK(thread, thread);
|
2003-04-18 05:04:16 +00:00
|
|
|
thread->cancelflags &= ~THR_AT_CANCEL_POINT;
|
1999-11-28 05:38:13 +00:00
|
|
|
/* Look for a cancellation after we unblock: */
|
2003-04-18 05:04:16 +00:00
|
|
|
testcancel(thread);
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_UNLOCK(thread, thread);
|
1999-11-28 05:38:13 +00:00
|
|
|
}
|
2000-01-19 07:04:50 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
finish_cancellation(void *arg)
|
|
|
|
{
|
2001-01-24 13:03:38 +00:00
|
|
|
struct pthread *curthread = _get_curthread();
|
|
|
|
|
|
|
|
curthread->continuation = NULL;
|
|
|
|
curthread->interrupted = 0;
|
2000-01-19 07:04:50 +00:00
|
|
|
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_LOCK(curthread, curthread);
|
2003-04-18 05:04:16 +00:00
|
|
|
if ((curthread->cancelflags & THR_CANCEL_NEEDED) != 0) {
|
|
|
|
curthread->cancelflags &= ~THR_CANCEL_NEEDED;
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_UNLOCK(curthread, curthread);
|
2003-04-18 05:04:16 +00:00
|
|
|
_thr_exit_cleanup();
|
2000-01-19 07:04:50 +00:00
|
|
|
pthread_exit(PTHREAD_CANCELED);
|
|
|
|
}
|
2003-04-28 23:56:12 +00:00
|
|
|
THR_SCHED_UNLOCK(curthread, curthread);
|
2000-01-19 07:04:50 +00:00
|
|
|
}
|