1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (C) 2001 Julian Elischer <julian@freebsd.org>. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice(s), this list of conditions and the following disclaimer as 12 * the first lines of this file unmodified other than the possible 13 * addition of one or more copyright notices. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice(s), this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY 19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY 22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 28 * DAMAGE. 29 */ 30 31 #include "opt_witness.h" 32 #include "opt_hwpmc_hooks.h" 33 34 #include <sys/systm.h> 35 #include <sys/asan.h> 36 #include <sys/kernel.h> 37 #include <sys/lock.h> 38 #include <sys/msan.h> 39 #include <sys/mutex.h> 40 #include <sys/proc.h> 41 #include <sys/bitstring.h> 42 #include <sys/epoch.h> 43 #include <sys/rangelock.h> 44 #include <sys/resourcevar.h> 45 #include <sys/sdt.h> 46 #include <sys/smp.h> 47 #include <sys/sched.h> 48 #include <sys/sleepqueue.h> 49 #include <sys/selinfo.h> 50 #include <sys/syscallsubr.h> 51 #include <sys/dtrace_bsd.h> 52 #include <sys/sysent.h> 53 #include <sys/turnstile.h> 54 #include <sys/taskqueue.h> 55 #include <sys/ktr.h> 56 #include <sys/rwlock.h> 57 #include <sys/umtxvar.h> 58 #include <sys/vmmeter.h> 59 #include <sys/cpuset.h> 60 #ifdef HWPMC_HOOKS 61 #include <sys/pmckern.h> 62 #endif 63 #include <sys/priv.h> 64 65 #include <security/audit/audit.h> 66 67 #include <vm/pmap.h> 68 #include <vm/vm.h> 69 #include <vm/vm_extern.h> 70 #include <vm/uma.h> 71 #include <vm/vm_phys.h> 72 #include <sys/eventhandler.h> 73 74 /* 75 * Asserts below verify the stability of struct thread and struct proc 76 * layout, as exposed by KBI to modules. On head, the KBI is allowed 77 * to drift, change to the structures must be accompanied by the 78 * assert update. 79 * 80 * On the stable branches after KBI freeze, conditions must not be 81 * violated. Typically new fields are moved to the end of the 82 * structures. 83 */ 84 #ifdef __amd64__ 85 _Static_assert(offsetof(struct thread, td_flags) == 0x108, 86 "struct thread KBI td_flags"); 87 _Static_assert(offsetof(struct thread, td_pflags) == 0x114, 88 "struct thread KBI td_pflags"); 89 _Static_assert(offsetof(struct thread, td_frame) == 0x4b8, 90 "struct thread KBI td_frame"); 91 _Static_assert(offsetof(struct thread, td_emuldata) == 0x6c0, 92 "struct thread KBI td_emuldata"); 93 _Static_assert(offsetof(struct proc, p_flag) == 0xb8, 94 "struct proc KBI p_flag"); 95 _Static_assert(offsetof(struct proc, p_pid) == 0xc4, 96 "struct proc KBI p_pid"); 97 _Static_assert(offsetof(struct proc, p_filemon) == 0x3c8, 98 "struct proc KBI p_filemon"); 99 _Static_assert(offsetof(struct proc, p_comm) == 0x3e0, 100 "struct proc KBI p_comm"); 101 _Static_assert(offsetof(struct proc, p_emuldata) == 0x4d0, 102 "struct proc KBI p_emuldata"); 103 #endif 104 #ifdef __i386__ 105 _Static_assert(offsetof(struct thread, td_flags) == 0x9c, 106 "struct thread KBI td_flags"); 107 _Static_assert(offsetof(struct thread, td_pflags) == 0xa8, 108 "struct thread KBI td_pflags"); 109 _Static_assert(offsetof(struct thread, td_frame) == 0x318, 110 "struct thread KBI td_frame"); 111 _Static_assert(offsetof(struct thread, td_emuldata) == 0x35c, 112 "struct thread KBI td_emuldata"); 113 _Static_assert(offsetof(struct proc, p_flag) == 0x6c, 114 "struct proc KBI p_flag"); 115 _Static_assert(offsetof(struct proc, p_pid) == 0x78, 116 "struct proc KBI p_pid"); 117 _Static_assert(offsetof(struct proc, p_filemon) == 0x270, 118 "struct proc KBI p_filemon"); 119 _Static_assert(offsetof(struct proc, p_comm) == 0x284, 120 "struct proc KBI p_comm"); 121 _Static_assert(offsetof(struct proc, p_emuldata) == 0x318, 122 "struct proc KBI p_emuldata"); 123 #endif 124 125 SDT_PROVIDER_DECLARE(proc); 126 SDT_PROBE_DEFINE(proc, , , lwp__exit); 127 128 /* 129 * thread related storage. 130 */ 131 static uma_zone_t thread_zone; 132 133 struct thread_domain_data { 134 struct thread *tdd_zombies; 135 int tdd_reapticks; 136 } __aligned(CACHE_LINE_SIZE); 137 138 static struct thread_domain_data thread_domain_data[MAXMEMDOM]; 139 140 static struct task thread_reap_task; 141 static struct callout thread_reap_callout; 142 143 static void thread_zombie(struct thread *); 144 static void thread_reap(void); 145 static void thread_reap_all(void); 146 static void thread_reap_task_cb(void *, int); 147 static void thread_reap_callout_cb(void *); 148 static void thread_unsuspend_one(struct thread *td, struct proc *p, 149 bool boundary); 150 static void thread_free_batched(struct thread *td); 151 152 static __exclusive_cache_line struct mtx tid_lock; 153 static bitstr_t *tid_bitmap; 154 155 static MALLOC_DEFINE(M_TIDHASH, "tidhash", "thread hash"); 156 157 static int maxthread; 158 SYSCTL_INT(_kern, OID_AUTO, maxthread, CTLFLAG_RDTUN, 159 &maxthread, 0, "Maximum number of threads"); 160 161 static __exclusive_cache_line int nthreads; 162 163 static LIST_HEAD(tidhashhead, thread) *tidhashtbl; 164 static u_long tidhash; 165 static u_long tidhashlock; 166 static struct rwlock *tidhashtbl_lock; 167 #define TIDHASH(tid) (&tidhashtbl[(tid) & tidhash]) 168 #define TIDHASHLOCK(tid) (&tidhashtbl_lock[(tid) & tidhashlock]) 169 170 EVENTHANDLER_LIST_DEFINE(thread_ctor); 171 EVENTHANDLER_LIST_DEFINE(thread_dtor); 172 EVENTHANDLER_LIST_DEFINE(thread_init); 173 EVENTHANDLER_LIST_DEFINE(thread_fini); 174 175 static bool 176 thread_count_inc_try(void) 177 { 178 int nthreads_new; 179 180 nthreads_new = atomic_fetchadd_int(&nthreads, 1) + 1; 181 if (nthreads_new >= maxthread - 100) { 182 if (priv_check_cred(curthread->td_ucred, PRIV_MAXPROC) != 0 || 183 nthreads_new >= maxthread) { 184 atomic_subtract_int(&nthreads, 1); 185 return (false); 186 } 187 } 188 return (true); 189 } 190 191 static bool 192 thread_count_inc(void) 193 { 194 static struct timeval lastfail; 195 static int curfail; 196 197 thread_reap(); 198 if (thread_count_inc_try()) { 199 return (true); 200 } 201 202 thread_reap_all(); 203 if (thread_count_inc_try()) { 204 return (true); 205 } 206 207 if (ppsratecheck(&lastfail, &curfail, 1)) { 208 printf("maxthread limit exceeded by uid %u " 209 "(pid %d); consider increasing kern.maxthread\n", 210 curthread->td_ucred->cr_ruid, curproc->p_pid); 211 } 212 return (false); 213 } 214 215 static void 216 thread_count_sub(int n) 217 { 218 219 atomic_subtract_int(&nthreads, n); 220 } 221 222 static void 223 thread_count_dec(void) 224 { 225 226 thread_count_sub(1); 227 } 228 229 static lwpid_t 230 tid_alloc(void) 231 { 232 static lwpid_t trytid; 233 lwpid_t tid; 234 235 mtx_lock(&tid_lock); 236 /* 237 * It is an invariant that the bitmap is big enough to hold maxthread 238 * IDs. If we got to this point there has to be at least one free. 239 */ 240 if (trytid >= maxthread) 241 trytid = 0; 242 bit_ffc_at(tid_bitmap, trytid, maxthread, &tid); 243 if (tid == -1) { 244 KASSERT(trytid != 0, ("unexpectedly ran out of IDs")); 245 trytid = 0; 246 bit_ffc_at(tid_bitmap, trytid, maxthread, &tid); 247 KASSERT(tid != -1, ("unexpectedly ran out of IDs")); 248 } 249 bit_set(tid_bitmap, tid); 250 trytid = tid + 1; 251 mtx_unlock(&tid_lock); 252 return (tid + NO_PID); 253 } 254 255 static void 256 tid_free_locked(lwpid_t rtid) 257 { 258 lwpid_t tid; 259 260 mtx_assert(&tid_lock, MA_OWNED); 261 KASSERT(rtid >= NO_PID, 262 ("%s: invalid tid %d\n", __func__, rtid)); 263 tid = rtid - NO_PID; 264 KASSERT(bit_test(tid_bitmap, tid) != 0, 265 ("thread ID %d not allocated\n", rtid)); 266 bit_clear(tid_bitmap, tid); 267 } 268 269 static void 270 tid_free(lwpid_t rtid) 271 { 272 273 mtx_lock(&tid_lock); 274 tid_free_locked(rtid); 275 mtx_unlock(&tid_lock); 276 } 277 278 static void 279 tid_free_batch(lwpid_t *batch, int n) 280 { 281 int i; 282 283 mtx_lock(&tid_lock); 284 for (i = 0; i < n; i++) { 285 tid_free_locked(batch[i]); 286 } 287 mtx_unlock(&tid_lock); 288 } 289 290 /* 291 * Batching for thread reapping. 292 */ 293 struct tidbatch { 294 lwpid_t tab[16]; 295 int n; 296 }; 297 298 static void 299 tidbatch_prep(struct tidbatch *tb) 300 { 301 302 tb->n = 0; 303 } 304 305 static void 306 tidbatch_add(struct tidbatch *tb, struct thread *td) 307 { 308 309 KASSERT(tb->n < nitems(tb->tab), 310 ("%s: count too high %d", __func__, tb->n)); 311 tb->tab[tb->n] = td->td_tid; 312 tb->n++; 313 } 314 315 static void 316 tidbatch_process(struct tidbatch *tb) 317 { 318 319 KASSERT(tb->n <= nitems(tb->tab), 320 ("%s: count too high %d", __func__, tb->n)); 321 if (tb->n == nitems(tb->tab)) { 322 tid_free_batch(tb->tab, tb->n); 323 tb->n = 0; 324 } 325 } 326 327 static void 328 tidbatch_final(struct tidbatch *tb) 329 { 330 331 KASSERT(tb->n <= nitems(tb->tab), 332 ("%s: count too high %d", __func__, tb->n)); 333 if (tb->n != 0) { 334 tid_free_batch(tb->tab, tb->n); 335 } 336 } 337 338 /* 339 * Batching thread count free, for consistency 340 */ 341 struct tdcountbatch { 342 int n; 343 }; 344 345 static void 346 tdcountbatch_prep(struct tdcountbatch *tb) 347 { 348 349 tb->n = 0; 350 } 351 352 static void 353 tdcountbatch_add(struct tdcountbatch *tb, struct thread *td __unused) 354 { 355 356 tb->n++; 357 } 358 359 static void 360 tdcountbatch_process(struct tdcountbatch *tb) 361 { 362 363 if (tb->n == 32) { 364 thread_count_sub(tb->n); 365 tb->n = 0; 366 } 367 } 368 369 static void 370 tdcountbatch_final(struct tdcountbatch *tb) 371 { 372 373 if (tb->n != 0) { 374 thread_count_sub(tb->n); 375 } 376 } 377 378 /* 379 * Prepare a thread for use. 380 */ 381 static int 382 thread_ctor(void *mem, int size, void *arg, int flags) 383 { 384 struct thread *td; 385 386 td = (struct thread *)mem; 387 TD_SET_STATE(td, TDS_INACTIVE); 388 td->td_lastcpu = td->td_oncpu = NOCPU; 389 390 /* 391 * Note that td_critnest begins life as 1 because the thread is not 392 * running and is thereby implicitly waiting to be on the receiving 393 * end of a context switch. 394 */ 395 td->td_critnest = 1; 396 td->td_lend_user_pri = PRI_MAX; 397 #ifdef AUDIT 398 audit_thread_alloc(td); 399 #endif 400 #ifdef KDTRACE_HOOKS 401 kdtrace_thread_ctor(td); 402 #endif 403 umtx_thread_alloc(td); 404 MPASS(td->td_sel == NULL); 405 return (0); 406 } 407 408 /* 409 * Reclaim a thread after use. 410 */ 411 static void 412 thread_dtor(void *mem, int size, void *arg) 413 { 414 struct thread *td; 415 416 td = (struct thread *)mem; 417 418 #ifdef INVARIANTS 419 /* Verify that this thread is in a safe state to free. */ 420 switch (TD_GET_STATE(td)) { 421 case TDS_INHIBITED: 422 case TDS_RUNNING: 423 case TDS_CAN_RUN: 424 case TDS_RUNQ: 425 /* 426 * We must never unlink a thread that is in one of 427 * these states, because it is currently active. 428 */ 429 panic("bad state for thread unlinking"); 430 /* NOTREACHED */ 431 case TDS_INACTIVE: 432 break; 433 default: 434 panic("bad thread state"); 435 /* NOTREACHED */ 436 } 437 #endif 438 #ifdef AUDIT 439 audit_thread_free(td); 440 #endif 441 #ifdef KDTRACE_HOOKS 442 kdtrace_thread_dtor(td); 443 #endif 444 /* Free all OSD associated to this thread. */ 445 osd_thread_exit(td); 446 ast_kclear(td); 447 seltdfini(td); 448 } 449 450 /* 451 * Initialize type-stable parts of a thread (when newly created). 452 */ 453 static int 454 thread_init(void *mem, int size, int flags) 455 { 456 struct thread *td; 457 458 td = (struct thread *)mem; 459 460 td->td_allocdomain = vm_phys_domain(vtophys(td)); 461 td->td_sleepqueue = sleepq_alloc(); 462 td->td_turnstile = turnstile_alloc(); 463 td->td_rlqe = NULL; 464 EVENTHANDLER_DIRECT_INVOKE(thread_init, td); 465 umtx_thread_init(td); 466 td->td_kstack = 0; 467 td->td_sel = NULL; 468 return (0); 469 } 470 471 /* 472 * Tear down type-stable parts of a thread (just before being discarded). 473 */ 474 static void 475 thread_fini(void *mem, int size) 476 { 477 struct thread *td; 478 479 td = (struct thread *)mem; 480 EVENTHANDLER_DIRECT_INVOKE(thread_fini, td); 481 rlqentry_free(td->td_rlqe); 482 turnstile_free(td->td_turnstile); 483 sleepq_free(td->td_sleepqueue); 484 umtx_thread_fini(td); 485 MPASS(td->td_sel == NULL); 486 } 487 488 /* 489 * For a newly created process, 490 * link up all the structures and its initial threads etc. 491 * called from: 492 * {arch}/{arch}/machdep.c {arch}_init(), init386() etc. 493 * proc_dtor() (should go away) 494 * proc_init() 495 */ 496 void 497 proc_linkup0(struct proc *p, struct thread *td) 498 { 499 TAILQ_INIT(&p->p_threads); /* all threads in proc */ 500 proc_linkup(p, td); 501 } 502 503 void 504 proc_linkup(struct proc *p, struct thread *td) 505 { 506 507 sigqueue_init(&p->p_sigqueue, p); 508 p->p_ksi = ksiginfo_alloc(M_WAITOK); 509 if (p->p_ksi != NULL) { 510 /* XXX p_ksi may be null if ksiginfo zone is not ready */ 511 p->p_ksi->ksi_flags = KSI_EXT | KSI_INS; 512 } 513 LIST_INIT(&p->p_mqnotifier); 514 p->p_numthreads = 0; 515 thread_link(td, p); 516 } 517 518 static void 519 ast_suspend(struct thread *td, int tda __unused) 520 { 521 struct proc *p; 522 523 p = td->td_proc; 524 /* 525 * We need to check to see if we have to exit or wait due to a 526 * single threading requirement or some other STOP condition. 527 */ 528 PROC_LOCK(p); 529 thread_suspend_check(0); 530 PROC_UNLOCK(p); 531 } 532 533 extern int max_threads_per_proc; 534 535 /* 536 * Initialize global thread allocation resources. 537 */ 538 void 539 threadinit(void) 540 { 541 u_long i; 542 lwpid_t tid0; 543 544 /* 545 * Place an upper limit on threads which can be allocated. 546 * 547 * Note that other factors may make the de facto limit much lower. 548 * 549 * Platform limits are somewhat arbitrary but deemed "more than good 550 * enough" for the foreseable future. 551 */ 552 if (maxthread == 0) { 553 #ifdef _LP64 554 maxthread = MIN(maxproc * max_threads_per_proc, 1000000); 555 #else 556 maxthread = MIN(maxproc * max_threads_per_proc, 100000); 557 #endif 558 } 559 560 mtx_init(&tid_lock, "TID lock", NULL, MTX_DEF); 561 tid_bitmap = bit_alloc(maxthread, M_TIDHASH, M_WAITOK); 562 /* 563 * Handle thread0. 564 */ 565 thread_count_inc(); 566 tid0 = tid_alloc(); 567 if (tid0 != THREAD0_TID) 568 panic("tid0 %d != %d\n", tid0, THREAD0_TID); 569 570 /* 571 * Thread structures are specially aligned so that (at least) the 572 * 5 lower bits of a pointer to 'struct thead' must be 0. These bits 573 * are used by synchronization primitives to store flags in pointers to 574 * such structures. 575 */ 576 thread_zone = uma_zcreate("THREAD", sched_sizeof_thread(), 577 thread_ctor, thread_dtor, thread_init, thread_fini, 578 UMA_ALIGN_CACHE_AND_MASK(32 - 1), UMA_ZONE_NOFREE); 579 tidhashtbl = hashinit(maxproc / 2, M_TIDHASH, &tidhash); 580 tidhashlock = (tidhash + 1) / 64; 581 if (tidhashlock > 0) 582 tidhashlock--; 583 tidhashtbl_lock = malloc(sizeof(*tidhashtbl_lock) * (tidhashlock + 1), 584 M_TIDHASH, M_WAITOK | M_ZERO); 585 for (i = 0; i < tidhashlock + 1; i++) 586 rw_init(&tidhashtbl_lock[i], "tidhash"); 587 588 TASK_INIT(&thread_reap_task, 0, thread_reap_task_cb, NULL); 589 callout_init(&thread_reap_callout, 1); 590 callout_reset(&thread_reap_callout, 5 * hz, 591 thread_reap_callout_cb, NULL); 592 ast_register(TDA_SUSPEND, ASTR_ASTF_REQUIRED, 0, ast_suspend); 593 } 594 595 /* 596 * Place an unused thread on the zombie list. 597 */ 598 void 599 thread_zombie(struct thread *td) 600 { 601 struct thread_domain_data *tdd; 602 struct thread *ztd; 603 604 tdd = &thread_domain_data[td->td_allocdomain]; 605 ztd = atomic_load_ptr(&tdd->tdd_zombies); 606 for (;;) { 607 td->td_zombie = ztd; 608 if (atomic_fcmpset_rel_ptr((uintptr_t *)&tdd->tdd_zombies, 609 (uintptr_t *)&ztd, (uintptr_t)td)) 610 break; 611 continue; 612 } 613 } 614 615 /* 616 * Release a thread that has exited after cpu_throw(). 617 */ 618 void 619 thread_stash(struct thread *td) 620 { 621 atomic_subtract_rel_int(&td->td_proc->p_exitthreads, 1); 622 thread_zombie(td); 623 } 624 625 /* 626 * Reap zombies from passed domain. 627 */ 628 static void 629 thread_reap_domain(struct thread_domain_data *tdd) 630 { 631 struct thread *itd, *ntd; 632 struct tidbatch tidbatch; 633 struct credbatch credbatch; 634 struct limbatch limbatch; 635 struct tdcountbatch tdcountbatch; 636 637 /* 638 * Reading upfront is pessimal if followed by concurrent atomic_swap, 639 * but most of the time the list is empty. 640 */ 641 if (tdd->tdd_zombies == NULL) 642 return; 643 644 itd = (struct thread *)atomic_swap_ptr((uintptr_t *)&tdd->tdd_zombies, 645 (uintptr_t)NULL); 646 if (itd == NULL) 647 return; 648 649 /* 650 * Multiple CPUs can get here, the race is fine as ticks is only 651 * advisory. 652 */ 653 tdd->tdd_reapticks = ticks; 654 655 tidbatch_prep(&tidbatch); 656 credbatch_prep(&credbatch); 657 limbatch_prep(&limbatch); 658 tdcountbatch_prep(&tdcountbatch); 659 660 while (itd != NULL) { 661 ntd = itd->td_zombie; 662 EVENTHANDLER_DIRECT_INVOKE(thread_dtor, itd); 663 664 tidbatch_add(&tidbatch, itd); 665 credbatch_add(&credbatch, itd); 666 limbatch_add(&limbatch, itd); 667 tdcountbatch_add(&tdcountbatch, itd); 668 669 thread_free_batched(itd); 670 671 tidbatch_process(&tidbatch); 672 credbatch_process(&credbatch); 673 limbatch_process(&limbatch); 674 tdcountbatch_process(&tdcountbatch); 675 676 itd = ntd; 677 } 678 679 tidbatch_final(&tidbatch); 680 credbatch_final(&credbatch); 681 limbatch_final(&limbatch); 682 tdcountbatch_final(&tdcountbatch); 683 } 684 685 /* 686 * Reap zombies from all domains. 687 */ 688 static void 689 thread_reap_all(void) 690 { 691 struct thread_domain_data *tdd; 692 int i, domain; 693 694 domain = PCPU_GET(domain); 695 for (i = 0; i < vm_ndomains; i++) { 696 tdd = &thread_domain_data[(i + domain) % vm_ndomains]; 697 thread_reap_domain(tdd); 698 } 699 } 700 701 /* 702 * Reap zombies from local domain. 703 */ 704 static void 705 thread_reap(void) 706 { 707 struct thread_domain_data *tdd; 708 int domain; 709 710 domain = PCPU_GET(domain); 711 tdd = &thread_domain_data[domain]; 712 713 thread_reap_domain(tdd); 714 } 715 716 static void 717 thread_reap_task_cb(void *arg __unused, int pending __unused) 718 { 719 720 thread_reap_all(); 721 } 722 723 static void 724 thread_reap_callout_cb(void *arg __unused) 725 { 726 struct thread_domain_data *tdd; 727 int i, cticks, lticks; 728 bool wantreap; 729 730 wantreap = false; 731 cticks = atomic_load_int(&ticks); 732 for (i = 0; i < vm_ndomains; i++) { 733 tdd = &thread_domain_data[i]; 734 lticks = tdd->tdd_reapticks; 735 if (tdd->tdd_zombies != NULL && 736 (u_int)(cticks - lticks) > 5 * hz) { 737 wantreap = true; 738 break; 739 } 740 } 741 742 if (wantreap) 743 taskqueue_enqueue(taskqueue_thread, &thread_reap_task); 744 callout_reset(&thread_reap_callout, 5 * hz, 745 thread_reap_callout_cb, NULL); 746 } 747 748 /* 749 * Calling this function guarantees that any thread that exited before 750 * the call is reaped when the function returns. By 'exited' we mean 751 * a thread removed from the process linkage with thread_unlink(). 752 * Practically this means that caller must lock/unlock corresponding 753 * process lock before the call, to synchronize with thread_exit(). 754 */ 755 void 756 thread_reap_barrier(void) 757 { 758 struct task *t; 759 760 /* 761 * First do context switches to each CPU to ensure that all 762 * PCPU pc_deadthreads are moved to zombie list. 763 */ 764 quiesce_all_cpus("", PDROP); 765 766 /* 767 * Second, fire the task in the same thread as normal 768 * thread_reap() is done, to serialize reaping. 769 */ 770 t = malloc(sizeof(*t), M_TEMP, M_WAITOK); 771 TASK_INIT(t, 0, thread_reap_task_cb, t); 772 taskqueue_enqueue(taskqueue_thread, t); 773 taskqueue_drain(taskqueue_thread, t); 774 free(t, M_TEMP); 775 } 776 777 /* 778 * Allocate a thread. 779 */ 780 struct thread * 781 thread_alloc(int pages) 782 { 783 struct thread *td; 784 lwpid_t tid; 785 786 if (!thread_count_inc()) { 787 return (NULL); 788 } 789 790 tid = tid_alloc(); 791 td = uma_zalloc(thread_zone, M_WAITOK); 792 KASSERT(td->td_kstack == 0, ("thread_alloc got thread with kstack")); 793 if (!vm_thread_new(td, pages)) { 794 uma_zfree(thread_zone, td); 795 tid_free(tid); 796 thread_count_dec(); 797 return (NULL); 798 } 799 td->td_tid = tid; 800 bzero(&td->td_sa.args, sizeof(td->td_sa.args)); 801 kasan_thread_alloc(td); 802 kmsan_thread_alloc(td); 803 cpu_thread_alloc(td); 804 EVENTHANDLER_DIRECT_INVOKE(thread_ctor, td); 805 return (td); 806 } 807 808 int 809 thread_recycle(struct thread *td, int pages) 810 { 811 if (td->td_kstack == 0 || td->td_kstack_pages != pages) { 812 if (td->td_kstack != 0) 813 vm_thread_dispose(td); 814 if (!vm_thread_new(td, pages)) 815 return (ENOMEM); 816 cpu_thread_alloc(td); 817 } 818 kasan_thread_alloc(td); 819 kmsan_thread_alloc(td); 820 return (0); 821 } 822 823 /* 824 * Deallocate a thread. 825 */ 826 static void 827 thread_free_batched(struct thread *td) 828 { 829 830 lock_profile_thread_exit(td); 831 if (td->td_cpuset) 832 cpuset_rel(td->td_cpuset); 833 td->td_cpuset = NULL; 834 cpu_thread_free(td); 835 if (td->td_kstack != 0) 836 vm_thread_dispose(td); 837 callout_drain(&td->td_slpcallout); 838 /* 839 * Freeing handled by the caller. 840 */ 841 td->td_tid = -1; 842 kmsan_thread_free(td); 843 uma_zfree(thread_zone, td); 844 } 845 846 void 847 thread_free(struct thread *td) 848 { 849 lwpid_t tid; 850 851 EVENTHANDLER_DIRECT_INVOKE(thread_dtor, td); 852 tid = td->td_tid; 853 thread_free_batched(td); 854 tid_free(tid); 855 thread_count_dec(); 856 } 857 858 void 859 thread_cow_get_proc(struct thread *newtd, struct proc *p) 860 { 861 862 PROC_LOCK_ASSERT(p, MA_OWNED); 863 newtd->td_realucred = crcowget(p->p_ucred); 864 newtd->td_ucred = newtd->td_realucred; 865 newtd->td_limit = lim_hold(p->p_limit); 866 newtd->td_cowgen = p->p_cowgen; 867 } 868 869 void 870 thread_cow_get(struct thread *newtd, struct thread *td) 871 { 872 873 MPASS(td->td_realucred == td->td_ucred); 874 newtd->td_realucred = crcowget(td->td_realucred); 875 newtd->td_ucred = newtd->td_realucred; 876 newtd->td_limit = lim_hold(td->td_limit); 877 newtd->td_cowgen = td->td_cowgen; 878 } 879 880 void 881 thread_cow_free(struct thread *td) 882 { 883 884 if (td->td_realucred != NULL) 885 crcowfree(td); 886 if (td->td_limit != NULL) 887 lim_free(td->td_limit); 888 } 889 890 void 891 thread_cow_update(struct thread *td) 892 { 893 struct proc *p; 894 struct ucred *oldcred; 895 struct plimit *oldlimit; 896 897 p = td->td_proc; 898 PROC_LOCK(p); 899 oldcred = crcowsync(); 900 oldlimit = lim_cowsync(); 901 td->td_cowgen = p->p_cowgen; 902 PROC_UNLOCK(p); 903 if (oldcred != NULL) 904 crfree(oldcred); 905 if (oldlimit != NULL) 906 lim_free(oldlimit); 907 } 908 909 void 910 thread_cow_synced(struct thread *td) 911 { 912 struct proc *p; 913 914 p = td->td_proc; 915 PROC_LOCK_ASSERT(p, MA_OWNED); 916 MPASS(td->td_cowgen != p->p_cowgen); 917 MPASS(td->td_ucred == p->p_ucred); 918 MPASS(td->td_limit == p->p_limit); 919 td->td_cowgen = p->p_cowgen; 920 } 921 922 /* 923 * Discard the current thread and exit from its context. 924 * Always called with scheduler locked. 925 * 926 * Because we can't free a thread while we're operating under its context, 927 * push the current thread into our CPU's deadthread holder. This means 928 * we needn't worry about someone else grabbing our context before we 929 * do a cpu_throw(). 930 */ 931 void 932 thread_exit(void) 933 { 934 uint64_t runtime, new_switchtime; 935 struct thread *td; 936 struct thread *td2; 937 struct proc *p; 938 939 td = curthread; 940 p = td->td_proc; 941 942 PROC_SLOCK_ASSERT(p, MA_OWNED); 943 mtx_assert(&Giant, MA_NOTOWNED); 944 945 PROC_LOCK_ASSERT(p, MA_OWNED); 946 KASSERT(p != NULL, ("thread exiting without a process")); 947 CTR3(KTR_PROC, "thread_exit: thread %p (pid %ld, %s)", td, 948 (long)p->p_pid, td->td_name); 949 SDT_PROBE0(proc, , , lwp__exit); 950 KASSERT(TAILQ_EMPTY(&td->td_sigqueue.sq_list), ("signal pending")); 951 MPASS(td->td_realucred == td->td_ucred); 952 953 /* 954 * drop FPU & debug register state storage, or any other 955 * architecture specific resources that 956 * would not be on a new untouched process. 957 */ 958 cpu_thread_exit(td); 959 960 /* 961 * The last thread is left attached to the process 962 * So that the whole bundle gets recycled. Skip 963 * all this stuff if we never had threads. 964 * EXIT clears all sign of other threads when 965 * it goes to single threading, so the last thread always 966 * takes the short path. 967 */ 968 if (p->p_flag & P_HADTHREADS) { 969 if (p->p_numthreads > 1) { 970 atomic_add_int(&td->td_proc->p_exitthreads, 1); 971 thread_unlink(td); 972 td2 = FIRST_THREAD_IN_PROC(p); 973 sched_exit_thread(td2, td); 974 975 /* 976 * The test below is NOT true if we are the 977 * sole exiting thread. P_STOPPED_SINGLE is unset 978 * in exit1() after it is the only survivor. 979 */ 980 if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE) { 981 if (p->p_numthreads == p->p_suspcount) { 982 thread_lock(p->p_singlethread); 983 thread_unsuspend_one(p->p_singlethread, 984 p, false); 985 } 986 } 987 988 PCPU_SET(deadthread, td); 989 } else { 990 /* 991 * The last thread is exiting.. but not through exit() 992 */ 993 panic ("thread_exit: Last thread exiting on its own"); 994 } 995 } 996 #ifdef HWPMC_HOOKS 997 /* 998 * If this thread is part of a process that is being tracked by hwpmc(4), 999 * inform the module of the thread's impending exit. 1000 */ 1001 if (PMC_PROC_IS_USING_PMCS(td->td_proc)) { 1002 PMC_SWITCH_CONTEXT(td, PMC_FN_CSW_OUT); 1003 PMC_CALL_HOOK_UNLOCKED(td, PMC_FN_THR_EXIT, NULL); 1004 } else if (PMC_SYSTEM_SAMPLING_ACTIVE()) 1005 PMC_CALL_HOOK_UNLOCKED(td, PMC_FN_THR_EXIT_LOG, NULL); 1006 #endif 1007 PROC_UNLOCK(p); 1008 PROC_STATLOCK(p); 1009 thread_lock(td); 1010 PROC_SUNLOCK(p); 1011 1012 /* Do the same timestamp bookkeeping that mi_switch() would do. */ 1013 new_switchtime = cpu_ticks(); 1014 runtime = new_switchtime - PCPU_GET(switchtime); 1015 td->td_runtime += runtime; 1016 td->td_incruntime += runtime; 1017 PCPU_SET(switchtime, new_switchtime); 1018 PCPU_SET(switchticks, ticks); 1019 VM_CNT_INC(v_swtch); 1020 1021 /* Save our resource usage in our process. */ 1022 td->td_ru.ru_nvcsw++; 1023 ruxagg_locked(p, td); 1024 rucollect(&p->p_ru, &td->td_ru); 1025 PROC_STATUNLOCK(p); 1026 1027 TD_SET_STATE(td, TDS_INACTIVE); 1028 #ifdef WITNESS 1029 witness_thread_exit(td); 1030 #endif 1031 CTR1(KTR_PROC, "thread_exit: cpu_throw() thread %p", td); 1032 sched_throw(td); 1033 panic("I'm a teapot!"); 1034 /* NOTREACHED */ 1035 } 1036 1037 /* 1038 * Do any thread specific cleanups that may be needed in wait() 1039 * called with Giant, proc and schedlock not held. 1040 */ 1041 void 1042 thread_wait(struct proc *p) 1043 { 1044 struct thread *td; 1045 1046 mtx_assert(&Giant, MA_NOTOWNED); 1047 KASSERT(p->p_numthreads == 1, ("multiple threads in thread_wait()")); 1048 KASSERT(p->p_exitthreads == 0, ("p_exitthreads leaking")); 1049 td = FIRST_THREAD_IN_PROC(p); 1050 /* Lock the last thread so we spin until it exits cpu_throw(). */ 1051 thread_lock(td); 1052 thread_unlock(td); 1053 lock_profile_thread_exit(td); 1054 cpuset_rel(td->td_cpuset); 1055 td->td_cpuset = NULL; 1056 cpu_thread_clean(td); 1057 thread_cow_free(td); 1058 callout_drain(&td->td_slpcallout); 1059 thread_reap(); /* check for zombie threads etc. */ 1060 } 1061 1062 /* 1063 * Link a thread to a process. 1064 * set up anything that needs to be initialized for it to 1065 * be used by the process. 1066 */ 1067 void 1068 thread_link(struct thread *td, struct proc *p) 1069 { 1070 1071 /* 1072 * XXX This can't be enabled because it's called for proc0 before 1073 * its lock has been created. 1074 * PROC_LOCK_ASSERT(p, MA_OWNED); 1075 */ 1076 TD_SET_STATE(td, TDS_INACTIVE); 1077 td->td_proc = p; 1078 td->td_flags = TDF_INMEM; 1079 1080 LIST_INIT(&td->td_contested); 1081 LIST_INIT(&td->td_lprof[0]); 1082 LIST_INIT(&td->td_lprof[1]); 1083 #ifdef EPOCH_TRACE 1084 SLIST_INIT(&td->td_epochs); 1085 #endif 1086 sigqueue_init(&td->td_sigqueue, p); 1087 callout_init(&td->td_slpcallout, 1); 1088 TAILQ_INSERT_TAIL(&p->p_threads, td, td_plist); 1089 p->p_numthreads++; 1090 } 1091 1092 /* 1093 * Called from: 1094 * thread_exit() 1095 */ 1096 void 1097 thread_unlink(struct thread *td) 1098 { 1099 struct proc *p = td->td_proc; 1100 1101 PROC_LOCK_ASSERT(p, MA_OWNED); 1102 #ifdef EPOCH_TRACE 1103 MPASS(SLIST_EMPTY(&td->td_epochs)); 1104 #endif 1105 1106 TAILQ_REMOVE(&p->p_threads, td, td_plist); 1107 p->p_numthreads--; 1108 /* could clear a few other things here */ 1109 /* Must NOT clear links to proc! */ 1110 } 1111 1112 static int 1113 calc_remaining(struct proc *p, int mode) 1114 { 1115 int remaining; 1116 1117 PROC_LOCK_ASSERT(p, MA_OWNED); 1118 PROC_SLOCK_ASSERT(p, MA_OWNED); 1119 if (mode == SINGLE_EXIT) 1120 remaining = p->p_numthreads; 1121 else if (mode == SINGLE_BOUNDARY) 1122 remaining = p->p_numthreads - p->p_boundary_count; 1123 else if (mode == SINGLE_NO_EXIT || mode == SINGLE_ALLPROC) 1124 remaining = p->p_numthreads - p->p_suspcount; 1125 else 1126 panic("calc_remaining: wrong mode %d", mode); 1127 return (remaining); 1128 } 1129 1130 static int 1131 remain_for_mode(int mode) 1132 { 1133 1134 return (mode == SINGLE_ALLPROC ? 0 : 1); 1135 } 1136 1137 static void 1138 weed_inhib(int mode, struct thread *td2, struct proc *p) 1139 { 1140 PROC_LOCK_ASSERT(p, MA_OWNED); 1141 PROC_SLOCK_ASSERT(p, MA_OWNED); 1142 THREAD_LOCK_ASSERT(td2, MA_OWNED); 1143 1144 /* 1145 * Since the thread lock is dropped by the scheduler we have 1146 * to retry to check for races. 1147 */ 1148 restart: 1149 switch (mode) { 1150 case SINGLE_EXIT: 1151 if (TD_IS_SUSPENDED(td2)) { 1152 thread_unsuspend_one(td2, p, true); 1153 thread_lock(td2); 1154 goto restart; 1155 } 1156 if (TD_CAN_ABORT(td2)) { 1157 sleepq_abort(td2, EINTR); 1158 return; 1159 } 1160 break; 1161 case SINGLE_BOUNDARY: 1162 case SINGLE_NO_EXIT: 1163 if (TD_IS_SUSPENDED(td2) && 1164 (td2->td_flags & TDF_BOUNDARY) == 0) { 1165 thread_unsuspend_one(td2, p, false); 1166 thread_lock(td2); 1167 goto restart; 1168 } 1169 if (TD_CAN_ABORT(td2)) { 1170 sleepq_abort(td2, ERESTART); 1171 return; 1172 } 1173 break; 1174 case SINGLE_ALLPROC: 1175 /* 1176 * ALLPROC suspend tries to avoid spurious EINTR for 1177 * threads sleeping interruptable, by suspending the 1178 * thread directly, similarly to sig_suspend_threads(). 1179 * Since such sleep is not neccessary performed at the user 1180 * boundary, TDF_ALLPROCSUSP is used to avoid immediate 1181 * un-suspend. 1182 */ 1183 if (TD_IS_SUSPENDED(td2) && 1184 (td2->td_flags & TDF_ALLPROCSUSP) == 0) { 1185 thread_unsuspend_one(td2, p, false); 1186 thread_lock(td2); 1187 goto restart; 1188 } 1189 if (TD_CAN_ABORT(td2)) { 1190 td2->td_flags |= TDF_ALLPROCSUSP; 1191 sleepq_abort(td2, ERESTART); 1192 return; 1193 } 1194 break; 1195 default: 1196 break; 1197 } 1198 thread_unlock(td2); 1199 } 1200 1201 /* 1202 * Enforce single-threading. 1203 * 1204 * Returns 1 if the caller must abort (another thread is waiting to 1205 * exit the process or similar). Process is locked! 1206 * Returns 0 when you are successfully the only thread running. 1207 * A process has successfully single threaded in the suspend mode when 1208 * There are no threads in user mode. Threads in the kernel must be 1209 * allowed to continue until they get to the user boundary. They may even 1210 * copy out their return values and data before suspending. They may however be 1211 * accelerated in reaching the user boundary as we will wake up 1212 * any sleeping threads that are interruptable. (PCATCH). 1213 */ 1214 int 1215 thread_single(struct proc *p, int mode) 1216 { 1217 struct thread *td; 1218 struct thread *td2; 1219 int remaining; 1220 1221 td = curthread; 1222 KASSERT(mode == SINGLE_EXIT || mode == SINGLE_BOUNDARY || 1223 mode == SINGLE_ALLPROC || mode == SINGLE_NO_EXIT, 1224 ("invalid mode %d", mode)); 1225 /* 1226 * If allowing non-ALLPROC singlethreading for non-curproc 1227 * callers, calc_remaining() and remain_for_mode() should be 1228 * adjusted to also account for td->td_proc != p. For now 1229 * this is not implemented because it is not used. 1230 */ 1231 KASSERT((mode == SINGLE_ALLPROC && td->td_proc != p) || 1232 (mode != SINGLE_ALLPROC && td->td_proc == p), 1233 ("mode %d proc %p curproc %p", mode, p, td->td_proc)); 1234 mtx_assert(&Giant, MA_NOTOWNED); 1235 PROC_LOCK_ASSERT(p, MA_OWNED); 1236 1237 /* 1238 * Is someone already single threading? 1239 * Or may be singlethreading is not needed at all. 1240 */ 1241 if (mode == SINGLE_ALLPROC) { 1242 while ((p->p_flag & P_STOPPED_SINGLE) != 0) { 1243 if ((p->p_flag2 & P2_WEXIT) != 0) 1244 return (1); 1245 msleep(&p->p_flag, &p->p_mtx, PCATCH, "thrsgl", 0); 1246 } 1247 if ((p->p_flag & (P_STOPPED_SIG | P_TRACED)) != 0 || 1248 (p->p_flag2 & P2_WEXIT) != 0) 1249 return (1); 1250 } else if ((p->p_flag & P_HADTHREADS) == 0) 1251 return (0); 1252 if (p->p_singlethread != NULL && p->p_singlethread != td) 1253 return (1); 1254 1255 if (mode == SINGLE_EXIT) { 1256 p->p_flag |= P_SINGLE_EXIT; 1257 p->p_flag &= ~P_SINGLE_BOUNDARY; 1258 } else { 1259 p->p_flag &= ~P_SINGLE_EXIT; 1260 if (mode == SINGLE_BOUNDARY) 1261 p->p_flag |= P_SINGLE_BOUNDARY; 1262 else 1263 p->p_flag &= ~P_SINGLE_BOUNDARY; 1264 } 1265 if (mode == SINGLE_ALLPROC) 1266 p->p_flag |= P_TOTAL_STOP; 1267 p->p_flag |= P_STOPPED_SINGLE; 1268 PROC_SLOCK(p); 1269 p->p_singlethread = td; 1270 remaining = calc_remaining(p, mode); 1271 while (remaining != remain_for_mode(mode)) { 1272 if (P_SHOULDSTOP(p) != P_STOPPED_SINGLE) 1273 goto stopme; 1274 FOREACH_THREAD_IN_PROC(p, td2) { 1275 if (td2 == td) 1276 continue; 1277 thread_lock(td2); 1278 ast_sched_locked(td2, TDA_SUSPEND); 1279 if (TD_IS_INHIBITED(td2)) { 1280 weed_inhib(mode, td2, p); 1281 #ifdef SMP 1282 } else if (TD_IS_RUNNING(td2)) { 1283 forward_signal(td2); 1284 thread_unlock(td2); 1285 #endif 1286 } else 1287 thread_unlock(td2); 1288 } 1289 remaining = calc_remaining(p, mode); 1290 1291 /* 1292 * Maybe we suspended some threads.. was it enough? 1293 */ 1294 if (remaining == remain_for_mode(mode)) 1295 break; 1296 1297 stopme: 1298 /* 1299 * Wake us up when everyone else has suspended. 1300 * In the mean time we suspend as well. 1301 */ 1302 thread_suspend_switch(td, p); 1303 remaining = calc_remaining(p, mode); 1304 } 1305 if (mode == SINGLE_EXIT) { 1306 /* 1307 * Convert the process to an unthreaded process. The 1308 * SINGLE_EXIT is called by exit1() or execve(), in 1309 * both cases other threads must be retired. 1310 */ 1311 KASSERT(p->p_numthreads == 1, ("Unthreading with >1 threads")); 1312 p->p_singlethread = NULL; 1313 p->p_flag &= ~(P_STOPPED_SINGLE | P_SINGLE_EXIT | P_HADTHREADS); 1314 1315 /* 1316 * Wait for any remaining threads to exit cpu_throw(). 1317 */ 1318 while (p->p_exitthreads != 0) { 1319 PROC_SUNLOCK(p); 1320 PROC_UNLOCK(p); 1321 sched_relinquish(td); 1322 PROC_LOCK(p); 1323 PROC_SLOCK(p); 1324 } 1325 } else if (mode == SINGLE_BOUNDARY) { 1326 /* 1327 * Wait until all suspended threads are removed from 1328 * the processors. The thread_suspend_check() 1329 * increments p_boundary_count while it is still 1330 * running, which makes it possible for the execve() 1331 * to destroy vmspace while our other threads are 1332 * still using the address space. 1333 * 1334 * We lock the thread, which is only allowed to 1335 * succeed after context switch code finished using 1336 * the address space. 1337 */ 1338 FOREACH_THREAD_IN_PROC(p, td2) { 1339 if (td2 == td) 1340 continue; 1341 thread_lock(td2); 1342 KASSERT((td2->td_flags & TDF_BOUNDARY) != 0, 1343 ("td %p not on boundary", td2)); 1344 KASSERT(TD_IS_SUSPENDED(td2), 1345 ("td %p is not suspended", td2)); 1346 thread_unlock(td2); 1347 } 1348 } 1349 PROC_SUNLOCK(p); 1350 return (0); 1351 } 1352 1353 bool 1354 thread_suspend_check_needed(void) 1355 { 1356 struct proc *p; 1357 struct thread *td; 1358 1359 td = curthread; 1360 p = td->td_proc; 1361 PROC_LOCK_ASSERT(p, MA_OWNED); 1362 return (P_SHOULDSTOP(p) || ((p->p_flag & P_TRACED) != 0 && 1363 (td->td_dbgflags & TDB_SUSPEND) != 0)); 1364 } 1365 1366 /* 1367 * Called in from locations that can safely check to see 1368 * whether we have to suspend or at least throttle for a 1369 * single-thread event (e.g. fork). 1370 * 1371 * Such locations include userret(). 1372 * If the "return_instead" argument is non zero, the thread must be able to 1373 * accept 0 (caller may continue), or 1 (caller must abort) as a result. 1374 * 1375 * The 'return_instead' argument tells the function if it may do a 1376 * thread_exit() or suspend, or whether the caller must abort and back 1377 * out instead. 1378 * 1379 * If the thread that set the single_threading request has set the 1380 * P_SINGLE_EXIT bit in the process flags then this call will never return 1381 * if 'return_instead' is false, but will exit. 1382 * 1383 * P_SINGLE_EXIT | return_instead == 0| return_instead != 0 1384 *---------------+--------------------+--------------------- 1385 * 0 | returns 0 | returns 0 or 1 1386 * | when ST ends | immediately 1387 *---------------+--------------------+--------------------- 1388 * 1 | thread exits | returns 1 1389 * | | immediately 1390 * 0 = thread_exit() or suspension ok, 1391 * other = return error instead of stopping the thread. 1392 * 1393 * While a full suspension is under effect, even a single threading 1394 * thread would be suspended if it made this call (but it shouldn't). 1395 * This call should only be made from places where 1396 * thread_exit() would be safe as that may be the outcome unless 1397 * return_instead is set. 1398 */ 1399 int 1400 thread_suspend_check(int return_instead) 1401 { 1402 struct thread *td; 1403 struct proc *p; 1404 1405 td = curthread; 1406 p = td->td_proc; 1407 mtx_assert(&Giant, MA_NOTOWNED); 1408 PROC_LOCK_ASSERT(p, MA_OWNED); 1409 while (thread_suspend_check_needed()) { 1410 if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE) { 1411 KASSERT(p->p_singlethread != NULL, 1412 ("singlethread not set")); 1413 /* 1414 * The only suspension in action is a 1415 * single-threading. Single threader need not stop. 1416 * It is safe to access p->p_singlethread unlocked 1417 * because it can only be set to our address by us. 1418 */ 1419 if (p->p_singlethread == td) 1420 return (0); /* Exempt from stopping. */ 1421 } 1422 if ((p->p_flag & P_SINGLE_EXIT) && return_instead) 1423 return (EINTR); 1424 1425 /* Should we goto user boundary if we didn't come from there? */ 1426 if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE && 1427 (p->p_flag & P_SINGLE_BOUNDARY) && return_instead) 1428 return (ERESTART); 1429 1430 /* 1431 * Ignore suspend requests if they are deferred. 1432 */ 1433 if ((td->td_flags & TDF_SBDRY) != 0) { 1434 KASSERT(return_instead, 1435 ("TDF_SBDRY set for unsafe thread_suspend_check")); 1436 KASSERT((td->td_flags & (TDF_SEINTR | TDF_SERESTART)) != 1437 (TDF_SEINTR | TDF_SERESTART), 1438 ("both TDF_SEINTR and TDF_SERESTART")); 1439 return (TD_SBDRY_INTR(td) ? TD_SBDRY_ERRNO(td) : 0); 1440 } 1441 1442 /* 1443 * If the process is waiting for us to exit, 1444 * this thread should just suicide. 1445 * Assumes that P_SINGLE_EXIT implies P_STOPPED_SINGLE. 1446 */ 1447 if ((p->p_flag & P_SINGLE_EXIT) && (p->p_singlethread != td)) { 1448 PROC_UNLOCK(p); 1449 1450 /* 1451 * Allow Linux emulation layer to do some work 1452 * before thread suicide. 1453 */ 1454 if (__predict_false(p->p_sysent->sv_thread_detach != NULL)) 1455 (p->p_sysent->sv_thread_detach)(td); 1456 umtx_thread_exit(td); 1457 kern_thr_exit(td); 1458 panic("stopped thread did not exit"); 1459 } 1460 1461 PROC_SLOCK(p); 1462 thread_stopped(p); 1463 if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE) { 1464 if (p->p_numthreads == p->p_suspcount + 1) { 1465 thread_lock(p->p_singlethread); 1466 thread_unsuspend_one(p->p_singlethread, p, 1467 false); 1468 } 1469 } 1470 PROC_UNLOCK(p); 1471 thread_lock(td); 1472 /* 1473 * When a thread suspends, it just 1474 * gets taken off all queues. 1475 */ 1476 thread_suspend_one(td); 1477 if (return_instead == 0) { 1478 p->p_boundary_count++; 1479 td->td_flags |= TDF_BOUNDARY; 1480 } 1481 PROC_SUNLOCK(p); 1482 mi_switch(SW_INVOL | SWT_SUSPEND); 1483 PROC_LOCK(p); 1484 } 1485 return (0); 1486 } 1487 1488 /* 1489 * Check for possible stops and suspensions while executing a 1490 * casueword or similar transiently failing operation. 1491 * 1492 * The sleep argument controls whether the function can handle a stop 1493 * request itself or it should return ERESTART and the request is 1494 * proceed at the kernel/user boundary in ast. 1495 * 1496 * Typically, when retrying due to casueword(9) failure (rv == 1), we 1497 * should handle the stop requests there, with exception of cases when 1498 * the thread owns a kernel resource, for instance busied the umtx 1499 * key, or when functions return immediately if thread_check_susp() 1500 * returned non-zero. On the other hand, retrying the whole lock 1501 * operation, we better not stop there but delegate the handling to 1502 * ast. 1503 * 1504 * If the request is for thread termination P_SINGLE_EXIT, we cannot 1505 * handle it at all, and simply return EINTR. 1506 */ 1507 int 1508 thread_check_susp(struct thread *td, bool sleep) 1509 { 1510 struct proc *p; 1511 int error; 1512 1513 /* 1514 * The check for TDA_SUSPEND is racy, but it is enough to 1515 * eventually break the lockstep loop. 1516 */ 1517 if (!td_ast_pending(td, TDA_SUSPEND)) 1518 return (0); 1519 error = 0; 1520 p = td->td_proc; 1521 PROC_LOCK(p); 1522 if (p->p_flag & P_SINGLE_EXIT) 1523 error = EINTR; 1524 else if (P_SHOULDSTOP(p) || 1525 ((p->p_flag & P_TRACED) && (td->td_dbgflags & TDB_SUSPEND))) 1526 error = sleep ? thread_suspend_check(0) : ERESTART; 1527 PROC_UNLOCK(p); 1528 return (error); 1529 } 1530 1531 void 1532 thread_suspend_switch(struct thread *td, struct proc *p) 1533 { 1534 1535 KASSERT(!TD_IS_SUSPENDED(td), ("already suspended")); 1536 PROC_LOCK_ASSERT(p, MA_OWNED); 1537 PROC_SLOCK_ASSERT(p, MA_OWNED); 1538 /* 1539 * We implement thread_suspend_one in stages here to avoid 1540 * dropping the proc lock while the thread lock is owned. 1541 */ 1542 if (p == td->td_proc) { 1543 thread_stopped(p); 1544 p->p_suspcount++; 1545 } 1546 PROC_UNLOCK(p); 1547 thread_lock(td); 1548 ast_unsched_locked(td, TDA_SUSPEND); 1549 TD_SET_SUSPENDED(td); 1550 sched_sleep(td, 0); 1551 PROC_SUNLOCK(p); 1552 DROP_GIANT(); 1553 mi_switch(SW_VOL | SWT_SUSPEND); 1554 PICKUP_GIANT(); 1555 PROC_LOCK(p); 1556 PROC_SLOCK(p); 1557 } 1558 1559 void 1560 thread_suspend_one(struct thread *td) 1561 { 1562 struct proc *p; 1563 1564 p = td->td_proc; 1565 PROC_SLOCK_ASSERT(p, MA_OWNED); 1566 THREAD_LOCK_ASSERT(td, MA_OWNED); 1567 KASSERT(!TD_IS_SUSPENDED(td), ("already suspended")); 1568 p->p_suspcount++; 1569 ast_unsched_locked(td, TDA_SUSPEND); 1570 TD_SET_SUSPENDED(td); 1571 sched_sleep(td, 0); 1572 } 1573 1574 static void 1575 thread_unsuspend_one(struct thread *td, struct proc *p, bool boundary) 1576 { 1577 1578 THREAD_LOCK_ASSERT(td, MA_OWNED); 1579 KASSERT(TD_IS_SUSPENDED(td), ("Thread not suspended")); 1580 TD_CLR_SUSPENDED(td); 1581 td->td_flags &= ~TDF_ALLPROCSUSP; 1582 if (td->td_proc == p) { 1583 PROC_SLOCK_ASSERT(p, MA_OWNED); 1584 p->p_suspcount--; 1585 if (boundary && (td->td_flags & TDF_BOUNDARY) != 0) { 1586 td->td_flags &= ~TDF_BOUNDARY; 1587 p->p_boundary_count--; 1588 } 1589 } 1590 setrunnable(td, 0); 1591 } 1592 1593 void 1594 thread_run_flash(struct thread *td) 1595 { 1596 struct proc *p; 1597 1598 p = td->td_proc; 1599 PROC_LOCK_ASSERT(p, MA_OWNED); 1600 1601 if (TD_ON_SLEEPQ(td)) 1602 sleepq_remove_nested(td); 1603 else 1604 thread_lock(td); 1605 1606 THREAD_LOCK_ASSERT(td, MA_OWNED); 1607 KASSERT(TD_IS_SUSPENDED(td), ("Thread not suspended")); 1608 1609 TD_CLR_SUSPENDED(td); 1610 PROC_SLOCK(p); 1611 MPASS(p->p_suspcount > 0); 1612 p->p_suspcount--; 1613 PROC_SUNLOCK(p); 1614 setrunnable(td, 0); 1615 } 1616 1617 /* 1618 * Allow all threads blocked by single threading to continue running. 1619 */ 1620 void 1621 thread_unsuspend(struct proc *p) 1622 { 1623 struct thread *td; 1624 1625 PROC_LOCK_ASSERT(p, MA_OWNED); 1626 PROC_SLOCK_ASSERT(p, MA_OWNED); 1627 if (!P_SHOULDSTOP(p)) { 1628 FOREACH_THREAD_IN_PROC(p, td) { 1629 thread_lock(td); 1630 if (TD_IS_SUSPENDED(td)) 1631 thread_unsuspend_one(td, p, true); 1632 else 1633 thread_unlock(td); 1634 } 1635 } else if (P_SHOULDSTOP(p) == P_STOPPED_SINGLE && 1636 p->p_numthreads == p->p_suspcount) { 1637 /* 1638 * Stopping everything also did the job for the single 1639 * threading request. Now we've downgraded to single-threaded, 1640 * let it continue. 1641 */ 1642 if (p->p_singlethread->td_proc == p) { 1643 thread_lock(p->p_singlethread); 1644 thread_unsuspend_one(p->p_singlethread, p, false); 1645 } 1646 } 1647 } 1648 1649 /* 1650 * End the single threading mode.. 1651 */ 1652 void 1653 thread_single_end(struct proc *p, int mode) 1654 { 1655 struct thread *td; 1656 1657 KASSERT(mode == SINGLE_EXIT || mode == SINGLE_BOUNDARY || 1658 mode == SINGLE_ALLPROC || mode == SINGLE_NO_EXIT, 1659 ("invalid mode %d", mode)); 1660 PROC_LOCK_ASSERT(p, MA_OWNED); 1661 KASSERT((mode == SINGLE_ALLPROC && (p->p_flag & P_TOTAL_STOP) != 0) || 1662 (mode != SINGLE_ALLPROC && (p->p_flag & P_TOTAL_STOP) == 0), 1663 ("mode %d does not match P_TOTAL_STOP", mode)); 1664 KASSERT(mode == SINGLE_ALLPROC || p->p_singlethread == curthread, 1665 ("thread_single_end from other thread %p %p", 1666 curthread, p->p_singlethread)); 1667 KASSERT(mode != SINGLE_BOUNDARY || 1668 (p->p_flag & P_SINGLE_BOUNDARY) != 0, 1669 ("mis-matched SINGLE_BOUNDARY flags %x", p->p_flag)); 1670 p->p_flag &= ~(P_STOPPED_SINGLE | P_SINGLE_EXIT | P_SINGLE_BOUNDARY | 1671 P_TOTAL_STOP); 1672 PROC_SLOCK(p); 1673 p->p_singlethread = NULL; 1674 1675 /* 1676 * If there are other threads they may now run, 1677 * unless of course there is a blanket 'stop order' 1678 * on the process. The single threader must be allowed 1679 * to continue however as this is a bad place to stop. 1680 */ 1681 if (p->p_numthreads != remain_for_mode(mode) && !P_SHOULDSTOP(p)) { 1682 FOREACH_THREAD_IN_PROC(p, td) { 1683 thread_lock(td); 1684 if (TD_IS_SUSPENDED(td)) 1685 thread_unsuspend_one(td, p, true); 1686 else 1687 thread_unlock(td); 1688 } 1689 } 1690 KASSERT(mode != SINGLE_BOUNDARY || p->p_boundary_count == 0, 1691 ("inconsistent boundary count %d", p->p_boundary_count)); 1692 PROC_SUNLOCK(p); 1693 wakeup(&p->p_flag); 1694 } 1695 1696 /* 1697 * Locate a thread by number and return with proc lock held. 1698 * 1699 * thread exit establishes proc -> tidhash lock ordering, but lookup 1700 * takes tidhash first and needs to return locked proc. 1701 * 1702 * The problem is worked around by relying on type-safety of both 1703 * structures and doing the work in 2 steps: 1704 * - tidhash-locked lookup which saves both thread and proc pointers 1705 * - proc-locked verification that the found thread still matches 1706 */ 1707 static bool 1708 tdfind_hash(lwpid_t tid, pid_t pid, struct proc **pp, struct thread **tdp) 1709 { 1710 #define RUN_THRESH 16 1711 struct proc *p; 1712 struct thread *td; 1713 int run; 1714 bool locked; 1715 1716 run = 0; 1717 rw_rlock(TIDHASHLOCK(tid)); 1718 locked = true; 1719 LIST_FOREACH(td, TIDHASH(tid), td_hash) { 1720 if (td->td_tid != tid) { 1721 run++; 1722 continue; 1723 } 1724 p = td->td_proc; 1725 if (pid != -1 && p->p_pid != pid) { 1726 td = NULL; 1727 break; 1728 } 1729 if (run > RUN_THRESH) { 1730 if (rw_try_upgrade(TIDHASHLOCK(tid))) { 1731 LIST_REMOVE(td, td_hash); 1732 LIST_INSERT_HEAD(TIDHASH(td->td_tid), 1733 td, td_hash); 1734 rw_wunlock(TIDHASHLOCK(tid)); 1735 locked = false; 1736 break; 1737 } 1738 } 1739 break; 1740 } 1741 if (locked) 1742 rw_runlock(TIDHASHLOCK(tid)); 1743 if (td == NULL) 1744 return (false); 1745 *pp = p; 1746 *tdp = td; 1747 return (true); 1748 } 1749 1750 struct thread * 1751 tdfind(lwpid_t tid, pid_t pid) 1752 { 1753 struct proc *p; 1754 struct thread *td; 1755 1756 td = curthread; 1757 if (td->td_tid == tid) { 1758 if (pid != -1 && td->td_proc->p_pid != pid) 1759 return (NULL); 1760 PROC_LOCK(td->td_proc); 1761 return (td); 1762 } 1763 1764 for (;;) { 1765 if (!tdfind_hash(tid, pid, &p, &td)) 1766 return (NULL); 1767 PROC_LOCK(p); 1768 if (td->td_tid != tid) { 1769 PROC_UNLOCK(p); 1770 continue; 1771 } 1772 if (td->td_proc != p) { 1773 PROC_UNLOCK(p); 1774 continue; 1775 } 1776 if (p->p_state == PRS_NEW) { 1777 PROC_UNLOCK(p); 1778 return (NULL); 1779 } 1780 return (td); 1781 } 1782 } 1783 1784 void 1785 tidhash_add(struct thread *td) 1786 { 1787 rw_wlock(TIDHASHLOCK(td->td_tid)); 1788 LIST_INSERT_HEAD(TIDHASH(td->td_tid), td, td_hash); 1789 rw_wunlock(TIDHASHLOCK(td->td_tid)); 1790 } 1791 1792 void 1793 tidhash_remove(struct thread *td) 1794 { 1795 1796 rw_wlock(TIDHASHLOCK(td->td_tid)); 1797 LIST_REMOVE(td, td_hash); 1798 rw_wunlock(TIDHASHLOCK(td->td_tid)); 1799 } 1800