xref: /freebsd/sys/kern/init_main.c (revision b52b9d56d4e96089873a75f9e29062eec19fabba)
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$
43  */
44 
45 #include "opt_init_path.h"
46 
47 #include <sys/param.h>
48 #include <sys/kernel.h>
49 #include <sys/file.h>
50 #include <sys/filedesc.h>
51 #include <sys/ktr.h>
52 #include <sys/lock.h>
53 #include <sys/mount.h>
54 #include <sys/mutex.h>
55 #include <sys/sysctl.h>
56 #include <sys/proc.h>
57 #include <sys/resourcevar.h>
58 #include <sys/systm.h>
59 #include <sys/signalvar.h>
60 #include <sys/vnode.h>
61 #include <sys/sysent.h>
62 #include <sys/reboot.h>
63 #include <sys/sx.h>
64 #include <sys/sysproto.h>
65 #include <sys/vmmeter.h>
66 #include <sys/unistd.h>
67 #include <sys/malloc.h>
68 #include <sys/conf.h>
69 
70 #include <machine/cpu.h>
71 
72 #include <vm/vm.h>
73 #include <vm/vm_param.h>
74 #include <vm/pmap.h>
75 #include <vm/vm_map.h>
76 #include <sys/user.h>
77 #include <sys/copyright.h>
78 
79 void mi_startup(void);				/* Should be elsewhere */
80 
81 /* Components of the first process -- never freed. */
82 static struct session session0;
83 static struct pgrp pgrp0;
84 struct	proc proc0;
85 struct	thread thread0;
86 static struct procsig procsig0;
87 static struct filedesc0 filedesc0;
88 static struct plimit limit0;
89 static struct vmspace vmspace0;
90 struct	proc *initproc;
91 
92 int cmask = CMASK;
93 extern int fallback_elf_brand;
94 
95 struct	vnode *rootvp;
96 int	boothowto = 0;		/* initialized so that it can be patched */
97 SYSCTL_INT(_debug, OID_AUTO, boothowto, CTLFLAG_RD, &boothowto, 0, "");
98 int	bootverbose;
99 SYSCTL_INT(_debug, OID_AUTO, bootverbose, CTLFLAG_RW, &bootverbose, 0, "");
100 
101 /*
102  * This ensures that there is at least one entry so that the sysinit_set
103  * symbol is not undefined.  A sybsystem ID of SI_SUB_DUMMY is never
104  * executed.
105  */
106 SYSINIT(placeholder, SI_SUB_DUMMY, SI_ORDER_ANY, NULL, NULL)
107 
108 /*
109  * The sysinit table itself.  Items are checked off as the are run.
110  * If we want to register new sysinit types, add them to newsysinit.
111  */
112 SET_DECLARE(sysinit_set, struct sysinit);
113 struct sysinit **sysinit, **sysinit_end;
114 struct sysinit **newsysinit, **newsysinit_end;
115 
116 /*
117  * Merge a new sysinit set into the current set, reallocating it if
118  * necessary.  This can only be called after malloc is running.
119  */
120 void
121 sysinit_add(struct sysinit **set, struct sysinit **set_end)
122 {
123 	struct sysinit **newset;
124 	struct sysinit **sipp;
125 	struct sysinit **xipp;
126 	int count;
127 
128 	count = set_end - set;
129 	if (newsysinit)
130 		count += newsysinit_end - newsysinit;
131 	else
132 		count += sysinit_end - sysinit;
133 	newset = malloc(count * sizeof(*sipp), M_TEMP, M_NOWAIT);
134 	if (newset == NULL)
135 		panic("cannot malloc for sysinit");
136 	xipp = newset;
137 	if (newsysinit)
138 		for (sipp = newsysinit; sipp < newsysinit_end; sipp++)
139 			*xipp++ = *sipp;
140 	else
141 		for (sipp = sysinit; sipp < sysinit_end; sipp++)
142 			*xipp++ = *sipp;
143 	for (sipp = set; sipp < set_end; sipp++)
144 		*xipp++ = *sipp;
145 	if (newsysinit)
146 		free(newsysinit, M_TEMP);
147 	newsysinit = newset;
148 	newsysinit_end = newset + count;
149 }
150 
151 /*
152  * System startup; initialize the world, create process 0, mount root
153  * filesystem, and fork to create init and pagedaemon.  Most of the
154  * hard work is done in the lower-level initialization routines including
155  * startup(), which does memory initialization and autoconfiguration.
156  *
157  * This allows simple addition of new kernel subsystems that require
158  * boot time initialization.  It also allows substitution of subsystem
159  * (for instance, a scheduler, kernel profiler, or VM system) by object
160  * module.  Finally, it allows for optional "kernel threads".
161  */
162 void
163 mi_startup(void)
164 {
165 
166 	register struct sysinit **sipp;		/* system initialization*/
167 	register struct sysinit **xipp;		/* interior loop of sort*/
168 	register struct sysinit *save;		/* bubble*/
169 
170 	if (sysinit == NULL) {
171 		sysinit = SET_BEGIN(sysinit_set);
172 		sysinit_end = SET_LIMIT(sysinit_set);
173 	}
174 
175 restart:
176 	/*
177 	 * Perform a bubble sort of the system initialization objects by
178 	 * their subsystem (primary key) and order (secondary key).
179 	 */
180 	for (sipp = sysinit; sipp < sysinit_end; sipp++) {
181 		for (xipp = sipp + 1; xipp < sysinit_end; xipp++) {
182 			if ((*sipp)->subsystem < (*xipp)->subsystem ||
183 			     ((*sipp)->subsystem == (*xipp)->subsystem &&
184 			      (*sipp)->order <= (*xipp)->order))
185 				continue;	/* skip*/
186 			save = *sipp;
187 			*sipp = *xipp;
188 			*xipp = save;
189 		}
190 	}
191 
192 	/*
193 	 * Traverse the (now) ordered list of system initialization tasks.
194 	 * Perform each task, and continue on to the next task.
195 	 *
196 	 * The last item on the list is expected to be the scheduler,
197 	 * which will not return.
198 	 */
199 	for (sipp = sysinit; sipp < sysinit_end; sipp++) {
200 
201 		if ((*sipp)->subsystem == SI_SUB_DUMMY)
202 			continue;	/* skip dummy task(s)*/
203 
204 		if ((*sipp)->subsystem == SI_SUB_DONE)
205 			continue;
206 
207 		/* Call function */
208 		(*((*sipp)->func))((*sipp)->udata);
209 
210 		/* Check off the one we're just done */
211 		(*sipp)->subsystem = SI_SUB_DONE;
212 
213 		/* Check if we've installed more sysinit items via KLD */
214 		if (newsysinit != NULL) {
215 			if (sysinit != SET_BEGIN(sysinit_set))
216 				free(sysinit, M_TEMP);
217 			sysinit = newsysinit;
218 			sysinit_end = newsysinit_end;
219 			newsysinit = NULL;
220 			newsysinit_end = NULL;
221 			goto restart;
222 		}
223 	}
224 
225 	panic("Shouldn't get here!");
226 	/* NOTREACHED*/
227 }
228 
229 
230 /*
231  ***************************************************************************
232  ****
233  **** The following SYSINIT's belong elsewhere, but have not yet
234  **** been moved.
235  ****
236  ***************************************************************************
237  */
238 static void
239 print_caddr_t(void *data __unused)
240 {
241 	printf("%s", (char *)data);
242 }
243 SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t, copyright)
244 SYSINIT(version, SI_SUB_COPYRIGHT, SI_ORDER_SECOND, print_caddr_t, version)
245 
246 static void
247 set_boot_verbose(void *data __unused)
248 {
249 
250 	if (boothowto & RB_VERBOSE)
251 		bootverbose++;
252 }
253 SYSINIT(boot_verbose, SI_SUB_TUNABLES, SI_ORDER_ANY, set_boot_verbose, NULL)
254 
255 static struct sysentvec null_sysvec;
256 
257 
258 /*
259  ***************************************************************************
260  ****
261  **** The two following SYSINT's are proc0 specific glue code.  I am not
262  **** convinced that they can not be safely combined, but their order of
263  **** operation has been maintained as the same as the original init_main.c
264  **** for right now.
265  ****
266  **** These probably belong in init_proc.c or kern_proc.c, since they
267  **** deal with proc0 (the fork template process).
268  ****
269  ***************************************************************************
270  */
271 /* ARGSUSED*/
272 static void
273 proc0_init(void *dummy __unused)
274 {
275 	register struct proc		*p;
276 	register struct filedesc0	*fdp;
277 	register unsigned i;
278 	struct thread *td;
279 	struct ksegrp *kg;
280 	struct kse *ke;
281 
282 	GIANT_REQUIRED;
283 	p = &proc0;
284 	td = &thread0;
285 
286 	/*
287 	 * Initialize magic number.
288 	 */
289 	p->p_magic = P_MAGIC;
290 
291 	/*
292 	 * Initialize thread, process and pgrp structures.
293 	 */
294 	procinit();
295 	threadinit();
296 
297 	/*
298 	 * Initialize sleep queue hash table
299 	 */
300 	sleepinit();
301 
302 	/*
303 	 * additional VM structures
304 	 */
305 	vm_init2();
306 
307 	/*
308 	 * Create process 0 (the swapper).
309 	 */
310 	LIST_INSERT_HEAD(&allproc, p, p_list);
311 	LIST_INSERT_HEAD(PIDHASH(0), p, p_hash);
312 	mtx_init(&pgrp0.pg_mtx, "process group", NULL, MTX_DEF | MTX_DUPOK);
313 	p->p_pgrp = &pgrp0;
314 	LIST_INSERT_HEAD(PGRPHASH(0), &pgrp0, pg_hash);
315 	LIST_INIT(&pgrp0.pg_members);
316 	LIST_INSERT_HEAD(&pgrp0.pg_members, p, p_pglist);
317 
318 	pgrp0.pg_session = &session0;
319 	mtx_init(&session0.s_mtx, "session", NULL, MTX_DEF);
320 	session0.s_count = 1;
321 	session0.s_leader = p;
322 
323 	p->p_sysent = &null_sysvec;
324 
325 	/*
326 	 * proc_linkup was already done in init_i386() or alphainit() etc.
327 	 * because the earlier code needed to follow td->td_proc. Otherwise
328 	 * I would have done it here.. maybe this means this should be
329 	 * done earlier too.
330 	 */
331 	ke = &proc0.p_kse;	/* XXXKSE */
332 	kg = &proc0.p_ksegrp;	/* XXXKSE */
333 	p->p_flag = P_SYSTEM;
334 	p->p_sflag = PS_INMEM;
335 	p->p_state = PRS_NORMAL;
336 	td->td_state = TDS_RUNNING;
337 	kg->kg_nice = NZERO;
338 	kg->kg_pri_class = PRI_TIMESHARE;
339 	kg->kg_user_pri = PUSER;
340 	td->td_priority = PVM;
341 	td->td_base_pri = PUSER;
342 	td->td_kse = ke; /* XXXKSE */
343 	ke->ke_oncpu = 0;
344 	ke->ke_state = KES_THREAD;
345 	ke->ke_thread = td;
346 	/* proc_linkup puts it in the idle queue, that's not what we want. */
347 	TAILQ_REMOVE(&kg->kg_iq, ke, ke_kgrlist);
348 	kg->kg_idle_kses--;
349 	p->p_peers = 0;
350 	p->p_leader = p;
351 KASSERT((ke->ke_kgrlist.tqe_next != ke), ("linked to self!"));
352 
353 
354 	bcopy("swapper", p->p_comm, sizeof ("swapper"));
355 
356 	callout_init(&p->p_itcallout, 0);
357 	callout_init(&td->td_slpcallout, 1);
358 
359 	/* Create credentials. */
360 	p->p_ucred = crget();
361 	p->p_ucred->cr_ngroups = 1;	/* group 0 */
362 	p->p_ucred->cr_uidinfo = uifind(0);
363 	p->p_ucred->cr_ruidinfo = uifind(0);
364 	p->p_ucred->cr_prison = NULL;	/* Don't jail it. */
365 	td->td_ucred = crhold(p->p_ucred);
366 
367 	/* Create procsig. */
368 	p->p_procsig = &procsig0;
369 	p->p_procsig->ps_refcnt = 1;
370 
371 	/* Initialize signal state for process 0. */
372 	siginit(&proc0);
373 
374 	/* Create the file descriptor table. */
375 	fdp = &filedesc0;
376 	p->p_fd = &fdp->fd_fd;
377 	mtx_init(&fdp->fd_fd.fd_mtx, FILEDESC_LOCK_DESC, NULL, MTX_DEF);
378 	fdp->fd_fd.fd_refcnt = 1;
379 	fdp->fd_fd.fd_cmask = cmask;
380 	fdp->fd_fd.fd_ofiles = fdp->fd_dfiles;
381 	fdp->fd_fd.fd_ofileflags = fdp->fd_dfileflags;
382 	fdp->fd_fd.fd_nfiles = NDFILE;
383 
384 	/* Create the limits structures. */
385 	p->p_limit = &limit0;
386 	for (i = 0; i < sizeof(p->p_rlimit)/sizeof(p->p_rlimit[0]); i++)
387 		limit0.pl_rlimit[i].rlim_cur =
388 		    limit0.pl_rlimit[i].rlim_max = RLIM_INFINITY;
389 	limit0.pl_rlimit[RLIMIT_NOFILE].rlim_cur =
390 	    limit0.pl_rlimit[RLIMIT_NOFILE].rlim_max = maxfiles;
391 	limit0.pl_rlimit[RLIMIT_NPROC].rlim_cur =
392 	    limit0.pl_rlimit[RLIMIT_NPROC].rlim_max = maxproc;
393 	i = ptoa(cnt.v_free_count);
394 	limit0.pl_rlimit[RLIMIT_RSS].rlim_max = i;
395 	limit0.pl_rlimit[RLIMIT_MEMLOCK].rlim_max = i;
396 	limit0.pl_rlimit[RLIMIT_MEMLOCK].rlim_cur = i / 3;
397 	limit0.p_cpulimit = RLIM_INFINITY;
398 	limit0.p_refcnt = 1;
399 
400 	/* Allocate a prototype map so we have something to fork. */
401 	pmap_pinit0(vmspace_pmap(&vmspace0));
402 	p->p_vmspace = &vmspace0;
403 	vmspace0.vm_refcnt = 1;
404 	vm_map_init(&vmspace0.vm_map, round_page(VM_MIN_ADDRESS),
405 	    trunc_page(VM_MAXUSER_ADDRESS));
406 	vmspace0.vm_map.pmap = vmspace_pmap(&vmspace0);
407 
408 	/*
409 	 * We continue to place resource usage info and signal
410 	 * actions in the user struct so they're pageable.
411 	 */
412 	p->p_stats = &p->p_uarea->u_stats;
413 	p->p_sigacts = &p->p_uarea->u_sigacts;
414 
415 	/*
416 	 * Charge root for one process.
417 	 */
418 	(void)chgproccnt(p->p_ucred->cr_ruidinfo, 1, 0);
419 }
420 SYSINIT(p0init, SI_SUB_INTRINSIC, SI_ORDER_FIRST, proc0_init, NULL)
421 
422 /* ARGSUSED*/
423 static void
424 proc0_post(void *dummy __unused)
425 {
426 	struct timespec ts;
427 	struct proc *p;
428 
429 	/*
430 	 * Now we can look at the time, having had a chance to verify the
431 	 * time from the filesystem.  Pretend that proc0 started now.
432 	 */
433 	sx_slock(&allproc_lock);
434 	LIST_FOREACH(p, &allproc, p_list) {
435 		microtime(&p->p_stats->p_start);
436 		p->p_runtime.sec = 0;
437 		p->p_runtime.frac = 0;
438 	}
439 	sx_sunlock(&allproc_lock);
440 	binuptime(PCPU_PTR(switchtime));
441 	PCPU_SET(switchticks, ticks);
442 
443 	/*
444 	 * Give the ``random'' number generator a thump.
445 	 */
446 	nanotime(&ts);
447 	srandom(ts.tv_sec ^ ts.tv_nsec);
448 }
449 SYSINIT(p0post, SI_SUB_INTRINSIC_POST, SI_ORDER_FIRST, proc0_post, NULL)
450 
451 /*
452  ***************************************************************************
453  ****
454  **** The following SYSINIT's and glue code should be moved to the
455  **** respective files on a per subsystem basis.
456  ****
457  ***************************************************************************
458  */
459 
460 
461 /*
462  ***************************************************************************
463  ****
464  **** The following code probably belongs in another file, like
465  **** kern/init_init.c.
466  ****
467  ***************************************************************************
468  */
469 
470 /*
471  * List of paths to try when searching for "init".
472  */
473 static char init_path[MAXPATHLEN] =
474 #ifdef	INIT_PATH
475     __XSTRING(INIT_PATH);
476 #else
477     "/sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall";
478 #endif
479 SYSCTL_STRING(_kern, OID_AUTO, init_path, CTLFLAG_RD, init_path, 0,
480 	"Path used to search the init process");
481 
482 /*
483  * Start the initial user process; try exec'ing each pathname in init_path.
484  * The program is invoked with one argument containing the boot flags.
485  */
486 static void
487 start_init(void *dummy)
488 {
489 	vm_offset_t addr;
490 	struct execve_args args;
491 	int options, error;
492 	char *var, *path, *next, *s;
493 	char *ucp, **uap, *arg0, *arg1;
494 	struct thread *td;
495 	struct proc *p;
496 	int init_does_devfs = 0;
497 
498 	mtx_lock(&Giant);
499 
500 	GIANT_REQUIRED;
501 
502 	td = curthread;
503 	p = td->td_proc;
504 
505 	vfs_mountroot();
506 
507 	/* Get the vnode for '/'.  Set p->p_fd->fd_cdir to reference it. */
508 	if (VFS_ROOT(TAILQ_FIRST(&mountlist), &rootvnode))
509 		panic("cannot find root vnode");
510 	FILEDESC_LOCK(p->p_fd);
511 	p->p_fd->fd_cdir = rootvnode;
512 	VREF(p->p_fd->fd_cdir);
513 	p->p_fd->fd_rdir = rootvnode;
514 	VREF(p->p_fd->fd_rdir);
515 	FILEDESC_UNLOCK(p->p_fd);
516 	VOP_UNLOCK(rootvnode, 0, td);
517 
518 	if (devfs_present) {
519 		/*
520 		 * For disk based systems, we probably cannot do this yet
521 		 * since the fs will be read-only.  But a NFS root
522 		 * might be ok.  It is worth a shot.
523 		 */
524 		error = vn_mkdir("/dev", 0700, UIO_SYSSPACE, td);
525 		if (error == EEXIST)
526 			error = 0;
527 		if (error == 0)
528 			error = kernel_vmount(0, "fstype", "devfs",
529 			    "fspath", "/dev", NULL);
530 		if (error != 0)
531 			init_does_devfs = 1;
532 	}
533 
534 	/*
535 	 * Need just enough stack to hold the faked-up "execve()" arguments.
536 	 */
537 	addr = trunc_page(USRSTACK - PAGE_SIZE);
538 	if (vm_map_find(&p->p_vmspace->vm_map, NULL, 0, &addr, PAGE_SIZE,
539 			FALSE, VM_PROT_ALL, VM_PROT_ALL, 0) != 0)
540 		panic("init: couldn't allocate argument space");
541 	p->p_vmspace->vm_maxsaddr = (caddr_t)addr;
542 	p->p_vmspace->vm_ssize = 1;
543 
544 	if ((var = getenv("init_path")) != NULL) {
545 		strncpy(init_path, var, sizeof init_path);
546 		init_path[sizeof init_path - 1] = 0;
547 		freeenv(var);
548 	}
549 	if ((var = getenv("kern.fallback_elf_brand")) != NULL) {
550 		fallback_elf_brand = strtol(var, NULL, 0);
551 		freeenv(var);
552 	}
553 
554 	for (path = init_path; *path != '\0'; path = next) {
555 		while (*path == ':')
556 			path++;
557 		if (*path == '\0')
558 			break;
559 		for (next = path; *next != '\0' && *next != ':'; next++)
560 			/* nothing */ ;
561 		if (bootverbose)
562 			printf("start_init: trying %.*s\n", (int)(next - path),
563 			    path);
564 
565 		/*
566 		 * Move out the boot flag argument.
567 		 */
568 		options = 0;
569 		ucp = (char *)USRSTACK;
570 		(void)subyte(--ucp, 0);		/* trailing zero */
571 		if (boothowto & RB_SINGLE) {
572 			(void)subyte(--ucp, 's');
573 			options = 1;
574 		}
575 #ifdef notyet
576                 if (boothowto & RB_FASTBOOT) {
577 			(void)subyte(--ucp, 'f');
578 			options = 1;
579 		}
580 #endif
581 
582 #ifdef BOOTCDROM
583 		(void)subyte(--ucp, 'C');
584 		options = 1;
585 #endif
586 		if (init_does_devfs) {
587 			(void)subyte(--ucp, 'd');
588 			options = 1;
589 		}
590 
591 		if (options == 0)
592 			(void)subyte(--ucp, '-');
593 		(void)subyte(--ucp, '-');		/* leading hyphen */
594 		arg1 = ucp;
595 
596 		/*
597 		 * Move out the file name (also arg 0).
598 		 */
599 		(void)subyte(--ucp, 0);
600 		for (s = next - 1; s >= path; s--)
601 			(void)subyte(--ucp, *s);
602 		arg0 = ucp;
603 
604 		/*
605 		 * Move out the arg pointers.
606 		 */
607 		uap = (char **)((intptr_t)ucp & ~(sizeof(intptr_t)-1));
608 		(void)suword((caddr_t)--uap, (long)0);	/* terminator */
609 		(void)suword((caddr_t)--uap, (long)(intptr_t)arg1);
610 		(void)suword((caddr_t)--uap, (long)(intptr_t)arg0);
611 
612 		/*
613 		 * Point at the arguments.
614 		 */
615 		args.fname = arg0;
616 		args.argv = uap;
617 		args.envv = NULL;
618 
619 		/*
620 		 * Now try to exec the program.  If can't for any reason
621 		 * other than it doesn't exist, complain.
622 		 *
623 		 * Otherwise, return via fork_trampoline() all the way
624 		 * to user mode as init!
625 		 */
626 		if ((error = execve(td, &args)) == 0) {
627 			mtx_unlock(&Giant);
628 			return;
629 		}
630 		if (error != ENOENT)
631 			printf("exec %.*s: error %d\n", (int)(next - path),
632 			    path, error);
633 	}
634 	printf("init: not found in path %s\n", init_path);
635 	panic("no init");
636 }
637 
638 /*
639  * Like kthread_create(), but runs in it's own address space.
640  * We do this early to reserve pid 1.
641  *
642  * Note special case - do not make it runnable yet.  Other work
643  * in progress will change this more.
644  */
645 static void
646 create_init(const void *udata __unused)
647 {
648 	struct ucred *newcred, *oldcred;
649 	int error;
650 
651 	error = fork1(&thread0, RFFDG | RFPROC | RFSTOPPED, &initproc);
652 	if (error)
653 		panic("cannot fork init: %d\n", error);
654 	/* divorce init's credentials from the kernel's */
655 	newcred = crget();
656 	PROC_LOCK(initproc);
657 	initproc->p_flag |= P_SYSTEM;
658 	oldcred = initproc->p_ucred;
659 	crcopy(newcred, oldcred);
660 	initproc->p_ucred = newcred;
661 	PROC_UNLOCK(initproc);
662 	crfree(oldcred);
663 	mtx_lock_spin(&sched_lock);
664 	initproc->p_sflag |= PS_INMEM;
665 	mtx_unlock_spin(&sched_lock);
666 	cpu_set_fork_handler(FIRST_THREAD_IN_PROC(initproc), start_init, NULL);
667 }
668 SYSINIT(init, SI_SUB_CREATE_INIT, SI_ORDER_FIRST, create_init, NULL)
669 
670 /*
671  * Make it runnable now.
672  */
673 static void
674 kick_init(const void *udata __unused)
675 {
676 	struct thread *td;
677 
678 	td = FIRST_THREAD_IN_PROC(initproc);
679 	mtx_lock_spin(&sched_lock);
680 	setrunqueue(td);	/* XXXKSE */
681 	mtx_unlock_spin(&sched_lock);
682 }
683 SYSINIT(kickinit, SI_SUB_KTHREAD_INIT, SI_ORDER_FIRST, kick_init, NULL)
684