xref: /illumos-gate/usr/src/cmd/fm/fmd/common/fmd.c (revision 6e1fa242609208de48dfe1939b8814d4dff455a5)
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>
39*6e1fa242SStephen 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 */
757aec1d6eScindi static char _fmd_csn[MAXNAMELEN];		/* chassis serial number */
767aec1d6eScindi static char _fmd_prod[MAXNAMELEN];		/* product name string */
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate /*
797c478bd9Sstevel@tonic-gate  * Note: the configuration file path is ordered from most common to most host-
807c478bd9Sstevel@tonic-gate  * specific because new conf files are merged/override previous ones.  The
817c478bd9Sstevel@tonic-gate  * module paths are in the opposite order, from most specific to most common,
827c478bd9Sstevel@tonic-gate  * because once a module is loaded fmd will not try to load over the same name.
837c478bd9Sstevel@tonic-gate  */
847c478bd9Sstevel@tonic-gate 
857c478bd9Sstevel@tonic-gate static const char _fmd_conf_path[] =
867c478bd9Sstevel@tonic-gate 	"%r/usr/lib/fm/fmd:"
877c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%m/lib/fm/fmd:"
887c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%i/lib/fm/fmd:"
897c478bd9Sstevel@tonic-gate 	"%r/etc/fm/fmd";
907c478bd9Sstevel@tonic-gate 
917c478bd9Sstevel@tonic-gate static const char _fmd_agent_path[] =
927c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%i/lib/fm/fmd/agents:"
937c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%m/lib/fm/fmd/agents:"
947c478bd9Sstevel@tonic-gate 	"%r/usr/lib/fm/fmd/agents";
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate static const char _fmd_plugin_path[] =
977c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%i/lib/fm/fmd/plugins:"
987c478bd9Sstevel@tonic-gate 	"%r/usr/platform/%m/lib/fm/fmd/plugins:"
997c478bd9Sstevel@tonic-gate 	"%r/usr/lib/fm/fmd/plugins";
1007c478bd9Sstevel@tonic-gate 
1017c478bd9Sstevel@tonic-gate static const char _fmd_scheme_path[] =
1027c478bd9Sstevel@tonic-gate 	"usr/lib/fm/fmd/schemes";
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate static const fmd_conf_mode_t _fmd_cerror_modes[] = {
1057c478bd9Sstevel@tonic-gate 	{ "unload", "unload offending client module", FMD_CERROR_UNLOAD },
1067c478bd9Sstevel@tonic-gate 	{ "stop", "stop daemon for debugger attach", FMD_CERROR_STOP },
1077c478bd9Sstevel@tonic-gate 	{ "abort", "abort daemon and force core dump", FMD_CERROR_ABORT },
1087c478bd9Sstevel@tonic-gate 	{ NULL, NULL, 0 }
1097c478bd9Sstevel@tonic-gate };
1107c478bd9Sstevel@tonic-gate 
1117c478bd9Sstevel@tonic-gate static const fmd_conf_mode_t _fmd_dbout_modes[] = {
1127c478bd9Sstevel@tonic-gate 	{ "stderr", "send debug messages to stderr", FMD_DBOUT_STDERR },
1137c478bd9Sstevel@tonic-gate 	{ "syslog", "send debug messages to syslog", FMD_DBOUT_SYSLOG },
1147c478bd9Sstevel@tonic-gate 	{ NULL, NULL, 0 }
1157c478bd9Sstevel@tonic-gate };
1167c478bd9Sstevel@tonic-gate 
1177c478bd9Sstevel@tonic-gate static const fmd_conf_mode_t _fmd_debug_modes[] = {
1187c478bd9Sstevel@tonic-gate 	{ "help", "display debugging modes and exit", FMD_DBG_HELP },
1197c478bd9Sstevel@tonic-gate 	{ "mod", "debug module load/unload/locking", FMD_DBG_MOD },
1207c478bd9Sstevel@tonic-gate 	{ "disp", "debug dispatch queue processing", FMD_DBG_DISP },
1217c478bd9Sstevel@tonic-gate 	{ "xprt", "debug transport-specific routines", FMD_DBG_XPRT },
1227c478bd9Sstevel@tonic-gate 	{ "evt", "debug event subsystem routines", FMD_DBG_EVT },
1237c478bd9Sstevel@tonic-gate 	{ "log", "debug log subsystem routines", FMD_DBG_LOG },
1247c478bd9Sstevel@tonic-gate 	{ "tmr", "debug timer subsystem routines", FMD_DBG_TMR },
1257c478bd9Sstevel@tonic-gate 	{ "fmri", "debug fmri subsystem routines", FMD_DBG_FMRI },
1267c478bd9Sstevel@tonic-gate 	{ "asru", "debug asru subsystem routines", FMD_DBG_ASRU },
1277c478bd9Sstevel@tonic-gate 	{ "case", "debug case subsystem routines", FMD_DBG_CASE },
1287c478bd9Sstevel@tonic-gate 	{ "ckpt", "debug checkpoint routines", FMD_DBG_CKPT },
1297c478bd9Sstevel@tonic-gate 	{ "rpc", "debug rpc service routines", FMD_DBG_RPC },
130d9638e54Smws 	{ "trace", "display matching trace calls", FMD_DBG_TRACE },
1317c478bd9Sstevel@tonic-gate 	{ "all", "enable all available debug modes", FMD_DBG_ALL },
1327c478bd9Sstevel@tonic-gate 	{ NULL, NULL, 0 }
1337c478bd9Sstevel@tonic-gate };
1347c478bd9Sstevel@tonic-gate 
1357c478bd9Sstevel@tonic-gate static int
1367c478bd9Sstevel@tonic-gate fmd_cerror_set(fmd_conf_param_t *pp, const char *value)
1377c478bd9Sstevel@tonic-gate {
1387c478bd9Sstevel@tonic-gate 	return (fmd_conf_mode_set(_fmd_cerror_modes, pp, value));
1397c478bd9Sstevel@tonic-gate }
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate static int
1427c478bd9Sstevel@tonic-gate fmd_dbout_set(fmd_conf_param_t *pp, const char *value)
1437c478bd9Sstevel@tonic-gate {
1447c478bd9Sstevel@tonic-gate 	return (fmd_conf_mode_set(_fmd_dbout_modes, pp, value));
1457c478bd9Sstevel@tonic-gate }
1467c478bd9Sstevel@tonic-gate 
1477c478bd9Sstevel@tonic-gate static int
1487c478bd9Sstevel@tonic-gate fmd_debug_set(fmd_conf_param_t *pp, const char *value)
1497c478bd9Sstevel@tonic-gate {
1507c478bd9Sstevel@tonic-gate 	int err = fmd_conf_mode_set(_fmd_debug_modes, pp, value);
1517c478bd9Sstevel@tonic-gate 
1527c478bd9Sstevel@tonic-gate 	if (err == 0)
1537c478bd9Sstevel@tonic-gate 		fmd.d_fmd_debug = pp->cp_value.cpv_num;
1547c478bd9Sstevel@tonic-gate 
1557c478bd9Sstevel@tonic-gate 	return (err);
1567c478bd9Sstevel@tonic-gate }
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate static int
1597c478bd9Sstevel@tonic-gate fmd_trmode_set(fmd_conf_param_t *pp, const char *value)
1607c478bd9Sstevel@tonic-gate {
1617c478bd9Sstevel@tonic-gate 	fmd_tracebuf_f *func;
1627c478bd9Sstevel@tonic-gate 
1637c478bd9Sstevel@tonic-gate 	if (strcasecmp(value, "none") == 0)
1647c478bd9Sstevel@tonic-gate 		func = fmd_trace_none;
1657c478bd9Sstevel@tonic-gate 	else if (strcasecmp(value, "lite") == 0)
1667c478bd9Sstevel@tonic-gate 		func = fmd_trace_lite;
1677c478bd9Sstevel@tonic-gate 	else if (strcasecmp(value, "full") == 0)
1687c478bd9Sstevel@tonic-gate 		func = fmd_trace_full;
1697c478bd9Sstevel@tonic-gate 	else
1707c478bd9Sstevel@tonic-gate 		return (fmd_set_errno(EFMD_CONF_INVAL));
1717c478bd9Sstevel@tonic-gate 
1727c478bd9Sstevel@tonic-gate 	fmd.d_thr_trace = (void (*)())func;
1737c478bd9Sstevel@tonic-gate 	pp->cp_value.cpv_ptr = (void *)func;
1747c478bd9Sstevel@tonic-gate 	return (0);
1757c478bd9Sstevel@tonic-gate }
1767c478bd9Sstevel@tonic-gate 
1777c478bd9Sstevel@tonic-gate static void
1787c478bd9Sstevel@tonic-gate fmd_trmode_get(const fmd_conf_param_t *pp, void *ptr)
1797c478bd9Sstevel@tonic-gate {
1807c478bd9Sstevel@tonic-gate 	*((void **)ptr) = pp->cp_value.cpv_ptr;
1817c478bd9Sstevel@tonic-gate }
1827c478bd9Sstevel@tonic-gate 
1837c478bd9Sstevel@tonic-gate static int
1847c478bd9Sstevel@tonic-gate fmd_clkmode_set(fmd_conf_param_t *pp, const char *value)
1857c478bd9Sstevel@tonic-gate {
1867c478bd9Sstevel@tonic-gate 	const fmd_timeops_t *ops;
1877c478bd9Sstevel@tonic-gate 
1887c478bd9Sstevel@tonic-gate 	if (strcasecmp(value, "native") == 0)
1897c478bd9Sstevel@tonic-gate 		ops = &fmd_timeops_native;
1907c478bd9Sstevel@tonic-gate 	else if (strcasecmp(value, "simulated") == 0)
1917c478bd9Sstevel@tonic-gate 		ops = &fmd_timeops_simulated;
1927c478bd9Sstevel@tonic-gate 	else
1937c478bd9Sstevel@tonic-gate 		return (fmd_set_errno(EFMD_CONF_INVAL));
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate 	fmd.d_clockops = ops;
1967c478bd9Sstevel@tonic-gate 	pp->cp_value.cpv_ptr = (void *)ops;
1977c478bd9Sstevel@tonic-gate 	return (0);
1987c478bd9Sstevel@tonic-gate }
1997c478bd9Sstevel@tonic-gate 
2007c478bd9Sstevel@tonic-gate static void
2017c478bd9Sstevel@tonic-gate fmd_clkmode_get(const fmd_conf_param_t *pp, void *ptr)
2027c478bd9Sstevel@tonic-gate {
2037c478bd9Sstevel@tonic-gate 	*((void **)ptr) = pp->cp_value.cpv_ptr;
2047c478bd9Sstevel@tonic-gate }
2057c478bd9Sstevel@tonic-gate 
2067c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_cerror_ops = {
2077c478bd9Sstevel@tonic-gate 	fmd_cerror_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
2087c478bd9Sstevel@tonic-gate };
2097c478bd9Sstevel@tonic-gate 
2107c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_dbout_ops = {
2117c478bd9Sstevel@tonic-gate 	fmd_dbout_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
2127c478bd9Sstevel@tonic-gate };
2137c478bd9Sstevel@tonic-gate 
2147c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_debug_ops = {
2157c478bd9Sstevel@tonic-gate 	fmd_debug_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
2167c478bd9Sstevel@tonic-gate };
2177c478bd9Sstevel@tonic-gate 
2187c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_trmode_ops = {
2197c478bd9Sstevel@tonic-gate 	fmd_trmode_set, fmd_trmode_get, fmd_conf_notsup, fmd_conf_nop
2207c478bd9Sstevel@tonic-gate };
2217c478bd9Sstevel@tonic-gate 
2227c478bd9Sstevel@tonic-gate static const fmd_conf_ops_t fmd_clkmode_ops = {
2237c478bd9Sstevel@tonic-gate 	fmd_clkmode_set, fmd_clkmode_get, fmd_conf_notsup, fmd_conf_nop
2247c478bd9Sstevel@tonic-gate };
2257c478bd9Sstevel@tonic-gate 
2267c478bd9Sstevel@tonic-gate static const fmd_conf_formal_t _fmd_conf[] = {
2277c478bd9Sstevel@tonic-gate { "agent.path", &fmd_conf_path, _fmd_agent_path }, /* path for agents */
2287c478bd9Sstevel@tonic-gate { "alloc_msecs", &fmd_conf_uint32, "10" },	/* msecs before alloc retry */
2297c478bd9Sstevel@tonic-gate { "alloc_tries", &fmd_conf_uint32, "3" },	/* max # of alloc retries */
2307aec1d6eScindi { "chassis", &fmd_conf_string, _fmd_csn },	/* chassis serial number */
2317c478bd9Sstevel@tonic-gate { "ckpt.dir", &fmd_conf_string, "var/fm/fmd/ckpt" }, /* ckpt directory path */
2327c478bd9Sstevel@tonic-gate { "ckpt.dirmode", &fmd_conf_int32, "0700" },	/* ckpt directory perm mode */
2337c478bd9Sstevel@tonic-gate { "ckpt.mode", &fmd_conf_int32, "0400" },	/* ckpt file perm mode */
2347c478bd9Sstevel@tonic-gate { "ckpt.restore", &fmd_conf_bool, "true" },	/* restore checkpoints? */
2357c478bd9Sstevel@tonic-gate { "ckpt.save", &fmd_conf_bool, "true" },	/* save checkpoints? */
2367c478bd9Sstevel@tonic-gate { "ckpt.zero", &fmd_conf_bool, "false" },	/* zero checkpoints on start? */
2377c478bd9Sstevel@tonic-gate { "client.buflim", &fmd_conf_size, "10m" },	/* client buffer space limit */
2387c478bd9Sstevel@tonic-gate { "client.dbout", &fmd_dbout_ops, NULL },	/* client debug output sinks */
2397c478bd9Sstevel@tonic-gate { "client.debug", &fmd_conf_bool, NULL },	/* client debug enable */
2407c478bd9Sstevel@tonic-gate { "client.error", &fmd_cerror_ops, "unload" },	/* client error policy */
2417c478bd9Sstevel@tonic-gate { "client.memlim", &fmd_conf_size, "10m" },	/* client allocation limit */
2427c478bd9Sstevel@tonic-gate { "client.evqlim", &fmd_conf_uint32, "256" },	/* client event queue limit */
24325351652SVuong Nguyen { "client.thrlim", &fmd_conf_uint32, "20" },	/* client aux thread limit */
2447c478bd9Sstevel@tonic-gate { "client.thrsig", &fmd_conf_signal, "SIGUSR1" }, /* fmd_thr_signal() value */
2457c478bd9Sstevel@tonic-gate { "client.tmrlim", &fmd_conf_uint32, "1024" },	/* client pending timer limit */
246d9638e54Smws { "client.xprtlim", &fmd_conf_uint32, "256" },	/* client transport limit */
247d9638e54Smws { "client.xprtlog", &fmd_conf_bool, NULL },	/* client transport logging? */
24811114147Sav145390 { "client.xprtqlim", &fmd_conf_uint32, "1024" }, /* client transport queue li */
2497c478bd9Sstevel@tonic-gate { "clock", &fmd_clkmode_ops, "native" },	/* clock operation mode */
2507c478bd9Sstevel@tonic-gate { "conf_path", &fmd_conf_path, _fmd_conf_path }, /* root config file path */
2517c478bd9Sstevel@tonic-gate { "conf_file", &fmd_conf_string, "fmd.conf" },	/* root config file name */
2527c478bd9Sstevel@tonic-gate { "core", &fmd_conf_bool, "false" },		/* force core dump on quit */
2537c478bd9Sstevel@tonic-gate { "dbout", &fmd_dbout_ops, NULL },		/* daemon debug output sinks */
2547c478bd9Sstevel@tonic-gate { "debug", &fmd_debug_ops, NULL },		/* daemon debugging flags */
2557c478bd9Sstevel@tonic-gate { "dictdir", &fmd_conf_string, "usr/lib/fm/dict" }, /* default diagcode dir */
2567c478bd9Sstevel@tonic-gate { "domain", &fmd_conf_string, NULL },		/* domain id for de auth */
25725c6ff4bSstephh { "fakenotpresent", &fmd_conf_uint32, "0" },	/* simulate rsrc not present */
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 */
273627351e3Scy152378 { "repaircode", &fmd_conf_string, "-" },	/* diagcode for list.repaired */
27425c6ff4bSstephh { "resolvecode", &fmd_conf_string, "-" },	/* diagcode for list.resolved */
27525c6ff4bSstephh { "updatecode", &fmd_conf_string, "-" },	/* diagcode for list.updated */
2767c478bd9Sstevel@tonic-gate { "osrelease", &fmd_conf_string, _fmd_uts.release }, /* release (uname -r) */
2777c478bd9Sstevel@tonic-gate { "osversion", &fmd_conf_string, _fmd_uts.version }, /* version (uname -v) */
2787c478bd9Sstevel@tonic-gate { "platform", &fmd_conf_string, _fmd_plat },	/* platform string (uname -i) */
2797c478bd9Sstevel@tonic-gate { "plugin.close", &fmd_conf_bool, "true" },	/* dlclose plugins on fini */
2807c478bd9Sstevel@tonic-gate { "plugin.path", &fmd_conf_path, _fmd_plugin_path }, /* path for plugin mods */
2817aec1d6eScindi { "product", &fmd_conf_string, _fmd_prod },	/* product name string */
2827c478bd9Sstevel@tonic-gate { "rootdir", &fmd_conf_string, "" },		/* root directory for paths */
2837c478bd9Sstevel@tonic-gate { "rpc.adm.path", &fmd_conf_string, NULL },	/* FMD_ADM rendezvous file */
2847c478bd9Sstevel@tonic-gate { "rpc.adm.prog", &fmd_conf_uint32, "100169" },	/* FMD_ADM rpc program num */
2857c478bd9Sstevel@tonic-gate { "rpc.api.path", &fmd_conf_string, NULL },	/* FMD_API rendezvous file */
2867c478bd9Sstevel@tonic-gate { "rpc.api.prog", &fmd_conf_uint32, "100170" },	/* FMD_API rpc program num */
2877c478bd9Sstevel@tonic-gate { "rpc.rcvsize", &fmd_conf_size, "128k" },	/* rpc receive buffer size */
2887c478bd9Sstevel@tonic-gate { "rpc.sndsize", &fmd_conf_size, "128k" },	/* rpc send buffer size */
2897c478bd9Sstevel@tonic-gate { "rsrc.age", &fmd_conf_time, "30d" },		/* max age of old rsrc log */
2907c478bd9Sstevel@tonic-gate { "rsrc.zero", &fmd_conf_bool, "false" },	/* zero rsrc cache on start? */
2917c478bd9Sstevel@tonic-gate { "schemedir", &fmd_conf_string, _fmd_scheme_path }, /* path for scheme mods */
2927c478bd9Sstevel@tonic-gate { "self.name", &fmd_conf_string, "fmd-self-diagnosis" }, /* self-diag module */
2937c478bd9Sstevel@tonic-gate { "self.dict", &fmd_conf_list, "FMD.dict" },	/* self-diag dictionary list */
2947c478bd9Sstevel@tonic-gate { "server", &fmd_conf_string, _fmd_uts.nodename }, /* server id for de auth */
2957c478bd9Sstevel@tonic-gate { "strbuckets", &fmd_conf_uint32, "211" },	/* size of string hashes */
2967c478bd9Sstevel@tonic-gate #ifdef DEBUG
2977c478bd9Sstevel@tonic-gate { "trace.mode", &fmd_trmode_ops, "full" },	/* trace mode: none/lite/full */
2987c478bd9Sstevel@tonic-gate #else
2997c478bd9Sstevel@tonic-gate { "trace.mode", &fmd_trmode_ops, "lite" },	/* trace mode: none/lite/full */
3007c478bd9Sstevel@tonic-gate #endif
3017c478bd9Sstevel@tonic-gate { "trace.recs", &fmd_conf_uint32, "128" },	/* trace records per thread */
3027c478bd9Sstevel@tonic-gate { "trace.frames", &fmd_conf_uint32, "16" },	/* max trace rec stack frames */
3037c478bd9Sstevel@tonic-gate { "uuidlen", &fmd_conf_uint32, "36" },		/* UUID ASCII string length */
304d9638e54Smws { "xprt.ttl", &fmd_conf_uint8, "1" },		/* default event time-to-live */
3057c478bd9Sstevel@tonic-gate };
3067c478bd9Sstevel@tonic-gate 
3077c478bd9Sstevel@tonic-gate /*
3087c478bd9Sstevel@tonic-gate  * Statistics maintained by fmd itself on behalf of various global subsystems.
3097c478bd9Sstevel@tonic-gate  * NOTE: FMD_TYPE_STRING statistics should not be used here.  If they are
3107c478bd9Sstevel@tonic-gate  * required in the future, the FMD_ADM_MODGSTAT service routine must change.
3117c478bd9Sstevel@tonic-gate  */
3127c478bd9Sstevel@tonic-gate static fmd_statistics_t _fmd_stats = {
3137c478bd9Sstevel@tonic-gate { "errlog.replayed", FMD_TYPE_UINT64, "total events replayed from errlog" },
3147c478bd9Sstevel@tonic-gate { "errlog.partials", FMD_TYPE_UINT64, "events partially committed in errlog" },
3157c478bd9Sstevel@tonic-gate { "errlog.enospc", FMD_TYPE_UINT64, "events not appended to errlog (ENOSPC)" },
3167c478bd9Sstevel@tonic-gate { "fltlog.enospc", FMD_TYPE_UINT64, "events not appended to fltlog (ENOSPC)" },
3177c478bd9Sstevel@tonic-gate { "log.enospc", FMD_TYPE_UINT64, "events not appended to other logs (ENOSPC)" },
3187c478bd9Sstevel@tonic-gate { "dr.gen", FMD_TYPE_UINT64, "dynamic reconfiguration generation" },
3190eb822a1Scindi { "topo.gen", FMD_TYPE_UINT64, "topology snapshot generation" },
3200eb822a1Scindi { "topo.drgen", FMD_TYPE_UINT64, "current topology DR generation number" },
3217c478bd9Sstevel@tonic-gate };
3227c478bd9Sstevel@tonic-gate 
323*6e1fa242SStephen Hanson /*
324*6e1fa242SStephen Hanson  * SMBIOS serial numbers can contain characters (particularly ':' and ' ')
325*6e1fa242SStephen Hanson  * that are invalid for the authority and can break FMRI parsing.  We translate
326*6e1fa242SStephen Hanson  * any invalid characters to a safe '-', as well as trimming any leading or
327*6e1fa242SStephen Hanson  * trailing whitespace.  Similarly, '/' can be found in some product names
328*6e1fa242SStephen Hanson  * so we translate that to '-'.
329*6e1fa242SStephen Hanson  */
330*6e1fa242SStephen Hanson void
331*6e1fa242SStephen Hanson fmd_cleanup_auth_str(char *buf, const char *begin)
332*6e1fa242SStephen Hanson {
333*6e1fa242SStephen Hanson 	const char *end, *cp;
334*6e1fa242SStephen Hanson 	char c;
335*6e1fa242SStephen Hanson 	int i;
336*6e1fa242SStephen Hanson 
337*6e1fa242SStephen Hanson 	end = begin + strlen(begin);
338*6e1fa242SStephen Hanson 
339*6e1fa242SStephen Hanson 	while (begin < end && isspace(*begin))
340*6e1fa242SStephen Hanson 		begin++;
341*6e1fa242SStephen Hanson 	while (begin < end && isspace(*(end - 1)))
342*6e1fa242SStephen Hanson 		end--;
343*6e1fa242SStephen Hanson 
344*6e1fa242SStephen Hanson 	if (begin >= end)
345*6e1fa242SStephen Hanson 		return;
346*6e1fa242SStephen Hanson 
347*6e1fa242SStephen Hanson 	cp = begin;
348*6e1fa242SStephen Hanson 	for (i = 0; i < MAXNAMELEN - 1; i++) {
349*6e1fa242SStephen Hanson 		if (cp >= end)
350*6e1fa242SStephen Hanson 			break;
351*6e1fa242SStephen Hanson 		c = *cp;
352*6e1fa242SStephen Hanson 		if (c == ':' || c == '=' || c == '/' || isspace(c) ||
353*6e1fa242SStephen Hanson 		    !isprint(c))
354*6e1fa242SStephen Hanson 			buf[i] = '-';
355*6e1fa242SStephen Hanson 		else
356*6e1fa242SStephen Hanson 			buf[i] = c;
357*6e1fa242SStephen Hanson 		cp++;
358*6e1fa242SStephen Hanson 	}
359*6e1fa242SStephen Hanson 	buf[i] = 0;
360*6e1fa242SStephen Hanson }
361*6e1fa242SStephen Hanson 
3627c478bd9Sstevel@tonic-gate void
3637c478bd9Sstevel@tonic-gate fmd_create(fmd_t *dp, const char *arg0, const char *root, const char *conf)
3647c478bd9Sstevel@tonic-gate {
3657c478bd9Sstevel@tonic-gate 	fmd_conf_path_t *pap;
3667c478bd9Sstevel@tonic-gate 	char file[PATH_MAX];
3677c478bd9Sstevel@tonic-gate 	const char *name;
3687c478bd9Sstevel@tonic-gate 	fmd_stat_t *sp;
3697c478bd9Sstevel@tonic-gate 	int i;
3707c478bd9Sstevel@tonic-gate 
3717aec1d6eScindi 	smbios_hdl_t *shp;
3727aec1d6eScindi 	smbios_system_t s1;
3737aec1d6eScindi 	smbios_info_t s2;
3747aec1d6eScindi 	id_t id;
3757aec1d6eScindi 
37682d33c01Sav145390 	di_prom_handle_t promh = DI_PROM_HANDLE_NIL;
37782d33c01Sav145390 	di_node_t rooth = DI_NODE_NIL;
37882d33c01Sav145390 	char *bufp;
37982d33c01Sav145390 
3807c478bd9Sstevel@tonic-gate 	(void) sysinfo(SI_PLATFORM, _fmd_plat, sizeof (_fmd_plat));
3817c478bd9Sstevel@tonic-gate 	(void) sysinfo(SI_ARCHITECTURE, _fmd_isa, sizeof (_fmd_isa));
3827c478bd9Sstevel@tonic-gate 	(void) uname(&_fmd_uts);
3837c478bd9Sstevel@tonic-gate 
3847aec1d6eScindi 	if ((shp = smbios_open(NULL, SMB_VERSION, 0, NULL)) != NULL) {
3857aec1d6eScindi 		if ((id = smbios_info_system(shp, &s1)) != SMB_ERR &&
3867aec1d6eScindi 		    smbios_info_common(shp, id, &s2) != SMB_ERR) {
387*6e1fa242SStephen Hanson 			fmd_cleanup_auth_str(_fmd_prod, s2.smbi_product);
388*6e1fa242SStephen Hanson 			fmd_cleanup_auth_str(_fmd_csn, s2.smbi_serial);
3897aec1d6eScindi 		}
3907aec1d6eScindi 		smbios_close(shp);
391384fce58Shueston 	} else if ((rooth = di_init("/", DINFOPROP)) != DI_NODE_NIL &&
39282d33c01Sav145390 	    (promh = di_prom_init()) != DI_PROM_HANDLE_NIL) {
39382d33c01Sav145390 		if (di_prom_prop_lookup_bytes(promh, rooth, "chassis-sn",
39482d33c01Sav145390 		    (unsigned char **)&bufp) != -1) {
395*6e1fa242SStephen Hanson 			fmd_cleanup_auth_str(_fmd_csn, bufp);
3967aec1d6eScindi 		}
39782d33c01Sav145390 	}
39882d33c01Sav145390 
39982d33c01Sav145390 	if (promh != DI_PROM_HANDLE_NIL)
40082d33c01Sav145390 		di_prom_fini(promh);
40182d33c01Sav145390 	if (rooth != DI_NODE_NIL)
40282d33c01Sav145390 		di_fini(rooth);
4037aec1d6eScindi 
4047c478bd9Sstevel@tonic-gate 	bzero(dp, sizeof (fmd_t));
4057c478bd9Sstevel@tonic-gate 
4067c478bd9Sstevel@tonic-gate 	dp->d_version = _fmd_version;
4077c478bd9Sstevel@tonic-gate 	dp->d_pname = fmd_strbasename(arg0);
4087c478bd9Sstevel@tonic-gate 	dp->d_pid = getpid();
4097c478bd9Sstevel@tonic-gate 
4107c478bd9Sstevel@tonic-gate 	if (pthread_key_create(&dp->d_key, NULL) != 0)
4117c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to create pthread key");
4127c478bd9Sstevel@tonic-gate 
4137c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_xprt_lock, NULL);
4147c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_err_lock, NULL);
4157c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_thr_lock, NULL);
4167c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_mod_lock, NULL);
4177c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_stats_lock, NULL);
4180eb822a1Scindi 	(void) pthread_mutex_init(&dp->d_topo_lock, NULL);
4197c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_init(&dp->d_log_lock, NULL);
42093136fe2Sstephh 	(void) pthread_mutex_init(&dp->d_fmd_lock, NULL);
42193136fe2Sstephh 	(void) pthread_cond_init(&dp->d_fmd_cv, NULL);
4227c478bd9Sstevel@tonic-gate 
4237c478bd9Sstevel@tonic-gate 	/*
4247c478bd9Sstevel@tonic-gate 	 * A small number of properties must be set manually before we open
4257c478bd9Sstevel@tonic-gate 	 * the root configuration file.  These include any settings for our
4267c478bd9Sstevel@tonic-gate 	 * memory allocator and path expansion token values, because these
4277c478bd9Sstevel@tonic-gate 	 * values are needed by the routines in fmd_conf.c itself.  After
4287c478bd9Sstevel@tonic-gate 	 * the root configuration file is processed, we reset these properties
4297c478bd9Sstevel@tonic-gate 	 * based upon the latest values from the configuration file.
4307c478bd9Sstevel@tonic-gate 	 */
4317c478bd9Sstevel@tonic-gate 	dp->d_alloc_msecs = 10;
4327c478bd9Sstevel@tonic-gate 	dp->d_alloc_tries = 3;
4337c478bd9Sstevel@tonic-gate 	dp->d_str_buckets = 211;
4347c478bd9Sstevel@tonic-gate 
4357c478bd9Sstevel@tonic-gate 	dp->d_rootdir = root ? root : "";
4367c478bd9Sstevel@tonic-gate 	dp->d_platform = _fmd_plat;
4377c478bd9Sstevel@tonic-gate 	dp->d_machine = _fmd_uts.machine;
4387c478bd9Sstevel@tonic-gate 	dp->d_isaname = _fmd_isa;
4397c478bd9Sstevel@tonic-gate 
440d9638e54Smws 	dp->d_conf = fmd_conf_open(conf, sizeof (_fmd_conf) /
441d9638e54Smws 	    sizeof (_fmd_conf[0]), _fmd_conf, FMD_CONF_DEFER);
4427c478bd9Sstevel@tonic-gate 
4437c478bd9Sstevel@tonic-gate 	if (dp->d_conf == NULL) {
4447c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT,
4457c478bd9Sstevel@tonic-gate 		    "failed to load required configuration properties\n");
4467c478bd9Sstevel@tonic-gate 	}
4477c478bd9Sstevel@tonic-gate 
4487c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "alloc.msecs", &dp->d_alloc_msecs);
4497c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "alloc.tries", &dp->d_alloc_tries);
4507c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "strbuckets", &dp->d_str_buckets);
4517c478bd9Sstevel@tonic-gate 
4527c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "platform", &dp->d_platform);
4537c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "machine", &dp->d_machine);
4547c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "isaname", &dp->d_isaname);
4557c478bd9Sstevel@tonic-gate 
4567c478bd9Sstevel@tonic-gate 	/*
4577c478bd9Sstevel@tonic-gate 	 * Manually specified rootdirs override config files, so only update
4587c478bd9Sstevel@tonic-gate 	 * d_rootdir based on the config files we parsed if no 'root' was set.
4597c478bd9Sstevel@tonic-gate 	 */
4607c478bd9Sstevel@tonic-gate 	if (root == NULL)
4617c478bd9Sstevel@tonic-gate 		(void) fmd_conf_getprop(dp->d_conf, "rootdir", &dp->d_rootdir);
4627c478bd9Sstevel@tonic-gate 	else
4637c478bd9Sstevel@tonic-gate 		(void) fmd_conf_setprop(dp->d_conf, "rootdir", dp->d_rootdir);
4647c478bd9Sstevel@tonic-gate 
4657c478bd9Sstevel@tonic-gate 	/*
4667c478bd9Sstevel@tonic-gate 	 * Once the base conf file properties are loaded, lookup the values
4677c478bd9Sstevel@tonic-gate 	 * of $conf_path and $conf_file and merge in any other conf files.
4687c478bd9Sstevel@tonic-gate 	 */
4697c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "conf_path", &pap);
4707c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "conf_file", &name);
4717c478bd9Sstevel@tonic-gate 
4727c478bd9Sstevel@tonic-gate 	for (i = 0; i < pap->cpa_argc; i++) {
4737c478bd9Sstevel@tonic-gate 		(void) snprintf(file, sizeof (file),
4747c478bd9Sstevel@tonic-gate 		    "%s/%s", pap->cpa_argv[i], name);
4757c478bd9Sstevel@tonic-gate 		if (access(file, F_OK) == 0)
4767c478bd9Sstevel@tonic-gate 			fmd_conf_merge(dp->d_conf, file);
4777c478bd9Sstevel@tonic-gate 	}
4787c478bd9Sstevel@tonic-gate 
4797c478bd9Sstevel@tonic-gate 	/*
4807c478bd9Sstevel@tonic-gate 	 * Update the value of fmd.d_fg based on "fg".  We cache this property
4817c478bd9Sstevel@tonic-gate 	 * because it must be accessed deep within fmd at fmd_verror() time.
482d9638e54Smws 	 * Update any other properties that must be cached for performance.
4837c478bd9Sstevel@tonic-gate 	 */
4847c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(fmd.d_conf, "fg", &fmd.d_fg);
485d9638e54Smws 	(void) fmd_conf_getprop(fmd.d_conf, "xprt.ttl", &fmd.d_xprt_ttl);
4867c478bd9Sstevel@tonic-gate 
4877c478bd9Sstevel@tonic-gate 	/*
4887c478bd9Sstevel@tonic-gate 	 * Initialize our custom libnvpair allocator and create an nvlist for
4897c478bd9Sstevel@tonic-gate 	 * authority elements corresponding to this instance of the daemon.
4907c478bd9Sstevel@tonic-gate 	 */
4917c478bd9Sstevel@tonic-gate 	(void) nv_alloc_init(&dp->d_nva, &fmd_nv_alloc_ops);
4927c478bd9Sstevel@tonic-gate 	dp->d_auth = fmd_protocol_authority();
4937c478bd9Sstevel@tonic-gate 
4947c478bd9Sstevel@tonic-gate 	/*
4957c478bd9Sstevel@tonic-gate 	 * The fmd_module_t for the root module must be created manually.  Most
4967c478bd9Sstevel@tonic-gate 	 * of it remains unused and zero, except for the few things we fill in.
4977c478bd9Sstevel@tonic-gate 	 */
4987c478bd9Sstevel@tonic-gate 	dp->d_rmod = fmd_zalloc(sizeof (fmd_module_t), FMD_SLEEP);
4997c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_name = fmd_strdup(dp->d_pname, FMD_SLEEP);
500d9638e54Smws 	dp->d_rmod->mod_fmri = fmd_protocol_fmri_module(dp->d_rmod);
501d9638e54Smws 
5027c478bd9Sstevel@tonic-gate 	fmd_list_append(&dp->d_mod_list, dp->d_rmod);
503d9638e54Smws 	fmd_module_hold(dp->d_rmod);
5047c478bd9Sstevel@tonic-gate 
5057c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_init(&dp->d_rmod->mod_lock, NULL);
5067c478bd9Sstevel@tonic-gate 	(void) pthread_cond_init(&dp->d_rmod->mod_cv, NULL);
507d9638e54Smws 	(void) pthread_mutex_init(&dp->d_rmod->mod_stats_lock, NULL);
5087c478bd9Sstevel@tonic-gate 
5097c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_thread = fmd_thread_xcreate(dp->d_rmod, pthread_self());
510d9638e54Smws 	dp->d_rmod->mod_stats = fmd_zalloc(sizeof (fmd_modstat_t), FMD_SLEEP);
5117c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_ustat = fmd_ustat_create();
5127c478bd9Sstevel@tonic-gate 
5137c478bd9Sstevel@tonic-gate 	if (pthread_setspecific(dp->d_key, dp->d_rmod->mod_thread) != 0)
5147c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to attach main thread key");
5157c478bd9Sstevel@tonic-gate 
5167c478bd9Sstevel@tonic-gate 	if ((dp->d_stats = (fmd_statistics_t *)fmd_ustat_insert(
5177c478bd9Sstevel@tonic-gate 	    dp->d_rmod->mod_ustat, FMD_USTAT_NOALLOC, sizeof (_fmd_stats) /
5187c478bd9Sstevel@tonic-gate 	    sizeof (fmd_stat_t), (fmd_stat_t *)&_fmd_stats, NULL)) == NULL)
5197c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to initialize statistics");
5207c478bd9Sstevel@tonic-gate 
521d9638e54Smws 	(void) pthread_mutex_lock(&dp->d_rmod->mod_lock);
522d9638e54Smws 	dp->d_rmod->mod_flags |= FMD_MOD_INIT;
523d9638e54Smws 	(void) pthread_mutex_unlock(&dp->d_rmod->mod_lock);
524d9638e54Smws 
5257c478bd9Sstevel@tonic-gate 	/*
5267c478bd9Sstevel@tonic-gate 	 * In addition to inserting the _fmd_stats collection of program-wide
5277c478bd9Sstevel@tonic-gate 	 * statistics, we also insert a statistic named after each of our
5287c478bd9Sstevel@tonic-gate 	 * errors and update these counts in fmd_verror() (see fmd_subr.c).
5297c478bd9Sstevel@tonic-gate 	 */
5307c478bd9Sstevel@tonic-gate 	dp->d_errstats = sp = fmd_zalloc(sizeof (fmd_stat_t) *
5317c478bd9Sstevel@tonic-gate 	    (EFMD_END - EFMD_UNKNOWN), FMD_SLEEP);
5327c478bd9Sstevel@tonic-gate 
5337c478bd9Sstevel@tonic-gate 	for (i = 0; i < EFMD_END - EFMD_UNKNOWN; i++, sp++) {
5347c478bd9Sstevel@tonic-gate 		(void) snprintf(sp->fmds_name, sizeof (sp->fmds_name), "err.%s",
5357c478bd9Sstevel@tonic-gate 		    strrchr(fmd_errclass(EFMD_UNKNOWN + i), '.') + 1);
5367c478bd9Sstevel@tonic-gate 		sp->fmds_type = FMD_TYPE_UINT64;
5377c478bd9Sstevel@tonic-gate 	}
5387c478bd9Sstevel@tonic-gate 
5397c478bd9Sstevel@tonic-gate 	(void) fmd_ustat_insert(dp->d_rmod->mod_ustat, FMD_USTAT_NOALLOC,
5407c478bd9Sstevel@tonic-gate 	    EFMD_END - EFMD_UNKNOWN, dp->d_errstats, NULL);
5417c478bd9Sstevel@tonic-gate }
5427c478bd9Sstevel@tonic-gate 
5437c478bd9Sstevel@tonic-gate void
5447c478bd9Sstevel@tonic-gate fmd_destroy(fmd_t *dp)
5457c478bd9Sstevel@tonic-gate {
5467c478bd9Sstevel@tonic-gate 	fmd_module_t *mp;
547d9638e54Smws 	fmd_case_t *cp;
5487c478bd9Sstevel@tonic-gate 	int core;
5497c478bd9Sstevel@tonic-gate 
5507c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(fmd.d_conf, "core", &core);
5517c478bd9Sstevel@tonic-gate 
5527c478bd9Sstevel@tonic-gate 	fmd_rpc_fini();
553e4586ebfSmws 
554e4586ebfSmws 	if (dp->d_xprt_ids != NULL)
555d9638e54Smws 		fmd_xprt_suspend_all();
5567c478bd9Sstevel@tonic-gate 
5577c478bd9Sstevel@tonic-gate 	/*
5587c478bd9Sstevel@tonic-gate 	 * Unload the self-diagnosis module first.  This ensures that it does
5597c478bd9Sstevel@tonic-gate 	 * not get confused as we start unloading other modules, etc.  We must
5607c478bd9Sstevel@tonic-gate 	 * hold the dispq lock as a writer while doing so since it uses d_self.
5617c478bd9Sstevel@tonic-gate 	 */
5627c478bd9Sstevel@tonic-gate 	if (dp->d_self != NULL) {
56300958acdScindi 		fmd_module_t *self;
56400958acdScindi 
5657c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_wrlock(&dp->d_disp->dq_lock);
56600958acdScindi 		self = dp->d_self;
5677c478bd9Sstevel@tonic-gate 		dp->d_self = NULL;
5687c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_unlock(&dp->d_disp->dq_lock);
56900958acdScindi 
57000958acdScindi 		fmd_module_unload(self);
57100958acdScindi 		fmd_module_rele(self);
5727c478bd9Sstevel@tonic-gate 	}
5737c478bd9Sstevel@tonic-gate 
5747c478bd9Sstevel@tonic-gate 	/*
5757c478bd9Sstevel@tonic-gate 	 * Unload modules in reverse order *except* for the root module, which
5767c478bd9Sstevel@tonic-gate 	 * is first in the list.  This allows it to keep its thread and trace.
5777c478bd9Sstevel@tonic-gate 	 */
5787c478bd9Sstevel@tonic-gate 	for (mp = fmd_list_prev(&dp->d_mod_list); mp != dp->d_rmod; ) {
5797c478bd9Sstevel@tonic-gate 		fmd_module_unload(mp);
5807c478bd9Sstevel@tonic-gate 		mp = fmd_list_prev(mp);
5817c478bd9Sstevel@tonic-gate 	}
5827c478bd9Sstevel@tonic-gate 
5837c478bd9Sstevel@tonic-gate 	if (dp->d_mod_hash != NULL) {
5847c478bd9Sstevel@tonic-gate 		fmd_modhash_destroy(dp->d_mod_hash);
5857c478bd9Sstevel@tonic-gate 		dp->d_mod_hash = NULL;
5867c478bd9Sstevel@tonic-gate 	}
5877c478bd9Sstevel@tonic-gate 
5887c478bd9Sstevel@tonic-gate 	/*
5897c478bd9Sstevel@tonic-gate 	 * Close both log files now that modules are no longer active.  We must
5907c478bd9Sstevel@tonic-gate 	 * set these pointers to NULL in case any subsequent errors occur.
5917c478bd9Sstevel@tonic-gate 	 */
5927c478bd9Sstevel@tonic-gate 	if (dp->d_errlog != NULL) {
5937c478bd9Sstevel@tonic-gate 		fmd_log_rele(dp->d_errlog);
5947c478bd9Sstevel@tonic-gate 		dp->d_errlog = NULL;
5957c478bd9Sstevel@tonic-gate 	}
5967c478bd9Sstevel@tonic-gate 
5977c478bd9Sstevel@tonic-gate 	if (dp->d_fltlog != NULL) {
5987c478bd9Sstevel@tonic-gate 		fmd_log_rele(dp->d_fltlog);
5997c478bd9Sstevel@tonic-gate 		dp->d_fltlog = NULL;
6007c478bd9Sstevel@tonic-gate 	}
6017c478bd9Sstevel@tonic-gate 
6027c478bd9Sstevel@tonic-gate 	/*
603d9638e54Smws 	 * Now destroy the resource cache: each ASRU contains a case reference,
604d9638e54Smws 	 * which may in turn contain a pointer to a referenced owning module.
605d9638e54Smws 	 */
606d9638e54Smws 	if (dp->d_asrus != NULL) {
607d9638e54Smws 		fmd_asru_hash_destroy(dp->d_asrus);
608d9638e54Smws 		dp->d_asrus = NULL;
609d9638e54Smws 	}
610d9638e54Smws 
611d9638e54Smws 	/*
6127c478bd9Sstevel@tonic-gate 	 * Now that all data structures that refer to modules are torn down,
6137c478bd9Sstevel@tonic-gate 	 * no modules should be remaining on the module list except for d_rmod.
6147c478bd9Sstevel@tonic-gate 	 * If we trip one of these assertions, we're missing a rele somewhere.
6157c478bd9Sstevel@tonic-gate 	 */
6167c478bd9Sstevel@tonic-gate 	ASSERT(fmd_list_prev(&dp->d_mod_list) == dp->d_rmod);
6177c478bd9Sstevel@tonic-gate 	ASSERT(fmd_list_next(&dp->d_mod_list) == dp->d_rmod);
6187c478bd9Sstevel@tonic-gate 
6197c478bd9Sstevel@tonic-gate 	/*
6207c478bd9Sstevel@tonic-gate 	 * Now destroy the root module.  We clear its thread key first so any
6217c478bd9Sstevel@tonic-gate 	 * calls to fmd_trace() inside of the module code will be ignored.
6227c478bd9Sstevel@tonic-gate 	 */
6237c478bd9Sstevel@tonic-gate 	(void) pthread_setspecific(dp->d_key, NULL);
624d9638e54Smws 	fmd_module_lock(dp->d_rmod);
6257c478bd9Sstevel@tonic-gate 
626d9638e54Smws 	while ((cp = fmd_list_next(&dp->d_rmod->mod_cases)) != NULL)
627cbf75e67SStephen Hanson 		fmd_case_discard(cp, B_FALSE);
628d9638e54Smws 
629d9638e54Smws 	fmd_module_unlock(dp->d_rmod);
630d9638e54Smws 	fmd_free(dp->d_rmod->mod_stats, sizeof (fmd_modstat_t));
631d9638e54Smws 	dp->d_rmod->mod_stats = NULL;
632d9638e54Smws 
633d9638e54Smws 	(void) pthread_mutex_lock(&dp->d_rmod->mod_lock);
634d9638e54Smws 	dp->d_rmod->mod_flags |= FMD_MOD_FINI;
635d9638e54Smws 	(void) pthread_mutex_unlock(&dp->d_rmod->mod_lock);
636d9638e54Smws 
637d9638e54Smws 	fmd_module_rele(dp->d_rmod);
638d9638e54Smws 	ASSERT(fmd_list_next(&dp->d_mod_list) == NULL);
639d9638e54Smws 
640d9638e54Smws 	/*
641d9638e54Smws 	 * Now destroy the remaining global data structures.  If 'core' was
642d9638e54Smws 	 * set to true, force a core dump so we can check for memory leaks.
643d9638e54Smws 	 */
6447c478bd9Sstevel@tonic-gate 	if (dp->d_cases != NULL)
6457c478bd9Sstevel@tonic-gate 		fmd_case_hash_destroy(dp->d_cases);
646d9638e54Smws 	if (dp->d_disp != NULL)
647d9638e54Smws 		fmd_dispq_destroy(dp->d_disp);
648d9638e54Smws 	if (dp->d_timers != NULL)
649d9638e54Smws 		fmd_timerq_destroy(dp->d_timers);
650d9638e54Smws 	if (dp->d_schemes != NULL)
651d9638e54Smws 		fmd_scheme_hash_destroy(dp->d_schemes);
652d9638e54Smws 	if (dp->d_xprt_ids != NULL)
653d9638e54Smws 		fmd_idspace_destroy(dp->d_xprt_ids);
6547c478bd9Sstevel@tonic-gate 
6557c478bd9Sstevel@tonic-gate 	if (dp->d_errstats != NULL) {
6567c478bd9Sstevel@tonic-gate 		fmd_free(dp->d_errstats,
6577c478bd9Sstevel@tonic-gate 		    sizeof (fmd_stat_t) * (EFMD_END - EFMD_UNKNOWN));
6587c478bd9Sstevel@tonic-gate 	}
6597c478bd9Sstevel@tonic-gate 
6607c478bd9Sstevel@tonic-gate 	if (dp->d_conf != NULL)
6617c478bd9Sstevel@tonic-gate 		fmd_conf_close(dp->d_conf);
6627c478bd9Sstevel@tonic-gate 
6630eb822a1Scindi 	fmd_topo_fini();
6647aec1d6eScindi 
6657c478bd9Sstevel@tonic-gate 	nvlist_free(dp->d_auth);
6667c478bd9Sstevel@tonic-gate 	(void) nv_alloc_fini(&dp->d_nva);
6677c478bd9Sstevel@tonic-gate 	dp->d_clockops->fto_fini(dp->d_clockptr);
6687c478bd9Sstevel@tonic-gate 
6697c478bd9Sstevel@tonic-gate 	(void) pthread_key_delete(dp->d_key);
6707c478bd9Sstevel@tonic-gate 	bzero(dp, sizeof (fmd_t));
6717c478bd9Sstevel@tonic-gate 
6727c478bd9Sstevel@tonic-gate 	if (core)
6737c478bd9Sstevel@tonic-gate 		fmd_panic("forcing core dump at user request\n");
6747c478bd9Sstevel@tonic-gate }
6757c478bd9Sstevel@tonic-gate 
6767c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6777c478bd9Sstevel@tonic-gate static void
6787c478bd9Sstevel@tonic-gate fmd_gc(fmd_t *dp, id_t id, hrtime_t hrt)
6797c478bd9Sstevel@tonic-gate {
6807c478bd9Sstevel@tonic-gate 	hrtime_t delta;
6817c478bd9Sstevel@tonic-gate 
6827c478bd9Sstevel@tonic-gate 	if (id != 0) {
6837c478bd9Sstevel@tonic-gate 		TRACE((FMD_DBG_MOD, "garbage collect start"));
6847c478bd9Sstevel@tonic-gate 		fmd_modhash_apply(dp->d_mod_hash, fmd_module_gc);
6857c478bd9Sstevel@tonic-gate 		TRACE((FMD_DBG_MOD, "garbage collect end"));
6867c478bd9Sstevel@tonic-gate 
6877c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_rdlock(&dp->d_log_lock);
6887c478bd9Sstevel@tonic-gate 		fmd_log_update(dp->d_errlog);
6897c478bd9Sstevel@tonic-gate 		(void) pthread_rwlock_unlock(&dp->d_log_lock);
6907c478bd9Sstevel@tonic-gate 	}
6917c478bd9Sstevel@tonic-gate 
6927c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "gc_interval", &delta);
6937c478bd9Sstevel@tonic-gate 	(void) fmd_timerq_install(dp->d_timers, dp->d_rmod->mod_timerids,
6947c478bd9Sstevel@tonic-gate 	    (fmd_timer_f *)fmd_gc, dp, NULL, delta);
6957c478bd9Sstevel@tonic-gate }
6967c478bd9Sstevel@tonic-gate 
697567cc2e6Sstephh /*ARGSUSED*/
698567cc2e6Sstephh static void
699567cc2e6Sstephh fmd_clear_aged_rsrcs(fmd_t *dp, id_t id, hrtime_t hrt)
700567cc2e6Sstephh {
701567cc2e6Sstephh 	hrtime_t delta;
702567cc2e6Sstephh 
703567cc2e6Sstephh 	fmd_asru_clear_aged_rsrcs();
704567cc2e6Sstephh 	(void) fmd_conf_getprop(dp->d_conf, "rsrc.age", &delta);
705567cc2e6Sstephh 	(void) fmd_timerq_install(dp->d_timers, dp->d_rmod->mod_timerids,
706567cc2e6Sstephh 	    (fmd_timer_f *)fmd_clear_aged_rsrcs, dp, NULL, delta/10);
707567cc2e6Sstephh }
708567cc2e6Sstephh 
7097c478bd9Sstevel@tonic-gate /*
7107c478bd9Sstevel@tonic-gate  * Events are committed to the errlog after cases are checkpointed.  If fmd
7117c478bd9Sstevel@tonic-gate  * crashes before an event is ever associated with a module, this function will
7127c478bd9Sstevel@tonic-gate  * be called to replay it to all subscribers.  If fmd crashes in between the
7137c478bd9Sstevel@tonic-gate  * subscriber checkpointing and committing the event in the error log, the
7147c478bd9Sstevel@tonic-gate  * module will have seen the event and we don't want to replay it.  So we look
7157c478bd9Sstevel@tonic-gate  * for the event in all modules and transition it to the proper state.  If
7167c478bd9Sstevel@tonic-gate  * it is found, we commit it to the error log and do not replay it.  The in-
7177c478bd9Sstevel@tonic-gate  * memory case search used by fmd_module_contains() et al isn't particularly
7187c478bd9Sstevel@tonic-gate  * efficient, but it is faster than doing read i/o's on every case event to
7197c478bd9Sstevel@tonic-gate  * check their status or write i/o's on every event to replay to update states.
7207c478bd9Sstevel@tonic-gate  * We can improve the efficiency of this lookup algorithm later if necessary.
7217c478bd9Sstevel@tonic-gate  */
7227c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7237c478bd9Sstevel@tonic-gate static void
7247c478bd9Sstevel@tonic-gate fmd_err_replay(fmd_log_t *lp, fmd_event_t *ep, fmd_t *dp)
7257c478bd9Sstevel@tonic-gate {
7267c478bd9Sstevel@tonic-gate 	fmd_module_t *mp;
7277c478bd9Sstevel@tonic-gate 	fmd_stat_t *sp;
7287c478bd9Sstevel@tonic-gate 
7297c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_lock(&dp->d_mod_lock);
7307c478bd9Sstevel@tonic-gate 
7317c478bd9Sstevel@tonic-gate 	for (mp = fmd_list_next(&dp->d_mod_list);
7327c478bd9Sstevel@tonic-gate 	    mp != NULL; mp = fmd_list_next(mp)) {
7337c478bd9Sstevel@tonic-gate 		if (fmd_module_contains(mp, ep)) {
7347c478bd9Sstevel@tonic-gate 			fmd_module_hold(mp);
7357c478bd9Sstevel@tonic-gate 			break;
7367c478bd9Sstevel@tonic-gate 		}
7377c478bd9Sstevel@tonic-gate 	}
7387c478bd9Sstevel@tonic-gate 
7397c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_unlock(&dp->d_mod_lock);
7407c478bd9Sstevel@tonic-gate 
7417c478bd9Sstevel@tonic-gate 	if (mp != NULL) {
7427c478bd9Sstevel@tonic-gate 		fmd_event_commit(ep);
7437c478bd9Sstevel@tonic-gate 		fmd_module_rele(mp);
7447c478bd9Sstevel@tonic-gate 		sp = &dp->d_stats->ds_log_partials;
7457c478bd9Sstevel@tonic-gate 	} else {
746d9638e54Smws 		fmd_dispq_dispatch(dp->d_disp, ep, FMD_EVENT_DATA(ep));
7477c478bd9Sstevel@tonic-gate 		sp = &dp->d_stats->ds_log_replayed;
7487c478bd9Sstevel@tonic-gate 	}
7497c478bd9Sstevel@tonic-gate 
7507c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_lock(&dp->d_stats_lock);
7517c478bd9Sstevel@tonic-gate 	sp->fmds_value.ui64++;
7527c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_unlock(&dp->d_stats_lock);
7537c478bd9Sstevel@tonic-gate }
7547c478bd9Sstevel@tonic-gate 
755d9638e54Smws void
756d9638e54Smws fmd_door_server(void *dip)
757d9638e54Smws {
758d9638e54Smws 	fmd_dprintf(FMD_DBG_XPRT, "door server starting for %p\n", dip);
759d9638e54Smws 	(void) pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
760d9638e54Smws 	(void) door_return(NULL, 0, NULL, 0);
761d9638e54Smws }
762d9638e54Smws 
763d9638e54Smws /*
764d9638e54Smws  * Custom door server create callback.  Any fmd services that use doors will
765d9638e54Smws  * require those threads to have their fmd-specific TSD initialized, etc.
766d9638e54Smws  */
767d9638e54Smws static void
768d9638e54Smws fmd_door(door_info_t *dip)
769d9638e54Smws {
770d9638e54Smws 	if (fmd_thread_create(fmd.d_rmod, fmd_door_server, dip) == NULL)
771d9638e54Smws 		fmd_panic("failed to create server for door %p", (void *)dip);
772d9638e54Smws }
773d9638e54Smws 
7747c478bd9Sstevel@tonic-gate /*
7757c478bd9Sstevel@tonic-gate  * This signal handler is installed for the client.thrsig signal to be used to
7767c478bd9Sstevel@tonic-gate  * force an auxiliary thread to wake up from a system call and return EINTR in
7777c478bd9Sstevel@tonic-gate  * response to a module's use of fmd_thr_signal().  We also trace the event.
7787c478bd9Sstevel@tonic-gate  */
7797c478bd9Sstevel@tonic-gate static void
7807c478bd9Sstevel@tonic-gate fmd_signal(int sig)
7817c478bd9Sstevel@tonic-gate {
7827c478bd9Sstevel@tonic-gate 	TRACE((FMD_DBG_MOD, "module thread received sig #%d", sig));
7837c478bd9Sstevel@tonic-gate }
7847c478bd9Sstevel@tonic-gate 
7857c478bd9Sstevel@tonic-gate void
7867c478bd9Sstevel@tonic-gate fmd_run(fmd_t *dp, int pfd)
7877c478bd9Sstevel@tonic-gate {
7887c478bd9Sstevel@tonic-gate 	char *nodc_key[] = { FMD_FLT_NODC, NULL };
789627351e3Scy152378 	char *repair_key[] = { FM_LIST_REPAIRED_CLASS, NULL };
79025c6ff4bSstephh 	char *resolve_key[] = { FM_LIST_RESOLVED_CLASS, NULL };
79125c6ff4bSstephh 	char *update_key[] = { FM_LIST_UPDATED_CLASS, NULL };
792627351e3Scy152378 	char code_str[128];
7937c478bd9Sstevel@tonic-gate 	struct sigaction act;
7947c478bd9Sstevel@tonic-gate 
7957c478bd9Sstevel@tonic-gate 	int status = FMD_EXIT_SUCCESS;
7967c478bd9Sstevel@tonic-gate 	const char *name;
7977c478bd9Sstevel@tonic-gate 	fmd_conf_path_t *pap;
798d9638e54Smws 	fmd_event_t *e;
7990eb822a1Scindi 	int dbout;
8007c478bd9Sstevel@tonic-gate 
8017c478bd9Sstevel@tonic-gate 	/*
8027c478bd9Sstevel@tonic-gate 	 * Cache all the current debug property settings in d_fmd_debug,
8037c478bd9Sstevel@tonic-gate 	 * d_fmd_dbout, d_hdl_debug, and d_hdl_dbout.  If a given debug mask
8047c478bd9Sstevel@tonic-gate 	 * is non-zero and the corresponding dbout mask is zero, set dbout
8057c478bd9Sstevel@tonic-gate 	 * to a sensible default value based on whether we have daemonized.
8067c478bd9Sstevel@tonic-gate 	 */
8077c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "dbout", &dbout);
8087c478bd9Sstevel@tonic-gate 
8097c478bd9Sstevel@tonic-gate 	if (dp->d_fmd_debug != 0 && dbout == 0)
8107c478bd9Sstevel@tonic-gate 		dp->d_fmd_dbout = dp->d_fg? FMD_DBOUT_STDERR : FMD_DBOUT_SYSLOG;
8117c478bd9Sstevel@tonic-gate 	else
8127c478bd9Sstevel@tonic-gate 		dp->d_fmd_dbout = dbout;
8137c478bd9Sstevel@tonic-gate 
8147c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.debug", &dp->d_hdl_debug);
8157c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.dbout", &dbout);
8167c478bd9Sstevel@tonic-gate 
8177c478bd9Sstevel@tonic-gate 	if (dp->d_hdl_debug != 0 && dbout == 0)
8187c478bd9Sstevel@tonic-gate 		dp->d_hdl_dbout = dp->d_fg? FMD_DBOUT_STDERR : FMD_DBOUT_SYSLOG;
8197c478bd9Sstevel@tonic-gate 	else
8207c478bd9Sstevel@tonic-gate 		dp->d_hdl_dbout = dbout;
8217c478bd9Sstevel@tonic-gate 
8227c478bd9Sstevel@tonic-gate 	/*
823d9638e54Smws 	 * Initialize remaining major program data structures such as the
824d9638e54Smws 	 * clock, dispatch queues, log files, module hash collections, etc.
8257c478bd9Sstevel@tonic-gate 	 * This work is done here rather than in fmd_create() to permit the -o
8267c478bd9Sstevel@tonic-gate 	 * command-line option to modify properties after fmd_create() is done.
8277c478bd9Sstevel@tonic-gate 	 */
8287aec1d6eScindi 	name = dp->d_rootdir != NULL &&
8297aec1d6eScindi 	    *dp->d_rootdir != '\0' ? dp->d_rootdir : NULL;
8307aec1d6eScindi 
8310940c086Seschrock 	/*
8320940c086Seschrock 	 * The clock must be initialized before fmd_topo_init() because
8330940c086Seschrock 	 * fmd_topo_update() calls fmd_time_gethrtime().
8340940c086Seschrock 	 */
8350940c086Seschrock 	dp->d_clockptr = dp->d_clockops->fto_init();
8360940c086Seschrock 
8370eb822a1Scindi 	fmd_topo_init();
8387aec1d6eScindi 
839d9638e54Smws 	dp->d_xprt_ids = fmd_idspace_create("xprt_ids", 1, INT_MAX);
840d9638e54Smws 	fmd_xprt_suspend_all();
841d9638e54Smws 
842d9638e54Smws 	(void) door_server_create(fmd_door);
8437c478bd9Sstevel@tonic-gate 
8447c478bd9Sstevel@tonic-gate 	dp->d_rmod->mod_timerids = fmd_idspace_create(dp->d_pname, 1, 16);
8457c478bd9Sstevel@tonic-gate 	dp->d_timers = fmd_timerq_create();
8467c478bd9Sstevel@tonic-gate 	dp->d_disp = fmd_dispq_create();
8477c478bd9Sstevel@tonic-gate 	dp->d_cases = fmd_case_hash_create();
8487c478bd9Sstevel@tonic-gate 
8497c478bd9Sstevel@tonic-gate 	/*
850d9638e54Smws 	 * The root module's mod_queue is created with limit zero, making it
851d9638e54Smws 	 * act like /dev/null; anything inserted here is simply ignored.
852d9638e54Smws 	 */
853d9638e54Smws 	dp->d_rmod->mod_queue = fmd_eventq_create(dp->d_rmod,
854d9638e54Smws 	    &dp->d_rmod->mod_stats->ms_evqstat, &dp->d_rmod->mod_stats_lock, 0);
855d9638e54Smws 
856d9638e54Smws 	/*
8577c478bd9Sstevel@tonic-gate 	 * Once our subsystems that use signals have been set up, install the
8587c478bd9Sstevel@tonic-gate 	 * signal handler for the fmd_thr_signal() API.  Verify that the signal
8597c478bd9Sstevel@tonic-gate 	 * being used for this purpose doesn't conflict with something else.
8607c478bd9Sstevel@tonic-gate 	 */
8617c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "client.thrsig", &dp->d_thr_sig);
8627c478bd9Sstevel@tonic-gate 
8637c478bd9Sstevel@tonic-gate 	if (sigaction(dp->d_thr_sig, NULL, &act) != 0) {
8647c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "invalid signal selected for "
8657c478bd9Sstevel@tonic-gate 		    "client.thrsig property: %d\n", dp->d_thr_sig);
8667c478bd9Sstevel@tonic-gate 	}
8677c478bd9Sstevel@tonic-gate 
8687c478bd9Sstevel@tonic-gate 	if (act.sa_handler != SIG_IGN && act.sa_handler != SIG_DFL) {
8697c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "signal selected for client.thrsig "
8707c478bd9Sstevel@tonic-gate 		    "property is already in use: %d\n", dp->d_thr_sig);
8717c478bd9Sstevel@tonic-gate 	}
8727c478bd9Sstevel@tonic-gate 
8737c478bd9Sstevel@tonic-gate 	act.sa_handler = fmd_signal;
8747c478bd9Sstevel@tonic-gate 	act.sa_flags = 0;
8757c478bd9Sstevel@tonic-gate 
8767c478bd9Sstevel@tonic-gate 	(void) sigemptyset(&act.sa_mask);
8777c478bd9Sstevel@tonic-gate 	(void) sigaction(dp->d_thr_sig, &act, NULL);
8787c478bd9Sstevel@tonic-gate 
8797c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "schemedir", &name);
8807c478bd9Sstevel@tonic-gate 	dp->d_schemes = fmd_scheme_hash_create(dp->d_rootdir, name);
8817c478bd9Sstevel@tonic-gate 
8827c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.rsrc", &name);
8837c478bd9Sstevel@tonic-gate 	dp->d_asrus = fmd_asru_hash_create(dp->d_rootdir, name);
8847c478bd9Sstevel@tonic-gate 
8857c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.error", &name);
8867c478bd9Sstevel@tonic-gate 	dp->d_errlog = fmd_log_open(dp->d_rootdir, name, FMD_LOG_ERROR);
8877c478bd9Sstevel@tonic-gate 
8887c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "log.fault", &name);
8897c478bd9Sstevel@tonic-gate 	dp->d_fltlog = fmd_log_open(dp->d_rootdir, name, FMD_LOG_FAULT);
8907c478bd9Sstevel@tonic-gate 
8917c478bd9Sstevel@tonic-gate 	if (dp->d_asrus == NULL || dp->d_errlog == NULL || dp->d_fltlog == NULL)
8927c478bd9Sstevel@tonic-gate 		fmd_error(EFMD_EXIT, "failed to initialize log files\n");
8937c478bd9Sstevel@tonic-gate 
894d9638e54Smws 	/*
895d9638e54Smws 	 * Before loading modules, create an empty control event which will act
896d9638e54Smws 	 * as a global barrier for module event processing.  Each module we
897d9638e54Smws 	 * load successfully will insert it at their head of their event queue,
898d9638e54Smws 	 * and then pause inside of fmd_ctl_rele() after dequeuing the event.
899d9638e54Smws 	 * This module barrier is required for two reasons:
900d9638e54Smws 	 *
901d9638e54Smws 	 * (a) During module loading, the restoration of case checkpoints may
902d9638e54Smws 	 *    result in a list.* event being recreated for which the intended
903d9638e54Smws 	 *    subscriber has not yet loaded depending on the load order. Such
904d9638e54Smws 	 *    events could then result in spurious "no subscriber" errors.
905d9638e54Smws 	 *
906d9638e54Smws 	 * (b) During errlog replay, a sequence of errors from a long time ago
907d9638e54Smws 	 *    may be replayed, and the module may attempt to install relative
908d9638e54Smws 	 *    timers associated with one or more of these events.  If errlog
909d9638e54Smws 	 *    replay were "racing" with active module threads, an event E1
910d9638e54Smws 	 *    that resulted in a relative timer T at time E1 + N nsec could
911d9638e54Smws 	 *    fire prior to an event E2 being enqueued, even if the relative
912d9638e54Smws 	 *    time ordering was E1 < E2 < E1 + N, causing mis-diagnosis.
913d9638e54Smws 	 */
914d9638e54Smws 	dp->d_mod_event = e = fmd_event_create(FMD_EVT_CTL,
915d9638e54Smws 	    FMD_HRT_NOW, NULL, fmd_ctl_init(NULL));
916d9638e54Smws 
917d9638e54Smws 	fmd_event_hold(e);
918d9638e54Smws 
919d9638e54Smws 	/*
920d9638e54Smws 	 * Once all data structures are initialized, we load all of our modules
921d9638e54Smws 	 * in order according to class in order to load up any subscriptions.
922d9638e54Smws 	 * Once built-in modules are loaded, we detach from our waiting parent.
923d9638e54Smws 	 */
9247c478bd9Sstevel@tonic-gate 	dp->d_mod_hash = fmd_modhash_create();
925d9638e54Smws 
926d9638e54Smws 	if (fmd_builtin_loadall(dp->d_mod_hash) != 0 && !dp->d_fg)
927d9638e54Smws 		fmd_error(EFMD_EXIT, "failed to initialize fault manager\n");
928d9638e54Smws 
929d9638e54Smws 	(void) fmd_conf_getprop(dp->d_conf, "self.name", &name);
930d9638e54Smws 	dp->d_self = fmd_modhash_lookup(dp->d_mod_hash, name);
931d9638e54Smws 
932627351e3Scy152378 	if (dp->d_self != NULL) {
933627351e3Scy152378 		if (fmd_module_dc_key2code(dp->d_self, nodc_key, code_str,
934627351e3Scy152378 		    sizeof (code_str)) == 0)
935627351e3Scy152378 			(void) fmd_conf_setprop(dp->d_conf, "nodiagcode",
936627351e3Scy152378 			    code_str);
937627351e3Scy152378 		if (fmd_module_dc_key2code(dp->d_self, repair_key, code_str,
938627351e3Scy152378 		    sizeof (code_str)) == 0)
939627351e3Scy152378 			(void) fmd_conf_setprop(dp->d_conf, "repaircode",
940627351e3Scy152378 			    code_str);
94125c6ff4bSstephh 		if (fmd_module_dc_key2code(dp->d_self, resolve_key, code_str,
94225c6ff4bSstephh 		    sizeof (code_str)) == 0)
94325c6ff4bSstephh 			(void) fmd_conf_setprop(dp->d_conf, "resolvecode",
94425c6ff4bSstephh 			    code_str);
94525c6ff4bSstephh 		if (fmd_module_dc_key2code(dp->d_self, update_key, code_str,
94625c6ff4bSstephh 		    sizeof (code_str)) == 0)
94725c6ff4bSstephh 			(void) fmd_conf_setprop(dp->d_conf, "updatecode",
94825c6ff4bSstephh 			    code_str);
949627351e3Scy152378 	}
950d9638e54Smws 
951d9638e54Smws 	fmd_rpc_init();
9527c478bd9Sstevel@tonic-gate 	dp->d_running = 1; /* we are now officially an active fmd */
9537c478bd9Sstevel@tonic-gate 
9547c478bd9Sstevel@tonic-gate 	/*
9557c478bd9Sstevel@tonic-gate 	 * Now that we're running, if a pipe fd was specified, write an exit
9567c478bd9Sstevel@tonic-gate 	 * status to it to indicate that our parent process can safely detach.
957d9638e54Smws 	 * Then proceed to loading the remaining non-built-in modules.
9587c478bd9Sstevel@tonic-gate 	 */
9597c478bd9Sstevel@tonic-gate 	if (pfd >= 0)
9607c478bd9Sstevel@tonic-gate 		(void) write(pfd, &status, sizeof (status));
9617c478bd9Sstevel@tonic-gate 
962162ba6eaSmws 	/*
963162ba6eaSmws 	 * Before loading all modules, repopulate the ASRU cache from its
964162ba6eaSmws 	 * persistent repository on disk.  Then during module loading, the
965162ba6eaSmws 	 * restoration of checkpoint files will reparent any active cases.
966162ba6eaSmws 	 */
967162ba6eaSmws 	fmd_asru_hash_refresh(dp->d_asrus);
968162ba6eaSmws 
9697c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "plugin.path", &pap);
9700b9e3e76Smws 	fmd_modhash_loadall(dp->d_mod_hash, pap, &fmd_rtld_ops, ".so");
9717c478bd9Sstevel@tonic-gate 
9727c478bd9Sstevel@tonic-gate 	(void) fmd_conf_getprop(dp->d_conf, "agent.path", &pap);
9730b9e3e76Smws 	fmd_modhash_loadall(dp->d_mod_hash, pap, &fmd_proc_ops, NULL);
9747c478bd9Sstevel@tonic-gate 
9757c478bd9Sstevel@tonic-gate 	/*
976d9638e54Smws 	 * With all modules loaded, replay fault events from the ASRU cache for
977d9638e54Smws 	 * any ASRUs that must be retired, replay error events from the errlog
978d9638e54Smws 	 * that did not finish processing the last time ran, and then release
979d9638e54Smws 	 * the global module barrier by executing a final rele on d_mod_event.
9807c478bd9Sstevel@tonic-gate 	 */
981162ba6eaSmws 	fmd_asru_hash_replay(dp->d_asrus);
9827c478bd9Sstevel@tonic-gate 
9837c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_rdlock(&dp->d_log_lock);
9847c478bd9Sstevel@tonic-gate 	fmd_log_replay(dp->d_errlog, (fmd_log_f *)fmd_err_replay, dp);
9857c478bd9Sstevel@tonic-gate 	fmd_log_update(dp->d_errlog);
9867c478bd9Sstevel@tonic-gate 	(void) pthread_rwlock_unlock(&dp->d_log_lock);
9877c478bd9Sstevel@tonic-gate 
988d9638e54Smws 	dp->d_mod_event = NULL;
989d9638e54Smws 	fmd_event_rele(e);
9907c478bd9Sstevel@tonic-gate 
9917c478bd9Sstevel@tonic-gate 	/*
99225c6ff4bSstephh 	 * Now replay list.updated and list.repaired events
99325c6ff4bSstephh 	 */
99425c6ff4bSstephh 	fmd_case_repair_replay();
99525c6ff4bSstephh 
99625c6ff4bSstephh 	/*
9977c478bd9Sstevel@tonic-gate 	 * Finally, awaken any threads associated with receiving events from
998d9638e54Smws 	 * open transports and tell them to proceed with fmd_xprt_recv().
9997c478bd9Sstevel@tonic-gate 	 */
1000d9638e54Smws 	fmd_xprt_resume_all();
10017c478bd9Sstevel@tonic-gate 	fmd_gc(dp, 0, 0);
1002567cc2e6Sstephh 	fmd_clear_aged_rsrcs(dp, 0, 0);
1003d9638e54Smws 
100493136fe2Sstephh 	(void) pthread_mutex_lock(&dp->d_fmd_lock);
1005d9638e54Smws 	dp->d_booted = 1;
100693136fe2Sstephh 	(void) pthread_cond_broadcast(&dp->d_fmd_cv);
100793136fe2Sstephh 	(void) pthread_mutex_unlock(&dp->d_fmd_lock);
10087c478bd9Sstevel@tonic-gate }
10097c478bd9Sstevel@tonic-gate 
10107c478bd9Sstevel@tonic-gate void
10117c478bd9Sstevel@tonic-gate fmd_help(fmd_t *dp)
10127c478bd9Sstevel@tonic-gate {
10137c478bd9Sstevel@tonic-gate 	const fmd_conf_mode_t *cmp;
10147c478bd9Sstevel@tonic-gate 
10157c478bd9Sstevel@tonic-gate 	(void) printf("Usage: %s -o debug=mode[,mode]\n", dp->d_pname);
10167c478bd9Sstevel@tonic-gate 
10177c478bd9Sstevel@tonic-gate 	for (cmp = _fmd_debug_modes; cmp->cm_name != NULL; cmp++)
10187c478bd9Sstevel@tonic-gate 		(void) printf("\t%s\t%s\n", cmp->cm_name, cmp->cm_desc);
10197c478bd9Sstevel@tonic-gate }
1020