1 /* 2 * Copyright (c) 1982, 1986, 1989, 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * (c) UNIX System Laboratories, Inc. 5 * All or some portions of this file are derived from material licensed 6 * to the University of California by American Telephone and Telegraph 7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 8 * the permission of UNIX System Laboratories, Inc. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 3. All advertising materials mentioning features or use of this software 19 * must display the following acknowledgement: 20 * This product includes software developed by the University of 21 * California, Berkeley and its contributors. 22 * 4. Neither the name of the University nor the names of its contributors 23 * may be used to endorse or promote products derived from this software 24 * without specific prior written permission. 25 * 26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 36 * SUCH DAMAGE. 37 * 38 * @(#)kern_fork.c 8.6 (Berkeley) 4/8/94 39 * $FreeBSD$ 40 */ 41 42 #include "opt_ktrace.h" 43 44 #include <sys/param.h> 45 #include <sys/systm.h> 46 #include <sys/sysproto.h> 47 #include <sys/filedesc.h> 48 #include <sys/kernel.h> 49 #include <sys/sysctl.h> 50 #include <sys/lock.h> 51 #include <sys/malloc.h> 52 #include <sys/mutex.h> 53 #include <sys/proc.h> 54 #include <sys/resourcevar.h> 55 #include <sys/syscall.h> 56 #include <sys/vnode.h> 57 #include <sys/acct.h> 58 #include <sys/ktr.h> 59 #include <sys/ktrace.h> 60 #include <sys/kthread.h> 61 #include <sys/unistd.h> 62 #include <sys/jail.h> 63 #include <sys/sx.h> 64 65 #include <vm/vm.h> 66 #include <vm/pmap.h> 67 #include <vm/vm_map.h> 68 #include <vm/vm_extern.h> 69 #include <vm/uma.h> 70 71 #include <sys/vmmeter.h> 72 #include <sys/user.h> 73 #include <machine/critical.h> 74 75 static MALLOC_DEFINE(M_ATFORK, "atfork", "atfork callback"); 76 77 /* 78 * These are the stuctures used to create a callout list for things to do 79 * when forking a process 80 */ 81 struct forklist { 82 forklist_fn function; 83 TAILQ_ENTRY(forklist) next; 84 }; 85 86 static struct sx fork_list_lock; 87 88 TAILQ_HEAD(forklist_head, forklist); 89 static struct forklist_head fork_list = TAILQ_HEAD_INITIALIZER(fork_list); 90 91 #ifndef _SYS_SYSPROTO_H_ 92 struct fork_args { 93 int dummy; 94 }; 95 #endif 96 97 int forksleep; /* Place for fork1() to sleep on. */ 98 99 static void 100 init_fork_list(void *data __unused) 101 { 102 103 sx_init(&fork_list_lock, "fork list"); 104 } 105 SYSINIT(fork_list, SI_SUB_INTRINSIC, SI_ORDER_ANY, init_fork_list, NULL); 106 107 /* 108 * MPSAFE 109 */ 110 /* ARGSUSED */ 111 int 112 fork(td, uap) 113 struct thread *td; 114 struct fork_args *uap; 115 { 116 int error; 117 struct proc *p2; 118 119 mtx_lock(&Giant); 120 error = fork1(td, RFFDG | RFPROC, &p2); 121 if (error == 0) { 122 td->td_retval[0] = p2->p_pid; 123 td->td_retval[1] = 0; 124 } 125 mtx_unlock(&Giant); 126 return error; 127 } 128 129 /* 130 * MPSAFE 131 */ 132 /* ARGSUSED */ 133 int 134 vfork(td, uap) 135 struct thread *td; 136 struct vfork_args *uap; 137 { 138 int error; 139 struct proc *p2; 140 141 mtx_lock(&Giant); 142 error = fork1(td, RFFDG | RFPROC | RFPPWAIT | RFMEM, &p2); 143 if (error == 0) { 144 td->td_retval[0] = p2->p_pid; 145 td->td_retval[1] = 0; 146 } 147 mtx_unlock(&Giant); 148 return error; 149 } 150 151 /* 152 * MPSAFE 153 */ 154 int 155 rfork(td, uap) 156 struct thread *td; 157 struct rfork_args *uap; 158 { 159 int error; 160 struct proc *p2; 161 162 /* Don't allow kernel only flags. */ 163 if ((uap->flags & RFKERNELONLY) != 0) 164 return (EINVAL); 165 mtx_lock(&Giant); 166 error = fork1(td, uap->flags, &p2); 167 if (error == 0) { 168 td->td_retval[0] = p2 ? p2->p_pid : 0; 169 td->td_retval[1] = 0; 170 } 171 mtx_unlock(&Giant); 172 return error; 173 } 174 175 176 int nprocs = 1; /* process 0 */ 177 int lastpid = 0; 178 SYSCTL_INT(_kern, OID_AUTO, lastpid, CTLFLAG_RD, &lastpid, 0, 179 "Last used PID"); 180 181 /* 182 * Random component to lastpid generation. We mix in a random factor to make 183 * it a little harder to predict. We sanity check the modulus value to avoid 184 * doing it in critical paths. Don't let it be too small or we pointlessly 185 * waste randomness entropy, and don't let it be impossibly large. Using a 186 * modulus that is too big causes a LOT more process table scans and slows 187 * down fork processing as the pidchecked caching is defeated. 188 */ 189 static int randompid = 0; 190 191 static int 192 sysctl_kern_randompid(SYSCTL_HANDLER_ARGS) 193 { 194 int error, pid; 195 196 sx_xlock(&allproc_lock); 197 pid = randompid; 198 error = sysctl_handle_int(oidp, &pid, 0, req); 199 if (error == 0 && req->newptr != NULL) { 200 if (pid < 0 || pid > PID_MAX - 100) /* out of range */ 201 pid = PID_MAX - 100; 202 else if (pid < 2) /* NOP */ 203 pid = 0; 204 else if (pid < 100) /* Make it reasonable */ 205 pid = 100; 206 randompid = pid; 207 } 208 sx_xunlock(&allproc_lock); 209 return (error); 210 } 211 212 SYSCTL_PROC(_kern, OID_AUTO, randompid, CTLTYPE_INT|CTLFLAG_RW, 213 0, 0, sysctl_kern_randompid, "I", "Random PID modulus"); 214 215 #if 0 216 void 217 kse_init(struct kse *kse1, struct kse *kse2) 218 { 219 } 220 221 void 222 thread_init(struct thread *thread1, struct thread *thread2) 223 { 224 } 225 226 void 227 ksegrp_init(struct ksegrp *ksegrp1, struct ksegrp *ksegrp2) 228 { 229 } 230 #endif 231 232 int 233 fork1(td, flags, procp) 234 struct thread *td; /* parent proc */ 235 int flags; 236 struct proc **procp; /* child proc */ 237 { 238 struct proc *p2, *pptr; 239 uid_t uid; 240 struct proc *newproc; 241 int trypid; 242 int ok; 243 static int pidchecked = 0; 244 struct forklist *ep; 245 struct filedesc *fd; 246 struct proc *p1 = td->td_proc; 247 struct thread *td2; 248 struct kse *ke2; 249 struct ksegrp *kg2; 250 struct sigacts *newsigacts; 251 struct procsig *newprocsig; 252 253 GIANT_REQUIRED; 254 255 /* Can't copy and clear */ 256 if ((flags & (RFFDG|RFCFDG)) == (RFFDG|RFCFDG)) 257 return (EINVAL); 258 259 /* 260 * Here we don't create a new process, but we divorce 261 * certain parts of a process from itself. 262 */ 263 if ((flags & RFPROC) == 0) { 264 vm_forkproc(td, NULL, NULL, flags); 265 266 /* 267 * Close all file descriptors. 268 */ 269 if (flags & RFCFDG) { 270 struct filedesc *fdtmp; 271 fdtmp = fdinit(td); /* XXXKSE */ 272 PROC_LOCK(p1); 273 fdfree(td); /* XXXKSE */ 274 p1->p_fd = fdtmp; 275 PROC_UNLOCK(p1); 276 } 277 278 /* 279 * Unshare file descriptors (from parent.) 280 */ 281 if (flags & RFFDG) { 282 FILEDESC_LOCK(p1->p_fd); 283 if (p1->p_fd->fd_refcnt > 1) { 284 struct filedesc *newfd; 285 286 newfd = fdcopy(td); 287 FILEDESC_UNLOCK(p1->p_fd); 288 PROC_LOCK(p1); 289 fdfree(td); 290 p1->p_fd = newfd; 291 PROC_UNLOCK(p1); 292 } else 293 FILEDESC_UNLOCK(p1->p_fd); 294 } 295 *procp = NULL; 296 return (0); 297 } 298 299 /* Allocate new proc. */ 300 newproc = uma_zalloc(proc_zone, M_WAITOK); 301 302 /* 303 * Although process entries are dynamically created, we still keep 304 * a global limit on the maximum number we will create. Don't allow 305 * a nonprivileged user to use the last process; don't let root 306 * exceed the limit. The variable nprocs is the current number of 307 * processes, maxproc is the limit. 308 */ 309 sx_xlock(&allproc_lock); 310 uid = td->td_ucred->cr_ruid; 311 if ((nprocs >= maxproc - 10 && uid != 0) || nprocs >= maxproc) { 312 sx_xunlock(&allproc_lock); 313 uma_zfree(proc_zone, newproc); 314 tsleep(&forksleep, PUSER, "fork", hz / 2); 315 return (EAGAIN); 316 } 317 /* 318 * Increment the count of procs running with this uid. Don't allow 319 * a nonprivileged user to exceed their current limit. 320 */ 321 PROC_LOCK(p1); 322 ok = chgproccnt(td->td_ucred->cr_ruidinfo, 1, 323 (uid != 0) ? p1->p_rlimit[RLIMIT_NPROC].rlim_cur : 0); 324 PROC_UNLOCK(p1); 325 if (!ok) { 326 sx_xunlock(&allproc_lock); 327 uma_zfree(proc_zone, newproc); 328 tsleep(&forksleep, PUSER, "fork", hz / 2); 329 return (EAGAIN); 330 } 331 332 /* 333 * Increment the nprocs resource before blocking can occur. There 334 * are hard-limits as to the number of processes that can run. 335 */ 336 nprocs++; 337 338 /* 339 * Find an unused process ID. We remember a range of unused IDs 340 * ready to use (from lastpid+1 through pidchecked-1). 341 * 342 * If RFHIGHPID is set (used during system boot), do not allocate 343 * low-numbered pids. 344 */ 345 trypid = lastpid + 1; 346 if (flags & RFHIGHPID) { 347 if (trypid < 10) { 348 trypid = 10; 349 } 350 } else { 351 if (randompid) 352 trypid += arc4random() % randompid; 353 } 354 retry: 355 /* 356 * If the process ID prototype has wrapped around, 357 * restart somewhat above 0, as the low-numbered procs 358 * tend to include daemons that don't exit. 359 */ 360 if (trypid >= PID_MAX) { 361 trypid = trypid % PID_MAX; 362 if (trypid < 100) 363 trypid += 100; 364 pidchecked = 0; 365 } 366 if (trypid >= pidchecked) { 367 int doingzomb = 0; 368 369 pidchecked = PID_MAX; 370 /* 371 * Scan the active and zombie procs to check whether this pid 372 * is in use. Remember the lowest pid that's greater 373 * than trypid, so we can avoid checking for a while. 374 */ 375 p2 = LIST_FIRST(&allproc); 376 again: 377 for (; p2 != NULL; p2 = LIST_NEXT(p2, p_list)) { 378 PROC_LOCK(p2); 379 while (p2->p_pid == trypid || 380 p2->p_pgrp->pg_id == trypid || 381 p2->p_session->s_sid == trypid) { 382 trypid++; 383 if (trypid >= pidchecked) { 384 PROC_UNLOCK(p2); 385 goto retry; 386 } 387 } 388 if (p2->p_pid > trypid && pidchecked > p2->p_pid) 389 pidchecked = p2->p_pid; 390 if (p2->p_pgrp->pg_id > trypid && 391 pidchecked > p2->p_pgrp->pg_id) 392 pidchecked = p2->p_pgrp->pg_id; 393 if (p2->p_session->s_sid > trypid && 394 pidchecked > p2->p_session->s_sid) 395 pidchecked = p2->p_session->s_sid; 396 PROC_UNLOCK(p2); 397 } 398 if (!doingzomb) { 399 doingzomb = 1; 400 p2 = LIST_FIRST(&zombproc); 401 goto again; 402 } 403 } 404 405 /* 406 * RFHIGHPID does not mess with the lastpid counter during boot. 407 */ 408 if (flags & RFHIGHPID) 409 pidchecked = 0; 410 else 411 lastpid = trypid; 412 413 p2 = newproc; 414 p2->p_stat = SIDL; /* protect against others */ 415 p2->p_pid = trypid; 416 LIST_INSERT_HEAD(&allproc, p2, p_list); 417 LIST_INSERT_HEAD(PIDHASH(p2->p_pid), p2, p_hash); 418 sx_xunlock(&allproc_lock); 419 420 /* 421 * Malloc things while we don't hold any locks. 422 */ 423 if (flags & RFSIGSHARE) { 424 MALLOC(newsigacts, struct sigacts *, 425 sizeof(struct sigacts), M_SUBPROC, M_WAITOK); 426 newprocsig = NULL; 427 } else { 428 newsigacts = NULL; 429 MALLOC(newprocsig, struct procsig *, sizeof(struct procsig), 430 M_SUBPROC, M_WAITOK); 431 } 432 433 /* 434 * Copy filedesc. 435 * XXX: This is busted. fd*() need to not take proc 436 * arguments or something. 437 */ 438 if (flags & RFCFDG) 439 fd = fdinit(td); 440 else if (flags & RFFDG) { 441 FILEDESC_LOCK(p1->p_fd); 442 fd = fdcopy(td); 443 FILEDESC_UNLOCK(p1->p_fd); 444 } else 445 fd = fdshare(p1); 446 447 /* 448 * Make a proc table entry for the new process. 449 * Start by zeroing the section of proc that is zero-initialized, 450 * then copy the section that is copied directly from the parent. 451 */ 452 td2 = thread_get(p2); 453 ke2 = &p2->p_kse; 454 kg2 = &p2->p_ksegrp; 455 456 #define RANGEOF(type, start, end) (offsetof(type, end) - offsetof(type, start)) 457 458 bzero(&p2->p_startzero, 459 (unsigned) RANGEOF(struct proc, p_startzero, p_endzero)); 460 bzero(&ke2->ke_startzero, 461 (unsigned) RANGEOF(struct kse, ke_startzero, ke_endzero)); 462 bzero(&td2->td_startzero, 463 (unsigned) RANGEOF(struct thread, td_startzero, td_endzero)); 464 bzero(&kg2->kg_startzero, 465 (unsigned) RANGEOF(struct ksegrp, kg_startzero, kg_endzero)); 466 467 mtx_init(&p2->p_mtx, "process lock", NULL, MTX_DEF | MTX_DUPOK); 468 PROC_LOCK(p2); 469 PROC_LOCK(p1); 470 471 bcopy(&p1->p_startcopy, &p2->p_startcopy, 472 (unsigned) RANGEOF(struct proc, p_startcopy, p_endcopy)); 473 bcopy(&td->td_kse->ke_startcopy, &ke2->ke_startcopy, 474 (unsigned) RANGEOF(struct kse, ke_startcopy, ke_endcopy)); 475 bcopy(&td->td_startcopy, &td2->td_startcopy, 476 (unsigned) RANGEOF(struct thread, td_startcopy, td_endcopy)); 477 bcopy(&td->td_ksegrp->kg_startcopy, &kg2->kg_startcopy, 478 (unsigned) RANGEOF(struct ksegrp, kg_startcopy, kg_endcopy)); 479 #undef RANGEOF 480 481 /* 482 * XXXKSE Theoretically only the running thread would get copied 483 * Others in the kernel would be 'aborted' in the child. 484 * i.e return E*something* 485 */ 486 proc_linkup(p2, kg2, ke2, td2); 487 488 /* note.. XXXKSE no pcb or u-area yet */ 489 490 /* 491 * Duplicate sub-structures as needed. 492 * Increase reference counts on shared objects. 493 * The p_stats and p_sigacts substructs are set in vm_forkproc. 494 */ 495 p2->p_flag = 0; 496 mtx_lock_spin(&sched_lock); 497 p2->p_sflag = PS_INMEM; 498 if (p1->p_sflag & PS_PROFIL) 499 startprofclock(p2); 500 mtx_unlock_spin(&sched_lock); 501 p2->p_ucred = crhold(td->td_ucred); 502 td2->td_ucred = crhold(p2->p_ucred); /* XXXKSE */ 503 504 /* 505 * Setup linkage for kernel based threading 506 */ 507 if((flags & RFTHREAD) != 0) { 508 /* 509 * XXX: This assumes a leader is a parent or grandparent of 510 * all processes in a task. 511 */ 512 if (p1->p_leader != p1) 513 PROC_LOCK(p1->p_leader); 514 p2->p_peers = p1->p_peers; 515 p1->p_peers = p2; 516 p2->p_leader = p1->p_leader; 517 if (p1->p_leader != p1) 518 PROC_UNLOCK(p1->p_leader); 519 } else { 520 p2->p_peers = NULL; 521 p2->p_leader = p2; 522 } 523 524 pargs_hold(p2->p_args); 525 526 if (flags & RFSIGSHARE) { 527 p2->p_procsig = p1->p_procsig; 528 p2->p_procsig->ps_refcnt++; 529 if (p1->p_sigacts == &p1->p_uarea->u_sigacts) { 530 /* 531 * Set p_sigacts to the new shared structure. 532 * Note that this is updating p1->p_sigacts at the 533 * same time, since p_sigacts is just a pointer to 534 * the shared p_procsig->ps_sigacts. 535 */ 536 p2->p_sigacts = newsigacts; 537 newsigacts = NULL; 538 *p2->p_sigacts = p1->p_uarea->u_sigacts; 539 } 540 } else { 541 p2->p_procsig = newprocsig; 542 newprocsig = NULL; 543 bcopy(p1->p_procsig, p2->p_procsig, sizeof(*p2->p_procsig)); 544 p2->p_procsig->ps_refcnt = 1; 545 p2->p_sigacts = NULL; /* finished in vm_forkproc() */ 546 } 547 if (flags & RFLINUXTHPN) 548 p2->p_sigparent = SIGUSR1; 549 else 550 p2->p_sigparent = SIGCHLD; 551 552 /* Bump references to the text vnode (for procfs) */ 553 p2->p_textvp = p1->p_textvp; 554 if (p2->p_textvp) 555 VREF(p2->p_textvp); 556 p2->p_fd = fd; 557 PROC_UNLOCK(p1); 558 PROC_UNLOCK(p2); 559 560 /* 561 * If p_limit is still copy-on-write, bump refcnt, 562 * otherwise get a copy that won't be modified. 563 * (If PL_SHAREMOD is clear, the structure is shared 564 * copy-on-write.) 565 */ 566 if (p1->p_limit->p_lflags & PL_SHAREMOD) 567 p2->p_limit = limcopy(p1->p_limit); 568 else { 569 p2->p_limit = p1->p_limit; 570 p2->p_limit->p_refcnt++; 571 } 572 573 sx_xlock(&proctree_lock); 574 PGRP_LOCK(p1->p_pgrp); 575 PROC_LOCK(p2); 576 PROC_LOCK(p1); 577 578 /* 579 * Preserve some more flags in subprocess. PS_PROFIL has already 580 * been preserved. 581 */ 582 p2->p_flag |= p1->p_flag & (P_SUGID | P_ALTSTACK); 583 SESS_LOCK(p1->p_session); 584 if (p1->p_session->s_ttyvp != NULL && p1->p_flag & P_CONTROLT) 585 p2->p_flag |= P_CONTROLT; 586 SESS_UNLOCK(p1->p_session); 587 if (flags & RFPPWAIT) 588 p2->p_flag |= P_PPWAIT; 589 590 LIST_INSERT_AFTER(p1, p2, p_pglist); 591 PGRP_UNLOCK(p1->p_pgrp); 592 LIST_INIT(&p2->p_children); 593 LIST_INIT(&td2->td_contested); /* XXXKSE only 1 thread? */ 594 595 callout_init(&p2->p_itcallout, 0); 596 callout_init(&td2->td_slpcallout, 1); /* XXXKSE */ 597 598 #ifdef KTRACE 599 /* 600 * Copy traceflag and tracefile if enabled. If not inherited, 601 * these were zeroed above but we still could have a trace race 602 * so make sure p2's p_tracep is NULL. 603 */ 604 if ((p1->p_traceflag & KTRFAC_INHERIT) && p2->p_tracep == NULL) { 605 p2->p_traceflag = p1->p_traceflag; 606 if ((p2->p_tracep = p1->p_tracep) != NULL) 607 VREF(p2->p_tracep); 608 } 609 #endif 610 611 /* 612 * set priority of child to be that of parent 613 * XXXKSE hey! copying the estcpu seems dodgy.. should split it.. 614 */ 615 mtx_lock_spin(&sched_lock); 616 p2->p_ksegrp.kg_estcpu = p1->p_ksegrp.kg_estcpu; 617 mtx_unlock_spin(&sched_lock); 618 619 /* 620 * This begins the section where we must prevent the parent 621 * from being swapped. 622 */ 623 _PHOLD(p1); 624 PROC_UNLOCK(p1); 625 626 /* 627 * Attach the new process to its parent. 628 * 629 * If RFNOWAIT is set, the newly created process becomes a child 630 * of init. This effectively disassociates the child from the 631 * parent. 632 */ 633 if (flags & RFNOWAIT) 634 pptr = initproc; 635 else 636 pptr = p1; 637 p2->p_pptr = pptr; 638 LIST_INSERT_HEAD(&pptr->p_children, p2, p_sibling); 639 PROC_UNLOCK(p2); 640 sx_xunlock(&proctree_lock); 641 642 /* 643 * XXXKSE: In KSE, there would be a race here if one thread was 644 * dieing due to a signal (or calling exit1() for that matter) while 645 * another thread was calling fork1(). Not sure how KSE wants to work 646 * around that. The problem is that up until the point above, if p1 647 * gets killed, it won't find p2 in its list in order for it to be 648 * reparented. Alternatively, we could add a new p_flag that gets set 649 * before we reparent all the children that we check above and just 650 * use init as our parent if that if that flag is set. (Either that 651 * or abort the fork if the flag is set since our parent died trying 652 * to fork us (which is evil)). 653 */ 654 655 KASSERT(newprocsig == NULL, ("unused newprocsig")); 656 if (newsigacts != NULL) 657 FREE(newsigacts, M_SUBPROC); 658 /* 659 * Finish creating the child process. It will return via a different 660 * execution path later. (ie: directly into user mode) 661 */ 662 vm_forkproc(td, p2, td2, flags); 663 664 if (flags == (RFFDG | RFPROC)) { 665 cnt.v_forks++; 666 cnt.v_forkpages += p2->p_vmspace->vm_dsize + 667 p2->p_vmspace->vm_ssize; 668 } else if (flags == (RFFDG | RFPROC | RFPPWAIT | RFMEM)) { 669 cnt.v_vforks++; 670 cnt.v_vforkpages += p2->p_vmspace->vm_dsize + 671 p2->p_vmspace->vm_ssize; 672 } else if (p1 == &proc0) { 673 cnt.v_kthreads++; 674 cnt.v_kthreadpages += p2->p_vmspace->vm_dsize + 675 p2->p_vmspace->vm_ssize; 676 } else { 677 cnt.v_rforks++; 678 cnt.v_rforkpages += p2->p_vmspace->vm_dsize + 679 p2->p_vmspace->vm_ssize; 680 } 681 682 /* 683 * Both processes are set up, now check if any loadable modules want 684 * to adjust anything. 685 * What if they have an error? XXX 686 */ 687 sx_slock(&fork_list_lock); 688 TAILQ_FOREACH(ep, &fork_list, next) { 689 (*ep->function)(p1, p2, flags); 690 } 691 sx_sunlock(&fork_list_lock); 692 693 /* 694 * If RFSTOPPED not requested, make child runnable and add to 695 * run queue. 696 */ 697 microtime(&(p2->p_stats->p_start)); 698 p2->p_acflag = AFORK; 699 if ((flags & RFSTOPPED) == 0) { 700 mtx_lock_spin(&sched_lock); 701 p2->p_stat = SRUN; 702 setrunqueue(td2); 703 mtx_unlock_spin(&sched_lock); 704 } 705 706 /* 707 * Now can be swapped. 708 */ 709 PROC_LOCK(p1); 710 _PRELE(p1); 711 712 /* 713 * tell any interested parties about the new process 714 */ 715 KNOTE(&p1->p_klist, NOTE_FORK | p2->p_pid); 716 PROC_UNLOCK(p1); 717 718 /* 719 * Preserve synchronization semantics of vfork. If waiting for 720 * child to exec or exit, set P_PPWAIT on child, and sleep on our 721 * proc (in case of exit). 722 */ 723 PROC_LOCK(p2); 724 while (p2->p_flag & P_PPWAIT) 725 msleep(p1, &p2->p_mtx, PWAIT, "ppwait", 0); 726 PROC_UNLOCK(p2); 727 728 /* 729 * Return child proc pointer to parent. 730 */ 731 *procp = p2; 732 return (0); 733 } 734 735 /* 736 * The next two functionms are general routines to handle adding/deleting 737 * items on the fork callout list. 738 * 739 * at_fork(): 740 * Take the arguments given and put them onto the fork callout list, 741 * However first make sure that it's not already there. 742 * Returns 0 on success or a standard error number. 743 */ 744 745 int 746 at_fork(function) 747 forklist_fn function; 748 { 749 struct forklist *ep; 750 751 #ifdef INVARIANTS 752 /* let the programmer know if he's been stupid */ 753 if (rm_at_fork(function)) 754 printf("WARNING: fork callout entry (%p) already present\n", 755 function); 756 #endif 757 ep = malloc(sizeof(*ep), M_ATFORK, M_NOWAIT); 758 if (ep == NULL) 759 return (ENOMEM); 760 ep->function = function; 761 sx_xlock(&fork_list_lock); 762 TAILQ_INSERT_TAIL(&fork_list, ep, next); 763 sx_xunlock(&fork_list_lock); 764 return (0); 765 } 766 767 /* 768 * Scan the exit callout list for the given item and remove it.. 769 * Returns the number of items removed (0 or 1) 770 */ 771 772 int 773 rm_at_fork(function) 774 forklist_fn function; 775 { 776 struct forklist *ep; 777 778 sx_xlock(&fork_list_lock); 779 TAILQ_FOREACH(ep, &fork_list, next) { 780 if (ep->function == function) { 781 TAILQ_REMOVE(&fork_list, ep, next); 782 sx_xunlock(&fork_list_lock); 783 free(ep, M_ATFORK); 784 return(1); 785 } 786 } 787 sx_xunlock(&fork_list_lock); 788 return (0); 789 } 790 791 /* 792 * Handle the return of a child process from fork1(). This function 793 * is called from the MD fork_trampoline() entry point. 794 */ 795 void 796 fork_exit(callout, arg, frame) 797 void (*callout)(void *, struct trapframe *); 798 void *arg; 799 struct trapframe *frame; 800 { 801 struct thread *td = curthread; 802 struct proc *p = td->td_proc; 803 804 td->td_kse->ke_oncpu = PCPU_GET(cpuid); 805 /* 806 * Finish setting up thread glue. We need to initialize 807 * the thread into a td_critnest=1 state. Some platforms 808 * may have already partially or fully initialized td_critnest 809 * and/or td_md.md_savecrit (when applciable). 810 * 811 * see <arch>/<arch>/critical.c 812 */ 813 sched_lock.mtx_lock = (uintptr_t)td; 814 sched_lock.mtx_recurse = 0; 815 cpu_critical_fork_exit(); 816 CTR3(KTR_PROC, "fork_exit: new proc %p (pid %d, %s)", p, p->p_pid, 817 p->p_comm); 818 if (PCPU_GET(switchtime.sec) == 0) 819 binuptime(PCPU_PTR(switchtime)); 820 PCPU_SET(switchticks, ticks); 821 mtx_unlock_spin(&sched_lock); 822 823 /* 824 * cpu_set_fork_handler intercepts this function call to 825 * have this call a non-return function to stay in kernel mode. 826 * initproc has its own fork handler, but it does return. 827 */ 828 KASSERT(callout != NULL, ("NULL callout in fork_exit")); 829 callout(arg, frame); 830 831 /* 832 * Check if a kernel thread misbehaved and returned from its main 833 * function. 834 */ 835 PROC_LOCK(p); 836 if (p->p_flag & P_KTHREAD) { 837 PROC_UNLOCK(p); 838 mtx_lock(&Giant); 839 printf("Kernel thread \"%s\" (pid %d) exited prematurely.\n", 840 p->p_comm, p->p_pid); 841 kthread_exit(0); 842 } 843 PROC_UNLOCK(p); 844 #ifdef DIAGNOSTIC 845 cred_free_thread(td); 846 #endif 847 mtx_assert(&Giant, MA_NOTOWNED); 848 } 849 850 /* 851 * Simplified back end of syscall(), used when returning from fork() 852 * directly into user mode. Giant is not held on entry, and must not 853 * be held on return. This function is passed in to fork_exit() as the 854 * first parameter and is called when returning to a new userland process. 855 */ 856 void 857 fork_return(td, frame) 858 struct thread *td; 859 struct trapframe *frame; 860 { 861 862 userret(td, frame, 0); 863 #ifdef KTRACE 864 if (KTRPOINT(td->td_proc, KTR_SYSRET)) { 865 ktrsysret(td->td_proc->p_tracep, SYS_fork, 0, 0); 866 } 867 #endif 868 mtx_assert(&Giant, MA_NOTOWNED); 869 } 870