1 /* 2 * Copyright (c) 1995 Terrence R. Lambert 3 * All rights reserved. 4 * 5 * Copyright (c) 1982, 1986, 1989, 1991, 1992, 1993 6 * The Regents of the University of California. All rights reserved. 7 * (c) UNIX System Laboratories, Inc. 8 * All or some portions of this file are derived from material licensed 9 * to the University of California by American Telephone and Telegraph 10 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 11 * the permission of UNIX System Laboratories, Inc. 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions 15 * are met: 16 * 1. Redistributions of source code must retain the above copyright 17 * notice, this list of conditions and the following disclaimer. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 3. All advertising materials mentioning features or use of this software 22 * must display the following acknowledgement: 23 * This product includes software developed by the University of 24 * California, Berkeley and its contributors. 25 * 4. Neither the name of the University nor the names of its contributors 26 * may be used to endorse or promote products derived from this software 27 * without specific prior written permission. 28 * 29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 39 * SUCH DAMAGE. 40 * 41 * @(#)init_main.c 8.9 (Berkeley) 1/21/94 42 * $FreeBSD: src/sys/kern/init_main.c,v 1.134.2.8 2003/06/06 20:21:32 tegge Exp $ 43 */ 44 45 #include "opt_init_path.h" 46 47 #include <sys/param.h> 48 #include <sys/file.h> 49 #include <sys/filedesc.h> 50 #include <sys/kernel.h> 51 #include <sys/mount.h> 52 #include <sys/sysctl.h> 53 #include <sys/proc.h> 54 #include <sys/resourcevar.h> 55 #include <sys/signalvar.h> 56 #include <sys/systm.h> 57 #include <sys/vnode.h> 58 #include <sys/sysent.h> 59 #include <sys/reboot.h> 60 #include <sys/sysproto.h> 61 #include <sys/vmmeter.h> 62 #include <sys/unistd.h> 63 #include <sys/malloc.h> 64 #include <sys/machintr.h> 65 66 #include <sys/refcount.h> 67 #include <sys/file2.h> 68 #include <sys/thread2.h> 69 #include <sys/sysref2.h> 70 #include <sys/spinlock2.h> 71 #include <sys/mplock2.h> 72 73 #include <machine/cpu.h> 74 75 #include <vm/vm.h> 76 #include <vm/vm_param.h> 77 #include <sys/lock.h> 78 #include <vm/pmap.h> 79 #include <vm/vm_map.h> 80 #include <vm/vm_extern.h> 81 #include <sys/user.h> 82 #include <sys/copyright.h> 83 84 int vfs_mountroot_devfs(void); 85 86 /* Components of the first process -- never freed. */ 87 static struct session session0; 88 static struct pgrp pgrp0; 89 static struct sigacts sigacts0; 90 static struct filedesc filedesc0; 91 static struct plimit limit0; 92 static struct vmspace vmspace0; 93 struct proc *initproc; 94 struct proc proc0; 95 struct lwp lwp0; 96 struct thread thread0; 97 98 int cmask = CMASK; 99 u_int cpu_mi_feature; 100 cpumask_t usched_global_cpumask; 101 extern struct user *proc0paddr; 102 103 int boothowto = 0; /* initialized so that it can be patched */ 104 SYSCTL_INT(_debug, OID_AUTO, boothowto, CTLFLAG_RD, &boothowto, 0, 105 "Reboot flags, from console subsystem"); 106 SYSCTL_ULONG(_kern, OID_AUTO, usched_global_cpumask, CTLFLAG_RW, 107 &usched_global_cpumask, 0, "global user scheduler cpumask"); 108 109 /* 110 * This ensures that there is at least one entry so that the sysinit_set 111 * symbol is not undefined. A subsystem ID of SI_SPECIAL_DUMMY is never 112 * executed. 113 */ 114 SYSINIT(placeholder, SI_SPECIAL_DUMMY, SI_ORDER_ANY, NULL, NULL) 115 116 /* 117 * The sysinit table itself. Items are checked off as the are run. 118 * If we want to register new sysinit types, add them to newsysinit. 119 */ 120 SET_DECLARE(sysinit_set, struct sysinit); 121 struct sysinit **sysinit, **sysinit_end; 122 struct sysinit **newsysinit, **newsysinit_end; 123 124 125 /* 126 * Merge a new sysinit set into the current set, reallocating it if 127 * necessary. This can only be called after malloc is running. 128 */ 129 void 130 sysinit_add(struct sysinit **set, struct sysinit **set_end) 131 { 132 struct sysinit **newset; 133 struct sysinit **sipp; 134 struct sysinit **xipp; 135 int count; 136 137 count = set_end - set; 138 if (newsysinit) 139 count += newsysinit_end - newsysinit; 140 else 141 count += sysinit_end - sysinit; 142 newset = kmalloc(count * sizeof(*sipp), M_TEMP, M_WAITOK); 143 xipp = newset; 144 if (newsysinit) { 145 for (sipp = newsysinit; sipp < newsysinit_end; sipp++) 146 *xipp++ = *sipp; 147 } else { 148 for (sipp = sysinit; sipp < sysinit_end; sipp++) 149 *xipp++ = *sipp; 150 } 151 for (sipp = set; sipp < set_end; sipp++) 152 *xipp++ = *sipp; 153 if (newsysinit) 154 kfree(newsysinit, M_TEMP); 155 newsysinit = newset; 156 newsysinit_end = newset + count; 157 } 158 159 /* 160 * Callbacks from machine-dependant startup code (e.g. init386) to set 161 * up low level entities related to cpu #0's globaldata. 162 * 163 * Called from very low level boot code. 164 */ 165 void 166 mi_proc0init(struct globaldata *gd, struct user *proc0paddr) 167 { 168 lwkt_init_thread(&thread0, proc0paddr, LWKT_THREAD_STACK, 0, gd); 169 lwkt_set_comm(&thread0, "thread0"); 170 RB_INIT(&proc0.p_lwp_tree); 171 spin_init(&proc0.p_spin); 172 lwkt_token_init(&proc0.p_token, "iproc"); 173 proc0.p_lasttid = 0; /* +1 = next TID */ 174 lwp_rb_tree_RB_INSERT(&proc0.p_lwp_tree, &lwp0); 175 lwp0.lwp_thread = &thread0; 176 lwp0.lwp_proc = &proc0; 177 proc0.p_usched = usched_init(); 178 lwp0.lwp_cpumask = (cpumask_t)-1; 179 lwkt_token_init(&lwp0.lwp_token, "lwp_token"); 180 varsymset_init(&proc0.p_varsymset, NULL); 181 thread0.td_flags |= TDF_RUNNING; 182 thread0.td_proc = &proc0; 183 thread0.td_lwp = &lwp0; 184 thread0.td_switch = cpu_lwkt_switch; 185 lwkt_schedule_self(curthread); 186 } 187 188 /* 189 * System startup; initialize the world, create process 0, mount root 190 * filesystem, and fork to create init and pagedaemon. Most of the 191 * hard work is done in the lower-level initialization routines including 192 * startup(), which does memory initialization and autoconfiguration. 193 * 194 * This allows simple addition of new kernel subsystems that require 195 * boot time initialization. It also allows substitution of subsystem 196 * (for instance, a scheduler, kernel profiler, or VM system) by object 197 * module. Finally, it allows for optional "kernel threads". 198 */ 199 void 200 mi_startup(void) 201 { 202 struct sysinit *sip; /* system initialization*/ 203 struct sysinit **sipp; /* system initialization*/ 204 struct sysinit **xipp; /* interior loop of sort*/ 205 struct sysinit *save; /* bubble*/ 206 207 if (sysinit == NULL) { 208 sysinit = SET_BEGIN(sysinit_set); 209 #if defined(__amd64__) && defined(_KERNEL_VIRTUAL) 210 /* 211 * XXX For whatever reason, on 64-bit vkernels 212 * the value of sysinit obtained from the 213 * linker set is wrong. 214 */ 215 if ((long)sysinit % 8 != 0) { 216 kprintf("Fixing sysinit value...\n"); 217 sysinit = (void *)((long)(intptr_t)sysinit + 4); 218 } 219 #endif 220 sysinit_end = SET_LIMIT(sysinit_set); 221 } 222 #if defined(__amd64__) && defined(_KERNEL_VIRTUAL) 223 KKASSERT((long)sysinit % 8 == 0); 224 #endif 225 226 restart: 227 /* 228 * Perform a bubble sort of the system initialization objects by 229 * their subsystem (primary key) and order (secondary key). 230 */ 231 for (sipp = sysinit; sipp < sysinit_end; sipp++) { 232 for (xipp = sipp + 1; xipp < sysinit_end; xipp++) { 233 if ((*sipp)->subsystem < (*xipp)->subsystem || 234 ((*sipp)->subsystem == (*xipp)->subsystem && 235 (*sipp)->order <= (*xipp)->order)) 236 continue; /* skip*/ 237 save = *sipp; 238 *sipp = *xipp; 239 *xipp = save; 240 } 241 } 242 243 /* 244 * Traverse the (now) ordered list of system initialization tasks. 245 * Perform each task, and continue on to the next task. 246 * 247 * The last item on the list is expected to be the scheduler, 248 * which will not return. 249 */ 250 for (sipp = sysinit; sipp < sysinit_end; sipp++) { 251 sip = *sipp; 252 if (sip->subsystem == SI_SPECIAL_DUMMY) 253 continue; /* skip dummy task(s)*/ 254 255 if (sip->subsystem == SI_SPECIAL_DONE) 256 continue; 257 258 /* Call function */ 259 (*(sip->func))(sip->udata); 260 261 /* Check off the one we're just done */ 262 sip->subsystem = SI_SPECIAL_DONE; 263 264 /* Check if we've installed more sysinit items via KLD */ 265 if (newsysinit != NULL) { 266 if (sysinit != SET_BEGIN(sysinit_set)) 267 kfree(sysinit, M_TEMP); 268 sysinit = newsysinit; 269 sysinit_end = newsysinit_end; 270 newsysinit = NULL; 271 newsysinit_end = NULL; 272 goto restart; 273 } 274 } 275 276 panic("Shouldn't get here!"); 277 /* NOTREACHED*/ 278 } 279 280 281 /* 282 *************************************************************************** 283 **** 284 **** The following SYSINIT's belong elsewhere, but have not yet 285 **** been moved. 286 **** 287 *************************************************************************** 288 */ 289 static void 290 print_caddr_t(void *data __unused) 291 { 292 kprintf("%s", (char *)data); 293 } 294 SYSINIT(announce, SI_BOOT1_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t, copyright) 295 296 /* 297 * Leave the critical section that protected us from spurious interrupts 298 * so device probes work. 299 */ 300 static void 301 leavecrit(void *dummy __unused) 302 { 303 MachIntrABI.stabilize(); 304 cpu_enable_intr(); 305 MachIntrABI.cleanup(); 306 crit_exit(); 307 KKASSERT(!IN_CRITICAL_SECT(curthread)); 308 309 if (bootverbose) 310 kprintf("Leaving critical section, allowing interrupts\n"); 311 } 312 SYSINIT(leavecrit, SI_BOOT2_LEAVE_CRIT, SI_ORDER_ANY, leavecrit, NULL) 313 314 /* 315 * This is called after the threading system is up and running, 316 * including the softclock, clock interrupts, and SMP. 317 */ 318 static void 319 tsleepworks(void *dummy __unused) 320 { 321 tsleep_now_works = 1; 322 } 323 SYSINIT(tsleepworks, SI_BOOT2_FINISH_SMP, SI_ORDER_SECOND, tsleepworks, NULL) 324 325 /* 326 * This is called after devices have configured. Tell the kernel we are 327 * no longer in cold boot. 328 */ 329 static void 330 endofcoldboot(void *dummy __unused) 331 { 332 cold = 0; 333 } 334 SYSINIT(endofcoldboot, SI_SUB_ISWARM, SI_ORDER_ANY, endofcoldboot, NULL) 335 336 /* 337 *************************************************************************** 338 **** 339 **** The two following SYSINT's are proc0 specific glue code. I am not 340 **** convinced that they can not be safely combined, but their order of 341 **** operation has been maintained as the same as the original init_main.c 342 **** for right now. 343 **** 344 **** These probably belong in init_proc.c or kern_proc.c, since they 345 **** deal with proc0 (the fork template process). 346 **** 347 *************************************************************************** 348 */ 349 /* ARGSUSED*/ 350 static void 351 proc0_init(void *dummy __unused) 352 { 353 struct proc *p; 354 struct lwp *lp; 355 356 p = &proc0; 357 lp = &lwp0; 358 359 /* 360 * Initialize osrel 361 */ 362 p->p_osrel = osreldate; 363 364 /* 365 * Initialize process and pgrp structures. 366 */ 367 procinit(); 368 369 /* 370 * additional VM structures 371 */ 372 vm_init2(); 373 374 /* 375 * Create process 0 (the swapper). 376 */ 377 LIST_INSERT_HEAD(&allproc, p, p_list); 378 LIST_INSERT_HEAD(PGRPHASH(0), &pgrp0, pg_hash); 379 LIST_INIT(&pgrp0.pg_members); 380 lwkt_token_init(&pgrp0.pg_token, "pgrp0"); 381 refcount_init(&pgrp0.pg_refs, 1); 382 lockinit(&pgrp0.pg_lock, "pgwt0", 0, 0); 383 LIST_INSERT_HEAD(&pgrp0.pg_members, p, p_pglist); 384 385 pgrp0.pg_session = &session0; 386 session0.s_count = 1; 387 session0.s_leader = p; 388 389 pgref(&pgrp0); 390 p->p_pgrp = &pgrp0; 391 392 p->p_sysent = &aout_sysvec; 393 394 p->p_flag = P_SYSTEM; 395 p->p_stat = SACTIVE; 396 lp->lwp_stat = LSRUN; 397 p->p_nice = NZERO; 398 p->p_rtprio.type = RTP_PRIO_NORMAL; 399 p->p_rtprio.prio = 0; 400 lp->lwp_rtprio = p->p_rtprio; 401 402 p->p_peers = 0; 403 p->p_leader = p; 404 405 bcopy("swapper", p->p_comm, sizeof ("swapper")); 406 bcopy("swapper", thread0.td_comm, sizeof ("swapper")); 407 408 /* Create credentials. */ 409 p->p_ucred = crget(); 410 p->p_ucred->cr_ruidinfo = uifind(0); 411 p->p_ucred->cr_ngroups = 1; /* group 0 */ 412 p->p_ucred->cr_uidinfo = uifind(0); 413 thread0.td_ucred = crhold(p->p_ucred); /* bootstrap fork1() */ 414 415 /* Don't jail it */ 416 p->p_ucred->cr_prison = NULL; 417 418 /* Create sigacts. */ 419 p->p_sigacts = &sigacts0; 420 refcount_init(&p->p_sigacts->ps_refcnt, 1); 421 422 /* Initialize signal state for process 0. */ 423 siginit(p); 424 425 /* Create the file descriptor table. */ 426 fdinit_bootstrap(p, &filedesc0, cmask); 427 428 /* Create the limits structures. */ 429 plimit_init0(&limit0); 430 p->p_limit = &limit0; 431 432 /* Allocate a prototype map so we have something to fork. */ 433 pmap_pinit0(vmspace_pmap(&vmspace0)); 434 p->p_vmspace = &vmspace0; 435 lp->lwp_vmspace = p->p_vmspace; 436 sysref_init(&vmspace0.vm_sysref, &vmspace_sysref_class); 437 vm_map_init(&vmspace0.vm_map, 438 round_page(VM_MIN_USER_ADDRESS), 439 trunc_page(VM_MAX_USER_ADDRESS), 440 vmspace_pmap(&vmspace0)); 441 sysref_activate(&vmspace0.vm_sysref); 442 443 kqueue_init(&lwp0.lwp_kqueue, &filedesc0); 444 445 /* 446 * Charge root for one process. 447 */ 448 (void)chgproccnt(p->p_ucred->cr_uidinfo, 1, 0); 449 vm_init_limits(p); 450 } 451 SYSINIT(p0init, SI_BOOT2_PROC0, SI_ORDER_FIRST, proc0_init, NULL) 452 453 static int proc0_post_callback(struct proc *p, void *data __unused); 454 455 /* ARGSUSED*/ 456 static void 457 proc0_post(void *dummy __unused) 458 { 459 struct timespec ts; 460 461 /* 462 * Now we can look at the time, having had a chance to verify the 463 * time from the file system. Pretend that proc0 started now. 464 */ 465 allproc_scan(proc0_post_callback, NULL); 466 467 /* 468 * Give the ``random'' number generator a thump. 469 * XXX: Does read_random() contain enough bits to be used here ? 470 */ 471 nanotime(&ts); 472 skrandom(ts.tv_sec ^ ts.tv_nsec); 473 } 474 475 static int 476 proc0_post_callback(struct proc *p, void *data __unused) 477 { 478 microtime(&p->p_start); 479 return(0); 480 } 481 482 SYSINIT(p0post, SI_SUB_PROC0_POST, SI_ORDER_FIRST, proc0_post, NULL) 483 484 /* 485 *************************************************************************** 486 **** 487 **** The following SYSINIT's and glue code should be moved to the 488 **** respective files on a per subsystem basis. 489 **** 490 *************************************************************************** 491 */ 492 493 494 /* 495 *************************************************************************** 496 **** 497 **** The following code probably belongs in another file, like 498 **** kern/init_init.c. 499 **** 500 *************************************************************************** 501 */ 502 503 /* 504 * List of paths to try when searching for "init". 505 */ 506 static char init_path[MAXPATHLEN] = 507 #ifdef INIT_PATH 508 __XSTRING(INIT_PATH); 509 #else 510 "/sbin/init:/sbin/oinit:/sbin/init.bak"; 511 #endif 512 SYSCTL_STRING(_kern, OID_AUTO, init_path, CTLFLAG_RD, init_path, 0, ""); 513 514 /* 515 * Start the initial user process; try exec'ing each pathname in init_path. 516 * The program is invoked with one argument containing the boot flags. 517 */ 518 static void 519 start_init(void *dummy, struct trapframe *frame) 520 { 521 vm_offset_t addr; 522 struct execve_args args; 523 int options, error; 524 char *var, *path, *next, *s; 525 char *ucp, **uap, *arg0, *arg1; 526 struct proc *p; 527 struct lwp *lp; 528 struct mount *mp; 529 struct vnode *vp; 530 char *env; 531 532 /* 533 * This is passed in by the bootloader 534 */ 535 env = kgetenv("kernelname"); 536 if (env != NULL) 537 strlcpy(kernelname, env, sizeof(kernelname)); 538 539 /* 540 * The MP lock is not held on entry. We release it before 541 * returning to userland. 542 */ 543 get_mplock(); 544 p = curproc; 545 546 lp = ONLY_LWP_IN_PROC(p); 547 548 /* Get the vnode for '/'. Set p->p_fd->fd_cdir to reference it. */ 549 mp = mountlist_boot_getfirst(); 550 if (VFS_ROOT(mp, &vp)) 551 panic("cannot find root vnode"); 552 if (mp->mnt_ncmountpt.ncp == NULL) { 553 cache_allocroot(&mp->mnt_ncmountpt, mp, vp); 554 cache_unlock(&mp->mnt_ncmountpt); /* leave ref intact */ 555 } 556 p->p_fd->fd_cdir = vp; 557 vref(p->p_fd->fd_cdir); 558 p->p_fd->fd_rdir = vp; 559 vref(p->p_fd->fd_rdir); 560 vfs_cache_setroot(vp, cache_hold(&mp->mnt_ncmountpt)); 561 vn_unlock(vp); /* leave ref intact */ 562 cache_copy(&mp->mnt_ncmountpt, &p->p_fd->fd_ncdir); 563 cache_copy(&mp->mnt_ncmountpt, &p->p_fd->fd_nrdir); 564 565 kprintf("Mounting devfs\n"); 566 vfs_mountroot_devfs(); 567 568 /* 569 * Need just enough stack to hold the faked-up "execve()" arguments. 570 */ 571 addr = trunc_page(USRSTACK - PAGE_SIZE); 572 error = vm_map_find(&p->p_vmspace->vm_map, NULL, 0, &addr, 573 PAGE_SIZE, PAGE_SIZE, 574 FALSE, VM_MAPTYPE_NORMAL, 575 VM_PROT_ALL, VM_PROT_ALL, 576 0); 577 if (error) 578 panic("init: couldn't allocate argument space"); 579 p->p_vmspace->vm_maxsaddr = (caddr_t)addr; 580 p->p_vmspace->vm_ssize = 1; 581 582 if ((var = kgetenv("init_path")) != NULL) { 583 strncpy(init_path, var, sizeof init_path); 584 init_path[sizeof init_path - 1] = 0; 585 } 586 587 for (path = init_path; *path != '\0'; path = next) { 588 while (*path == ':') 589 path++; 590 if (*path == '\0') 591 break; 592 for (next = path; *next != '\0' && *next != ':'; next++) 593 /* nothing */ ; 594 if (bootverbose) 595 kprintf("start_init: trying %.*s\n", (int)(next - path), 596 path); 597 598 /* 599 * Move out the boot flag argument. 600 */ 601 options = 0; 602 ucp = (char *)USRSTACK; 603 (void)subyte(--ucp, 0); /* trailing zero */ 604 if (boothowto & RB_SINGLE) { 605 (void)subyte(--ucp, 's'); 606 options = 1; 607 } 608 #ifdef notyet 609 if (boothowto & RB_FASTBOOT) { 610 (void)subyte(--ucp, 'f'); 611 options = 1; 612 } 613 #endif 614 615 #ifdef BOOTCDROM 616 (void)subyte(--ucp, 'C'); 617 options = 1; 618 #endif 619 if (options == 0) 620 (void)subyte(--ucp, '-'); 621 (void)subyte(--ucp, '-'); /* leading hyphen */ 622 arg1 = ucp; 623 624 /* 625 * Move out the file name (also arg 0). 626 */ 627 (void)subyte(--ucp, 0); 628 for (s = next - 1; s >= path; s--) 629 (void)subyte(--ucp, *s); 630 arg0 = ucp; 631 632 /* 633 * Move out the arg pointers. 634 */ 635 uap = (char **)((intptr_t)ucp & ~(sizeof(intptr_t)-1)); 636 (void)suword((caddr_t)--uap, (long)0); /* terminator */ 637 (void)suword((caddr_t)--uap, (long)(intptr_t)arg1); 638 (void)suword((caddr_t)--uap, (long)(intptr_t)arg0); 639 640 /* 641 * Point at the arguments. 642 */ 643 args.fname = arg0; 644 args.argv = uap; 645 args.envv = NULL; 646 647 /* 648 * Now try to exec the program. If can't for any reason 649 * other than it doesn't exist, complain. 650 * 651 * Otherwise, return via fork_trampoline() all the way 652 * to user mode as init! 653 * 654 * WARNING! We may have been moved to another cpu after 655 * acquiring the current user process designation. The 656 * MP lock will migrate with us though so we still have to 657 * release it. 658 */ 659 if ((error = sys_execve(&args)) == 0) { 660 rel_mplock(); 661 lp->lwp_proc->p_usched->acquire_curproc(lp); 662 return; 663 } 664 if (error != ENOENT) 665 kprintf("exec %.*s: error %d\n", (int)(next - path), 666 path, error); 667 } 668 kprintf("init: not found in path %s\n", init_path); 669 panic("no init"); 670 } 671 672 /* 673 * Like kthread_create(), but runs in it's own address space. 674 * We do this early to reserve pid 1. 675 * 676 * Note special case - do not make it runnable yet. Other work 677 * in progress will change this more. 678 */ 679 static void 680 create_init(const void *udata __unused) 681 { 682 int error; 683 struct lwp *lp; 684 685 crit_enter(); 686 error = fork1(&lwp0, RFFDG | RFPROC, &initproc); 687 if (error) 688 panic("cannot fork init: %d", error); 689 initproc->p_flag |= P_SYSTEM; 690 lp = ONLY_LWP_IN_PROC(initproc); 691 cpu_set_fork_handler(lp, start_init, NULL); 692 crit_exit(); 693 } 694 SYSINIT(init, SI_SUB_CREATE_INIT, SI_ORDER_FIRST, create_init, NULL) 695 696 /* 697 * Make it runnable now. 698 */ 699 static void 700 kick_init(const void *udata __unused) 701 { 702 start_forked_proc(&lwp0, initproc); 703 } 704 SYSINIT(kickinit, SI_SUB_KTHREAD_INIT, SI_ORDER_FIRST, kick_init, NULL) 705 706 /* 707 * Machine independant globaldata initialization 708 * 709 * WARNING! Called from early boot, 'mycpu' may not work yet. 710 */ 711 void 712 mi_gdinit(struct globaldata *gd, int cpuid) 713 { 714 TAILQ_INIT(&gd->gd_systimerq); 715 gd->gd_sysid_alloc = cpuid; /* prime low bits for cpu lookup */ 716 gd->gd_cpuid = cpuid; 717 gd->gd_cpumask = CPUMASK(cpuid); 718 lwkt_gdinit(gd); 719 vm_map_entry_reserve_cpu_init(gd); 720 sleep_gdinit(gd); 721 usched_global_cpumask |= CPUMASK(cpuid); 722 } 723 724