xref: /illumos-gate/usr/src/cmd/init/init.c (revision c2a7bee5)
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 /*
23  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
28 /*	  All Rights Reserved  	*/
29 
30 /*
31  * University Copyright- Copyright (c) 1982, 1986, 1988
32  * The Regents of the University of California
33  * All Rights Reserved
34  *
35  * University Acknowledgment- Portions of this document are derived from
36  * software developed by the University of California, Berkeley, and its
37  * contributors.
38  */
39 
40 #pragma ident	"%Z%%M%	%I%	%E% SMI"
41 
42 /*
43  * init(1M) is the general process spawning program.  Its primary job is to
44  * start and restart svc.startd for smf(5).  For backwards-compatibility it also
45  * spawns and respawns processes according to /etc/inittab and the current
46  * run-level.  It reads /etc/default/inittab for general configuration.
47  *
48  * To change run-levels the system administrator runs init from the command
49  * line with a level name.  init signals svc.startd via libscf and directs the
50  * zone's init (pid 1 in the global zone) what to do by sending it a signal;
51  * these signal numbers are commonly refered to in the code as 'states'.  Valid
52  * run-levels are [sS0123456].  Additionally, init can be given directives
53  * [qQabc], which indicate actions to be taken pertaining to /etc/inittab.
54  *
55  * When init processes inittab entries, it finds processes that are to be
56  * spawned at various run-levels.  inittab contains the set of the levels for
57  * which each inittab entry is valid.
58  *
59  * State File and Restartability
60  *   Premature exit by init(1M) is handled as a special case by the kernel:
61  *   init(1M) will be immediately re-executed, retaining its original PID.  (PID
62  *   1 in the global zone.)  To track the processes it has previously spawned,
63  *   as well as other mutable state, init(1M) regularly updates a state file
64  *   such that its subsequent invocations have knowledge of its various
65  *   dependent processes and duties.
66  *
67  * Process Contracts
68  *   We start svc.startd(1M) in a contract and transfer inherited contracts when
69  *   restarting it.  Everything else is started using the legacy contract
70  *   template, and the created contracts are abandoned when they become empty.
71  *
72  * utmpx Entry Handling
73  *   Because init(1M) no longer governs the startup process, its knowledge of
74  *   when utmpx becomes writable is indirect.  However, spawned processes
75  *   expect to be constructed with valid utmpx entries.  As a result, attempts
76  *   to write normal entries will be retried until successful.
77  *
78  * Maintenance Mode
79  *   In certain failure scenarios, init(1M) will enter a maintenance mode, in
80  *   which it invokes sulogin(1M) to allow the operator an opportunity to
81  *   repair the system.  Normally, this operation is performed as a
82  *   fork(2)-exec(2)-waitpid(3C) sequence with the parent waiting for repair or
83  *   diagnosis to be completed.  In the cases that fork(2) requests themselves
84  *   fail, init(1M) will directly execute sulogin(1M), and allow the kernel to
85  *   restart init(1M) on exit from the operator session.
86  *
87  *   One scenario where init(1M) enters its maintenance mode is when
88  *   svc.startd(1M) begins to fail rapidly, defined as when the average time
89  *   between recent failures drops below a given threshold.
90  */
91 
92 #include <sys/contract/process.h>
93 #include <sys/ctfs.h>
94 #include <sys/stat.h>
95 #include <sys/statvfs.h>
96 #include <sys/stropts.h>
97 #include <sys/systeminfo.h>
98 #include <sys/time.h>
99 #include <sys/termios.h>
100 #include <sys/tty.h>
101 #include <sys/types.h>
102 #include <sys/utsname.h>
103 
104 #include <bsm/adt_event.h>
105 #include <bsm/libbsm.h>
106 #include <security/pam_appl.h>
107 
108 #include <assert.h>
109 #include <ctype.h>
110 #include <dirent.h>
111 #include <errno.h>
112 #include <fcntl.h>
113 #include <libcontract.h>
114 #include <libcontract_priv.h>
115 #include <libintl.h>
116 #include <libscf.h>
117 #include <libscf_priv.h>
118 #include <poll.h>
119 #include <procfs.h>
120 #include <signal.h>
121 #include <stdarg.h>
122 #include <stdio.h>
123 #include <stdio_ext.h>
124 #include <stdlib.h>
125 #include <string.h>
126 #include <strings.h>
127 #include <syslog.h>
128 #include <time.h>
129 #include <ulimit.h>
130 #include <unistd.h>
131 #include <utmpx.h>
132 #include <wait.h>
133 #include <zone.h>
134 #include <ucontext.h>
135 
136 #undef	sleep
137 
138 #define	fioctl(p, sptr, cmd)	ioctl(fileno(p), sptr, cmd)
139 #define	min(a, b)		(((a) < (b)) ? (a) : (b))
140 
141 #define	TRUE	1
142 #define	FALSE	0
143 #define	FAILURE	-1
144 
145 #define	UT_LINE_SZ	32	/* Size of a utmpx ut_line field */
146 
147 /*
148  * SLEEPTIME	The number of seconds "init" sleeps between wakeups if
149  *		nothing else requires this "init" wakeup.
150  */
151 #define	SLEEPTIME	(5 * 60)
152 
153 /*
154  * MAXCMDL	The maximum length of a command string in inittab.
155  */
156 #define	MAXCMDL	512
157 
158 /*
159  * EXEC		The length of the prefix string added to all comamnds
160  *		found in inittab.
161  */
162 #define	EXEC	(sizeof ("exec ") - 1)
163 
164 /*
165  * TWARN	The amount of time between warning signal, SIGTERM,
166  *		and the fatal kill signal, SIGKILL.
167  */
168 #define	TWARN	5
169 
170 #define	id_eq(x, y)	((x[0] == y[0] && x[1] == y[1] && x[2] == y[2] &&\
171 			x[3] == y[3]) ? TRUE : FALSE)
172 
173 /*
174  * The kernel's default umask is 022 these days; since some processes inherit
175  * their umask from init, init will set it from CMASK in /etc/default/init.
176  * init gets the default umask from the kernel, it sets it to 022 whenever
177  * it wants to create a file and reverts to CMASK afterwards.
178  */
179 
180 static int cmask;
181 
182 /*
183  * The following definitions, concluding with the 'lvls' array, provide a
184  * common mapping between level-name (like 'S'), signal number (state),
185  * run-level mask, and specific properties associated with a run-level.
186  * This array should be accessed using the routines lvlname_to_state(),
187  * lvlname_to_mask(), state_to_mask(), and state_to_flags().
188  */
189 
190 /*
191  * Correspondence of signals to init actions.
192  */
193 #define	LVLQ		SIGHUP
194 #define	LVL0		SIGINT
195 #define	LVL1		SIGQUIT
196 #define	LVL2		SIGILL
197 #define	LVL3		SIGTRAP
198 #define	LVL4		SIGIOT
199 #define	LVL5		SIGEMT
200 #define	LVL6		SIGFPE
201 #define	SINGLE_USER	SIGBUS
202 #define	LVLa		SIGSEGV
203 #define	LVLb		SIGSYS
204 #define	LVLc		SIGPIPE
205 
206 /*
207  * Bit Mask for each level.  Used to determine legal levels.
208  */
209 #define	MASK0	0x0001
210 #define	MASK1	0x0002
211 #define	MASK2	0x0004
212 #define	MASK3	0x0008
213 #define	MASK4	0x0010
214 #define	MASK5	0x0020
215 #define	MASK6	0x0040
216 #define	MASKSU	0x0080
217 #define	MASKa	0x0100
218 #define	MASKb	0x0200
219 #define	MASKc	0x0400
220 
221 #define	MASK_NUMERIC (MASK0 | MASK1 | MASK2 | MASK3 | MASK4 | MASK5 | MASK6)
222 #define	MASK_abc (MASKa | MASKb | MASKc)
223 
224 /*
225  * Flags to indicate properties of various states.
226  */
227 #define	LSEL_RUNLEVEL	0x0001	/* runlevels you can transition to */
228 
229 typedef struct lvl {
230 	int	lvl_state;
231 	int	lvl_mask;
232 	char	lvl_name;
233 	int	lvl_flags;
234 } lvl_t;
235 
236 static lvl_t lvls[] = {
237 	{ LVLQ,		0,	'Q', 0					},
238 	{ LVLQ,		0,	'q', 0					},
239 	{ LVL0,		MASK0,	'0', LSEL_RUNLEVEL			},
240 	{ LVL1, 	MASK1,	'1', LSEL_RUNLEVEL			},
241 	{ LVL2, 	MASK2,	'2', LSEL_RUNLEVEL			},
242 	{ LVL3, 	MASK3,	'3', LSEL_RUNLEVEL			},
243 	{ LVL4, 	MASK4,	'4', LSEL_RUNLEVEL			},
244 	{ LVL5, 	MASK5,	'5', LSEL_RUNLEVEL			},
245 	{ LVL6, 	MASK6, 	'6', LSEL_RUNLEVEL			},
246 	{ SINGLE_USER, 	MASKSU, 'S', LSEL_RUNLEVEL			},
247 	{ SINGLE_USER, 	MASKSU, 's', LSEL_RUNLEVEL			},
248 	{ LVLa,		MASKa,	'a', 0					},
249 	{ LVLb,		MASKb,	'b', 0					},
250 	{ LVLc,		MASKc,	'c', 0					}
251 };
252 
253 #define	LVL_NELEMS (sizeof (lvls) / sizeof (lvl_t))
254 
255 /*
256  * Legal action field values.
257  */
258 #define	OFF		0	/* Kill process if on, else ignore */
259 #define	RESPAWN		1	/* Continuously restart process when it dies */
260 #define	ONDEMAND	RESPAWN	/* Respawn for a, b, c type processes */
261 #define	ONCE		2	/* Start process, do not respawn when dead */
262 #define	WAIT		3	/* Perform once and wait to complete */
263 #define	BOOT		4	/* Start at boot time only */
264 #define	BOOTWAIT	5	/* Start at boot time and wait to complete */
265 #define	POWERFAIL	6	/* Start on powerfail */
266 #define	POWERWAIT	7	/* Start and wait for complete on powerfail */
267 #define	INITDEFAULT	8	/* Default level "init" should start at */
268 #define	SYSINIT		9	/* Actions performed before init speaks */
269 
270 #define	M_OFF		0001
271 #define	M_RESPAWN	0002
272 #define	M_ONDEMAND	M_RESPAWN
273 #define	M_ONCE		0004
274 #define	M_WAIT		0010
275 #define	M_BOOT		0020
276 #define	M_BOOTWAIT	0040
277 #define	M_PF		0100
278 #define	M_PWAIT		0200
279 #define	M_INITDEFAULT	0400
280 #define	M_SYSINIT	01000
281 
282 /* States for the inittab parser in getcmd(). */
283 #define	ID	1
284 #define	LEVELS	2
285 #define	ACTION	3
286 #define	COMMAND	4
287 #define	COMMENT	5
288 
289 /*
290  * Init can be in any of three main states, "normal" mode where it is
291  * processing entries for the lines file in a normal fashion, "boot" mode,
292  * where it is only interested in the boot actions, and "powerfail" mode,
293  * where it is only interested in powerfail related actions. The following
294  * masks declare the legal actions for each mode.
295  */
296 #define	NORMAL_MODES	(M_OFF | M_RESPAWN | M_ONCE | M_WAIT)
297 #define	BOOT_MODES	(M_BOOT | M_BOOTWAIT)
298 #define	PF_MODES	(M_PF | M_PWAIT)
299 
300 struct PROC_TABLE {
301 	char	p_id[4];	/* Four letter unique id of process */
302 	pid_t	p_pid;		/* Process id */
303 	short	p_count;	/* How many respawns of this command in */
304 				/*   the current series */
305 	long	p_time;		/* Start time for a series of respawns */
306 	short	p_flags;
307 	short	p_exit;		/* Exit status of a process which died */
308 };
309 
310 /*
311  * Flags for the "p_flags" word of a PROC_TABLE entry:
312  *
313  *	OCCUPIED	This slot in init's proc table is in use.
314  *
315  *	LIVING		Process is alive.
316  *
317  *	NOCLEANUP	efork() is not allowed to cleanup this entry even
318  *			if process is dead.
319  *
320  *	NAMED		This process has a name, i.e. came from inittab.
321  *
322  *	DEMANDREQUEST	Process started by a "telinit [abc]" command.  Processes
323  *			formed this way are respawnable and immune to level
324  *			changes as long as their entry exists in inittab.
325  *
326  *	TOUCHED		Flag used by remv() to determine whether it has looked
327  *			at an entry while checking for processes to be killed.
328  *
329  *	WARNED		Flag used by remv() to mark processes that have been
330  *			sent the SIGTERM signal.  If they don't die in 5
331  *			seconds, they are sent the SIGKILL signal.
332  *
333  *	KILLED		Flag used by remv() to mark procs that have been sent
334  *			the SIGTERM and SIGKILL signals.
335  *
336  *	PF_MASK		Bitwise or of legal flags, for sanity checking.
337  */
338 #define	OCCUPIED	01
339 #define	LIVING		02
340 #define	NOCLEANUP	04
341 #define	NAMED		010
342 #define	DEMANDREQUEST	020
343 #define	TOUCHED		040
344 #define	WARNED		0100
345 #define	KILLED		0200
346 #define	PF_MASK		0377
347 
348 /*
349  * Respawn limits for processes that are to be respawned:
350  *
351  *	SPAWN_INTERVAL	The number of seconds over which "init" will try to
352  *			respawn a process SPAWN_LIMIT times before it gets mad.
353  *
354  *	SPAWN_LIMIT	The number of respawns "init" will attempt in
355  *			SPAWN_INTERVAL seconds before it generates an
356  *			error message and inhibits further tries for
357  *			INHIBIT seconds.
358  *
359  *	INHIBIT		The number of seconds "init" ignores an entry it had
360  *			trouble spawning unless a "telinit Q" is received.
361  */
362 
363 #define	SPAWN_INTERVAL	(2*60)
364 #define	SPAWN_LIMIT	10
365 #define	INHIBIT		(5*60)
366 
367 /*
368  * The maximum number of decimal digits for an id_t.  (ceil(log10 (max_id)))
369  */
370 #define	ID_MAX_STR_LEN	10
371 
372 #define	NULLPROC	((struct PROC_TABLE *)(0))
373 #define	NO_ROOM		((struct PROC_TABLE *)(FAILURE))
374 
375 struct CMD_LINE {
376 	char c_id[4];	/* Four letter unique id of process to be */
377 			/*   affected by action */
378 	short c_levels;	/* Mask of legal levels for process */
379 	short c_action;	/* Mask for type of action required */
380 	char *c_command; /* Pointer to init command */
381 };
382 
383 struct	pidrec {
384 	int	pd_type;	/* Command type */
385 	pid_t	pd_pid;		/* pid to add or remove */
386 };
387 
388 /*
389  * pd_type's
390  */
391 #define	ADDPID	1
392 #define	REMPID	2
393 
394 static struct	pidlist {
395 	pid_t	pl_pid;		/* pid to watch for */
396 	int	pl_dflag;	/* Flag indicating SIGCLD from this pid */
397 	short	pl_exit;	/* Exit status of proc */
398 	struct	pidlist	*pl_next; /* Next in list */
399 } *Plhead, *Plfree;
400 
401 /*
402  * The following structure contains a set of modes for /dev/syscon
403  * and should match the default contents of /etc/ioctl.syscon.
404  */
405 static struct termios	dflt_termios = {
406 	BRKINT|ICRNL|IXON|IMAXBEL,			/* iflag */
407 	OPOST|ONLCR|TAB3,				/* oflag */
408 	CS8|CREAD|B9600,				/* cflag */
409 	ISIG|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE|IEXTEN, /* lflag */
410 	CINTR, CQUIT, CERASE, CKILL, CEOF, 0, 0, 0,
411 	0, 0, 0, 0, 0, 0, 0, 0,
412 	0, 0, 0
413 };
414 
415 static struct termios	stored_syscon_termios;
416 static int		write_ioctl = 0;	/* Rewrite /etc/ioctl.syscon */
417 
418 static union WAKEUP {
419 	struct WAKEFLAGS {
420 		unsigned w_usersignal : 1;	/* User sent signal to "init" */
421 		unsigned w_childdeath : 1;	/* An "init" child died */
422 		unsigned w_powerhit : 1;	/* OS experienced powerfail */
423 	}	w_flags;
424 	int w_mask;
425 } wakeup;
426 
427 
428 struct init_state {
429 	int			ist_runlevel;
430 	int			ist_num_proc;
431 	int			ist_utmpx_ok;
432 	struct PROC_TABLE	ist_proc_table[1];
433 };
434 
435 #define	cur_state	(g_state->ist_runlevel)
436 #define	num_proc	(g_state->ist_num_proc)
437 #define	proc_table	(g_state->ist_proc_table)
438 #define	utmpx_ok	(g_state->ist_utmpx_ok)
439 
440 /* Contract cookies. */
441 #define	ORDINARY_COOKIE		0
442 #define	STARTD_COOKIE		1
443 
444 
445 #ifndef NDEBUG
446 #define	bad_error(func, err)	{					\
447 	(void) fprintf(stderr, "%s:%d: %s() failed with unexpected "	\
448 	    "error %d.  Aborting.\n", __FILE__, __LINE__, (func), (err)); \
449 	abort();							\
450 }
451 #else
452 #define	bad_error(func, err)	abort()
453 #endif
454 
455 
456 /*
457  * Useful file and device names.
458  */
459 static char *CONSOLE	  = "/dev/console";	/* Real system console */
460 static char *INITPIPE_DIR = "/etc";
461 static char *INITPIPE	  = "/etc/initpipe";
462 
463 #define	INIT_STATE_DIR "/etc/svc/volatile"
464 static const char * const init_state_file = INIT_STATE_DIR "/init.state";
465 static const char * const init_next_state_file =
466 	INIT_STATE_DIR "/init-next.state";
467 
468 static const int init_num_proc = 20;	/* Initial size of process table. */
469 
470 static char *UTMPX	 = UTMPX_FILE;		/* Snapshot record file */
471 static char *WTMPX	 = WTMPX_FILE;		/* Long term record file */
472 static char *INITTAB	 = "/etc/inittab";	/* Script file for "init" */
473 static char *SYSTTY	 = "/dev/systty";	/* System Console */
474 static char *SYSCON	 = "/dev/syscon";	/* Virtual System console */
475 static char *IOCTLSYSCON = "/etc/ioctl.syscon";	/* Last syscon modes */
476 static char *ENVFILE	 = "/etc/default/init";	/* Default env. */
477 static char *SU	= "/etc/sulogin";	/* Super-user program for single user */
478 static char *SH	= "/sbin/sh";		/* Standard shell */
479 
480 /*
481  * Default Path.  /sbin is included in path only during sysinit phase
482  */
483 #define	DEF_PATH	"PATH=/usr/sbin:/usr/bin"
484 #define	INIT_PATH	"PATH=/sbin:/usr/sbin:/usr/bin"
485 
486 static int	prior_state;
487 static int	prev_state;	/* State "init" was in last time it woke */
488 static int	new_state;	/* State user wants "init" to go to. */
489 static int	op_modes = BOOT_MODES; /* Current state of "init" */
490 static int	Gchild = 0;	/* Flag to indicate "godchild" died, set in */
491 				/*   childeath() and cleared in cleanaux() */
492 static int	Pfd = -1;	/* fd to receive pids thru */
493 static unsigned int	spawncnt, pausecnt;
494 static int	rsflag;		/* Set if a respawn has taken place */
495 static volatile int time_up;	/* Flag set to TRUE by the alarm interrupt */
496 				/* routine each time an alarm interrupt */
497 				/* takes place. */
498 static int	sflg = 0;	/* Set if we were booted -s to single user */
499 static int	rflg = 0;	/* Set if booted -r, reconfigure devices */
500 static int	bflg = 0;	/* Set if booted -b, don't run rc scripts */
501 static pid_t	init_pid;	/* PID of "one true" init for current zone */
502 
503 static struct init_state *g_state = NULL;
504 static size_t	g_state_sz;
505 static int	booting = 1;	/* Set while we're booting. */
506 
507 /*
508  * Array for default global environment.
509  */
510 #define	MAXENVENT	24	/* Max number of default env variables + 1 */
511 				/* init can use three itself, so this leaves */
512 				/* 20 for the administrator in ENVFILE. */
513 static char	*glob_envp[MAXENVENT];	/* Array of environment strings */
514 static int	glob_envn;		/* Number of environment strings */
515 
516 
517 static struct pollfd	poll_fds[1];
518 static int		poll_nfds = 0;	/* poll_fds is uninitialized */
519 
520 static int	legacy_tmpl = -1;	/* fd for legacy contract template */
521 static int	startd_tmpl = -1;	/* fd for svc.startd's template */
522 
523 static char	startd_cline[256] = "";	/* svc.startd's command line */
524 static int	do_restart_startd = 1;	/* Whether to restart svc.startd. */
525 static char	*smf_options = NULL;	/* Options to give to startd. */
526 static int	smf_debug = 0;		/* Messages for debugging smf(5) */
527 static time_t	init_boot_time;		/* Substitute for kernel boot time. */
528 
529 #define	NSTARTD_FAILURE_TIMES	3		/* trigger after 3 failures */
530 #define	STARTD_FAILURE_RATE_NS	5000000000LL	/* 1 failure/5 seconds */
531 
532 static hrtime_t	startd_failure_time[NSTARTD_FAILURE_TIMES];
533 static uint_t	startd_failure_index;
534 
535 
536 static char	*prog_name(char *);
537 static int	state_to_mask(int);
538 static int	lvlname_to_mask(char, int *);
539 static void	lscf_set_runlevel(char);
540 static int	state_to_flags(int);
541 static char	state_to_name(int);
542 static int	lvlname_to_state(char);
543 static int	getcmd(struct CMD_LINE *, char *);
544 static int	realcon();
545 static int	spawn_processes();
546 static int	get_ioctl_syscon();
547 static int	account(short, struct PROC_TABLE *, char *);
548 static void	alarmclk();
549 static void	childeath(int);
550 static void	cleanaux();
551 static void	clearent(pid_t, short);
552 static void	console(boolean_t, char *, ...);
553 static void	init_signals(void);
554 static void	setup_pipe();
555 static void	killproc(pid_t);
556 static void	init_env();
557 static void	boot_init();
558 static void	powerfail();
559 static void	remv();
560 static void	write_ioctl_syscon();
561 static void	spawn(struct PROC_TABLE *, struct CMD_LINE *);
562 static void	setimer(int);
563 static void	siglvl(int, siginfo_t *, ucontext_t *);
564 static void	sigpoll(int);
565 static void	enter_maintenance(void);
566 static void	timer(int);
567 static void	userinit(int, char **);
568 static void	notify_pam_dead(struct utmpx *);
569 static long	waitproc(struct PROC_TABLE *);
570 static struct PROC_TABLE *efork(int, struct PROC_TABLE *, int);
571 static struct PROC_TABLE *findpslot(struct CMD_LINE *);
572 static void	increase_proc_table_size();
573 static void	st_init();
574 static void	st_write();
575 static void	contracts_init();
576 static void	contract_event(struct pollfd *);
577 static int	startd_run(const char *, int, ctid_t);
578 static void	startd_record_failure();
579 static int	startd_failure_rate_critical();
580 static char	*audit_boot_msg();
581 static int	audit_put_record(int, int, char *);
582 static void	update_boot_archive(int new_state);
583 
584 int
585 main(int argc, char *argv[])
586 {
587 	int	chg_lvl_flag = FALSE, print_banner = FALSE;
588 	int	may_need_audit = 1;
589 	int	c;
590 	char	*msg;
591 
592 	/* Get a timestamp for use as boot time, if needed. */
593 	(void) time(&init_boot_time);
594 
595 	/* Get the default umask */
596 	cmask = umask(022);
597 	(void) umask(cmask);
598 
599 	/* Parse the arguments to init. Check for single user */
600 	opterr = 0;
601 	while ((c = getopt(argc, argv, "brsm:")) != EOF) {
602 		switch (c) {
603 		case 'b':
604 			rflg = 0;
605 			bflg = 1;
606 			if (!sflg)
607 				sflg++;
608 			break;
609 		case 'r':
610 			bflg = 0;
611 			rflg++;
612 			break;
613 		case 's':
614 			if (!bflg)
615 				sflg++;
616 			break;
617 		case 'm':
618 			smf_options = optarg;
619 			smf_debug = (strstr(smf_options, "debug") != NULL);
620 			break;
621 		}
622 	}
623 
624 	/*
625 	 * Determine if we are the main init, or a user invoked init, whose job
626 	 * it is to inform init to change levels or perform some other action.
627 	 */
628 	if (zone_getattr(getzoneid(), ZONE_ATTR_INITPID, &init_pid,
629 	    sizeof (init_pid)) != sizeof (init_pid)) {
630 		(void) fprintf(stderr, "could not get pid for init\n");
631 		return (1);
632 	}
633 
634 	/*
635 	 * If this PID is not the same as the "true" init for the zone, then we
636 	 * must be in 'user' mode.
637 	 */
638 	if (getpid() != init_pid) {
639 		userinit(argc, argv);
640 	}
641 
642 	if (getzoneid() != GLOBAL_ZONEID) {
643 		print_banner = TRUE;
644 	}
645 
646 	/*
647 	 * Initialize state (and set "booting").
648 	 */
649 	st_init();
650 
651 	if (booting && print_banner) {
652 		struct utsname un;
653 		char buf[BUFSIZ], *isa;
654 		long ret;
655 		int bits = 32;
656 
657 		/*
658 		 * We want to print the boot banner as soon as
659 		 * possible.  In the global zone, the kernel does it,
660 		 * but we do not have that luxury in non-global zones,
661 		 * so we will print it here.
662 		 */
663 		(void) uname(&un);
664 		ret = sysinfo(SI_ISALIST, buf, sizeof (buf));
665 		if (ret != -1L && ret <= sizeof (buf)) {
666 			for (isa = strtok(buf, " "); isa;
667 			    isa = strtok(NULL, " ")) {
668 				if (strcmp(isa, "sparcv9") == 0 ||
669 				    strcmp(isa, "amd64") == 0) {
670 					bits = 64;
671 					break;
672 				}
673 			}
674 		}
675 
676 		console(B_FALSE,
677 		    "\n\n%s Release %s Version %s %d-bit\r\n",
678 		    un.sysname, un.release, un.version, bits);
679 		console(B_FALSE,
680 		    "Copyright 1983-2006 Sun Microsystems, Inc. "
681 		    " All rights reserved.\r\n");
682 		console(B_FALSE,
683 		    "Use is subject to license terms.\r\n");
684 	}
685 
686 	/*
687 	 * Get the ioctl settings for /dev/syscon from /etc/ioctl.syscon
688 	 * so that it can be brought up in the state it was in when the
689 	 * system went down; or set to defaults if ioctl.syscon isn't
690 	 * valid.
691 	 *
692 	 * This needs to be done even if we're restarting so reset_modes()
693 	 * will work in case we need to go down to single user mode.
694 	 */
695 	write_ioctl = get_ioctl_syscon();
696 
697 	/*
698 	 * Set up all signals to be caught or ignored as appropriate.
699 	 */
700 	init_signals();
701 
702 	/* Load glob_envp from ENVFILE. */
703 	init_env();
704 
705 	contracts_init();
706 
707 	if (!booting) {
708 		/* cur_state should have been read in. */
709 
710 		op_modes = NORMAL_MODES;
711 
712 		/* Rewrite the ioctl file if it was bad. */
713 		if (write_ioctl)
714 			write_ioctl_syscon();
715 	} else {
716 		/*
717 		 * It's fine to boot up with state as zero, because
718 		 * startd will later tell us the real state.
719 		 */
720 		cur_state = 0;
721 		op_modes = BOOT_MODES;
722 
723 		boot_init();
724 	}
725 
726 	prev_state = prior_state = cur_state;
727 
728 	/*
729 	 * Here is the beginning of the main process loop.
730 	 */
731 	for (;;) {
732 		if (Pfd < 0)
733 			setup_pipe();
734 
735 		/*
736 		 * Clean up any accounting records for dead "godchildren".
737 		 */
738 		if (Gchild)
739 			cleanaux();
740 
741 		/*
742 		 * If in "normal" mode, check all living processes and initiate
743 		 * kill sequence on those that should not be there anymore.
744 		 */
745 		if (op_modes == NORMAL_MODES && cur_state != LVLa &&
746 		    cur_state != LVLb && cur_state != LVLc)
747 			remv();
748 
749 		/*
750 		 * If a change in run levels is the reason we awoke, now do
751 		 * the accounting to report the change in the utmp file.
752 		 * Also report the change on the system console.
753 		 */
754 		if (chg_lvl_flag) {
755 			chg_lvl_flag = FALSE;
756 
757 			if (state_to_flags(cur_state) & LSEL_RUNLEVEL) {
758 				char rl = state_to_name(cur_state);
759 
760 				if (rl != -1)
761 					lscf_set_runlevel(rl);
762 			}
763 
764 			may_need_audit = 1;
765 		}
766 
767 		/*
768 		 * Scan the inittab file and spawn and respawn processes that
769 		 * should be alive in the current state. If inittab does not
770 		 * exist default to  single user mode.
771 		 */
772 		if (spawn_processes() == FAILURE) {
773 			prior_state = prev_state;
774 			cur_state = SINGLE_USER;
775 		}
776 
777 		/* If any respawns occurred, take note. */
778 		if (rsflag) {
779 			rsflag = 0;
780 			spawncnt++;
781 		}
782 
783 		/*
784 		 * If a powerfail signal was received during the last
785 		 * sequence, set mode to powerfail.  When spawn_processes() is
786 		 * entered the first thing it does is to check "powerhit".  If
787 		 * it is in PF_MODES then it clears "powerhit" and does
788 		 * a powerfail sequence.  If it is not in PF_MODES, then it
789 		 * puts itself in PF_MODES and then clears "powerhit".  Should
790 		 * "powerhit" get set again while spawn_processes() is working
791 		 * on a powerfail sequence, the following code  will see that
792 		 * spawn_processes() tries to execute the powerfail sequence
793 		 * again.  This guarantees that the powerfail sequence will be
794 		 * successfully completed before further processing takes
795 		 * place.
796 		 */
797 		if (wakeup.w_flags.w_powerhit) {
798 			op_modes = PF_MODES;
799 			/*
800 			 * Make sure that cur_state != prev_state so that
801 			 * ONCE and WAIT types work.
802 			 */
803 			prev_state = 0;
804 		} else if (op_modes != NORMAL_MODES) {
805 			/*
806 			 * If spawn_processes() was not just called while in
807 			 * normal mode, we set the mode to normal and it will
808 			 * be called again to check normal modes.  If we have
809 			 * just finished a powerfail sequence with prev_state
810 			 * equal to zero, we set prev_state equal to cur_state
811 			 * before the next pass through.
812 			 */
813 			if (op_modes == PF_MODES)
814 				prev_state = cur_state;
815 			op_modes = NORMAL_MODES;
816 		} else if (cur_state == LVLa || cur_state == LVLb ||
817 		    cur_state == LVLc) {
818 			/*
819 			 * If it was a change of levels that awakened us and the
820 			 * new level is one of the demand levels then reset
821 			 * cur_state to the previous state and do another scan
822 			 * to take care of the usual respawn actions.
823 			 */
824 			cur_state = prior_state;
825 			prior_state = prev_state;
826 			prev_state = cur_state;
827 		} else {
828 			prev_state = cur_state;
829 
830 			if (wakeup.w_mask == 0) {
831 				int ret;
832 
833 				if (may_need_audit && (cur_state == LVL3)) {
834 					msg = audit_boot_msg();
835 
836 					may_need_audit = 0;
837 					(void) audit_put_record(ADT_SUCCESS,
838 					    ADT_SUCCESS, msg);
839 					free(msg);
840 				}
841 
842 				/*
843 				 * "init" is finished with all actions for
844 				 * the current wakeup.
845 				 */
846 				ret = poll(poll_fds, poll_nfds,
847 				    SLEEPTIME * MILLISEC);
848 				pausecnt++;
849 				if (ret > 0)
850 					contract_event(&poll_fds[0]);
851 				else if (ret < 0 && errno != EINTR)
852 					console(B_TRUE, "poll() error: %s\n",
853 					    strerror(errno));
854 			}
855 
856 			if (wakeup.w_flags.w_usersignal) {
857 				/*
858 				 * Install the new level.  This could be a real
859 				 * change in levels  or a telinit [Q|a|b|c] or
860 				 * just a telinit to the same level at which
861 				 * we are running.
862 				 */
863 				if (new_state != cur_state) {
864 					if (new_state == LVLa ||
865 					    new_state == LVLb ||
866 					    new_state == LVLc) {
867 						prev_state = prior_state;
868 						prior_state = cur_state;
869 						cur_state = new_state;
870 					} else {
871 						prev_state = cur_state;
872 						if (cur_state >= 0)
873 							prior_state = cur_state;
874 						cur_state = new_state;
875 						chg_lvl_flag = TRUE;
876 					}
877 				}
878 
879 				new_state = 0;
880 			}
881 
882 			if (wakeup.w_flags.w_powerhit)
883 				op_modes = PF_MODES;
884 
885 			/*
886 			 * Clear all wakeup reasons.
887 			 */
888 			wakeup.w_mask = 0;
889 		}
890 	}
891 
892 	/*NOTREACHED*/
893 }
894 
895 static void
896 update_boot_archive(int new_state)
897 {
898 	if (new_state != LVL0 && new_state != LVL5 && new_state != LVL6)
899 		return;
900 
901 	if (getzoneid() != GLOBAL_ZONEID)
902 		return;
903 
904 	(void) system("/sbin/bootadm -a update_all");
905 }
906 
907 /*
908  * void enter_maintenance()
909  *   A simple invocation of sulogin(1M), with no baggage, in the case that we
910  *   are unable to activate svc.startd(1M).  We fork; the child runs sulogin;
911  *   we wait for it to exit.
912  */
913 static void
914 enter_maintenance()
915 {
916 	struct PROC_TABLE	*su_process;
917 
918 	console(B_FALSE, "Requesting maintenance mode\n"
919 	    "(See /lib/svc/share/README for additional information.)\n");
920 	(void) sigset(SIGCLD, SIG_DFL);
921 	while ((su_process = efork(M_OFF, NULLPROC, NOCLEANUP)) == NO_ROOM)
922 		(void) pause();
923 	(void) sigset(SIGCLD, childeath);
924 	if (su_process == NULLPROC) {
925 		int fd;
926 
927 		(void) fclose(stdin);
928 		(void) fclose(stdout);
929 		(void) fclose(stderr);
930 		closefrom(0);
931 
932 		fd = open(SYSCON, O_RDWR | O_NOCTTY);
933 		if (fd >= 0) {
934 			(void) dup2(fd, 1);
935 			(void) dup2(fd, 2);
936 		} else {
937 			/*
938 			 * Need to issue an error message somewhere.
939 			 */
940 			syslog(LOG_CRIT, "init[%d]: cannot open %s; %s\n",
941 			    getpid(), SYSCON, strerror(errno));
942 		}
943 
944 		/*
945 		 * Execute the "su" program.
946 		 */
947 		(void) execle(SU, SU, "-", (char *)0, glob_envp);
948 		console(B_TRUE, "execle of %s failed: %s\n", SU,
949 		    strerror(errno));
950 		timer(5);
951 		exit(1);
952 	}
953 
954 	/*
955 	 * If we are the parent, wait around for the child to die
956 	 * or for "init" to be signaled to change levels.
957 	 */
958 	while (waitproc(su_process) == FAILURE) {
959 		/*
960 		 * All other reasons for waking are ignored when in
961 		 * single-user mode.  The only child we are interested
962 		 * in is being waited for explicitly by waitproc().
963 		 */
964 		wakeup.w_mask = 0;
965 	}
966 }
967 
968 /*
969  * remv() scans through "proc_table" and performs cleanup.  If
970  * there is a process in the table, which shouldn't be here at
971  * the current run level, then remv() kills the process.
972  */
973 static void
974 remv()
975 {
976 	struct PROC_TABLE	*process;
977 	struct CMD_LINE		cmd;
978 	char			cmd_string[MAXCMDL];
979 	int			change_level;
980 
981 	change_level = (cur_state != prev_state ? TRUE : FALSE);
982 
983 	/*
984 	 * Clear the TOUCHED flag on all entries so that when we have
985 	 * finished scanning inittab, we will be able to tell if we
986 	 * have any processes for which there is no entry in inittab.
987 	 */
988 	for (process = proc_table;
989 	    (process < proc_table + num_proc); process++) {
990 		process->p_flags &= ~TOUCHED;
991 	}
992 
993 	/*
994 	 * Scan all inittab entries.
995 	 */
996 	while (getcmd(&cmd, &cmd_string[0]) == TRUE) {
997 		/* Scan for process which goes with this entry in inittab. */
998 		for (process = proc_table;
999 		    (process < proc_table + num_proc); process++) {
1000 			if ((process->p_flags & OCCUPIED) == 0 ||
1001 			    !id_eq(process->p_id, cmd.c_id))
1002 				continue;
1003 
1004 			/*
1005 			 * This slot contains the process we are looking for.
1006 			 */
1007 
1008 			/*
1009 			 * Is the cur_state SINGLE_USER or is this process
1010 			 * marked as "off" or was this proc started by some
1011 			 * mechanism other than LVL{a|b|c} and the current level
1012 			 * does not support this process?
1013 			 */
1014 			if (cur_state == SINGLE_USER ||
1015 			    cmd.c_action == M_OFF ||
1016 			    ((cmd.c_levels & state_to_mask(cur_state)) == 0 &&
1017 			    (process->p_flags & DEMANDREQUEST) == 0)) {
1018 				if (process->p_flags & LIVING) {
1019 					/*
1020 					 * Touch this entry so we know we have
1021 					 * treated it.  Note that procs which
1022 					 * are already dead at this point and
1023 					 * should not be restarted are left
1024 					 * untouched.  This causes their slot to
1025 					 * be freed later after dead accounting
1026 					 * is done.
1027 					 */
1028 					process->p_flags |= TOUCHED;
1029 
1030 					if ((process->p_flags & KILLED) == 0) {
1031 						if (change_level) {
1032 							process->p_flags
1033 							    |= WARNED;
1034 							(void) kill(
1035 							    process->p_pid,
1036 							    SIGTERM);
1037 						} else {
1038 							/*
1039 							 * Fork a killing proc
1040 							 * so "init" can
1041 							 * continue without
1042 							 * having to pause for
1043 							 * TWARN seconds.
1044 							 */
1045 							killproc(
1046 							    process->p_pid);
1047 						}
1048 						process->p_flags |= KILLED;
1049 					}
1050 				}
1051 			} else {
1052 				/*
1053 				 * Process can exist at current level.  If it is
1054 				 * still alive or a DEMANDREQUEST we touch it so
1055 				 * it will be left alone.  Otherwise we leave it
1056 				 * untouched so it will be accounted for and
1057 				 * cleaned up later in remv().  Dead
1058 				 * DEMANDREQUESTs will be accounted but not
1059 				 * freed.
1060 				 */
1061 				if (process->p_flags &
1062 				    (LIVING|NOCLEANUP|DEMANDREQUEST))
1063 					process->p_flags |= TOUCHED;
1064 			}
1065 
1066 			break;
1067 		}
1068 	}
1069 
1070 	st_write();
1071 
1072 	/*
1073 	 * If this was a change of levels call, scan through the
1074 	 * process table for processes that were warned to die.  If any
1075 	 * are found that haven't left yet, sleep for TWARN seconds and
1076 	 * then send final terminations to any that haven't died yet.
1077 	 */
1078 	if (change_level) {
1079 
1080 		/*
1081 		 * Set the alarm for TWARN seconds on the assumption
1082 		 * that there will be some that need to be waited for.
1083 		 * This won't harm anything except we are guaranteed to
1084 		 * wakeup in TWARN seconds whether we need to or not.
1085 		 */
1086 		setimer(TWARN);
1087 
1088 		/*
1089 		 * Scan for processes which should be dying.  We hope they
1090 		 * will die without having to be sent a SIGKILL signal.
1091 		 */
1092 		for (process = proc_table;
1093 		    (process < proc_table + num_proc); process++) {
1094 			/*
1095 			 * If this process should die, hasn't yet, and the
1096 			 * TWARN time hasn't expired yet, wait for process
1097 			 * to die or for timer to expire.
1098 			 */
1099 			while (time_up == FALSE &&
1100 			    (process->p_flags & (WARNED|LIVING|OCCUPIED)) ==
1101 			    (WARNED|LIVING|OCCUPIED))
1102 				(void) pause();
1103 
1104 			if (time_up == TRUE)
1105 				break;
1106 		}
1107 
1108 		/*
1109 		 * If we reached the end of the table without the timer
1110 		 * expiring, then there are no procs which will have to be
1111 		 * sent the SIGKILL signal.  If the timer has expired, then
1112 		 * it is necessary to scan the table again and send signals
1113 		 * to all processes which aren't going away nicely.
1114 		 */
1115 		if (time_up == TRUE) {
1116 			for (process = proc_table;
1117 			    (process < proc_table + num_proc); process++) {
1118 				if ((process->p_flags &
1119 				    (WARNED|LIVING|OCCUPIED)) ==
1120 				    (WARNED|LIVING|OCCUPIED))
1121 					(void) kill(process->p_pid, SIGKILL);
1122 			}
1123 		}
1124 		setimer(0);
1125 	}
1126 
1127 	/*
1128 	 * Rescan the proc_table for two kinds of entry, those marked LIVING,
1129 	 * NAMED, which don't have an entry in inittab (haven't been TOUCHED
1130 	 * by the above scanning), and haven't been sent kill signals, and
1131 	 * those entries marked not LIVING, NAMED.  The former procs are killed.
1132 	 * The latter have DEAD_PROCESS accounting done and the slot cleared.
1133 	 */
1134 	for (process = proc_table;
1135 	    (process < proc_table + num_proc); process++) {
1136 		if ((process->p_flags & (LIVING|NAMED|TOUCHED|KILLED|OCCUPIED))
1137 		    == (LIVING|NAMED|OCCUPIED)) {
1138 			killproc(process->p_pid);
1139 			process->p_flags |= KILLED;
1140 		} else if ((process->p_flags & (LIVING|NAMED|OCCUPIED)) ==
1141 		    (NAMED|OCCUPIED)) {
1142 			(void) account(DEAD_PROCESS, process, NULL);
1143 			/*
1144 			 * If this named proc hasn't been TOUCHED, then free the
1145 			 * space. It has either died of it's own accord, but
1146 			 * isn't respawnable or it was killed because it
1147 			 * shouldn't exist at this level.
1148 			 */
1149 			if ((process->p_flags & TOUCHED) == 0)
1150 				process->p_flags = 0;
1151 		}
1152 	}
1153 
1154 	st_write();
1155 }
1156 
1157 /*
1158  * Extract the svc.startd command line and whether to restart it from its
1159  * inittab entry.
1160  */
1161 /*ARGSUSED*/
1162 static void
1163 process_startd_line(struct CMD_LINE *cmd, char *cmd_string)
1164 {
1165 	size_t sz;
1166 
1167 	/* Save the command line. */
1168 	if (sflg || rflg) {
1169 		/* Also append -r or -s. */
1170 		(void) strlcpy(startd_cline, cmd_string, sizeof (startd_cline));
1171 		(void) strlcat(startd_cline, " -", sizeof (startd_cline));
1172 		if (sflg)
1173 			sz = strlcat(startd_cline, "s", sizeof (startd_cline));
1174 		if (rflg)
1175 			sz = strlcat(startd_cline, "r", sizeof (startd_cline));
1176 	} else {
1177 		sz = strlcpy(startd_cline, cmd_string, sizeof (startd_cline));
1178 	}
1179 
1180 	if (sz >= sizeof (startd_cline)) {
1181 		console(B_TRUE,
1182 		    "svc.startd command line too long.  Ignoring.\n");
1183 		startd_cline[0] = '\0';
1184 		return;
1185 	}
1186 }
1187 
1188 /*
1189  * spawn_processes() scans inittab for entries which should be run at this
1190  * mode.  Processes which should be running but are not, are started.
1191  */
1192 static int
1193 spawn_processes()
1194 {
1195 	struct PROC_TABLE		*pp;
1196 	struct CMD_LINE			cmd;
1197 	char				cmd_string[MAXCMDL];
1198 	short				lvl_mask;
1199 	int				status;
1200 
1201 	/*
1202 	 * First check the "powerhit" flag.  If it is set, make sure the modes
1203 	 * are PF_MODES and clear the "powerhit" flag.  Avoid the possible race
1204 	 * on the "powerhit" flag by disallowing a new powerfail interrupt
1205 	 * between the test of the powerhit flag and the clearing of it.
1206 	 */
1207 	if (wakeup.w_flags.w_powerhit) {
1208 		wakeup.w_flags.w_powerhit = 0;
1209 		op_modes = PF_MODES;
1210 	}
1211 	lvl_mask = state_to_mask(cur_state);
1212 
1213 	/*
1214 	 * Scan through all the entries in inittab.
1215 	 */
1216 	while ((status = getcmd(&cmd, &cmd_string[0])) == TRUE) {
1217 		if (id_eq(cmd.c_id, "smf")) {
1218 			process_startd_line(&cmd, cmd_string);
1219 			continue;
1220 		}
1221 
1222 retry_for_proc_slot:
1223 
1224 		/*
1225 		 * Find out if there is a process slot for this entry already.
1226 		 */
1227 		if ((pp = findpslot(&cmd)) == NULLPROC) {
1228 			/*
1229 			 * we've run out of proc table entries
1230 			 * increase proc_table.
1231 			 */
1232 			increase_proc_table_size();
1233 
1234 			/*
1235 			 * Retry now as we have an empty proc slot.
1236 			 * In case increase_proc_table_size() fails,
1237 			 * we will keep retrying.
1238 			 */
1239 			goto retry_for_proc_slot;
1240 		}
1241 
1242 		/*
1243 		 * If there is an entry, and it is marked as DEMANDREQUEST,
1244 		 * one of the levels a, b, or c is in its levels mask, and
1245 		 * the action field is ONDEMAND and ONDEMAND is a permissable
1246 		 * mode, and the process is dead, then respawn it.
1247 		 */
1248 		if (((pp->p_flags & (LIVING|DEMANDREQUEST)) == DEMANDREQUEST) &&
1249 		    (cmd.c_levels & MASK_abc) &&
1250 		    (cmd.c_action & op_modes) == M_ONDEMAND) {
1251 			spawn(pp, &cmd);
1252 			continue;
1253 		}
1254 
1255 		/*
1256 		 * If the action is not an action we are interested in,
1257 		 * skip the entry.
1258 		 */
1259 		if ((cmd.c_action & op_modes) == 0 || pp->p_flags & LIVING ||
1260 		    (cmd.c_levels & lvl_mask) == 0)
1261 			continue;
1262 
1263 		/*
1264 		 * If the modes are the normal modes (ONCE, WAIT, RESPAWN, OFF,
1265 		 * ONDEMAND) and the action field is either OFF or the action
1266 		 * field is ONCE or WAIT and the current level is the same as
1267 		 * the last level, then skip this entry.  ONCE and WAIT only
1268 		 * get run when the level changes.
1269 		 */
1270 		if (op_modes == NORMAL_MODES &&
1271 		    (cmd.c_action == M_OFF ||
1272 			(cmd.c_action & (M_ONCE|M_WAIT)) &&
1273 			cur_state == prev_state))
1274 			continue;
1275 
1276 		/*
1277 		 * At this point we are interested in performing the action for
1278 		 * this entry.  Actions fall into two categories, spinning off
1279 		 * a process and not waiting, and spinning off a process and
1280 		 * waiting for it to die.  If the action is ONCE, RESPAWN,
1281 		 * ONDEMAND, POWERFAIL, or BOOT we don't wait for the process
1282 		 * to die, for all other actions we do wait.
1283 		 */
1284 		if (cmd.c_action & (M_ONCE | M_RESPAWN | M_PF | M_BOOT)) {
1285 			spawn(pp, &cmd);
1286 
1287 		} else {
1288 			spawn(pp, &cmd);
1289 			while (waitproc(pp) == FAILURE);
1290 			(void) account(DEAD_PROCESS, pp, NULL);
1291 			pp->p_flags = 0;
1292 		}
1293 	}
1294 	return (status);
1295 }
1296 
1297 /*
1298  * spawn() spawns a shell, inserts the information about the process
1299  * process into the proc_table, and does the startup accounting.
1300  */
1301 static void
1302 spawn(struct PROC_TABLE *process, struct CMD_LINE *cmd)
1303 {
1304 	int		i;
1305 	int		modes, maxfiles;
1306 	time_t		now;
1307 	struct PROC_TABLE tmproc, *oprocess;
1308 
1309 	/*
1310 	 * The modes to be sent to efork() are 0 unless we are
1311 	 * spawning a LVLa, LVLb, or LVLc entry or we will be
1312 	 * waiting for the death of the child before continuing.
1313 	 */
1314 	modes = NAMED;
1315 	if (process->p_flags & DEMANDREQUEST || cur_state == LVLa ||
1316 	    cur_state == LVLb || cur_state == LVLc)
1317 		modes |= DEMANDREQUEST;
1318 	if ((cmd->c_action & (M_SYSINIT | M_WAIT | M_BOOTWAIT | M_PWAIT)) != 0)
1319 		modes |= NOCLEANUP;
1320 
1321 	/*
1322 	 * If this is a respawnable process, check the threshold
1323 	 * information to avoid excessive respawns.
1324 	 */
1325 	if (cmd->c_action & M_RESPAWN) {
1326 		/*
1327 		 * Add NOCLEANUP to all respawnable commands so that the
1328 		 * information about the frequency of respawns isn't lost.
1329 		 */
1330 		modes |= NOCLEANUP;
1331 		(void) time(&now);
1332 
1333 		/*
1334 		 * If no time is assigned, then this is the first time
1335 		 * this command is being processed in this series.  Assign
1336 		 * the current time.
1337 		 */
1338 		if (process->p_time == 0L)
1339 			process->p_time = now;
1340 
1341 		if (process->p_count++ == SPAWN_LIMIT) {
1342 
1343 			if ((now - process->p_time) < SPAWN_INTERVAL) {
1344 				/*
1345 				 * Process is respawning too rapidly.  Print
1346 				 * message and refuse to respawn it for now.
1347 				 */
1348 				console(B_TRUE, "Command is respawning too "
1349 				    "rapidly. Check for possible errors.\n"
1350 				    "id:%4s \"%s\"\n",
1351 				    &cmd->c_id[0], &cmd->c_command[EXEC]);
1352 				return;
1353 			}
1354 			process->p_time = now;
1355 			process->p_count = 0;
1356 
1357 		} else if (process->p_count > SPAWN_LIMIT) {
1358 			/*
1359 			 * If process has been respawning too rapidly and
1360 			 * the inhibit time limit hasn't expired yet, we
1361 			 * refuse to respawn.
1362 			 */
1363 			if (now - process->p_time < SPAWN_INTERVAL + INHIBIT)
1364 				return;
1365 			process->p_time = now;
1366 			process->p_count = 0;
1367 		}
1368 		rsflag = TRUE;
1369 	}
1370 
1371 	/*
1372 	 * Spawn a child process to execute this command.
1373 	 */
1374 	(void) sigset(SIGCLD, SIG_DFL);
1375 	oprocess = process;
1376 	while ((process = efork(cmd->c_action, oprocess, modes)) == NO_ROOM)
1377 		(void) pause();
1378 
1379 	if (process == NULLPROC) {
1380 
1381 		/*
1382 		 * We are the child.  We must make sure we get a different
1383 		 * file pointer for our references to utmpx.  Otherwise our
1384 		 * seeks and reads will compete with those of the parent.
1385 		 */
1386 		endutxent();
1387 
1388 		/*
1389 		 * Perform the accounting for the beginning of a process.
1390 		 * Note that all processes are initially "INIT_PROCESS"es.
1391 		 */
1392 		tmproc.p_id[0] = cmd->c_id[0];
1393 		tmproc.p_id[1] = cmd->c_id[1];
1394 		tmproc.p_id[2] = cmd->c_id[2];
1395 		tmproc.p_id[3] = cmd->c_id[3];
1396 		tmproc.p_pid = getpid();
1397 		tmproc.p_exit = 0;
1398 		(void) account(INIT_PROCESS, &tmproc,
1399 		    prog_name(&cmd->c_command[EXEC]));
1400 		maxfiles = ulimit(UL_GDESLIM, 0);
1401 		for (i = 0; i < maxfiles; i++)
1402 			(void) fcntl(i, F_SETFD, FD_CLOEXEC);
1403 
1404 		/*
1405 		 * Now exec a shell with the -c option and the command
1406 		 * from inittab.
1407 		 */
1408 		(void) execle(SH, "INITSH", "-c", cmd->c_command, (char *)0,
1409 		    glob_envp);
1410 		console(B_TRUE, "Command\n\"%s\"\n failed to execute.  errno "
1411 		    "= %d (exec of shell failed)\n", cmd->c_command, errno);
1412 
1413 		/*
1414 		 * Don't come back so quickly that "init" doesn't have a
1415 		 * chance to finish putting this child in "proc_table".
1416 		 */
1417 		timer(20);
1418 		exit(1);
1419 
1420 	}
1421 
1422 	/*
1423 	 * We are the parent.  Insert the necessary
1424 	 * information in the proc_table.
1425 	 */
1426 	process->p_id[0] = cmd->c_id[0];
1427 	process->p_id[1] = cmd->c_id[1];
1428 	process->p_id[2] = cmd->c_id[2];
1429 	process->p_id[3] = cmd->c_id[3];
1430 
1431 	st_write();
1432 
1433 	(void) sigset(SIGCLD, childeath);
1434 }
1435 
1436 /*
1437  * findpslot() finds the old slot in the process table for the
1438  * command with the same id, or it finds an empty slot.
1439  */
1440 static struct PROC_TABLE *
1441 findpslot(struct CMD_LINE *cmd)
1442 {
1443 	struct PROC_TABLE	*process;
1444 	struct PROC_TABLE	*empty = NULLPROC;
1445 
1446 	for (process = proc_table;
1447 	    (process < proc_table + num_proc); process++) {
1448 		if (process->p_flags & OCCUPIED &&
1449 		    id_eq(process->p_id, cmd->c_id))
1450 			break;
1451 
1452 		/*
1453 		 * If the entry is totally empty and "empty" is still 0,
1454 		 * remember where this hole is and make sure the slot is
1455 		 * zeroed out.
1456 		 */
1457 		if (empty == NULLPROC && (process->p_flags & OCCUPIED) == 0) {
1458 			empty = process;
1459 			process->p_id[0] = '\0';
1460 			process->p_id[1] = '\0';
1461 			process->p_id[2] = '\0';
1462 			process->p_id[3] = '\0';
1463 			process->p_pid = 0;
1464 			process->p_time = 0L;
1465 			process->p_count = 0;
1466 			process->p_flags = 0;
1467 			process->p_exit = 0;
1468 		}
1469 	}
1470 
1471 	/*
1472 	 * If there is no entry for this slot, then there should be an
1473 	 * empty slot.  If there is no empty slot, then we've run out
1474 	 * of proc_table space.  If the latter is true, empty will be
1475 	 * NULL and the caller will have to complain.
1476 	 */
1477 	if (process == (proc_table + num_proc))
1478 		process = empty;
1479 
1480 	return (process);
1481 }
1482 
1483 /*
1484  * getcmd() parses lines from inittab.  Each time it finds a command line
1485  * it will return TRUE as well as fill the passed CMD_LINE structure and
1486  * the shell command string.  When the end of inittab is reached, FALSE
1487  * is returned inittab is automatically opened if it is not currently open
1488  * and is closed when the end of the file is reached.
1489  */
1490 static FILE *fp_inittab = NULL;
1491 
1492 static int
1493 getcmd(struct CMD_LINE *cmd, char *shcmd)
1494 {
1495 	char	*ptr;
1496 	int	c, lastc, state;
1497 	char 	*ptr1;
1498 	int	answer, i, proceed;
1499 	struct	stat	sbuf;
1500 	static char *actions[] = {
1501 		"off", "respawn", "ondemand", "once", "wait", "boot",
1502 		"bootwait", "powerfail", "powerwait", "initdefault",
1503 		"sysinit",
1504 	};
1505 	static short act_masks[] = {
1506 		M_OFF, M_RESPAWN, M_ONDEMAND, M_ONCE, M_WAIT, M_BOOT,
1507 		M_BOOTWAIT, M_PF, M_PWAIT, M_INITDEFAULT, M_SYSINIT,
1508 	};
1509 	/*
1510 	 * Only these actions will be allowed for entries which
1511 	 * are specified for single-user mode.
1512 	 */
1513 	short su_acts = M_INITDEFAULT | M_PF | M_PWAIT | M_WAIT;
1514 
1515 	if (fp_inittab == NULL) {
1516 		/*
1517 		 * Before attempting to open inittab we stat it to make
1518 		 * sure it currently exists and is not empty.  We try
1519 		 * several times because someone may have temporarily
1520 		 * unlinked or truncated the file.
1521 		 */
1522 		for (i = 0; i < 3; i++) {
1523 			if (stat(INITTAB, &sbuf) == -1) {
1524 				if (i == 2) {
1525 					console(B_TRUE,
1526 					    "Cannot stat %s, errno: %d\n",
1527 					    INITTAB, errno);
1528 					return (FAILURE);
1529 				} else {
1530 					timer(3);
1531 				}
1532 			} else if (sbuf.st_size < 10) {
1533 				if (i == 2) {
1534 					console(B_TRUE,
1535 					    "%s truncated or corrupted\n",
1536 					    INITTAB);
1537 					return (FAILURE);
1538 				} else {
1539 					timer(3);
1540 				}
1541 			} else {
1542 				break;
1543 			}
1544 		}
1545 
1546 		/*
1547 		 * If unable to open inittab, print error message and
1548 		 * return FAILURE to caller.
1549 		 */
1550 		if ((fp_inittab = fopen(INITTAB, "r")) == NULL) {
1551 			console(B_TRUE, "Cannot open %s errno: %d\n", INITTAB,
1552 			    errno);
1553 			return (FAILURE);
1554 		}
1555 	}
1556 
1557 	/*
1558 	 * Keep getting commands from inittab until you find a
1559 	 * good one or run out of file.
1560 	 */
1561 	for (answer = FALSE; answer == FALSE; ) {
1562 		/*
1563 		 * Zero out the cmd itself before trying next line.
1564 		 */
1565 		bzero(cmd, sizeof (struct CMD_LINE));
1566 
1567 		/*
1568 		 * Read in lines of inittab, parsing at colons, until a line is
1569 		 * read in which doesn't end with a backslash.  Do not start if
1570 		 * the first character read is an EOF.  Note that this means
1571 		 * that lines which don't end in a newline are still processed,
1572 		 * since the "for" will terminate normally once started,
1573 		 * regardless of whether line terminates with a newline or EOF.
1574 		 */
1575 		state = FAILURE;
1576 		if ((c = fgetc(fp_inittab)) == EOF) {
1577 			answer = FALSE;
1578 			(void) fclose(fp_inittab);
1579 			fp_inittab = NULL;
1580 			break;
1581 		}
1582 
1583 		for (proceed = TRUE, ptr = shcmd, state = ID, lastc = '\0';
1584 		    proceed && c != EOF;
1585 		    lastc = c, c = fgetc(fp_inittab)) {
1586 		    /* If we're not in the FAILURE state and haven't	*/
1587 		    /* yet reached the shell command field, process	*/
1588 		    /* the line, otherwise just look for a real end	*/
1589 		    /* of line.						*/
1590 		    if (state != FAILURE && state != COMMAND) {
1591 			/*
1592 			 * Squeeze out spaces and tabs.
1593 			 */
1594 			if (c == ' ' || c == '\t')
1595 				continue;
1596 
1597 			/*
1598 			 * Ignore characters in a comment, except for the \n.
1599 			 */
1600 			if (state == COMMENT) {
1601 				if (c == '\n') {
1602 					lastc = ' ';
1603 					break;
1604 				} else {
1605 					continue;
1606 				}
1607 			}
1608 
1609 			/*
1610 			 * Detect comments (lines whose first non-whitespace
1611 			 * character is '#') by checking that we're at the
1612 			 * beginning of a line, have seen a '#', and haven't
1613 			 * yet accumulated any characters.
1614 			 */
1615 			if (state == ID && c == '#' && ptr == shcmd) {
1616 				state = COMMENT;
1617 				continue;
1618 			}
1619 
1620 			/*
1621 			 * If the character is a ':', then check the
1622 			 * previous field for correctness and advance
1623 			 * to the next field.
1624 			 */
1625 			if (c == ':') {
1626 			    switch (state) {
1627 
1628 			    case ID :
1629 				/*
1630 				 * Check to see that there are only
1631 				 * 1 to 4 characters for the id.
1632 				 */
1633 				if ((i = ptr - shcmd) < 1 || i > 4) {
1634 					state = FAILURE;
1635 				} else {
1636 					bcopy(shcmd, &cmd->c_id[0], i);
1637 					ptr = shcmd;
1638 					state = LEVELS;
1639 				}
1640 				break;
1641 
1642 			    case LEVELS :
1643 				/*
1644 				 * Build a mask for all the levels for
1645 				 * which this command will be legal.
1646 				 */
1647 				for (cmd->c_levels = 0, ptr1 = shcmd;
1648 				    ptr1 < ptr; ptr1++) {
1649 					int mask;
1650 					if (lvlname_to_mask(*ptr1,
1651 					    &mask) == -1) {
1652 						state = FAILURE;
1653 						break;
1654 					}
1655 					cmd->c_levels |= mask;
1656 				}
1657 				if (state != FAILURE) {
1658 					state = ACTION;
1659 					ptr = shcmd;	/* Reset the buffer */
1660 				}
1661 				break;
1662 
1663 			    case ACTION :
1664 				/*
1665 				 * Null terminate the string in shcmd buffer and
1666 				 * then try to match against legal actions.  If
1667 				 * the field is of length 0, then the default of
1668 				 * "RESPAWN" is used if the id is numeric,
1669 				 * otherwise the default is "OFF".
1670 				 */
1671 				if (ptr == shcmd) {
1672 					if (isdigit(cmd->c_id[0]) &&
1673 					    (cmd->c_id[1] == '\0' ||
1674 						isdigit(cmd->c_id[1])) &&
1675 					    (cmd->c_id[2] == '\0' ||
1676 						isdigit(cmd->c_id[2])) &&
1677 					    (cmd->c_id[3] == '\0' ||
1678 						isdigit(cmd->c_id[3])))
1679 						    cmd->c_action = M_RESPAWN;
1680 					else
1681 						    cmd->c_action = M_OFF;
1682 				} else {
1683 				    for (cmd->c_action = 0, i = 0, *ptr = '\0';
1684 				    i < sizeof (actions)/sizeof (char *);
1685 				    i++) {
1686 					if (strcmp(shcmd, actions[i]) == 0) {
1687 					    if ((cmd->c_levels & MASKSU) &&
1688 						!(act_masks[i] & su_acts))
1689 						    cmd->c_action = 0;
1690 					    else
1691 						cmd->c_action = act_masks[i];
1692 					    break;
1693 					}
1694 				    }
1695 				}
1696 
1697 				/*
1698 				 * If the action didn't match any legal action,
1699 				 * set state to FAILURE.
1700 				 */
1701 				if (cmd->c_action == 0) {
1702 					state = FAILURE;
1703 				} else {
1704 					state = COMMAND;
1705 					(void) strcpy(shcmd, "exec ");
1706 				}
1707 				ptr = shcmd + EXEC;
1708 				break;
1709 			    }
1710 			    continue;
1711 			}
1712 		    }
1713 
1714 		    /* If the character is a '\n', then this is the end of a */
1715 		    /* line.  If the '\n' wasn't preceded by a backslash, */
1716 		    /* it is also the end of an inittab command.  If it was */
1717 		    /* preceded by a backslash then the next line is a */
1718 		    /* continuation.  Note that the continuation '\n' falls */
1719 		    /* through and is treated like other characters and is */
1720 		    /* stored in the shell command line. */
1721 		    if (c == '\n' && lastc != '\\') {
1722 				proceed = FALSE;
1723 				*ptr = '\0';
1724 				break;
1725 		    }
1726 
1727 		    /* For all other characters just stuff them into the */
1728 		    /* command as long as there aren't too many of them. */
1729 		    /* Make sure there is room for a terminating '\0' also. */
1730 		    if (ptr >= shcmd + MAXCMDL - 1)
1731 			state = FAILURE;
1732 		    else
1733 			*ptr++ = (char)c;
1734 
1735 		    /* If the character we just stored was a quoted	*/
1736 		    /* backslash, then change "c" to '\0', so that this	*/
1737 		    /* backslash will not cause a subsequent '\n' to appear */
1738 		    /* quoted.  In otherwords '\' '\' '\n' is the real end */
1739 		    /* of a command, while '\' '\n' is a continuation. */
1740 		    if (c == '\\' && lastc == '\\')
1741 			c = '\0';
1742 		}
1743 
1744 		/*
1745 		 * Make sure all the fields are properly specified
1746 		 * for a good command line.
1747 		 */
1748 		if (state == COMMAND) {
1749 			answer = TRUE;
1750 			cmd->c_command = shcmd;
1751 
1752 			/*
1753 			 * If no default level was supplied, insert
1754 			 * all numerical levels.
1755 			 */
1756 			if (cmd->c_levels == 0)
1757 				cmd->c_levels = MASK_NUMERIC;
1758 
1759 			/*
1760 			 * If no action has been supplied, declare this
1761 			 * entry to be OFF.
1762 			 */
1763 			if (cmd->c_action == 0)
1764 				cmd->c_action = M_OFF;
1765 
1766 			/*
1767 			 * If no shell command has been supplied, make sure
1768 			 * there is a null string in the command field.
1769 			 */
1770 			if (ptr == shcmd + EXEC)
1771 				*shcmd = '\0';
1772 		} else
1773 			answer = FALSE;
1774 
1775 		/*
1776 		 * If we have reached the end of inittab, then close it
1777 		 * and quit trying to find a good command line.
1778 		 */
1779 		if (c == EOF) {
1780 			(void) fclose(fp_inittab);
1781 			fp_inittab = NULL;
1782 			break;
1783 		}
1784 	}
1785 	return (answer);
1786 }
1787 
1788 /*
1789  * lvlname_to_state(): convert the character name of a state to its level
1790  * (its corresponding signal number).
1791  */
1792 static int
1793 lvlname_to_state(char name)
1794 {
1795 	int i;
1796 	for (i = 0; i < LVL_NELEMS; i++) {
1797 		if (lvls[i].lvl_name == name)
1798 			return (lvls[i].lvl_state);
1799 	}
1800 	return (-1);
1801 }
1802 
1803 /*
1804  * state_to_name(): convert the level to the character name.
1805  */
1806 static char
1807 state_to_name(int state)
1808 {
1809 	int i;
1810 	for (i = 0; i < LVL_NELEMS; i++) {
1811 		if (lvls[i].lvl_state == state)
1812 			return (lvls[i].lvl_name);
1813 	}
1814 	return (-1);
1815 }
1816 
1817 /*
1818  * state_to_mask(): return the mask corresponding to a signal number
1819  */
1820 static int
1821 state_to_mask(int state)
1822 {
1823 	int i;
1824 	for (i = 0; i < LVL_NELEMS; i++) {
1825 		if (lvls[i].lvl_state == state)
1826 			return (lvls[i].lvl_mask);
1827 	}
1828 	return (0);	/* return 0, since that represents an empty mask */
1829 }
1830 
1831 /*
1832  * lvlname_to_mask(): return the mask corresponding to a levels character name
1833  */
1834 static int
1835 lvlname_to_mask(char name, int *mask)
1836 {
1837 	int i;
1838 	for (i = 0; i < LVL_NELEMS; i++) {
1839 		if (lvls[i].lvl_name == name) {
1840 			*mask = lvls[i].lvl_mask;
1841 			return (0);
1842 		}
1843 	}
1844 	return (-1);
1845 }
1846 
1847 /*
1848  * state_to_flags(): return the flags corresponding to a runlevel.  These
1849  * indicate properties of that runlevel.
1850  */
1851 static int
1852 state_to_flags(int state)
1853 {
1854 	int i;
1855 	for (i = 0; i < LVL_NELEMS; i++) {
1856 		if (lvls[i].lvl_state == state)
1857 			return (lvls[i].lvl_flags);
1858 	}
1859 	return (0);
1860 }
1861 
1862 /*
1863  * killproc() creates a child which kills the process specified by pid.
1864  */
1865 void
1866 killproc(pid_t pid)
1867 {
1868 	struct PROC_TABLE	*process;
1869 
1870 	(void) sigset(SIGCLD, SIG_DFL);
1871 	while ((process = efork(M_OFF, NULLPROC, 0)) == NO_ROOM)
1872 		(void) pause();
1873 	(void) sigset(SIGCLD, childeath);
1874 
1875 	if (process == NULLPROC) {
1876 		/*
1877 		 * efork() sets all signal handlers to the default, so reset
1878 		 * the ALRM handler to make timer() work as expected.
1879 		 */
1880 		(void) sigset(SIGALRM, alarmclk);
1881 
1882 		/*
1883 		 * We are the child.  Try to terminate the process nicely
1884 		 * first using SIGTERM and if it refuses to die in TWARN
1885 		 * seconds kill it with SIGKILL.
1886 		 */
1887 		(void) kill(pid, SIGTERM);
1888 		(void) timer(TWARN);
1889 		(void) kill(pid, SIGKILL);
1890 		(void) exit(0);
1891 	}
1892 }
1893 
1894 /*
1895  * Set up the default environment for all procs to be forked from init.
1896  * Read the values from the /etc/default/init file, except for PATH.  If
1897  * there's not enough room in the environment array, the environment
1898  * lines that don't fit are silently discarded.
1899  */
1900 void
1901 init_env()
1902 {
1903 	char	line[MAXCMDL];
1904 	FILE	*fp;
1905 	int	inquotes, length, wslength;
1906 	char	*tokp, *cp1, *cp2;
1907 
1908 	glob_envp[0] = malloc((unsigned)(strlen(DEF_PATH)+2));
1909 	(void) strcpy(glob_envp[0], DEF_PATH);
1910 	glob_envn = 1;
1911 
1912 	if (rflg) {
1913 		glob_envp[1] =
1914 			malloc((unsigned)(strlen("_DVFS_RECONFIG=YES")+2));
1915 		(void) strcpy(glob_envp[1], "_DVFS_RECONFIG=YES");
1916 		++glob_envn;
1917 	} else if (bflg == 1) {
1918 		glob_envp[1] =
1919 			malloc((unsigned)(strlen("RB_NOBOOTRC=YES")+2));
1920 		(void) strcpy(glob_envp[1], "RB_NOBOOTRC=YES");
1921 		++glob_envn;
1922 	}
1923 
1924 	if ((fp = fopen(ENVFILE, "r")) == NULL) {
1925 		console(B_TRUE,
1926 		    "Cannot open %s. Environment not initialized.\n",
1927 		    ENVFILE);
1928 	} else {
1929 		while (fgets(line, MAXCMDL - 1, fp) != NULL &&
1930 		    glob_envn < MAXENVENT - 2) {
1931 			/*
1932 			 * Toss newline
1933 			 */
1934 			length = strlen(line);
1935 			if (line[length - 1] == '\n')
1936 				line[length - 1] = '\0';
1937 
1938 			/*
1939 			 * Ignore blank or comment lines.
1940 			 */
1941 			if (line[0] == '#' || line[0] == '\0' ||
1942 			    (wslength = strspn(line, " \t\n")) ==
1943 			    strlen(line) ||
1944 			    strchr(line, '#') == line + wslength)
1945 				continue;
1946 
1947 			/*
1948 			 * First make a pass through the line and change
1949 			 * any non-quoted semi-colons to blanks so they
1950 			 * will be treated as token separators below.
1951 			 */
1952 			inquotes = 0;
1953 			for (cp1 = line; *cp1 != '\0'; cp1++) {
1954 				if (*cp1 == '"') {
1955 					if (inquotes == 0)
1956 						inquotes = 1;
1957 					else
1958 						inquotes = 0;
1959 				} else if (*cp1 == ';') {
1960 					if (inquotes == 0)
1961 						*cp1 = ' ';
1962 				}
1963 			}
1964 
1965 			/*
1966 			 * Tokens within the line are separated by blanks
1967 			 *  and tabs.  For each token in the line which
1968 			 * contains a '=' we strip out any quotes and then
1969 			 * stick the token in the environment array.
1970 			 */
1971 			if ((tokp = strtok(line, " \t")) == NULL)
1972 				continue;
1973 			do {
1974 				if (strchr(tokp, '=') == NULL)
1975 					continue;
1976 				length = strlen(tokp);
1977 				while ((cp1 = strpbrk(tokp, "\"\'")) != NULL) {
1978 					for (cp2 = cp1;
1979 					    cp2 < &tokp[length]; cp2++)
1980 						*cp2 = *(cp2 + 1);
1981 					length--;
1982 				}
1983 
1984 				if (strncmp(tokp, "CMASK=",
1985 				    sizeof ("CMASK=") - 1) == 0) {
1986 					long t;
1987 
1988 					/* We know there's an = */
1989 					t = strtol(strchr(tokp, '=') + 1, NULL,
1990 					    8);
1991 
1992 					/* Sanity */
1993 					if (t <= 077 && t >= 0)
1994 						cmask = (int)t;
1995 					(void) umask(cmask);
1996 					continue;
1997 				}
1998 				glob_envp[glob_envn] =
1999 				    malloc((unsigned)(length + 1));
2000 				(void) strcpy(glob_envp[glob_envn], tokp);
2001 				if (++glob_envn >= MAXENVENT - 1)
2002 					break;
2003 			} while ((tokp = strtok(NULL, " \t")) != NULL);
2004 		}
2005 
2006 		/*
2007 		 * Append a null pointer to the environment array
2008 		 * to mark its end.
2009 		 */
2010 		glob_envp[glob_envn] = NULL;
2011 		(void) fclose(fp);
2012 	}
2013 }
2014 
2015 /*
2016  * boot_init(): Do initialization things that should be done at boot.
2017  */
2018 void
2019 boot_init()
2020 {
2021 	int i;
2022 	struct PROC_TABLE *process, *oprocess;
2023 	struct CMD_LINE	cmd;
2024 	char	line[MAXCMDL];
2025 	char *old_path;
2026 	int maxfiles;
2027 
2028 	/* Use INIT_PATH for sysinit cmds */
2029 	old_path = glob_envp[0];
2030 	glob_envp[0] = malloc((unsigned)(strlen(INIT_PATH)+2));
2031 	(void) strcpy(glob_envp[0], INIT_PATH);
2032 
2033 	/*
2034 	 * Scan inittab(4) and process the special svc.startd entry, initdefault
2035 	 * and sysinit entries.
2036 	 */
2037 	while (getcmd(&cmd, &line[0]) == TRUE) {
2038 		if (startd_tmpl >= 0 && id_eq(cmd.c_id, "smf"))
2039 			process_startd_line(&cmd, line);
2040 		else if (cmd.c_action == M_INITDEFAULT) {
2041 			/*
2042 			 * initdefault is no longer meaningful, as the SMF
2043 			 * milestone controls what (legacy) run level we
2044 			 * boot to.
2045 			 */
2046 			console(B_TRUE,
2047 			    "Ignoring legacy \"initdefault\" entry.\n");
2048 		} else if (cmd.c_action == M_SYSINIT) {
2049 			/*
2050 			 * Execute the "sysinit" entry and wait for it to
2051 			 * complete.  No bookkeeping is performed on these
2052 			 * entries because we avoid writing to the file system
2053 			 * until after there has been an chance to check it.
2054 			 */
2055 			if (process = findpslot(&cmd)) {
2056 				(void) sigset(SIGCLD, SIG_DFL);
2057 
2058 				for (oprocess = process;
2059 				    (process = efork(M_OFF, oprocess,
2060 				    (NAMED|NOCLEANUP))) == NO_ROOM;
2061 				    /* CSTYLED */)
2062 					;
2063 				(void) sigset(SIGCLD, childeath);
2064 
2065 				if (process == NULLPROC) {
2066 					maxfiles = ulimit(UL_GDESLIM, 0);
2067 
2068 					for (i = 0; i < maxfiles; i++)
2069 						(void) fcntl(i, F_SETFD,
2070 						    FD_CLOEXEC);
2071 					(void) execle(SH, "INITSH", "-c",
2072 					    cmd.c_command,
2073 					    (char *)0, glob_envp);
2074 					console(B_TRUE,
2075 "Command\n\"%s\"\n failed to execute.  errno = %d (exec of shell failed)\n",
2076 						cmd.c_command, errno);
2077 					exit(1);
2078 				} else while (waitproc(process) == FAILURE);
2079 				process->p_flags = 0;
2080 				st_write();
2081 			}
2082 		}
2083 	}
2084 
2085 	/* Restore the path. */
2086 	free(glob_envp[0]);
2087 	glob_envp[0] = old_path;
2088 
2089 	/*
2090 	 * This will enable st_write() to complain about init_state_file.
2091 	 */
2092 	booting = 0;
2093 
2094 	/*
2095 	 * If the /etc/ioctl.syscon didn't exist or had invalid contents write
2096 	 * out a correct version.
2097 	 */
2098 	if (write_ioctl)
2099 		write_ioctl_syscon();
2100 
2101 	/*
2102 	 * Start svc.startd(1M), which does most of the work.
2103 	 */
2104 	if (startd_cline[0] != '\0' && startd_tmpl >= 0) {
2105 		/* Start svc.startd. */
2106 		if (startd_run(startd_cline, startd_tmpl, 0) == -1)
2107 			cur_state = SINGLE_USER;
2108 	} else {
2109 		console(B_TRUE, "Absent svc.startd entry or bad "
2110 		    "contract template.  Not starting svc.startd.\n");
2111 		enter_maintenance();
2112 	}
2113 }
2114 
2115 /*
2116  * init_signals(): Initialize all signals to either be caught or ignored.
2117  */
2118 void
2119 init_signals(void)
2120 {
2121 	struct sigaction act;
2122 	int i;
2123 
2124 	/*
2125 	 * Start by ignoring all signals, then selectively re-enable some.
2126 	 * The SIG_IGN disposition will only affect asynchronous signals:
2127 	 * any signal that we trigger synchronously that doesn't end up
2128 	 * being handled by siglvl() will be forcibly delivered by the kernel.
2129 	 */
2130 	for (i = SIGHUP; i <= SIGRTMAX; i++)
2131 		(void) sigset(i, SIG_IGN);
2132 
2133 	/*
2134 	 * Handle all level-changing signals using siglvl() and set sa_mask so
2135 	 * that all level-changing signals are blocked while in siglvl().
2136 	 */
2137 	act.sa_handler = siglvl;
2138 	act.sa_flags = SA_SIGINFO;
2139 	(void) sigemptyset(&act.sa_mask);
2140 
2141 	(void) sigaddset(&act.sa_mask, LVLQ);
2142 	(void) sigaddset(&act.sa_mask, LVL0);
2143 	(void) sigaddset(&act.sa_mask, LVL1);
2144 	(void) sigaddset(&act.sa_mask, LVL2);
2145 	(void) sigaddset(&act.sa_mask, LVL3);
2146 	(void) sigaddset(&act.sa_mask, LVL4);
2147 	(void) sigaddset(&act.sa_mask, LVL5);
2148 	(void) sigaddset(&act.sa_mask, LVL6);
2149 	(void) sigaddset(&act.sa_mask, SINGLE_USER);
2150 	(void) sigaddset(&act.sa_mask, LVLa);
2151 	(void) sigaddset(&act.sa_mask, LVLb);
2152 	(void) sigaddset(&act.sa_mask, LVLc);
2153 
2154 	(void) sigaction(LVLQ, &act, NULL);
2155 	(void) sigaction(LVL0, &act, NULL);
2156 	(void) sigaction(LVL1, &act, NULL);
2157 	(void) sigaction(LVL2, &act, NULL);
2158 	(void) sigaction(LVL3, &act, NULL);
2159 	(void) sigaction(LVL4, &act, NULL);
2160 	(void) sigaction(LVL5, &act, NULL);
2161 	(void) sigaction(LVL6, &act, NULL);
2162 	(void) sigaction(SINGLE_USER, &act, NULL);
2163 	(void) sigaction(LVLa, &act, NULL);
2164 	(void) sigaction(LVLb, &act, NULL);
2165 	(void) sigaction(LVLc, &act, NULL);
2166 
2167 	(void) sigset(SIGALRM, alarmclk);
2168 	alarmclk();
2169 
2170 	(void) sigset(SIGCLD, childeath);
2171 	(void) sigset(SIGPWR, powerfail);
2172 }
2173 
2174 /*
2175  * Set up pipe for "godchildren". If the file exists and is a pipe just open
2176  * it. Else, if the file system is r/w create it.  Otherwise, defer its
2177  * creation and open until after the sysinit functions have had a chance to
2178  * make the root read/write.
2179  */
2180 void
2181 setup_pipe()
2182 {
2183 	struct stat stat_buf;
2184 	struct statvfs statvfs_buf;
2185 	struct sigaction act;
2186 
2187 	if ((stat(INITPIPE, &stat_buf) == 0) &&
2188 	    ((stat_buf.st_mode & (S_IFMT|S_IRUSR)) == (S_IFIFO|S_IRUSR)))
2189 		Pfd = open(INITPIPE, O_RDWR | O_NDELAY);
2190 	else
2191 		if ((statvfs(INITPIPE_DIR, &statvfs_buf) == 0) &&
2192 		    ((statvfs_buf.f_flag & ST_RDONLY) == 0)) {
2193 			(void) unlink(INITPIPE);
2194 			(void) mknod(INITPIPE, S_IFIFO | 0600, 0);
2195 			Pfd = open(INITPIPE, O_RDWR | O_NDELAY);
2196 		}
2197 
2198 	if (Pfd >= 0) {
2199 		(void) ioctl(Pfd, I_SETSIG, S_INPUT);
2200 		/*
2201 		 * Read pipe in message discard mode.
2202 		 */
2203 		(void) ioctl(Pfd, I_SRDOPT, RMSGD);
2204 
2205 		act.sa_handler = sigpoll;
2206 		act.sa_flags = 0;
2207 		(void) sigemptyset(&act.sa_mask);
2208 		(void) sigaddset(&act.sa_mask, SIGCLD);
2209 		(void) sigaction(SIGPOLL, &act, NULL);
2210 	}
2211 }
2212 
2213 /*
2214  * siglvl - handle an asynchronous signal from init(1M) telling us that we
2215  * should change the current run level.  We set new_state accordingly.
2216  */
2217 void
2218 siglvl(int sig, siginfo_t *sip, ucontext_t *ucp)
2219 {
2220 	struct PROC_TABLE *process;
2221 	struct sigaction act;
2222 
2223 	/*
2224 	 * If the signal was from the kernel (rather than init(1M)) then init
2225 	 * itself tripped the signal.  That is, we might have a bug and tripped
2226 	 * a real SIGSEGV instead of receiving it as an alias for SIGLVLa.  In
2227 	 * such a case we reset the disposition to SIG_DFL, block all signals
2228 	 * in uc_mask but the current one, and return to the interrupted ucp
2229 	 * to effect an appropriate death.  The kernel will then restart us.
2230 	 *
2231 	 * The one exception to SI_FROMKERNEL() is SIGFPE (a.k.a. LVL6), which
2232 	 * the kernel can send us when it wants to effect an orderly reboot.
2233 	 * For this case we must also verify si_code is zero, rather than a
2234 	 * code such as FPE_INTDIV which a bug might have triggered.
2235 	 */
2236 	if (sip != NULL && SI_FROMKERNEL(sip) &&
2237 	    (sig != SIGFPE || sip->si_code == 0)) {
2238 
2239 		(void) sigemptyset(&act.sa_mask);
2240 		act.sa_handler = SIG_DFL;
2241 		act.sa_flags = 0;
2242 		(void) sigaction(sig, &act, NULL);
2243 
2244 		(void) sigfillset(&ucp->uc_sigmask);
2245 		(void) sigdelset(&ucp->uc_sigmask, sig);
2246 		ucp->uc_flags |= UC_SIGMASK;
2247 
2248 		(void) setcontext(ucp);
2249 	}
2250 
2251 	/*
2252 	 * If the signal received is a LVLQ signal, do not really
2253 	 * change levels, just restate the current level.  If the
2254 	 * signal is not a LVLQ, set the new level to the signal
2255 	 * received.
2256 	 */
2257 	if (sig == LVLQ)
2258 		new_state = cur_state;
2259 	else
2260 		new_state = sig;
2261 
2262 	/*
2263 	 * Clear all times and repeat counts in the process table
2264 	 * since either the level is changing or the user has editted
2265 	 * the inittab file and wants us to look at it again.
2266 	 * If the user has fixed a typo, we don't want residual timing
2267 	 * data preventing the fixed command line from executing.
2268 	 */
2269 	for (process = proc_table;
2270 		(process < proc_table + num_proc); process++) {
2271 		process->p_time = 0L;
2272 		process->p_count = 0;
2273 	}
2274 
2275 	/*
2276 	 * Set the flag to indicate that a "user signal" was received.
2277 	 */
2278 	wakeup.w_flags.w_usersignal = 1;
2279 }
2280 
2281 
2282 /*
2283  * alarmclk
2284  */
2285 static void
2286 alarmclk()
2287 {
2288 	time_up = TRUE;
2289 }
2290 
2291 /*
2292  * childeath_single():
2293  *
2294  * This used to be the SIGCLD handler and it was set with signal()
2295  * (as opposed to sigset()).  When a child exited we'd come to the
2296  * handler, wait for the child, and reenable the handler with
2297  * signal() just before returning.  The implementation of signal()
2298  * checks with waitid() for waitable children and sends a SIGCLD
2299  * if there are some.  If children are exiting faster than the
2300  * handler can run we keep sending signals and the handler never
2301  * gets to return and eventually the stack runs out and init dies.
2302  * To prevent that we set the handler with sigset() so the handler
2303  * doesn't need to be reset, and in childeath() (see below) we
2304  * call childeath_single() as long as there are children to be
2305  * waited for.  If a child exits while init is in the handler a
2306  * SIGCLD will be pending and delivered on return from the handler.
2307  * If the child was already waited for the handler will have nothing
2308  * to do and return, otherwise the child will be waited for.
2309  */
2310 static void
2311 childeath_single()
2312 {
2313 	struct PROC_TABLE	*process;
2314 	struct pidlist		*pp;
2315 	pid_t			pid;
2316 	int			status;
2317 
2318 	/*
2319 	 * Perform wait to get the process id of the child that died and
2320 	 * then scan the process table to see if we are interested in
2321 	 * this process. NOTE: if a super-user sends the SIGCLD signal
2322 	 * to init, the following wait will not immediately return and
2323 	 * init will be inoperative until one of its child really does die.
2324 	 */
2325 	pid = wait(&status);
2326 
2327 	for (process = proc_table;
2328 		(process < proc_table + num_proc); process++) {
2329 		if ((process->p_flags & (LIVING|OCCUPIED)) ==
2330 		    (LIVING|OCCUPIED) && process->p_pid == pid) {
2331 
2332 			/*
2333 			 * Mark this process as having died and store the exit
2334 			 * status.  Also set the wakeup flag for a dead child
2335 			 * and break out of the loop.
2336 			 */
2337 			process->p_flags &= ~LIVING;
2338 			process->p_exit = (short)status;
2339 			wakeup.w_flags.w_childdeath = 1;
2340 
2341 			return;
2342 		}
2343 	}
2344 
2345 	/*
2346 	 * No process was found above, look through auxiliary list.
2347 	 */
2348 	(void) sighold(SIGPOLL);
2349 	pp = Plhead;
2350 	while (pp) {
2351 		if (pid > pp->pl_pid) {
2352 			/*
2353 			 * Keep on looking.
2354 			 */
2355 			pp = pp->pl_next;
2356 			continue;
2357 		} else if (pid < pp->pl_pid) {
2358 			/*
2359 			 * Not in the list.
2360 			 */
2361 			break;
2362 		} else {
2363 			/*
2364 			 * This is a dead "godchild".
2365 			 */
2366 			pp->pl_dflag = 1;
2367 			pp->pl_exit = (short)status;
2368 			wakeup.w_flags.w_childdeath = 1;
2369 			Gchild = 1;	/* Notice to call cleanaux(). */
2370 			break;
2371 		}
2372 	}
2373 
2374 	(void) sigrelse(SIGPOLL);
2375 }
2376 
2377 /* ARGSUSED */
2378 static void
2379 childeath(int signo)
2380 {
2381 	siginfo_t info;
2382 
2383 	while ((waitid(P_ALL, (id_t)0, &info, WEXITED|WNOHANG|WNOWAIT) == 0) &&
2384 	    info.si_pid != 0)
2385 		childeath_single();
2386 }
2387 
2388 static void
2389 powerfail()
2390 {
2391 	(void) nice(-19);
2392 	wakeup.w_flags.w_powerhit = 1;
2393 }
2394 
2395 /*
2396  * efork() forks a child and the parent inserts the process in its table
2397  * of processes that are directly a result of forks that it has performed.
2398  * The child just changes the "global" with the process id for this process
2399  * to it's new value.
2400  * If efork() is called with a pointer into the proc_table it uses that slot,
2401  * otherwise it searches for a free slot.  Regardless of how it was called,
2402  * it returns the pointer to the proc_table entry
2403  *
2404  * The SIGCLD handler is set to default (SIG_DFL) before calling efork().
2405  * This relies on the somewhat obscure SVR2 SIGCLD/SIG_DFL semantic
2406  * implied by the use of signal(3c).  While the meaning of SIG_DFL for
2407  * SIGCLD is nominally to ignore the signal, once the signal disposition
2408  * is set to childeath(), the kernel will post a SIGCLD if a child
2409  * exited during the period the disposition was SIG_DFL.  It acts more
2410  * like a signal block.
2411  *
2412  * Ideally, this should be rewritten to use modern signal semantics.
2413  */
2414 static struct PROC_TABLE *
2415 efork(int action, struct PROC_TABLE *process, int modes)
2416 {
2417 	pid_t	childpid;
2418 	struct PROC_TABLE *proc;
2419 	int		i;
2420 	void (*oldroutine)();
2421 	/*
2422 	 * Freshen up the proc_table, removing any entries for dead processes
2423 	 * that don't have NOCLEANUP set.  Perform the necessary accounting.
2424 	 */
2425 	for (proc = proc_table; (proc < proc_table + num_proc); proc++) {
2426 		if ((proc->p_flags & (OCCUPIED|LIVING|NOCLEANUP)) ==
2427 		    (OCCUPIED)) {
2428 			/*
2429 			 * Is this a named process?
2430 			 * If so, do the necessary bookkeeping.
2431 			 */
2432 			if (proc->p_flags & NAMED)
2433 				(void) account(DEAD_PROCESS, proc, NULL);
2434 
2435 			/*
2436 			 * Free this entry for new usage.
2437 			 */
2438 			proc->p_flags = 0;
2439 		}
2440 	}
2441 
2442 	while ((childpid = fork()) == FAILURE) {
2443 		/*
2444 		 * Shorten the alarm timer in case someone else's child dies
2445 		 * and free up a slot in the process table.
2446 		 */
2447 		setimer(5);
2448 
2449 		/*
2450 		 * Wait for some children to die.  Since efork() is normally
2451 		 * called with SIGCLD in the default state, reset it to catch
2452 		 * so that child death signals can come in.
2453 		 */
2454 		oldroutine = sigset(SIGCLD, childeath);
2455 		(void) pause();
2456 		(void) sigset(SIGCLD, oldroutine);
2457 		setimer(0);
2458 	}
2459 
2460 	if (childpid != 0) {
2461 
2462 		if (process == NULLPROC) {
2463 			/*
2464 			 * No proc table pointer specified so search
2465 			 * for a free slot.
2466 			 */
2467 			for (process = proc_table;  process->p_flags != 0 &&
2468 				(process < proc_table + num_proc); process++)
2469 					;
2470 
2471 			if (process == (proc_table + num_proc)) {
2472 				int old_proc_table_size = num_proc;
2473 
2474 				/* Increase the process table size */
2475 				increase_proc_table_size();
2476 				if (old_proc_table_size == num_proc) {
2477 					/* didn't grow: memory failure */
2478 					return (NO_ROOM);
2479 				} else {
2480 					process =
2481 					    proc_table + old_proc_table_size;
2482 				}
2483 			}
2484 
2485 			process->p_time = 0L;
2486 			process->p_count = 0;
2487 		}
2488 		process->p_id[0] = '\0';
2489 		process->p_id[1] = '\0';
2490 		process->p_id[2] = '\0';
2491 		process->p_id[3] = '\0';
2492 		process->p_pid = childpid;
2493 		process->p_flags = (LIVING | OCCUPIED | modes);
2494 		process->p_exit = 0;
2495 
2496 		st_write();
2497 	} else {
2498 		if ((action & (M_WAIT | M_BOOTWAIT)) == 0)
2499 			(void) setpgrp();
2500 
2501 		process = NULLPROC;
2502 
2503 		/*
2504 		 * Reset all signals to the system defaults.
2505 		 */
2506 		for (i = SIGHUP; i <= SIGRTMAX; i++)
2507 			(void) sigset(i, SIG_DFL);
2508 
2509 		/*
2510 		 * POSIX B.2.2.2 advises that init should set SIGTTOU,
2511 		 * SIGTTIN, and SIGTSTP to SIG_IGN.
2512 		 *
2513 		 * Make sure that SIGXCPU and SIGXFSZ also remain ignored,
2514 		 * for backward compatibility.
2515 		 */
2516 		(void) sigset(SIGTTIN, SIG_IGN);
2517 		(void) sigset(SIGTTOU, SIG_IGN);
2518 		(void) sigset(SIGTSTP, SIG_IGN);
2519 		(void) sigset(SIGXCPU, SIG_IGN);
2520 		(void) sigset(SIGXFSZ, SIG_IGN);
2521 	}
2522 	return (process);
2523 }
2524 
2525 
2526 /*
2527  * waitproc() waits for a specified process to die.  For this function to
2528  * work, the specified process must already in the proc_table.  waitproc()
2529  * returns the exit status of the specified process when it dies.
2530  */
2531 static long
2532 waitproc(struct PROC_TABLE *process)
2533 {
2534 	int		answer;
2535 	sigset_t	oldmask, newmask, zeromask;
2536 
2537 	(void) sigemptyset(&zeromask);
2538 	(void) sigemptyset(&newmask);
2539 
2540 	(void) sigaddset(&newmask, SIGCLD);
2541 
2542 	/* Block SIGCLD and save the current signal mask */
2543 	if (sigprocmask(SIG_BLOCK, &newmask, &oldmask) < 0)
2544 		perror("SIG_BLOCK error");
2545 
2546 	/*
2547 	 * Wait around until the process dies.
2548 	 */
2549 	if (process->p_flags & LIVING)
2550 		(void) sigsuspend(&zeromask);
2551 
2552 	/* Reset signal mask to unblock SIGCLD */
2553 	if (sigprocmask(SIG_SETMASK, &oldmask, NULL) < 0)
2554 		perror("SIG_SETMASK error");
2555 
2556 	if (process->p_flags & LIVING)
2557 		return (FAILURE);
2558 
2559 	/*
2560 	 * Make sure to only return 16 bits so that answer will always
2561 	 * be positive whenever the process of interest really died.
2562 	 */
2563 	answer = (process->p_exit & 0xffff);
2564 
2565 	/*
2566 	 * Free the slot in the proc_table.
2567 	 */
2568 	process->p_flags = 0;
2569 	return (answer);
2570 }
2571 
2572 /*
2573  * notify_pam_dead(): calls into the PAM framework to close the given session.
2574  */
2575 static void
2576 notify_pam_dead(struct utmpx *up)
2577 {
2578 	pam_handle_t *pamh;
2579 	char user[sizeof (up->ut_user) + 1];
2580 	char ttyn[sizeof (up->ut_line) + 1];
2581 	char host[sizeof (up->ut_host) + 1];
2582 
2583 	/*
2584 	 * PAM does not take care of updating utmpx/wtmpx.
2585 	 */
2586 	(void) snprintf(user, sizeof (user), "%s", up->ut_user);
2587 	(void) snprintf(ttyn, sizeof (ttyn), "%s", up->ut_line);
2588 	(void) snprintf(host, sizeof (host), "%s", up->ut_host);
2589 
2590 	if (pam_start("init", user, NULL, &pamh) == PAM_SUCCESS)  {
2591 		(void) pam_set_item(pamh, PAM_TTY, ttyn);
2592 		(void) pam_set_item(pamh, PAM_RHOST, host);
2593 		(void) pam_close_session(pamh, 0);
2594 		(void) pam_end(pamh, PAM_SUCCESS);
2595 	}
2596 }
2597 
2598 /*
2599  * Check you can access utmpx (As / may be read-only and
2600  * /var may not be mounted yet).
2601  */
2602 static int
2603 access_utmpx(void)
2604 {
2605 	do {
2606 		utmpx_ok = (access(UTMPX, R_OK|W_OK) == 0);
2607 	} while (!utmpx_ok && errno == EINTR);
2608 
2609 	return (utmpx_ok);
2610 }
2611 
2612 /*
2613  * account() updates entries in utmpx and appends new entries to the end of
2614  * wtmpx (assuming they exist).  The program argument indicates the name of
2615  * program if INIT_PROCESS, otherwise should be NULL.
2616  *
2617  * account() only blocks for INIT_PROCESS requests.
2618  *
2619  * Returns non-zero if write failed.
2620  */
2621 static int
2622 account(short state, struct PROC_TABLE *process, char *program)
2623 {
2624 	struct utmpx utmpbuf, *u, *oldu;
2625 	int tmplen;
2626 	char fail_buf[UT_LINE_SZ];
2627 	sigset_t block, unblock;
2628 
2629 	if (!utmpx_ok && !access_utmpx()) {
2630 		return (-1);
2631 	}
2632 
2633 	/*
2634 	 * Set up the prototype for the utmp structure we want to write.
2635 	 */
2636 	u = &utmpbuf;
2637 	(void) memset(u, 0, sizeof (struct utmpx));
2638 
2639 	/*
2640 	 * Fill in the various fields of the utmp structure.
2641 	 */
2642 	u->ut_id[0] = process->p_id[0];
2643 	u->ut_id[1] = process->p_id[1];
2644 	u->ut_id[2] = process->p_id[2];
2645 	u->ut_id[3] = process->p_id[3];
2646 	u->ut_pid = process->p_pid;
2647 
2648 	/*
2649 	 * Fill the "ut_exit" structure.
2650 	 */
2651 	u->ut_exit.e_termination = WTERMSIG(process->p_exit);
2652 	u->ut_exit.e_exit = WEXITSTATUS(process->p_exit);
2653 	u->ut_type = state;
2654 
2655 	(void) time(&u->ut_tv.tv_sec);
2656 
2657 	/*
2658 	 * Block signals for utmp update.
2659 	 */
2660 	(void) sigfillset(&block);
2661 	(void) sigprocmask(SIG_BLOCK, &block, &unblock);
2662 
2663 	/*
2664 	 * See if there already is such an entry in the "utmpx" file.
2665 	 */
2666 	setutxent();	/* Start at beginning of utmpx file. */
2667 
2668 	if ((oldu = getutxid(u)) != NULL) {
2669 		/*
2670 		 * Copy in the old "user", "line" and "host" fields
2671 		 * to our new structure.
2672 		 */
2673 		bcopy(oldu->ut_user, u->ut_user, sizeof (u->ut_user));
2674 		bcopy(oldu->ut_line, u->ut_line, sizeof (u->ut_line));
2675 		bcopy(oldu->ut_host, u->ut_host, sizeof (u->ut_host));
2676 		u->ut_syslen = (tmplen = strlen(u->ut_host)) ?
2677 			min(tmplen + 1, sizeof (u->ut_host)) : 0;
2678 
2679 		if (oldu->ut_type == USER_PROCESS && state == DEAD_PROCESS) {
2680 			notify_pam_dead(oldu);
2681 		}
2682 	}
2683 
2684 	/*
2685 	 * Perform special accounting. Insert the special string into the
2686 	 * ut_line array. For INIT_PROCESSes put in the name of the
2687 	 * program in the "ut_user" field.
2688 	 */
2689 	switch (state) {
2690 	case INIT_PROCESS:
2691 		(void) strncpy(u->ut_user, program, sizeof (u->ut_user));
2692 		(void) strcpy(fail_buf, "INIT_PROCESS");
2693 		break;
2694 
2695 	default:
2696 		(void) strlcpy(fail_buf, u->ut_id, sizeof (u->ut_id) + 1);
2697 		break;
2698 	}
2699 
2700 	/*
2701 	 * Write out the updated entry to utmpx file.
2702 	 */
2703 	if (pututxline(u) == NULL) {
2704 		console(B_TRUE, "Failed write of utmpx entry: \"%s\": %s\n",
2705 		    fail_buf, strerror(errno));
2706 		endutxent();
2707 		(void) sigprocmask(SIG_SETMASK, &unblock, NULL);
2708 		return (-1);
2709 	}
2710 
2711 	/*
2712 	 * If we're able to write to utmpx, then attempt to add to the
2713 	 * end of the wtmpx file.
2714 	 */
2715 	updwtmpx(WTMPX, u);
2716 
2717 	endutxent();
2718 
2719 	(void) sigprocmask(SIG_SETMASK, &unblock, NULL);
2720 
2721 	return (0);
2722 }
2723 
2724 static void
2725 clearent(pid_t pid, short status)
2726 {
2727 	struct utmpx *up;
2728 	sigset_t block, unblock;
2729 
2730 	/*
2731 	 * Block signals for utmp update.
2732 	 */
2733 	(void) sigfillset(&block);
2734 	(void) sigprocmask(SIG_BLOCK, &block, &unblock);
2735 
2736 	/*
2737 	 * No error checking for now.
2738 	 */
2739 
2740 	setutxent();
2741 	while (up = getutxent()) {
2742 		if (up->ut_pid == pid) {
2743 			if (up->ut_type == DEAD_PROCESS) {
2744 				/*
2745 				 * Cleaned up elsewhere.
2746 				 */
2747 				continue;
2748 			}
2749 
2750 			notify_pam_dead(up);
2751 
2752 			up->ut_type = DEAD_PROCESS;
2753 			up->ut_exit.e_termination = WTERMSIG(status);
2754 			up->ut_exit.e_exit = WEXITSTATUS(status);
2755 			(void) time(&up->ut_tv.tv_sec);
2756 
2757 			(void) pututxline(up);
2758 			/*
2759 			 * Now attempt to add to the end of the
2760 			 * wtmp and wtmpx files.  Do not create
2761 			 * if they don't already exist.
2762 			 */
2763 			updwtmpx(WTMPX, up);
2764 
2765 			break;
2766 		}
2767 	}
2768 
2769 	endutxent();
2770 	(void) sigprocmask(SIG_SETMASK, &unblock, NULL);
2771 }
2772 
2773 /*
2774  * prog_name() searches for the word or unix path name and
2775  * returns a pointer to the last element of the pathname.
2776  */
2777 static char *
2778 prog_name(char *string)
2779 {
2780 	char	*ptr, *ptr2;
2781 	/* XXX - utmp - fix name length */
2782 	static char word[_POSIX_LOGIN_NAME_MAX];
2783 
2784 	/*
2785 	 * Search for the first word skipping leading spaces and tabs.
2786 	 */
2787 	while (*string == ' ' || *string == '\t')
2788 		string++;
2789 
2790 	/*
2791 	 * If the first non-space non-tab character is not one allowed in
2792 	 * a word, return a pointer to a null string, otherwise parse the
2793 	 * pathname.
2794 	 */
2795 	if (*string != '.' && *string != '/' && *string != '_' &&
2796 	    (*string < 'a' || *string > 'z') &&
2797 	    (*string < 'A' || * string > 'Z') &&
2798 	    (*string < '0' || *string > '9'))
2799 		return ("");
2800 
2801 	/*
2802 	 * Parse the pathname looking forward for '/', ' ', '\t', '\n' or
2803 	 * '\0'.  Each time a '/' is found, move "ptr" to one past the
2804 	 * '/', thus when a ' ', '\t', '\n', or '\0' is found, "ptr" will
2805 	 * point to the last element of the pathname.
2806 	 */
2807 	for (ptr = string;
2808 		*string != ' ' && *string != '\t' && *string != '\n' &&
2809 							*string != '\0';
2810 		string++) {
2811 		if (*string == '/')
2812 			ptr = string+1;
2813 	}
2814 
2815 	/*
2816 	 * Copy out up to the size of the "ut_user" array into "word",
2817 	 * null terminate it and return a pointer to it.
2818 	 */
2819 	/* XXX - utmp - fix name length */
2820 	for (ptr2 = &word[0]; ptr2 < &word[_POSIX_LOGIN_NAME_MAX - 1] &&
2821 	    ptr < string; /* CSTYLED */)
2822 		*ptr2++ = *ptr++;
2823 
2824 	*ptr2 = '\0';
2825 	return (&word[0]);
2826 }
2827 
2828 
2829 /*
2830  * realcon() returns a nonzero value if there is a character device
2831  * associated with SYSCON that has the same device number as CONSOLE.
2832  */
2833 static int
2834 realcon()
2835 {
2836 	struct stat sconbuf, conbuf;
2837 
2838 	if (stat(SYSCON, &sconbuf) != -1 &&
2839 	    stat(CONSOLE, &conbuf) != -1 &&
2840 	    S_ISCHR(sconbuf.st_mode) &&
2841 	    S_ISCHR(conbuf.st_mode) &&
2842 	    sconbuf.st_rdev == conbuf.st_rdev) {
2843 		return (1);
2844 	} else {
2845 		return (0);
2846 	}
2847 }
2848 
2849 
2850 /*
2851  * get_ioctl_syscon() retrieves the SYSCON settings from the IOCTLSYSCON file.
2852  * Returns true if the IOCTLSYSCON file needs to be written (with
2853  * write_ioctl_syscon() below)
2854  */
2855 static int
2856 get_ioctl_syscon()
2857 {
2858 	FILE	*fp;
2859 	unsigned int	iflags, oflags, cflags, lflags, ldisc, cc[18];
2860 	int		i, valid_format = 0;
2861 
2862 	/*
2863 	 * Read in the previous modes for SYSCON from IOCTLSYSCON.
2864 	 */
2865 	if ((fp = fopen(IOCTLSYSCON, "r")) == NULL) {
2866 		stored_syscon_termios = dflt_termios;
2867 		console(B_TRUE,
2868 		    "warning:%s does not exist, default settings assumed\n",
2869 		    IOCTLSYSCON);
2870 	} else {
2871 
2872 	    i = fscanf(fp,
2873 	    "%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x",
2874 		&iflags, &oflags, &cflags, &lflags,
2875 		&cc[0], &cc[1], &cc[2], &cc[3], &cc[4], &cc[5], &cc[6],
2876 		&cc[7], &cc[8], &cc[9], &cc[10], &cc[11], &cc[12], &cc[13],
2877 		&cc[14], &cc[15], &cc[16], &cc[17]);
2878 
2879 	    if (i == 22) {
2880 		stored_syscon_termios.c_iflag = iflags;
2881 		stored_syscon_termios.c_oflag = oflags;
2882 		stored_syscon_termios.c_cflag = cflags;
2883 		stored_syscon_termios.c_lflag = lflags;
2884 		for (i = 0; i < 18; i++)
2885 			stored_syscon_termios.c_cc[i] = (char)cc[i];
2886 		valid_format = 1;
2887 	    } else if (i == 13) {
2888 		rewind(fp);
2889 		i = fscanf(fp, "%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x",
2890 		    &iflags, &oflags, &cflags, &lflags, &ldisc, &cc[0], &cc[1],
2891 		    &cc[2], &cc[3], &cc[4], &cc[5], &cc[6], &cc[7]);
2892 
2893 		/*
2894 		 * If the file is formatted properly, use the values to
2895 		 * initialize the console terminal condition.
2896 		 */
2897 		stored_syscon_termios.c_iflag = (ushort_t)iflags;
2898 		stored_syscon_termios.c_oflag = (ushort_t)oflags;
2899 		stored_syscon_termios.c_cflag = (ushort_t)cflags;
2900 		stored_syscon_termios.c_lflag = (ushort_t)lflags;
2901 		for (i = 0; i < 8; i++)
2902 			stored_syscon_termios.c_cc[i] = (char)cc[i];
2903 		valid_format = 1;
2904 	    }
2905 	    (void) fclose(fp);
2906 
2907 	    /* If the file is badly formatted, use the default settings. */
2908 	    if (!valid_format)
2909 		stored_syscon_termios = dflt_termios;
2910 	}
2911 
2912 	/* If the file had a bad format, rewrite it later. */
2913 	return (!valid_format);
2914 }
2915 
2916 
2917 static void
2918 write_ioctl_syscon()
2919 {
2920 	FILE *fp;
2921 	int i;
2922 
2923 	(void) unlink(SYSCON);
2924 	(void) link(SYSTTY, SYSCON);
2925 	(void) umask(022);
2926 	fp = fopen(IOCTLSYSCON, "w");
2927 
2928 	(void) fprintf(fp, "%x:%x:%x:%x:0", stored_syscon_termios.c_iflag,
2929 	    stored_syscon_termios.c_oflag, stored_syscon_termios.c_cflag,
2930 	    stored_syscon_termios.c_lflag);
2931 	for (i = 0; i < 8; ++i)
2932 		(void) fprintf(fp, ":%x", stored_syscon_termios.c_cc[i]);
2933 	(void) putc('\n', fp);
2934 
2935 	(void) fflush(fp);
2936 	(void) fsync(fileno(fp));
2937 	(void) fclose(fp);
2938 	(void) umask(cmask);
2939 }
2940 
2941 
2942 /*
2943  * void console(boolean_t, char *, ...)
2944  *   Outputs the requested message to the system console.  Note that the number
2945  *   of arguments passed to console() should be determined by the print format.
2946  *
2947  *   The "prefix" parameter indicates whether or not "INIT: " should precede the
2948  *   message.
2949  *
2950  *   To make sure we write to the console in a sane fashion, we use the modes
2951  *   we keep in stored_syscon_termios (which we read out of /etc/ioctl.syscon).
2952  *   Afterwards we restore whatever modes were already there.
2953  */
2954 /* PRINTFLIKE2 */
2955 static void
2956 console(boolean_t prefix, char *format, ...)
2957 {
2958 	char	outbuf[BUFSIZ];
2959 	va_list	args;
2960 	int fd, getret;
2961 	struct termios old_syscon_termios;
2962 	FILE *f;
2963 
2964 	/*
2965 	 * We open SYSCON anew each time in case it has changed (see
2966 	 * userinit()).
2967 	 */
2968 	if ((fd = open(SYSCON, O_RDWR | O_NOCTTY)) < 0 ||
2969 	    (f = fdopen(fd, "r+")) == NULL) {
2970 		if (prefix)
2971 			syslog(LOG_WARNING, "INIT: ");
2972 		va_start(args, format);
2973 		vsyslog(LOG_WARNING, format, args);
2974 		va_end(args);
2975 		if (fd >= 0)
2976 			(void) close(fd);
2977 		return;
2978 	}
2979 	setbuf(f, &outbuf[0]);
2980 
2981 	getret = tcgetattr(fd, &old_syscon_termios);
2982 	old_syscon_termios.c_cflag &= ~HUPCL;
2983 	if (realcon())
2984 		/* Don't overwrite cflag of real console. */
2985 		stored_syscon_termios.c_cflag = old_syscon_termios.c_cflag;
2986 
2987 	stored_syscon_termios.c_cflag &= ~HUPCL;
2988 
2989 	(void) tcsetattr(fd, TCSANOW, &stored_syscon_termios);
2990 
2991 	if (prefix)
2992 		(void) fprintf(f, "\nINIT: ");
2993 	va_start(args, format);
2994 	(void) vfprintf(f, format, args);
2995 	va_end(args);
2996 
2997 	if (getret == 0)
2998 		(void) tcsetattr(fd, TCSADRAIN, &old_syscon_termios);
2999 
3000 	(void) fclose(f);
3001 }
3002 
3003 /*
3004  * timer() is a substitute for sleep() which uses alarm() and pause().
3005  */
3006 static void
3007 timer(int waitime)
3008 {
3009 	setimer(waitime);
3010 	while (time_up == FALSE)
3011 		(void) pause();
3012 }
3013 
3014 static void
3015 setimer(int timelimit)
3016 {
3017 	alarmclk();
3018 	(void) alarm(timelimit);
3019 	time_up = (timelimit ? FALSE : TRUE);
3020 }
3021 
3022 /*
3023  * Fails with
3024  *   ENOMEM - out of memory
3025  *   ECONNABORTED - repository connection broken
3026  *   EPERM - permission denied
3027  *   EACCES - backend access denied
3028  *   EROFS - backend readonly
3029  */
3030 static int
3031 get_or_add_startd(scf_instance_t *inst)
3032 {
3033 	scf_handle_t *h;
3034 	scf_scope_t *scope = NULL;
3035 	scf_service_t *svc = NULL;
3036 	int ret = 0;
3037 
3038 	h = scf_instance_handle(inst);
3039 
3040 	if (scf_handle_decode_fmri(h, SCF_SERVICE_STARTD, NULL, NULL, inst,
3041 	    NULL, NULL, SCF_DECODE_FMRI_EXACT) == 0)
3042 		return (0);
3043 
3044 	switch (scf_error()) {
3045 	case SCF_ERROR_CONNECTION_BROKEN:
3046 		return (ECONNABORTED);
3047 
3048 	case SCF_ERROR_NOT_FOUND:
3049 		break;
3050 
3051 	case SCF_ERROR_HANDLE_MISMATCH:
3052 	case SCF_ERROR_INVALID_ARGUMENT:
3053 	case SCF_ERROR_CONSTRAINT_VIOLATED:
3054 	default:
3055 		bad_error("scf_handle_decode_fmri", scf_error());
3056 	}
3057 
3058 	/* Make sure we're right, since we're adding piece-by-piece. */
3059 	assert(strcmp(SCF_SERVICE_STARTD,
3060 	    "svc:/system/svc/restarter:default") == 0);
3061 
3062 	if ((scope = scf_scope_create(h)) == NULL ||
3063 	    (svc = scf_service_create(h)) == NULL) {
3064 		ret = ENOMEM;
3065 		goto out;
3066 	}
3067 
3068 get_scope:
3069 	if (scf_handle_get_scope(h, SCF_SCOPE_LOCAL, scope) != 0) {
3070 		switch (scf_error()) {
3071 		case SCF_ERROR_CONNECTION_BROKEN:
3072 			ret = ECONNABORTED;
3073 			goto out;
3074 
3075 		case SCF_ERROR_NOT_FOUND:
3076 			(void) fputs(gettext(
3077 			    "smf(5) repository missing local scope.\n"),
3078 			    stderr);
3079 			exit(1);
3080 			/* NOTREACHED */
3081 
3082 		case SCF_ERROR_HANDLE_MISMATCH:
3083 		case SCF_ERROR_INVALID_ARGUMENT:
3084 		default:
3085 			bad_error("scf_handle_get_scope", scf_error());
3086 		}
3087 	}
3088 
3089 get_svc:
3090 	if (scf_scope_get_service(scope, "system/svc/restarter", svc) != 0) {
3091 		switch (scf_error()) {
3092 		case SCF_ERROR_CONNECTION_BROKEN:
3093 			ret = ECONNABORTED;
3094 			goto out;
3095 
3096 		case SCF_ERROR_DELETED:
3097 			goto get_scope;
3098 
3099 		case SCF_ERROR_NOT_FOUND:
3100 			break;
3101 
3102 		case SCF_ERROR_HANDLE_MISMATCH:
3103 		case SCF_ERROR_INVALID_ARGUMENT:
3104 		case SCF_ERROR_NOT_SET:
3105 		default:
3106 			bad_error("scf_scope_get_service", scf_error());
3107 		}
3108 
3109 add_svc:
3110 		if (scf_scope_add_service(scope, "system/svc/restarter", svc) !=
3111 		    0) {
3112 			switch (scf_error()) {
3113 			case SCF_ERROR_CONNECTION_BROKEN:
3114 				ret = ECONNABORTED;
3115 				goto out;
3116 
3117 			case SCF_ERROR_EXISTS:
3118 				goto get_svc;
3119 
3120 			case SCF_ERROR_PERMISSION_DENIED:
3121 				ret = EPERM;
3122 				goto out;
3123 
3124 			case SCF_ERROR_BACKEND_ACCESS:
3125 				ret = EACCES;
3126 				goto out;
3127 
3128 			case SCF_ERROR_BACKEND_READONLY:
3129 				ret = EROFS;
3130 				goto out;
3131 
3132 			case SCF_ERROR_HANDLE_MISMATCH:
3133 			case SCF_ERROR_INVALID_ARGUMENT:
3134 			case SCF_ERROR_NOT_SET:
3135 			default:
3136 				bad_error("scf_scope_add_service", scf_error());
3137 			}
3138 		}
3139 	}
3140 
3141 get_inst:
3142 	if (scf_service_get_instance(svc, "default", inst) != 0) {
3143 		switch (scf_error()) {
3144 		case SCF_ERROR_CONNECTION_BROKEN:
3145 			ret = ECONNABORTED;
3146 			goto out;
3147 
3148 		case SCF_ERROR_DELETED:
3149 			goto add_svc;
3150 
3151 		case SCF_ERROR_NOT_FOUND:
3152 			break;
3153 
3154 		case SCF_ERROR_HANDLE_MISMATCH:
3155 		case SCF_ERROR_INVALID_ARGUMENT:
3156 		case SCF_ERROR_NOT_SET:
3157 		default:
3158 			bad_error("scf_service_get_instance", scf_error());
3159 		}
3160 
3161 		if (scf_service_add_instance(svc, "default", inst) !=
3162 		    0) {
3163 			switch (scf_error()) {
3164 			case SCF_ERROR_CONNECTION_BROKEN:
3165 				ret = ECONNABORTED;
3166 				goto out;
3167 
3168 			case SCF_ERROR_DELETED:
3169 				goto add_svc;
3170 
3171 			case SCF_ERROR_EXISTS:
3172 				goto get_inst;
3173 
3174 			case SCF_ERROR_PERMISSION_DENIED:
3175 				ret = EPERM;
3176 				goto out;
3177 
3178 			case SCF_ERROR_BACKEND_ACCESS:
3179 				ret = EACCES;
3180 				goto out;
3181 
3182 			case SCF_ERROR_BACKEND_READONLY:
3183 				ret = EROFS;
3184 				goto out;
3185 
3186 			case SCF_ERROR_HANDLE_MISMATCH:
3187 			case SCF_ERROR_INVALID_ARGUMENT:
3188 			case SCF_ERROR_NOT_SET:
3189 			default:
3190 				bad_error("scf_service_add_instance",
3191 				    scf_error());
3192 			}
3193 		}
3194 	}
3195 
3196 	ret = 0;
3197 
3198 out:
3199 	scf_service_destroy(svc);
3200 	scf_scope_destroy(scope);
3201 	return (ret);
3202 }
3203 
3204 /*
3205  * Fails with
3206  *   ECONNABORTED - repository connection broken
3207  *   ECANCELED - the transaction's property group was deleted
3208  */
3209 static int
3210 transaction_add_set(scf_transaction_t *tx, scf_transaction_entry_t *ent,
3211     const char *pname, scf_type_t type)
3212 {
3213 change_type:
3214 	if (scf_transaction_property_change_type(tx, ent, pname, type) == 0)
3215 		return (0);
3216 
3217 	switch (scf_error()) {
3218 	case SCF_ERROR_CONNECTION_BROKEN:
3219 		return (ECONNABORTED);
3220 
3221 	case SCF_ERROR_DELETED:
3222 		return (ECANCELED);
3223 
3224 	case SCF_ERROR_NOT_FOUND:
3225 		goto new;
3226 
3227 	case SCF_ERROR_HANDLE_MISMATCH:
3228 	case SCF_ERROR_INVALID_ARGUMENT:
3229 	case SCF_ERROR_NOT_BOUND:
3230 	case SCF_ERROR_NOT_SET:
3231 	default:
3232 		bad_error("scf_transaction_property_change_type", scf_error());
3233 	}
3234 
3235 new:
3236 	if (scf_transaction_property_new(tx, ent, pname, type) == 0)
3237 		return (0);
3238 
3239 	switch (scf_error()) {
3240 	case SCF_ERROR_CONNECTION_BROKEN:
3241 		return (ECONNABORTED);
3242 
3243 	case SCF_ERROR_DELETED:
3244 		return (ECANCELED);
3245 
3246 	case SCF_ERROR_EXISTS:
3247 		goto change_type;
3248 
3249 	case SCF_ERROR_HANDLE_MISMATCH:
3250 	case SCF_ERROR_INVALID_ARGUMENT:
3251 	case SCF_ERROR_NOT_BOUND:
3252 	case SCF_ERROR_NOT_SET:
3253 	default:
3254 		bad_error("scf_transaction_property_new", scf_error());
3255 		/* NOTREACHED */
3256 	}
3257 }
3258 
3259 static void
3260 scferr(void)
3261 {
3262 	switch (scf_error()) {
3263 	case SCF_ERROR_NO_MEMORY:
3264 		console(B_TRUE, gettext("Out of memory.\n"));
3265 		break;
3266 
3267 	case SCF_ERROR_CONNECTION_BROKEN:
3268 		console(B_TRUE, gettext(
3269 		    "Connection to smf(5) repository server broken.\n"));
3270 		break;
3271 
3272 	case SCF_ERROR_NO_RESOURCES:
3273 		console(B_TRUE, gettext(
3274 		    "smf(5) repository server is out of memory.\n"));
3275 		break;
3276 
3277 	case SCF_ERROR_PERMISSION_DENIED:
3278 		console(B_TRUE, gettext("Insufficient privileges.\n"));
3279 		break;
3280 
3281 	default:
3282 		console(B_TRUE, gettext("libscf error: %s\n"),
3283 		    scf_strerror(scf_error()));
3284 	}
3285 }
3286 
3287 static void
3288 lscf_set_runlevel(char rl)
3289 {
3290 	scf_handle_t *h;
3291 	scf_instance_t *inst = NULL;
3292 	scf_propertygroup_t *pg = NULL;
3293 	scf_transaction_t *tx = NULL;
3294 	scf_transaction_entry_t *ent = NULL;
3295 	scf_value_t *val = NULL;
3296 	char buf[2];
3297 	int r;
3298 
3299 	h = scf_handle_create(SCF_VERSION);
3300 	if (h == NULL) {
3301 		scferr();
3302 		return;
3303 	}
3304 
3305 	if (scf_handle_bind(h) != 0) {
3306 		switch (scf_error()) {
3307 		case SCF_ERROR_NO_SERVER:
3308 			console(B_TRUE,
3309 			    gettext("smf(5) repository server not running.\n"));
3310 			goto bail;
3311 
3312 		default:
3313 			scferr();
3314 			goto bail;
3315 		}
3316 	}
3317 
3318 	if ((inst = scf_instance_create(h)) == NULL ||
3319 	    (pg = scf_pg_create(h)) == NULL ||
3320 	    (val = scf_value_create(h)) == NULL ||
3321 	    (tx = scf_transaction_create(h)) == NULL ||
3322 	    (ent = scf_entry_create(h)) == NULL) {
3323 		scferr();
3324 		goto bail;
3325 	}
3326 
3327 get_inst:
3328 	r = get_or_add_startd(inst);
3329 	switch (r) {
3330 	case 0:
3331 		break;
3332 
3333 	case ENOMEM:
3334 	case ECONNABORTED:
3335 	case EPERM:
3336 	case EACCES:
3337 	case EROFS:
3338 		scferr();
3339 		goto bail;
3340 	default:
3341 		bad_error("get_or_add_startd", r);
3342 	}
3343 
3344 get_pg:
3345 	if (scf_instance_get_pg(inst, SCF_PG_OPTIONS_OVR, pg) != 0) {
3346 		switch (scf_error()) {
3347 		case SCF_ERROR_CONNECTION_BROKEN:
3348 			scferr();
3349 			goto bail;
3350 
3351 		case SCF_ERROR_DELETED:
3352 			goto get_inst;
3353 
3354 		case SCF_ERROR_NOT_FOUND:
3355 			break;
3356 
3357 		case SCF_ERROR_HANDLE_MISMATCH:
3358 		case SCF_ERROR_INVALID_ARGUMENT:
3359 		case SCF_ERROR_NOT_SET:
3360 		default:
3361 			bad_error("scf_instance_get_pg", scf_error());
3362 		}
3363 
3364 add_pg:
3365 		if (scf_instance_add_pg(inst, SCF_PG_OPTIONS_OVR,
3366 		    SCF_PG_OPTIONS_OVR_TYPE, SCF_PG_OPTIONS_OVR_FLAGS, pg) !=
3367 		    0) {
3368 			switch (scf_error()) {
3369 			case SCF_ERROR_CONNECTION_BROKEN:
3370 			case SCF_ERROR_PERMISSION_DENIED:
3371 			case SCF_ERROR_BACKEND_ACCESS:
3372 				scferr();
3373 				goto bail;
3374 
3375 			case SCF_ERROR_DELETED:
3376 				goto get_inst;
3377 
3378 			case SCF_ERROR_EXISTS:
3379 				goto get_pg;
3380 
3381 			case SCF_ERROR_HANDLE_MISMATCH:
3382 			case SCF_ERROR_INVALID_ARGUMENT:
3383 			case SCF_ERROR_NOT_SET:
3384 			default:
3385 				bad_error("scf_instance_add_pg", scf_error());
3386 			}
3387 		}
3388 	}
3389 
3390 	buf[0] = rl;
3391 	buf[1] = '\0';
3392 	r = scf_value_set_astring(val, buf);
3393 	assert(r == 0);
3394 
3395 	for (;;) {
3396 		if (scf_transaction_start(tx, pg) != 0) {
3397 			switch (scf_error()) {
3398 			case SCF_ERROR_CONNECTION_BROKEN:
3399 			case SCF_ERROR_PERMISSION_DENIED:
3400 			case SCF_ERROR_BACKEND_ACCESS:
3401 				scferr();
3402 				goto bail;
3403 
3404 			case SCF_ERROR_DELETED:
3405 				goto add_pg;
3406 
3407 			case SCF_ERROR_HANDLE_MISMATCH:
3408 			case SCF_ERROR_NOT_BOUND:
3409 			case SCF_ERROR_IN_USE:
3410 			case SCF_ERROR_NOT_SET:
3411 			default:
3412 				bad_error("scf_transaction_start", scf_error());
3413 			}
3414 		}
3415 
3416 		r = transaction_add_set(tx, ent, "runlevel", SCF_TYPE_ASTRING);
3417 		switch (r) {
3418 		case 0:
3419 			break;
3420 
3421 		case ECONNABORTED:
3422 			scferr();
3423 			goto bail;
3424 
3425 		case ECANCELED:
3426 			scf_transaction_reset(tx);
3427 			goto add_pg;
3428 
3429 		default:
3430 			bad_error("transaction_add_set", r);
3431 		}
3432 
3433 		r = scf_entry_add_value(ent, val);
3434 		assert(r == 0);
3435 
3436 		r = scf_transaction_commit(tx);
3437 		if (r == 1)
3438 			break;
3439 
3440 		if (r != 0) {
3441 			switch (scf_error()) {
3442 			case SCF_ERROR_CONNECTION_BROKEN:
3443 			case SCF_ERROR_PERMISSION_DENIED:
3444 			case SCF_ERROR_BACKEND_ACCESS:
3445 			case SCF_ERROR_BACKEND_READONLY:
3446 				scferr();
3447 				goto bail;
3448 
3449 			case SCF_ERROR_DELETED:
3450 				scf_transaction_reset(tx);
3451 				goto add_pg;
3452 
3453 			case SCF_ERROR_INVALID_ARGUMENT:
3454 			case SCF_ERROR_NOT_BOUND:
3455 			case SCF_ERROR_NOT_SET:
3456 			default:
3457 				bad_error("scf_transaction_commit",
3458 				    scf_error());
3459 			}
3460 		}
3461 
3462 		scf_transaction_reset(tx);
3463 		(void) scf_pg_update(pg);
3464 	}
3465 
3466 bail:
3467 	scf_transaction_destroy(tx);
3468 	scf_entry_destroy(ent);
3469 	scf_value_destroy(val);
3470 	scf_pg_destroy(pg);
3471 	scf_instance_destroy(inst);
3472 
3473 	(void) scf_handle_unbind(h);
3474 	scf_handle_destroy(h);
3475 }
3476 
3477 /*
3478  * Function to handle requests from users to main init running as process 1.
3479  */
3480 static void
3481 userinit(int argc, char **argv)
3482 {
3483 	FILE	*fp;
3484 	char	*ln;
3485 	int	init_signal;
3486 	struct stat	sconbuf, conbuf;
3487 	const char *usage_msg = "Usage: init [0123456SsQqabc]\n";
3488 
3489 	/*
3490 	 * We are a user invoked init.  Is there an argument and is it
3491 	 * a single character?  If not, print usage message and quit.
3492 	 */
3493 	if (argc != 2 || argv[1][1] != '\0') {
3494 		(void) fprintf(stderr, usage_msg);
3495 		exit(0);
3496 	}
3497 
3498 	if ((init_signal = lvlname_to_state((char)argv[1][0])) == -1) {
3499 		(void) fprintf(stderr, usage_msg);
3500 		(void) audit_put_record(ADT_FAILURE, ADT_FAIL_VALUE_BAD_CMD,
3501 		    argv[1]);
3502 		exit(1);
3503 	}
3504 
3505 	if (init_signal == SINGLE_USER) {
3506 		/*
3507 		 * Make sure this process is talking to a legal tty line
3508 		 * and that /dev/syscon is linked to this line.
3509 		 */
3510 		ln = ttyname(0);	/* Get the name of tty */
3511 		if (ln == NULL) {
3512 			(void) fprintf(stderr,
3513 			    "Standard input not a tty line\n");
3514 			(void) audit_put_record(ADT_FAILURE,
3515 			    ADT_FAIL_VALUE_BAD_TTY, argv[1]);
3516 			exit(1);
3517 		}
3518 
3519 		if ((stat(ln, &sconbuf) != -1) &&
3520 		    (stat(SYSCON, &conbuf) == -1 ||
3521 		    sconbuf.st_rdev != conbuf.st_rdev)) {
3522 			/*
3523 			 * /dev/syscon needs to change.
3524 			 * Unlink /dev/syscon and relink it to the current line.
3525 			 */
3526 			if (lstat(SYSCON, &conbuf) != -1 &&
3527 			    unlink(SYSCON) == FAILURE) {
3528 				perror("Can't unlink /dev/syscon");
3529 				(void) fprintf(stderr,
3530 				    "Run command on the system console.\n");
3531 				(void) audit_put_record(ADT_FAILURE,
3532 				    ADT_FAIL_VALUE_PROGRAM, argv[1]);
3533 				exit(1);
3534 			}
3535 			if (symlink(ln, SYSCON) == FAILURE) {
3536 				(void) fprintf(stderr,
3537 				    "Can't symlink /dev/syscon to %s: %s", ln,
3538 				    strerror(errno));
3539 
3540 				/* Try to leave a syscon */
3541 				(void) link(SYSTTY, SYSCON);
3542 				(void) audit_put_record(ADT_FAILURE,
3543 				    ADT_FAIL_VALUE_PROGRAM, argv[1]);
3544 				exit(1);
3545 			}
3546 
3547 			/*
3548 			 * Try to leave a message on system console saying where
3549 			 * /dev/syscon is currently connected.
3550 			 */
3551 			if ((fp = fopen(SYSTTY, "r+")) != NULL) {
3552 				(void) fprintf(fp,
3553 				    "\n****	SYSCON CHANGED TO %s	****\n",
3554 				    ln);
3555 				(void) fclose(fp);
3556 			}
3557 		}
3558 	}
3559 
3560 	update_boot_archive(init_signal);
3561 
3562 	(void) audit_put_record(ADT_SUCCESS, ADT_SUCCESS, argv[1]);
3563 
3564 	/*
3565 	 * Signal init; init will take care of telling svc.startd.
3566 	 */
3567 	if (kill(init_pid, init_signal) == FAILURE) {
3568 		(void) fprintf(stderr, "Must be super-user\n");
3569 		(void) audit_put_record(ADT_FAILURE,
3570 		    ADT_FAIL_VALUE_AUTH, argv[1]);
3571 		exit(1);
3572 	}
3573 
3574 	exit(0);
3575 }
3576 
3577 
3578 #define	DELTA	25	/* Number of pidlist elements to allocate at a time */
3579 
3580 /* ARGSUSED */
3581 void
3582 sigpoll(int n)
3583 {
3584 	struct pidrec prec;
3585 	struct pidrec *p = &prec;
3586 	struct pidlist *plp;
3587 	struct pidlist *tp, *savetp;
3588 	int i;
3589 
3590 	if (Pfd < 0) {
3591 		return;
3592 	}
3593 
3594 	for (;;) {
3595 		/*
3596 		 * Important Note: Either read will really fail (in which case
3597 		 * return is all we can do) or will get EAGAIN (Pfd was opened
3598 		 * O_NDELAY), in which case we also want to return.
3599 		 * Always return from here!
3600 		 */
3601 		if (read(Pfd, p, sizeof (struct pidrec)) !=
3602 						sizeof (struct pidrec)) {
3603 			return;
3604 		}
3605 		switch (p->pd_type) {
3606 
3607 		case ADDPID:
3608 			/*
3609 			 * New "godchild", add to list.
3610 			 */
3611 			if (Plfree == NULL) {
3612 				plp = (struct pidlist *)calloc(DELTA,
3613 				    sizeof (struct pidlist));
3614 				if (plp == NULL) {
3615 					/* Can't save pid */
3616 					break;
3617 				}
3618 				/*
3619 				 * Point at 2nd record allocated, we'll use plp.
3620 				 */
3621 				tp = plp + 1;
3622 				/*
3623 				 * Link them into a chain.
3624 				 */
3625 				Plfree = tp;
3626 				for (i = 0; i < DELTA - 2; i++) {
3627 					tp->pl_next = tp + 1;
3628 					tp++;
3629 				}
3630 			} else {
3631 				plp = Plfree;
3632 				Plfree = plp->pl_next;
3633 			}
3634 			plp->pl_pid = p->pd_pid;
3635 			plp->pl_dflag = 0;
3636 			plp->pl_next = NULL;
3637 			/*
3638 			 * Note - pid list is kept in increasing order of pids.
3639 			 */
3640 			if (Plhead == NULL) {
3641 				Plhead = plp;
3642 				/* Back up to read next record */
3643 				break;
3644 			} else {
3645 				savetp = tp = Plhead;
3646 				while (tp) {
3647 					if (plp->pl_pid > tp->pl_pid) {
3648 						savetp = tp;
3649 						tp = tp->pl_next;
3650 						continue;
3651 					} else if (plp->pl_pid < tp->pl_pid) {
3652 						if (tp == Plhead) {
3653 							plp->pl_next = Plhead;
3654 							Plhead = plp;
3655 						} else {
3656 							plp->pl_next =
3657 							    savetp->pl_next;
3658 							savetp->pl_next = plp;
3659 						}
3660 						break;
3661 					} else {
3662 						/* Already in list! */
3663 						plp->pl_next = Plfree;
3664 						Plfree = plp;
3665 						break;
3666 					}
3667 				}
3668 				if (tp == NULL) {
3669 					/* Add to end of list */
3670 					savetp->pl_next = plp;
3671 				}
3672 			}
3673 			/* Back up to read next record. */
3674 			break;
3675 
3676 		case REMPID:
3677 			/*
3678 			 * This one was handled by someone else,
3679 			 * purge it from the list.
3680 			 */
3681 			if (Plhead == NULL) {
3682 				/* Back up to read next record. */
3683 				break;
3684 			}
3685 			savetp = tp = Plhead;
3686 			while (tp) {
3687 				if (p->pd_pid > tp->pl_pid) {
3688 					/* Keep on looking. */
3689 					savetp = tp;
3690 					tp = tp->pl_next;
3691 					continue;
3692 				} else if (p->pd_pid < tp->pl_pid) {
3693 					/* Not in list. */
3694 					break;
3695 				} else {
3696 					/* Found it. */
3697 					if (tp == Plhead)
3698 						Plhead = tp->pl_next;
3699 					else
3700 						savetp->pl_next = tp->pl_next;
3701 					tp->pl_next = Plfree;
3702 					Plfree = tp;
3703 					break;
3704 				}
3705 			}
3706 			/* Back up to read next record. */
3707 			break;
3708 		default:
3709 			console(B_TRUE, "Bad message on initpipe\n");
3710 			break;
3711 		}
3712 	}
3713 }
3714 
3715 
3716 static void
3717 cleanaux()
3718 {
3719 	struct pidlist *savep, *p;
3720 	pid_t	pid;
3721 	short	status;
3722 
3723 	(void) sigset(SIGCLD, SIG_DFL);
3724 	Gchild = 0;	/* Note - Safe to do this here since no SIGCLDs */
3725 	(void) sighold(SIGPOLL);
3726 	savep = p = Plhead;
3727 	while (p) {
3728 		if (p->pl_dflag) {
3729 			/*
3730 			 * Found an entry to delete,
3731 			 * remove it from list first.
3732 			 */
3733 			pid = p->pl_pid;
3734 			status = p->pl_exit;
3735 			if (p == Plhead) {
3736 				Plhead = p->pl_next;
3737 				p->pl_next = Plfree;
3738 				Plfree = p;
3739 				savep = p = Plhead;
3740 			} else {
3741 				savep->pl_next = p->pl_next;
3742 				p->pl_next = Plfree;
3743 				Plfree = p;
3744 				p = savep->pl_next;
3745 			}
3746 			clearent(pid, status);
3747 			continue;
3748 		}
3749 		savep = p;
3750 		p = p->pl_next;
3751 	}
3752 	(void) sigrelse(SIGPOLL);
3753 	(void) sigset(SIGCLD, childeath);
3754 }
3755 
3756 
3757 /*
3758  * /etc/inittab has more entries and we have run out of room in the proc_table
3759  * array. Double the size of proc_table to accomodate the extra entries.
3760  */
3761 static void
3762 increase_proc_table_size()
3763 {
3764 	sigset_t block, unblock;
3765 	void *ptr;
3766 	size_t delta = num_proc * sizeof (struct PROC_TABLE);
3767 
3768 
3769 	/*
3770 	 * Block signals for realloc.
3771 	 */
3772 	(void) sigfillset(&block);
3773 	(void) sigprocmask(SIG_BLOCK, &block, &unblock);
3774 
3775 
3776 	/*
3777 	 * On failure we just return because callers of this function check
3778 	 * for failure.
3779 	 */
3780 	do
3781 		ptr = realloc(g_state, g_state_sz + delta);
3782 	while (ptr == NULL && errno == EAGAIN);
3783 
3784 	if (ptr != NULL) {
3785 		/* ensure that the new part is initialized to zero */
3786 		bzero((caddr_t)ptr + g_state_sz, delta);
3787 
3788 		g_state = ptr;
3789 		g_state_sz += delta;
3790 		num_proc <<= 1;
3791 	}
3792 
3793 
3794 	/* unblock our signals before returning */
3795 	(void) sigprocmask(SIG_SETMASK, &unblock, NULL);
3796 }
3797 
3798 
3799 
3800 /*
3801  * Sanity check g_state.
3802  */
3803 static int
3804 st_sane()
3805 {
3806 	int i;
3807 	struct PROC_TABLE *ptp;
3808 
3809 
3810 	/* Note: cur_state is encoded as a signal number */
3811 	if (cur_state < 1 || cur_state == 9 || cur_state > 13)
3812 		return (0);
3813 
3814 	/* Check num_proc */
3815 	if (g_state_sz != sizeof (struct init_state) + (num_proc - 1) *
3816 	    sizeof (struct PROC_TABLE))
3817 		return (0);
3818 
3819 	/* Check proc_table */
3820 	for (i = 0, ptp = proc_table; i < num_proc; ++i, ++ptp) {
3821 		/* skip unoccupied entries */
3822 		if (!(ptp->p_flags & OCCUPIED))
3823 			continue;
3824 
3825 		/* p_flags has no bits outside of PF_MASK */
3826 		if (ptp->p_flags & ~(PF_MASK))
3827 			return (0);
3828 
3829 		/* 5 <= pid <= MAXPID */
3830 		if (ptp->p_pid < 5 || ptp->p_pid > MAXPID)
3831 			return (0);
3832 
3833 		/* p_count >= 0 */
3834 		if (ptp->p_count < 0)
3835 			return (0);
3836 
3837 		/* p_time >= 0 */
3838 		if (ptp->p_time < 0)
3839 			return (0);
3840 	}
3841 
3842 	return (1);
3843 }
3844 
3845 /*
3846  * Initialize our state.
3847  *
3848  * If the system just booted, then init_state_file, which is located on an
3849  * everpresent tmpfs filesystem, should not exist.
3850  *
3851  * If we were restarted, then init_state_file should exist, in
3852  * which case we'll read it in, sanity check it, and use it.
3853  *
3854  * Note: You can't call console() until proc_table is ready.
3855  */
3856 void
3857 st_init()
3858 {
3859 	struct stat stb;
3860 	int ret, st_fd, insane = 0;
3861 	size_t to_be_read;
3862 	char *ptr;
3863 
3864 
3865 	booting = 1;
3866 
3867 	do {
3868 		/*
3869 		 * If we can exclusively create the file, then we're the
3870 		 * initial invocation of init(1M).
3871 		 */
3872 		st_fd = open(init_state_file, O_RDWR | O_CREAT | O_EXCL,
3873 		    S_IRUSR | S_IWUSR);
3874 	} while (st_fd == -1 && errno == EINTR);
3875 	if (st_fd != -1)
3876 		goto new_state;
3877 
3878 	booting = 0;
3879 
3880 	do {
3881 		st_fd = open(init_state_file, O_RDWR, S_IRUSR | S_IWUSR);
3882 	} while (st_fd == -1 && errno == EINTR);
3883 	if (st_fd == -1)
3884 		goto new_state;
3885 
3886 	/* Get the size of the file. */
3887 	do
3888 		ret = fstat(st_fd, &stb);
3889 	while (ret == -1 && errno == EINTR);
3890 	if (ret == -1)
3891 		goto new_state;
3892 
3893 	do
3894 		g_state = malloc(stb.st_size);
3895 	while (g_state == NULL && errno == EAGAIN);
3896 	if (g_state == NULL)
3897 		goto new_state;
3898 
3899 	to_be_read = stb.st_size;
3900 	ptr = (char *)g_state;
3901 	while (to_be_read > 0) {
3902 		ssize_t read_ret;
3903 
3904 		read_ret = read(st_fd, ptr, to_be_read);
3905 		if (read_ret < 0) {
3906 			if (errno == EINTR)
3907 				continue;
3908 
3909 			goto new_state;
3910 		}
3911 
3912 		to_be_read -= read_ret;
3913 		ptr += read_ret;
3914 	}
3915 
3916 	(void) close(st_fd);
3917 
3918 	g_state_sz = stb.st_size;
3919 
3920 	if (st_sane()) {
3921 		console(B_TRUE, "Restarting.\n");
3922 		return;
3923 	}
3924 
3925 	insane = 1;
3926 
3927 new_state:
3928 	if (st_fd >= 0)
3929 		(void) close(st_fd);
3930 	else
3931 		(void) unlink(init_state_file);
3932 
3933 	if (g_state != NULL)
3934 		free(g_state);
3935 
3936 	/* Something went wrong, so allocate new state. */
3937 	g_state_sz = sizeof (struct init_state) +
3938 	    ((init_num_proc - 1) * sizeof (struct PROC_TABLE));
3939 	do
3940 		g_state = calloc(1, g_state_sz);
3941 	while (g_state == NULL && errno == EAGAIN);
3942 	if (g_state == NULL) {
3943 		/* Fatal error! */
3944 		exit(errno);
3945 	}
3946 
3947 	g_state->ist_runlevel = -1;
3948 	num_proc = init_num_proc;
3949 
3950 	if (!booting) {
3951 		console(B_TRUE, "Restarting.\n");
3952 
3953 		/* Overwrite the bad state file. */
3954 		st_write();
3955 
3956 		if (!insane) {
3957 			console(B_TRUE,
3958 			    "Error accessing persistent state file `%s'.  "
3959 			    "Ignored.\n", init_state_file);
3960 		} else {
3961 			console(B_TRUE,
3962 			    "Persistent state file `%s' is invalid and was "
3963 			    "ignored.\n", init_state_file);
3964 		}
3965 	}
3966 }
3967 
3968 /*
3969  * Write g_state out to the state file.
3970  */
3971 void
3972 st_write()
3973 {
3974 	static int complained = 0;
3975 
3976 	int st_fd;
3977 	char *cp;
3978 	size_t sz;
3979 	ssize_t ret;
3980 
3981 
3982 	do {
3983 		st_fd = open(init_next_state_file,
3984 		    O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
3985 	} while (st_fd < 0 && errno == EINTR);
3986 	if (st_fd < 0)
3987 		goto err;
3988 
3989 	cp = (char *)g_state;
3990 	sz = g_state_sz;
3991 	while (sz > 0) {
3992 		ret = write(st_fd, cp, sz);
3993 		if (ret < 0) {
3994 			if (errno == EINTR)
3995 				continue;
3996 
3997 			goto err;
3998 		}
3999 
4000 		sz -= ret;
4001 		cp += ret;
4002 	}
4003 
4004 	(void) close(st_fd);
4005 	st_fd = -1;
4006 	if (rename(init_next_state_file, init_state_file)) {
4007 		(void) unlink(init_next_state_file);
4008 		goto err;
4009 	}
4010 	complained = 0;
4011 
4012 	return;
4013 
4014 err:
4015 	if (st_fd >= 0)
4016 		(void) close(st_fd);
4017 
4018 	if (!booting && !complained) {
4019 		/*
4020 		 * Only complain after the filesystem should have come up.
4021 		 * And only do it once so we don't loop between console()
4022 		 * & efork().
4023 		 */
4024 		complained = 1;
4025 		if (st_fd)
4026 			console(B_TRUE, "Couldn't write persistent state "
4027 			    "file `%s'.\n", init_state_file);
4028 		else
4029 			console(B_TRUE, "Couldn't move persistent state "
4030 			    "file `%s' to `%s'.\n", init_next_state_file,
4031 			    init_state_file);
4032 	}
4033 }
4034 
4035 /*
4036  * Create a contract with these parameters.
4037  */
4038 static int
4039 contract_make_template(uint_t info, uint_t critical, uint_t fatal,
4040     uint64_t cookie)
4041 {
4042 	int fd, err;
4043 
4044 	char *ioctl_tset_emsg =
4045 	    "Couldn't set \"%s\" contract template parameter: %s.\n";
4046 
4047 	do
4048 		fd = open64(CTFS_ROOT "/process/template", O_RDWR);
4049 	while (fd < 0 && errno == EINTR);
4050 	if (fd < 0) {
4051 		console(B_TRUE, "Couldn't create process template: %s.\n",
4052 		    strerror(errno));
4053 		return (-1);
4054 	}
4055 
4056 	if (err = ct_pr_tmpl_set_param(fd, CT_PR_INHERIT | CT_PR_REGENT))
4057 		console(B_TRUE, "Contract set template inherit, regent "
4058 		    "failed.\n");
4059 
4060 	/*
4061 	 * These errors result in a misconfigured template, which is better
4062 	 * than no template at all, so warn but don't abort.
4063 	 */
4064 	if (err = ct_tmpl_set_informative(fd, info))
4065 		console(B_TRUE, ioctl_tset_emsg, "informative", strerror(err));
4066 
4067 	if (err = ct_tmpl_set_critical(fd, critical))
4068 		console(B_TRUE, ioctl_tset_emsg, "critical", strerror(err));
4069 
4070 	if (err = ct_pr_tmpl_set_fatal(fd, fatal))
4071 		console(B_TRUE, ioctl_tset_emsg, "fatal", strerror(err));
4072 
4073 	if (err = ct_tmpl_set_cookie(fd, cookie))
4074 		console(B_TRUE, ioctl_tset_emsg, "cookie", strerror(err));
4075 
4076 	(void) fcntl(fd, F_SETFD, FD_CLOEXEC);
4077 
4078 	return (fd);
4079 }
4080 
4081 /*
4082  * Create the templates and open an event file descriptor.  We use dup2(2) to
4083  * get these descriptors away from the stdin/stdout/stderr group.
4084  */
4085 static void
4086 contracts_init()
4087 {
4088 	int err, fd;
4089 
4090 	/*
4091 	 * Create & configure a legacy template.  We only want empty events so
4092 	 * we know when to abandon them.
4093 	 */
4094 	legacy_tmpl = contract_make_template(0, CT_PR_EV_EMPTY, CT_PR_EV_HWERR,
4095 	    ORDINARY_COOKIE);
4096 	if (legacy_tmpl >= 0) {
4097 		err = ct_tmpl_activate(legacy_tmpl);
4098 		if (err != 0) {
4099 			(void) close(legacy_tmpl);
4100 			legacy_tmpl = -1;
4101 			console(B_TRUE,
4102 			    "Couldn't activate legacy template (%s); "
4103 			    "legacy services will be in init's contract.\n",
4104 			    strerror(err));
4105 		}
4106 	} else
4107 		console(B_TRUE,
4108 		    "Legacy services will be in init's contract.\n");
4109 
4110 	if (dup2(legacy_tmpl, 255) == -1) {
4111 		console(B_TRUE, "Could not duplicate legacy template: %s.\n",
4112 		    strerror(errno));
4113 	} else {
4114 		(void) close(legacy_tmpl);
4115 		legacy_tmpl = 255;
4116 	}
4117 
4118 	(void) fcntl(legacy_tmpl, F_SETFD, FD_CLOEXEC);
4119 
4120 	startd_tmpl = contract_make_template(0, CT_PR_EV_EMPTY,
4121 	    CT_PR_EV_HWERR | CT_PR_EV_SIGNAL | CT_PR_EV_CORE, STARTD_COOKIE);
4122 
4123 	if (dup2(startd_tmpl, 254) == -1) {
4124 		console(B_TRUE, "Could not duplicate startd template: %s.\n",
4125 		    strerror(errno));
4126 	} else {
4127 		(void) close(startd_tmpl);
4128 		startd_tmpl = 254;
4129 	}
4130 
4131 	(void) fcntl(startd_tmpl, F_SETFD, FD_CLOEXEC);
4132 
4133 	if (legacy_tmpl < 0 && startd_tmpl < 0) {
4134 		/* The creation errors have already been reported. */
4135 		console(B_TRUE,
4136 		    "Ignoring contract events.  Core smf(5) services will not "
4137 		    "be restarted.\n");
4138 		return;
4139 	}
4140 
4141 	/*
4142 	 * Open an event endpoint.
4143 	 */
4144 	do
4145 		fd = open64(CTFS_ROOT "/process/pbundle", O_RDONLY);
4146 	while (fd < 0 && errno == EINTR);
4147 	if (fd < 0) {
4148 		console(B_TRUE,
4149 		    "Couldn't open process pbundle: %s.  Core smf(5) services "
4150 		    "will not be restarted.\n", strerror(errno));
4151 		return;
4152 	}
4153 
4154 	if (dup2(fd, 253) == -1) {
4155 		console(B_TRUE, "Could not duplicate process bundle: %s.\n",
4156 		    strerror(errno));
4157 	} else {
4158 		(void) close(fd);
4159 		fd = 253;
4160 	}
4161 
4162 	(void) fcntl(fd, F_SETFD, FD_CLOEXEC);
4163 
4164 	/* Reset in case we've been restarted. */
4165 	(void) ct_event_reset(fd);
4166 
4167 	poll_fds[0].fd = fd;
4168 	poll_fds[0].events = POLLIN;
4169 	poll_nfds = 1;
4170 }
4171 
4172 static int
4173 contract_getfile(ctid_t id, const char *name, int oflag)
4174 {
4175 	int fd;
4176 
4177 	do
4178 		fd = contract_open(id, "process", name, oflag);
4179 	while (fd < 0 && errno == EINTR);
4180 
4181 	if (fd < 0)
4182 		console(B_TRUE, "Couldn't open %s for contract %ld: %s.\n",
4183 		    name, id, strerror(errno));
4184 
4185 	return (fd);
4186 }
4187 
4188 static int
4189 contract_cookie(ctid_t id, uint64_t *cp)
4190 {
4191 	int fd, err;
4192 	ct_stathdl_t sh;
4193 
4194 	fd = contract_getfile(id, "status", O_RDONLY);
4195 	if (fd < 0)
4196 		return (-1);
4197 
4198 	err = ct_status_read(fd, CTD_COMMON, &sh);
4199 	if (err != 0) {
4200 		console(B_TRUE, "Couldn't read status of contract %ld: %s.\n",
4201 		    id, strerror(err));
4202 		(void) close(fd);
4203 		return (-1);
4204 	}
4205 
4206 	(void) close(fd);
4207 
4208 	*cp = ct_status_get_cookie(sh);
4209 
4210 	ct_status_free(sh);
4211 	return (0);
4212 }
4213 
4214 static void
4215 contract_ack(ct_evthdl_t e)
4216 {
4217 	int fd;
4218 
4219 	if (ct_event_get_flags(e) & CTE_INFO)
4220 		return;
4221 
4222 	fd = contract_getfile(ct_event_get_ctid(e), "ctl", O_WRONLY);
4223 	if (fd < 0)
4224 		return;
4225 
4226 	(void) ct_ctl_ack(fd, ct_event_get_evid(e));
4227 	(void) close(fd);
4228 }
4229 
4230 /*
4231  * Process a contract event.
4232  */
4233 static void
4234 contract_event(struct pollfd *poll)
4235 {
4236 	ct_evthdl_t e;
4237 	int err;
4238 	ctid_t ctid;
4239 
4240 	if (!(poll->revents & POLLIN)) {
4241 		if (poll->revents & POLLERR)
4242 			console(B_TRUE,
4243 			    "Unknown poll error on my process contract "
4244 			    "pbundle.\n");
4245 		return;
4246 	}
4247 
4248 	err = ct_event_read(poll->fd, &e);
4249 	if (err != 0) {
4250 		console(B_TRUE, "Error retrieving contract event: %s.\n",
4251 		    strerror(err));
4252 		return;
4253 	}
4254 
4255 	ctid = ct_event_get_ctid(e);
4256 
4257 	if (ct_event_get_type(e) == CT_PR_EV_EMPTY) {
4258 		uint64_t cookie;
4259 		int ret, abandon = 1;
4260 
4261 		/* If it's svc.startd, restart it.  Else, abandon. */
4262 		ret = contract_cookie(ctid, &cookie);
4263 
4264 		if (ret == 0) {
4265 			if (cookie == STARTD_COOKIE &&
4266 			    do_restart_startd) {
4267 				if (smf_debug)
4268 					console(B_TRUE, "Restarting "
4269 					    "svc.startd.\n");
4270 
4271 				/*
4272 				 * Account for the failure.  If the failure rate
4273 				 * exceeds a threshold, then drop to maintenance
4274 				 * mode.
4275 				 */
4276 				startd_record_failure();
4277 				if (startd_failure_rate_critical())
4278 					enter_maintenance();
4279 
4280 				if (startd_tmpl < 0)
4281 					console(B_TRUE,
4282 					    "Restarting svc.startd in "
4283 					    "improper contract (bad "
4284 					    "template).\n");
4285 
4286 				(void) startd_run(startd_cline, startd_tmpl,
4287 				    ctid);
4288 
4289 				abandon = 0;
4290 			}
4291 		}
4292 
4293 		if (abandon && (err = contract_abandon_id(ctid))) {
4294 			console(B_TRUE, "Couldn't abandon contract %ld: %s.\n",
4295 			    ctid, strerror(err));
4296 		}
4297 
4298 		/*
4299 		 * No need to acknowledge the event since either way the
4300 		 * originating contract should be abandoned.
4301 		 */
4302 	} else {
4303 		console(B_TRUE,
4304 		    "Received contract event of unexpected type %d from "
4305 		    "contract %ld.\n", ct_event_get_type(e), ctid);
4306 
4307 		if ((ct_event_get_flags(e) & (CTE_INFO | CTE_ACK)) == 0)
4308 			/* Allow unexpected critical events to be released. */
4309 			contract_ack(e);
4310 	}
4311 
4312 	ct_event_free(e);
4313 }
4314 
4315 /*
4316  * svc.startd(1M) Management
4317  */
4318 
4319 /*
4320  * (Re)start svc.startd(1M).  old_ctid should be the contract ID of the old
4321  * contract, or 0 if we're starting it for the first time.  If wait is true
4322  * we'll wait for and return the exit value of the child.
4323  */
4324 static int
4325 startd_run(const char *cline, int tmpl, ctid_t old_ctid)
4326 {
4327 	int err, i, ret, did_activate;
4328 	pid_t pid;
4329 	struct stat sb;
4330 
4331 	if (cline[0] == '\0')
4332 		return (-1);
4333 
4334 	/*
4335 	 * Don't restart startd if the system is rebooting or shutting down.
4336 	 */
4337 	do {
4338 		ret = stat("/etc/svc/volatile/resetting", &sb);
4339 	} while (ret == -1 && errno == EINTR);
4340 
4341 	if (ret == 0) {
4342 		if (smf_debug)
4343 			console(B_TRUE, "Quiescing for reboot.\n");
4344 		(void) pause();
4345 		return (-1);
4346 	}
4347 
4348 	err = ct_pr_tmpl_set_transfer(tmpl, old_ctid);
4349 	if (err == EINVAL) {
4350 		console(B_TRUE, "Remake startd_tmpl; reattempt transfer.\n");
4351 		tmpl = startd_tmpl = contract_make_template(0, CT_PR_EV_EMPTY,
4352 		    CT_PR_EV_HWERR, STARTD_COOKIE);
4353 
4354 		err = ct_pr_tmpl_set_transfer(tmpl, old_ctid);
4355 	}
4356 	if (err != 0) {
4357 		console(B_TRUE,
4358 		    "Couldn't set transfer parameter of contract template: "
4359 		    "%s.\n", strerror(err));
4360 	}
4361 
4362 	did_activate = !(ct_tmpl_activate(tmpl));
4363 	if (!did_activate)
4364 		console(B_TRUE,
4365 		    "Template activation failed; not starting \"%s\" in "
4366 		    "proper contract.\n", cline);
4367 
4368 	/* Hold SIGCHLD so we can wait if necessary. */
4369 	(void) sighold(SIGCHLD);
4370 
4371 	while ((pid = fork()) < 0) {
4372 		if (errno == EPERM) {
4373 			console(B_TRUE, "Insufficient permission to fork.\n");
4374 
4375 			/* Now that's a doozy. */
4376 			exit(1);
4377 		}
4378 
4379 		console(B_TRUE,
4380 		    "fork() for svc.startd failed: %s.  Will retry in 1 "
4381 		    "second...\n", strerror(errno));
4382 
4383 		(void) sleep(1);
4384 
4385 		/* Eventually give up? */
4386 	}
4387 
4388 	if (pid == 0) {
4389 		/* child */
4390 
4391 		/* See the comment in efork() */
4392 		for (i = SIGHUP; i <= SIGRTMAX; ++i) {
4393 			if (i == SIGTTOU || i == SIGTTIN || i == SIGTSTP)
4394 				(void) sigset(i, SIG_IGN);
4395 			else
4396 				(void) sigset(i, SIG_DFL);
4397 		}
4398 
4399 		if (smf_options != NULL) {
4400 			/* Put smf_options in the environment. */
4401 			glob_envp[glob_envn] =
4402 			    malloc(sizeof ("SMF_OPTIONS=") - 1 +
4403 				strlen(smf_options) + 1);
4404 
4405 			if (glob_envp[glob_envn] != NULL) {
4406 				/* LINTED */
4407 				(void) sprintf(glob_envp[glob_envn],
4408 				    "SMF_OPTIONS=%s", smf_options);
4409 				glob_envp[glob_envn+1] = NULL;
4410 			} else {
4411 				console(B_TRUE,
4412 				    "Could not set SMF_OPTIONS (%s).\n",
4413 				    strerror(errno));
4414 			}
4415 		}
4416 
4417 		if (smf_debug)
4418 			console(B_TRUE, "Executing svc.startd\n");
4419 
4420 		(void) execle(SH, "INITSH", "-c", cline, NULL, glob_envp);
4421 
4422 		console(B_TRUE, "Could not exec \"%s\" (%s).\n", SH,
4423 		    strerror(errno));
4424 
4425 		exit(1);
4426 	}
4427 
4428 	/* parent */
4429 
4430 	if (did_activate) {
4431 		if (legacy_tmpl < 0 || ct_tmpl_activate(legacy_tmpl) != 0)
4432 			(void) ct_tmpl_clear(tmpl);
4433 	}
4434 
4435 	/* Clear the old_ctid reference so the kernel can reclaim it. */
4436 	if (old_ctid != 0)
4437 		(void) ct_pr_tmpl_set_transfer(tmpl, 0);
4438 
4439 	(void) sigrelse(SIGCHLD);
4440 
4441 	return (0);
4442 }
4443 
4444 /*
4445  * void startd_record_failure(void)
4446  *   Place the current time in our circular array of svc.startd failures.
4447  */
4448 void
4449 startd_record_failure()
4450 {
4451 	int index = startd_failure_index++ % NSTARTD_FAILURE_TIMES;
4452 
4453 	startd_failure_time[index] = gethrtime();
4454 }
4455 
4456 /*
4457  * int startd_failure_rate_critical(void)
4458  *   Return true if the average failure interval is less than the permitted
4459  *   interval.  Implicit success if insufficient measurements for an average
4460  *   exist.
4461  */
4462 int
4463 startd_failure_rate_critical()
4464 {
4465 	int n = startd_failure_index;
4466 	hrtime_t avg_ns = 0;
4467 
4468 	if (startd_failure_index < NSTARTD_FAILURE_TIMES)
4469 		return (0);
4470 
4471 	avg_ns =
4472 	    (startd_failure_time[(n - 1) % NSTARTD_FAILURE_TIMES] -
4473 	    startd_failure_time[n % NSTARTD_FAILURE_TIMES]) /
4474 	    NSTARTD_FAILURE_TIMES;
4475 
4476 	return (avg_ns < STARTD_FAILURE_RATE_NS);
4477 }
4478 
4479 /*
4480  * returns string that must be free'd
4481  */
4482 
4483 static char
4484 *audit_boot_msg()
4485 {
4486 	char		*b, *p;
4487 	char		desc[] = "booted";
4488 	zoneid_t	zid = getzoneid();
4489 
4490 	b = malloc(sizeof (desc) + MAXNAMELEN + 3);
4491 	if (b == NULL)
4492 		return (b);
4493 
4494 	p = b;
4495 	p += strlcpy(p, desc, sizeof (desc));
4496 	if (zid != GLOBAL_ZONEID) {
4497 		p += strlcpy(p, ": ", 3);
4498 		(void) getzonenamebyid(zid, p, MAXNAMELEN);
4499 	}
4500 	return (b);
4501 }
4502 
4503 /*
4504  * Generate AUE_init_solaris audit record.  Return 1 if
4505  * auditing is enabled in case the caller cares.
4506  *
4507  * In the case of userint() or a local zone invocation of
4508  * one_true_init, the process initially contains the audit
4509  * characteristics of the process that invoked init.  The first pass
4510  * through here uses those characteristics then for the case of
4511  * one_true_init in a local zone, clears them so subsequent system
4512  * state changes won't be attributed to the person who booted the
4513  * zone.
4514  */
4515 static int
4516 audit_put_record(int pass_fail, int status, char *msg)
4517 {
4518 	adt_session_data_t	*ah;
4519 	adt_event_data_t	*event;
4520 
4521 	if (!adt_audit_enabled())
4522 		return (0);
4523 
4524 	/*
4525 	 * the PROC_DATA picks up the context to tell whether this is
4526 	 * an attributed record (auid = -2 is unattributed)
4527 	 */
4528 	if (adt_start_session(&ah, NULL, ADT_USE_PROC_DATA)) {
4529 		console(B_TRUE, "audit failure:  %s\n", strerror(errno));
4530 		return (1);
4531 	}
4532 	event = adt_alloc_event(ah, ADT_init_solaris);
4533 	if (event == NULL) {
4534 		console(B_TRUE, "audit failure:  %s\n", strerror(errno));
4535 		(void) adt_end_session(ah);
4536 		return (1);
4537 	}
4538 	event->adt_init_solaris.info = msg;	/* NULL is ok here */
4539 
4540 	if (adt_put_event(event, pass_fail, status)) {
4541 		console(B_TRUE, "audit failure:  %s\n", strerror(errno));
4542 		(void) adt_end_session(ah);
4543 		return (1);
4544 	}
4545 	adt_free_event(event);
4546 
4547 	(void) adt_end_session(ah);
4548 
4549 	return (1);
4550 }
4551