xref: /illumos-gate/usr/src/cmd/fm/fmd/common/fmd.c (revision 88ecc943b4eb72f7c4fbbd8435997b85ef171fc3)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #include <sys/types.h>
28 #include <sys/utsname.h>
29 #include <sys/param.h>
30 #include <sys/systeminfo.h>
31 #include <sys/fm/util.h>
32 
33 #include <smbios.h>
34 #include <limits.h>
35 #include <unistd.h>
36 #include <signal.h>
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <ctype.h>
40 #include <door.h>
41 
42 #include <fmd_conf.h>
43 #include <fmd_dispq.h>
44 #include <fmd_timerq.h>
45 #include <fmd_subr.h>
46 #include <fmd_error.h>
47 #include <fmd_module.h>
48 #include <fmd_thread.h>
49 #include <fmd_alloc.h>
50 #include <fmd_string.h>
51 #include <fmd_builtin.h>
52 #include <fmd_ustat.h>
53 #include <fmd_protocol.h>
54 #include <fmd_scheme.h>
55 #include <fmd_asru.h>
56 #include <fmd_case.h>
57 #include <fmd_log.h>
58 #include <fmd_idspace.h>
59 #include <fmd_rpc.h>
60 #include <fmd_dr.h>
61 #include <fmd_topo.h>
62 #include <fmd_xprt.h>
63 #include <fmd_ctl.h>
64 #include <sys/openpromio.h>
65 #include <libdevinfo.h>
66 
67 #include <fmd.h>
68 
69 extern const nv_alloc_ops_t fmd_nv_alloc_ops;	/* see fmd_nv.c */
70 
71 const char _fmd_version[] = "1.2";		/* daemon version string */
72 static char _fmd_plat[MAXNAMELEN];		/* native platform string */
73 static char _fmd_isa[MAXNAMELEN];		/* native instruction set */
74 static struct utsname _fmd_uts;			/* native uname(2) info */
75 static char _fmd_psn[MAXNAMELEN];		/* product serial number */
76 static char _fmd_csn[MAXNAMELEN];		/* chassis serial number */
77 static char _fmd_prod[MAXNAMELEN];		/* product name string */
78 
79 /*
80  * Note: the configuration file path is ordered from most common to most host-
81  * specific because new conf files are merged/override previous ones.  The
82  * module paths are in the opposite order, from most specific to most common,
83  * because once a module is loaded fmd will not try to load over the same name.
84  */
85 
86 static const char _fmd_conf_path[] =
87 	"%r/usr/lib/fm/fmd:"
88 	"%r/usr/platform/%m/lib/fm/fmd:"
89 	"%r/usr/platform/%i/lib/fm/fmd:"
90 	"%r/etc/fm/fmd";
91 
92 static const char _fmd_agent_path[] =
93 	"%r/usr/platform/%i/lib/fm/fmd/agents:"
94 	"%r/usr/platform/%m/lib/fm/fmd/agents:"
95 	"%r/usr/lib/fm/fmd/agents";
96 
97 static const char _fmd_plugin_path[] =
98 	"%r/usr/platform/%i/lib/fm/fmd/plugins:"
99 	"%r/usr/platform/%m/lib/fm/fmd/plugins:"
100 	"%r/usr/lib/fm/fmd/plugins";
101 
102 static const char _fmd_scheme_path[] =
103 	"usr/lib/fm/fmd/schemes";
104 
105 static const fmd_conf_mode_t _fmd_cerror_modes[] = {
106 	{ "unload", "unload offending client module", FMD_CERROR_UNLOAD },
107 	{ "stop", "stop daemon for debugger attach", FMD_CERROR_STOP },
108 	{ "abort", "abort daemon and force core dump", FMD_CERROR_ABORT },
109 	{ NULL, NULL, 0 }
110 };
111 
112 static const fmd_conf_mode_t _fmd_dbout_modes[] = {
113 	{ "stderr", "send debug messages to stderr", FMD_DBOUT_STDERR },
114 	{ "syslog", "send debug messages to syslog", FMD_DBOUT_SYSLOG },
115 	{ NULL, NULL, 0 }
116 };
117 
118 static const fmd_conf_mode_t _fmd_debug_modes[] = {
119 	{ "help", "display debugging modes and exit", FMD_DBG_HELP },
120 	{ "mod", "debug module load/unload/locking", FMD_DBG_MOD },
121 	{ "disp", "debug dispatch queue processing", FMD_DBG_DISP },
122 	{ "xprt", "debug transport-specific routines", FMD_DBG_XPRT },
123 	{ "evt", "debug event subsystem routines", FMD_DBG_EVT },
124 	{ "log", "debug log subsystem routines", FMD_DBG_LOG },
125 	{ "tmr", "debug timer subsystem routines", FMD_DBG_TMR },
126 	{ "fmri", "debug fmri subsystem routines", FMD_DBG_FMRI },
127 	{ "asru", "debug asru subsystem routines", FMD_DBG_ASRU },
128 	{ "case", "debug case subsystem routines", FMD_DBG_CASE },
129 	{ "ckpt", "debug checkpoint routines", FMD_DBG_CKPT },
130 	{ "rpc", "debug rpc service routines", FMD_DBG_RPC },
131 	{ "trace", "display matching trace calls", FMD_DBG_TRACE },
132 	{ "all", "enable all available debug modes", FMD_DBG_ALL },
133 	{ NULL, NULL, 0 }
134 };
135 
136 static int
137 fmd_cerror_set(fmd_conf_param_t *pp, const char *value)
138 {
139 	return (fmd_conf_mode_set(_fmd_cerror_modes, pp, value));
140 }
141 
142 static int
143 fmd_dbout_set(fmd_conf_param_t *pp, const char *value)
144 {
145 	return (fmd_conf_mode_set(_fmd_dbout_modes, pp, value));
146 }
147 
148 static int
149 fmd_debug_set(fmd_conf_param_t *pp, const char *value)
150 {
151 	int err = fmd_conf_mode_set(_fmd_debug_modes, pp, value);
152 
153 	if (err == 0)
154 		fmd.d_fmd_debug = pp->cp_value.cpv_num;
155 
156 	return (err);
157 }
158 
159 static int
160 fmd_trmode_set(fmd_conf_param_t *pp, const char *value)
161 {
162 	fmd_tracebuf_f *func;
163 
164 	if (strcasecmp(value, "none") == 0)
165 		func = fmd_trace_none;
166 	else if (strcasecmp(value, "lite") == 0)
167 		func = fmd_trace_lite;
168 	else if (strcasecmp(value, "full") == 0)
169 		func = fmd_trace_full;
170 	else
171 		return (fmd_set_errno(EFMD_CONF_INVAL));
172 
173 	fmd.d_thr_trace = (void (*)())func;
174 	pp->cp_value.cpv_ptr = (void *)func;
175 	return (0);
176 }
177 
178 static void
179 fmd_trmode_get(const fmd_conf_param_t *pp, void *ptr)
180 {
181 	*((void **)ptr) = pp->cp_value.cpv_ptr;
182 }
183 
184 static int
185 fmd_clkmode_set(fmd_conf_param_t *pp, const char *value)
186 {
187 	const fmd_timeops_t *ops;
188 
189 	if (strcasecmp(value, "native") == 0)
190 		ops = &fmd_timeops_native;
191 	else if (strcasecmp(value, "simulated") == 0)
192 		ops = &fmd_timeops_simulated;
193 	else
194 		return (fmd_set_errno(EFMD_CONF_INVAL));
195 
196 	fmd.d_clockops = ops;
197 	pp->cp_value.cpv_ptr = (void *)ops;
198 	return (0);
199 }
200 
201 static void
202 fmd_clkmode_get(const fmd_conf_param_t *pp, void *ptr)
203 {
204 	*((void **)ptr) = pp->cp_value.cpv_ptr;
205 }
206 
207 static const fmd_conf_ops_t fmd_cerror_ops = {
208 	fmd_cerror_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
209 };
210 
211 static const fmd_conf_ops_t fmd_dbout_ops = {
212 	fmd_dbout_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
213 };
214 
215 static const fmd_conf_ops_t fmd_debug_ops = {
216 	fmd_debug_set, fmd_conf_mode_get, fmd_conf_notsup, fmd_conf_nop
217 };
218 
219 static const fmd_conf_ops_t fmd_trmode_ops = {
220 	fmd_trmode_set, fmd_trmode_get, fmd_conf_notsup, fmd_conf_nop
221 };
222 
223 static const fmd_conf_ops_t fmd_clkmode_ops = {
224 	fmd_clkmode_set, fmd_clkmode_get, fmd_conf_notsup, fmd_conf_nop
225 };
226 
227 static const fmd_conf_formal_t _fmd_conf[] = {
228 { "agent.path", &fmd_conf_path, _fmd_agent_path }, /* path for agents */
229 { "alloc_msecs", &fmd_conf_uint32, "10" },	/* msecs before alloc retry */
230 { "alloc_tries", &fmd_conf_uint32, "3" },	/* max # of alloc retries */
231 { "product_sn", &fmd_conf_string, _fmd_psn },	/* product serial number */
232 { "chassis", &fmd_conf_string, _fmd_csn },	/* chassis serial number */
233 { "ckpt.dir", &fmd_conf_string, "var/fm/fmd/ckpt" }, /* ckpt directory path */
234 { "ckpt.dirmode", &fmd_conf_int32, "0700" },	/* ckpt directory perm mode */
235 { "ckpt.mode", &fmd_conf_int32, "0400" },	/* ckpt file perm mode */
236 { "ckpt.restore", &fmd_conf_bool, "true" },	/* restore checkpoints? */
237 { "ckpt.save", &fmd_conf_bool, "true" },	/* save checkpoints? */
238 { "ckpt.zero", &fmd_conf_bool, "false" },	/* zero checkpoints on start? */
239 { "client.buflim", &fmd_conf_size, "10m" },	/* client buffer space limit */
240 { "client.dbout", &fmd_dbout_ops, NULL },	/* client debug output sinks */
241 { "client.debug", &fmd_conf_bool, NULL },	/* client debug enable */
242 { "client.error", &fmd_cerror_ops, "unload" },	/* client error policy */
243 { "client.memlim", &fmd_conf_size, "10m" },	/* client allocation limit */
244 { "client.evqlim", &fmd_conf_uint32, "256" },	/* client event queue limit */
245 { "client.thrlim", &fmd_conf_uint32, "20" },	/* client aux thread limit */
246 { "client.thrsig", &fmd_conf_signal, "SIGUSR1" }, /* fmd_thr_signal() value */
247 { "client.tmrlim", &fmd_conf_uint32, "1024" },	/* client pending timer limit */
248 { "client.xprtlim", &fmd_conf_uint32, "256" },	/* client transport limit */
249 { "client.xprtlog", &fmd_conf_bool, NULL },	/* client transport logging? */
250 { "client.xprtqlim", &fmd_conf_uint32, "1024" }, /* client transport queue li */
251 { "clock", &fmd_clkmode_ops, "native" },	/* clock operation mode */
252 { "conf_path", &fmd_conf_path, _fmd_conf_path }, /* root config file path */
253 { "conf_file", &fmd_conf_string, "fmd.conf" },	/* root config file name */
254 { "core", &fmd_conf_bool, "false" },		/* force core dump on quit */
255 { "dbout", &fmd_dbout_ops, NULL },		/* daemon debug output sinks */
256 { "debug", &fmd_debug_ops, NULL },		/* daemon debugging flags */
257 { "dictdir", &fmd_conf_string, "usr/lib/fm/dict" }, /* default diagcode dir */
258 { "domain", &fmd_conf_string, NULL },		/* domain id for de auth */
259 { "fakenotpresent", &fmd_conf_uint32, "0" },	/* simulate rsrc not present */
260 { "fg", &fmd_conf_bool, "false" },		/* run daemon in foreground */
261 { "gc_interval", &fmd_conf_time, "1d" },	/* garbage collection intvl */
262 { "ids.avg", &fmd_conf_uint32, "4" },		/* desired idspace chain len */
263 { "ids.max", &fmd_conf_uint32, "1024" },	/* maximum idspace buckets */
264 { "isaname", &fmd_conf_string, _fmd_isa },	/* instruction set (uname -p) */
265 { "log.creator", &fmd_conf_string, "fmd" },	/* exacct log creator string */
266 { "log.error", &fmd_conf_string, "var/fm/fmd/errlog" }, /* error log path */
267 { "log.fault", &fmd_conf_string, "var/fm/fmd/fltlog" }, /* fault log path */
268 { "log.minfree", &fmd_conf_size, "2m" },	/* min log fsys free space */
269 { "log.rsrc", &fmd_conf_string, "var/fm/fmd/rsrc" }, /* asru log dir path */
270 { "log.tryrotate", &fmd_conf_uint32, "10" },	/* max log rotation attempts */
271 { "log.waitrotate", &fmd_conf_time, "200ms" },	/* log rotation retry delay */
272 { "log.xprt", &fmd_conf_string, "var/fm/fmd/xprt" }, /* transport log dir */
273 { "machine", &fmd_conf_string, _fmd_uts.machine }, /* machine name (uname -m) */
274 { "nodiagcode", &fmd_conf_string, "-" },	/* diagcode to use if error */
275 { "repaircode", &fmd_conf_string, "-" },	/* diagcode for list.repaired */
276 { "resolvecode", &fmd_conf_string, "-" },	/* diagcode for list.resolved */
277 { "updatecode", &fmd_conf_string, "-" },	/* diagcode for list.updated */
278 { "osrelease", &fmd_conf_string, _fmd_uts.release }, /* release (uname -r) */
279 { "osversion", &fmd_conf_string, _fmd_uts.version }, /* version (uname -v) */
280 { "platform", &fmd_conf_string, _fmd_plat },	/* platform string (uname -i) */
281 { "plugin.close", &fmd_conf_bool, "true" },	/* dlclose plugins on fini */
282 { "plugin.path", &fmd_conf_path, _fmd_plugin_path }, /* path for plugin mods */
283 { "product", &fmd_conf_string, _fmd_prod },	/* product name string */
284 { "rootdir", &fmd_conf_string, "" },		/* root directory for paths */
285 { "rpc.adm.path", &fmd_conf_string, NULL },	/* FMD_ADM rendezvous file */
286 { "rpc.adm.prog", &fmd_conf_uint32, "100169" },	/* FMD_ADM rpc program num */
287 { "rpc.api.path", &fmd_conf_string, NULL },	/* FMD_API rendezvous file */
288 { "rpc.api.prog", &fmd_conf_uint32, "100170" },	/* FMD_API rpc program num */
289 { "rpc.rcvsize", &fmd_conf_size, "128k" },	/* rpc receive buffer size */
290 { "rpc.sndsize", &fmd_conf_size, "128k" },	/* rpc send buffer size */
291 { "rsrc.age", &fmd_conf_time, "30d" },		/* max age of old rsrc log */
292 { "rsrc.zero", &fmd_conf_bool, "false" },	/* zero rsrc cache on start? */
293 { "schemedir", &fmd_conf_string, _fmd_scheme_path }, /* path for scheme mods */
294 { "self.name", &fmd_conf_string, "fmd-self-diagnosis" }, /* self-diag module */
295 { "self.dict", &fmd_conf_list, "FMD.dict" },	/* self-diag dictionary list */
296 { "server", &fmd_conf_string, _fmd_uts.nodename }, /* server id for de auth */
297 { "strbuckets", &fmd_conf_uint32, "211" },	/* size of string hashes */
298 #ifdef DEBUG
299 { "trace.mode", &fmd_trmode_ops, "full" },	/* trace mode: none/lite/full */
300 #else
301 { "trace.mode", &fmd_trmode_ops, "lite" },	/* trace mode: none/lite/full */
302 #endif
303 { "trace.recs", &fmd_conf_uint32, "128" },	/* trace records per thread */
304 { "trace.frames", &fmd_conf_uint32, "16" },	/* max trace rec stack frames */
305 { "uuidlen", &fmd_conf_uint32, "36" },		/* UUID ASCII string length */
306 { "xprt.ttl", &fmd_conf_uint8, "1" },		/* default event time-to-live */
307 };
308 
309 /*
310  * Statistics maintained by fmd itself on behalf of various global subsystems.
311  * NOTE: FMD_TYPE_STRING statistics should not be used here.  If they are
312  * required in the future, the FMD_ADM_MODGSTAT service routine must change.
313  */
314 static fmd_statistics_t _fmd_stats = {
315 { "errlog.replayed", FMD_TYPE_UINT64, "total events replayed from errlog" },
316 { "errlog.partials", FMD_TYPE_UINT64, "events partially committed in errlog" },
317 { "errlog.enospc", FMD_TYPE_UINT64, "events not appended to errlog (ENOSPC)" },
318 { "fltlog.enospc", FMD_TYPE_UINT64, "events not appended to fltlog (ENOSPC)" },
319 { "log.enospc", FMD_TYPE_UINT64, "events not appended to other logs (ENOSPC)" },
320 { "dr.gen", FMD_TYPE_UINT64, "dynamic reconfiguration generation" },
321 { "topo.gen", FMD_TYPE_UINT64, "topology snapshot generation" },
322 { "topo.drgen", FMD_TYPE_UINT64, "current topology DR generation number" },
323 };
324 
325 /*
326  * SMBIOS serial numbers can contain characters (particularly ':' and ' ')
327  * that are invalid for the authority and can break FMRI parsing.  We translate
328  * any invalid characters to a safe '-', as well as trimming any leading or
329  * trailing whitespace.  Similarly, '/' can be found in some product names
330  * so we translate that to '-'.
331  */
332 void
333 fmd_cleanup_auth_str(char *buf, const char *begin)
334 {
335 	const char *end, *cp;
336 	char c;
337 	int i;
338 
339 	end = begin + strlen(begin);
340 
341 	while (begin < end && isspace(*begin))
342 		begin++;
343 	while (begin < end && isspace(*(end - 1)))
344 		end--;
345 
346 	if (begin >= end)
347 		return;
348 
349 	cp = begin;
350 	for (i = 0; i < MAXNAMELEN - 1; i++) {
351 		if (cp >= end)
352 			break;
353 		c = *cp;
354 		if (c == ':' || c == '=' || c == '/' || isspace(c) ||
355 		    !isprint(c))
356 			buf[i] = '-';
357 		else
358 			buf[i] = c;
359 		cp++;
360 	}
361 	buf[i] = 0;
362 }
363 
364 void
365 fmd_create(fmd_t *dp, const char *arg0, const char *root, const char *conf)
366 {
367 	fmd_conf_path_t *pap;
368 	char file[PATH_MAX];
369 	const char *name, *psn, *csn;
370 	fmd_stat_t *sp;
371 	int i;
372 
373 	smbios_hdl_t *shp;
374 	smbios_system_t s1;
375 	smbios_info_t s2;
376 	id_t id;
377 
378 	di_prom_handle_t promh = DI_PROM_HANDLE_NIL;
379 	di_node_t rooth = DI_NODE_NIL;
380 	char *bufp;
381 
382 	(void) sysinfo(SI_PLATFORM, _fmd_plat, sizeof (_fmd_plat));
383 	(void) sysinfo(SI_ARCHITECTURE, _fmd_isa, sizeof (_fmd_isa));
384 	(void) uname(&_fmd_uts);
385 
386 	if ((shp = smbios_open(NULL, SMB_VERSION, 0, NULL)) != NULL) {
387 		if ((id = smbios_info_system(shp, &s1)) != SMB_ERR &&
388 		    smbios_info_common(shp, id, &s2) != SMB_ERR)
389 			fmd_cleanup_auth_str(_fmd_prod, s2.smbi_product);
390 
391 		if ((psn = smbios_psn(shp)) != NULL)
392 			fmd_cleanup_auth_str(_fmd_psn, psn);
393 
394 		if ((csn = smbios_csn(shp)) != NULL)
395 			fmd_cleanup_auth_str(_fmd_csn, csn);
396 
397 		smbios_close(shp);
398 	} else if ((rooth = di_init("/", DINFOPROP)) != DI_NODE_NIL &&
399 	    (promh = di_prom_init()) != DI_PROM_HANDLE_NIL) {
400 		if (di_prom_prop_lookup_bytes(promh, rooth, "chassis-sn",
401 		    (unsigned char **)&bufp) != -1) {
402 			fmd_cleanup_auth_str(_fmd_csn, bufp);
403 		}
404 	}
405 
406 	if (promh != DI_PROM_HANDLE_NIL)
407 		di_prom_fini(promh);
408 	if (rooth != DI_NODE_NIL)
409 		di_fini(rooth);
410 
411 	bzero(dp, sizeof (fmd_t));
412 
413 	dp->d_version = _fmd_version;
414 	dp->d_pname = fmd_strbasename(arg0);
415 	dp->d_pid = getpid();
416 
417 	if (pthread_key_create(&dp->d_key, NULL) != 0)
418 		fmd_error(EFMD_EXIT, "failed to create pthread key");
419 
420 	(void) pthread_mutex_init(&dp->d_xprt_lock, NULL);
421 	(void) pthread_mutex_init(&dp->d_err_lock, NULL);
422 	(void) pthread_mutex_init(&dp->d_thr_lock, NULL);
423 	(void) pthread_mutex_init(&dp->d_mod_lock, NULL);
424 	(void) pthread_mutex_init(&dp->d_stats_lock, NULL);
425 	(void) pthread_mutex_init(&dp->d_topo_lock, NULL);
426 	(void) pthread_rwlock_init(&dp->d_log_lock, NULL);
427 	(void) pthread_mutex_init(&dp->d_fmd_lock, NULL);
428 	(void) pthread_cond_init(&dp->d_fmd_cv, NULL);
429 
430 	/*
431 	 * A small number of properties must be set manually before we open
432 	 * the root configuration file.  These include any settings for our
433 	 * memory allocator and path expansion token values, because these
434 	 * values are needed by the routines in fmd_conf.c itself.  After
435 	 * the root configuration file is processed, we reset these properties
436 	 * based upon the latest values from the configuration file.
437 	 */
438 	dp->d_alloc_msecs = 10;
439 	dp->d_alloc_tries = 3;
440 	dp->d_str_buckets = 211;
441 
442 	dp->d_rootdir = root ? root : "";
443 	dp->d_platform = _fmd_plat;
444 	dp->d_machine = _fmd_uts.machine;
445 	dp->d_isaname = _fmd_isa;
446 
447 	dp->d_conf = fmd_conf_open(conf, sizeof (_fmd_conf) /
448 	    sizeof (_fmd_conf[0]), _fmd_conf, FMD_CONF_DEFER);
449 
450 	if (dp->d_conf == NULL) {
451 		fmd_error(EFMD_EXIT,
452 		    "failed to load required configuration properties\n");
453 	}
454 
455 	(void) fmd_conf_getprop(dp->d_conf, "alloc.msecs", &dp->d_alloc_msecs);
456 	(void) fmd_conf_getprop(dp->d_conf, "alloc.tries", &dp->d_alloc_tries);
457 	(void) fmd_conf_getprop(dp->d_conf, "strbuckets", &dp->d_str_buckets);
458 
459 	(void) fmd_conf_getprop(dp->d_conf, "platform", &dp->d_platform);
460 	(void) fmd_conf_getprop(dp->d_conf, "machine", &dp->d_machine);
461 	(void) fmd_conf_getprop(dp->d_conf, "isaname", &dp->d_isaname);
462 
463 	/*
464 	 * Manually specified rootdirs override config files, so only update
465 	 * d_rootdir based on the config files we parsed if no 'root' was set.
466 	 */
467 	if (root == NULL)
468 		(void) fmd_conf_getprop(dp->d_conf, "rootdir", &dp->d_rootdir);
469 	else
470 		(void) fmd_conf_setprop(dp->d_conf, "rootdir", dp->d_rootdir);
471 
472 	/*
473 	 * Once the base conf file properties are loaded, lookup the values
474 	 * of $conf_path and $conf_file and merge in any other conf files.
475 	 */
476 	(void) fmd_conf_getprop(dp->d_conf, "conf_path", &pap);
477 	(void) fmd_conf_getprop(dp->d_conf, "conf_file", &name);
478 
479 	for (i = 0; i < pap->cpa_argc; i++) {
480 		(void) snprintf(file, sizeof (file),
481 		    "%s/%s", pap->cpa_argv[i], name);
482 		if (access(file, F_OK) == 0)
483 			fmd_conf_merge(dp->d_conf, file);
484 	}
485 
486 	/*
487 	 * Update the value of fmd.d_fg based on "fg".  We cache this property
488 	 * because it must be accessed deep within fmd at fmd_verror() time.
489 	 * Update any other properties that must be cached for performance.
490 	 */
491 	(void) fmd_conf_getprop(fmd.d_conf, "fg", &fmd.d_fg);
492 	(void) fmd_conf_getprop(fmd.d_conf, "xprt.ttl", &fmd.d_xprt_ttl);
493 
494 	/*
495 	 * Initialize our custom libnvpair allocator and create an nvlist for
496 	 * authority elements corresponding to this instance of the daemon.
497 	 */
498 	(void) nv_alloc_init(&dp->d_nva, &fmd_nv_alloc_ops);
499 	dp->d_auth = fmd_protocol_authority();
500 
501 	/*
502 	 * The fmd_module_t for the root module must be created manually.  Most
503 	 * of it remains unused and zero, except for the few things we fill in.
504 	 */
505 	dp->d_rmod = fmd_zalloc(sizeof (fmd_module_t), FMD_SLEEP);
506 	dp->d_rmod->mod_name = fmd_strdup(dp->d_pname, FMD_SLEEP);
507 	dp->d_rmod->mod_fmri = fmd_protocol_fmri_module(dp->d_rmod);
508 
509 	fmd_list_append(&dp->d_mod_list, dp->d_rmod);
510 	fmd_module_hold(dp->d_rmod);
511 
512 	(void) pthread_mutex_init(&dp->d_rmod->mod_lock, NULL);
513 	(void) pthread_cond_init(&dp->d_rmod->mod_cv, NULL);
514 	(void) pthread_mutex_init(&dp->d_rmod->mod_stats_lock, NULL);
515 
516 	dp->d_rmod->mod_thread = fmd_thread_xcreate(dp->d_rmod, pthread_self());
517 	dp->d_rmod->mod_stats = fmd_zalloc(sizeof (fmd_modstat_t), FMD_SLEEP);
518 	dp->d_rmod->mod_ustat = fmd_ustat_create();
519 
520 	if (pthread_setspecific(dp->d_key, dp->d_rmod->mod_thread) != 0)
521 		fmd_error(EFMD_EXIT, "failed to attach main thread key");
522 
523 	if ((dp->d_stats = (fmd_statistics_t *)fmd_ustat_insert(
524 	    dp->d_rmod->mod_ustat, FMD_USTAT_NOALLOC, sizeof (_fmd_stats) /
525 	    sizeof (fmd_stat_t), (fmd_stat_t *)&_fmd_stats, NULL)) == NULL)
526 		fmd_error(EFMD_EXIT, "failed to initialize statistics");
527 
528 	(void) pthread_mutex_lock(&dp->d_rmod->mod_lock);
529 	dp->d_rmod->mod_flags |= FMD_MOD_INIT;
530 	(void) pthread_mutex_unlock(&dp->d_rmod->mod_lock);
531 
532 	/*
533 	 * In addition to inserting the _fmd_stats collection of program-wide
534 	 * statistics, we also insert a statistic named after each of our
535 	 * errors and update these counts in fmd_verror() (see fmd_subr.c).
536 	 */
537 	dp->d_errstats = sp = fmd_zalloc(sizeof (fmd_stat_t) *
538 	    (EFMD_END - EFMD_UNKNOWN), FMD_SLEEP);
539 
540 	for (i = 0; i < EFMD_END - EFMD_UNKNOWN; i++, sp++) {
541 		(void) snprintf(sp->fmds_name, sizeof (sp->fmds_name), "err.%s",
542 		    strrchr(fmd_errclass(EFMD_UNKNOWN + i), '.') + 1);
543 		sp->fmds_type = FMD_TYPE_UINT64;
544 	}
545 
546 	(void) fmd_ustat_insert(dp->d_rmod->mod_ustat, FMD_USTAT_NOALLOC,
547 	    EFMD_END - EFMD_UNKNOWN, dp->d_errstats, NULL);
548 }
549 
550 void
551 fmd_destroy(fmd_t *dp)
552 {
553 	fmd_module_t *mp;
554 	fmd_case_t *cp;
555 	int core;
556 
557 	(void) fmd_conf_getprop(fmd.d_conf, "core", &core);
558 
559 	fmd_rpc_fini();
560 
561 	if (dp->d_xprt_ids != NULL)
562 		fmd_xprt_suspend_all();
563 
564 	/*
565 	 * Unload the self-diagnosis module first.  This ensures that it does
566 	 * not get confused as we start unloading other modules, etc.  We must
567 	 * hold the dispq lock as a writer while doing so since it uses d_self.
568 	 */
569 	if (dp->d_self != NULL) {
570 		fmd_module_t *self;
571 
572 		(void) pthread_rwlock_wrlock(&dp->d_disp->dq_lock);
573 		self = dp->d_self;
574 		dp->d_self = NULL;
575 		(void) pthread_rwlock_unlock(&dp->d_disp->dq_lock);
576 
577 		fmd_module_unload(self);
578 		fmd_module_rele(self);
579 	}
580 
581 	/*
582 	 * Unload modules in reverse order *except* for the root module, which
583 	 * is first in the list.  This allows it to keep its thread and trace.
584 	 */
585 	for (mp = fmd_list_prev(&dp->d_mod_list); mp != dp->d_rmod; ) {
586 		fmd_module_unload(mp);
587 		mp = fmd_list_prev(mp);
588 	}
589 
590 	if (dp->d_mod_hash != NULL) {
591 		fmd_modhash_destroy(dp->d_mod_hash);
592 		dp->d_mod_hash = NULL;
593 	}
594 
595 	/*
596 	 * Close both log files now that modules are no longer active.  We must
597 	 * set these pointers to NULL in case any subsequent errors occur.
598 	 */
599 	if (dp->d_errlog != NULL) {
600 		fmd_log_rele(dp->d_errlog);
601 		dp->d_errlog = NULL;
602 	}
603 
604 	if (dp->d_fltlog != NULL) {
605 		fmd_log_rele(dp->d_fltlog);
606 		dp->d_fltlog = NULL;
607 	}
608 
609 	/*
610 	 * Now destroy the resource cache: each ASRU contains a case reference,
611 	 * which may in turn contain a pointer to a referenced owning module.
612 	 */
613 	if (dp->d_asrus != NULL) {
614 		fmd_asru_hash_destroy(dp->d_asrus);
615 		dp->d_asrus = NULL;
616 	}
617 
618 	/*
619 	 * Now that all data structures that refer to modules are torn down,
620 	 * no modules should be remaining on the module list except for d_rmod.
621 	 * If we trip one of these assertions, we're missing a rele somewhere.
622 	 */
623 	ASSERT(fmd_list_prev(&dp->d_mod_list) == dp->d_rmod);
624 	ASSERT(fmd_list_next(&dp->d_mod_list) == dp->d_rmod);
625 
626 	/*
627 	 * Now destroy the root module.  We clear its thread key first so any
628 	 * calls to fmd_trace() inside of the module code will be ignored.
629 	 */
630 	(void) pthread_setspecific(dp->d_key, NULL);
631 	fmd_module_lock(dp->d_rmod);
632 
633 	while ((cp = fmd_list_next(&dp->d_rmod->mod_cases)) != NULL)
634 		fmd_case_discard(cp, B_FALSE);
635 
636 	fmd_module_unlock(dp->d_rmod);
637 	fmd_free(dp->d_rmod->mod_stats, sizeof (fmd_modstat_t));
638 	dp->d_rmod->mod_stats = NULL;
639 
640 	(void) pthread_mutex_lock(&dp->d_rmod->mod_lock);
641 	dp->d_rmod->mod_flags |= FMD_MOD_FINI;
642 	(void) pthread_mutex_unlock(&dp->d_rmod->mod_lock);
643 
644 	fmd_module_rele(dp->d_rmod);
645 	ASSERT(fmd_list_next(&dp->d_mod_list) == NULL);
646 
647 	/*
648 	 * Now destroy the remaining global data structures.  If 'core' was
649 	 * set to true, force a core dump so we can check for memory leaks.
650 	 */
651 	if (dp->d_cases != NULL)
652 		fmd_case_hash_destroy(dp->d_cases);
653 	if (dp->d_disp != NULL)
654 		fmd_dispq_destroy(dp->d_disp);
655 	if (dp->d_timers != NULL)
656 		fmd_timerq_destroy(dp->d_timers);
657 	if (dp->d_schemes != NULL)
658 		fmd_scheme_hash_destroy(dp->d_schemes);
659 	if (dp->d_xprt_ids != NULL)
660 		fmd_idspace_destroy(dp->d_xprt_ids);
661 
662 	if (dp->d_errstats != NULL) {
663 		fmd_free(dp->d_errstats,
664 		    sizeof (fmd_stat_t) * (EFMD_END - EFMD_UNKNOWN));
665 	}
666 
667 	if (dp->d_conf != NULL)
668 		fmd_conf_close(dp->d_conf);
669 
670 	fmd_topo_fini();
671 
672 	nvlist_free(dp->d_auth);
673 	(void) nv_alloc_fini(&dp->d_nva);
674 	dp->d_clockops->fto_fini(dp->d_clockptr);
675 
676 	(void) pthread_key_delete(dp->d_key);
677 	bzero(dp, sizeof (fmd_t));
678 
679 	if (core)
680 		fmd_panic("forcing core dump at user request\n");
681 }
682 
683 /*ARGSUSED*/
684 static void
685 fmd_gc(fmd_t *dp, id_t id, hrtime_t hrt)
686 {
687 	hrtime_t delta;
688 
689 	if (id != 0) {
690 		TRACE((FMD_DBG_MOD, "garbage collect start"));
691 		fmd_modhash_apply(dp->d_mod_hash, fmd_module_gc);
692 		TRACE((FMD_DBG_MOD, "garbage collect end"));
693 
694 		(void) pthread_rwlock_rdlock(&dp->d_log_lock);
695 		fmd_log_update(dp->d_errlog);
696 		(void) pthread_rwlock_unlock(&dp->d_log_lock);
697 	}
698 
699 	(void) fmd_conf_getprop(dp->d_conf, "gc_interval", &delta);
700 	(void) fmd_timerq_install(dp->d_timers, dp->d_rmod->mod_timerids,
701 	    (fmd_timer_f *)fmd_gc, dp, NULL, delta);
702 }
703 
704 /*ARGSUSED*/
705 static void
706 fmd_clear_aged_rsrcs(fmd_t *dp, id_t id, hrtime_t hrt)
707 {
708 	hrtime_t delta;
709 
710 	fmd_asru_clear_aged_rsrcs();
711 	(void) fmd_conf_getprop(dp->d_conf, "rsrc.age", &delta);
712 	(void) fmd_timerq_install(dp->d_timers, dp->d_rmod->mod_timerids,
713 	    (fmd_timer_f *)fmd_clear_aged_rsrcs, dp, NULL, delta/10);
714 }
715 
716 /*
717  * Events are committed to the errlog after cases are checkpointed.  If fmd
718  * crashes before an event is ever associated with a module, this function will
719  * be called to replay it to all subscribers.  If fmd crashes in between the
720  * subscriber checkpointing and committing the event in the error log, the
721  * module will have seen the event and we don't want to replay it.  So we look
722  * for the event in all modules and transition it to the proper state.  If
723  * it is found, we commit it to the error log and do not replay it.  The in-
724  * memory case search used by fmd_module_contains() et al isn't particularly
725  * efficient, but it is faster than doing read i/o's on every case event to
726  * check their status or write i/o's on every event to replay to update states.
727  * We can improve the efficiency of this lookup algorithm later if necessary.
728  */
729 /*ARGSUSED*/
730 static void
731 fmd_err_replay(fmd_log_t *lp, fmd_event_t *ep, fmd_t *dp)
732 {
733 	fmd_module_t *mp;
734 	fmd_stat_t *sp;
735 
736 	(void) pthread_mutex_lock(&dp->d_mod_lock);
737 
738 	for (mp = fmd_list_next(&dp->d_mod_list);
739 	    mp != NULL; mp = fmd_list_next(mp)) {
740 		if (fmd_module_contains(mp, ep)) {
741 			fmd_module_hold(mp);
742 			break;
743 		}
744 	}
745 
746 	(void) pthread_mutex_unlock(&dp->d_mod_lock);
747 
748 	if (mp != NULL) {
749 		fmd_event_commit(ep);
750 		fmd_module_rele(mp);
751 		sp = &dp->d_stats->ds_log_partials;
752 	} else {
753 		fmd_dispq_dispatch(dp->d_disp, ep, FMD_EVENT_DATA(ep));
754 		sp = &dp->d_stats->ds_log_replayed;
755 	}
756 
757 	(void) pthread_mutex_lock(&dp->d_stats_lock);
758 	sp->fmds_value.ui64++;
759 	(void) pthread_mutex_unlock(&dp->d_stats_lock);
760 }
761 
762 void
763 fmd_door_server(void *dip)
764 {
765 	fmd_dprintf(FMD_DBG_XPRT, "door server starting for %p\n", dip);
766 	(void) pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
767 	(void) door_return(NULL, 0, NULL, 0);
768 }
769 
770 /*
771  * Custom door server create callback.  Any fmd services that use doors will
772  * require those threads to have their fmd-specific TSD initialized, etc.
773  */
774 static void
775 fmd_door(door_info_t *dip)
776 {
777 	if (fmd_thread_create(fmd.d_rmod, fmd_door_server, dip) == NULL)
778 		fmd_panic("failed to create server for door %p", (void *)dip);
779 }
780 
781 /*
782  * This signal handler is installed for the client.thrsig signal to be used to
783  * force an auxiliary thread to wake up from a system call and return EINTR in
784  * response to a module's use of fmd_thr_signal().  We also trace the event.
785  */
786 static void
787 fmd_signal(int sig)
788 {
789 	TRACE((FMD_DBG_MOD, "module thread received sig #%d", sig));
790 }
791 
792 void
793 fmd_run(fmd_t *dp, int pfd)
794 {
795 	char *nodc_key[] = { FMD_FLT_NODC, NULL };
796 	char *repair_key[] = { FM_LIST_REPAIRED_CLASS, NULL };
797 	char *resolve_key[] = { FM_LIST_RESOLVED_CLASS, NULL };
798 	char *update_key[] = { FM_LIST_UPDATED_CLASS, NULL };
799 	char code_str[128];
800 	struct sigaction act;
801 
802 	int status = FMD_EXIT_SUCCESS;
803 	const char *name;
804 	fmd_conf_path_t *pap;
805 	fmd_event_t *e;
806 	int dbout;
807 
808 	/*
809 	 * Cache all the current debug property settings in d_fmd_debug,
810 	 * d_fmd_dbout, d_hdl_debug, and d_hdl_dbout.  If a given debug mask
811 	 * is non-zero and the corresponding dbout mask is zero, set dbout
812 	 * to a sensible default value based on whether we have daemonized.
813 	 */
814 	(void) fmd_conf_getprop(dp->d_conf, "dbout", &dbout);
815 
816 	if (dp->d_fmd_debug != 0 && dbout == 0)
817 		dp->d_fmd_dbout = dp->d_fg? FMD_DBOUT_STDERR : FMD_DBOUT_SYSLOG;
818 	else
819 		dp->d_fmd_dbout = dbout;
820 
821 	(void) fmd_conf_getprop(dp->d_conf, "client.debug", &dp->d_hdl_debug);
822 	(void) fmd_conf_getprop(dp->d_conf, "client.dbout", &dbout);
823 
824 	if (dp->d_hdl_debug != 0 && dbout == 0)
825 		dp->d_hdl_dbout = dp->d_fg? FMD_DBOUT_STDERR : FMD_DBOUT_SYSLOG;
826 	else
827 		dp->d_hdl_dbout = dbout;
828 
829 	/*
830 	 * Initialize remaining major program data structures such as the
831 	 * clock, dispatch queues, log files, module hash collections, etc.
832 	 * This work is done here rather than in fmd_create() to permit the -o
833 	 * command-line option to modify properties after fmd_create() is done.
834 	 */
835 	name = dp->d_rootdir != NULL &&
836 	    *dp->d_rootdir != '\0' ? dp->d_rootdir : NULL;
837 
838 	/*
839 	 * The clock must be initialized before fmd_topo_init() because
840 	 * fmd_topo_update() calls fmd_time_gethrtime().
841 	 */
842 	dp->d_clockptr = dp->d_clockops->fto_init();
843 
844 	fmd_topo_init();
845 
846 	dp->d_xprt_ids = fmd_idspace_create("xprt_ids", 1, INT_MAX);
847 	fmd_xprt_suspend_all();
848 
849 	(void) door_server_create(fmd_door);
850 
851 	dp->d_rmod->mod_timerids = fmd_idspace_create(dp->d_pname, 1, 16);
852 	dp->d_timers = fmd_timerq_create();
853 	dp->d_disp = fmd_dispq_create();
854 	dp->d_cases = fmd_case_hash_create();
855 
856 	/*
857 	 * The root module's mod_queue is created with limit zero, making it
858 	 * act like /dev/null; anything inserted here is simply ignored.
859 	 */
860 	dp->d_rmod->mod_queue = fmd_eventq_create(dp->d_rmod,
861 	    &dp->d_rmod->mod_stats->ms_evqstat, &dp->d_rmod->mod_stats_lock, 0);
862 
863 	/*
864 	 * Once our subsystems that use signals have been set up, install the
865 	 * signal handler for the fmd_thr_signal() API.  Verify that the signal
866 	 * being used for this purpose doesn't conflict with something else.
867 	 */
868 	(void) fmd_conf_getprop(dp->d_conf, "client.thrsig", &dp->d_thr_sig);
869 
870 	if (sigaction(dp->d_thr_sig, NULL, &act) != 0) {
871 		fmd_error(EFMD_EXIT, "invalid signal selected for "
872 		    "client.thrsig property: %d\n", dp->d_thr_sig);
873 	}
874 
875 	if (act.sa_handler != SIG_IGN && act.sa_handler != SIG_DFL) {
876 		fmd_error(EFMD_EXIT, "signal selected for client.thrsig "
877 		    "property is already in use: %d\n", dp->d_thr_sig);
878 	}
879 
880 	act.sa_handler = fmd_signal;
881 	act.sa_flags = 0;
882 
883 	(void) sigemptyset(&act.sa_mask);
884 	(void) sigaction(dp->d_thr_sig, &act, NULL);
885 
886 	(void) fmd_conf_getprop(dp->d_conf, "schemedir", &name);
887 	dp->d_schemes = fmd_scheme_hash_create(dp->d_rootdir, name);
888 
889 	(void) fmd_conf_getprop(dp->d_conf, "log.rsrc", &name);
890 	dp->d_asrus = fmd_asru_hash_create(dp->d_rootdir, name);
891 
892 	(void) fmd_conf_getprop(dp->d_conf, "log.error", &name);
893 	dp->d_errlog = fmd_log_open(dp->d_rootdir, name, FMD_LOG_ERROR);
894 
895 	(void) fmd_conf_getprop(dp->d_conf, "log.fault", &name);
896 	dp->d_fltlog = fmd_log_open(dp->d_rootdir, name, FMD_LOG_FAULT);
897 
898 	if (dp->d_asrus == NULL || dp->d_errlog == NULL || dp->d_fltlog == NULL)
899 		fmd_error(EFMD_EXIT, "failed to initialize log files\n");
900 
901 	/*
902 	 * Before loading modules, create an empty control event which will act
903 	 * as a global barrier for module event processing.  Each module we
904 	 * load successfully will insert it at their head of their event queue,
905 	 * and then pause inside of fmd_ctl_rele() after dequeuing the event.
906 	 * This module barrier is required for two reasons:
907 	 *
908 	 * (a) During module loading, the restoration of case checkpoints may
909 	 *    result in a list.* event being recreated for which the intended
910 	 *    subscriber has not yet loaded depending on the load order. Such
911 	 *    events could then result in spurious "no subscriber" errors.
912 	 *
913 	 * (b) During errlog replay, a sequence of errors from a long time ago
914 	 *    may be replayed, and the module may attempt to install relative
915 	 *    timers associated with one or more of these events.  If errlog
916 	 *    replay were "racing" with active module threads, an event E1
917 	 *    that resulted in a relative timer T at time E1 + N nsec could
918 	 *    fire prior to an event E2 being enqueued, even if the relative
919 	 *    time ordering was E1 < E2 < E1 + N, causing mis-diagnosis.
920 	 */
921 	dp->d_mod_event = e = fmd_event_create(FMD_EVT_CTL,
922 	    FMD_HRT_NOW, NULL, fmd_ctl_init(NULL));
923 
924 	fmd_event_hold(e);
925 
926 	/*
927 	 * Once all data structures are initialized, we load all of our modules
928 	 * in order according to class in order to load up any subscriptions.
929 	 * Once built-in modules are loaded, we detach from our waiting parent.
930 	 */
931 	dp->d_mod_hash = fmd_modhash_create();
932 
933 	if (fmd_builtin_loadall(dp->d_mod_hash) != 0 && !dp->d_fg)
934 		fmd_error(EFMD_EXIT, "failed to initialize fault manager\n");
935 
936 	(void) fmd_conf_getprop(dp->d_conf, "self.name", &name);
937 	dp->d_self = fmd_modhash_lookup(dp->d_mod_hash, name);
938 
939 	if (dp->d_self != NULL) {
940 		if (fmd_module_dc_key2code(dp->d_self, nodc_key, code_str,
941 		    sizeof (code_str)) == 0)
942 			(void) fmd_conf_setprop(dp->d_conf, "nodiagcode",
943 			    code_str);
944 		if (fmd_module_dc_key2code(dp->d_self, repair_key, code_str,
945 		    sizeof (code_str)) == 0)
946 			(void) fmd_conf_setprop(dp->d_conf, "repaircode",
947 			    code_str);
948 		if (fmd_module_dc_key2code(dp->d_self, resolve_key, code_str,
949 		    sizeof (code_str)) == 0)
950 			(void) fmd_conf_setprop(dp->d_conf, "resolvecode",
951 			    code_str);
952 		if (fmd_module_dc_key2code(dp->d_self, update_key, code_str,
953 		    sizeof (code_str)) == 0)
954 			(void) fmd_conf_setprop(dp->d_conf, "updatecode",
955 			    code_str);
956 	}
957 
958 	fmd_rpc_init();
959 	dp->d_running = 1; /* we are now officially an active fmd */
960 
961 	/*
962 	 * Now that we're running, if a pipe fd was specified, write an exit
963 	 * status to it to indicate that our parent process can safely detach.
964 	 * Then proceed to loading the remaining non-built-in modules.
965 	 */
966 	if (pfd >= 0)
967 		(void) write(pfd, &status, sizeof (status));
968 
969 	/*
970 	 * Before loading all modules, repopulate the ASRU cache from its
971 	 * persistent repository on disk.  Then during module loading, the
972 	 * restoration of checkpoint files will reparent any active cases.
973 	 */
974 	fmd_asru_hash_refresh(dp->d_asrus);
975 
976 	(void) fmd_conf_getprop(dp->d_conf, "plugin.path", &pap);
977 	fmd_modhash_loadall(dp->d_mod_hash, pap, &fmd_rtld_ops, ".so");
978 
979 	(void) fmd_conf_getprop(dp->d_conf, "agent.path", &pap);
980 	fmd_modhash_loadall(dp->d_mod_hash, pap, &fmd_proc_ops, NULL);
981 
982 	/*
983 	 * With all modules loaded, replay fault events from the ASRU cache for
984 	 * any ASRUs that must be retired, replay error events from the errlog
985 	 * that did not finish processing the last time ran, and then release
986 	 * the global module barrier by executing a final rele on d_mod_event.
987 	 */
988 	fmd_asru_hash_replay(dp->d_asrus);
989 
990 	(void) pthread_rwlock_rdlock(&dp->d_log_lock);
991 	fmd_log_replay(dp->d_errlog, (fmd_log_f *)fmd_err_replay, dp);
992 	fmd_log_update(dp->d_errlog);
993 	(void) pthread_rwlock_unlock(&dp->d_log_lock);
994 
995 	dp->d_mod_event = NULL;
996 	fmd_event_rele(e);
997 
998 	/*
999 	 * Now replay list.updated and list.repaired events
1000 	 */
1001 	fmd_case_repair_replay();
1002 
1003 	/*
1004 	 * Finally, awaken any threads associated with receiving events from
1005 	 * open transports and tell them to proceed with fmd_xprt_recv().
1006 	 */
1007 	fmd_xprt_resume_all();
1008 	fmd_gc(dp, 0, 0);
1009 	fmd_clear_aged_rsrcs(dp, 0, 0);
1010 
1011 	(void) pthread_mutex_lock(&dp->d_fmd_lock);
1012 	dp->d_booted = 1;
1013 	(void) pthread_cond_broadcast(&dp->d_fmd_cv);
1014 	(void) pthread_mutex_unlock(&dp->d_fmd_lock);
1015 }
1016 
1017 void
1018 fmd_help(fmd_t *dp)
1019 {
1020 	const fmd_conf_mode_t *cmp;
1021 
1022 	(void) printf("Usage: %s -o debug=mode[,mode]\n", dp->d_pname);
1023 
1024 	for (cmp = _fmd_debug_modes; cmp->cm_name != NULL; cmp++)
1025 		(void) printf("\t%s\t%s\n", cmp->cm_name, cmp->cm_desc);
1026 }
1027