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