e174167e3c43bb7fb0ba1ab24cdb105e2dc7c68e
[dragonfly.git] / sys / kern / kern_fork.c
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: src/sys/kern/kern_fork.c,v 1.72.2.14 2003/06/26 04:15:10 silby Exp $
40  * $DragonFly: src/sys/kern/kern_fork.c,v 1.77 2008/05/18 20:02:02 nth Exp $
41  */
42
43 #include "opt_ktrace.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/sysproto.h>
48 #include <sys/filedesc.h>
49 #include <sys/kernel.h>
50 #include <sys/sysctl.h>
51 #include <sys/malloc.h>
52 #include <sys/proc.h>
53 #include <sys/resourcevar.h>
54 #include <sys/vnode.h>
55 #include <sys/acct.h>
56 #include <sys/ktrace.h>
57 #include <sys/unistd.h>
58 #include <sys/jail.h>
59 #include <sys/caps.h>
60
61 #include <vm/vm.h>
62 #include <sys/lock.h>
63 #include <vm/pmap.h>
64 #include <vm/vm_map.h>
65 #include <vm/vm_extern.h>
66
67 #include <sys/vmmeter.h>
68 #include <sys/refcount.h>
69 #include <sys/thread2.h>
70 #include <sys/signal2.h>
71 #include <sys/spinlock2.h>
72
73 #include <sys/dsched.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 TAILQ_HEAD(forklist_head, forklist);
87 static struct forklist_head fork_list = TAILQ_HEAD_INITIALIZER(fork_list);
88
89 static struct lwp *lwp_fork(struct lwp *, struct proc *, int flags);
90
91 int forksleep; /* Place for fork1() to sleep on. */
92
93 /*
94  * Red-Black tree support for LWPs
95  */
96
97 static int
98 rb_lwp_compare(struct lwp *lp1, struct lwp *lp2)
99 {
100         if (lp1->lwp_tid < lp2->lwp_tid)
101                 return(-1);
102         if (lp1->lwp_tid > lp2->lwp_tid)
103                 return(1);
104         return(0);
105 }
106
107 RB_GENERATE2(lwp_rb_tree, lwp, u.lwp_rbnode, rb_lwp_compare, lwpid_t, lwp_tid);
108
109 /*
110  * Fork system call
111  *
112  * MPALMOSTSAFE
113  */
114 int
115 sys_fork(struct fork_args *uap)
116 {
117         struct lwp *lp = curthread->td_lwp;
118         struct proc *p2;
119         int error;
120
121         error = fork1(lp, RFFDG | RFPROC | RFPGLOCK, &p2);
122         if (error == 0) {
123                 start_forked_proc(lp, p2);
124                 uap->sysmsg_fds[0] = p2->p_pid;
125                 uap->sysmsg_fds[1] = 0;
126         }
127         return error;
128 }
129
130 /*
131  * MPALMOSTSAFE
132  */
133 int
134 sys_vfork(struct vfork_args *uap)
135 {
136         struct lwp *lp = curthread->td_lwp;
137         struct proc *p2;
138         int error;
139
140         error = fork1(lp, RFFDG | RFPROC | RFPPWAIT | RFMEM | RFPGLOCK, &p2);
141         if (error == 0) {
142                 start_forked_proc(lp, p2);
143                 uap->sysmsg_fds[0] = p2->p_pid;
144                 uap->sysmsg_fds[1] = 0;
145         }
146         return error;
147 }
148
149 /*
150  * Handle rforks.  An rfork may (1) operate on the current process without
151  * creating a new, (2) create a new process that shared the current process's
152  * vmspace, signals, and/or descriptors, or (3) create a new process that does
153  * not share these things (normal fork).
154  *
155  * Note that we only call start_forked_proc() if a new process is actually
156  * created.
157  *
158  * rfork { int flags }
159  *
160  * MPALMOSTSAFE
161  */
162 int
163 sys_rfork(struct rfork_args *uap)
164 {
165         struct lwp *lp = curthread->td_lwp;
166         struct proc *p2;
167         int error;
168
169         if ((uap->flags & RFKERNELONLY) != 0)
170                 return (EINVAL);
171
172         error = fork1(lp, uap->flags | RFPGLOCK, &p2);
173         if (error == 0) {
174                 if (p2)
175                         start_forked_proc(lp, p2);
176                 uap->sysmsg_fds[0] = p2 ? p2->p_pid : 0;
177                 uap->sysmsg_fds[1] = 0;
178         }
179         return error;
180 }
181
182 /*
183  * MPALMOSTSAFE
184  */
185 int
186 sys_lwp_create(struct lwp_create_args *uap)
187 {
188         struct proc *p = curproc;
189         struct lwp *lp;
190         struct lwp_params params;
191         int error;
192
193         error = copyin(uap->params, &params, sizeof(params));
194         if (error)
195                 goto fail2;
196
197         lwkt_gettoken(&p->p_token);
198         plimit_lwp_fork(p);     /* force exclusive access */
199         lp = lwp_fork(curthread->td_lwp, p, RFPROC);
200         error = cpu_prepare_lwp(lp, &params);
201         if (error)
202                 goto fail;
203         if (params.tid1 != NULL &&
204             (error = copyout(&lp->lwp_tid, params.tid1, sizeof(lp->lwp_tid))))
205                 goto fail;
206         if (params.tid2 != NULL &&
207             (error = copyout(&lp->lwp_tid, params.tid2, sizeof(lp->lwp_tid))))
208                 goto fail;
209
210         /*
211          * Now schedule the new lwp. 
212          */
213         p->p_usched->resetpriority(lp);
214         crit_enter();
215         lp->lwp_stat = LSRUN;
216         p->p_usched->setrunqueue(lp);
217         crit_exit();
218         lwkt_reltoken(&p->p_token);
219
220         return (0);
221
222 fail:
223         lwp_rb_tree_RB_REMOVE(&p->p_lwp_tree, lp);
224         --p->p_nthreads;
225         /* lwp_dispose expects an exited lwp, and a held proc */
226         lp->lwp_flag |= LWP_WEXIT;
227         lp->lwp_thread->td_flags |= TDF_EXITING;
228         lwkt_remove_tdallq(lp->lwp_thread);
229         PHOLD(p);
230         lwp_dispose(lp);
231         lwkt_reltoken(&p->p_token);
232 fail2:
233         return (error);
234 }
235
236 int     nprocs = 1;             /* process 0 */
237
238 int
239 fork1(struct lwp *lp1, int flags, struct proc **procp)
240 {
241         struct proc *p1 = lp1->lwp_proc;
242         struct proc *p2, *pptr;
243         struct pgrp *p1grp;
244         struct pgrp *plkgrp;
245         uid_t uid;
246         int ok, error;
247         static int curfail = 0;
248         static struct timeval lastfail;
249         struct forklist *ep;
250         struct filedesc_to_leader *fdtol;
251
252         if ((flags & (RFFDG|RFCFDG)) == (RFFDG|RFCFDG))
253                 return (EINVAL);
254
255         lwkt_gettoken(&p1->p_token);
256         plkgrp = NULL;
257
258         /*
259          * Here we don't create a new process, but we divorce
260          * certain parts of a process from itself.
261          */
262         if ((flags & RFPROC) == 0) {
263                 /*
264                  * This kind of stunt does not work anymore if
265                  * there are native threads (lwps) running
266                  */
267                 if (p1->p_nthreads != 1) {
268                         error = EINVAL;
269                         goto done;
270                 }
271
272                 vm_fork(p1, 0, flags);
273
274                 /*
275                  * Close all file descriptors.
276                  */
277                 if (flags & RFCFDG) {
278                         struct filedesc *fdtmp;
279                         fdtmp = fdinit(p1);
280                         fdfree(p1, fdtmp);
281                 }
282
283                 /*
284                  * Unshare file descriptors (from parent.)
285                  */
286                 if (flags & RFFDG) {
287                         if (p1->p_fd->fd_refcnt > 1) {
288                                 struct filedesc *newfd;
289                                 error = fdcopy(p1, &newfd);
290                                 if (error != 0) {
291                                         error = ENOMEM;
292                                         goto done;
293                                 }
294                                 fdfree(p1, newfd);
295                         }
296                 }
297                 *procp = NULL;
298                 error = 0;
299                 goto done;
300         }
301
302         /*
303          * Interlock against process group signal delivery.  If signals
304          * are pending after the interlock is obtained we have to restart
305          * the system call to process the signals.  If we don't the child
306          * can miss a pgsignal (such as ^C) sent during the fork.
307          *
308          * We can't use CURSIG() here because it will process any STOPs
309          * and cause the process group lock to be held indefinitely.  If
310          * a STOP occurs, the fork will be restarted after the CONT.
311          */
312         p1grp = p1->p_pgrp;
313         if ((flags & RFPGLOCK) && (plkgrp = p1->p_pgrp) != NULL) {
314                 pgref(plkgrp);
315                 lockmgr(&plkgrp->pg_lock, LK_SHARED);
316                 if (CURSIG_NOBLOCK(lp1)) {
317                         error = ERESTART;
318                         goto done;
319                 }
320         }
321
322         /*
323          * Although process entries are dynamically created, we still keep
324          * a global limit on the maximum number we will create.  Don't allow
325          * a nonprivileged user to use the last ten processes; don't let root
326          * exceed the limit. The variable nprocs is the current number of
327          * processes, maxproc is the limit.
328          */
329         uid = lp1->lwp_thread->td_ucred->cr_ruid;
330         if ((nprocs >= maxproc - 10 && uid != 0) || nprocs >= maxproc) {
331                 if (ppsratecheck(&lastfail, &curfail, 1))
332                         kprintf("maxproc limit exceeded by uid %d, please "
333                                "see tuning(7) and login.conf(5).\n", uid);
334                 tsleep(&forksleep, 0, "fork", hz / 2);
335                 error = EAGAIN;
336                 goto done;
337         }
338
339         /*
340          * Increment the nprocs resource before blocking can occur.  There
341          * are hard-limits as to the number of processes that can run.
342          */
343         atomic_add_int(&nprocs, 1);
344
345         /*
346          * Increment the count of procs running with this uid. Don't allow
347          * a nonprivileged user to exceed their current limit.
348          */
349         ok = chgproccnt(lp1->lwp_thread->td_ucred->cr_ruidinfo, 1,
350                 (uid != 0) ? p1->p_rlimit[RLIMIT_NPROC].rlim_cur : 0);
351         if (!ok) {
352                 /*
353                  * Back out the process count
354                  */
355                 atomic_add_int(&nprocs, -1);
356                 if (ppsratecheck(&lastfail, &curfail, 1))
357                         kprintf("maxproc limit exceeded by uid %d, please "
358                                "see tuning(7) and login.conf(5).\n", uid);
359                 tsleep(&forksleep, 0, "fork", hz / 2);
360                 error = EAGAIN;
361                 goto done;
362         }
363
364         /* Allocate new proc. */
365         p2 = kmalloc(sizeof(struct proc), M_PROC, M_WAITOK|M_ZERO);
366
367         /*
368          * Setup linkage for kernel based threading XXX lwp
369          */
370         if (flags & RFTHREAD) {
371                 p2->p_peers = p1->p_peers;
372                 p1->p_peers = p2;
373                 p2->p_leader = p1->p_leader;
374         } else {
375                 p2->p_leader = p2;
376         }
377
378         RB_INIT(&p2->p_lwp_tree);
379         spin_init(&p2->p_spin);
380         lwkt_token_init(&p2->p_token, "proc");
381         p2->p_lasttid = -1;     /* first tid will be 0 */
382
383         /*
384          * Setting the state to SIDL protects the partially initialized
385          * process once it starts getting hooked into the rest of the system.
386          */
387         p2->p_stat = SIDL;
388         proc_add_allproc(p2);
389
390         /*
391          * Make a proc table entry for the new process.
392          * The whole structure was zeroed above, so copy the section that is
393          * copied directly from the parent.
394          */
395         bcopy(&p1->p_startcopy, &p2->p_startcopy,
396             (unsigned) ((caddr_t)&p2->p_endcopy - (caddr_t)&p2->p_startcopy));
397
398         /*
399          * Duplicate sub-structures as needed.  Increase reference counts
400          * on shared objects.
401          *
402          * NOTE: because we are now on the allproc list it is possible for
403          *       other consumers to gain temporary references to p2
404          *       (p2->p_lock can change).
405          */
406         if (p1->p_flag & P_PROFIL)
407                 startprofclock(p2);
408         p2->p_ucred = crhold(lp1->lwp_thread->td_ucred);
409
410         if (jailed(p2->p_ucred))
411                 p2->p_flag |= P_JAILED;
412
413         if (p2->p_args)
414                 refcount_acquire(&p2->p_args->ar_ref);
415
416         p2->p_usched = p1->p_usched;
417         /* XXX: verify copy of the secondary iosched stuff */
418         dsched_new_proc(p2);
419
420         if (flags & RFSIGSHARE) {
421                 p2->p_sigacts = p1->p_sigacts;
422                 refcount_acquire(&p2->p_sigacts->ps_refcnt);
423         } else {
424                 p2->p_sigacts = kmalloc(sizeof(*p2->p_sigacts),
425                                         M_SUBPROC, M_WAITOK);
426                 bcopy(p1->p_sigacts, p2->p_sigacts, sizeof(*p2->p_sigacts));
427                 refcount_init(&p2->p_sigacts->ps_refcnt, 1);
428         }
429         if (flags & RFLINUXTHPN) 
430                 p2->p_sigparent = SIGUSR1;
431         else
432                 p2->p_sigparent = SIGCHLD;
433
434         /* bump references to the text vnode (for procfs) */
435         p2->p_textvp = p1->p_textvp;
436         if (p2->p_textvp)
437                 vref(p2->p_textvp);
438
439         /* copy namecache handle to the text file */
440         if (p1->p_textnch.mount)
441                 cache_copy(&p1->p_textnch, &p2->p_textnch);
442
443         /*
444          * Handle file descriptors
445          */
446         if (flags & RFCFDG) {
447                 p2->p_fd = fdinit(p1);
448                 fdtol = NULL;
449         } else if (flags & RFFDG) {
450                 error = fdcopy(p1, &p2->p_fd);
451                 if (error != 0) {
452                         error = ENOMEM;
453                         goto done;
454                 }
455                 fdtol = NULL;
456         } else {
457                 p2->p_fd = fdshare(p1);
458                 if (p1->p_fdtol == NULL) {
459                         lwkt_gettoken(&p1->p_token);
460                         p1->p_fdtol =
461                                 filedesc_to_leader_alloc(NULL,
462                                                          p1->p_leader);
463                         lwkt_reltoken(&p1->p_token);
464                 }
465                 if ((flags & RFTHREAD) != 0) {
466                         /*
467                          * Shared file descriptor table and
468                          * shared process leaders.
469                          */
470                         fdtol = p1->p_fdtol;
471                         fdtol->fdl_refcount++;
472                 } else {
473                         /* 
474                          * Shared file descriptor table, and
475                          * different process leaders 
476                          */
477                         fdtol = filedesc_to_leader_alloc(p1->p_fdtol, p2);
478                 }
479         }
480         p2->p_fdtol = fdtol;
481         p2->p_limit = plimit_fork(p1);
482
483         /*
484          * Preserve some more flags in subprocess.  P_PROFIL has already
485          * been preserved.
486          */
487         p2->p_flag |= p1->p_flag & P_SUGID;
488         if (p1->p_session->s_ttyvp != NULL && p1->p_flag & P_CONTROLT)
489                 p2->p_flag |= P_CONTROLT;
490         if (flags & RFPPWAIT)
491                 p2->p_flag |= P_PPWAIT;
492
493         /*
494          * Inherit the virtual kernel structure (allows a virtual kernel
495          * to fork to simulate multiple cpus).
496          */
497         if (p1->p_vkernel)
498                 vkernel_inherit(p1, p2);
499
500         /*
501          * Once we are on a pglist we may receive signals.  XXX we might
502          * race a ^C being sent to the process group by not receiving it
503          * at all prior to this line.
504          */
505         pgref(p1grp);
506         lwkt_gettoken(&p1grp->pg_token);
507         LIST_INSERT_AFTER(p1, p2, p_pglist);
508         lwkt_reltoken(&p1grp->pg_token);
509
510         /*
511          * Attach the new process to its parent.
512          *
513          * If RFNOWAIT is set, the newly created process becomes a child
514          * of init.  This effectively disassociates the child from the
515          * parent.
516          */
517         if (flags & RFNOWAIT)
518                 pptr = initproc;
519         else
520                 pptr = p1;
521         p2->p_pptr = pptr;
522         LIST_INIT(&p2->p_children);
523
524         lwkt_gettoken(&pptr->p_token);
525         LIST_INSERT_HEAD(&pptr->p_children, p2, p_sibling);
526         lwkt_reltoken(&pptr->p_token);
527
528         varsymset_init(&p2->p_varsymset, &p1->p_varsymset);
529         callout_init_mp(&p2->p_ithandle);
530
531 #ifdef KTRACE
532         /*
533          * Copy traceflag and tracefile if enabled.  If not inherited,
534          * these were zeroed above but we still could have a trace race
535          * so make sure p2's p_tracenode is NULL.
536          */
537         if ((p1->p_traceflag & KTRFAC_INHERIT) && p2->p_tracenode == NULL) {
538                 p2->p_traceflag = p1->p_traceflag;
539                 p2->p_tracenode = ktrinherit(p1->p_tracenode);
540         }
541 #endif
542
543         /*
544          * This begins the section where we must prevent the parent
545          * from being swapped.
546          *
547          * Gets PRELE'd in the caller in start_forked_proc().
548          */
549         PHOLD(p1);
550
551         vm_fork(p1, p2, flags);
552
553         /*
554          * Create the first lwp associated with the new proc.
555          * It will return via a different execution path later, directly
556          * into userland, after it was put on the runq by
557          * start_forked_proc().
558          */
559         lwp_fork(lp1, p2, flags);
560
561         if (flags == (RFFDG | RFPROC | RFPGLOCK)) {
562                 mycpu->gd_cnt.v_forks++;
563                 mycpu->gd_cnt.v_forkpages += p2->p_vmspace->vm_dsize + p2->p_vmspace->vm_ssize;
564         } else if (flags == (RFFDG | RFPROC | RFPPWAIT | RFMEM | RFPGLOCK)) {
565                 mycpu->gd_cnt.v_vforks++;
566                 mycpu->gd_cnt.v_vforkpages += p2->p_vmspace->vm_dsize + p2->p_vmspace->vm_ssize;
567         } else if (p1 == &proc0) {
568                 mycpu->gd_cnt.v_kthreads++;
569                 mycpu->gd_cnt.v_kthreadpages += p2->p_vmspace->vm_dsize + p2->p_vmspace->vm_ssize;
570         } else {
571                 mycpu->gd_cnt.v_rforks++;
572                 mycpu->gd_cnt.v_rforkpages += p2->p_vmspace->vm_dsize + p2->p_vmspace->vm_ssize;
573         }
574
575         /*
576          * Both processes are set up, now check if any loadable modules want
577          * to adjust anything.
578          *   What if they have an error? XXX
579          */
580         TAILQ_FOREACH(ep, &fork_list, next) {
581                 (*ep->function)(p1, p2, flags);
582         }
583
584         /*
585          * Set the start time.  Note that the process is not runnable.  The
586          * caller is responsible for making it runnable.
587          */
588         microtime(&p2->p_start);
589         p2->p_acflag = AFORK;
590
591         /*
592          * tell any interested parties about the new process
593          */
594         KNOTE(&p1->p_klist, NOTE_FORK | p2->p_pid);
595
596         /*
597          * Return child proc pointer to parent.
598          */
599         *procp = p2;
600         error = 0;
601 done:
602         lwkt_reltoken(&p1->p_token);
603         if (plkgrp) {
604                 lockmgr(&plkgrp->pg_lock, LK_RELEASE);
605                 pgrel(plkgrp);
606         }
607         return (error);
608 }
609
610 static struct lwp *
611 lwp_fork(struct lwp *origlp, struct proc *destproc, int flags)
612 {
613         globaldata_t gd = mycpu;
614         struct lwp *lp;
615         struct thread *td;
616
617         lp = kmalloc(sizeof(struct lwp), M_LWP, M_WAITOK|M_ZERO);
618
619         lp->lwp_proc = destproc;
620         lp->lwp_vmspace = destproc->p_vmspace;
621         lp->lwp_stat = LSRUN;
622         bcopy(&origlp->lwp_startcopy, &lp->lwp_startcopy,
623             (unsigned) ((caddr_t)&lp->lwp_endcopy -
624                         (caddr_t)&lp->lwp_startcopy));
625         lp->lwp_flag |= origlp->lwp_flag & LWP_ALTSTACK;
626         /*
627          * Set cpbase to the last timeout that occured (not the upcoming
628          * timeout).
629          *
630          * A critical section is required since a timer IPI can update
631          * scheduler specific data.
632          */
633         crit_enter();
634         lp->lwp_cpbase = gd->gd_schedclock.time - gd->gd_schedclock.periodic;
635         destproc->p_usched->heuristic_forking(origlp, lp);
636         crit_exit();
637         lp->lwp_cpumask &= usched_mastermask;
638         lwkt_token_init(&lp->lwp_token, "lwp_token");
639         spin_init(&lp->lwp_spin);
640
641         /*
642          * Assign the thread to the current cpu to begin with so we
643          * can manipulate it.
644          */
645         td = lwkt_alloc_thread(NULL, LWKT_THREAD_STACK, gd->gd_cpuid, 0);
646         lp->lwp_thread = td;
647         td->td_proc = destproc;
648         td->td_lwp = lp;
649         td->td_switch = cpu_heavy_switch;
650         lwkt_setpri(td, TDPRI_KERN_USER);
651         lwkt_set_comm(td, "%s", destproc->p_comm);
652
653         /*
654          * cpu_fork will copy and update the pcb, set up the kernel stack,
655          * and make the child ready to run.
656          */
657         cpu_fork(origlp, lp, flags);
658         caps_fork(origlp->lwp_thread, lp->lwp_thread);
659         kqueue_init(&lp->lwp_kqueue, destproc->p_fd);
660
661         /*
662          * Assign a TID to the lp.  Loop until the insert succeeds (returns
663          * NULL).
664          */
665         lp->lwp_tid = destproc->p_lasttid;
666         do {
667                 if (++lp->lwp_tid < 0)
668                         lp->lwp_tid = 1;
669         } while (lwp_rb_tree_RB_INSERT(&destproc->p_lwp_tree, lp) != NULL);
670         destproc->p_lasttid = lp->lwp_tid;
671         destproc->p_nthreads++;
672
673         return (lp);
674 }
675
676 /*
677  * The next two functionms are general routines to handle adding/deleting
678  * items on the fork callout list.
679  *
680  * at_fork():
681  * Take the arguments given and put them onto the fork callout list,
682  * However first make sure that it's not already there.
683  * Returns 0 on success or a standard error number.
684  */
685 int
686 at_fork(forklist_fn function)
687 {
688         struct forklist *ep;
689
690 #ifdef INVARIANTS
691         /* let the programmer know if he's been stupid */
692         if (rm_at_fork(function)) {
693                 kprintf("WARNING: fork callout entry (%p) already present\n",
694                     function);
695         }
696 #endif
697         ep = kmalloc(sizeof(*ep), M_ATFORK, M_WAITOK|M_ZERO);
698         ep->function = function;
699         TAILQ_INSERT_TAIL(&fork_list, ep, next);
700         return (0);
701 }
702
703 /*
704  * Scan the exit callout list for the given item and remove it..
705  * Returns the number of items removed (0 or 1)
706  */
707 int
708 rm_at_fork(forklist_fn function)
709 {
710         struct forklist *ep;
711
712         TAILQ_FOREACH(ep, &fork_list, next) {
713                 if (ep->function == function) {
714                         TAILQ_REMOVE(&fork_list, ep, next);
715                         kfree(ep, M_ATFORK);
716                         return(1);
717                 }
718         }       
719         return (0);
720 }
721
722 /*
723  * Add a forked process to the run queue after any remaining setup, such
724  * as setting the fork handler, has been completed.
725  */
726 void
727 start_forked_proc(struct lwp *lp1, struct proc *p2)
728 {
729         struct lwp *lp2 = ONLY_LWP_IN_PROC(p2);
730
731         /*
732          * Move from SIDL to RUN queue, and activate the process's thread.
733          * Activation of the thread effectively makes the process "a"
734          * current process, so we do not setrunqueue().
735          *
736          * YYY setrunqueue works here but we should clean up the trampoline
737          * code so we just schedule the LWKT thread and let the trampoline
738          * deal with the userland scheduler on return to userland.
739          */
740         KASSERT(p2->p_stat == SIDL,
741             ("cannot start forked process, bad status: %p", p2));
742         p2->p_usched->resetpriority(lp2);
743         crit_enter();
744         p2->p_stat = SACTIVE;
745         lp2->lwp_stat = LSRUN;
746         p2->p_usched->setrunqueue(lp2);
747         crit_exit();
748
749         /*
750          * Now can be swapped.
751          */
752         PRELE(lp1->lwp_proc);
753
754         /*
755          * Preserve synchronization semantics of vfork.  If waiting for
756          * child to exec or exit, set P_PPWAIT on child, and sleep on our
757          * proc (in case of exec or exit).
758          *
759          * We must hold our p_token to interlock the flag/tsleep
760          */
761         lwkt_gettoken(&p2->p_token);
762         while (p2->p_flag & P_PPWAIT)
763                 tsleep(lp1->lwp_proc, 0, "ppwait", 0);
764         lwkt_reltoken(&p2->p_token);
765 }