xref: /titanic_52/usr/src/uts/common/os/main.c (revision 86c1f4dc9dc6de02690b5c555380d7714ef54ee0)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 /*	Copyright (c) 1988 AT&T	*/
27 /*	  All Rights Reserved  	*/
28 
29 
30 #include <sys/types.h>
31 #include <sys/param.h>
32 #include <sys/sysmacros.h>
33 #include <sys/pcb.h>
34 #include <sys/systm.h>
35 #include <sys/signal.h>
36 #include <sys/cred.h>
37 #include <sys/user.h>
38 #include <sys/vfs.h>
39 #include <sys/vnode.h>
40 #include <sys/proc.h>
41 #include <sys/time.h>
42 #include <sys/file.h>
43 #include <sys/priocntl.h>
44 #include <sys/procset.h>
45 #include <sys/disp.h>
46 #include <sys/callo.h>
47 #include <sys/callb.h>
48 #include <sys/debug.h>
49 #include <sys/conf.h>
50 #include <sys/bootconf.h>
51 #include <sys/utsname.h>
52 #include <sys/cmn_err.h>
53 #include <sys/vmparam.h>
54 #include <sys/modctl.h>
55 #include <sys/vm.h>
56 #include <sys/callb.h>
57 #include <sys/ddi_timer.h>
58 #include <sys/kmem.h>
59 #include <sys/vmem.h>
60 #include <sys/cpuvar.h>
61 #include <sys/cladm.h>
62 #include <sys/corectl.h>
63 #include <sys/exec.h>
64 #include <sys/syscall.h>
65 #include <sys/reboot.h>
66 #include <sys/task.h>
67 #include <sys/exacct.h>
68 #include <sys/autoconf.h>
69 #include <sys/errorq.h>
70 #include <sys/class.h>
71 #include <sys/stack.h>
72 #include <sys/brand.h>
73 
74 #include <vm/as.h>
75 #include <vm/seg_kmem.h>
76 #include <sys/dc_ki.h>
77 
78 #include <c2/audit.h>
79 
80 /* well known processes */
81 proc_t *proc_sched;		/* memory scheduler */
82 proc_t *proc_init;		/* init */
83 proc_t *proc_pageout;		/* pageout daemon */
84 proc_t *proc_fsflush;		/* fsflush daemon */
85 
86 pgcnt_t	maxmem;		/* Maximum available memory in pages.	*/
87 pgcnt_t	freemem;	/* Current available memory in pages.	*/
88 int	audit_active;
89 int	interrupts_unleashed;	/* set when we do the first spl0() */
90 
91 kmem_cache_t *process_cache;	/* kmem cache for proc structures */
92 
93 /*
94  * Process 0's lwp directory and lwpid hash table.
95  */
96 lwpdir_t p0_lwpdir[2];
97 lwpdir_t *p0_tidhash[2];
98 lwpent_t p0_lep;
99 
100 /*
101  * Machine-independent initialization code
102  * Called from cold start routine as
103  * soon as a stack and segmentation
104  * have been established.
105  * Functions:
106  *	clear and free user core
107  *	turn on clock
108  *	hand craft 0th process
109  *	call all initialization routines
110  *	fork	- process 0 to schedule
111  *		- process 1 execute bootstrap
112  *		- process 2 to page out
113  *	create system threads
114  */
115 
116 int cluster_bootflags = 0;
117 
118 void
119 cluster_wrapper(void)
120 {
121 	cluster();
122 	panic("cluster()  returned");
123 }
124 
125 char initname[INITNAME_SZ] = "/sbin/init";	/* also referenced by zone0 */
126 char initargs[BOOTARGS_MAX] = "";		/* also referenced by zone0 */
127 extern int64_t lwp_sigmask(int, uint_t, uint_t);
128 
129 /*
130  * Construct a stack for init containing the arguments to it, then
131  * pass control to exec_common.
132  */
133 int
134 exec_init(const char *initpath, const char *args)
135 {
136 	caddr32_t ucp;
137 	caddr32_t *uap;
138 	caddr32_t *argv;
139 	caddr32_t exec_fnamep;
140 	char *scratchargs;
141 	int i, sarg;
142 	size_t argvlen, alen;
143 	boolean_t in_arg;
144 	int argc = 0;
145 	int error = 0, count = 0;
146 	proc_t *p = ttoproc(curthread);
147 	klwp_t *lwp = ttolwp(curthread);
148 	int brand_action;
149 
150 	if (args == NULL)
151 		args = "";
152 
153 	alen = strlen(initpath) + 1 + strlen(args) + 1;
154 	scratchargs = kmem_alloc(alen, KM_SLEEP);
155 	(void) snprintf(scratchargs, alen, "%s %s", initpath, args);
156 
157 	/*
158 	 * We do a quick two state parse of the string to sort out how big
159 	 * argc should be.
160 	 */
161 	in_arg = B_FALSE;
162 	for (i = 0; i < strlen(scratchargs); i++) {
163 		if (scratchargs[i] == ' ' || scratchargs[i] == '\0') {
164 			if (in_arg) {
165 				in_arg = B_FALSE;
166 				argc++;
167 			}
168 		} else {
169 			in_arg = B_TRUE;
170 		}
171 	}
172 	argvlen = sizeof (caddr32_t) * (argc + 1);
173 	argv = kmem_zalloc(argvlen, KM_SLEEP);
174 
175 	/*
176 	 * We pull off a bit of a hack here.  We work our way through the
177 	 * args string, putting nulls at the ends of space delimited tokens
178 	 * (boot args don't support quoting at this time).  Then we just
179 	 * copy the whole mess to userland in one go.  In other words, we
180 	 * transform this: "init -s -r\0" into this on the stack:
181 	 *
182 	 *	-0x00 \0
183 	 *	-0x01 r
184 	 *	-0x02 -  <--------.
185 	 *	-0x03 \0	  |
186 	 *	-0x04 s		  |
187 	 *	-0x05 -  <------. |
188 	 *	-0x06 \0	| |
189 	 *	-0x07 t		| |
190 	 *	-0x08 i 	| |
191 	 *	-0x09 n		| |
192 	 *	-0x0a i  <---.  | |
193 	 *	-0x10 NULL   |  | |	(argv[3])
194 	 *	-0x14   -----|--|-'	(argv[2])
195 	 *	-0x18  ------|--'	(argv[1])
196 	 *	-0x1c -------'		(argv[0])
197 	 *
198 	 * Since we know the value of ucp at the beginning of this process,
199 	 * we can trivially compute the argv[] array which we also need to
200 	 * place in userland: argv[i] = ucp - sarg(i), where ucp is the
201 	 * stack ptr, and sarg is the string index of the start of the
202 	 * argument.
203 	 */
204 	ucp = (caddr32_t)(uintptr_t)p->p_usrstack;
205 
206 	argc = 0;
207 	in_arg = B_FALSE;
208 	sarg = 0;
209 
210 	for (i = 0; i < alen; i++) {
211 		if (scratchargs[i] == ' ' || scratchargs[i] == '\0') {
212 			if (in_arg == B_TRUE) {
213 				in_arg = B_FALSE;
214 				scratchargs[i] = '\0';
215 				argv[argc++] = ucp - (alen - sarg);
216 			}
217 		} else if (in_arg == B_FALSE) {
218 			in_arg = B_TRUE;
219 			sarg = i;
220 		}
221 	}
222 	ucp -= alen;
223 	error |= copyout(scratchargs, (caddr_t)(uintptr_t)ucp, alen);
224 
225 	uap = (caddr32_t *)P2ALIGN((uintptr_t)ucp, sizeof (caddr32_t));
226 	uap--;	/* advance to be below the word we're in */
227 	uap -= (argc + 1);	/* advance argc words down, plus one for NULL */
228 	error |= copyout(argv, uap, argvlen);
229 
230 	if (error != 0) {
231 		zcmn_err(p->p_zone->zone_id, CE_WARN,
232 		    "Could not construct stack for init.\n");
233 		kmem_free(argv, argvlen);
234 		kmem_free(scratchargs, alen);
235 		return (EFAULT);
236 	}
237 
238 	exec_fnamep = argv[0];
239 	kmem_free(argv, argvlen);
240 	kmem_free(scratchargs, alen);
241 
242 	/*
243 	 * Point at the arguments.
244 	 */
245 	lwp->lwp_ap = lwp->lwp_arg;
246 	lwp->lwp_arg[0] = (uintptr_t)exec_fnamep;
247 	lwp->lwp_arg[1] = (uintptr_t)uap;
248 	lwp->lwp_arg[2] = NULL;
249 	curthread->t_post_sys = 1;
250 	curthread->t_sysnum = SYS_execve;
251 
252 	/*
253 	 * If we are executing init from zsched, we may have inherited its
254 	 * parent process's signal mask.  Clear it now so that we behave in
255 	 * the same way as when started from the global zone.
256 	 */
257 	(void) lwp_sigmask(SIG_UNBLOCK, 0xffffffff, 0xffffffff);
258 
259 	brand_action = ZONE_IS_BRANDED(p->p_zone) ? EBA_BRAND : EBA_NONE;
260 again:
261 	error = exec_common((const char *)(uintptr_t)exec_fnamep,
262 	    (const char **)(uintptr_t)uap, NULL, brand_action);
263 
264 	/*
265 	 * Normally we would just set lwp_argsaved and t_post_sys and
266 	 * let post_syscall reset lwp_ap for us.  Unfortunately,
267 	 * exec_init isn't always called from a system call.  Instead
268 	 * of making a mess of trap_cleanup, we just reset the args
269 	 * pointer here.
270 	 */
271 	reset_syscall_args();
272 
273 	switch (error) {
274 	case 0:
275 		return (0);
276 
277 	case ENOENT:
278 		zcmn_err(p->p_zone->zone_id, CE_WARN,
279 		    "exec(%s) failed (file not found).\n", initpath);
280 		return (ENOENT);
281 
282 	case EAGAIN:
283 	case EINTR:
284 		++count;
285 		if (count < 5) {
286 			zcmn_err(p->p_zone->zone_id, CE_WARN,
287 			    "exec(%s) failed with errno %d.  Retrying...\n",
288 			    initpath, error);
289 			goto again;
290 		}
291 	}
292 
293 	zcmn_err(p->p_zone->zone_id, CE_WARN,
294 	    "exec(%s) failed with errno %d.", initpath, error);
295 	return (error);
296 }
297 
298 /*
299  * This routine does all of the common setup for invoking init; global
300  * and non-global zones employ this routine for the functionality which is
301  * in common.
302  *
303  * This program (init, presumably) must be a 32-bit process.
304  */
305 int
306 start_init_common()
307 {
308 	proc_t *p = curproc;
309 	ASSERT_STACK_ALIGNED();
310 	p->p_zone->zone_proc_initpid = p->p_pid;
311 
312 	p->p_cstime = p->p_stime = p->p_cutime = p->p_utime = 0;
313 	p->p_usrstack = (caddr_t)USRSTACK32;
314 	p->p_model = DATAMODEL_ILP32;
315 	p->p_stkprot = PROT_ZFOD & ~PROT_EXEC;
316 	p->p_datprot = PROT_ZFOD & ~PROT_EXEC;
317 	p->p_stk_ctl = INT32_MAX;
318 
319 	p->p_as = as_alloc();
320 	p->p_as->a_proc = p;
321 	p->p_as->a_userlimit = (caddr_t)USERLIMIT32;
322 	(void) hat_setup(p->p_as->a_hat, HAT_INIT);
323 
324 	init_core();
325 
326 	init_mstate(curthread, LMS_SYSTEM);
327 	return (exec_init(p->p_zone->zone_initname, p->p_zone->zone_bootargs));
328 }
329 
330 /*
331  * Start the initial user process for the global zone; once running, if
332  * init should subsequently fail, it will be automatically be caught in the
333  * exit(2) path, and restarted by restart_init().
334  */
335 static void
336 start_init(void)
337 {
338 	proc_init = curproc;
339 
340 	ASSERT(curproc->p_zone->zone_initname != NULL);
341 
342 	if (start_init_common() != 0)
343 		halt("unix: Could not start init");
344 	lwp_rtt();
345 }
346 
347 extern void return_instr(void);
348 void (*rootnex_iommu_add_intr)(void) = (void (*)(void))return_instr;
349 
350 void
351 main(void)
352 {
353 	proc_t		*p = ttoproc(curthread);	/* &p0 */
354 	int		(**initptr)();
355 	extern void	sched();
356 	extern void	fsflush();
357 	extern int	(*init_tbl[])();
358 	extern int	(*mp_init_tbl[])();
359 	extern id_t	syscid, defaultcid;
360 	extern int	swaploaded;
361 	extern int	netboot;
362 	extern void	vm_init(void);
363 	extern void	cbe_init_pre(void);
364 	extern void	cbe_init(void);
365 	extern void	clock_tick_init_pre(void);
366 	extern void	clock_tick_init_post(void);
367 	extern void	clock_init(void);
368 	extern void	physio_bufs_init(void);
369 	extern void	pm_cfb_setup_intr(void);
370 	extern int	pm_adjust_timestamps(dev_info_t *, void *);
371 	extern void	start_other_cpus(int);
372 	extern void	sysevent_evc_thrinit();
373 	extern void	lgrp_main_init(void);
374 	extern void	lgrp_main_mp_init(void);
375 #if defined(__x86)
376 	extern void	cpupm_post_startup(void);
377 #endif
378 	/*
379 	 * In the horrible world of x86 in-lines, you can't get symbolic
380 	 * structure offsets a la genassym.  This assertion is here so
381 	 * that the next poor slob who innocently changes the offset of
382 	 * cpu_thread doesn't waste as much time as I just did finding
383 	 * out that it's hard-coded in i86/ml/i86.il.  Similarly for
384 	 * curcpup.  You're welcome.
385 	 */
386 	ASSERT(CPU == CPU->cpu_self);
387 	ASSERT(curthread == CPU->cpu_thread);
388 	ASSERT_STACK_ALIGNED();
389 
390 	/*
391 	 * Setup the first lgroup, and home t0
392 	 */
393 	lgrp_setup();
394 
395 	/*
396 	 * Once 'startup()' completes, the thread_reaper() daemon would be
397 	 * created(in thread_init()). After that, it is safe to create threads
398 	 * that could exit. These exited threads will get reaped.
399 	 */
400 	startup();
401 	segkmem_gc();
402 	callb_init();
403 	callout_init();	/* callout table MUST be init'd before clock starts */
404 	cbe_init_pre();	/* x86 must initialize gethrtimef before timer_init */
405 	timer_init();	/* timer must be initialized before cyclic starts */
406 	cbe_init();
407 	clock_tick_init_pre();
408 	clock_init();
409 
410 	/*
411 	 * On some platforms, clkinitf() changes the timing source that
412 	 * gethrtime_unscaled() uses to generate timestamps.  cbe_init() calls
413 	 * clkinitf(), so re-initialize the microstate counters after the
414 	 * timesource has been chosen.
415 	 */
416 	init_mstate(&t0, LMS_SYSTEM);
417 	init_cpu_mstate(CPU, CMS_SYSTEM);
418 
419 	/*
420 	 * May need to probe to determine latencies from CPU 0 after
421 	 * gethrtime() comes alive in cbe_init() and before enabling interrupts
422 	 */
423 	lgrp_plat_probe();
424 
425 	/*
426 	 * Call all system initialization functions.
427 	 */
428 	for (initptr = &init_tbl[0]; *initptr; initptr++)
429 		(**initptr)();
430 
431 	/*
432 	 * initialize vm related stuff.
433 	 */
434 	vm_init();
435 
436 	/*
437 	 * initialize buffer pool for raw I/O requests
438 	 */
439 	physio_bufs_init();
440 
441 	ttolwp(curthread)->lwp_error = 0; /* XXX kludge for SCSI driver */
442 
443 	/*
444 	 * Drop the interrupt level and allow interrupts.  At this point
445 	 * the DDI guarantees that interrupts are enabled.
446 	 */
447 	(void) spl0();
448 	interrupts_unleashed = 1;
449 
450 	/*
451 	 * add intel iommu fault event handler
452 	 */
453 	rootnex_iommu_add_intr();
454 
455 	vfs_mountroot();	/* Mount the root file system */
456 	errorq_init();		/* after vfs_mountroot() so DDI root is ready */
457 	cpu_kstat_init(CPU);	/* after vfs_mountroot() so TOD is valid */
458 	ddi_walk_devs(ddi_root_node(), pm_adjust_timestamps, NULL);
459 				/* after vfs_mountroot() so hrestime is valid */
460 
461 	post_startup();
462 	swaploaded = 1;
463 
464 	/*
465 	 * Initialize Solaris Audit Subsystem
466 	 */
467 	audit_init();
468 
469 	/*
470 	 * Plumb the protocol modules and drivers only if we are not
471 	 * networked booted, in this case we already did it in rootconf().
472 	 */
473 	if (netboot == 0)
474 		(void) strplumb();
475 
476 	gethrestime(&PTOU(curproc)->u_start);
477 	curthread->t_start = PTOU(curproc)->u_start.tv_sec;
478 	p->p_mstart = gethrtime();
479 
480 	/*
481 	 * Perform setup functions that can only be done after root
482 	 * and swap have been set up.
483 	 */
484 	consconfig();
485 	release_bootstrap();
486 
487 	/*
488 	 * attach drivers with ddi-forceattach prop
489 	 * This must be done after consconfig() to prevent usb key/mouse
490 	 * from attaching before the upper console stream is plumbed.
491 	 * It must be done early enough to load hotplug drivers (e.g.
492 	 * pcmcia nexus) so that devices enumerated via hotplug is
493 	 * available before I/O subsystem is fully initialized.
494 	 */
495 	i_ddi_forceattach_drivers();
496 
497 	/*
498 	 * Set the scan rate and other parameters of the paging subsystem.
499 	 */
500 	setupclock(0);
501 
502 	/*
503 	 * Create kmem cache for proc structures
504 	 */
505 	process_cache = kmem_cache_create("process_cache", sizeof (proc_t),
506 	    0, NULL, NULL, NULL, NULL, NULL, 0);
507 
508 	/*
509 	 * Initialize process 0's lwp directory and lwpid hash table.
510 	 */
511 	p->p_lwpdir = p->p_lwpfree = p0_lwpdir;
512 	p->p_lwpdir->ld_next = p->p_lwpdir + 1;
513 	p->p_lwpdir_sz = 2;
514 	p->p_tidhash = p0_tidhash;
515 	p->p_tidhash_sz = 2;
516 	p0_lep.le_thread = curthread;
517 	p0_lep.le_lwpid = curthread->t_tid;
518 	p0_lep.le_start = curthread->t_start;
519 	lwp_hash_in(p, &p0_lep);
520 
521 	/*
522 	 * Initialize extended accounting.
523 	 */
524 	exacct_init();
525 
526 	/*
527 	 * Initialize threads of sysevent event channels
528 	 */
529 	sysevent_evc_thrinit();
530 
531 	/*
532 	 * main lgroup initialization
533 	 * This must be done after post_startup(), but before
534 	 * start_other_cpus()
535 	 */
536 	lgrp_main_init();
537 
538 	/*
539 	 * Perform MP initialization, if any.
540 	 */
541 	start_other_cpus(0);
542 
543 	/*
544 	 * Finish lgrp initialization after all CPUS are brought online.
545 	 */
546 	lgrp_main_mp_init();
547 
548 	/*
549 	 * After mp_init(), number of cpus are known (this is
550 	 * true for the time being, when there are actually
551 	 * hot pluggable cpus then this scheme  would not do).
552 	 * Any per cpu initialization is done here.
553 	 */
554 	kmem_mp_init();
555 	vmem_update(NULL);
556 
557 	clock_tick_init_post();
558 
559 	for (initptr = &mp_init_tbl[0]; *initptr; initptr++)
560 		(**initptr)();
561 
562 	/*
563 	 * These must be called after start_other_cpus
564 	 */
565 	pm_cfb_setup_intr();
566 #if defined(__x86)
567 	cpupm_post_startup();
568 #endif
569 
570 	/*
571 	 * Make init process; enter scheduling loop with system process.
572 	 */
573 
574 	/* create init process */
575 	if (newproc(start_init, NULL, defaultcid, 59, NULL))
576 		panic("main: unable to fork init.");
577 
578 	/* create pageout daemon */
579 	if (newproc(pageout, NULL, syscid, maxclsyspri - 1, NULL))
580 		panic("main: unable to fork pageout()");
581 
582 	/* create fsflush daemon */
583 	if (newproc(fsflush, NULL, syscid, minclsyspri, NULL))
584 		panic("main: unable to fork fsflush()");
585 
586 	/* create cluster process if we're a member of one */
587 	if (cluster_bootflags & CLUSTER_BOOTED) {
588 		if (newproc(cluster_wrapper, NULL, syscid, minclsyspri, NULL))
589 			panic("main: unable to fork cluster()");
590 	}
591 
592 	/*
593 	 * Create system threads (threads are associated with p0)
594 	 */
595 
596 	/* create module uninstall daemon */
597 	/* BugID 1132273. If swapping over NFS need a bigger stack */
598 	(void) thread_create(NULL, 0, (void (*)())mod_uninstall_daemon,
599 	    NULL, 0, &p0, TS_RUN, minclsyspri);
600 
601 	(void) thread_create(NULL, 0, seg_pasync_thread,
602 	    NULL, 0, &p0, TS_RUN, minclsyspri);
603 
604 	pid_setmin();
605 
606 	bcopy("sched", PTOU(curproc)->u_psargs, 6);
607 	bcopy("sched", PTOU(curproc)->u_comm, 5);
608 	sched();
609 	/* NOTREACHED */
610 }
611