1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1982, 1986, 1989, 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 * All or some portions of this file are derived from material licensed
8 * to the University of California by American Telephone and Telegraph
9 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 * the permission of UNIX System Laboratories, Inc.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)kern_fork.c 8.6 (Berkeley) 4/8/94
37 */
38
39 #include <sys/cdefs.h>
40 #include "opt_ktrace.h"
41 #include "opt_kstack_pages.h"
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/asan.h>
46 #include <sys/bitstring.h>
47 #include <sys/sysproto.h>
48 #include <sys/eventhandler.h>
49 #include <sys/fcntl.h>
50 #include <sys/filedesc.h>
51 #include <sys/jail.h>
52 #include <sys/kernel.h>
53 #include <sys/kthread.h>
54 #include <sys/sysctl.h>
55 #include <sys/lock.h>
56 #include <sys/malloc.h>
57 #include <sys/msan.h>
58 #include <sys/mutex.h>
59 #include <sys/priv.h>
60 #include <sys/proc.h>
61 #include <sys/procdesc.h>
62 #include <sys/ptrace.h>
63 #include <sys/racct.h>
64 #include <sys/resourcevar.h>
65 #include <sys/sched.h>
66 #include <sys/syscall.h>
67 #include <sys/vmmeter.h>
68 #include <sys/vnode.h>
69 #include <sys/acct.h>
70 #include <sys/ktr.h>
71 #include <sys/ktrace.h>
72 #include <sys/unistd.h>
73 #include <sys/sdt.h>
74 #include <sys/sx.h>
75 #include <sys/sysent.h>
76 #include <sys/signalvar.h>
77
78 #include <security/audit/audit.h>
79 #include <security/mac/mac_framework.h>
80
81 #include <vm/vm.h>
82 #include <vm/pmap.h>
83 #include <vm/vm_map.h>
84 #include <vm/vm_extern.h>
85 #include <vm/uma.h>
86
87 #ifdef KDTRACE_HOOKS
88 #include <sys/dtrace_bsd.h>
89 dtrace_fork_func_t dtrace_fasttrap_fork;
90 #endif
91
92 SDT_PROVIDER_DECLARE(proc);
93 SDT_PROBE_DEFINE3(proc, , , create, "struct proc *", "struct proc *", "int");
94
95 #ifndef _SYS_SYSPROTO_H_
96 struct fork_args {
97 int dummy;
98 };
99 #endif
100
101 /* ARGSUSED */
102 int
sys_fork(struct thread * td,struct fork_args * uap)103 sys_fork(struct thread *td, struct fork_args *uap)
104 {
105 struct fork_req fr;
106 int error, pid;
107
108 bzero(&fr, sizeof(fr));
109 fr.fr_flags = RFFDG | RFPROC;
110 fr.fr_pidp = &pid;
111 error = fork1(td, &fr);
112 if (error == 0) {
113 td->td_retval[0] = pid;
114 td->td_retval[1] = 0;
115 }
116 return (error);
117 }
118
119 /* ARGUSED */
120 int
sys_pdfork(struct thread * td,struct pdfork_args * uap)121 sys_pdfork(struct thread *td, struct pdfork_args *uap)
122 {
123 struct fork_req fr;
124 int error, fd, pid;
125
126 bzero(&fr, sizeof(fr));
127 fr.fr_flags = RFFDG | RFPROC | RFPROCDESC;
128 fr.fr_pidp = &pid;
129 fr.fr_pd_fd = &fd;
130 fr.fr_pd_flags = uap->flags;
131 AUDIT_ARG_FFLAGS(uap->flags);
132 /*
133 * It is necessary to return fd by reference because 0 is a valid file
134 * descriptor number, and the child needs to be able to distinguish
135 * itself from the parent using the return value.
136 */
137 error = fork1(td, &fr);
138 if (error == 0) {
139 td->td_retval[0] = pid;
140 td->td_retval[1] = 0;
141 error = copyout(&fd, uap->fdp, sizeof(fd));
142 }
143 return (error);
144 }
145
146 /* ARGSUSED */
147 int
sys_vfork(struct thread * td,struct vfork_args * uap)148 sys_vfork(struct thread *td, struct vfork_args *uap)
149 {
150 struct fork_req fr;
151 int error, pid;
152
153 bzero(&fr, sizeof(fr));
154 fr.fr_flags = RFFDG | RFPROC | RFPPWAIT | RFMEM;
155 fr.fr_pidp = &pid;
156 error = fork1(td, &fr);
157 if (error == 0) {
158 td->td_retval[0] = pid;
159 td->td_retval[1] = 0;
160 }
161 return (error);
162 }
163
164 int
sys_rfork(struct thread * td,struct rfork_args * uap)165 sys_rfork(struct thread *td, struct rfork_args *uap)
166 {
167 struct fork_req fr;
168 int error, pid;
169
170 /* Don't allow kernel-only flags. */
171 if ((uap->flags & RFKERNELONLY) != 0)
172 return (EINVAL);
173 /* RFSPAWN must not appear with others */
174 if ((uap->flags & RFSPAWN) != 0 && uap->flags != RFSPAWN)
175 return (EINVAL);
176
177 AUDIT_ARG_FFLAGS(uap->flags);
178 bzero(&fr, sizeof(fr));
179 if ((uap->flags & RFSPAWN) != 0) {
180 fr.fr_flags = RFFDG | RFPROC | RFPPWAIT | RFMEM;
181 fr.fr_flags2 = FR2_DROPSIG_CAUGHT;
182 } else {
183 fr.fr_flags = uap->flags;
184 }
185 fr.fr_pidp = &pid;
186 error = fork1(td, &fr);
187 if (error == 0) {
188 td->td_retval[0] = pid;
189 td->td_retval[1] = 0;
190 }
191 return (error);
192 }
193
194 int __exclusive_cache_line nprocs = 1; /* process 0 */
195 int lastpid = 0;
196 SYSCTL_INT(_kern, OID_AUTO, lastpid, CTLFLAG_RD, &lastpid, 0,
197 "Last used PID");
198
199 /*
200 * Random component to lastpid generation. We mix in a random factor to make
201 * it a little harder to predict. We sanity check the modulus value to avoid
202 * doing it in critical paths. Don't let it be too small or we pointlessly
203 * waste randomness entropy, and don't let it be impossibly large. Using a
204 * modulus that is too big causes a LOT more process table scans and slows
205 * down fork processing as the pidchecked caching is defeated.
206 */
207 static int randompid = 0;
208
209 static int
sysctl_kern_randompid(SYSCTL_HANDLER_ARGS)210 sysctl_kern_randompid(SYSCTL_HANDLER_ARGS)
211 {
212 int error, pid;
213
214 error = sysctl_wire_old_buffer(req, sizeof(int));
215 if (error != 0)
216 return(error);
217 sx_xlock(&allproc_lock);
218 pid = randompid;
219 error = sysctl_handle_int(oidp, &pid, 0, req);
220 if (error == 0 && req->newptr != NULL) {
221 if (pid == 0)
222 randompid = 0;
223 else if (pid == 1)
224 /* generate a random PID modulus between 100 and 1123 */
225 randompid = 100 + arc4random() % 1024;
226 else if (pid < 0 || pid > pid_max - 100)
227 /* out of range */
228 randompid = pid_max - 100;
229 else if (pid < 100)
230 /* Make it reasonable */
231 randompid = 100;
232 else
233 randompid = pid;
234 }
235 sx_xunlock(&allproc_lock);
236 return (error);
237 }
238
239 SYSCTL_PROC(_kern, OID_AUTO, randompid,
240 CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 0,
241 sysctl_kern_randompid, "I",
242 "Random PID modulus. Special values: 0: disable, 1: choose random value");
243
244 extern bitstr_t proc_id_pidmap;
245 extern bitstr_t proc_id_grpidmap;
246 extern bitstr_t proc_id_sessidmap;
247 extern bitstr_t proc_id_reapmap;
248
249 /*
250 * Find an unused process ID
251 *
252 * If RFHIGHPID is set (used during system boot), do not allocate
253 * low-numbered pids.
254 */
255 static int
fork_findpid(int flags)256 fork_findpid(int flags)
257 {
258 pid_t result;
259 int trypid, random;
260
261 /*
262 * Avoid calling arc4random with procid_lock held.
263 */
264 random = 0;
265 if (__predict_false(randompid))
266 random = arc4random() % randompid;
267
268 mtx_lock(&procid_lock);
269
270 trypid = lastpid + 1;
271 if (flags & RFHIGHPID) {
272 if (trypid < 10)
273 trypid = 10;
274 } else {
275 trypid += random;
276 }
277 retry:
278 if (trypid >= pid_max)
279 trypid = 2;
280
281 bit_ffc_at(&proc_id_pidmap, trypid, pid_max, &result);
282 if (result == -1) {
283 KASSERT(trypid != 2, ("unexpectedly ran out of IDs"));
284 trypid = 2;
285 goto retry;
286 }
287 if (bit_test(&proc_id_grpidmap, result) ||
288 bit_test(&proc_id_sessidmap, result) ||
289 bit_test(&proc_id_reapmap, result)) {
290 trypid = result + 1;
291 goto retry;
292 }
293
294 /*
295 * RFHIGHPID does not mess with the lastpid counter during boot.
296 */
297 if ((flags & RFHIGHPID) == 0)
298 lastpid = result;
299
300 bit_set(&proc_id_pidmap, result);
301 mtx_unlock(&procid_lock);
302
303 return (result);
304 }
305
306 static int
fork_norfproc(struct thread * td,int flags)307 fork_norfproc(struct thread *td, int flags)
308 {
309 struct proc *p1;
310 int error;
311
312 KASSERT((flags & RFPROC) == 0,
313 ("fork_norfproc called with RFPROC set"));
314 p1 = td->td_proc;
315
316 /*
317 * Quiesce other threads if necessary. If RFMEM is not specified we
318 * must ensure that other threads do not concurrently create a second
319 * process sharing the vmspace, see vmspace_unshare().
320 */
321 if ((p1->p_flag & (P_HADTHREADS | P_SYSTEM)) == P_HADTHREADS &&
322 ((flags & (RFCFDG | RFFDG)) != 0 || (flags & RFMEM) == 0)) {
323 PROC_LOCK(p1);
324 if (thread_single(p1, SINGLE_BOUNDARY)) {
325 PROC_UNLOCK(p1);
326 return (ERESTART);
327 }
328 PROC_UNLOCK(p1);
329 }
330
331 error = vm_forkproc(td, NULL, NULL, NULL, flags);
332 if (error != 0)
333 goto fail;
334
335 /*
336 * Close all file descriptors.
337 */
338 if ((flags & RFCFDG) != 0) {
339 struct filedesc *fdtmp;
340 struct pwddesc *pdtmp;
341
342 pdtmp = pdinit(td->td_proc->p_pd, false);
343 fdtmp = fdinit();
344 pdescfree(td);
345 fdescfree(td);
346 p1->p_fd = fdtmp;
347 p1->p_pd = pdtmp;
348 }
349
350 /*
351 * Unshare file descriptors (from parent).
352 */
353 if ((flags & RFFDG) != 0) {
354 fdunshare(td);
355 pdunshare(td);
356 }
357
358 fail:
359 if ((p1->p_flag & (P_HADTHREADS | P_SYSTEM)) == P_HADTHREADS &&
360 ((flags & (RFCFDG | RFFDG)) != 0 || (flags & RFMEM) == 0)) {
361 PROC_LOCK(p1);
362 thread_single_end(p1, SINGLE_BOUNDARY);
363 PROC_UNLOCK(p1);
364 }
365 return (error);
366 }
367
368 static void
do_fork(struct thread * td,struct fork_req * fr,struct proc * p2,struct thread * td2,struct vmspace * vm2,struct file * fp_procdesc)369 do_fork(struct thread *td, struct fork_req *fr, struct proc *p2, struct thread *td2,
370 struct vmspace *vm2, struct file *fp_procdesc)
371 {
372 struct proc *p1, *pptr;
373 struct filedesc *fd;
374 struct filedesc_to_leader *fdtol;
375 struct pwddesc *pd;
376 struct sigacts *newsigacts;
377
378 p1 = td->td_proc;
379
380 PROC_LOCK(p1);
381 bcopy(&p1->p_startcopy, &p2->p_startcopy,
382 __rangeof(struct proc, p_startcopy, p_endcopy));
383 pargs_hold(p2->p_args);
384 PROC_UNLOCK(p1);
385
386 bzero(&p2->p_startzero,
387 __rangeof(struct proc, p_startzero, p_endzero));
388
389 /* Tell the prison that we exist. */
390 prison_proc_hold(p2->p_ucred->cr_prison);
391
392 p2->p_state = PRS_NEW; /* protect against others */
393 p2->p_pid = fork_findpid(fr->fr_flags);
394 AUDIT_ARG_PID(p2->p_pid);
395 TSFORK(p2->p_pid, p1->p_pid);
396
397 sx_xlock(&allproc_lock);
398 LIST_INSERT_HEAD(&allproc, p2, p_list);
399 allproc_gen++;
400 prison_proc_link(p2->p_ucred->cr_prison, p2);
401 sx_xunlock(&allproc_lock);
402
403 sx_xlock(PIDHASHLOCK(p2->p_pid));
404 LIST_INSERT_HEAD(PIDHASH(p2->p_pid), p2, p_hash);
405 sx_xunlock(PIDHASHLOCK(p2->p_pid));
406
407 tidhash_add(td2);
408
409 /*
410 * Malloc things while we don't hold any locks.
411 */
412 if (fr->fr_flags & RFSIGSHARE)
413 newsigacts = NULL;
414 else
415 newsigacts = sigacts_alloc();
416
417 /*
418 * Copy filedesc.
419 */
420 if (fr->fr_flags & RFCFDG) {
421 pd = pdinit(p1->p_pd, false);
422 fd = fdinit();
423 fdtol = NULL;
424 } else if (fr->fr_flags & RFFDG) {
425 if (fr->fr_flags2 & FR2_SHARE_PATHS)
426 pd = pdshare(p1->p_pd);
427 else
428 pd = pdcopy(p1->p_pd);
429 fd = fdcopy(p1->p_fd);
430 fdtol = NULL;
431 } else {
432 if (fr->fr_flags2 & FR2_SHARE_PATHS)
433 pd = pdcopy(p1->p_pd);
434 else
435 pd = pdshare(p1->p_pd);
436 fd = fdshare(p1->p_fd);
437 if (p1->p_fdtol == NULL)
438 p1->p_fdtol = filedesc_to_leader_alloc(NULL, NULL,
439 p1->p_leader);
440 if ((fr->fr_flags & RFTHREAD) != 0) {
441 /*
442 * Shared file descriptor table, and shared
443 * process leaders.
444 */
445 fdtol = filedesc_to_leader_share(p1->p_fdtol, p1->p_fd);
446 } else {
447 /*
448 * Shared file descriptor table, and different
449 * process leaders.
450 */
451 fdtol = filedesc_to_leader_alloc(p1->p_fdtol,
452 p1->p_fd, p2);
453 }
454 }
455 /*
456 * Make a proc table entry for the new process.
457 * Start by zeroing the section of proc that is zero-initialized,
458 * then copy the section that is copied directly from the parent.
459 */
460
461 PROC_LOCK(p2);
462 PROC_LOCK(p1);
463
464 bzero(&td2->td_startzero,
465 __rangeof(struct thread, td_startzero, td_endzero));
466
467 bcopy(&td->td_startcopy, &td2->td_startcopy,
468 __rangeof(struct thread, td_startcopy, td_endcopy));
469
470 bcopy(&p2->p_comm, &td2->td_name, sizeof(td2->td_name));
471 td2->td_sigstk = td->td_sigstk;
472 td2->td_flags = TDF_INMEM;
473 td2->td_lend_user_pri = PRI_MAX;
474
475 #ifdef VIMAGE
476 td2->td_vnet = NULL;
477 td2->td_vnet_lpush = NULL;
478 #endif
479
480 /*
481 * Allow the scheduler to initialize the child.
482 */
483 thread_lock(td);
484 sched_fork(td, td2);
485 /*
486 * Request AST to check for TDP_RFPPWAIT. Do it here
487 * to avoid calling thread_lock() again.
488 */
489 if ((fr->fr_flags & RFPPWAIT) != 0)
490 ast_sched_locked(td, TDA_VFORK);
491 thread_unlock(td);
492
493 /*
494 * Duplicate sub-structures as needed.
495 * Increase reference counts on shared objects.
496 */
497 p2->p_flag = P_INMEM;
498 p2->p_flag2 = p1->p_flag2 & (P2_ASLR_DISABLE | P2_ASLR_ENABLE |
499 P2_ASLR_IGNSTART | P2_NOTRACE | P2_NOTRACE_EXEC |
500 P2_PROTMAX_ENABLE | P2_PROTMAX_DISABLE | P2_TRAPCAP |
501 P2_STKGAP_DISABLE | P2_STKGAP_DISABLE_EXEC | P2_NO_NEW_PRIVS |
502 P2_WXORX_DISABLE | P2_WXORX_ENABLE_EXEC);
503 p2->p_swtick = ticks;
504 if (p1->p_flag & P_PROFIL)
505 startprofclock(p2);
506
507 if (fr->fr_flags & RFSIGSHARE) {
508 p2->p_sigacts = sigacts_hold(p1->p_sigacts);
509 } else {
510 sigacts_copy(newsigacts, p1->p_sigacts);
511 p2->p_sigacts = newsigacts;
512 if ((fr->fr_flags2 & (FR2_DROPSIG_CAUGHT | FR2_KPROC)) != 0) {
513 mtx_lock(&p2->p_sigacts->ps_mtx);
514 if ((fr->fr_flags2 & FR2_DROPSIG_CAUGHT) != 0)
515 sig_drop_caught(p2);
516 if ((fr->fr_flags2 & FR2_KPROC) != 0)
517 p2->p_sigacts->ps_flag |= PS_NOCLDWAIT;
518 mtx_unlock(&p2->p_sigacts->ps_mtx);
519 }
520 }
521
522 if (fr->fr_flags & RFTSIGZMB)
523 p2->p_sigparent = RFTSIGNUM(fr->fr_flags);
524 else if (fr->fr_flags & RFLINUXTHPN)
525 p2->p_sigparent = SIGUSR1;
526 else
527 p2->p_sigparent = SIGCHLD;
528
529 if ((fr->fr_flags2 & FR2_KPROC) != 0) {
530 p2->p_flag |= P_SYSTEM | P_KPROC;
531 td2->td_pflags |= TDP_KTHREAD;
532 }
533
534 p2->p_textvp = p1->p_textvp;
535 p2->p_textdvp = p1->p_textdvp;
536 p2->p_fd = fd;
537 p2->p_fdtol = fdtol;
538 p2->p_pd = pd;
539
540 if (p1->p_flag2 & P2_INHERIT_PROTECTED) {
541 p2->p_flag |= P_PROTECTED;
542 p2->p_flag2 |= P2_INHERIT_PROTECTED;
543 }
544
545 /*
546 * p_limit is copy-on-write. Bump its refcount.
547 */
548 lim_fork(p1, p2);
549
550 thread_cow_get_proc(td2, p2);
551
552 pstats_fork(p1->p_stats, p2->p_stats);
553
554 PROC_UNLOCK(p1);
555 PROC_UNLOCK(p2);
556
557 /*
558 * Bump references to the text vnode and directory, and copy
559 * the hardlink name.
560 */
561 if (p2->p_textvp != NULL)
562 vrefact(p2->p_textvp);
563 if (p2->p_textdvp != NULL)
564 vrefact(p2->p_textdvp);
565 p2->p_binname = p1->p_binname == NULL ? NULL :
566 strdup(p1->p_binname, M_PARGS);
567
568 /*
569 * Set up linkage for kernel based threading.
570 */
571 if ((fr->fr_flags & RFTHREAD) != 0) {
572 mtx_lock(&ppeers_lock);
573 p2->p_peers = p1->p_peers;
574 p1->p_peers = p2;
575 p2->p_leader = p1->p_leader;
576 mtx_unlock(&ppeers_lock);
577 PROC_LOCK(p1->p_leader);
578 if ((p1->p_leader->p_flag & P_WEXIT) != 0) {
579 PROC_UNLOCK(p1->p_leader);
580 /*
581 * The task leader is exiting, so process p1 is
582 * going to be killed shortly. Since p1 obviously
583 * isn't dead yet, we know that the leader is either
584 * sending SIGKILL's to all the processes in this
585 * task or is sleeping waiting for all the peers to
586 * exit. We let p1 complete the fork, but we need
587 * to go ahead and kill the new process p2 since
588 * the task leader may not get a chance to send
589 * SIGKILL to it. We leave it on the list so that
590 * the task leader will wait for this new process
591 * to commit suicide.
592 */
593 PROC_LOCK(p2);
594 kern_psignal(p2, SIGKILL);
595 PROC_UNLOCK(p2);
596 } else
597 PROC_UNLOCK(p1->p_leader);
598 } else {
599 p2->p_peers = NULL;
600 p2->p_leader = p2;
601 }
602
603 sx_xlock(&proctree_lock);
604 PGRP_LOCK(p1->p_pgrp);
605 PROC_LOCK(p2);
606 PROC_LOCK(p1);
607
608 /*
609 * Preserve some more flags in subprocess. P_PROFIL has already
610 * been preserved.
611 */
612 p2->p_flag |= p1->p_flag & P_SUGID;
613 td2->td_pflags |= (td->td_pflags & (TDP_ALTSTACK | TDP_SIGFASTBLOCK));
614 SESS_LOCK(p1->p_session);
615 if (p1->p_session->s_ttyvp != NULL && p1->p_flag & P_CONTROLT)
616 p2->p_flag |= P_CONTROLT;
617 SESS_UNLOCK(p1->p_session);
618 if (fr->fr_flags & RFPPWAIT)
619 p2->p_flag |= P_PPWAIT;
620
621 p2->p_pgrp = p1->p_pgrp;
622 LIST_INSERT_AFTER(p1, p2, p_pglist);
623 PGRP_UNLOCK(p1->p_pgrp);
624 LIST_INIT(&p2->p_children);
625 LIST_INIT(&p2->p_orphans);
626
627 callout_init_mtx(&p2->p_itcallout, &p2->p_mtx, 0);
628
629 /*
630 * This begins the section where we must prevent the parent
631 * from being swapped.
632 */
633 _PHOLD(p1);
634 PROC_UNLOCK(p1);
635
636 /*
637 * Attach the new process to its parent.
638 *
639 * If RFNOWAIT is set, the newly created process becomes a child
640 * of init. This effectively disassociates the child from the
641 * parent.
642 */
643 if ((fr->fr_flags & RFNOWAIT) != 0) {
644 pptr = p1->p_reaper;
645 p2->p_reaper = pptr;
646 } else {
647 p2->p_reaper = (p1->p_treeflag & P_TREE_REAPER) != 0 ?
648 p1 : p1->p_reaper;
649 pptr = p1;
650 }
651 p2->p_pptr = pptr;
652 p2->p_oppid = pptr->p_pid;
653 LIST_INSERT_HEAD(&pptr->p_children, p2, p_sibling);
654 LIST_INIT(&p2->p_reaplist);
655 LIST_INSERT_HEAD(&p2->p_reaper->p_reaplist, p2, p_reapsibling);
656 if (p2->p_reaper == p1 && p1 != initproc) {
657 p2->p_reapsubtree = p2->p_pid;
658 proc_id_set_cond(PROC_ID_REAP, p2->p_pid);
659 }
660 sx_xunlock(&proctree_lock);
661
662 /* Inform accounting that we have forked. */
663 p2->p_acflag = AFORK;
664 PROC_UNLOCK(p2);
665
666 #ifdef KTRACE
667 ktrprocfork(p1, p2);
668 #endif
669
670 /*
671 * Finish creating the child process. It will return via a different
672 * execution path later. (ie: directly into user mode)
673 */
674 vm_forkproc(td, p2, td2, vm2, fr->fr_flags);
675
676 if (fr->fr_flags == (RFFDG | RFPROC)) {
677 VM_CNT_INC(v_forks);
678 VM_CNT_ADD(v_forkpages, p2->p_vmspace->vm_dsize +
679 p2->p_vmspace->vm_ssize);
680 } else if (fr->fr_flags == (RFFDG | RFPROC | RFPPWAIT | RFMEM)) {
681 VM_CNT_INC(v_vforks);
682 VM_CNT_ADD(v_vforkpages, p2->p_vmspace->vm_dsize +
683 p2->p_vmspace->vm_ssize);
684 } else if (p1 == &proc0) {
685 VM_CNT_INC(v_kthreads);
686 VM_CNT_ADD(v_kthreadpages, p2->p_vmspace->vm_dsize +
687 p2->p_vmspace->vm_ssize);
688 } else {
689 VM_CNT_INC(v_rforks);
690 VM_CNT_ADD(v_rforkpages, p2->p_vmspace->vm_dsize +
691 p2->p_vmspace->vm_ssize);
692 }
693
694 /*
695 * Associate the process descriptor with the process before anything
696 * can happen that might cause that process to need the descriptor.
697 * However, don't do this until after fork(2) can no longer fail.
698 */
699 if (fr->fr_flags & RFPROCDESC)
700 procdesc_new(p2, fr->fr_pd_flags);
701
702 /*
703 * Both processes are set up, now check if any loadable modules want
704 * to adjust anything.
705 */
706 EVENTHANDLER_DIRECT_INVOKE(process_fork, p1, p2, fr->fr_flags);
707
708 /*
709 * Set the child start time and mark the process as being complete.
710 */
711 PROC_LOCK(p2);
712 PROC_LOCK(p1);
713 microuptime(&p2->p_stats->p_start);
714 PROC_SLOCK(p2);
715 p2->p_state = PRS_NORMAL;
716 PROC_SUNLOCK(p2);
717
718 #ifdef KDTRACE_HOOKS
719 /*
720 * Tell the DTrace fasttrap provider about the new process so that any
721 * tracepoints inherited from the parent can be removed. We have to do
722 * this only after p_state is PRS_NORMAL since the fasttrap module will
723 * use pfind() later on.
724 */
725 if ((fr->fr_flags & RFMEM) == 0 && dtrace_fasttrap_fork)
726 dtrace_fasttrap_fork(p1, p2);
727 #endif
728 if (fr->fr_flags & RFPPWAIT) {
729 td->td_pflags |= TDP_RFPPWAIT;
730 td->td_rfppwait_p = p2;
731 td->td_dbgflags |= TDB_VFORK;
732 }
733 PROC_UNLOCK(p2);
734
735 /*
736 * Tell any interested parties about the new process.
737 */
738 knote_fork(p1->p_klist, p2->p_pid);
739
740 /*
741 * Now can be swapped.
742 */
743 _PRELE(p1);
744 PROC_UNLOCK(p1);
745 SDT_PROBE3(proc, , , create, p2, p1, fr->fr_flags);
746
747 if (fr->fr_flags & RFPROCDESC) {
748 procdesc_finit(p2->p_procdesc, fp_procdesc);
749 fdrop(fp_procdesc, td);
750 }
751
752 /*
753 * Speculative check for PTRACE_FORK. PTRACE_FORK is not
754 * synced with forks in progress so it is OK if we miss it
755 * if being set atm.
756 */
757 if ((p1->p_ptevents & PTRACE_FORK) != 0) {
758 sx_xlock(&proctree_lock);
759 PROC_LOCK(p2);
760
761 /*
762 * p1->p_ptevents & p1->p_pptr are protected by both
763 * process and proctree locks for modifications,
764 * so owning proctree_lock allows the race-free read.
765 */
766 if ((p1->p_ptevents & PTRACE_FORK) != 0) {
767 /*
768 * Arrange for debugger to receive the fork event.
769 *
770 * We can report PL_FLAG_FORKED regardless of
771 * P_FOLLOWFORK settings, but it does not make a sense
772 * for runaway child.
773 */
774 td->td_dbgflags |= TDB_FORK;
775 td->td_dbg_forked = p2->p_pid;
776 td2->td_dbgflags |= TDB_STOPATFORK;
777 proc_set_traced(p2, true);
778 CTR2(KTR_PTRACE,
779 "do_fork: attaching to new child pid %d: oppid %d",
780 p2->p_pid, p2->p_oppid);
781 proc_reparent(p2, p1->p_pptr, false);
782 }
783 PROC_UNLOCK(p2);
784 sx_xunlock(&proctree_lock);
785 }
786
787 racct_proc_fork_done(p2);
788
789 if ((fr->fr_flags & RFSTOPPED) == 0) {
790 if (fr->fr_pidp != NULL)
791 *fr->fr_pidp = p2->p_pid;
792 /*
793 * If RFSTOPPED not requested, make child runnable and
794 * add to run queue.
795 */
796 thread_lock(td2);
797 TD_SET_CAN_RUN(td2);
798 sched_add(td2, SRQ_BORING);
799 } else {
800 *fr->fr_procp = p2;
801 }
802 }
803
804 static void
ast_vfork(struct thread * td,int tda __unused)805 ast_vfork(struct thread *td, int tda __unused)
806 {
807 struct proc *p, *p2;
808
809 MPASS(td->td_pflags & TDP_RFPPWAIT);
810
811 p = td->td_proc;
812 /*
813 * Preserve synchronization semantics of vfork. If
814 * waiting for child to exec or exit, fork set
815 * P_PPWAIT on child, and there we sleep on our proc
816 * (in case of exit).
817 *
818 * Do it after the ptracestop() above is finished, to
819 * not block our debugger until child execs or exits
820 * to finish vfork wait.
821 */
822 td->td_pflags &= ~TDP_RFPPWAIT;
823 p2 = td->td_rfppwait_p;
824 again:
825 PROC_LOCK(p2);
826 while (p2->p_flag & P_PPWAIT) {
827 PROC_LOCK(p);
828 if (thread_suspend_check_needed()) {
829 PROC_UNLOCK(p2);
830 thread_suspend_check(0);
831 PROC_UNLOCK(p);
832 goto again;
833 } else {
834 PROC_UNLOCK(p);
835 }
836 cv_timedwait(&p2->p_pwait, &p2->p_mtx, hz);
837 }
838 PROC_UNLOCK(p2);
839
840 if (td->td_dbgflags & TDB_VFORK) {
841 PROC_LOCK(p);
842 if (p->p_ptevents & PTRACE_VFORK)
843 ptracestop(td, SIGTRAP, NULL);
844 td->td_dbgflags &= ~TDB_VFORK;
845 PROC_UNLOCK(p);
846 }
847 }
848
849 int
fork1(struct thread * td,struct fork_req * fr)850 fork1(struct thread *td, struct fork_req *fr)
851 {
852 struct proc *p1, *newproc;
853 struct thread *td2;
854 struct vmspace *vm2;
855 struct ucred *cred;
856 struct file *fp_procdesc;
857 struct pgrp *pg;
858 vm_ooffset_t mem_charged;
859 int error, nprocs_new;
860 static int curfail;
861 static struct timeval lastfail;
862 int flags, pages;
863 bool killsx_locked, singlethreaded;
864
865 flags = fr->fr_flags;
866 pages = fr->fr_pages;
867
868 if ((flags & RFSTOPPED) != 0)
869 MPASS(fr->fr_procp != NULL && fr->fr_pidp == NULL);
870 else
871 MPASS(fr->fr_procp == NULL);
872
873 /* Check for the undefined or unimplemented flags. */
874 if ((flags & ~(RFFLAGS | RFTSIGFLAGS(RFTSIGMASK))) != 0)
875 return (EINVAL);
876
877 /* Signal value requires RFTSIGZMB. */
878 if ((flags & RFTSIGFLAGS(RFTSIGMASK)) != 0 && (flags & RFTSIGZMB) == 0)
879 return (EINVAL);
880
881 /* Can't copy and clear. */
882 if ((flags & (RFFDG|RFCFDG)) == (RFFDG|RFCFDG))
883 return (EINVAL);
884
885 /* Check the validity of the signal number. */
886 if ((flags & RFTSIGZMB) != 0 && (u_int)RFTSIGNUM(flags) > _SIG_MAXSIG)
887 return (EINVAL);
888
889 if ((flags & RFPROCDESC) != 0) {
890 /* Can't not create a process yet get a process descriptor. */
891 if ((flags & RFPROC) == 0)
892 return (EINVAL);
893
894 /* Must provide a place to put a procdesc if creating one. */
895 if (fr->fr_pd_fd == NULL)
896 return (EINVAL);
897
898 /* Check if we are using supported flags. */
899 if ((fr->fr_pd_flags & ~PD_ALLOWED_AT_FORK) != 0)
900 return (EINVAL);
901 }
902
903 p1 = td->td_proc;
904
905 /*
906 * Here we don't create a new process, but we divorce
907 * certain parts of a process from itself.
908 */
909 if ((flags & RFPROC) == 0) {
910 if (fr->fr_procp != NULL)
911 *fr->fr_procp = NULL;
912 else if (fr->fr_pidp != NULL)
913 *fr->fr_pidp = 0;
914 return (fork_norfproc(td, flags));
915 }
916
917 fp_procdesc = NULL;
918 newproc = NULL;
919 vm2 = NULL;
920 killsx_locked = false;
921 singlethreaded = false;
922
923 /*
924 * Increment the nprocs resource before allocations occur.
925 * Although process entries are dynamically created, we still
926 * keep a global limit on the maximum number we will
927 * create. There are hard-limits as to the number of processes
928 * that can run, established by the KVA and memory usage for
929 * the process data.
930 *
931 * Don't allow a nonprivileged user to use the last ten
932 * processes; don't let root exceed the limit.
933 */
934 nprocs_new = atomic_fetchadd_int(&nprocs, 1) + 1;
935 if (nprocs_new >= maxproc - 10) {
936 if (priv_check_cred(td->td_ucred, PRIV_MAXPROC) != 0 ||
937 nprocs_new >= maxproc) {
938 error = EAGAIN;
939 sx_xlock(&allproc_lock);
940 if (ppsratecheck(&lastfail, &curfail, 1)) {
941 printf("maxproc limit exceeded by uid %u "
942 "(pid %d); see tuning(7) and "
943 "login.conf(5)\n",
944 td->td_ucred->cr_ruid, p1->p_pid);
945 }
946 sx_xunlock(&allproc_lock);
947 goto fail2;
948 }
949 }
950
951 /*
952 * If we are possibly multi-threaded, and there is a process
953 * sending a signal to our group right now, ensure that our
954 * other threads cannot be chosen for the signal queueing.
955 * Otherwise, this might delay signal action, and make the new
956 * child escape the signaling.
957 */
958 pg = p1->p_pgrp;
959 if (p1->p_numthreads > 1) {
960 if (sx_try_slock(&pg->pg_killsx) != 0) {
961 killsx_locked = true;
962 } else {
963 PROC_LOCK(p1);
964 if (thread_single(p1, SINGLE_BOUNDARY)) {
965 PROC_UNLOCK(p1);
966 error = ERESTART;
967 goto fail2;
968 }
969 PROC_UNLOCK(p1);
970 singlethreaded = true;
971 }
972 }
973
974 /*
975 * Atomically check for signals and block processes from sending
976 * a signal to our process group until the child is visible.
977 */
978 if (!killsx_locked && sx_slock_sig(&pg->pg_killsx) != 0) {
979 error = ERESTART;
980 goto fail2;
981 }
982 if (__predict_false(p1->p_pgrp != pg || sig_intr() != 0)) {
983 /*
984 * Either the process was moved to other process
985 * group, or there is pending signal. sx_slock_sig()
986 * does not check for signals if not sleeping for the
987 * lock.
988 */
989 sx_sunlock(&pg->pg_killsx);
990 killsx_locked = false;
991 error = ERESTART;
992 goto fail2;
993 } else {
994 killsx_locked = true;
995 }
996
997 /*
998 * If required, create a process descriptor in the parent first; we
999 * will abandon it if something goes wrong. We don't finit() until
1000 * later.
1001 */
1002 if (flags & RFPROCDESC) {
1003 error = procdesc_falloc(td, &fp_procdesc, fr->fr_pd_fd,
1004 fr->fr_pd_flags, fr->fr_pd_fcaps);
1005 if (error != 0)
1006 goto fail2;
1007 AUDIT_ARG_FD(*fr->fr_pd_fd);
1008 }
1009
1010 mem_charged = 0;
1011 if (pages == 0)
1012 pages = kstack_pages;
1013 /* Allocate new proc. */
1014 newproc = uma_zalloc(proc_zone, M_WAITOK);
1015 td2 = FIRST_THREAD_IN_PROC(newproc);
1016 if (td2 == NULL) {
1017 td2 = thread_alloc(pages);
1018 if (td2 == NULL) {
1019 error = ENOMEM;
1020 goto fail2;
1021 }
1022 proc_linkup(newproc, td2);
1023 } else {
1024 kmsan_thread_alloc(td2);
1025 if (td2->td_kstack == 0 || td2->td_kstack_pages != pages) {
1026 if (td2->td_kstack != 0)
1027 vm_thread_dispose(td2);
1028 if (!thread_alloc_stack(td2, pages)) {
1029 error = ENOMEM;
1030 goto fail2;
1031 }
1032 } else {
1033 kasan_mark((void *)td2->td_kstack,
1034 ptoa(td2->td_kstack_pages),
1035 ptoa(td2->td_kstack_pages), 0);
1036 }
1037 }
1038
1039 if ((flags & RFMEM) == 0) {
1040 vm2 = vmspace_fork(p1->p_vmspace, &mem_charged);
1041 if (vm2 == NULL) {
1042 error = ENOMEM;
1043 goto fail2;
1044 }
1045 if (!swap_reserve(mem_charged)) {
1046 /*
1047 * The swap reservation failed. The accounting
1048 * from the entries of the copied vm2 will be
1049 * subtracted in vmspace_free(), so force the
1050 * reservation there.
1051 */
1052 swap_reserve_force(mem_charged);
1053 error = ENOMEM;
1054 goto fail2;
1055 }
1056 } else
1057 vm2 = NULL;
1058
1059 /*
1060 * XXX: This is ugly; when we copy resource usage, we need to bump
1061 * per-cred resource counters.
1062 */
1063 proc_set_cred_init(newproc, td->td_ucred);
1064
1065 /*
1066 * Initialize resource accounting for the child process.
1067 */
1068 error = racct_proc_fork(p1, newproc);
1069 if (error != 0) {
1070 error = EAGAIN;
1071 goto fail1;
1072 }
1073
1074 #ifdef MAC
1075 mac_proc_init(newproc);
1076 #endif
1077 newproc->p_klist = knlist_alloc(&newproc->p_mtx);
1078 STAILQ_INIT(&newproc->p_ktr);
1079
1080 /*
1081 * Increment the count of procs running with this uid. Don't allow
1082 * a nonprivileged user to exceed their current limit.
1083 */
1084 cred = td->td_ucred;
1085 if (!chgproccnt(cred->cr_ruidinfo, 1, lim_cur(td, RLIMIT_NPROC))) {
1086 if (priv_check_cred(cred, PRIV_PROC_LIMIT) != 0)
1087 goto fail0;
1088 chgproccnt(cred->cr_ruidinfo, 1, 0);
1089 }
1090
1091 do_fork(td, fr, newproc, td2, vm2, fp_procdesc);
1092 error = 0;
1093 goto cleanup;
1094 fail0:
1095 error = EAGAIN;
1096 #ifdef MAC
1097 mac_proc_destroy(newproc);
1098 #endif
1099 racct_proc_exit(newproc);
1100 fail1:
1101 proc_unset_cred(newproc);
1102 fail2:
1103 if (vm2 != NULL)
1104 vmspace_free(vm2);
1105 uma_zfree(proc_zone, newproc);
1106 if ((flags & RFPROCDESC) != 0 && fp_procdesc != NULL) {
1107 fdclose(td, fp_procdesc, *fr->fr_pd_fd);
1108 fdrop(fp_procdesc, td);
1109 }
1110 atomic_add_int(&nprocs, -1);
1111 cleanup:
1112 if (killsx_locked)
1113 sx_sunlock(&pg->pg_killsx);
1114 if (singlethreaded) {
1115 PROC_LOCK(p1);
1116 thread_single_end(p1, SINGLE_BOUNDARY);
1117 PROC_UNLOCK(p1);
1118 }
1119 if (error != 0)
1120 pause("fork", hz / 2);
1121 return (error);
1122 }
1123
1124 /*
1125 * Handle the return of a child process from fork1(). This function
1126 * is called from the MD fork_trampoline() entry point.
1127 */
1128 void
fork_exit(void (* callout)(void *,struct trapframe *),void * arg,struct trapframe * frame)1129 fork_exit(void (*callout)(void *, struct trapframe *), void *arg,
1130 struct trapframe *frame)
1131 {
1132 struct proc *p;
1133 struct thread *td;
1134 struct thread *dtd;
1135
1136 kmsan_mark(frame, sizeof(*frame), KMSAN_STATE_INITED);
1137
1138 td = curthread;
1139 p = td->td_proc;
1140 KASSERT(p->p_state == PRS_NORMAL, ("executing process is still new"));
1141
1142 CTR4(KTR_PROC, "fork_exit: new thread %p (td_sched %p, pid %d, %s)",
1143 td, td_get_sched(td), p->p_pid, td->td_name);
1144
1145 sched_fork_exit(td);
1146
1147 /*
1148 * Processes normally resume in mi_switch() after being
1149 * cpu_switch()'ed to, but when children start up they arrive here
1150 * instead, so we must do much the same things as mi_switch() would.
1151 */
1152 if ((dtd = PCPU_GET(deadthread))) {
1153 PCPU_SET(deadthread, NULL);
1154 thread_stash(dtd);
1155 }
1156 thread_unlock(td);
1157
1158 /*
1159 * cpu_fork_kthread_handler intercepts this function call to
1160 * have this call a non-return function to stay in kernel mode.
1161 * initproc has its own fork handler, but it does return.
1162 */
1163 KASSERT(callout != NULL, ("NULL callout in fork_exit"));
1164 callout(arg, frame);
1165
1166 /*
1167 * Check if a kernel thread misbehaved and returned from its main
1168 * function.
1169 */
1170 if (p->p_flag & P_KPROC) {
1171 printf("Kernel thread \"%s\" (pid %d) exited prematurely.\n",
1172 td->td_name, p->p_pid);
1173 kthread_exit();
1174 }
1175 mtx_assert(&Giant, MA_NOTOWNED);
1176
1177 if (p->p_sysent->sv_schedtail != NULL)
1178 (p->p_sysent->sv_schedtail)(td);
1179 }
1180
1181 /*
1182 * Simplified back end of syscall(), used when returning from fork()
1183 * directly into user mode. This function is passed in to fork_exit()
1184 * as the first parameter and is called when returning to a new
1185 * userland process.
1186 */
1187 void
fork_return(struct thread * td,struct trapframe * frame)1188 fork_return(struct thread *td, struct trapframe *frame)
1189 {
1190 struct proc *p;
1191
1192 p = td->td_proc;
1193 if (td->td_dbgflags & TDB_STOPATFORK) {
1194 PROC_LOCK(p);
1195 if ((p->p_flag & P_TRACED) != 0) {
1196 /*
1197 * Inform the debugger if one is still present.
1198 */
1199 td->td_dbgflags |= TDB_CHILD | TDB_SCX | TDB_FSTP;
1200 ptracestop(td, SIGSTOP, NULL);
1201 td->td_dbgflags &= ~(TDB_CHILD | TDB_SCX);
1202 } else {
1203 /*
1204 * ... otherwise clear the request.
1205 */
1206 td->td_dbgflags &= ~TDB_STOPATFORK;
1207 }
1208 PROC_UNLOCK(p);
1209 } else if (p->p_flag & P_TRACED) {
1210 /*
1211 * This is the start of a new thread in a traced
1212 * process. Report a system call exit event.
1213 */
1214 PROC_LOCK(p);
1215 td->td_dbgflags |= TDB_SCX;
1216 if ((p->p_ptevents & PTRACE_SCX) != 0 ||
1217 (td->td_dbgflags & TDB_BORN) != 0)
1218 ptracestop(td, SIGTRAP, NULL);
1219 td->td_dbgflags &= ~(TDB_SCX | TDB_BORN);
1220 PROC_UNLOCK(p);
1221 }
1222
1223 /*
1224 * If the prison was killed mid-fork, die along with it.
1225 */
1226 if (!prison_isalive(td->td_ucred->cr_prison))
1227 exit1(td, 0, SIGKILL);
1228
1229 userret(td, frame);
1230
1231 #ifdef KTRACE
1232 if (KTRPOINT(td, KTR_SYSRET))
1233 ktrsysret(td->td_sa.code, 0, 0);
1234 #endif
1235 }
1236
1237 static void
fork_init(void * arg __unused)1238 fork_init(void *arg __unused)
1239 {
1240 ast_register(TDA_VFORK, ASTR_ASTF_REQUIRED | ASTR_TDP, TDP_RFPPWAIT,
1241 ast_vfork);
1242 }
1243 SYSINIT(fork, SI_SUB_INTRINSIC, SI_ORDER_ANY, fork_init, NULL);
1244