1 /* 2 * Copyright (c) 2005, David Xu <davidxu@freebsd.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice unmodified, this list of conditions, and the following 10 * disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 29 #include "namespace.h" 30 #include <sys/param.h> 31 #include <sys/types.h> 32 #include <sys/signalvar.h> 33 #include <signal.h> 34 #include <errno.h> 35 #include <string.h> 36 #include <pthread.h> 37 #include "un-namespace.h" 38 #include "libc_private.h" 39 40 #include "thr_private.h" 41 42 /* #define DEBUG_SIGNAL */ 43 #ifdef DEBUG_SIGNAL 44 #define DBG_MSG stdout_debug 45 #else 46 #define DBG_MSG(x...) 47 #endif 48 49 struct usigaction { 50 struct sigaction sigact; 51 struct urwlock lock; 52 }; 53 54 static struct usigaction _thr_sigact[_SIG_MAXSIG]; 55 56 static void thr_sighandler(int, siginfo_t *, void *); 57 static void handle_signal(struct sigaction *, int, siginfo_t *, ucontext_t *); 58 static void check_deferred_signal(struct pthread *); 59 static void check_suspend(struct pthread *); 60 static void check_cancel(struct pthread *curthread, ucontext_t *ucp); 61 62 int ___pause(void); 63 int _raise(int); 64 int __sigtimedwait(const sigset_t *set, siginfo_t *info, 65 const struct timespec * timeout); 66 int _sigtimedwait(const sigset_t *set, siginfo_t *info, 67 const struct timespec * timeout); 68 int __sigwaitinfo(const sigset_t *set, siginfo_t *info); 69 int _sigwaitinfo(const sigset_t *set, siginfo_t *info); 70 int ___sigwait(const sigset_t *set, int *sig); 71 int _sigwait(const sigset_t *set, int *sig); 72 int __sigsuspend(const sigset_t *sigmask); 73 int _sigaction(int, const struct sigaction *, struct sigaction *); 74 int _setcontext(const ucontext_t *); 75 int _swapcontext(ucontext_t *, const ucontext_t *); 76 77 static const sigset_t _thr_deferset={{ 78 0xffffffff & ~(_SIG_BIT(SIGBUS)|_SIG_BIT(SIGILL)|_SIG_BIT(SIGFPE)| 79 _SIG_BIT(SIGSEGV)|_SIG_BIT(SIGTRAP)|_SIG_BIT(SIGSYS)), 80 0xffffffff, 81 0xffffffff, 82 0xffffffff}}; 83 84 static const sigset_t _thr_maskset={{ 85 0xffffffff, 86 0xffffffff, 87 0xffffffff, 88 0xffffffff}}; 89 90 void 91 _thr_signal_block(struct pthread *curthread) 92 { 93 94 if (curthread->sigblock > 0) { 95 curthread->sigblock++; 96 return; 97 } 98 __sys_sigprocmask(SIG_BLOCK, &_thr_maskset, &curthread->sigmask); 99 curthread->sigblock++; 100 } 101 102 void 103 _thr_signal_unblock(struct pthread *curthread) 104 { 105 if (--curthread->sigblock == 0) 106 __sys_sigprocmask(SIG_SETMASK, &curthread->sigmask, NULL); 107 } 108 109 int 110 _thr_send_sig(struct pthread *thread, int sig) 111 { 112 return thr_kill(thread->tid, sig); 113 } 114 115 static inline void 116 remove_thr_signals(sigset_t *set) 117 { 118 if (SIGISMEMBER(*set, SIGCANCEL)) 119 SIGDELSET(*set, SIGCANCEL); 120 } 121 122 static const sigset_t * 123 thr_remove_thr_signals(const sigset_t *set, sigset_t *newset) 124 { 125 *newset = *set; 126 remove_thr_signals(newset); 127 return (newset); 128 } 129 130 static void 131 sigcancel_handler(int sig __unused, 132 siginfo_t *info __unused, ucontext_t *ucp) 133 { 134 struct pthread *curthread = _get_curthread(); 135 int err; 136 137 if (THR_IN_CRITICAL(curthread)) 138 return; 139 err = errno; 140 check_suspend(curthread); 141 check_cancel(curthread, ucp); 142 errno = err; 143 } 144 145 typedef void (*ohandler)(int sig, int code, 146 struct sigcontext *scp, char *addr, __sighandler_t *catcher); 147 148 /* 149 * The signal handler wrapper is entered with all signal masked. 150 */ 151 static void 152 thr_sighandler(int sig, siginfo_t *info, void *_ucp) 153 { 154 struct pthread *curthread = _get_curthread(); 155 ucontext_t *ucp = _ucp; 156 struct sigaction act; 157 int err; 158 159 err = errno; 160 _thr_rwl_rdlock(&_thr_sigact[sig-1].lock); 161 act = _thr_sigact[sig-1].sigact; 162 _thr_rwl_unlock(&_thr_sigact[sig-1].lock); 163 errno = err; 164 165 /* 166 * if a thread is in critical region, for example it holds low level locks, 167 * try to defer the signal processing, however if the signal is synchronous 168 * signal, it means a bad thing has happened, this is a programming error, 169 * resuming fault point can not help anything (normally causes deadloop), 170 * so here we let user code handle it immediately. 171 */ 172 if (THR_IN_CRITICAL(curthread) && SIGISMEMBER(_thr_deferset, sig)) { 173 memcpy(&curthread->deferred_sigact, &act, sizeof(struct sigaction)); 174 memcpy(&curthread->deferred_siginfo, info, sizeof(siginfo_t)); 175 curthread->deferred_sigmask = ucp->uc_sigmask; 176 /* mask all signals, we will restore it later. */ 177 ucp->uc_sigmask = _thr_deferset; 178 return; 179 } 180 181 handle_signal(&act, sig, info, ucp); 182 } 183 184 static void 185 handle_signal(struct sigaction *actp, int sig, siginfo_t *info, ucontext_t *ucp) 186 { 187 struct pthread *curthread = _get_curthread(); 188 ucontext_t uc2; 189 __siginfohandler_t *sigfunc; 190 int cancel_point; 191 int cancel_async; 192 int cancel_enable; 193 int in_sigsuspend; 194 int err; 195 196 /* add previous level mask */ 197 SIGSETOR(actp->sa_mask, ucp->uc_sigmask); 198 199 /* add this signal's mask */ 200 if (!(actp->sa_flags & SA_NODEFER)) 201 SIGADDSET(actp->sa_mask, sig); 202 203 in_sigsuspend = curthread->in_sigsuspend; 204 curthread->in_sigsuspend = 0; 205 206 /* 207 * if thread is in deferred cancellation mode, disable cancellation 208 * in signal handler. 209 * if user signal handler calls a cancellation point function, e.g, 210 * it calls write() to write data to file, because write() is a 211 * cancellation point, the thread is immediately cancelled if 212 * cancellation is pending, to avoid this problem while thread is in 213 * deferring mode, cancellation is temporarily disabled. 214 */ 215 cancel_point = curthread->cancel_point; 216 cancel_async = curthread->cancel_async; 217 cancel_enable = curthread->cancel_enable; 218 curthread->cancel_point = 0; 219 if (!cancel_async) 220 curthread->cancel_enable = 0; 221 222 /* restore correct mask before calling user handler */ 223 __sys_sigprocmask(SIG_SETMASK, &actp->sa_mask, NULL); 224 225 sigfunc = actp->sa_sigaction; 226 227 /* 228 * We have already reset cancellation point flags, so if user's code 229 * longjmp()s out of its signal handler, wish its jmpbuf was set 230 * outside of a cancellation point, in most cases, this would be 231 * true. however, ther is no way to save cancel_enable in jmpbuf, 232 * so after setjmps() returns once more, the user code may need to 233 * re-set cancel_enable flag by calling pthread_setcancelstate(). 234 */ 235 if ((actp->sa_flags & SA_SIGINFO) != 0) 236 (*(sigfunc))(sig, info, ucp); 237 else { 238 ((ohandler)(*sigfunc))( 239 sig, info->si_code, (struct sigcontext *)ucp, 240 info->si_addr, (__sighandler_t *)sigfunc); 241 } 242 err = errno; 243 244 curthread->in_sigsuspend = in_sigsuspend; 245 curthread->cancel_point = cancel_point; 246 curthread->cancel_enable = cancel_enable; 247 248 memcpy(&uc2, ucp, sizeof(uc2)); 249 SIGDELSET(uc2.uc_sigmask, SIGCANCEL); 250 251 /* reschedule cancellation */ 252 check_cancel(curthread, &uc2); 253 errno = err; 254 __sys_sigreturn(&uc2); 255 } 256 257 void 258 _thr_ast(struct pthread *curthread) 259 { 260 261 if (!THR_IN_CRITICAL(curthread)) { 262 check_deferred_signal(curthread); 263 check_suspend(curthread); 264 check_cancel(curthread, NULL); 265 } 266 } 267 268 /* reschedule cancellation */ 269 static void 270 check_cancel(struct pthread *curthread, ucontext_t *ucp) 271 { 272 273 if (__predict_true(!curthread->cancel_pending || 274 !curthread->cancel_enable || curthread->no_cancel)) 275 return; 276 277 /* 278 * Otherwise, we are in defer mode, and we are at 279 * cancel point, tell kernel to not block the current 280 * thread on next cancelable system call. 281 * 282 * There are three cases we should call thr_wake() to 283 * turn on TDP_WAKEUP or send SIGCANCEL in kernel: 284 * 1) we are going to call a cancelable system call, 285 * non-zero cancel_point means we are already in 286 * cancelable state, next system call is cancelable. 287 * 2) because _thr_ast() may be called by 288 * THR_CRITICAL_LEAVE() which is used by rtld rwlock 289 * and any libthr internal locks, when rtld rwlock 290 * is used, it is mostly caused my an unresolved PLT. 291 * those routines may clear the TDP_WAKEUP flag by 292 * invoking some system calls, in those cases, we 293 * also should reenable the flag. 294 * 3) thread is in sigsuspend(), and the syscall insists 295 * on getting a signal before it agrees to return. 296 */ 297 if (curthread->cancel_point) { 298 if (curthread->in_sigsuspend && ucp) { 299 SIGADDSET(ucp->uc_sigmask, SIGCANCEL); 300 curthread->unblock_sigcancel = 1; 301 _thr_send_sig(curthread, SIGCANCEL); 302 } else 303 thr_wake(curthread->tid); 304 } else if (curthread->cancel_async) { 305 /* 306 * asynchronous cancellation mode, act upon 307 * immediately. 308 */ 309 _pthread_exit_mask(PTHREAD_CANCELED, 310 ucp? &ucp->uc_sigmask : NULL); 311 } 312 } 313 314 static void 315 check_deferred_signal(struct pthread *curthread) 316 { 317 ucontext_t uc; 318 struct sigaction act; 319 siginfo_t info; 320 321 if (__predict_true(curthread->deferred_siginfo.si_signo == 0)) 322 return; 323 getcontext(&uc); 324 if (curthread->deferred_siginfo.si_signo != 0) { 325 act = curthread->deferred_sigact; 326 uc.uc_sigmask = curthread->deferred_sigmask; 327 memcpy(&info, &curthread->deferred_siginfo, sizeof(siginfo_t)); 328 /* remove signal */ 329 curthread->deferred_siginfo.si_signo = 0; 330 if (act.sa_flags & SA_RESETHAND) { 331 struct sigaction tact; 332 333 tact = act; 334 tact.sa_handler = SIG_DFL; 335 _sigaction(info.si_signo, &tact, NULL); 336 } 337 handle_signal(&act, info.si_signo, &info, &uc); 338 } 339 } 340 341 static void 342 check_suspend(struct pthread *curthread) 343 { 344 uint32_t cycle; 345 346 if (__predict_true((curthread->flags & 347 (THR_FLAGS_NEED_SUSPEND | THR_FLAGS_SUSPENDED)) 348 != THR_FLAGS_NEED_SUSPEND)) 349 return; 350 351 if (curthread->force_exit) 352 return; 353 354 /* 355 * Blocks SIGCANCEL which other threads must send. 356 */ 357 _thr_signal_block(curthread); 358 359 /* 360 * Increase critical_count, here we don't use THR_LOCK/UNLOCK 361 * because we are leaf code, we don't want to recursively call 362 * ourself. 363 */ 364 curthread->critical_count++; 365 THR_UMUTEX_LOCK(curthread, &(curthread)->lock); 366 while ((curthread->flags & (THR_FLAGS_NEED_SUSPEND | 367 THR_FLAGS_SUSPENDED)) == THR_FLAGS_NEED_SUSPEND) { 368 curthread->cycle++; 369 cycle = curthread->cycle; 370 371 /* Wake the thread suspending us. */ 372 _thr_umtx_wake(&curthread->cycle, INT_MAX, 0); 373 374 /* 375 * if we are from pthread_exit, we don't want to 376 * suspend, just go and die. 377 */ 378 if (curthread->state == PS_DEAD) 379 break; 380 curthread->flags |= THR_FLAGS_SUSPENDED; 381 THR_UMUTEX_UNLOCK(curthread, &(curthread)->lock); 382 _thr_umtx_wait_uint(&curthread->cycle, cycle, NULL, 0); 383 THR_UMUTEX_LOCK(curthread, &(curthread)->lock); 384 curthread->flags &= ~THR_FLAGS_SUSPENDED; 385 } 386 THR_UMUTEX_UNLOCK(curthread, &(curthread)->lock); 387 curthread->critical_count--; 388 389 _thr_signal_unblock(curthread); 390 } 391 392 void 393 _thr_signal_init(void) 394 { 395 struct sigaction act; 396 397 /* Install SIGCANCEL handler. */ 398 SIGFILLSET(act.sa_mask); 399 act.sa_flags = SA_SIGINFO; 400 act.sa_sigaction = (__siginfohandler_t *)&sigcancel_handler; 401 __sys_sigaction(SIGCANCEL, &act, NULL); 402 403 /* Unblock SIGCANCEL */ 404 SIGEMPTYSET(act.sa_mask); 405 SIGADDSET(act.sa_mask, SIGCANCEL); 406 __sys_sigprocmask(SIG_UNBLOCK, &act.sa_mask, NULL); 407 } 408 409 void 410 _thr_sigact_unload(struct dl_phdr_info *phdr_info) 411 { 412 #if 0 413 struct pthread *curthread = _get_curthread(); 414 struct urwlock *rwlp; 415 struct sigaction *actp; 416 struct sigaction kact; 417 void (*handler)(int); 418 int sig; 419 420 _thr_signal_block(curthread); 421 for (sig = 1; sig <= _SIG_MAXSIG; sig++) { 422 actp = &_thr_sigact[sig-1].sigact; 423 retry: 424 handler = actp->sa_handler; 425 if (handler != SIG_DFL && handler != SIG_IGN && 426 __elf_phdr_match_addr(phdr_info, handler)) { 427 rwlp = &_thr_sigact[sig-1].lock; 428 _thr_rwl_wrlock(rwlp); 429 if (handler != actp->sa_handler) { 430 _thr_rwl_unlock(rwlp); 431 goto retry; 432 } 433 actp->sa_handler = SIG_DFL; 434 actp->sa_flags = SA_SIGINFO; 435 SIGEMPTYSET(actp->sa_mask); 436 if (__sys_sigaction(sig, NULL, &kact) == 0 && 437 kact.sa_handler != SIG_DFL && 438 kact.sa_handler != SIG_IGN) 439 __sys_sigaction(sig, actp, NULL); 440 _thr_rwl_unlock(rwlp); 441 } 442 } 443 _thr_signal_unblock(curthread); 444 #endif 445 } 446 447 void 448 _thr_signal_prefork(void) 449 { 450 int i; 451 452 for (i = 1; i < _SIG_MAXSIG; ++i) 453 _thr_rwl_rdlock(&_thr_sigact[i-1].lock); 454 } 455 456 void 457 _thr_signal_postfork(void) 458 { 459 int i; 460 461 for (i = 1; i < _SIG_MAXSIG; ++i) 462 _thr_rwl_unlock(&_thr_sigact[i-1].lock); 463 } 464 465 void 466 _thr_signal_postfork_child(void) 467 { 468 int i; 469 470 for (i = 1; i < _SIG_MAXSIG; ++i) 471 bzero(&_thr_sigact[i-1].lock, sizeof(struct urwlock)); 472 } 473 474 void 475 _thr_signal_deinit(void) 476 { 477 } 478 479 __weak_reference(___pause, pause); 480 481 int 482 ___pause(void) 483 { 484 sigset_t oset; 485 486 if (_sigprocmask(SIG_BLOCK, NULL, &oset) == -1) 487 return (-1); 488 return (__sigsuspend(&oset)); 489 } 490 491 __weak_reference(_raise, raise); 492 493 int 494 _raise(int sig) 495 { 496 return _thr_send_sig(_get_curthread(), sig); 497 } 498 499 __weak_reference(_sigaction, sigaction); 500 501 int 502 _sigaction(int sig, const struct sigaction * act, struct sigaction * oact) 503 { 504 struct sigaction newact, oldact, oldact2; 505 sigset_t oldset; 506 int ret = 0, err = 0; 507 508 if (!_SIG_VALID(sig) || sig == SIGCANCEL) { 509 errno = EINVAL; 510 return (-1); 511 } 512 513 if (act) 514 newact = *act; 515 516 __sys_sigprocmask(SIG_SETMASK, &_thr_maskset, &oldset); 517 _thr_rwl_wrlock(&_thr_sigact[sig-1].lock); 518 519 if (act != NULL) { 520 oldact2 = _thr_sigact[sig-1].sigact; 521 522 /* 523 * if a new sig handler is SIG_DFL or SIG_IGN, 524 * don't remove old handler from _thr_sigact[], 525 * so deferred signals still can use the handlers, 526 * multiple threads invoking sigaction itself is 527 * a race condition, so it is not a problem. 528 */ 529 if (newact.sa_handler != SIG_DFL && 530 newact.sa_handler != SIG_IGN) { 531 _thr_sigact[sig-1].sigact = newact; 532 remove_thr_signals( 533 &_thr_sigact[sig-1].sigact.sa_mask); 534 newact.sa_flags &= ~SA_NODEFER; 535 newact.sa_flags |= SA_SIGINFO; 536 newact.sa_sigaction = thr_sighandler; 537 newact.sa_mask = _thr_maskset; /* mask all signals */ 538 } 539 if ((ret = __sys_sigaction(sig, &newact, &oldact))) { 540 err = errno; 541 _thr_sigact[sig-1].sigact = oldact2; 542 } 543 } else if (oact != NULL) { 544 ret = __sys_sigaction(sig, NULL, &oldact); 545 err = errno; 546 } 547 548 if (oldact.sa_handler != SIG_DFL && 549 oldact.sa_handler != SIG_IGN) { 550 if (act != NULL) 551 oldact = oldact2; 552 else if (oact != NULL) 553 oldact = _thr_sigact[sig-1].sigact; 554 } 555 556 _thr_rwl_unlock(&_thr_sigact[sig-1].lock); 557 __sys_sigprocmask(SIG_SETMASK, &oldset, NULL); 558 559 if (ret == 0) { 560 if (oact != NULL) 561 *oact = oldact; 562 } else { 563 errno = err; 564 } 565 return (ret); 566 } 567 568 __weak_reference(_sigprocmask, sigprocmask); 569 570 int 571 _sigprocmask(int how, const sigset_t *set, sigset_t *oset) 572 { 573 const sigset_t *p = set; 574 sigset_t newset; 575 576 if (how != SIG_UNBLOCK) { 577 if (set != NULL) { 578 newset = *set; 579 SIGDELSET(newset, SIGCANCEL); 580 p = &newset; 581 } 582 } 583 return (__sys_sigprocmask(how, p, oset)); 584 } 585 586 __weak_reference(_pthread_sigmask, pthread_sigmask); 587 588 int 589 _pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) 590 { 591 if (_sigprocmask(how, set, oset)) 592 return (errno); 593 return (0); 594 } 595 596 __weak_reference(__sigsuspend, sigsuspend); 597 598 int 599 _sigsuspend(const sigset_t * set) 600 { 601 sigset_t newset; 602 603 return (__sys_sigsuspend(thr_remove_thr_signals(set, &newset))); 604 } 605 606 int 607 __sigsuspend(const sigset_t * set) 608 { 609 struct pthread *curthread; 610 sigset_t newset; 611 int ret, old; 612 613 curthread = _get_curthread(); 614 615 old = curthread->in_sigsuspend; 616 curthread->in_sigsuspend = 1; 617 _thr_cancel_enter(curthread); 618 ret = __sys_sigsuspend(thr_remove_thr_signals(set, &newset)); 619 _thr_cancel_leave(curthread, 1); 620 curthread->in_sigsuspend = old; 621 if (curthread->unblock_sigcancel) { 622 curthread->unblock_sigcancel = 0; 623 SIGEMPTYSET(newset); 624 SIGADDSET(newset, SIGCANCEL); 625 __sys_sigprocmask(SIG_UNBLOCK, &newset, NULL); 626 } 627 628 return (ret); 629 } 630 631 __weak_reference(___sigwait, sigwait); 632 __weak_reference(__sigtimedwait, sigtimedwait); 633 __weak_reference(__sigwaitinfo, sigwaitinfo); 634 635 int 636 _sigtimedwait(const sigset_t *set, siginfo_t *info, 637 const struct timespec * timeout) 638 { 639 sigset_t newset; 640 641 return (__sys_sigtimedwait(thr_remove_thr_signals(set, &newset), info, 642 timeout)); 643 } 644 645 /* 646 * Cancellation behavior: 647 * Thread may be canceled at start, if thread got signal, 648 * it is not canceled. 649 */ 650 int 651 __sigtimedwait(const sigset_t *set, siginfo_t *info, 652 const struct timespec * timeout) 653 { 654 struct pthread *curthread = _get_curthread(); 655 sigset_t newset; 656 int ret; 657 658 _thr_cancel_enter(curthread); 659 ret = __sys_sigtimedwait(thr_remove_thr_signals(set, &newset), info, 660 timeout); 661 _thr_cancel_leave(curthread, (ret == -1)); 662 return (ret); 663 } 664 665 int 666 _sigwaitinfo(const sigset_t *set, siginfo_t *info) 667 { 668 sigset_t newset; 669 670 return (__sys_sigwaitinfo(thr_remove_thr_signals(set, &newset), info)); 671 } 672 673 /* 674 * Cancellation behavior: 675 * Thread may be canceled at start, if thread got signal, 676 * it is not canceled. 677 */ 678 int 679 __sigwaitinfo(const sigset_t *set, siginfo_t *info) 680 { 681 struct pthread *curthread = _get_curthread(); 682 sigset_t newset; 683 int ret; 684 685 _thr_cancel_enter(curthread); 686 ret = __sys_sigwaitinfo(thr_remove_thr_signals(set, &newset), info); 687 _thr_cancel_leave(curthread, ret == -1); 688 return (ret); 689 } 690 691 int 692 _sigwait(const sigset_t *set, int *sig) 693 { 694 sigset_t newset; 695 696 return (__sys_sigwait(thr_remove_thr_signals(set, &newset), sig)); 697 } 698 699 /* 700 * Cancellation behavior: 701 * Thread may be canceled at start, if thread got signal, 702 * it is not canceled. 703 */ 704 int 705 ___sigwait(const sigset_t *set, int *sig) 706 { 707 struct pthread *curthread = _get_curthread(); 708 sigset_t newset; 709 int ret; 710 711 do { 712 _thr_cancel_enter(curthread); 713 ret = __sys_sigwait(thr_remove_thr_signals(set, &newset), sig); 714 _thr_cancel_leave(curthread, (ret != 0)); 715 } while (ret == EINTR); 716 return (ret); 717 } 718 719 __weak_reference(_setcontext, setcontext); 720 int 721 _setcontext(const ucontext_t *ucp) 722 { 723 ucontext_t uc; 724 725 (void) memcpy(&uc, ucp, sizeof(uc)); 726 remove_thr_signals(&uc.uc_sigmask); 727 return __sys_setcontext(&uc); 728 } 729 730 __weak_reference(_swapcontext, swapcontext); 731 int 732 _swapcontext(ucontext_t *oucp, const ucontext_t *ucp) 733 { 734 ucontext_t uc; 735 736 (void) memcpy(&uc, ucp, sizeof(uc)); 737 remove_thr_signals(&uc.uc_sigmask); 738 return __sys_swapcontext(oucp, &uc); 739 } 740