xref: /illumos-gate/usr/src/cmd/fm/fmd/common/fmd.c (revision 0940c086)
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 /*
2324db4641Seschrock  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #include <sys/types.h>
307c478bd9Sstevel@tonic-gate #include <sys/utsname.h>
317c478bd9Sstevel@tonic-gate #include <sys/param.h>
327c478bd9Sstevel@tonic-gate #include <sys/systeminfo.h>
337c478bd9Sstevel@tonic-gate #include <sys/fm/util.h>
347c478bd9Sstevel@tonic-gate 
357aec1d6eScindi #include <smbios.h>
367c478bd9Sstevel@tonic-gate #include <limits.h>
377c478bd9Sstevel@tonic-gate #include <unistd.h>
387c478bd9Sstevel@tonic-gate #include <signal.h>
397c478bd9Sstevel@tonic-gate #include <stdlib.h>
407c478bd9Sstevel@tonic-gate #include <stdio.h>
41d9638e54Smws #include <door.h>
427c478bd9Sstevel@tonic-gate 
437c478bd9Sstevel@tonic-gate #include <fmd_conf.h>
447c478bd9Sstevel@tonic-gate #include <fmd_dispq.h>
457c478bd9Sstevel@tonic-gate #include <fmd_timerq.h>
467c478bd9Sstevel@tonic-gate #include <fmd_subr.h>
477c478bd9Sstevel@tonic-gate #include <fmd_error.h>
487c478bd9Sstevel@tonic-gate #include <fmd_module.h>
497c478bd9Sstevel@tonic-gate #include <fmd_thread.h>
507c478bd9Sstevel@tonic-gate #include <fmd_alloc.h>
517c478bd9Sstevel@tonic-gate #include <fmd_string.h>
527c478bd9Sstevel@tonic-gate #include <fmd_builtin.h>
537c478bd9Sstevel@tonic-gate #include <fmd_ustat.h>
547c478bd9Sstevel@tonic-gate #include <fmd_protocol.h>
557c478bd9Sstevel@tonic-gate #include <fmd_scheme.h>
567c478bd9Sstevel@tonic-gate #include <fmd_asru.h>
577c478bd9Sstevel@tonic-gate #include <fmd_case.h>
587c478bd9Sstevel@tonic-gate #include <fmd_log.h>
59d9638e54Smws #include <fmd_idspace.h>
607c478bd9Sstevel@tonic-gate #include <fmd_rpc.h>
617c478bd9Sstevel@tonic-gate #include <fmd_dr.h>
620eb822a1Scindi #include <fmd_topo.h>
63d9638e54Smws #include <fmd_xprt.h>
64d9638e54Smws #include <fmd_ctl.h>
6582d33c01Sav145390 #include <sys/openpromio.h>
6682d33c01Sav145390 #include <libdevinfo.h>
677c478bd9Sstevel@tonic-gate 
687c478bd9Sstevel@tonic-gate #include <fmd.h>
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate extern const nv_alloc_ops_t fmd_nv_alloc_ops;	/* see fmd_nv.c */
717c478bd9Sstevel@tonic-gate 
7224db4641Seschrock const char _fmd_version[] = "1.2";		/* daemon version string */
737c478bd9Sstevel@tonic-gate static char _fmd_plat[MAXNAMELEN];		/* native platform string */
747c478bd9Sstevel@tonic-gate static char _fmd_isa[MAXNAMELEN];		/* native instruction set */
757c478bd9Sstevel@tonic-gate static struct utsname _fmd_uts;			/* native uname(2) info */
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 */
2317aec1d6eScindi { "chassis", &fmd_conf_string, _fmd_csn },	/* chassis serial number */
2327c478bd9Sstevel@tonic-gate { "ckpt.dir", &fmd_conf_string, "var/fm/fmd/ckpt" }, /* ckpt directory path */
2337c478bd9Sstevel@tonic-gate { "ckpt.dirmode", &fmd_conf_int32, "0700" },	/* ckpt directory perm mode */
2347c478bd9Sstevel@tonic-gate { "ckpt.mode", &fmd_conf_int32, "0400" },	/* ckpt file perm mode */
2357c478bd9Sstevel@tonic-gate { "ckpt.restore", &fmd_conf_bool, "true" },	/* restore checkpoints? */
2367c478bd9Sstevel@tonic-gate { "ckpt.save", &fmd_conf_bool, "true" },	/* save checkpoints? */
2377c478bd9Sstevel@tonic-gate { "ckpt.zero", &fmd_conf_bool, "false" },	/* zero checkpoints on start? */
2387c478bd9Sstevel@tonic-gate { "client.buflim", &fmd_conf_size, "10m" },	/* client buffer space limit */
2397c478bd9Sstevel@tonic-gate { "client.dbout", &fmd_dbout_ops, NULL },	/* client debug output sinks */
2407c478bd9Sstevel@tonic-gate { "client.debug", &fmd_conf_bool, NULL },	/* client debug enable */
2417c478bd9Sstevel@tonic-gate { "client.error", &fmd_cerror_ops, "unload" },	/* client error policy */
2427c478bd9Sstevel@tonic-gate { "client.memlim", &fmd_conf_size, "10m" },	/* client allocation limit */
2437c478bd9Sstevel@tonic-gate { "client.evqlim", &fmd_conf_uint32, "256" },	/* client event queue limit */
2447c478bd9Sstevel@tonic-gate { "client.thrlim", &fmd_conf_uint32, "8" },	/* client aux thread limit */
2457c478bd9Sstevel@tonic-gate { "client.thrsig", &fmd_conf_signal, "SIGUSR1" }, /* fmd_thr_signal() value */
2467c478bd9Sstevel@tonic-gate { "client.tmrlim", &fmd_conf_uint32, "1024" },	/* client pending timer limit */
247d9638e54Smws { "client.xprtlim", &fmd_conf_uint32, "256" },	/* client transport limit */
248d9638e54Smws { "client.xprtlog", &fmd_conf_bool, NULL },	/* client transport logging? */
24911114147Sav145390 { "client.xprtqlim", &fmd_conf_uint32, "1024" }, /* client transport queue li */
2507c478bd9Sstevel@tonic-gate { "clock", &fmd_clkmode_ops, "native" },	/* clock operation mode */
2517c478bd9Sstevel@tonic-gate { "conf_path", &fmd_conf_path, _fmd_conf_path }, /* root config file path */
2527c478bd9Sstevel@tonic-gate { "conf_file", &fmd_conf_string, "fmd.conf" },	/* root config file name */
2537c478bd9Sstevel@tonic-gate { "core", &fmd_conf_bool, "false" },		/* force core dump on quit */
2547c478bd9Sstevel@tonic-gate { "dbout", &fmd_dbout_ops, NULL },		/* daemon debug output sinks */
2557c478bd9Sstevel@tonic-gate { "debug", &fmd_debug_ops, NULL },		/* daemon debugging flags */
2567c478bd9Sstevel@tonic-gate { "dictdir", &fmd_conf_string, "usr/lib/fm/dict" }, /* default diagcode dir */
2577c478bd9Sstevel@tonic-gate { "domain", &fmd_conf_string, NULL },		/* domain id for de auth */
2587c478bd9Sstevel@tonic-gate { "fg", &fmd_conf_bool, "false" },		/* run daemon in foreground */
2597c478bd9Sstevel@tonic-gate { "gc_interval", &fmd_conf_time, "1d" },	/* garbage collection intvl */
2607c478bd9Sstevel@tonic-gate { "ids.avg", &fmd_conf_uint32, "4" },		/* desired idspace chain len */
2617c478bd9Sstevel@tonic-gate { "ids.max", &fmd_conf_uint32, "1024" },	/* maximum idspace buckets */
2627c478bd9Sstevel@tonic-gate { "isaname", &fmd_conf_string, _fmd_isa },	/* instruction set (uname -p) */
2637c478bd9Sstevel@tonic-gate { "log.creator", &fmd_conf_string, "fmd" },	/* exacct log creator string */
2647c478bd9Sstevel@tonic-gate { "log.error", &fmd_conf_string, "var/fm/fmd/errlog" }, /* error log path */
2657c478bd9Sstevel@tonic-gate { "log.fault", &fmd_conf_string, "var/fm/fmd/fltlog" }, /* fault log path */
2667c478bd9Sstevel@tonic-gate { "log.minfree", &fmd_conf_size, "2m" },	/* min log fsys free space */
267d9638e54Smws { "log.rsrc", &fmd_conf_string, "var/fm/fmd/rsrc" }, /* asru log dir path */
2687c478bd9Sstevel@tonic-gate { "log.tryrotate", &fmd_conf_uint32, "10" },	/* max log rotation attempts */
2697c478bd9Sstevel@tonic-gate { "log.waitrotate", &fmd_conf_time, "200ms" },	/* log rotation retry delay */
270d9638e54Smws { "log.xprt", &fmd_conf_string, "var/fm/fmd/xprt" }, /* transport log dir */
2717c478bd9Sstevel@tonic-gate { "machine", &fmd_conf_string, _fmd_uts.machine }, /* machine name (uname -m) */
2727c478bd9Sstevel@tonic-gate { "nodiagcode", &fmd_conf_string, "-" },	/* diagcode to use if error */
2737c478bd9Sstevel@tonic-gate { "osrelease", &fmd_conf_string, _fmd_uts.release }, /* release (uname -r) */
2747c478bd9Sstevel@tonic-gate { "osversion", &fmd_conf_string, _fmd_uts.version }, /* version (uname -v) */
2757c478bd9Sstevel@tonic-gate { "platform", &fmd_conf_string, _fmd_plat },	/* platform string (uname -i) */
2767c478bd9Sstevel@tonic-gate { "plugin.close", &fmd_conf_bool, "true" },	/* dlclose plugins on fini */
2777c478bd9Sstevel@tonic-gate { "plugin.path", &fmd_conf_path, _fmd_plugin_path }, /* path for plugin mods */
2787aec1d6eScindi { "product", &fmd_conf_string, _fmd_prod },	/* product name string */
2797c478bd9Sstevel@tonic-gate { "rootdir", &fmd_conf_string, "" },		/* root directory for paths */
2807c478bd9Sstevel@tonic-gate { "rpc.adm.path", &fmd_conf_string, NULL },	/* FMD_ADM rendezvous file */
2817c478bd9Sstevel@tonic-gate { "rpc.adm.prog", &fmd_conf_uint32, "100169" },	/* FMD_ADM rpc program num */
2827c478bd9Sstevel@tonic-gate { "rpc.api.path", &fmd_conf_string, NULL },	/* FMD_API rendezvous file */
2837c478bd9Sstevel@tonic-gate { "rpc.api.prog", &fmd_conf_uint32, "100170" },	/* FMD_API rpc program num */
2847c478bd9Sstevel@tonic-gate { "rpc.rcvsize", &fmd_conf_size, "128k" },	/* rpc receive buffer size */
2857c478bd9Sstevel@tonic-gate { "rpc.sndsize", &fmd_conf_size, "128k" },	/* rpc send buffer size */
2867c478bd9Sstevel@tonic-gate { "rsrc.age", &fmd_conf_time, "30d" },		/* max age of old rsrc log */
2877c478bd9Sstevel@tonic-gate { "rsrc.zero", &fmd_conf_bool, "false" },	/* zero rsrc cache on start? */
2887c478bd9Sstevel@tonic-gate { "schemedir", &fmd_conf_string, _fmd_scheme_path }, /* path for scheme mods */
2897c478bd9Sstevel@tonic-gate { "self.name", &fmd_conf_string, "fmd-self-diagnosis" }, /* self-diag module */
2907c478bd9Sstevel@tonic-gate { "self.dict", &fmd_conf_list, "FMD.dict" },	/* self-diag dictionary list */
2917c478bd9Sstevel@tonic-gate { "server", &fmd_conf_string, _fmd_uts.nodename }, /* server id for de auth */
2927c478bd9Sstevel@tonic-gate { "strbuckets", &fmd_conf_uint32, "211" },	/* size of string hashes */
2937c478bd9Sstevel@tonic-gate #ifdef DEBUG
2947c478bd9Sstevel@tonic-gate { "trace.mode", &fmd_trmode_ops, "full" },	/* trace mode: none/lite/full */
2957c478bd9Sstevel@tonic-gate #else
2967c478bd9Sstevel@tonic-gate { "trace.mode", &fmd_trmode_ops, "lite" },	/* trace mode: none/lite/full */
2977c478bd9Sstevel@tonic-gate #endif
2987c478bd9Sstevel@tonic-gate { "trace.recs", &fmd_conf_uint32, "128" },	/* trace records per thread */
2997c478bd9Sstevel@tonic-gate { "trace.frames", &fmd_conf_uint32, "16" },	/* max trace rec stack frames */
3007c478bd9Sstevel@tonic-gate { "uuidlen", &fmd_conf_uint32, "36" },		/* UUID ASCII string length */
301d9638e54Smws { "xprt.ttl", &fmd_conf_uint8, "1" },		/* default event time-to-live */
3027c478bd9Sstevel@tonic-gate };
3037c478bd9Sstevel@tonic-gate 
3047c478bd9Sstevel@tonic-gate /*
3057c478bd9Sstevel@tonic-gate  * Statistics maintained by fmd itself on behalf of various global subsystems.
3067c478bd9Sstevel@tonic-gate  * NOTE: FMD_TYPE_STRING statistics should not be used here.  If they are
3077c478bd9Sstevel@tonic-gate  * required in the future, the FMD_ADM_MODGSTAT service routine must change.
3087c478bd9Sstevel@tonic-gate  */
3097c478bd9Sstevel@tonic-gate static fmd_statistics_t _fmd_stats = {
3107c478bd9Sstevel@tonic-gate { "errlog.replayed", FMD_TYPE_UINT64, "total events replayed from errlog" },
3117c478bd9Sstevel@tonic-gate { "errlog.partials", FMD_TYPE_UINT64, "events partially committed in errlog" },
3127c478bd9Sstevel@tonic-gate { "errlog.enospc", FMD_TYPE_UINT64, "events not appended to errlog (ENOSPC)" },
3137c478bd9Sstevel@tonic-gate { "fltlog.enospc", FMD_TYPE_UINT64, "events not appended to fltlog (ENOSPC)" },
3147c478bd9Sstevel@tonic-gate { "log.enospc", FMD_TYPE_UINT64, "events not appended to other logs (ENOSPC)" },
3157c478bd9Sstevel@tonic-gate { "dr.gen", FMD_TYPE_UINT64, "dynamic reconfiguration generation" },
3160eb822a1Scindi { "topo.gen", FMD_TYPE_UINT64, "topology snapshot generation" },
3170eb822a1Scindi { "topo.drgen", FMD_TYPE_UINT64, "current topology DR generation number" },
3187c478bd9Sstevel@tonic-gate };
3197c478bd9Sstevel@tonic-gate 
3207c478bd9Sstevel@tonic-gate void
3217c478bd9Sstevel@tonic-gate fmd_create(fmd_t *dp, const char *arg0, const char *root, const char *conf)
3227c478bd9Sstevel@tonic-gate {
3237c478bd9Sstevel@tonic-gate 	fmd_conf_path_t *pap;
3247c478bd9Sstevel@tonic-gate 	char file[PATH_MAX];
3257c478bd9Sstevel@tonic-gate 	const char *name;
3267c478bd9Sstevel@tonic-gate 	fmd_stat_t *sp;
3277c478bd9Sstevel@tonic-gate 	int i;
3287c478bd9Sstevel@tonic-gate 
3297aec1d6eScindi 	smbios_hdl_t *shp;
3307aec1d6eScindi 	smbios_system_t s1;
3317aec1d6eScindi 	smbios_info_t s2;
3327aec1d6eScindi 	id_t id;
3337aec1d6eScindi 
33482d33c01Sav145390 	di_prom_handle_t promh = DI_PROM_HANDLE_NIL;
33582d33c01Sav145390 	di_node_t rooth = DI_NODE_NIL;
33682d33c01Sav145390 	char *bufp;
33782d33c01Sav145390 
3387c478bd9Sstevel@tonic-gate 	(void) sysinfo(SI_PLATFORM, _fmd_plat, sizeof (_fmd_plat));
3397c478bd9Sstevel@tonic-gate 	(void) sysinfo(SI_ARCHITECTURE, _fmd_isa, sizeof (_fmd_isa));
3407c478bd9Sstevel@tonic-gate 	(void) uname(&_fmd_uts);
3417c478bd9Sstevel@tonic-gate 
3427aec1d6eScindi 	if ((shp = smbios_open(NULL, SMB_VERSION, 0, NULL)) != NULL) {
3437aec1d6eScindi 		if ((id = smbios_info_system(shp, &s1)) != SMB_ERR &&
3447aec1d6eScindi 		    smbios_info_common(shp, id, &s2) != SMB_ERR) {
3457aec1d6eScindi 			(void) strlcpy(_fmd_prod, s2.smbi_product, MAXNAMELEN);
3467aec1d6eScindi 			(void) strlcpy(_fmd_csn, s2.smbi_serial, MAXNAMELEN);
3477aec1d6eScindi 		}
3487aec1d6eScindi 		smbios_close(shp);
349384fce58Shueston 	} else if ((rooth = di_init("/", DINFOPROP)) != DI_NODE_NIL &&
35082d33c01Sav145390 	    (promh = di_prom_init()) != DI_PROM_HANDLE_NIL) {
35182d33c01Sav145390 		if (di_prom_prop_lookup_bytes(promh, rooth, "chassis-sn",
35282d33c01Sav145390 		    (unsigned char **)&bufp) != -1) {
35382d33c01Sav145390 			(void) strlcpy(_fmd_csn, bufp, MAXNAMELEN);
3547aec1d6eScindi 		}
35582d33c01Sav145390 	}
35682d33c01Sav145390 
35782d33c01Sav145390 	if (promh != DI_PROM_HANDLE_NIL)
35882d33c01Sav145390 		di_prom_fini(promh);
35982d33c01Sav145390 	if (rooth != DI_NODE_NIL)
36082d33c01Sav145390 		di_fini(rooth);
3617aec1d6eScindi 
3627c478bd9Sstevel@tonic-gate 	bzero(dp, sizeof (fmd_t));
3637c478bd9Sstevel@tonic-gate 
3647c478bd9Sstevel@tonic-gate 	dp->d_version = _fmd_version;
3657c478bd9Sstevel@tonic-gate 	dp->d_pname = fmd_strbasename(arg0);
3667c478bd9Sstevel@tonic-gate 	dp->d_pid = getpid();
3677c478bd9Sstevel@tonic-gate 
3687c478bd9Sstevel@tonic-gate 	if (pthread_key_create(&dp->d_key, NULL) != 0)
3697c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to create pthread key");
3707c478bd9Sstevel@tonic-gate 
3717c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_xprt_lock, NULL);
3727c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_err_lock, NULL);
3737c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_thr_lock, NULL);
3747c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_mod_lock, NULL);
3757c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_stats_lock, NULL);
3760eb822a1Scindi 	(void) pthread_mutex_init(&dp->d_topo_lock, NULL);
3777c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_init(&dp->d_log_lock, NULL);
3787c478bd9Sstevel@tonic-gate 
3797c478bd9Sstevel@tonic-gate 	/*
3807c478bd9Sstevel@tonic-gate 	 * A small number of properties must be set manually before we open
3817c478bd9Sstevel@tonic-gate 	 * the root configuration file.  These include any settings for our
3827c478bd9Sstevel@tonic-gate 	 * memory allocator and path expansion token values, because these
3837c478bd9Sstevel@tonic-gate 	 * values are needed by the routines in fmd_conf.c itself.  After
3847c478bd9Sstevel@tonic-gate 	 * the root configuration file is processed, we reset these properties
3857c478bd9Sstevel@tonic-gate 	 * based upon the latest values from the configuration file.
3867c478bd9Sstevel@tonic-gate 	 */
3877c478bd9Sstevel@tonic-gate 	dp->d_alloc_msecs = 10;
3887c478bd9Sstevel@tonic-gate 	dp->d_alloc_tries = 3;
3897c478bd9Sstevel@tonic-gate 	dp->d_str_buckets = 211;
3907c478bd9Sstevel@tonic-gate 
3917c478bd9Sstevel@tonic-gate 	dp->d_rootdir = root ? root : "";
3927c478bd9Sstevel@tonic-gate 	dp->d_platform = _fmd_plat;
3937c478bd9Sstevel@tonic-gate 	dp->d_machine = _fmd_uts.machine;
3947c478bd9Sstevel@tonic-gate 	dp->d_isaname = _fmd_isa;
3957c478bd9Sstevel@tonic-gate 
396d9638e54Smws 	dp->d_conf = fmd_conf_open(conf, sizeof (_fmd_conf) /
397d9638e54Smws 	    sizeof (_fmd_conf[0]), _fmd_conf, FMD_CONF_DEFER);
3987c478bd9Sstevel@tonic-gate 
3997c478bd9Sstevel@tonic-gate 	if (dp->d_conf == NULL) {
4007c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT,
4017c478bd9Sstevel@tonic-gate 		    "failed to load required configuration properties\n");
4027c478bd9Sstevel@tonic-gate 	}
4037c478bd9Sstevel@tonic-gate 
4047c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "alloc.msecs", &dp->d_alloc_msecs);
4057c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "alloc.tries", &dp->d_alloc_tries);
4067c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "strbuckets", &dp->d_str_buckets);
4077c478bd9Sstevel@tonic-gate 
4087c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "platform", &dp->d_platform);
4097c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "machine", &dp->d_machine);
4107c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "isaname", &dp->d_isaname);
4117c478bd9Sstevel@tonic-gate 
4127c478bd9Sstevel@tonic-gate 	/*
4137c478bd9Sstevel@tonic-gate 	 * Manually specified rootdirs override config files, so only update
4147c478bd9Sstevel@tonic-gate 	 * d_rootdir based on the config files we parsed if no 'root' was set.
4157c478bd9Sstevel@tonic-gate 	 */
4167c478bd9Sstevel@tonic-gate 	if (root == NULL)
4177c478bd9Sstevel@tonic-gate 		(void) fmd_conf_getprop(dp->d_conf, "rootdir", &dp->d_rootdir);
4187c478bd9Sstevel@tonic-gate 	else
4197c478bd9Sstevel@tonic-gate 		(void) fmd_conf_setprop(dp->d_conf, "rootdir", dp->d_rootdir);
4207c478bd9Sstevel@tonic-gate 
4217c478bd9Sstevel@tonic-gate 	/*
4227c478bd9Sstevel@tonic-gate 	 * Once the base conf file properties are loaded, lookup the values
4237c478bd9Sstevel@tonic-gate 	 * of $conf_path and $conf_file and merge in any other conf files.
4247c478bd9Sstevel@tonic-gate 	 */
4257c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "conf_path", &pap);
4267c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "conf_file", &name);
4277c478bd9Sstevel@tonic-gate 
4287c478bd9Sstevel@tonic-gate 	for (i = 0; i < pap->cpa_argc; i++) {
4297c478bd9Sstevel@tonic-gate 		(void) snprintf(file, sizeof (file),
4307c478bd9Sstevel@tonic-gate 		    "%s/%s", pap->cpa_argv[i], name);
4317c478bd9Sstevel@tonic-gate 		if (access(file, F_OK) == 0)
4327c478bd9Sstevel@tonic-gate 			fmd_conf_merge(dp->d_conf, file);
4337c478bd9Sstevel@tonic-gate 	}
4347c478bd9Sstevel@tonic-gate 
4357c478bd9Sstevel@tonic-gate 	/*
4367c478bd9Sstevel@tonic-gate 	 * Update the value of fmd.d_fg based on "fg".  We cache this property
4377c478bd9Sstevel@tonic-gate 	 * because it must be accessed deep within fmd at fmd_verror() time.
438d9638e54Smws 	 * Update any other properties that must be cached for performance.
4397c478bd9Sstevel@tonic-gate 	 */
4407c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(fmd.d_conf, "fg", &fmd.d_fg);
441d9638e54Smws 	(void) fmd_conf_getprop(fmd.d_conf, "xprt.ttl", &fmd.d_xprt_ttl);
4427c478bd9Sstevel@tonic-gate 
4437c478bd9Sstevel@tonic-gate 	/*
4447c478bd9Sstevel@tonic-gate 	 * Initialize our custom libnvpair allocator and create an nvlist for
4457c478bd9Sstevel@tonic-gate 	 * authority elements corresponding to this instance of the daemon.
4467c478bd9Sstevel@tonic-gate 	 */
4477c478bd9Sstevel@tonic-gate 	(void) nv_alloc_init(&dp->d_nva, &fmd_nv_alloc_ops);
4487c478bd9Sstevel@tonic-gate 	dp->d_auth = fmd_protocol_authority();
4497c478bd9Sstevel@tonic-gate 
4507c478bd9Sstevel@tonic-gate 	/*
4517c478bd9Sstevel@tonic-gate 	 * The fmd_module_t for the root module must be created manually.  Most
4527c478bd9Sstevel@tonic-gate 	 * of it remains unused and zero, except for the few things we fill in.
4537c478bd9Sstevel@tonic-gate 	 */
4547c478bd9Sstevel@tonic-gate 	dp->d_rmod = fmd_zalloc(sizeof (fmd_module_t), FMD_SLEEP);
4557c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_name = fmd_strdup(dp->d_pname, FMD_SLEEP);
456d9638e54Smws 	dp->d_rmod->mod_fmri = fmd_protocol_fmri_module(dp->d_rmod);
457d9638e54Smws 
4587c478bd9Sstevel@tonic-gate 	fmd_list_append(&dp->d_mod_list, dp->d_rmod);
459d9638e54Smws 	fmd_module_hold(dp->d_rmod);
4607c478bd9Sstevel@tonic-gate 
4617c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_rmod->mod_lock, NULL);
4627c478bd9Sstevel@tonic-gate 	(void) pthread_cond_init(&dp->d_rmod->mod_cv, NULL);
463d9638e54Smws 	(void) pthread_mutex_init(&dp->d_rmod->mod_stats_lock, NULL);
4647c478bd9Sstevel@tonic-gate 
4657c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_thread = fmd_thread_xcreate(dp->d_rmod, pthread_self());
466d9638e54Smws 	dp->d_rmod->mod_stats = fmd_zalloc(sizeof (fmd_modstat_t), FMD_SLEEP);
4677c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_ustat = fmd_ustat_create();
4687c478bd9Sstevel@tonic-gate 
4697c478bd9Sstevel@tonic-gate 	if (pthread_setspecific(dp->d_key, dp->d_rmod->mod_thread) != 0)
4707c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to attach main thread key");
4717c478bd9Sstevel@tonic-gate 
4727c478bd9Sstevel@tonic-gate 	if ((dp->d_stats = (fmd_statistics_t *)fmd_ustat_insert(
4737c478bd9Sstevel@tonic-gate 	    dp->d_rmod->mod_ustat, FMD_USTAT_NOALLOC, sizeof (_fmd_stats) /
4747c478bd9Sstevel@tonic-gate 	    sizeof (fmd_stat_t), (fmd_stat_t *)&_fmd_stats, NULL)) == NULL)
4757c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to initialize statistics");
4767c478bd9Sstevel@tonic-gate 
477d9638e54Smws 	(void) pthread_mutex_lock(&dp->d_rmod->mod_lock);
478d9638e54Smws 	dp->d_rmod->mod_flags |= FMD_MOD_INIT;
479d9638e54Smws 	(void) pthread_mutex_unlock(&dp->d_rmod->mod_lock);
480d9638e54Smws 
4817c478bd9Sstevel@tonic-gate 	/*
4827c478bd9Sstevel@tonic-gate 	 * In addition to inserting the _fmd_stats collection of program-wide
4837c478bd9Sstevel@tonic-gate 	 * statistics, we also insert a statistic named after each of our
4847c478bd9Sstevel@tonic-gate 	 * errors and update these counts in fmd_verror() (see fmd_subr.c).
4857c478bd9Sstevel@tonic-gate 	 */
4867c478bd9Sstevel@tonic-gate 	dp->d_errstats = sp = fmd_zalloc(sizeof (fmd_stat_t) *
4877c478bd9Sstevel@tonic-gate 	    (EFMD_END - EFMD_UNKNOWN), FMD_SLEEP);
4887c478bd9Sstevel@tonic-gate 
4897c478bd9Sstevel@tonic-gate 	for (i = 0; i < EFMD_END - EFMD_UNKNOWN; i++, sp++) {
4907c478bd9Sstevel@tonic-gate 		(void) snprintf(sp->fmds_name, sizeof (sp->fmds_name), "err.%s",
4917c478bd9Sstevel@tonic-gate 		    strrchr(fmd_errclass(EFMD_UNKNOWN + i), '.') + 1);
4927c478bd9Sstevel@tonic-gate 		sp->fmds_type = FMD_TYPE_UINT64;
4937c478bd9Sstevel@tonic-gate 	}
4947c478bd9Sstevel@tonic-gate 
4957c478bd9Sstevel@tonic-gate 	(void) fmd_ustat_insert(dp->d_rmod->mod_ustat, FMD_USTAT_NOALLOC,
4967c478bd9Sstevel@tonic-gate 	    EFMD_END - EFMD_UNKNOWN, dp->d_errstats, NULL);
4977c478bd9Sstevel@tonic-gate }
4987c478bd9Sstevel@tonic-gate 
4997c478bd9Sstevel@tonic-gate void
5007c478bd9Sstevel@tonic-gate fmd_destroy(fmd_t *dp)
5017c478bd9Sstevel@tonic-gate {
5027c478bd9Sstevel@tonic-gate 	fmd_module_t *mp;
503d9638e54Smws 	fmd_case_t *cp;
5047c478bd9Sstevel@tonic-gate 	int core;
5057c478bd9Sstevel@tonic-gate 
5067c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(fmd.d_conf, "core", &core);
5077c478bd9Sstevel@tonic-gate 
5087c478bd9Sstevel@tonic-gate 	fmd_rpc_fini();
5097c478bd9Sstevel@tonic-gate 	fmd_dr_fini();
510e4586ebfSmws 
511e4586ebfSmws 	if (dp->d_xprt_ids != NULL)
512d9638e54Smws 		fmd_xprt_suspend_all();
5137c478bd9Sstevel@tonic-gate 
5147c478bd9Sstevel@tonic-gate 	/*
5157c478bd9Sstevel@tonic-gate 	 * Unload the self-diagnosis module first.  This ensures that it does
5167c478bd9Sstevel@tonic-gate 	 * not get confused as we start unloading other modules, etc.  We must
5177c478bd9Sstevel@tonic-gate 	 * hold the dispq lock as a writer while doing so since it uses d_self.
5187c478bd9Sstevel@tonic-gate 	 */
5197c478bd9Sstevel@tonic-gate 	if (dp->d_self != NULL) {
52000958acdScindi 		fmd_module_t *self;
52100958acdScindi 
5227c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_wrlock(&dp->d_disp->dq_lock);
52300958acdScindi 		self = dp->d_self;
5247c478bd9Sstevel@tonic-gate 		dp->d_self = NULL;
5257c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_unlock(&dp->d_disp->dq_lock);
52600958acdScindi 
52700958acdScindi 		fmd_module_unload(self);
52800958acdScindi 		fmd_module_rele(self);
5297c478bd9Sstevel@tonic-gate 	}
5307c478bd9Sstevel@tonic-gate 
5317c478bd9Sstevel@tonic-gate 	/*
5327c478bd9Sstevel@tonic-gate 	 * Unload modules in reverse order *except* for the root module, which
5337c478bd9Sstevel@tonic-gate 	 * is first in the list.  This allows it to keep its thread and trace.
5347c478bd9Sstevel@tonic-gate 	 */
5357c478bd9Sstevel@tonic-gate 	for (mp = fmd_list_prev(&dp->d_mod_list); mp != dp->d_rmod; ) {
5367c478bd9Sstevel@tonic-gate 		fmd_module_unload(mp);
5377c478bd9Sstevel@tonic-gate 		mp = fmd_list_prev(mp);
5387c478bd9Sstevel@tonic-gate 	}
5397c478bd9Sstevel@tonic-gate 
5407c478bd9Sstevel@tonic-gate 	if (dp->d_mod_hash != NULL) {
5417c478bd9Sstevel@tonic-gate 		fmd_modhash_destroy(dp->d_mod_hash);
5427c478bd9Sstevel@tonic-gate 		dp->d_mod_hash = NULL;
5437c478bd9Sstevel@tonic-gate 	}
5447c478bd9Sstevel@tonic-gate 
5457c478bd9Sstevel@tonic-gate 	/*
5467c478bd9Sstevel@tonic-gate 	 * Close both log files now that modules are no longer active.  We must
5477c478bd9Sstevel@tonic-gate 	 * set these pointers to NULL in case any subsequent errors occur.
5487c478bd9Sstevel@tonic-gate 	 */
5497c478bd9Sstevel@tonic-gate 	if (dp->d_errlog != NULL) {
5507c478bd9Sstevel@tonic-gate 		fmd_log_rele(dp->d_errlog);
5517c478bd9Sstevel@tonic-gate 		dp->d_errlog = NULL;
5527c478bd9Sstevel@tonic-gate 	}
5537c478bd9Sstevel@tonic-gate 
5547c478bd9Sstevel@tonic-gate 	if (dp->d_fltlog != NULL) {
5557c478bd9Sstevel@tonic-gate 		fmd_log_rele(dp->d_fltlog);
5567c478bd9Sstevel@tonic-gate 		dp->d_fltlog = NULL;
5577c478bd9Sstevel@tonic-gate 	}
5587c478bd9Sstevel@tonic-gate 
5597c478bd9Sstevel@tonic-gate 	/*
560d9638e54Smws 	 * Now destroy the resource cache: each ASRU contains a case reference,
561d9638e54Smws 	 * which may in turn contain a pointer to a referenced owning module.
562d9638e54Smws 	 */
563d9638e54Smws 	if (dp->d_asrus != NULL) {
564d9638e54Smws 		fmd_asru_hash_destroy(dp->d_asrus);
565d9638e54Smws 		dp->d_asrus = NULL;
566d9638e54Smws 	}
567d9638e54Smws 
568d9638e54Smws 	/*
5697c478bd9Sstevel@tonic-gate 	 * Now that all data structures that refer to modules are torn down,
5707c478bd9Sstevel@tonic-gate 	 * no modules should be remaining on the module list except for d_rmod.
5717c478bd9Sstevel@tonic-gate 	 * If we trip one of these assertions, we're missing a rele somewhere.
5727c478bd9Sstevel@tonic-gate 	 */
5737c478bd9Sstevel@tonic-gate 	ASSERT(fmd_list_prev(&dp->d_mod_list) == dp->d_rmod);
5747c478bd9Sstevel@tonic-gate 	ASSERT(fmd_list_next(&dp->d_mod_list) == dp->d_rmod);
5757c478bd9Sstevel@tonic-gate 
5767c478bd9Sstevel@tonic-gate 	/*
5777c478bd9Sstevel@tonic-gate 	 * Now destroy the root module.  We clear its thread key first so any
5787c478bd9Sstevel@tonic-gate 	 * calls to fmd_trace() inside of the module code will be ignored.
5797c478bd9Sstevel@tonic-gate 	 */
5807c478bd9Sstevel@tonic-gate 	(void) pthread_setspecific(dp->d_key, NULL);
581d9638e54Smws 	fmd_module_lock(dp->d_rmod);
5827c478bd9Sstevel@tonic-gate 
583d9638e54Smws 	while ((cp = fmd_list_next(&dp->d_rmod->mod_cases)) != NULL)
584d9638e54Smws 		fmd_case_discard(cp);
585d9638e54Smws 
586d9638e54Smws 	fmd_module_unlock(dp->d_rmod);
587d9638e54Smws 	fmd_free(dp->d_rmod->mod_stats, sizeof (fmd_modstat_t));
588d9638e54Smws 	dp->d_rmod->mod_stats = NULL;
589d9638e54Smws 
590d9638e54Smws 	(void) pthread_mutex_lock(&dp->d_rmod->mod_lock);
591d9638e54Smws 	dp->d_rmod->mod_flags |= FMD_MOD_FINI;
592d9638e54Smws 	(void) pthread_mutex_unlock(&dp->d_rmod->mod_lock);
593d9638e54Smws 
594d9638e54Smws 	fmd_module_rele(dp->d_rmod);
595d9638e54Smws 	ASSERT(fmd_list_next(&dp->d_mod_list) == NULL);
596d9638e54Smws 
597d9638e54Smws 	/*
598d9638e54Smws 	 * Now destroy the remaining global data structures.  If 'core' was
599d9638e54Smws 	 * set to true, force a core dump so we can check for memory leaks.
600d9638e54Smws 	 */
6017c478bd9Sstevel@tonic-gate 	if (dp->d_cases != NULL)
6027c478bd9Sstevel@tonic-gate 		fmd_case_hash_destroy(dp->d_cases);
603d9638e54Smws 	if (dp->d_disp != NULL)
604d9638e54Smws 		fmd_dispq_destroy(dp->d_disp);
605d9638e54Smws 	if (dp->d_timers != NULL)
606d9638e54Smws 		fmd_timerq_destroy(dp->d_timers);
607d9638e54Smws 	if (dp->d_schemes != NULL)
608d9638e54Smws 		fmd_scheme_hash_destroy(dp->d_schemes);
609d9638e54Smws 	if (dp->d_xprt_ids != NULL)
610d9638e54Smws 		fmd_idspace_destroy(dp->d_xprt_ids);
6117c478bd9Sstevel@tonic-gate 
6127c478bd9Sstevel@tonic-gate 	if (dp->d_errstats != NULL) {
6137c478bd9Sstevel@tonic-gate 		fmd_free(dp->d_errstats,
6147c478bd9Sstevel@tonic-gate 		    sizeof (fmd_stat_t) * (EFMD_END - EFMD_UNKNOWN));
6157c478bd9Sstevel@tonic-gate 	}
6167c478bd9Sstevel@tonic-gate 
6177c478bd9Sstevel@tonic-gate 	if (dp->d_conf != NULL)
6187c478bd9Sstevel@tonic-gate 		fmd_conf_close(dp->d_conf);
6197c478bd9Sstevel@tonic-gate 
6200eb822a1Scindi 	fmd_topo_fini();
6217aec1d6eScindi 
6227c478bd9Sstevel@tonic-gate 	nvlist_free(dp->d_auth);
6237c478bd9Sstevel@tonic-gate 	(void) nv_alloc_fini(&dp->d_nva);
6247c478bd9Sstevel@tonic-gate 	dp->d_clockops->fto_fini(dp->d_clockptr);
6257c478bd9Sstevel@tonic-gate 
6267c478bd9Sstevel@tonic-gate 	(void) pthread_key_delete(dp->d_key);
6277c478bd9Sstevel@tonic-gate 	bzero(dp, sizeof (fmd_t));
6287c478bd9Sstevel@tonic-gate 
6297c478bd9Sstevel@tonic-gate 	if (core)
6307c478bd9Sstevel@tonic-gate 		fmd_panic("forcing core dump at user request\n");
6317c478bd9Sstevel@tonic-gate }
6327c478bd9Sstevel@tonic-gate 
6337c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6347c478bd9Sstevel@tonic-gate static void
6357c478bd9Sstevel@tonic-gate fmd_gc(fmd_t *dp, id_t id, hrtime_t hrt)
6367c478bd9Sstevel@tonic-gate {
6377c478bd9Sstevel@tonic-gate 	hrtime_t delta;
6387c478bd9Sstevel@tonic-gate 
6397c478bd9Sstevel@tonic-gate 	if (id != 0) {
6407c478bd9Sstevel@tonic-gate 		TRACE((FMD_DBG_MOD, "garbage collect start"));
6417c478bd9Sstevel@tonic-gate 		fmd_modhash_apply(dp->d_mod_hash, fmd_module_gc);
6427c478bd9Sstevel@tonic-gate 		TRACE((FMD_DBG_MOD, "garbage collect end"));
6437c478bd9Sstevel@tonic-gate 
6447c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_rdlock(&dp->d_log_lock);
6457c478bd9Sstevel@tonic-gate 		fmd_log_update(dp->d_errlog);
6467c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_unlock(&dp->d_log_lock);
6477c478bd9Sstevel@tonic-gate 	}
6487c478bd9Sstevel@tonic-gate 
6497c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "gc_interval", &delta);
6507c478bd9Sstevel@tonic-gate 	(void) fmd_timerq_install(dp->d_timers, dp->d_rmod->mod_timerids,
6517c478bd9Sstevel@tonic-gate 	    (fmd_timer_f *)fmd_gc, dp, NULL, delta);
6527c478bd9Sstevel@tonic-gate }
6537c478bd9Sstevel@tonic-gate 
6547c478bd9Sstevel@tonic-gate /*
6557c478bd9Sstevel@tonic-gate  * Events are committed to the errlog after cases are checkpointed.  If fmd
6567c478bd9Sstevel@tonic-gate  * crashes before an event is ever associated with a module, this function will
6577c478bd9Sstevel@tonic-gate  * be called to replay it to all subscribers.  If fmd crashes in between the
6587c478bd9Sstevel@tonic-gate  * subscriber checkpointing and committing the event in the error log, the
6597c478bd9Sstevel@tonic-gate  * module will have seen the event and we don't want to replay it.  So we look
6607c478bd9Sstevel@tonic-gate  * for the event in all modules and transition it to the proper state.  If
6617c478bd9Sstevel@tonic-gate  * it is found, we commit it to the error log and do not replay it.  The in-
6627c478bd9Sstevel@tonic-gate  * memory case search used by fmd_module_contains() et al isn't particularly
6637c478bd9Sstevel@tonic-gate  * efficient, but it is faster than doing read i/o's on every case event to
6647c478bd9Sstevel@tonic-gate  * check their status or write i/o's on every event to replay to update states.
6657c478bd9Sstevel@tonic-gate  * We can improve the efficiency of this lookup algorithm later if necessary.
6667c478bd9Sstevel@tonic-gate  */
6677c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6687c478bd9Sstevel@tonic-gate static void
6697c478bd9Sstevel@tonic-gate fmd_err_replay(fmd_log_t *lp, fmd_event_t *ep, fmd_t *dp)
6707c478bd9Sstevel@tonic-gate {
6717c478bd9Sstevel@tonic-gate 	fmd_module_t *mp;
6727c478bd9Sstevel@tonic-gate 	fmd_stat_t *sp;
6737c478bd9Sstevel@tonic-gate 
6747c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_lock(&dp->d_mod_lock);
6757c478bd9Sstevel@tonic-gate 
6767c478bd9Sstevel@tonic-gate 	for (mp = fmd_list_next(&dp->d_mod_list);
6777c478bd9Sstevel@tonic-gate 	    mp != NULL; mp = fmd_list_next(mp)) {
6787c478bd9Sstevel@tonic-gate 		if (fmd_module_contains(mp, ep)) {
6797c478bd9Sstevel@tonic-gate 			fmd_module_hold(mp);
6807c478bd9Sstevel@tonic-gate 			break;
6817c478bd9Sstevel@tonic-gate 		}
6827c478bd9Sstevel@tonic-gate 	}
6837c478bd9Sstevel@tonic-gate 
6847c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_unlock(&dp->d_mod_lock);
6857c478bd9Sstevel@tonic-gate 
6867c478bd9Sstevel@tonic-gate 	if (mp != NULL) {
6877c478bd9Sstevel@tonic-gate 		fmd_event_commit(ep);
6887c478bd9Sstevel@tonic-gate 		fmd_module_rele(mp);
6897c478bd9Sstevel@tonic-gate 		sp = &dp->d_stats->ds_log_partials;
6907c478bd9Sstevel@tonic-gate 	} else {
691d9638e54Smws 		fmd_dispq_dispatch(dp->d_disp, ep, FMD_EVENT_DATA(ep));
6927c478bd9Sstevel@tonic-gate 		sp = &dp->d_stats->ds_log_replayed;
6937c478bd9Sstevel@tonic-gate 	}
6947c478bd9Sstevel@tonic-gate 
6957c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_lock(&dp->d_stats_lock);
6967c478bd9Sstevel@tonic-gate 	sp->fmds_value.ui64++;
6977c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_unlock(&dp->d_stats_lock);
6987c478bd9Sstevel@tonic-gate }
6997c478bd9Sstevel@tonic-gate 
700d9638e54Smws void
701d9638e54Smws fmd_door_server(void *dip)
702d9638e54Smws {
703d9638e54Smws 	fmd_dprintf(FMD_DBG_XPRT, "door server starting for %p\n", dip);
704d9638e54Smws 	(void) pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
705d9638e54Smws 	(void) door_return(NULL, 0, NULL, 0);
706d9638e54Smws }
707d9638e54Smws 
708d9638e54Smws /*
709d9638e54Smws  * Custom door server create callback.  Any fmd services that use doors will
710d9638e54Smws  * require those threads to have their fmd-specific TSD initialized, etc.
711d9638e54Smws  */
712d9638e54Smws static void
713d9638e54Smws fmd_door(door_info_t *dip)
714d9638e54Smws {
715d9638e54Smws 	if (fmd_thread_create(fmd.d_rmod, fmd_door_server, dip) == NULL)
716d9638e54Smws 		fmd_panic("failed to create server for door %p", (void *)dip);
717d9638e54Smws }
718d9638e54Smws 
7197c478bd9Sstevel@tonic-gate /*
7207c478bd9Sstevel@tonic-gate  * This signal handler is installed for the client.thrsig signal to be used to
7217c478bd9Sstevel@tonic-gate  * force an auxiliary thread to wake up from a system call and return EINTR in
7227c478bd9Sstevel@tonic-gate  * response to a module's use of fmd_thr_signal().  We also trace the event.
7237c478bd9Sstevel@tonic-gate  */
7247c478bd9Sstevel@tonic-gate static void
7257c478bd9Sstevel@tonic-gate fmd_signal(int sig)
7267c478bd9Sstevel@tonic-gate {
7277c478bd9Sstevel@tonic-gate 	TRACE((FMD_DBG_MOD, "module thread received sig #%d", sig));
7287c478bd9Sstevel@tonic-gate }
7297c478bd9Sstevel@tonic-gate 
7307c478bd9Sstevel@tonic-gate void
7317c478bd9Sstevel@tonic-gate fmd_run(fmd_t *dp, int pfd)
7327c478bd9Sstevel@tonic-gate {
7337c478bd9Sstevel@tonic-gate 	char *nodc_key[] = { FMD_FLT_NODC, NULL };
7347c478bd9Sstevel@tonic-gate 	char nodc_str[128];
7357c478bd9Sstevel@tonic-gate 	struct sigaction act;
7367c478bd9Sstevel@tonic-gate 
7377c478bd9Sstevel@tonic-gate 	int status = FMD_EXIT_SUCCESS;
7387c478bd9Sstevel@tonic-gate 	const char *name;
7397c478bd9Sstevel@tonic-gate 	fmd_conf_path_t *pap;
740d9638e54Smws 	fmd_event_t *e;
7410eb822a1Scindi 	int dbout;
7427c478bd9Sstevel@tonic-gate 
7437c478bd9Sstevel@tonic-gate 	/*
7447c478bd9Sstevel@tonic-gate 	 * Cache all the current debug property settings in d_fmd_debug,
7457c478bd9Sstevel@tonic-gate 	 * d_fmd_dbout, d_hdl_debug, and d_hdl_dbout.  If a given debug mask
7467c478bd9Sstevel@tonic-gate 	 * is non-zero and the corresponding dbout mask is zero, set dbout
7477c478bd9Sstevel@tonic-gate 	 * to a sensible default value based on whether we have daemonized.
7487c478bd9Sstevel@tonic-gate 	 */
7497c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "dbout", &dbout);
7507c478bd9Sstevel@tonic-gate 
7517c478bd9Sstevel@tonic-gate 	if (dp->d_fmd_debug != 0 && dbout == 0)
7527c478bd9Sstevel@tonic-gate 		dp->d_fmd_dbout = dp->d_fg? FMD_DBOUT_STDERR : FMD_DBOUT_SYSLOG;
7537c478bd9Sstevel@tonic-gate 	else
7547c478bd9Sstevel@tonic-gate 		dp->d_fmd_dbout = dbout;
7557c478bd9Sstevel@tonic-gate 
7567c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.debug", &dp->d_hdl_debug);
7577c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.dbout", &dbout);
7587c478bd9Sstevel@tonic-gate 
7597c478bd9Sstevel@tonic-gate 	if (dp->d_hdl_debug != 0 && dbout == 0)
7607c478bd9Sstevel@tonic-gate 		dp->d_hdl_dbout = dp->d_fg? FMD_DBOUT_STDERR : FMD_DBOUT_SYSLOG;
7617c478bd9Sstevel@tonic-gate 	else
7627c478bd9Sstevel@tonic-gate 		dp->d_hdl_dbout = dbout;
7637c478bd9Sstevel@tonic-gate 
7647c478bd9Sstevel@tonic-gate 	/*
765d9638e54Smws 	 * Initialize remaining major program data structures such as the
766d9638e54Smws 	 * clock, dispatch queues, log files, module hash collections, etc.
7677c478bd9Sstevel@tonic-gate 	 * This work is done here rather than in fmd_create() to permit the -o
7687c478bd9Sstevel@tonic-gate 	 * command-line option to modify properties after fmd_create() is done.
7697c478bd9Sstevel@tonic-gate 	 */
7707aec1d6eScindi 	name = dp->d_rootdir != NULL &&
7717aec1d6eScindi 	    *dp->d_rootdir != '\0' ? dp->d_rootdir : NULL;
7727aec1d6eScindi 
773*0940c086Seschrock 	/*
774*0940c086Seschrock 	 * The clock must be initialized before fmd_topo_init() because
775*0940c086Seschrock 	 * fmd_topo_update() calls fmd_time_gethrtime().
776*0940c086Seschrock 	 */
777*0940c086Seschrock 	dp->d_clockptr = dp->d_clockops->fto_init();
778*0940c086Seschrock 
7790eb822a1Scindi 	fmd_topo_init();
7807aec1d6eScindi 
781d9638e54Smws 	dp->d_xprt_ids = fmd_idspace_create("xprt_ids", 1, INT_MAX);
782d9638e54Smws 	fmd_xprt_suspend_all();
783d9638e54Smws 
784d9638e54Smws 	(void) door_server_create(fmd_door);
7857c478bd9Sstevel@tonic-gate 	fmd_dr_init();
7867c478bd9Sstevel@tonic-gate 
7877c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_timerids = fmd_idspace_create(dp->d_pname, 1, 16);
7887c478bd9Sstevel@tonic-gate 	dp->d_timers = fmd_timerq_create();
7897c478bd9Sstevel@tonic-gate 	dp->d_disp = fmd_dispq_create();
7907c478bd9Sstevel@tonic-gate 	dp->d_cases = fmd_case_hash_create();
7917c478bd9Sstevel@tonic-gate 
7927c478bd9Sstevel@tonic-gate 	/*
793d9638e54Smws 	 * The root module's mod_queue is created with limit zero, making it
794d9638e54Smws 	 * act like /dev/null; anything inserted here is simply ignored.
795d9638e54Smws 	 */
796d9638e54Smws 	dp->d_rmod->mod_queue = fmd_eventq_create(dp->d_rmod,
797d9638e54Smws 	    &dp->d_rmod->mod_stats->ms_evqstat, &dp->d_rmod->mod_stats_lock, 0);
798d9638e54Smws 
799d9638e54Smws 	/*
8007c478bd9Sstevel@tonic-gate 	 * Once our subsystems that use signals have been set up, install the
8017c478bd9Sstevel@tonic-gate 	 * signal handler for the fmd_thr_signal() API.  Verify that the signal
8027c478bd9Sstevel@tonic-gate 	 * being used for this purpose doesn't conflict with something else.
8037c478bd9Sstevel@tonic-gate 	 */
8047c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.thrsig", &dp->d_thr_sig);
8057c478bd9Sstevel@tonic-gate 
8067c478bd9Sstevel@tonic-gate 	if (sigaction(dp->d_thr_sig, NULL, &act) != 0) {
8077c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "invalid signal selected for "
8087c478bd9Sstevel@tonic-gate 		    "client.thrsig property: %d\n", dp->d_thr_sig);
8097c478bd9Sstevel@tonic-gate 	}
8107c478bd9Sstevel@tonic-gate 
8117c478bd9Sstevel@tonic-gate 	if (act.sa_handler != SIG_IGN && act.sa_handler != SIG_DFL) {
8127c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "signal selected for client.thrsig "
8137c478bd9Sstevel@tonic-gate 		    "property is already in use: %d\n", dp->d_thr_sig);
8147c478bd9Sstevel@tonic-gate 	}
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate 	act.sa_handler = fmd_signal;
8177c478bd9Sstevel@tonic-gate 	act.sa_flags = 0;
8187c478bd9Sstevel@tonic-gate 
8197c478bd9Sstevel@tonic-gate 	(void) sigemptyset(&act.sa_mask);
8207c478bd9Sstevel@tonic-gate 	(void) sigaction(dp->d_thr_sig, &act, NULL);
8217c478bd9Sstevel@tonic-gate 
8227c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "schemedir", &name);
8237c478bd9Sstevel@tonic-gate 	dp->d_schemes = fmd_scheme_hash_create(dp->d_rootdir, name);
8247c478bd9Sstevel@tonic-gate 
8257c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.rsrc", &name);
8267c478bd9Sstevel@tonic-gate 	dp->d_asrus = fmd_asru_hash_create(dp->d_rootdir, name);
8277c478bd9Sstevel@tonic-gate 
8287c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.error", &name);
8297c478bd9Sstevel@tonic-gate 	dp->d_errlog = fmd_log_open(dp->d_rootdir, name, FMD_LOG_ERROR);
8307c478bd9Sstevel@tonic-gate 
8317c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.fault", &name);
8327c478bd9Sstevel@tonic-gate 	dp->d_fltlog = fmd_log_open(dp->d_rootdir, name, FMD_LOG_FAULT);
8337c478bd9Sstevel@tonic-gate 
8347c478bd9Sstevel@tonic-gate 	if (dp->d_asrus == NULL || dp->d_errlog == NULL || dp->d_fltlog == NULL)
8357c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to initialize log files\n");
8367c478bd9Sstevel@tonic-gate 
837d9638e54Smws 	/*
838d9638e54Smws 	 * Before loading modules, create an empty control event which will act
839d9638e54Smws 	 * as a global barrier for module event processing.  Each module we
840d9638e54Smws 	 * load successfully will insert it at their head of their event queue,
841d9638e54Smws 	 * and then pause inside of fmd_ctl_rele() after dequeuing the event.
842d9638e54Smws 	 * This module barrier is required for two reasons:
843d9638e54Smws 	 *
844d9638e54Smws 	 * (a) During module loading, the restoration of case checkpoints may
845d9638e54Smws 	 *    result in a list.* event being recreated for which the intended
846d9638e54Smws 	 *    subscriber has not yet loaded depending on the load order. Such
847d9638e54Smws 	 *    events could then result in spurious "no subscriber" errors.
848d9638e54Smws 	 *
849d9638e54Smws 	 * (b) During errlog replay, a sequence of errors from a long time ago
850d9638e54Smws 	 *    may be replayed, and the module may attempt to install relative
851d9638e54Smws 	 *    timers associated with one or more of these events.  If errlog
852d9638e54Smws 	 *    replay were "racing" with active module threads, an event E1
853d9638e54Smws 	 *    that resulted in a relative timer T at time E1 + N nsec could
854d9638e54Smws 	 *    fire prior to an event E2 being enqueued, even if the relative
855d9638e54Smws 	 *    time ordering was E1 < E2 < E1 + N, causing mis-diagnosis.
856d9638e54Smws 	 */
857d9638e54Smws 	dp->d_mod_event = e = fmd_event_create(FMD_EVT_CTL,
858d9638e54Smws 	    FMD_HRT_NOW, NULL, fmd_ctl_init(NULL));
859d9638e54Smws 
860d9638e54Smws 	fmd_event_hold(e);
861d9638e54Smws 
862d9638e54Smws 	/*
863d9638e54Smws 	 * Once all data structures are initialized, we load all of our modules
864d9638e54Smws 	 * in order according to class in order to load up any subscriptions.
865d9638e54Smws 	 * Once built-in modules are loaded, we detach from our waiting parent.
866d9638e54Smws 	 */
8677c478bd9Sstevel@tonic-gate 	dp->d_mod_hash = fmd_modhash_create();
868d9638e54Smws 
869d9638e54Smws 	if (fmd_builtin_loadall(dp->d_mod_hash) != 0 && !dp->d_fg)
870d9638e54Smws 		fmd_error(EFMD_EXIT, "failed to initialize fault manager\n");
871d9638e54Smws 
872d9638e54Smws 	(void) fmd_conf_getprop(dp->d_conf, "self.name", &name);
873d9638e54Smws 	dp->d_self = fmd_modhash_lookup(dp->d_mod_hash, name);
874d9638e54Smws 
875d9638e54Smws 	if (dp->d_self != NULL && fmd_module_dc_key2code(dp->d_self,
876d9638e54Smws 	    nodc_key, nodc_str, sizeof (nodc_str)) == 0)
877d9638e54Smws 		(void) fmd_conf_setprop(dp->d_conf, "nodiagcode", nodc_str);
878d9638e54Smws 
879d9638e54Smws 	fmd_rpc_init();
8807c478bd9Sstevel@tonic-gate 	dp->d_running = 1; /* we are now officially an active fmd */
8817c478bd9Sstevel@tonic-gate 
8827c478bd9Sstevel@tonic-gate 	/*
8837c478bd9Sstevel@tonic-gate 	 * Now that we're running, if a pipe fd was specified, write an exit
8847c478bd9Sstevel@tonic-gate 	 * status to it to indicate that our parent process can safely detach.
885d9638e54Smws 	 * Then proceed to loading the remaining non-built-in modules.
8867c478bd9Sstevel@tonic-gate 	 */
8877c478bd9Sstevel@tonic-gate 	if (pfd >= 0)
8887c478bd9Sstevel@tonic-gate 		(void) write(pfd, &status, sizeof (status));
8897c478bd9Sstevel@tonic-gate 
890162ba6eaSmws 	/*
891162ba6eaSmws 	 * Before loading all modules, repopulate the ASRU cache from its
892162ba6eaSmws 	 * persistent repository on disk.  Then during module loading, the
893162ba6eaSmws 	 * restoration of checkpoint files will reparent any active cases.
894162ba6eaSmws 	 */
895162ba6eaSmws 	fmd_asru_hash_refresh(dp->d_asrus);
896162ba6eaSmws 
8977c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "plugin.path", &pap);
8980b9e3e76Smws 	fmd_modhash_loadall(dp->d_mod_hash, pap, &fmd_rtld_ops, ".so");
8997c478bd9Sstevel@tonic-gate 
9007c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "agent.path", &pap);
9010b9e3e76Smws 	fmd_modhash_loadall(dp->d_mod_hash, pap, &fmd_proc_ops, NULL);
9027c478bd9Sstevel@tonic-gate 
9037c478bd9Sstevel@tonic-gate 	/*
904d9638e54Smws 	 * With all modules loaded, replay fault events from the ASRU cache for
905d9638e54Smws 	 * any ASRUs that must be retired, replay error events from the errlog
906d9638e54Smws 	 * that did not finish processing the last time ran, and then release
907d9638e54Smws 	 * the global module barrier by executing a final rele on d_mod_event.
9087c478bd9Sstevel@tonic-gate 	 */
909162ba6eaSmws 	fmd_asru_hash_replay(dp->d_asrus);
9107c478bd9Sstevel@tonic-gate 
9117c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_rdlock(&dp->d_log_lock);
9127c478bd9Sstevel@tonic-gate 	fmd_log_replay(dp->d_errlog, (fmd_log_f *)fmd_err_replay, dp);
9137c478bd9Sstevel@tonic-gate 	fmd_log_update(dp->d_errlog);
9147c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_unlock(&dp->d_log_lock);
9157c478bd9Sstevel@tonic-gate 
916d9638e54Smws 	dp->d_mod_event = NULL;
917d9638e54Smws 	fmd_event_rele(e);
9187c478bd9Sstevel@tonic-gate 
9197c478bd9Sstevel@tonic-gate 	/*
9207c478bd9Sstevel@tonic-gate 	 * Finally, awaken any threads associated with receiving events from
921d9638e54Smws 	 * open transports and tell them to proceed with fmd_xprt_recv().
9227c478bd9Sstevel@tonic-gate 	 */
923d9638e54Smws 	fmd_xprt_resume_all();
9247c478bd9Sstevel@tonic-gate 	fmd_gc(dp, 0, 0);
925d9638e54Smws 
926d9638e54Smws 	dp->d_booted = 1;
9277c478bd9Sstevel@tonic-gate }
9287c478bd9Sstevel@tonic-gate 
9297c478bd9Sstevel@tonic-gate void
9307c478bd9Sstevel@tonic-gate fmd_help(fmd_t *dp)
9317c478bd9Sstevel@tonic-gate {
9327c478bd9Sstevel@tonic-gate 	const fmd_conf_mode_t *cmp;
9337c478bd9Sstevel@tonic-gate 
9347c478bd9Sstevel@tonic-gate 	(void) printf("Usage: %s -o debug=mode[,mode]\n", dp->d_pname);
9357c478bd9Sstevel@tonic-gate 
9367c478bd9Sstevel@tonic-gate 	for (cmp = _fmd_debug_modes; cmp->cm_name != NULL; cmp++)
9377c478bd9Sstevel@tonic-gate 		(void) printf("\t%s\t%s\n", cmp->cm_name, cmp->cm_desc);
9387c478bd9Sstevel@tonic-gate }
939