xref: /illumos-gate/usr/src/cmd/fm/fmd/common/fmd.c (revision 9c94f155)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
582d33c01Sav145390  * Common Development and Distribution License (the "License").
682d33c01Sav145390  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
21d9638e54Smws 
227c478bd9Sstevel@tonic-gate /*
23cbf75e67SStephen Hanson  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #include <sys/types.h>
287c478bd9Sstevel@tonic-gate #include <sys/utsname.h>
297c478bd9Sstevel@tonic-gate #include <sys/param.h>
307c478bd9Sstevel@tonic-gate #include <sys/systeminfo.h>
317c478bd9Sstevel@tonic-gate #include <sys/fm/util.h>
327c478bd9Sstevel@tonic-gate 
337aec1d6eScindi #include <smbios.h>
347c478bd9Sstevel@tonic-gate #include <limits.h>
357c478bd9Sstevel@tonic-gate #include <unistd.h>
367c478bd9Sstevel@tonic-gate #include <signal.h>
377c478bd9Sstevel@tonic-gate #include <stdlib.h>
387c478bd9Sstevel@tonic-gate #include <stdio.h>
396e1fa242SStephen Hanson #include <ctype.h>
40d9638e54Smws #include <door.h>
417c478bd9Sstevel@tonic-gate 
427c478bd9Sstevel@tonic-gate #include <fmd_conf.h>
437c478bd9Sstevel@tonic-gate #include <fmd_dispq.h>
447c478bd9Sstevel@tonic-gate #include <fmd_timerq.h>
457c478bd9Sstevel@tonic-gate #include <fmd_subr.h>
467c478bd9Sstevel@tonic-gate #include <fmd_error.h>
477c478bd9Sstevel@tonic-gate #include <fmd_module.h>
487c478bd9Sstevel@tonic-gate #include <fmd_thread.h>
497c478bd9Sstevel@tonic-gate #include <fmd_alloc.h>
507c478bd9Sstevel@tonic-gate #include <fmd_string.h>
517c478bd9Sstevel@tonic-gate #include <fmd_builtin.h>
527c478bd9Sstevel@tonic-gate #include <fmd_ustat.h>
537c478bd9Sstevel@tonic-gate #include <fmd_protocol.h>
547c478bd9Sstevel@tonic-gate #include <fmd_scheme.h>
557c478bd9Sstevel@tonic-gate #include <fmd_asru.h>
567c478bd9Sstevel@tonic-gate #include <fmd_case.h>
577c478bd9Sstevel@tonic-gate #include <fmd_log.h>
58d9638e54Smws #include <fmd_idspace.h>
597c478bd9Sstevel@tonic-gate #include <fmd_rpc.h>
607c478bd9Sstevel@tonic-gate #include <fmd_dr.h>
610eb822a1Scindi #include <fmd_topo.h>
62d9638e54Smws #include <fmd_xprt.h>
63d9638e54Smws #include <fmd_ctl.h>
6482d33c01Sav145390 #include <sys/openpromio.h>
6582d33c01Sav145390 #include <libdevinfo.h>
667c478bd9Sstevel@tonic-gate 
677c478bd9Sstevel@tonic-gate #include <fmd.h>
687c478bd9Sstevel@tonic-gate 
697c478bd9Sstevel@tonic-gate extern const nv_alloc_ops_t fmd_nv_alloc_ops;	/* see fmd_nv.c */
707c478bd9Sstevel@tonic-gate 
7124db4641Seschrock const char _fmd_version[] = "1.2";		/* daemon version string */
727c478bd9Sstevel@tonic-gate static char _fmd_plat[MAXNAMELEN];		/* native platform string */
737c478bd9Sstevel@tonic-gate static char _fmd_isa[MAXNAMELEN];		/* native instruction set */
747c478bd9Sstevel@tonic-gate static struct utsname _fmd_uts;			/* native uname(2) info */
75*9c94f155SCheng Sean Ye static char _fmd_psn[MAXNAMELEN];		/* product serial number */
767aec1d6eScindi static char _fmd_csn[MAXNAMELEN];		/* chassis serial number */
777aec1d6eScindi static char _fmd_prod[MAXNAMELEN];		/* product name string */
787c478bd9Sstevel@tonic-gate 
797c478bd9Sstevel@tonic-gate /*
807c478bd9Sstevel@tonic-gate  * Note: the configuration file path is ordered from most common to most host-
817c478bd9Sstevel@tonic-gate  * specific because new conf files are merged/override previous ones.  The
827c478bd9Sstevel@tonic-gate  * module paths are in the opposite order, from most specific to most common,
837c478bd9Sstevel@tonic-gate  * because once a module is loaded fmd will not try to load over the same name.
847c478bd9Sstevel@tonic-gate  */
857c478bd9Sstevel@tonic-gate 
867c478bd9Sstevel@tonic-gate static const char _fmd_conf_path[] =
877c478bd9Sstevel@tonic-gate 	"%r/usr/lib/fm/fmd:"
887c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%m/lib/fm/fmd:"
897c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%i/lib/fm/fmd:"
907c478bd9Sstevel@tonic-gate 	"%r/etc/fm/fmd";
917c478bd9Sstevel@tonic-gate 
927c478bd9Sstevel@tonic-gate static const char _fmd_agent_path[] =
937c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%i/lib/fm/fmd/agents:"
947c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%m/lib/fm/fmd/agents:"
957c478bd9Sstevel@tonic-gate 	"%r/usr/lib/fm/fmd/agents";
967c478bd9Sstevel@tonic-gate 
977c478bd9Sstevel@tonic-gate static const char _fmd_plugin_path[] =
987c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%i/lib/fm/fmd/plugins:"
997c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%m/lib/fm/fmd/plugins:"
1007c478bd9Sstevel@tonic-gate 	"%r/usr/lib/fm/fmd/plugins";
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate static const char _fmd_scheme_path[] =
1037c478bd9Sstevel@tonic-gate 	"usr/lib/fm/fmd/schemes";
1047c478bd9Sstevel@tonic-gate 
1057c478bd9Sstevel@tonic-gate static const fmd_conf_mode_t _fmd_cerror_modes[] = {
1067c478bd9Sstevel@tonic-gate 	{ "unload", "unload offending client module", FMD_CERROR_UNLOAD },
1077c478bd9Sstevel@tonic-gate 	{ "stop", "stop daemon for debugger attach", FMD_CERROR_STOP },
1087c478bd9Sstevel@tonic-gate 	{ "abort", "abort daemon and force core dump", FMD_CERROR_ABORT },
1097c478bd9Sstevel@tonic-gate 	{ NULL, NULL, 0 }
1107c478bd9Sstevel@tonic-gate };
1117c478bd9Sstevel@tonic-gate 
1127c478bd9Sstevel@tonic-gate static const fmd_conf_mode_t _fmd_dbout_modes[] = {
1137c478bd9Sstevel@tonic-gate 	{ "stderr", "send debug messages to stderr", FMD_DBOUT_STDERR },
1147c478bd9Sstevel@tonic-gate 	{ "syslog", "send debug messages to syslog", FMD_DBOUT_SYSLOG },
1157c478bd9Sstevel@tonic-gate 	{ NULL, NULL, 0 }
1167c478bd9Sstevel@tonic-gate };
1177c478bd9Sstevel@tonic-gate 
1187c478bd9Sstevel@tonic-gate static const fmd_conf_mode_t _fmd_debug_modes[] = {
1197c478bd9Sstevel@tonic-gate 	{ "help", "display debugging modes and exit", FMD_DBG_HELP },
1207c478bd9Sstevel@tonic-gate 	{ "mod", "debug module load/unload/locking", FMD_DBG_MOD },
1217c478bd9Sstevel@tonic-gate 	{ "disp", "debug dispatch queue processing", FMD_DBG_DISP },
1227c478bd9Sstevel@tonic-gate 	{ "xprt", "debug transport-specific routines", FMD_DBG_XPRT },
1237c478bd9Sstevel@tonic-gate 	{ "evt", "debug event subsystem routines", FMD_DBG_EVT },
1247c478bd9Sstevel@tonic-gate 	{ "log", "debug log subsystem routines", FMD_DBG_LOG },
1257c478bd9Sstevel@tonic-gate 	{ "tmr", "debug timer subsystem routines", FMD_DBG_TMR },
1267c478bd9Sstevel@tonic-gate 	{ "fmri", "debug fmri subsystem routines", FMD_DBG_FMRI },
1277c478bd9Sstevel@tonic-gate 	{ "asru", "debug asru subsystem routines", FMD_DBG_ASRU },
1287c478bd9Sstevel@tonic-gate 	{ "case", "debug case subsystem routines", FMD_DBG_CASE },
1297c478bd9Sstevel@tonic-gate 	{ "ckpt", "debug checkpoint routines", FMD_DBG_CKPT },
1307c478bd9Sstevel@tonic-gate 	{ "rpc", "debug rpc service routines", FMD_DBG_RPC },
131d9638e54Smws 	{ "trace", "display matching trace calls", FMD_DBG_TRACE },
1327c478bd9Sstevel@tonic-gate 	{ "all", "enable all available debug modes", FMD_DBG_ALL },
1337c478bd9Sstevel@tonic-gate 	{ NULL, NULL, 0 }
1347c478bd9Sstevel@tonic-gate };
1357c478bd9Sstevel@tonic-gate 
1367c478bd9Sstevel@tonic-gate static int
1377c478bd9Sstevel@tonic-gate fmd_cerror_set(fmd_conf_param_t *pp, const char *value)
1387c478bd9Sstevel@tonic-gate {
1397c478bd9Sstevel@tonic-gate 	return (fmd_conf_mode_set(_fmd_cerror_modes, pp, value));
1407c478bd9Sstevel@tonic-gate }
1417c478bd9Sstevel@tonic-gate 
1427c478bd9Sstevel@tonic-gate static int
1437c478bd9Sstevel@tonic-gate fmd_dbout_set(fmd_conf_param_t *pp, const char *value)
1447c478bd9Sstevel@tonic-gate {
1457c478bd9Sstevel@tonic-gate 	return (fmd_conf_mode_set(_fmd_dbout_modes, pp, value));
1467c478bd9Sstevel@tonic-gate }
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate static int
1497c478bd9Sstevel@tonic-gate fmd_debug_set(fmd_conf_param_t *pp, const char *value)
1507c478bd9Sstevel@tonic-gate {
1517c478bd9Sstevel@tonic-gate 	int err = fmd_conf_mode_set(_fmd_debug_modes, pp, value);
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate 	if (err == 0)
1547c478bd9Sstevel@tonic-gate 		fmd.d_fmd_debug = pp->cp_value.cpv_num;
1557c478bd9Sstevel@tonic-gate 
1567c478bd9Sstevel@tonic-gate 	return (err);
1577c478bd9Sstevel@tonic-gate }
1587c478bd9Sstevel@tonic-gate 
1597c478bd9Sstevel@tonic-gate static int
1607c478bd9Sstevel@tonic-gate fmd_trmode_set(fmd_conf_param_t *pp, const char *value)
1617c478bd9Sstevel@tonic-gate {
1627c478bd9Sstevel@tonic-gate 	fmd_tracebuf_f *func;
1637c478bd9Sstevel@tonic-gate 
1647c478bd9Sstevel@tonic-gate 	if (strcasecmp(value, "none") == 0)
1657c478bd9Sstevel@tonic-gate 		func = fmd_trace_none;
1667c478bd9Sstevel@tonic-gate 	else if (strcasecmp(value, "lite") == 0)
1677c478bd9Sstevel@tonic-gate 		func = fmd_trace_lite;
1687c478bd9Sstevel@tonic-gate 	else if (strcasecmp(value, "full") == 0)
1697c478bd9Sstevel@tonic-gate 		func = fmd_trace_full;
1707c478bd9Sstevel@tonic-gate 	else
1717c478bd9Sstevel@tonic-gate 		return (fmd_set_errno(EFMD_CONF_INVAL));
1727c478bd9Sstevel@tonic-gate 
1737c478bd9Sstevel@tonic-gate 	fmd.d_thr_trace = (void (*)())func;
1747c478bd9Sstevel@tonic-gate 	pp->cp_value.cpv_ptr = (void *)func;
1757c478bd9Sstevel@tonic-gate 	return (0);
1767c478bd9Sstevel@tonic-gate }
1777c478bd9Sstevel@tonic-gate 
1787c478bd9Sstevel@tonic-gate static void
1797c478bd9Sstevel@tonic-gate fmd_trmode_get(const fmd_conf_param_t *pp, void *ptr)
1807c478bd9Sstevel@tonic-gate {
1817c478bd9Sstevel@tonic-gate 	*((void **)ptr) = pp->cp_value.cpv_ptr;
1827c478bd9Sstevel@tonic-gate }
1837c478bd9Sstevel@tonic-gate 
1847c478bd9Sstevel@tonic-gate static int
1857c478bd9Sstevel@tonic-gate fmd_clkmode_set(fmd_conf_param_t *pp, const char *value)
1867c478bd9Sstevel@tonic-gate {
1877c478bd9Sstevel@tonic-gate 	const fmd_timeops_t *ops;
1887c478bd9Sstevel@tonic-gate 
1897c478bd9Sstevel@tonic-gate 	if (strcasecmp(value, "native") == 0)
1907c478bd9Sstevel@tonic-gate 		ops = &fmd_timeops_native;
1917c478bd9Sstevel@tonic-gate 	else if (strcasecmp(value, "simulated") == 0)
1927c478bd9Sstevel@tonic-gate 		ops = &fmd_timeops_simulated;
1937c478bd9Sstevel@tonic-gate 	else
1947c478bd9Sstevel@tonic-gate 		return (fmd_set_errno(EFMD_CONF_INVAL));
1957c478bd9Sstevel@tonic-gate 
1967c478bd9Sstevel@tonic-gate 	fmd.d_clockops = ops;
1977c478bd9Sstevel@tonic-gate 	pp->cp_value.cpv_ptr = (void *)ops;
1987c478bd9Sstevel@tonic-gate 	return (0);
1997c478bd9Sstevel@tonic-gate }
2007c478bd9Sstevel@tonic-gate 
2017c478bd9Sstevel@tonic-gate static void
2027c478bd9Sstevel@tonic-gate fmd_clkmode_get(const fmd_conf_param_t *pp, void *ptr)
2037c478bd9Sstevel@tonic-gate {
2047c478bd9Sstevel@tonic-gate 	*((void **)ptr) = pp->cp_value.cpv_ptr;
2057c478bd9Sstevel@tonic-gate }
2067c478bd9Sstevel@tonic-gate 
2077c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_cerror_ops = {
2087c478bd9Sstevel@tonic-gate 	fmd_cerror_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
2097c478bd9Sstevel@tonic-gate };
2107c478bd9Sstevel@tonic-gate 
2117c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_dbout_ops = {
2127c478bd9Sstevel@tonic-gate 	fmd_dbout_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
2137c478bd9Sstevel@tonic-gate };
2147c478bd9Sstevel@tonic-gate 
2157c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_debug_ops = {
2167c478bd9Sstevel@tonic-gate 	fmd_debug_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
2177c478bd9Sstevel@tonic-gate };
2187c478bd9Sstevel@tonic-gate 
2197c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_trmode_ops = {
2207c478bd9Sstevel@tonic-gate 	fmd_trmode_set, fmd_trmode_get, fmd_conf_notsup, fmd_conf_nop
2217c478bd9Sstevel@tonic-gate };
2227c478bd9Sstevel@tonic-gate 
2237c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_clkmode_ops = {
2247c478bd9Sstevel@tonic-gate 	fmd_clkmode_set, fmd_clkmode_get, fmd_conf_notsup, fmd_conf_nop
2257c478bd9Sstevel@tonic-gate };
2267c478bd9Sstevel@tonic-gate 
2277c478bd9Sstevel@tonic-gate static const fmd_conf_formal_t _fmd_conf[] = {
2287c478bd9Sstevel@tonic-gate { "agent.path", &fmd_conf_path, _fmd_agent_path }, /* path for agents */
2297c478bd9Sstevel@tonic-gate { "alloc_msecs", &fmd_conf_uint32, "10" },	/* msecs before alloc retry */
2307c478bd9Sstevel@tonic-gate { "alloc_tries", &fmd_conf_uint32, "3" },	/* max # of alloc retries */
231*9c94f155SCheng Sean Ye { "product_sn", &fmd_conf_string, _fmd_psn },	/* product serial number */
2327aec1d6eScindi { "chassis", &fmd_conf_string, _fmd_csn },	/* chassis serial number */
2337c478bd9Sstevel@tonic-gate { "ckpt.dir", &fmd_conf_string, "var/fm/fmd/ckpt" }, /* ckpt directory path */
2347c478bd9Sstevel@tonic-gate { "ckpt.dirmode", &fmd_conf_int32, "0700" },	/* ckpt directory perm mode */
2357c478bd9Sstevel@tonic-gate { "ckpt.mode", &fmd_conf_int32, "0400" },	/* ckpt file perm mode */
2367c478bd9Sstevel@tonic-gate { "ckpt.restore", &fmd_conf_bool, "true" },	/* restore checkpoints? */
2377c478bd9Sstevel@tonic-gate { "ckpt.save", &fmd_conf_bool, "true" },	/* save checkpoints? */
2387c478bd9Sstevel@tonic-gate { "ckpt.zero", &fmd_conf_bool, "false" },	/* zero checkpoints on start? */
2397c478bd9Sstevel@tonic-gate { "client.buflim", &fmd_conf_size, "10m" },	/* client buffer space limit */
2407c478bd9Sstevel@tonic-gate { "client.dbout", &fmd_dbout_ops, NULL },	/* client debug output sinks */
2417c478bd9Sstevel@tonic-gate { "client.debug", &fmd_conf_bool, NULL },	/* client debug enable */
2427c478bd9Sstevel@tonic-gate { "client.error", &fmd_cerror_ops, "unload" },	/* client error policy */
2437c478bd9Sstevel@tonic-gate { "client.memlim", &fmd_conf_size, "10m" },	/* client allocation limit */
2447c478bd9Sstevel@tonic-gate { "client.evqlim", &fmd_conf_uint32, "256" },	/* client event queue limit */
24525351652SVuong Nguyen { "client.thrlim", &fmd_conf_uint32, "20" },	/* client aux thread limit */
2467c478bd9Sstevel@tonic-gate { "client.thrsig", &fmd_conf_signal, "SIGUSR1" }, /* fmd_thr_signal() value */
2477c478bd9Sstevel@tonic-gate { "client.tmrlim", &fmd_conf_uint32, "1024" },	/* client pending timer limit */
248d9638e54Smws { "client.xprtlim", &fmd_conf_uint32, "256" },	/* client transport limit */
249d9638e54Smws { "client.xprtlog", &fmd_conf_bool, NULL },	/* client transport logging? */
25011114147Sav145390 { "client.xprtqlim", &fmd_conf_uint32, "1024" }, /* client transport queue li */
2517c478bd9Sstevel@tonic-gate { "clock", &fmd_clkmode_ops, "native" },	/* clock operation mode */
2527c478bd9Sstevel@tonic-gate { "conf_path", &fmd_conf_path, _fmd_conf_path }, /* root config file path */
2537c478bd9Sstevel@tonic-gate { "conf_file", &fmd_conf_string, "fmd.conf" },	/* root config file name */
2547c478bd9Sstevel@tonic-gate { "core", &fmd_conf_bool, "false" },		/* force core dump on quit */
2557c478bd9Sstevel@tonic-gate { "dbout", &fmd_dbout_ops, NULL },		/* daemon debug output sinks */
2567c478bd9Sstevel@tonic-gate { "debug", &fmd_debug_ops, NULL },		/* daemon debugging flags */
2577c478bd9Sstevel@tonic-gate { "dictdir", &fmd_conf_string, "usr/lib/fm/dict" }, /* default diagcode dir */
2587c478bd9Sstevel@tonic-gate { "domain", &fmd_conf_string, NULL },		/* domain id for de auth */
25925c6ff4bSstephh { "fakenotpresent", &fmd_conf_uint32, "0" },	/* simulate rsrc not present */
2607c478bd9Sstevel@tonic-gate { "fg", &fmd_conf_bool, "false" },		/* run daemon in foreground */
2617c478bd9Sstevel@tonic-gate { "gc_interval", &fmd_conf_time, "1d" },	/* garbage collection intvl */
2627c478bd9Sstevel@tonic-gate { "ids.avg", &fmd_conf_uint32, "4" },		/* desired idspace chain len */
2637c478bd9Sstevel@tonic-gate { "ids.max", &fmd_conf_uint32, "1024" },	/* maximum idspace buckets */
2647c478bd9Sstevel@tonic-gate { "isaname", &fmd_conf_string, _fmd_isa },	/* instruction set (uname -p) */
2657c478bd9Sstevel@tonic-gate { "log.creator", &fmd_conf_string, "fmd" },	/* exacct log creator string */
2667c478bd9Sstevel@tonic-gate { "log.error", &fmd_conf_string, "var/fm/fmd/errlog" }, /* error log path */
2677c478bd9Sstevel@tonic-gate { "log.fault", &fmd_conf_string, "var/fm/fmd/fltlog" }, /* fault log path */
2687c478bd9Sstevel@tonic-gate { "log.minfree", &fmd_conf_size, "2m" },	/* min log fsys free space */
269d9638e54Smws { "log.rsrc", &fmd_conf_string, "var/fm/fmd/rsrc" }, /* asru log dir path */
2707c478bd9Sstevel@tonic-gate { "log.tryrotate", &fmd_conf_uint32, "10" },	/* max log rotation attempts */
2717c478bd9Sstevel@tonic-gate { "log.waitrotate", &fmd_conf_time, "200ms" },	/* log rotation retry delay */
272d9638e54Smws { "log.xprt", &fmd_conf_string, "var/fm/fmd/xprt" }, /* transport log dir */
2737c478bd9Sstevel@tonic-gate { "machine", &fmd_conf_string, _fmd_uts.machine }, /* machine name (uname -m) */
2747c478bd9Sstevel@tonic-gate { "nodiagcode", &fmd_conf_string, "-" },	/* diagcode to use if error */
275627351e3Scy152378 { "repaircode", &fmd_conf_string, "-" },	/* diagcode for list.repaired */
27625c6ff4bSstephh { "resolvecode", &fmd_conf_string, "-" },	/* diagcode for list.resolved */
27725c6ff4bSstephh { "updatecode", &fmd_conf_string, "-" },	/* diagcode for list.updated */
2787c478bd9Sstevel@tonic-gate { "osrelease", &fmd_conf_string, _fmd_uts.release }, /* release (uname -r) */
2797c478bd9Sstevel@tonic-gate { "osversion", &fmd_conf_string, _fmd_uts.version }, /* version (uname -v) */
2807c478bd9Sstevel@tonic-gate { "platform", &fmd_conf_string, _fmd_plat },	/* platform string (uname -i) */
2817c478bd9Sstevel@tonic-gate { "plugin.close", &fmd_conf_bool, "true" },	/* dlclose plugins on fini */
2827c478bd9Sstevel@tonic-gate { "plugin.path", &fmd_conf_path, _fmd_plugin_path }, /* path for plugin mods */
2837aec1d6eScindi { "product", &fmd_conf_string, _fmd_prod },	/* product name string */
2847c478bd9Sstevel@tonic-gate { "rootdir", &fmd_conf_string, "" },		/* root directory for paths */
2857c478bd9Sstevel@tonic-gate { "rpc.adm.path", &fmd_conf_string, NULL },	/* FMD_ADM rendezvous file */
2867c478bd9Sstevel@tonic-gate { "rpc.adm.prog", &fmd_conf_uint32, "100169" },	/* FMD_ADM rpc program num */
2877c478bd9Sstevel@tonic-gate { "rpc.api.path", &fmd_conf_string, NULL },	/* FMD_API rendezvous file */
2887c478bd9Sstevel@tonic-gate { "rpc.api.prog", &fmd_conf_uint32, "100170" },	/* FMD_API rpc program num */
2897c478bd9Sstevel@tonic-gate { "rpc.rcvsize", &fmd_conf_size, "128k" },	/* rpc receive buffer size */
2907c478bd9Sstevel@tonic-gate { "rpc.sndsize", &fmd_conf_size, "128k" },	/* rpc send buffer size */
2917c478bd9Sstevel@tonic-gate { "rsrc.age", &fmd_conf_time, "30d" },		/* max age of old rsrc log */
2927c478bd9Sstevel@tonic-gate { "rsrc.zero", &fmd_conf_bool, "false" },	/* zero rsrc cache on start? */
2937c478bd9Sstevel@tonic-gate { "schemedir", &fmd_conf_string, _fmd_scheme_path }, /* path for scheme mods */
2947c478bd9Sstevel@tonic-gate { "self.name", &fmd_conf_string, "fmd-self-diagnosis" }, /* self-diag module */
2957c478bd9Sstevel@tonic-gate { "self.dict", &fmd_conf_list, "FMD.dict" },	/* self-diag dictionary list */
2967c478bd9Sstevel@tonic-gate { "server", &fmd_conf_string, _fmd_uts.nodename }, /* server id for de auth */
2977c478bd9Sstevel@tonic-gate { "strbuckets", &fmd_conf_uint32, "211" },	/* size of string hashes */
2987c478bd9Sstevel@tonic-gate #ifdef DEBUG
2997c478bd9Sstevel@tonic-gate { "trace.mode", &fmd_trmode_ops, "full" },	/* trace mode: none/lite/full */
3007c478bd9Sstevel@tonic-gate #else
3017c478bd9Sstevel@tonic-gate { "trace.mode", &fmd_trmode_ops, "lite" },	/* trace mode: none/lite/full */
3027c478bd9Sstevel@tonic-gate #endif
3037c478bd9Sstevel@tonic-gate { "trace.recs", &fmd_conf_uint32, "128" },	/* trace records per thread */
3047c478bd9Sstevel@tonic-gate { "trace.frames", &fmd_conf_uint32, "16" },	/* max trace rec stack frames */
3057c478bd9Sstevel@tonic-gate { "uuidlen", &fmd_conf_uint32, "36" },		/* UUID ASCII string length */
306d9638e54Smws { "xprt.ttl", &fmd_conf_uint8, "1" },		/* default event time-to-live */
3077c478bd9Sstevel@tonic-gate };
3087c478bd9Sstevel@tonic-gate 
3097c478bd9Sstevel@tonic-gate /*
3107c478bd9Sstevel@tonic-gate  * Statistics maintained by fmd itself on behalf of various global subsystems.
3117c478bd9Sstevel@tonic-gate  * NOTE: FMD_TYPE_STRING statistics should not be used here.  If they are
3127c478bd9Sstevel@tonic-gate  * required in the future, the FMD_ADM_MODGSTAT service routine must change.
3137c478bd9Sstevel@tonic-gate  */
3147c478bd9Sstevel@tonic-gate static fmd_statistics_t _fmd_stats = {
3157c478bd9Sstevel@tonic-gate { "errlog.replayed", FMD_TYPE_UINT64, "total events replayed from errlog" },
3167c478bd9Sstevel@tonic-gate { "errlog.partials", FMD_TYPE_UINT64, "events partially committed in errlog" },
3177c478bd9Sstevel@tonic-gate { "errlog.enospc", FMD_TYPE_UINT64, "events not appended to errlog (ENOSPC)" },
3187c478bd9Sstevel@tonic-gate { "fltlog.enospc", FMD_TYPE_UINT64, "events not appended to fltlog (ENOSPC)" },
3197c478bd9Sstevel@tonic-gate { "log.enospc", FMD_TYPE_UINT64, "events not appended to other logs (ENOSPC)" },
3207c478bd9Sstevel@tonic-gate { "dr.gen", FMD_TYPE_UINT64, "dynamic reconfiguration generation" },
3210eb822a1Scindi { "topo.gen", FMD_TYPE_UINT64, "topology snapshot generation" },
3220eb822a1Scindi { "topo.drgen", FMD_TYPE_UINT64, "current topology DR generation number" },
3237c478bd9Sstevel@tonic-gate };
3247c478bd9Sstevel@tonic-gate 
3256e1fa242SStephen Hanson /*
3266e1fa242SStephen Hanson  * SMBIOS serial numbers can contain characters (particularly ':' and ' ')
3276e1fa242SStephen Hanson  * that are invalid for the authority and can break FMRI parsing.  We translate
3286e1fa242SStephen Hanson  * any invalid characters to a safe '-', as well as trimming any leading or
3296e1fa242SStephen Hanson  * trailing whitespace.  Similarly, '/' can be found in some product names
3306e1fa242SStephen Hanson  * so we translate that to '-'.
3316e1fa242SStephen Hanson  */
3326e1fa242SStephen Hanson void
3336e1fa242SStephen Hanson fmd_cleanup_auth_str(char *buf, const char *begin)
3346e1fa242SStephen Hanson {
3356e1fa242SStephen Hanson 	const char *end, *cp;
3366e1fa242SStephen Hanson 	char c;
3376e1fa242SStephen Hanson 	int i;
3386e1fa242SStephen Hanson 
3396e1fa242SStephen Hanson 	end = begin + strlen(begin);
3406e1fa242SStephen Hanson 
3416e1fa242SStephen Hanson 	while (begin < end && isspace(*begin))
3426e1fa242SStephen Hanson 		begin++;
3436e1fa242SStephen Hanson 	while (begin < end && isspace(*(end - 1)))
3446e1fa242SStephen Hanson 		end--;
3456e1fa242SStephen Hanson 
3466e1fa242SStephen Hanson 	if (begin >= end)
3476e1fa242SStephen Hanson 		return;
3486e1fa242SStephen Hanson 
3496e1fa242SStephen Hanson 	cp = begin;
3506e1fa242SStephen Hanson 	for (i = 0; i < MAXNAMELEN - 1; i++) {
3516e1fa242SStephen Hanson 		if (cp >= end)
3526e1fa242SStephen Hanson 			break;
3536e1fa242SStephen Hanson 		c = *cp;
3546e1fa242SStephen Hanson 		if (c == ':' || c == '=' || c == '/' || isspace(c) ||
3556e1fa242SStephen Hanson 		    !isprint(c))
3566e1fa242SStephen Hanson 			buf[i] = '-';
3576e1fa242SStephen Hanson 		else
3586e1fa242SStephen Hanson 			buf[i] = c;
3596e1fa242SStephen Hanson 		cp++;
3606e1fa242SStephen Hanson 	}
3616e1fa242SStephen Hanson 	buf[i] = 0;
3626e1fa242SStephen Hanson }
3636e1fa242SStephen Hanson 
3647c478bd9Sstevel@tonic-gate void
3657c478bd9Sstevel@tonic-gate fmd_create(fmd_t *dp, const char *arg0, const char *root, const char *conf)
3667c478bd9Sstevel@tonic-gate {
3677c478bd9Sstevel@tonic-gate 	fmd_conf_path_t *pap;
3687c478bd9Sstevel@tonic-gate 	char file[PATH_MAX];
369*9c94f155SCheng Sean Ye 	const char *name, *psn, *csn;
3707c478bd9Sstevel@tonic-gate 	fmd_stat_t *sp;
3717c478bd9Sstevel@tonic-gate 	int i;
3727c478bd9Sstevel@tonic-gate 
3737aec1d6eScindi 	smbios_hdl_t *shp;
3747aec1d6eScindi 	smbios_system_t s1;
3757aec1d6eScindi 	smbios_info_t s2;
3767aec1d6eScindi 	id_t id;
3777aec1d6eScindi 
37882d33c01Sav145390 	di_prom_handle_t promh = DI_PROM_HANDLE_NIL;
37982d33c01Sav145390 	di_node_t rooth = DI_NODE_NIL;
38082d33c01Sav145390 	char *bufp;
38182d33c01Sav145390 
3827c478bd9Sstevel@tonic-gate 	(void) sysinfo(SI_PLATFORM, _fmd_plat, sizeof (_fmd_plat));
3837c478bd9Sstevel@tonic-gate 	(void) sysinfo(SI_ARCHITECTURE, _fmd_isa, sizeof (_fmd_isa));
3847c478bd9Sstevel@tonic-gate 	(void) uname(&_fmd_uts);
3857c478bd9Sstevel@tonic-gate 
3867aec1d6eScindi 	if ((shp = smbios_open(NULL, SMB_VERSION, 0, NULL)) != NULL) {
3877aec1d6eScindi 		if ((id = smbios_info_system(shp, &s1)) != SMB_ERR &&
388*9c94f155SCheng Sean Ye 		    smbios_info_common(shp, id, &s2) != SMB_ERR)
3896e1fa242SStephen Hanson 			fmd_cleanup_auth_str(_fmd_prod, s2.smbi_product);
390*9c94f155SCheng Sean Ye 
391*9c94f155SCheng Sean Ye 		if ((psn = smbios_psn(shp)) != NULL)
392*9c94f155SCheng Sean Ye 			fmd_cleanup_auth_str(_fmd_psn, psn);
393*9c94f155SCheng Sean Ye 
394*9c94f155SCheng Sean Ye 		if ((csn = smbios_csn(shp)) != NULL)
395*9c94f155SCheng Sean Ye 			fmd_cleanup_auth_str(_fmd_csn, csn);
396*9c94f155SCheng Sean Ye 
3977aec1d6eScindi 		smbios_close(shp);
398384fce58Shueston 	} else if ((rooth = di_init("/", DINFOPROP)) != DI_NODE_NIL &&
39982d33c01Sav145390 	    (promh = di_prom_init()) != DI_PROM_HANDLE_NIL) {
40082d33c01Sav145390 		if (di_prom_prop_lookup_bytes(promh, rooth, "chassis-sn",
40182d33c01Sav145390 		    (unsigned char **)&bufp) != -1) {
4026e1fa242SStephen Hanson 			fmd_cleanup_auth_str(_fmd_csn, bufp);
4037aec1d6eScindi 		}
40482d33c01Sav145390 	}
40582d33c01Sav145390 
40682d33c01Sav145390 	if (promh != DI_PROM_HANDLE_NIL)
40782d33c01Sav145390 		di_prom_fini(promh);
40882d33c01Sav145390 	if (rooth != DI_NODE_NIL)
40982d33c01Sav145390 		di_fini(rooth);
4107aec1d6eScindi 
4117c478bd9Sstevel@tonic-gate 	bzero(dp, sizeof (fmd_t));
4127c478bd9Sstevel@tonic-gate 
4137c478bd9Sstevel@tonic-gate 	dp->d_version = _fmd_version;
4147c478bd9Sstevel@tonic-gate 	dp->d_pname = fmd_strbasename(arg0);
4157c478bd9Sstevel@tonic-gate 	dp->d_pid = getpid();
4167c478bd9Sstevel@tonic-gate 
4177c478bd9Sstevel@tonic-gate 	if (pthread_key_create(&dp->d_key, NULL) != 0)
4187c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to create pthread key");
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_xprt_lock, NULL);
4217c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_err_lock, NULL);
4227c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_thr_lock, NULL);
4237c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_mod_lock, NULL);
4247c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_stats_lock, NULL);
4250eb822a1Scindi 	(void) pthread_mutex_init(&dp->d_topo_lock, NULL);
4267c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_init(&dp->d_log_lock, NULL);
42793136fe2Sstephh 	(void) pthread_mutex_init(&dp->d_fmd_lock, NULL);
42893136fe2Sstephh 	(void) pthread_cond_init(&dp->d_fmd_cv, NULL);
4297c478bd9Sstevel@tonic-gate 
4307c478bd9Sstevel@tonic-gate 	/*
4317c478bd9Sstevel@tonic-gate 	 * A small number of properties must be set manually before we open
4327c478bd9Sstevel@tonic-gate 	 * the root configuration file.  These include any settings for our
4337c478bd9Sstevel@tonic-gate 	 * memory allocator and path expansion token values, because these
4347c478bd9Sstevel@tonic-gate 	 * values are needed by the routines in fmd_conf.c itself.  After
4357c478bd9Sstevel@tonic-gate 	 * the root configuration file is processed, we reset these properties
4367c478bd9Sstevel@tonic-gate 	 * based upon the latest values from the configuration file.
4377c478bd9Sstevel@tonic-gate 	 */
4387c478bd9Sstevel@tonic-gate 	dp->d_alloc_msecs = 10;
4397c478bd9Sstevel@tonic-gate 	dp->d_alloc_tries = 3;
4407c478bd9Sstevel@tonic-gate 	dp->d_str_buckets = 211;
4417c478bd9Sstevel@tonic-gate 
4427c478bd9Sstevel@tonic-gate 	dp->d_rootdir = root ? root : "";
4437c478bd9Sstevel@tonic-gate 	dp->d_platform = _fmd_plat;
4447c478bd9Sstevel@tonic-gate 	dp->d_machine = _fmd_uts.machine;
4457c478bd9Sstevel@tonic-gate 	dp->d_isaname = _fmd_isa;
4467c478bd9Sstevel@tonic-gate 
447d9638e54Smws 	dp->d_conf = fmd_conf_open(conf, sizeof (_fmd_conf) /
448d9638e54Smws 	    sizeof (_fmd_conf[0]), _fmd_conf, FMD_CONF_DEFER);
4497c478bd9Sstevel@tonic-gate 
4507c478bd9Sstevel@tonic-gate 	if (dp->d_conf == NULL) {
4517c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT,
4527c478bd9Sstevel@tonic-gate 		    "failed to load required configuration properties\n");
4537c478bd9Sstevel@tonic-gate 	}
4547c478bd9Sstevel@tonic-gate 
4557c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "alloc.msecs", &dp->d_alloc_msecs);
4567c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "alloc.tries", &dp->d_alloc_tries);
4577c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "strbuckets", &dp->d_str_buckets);
4587c478bd9Sstevel@tonic-gate 
4597c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "platform", &dp->d_platform);
4607c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "machine", &dp->d_machine);
4617c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "isaname", &dp->d_isaname);
4627c478bd9Sstevel@tonic-gate 
4637c478bd9Sstevel@tonic-gate 	/*
4647c478bd9Sstevel@tonic-gate 	 * Manually specified rootdirs override config files, so only update
4657c478bd9Sstevel@tonic-gate 	 * d_rootdir based on the config files we parsed if no 'root' was set.
4667c478bd9Sstevel@tonic-gate 	 */
4677c478bd9Sstevel@tonic-gate 	if (root == NULL)
4687c478bd9Sstevel@tonic-gate 		(void) fmd_conf_getprop(dp->d_conf, "rootdir", &dp->d_rootdir);
4697c478bd9Sstevel@tonic-gate 	else
4707c478bd9Sstevel@tonic-gate 		(void) fmd_conf_setprop(dp->d_conf, "rootdir", dp->d_rootdir);
4717c478bd9Sstevel@tonic-gate 
4727c478bd9Sstevel@tonic-gate 	/*
4737c478bd9Sstevel@tonic-gate 	 * Once the base conf file properties are loaded, lookup the values
4747c478bd9Sstevel@tonic-gate 	 * of $conf_path and $conf_file and merge in any other conf files.
4757c478bd9Sstevel@tonic-gate 	 */
4767c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "conf_path", &pap);
4777c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "conf_file", &name);
4787c478bd9Sstevel@tonic-gate 
4797c478bd9Sstevel@tonic-gate 	for (i = 0; i < pap->cpa_argc; i++) {
4807c478bd9Sstevel@tonic-gate 		(void) snprintf(file, sizeof (file),
4817c478bd9Sstevel@tonic-gate 		    "%s/%s", pap->cpa_argv[i], name);
4827c478bd9Sstevel@tonic-gate 		if (access(file, F_OK) == 0)
4837c478bd9Sstevel@tonic-gate 			fmd_conf_merge(dp->d_conf, file);
4847c478bd9Sstevel@tonic-gate 	}
4857c478bd9Sstevel@tonic-gate 
4867c478bd9Sstevel@tonic-gate 	/*
4877c478bd9Sstevel@tonic-gate 	 * Update the value of fmd.d_fg based on "fg".  We cache this property
4887c478bd9Sstevel@tonic-gate 	 * because it must be accessed deep within fmd at fmd_verror() time.
489d9638e54Smws 	 * Update any other properties that must be cached for performance.
4907c478bd9Sstevel@tonic-gate 	 */
4917c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(fmd.d_conf, "fg", &fmd.d_fg);
492d9638e54Smws 	(void) fmd_conf_getprop(fmd.d_conf, "xprt.ttl", &fmd.d_xprt_ttl);
4937c478bd9Sstevel@tonic-gate 
4947c478bd9Sstevel@tonic-gate 	/*
4957c478bd9Sstevel@tonic-gate 	 * Initialize our custom libnvpair allocator and create an nvlist for
4967c478bd9Sstevel@tonic-gate 	 * authority elements corresponding to this instance of the daemon.
4977c478bd9Sstevel@tonic-gate 	 */
4987c478bd9Sstevel@tonic-gate 	(void) nv_alloc_init(&dp->d_nva, &fmd_nv_alloc_ops);
4997c478bd9Sstevel@tonic-gate 	dp->d_auth = fmd_protocol_authority();
5007c478bd9Sstevel@tonic-gate 
5017c478bd9Sstevel@tonic-gate 	/*
5027c478bd9Sstevel@tonic-gate 	 * The fmd_module_t for the root module must be created manually.  Most
5037c478bd9Sstevel@tonic-gate 	 * of it remains unused and zero, except for the few things we fill in.
5047c478bd9Sstevel@tonic-gate 	 */
5057c478bd9Sstevel@tonic-gate 	dp->d_rmod = fmd_zalloc(sizeof (fmd_module_t), FMD_SLEEP);
5067c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_name = fmd_strdup(dp->d_pname, FMD_SLEEP);
507d9638e54Smws 	dp->d_rmod->mod_fmri = fmd_protocol_fmri_module(dp->d_rmod);
508d9638e54Smws 
5097c478bd9Sstevel@tonic-gate 	fmd_list_append(&dp->d_mod_list, dp->d_rmod);
510d9638e54Smws 	fmd_module_hold(dp->d_rmod);
5117c478bd9Sstevel@tonic-gate 
5127c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_rmod->mod_lock, NULL);
5137c478bd9Sstevel@tonic-gate 	(void) pthread_cond_init(&dp->d_rmod->mod_cv, NULL);
514d9638e54Smws 	(void) pthread_mutex_init(&dp->d_rmod->mod_stats_lock, NULL);
5157c478bd9Sstevel@tonic-gate 
5167c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_thread = fmd_thread_xcreate(dp->d_rmod, pthread_self());
517d9638e54Smws 	dp->d_rmod->mod_stats = fmd_zalloc(sizeof (fmd_modstat_t), FMD_SLEEP);
5187c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_ustat = fmd_ustat_create();
5197c478bd9Sstevel@tonic-gate 
5207c478bd9Sstevel@tonic-gate 	if (pthread_setspecific(dp->d_key, dp->d_rmod->mod_thread) != 0)
5217c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to attach main thread key");
5227c478bd9Sstevel@tonic-gate 
5237c478bd9Sstevel@tonic-gate 	if ((dp->d_stats = (fmd_statistics_t *)fmd_ustat_insert(
5247c478bd9Sstevel@tonic-gate 	    dp->d_rmod->mod_ustat, FMD_USTAT_NOALLOC, sizeof (_fmd_stats) /
5257c478bd9Sstevel@tonic-gate 	    sizeof (fmd_stat_t), (fmd_stat_t *)&_fmd_stats, NULL)) == NULL)
5267c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to initialize statistics");
5277c478bd9Sstevel@tonic-gate 
528d9638e54Smws 	(void) pthread_mutex_lock(&dp->d_rmod->mod_lock);
529d9638e54Smws 	dp->d_rmod->mod_flags |= FMD_MOD_INIT;
530d9638e54Smws 	(void) pthread_mutex_unlock(&dp->d_rmod->mod_lock);
531d9638e54Smws 
5327c478bd9Sstevel@tonic-gate 	/*
5337c478bd9Sstevel@tonic-gate 	 * In addition to inserting the _fmd_stats collection of program-wide
5347c478bd9Sstevel@tonic-gate 	 * statistics, we also insert a statistic named after each of our
5357c478bd9Sstevel@tonic-gate 	 * errors and update these counts in fmd_verror() (see fmd_subr.c).
5367c478bd9Sstevel@tonic-gate 	 */
5377c478bd9Sstevel@tonic-gate 	dp->d_errstats = sp = fmd_zalloc(sizeof (fmd_stat_t) *
5387c478bd9Sstevel@tonic-gate 	    (EFMD_END - EFMD_UNKNOWN), FMD_SLEEP);
5397c478bd9Sstevel@tonic-gate 
5407c478bd9Sstevel@tonic-gate 	for (i = 0; i < EFMD_END - EFMD_UNKNOWN; i++, sp++) {
5417c478bd9Sstevel@tonic-gate 		(void) snprintf(sp->fmds_name, sizeof (sp->fmds_name), "err.%s",
5427c478bd9Sstevel@tonic-gate 		    strrchr(fmd_errclass(EFMD_UNKNOWN + i), '.') + 1);
5437c478bd9Sstevel@tonic-gate 		sp->fmds_type = FMD_TYPE_UINT64;
5447c478bd9Sstevel@tonic-gate 	}
5457c478bd9Sstevel@tonic-gate 
5467c478bd9Sstevel@tonic-gate 	(void) fmd_ustat_insert(dp->d_rmod->mod_ustat, FMD_USTAT_NOALLOC,
5477c478bd9Sstevel@tonic-gate 	    EFMD_END - EFMD_UNKNOWN, dp->d_errstats, NULL);
5487c478bd9Sstevel@tonic-gate }
5497c478bd9Sstevel@tonic-gate 
5507c478bd9Sstevel@tonic-gate void
5517c478bd9Sstevel@tonic-gate fmd_destroy(fmd_t *dp)
5527c478bd9Sstevel@tonic-gate {
5537c478bd9Sstevel@tonic-gate 	fmd_module_t *mp;
554d9638e54Smws 	fmd_case_t *cp;
5557c478bd9Sstevel@tonic-gate 	int core;
5567c478bd9Sstevel@tonic-gate 
5577c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(fmd.d_conf, "core", &core);
5587c478bd9Sstevel@tonic-gate 
5597c478bd9Sstevel@tonic-gate 	fmd_rpc_fini();
560e4586ebfSmws 
561e4586ebfSmws 	if (dp->d_xprt_ids != NULL)
562d9638e54Smws 		fmd_xprt_suspend_all();
5637c478bd9Sstevel@tonic-gate 
5647c478bd9Sstevel@tonic-gate 	/*
5657c478bd9Sstevel@tonic-gate 	 * Unload the self-diagnosis module first.  This ensures that it does
5667c478bd9Sstevel@tonic-gate 	 * not get confused as we start unloading other modules, etc.  We must
5677c478bd9Sstevel@tonic-gate 	 * hold the dispq lock as a writer while doing so since it uses d_self.
5687c478bd9Sstevel@tonic-gate 	 */
5697c478bd9Sstevel@tonic-gate 	if (dp->d_self != NULL) {
57000958acdScindi 		fmd_module_t *self;
57100958acdScindi 
5727c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_wrlock(&dp->d_disp->dq_lock);
57300958acdScindi 		self = dp->d_self;
5747c478bd9Sstevel@tonic-gate 		dp->d_self = NULL;
5757c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_unlock(&dp->d_disp->dq_lock);
57600958acdScindi 
57700958acdScindi 		fmd_module_unload(self);
57800958acdScindi 		fmd_module_rele(self);
5797c478bd9Sstevel@tonic-gate 	}
5807c478bd9Sstevel@tonic-gate 
5817c478bd9Sstevel@tonic-gate 	/*
5827c478bd9Sstevel@tonic-gate 	 * Unload modules in reverse order *except* for the root module, which
5837c478bd9Sstevel@tonic-gate 	 * is first in the list.  This allows it to keep its thread and trace.
5847c478bd9Sstevel@tonic-gate 	 */
5857c478bd9Sstevel@tonic-gate 	for (mp = fmd_list_prev(&dp->d_mod_list); mp != dp->d_rmod; ) {
5867c478bd9Sstevel@tonic-gate 		fmd_module_unload(mp);
5877c478bd9Sstevel@tonic-gate 		mp = fmd_list_prev(mp);
5887c478bd9Sstevel@tonic-gate 	}
5897c478bd9Sstevel@tonic-gate 
5907c478bd9Sstevel@tonic-gate 	if (dp->d_mod_hash != NULL) {
5917c478bd9Sstevel@tonic-gate 		fmd_modhash_destroy(dp->d_mod_hash);
5927c478bd9Sstevel@tonic-gate 		dp->d_mod_hash = NULL;
5937c478bd9Sstevel@tonic-gate 	}
5947c478bd9Sstevel@tonic-gate 
5957c478bd9Sstevel@tonic-gate 	/*
5967c478bd9Sstevel@tonic-gate 	 * Close both log files now that modules are no longer active.  We must
5977c478bd9Sstevel@tonic-gate 	 * set these pointers to NULL in case any subsequent errors occur.
5987c478bd9Sstevel@tonic-gate 	 */
5997c478bd9Sstevel@tonic-gate 	if (dp->d_errlog != NULL) {
6007c478bd9Sstevel@tonic-gate 		fmd_log_rele(dp->d_errlog);
6017c478bd9Sstevel@tonic-gate 		dp->d_errlog = NULL;
6027c478bd9Sstevel@tonic-gate 	}
6037c478bd9Sstevel@tonic-gate 
6047c478bd9Sstevel@tonic-gate 	if (dp->d_fltlog != NULL) {
6057c478bd9Sstevel@tonic-gate 		fmd_log_rele(dp->d_fltlog);
6067c478bd9Sstevel@tonic-gate 		dp->d_fltlog = NULL;
6077c478bd9Sstevel@tonic-gate 	}
6087c478bd9Sstevel@tonic-gate 
6097c478bd9Sstevel@tonic-gate 	/*
610d9638e54Smws 	 * Now destroy the resource cache: each ASRU contains a case reference,
611d9638e54Smws 	 * which may in turn contain a pointer to a referenced owning module.
612d9638e54Smws 	 */
613d9638e54Smws 	if (dp->d_asrus != NULL) {
614d9638e54Smws 		fmd_asru_hash_destroy(dp->d_asrus);
615d9638e54Smws 		dp->d_asrus = NULL;
616d9638e54Smws 	}
617d9638e54Smws 
618d9638e54Smws 	/*
6197c478bd9Sstevel@tonic-gate 	 * Now that all data structures that refer to modules are torn down,
6207c478bd9Sstevel@tonic-gate 	 * no modules should be remaining on the module list except for d_rmod.
6217c478bd9Sstevel@tonic-gate 	 * If we trip one of these assertions, we're missing a rele somewhere.
6227c478bd9Sstevel@tonic-gate 	 */
6237c478bd9Sstevel@tonic-gate 	ASSERT(fmd_list_prev(&dp->d_mod_list) == dp->d_rmod);
6247c478bd9Sstevel@tonic-gate 	ASSERT(fmd_list_next(&dp->d_mod_list) == dp->d_rmod);
6257c478bd9Sstevel@tonic-gate 
6267c478bd9Sstevel@tonic-gate 	/*
6277c478bd9Sstevel@tonic-gate 	 * Now destroy the root module.  We clear its thread key first so any
6287c478bd9Sstevel@tonic-gate 	 * calls to fmd_trace() inside of the module code will be ignored.
6297c478bd9Sstevel@tonic-gate 	 */
6307c478bd9Sstevel@tonic-gate 	(void) pthread_setspecific(dp->d_key, NULL);
631d9638e54Smws 	fmd_module_lock(dp->d_rmod);
6327c478bd9Sstevel@tonic-gate 
633d9638e54Smws 	while ((cp = fmd_list_next(&dp->d_rmod->mod_cases)) != NULL)
634cbf75e67SStephen Hanson 		fmd_case_discard(cp, B_FALSE);
635d9638e54Smws 
636d9638e54Smws 	fmd_module_unlock(dp->d_rmod);
637d9638e54Smws 	fmd_free(dp->d_rmod->mod_stats, sizeof (fmd_modstat_t));
638d9638e54Smws 	dp->d_rmod->mod_stats = NULL;
639d9638e54Smws 
640d9638e54Smws 	(void) pthread_mutex_lock(&dp->d_rmod->mod_lock);
641d9638e54Smws 	dp->d_rmod->mod_flags |= FMD_MOD_FINI;
642d9638e54Smws 	(void) pthread_mutex_unlock(&dp->d_rmod->mod_lock);
643d9638e54Smws 
644d9638e54Smws 	fmd_module_rele(dp->d_rmod);
645d9638e54Smws 	ASSERT(fmd_list_next(&dp->d_mod_list) == NULL);
646d9638e54Smws 
647d9638e54Smws 	/*
648d9638e54Smws 	 * Now destroy the remaining global data structures.  If 'core' was
649d9638e54Smws 	 * set to true, force a core dump so we can check for memory leaks.
650d9638e54Smws 	 */
6517c478bd9Sstevel@tonic-gate 	if (dp->d_cases != NULL)
6527c478bd9Sstevel@tonic-gate 		fmd_case_hash_destroy(dp->d_cases);
653d9638e54Smws 	if (dp->d_disp != NULL)
654d9638e54Smws 		fmd_dispq_destroy(dp->d_disp);
655d9638e54Smws 	if (dp->d_timers != NULL)
656d9638e54Smws 		fmd_timerq_destroy(dp->d_timers);
657d9638e54Smws 	if (dp->d_schemes != NULL)
658d9638e54Smws 		fmd_scheme_hash_destroy(dp->d_schemes);
659d9638e54Smws 	if (dp->d_xprt_ids != NULL)
660d9638e54Smws 		fmd_idspace_destroy(dp->d_xprt_ids);
6617c478bd9Sstevel@tonic-gate 
6627c478bd9Sstevel@tonic-gate 	if (dp->d_errstats != NULL) {
6637c478bd9Sstevel@tonic-gate 		fmd_free(dp->d_errstats,
6647c478bd9Sstevel@tonic-gate 		    sizeof (fmd_stat_t) * (EFMD_END - EFMD_UNKNOWN));
6657c478bd9Sstevel@tonic-gate 	}
6667c478bd9Sstevel@tonic-gate 
6677c478bd9Sstevel@tonic-gate 	if (dp->d_conf != NULL)
6687c478bd9Sstevel@tonic-gate 		fmd_conf_close(dp->d_conf);
6697c478bd9Sstevel@tonic-gate 
6700eb822a1Scindi 	fmd_topo_fini();
6717aec1d6eScindi 
6727c478bd9Sstevel@tonic-gate 	nvlist_free(dp->d_auth);
6737c478bd9Sstevel@tonic-gate 	(void) nv_alloc_fini(&dp->d_nva);
6747c478bd9Sstevel@tonic-gate 	dp->d_clockops->fto_fini(dp->d_clockptr);
6757c478bd9Sstevel@tonic-gate 
6767c478bd9Sstevel@tonic-gate 	(void) pthread_key_delete(dp->d_key);
6777c478bd9Sstevel@tonic-gate 	bzero(dp, sizeof (fmd_t));
6787c478bd9Sstevel@tonic-gate 
6797c478bd9Sstevel@tonic-gate 	if (core)
6807c478bd9Sstevel@tonic-gate 		fmd_panic("forcing core dump at user request\n");
6817c478bd9Sstevel@tonic-gate }
6827c478bd9Sstevel@tonic-gate 
6837c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6847c478bd9Sstevel@tonic-gate static void
6857c478bd9Sstevel@tonic-gate fmd_gc(fmd_t *dp, id_t id, hrtime_t hrt)
6867c478bd9Sstevel@tonic-gate {
6877c478bd9Sstevel@tonic-gate 	hrtime_t delta;
6887c478bd9Sstevel@tonic-gate 
6897c478bd9Sstevel@tonic-gate 	if (id != 0) {
6907c478bd9Sstevel@tonic-gate 		TRACE((FMD_DBG_MOD, "garbage collect start"));
6917c478bd9Sstevel@tonic-gate 		fmd_modhash_apply(dp->d_mod_hash, fmd_module_gc);
6927c478bd9Sstevel@tonic-gate 		TRACE((FMD_DBG_MOD, "garbage collect end"));
6937c478bd9Sstevel@tonic-gate 
6947c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_rdlock(&dp->d_log_lock);
6957c478bd9Sstevel@tonic-gate 		fmd_log_update(dp->d_errlog);
6967c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_unlock(&dp->d_log_lock);
6977c478bd9Sstevel@tonic-gate 	}
6987c478bd9Sstevel@tonic-gate 
6997c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "gc_interval", &delta);
7007c478bd9Sstevel@tonic-gate 	(void) fmd_timerq_install(dp->d_timers, dp->d_rmod->mod_timerids,
7017c478bd9Sstevel@tonic-gate 	    (fmd_timer_f *)fmd_gc, dp, NULL, delta);
7027c478bd9Sstevel@tonic-gate }
7037c478bd9Sstevel@tonic-gate 
704567cc2e6Sstephh /*ARGSUSED*/
705567cc2e6Sstephh static void
706567cc2e6Sstephh fmd_clear_aged_rsrcs(fmd_t *dp, id_t id, hrtime_t hrt)
707567cc2e6Sstephh {
708567cc2e6Sstephh 	hrtime_t delta;
709567cc2e6Sstephh 
710567cc2e6Sstephh 	fmd_asru_clear_aged_rsrcs();
711567cc2e6Sstephh 	(void) fmd_conf_getprop(dp->d_conf, "rsrc.age", &delta);
712567cc2e6Sstephh 	(void) fmd_timerq_install(dp->d_timers, dp->d_rmod->mod_timerids,
713567cc2e6Sstephh 	    (fmd_timer_f *)fmd_clear_aged_rsrcs, dp, NULL, delta/10);
714567cc2e6Sstephh }
715567cc2e6Sstephh 
7167c478bd9Sstevel@tonic-gate /*
7177c478bd9Sstevel@tonic-gate  * Events are committed to the errlog after cases are checkpointed.  If fmd
7187c478bd9Sstevel@tonic-gate  * crashes before an event is ever associated with a module, this function will
7197c478bd9Sstevel@tonic-gate  * be called to replay it to all subscribers.  If fmd crashes in between the
7207c478bd9Sstevel@tonic-gate  * subscriber checkpointing and committing the event in the error log, the
7217c478bd9Sstevel@tonic-gate  * module will have seen the event and we don't want to replay it.  So we look
7227c478bd9Sstevel@tonic-gate  * for the event in all modules and transition it to the proper state.  If
7237c478bd9Sstevel@tonic-gate  * it is found, we commit it to the error log and do not replay it.  The in-
7247c478bd9Sstevel@tonic-gate  * memory case search used by fmd_module_contains() et al isn't particularly
7257c478bd9Sstevel@tonic-gate  * efficient, but it is faster than doing read i/o's on every case event to
7267c478bd9Sstevel@tonic-gate  * check their status or write i/o's on every event to replay to update states.
7277c478bd9Sstevel@tonic-gate  * We can improve the efficiency of this lookup algorithm later if necessary.
7287c478bd9Sstevel@tonic-gate  */
7297c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7307c478bd9Sstevel@tonic-gate static void
7317c478bd9Sstevel@tonic-gate fmd_err_replay(fmd_log_t *lp, fmd_event_t *ep, fmd_t *dp)
7327c478bd9Sstevel@tonic-gate {
7337c478bd9Sstevel@tonic-gate 	fmd_module_t *mp;
7347c478bd9Sstevel@tonic-gate 	fmd_stat_t *sp;
7357c478bd9Sstevel@tonic-gate 
7367c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_lock(&dp->d_mod_lock);
7377c478bd9Sstevel@tonic-gate 
7387c478bd9Sstevel@tonic-gate 	for (mp = fmd_list_next(&dp->d_mod_list);
7397c478bd9Sstevel@tonic-gate 	    mp != NULL; mp = fmd_list_next(mp)) {
7407c478bd9Sstevel@tonic-gate 		if (fmd_module_contains(mp, ep)) {
7417c478bd9Sstevel@tonic-gate 			fmd_module_hold(mp);
7427c478bd9Sstevel@tonic-gate 			break;
7437c478bd9Sstevel@tonic-gate 		}
7447c478bd9Sstevel@tonic-gate 	}
7457c478bd9Sstevel@tonic-gate 
7467c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_unlock(&dp->d_mod_lock);
7477c478bd9Sstevel@tonic-gate 
7487c478bd9Sstevel@tonic-gate 	if (mp != NULL) {
7497c478bd9Sstevel@tonic-gate 		fmd_event_commit(ep);
7507c478bd9Sstevel@tonic-gate 		fmd_module_rele(mp);
7517c478bd9Sstevel@tonic-gate 		sp = &dp->d_stats->ds_log_partials;
7527c478bd9Sstevel@tonic-gate 	} else {
753d9638e54Smws 		fmd_dispq_dispatch(dp->d_disp, ep, FMD_EVENT_DATA(ep));
7547c478bd9Sstevel@tonic-gate 		sp = &dp->d_stats->ds_log_replayed;
7557c478bd9Sstevel@tonic-gate 	}
7567c478bd9Sstevel@tonic-gate 
7577c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_lock(&dp->d_stats_lock);
7587c478bd9Sstevel@tonic-gate 	sp->fmds_value.ui64++;
7597c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_unlock(&dp->d_stats_lock);
7607c478bd9Sstevel@tonic-gate }
7617c478bd9Sstevel@tonic-gate 
762d9638e54Smws void
763d9638e54Smws fmd_door_server(void *dip)
764d9638e54Smws {
765d9638e54Smws 	fmd_dprintf(FMD_DBG_XPRT, "door server starting for %p\n", dip);
766d9638e54Smws 	(void) pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
767d9638e54Smws 	(void) door_return(NULL, 0, NULL, 0);
768d9638e54Smws }
769d9638e54Smws 
770d9638e54Smws /*
771d9638e54Smws  * Custom door server create callback.  Any fmd services that use doors will
772d9638e54Smws  * require those threads to have their fmd-specific TSD initialized, etc.
773d9638e54Smws  */
774d9638e54Smws static void
775d9638e54Smws fmd_door(door_info_t *dip)
776d9638e54Smws {
777d9638e54Smws 	if (fmd_thread_create(fmd.d_rmod, fmd_door_server, dip) == NULL)
778d9638e54Smws 		fmd_panic("failed to create server for door %p", (void *)dip);
779d9638e54Smws }
780d9638e54Smws 
7817c478bd9Sstevel@tonic-gate /*
7827c478bd9Sstevel@tonic-gate  * This signal handler is installed for the client.thrsig signal to be used to
7837c478bd9Sstevel@tonic-gate  * force an auxiliary thread to wake up from a system call and return EINTR in
7847c478bd9Sstevel@tonic-gate  * response to a module's use of fmd_thr_signal().  We also trace the event.
7857c478bd9Sstevel@tonic-gate  */
7867c478bd9Sstevel@tonic-gate static void
7877c478bd9Sstevel@tonic-gate fmd_signal(int sig)
7887c478bd9Sstevel@tonic-gate {
7897c478bd9Sstevel@tonic-gate 	TRACE((FMD_DBG_MOD, "module thread received sig #%d", sig));
7907c478bd9Sstevel@tonic-gate }
7917c478bd9Sstevel@tonic-gate 
7927c478bd9Sstevel@tonic-gate void
7937c478bd9Sstevel@tonic-gate fmd_run(fmd_t *dp, int pfd)
7947c478bd9Sstevel@tonic-gate {
7957c478bd9Sstevel@tonic-gate 	char *nodc_key[] = { FMD_FLT_NODC, NULL };
796627351e3Scy152378 	char *repair_key[] = { FM_LIST_REPAIRED_CLASS, NULL };
79725c6ff4bSstephh 	char *resolve_key[] = { FM_LIST_RESOLVED_CLASS, NULL };
79825c6ff4bSstephh 	char *update_key[] = { FM_LIST_UPDATED_CLASS, NULL };
799627351e3Scy152378 	char code_str[128];
8007c478bd9Sstevel@tonic-gate 	struct sigaction act;
8017c478bd9Sstevel@tonic-gate 
8027c478bd9Sstevel@tonic-gate 	int status = FMD_EXIT_SUCCESS;
8037c478bd9Sstevel@tonic-gate 	const char *name;
8047c478bd9Sstevel@tonic-gate 	fmd_conf_path_t *pap;
805d9638e54Smws 	fmd_event_t *e;
8060eb822a1Scindi 	int dbout;
8077c478bd9Sstevel@tonic-gate 
8087c478bd9Sstevel@tonic-gate 	/*
8097c478bd9Sstevel@tonic-gate 	 * Cache all the current debug property settings in d_fmd_debug,
8107c478bd9Sstevel@tonic-gate 	 * d_fmd_dbout, d_hdl_debug, and d_hdl_dbout.  If a given debug mask
8117c478bd9Sstevel@tonic-gate 	 * is non-zero and the corresponding dbout mask is zero, set dbout
8127c478bd9Sstevel@tonic-gate 	 * to a sensible default value based on whether we have daemonized.
8137c478bd9Sstevel@tonic-gate 	 */
8147c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "dbout", &dbout);
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate 	if (dp->d_fmd_debug != 0 && dbout == 0)
8177c478bd9Sstevel@tonic-gate 		dp->d_fmd_dbout = dp->d_fg? FMD_DBOUT_STDERR : FMD_DBOUT_SYSLOG;
8187c478bd9Sstevel@tonic-gate 	else
8197c478bd9Sstevel@tonic-gate 		dp->d_fmd_dbout = dbout;
8207c478bd9Sstevel@tonic-gate 
8217c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.debug", &dp->d_hdl_debug);
8227c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.dbout", &dbout);
8237c478bd9Sstevel@tonic-gate 
8247c478bd9Sstevel@tonic-gate 	if (dp->d_hdl_debug != 0 && dbout == 0)
8257c478bd9Sstevel@tonic-gate 		dp->d_hdl_dbout = dp->d_fg? FMD_DBOUT_STDERR : FMD_DBOUT_SYSLOG;
8267c478bd9Sstevel@tonic-gate 	else
8277c478bd9Sstevel@tonic-gate 		dp->d_hdl_dbout = dbout;
8287c478bd9Sstevel@tonic-gate 
8297c478bd9Sstevel@tonic-gate 	/*
830d9638e54Smws 	 * Initialize remaining major program data structures such as the
831d9638e54Smws 	 * clock, dispatch queues, log files, module hash collections, etc.
8327c478bd9Sstevel@tonic-gate 	 * This work is done here rather than in fmd_create() to permit the -o
8337c478bd9Sstevel@tonic-gate 	 * command-line option to modify properties after fmd_create() is done.
8347c478bd9Sstevel@tonic-gate 	 */
8357aec1d6eScindi 	name = dp->d_rootdir != NULL &&
8367aec1d6eScindi 	    *dp->d_rootdir != '\0' ? dp->d_rootdir : NULL;
8377aec1d6eScindi 
8380940c086Seschrock 	/*
8390940c086Seschrock 	 * The clock must be initialized before fmd_topo_init() because
8400940c086Seschrock 	 * fmd_topo_update() calls fmd_time_gethrtime().
8410940c086Seschrock 	 */
8420940c086Seschrock 	dp->d_clockptr = dp->d_clockops->fto_init();
8430940c086Seschrock 
8440eb822a1Scindi 	fmd_topo_init();
8457aec1d6eScindi 
846d9638e54Smws 	dp->d_xprt_ids = fmd_idspace_create("xprt_ids", 1, INT_MAX);
847d9638e54Smws 	fmd_xprt_suspend_all();
848d9638e54Smws 
849d9638e54Smws 	(void) door_server_create(fmd_door);
8507c478bd9Sstevel@tonic-gate 
8517c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_timerids = fmd_idspace_create(dp->d_pname, 1, 16);
8527c478bd9Sstevel@tonic-gate 	dp->d_timers = fmd_timerq_create();
8537c478bd9Sstevel@tonic-gate 	dp->d_disp = fmd_dispq_create();
8547c478bd9Sstevel@tonic-gate 	dp->d_cases = fmd_case_hash_create();
8557c478bd9Sstevel@tonic-gate 
8567c478bd9Sstevel@tonic-gate 	/*
857d9638e54Smws 	 * The root module's mod_queue is created with limit zero, making it
858d9638e54Smws 	 * act like /dev/null; anything inserted here is simply ignored.
859d9638e54Smws 	 */
860d9638e54Smws 	dp->d_rmod->mod_queue = fmd_eventq_create(dp->d_rmod,
861d9638e54Smws 	    &dp->d_rmod->mod_stats->ms_evqstat, &dp->d_rmod->mod_stats_lock, 0);
862d9638e54Smws 
863d9638e54Smws 	/*
8647c478bd9Sstevel@tonic-gate 	 * Once our subsystems that use signals have been set up, install the
8657c478bd9Sstevel@tonic-gate 	 * signal handler for the fmd_thr_signal() API.  Verify that the signal
8667c478bd9Sstevel@tonic-gate 	 * being used for this purpose doesn't conflict with something else.
8677c478bd9Sstevel@tonic-gate 	 */
8687c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.thrsig", &dp->d_thr_sig);
8697c478bd9Sstevel@tonic-gate 
8707c478bd9Sstevel@tonic-gate 	if (sigaction(dp->d_thr_sig, NULL, &act) != 0) {
8717c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "invalid signal selected for "
8727c478bd9Sstevel@tonic-gate 		    "client.thrsig property: %d\n", dp->d_thr_sig);
8737c478bd9Sstevel@tonic-gate 	}
8747c478bd9Sstevel@tonic-gate 
8757c478bd9Sstevel@tonic-gate 	if (act.sa_handler != SIG_IGN && act.sa_handler != SIG_DFL) {
8767c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "signal selected for client.thrsig "
8777c478bd9Sstevel@tonic-gate 		    "property is already in use: %d\n", dp->d_thr_sig);
8787c478bd9Sstevel@tonic-gate 	}
8797c478bd9Sstevel@tonic-gate 
8807c478bd9Sstevel@tonic-gate 	act.sa_handler = fmd_signal;
8817c478bd9Sstevel@tonic-gate 	act.sa_flags = 0;
8827c478bd9Sstevel@tonic-gate 
8837c478bd9Sstevel@tonic-gate 	(void) sigemptyset(&act.sa_mask);
8847c478bd9Sstevel@tonic-gate 	(void) sigaction(dp->d_thr_sig, &act, NULL);
8857c478bd9Sstevel@tonic-gate 
8867c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "schemedir", &name);
8877c478bd9Sstevel@tonic-gate 	dp->d_schemes = fmd_scheme_hash_create(dp->d_rootdir, name);
8887c478bd9Sstevel@tonic-gate 
8897c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.rsrc", &name);
8907c478bd9Sstevel@tonic-gate 	dp->d_asrus = fmd_asru_hash_create(dp->d_rootdir, name);
8917c478bd9Sstevel@tonic-gate 
8927c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.error", &name);
8937c478bd9Sstevel@tonic-gate 	dp->d_errlog = fmd_log_open(dp->d_rootdir, name, FMD_LOG_ERROR);
8947c478bd9Sstevel@tonic-gate 
8957c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.fault", &name);
8967c478bd9Sstevel@tonic-gate 	dp->d_fltlog = fmd_log_open(dp->d_rootdir, name, FMD_LOG_FAULT);
8977c478bd9Sstevel@tonic-gate 
8987c478bd9Sstevel@tonic-gate 	if (dp->d_asrus == NULL || dp->d_errlog == NULL || dp->d_fltlog == NULL)
8997c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to initialize log files\n");
9007c478bd9Sstevel@tonic-gate 
901d9638e54Smws 	/*
902d9638e54Smws 	 * Before loading modules, create an empty control event which will act
903d9638e54Smws 	 * as a global barrier for module event processing.  Each module we
904d9638e54Smws 	 * load successfully will insert it at their head of their event queue,
905d9638e54Smws 	 * and then pause inside of fmd_ctl_rele() after dequeuing the event.
906d9638e54Smws 	 * This module barrier is required for two reasons:
907d9638e54Smws 	 *
908d9638e54Smws 	 * (a) During module loading, the restoration of case checkpoints may
909d9638e54Smws 	 *    result in a list.* event being recreated for which the intended
910d9638e54Smws 	 *    subscriber has not yet loaded depending on the load order. Such
911d9638e54Smws 	 *    events could then result in spurious "no subscriber" errors.
912d9638e54Smws 	 *
913d9638e54Smws 	 * (b) During errlog replay, a sequence of errors from a long time ago
914d9638e54Smws 	 *    may be replayed, and the module may attempt to install relative
915d9638e54Smws 	 *    timers associated with one or more of these events.  If errlog
916d9638e54Smws 	 *    replay were "racing" with active module threads, an event E1
917d9638e54Smws 	 *    that resulted in a relative timer T at time E1 + N nsec could
918d9638e54Smws 	 *    fire prior to an event E2 being enqueued, even if the relative
919d9638e54Smws 	 *    time ordering was E1 < E2 < E1 + N, causing mis-diagnosis.
920d9638e54Smws 	 */
921d9638e54Smws 	dp->d_mod_event = e = fmd_event_create(FMD_EVT_CTL,
922d9638e54Smws 	    FMD_HRT_NOW, NULL, fmd_ctl_init(NULL));
923d9638e54Smws 
924d9638e54Smws 	fmd_event_hold(e);
925d9638e54Smws 
926d9638e54Smws 	/*
927d9638e54Smws 	 * Once all data structures are initialized, we load all of our modules
928d9638e54Smws 	 * in order according to class in order to load up any subscriptions.
929d9638e54Smws 	 * Once built-in modules are loaded, we detach from our waiting parent.
930d9638e54Smws 	 */
9317c478bd9Sstevel@tonic-gate 	dp->d_mod_hash = fmd_modhash_create();
932d9638e54Smws 
933d9638e54Smws 	if (fmd_builtin_loadall(dp->d_mod_hash) != 0 && !dp->d_fg)
934d9638e54Smws 		fmd_error(EFMD_EXIT, "failed to initialize fault manager\n");
935d9638e54Smws 
936d9638e54Smws 	(void) fmd_conf_getprop(dp->d_conf, "self.name", &name);
937d9638e54Smws 	dp->d_self = fmd_modhash_lookup(dp->d_mod_hash, name);
938d9638e54Smws 
939627351e3Scy152378 	if (dp->d_self != NULL) {
940627351e3Scy152378 		if (fmd_module_dc_key2code(dp->d_self, nodc_key, code_str,
941627351e3Scy152378 		    sizeof (code_str)) == 0)
942627351e3Scy152378 			(void) fmd_conf_setprop(dp->d_conf, "nodiagcode",
943627351e3Scy152378 			    code_str);
944627351e3Scy152378 		if (fmd_module_dc_key2code(dp->d_self, repair_key, code_str,
945627351e3Scy152378 		    sizeof (code_str)) == 0)
946627351e3Scy152378 			(void) fmd_conf_setprop(dp->d_conf, "repaircode",
947627351e3Scy152378 			    code_str);
94825c6ff4bSstephh 		if (fmd_module_dc_key2code(dp->d_self, resolve_key, code_str,
94925c6ff4bSstephh 		    sizeof (code_str)) == 0)
95025c6ff4bSstephh 			(void) fmd_conf_setprop(dp->d_conf, "resolvecode",
95125c6ff4bSstephh 			    code_str);
95225c6ff4bSstephh 		if (fmd_module_dc_key2code(dp->d_self, update_key, code_str,
95325c6ff4bSstephh 		    sizeof (code_str)) == 0)
95425c6ff4bSstephh 			(void) fmd_conf_setprop(dp->d_conf, "updatecode",
95525c6ff4bSstephh 			    code_str);
956627351e3Scy152378 	}
957d9638e54Smws 
958d9638e54Smws 	fmd_rpc_init();
9597c478bd9Sstevel@tonic-gate 	dp->d_running = 1; /* we are now officially an active fmd */
9607c478bd9Sstevel@tonic-gate 
9617c478bd9Sstevel@tonic-gate 	/*
9627c478bd9Sstevel@tonic-gate 	 * Now that we're running, if a pipe fd was specified, write an exit
9637c478bd9Sstevel@tonic-gate 	 * status to it to indicate that our parent process can safely detach.
964d9638e54Smws 	 * Then proceed to loading the remaining non-built-in modules.
9657c478bd9Sstevel@tonic-gate 	 */
9667c478bd9Sstevel@tonic-gate 	if (pfd >= 0)
9677c478bd9Sstevel@tonic-gate 		(void) write(pfd, &status, sizeof (status));
9687c478bd9Sstevel@tonic-gate 
969162ba6eaSmws 	/*
970162ba6eaSmws 	 * Before loading all modules, repopulate the ASRU cache from its
971162ba6eaSmws 	 * persistent repository on disk.  Then during module loading, the
972162ba6eaSmws 	 * restoration of checkpoint files will reparent any active cases.
973162ba6eaSmws 	 */
974162ba6eaSmws 	fmd_asru_hash_refresh(dp->d_asrus);
975162ba6eaSmws 
9767c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "plugin.path", &pap);
9770b9e3e76Smws 	fmd_modhash_loadall(dp->d_mod_hash, pap, &fmd_rtld_ops, ".so");
9787c478bd9Sstevel@tonic-gate 
9797c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "agent.path", &pap);
9800b9e3e76Smws 	fmd_modhash_loadall(dp->d_mod_hash, pap, &fmd_proc_ops, NULL);
9817c478bd9Sstevel@tonic-gate 
9827c478bd9Sstevel@tonic-gate 	/*
983d9638e54Smws 	 * With all modules loaded, replay fault events from the ASRU cache for
984d9638e54Smws 	 * any ASRUs that must be retired, replay error events from the errlog
985d9638e54Smws 	 * that did not finish processing the last time ran, and then release
986d9638e54Smws 	 * the global module barrier by executing a final rele on d_mod_event.
9877c478bd9Sstevel@tonic-gate 	 */
988162ba6eaSmws 	fmd_asru_hash_replay(dp->d_asrus);
9897c478bd9Sstevel@tonic-gate 
9907c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_rdlock(&dp->d_log_lock);
9917c478bd9Sstevel@tonic-gate 	fmd_log_replay(dp->d_errlog, (fmd_log_f *)fmd_err_replay, dp);
9927c478bd9Sstevel@tonic-gate 	fmd_log_update(dp->d_errlog);
9937c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_unlock(&dp->d_log_lock);
9947c478bd9Sstevel@tonic-gate 
995d9638e54Smws 	dp->d_mod_event = NULL;
996d9638e54Smws 	fmd_event_rele(e);
9977c478bd9Sstevel@tonic-gate 
9987c478bd9Sstevel@tonic-gate 	/*
99925c6ff4bSstephh 	 * Now replay list.updated and list.repaired events
100025c6ff4bSstephh 	 */
100125c6ff4bSstephh 	fmd_case_repair_replay();
100225c6ff4bSstephh 
100325c6ff4bSstephh 	/*
10047c478bd9Sstevel@tonic-gate 	 * Finally, awaken any threads associated with receiving events from
1005d9638e54Smws 	 * open transports and tell them to proceed with fmd_xprt_recv().
10067c478bd9Sstevel@tonic-gate 	 */
1007d9638e54Smws 	fmd_xprt_resume_all();
10087c478bd9Sstevel@tonic-gate 	fmd_gc(dp, 0, 0);
1009567cc2e6Sstephh 	fmd_clear_aged_rsrcs(dp, 0, 0);
1010d9638e54Smws 
101193136fe2Sstephh 	(void) pthread_mutex_lock(&dp->d_fmd_lock);
1012d9638e54Smws 	dp->d_booted = 1;
101393136fe2Sstephh 	(void) pthread_cond_broadcast(&dp->d_fmd_cv);
101493136fe2Sstephh 	(void) pthread_mutex_unlock(&dp->d_fmd_lock);
10157c478bd9Sstevel@tonic-gate }
10167c478bd9Sstevel@tonic-gate 
10177c478bd9Sstevel@tonic-gate void
10187c478bd9Sstevel@tonic-gate fmd_help(fmd_t *dp)
10197c478bd9Sstevel@tonic-gate {
10207c478bd9Sstevel@tonic-gate 	const fmd_conf_mode_t *cmp;
10217c478bd9Sstevel@tonic-gate 
10227c478bd9Sstevel@tonic-gate 	(void) printf("Usage: %s -o debug=mode[,mode]\n", dp->d_pname);
10237c478bd9Sstevel@tonic-gate 
10247c478bd9Sstevel@tonic-gate 	for (cmp = _fmd_debug_modes; cmp->cm_name != NULL; cmp++)
10257c478bd9Sstevel@tonic-gate 		(void) printf("\t%s\t%s\n", cmp->cm_name, cmp->cm_desc);
10267c478bd9Sstevel@tonic-gate }
1027