sys/kern/kern_fork.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 | /* * Copyright (c) 1982, 1986, 1989, 1991, 1993 * The Regents of the University of California. All rights reserved. * (c) UNIX System Laboratories, Inc. * All or some portions of this file are derived from material licensed * to the University of California by American Telephone and Telegraph * Co. or Unix System Laboratories, Inc. and are reproduced herein with * the permission of UNIX System Laboratories, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)kern_fork.c 8.6 (Berkeley) 4/8/94 * $FreeBSD: src/sys/kern/kern_fork.c,v 1.72.2.14 2003/06/26 04:15:10 silby Exp $ */ #include "opt_ktrace.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/sysmsg.h> #include <sys/filedesc.h> #include <sys/kernel.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/proc.h> #include <sys/resourcevar.h> #include <sys/vnode.h> #include <sys/acct.h> #include <sys/ktrace.h> #include <sys/unistd.h> #include <sys/jail.h> #include <sys/lwp.h> #include <vm/vm.h> #include <sys/lock.h> #include <vm/pmap.h> #include <vm/vm_map.h> #include <vm/vm_extern.h> #include <sys/vmmeter.h> #include <sys/refcount.h> #include <sys/thread2.h> #include <sys/signal2.h> #include <sys/spinlock2.h> #include <sys/dsched.h> static MALLOC_DEFINE(M_ATFORK, "atfork", "atfork callback"); static MALLOC_DEFINE(M_REAPER, "reaper", "process reapers"); /* * These are the stuctures used to create a callout list for things to do * when forking a process */ struct forklist { forklist_fn function; TAILQ_ENTRY(forklist) next; }; TAILQ_HEAD(forklist_head, forklist); static struct forklist_head fork_list = TAILQ_HEAD_INITIALIZER(fork_list); static struct lwp *lwp_fork1(struct lwp *, struct proc *, int flags, const cpumask_t *mask); static void lwp_fork2(struct lwp *lp1, struct proc *destproc, struct lwp *lp2, int flags); static int lwp_create1(struct lwp_params *params, const cpumask_t *mask); static struct lock reaper_lock = LOCK_INITIALIZER("reapgl", 0, 0); static volatile unsigned int reap_tid = 1; /* reaping transaction id */ int forksleep; /* Place for fork1() to sleep on. */ /* * Red-Black tree support for LWPs */ static int rb_lwp_compare(struct lwp *lp1, struct lwp *lp2) { if (lp1->lwp_tid < lp2->lwp_tid) return(-1); if (lp1->lwp_tid > lp2->lwp_tid) return(1); return(0); } RB_GENERATE2(lwp_rb_tree, lwp, u.lwp_rbnode, rb_lwp_compare, lwpid_t, lwp_tid); /* * When forking, memory underpinning umtx-supported mutexes may be set * COW causing the physical address to change. We must wakeup any threads * blocked on the physical address to allow them to re-resolve their VM. * * (caller is holding p->p_token) */ static void wake_umtx_threads(struct proc *p1) { struct lwp *lp; struct thread *td; RB_FOREACH(lp, lwp_rb_tree, &p1->p_lwp_tree) { td = lp->lwp_thread; if (td && (td->td_flags & TDF_TSLEEPQ) && (td->td_wdomain & PDOMAIN_MASK) == PDOMAIN_UMTX) { wakeup_domain(td->td_wchan, PDOMAIN_UMTX); } } } /* * fork() system call */ int sys_fork(struct sysmsg *sysmsg, const struct fork_args *uap) { struct lwp *lp = curthread->td_lwp; struct proc *p2; int error; error = fork1(lp, RFFDG | RFPROC | RFPGLOCK, &p2); if (error == 0) { PHOLD(p2); start_forked_proc(lp, p2); sysmsg->sysmsg_fds[0] = p2->p_pid; sysmsg->sysmsg_fds[1] = 0; PRELE(p2); } return error; } /* * vfork() system call */ int sys_vfork(struct sysmsg *sysmsg, const struct vfork_args *uap) { struct lwp *lp = curthread->td_lwp; struct proc *p2; int error; error = fork1(lp, RFFDG | RFPROC | RFPPWAIT | RFMEM | RFPGLOCK, &p2); if (error == 0) { PHOLD(p2); start_forked_proc(lp, p2); sysmsg->sysmsg_fds[0] = p2->p_pid; sysmsg->sysmsg_fds[1] = 0; PRELE(p2); } return error; } /* * Handle rforks. An rfork may (1) operate on the current process without * creating a new, (2) create a new process that shared the current process's * vmspace, signals, and/or descriptors, or (3) create a new process that does * not share these things (normal fork). * * Note that we only call start_forked_proc() if a new process is actually * created. * * rfork { int flags } */ int sys_rfork(struct sysmsg *sysmsg, const struct rfork_args *uap) { struct lwp *lp = curthread->td_lwp; struct proc *p2; int error; if ((uap->flags & RFKERNELONLY) != 0) return (EINVAL); error = fork1(lp, uap->flags | RFPGLOCK, &p2); if (error == 0) { if (p2) { PHOLD(p2); start_forked_proc(lp, p2); sysmsg->sysmsg_fds[0] = p2->p_pid; sysmsg->sysmsg_fds[1] = 0; PRELE(p2); } else { sysmsg->sysmsg_fds[0] = 0; sysmsg->sysmsg_fds[1] = 0; } } return error; } static int lwp_create1(struct lwp_params *uprm, const cpumask_t *umask) { struct proc *p = curproc; struct lwp *lp; struct lwp_params params; cpumask_t *mask = NULL, mask0; int error; error = copyin(uprm, ¶ms, sizeof(params)); if (error) goto fail2; if (umask != NULL) { error = copyin(umask, &mask0, sizeof(mask0)); if (error) goto fail2; CPUMASK_ANDMASK(mask0, smp_active_mask); if (CPUMASK_TESTNZERO(mask0)) mask = &mask0; } lwkt_gettoken(&p->p_token); plimit_lwp_fork(p); /* force exclusive access */ lp = lwp_fork1(curthread->td_lwp, p, RFPROC | RFMEM, mask); lwp_fork2(curthread->td_lwp, p, lp, RFPROC | RFMEM); error = cpu_prepare_lwp(lp, ¶ms); if (error) goto fail; if (params.lwp_tid1 != NULL && (error = copyout(&lp->lwp_tid, params.lwp_tid1, sizeof(lp->lwp_tid)))) goto fail; if (params.lwp_tid2 != NULL && (error = copyout(&lp->lwp_tid, params.lwp_tid2, sizeof(lp->lwp_tid)))) goto fail; /* * Now schedule the new lwp. */ p->p_usched->resetpriority(lp); crit_enter(); lp->lwp_stat = LSRUN; p->p_usched->setrunqueue(lp); crit_exit(); lwkt_reltoken(&p->p_token); return (0); fail: /* * Make sure no one is using this lwp, before it is removed from * the tree. If we didn't wait it here, lwp tree iteration with * blocking operation would be broken. */ while (lp->lwp_lock > 0) tsleep(lp, 0, "lwpfail", 1); lwp_rb_tree_RB_REMOVE(&p->p_lwp_tree, lp); --p->p_nthreads; /* lwp_dispose expects an exited lwp, and a held proc */ atomic_set_int(&lp->lwp_mpflags, LWP_MP_WEXIT); lp->lwp_thread->td_flags |= TDF_EXITING; lwkt_remove_tdallq(lp->lwp_thread); PHOLD(p); biosched_done(lp->lwp_thread); dsched_exit_thread(lp->lwp_thread); lwp_dispose(lp); lwkt_reltoken(&p->p_token); fail2: return (error); } /* * Low level thread create used by pthreads. */ int sys_lwp_create(struct sysmsg *sysmsg, const struct lwp_create_args *uap) { return (lwp_create1(uap->params, NULL)); } int sys_lwp_create2(struct sysmsg *sysmsg, const struct lwp_create2_args *uap) { return (lwp_create1(uap->params, uap->mask)); } int nprocs = 1; /* process 0 */ int fork1(struct lwp *lp1, int flags, struct proc **procp) { struct proc *p1 = lp1->lwp_proc; struct proc *p2; struct proc *pptr; struct pgrp *p1grp; struct pgrp *plkgrp; struct lwp *lp2; struct sysreaper *reap; uid_t uid; int ok, error; static int curfail = 0; static struct timeval lastfail; struct forklist *ep; struct filedesc_to_leader *fdtol; if ((flags & (RFFDG|RFCFDG)) == (RFFDG|RFCFDG)) return (EINVAL); lwkt_gettoken(&p1->p_token); plkgrp = NULL; p2 = NULL; /* * Here we don't create a new process, but we divorce * certain parts of a process from itself. */ if ((flags & RFPROC) == 0) { /* * This kind of stunt does not work anymore if * there are native threads (lwps) running */ if (p1->p_nthreads != 1) { error = EINVAL; goto done; } vm_fork(p1, NULL, NULL, flags); if ((flags & RFMEM) == 0) wake_umtx_threads(p1); /* * Close all file descriptors. */ if (flags & RFCFDG) { struct filedesc *fdtmp; fdtmp = fdinit(p1); fdfree(p1, fdtmp); } /* * Unshare file descriptors (from parent.) */ if (flags & RFFDG) { if (p1->p_fd->fd_refcnt > 1) { struct filedesc *newfd; error = fdcopy(p1, &newfd); if (error != 0) { error = ENOMEM; goto done; } fdfree(p1, newfd); } } *procp = NULL; error = 0; goto done; } /* * Interlock against process group signal delivery. If signals * are pending after the interlock is obtained we have to restart * the system call to process the signals. If we don't the child * can miss a pgsignal (such as ^C) sent during the fork. * * We can't use CURSIG() here because it will process any STOPs * and cause the process group lock to be held indefinitely. If * a STOP occurs, the fork will be restarted after the CONT. */ p1grp = p1->p_pgrp; if ((flags & RFPGLOCK) && (plkgrp = p1->p_pgrp) != NULL) { pgref(plkgrp); lockmgr(&plkgrp->pg_lock, LK_SHARED); if (CURSIG_NOBLOCK(lp1)) { error = ERESTART; goto done; } } /* * Although process entries are dynamically created, we still keep * a global limit on the maximum number we will create. Don't allow * a nonprivileged user to use the last ten processes; don't let root * exceed the limit. The variable nprocs is the current number of * processes, maxproc is the limit. */ uid = lp1->lwp_thread->td_ucred->cr_ruid; if ((nprocs >= maxproc - 10 && uid != 0) || nprocs >= maxproc) { if (ppsratecheck(&lastfail, &curfail, 1)) kprintf("maxproc limit exceeded by uid %d, please " "see tuning(7) and login.conf(5).\n", uid); tsleep(&forksleep, 0, "fork", hz / 2); error = EAGAIN; goto done; } /* * Increment the nprocs resource before blocking can occur. There * are hard-limits as to the number of processes that can run. */ atomic_add_int(&nprocs, 1); /* * Increment the count of procs running with this uid. This also * applies to root. */ ok = chgproccnt(lp1->lwp_thread->td_ucred->cr_ruidinfo, 1, plimit_getadjvalue(RLIMIT_NPROC)); if (!ok) { /* * Back out the process count */ atomic_add_int(&nprocs, -1); if (ppsratecheck(&lastfail, &curfail, 1)) { kprintf("maxproc limit of %jd " "exceeded by \"%s\" uid %d, " "please see tuning(7) and login.conf(5).\n", plimit_getadjvalue(RLIMIT_NPROC), p1->p_comm, uid); } tsleep(&forksleep, 0, "fork", hz / 2); error = EAGAIN; goto done; } /* * Allocate a new process, don't get fancy: zero the structure. */ p2 = kmalloc(sizeof(struct proc), M_PROC, M_WAITOK|M_ZERO); /* * Core initialization. SIDL is a safety state that protects the * partially initialized process once it starts getting hooked * into system structures and becomes addressable. * * We must be sure to acquire p2->p_token as well, we must hold it * once the process is on the allproc list to avoid things such * as competing modifications to p_flags. */ mycpu->gd_forkid += ncpus; p2->p_forkid = mycpu->gd_forkid + mycpu->gd_cpuid; p2->p_lasttid = 0; /* first tid will be 1 */ p2->p_stat = SIDL; /* * NOTE: Process 0 will not have a reaper, but process 1 (init) and * all other processes always will. */ if ((reap = p1->p_reaper) != NULL) { reaper_hold(reap); p2->p_reaper = reap; } else { p2->p_reaper = NULL; } RB_INIT(&p2->p_lwp_tree); spin_init(&p2->p_spin, "procfork1"); lwkt_token_init(&p2->p_token, "proc"); lwkt_gettoken(&p2->p_token); p2->p_uidpcpu = kmalloc(sizeof(*p2->p_uidpcpu) * ncpus, M_SUBPROC, M_WAITOK | M_ZERO); /* * Setup linkage for kernel based threading XXX lwp. Also add the * process to the allproclist. * * The process structure is addressable after this point. */ if (flags & RFTHREAD) { p2->p_peers = p1->p_peers; p1->p_peers = p2; p2->p_leader = p1->p_leader; } else { p2->p_leader = p2; } proc_add_allproc(p2); /* * Initialize the section which is copied verbatim from the parent. */ bcopy(&p1->p_startcopy, &p2->p_startcopy, ((caddr_t)&p2->p_endcopy - (caddr_t)&p2->p_startcopy)); /* * Duplicate sub-structures as needed. Increase reference counts * on shared objects. * * NOTE: because we are now on the allproc list it is possible for * other consumers to gain temporary references to p2 * (p2->p_lock can change). */ if (p1->p_flags & P_PROFIL) startprofclock(p2); p2->p_ucred = crhold(lp1->lwp_thread->td_ucred); if (jailed(p2->p_ucred)) p2->p_flags |= P_JAILED; if (p2->p_args) refcount_acquire(&p2->p_args->ar_ref); p2->p_usched = p1->p_usched; /* XXX: verify copy of the secondary iosched stuff */ dsched_enter_proc(p2); if (flags & RFSIGSHARE) { p2->p_sigacts = p1->p_sigacts; refcount_acquire(&p2->p_sigacts->ps_refcnt); } else { p2->p_sigacts = kmalloc(sizeof(*p2->p_sigacts), M_SUBPROC, M_WAITOK); bcopy(p1->p_sigacts, p2->p_sigacts, sizeof(*p2->p_sigacts)); refcount_init(&p2->p_sigacts->ps_refcnt, 1); } if (flags & RFLINUXTHPN) p2->p_sigparent = SIGUSR1; else p2->p_sigparent = SIGCHLD; /* bump references to the text vnode (for procfs) */ p2->p_textvp = p1->p_textvp; if (p2->p_textvp) vref(p2->p_textvp); /* copy namecache handle to the text file */ if (p1->p_textnch.mount) cache_copy(&p1->p_textnch, &p2->p_textnch); /* * Handle file descriptors */ if (flags & RFCFDG) { p2->p_fd = fdinit(p1); fdtol = NULL; } else if (flags & RFFDG) { error = fdcopy(p1, &p2->p_fd); if (error != 0) { error = ENOMEM; goto done; } fdtol = NULL; } else { p2->p_fd = fdshare(p1); if (p1->p_fdtol == NULL) { p1->p_fdtol = filedesc_to_leader_alloc(NULL, p1->p_leader); } if ((flags & RFTHREAD) != 0) { /* * Shared file descriptor table and * shared process leaders. */ fdtol = p1->p_fdtol; fdtol->fdl_refcount++; } else { /* * Shared file descriptor table, and * different process leaders */ fdtol = filedesc_to_leader_alloc(p1->p_fdtol, p2); } } p2->p_fdtol = fdtol; p2->p_limit = plimit_fork(p1); /* * Adjust depth for resource downscaling */ if ((p2->p_depth & 31) != 31) ++p2->p_depth; /* * Preserve some more flags in subprocess. P_PROFIL has already * been preserved. */ p2->p_flags |= p1->p_flags & P_SUGID; if (p1->p_session->s_ttyvp != NULL && (p1->p_flags & P_CONTROLT)) p2->p_flags |= P_CONTROLT; if (flags & RFPPWAIT) { p2->p_flags |= P_PPWAIT; if (p1->p_upmap) atomic_add_int(&p1->p_upmap->invfork, 1); } /* * Inherit the virtual kernel structure (allows a virtual kernel * to fork to simulate multiple cpus). */ if (p1->p_vkernel) vkernel_inherit(p1, p2); /* * Once we are on a pglist we may receive signals. XXX we might * race a ^C being sent to the process group by not receiving it * at all prior to this line. */ pgref(p1grp); lwkt_gettoken(&p1grp->pg_token); LIST_INSERT_AFTER(p1, p2, p_pglist); lwkt_reltoken(&p1grp->pg_token); /* * Attach the new process to its parent. * * If RFNOWAIT is set, the newly created process becomes a child * of the reaper (typically init). This effectively disassociates * the child from the parent. * * Temporarily hold pptr for the RFNOWAIT case to avoid ripouts. */ if (flags & RFNOWAIT) { pptr = reaper_get(reap); if (pptr == NULL) { pptr = initproc; PHOLD(pptr); } } else { pptr = p1; } p2->p_pptr = pptr; p2->p_ppid = pptr->p_pid; LIST_INIT(&p2->p_children); lwkt_gettoken(&pptr->p_token); LIST_INSERT_HEAD(&pptr->p_children, p2, p_sibling); lwkt_reltoken(&pptr->p_token); if (flags & RFNOWAIT) PRELE(pptr); varsymset_init(&p2->p_varsymset, &p1->p_varsymset); callout_init_mp(&p2->p_ithandle); #ifdef KTRACE /* * Copy traceflag and tracefile if enabled. If not inherited, * these were zeroed above but we still could have a trace race * so make sure p2's p_tracenode is NULL. */ if ((p1->p_traceflag & KTRFAC_INHERIT) && p2->p_tracenode == NULL) { p2->p_traceflag = p1->p_traceflag; p2->p_tracenode = ktrinherit(p1->p_tracenode); } #endif /* * This begins the section where we must prevent the parent * from being messed with too heavily while we run through the * fork operation. * * Gets PRELE'd in the caller in start_forked_proc(). * * Create the first lwp associated with the new proc. It will * return via a different execution path later, directly into * userland, after it was put on the runq by start_forked_proc(). */ PHOLD(p1); lp2 = lwp_fork1(lp1, p2, flags, NULL); vm_fork(p1, p2, lp2, flags); if ((flags & RFMEM) == 0) wake_umtx_threads(p1); lwp_fork2(lp1, p2, lp2, flags); if (flags == (RFFDG | RFPROC | RFPGLOCK)) { mycpu->gd_cnt.v_forks++; mycpu->gd_cnt.v_forkpages += btoc(p2->p_vmspace->vm_dsize) + btoc(p2->p_vmspace->vm_ssize); } else if (flags == (RFFDG | RFPROC | RFPPWAIT | RFMEM | RFPGLOCK)) { mycpu->gd_cnt.v_vforks++; mycpu->gd_cnt.v_vforkpages += btoc(p2->p_vmspace->vm_dsize) + btoc(p2->p_vmspace->vm_ssize); } else if (p1 == &proc0) { mycpu->gd_cnt.v_kthreads++; mycpu->gd_cnt.v_kthreadpages += btoc(p2->p_vmspace->vm_dsize) + btoc(p2->p_vmspace->vm_ssize); } else { mycpu->gd_cnt.v_rforks++; mycpu->gd_cnt.v_rforkpages += btoc(p2->p_vmspace->vm_dsize) + btoc(p2->p_vmspace->vm_ssize); } /* * Both processes are set up, now check if any loadable modules want * to adjust anything. * What if they have an error? XXX */ TAILQ_FOREACH(ep, &fork_list, next) { (*ep->function)(p1, p2, flags); } /* * Set the start time. Note that the process is not runnable. The * caller is responsible for making it runnable. */ microtime(&p2->p_start); p2->p_acflag = AFORK; /* * tell any interested parties about the new process */ KNOTE(&p1->p_klist, NOTE_FORK | p2->p_pid); /* * Return child proc pointer to parent. */ *procp = p2; error = 0; done: if (p2) lwkt_reltoken(&p2->p_token); lwkt_reltoken(&p1->p_token); if (plkgrp) { lockmgr(&plkgrp->pg_lock, LK_RELEASE); pgrel(plkgrp); } return (error); } /* * The first part of lwp_fork*() allocates enough of the new lwp that * vm_fork() can use it to deal with /dev/lpmap mappings. */ static struct lwp * lwp_fork1(struct lwp *lp1, struct proc *destproc, int flags, const cpumask_t *mask) { struct lwp *lp2; lp2 = kmalloc(sizeof(struct lwp), M_LWP, M_WAITOK|M_ZERO); lp2->lwp_proc = destproc; lp2->lwp_stat = LSRUN; bcopy(&lp1->lwp_startcopy, &lp2->lwp_startcopy, (unsigned) ((caddr_t)&lp2->lwp_endcopy - (caddr_t)&lp2->lwp_startcopy)); if (mask != NULL) lp2->lwp_cpumask = *mask; lwkt_token_init(&lp2->lwp_token, "lwp_token"); TAILQ_INIT(&lp2->lwp_lpmap_backing_list); spin_init(&lp2->lwp_spin, "lwptoken"); /* * Use the same TID for the first thread in the new process after * a fork or vfork. This is needed to keep pthreads and /dev/lpmap * sane. In particular a consequence of implementing the per-thread * /dev/lpmap map code makes this mandatory. * * NOTE: exec*() will reset the TID to 1 to keep things sane in that * department too. * * NOTE: In the case of lwp_create(), this TID represents a conflict * which will be resolved in lwp_fork2(), but in the case of * a fork(), the TID has to be correct or vm_fork() will not * keep the correct lpmap. */ lp2->lwp_tid = lp1->lwp_tid; return lp2; } /* * The second part of lwp_fork*() */ static void lwp_fork2(struct lwp *lp1, struct proc *destproc, struct lwp *lp2, int flags) { globaldata_t gd = mycpu; struct thread *td2; lp2->lwp_vmspace = destproc->p_vmspace; /* * Reset the sigaltstack if memory is shared, otherwise inherit * it. */ if (flags & RFMEM) { lp2->lwp_sigstk.ss_flags = SS_DISABLE; lp2->lwp_sigstk.ss_size = 0; lp2->lwp_sigstk.ss_sp = NULL; lp2->lwp_flags &= ~LWP_ALTSTACK; } else { lp2->lwp_flags |= lp1->lwp_flags & LWP_ALTSTACK; } /* * Set cpbase to the last timeout that occured (not the upcoming * timeout). * * A critical section is required since a timer IPI can update * scheduler specific data. */ crit_enter(); lp2->lwp_cpbase = gd->gd_schedclock.time - gd->gd_schedclock.periodic; destproc->p_usched->heuristic_forking(lp1, lp2); crit_exit(); CPUMASK_ANDMASK(lp2->lwp_cpumask, usched_mastermask); /* * Assign the thread to the current cpu to begin with so we * can manipulate it. */ td2 = lwkt_alloc_thread(NULL, LWKT_THREAD_STACK, gd->gd_cpuid, 0); lp2->lwp_thread = td2; td2->td_wakefromcpu = gd->gd_cpuid; td2->td_ucred = crhold(destproc->p_ucred); td2->td_proc = destproc; td2->td_lwp = lp2; td2->td_switch = cpu_heavy_switch; #ifdef NO_LWKT_SPLIT_USERPRI lwkt_setpri(td2, TDPRI_USER_NORM); #else lwkt_setpri(td2, TDPRI_KERN_USER); #endif lwkt_set_comm(td2, "%s", destproc->p_comm); /* * cpu_fork will copy and update the pcb, set up the kernel stack, * and make the child ready to run. */ cpu_fork(lp1, lp2, flags); kqueue_init(&lp2->lwp_kqueue, destproc->p_fd); /* * Associate the new thread with destproc, after we've set most of * it up and gotten its related td2 installed. Otherwise we can * race other random kernel code that iterates LWPs and expects the * thread to be assigned. * * Leave 2 bits open so the pthreads library can optimize locks * by combining the TID with a few Lock-related flags. */ while (lwp_rb_tree_RB_INSERT(&destproc->p_lwp_tree, lp2) != NULL) { ++lp2->lwp_tid; if (lp2->lwp_tid == 0 || lp2->lwp_tid == 0x3FFFFFFF) lp2->lwp_tid = 1; } destproc->p_lasttid = lp2->lwp_tid; destproc->p_nthreads++; /* * This flag is set and never cleared. It means that the process * was threaded at some point. Used to improve exit performance. */ pmap_maybethreaded(&destproc->p_vmspace->vm_pmap); destproc->p_flags |= P_MAYBETHREADED; /* * If the original lp had a lpmap and a non-zero blockallsigs * count, give the lp for the forked process the same count. * * This makes the user code and expectations less confusing * in terms of unwinding locks and also allows userland to start * the forked process with signals blocked via the blockallsigs() * mechanism if desired. */ if (lp1->lwp_lpmap && (lp1->lwp_lpmap->blockallsigs & 0x7FFFFFFF)) { lwp_usermap(lp2, 0); if (lp2->lwp_lpmap) { lp2->lwp_lpmap->blockallsigs = lp1->lwp_lpmap->blockallsigs; } } } /* * The next two functionms are general routines to handle adding/deleting * items on the fork callout list. * * at_fork(): * Take the arguments given and put them onto the fork callout list, * However first make sure that it's not already there. * Returns 0 on success or a standard error number. */ int at_fork(forklist_fn function) { struct forklist *ep; #ifdef INVARIANTS /* let the programmer know if he's been stupid */ if (rm_at_fork(function)) { kprintf("WARNING: fork callout entry (%p) already present\n", function); } #endif ep = kmalloc(sizeof(*ep), M_ATFORK, M_WAITOK|M_ZERO); ep->function = function; TAILQ_INSERT_TAIL(&fork_list, ep, next); return (0); } /* * Scan the exit callout list for the given item and remove it.. * Returns the number of items removed (0 or 1) */ int rm_at_fork(forklist_fn function) { struct forklist *ep; TAILQ_FOREACH(ep, &fork_list, next) { if (ep->function == function) { TAILQ_REMOVE(&fork_list, ep, next); kfree(ep, M_ATFORK); return(1); } } return (0); } /* * Add a forked process to the run queue after any remaining setup, such * as setting the fork handler, has been completed. * * p2 is held by the caller. */ void start_forked_proc(struct lwp *lp1, struct proc *p2) { struct lwp *lp2 = ONLY_LWP_IN_PROC(p2); int pflags; /* * Move from SIDL to RUN queue, and activate the process's thread. * Activation of the thread effectively makes the process "a" * current process, so we do not setrunqueue(). * * YYY setrunqueue works here but we should clean up the trampoline * code so we just schedule the LWKT thread and let the trampoline * deal with the userland scheduler on return to userland. */ KASSERT(p2->p_stat == SIDL, ("cannot start forked process, bad status: %p", p2)); p2->p_usched->resetpriority(lp2); crit_enter(); p2->p_stat = SACTIVE; lp2->lwp_stat = LSRUN; p2->p_usched->setrunqueue(lp2); crit_exit(); /* * Now can be swapped. */ PRELE(lp1->lwp_proc); /* * Preserve synchronization semantics of vfork. P_PPWAIT is set in * the child until it has retired the parent's resources. The parent * must wait for the flag to be cleared by the child. * * Interlock the flag/tsleep with atomic ops to avoid unnecessary * p_token conflicts. * * XXX Is this use of an atomic op on a field that is not normally * manipulated with atomic ops ok? */ while ((pflags = p2->p_flags) & P_PPWAIT) { cpu_ccfence(); tsleep_interlock(lp1->lwp_proc, 0); if (atomic_cmpset_int(&p2->p_flags, pflags, pflags)) tsleep(lp1->lwp_proc, PINTERLOCKED, "ppwait", 0); } } /* * procctl (idtype_t idtype, id_t id, int cmd, void *arg) */ int sys_procctl(struct sysmsg *sysmsg, const struct procctl_args *uap) { struct proc *p = curproc; struct proc *p2; struct sysreaper *reap; union reaper_info udata; int error; if (uap->idtype != P_PID) return EINVAL; if (uap->id != 0 && uap->id != (id_t)p->p_pid) return EINVAL; switch(uap->cmd) { case PROC_REAP_ACQUIRE: lwkt_gettoken(&p->p_token); reap = kmalloc(sizeof(*reap), M_REAPER, M_WAITOK|M_ZERO); if (p->p_reaper == NULL || p->p_reaper->p != p) { reaper_init(p, reap); error = 0; } else { kfree(reap, M_REAPER); error = EALREADY; } lwkt_reltoken(&p->p_token); break; case PROC_REAP_RELEASE: lwkt_gettoken(&p->p_token); release_again: reap = p->p_reaper; KKASSERT(reap != NULL); if (reap->p == p) { reaper_hold(reap); /* in case of thread race */ lockmgr(&reap->lock, LK_EXCLUSIVE); if (reap->p != p) { lockmgr(&reap->lock, LK_RELEASE); reaper_drop(reap); goto release_again; } reap->p = NULL; p->p_reaper = reap->parent; if (p->p_reaper) reaper_hold(p->p_reaper); lockmgr(&reap->lock, LK_RELEASE); reaper_drop(reap); /* our ref */ reaper_drop(reap); /* old p_reaper ref */ error = 0; } else { error = ENOTCONN; } lwkt_reltoken(&p->p_token); break; case PROC_REAP_STATUS: bzero(&udata, sizeof(udata)); lwkt_gettoken_shared(&p->p_token); if ((reap = p->p_reaper) != NULL && reap->p == p) { udata.status.flags = reap->flags; udata.status.refs = reap->refs - 1; /* minus ours */ } p2 = LIST_FIRST(&p->p_children); udata.status.pid_head = p2 ? p2->p_pid : -1; lwkt_reltoken(&p->p_token); if (uap->data) { error = copyout(&udata, uap->data, sizeof(udata.status)); } else { error = 0; } break; case PROC_REAP_KILL: if (uap->data) error = copyin(uap->data, &udata, sizeof(udata.kill)); else error = EINVAL; if (error != 0) break; lwkt_gettoken(&p->p_token); reap = p->p_reaper; if (reap->p == p) error = reaper_kill(reap, &udata.kill); else error = ENOTCONN; lwkt_reltoken(&p->p_token); if (error == 0) { error = copyout(&udata, uap->data, sizeof(udata.kill)); } break; case PROC_PDEATHSIG_CTL: error = EINVAL; if (uap->data) { int dsig = 0; error = copyin(uap->data, &dsig, sizeof(dsig)); if (error == 0 && dsig >= 0 && dsig <= _SIG_MAXSIG) p->p_deathsig = dsig; } break; case PROC_PDEATHSIG_STATUS: error = EINVAL; if (uap->data) { error = copyout(&p->p_deathsig, uap->data, sizeof(p->p_deathsig)); } break; default: error = EINVAL; break; } return error; } /* * Bump ref on reaper, preventing destruction */ void reaper_hold(struct sysreaper *reap) { KKASSERT(reap->refs > 0); refcount_acquire(&reap->refs); } /* * Drop ref on reaper, destroy the structure on the 1->0 * transition and loop on the parent. */ void reaper_drop(struct sysreaper *next) { struct sysreaper *reap; while ((reap = next) != NULL) { if (refcount_release(&reap->refs)) { next = reap->parent; KKASSERT(reap->p == NULL); lockmgr(&reaper_lock, LK_EXCLUSIVE); reap->parent = NULL; kfree(reap, M_REAPER); lockmgr(&reaper_lock, LK_RELEASE); } else { next = NULL; } } } /* * Initialize a static or newly allocated reaper structure */ void reaper_init(struct proc *p, struct sysreaper *reap) { reap->parent = p->p_reaper; reap->p = p; if (p == initproc) { reap->flags = REAPER_STAT_OWNED | REAPER_STAT_REALINIT; reap->refs = 2; } else { reap->flags = REAPER_STAT_OWNED; reap->refs = 1; } lockinit(&reap->lock, "subrp", 0, 0); cpu_sfence(); p->p_reaper = reap; } /* * Called with p->p_token held during exit. * * This is a bit simpler than RELEASE because there are no threads remaining * to race. We only release if we own the reaper, the exit code will handle * the final p_reaper release. */ struct sysreaper * reaper_exit(struct proc *p) { struct sysreaper *reap; /* * Release acquired reaper */ if ((reap = p->p_reaper) != NULL && reap->p == p) { lockmgr(&reap->lock, LK_EXCLUSIVE); p->p_reaper = reap->parent; if (p->p_reaper) reaper_hold(p->p_reaper); reap->p = NULL; lockmgr(&reap->lock, LK_RELEASE); reaper_drop(reap); } /* * Return and clear reaper (caller is holding p_token for us) * (reap->p does not equal p). Caller must drop it. */ if ((reap = p->p_reaper) != NULL) { p->p_reaper = NULL; } return reap; } /* * Return a held (PHOLD) process representing the reaper for process (p). * NULL should not normally be returned. Caller should PRELE() the returned * reaper process when finished. * * Remove dead internal nodes while we are at it. * * Process (p)'s token must be held on call. * The returned process's token is NOT acquired by this routine. */ struct proc * reaper_get(struct sysreaper *reap) { struct sysreaper *next; struct proc *reproc; if (reap == NULL) return NULL; /* * Extra hold for loop */ reaper_hold(reap); while (reap) { lockmgr(&reap->lock, LK_SHARED); if (reap->p) { /* * Probable reaper */ if (reap->p) { reproc = reap->p; PHOLD(reproc); lockmgr(&reap->lock, LK_RELEASE); reaper_drop(reap); return reproc; } /* * Raced, try again */ lockmgr(&reap->lock, LK_RELEASE); continue; } /* * Traverse upwards in the reaper topology, destroy * dead internal nodes when possible. * * NOTE: Our ref on next means that a dead node should * have 2 (ours and reap->parent's). */ next = reap->parent; while (next) { reaper_hold(next); if (next->refs == 2 && next->p == NULL) { lockmgr(&reap->lock, LK_RELEASE); lockmgr(&reap->lock, LK_EXCLUSIVE); if (next->refs == 2 && reap->parent == next && next->p == NULL) { /* * reap->parent inherits ref from next. */ reap->parent = next->parent; next->parent = NULL; reaper_drop(next); /* ours */ reaper_drop(next); /* old parent */ next = reap->parent; continue; /* possible chain */ } } break; } lockmgr(&reap->lock, LK_RELEASE); reaper_drop(reap); reap = next; } return NULL; } /* * Test that the sender is allowed to send a signal to the target. * The sender process is assumed to have a stable reaper. The * target can be e.g. from a scan callback. * * Target cannot be the reaper process itself unless reaper_ok is specified, * or sender == target. */ int reaper_sigtest(struct proc *sender, struct proc *target, int reaper_ok) { struct sysreaper *sreap; struct sysreaper *reap; int r; sreap = sender->p_reaper; if (sreap == NULL) return 1; if (sreap == target->p_reaper) { if (sreap->p == target && sreap->p != sender && reaper_ok == 0) return 0; return 1; } lockmgr(&reaper_lock, LK_SHARED); r = 0; for (reap = target->p_reaper; reap; reap = reap->parent) { if (sreap == reap) { if (sreap->p != target || reaper_ok) r = 1; break; } } lockmgr(&reaper_lock, LK_RELEASE); return r; } /* * Send a signal to direct children or all desendants, but not across * sub-reapers. * * Process (reap->p)'s token must be held on call. */ int reaper_kill(struct sysreaper *reap, struct reaper_kill *rk) { struct proc *starting, *parent, *cur, *next; unsigned int tid; bool any_signaled, visited; if (!_SIG_VALID(rk->signal)) return EINVAL; rk->killed = 0; rk->pid_failed = 0; tid = atomic_fetchadd_int(&reap_tid, 1); if (tid == 0) /* just in case of wrapping around */ tid = atomic_fetchadd_int(&reap_tid, 1); reaper_hold(reap); any_signaled = true; while (any_signaled) { any_signaled = false; /* * Loop flattened recursion. * * Start by pushing into the reaper process to iterate * its children. */ lockmgr(&reap->lock, LK_EXCLUSIVE); starting = reap->p; /* Hold an extra token under the control of the loop. */ parent = starting; PHOLD(parent); lwkt_gettoken(&parent->p_token); cur = LIST_FIRST(&parent->p_children); if (cur == NULL) goto done; PHOLD(cur); lwkt_gettoken(&cur->p_token); /* [p, cur> */ visited = false; while (true) { /* * Send signal if not yet. */ if (cur->p_reaptid != tid) { cur->p_reaptid = tid; any_signaled = true; if (CANSIGNAL(starting, rk->signal, 0)) { ksignal(cur, rk->signal); rk->killed++; } else if (rk->pid_failed == 0) { rk->pid_failed = cur->p_pid; } } /* * The p_reaptid will be reset to 0 if the process * gets reparented. If that happens, restart the * iteration. */ if (cur->p_reaptid != tid) { any_signaled = true; lwkt_reltoken(&cur->p_token); /* [p> */ PRELE(cur); break; } KKASSERT(cur->p_pptr == parent); /* * If set the REAPER_KILL_CHILDREN flag, only loop * the direct children. Otherwise, loop through all * descendants, but don't go across sub-reapers. */ if (!visited && !(rk->flags & REAPER_KILL_CHILDREN) && cur->p_reaper == reap && !LIST_EMPTY(&cur->p_children)) { /* * Enter children. */ next = LIST_FIRST(&cur->p_children); PHOLD(next); lwkt_token_swap(); /* [cur, p> */ lwkt_reltoken(&parent->p_token); PRELE(parent); lwkt_gettoken(&next->p_token); /* [cur, next> */ parent = cur; /* keep holding <cur> */ } else if (LIST_NEXT(cur, p_sibling) != NULL) { /* * Choose a sibling. */ next = LIST_NEXT(cur, p_sibling); PHOLD(next); lwkt_reltoken(&cur->p_token); PRELE(cur); lwkt_gettoken(&next->p_token); /* [p, next> */ visited = false; } else { /* * No more siblings, go up. */ /* cur->p_pptr == parent: already held */ lwkt_reltoken(&cur->p_token); /* [p> */ PRELE(cur); if (parent == starting) break; next = parent; parent = next->p_pptr; KASSERT(parent != NULL, ("%s: went out of reaper", __func__)); PHOLD(parent); lwkt_gettoken(&parent->p_token); /* [p, gp> */ lwkt_token_swap(); /* [grandpa, p> */ visited = true; } cur = next; } done: lwkt_reltoken(&parent->p_token); PRELE(parent); lockmgr(&reap->lock, LK_RELEASE); if (any_signaled) tsleep(&tid, 0, "reapkill", 1); } reaper_drop(reap); return 0; } |