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.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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.
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
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.71 2007/08/15 03:15:06 dillon Exp $
43 #include "opt_ktrace.h"
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>
53 #include <sys/resourcevar.h>
54 #include <sys/vnode.h>
56 #include <sys/ktrace.h>
57 #include <sys/unistd.h>
64 #include <vm/vm_map.h>
65 #include <vm/vm_extern.h>
66 #include <vm/vm_zone.h>
68 #include <sys/vmmeter.h>
69 #include <sys/thread2.h>
70 #include <sys/signal2.h>
72 static MALLOC_DEFINE(M_ATFORK
, "atfork", "atfork callback");
75 * These are the stuctures used to create a callout list for things to do
76 * when forking a process
80 TAILQ_ENTRY(forklist
) next
;
83 TAILQ_HEAD(forklist_head
, forklist
);
84 static struct forklist_head fork_list
= TAILQ_HEAD_INITIALIZER(fork_list
);
86 static struct lwp
*lwp_fork(struct lwp
*, struct proc
*, int flags
);
88 int forksleep
; /* Place for fork1() to sleep on. */
91 * Red-Black tree support for LWPs
95 rb_lwp_compare(struct lwp
*lp1
, struct lwp
*lp2
)
97 if (lp1
->lwp_tid
< lp2
->lwp_tid
)
99 if (lp1
->lwp_tid
> lp2
->lwp_tid
)
104 RB_GENERATE2(lwp_rb_tree
, lwp
, u
.lwp_rbnode
, rb_lwp_compare
, lwpid_t
, lwp_tid
);
109 sys_fork(struct fork_args
*uap
)
111 struct lwp
*lp
= curthread
->td_lwp
;
115 error
= fork1(lp
, RFFDG
| RFPROC
| RFPGLOCK
, &p2
);
117 start_forked_proc(lp
, p2
);
118 uap
->sysmsg_fds
[0] = p2
->p_pid
;
119 uap
->sysmsg_fds
[1] = 0;
126 sys_vfork(struct vfork_args
*uap
)
128 struct lwp
*lp
= curthread
->td_lwp
;
132 error
= fork1(lp
, RFFDG
| RFPROC
| RFPPWAIT
| RFMEM
| RFPGLOCK
, &p2
);
134 start_forked_proc(lp
, p2
);
135 uap
->sysmsg_fds
[0] = p2
->p_pid
;
136 uap
->sysmsg_fds
[1] = 0;
142 * Handle rforks. An rfork may (1) operate on the current process without
143 * creating a new, (2) create a new process that shared the current process's
144 * vmspace, signals, and/or descriptors, or (3) create a new process that does
145 * not share these things (normal fork).
147 * Note that we only call start_forked_proc() if a new process is actually
150 * rfork { int flags }
153 sys_rfork(struct rfork_args
*uap
)
155 struct lwp
*lp
= curthread
->td_lwp
;
159 if ((uap
->flags
& RFKERNELONLY
) != 0)
162 error
= fork1(lp
, uap
->flags
| RFPGLOCK
, &p2
);
165 start_forked_proc(lp
, p2
);
166 uap
->sysmsg_fds
[0] = p2
? p2
->p_pid
: 0;
167 uap
->sysmsg_fds
[1] = 0;
173 sys_lwp_create(struct lwp_create_args
*uap
)
175 struct proc
*p
= curproc
;
177 struct lwp_params params
;
180 error
= copyin(uap
->params
, ¶ms
, sizeof(params
));
184 lp
= lwp_fork(curthread
->td_lwp
, p
, RFPROC
);
185 error
= cpu_prepare_lwp(lp
, ¶ms
);
186 if (params
.tid1
!= NULL
&&
187 (error
= copyout(&lp
->lwp_tid
, params
.tid1
, sizeof(lp
->lwp_tid
))))
189 if (params
.tid2
!= NULL
&&
190 (error
= copyout(&lp
->lwp_tid
, params
.tid2
, sizeof(lp
->lwp_tid
))))
194 * Now schedule the new lwp.
196 p
->p_usched
->resetpriority(lp
);
198 lp
->lwp_stat
= LSRUN
;
199 p
->p_usched
->setrunqueue(lp
);
206 lwp_rb_tree_RB_REMOVE(&p
->p_lwp_tree
, lp
);
207 /* lwp_dispose expects an exited lwp, and a held proc */
208 lp
->lwp_flag
|= LWP_WEXIT
;
209 lp
->lwp_thread
->td_flags
|= TDF_EXITING
;
216 int nprocs
= 1; /* process 0 */
219 fork1(struct lwp
*lp1
, int flags
, struct proc
**procp
)
221 struct proc
*p1
= lp1
->lwp_proc
;
222 struct proc
*p2
, *pptr
;
226 static int curfail
= 0;
227 static struct timeval lastfail
;
229 struct filedesc_to_leader
*fdtol
;
231 if ((flags
& (RFFDG
|RFCFDG
)) == (RFFDG
|RFCFDG
))
235 * Here we don't create a new process, but we divorce
236 * certain parts of a process from itself.
238 if ((flags
& RFPROC
) == 0) {
240 * This kind of stunt does not work anymore if
241 * there are native threads (lwps) running
243 if (p1
->p_nthreads
!= 1)
246 vm_fork(p1
, 0, flags
);
249 * Close all file descriptors.
251 if (flags
& RFCFDG
) {
252 struct filedesc
*fdtmp
;
259 * Unshare file descriptors (from parent.)
262 if (p1
->p_fd
->fd_refcnt
> 1) {
263 struct filedesc
*newfd
;
274 * Interlock against process group signal delivery. If signals
275 * are pending after the interlock is obtained we have to restart
276 * the system call to process the signals. If we don't the child
277 * can miss a pgsignal (such as ^C) sent during the fork.
279 * We can't use CURSIG() here because it will process any STOPs
280 * and cause the process group lock to be held indefinitely. If
281 * a STOP occurs, the fork will be restarted after the CONT.
285 if ((flags
& RFPGLOCK
) && (pgrp
= p1
->p_pgrp
) != NULL
) {
286 lockmgr(&pgrp
->pg_lock
, LK_SHARED
);
294 * Although process entries are dynamically created, we still keep
295 * a global limit on the maximum number we will create. Don't allow
296 * a nonprivileged user to use the last ten processes; don't let root
297 * exceed the limit. The variable nprocs is the current number of
298 * processes, maxproc is the limit.
300 uid
= p1
->p_ucred
->cr_ruid
;
301 if ((nprocs
>= maxproc
- 10 && uid
!= 0) || nprocs
>= maxproc
) {
302 if (ppsratecheck(&lastfail
, &curfail
, 1))
303 kprintf("maxproc limit exceeded by uid %d, please "
304 "see tuning(7) and login.conf(5).\n", uid
);
305 tsleep(&forksleep
, 0, "fork", hz
/ 2);
310 * Increment the nprocs resource before blocking can occur. There
311 * are hard-limits as to the number of processes that can run.
316 * Increment the count of procs running with this uid. Don't allow
317 * a nonprivileged user to exceed their current limit.
319 ok
= chgproccnt(p1
->p_ucred
->cr_ruidinfo
, 1,
320 (uid
!= 0) ? p1
->p_rlimit
[RLIMIT_NPROC
].rlim_cur
: 0);
323 * Back out the process count
326 if (ppsratecheck(&lastfail
, &curfail
, 1))
327 kprintf("maxproc limit exceeded by uid %d, please "
328 "see tuning(7) and login.conf(5).\n", uid
);
329 tsleep(&forksleep
, 0, "fork", hz
/ 2);
334 /* Allocate new proc. */
335 p2
= zalloc(proc_zone
);
336 bzero(p2
, sizeof(*p2
));
339 * Setup linkage for kernel based threading XXX lwp
341 if (flags
& RFTHREAD
) {
342 p2
->p_peers
= p1
->p_peers
;
344 p2
->p_leader
= p1
->p_leader
;
349 RB_INIT(&p2
->p_lwp_tree
);
350 p2
->p_lasttid
= -1; /* first tid will be 0 */
353 * Setting the state to SIDL protects the partially initialized
354 * process once it starts getting hooked into the rest of the system.
357 proc_add_allproc(p2
);
360 * Make a proc table entry for the new process.
361 * The whole structure was zeroed above, so copy the section that is
362 * copied directly from the parent.
364 bcopy(&p1
->p_startcopy
, &p2
->p_startcopy
,
365 (unsigned) ((caddr_t
)&p2
->p_endcopy
- (caddr_t
)&p2
->p_startcopy
));
368 * Duplicate sub-structures as needed.
369 * Increase reference counts on shared objects.
371 if (p1
->p_flag
& P_PROFIL
)
373 p2
->p_ucred
= crhold(p1
->p_ucred
);
375 if (jailed(p2
->p_ucred
))
376 p2
->p_flag
|= P_JAILED
;
379 p2
->p_args
->ar_ref
++;
381 p2
->p_usched
= p1
->p_usched
;
383 if (flags
& RFSIGSHARE
) {
384 p2
->p_sigacts
= p1
->p_sigacts
;
385 p2
->p_sigacts
->ps_refcnt
++;
387 p2
->p_sigacts
= (struct sigacts
*)kmalloc(sizeof(*p2
->p_sigacts
),
388 M_SUBPROC
, M_WAITOK
);
389 bcopy(p1
->p_sigacts
, p2
->p_sigacts
, sizeof(*p2
->p_sigacts
));
390 p2
->p_sigacts
->ps_refcnt
= 1;
392 if (flags
& RFLINUXTHPN
)
393 p2
->p_sigparent
= SIGUSR1
;
395 p2
->p_sigparent
= SIGCHLD
;
397 /* bump references to the text vnode (for procfs) */
398 p2
->p_textvp
= p1
->p_textvp
;
403 * Handle file descriptors
405 if (flags
& RFCFDG
) {
406 p2
->p_fd
= fdinit(p1
);
408 } else if (flags
& RFFDG
) {
409 p2
->p_fd
= fdcopy(p1
);
412 p2
->p_fd
= fdshare(p1
);
413 if (p1
->p_fdtol
== NULL
)
415 filedesc_to_leader_alloc(NULL
,
417 if ((flags
& RFTHREAD
) != 0) {
419 * Shared file descriptor table and
420 * shared process leaders.
423 fdtol
->fdl_refcount
++;
426 * Shared file descriptor table, and
427 * different process leaders
429 fdtol
= filedesc_to_leader_alloc(p1
->p_fdtol
, p2
);
433 p2
->p_limit
= plimit_fork(p1
->p_limit
);
436 * Preserve some more flags in subprocess. P_PROFIL has already
439 p2
->p_flag
|= p1
->p_flag
& P_SUGID
;
440 if (p1
->p_session
->s_ttyvp
!= NULL
&& p1
->p_flag
& P_CONTROLT
)
441 p2
->p_flag
|= P_CONTROLT
;
442 if (flags
& RFPPWAIT
)
443 p2
->p_flag
|= P_PPWAIT
;
446 * Inherit the virtual kernel structure (allows a virtual kernel
447 * to fork to simulate multiple cpus).
450 vkernel_inherit(p1
, p2
);
453 * Once we are on a pglist we may receive signals. XXX we might
454 * race a ^C being sent to the process group by not receiving it
455 * at all prior to this line.
457 LIST_INSERT_AFTER(p1
, p2
, p_pglist
);
460 * Attach the new process to its parent.
462 * If RFNOWAIT is set, the newly created process becomes a child
463 * of init. This effectively disassociates the child from the
466 if (flags
& RFNOWAIT
)
471 LIST_INSERT_HEAD(&pptr
->p_children
, p2
, p_sibling
);
472 LIST_INIT(&p2
->p_children
);
473 varsymset_init(&p2
->p_varsymset
, &p1
->p_varsymset
);
474 callout_init(&p2
->p_ithandle
);
478 * Copy traceflag and tracefile if enabled. If not inherited,
479 * these were zeroed above but we still could have a trace race
480 * so make sure p2's p_tracenode is NULL.
482 if ((p1
->p_traceflag
& KTRFAC_INHERIT
) && p2
->p_tracenode
== NULL
) {
483 p2
->p_traceflag
= p1
->p_traceflag
;
484 p2
->p_tracenode
= ktrinherit(p1
->p_tracenode
);
489 * This begins the section where we must prevent the parent
490 * from being swapped.
492 * Gets PRELE'd in the caller in start_forked_proc().
496 vm_fork(p1
, p2
, flags
);
499 * Create the first lwp associated with the new proc.
500 * It will return via a different execution path later, directly
501 * into userland, after it was put on the runq by
502 * start_forked_proc().
504 lwp_fork(lp1
, p2
, flags
);
506 if (flags
== (RFFDG
| RFPROC
)) {
507 mycpu
->gd_cnt
.v_forks
++;
508 mycpu
->gd_cnt
.v_forkpages
+= p2
->p_vmspace
->vm_dsize
+ p2
->p_vmspace
->vm_ssize
;
509 } else if (flags
== (RFFDG
| RFPROC
| RFPPWAIT
| RFMEM
)) {
510 mycpu
->gd_cnt
.v_vforks
++;
511 mycpu
->gd_cnt
.v_vforkpages
+= p2
->p_vmspace
->vm_dsize
+ p2
->p_vmspace
->vm_ssize
;
512 } else if (p1
== &proc0
) {
513 mycpu
->gd_cnt
.v_kthreads
++;
514 mycpu
->gd_cnt
.v_kthreadpages
+= p2
->p_vmspace
->vm_dsize
+ p2
->p_vmspace
->vm_ssize
;
516 mycpu
->gd_cnt
.v_rforks
++;
517 mycpu
->gd_cnt
.v_rforkpages
+= p2
->p_vmspace
->vm_dsize
+ p2
->p_vmspace
->vm_ssize
;
521 * Both processes are set up, now check if any loadable modules want
522 * to adjust anything.
523 * What if they have an error? XXX
525 TAILQ_FOREACH(ep
, &fork_list
, next
) {
526 (*ep
->function
)(p1
, p2
, flags
);
530 * Set the start time. Note that the process is not runnable. The
531 * caller is responsible for making it runnable.
533 microtime(&p2
->p_start
);
534 p2
->p_acflag
= AFORK
;
537 * tell any interested parties about the new process
539 KNOTE(&p1
->p_klist
, NOTE_FORK
| p2
->p_pid
);
542 * Return child proc pointer to parent.
547 lockmgr(&pgrp
->pg_lock
, LK_RELEASE
);
552 lwp_fork(struct lwp
*origlp
, struct proc
*destproc
, int flags
)
557 lp
= zalloc(lwp_zone
);
558 bzero(lp
, sizeof(*lp
));
560 lp
->lwp_proc
= destproc
;
561 lp
->lwp_vmspace
= destproc
->p_vmspace
;
562 lp
->lwp_stat
= LSRUN
;
563 bcopy(&origlp
->lwp_startcopy
, &lp
->lwp_startcopy
,
564 (unsigned) ((caddr_t
)&lp
->lwp_endcopy
-
565 (caddr_t
)&lp
->lwp_startcopy
));
566 lp
->lwp_flag
|= origlp
->lwp_flag
& LWP_ALTSTACK
;
568 * Set cpbase to the last timeout that occured (not the upcoming
571 * A critical section is required since a timer IPI can update
572 * scheduler specific data.
575 lp
->lwp_cpbase
= mycpu
->gd_schedclock
.time
-
576 mycpu
->gd_schedclock
.periodic
;
577 destproc
->p_usched
->heuristic_forking(origlp
, lp
);
579 lp
->lwp_cpumask
&= usched_mastermask
;
582 * Assign a TID to the lp. Loop until the insert succeeds (returns
585 lp
->lwp_tid
= destproc
->p_lasttid
;
587 if (++lp
->lwp_tid
< 0)
589 } while (lwp_rb_tree_RB_INSERT(&destproc
->p_lwp_tree
, lp
) != NULL
);
590 destproc
->p_lasttid
= lp
->lwp_tid
;
591 destproc
->p_nthreads
++;
593 td
= lwkt_alloc_thread(NULL
, LWKT_THREAD_STACK
, -1, 0);
595 td
->td_proc
= destproc
;
597 td
->td_switch
= cpu_heavy_switch
;
599 KKASSERT(td
->td_mpcount
== 1);
601 lwkt_setpri(td
, TDPRI_KERN_USER
);
602 lwkt_set_comm(td
, "%s", destproc
->p_comm
);
605 * cpu_fork will copy and update the pcb, set up the kernel stack,
606 * and make the child ready to run.
608 cpu_fork(origlp
, lp
, flags
);
609 caps_fork(origlp
->lwp_thread
, lp
->lwp_thread
);
615 * The next two functionms are general routines to handle adding/deleting
616 * items on the fork callout list.
619 * Take the arguments given and put them onto the fork callout list,
620 * However first make sure that it's not already there.
621 * Returns 0 on success or a standard error number.
624 at_fork(forklist_fn function
)
629 /* let the programmer know if he's been stupid */
630 if (rm_at_fork(function
)) {
631 kprintf("WARNING: fork callout entry (%p) already present\n",
635 ep
= kmalloc(sizeof(*ep
), M_ATFORK
, M_WAITOK
|M_ZERO
);
636 ep
->function
= function
;
637 TAILQ_INSERT_TAIL(&fork_list
, ep
, next
);
642 * Scan the exit callout list for the given item and remove it..
643 * Returns the number of items removed (0 or 1)
646 rm_at_fork(forklist_fn function
)
650 TAILQ_FOREACH(ep
, &fork_list
, next
) {
651 if (ep
->function
== function
) {
652 TAILQ_REMOVE(&fork_list
, ep
, next
);
661 * Add a forked process to the run queue after any remaining setup, such
662 * as setting the fork handler, has been completed.
665 start_forked_proc(struct lwp
*lp1
, struct proc
*p2
)
667 struct lwp
*lp2
= ONLY_LWP_IN_PROC(p2
);
670 * Move from SIDL to RUN queue, and activate the process's thread.
671 * Activation of the thread effectively makes the process "a"
672 * current process, so we do not setrunqueue().
674 * YYY setrunqueue works here but we should clean up the trampoline
675 * code so we just schedule the LWKT thread and let the trampoline
676 * deal with the userland scheduler on return to userland.
678 KASSERT(p2
->p_stat
== SIDL
,
679 ("cannot start forked process, bad status: %p", p2
));
680 p2
->p_usched
->resetpriority(lp2
);
682 p2
->p_stat
= SACTIVE
;
683 lp2
->lwp_stat
= LSRUN
;
684 p2
->p_usched
->setrunqueue(lp2
);
688 * Now can be swapped.
690 PRELE(lp1
->lwp_proc
);
693 * Preserve synchronization semantics of vfork. If waiting for
694 * child to exec or exit, set P_PPWAIT on child, and sleep on our
695 * proc (in case of exit).
697 while (p2
->p_flag
& P_PPWAIT
)
698 tsleep(lp1
->lwp_proc
, 0, "ppwait", 0);