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
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
23b823d4c7Sdstaff  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate /*
307c478bd9Sstevel@tonic-gate  * NOTES: To be expanded.
317c478bd9Sstevel@tonic-gate  *
327c478bd9Sstevel@tonic-gate  * The SMF inetd.
337c478bd9Sstevel@tonic-gate  *
347c478bd9Sstevel@tonic-gate  * Below are some high level notes of the operation of the SMF inetd. The
357c478bd9Sstevel@tonic-gate  * notes don't go into any real detail, and the viewer of this file is
367c478bd9Sstevel@tonic-gate  * encouraged to look at the code and its associated comments to better
377c478bd9Sstevel@tonic-gate  * understand inetd's operation. This saves the potential for the code
387c478bd9Sstevel@tonic-gate  * and these notes diverging over time.
397c478bd9Sstevel@tonic-gate  *
407c478bd9Sstevel@tonic-gate  * Inetd's major work is done from the context of event_loop(). Within this
417c478bd9Sstevel@tonic-gate  * loop, inetd polls for events arriving from a number of different file
427c478bd9Sstevel@tonic-gate  * descriptors, representing the following event types, and initiates
437c478bd9Sstevel@tonic-gate  * any necessary event processing:
447c478bd9Sstevel@tonic-gate  * - incoming network connections/datagrams.
457c478bd9Sstevel@tonic-gate  * - notification of terminated processes (discovered via contract events).
467c478bd9Sstevel@tonic-gate  * - instance specific events originating from the SMF master restarter.
477c478bd9Sstevel@tonic-gate  * - stop/refresh requests from the inetd method processes (coming in on a
487c478bd9Sstevel@tonic-gate  *   Unix Domain socket).
497c478bd9Sstevel@tonic-gate  * There's also a timeout set for the poll, which is set to the nearest
507c478bd9Sstevel@tonic-gate  * scheduled timer in a timer queue that inetd uses to perform delayed
517c478bd9Sstevel@tonic-gate  * processing, such as bind retries.
527c478bd9Sstevel@tonic-gate  * The SIGHUP and SIGINT signals can also interrupt the poll, and will
537c478bd9Sstevel@tonic-gate  * result in inetd being refreshed or stopped respectively, as was the
547c478bd9Sstevel@tonic-gate  * behavior with the old inetd.
557c478bd9Sstevel@tonic-gate  *
567c478bd9Sstevel@tonic-gate  * Inetd implements a state machine for each instance. The states within the
577c478bd9Sstevel@tonic-gate  * machine are: offline, online, disabled, maintenance, uninitialized and
587c478bd9Sstevel@tonic-gate  * specializations of the offline state for when an instance exceeds one of
597c478bd9Sstevel@tonic-gate  * its DOS limits. The state of an instance can be changed as a
607c478bd9Sstevel@tonic-gate  * result/side-effect of one of the above events occurring, or inetd being
617c478bd9Sstevel@tonic-gate  * started up. The ongoing state of an instance is stored in the SMF
627c478bd9Sstevel@tonic-gate  * repository, as required of SMF restarters. This enables an administrator
637c478bd9Sstevel@tonic-gate  * to view the state of each instance, and, if inetd was to terminate
647c478bd9Sstevel@tonic-gate  * unexpectedly, it could use the stored state to re-commence where it left off.
657c478bd9Sstevel@tonic-gate  *
667c478bd9Sstevel@tonic-gate  * Within the state machine a number of methods are run (if provided) as part
677c478bd9Sstevel@tonic-gate  * of a state transition to aid/ effect a change in an instance's state. The
687c478bd9Sstevel@tonic-gate  * supported methods are: offline, online, disable, refresh and start. The
697c478bd9Sstevel@tonic-gate  * latter of these is the equivalent of the server program and its arguments
707c478bd9Sstevel@tonic-gate  * in the old inetd.
717c478bd9Sstevel@tonic-gate  *
727c478bd9Sstevel@tonic-gate  * Events from the SMF master restarter come in on a number of threads
737c478bd9Sstevel@tonic-gate  * created in the registration routine of librestart, the delegated restarter
747c478bd9Sstevel@tonic-gate  * library. These threads call into the restart_event_proxy() function
757c478bd9Sstevel@tonic-gate  * when an event arrives. To serialize the processing of instances, these events
767c478bd9Sstevel@tonic-gate  * are then written down a pipe to the process's main thread, which listens
777c478bd9Sstevel@tonic-gate  * for these events via a poll call, with the file descriptor of the other
787c478bd9Sstevel@tonic-gate  * end of the pipe in its read set, and processes the event appropriately.
797c478bd9Sstevel@tonic-gate  * When the event has been  processed (which may be delayed if the instance
807c478bd9Sstevel@tonic-gate  * for which the event is for is in the process of executing one of its methods
817c478bd9Sstevel@tonic-gate  * as part of a state transition) it writes an acknowledgement back down the
827c478bd9Sstevel@tonic-gate  * pipe the event was received on. The thread in restart_event_proxy() that
837c478bd9Sstevel@tonic-gate  * wrote the event will read the acknowledgement it was blocked upon, and will
847c478bd9Sstevel@tonic-gate  * then be able to return to its caller, thus implicitly acknowledging the
857c478bd9Sstevel@tonic-gate  * event, and allowing another event to be written down the pipe for the main
867c478bd9Sstevel@tonic-gate  * thread to process.
877c478bd9Sstevel@tonic-gate  */
887c478bd9Sstevel@tonic-gate 
897c478bd9Sstevel@tonic-gate 
907c478bd9Sstevel@tonic-gate #include <netdb.h>
917c478bd9Sstevel@tonic-gate #include <stdio.h>
927c478bd9Sstevel@tonic-gate #include <stdlib.h>
937c478bd9Sstevel@tonic-gate #include <strings.h>
947c478bd9Sstevel@tonic-gate #include <unistd.h>
957c478bd9Sstevel@tonic-gate #include <assert.h>
967c478bd9Sstevel@tonic-gate #include <sys/types.h>
977c478bd9Sstevel@tonic-gate #include <sys/socket.h>
987c478bd9Sstevel@tonic-gate #include <netinet/in.h>
997c478bd9Sstevel@tonic-gate #include <fcntl.h>
1007c478bd9Sstevel@tonic-gate #include <signal.h>
1017c478bd9Sstevel@tonic-gate #include <errno.h>
1027c478bd9Sstevel@tonic-gate #include <locale.h>
1037c478bd9Sstevel@tonic-gate #include <syslog.h>
1047c478bd9Sstevel@tonic-gate #include <libintl.h>
1057c478bd9Sstevel@tonic-gate #include <librestart.h>
1067c478bd9Sstevel@tonic-gate #include <pthread.h>
1077c478bd9Sstevel@tonic-gate #include <sys/stat.h>
1087c478bd9Sstevel@tonic-gate #include <time.h>
1097c478bd9Sstevel@tonic-gate #include <limits.h>
1107c478bd9Sstevel@tonic-gate #include <libgen.h>
1117c478bd9Sstevel@tonic-gate #include <tcpd.h>
1127c478bd9Sstevel@tonic-gate #include <libscf.h>
1137c478bd9Sstevel@tonic-gate #include <libuutil.h>
1147c478bd9Sstevel@tonic-gate #include <stddef.h>
1157c478bd9Sstevel@tonic-gate #include <bsm/adt_event.h>
1167c478bd9Sstevel@tonic-gate #include "inetd_impl.h"
1177c478bd9Sstevel@tonic-gate 
1187c478bd9Sstevel@tonic-gate /* path to inetd's binary */
1197c478bd9Sstevel@tonic-gate #define	INETD_PATH	"/usr/lib/inet/inetd"
1207c478bd9Sstevel@tonic-gate 
1217c478bd9Sstevel@tonic-gate /*
1227c478bd9Sstevel@tonic-gate  * inetd's default configuration file paths. /etc/inetd/inetd.conf is set
1237c478bd9Sstevel@tonic-gate  * be be the primary file, so it is checked before /etc/inetd.conf.
1247c478bd9Sstevel@tonic-gate  */
1257c478bd9Sstevel@tonic-gate #define	PRIMARY_DEFAULT_CONF_FILE	"/etc/inet/inetd.conf"
1267c478bd9Sstevel@tonic-gate #define	SECONDARY_DEFAULT_CONF_FILE	"/etc/inetd.conf"
1277c478bd9Sstevel@tonic-gate 
1287c478bd9Sstevel@tonic-gate /* Arguments passed to this binary to request which method to execute. */
1297c478bd9Sstevel@tonic-gate #define	START_METHOD_ARG	"start"
1307c478bd9Sstevel@tonic-gate #define	STOP_METHOD_ARG		"stop"
1317c478bd9Sstevel@tonic-gate #define	REFRESH_METHOD_ARG	"refresh"
1327c478bd9Sstevel@tonic-gate 
1337c478bd9Sstevel@tonic-gate /* connection backlog for unix domain socket */
1347c478bd9Sstevel@tonic-gate #define	UDS_BACKLOG	2
1357c478bd9Sstevel@tonic-gate 
1367c478bd9Sstevel@tonic-gate /* number of retries to recv() a request on the UDS socket before giving up */
1377c478bd9Sstevel@tonic-gate #define	UDS_RECV_RETRIES	10
1387c478bd9Sstevel@tonic-gate 
1397c478bd9Sstevel@tonic-gate /* enumeration of the different ends of a pipe */
1407c478bd9Sstevel@tonic-gate enum pipe_end {
1417c478bd9Sstevel@tonic-gate 	PE_CONSUMER,
1427c478bd9Sstevel@tonic-gate 	PE_PRODUCER
1437c478bd9Sstevel@tonic-gate };
1447c478bd9Sstevel@tonic-gate 
1457c478bd9Sstevel@tonic-gate typedef struct {
1467c478bd9Sstevel@tonic-gate 	internal_inst_state_t		istate;
1477c478bd9Sstevel@tonic-gate 	const char			*name;
1487c478bd9Sstevel@tonic-gate 	restarter_instance_state_t	smf_state;
1497c478bd9Sstevel@tonic-gate 	instance_method_t		method_running;
1507c478bd9Sstevel@tonic-gate } state_info_t;
1517c478bd9Sstevel@tonic-gate 
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate /*
1547c478bd9Sstevel@tonic-gate  * Collection of information for each state.
1557c478bd9Sstevel@tonic-gate  * NOTE:  This table is indexed into using the internal_inst_state_t
1567c478bd9Sstevel@tonic-gate  * enumeration, so the ordering needs to be kept in synch.
1577c478bd9Sstevel@tonic-gate  */
1587c478bd9Sstevel@tonic-gate static state_info_t states[] = {
1597c478bd9Sstevel@tonic-gate 	{IIS_UNINITIALIZED, "uninitialized", RESTARTER_STATE_UNINIT,
1607c478bd9Sstevel@tonic-gate 	    IM_NONE},
1617c478bd9Sstevel@tonic-gate 	{IIS_ONLINE, "online", RESTARTER_STATE_ONLINE, IM_START},
1627c478bd9Sstevel@tonic-gate 	{IIS_IN_ONLINE_METHOD, "online_method", RESTARTER_STATE_OFFLINE,
1637c478bd9Sstevel@tonic-gate 	    IM_ONLINE},
1647c478bd9Sstevel@tonic-gate 	{IIS_OFFLINE, "offline", RESTARTER_STATE_OFFLINE, IM_NONE},
1657c478bd9Sstevel@tonic-gate 	{IIS_IN_OFFLINE_METHOD, "offline_method", RESTARTER_STATE_OFFLINE,
1667c478bd9Sstevel@tonic-gate 	    IM_OFFLINE},
1677c478bd9Sstevel@tonic-gate 	{IIS_DISABLED, "disabled", RESTARTER_STATE_DISABLED, IM_NONE},
1687c478bd9Sstevel@tonic-gate 	{IIS_IN_DISABLE_METHOD, "disabled_method", RESTARTER_STATE_OFFLINE,
1697c478bd9Sstevel@tonic-gate 	    IM_DISABLE},
1707c478bd9Sstevel@tonic-gate 	{IIS_IN_REFRESH_METHOD, "refresh_method", RESTARTER_STATE_ONLINE,
1717c478bd9Sstevel@tonic-gate 	    IM_REFRESH},
1727c478bd9Sstevel@tonic-gate 	{IIS_MAINTENANCE, "maintenance", RESTARTER_STATE_MAINT, IM_NONE},
1737c478bd9Sstevel@tonic-gate 	{IIS_OFFLINE_CONRATE, "cr_offline", RESTARTER_STATE_OFFLINE, IM_NONE},
1747c478bd9Sstevel@tonic-gate 	{IIS_OFFLINE_BIND, "bind_offline", RESTARTER_STATE_OFFLINE, IM_NONE},
1757c478bd9Sstevel@tonic-gate 	{IIS_OFFLINE_COPIES, "copies_offline", RESTARTER_STATE_OFFLINE,
1767c478bd9Sstevel@tonic-gate 	    IM_NONE},
1777c478bd9Sstevel@tonic-gate 	{IIS_DEGRADED, "degraded", RESTARTER_STATE_DEGRADED, IM_NONE},
1787c478bd9Sstevel@tonic-gate 	{IIS_NONE, "none", RESTARTER_STATE_NONE, IM_NONE}
1797c478bd9Sstevel@tonic-gate };
1807c478bd9Sstevel@tonic-gate 
1817c478bd9Sstevel@tonic-gate /*
1827c478bd9Sstevel@tonic-gate  * Pipe used to send events from the threads created by restarter_bind_handle()
1837c478bd9Sstevel@tonic-gate  * to the main thread of control.
1847c478bd9Sstevel@tonic-gate  */
1857c478bd9Sstevel@tonic-gate static int			rst_event_pipe[] = {-1, -1};
1867c478bd9Sstevel@tonic-gate /*
1877c478bd9Sstevel@tonic-gate  * Used to protect the critical section of code in restarter_event_proxy() that
1887c478bd9Sstevel@tonic-gate  * involves writing an event down the event pipe and reading an acknowledgement.
1897c478bd9Sstevel@tonic-gate  */
1907c478bd9Sstevel@tonic-gate static pthread_mutex_t		rst_event_pipe_mtx = PTHREAD_MUTEX_INITIALIZER;
1917c478bd9Sstevel@tonic-gate 
1927c478bd9Sstevel@tonic-gate /* handle used in communication with the master restarter */
1937c478bd9Sstevel@tonic-gate static restarter_event_handle_t *rst_event_handle = NULL;
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate /* set to indicate a refresh of inetd is requested */
1967c478bd9Sstevel@tonic-gate static boolean_t		refresh_inetd_requested = B_FALSE;
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate /* set by the SIGTERM handler to flag we got a SIGTERM */
1997c478bd9Sstevel@tonic-gate static boolean_t		got_sigterm = B_FALSE;
2007c478bd9Sstevel@tonic-gate 
2017c478bd9Sstevel@tonic-gate /*
2027c478bd9Sstevel@tonic-gate  * Timer queue used to store timers for delayed event processing, such as
2037c478bd9Sstevel@tonic-gate  * bind retries.
2047c478bd9Sstevel@tonic-gate  */
2057c478bd9Sstevel@tonic-gate iu_tq_t				*timer_queue = NULL;
2067c478bd9Sstevel@tonic-gate 
2077c478bd9Sstevel@tonic-gate /*
2087c478bd9Sstevel@tonic-gate  * fd of Unix Domain socket used to communicate stop and refresh requests
2097c478bd9Sstevel@tonic-gate  * to the inetd start method process.
2107c478bd9Sstevel@tonic-gate  */
2117c478bd9Sstevel@tonic-gate static int			uds_fd = -1;
2127c478bd9Sstevel@tonic-gate 
2137c478bd9Sstevel@tonic-gate /*
2147c478bd9Sstevel@tonic-gate  * List of inetd's currently managed instances; each containing its state,
2157c478bd9Sstevel@tonic-gate  * and in certain states its configuration.
2167c478bd9Sstevel@tonic-gate  */
2177c478bd9Sstevel@tonic-gate static uu_list_pool_t		*instance_pool = NULL;
2187c478bd9Sstevel@tonic-gate uu_list_t			*instance_list = NULL;
2197c478bd9Sstevel@tonic-gate 
2207c478bd9Sstevel@tonic-gate /* set to indicate we're being stopped */
2217c478bd9Sstevel@tonic-gate boolean_t			inetd_stopping = B_FALSE;
2227c478bd9Sstevel@tonic-gate 
2237c478bd9Sstevel@tonic-gate /* TCP wrappers syslog globals. Consumed by libwrap. */
2247c478bd9Sstevel@tonic-gate int				allow_severity = LOG_INFO;
2257c478bd9Sstevel@tonic-gate int				deny_severity = LOG_WARNING;
2267c478bd9Sstevel@tonic-gate 
2277c478bd9Sstevel@tonic-gate /* path of the configuration file being monitored by check_conf_file() */
2287c478bd9Sstevel@tonic-gate static char			*conf_file = NULL;
2297c478bd9Sstevel@tonic-gate 
2307c478bd9Sstevel@tonic-gate /* Auditing session handle */
2317c478bd9Sstevel@tonic-gate static adt_session_data_t	*audit_handle;
2327c478bd9Sstevel@tonic-gate 
2337c478bd9Sstevel@tonic-gate static void uds_fini(void);
2347c478bd9Sstevel@tonic-gate static int uds_init(void);
2357c478bd9Sstevel@tonic-gate static int run_method(instance_t *, instance_method_t, const proto_info_t *);
2367c478bd9Sstevel@tonic-gate static void create_bound_fds(instance_t *);
2377c478bd9Sstevel@tonic-gate static void destroy_bound_fds(instance_t *);
2387c478bd9Sstevel@tonic-gate static void destroy_instance(instance_t *);
2397c478bd9Sstevel@tonic-gate static void inetd_stop(void);
240b823d4c7Sdstaff static void
241b823d4c7Sdstaff exec_method(instance_t *instance, instance_method_t method, method_info_t *mi,
242b823d4c7Sdstaff     struct method_context *mthd_ctxt, const proto_info_t *pi) __NORETURN;
2437c478bd9Sstevel@tonic-gate 
2447c478bd9Sstevel@tonic-gate /*
2457c478bd9Sstevel@tonic-gate  * The following two functions are callbacks that libumem uses to determine
2467c478bd9Sstevel@tonic-gate  * inetd's desired debugging/logging levels. The interface they consume is
2477c478bd9Sstevel@tonic-gate  * exported by FMA and is consolidation private. The comments in the two
2487c478bd9Sstevel@tonic-gate  * functions give the environment variable that will effectively be set to
2497c478bd9Sstevel@tonic-gate  * their returned value, and thus whose behavior for this value, described in
2507c478bd9Sstevel@tonic-gate  * umem_debug(3MALLOC), will be followed.
2517c478bd9Sstevel@tonic-gate  */
2527c478bd9Sstevel@tonic-gate 
2537c478bd9Sstevel@tonic-gate const char *
2547c478bd9Sstevel@tonic-gate _umem_debug_init(void)
2557c478bd9Sstevel@tonic-gate {
2567c478bd9Sstevel@tonic-gate 	return ("default,verbose");	/* UMEM_DEBUG setting */
2577c478bd9Sstevel@tonic-gate }
2587c478bd9Sstevel@tonic-gate 
2597c478bd9Sstevel@tonic-gate const char *
2607c478bd9Sstevel@tonic-gate _umem_logging_init(void)
2617c478bd9Sstevel@tonic-gate {
2627c478bd9Sstevel@tonic-gate 	return ("fail,contents");	/* UMEM_LOGGING setting */
2637c478bd9Sstevel@tonic-gate }
2647c478bd9Sstevel@tonic-gate 
2657c478bd9Sstevel@tonic-gate static void
2667c478bd9Sstevel@tonic-gate log_invalid_cfg(const char *fmri)
2677c478bd9Sstevel@tonic-gate {
2687c478bd9Sstevel@tonic-gate 	error_msg(gettext(
2697c478bd9Sstevel@tonic-gate 	    "Invalid configuration for instance %s, placing in maintenance"),
2707c478bd9Sstevel@tonic-gate 	    fmri);
2717c478bd9Sstevel@tonic-gate }
2727c478bd9Sstevel@tonic-gate 
2737c478bd9Sstevel@tonic-gate /*
2747c478bd9Sstevel@tonic-gate  * Returns B_TRUE if the instance is in a suitable state for inetd to stop.
2757c478bd9Sstevel@tonic-gate  */
2767c478bd9Sstevel@tonic-gate static boolean_t
2777c478bd9Sstevel@tonic-gate instance_stopped(const instance_t *inst)
2787c478bd9Sstevel@tonic-gate {
2797c478bd9Sstevel@tonic-gate 	return ((inst->cur_istate == IIS_OFFLINE) ||
2807c478bd9Sstevel@tonic-gate 	    (inst->cur_istate == IIS_MAINTENANCE) ||
2817c478bd9Sstevel@tonic-gate 	    (inst->cur_istate == IIS_DISABLED) ||
2827c478bd9Sstevel@tonic-gate 	    (inst->cur_istate == IIS_UNINITIALIZED));
2837c478bd9Sstevel@tonic-gate }
2847c478bd9Sstevel@tonic-gate 
2857c478bd9Sstevel@tonic-gate /*
2867c478bd9Sstevel@tonic-gate  * Updates the current and next repository states of instance 'inst'. If
2877c478bd9Sstevel@tonic-gate  * any errors occur an error message is output.
2887c478bd9Sstevel@tonic-gate  */
2897c478bd9Sstevel@tonic-gate static void
2907c478bd9Sstevel@tonic-gate update_instance_states(instance_t *inst, internal_inst_state_t new_cur_state,
2917c478bd9Sstevel@tonic-gate     internal_inst_state_t new_next_state, restarter_error_t err)
2927c478bd9Sstevel@tonic-gate {
2937c478bd9Sstevel@tonic-gate 	internal_inst_state_t	old_cur = inst->cur_istate;
2947c478bd9Sstevel@tonic-gate 	internal_inst_state_t	old_next = inst->next_istate;
2957c478bd9Sstevel@tonic-gate 	scf_error_t		sret;
2967c478bd9Sstevel@tonic-gate 	int			ret;
2977c478bd9Sstevel@tonic-gate 
2987c478bd9Sstevel@tonic-gate 	debug_msg("Entering update_instance_states: oldcur: %s, newcur: %s "
2997c478bd9Sstevel@tonic-gate 	    "oldnext: %s, newnext: %s", states[old_cur].name,
3007c478bd9Sstevel@tonic-gate 	    states[new_cur_state].name, states[old_next].name,
3017c478bd9Sstevel@tonic-gate 	    states[new_next_state].name);
3027c478bd9Sstevel@tonic-gate 
3037c478bd9Sstevel@tonic-gate 
3047c478bd9Sstevel@tonic-gate 	/* update the repository/cached internal state */
3057c478bd9Sstevel@tonic-gate 	inst->cur_istate = new_cur_state;
3067c478bd9Sstevel@tonic-gate 	inst->next_istate = new_next_state;
3077c478bd9Sstevel@tonic-gate 	(void) set_single_rep_val(inst->cur_istate_rep,
3087c478bd9Sstevel@tonic-gate 	    (int64_t)new_cur_state);
3097c478bd9Sstevel@tonic-gate 	(void) set_single_rep_val(inst->next_istate_rep,
3107c478bd9Sstevel@tonic-gate 	    (int64_t)new_next_state);
3117c478bd9Sstevel@tonic-gate 
3127c478bd9Sstevel@tonic-gate 	if (((sret = store_rep_vals(inst->cur_istate_rep, inst->fmri,
3137c478bd9Sstevel@tonic-gate 	    PR_NAME_CUR_INT_STATE)) != 0) ||
3147c478bd9Sstevel@tonic-gate 	    ((sret = store_rep_vals(inst->next_istate_rep, inst->fmri,
3157c478bd9Sstevel@tonic-gate 	    PR_NAME_NEXT_INT_STATE)) != 0))
3167c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to update state of instance %s in "
3177c478bd9Sstevel@tonic-gate 		    "repository: %s"), inst->fmri, scf_strerror(sret));
3187c478bd9Sstevel@tonic-gate 
3197c478bd9Sstevel@tonic-gate 	/* update the repository SMF state */
3207c478bd9Sstevel@tonic-gate 	if ((ret = restarter_set_states(rst_event_handle, inst->fmri,
3217c478bd9Sstevel@tonic-gate 	    states[old_cur].smf_state, states[new_cur_state].smf_state,
3227c478bd9Sstevel@tonic-gate 	    states[old_next].smf_state, states[new_next_state].smf_state,
3237c478bd9Sstevel@tonic-gate 	    err, 0)) != 0)
3247c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to update state of instance %s in "
3257c478bd9Sstevel@tonic-gate 		    "repository: %s"), inst->fmri, strerror(ret));
3267c478bd9Sstevel@tonic-gate 
3277c478bd9Sstevel@tonic-gate }
3287c478bd9Sstevel@tonic-gate 
3297c478bd9Sstevel@tonic-gate void
3307c478bd9Sstevel@tonic-gate update_state(instance_t *inst, internal_inst_state_t new_cur,
3317c478bd9Sstevel@tonic-gate     restarter_error_t err)
3327c478bd9Sstevel@tonic-gate {
3337c478bd9Sstevel@tonic-gate 	update_instance_states(inst, new_cur, IIS_NONE, err);
3347c478bd9Sstevel@tonic-gate }
3357c478bd9Sstevel@tonic-gate 
3367c478bd9Sstevel@tonic-gate /*
3377c478bd9Sstevel@tonic-gate  * Sends a refresh event to the inetd start method process and returns
3387c478bd9Sstevel@tonic-gate  * SMF_EXIT_OK if it managed to send it. If it fails to send the request for
3397c478bd9Sstevel@tonic-gate  * some reason it returns SMF_EXIT_ERR_OTHER.
3407c478bd9Sstevel@tonic-gate  */
3417c478bd9Sstevel@tonic-gate static int
3427c478bd9Sstevel@tonic-gate refresh_method(void)
3437c478bd9Sstevel@tonic-gate {
3447c478bd9Sstevel@tonic-gate 	uds_request_t   req = UR_REFRESH_INETD;
3457c478bd9Sstevel@tonic-gate 	int		fd;
3467c478bd9Sstevel@tonic-gate 
3477c478bd9Sstevel@tonic-gate 	debug_msg("Entering refresh_method");
3487c478bd9Sstevel@tonic-gate 
3497c478bd9Sstevel@tonic-gate 	if ((fd = connect_to_inetd()) < 0) {
3507c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to connect to inetd: %s"),
3517c478bd9Sstevel@tonic-gate 		    strerror(errno));
3527c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_OTHER);
3537c478bd9Sstevel@tonic-gate 	}
3547c478bd9Sstevel@tonic-gate 
3557c478bd9Sstevel@tonic-gate 	/* write the request and return success */
3567c478bd9Sstevel@tonic-gate 	if (safe_write(fd, &req, sizeof (req)) == -1) {
3577c478bd9Sstevel@tonic-gate 		error_msg(
3587c478bd9Sstevel@tonic-gate 		    gettext("Failed to send refresh request to inetd: %s"),
3597c478bd9Sstevel@tonic-gate 		    strerror(errno));
3607c478bd9Sstevel@tonic-gate 		(void) close(fd);
3617c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_OTHER);
3627c478bd9Sstevel@tonic-gate 	}
3637c478bd9Sstevel@tonic-gate 
3647c478bd9Sstevel@tonic-gate 	(void) close(fd);
3657c478bd9Sstevel@tonic-gate 
3667c478bd9Sstevel@tonic-gate 	return (SMF_EXIT_OK);
3677c478bd9Sstevel@tonic-gate }
3687c478bd9Sstevel@tonic-gate 
3697c478bd9Sstevel@tonic-gate /*
3707c478bd9Sstevel@tonic-gate  * Sends a stop event to the inetd start method process and wait till it goes
3717c478bd9Sstevel@tonic-gate  * away. If inetd is determined to have stopped SMF_EXIT_OK is returned, else
3727c478bd9Sstevel@tonic-gate  * SMF_EXIT_ERR_OTHER is returned.
3737c478bd9Sstevel@tonic-gate  */
3747c478bd9Sstevel@tonic-gate static int
3757c478bd9Sstevel@tonic-gate stop_method(void)
3767c478bd9Sstevel@tonic-gate {
3777c478bd9Sstevel@tonic-gate 	uds_request_t   req = UR_STOP_INETD;
3787c478bd9Sstevel@tonic-gate 	int		fd;
3797c478bd9Sstevel@tonic-gate 	char		c;
3807c478bd9Sstevel@tonic-gate 	ssize_t		ret;
3817c478bd9Sstevel@tonic-gate 
3827c478bd9Sstevel@tonic-gate 	debug_msg("Entering stop_method");
3837c478bd9Sstevel@tonic-gate 
3847c478bd9Sstevel@tonic-gate 	if ((fd = connect_to_inetd()) == -1) {
3857c478bd9Sstevel@tonic-gate 		debug_msg(gettext("Failed to connect to inetd: %s"),
3867c478bd9Sstevel@tonic-gate 		    strerror(errno));
3877c478bd9Sstevel@tonic-gate 		/*
3887c478bd9Sstevel@tonic-gate 		 * Assume connect_to_inetd() failed because inetd was already
3897c478bd9Sstevel@tonic-gate 		 * stopped, and return success.
3907c478bd9Sstevel@tonic-gate 		 */
3917c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_OK);
3927c478bd9Sstevel@tonic-gate 	}
3937c478bd9Sstevel@tonic-gate 
3947c478bd9Sstevel@tonic-gate 	/*
3957c478bd9Sstevel@tonic-gate 	 * This is safe to do since we're fired off in a separate process
3967c478bd9Sstevel@tonic-gate 	 * than inetd and in the case we get wedged, the stop method timeout
3977c478bd9Sstevel@tonic-gate 	 * will occur and we'd be killed by our restarter.
3987c478bd9Sstevel@tonic-gate 	 */
3997c478bd9Sstevel@tonic-gate 	enable_blocking(fd);
4007c478bd9Sstevel@tonic-gate 
4017c478bd9Sstevel@tonic-gate 	/* write the stop request to inetd and wait till it goes away */
4027c478bd9Sstevel@tonic-gate 	if (safe_write(fd, &req, sizeof (req)) != 0) {
4037c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to send stop request to inetd"));
4047c478bd9Sstevel@tonic-gate 		(void) close(fd);
4057c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_OTHER);
4067c478bd9Sstevel@tonic-gate 	}
4077c478bd9Sstevel@tonic-gate 
4087c478bd9Sstevel@tonic-gate 	/* wait until remote end of socket is closed */
4097c478bd9Sstevel@tonic-gate 	while (((ret = recv(fd, &c, sizeof (c), 0)) != 0) && (errno == EINTR))
4107c478bd9Sstevel@tonic-gate 		;
4117c478bd9Sstevel@tonic-gate 
4127c478bd9Sstevel@tonic-gate 	(void) close(fd);
4137c478bd9Sstevel@tonic-gate 
4147c478bd9Sstevel@tonic-gate 	if (ret != 0) {
4157c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to determine whether inetd stopped"));
4167c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_OTHER);
4177c478bd9Sstevel@tonic-gate 	}
4187c478bd9Sstevel@tonic-gate 
4197c478bd9Sstevel@tonic-gate 	return (SMF_EXIT_OK);
4207c478bd9Sstevel@tonic-gate }
4217c478bd9Sstevel@tonic-gate 
4227c478bd9Sstevel@tonic-gate 
4237c478bd9Sstevel@tonic-gate /*
4247c478bd9Sstevel@tonic-gate  * This function is called to handle restarter events coming in from the
4257c478bd9Sstevel@tonic-gate  * master restarter. It is registered with the master restarter via
4267c478bd9Sstevel@tonic-gate  * restarter_bind_handle() and simply passes a pointer to the event down
4277c478bd9Sstevel@tonic-gate  * the event pipe, which will be discovered by the poll in the event loop
4287c478bd9Sstevel@tonic-gate  * and processed there. It waits for an acknowledgement to be written back down
4297c478bd9Sstevel@tonic-gate  * the pipe before returning.
4307c478bd9Sstevel@tonic-gate  * Writing a pointer to the function's 'event' parameter down the pipe will
4317c478bd9Sstevel@tonic-gate  * be safe, as the thread in restarter_event_proxy() doesn't return until
4327c478bd9Sstevel@tonic-gate  * the main thread has finished its processing of the passed event, thus
4337c478bd9Sstevel@tonic-gate  * the referenced event will remain around until the function returns.
4347c478bd9Sstevel@tonic-gate  * To impose the limit of only one event being in the pipe and processed
4357c478bd9Sstevel@tonic-gate  * at once, a lock is taken on entry to this function and returned on exit.
4367c478bd9Sstevel@tonic-gate  * Always returns 0.
4377c478bd9Sstevel@tonic-gate  */
4387c478bd9Sstevel@tonic-gate static int
4397c478bd9Sstevel@tonic-gate restarter_event_proxy(restarter_event_t *event)
4407c478bd9Sstevel@tonic-gate {
4417c478bd9Sstevel@tonic-gate 	restarter_event_type_t  ev_type;
4427c478bd9Sstevel@tonic-gate 	boolean_t		processed;
4437c478bd9Sstevel@tonic-gate 
4447c478bd9Sstevel@tonic-gate 	debug_msg("Entering restarter_event_proxy");
4457c478bd9Sstevel@tonic-gate 	ev_type = restarter_event_get_type(event);
4467c478bd9Sstevel@tonic-gate 	debug_msg("event: %x, event type: %d", event, ev_type);
4477c478bd9Sstevel@tonic-gate 
4487c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_lock(&rst_event_pipe_mtx);
4497c478bd9Sstevel@tonic-gate 
4507c478bd9Sstevel@tonic-gate 	/* write the event to the main worker thread down the pipe */
4517c478bd9Sstevel@tonic-gate 	if (safe_write(rst_event_pipe[PE_PRODUCER], &event,
4527c478bd9Sstevel@tonic-gate 	    sizeof (event)) != 0)
4537c478bd9Sstevel@tonic-gate 		goto pipe_error;
4547c478bd9Sstevel@tonic-gate 
4557c478bd9Sstevel@tonic-gate 	/*
4567c478bd9Sstevel@tonic-gate 	 * Wait for an acknowledgement that the event has been processed from
4577c478bd9Sstevel@tonic-gate 	 * the same pipe. In the case that inetd is stopping, any thread in
4587c478bd9Sstevel@tonic-gate 	 * this function will simply block on this read until inetd eventually
4597c478bd9Sstevel@tonic-gate 	 * exits. This will result in this function not returning success to
4607c478bd9Sstevel@tonic-gate 	 * its caller, and the event that was being processed when the
4617c478bd9Sstevel@tonic-gate 	 * function exited will be re-sent when inetd is next started.
4627c478bd9Sstevel@tonic-gate 	 */
4637c478bd9Sstevel@tonic-gate 	if (safe_read(rst_event_pipe[PE_PRODUCER], &processed,
4647c478bd9Sstevel@tonic-gate 	    sizeof (processed)) != 0)
4657c478bd9Sstevel@tonic-gate 		goto pipe_error;
4667c478bd9Sstevel@tonic-gate 
4677c478bd9Sstevel@tonic-gate 	(void) pthread_mutex_unlock(&rst_event_pipe_mtx);
4687c478bd9Sstevel@tonic-gate 
4697c478bd9Sstevel@tonic-gate 	return (processed ? 0 : EAGAIN);
4707c478bd9Sstevel@tonic-gate 
4717c478bd9Sstevel@tonic-gate pipe_error:
4727c478bd9Sstevel@tonic-gate 	/*
4737c478bd9Sstevel@tonic-gate 	 * Something's seriously wrong with the event pipe. Notify the
4747c478bd9Sstevel@tonic-gate 	 * worker thread by closing this end of the event pipe and pause till
4757c478bd9Sstevel@tonic-gate 	 * inetd exits.
4767c478bd9Sstevel@tonic-gate 	 */
4777c478bd9Sstevel@tonic-gate 	error_msg(gettext("Can't process restarter events: %s"),
4787c478bd9Sstevel@tonic-gate 	    strerror(errno));
4797c478bd9Sstevel@tonic-gate 	(void) close(rst_event_pipe[PE_PRODUCER]);
4807c478bd9Sstevel@tonic-gate 	for (;;)
4817c478bd9Sstevel@tonic-gate 		(void) pause();
4827c478bd9Sstevel@tonic-gate 
4837c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
4847c478bd9Sstevel@tonic-gate }
4857c478bd9Sstevel@tonic-gate 
4867c478bd9Sstevel@tonic-gate /*
4877c478bd9Sstevel@tonic-gate  * Let restarter_event_proxy() know we're finished with the event it's blocked
4887c478bd9Sstevel@tonic-gate  * upon. The 'processed' argument denotes whether we successfully processed the
4897c478bd9Sstevel@tonic-gate  * event.
4907c478bd9Sstevel@tonic-gate  */
4917c478bd9Sstevel@tonic-gate static void
4927c478bd9Sstevel@tonic-gate ack_restarter_event(boolean_t processed)
4937c478bd9Sstevel@tonic-gate {
4947c478bd9Sstevel@tonic-gate 	debug_msg("Entering ack_restarter_event");
4957c478bd9Sstevel@tonic-gate 
4967c478bd9Sstevel@tonic-gate 	/*
4977c478bd9Sstevel@tonic-gate 	 * If safe_write returns -1 something's seriously wrong with the event
4987c478bd9Sstevel@tonic-gate 	 * pipe, so start the shutdown proceedings.
4997c478bd9Sstevel@tonic-gate 	 */
5007c478bd9Sstevel@tonic-gate 	if (safe_write(rst_event_pipe[PE_CONSUMER], &processed,
5017c478bd9Sstevel@tonic-gate 	    sizeof (processed)) == -1)
5027c478bd9Sstevel@tonic-gate 		inetd_stop();
5037c478bd9Sstevel@tonic-gate }
5047c478bd9Sstevel@tonic-gate 
5057c478bd9Sstevel@tonic-gate /*
5067c478bd9Sstevel@tonic-gate  * Switch the syslog identification string to 'ident'.
5077c478bd9Sstevel@tonic-gate  */
5087c478bd9Sstevel@tonic-gate static void
5097c478bd9Sstevel@tonic-gate change_syslog_ident(const char *ident)
5107c478bd9Sstevel@tonic-gate {
5117c478bd9Sstevel@tonic-gate 	debug_msg("Entering change_syslog_ident: ident: %s", ident);
5127c478bd9Sstevel@tonic-gate 
5137c478bd9Sstevel@tonic-gate 	closelog();
5147c478bd9Sstevel@tonic-gate 	openlog(ident, LOG_PID|LOG_CONS, LOG_DAEMON);
5157c478bd9Sstevel@tonic-gate }
5167c478bd9Sstevel@tonic-gate 
5177c478bd9Sstevel@tonic-gate /*
5187c478bd9Sstevel@tonic-gate  * Perform TCP wrappers checks on this instance. Due to the fact that the
5197c478bd9Sstevel@tonic-gate  * current wrappers code used in Solaris is taken untouched from the open
5207c478bd9Sstevel@tonic-gate  * source version, we're stuck with using the daemon name for the checks, as
5217c478bd9Sstevel@tonic-gate  * opposed to making use of instance FMRIs. Sigh.
5227c478bd9Sstevel@tonic-gate  * Returns B_TRUE if the check passed, else B_FALSE.
5237c478bd9Sstevel@tonic-gate  */
5247c478bd9Sstevel@tonic-gate static boolean_t
5257c478bd9Sstevel@tonic-gate tcp_wrappers_ok(instance_t *instance)
5267c478bd9Sstevel@tonic-gate {
5277c478bd9Sstevel@tonic-gate 	boolean_t		rval = B_TRUE;
5287c478bd9Sstevel@tonic-gate 	char			*daemon_name;
5297c478bd9Sstevel@tonic-gate 	basic_cfg_t		*cfg = instance->config->basic;
5307c478bd9Sstevel@tonic-gate 	struct request_info	req;
5317c478bd9Sstevel@tonic-gate 
5327c478bd9Sstevel@tonic-gate 	debug_msg("Entering tcp_wrappers_ok, instance: %s", instance->fmri);
5337c478bd9Sstevel@tonic-gate 
5347c478bd9Sstevel@tonic-gate 	/*
5357c478bd9Sstevel@tonic-gate 	 * Wrap the service using libwrap functions. The code below implements
5367c478bd9Sstevel@tonic-gate 	 * the functionality of tcpd. This is done only for stream,nowait
5377c478bd9Sstevel@tonic-gate 	 * services, following the convention of other vendors.  udp/dgram and
5387c478bd9Sstevel@tonic-gate 	 * stream/wait can NOT be wrapped with this libwrap, so be wary of
5397c478bd9Sstevel@tonic-gate 	 * changing the test below.
5407c478bd9Sstevel@tonic-gate 	 */
5417c478bd9Sstevel@tonic-gate 	if (cfg->do_tcp_wrappers && !cfg->iswait && !cfg->istlx) {
5427c478bd9Sstevel@tonic-gate 
5437c478bd9Sstevel@tonic-gate 		daemon_name = instance->config->methods[
5447c478bd9Sstevel@tonic-gate 		    IM_START]->exec_args_we.we_wordv[0];
5457c478bd9Sstevel@tonic-gate 		if (*daemon_name == '/')
5467c478bd9Sstevel@tonic-gate 			daemon_name = strrchr(daemon_name, '/') + 1;
5477c478bd9Sstevel@tonic-gate 
5487c478bd9Sstevel@tonic-gate 		/*
5497c478bd9Sstevel@tonic-gate 		 * Change the syslog message identity to the name of the
5507c478bd9Sstevel@tonic-gate 		 * daemon being wrapped, as opposed to "inetd".
5517c478bd9Sstevel@tonic-gate 		 */
5527c478bd9Sstevel@tonic-gate 		change_syslog_ident(daemon_name);
5537c478bd9Sstevel@tonic-gate 
5547c478bd9Sstevel@tonic-gate 		(void) request_init(&req, RQ_DAEMON, daemon_name, RQ_FILE,
5557c478bd9Sstevel@tonic-gate 		    instance->conn_fd, NULL);
5567c478bd9Sstevel@tonic-gate 		fromhost(&req);
5577c478bd9Sstevel@tonic-gate 
5587c478bd9Sstevel@tonic-gate 		if (strcasecmp(eval_hostname(req.client), paranoid) == 0) {
5597c478bd9Sstevel@tonic-gate 			syslog(deny_severity,
5607c478bd9Sstevel@tonic-gate 			    "refused connect from %s (name/address mismatch)",
5617c478bd9Sstevel@tonic-gate 			    eval_client(&req));
5627c478bd9Sstevel@tonic-gate 			if (req.sink != NULL)
5637c478bd9Sstevel@tonic-gate 				req.sink(instance->conn_fd);
5647c478bd9Sstevel@tonic-gate 			rval = B_FALSE;
5657c478bd9Sstevel@tonic-gate 		} else if (!hosts_access(&req)) {
5667c478bd9Sstevel@tonic-gate 			syslog(deny_severity,
5677c478bd9Sstevel@tonic-gate 			    "refused connect from %s (access denied)",
5687c478bd9Sstevel@tonic-gate 			    eval_client(&req));
5697c478bd9Sstevel@tonic-gate 			if (req.sink != NULL)
5707c478bd9Sstevel@tonic-gate 				req.sink(instance->conn_fd);
5717c478bd9Sstevel@tonic-gate 			rval = B_FALSE;
5727c478bd9Sstevel@tonic-gate 		} else {
5737c478bd9Sstevel@tonic-gate 			syslog(allow_severity, "connect from %s",
5747c478bd9Sstevel@tonic-gate 			    eval_client(&req));
5757c478bd9Sstevel@tonic-gate 		}
5767c478bd9Sstevel@tonic-gate 
5777c478bd9Sstevel@tonic-gate 		/* Revert syslog identity back to "inetd". */
5787c478bd9Sstevel@tonic-gate 		change_syslog_ident(SYSLOG_IDENT);
5797c478bd9Sstevel@tonic-gate 	}
5807c478bd9Sstevel@tonic-gate 	return (rval);
5817c478bd9Sstevel@tonic-gate }
5827c478bd9Sstevel@tonic-gate 
5837c478bd9Sstevel@tonic-gate /*
5847c478bd9Sstevel@tonic-gate  * Handler registered with the timer queue code to remove an instance from
5857c478bd9Sstevel@tonic-gate  * the connection rate offline state when it has been there for its allotted
5867c478bd9Sstevel@tonic-gate  * time.
5877c478bd9Sstevel@tonic-gate  */
5887c478bd9Sstevel@tonic-gate /* ARGSUSED */
5897c478bd9Sstevel@tonic-gate static void
5907c478bd9Sstevel@tonic-gate conn_rate_online(iu_tq_t *tq, void *arg)
5917c478bd9Sstevel@tonic-gate {
5927c478bd9Sstevel@tonic-gate 	instance_t *instance = arg;
5937c478bd9Sstevel@tonic-gate 
5947c478bd9Sstevel@tonic-gate 	debug_msg("Entering conn_rate_online, instance: %s",
5957c478bd9Sstevel@tonic-gate 	    instance->fmri);
5967c478bd9Sstevel@tonic-gate 
5977c478bd9Sstevel@tonic-gate 	assert(instance->cur_istate == IIS_OFFLINE_CONRATE);
5987c478bd9Sstevel@tonic-gate 	instance->timer_id = -1;
5997c478bd9Sstevel@tonic-gate 	update_state(instance, IIS_OFFLINE, RERR_RESTART);
6007c478bd9Sstevel@tonic-gate 	process_offline_inst(instance);
6017c478bd9Sstevel@tonic-gate }
6027c478bd9Sstevel@tonic-gate 
6037c478bd9Sstevel@tonic-gate /*
6047c478bd9Sstevel@tonic-gate  * Check whether this instance in the offline state is in transition to
6057c478bd9Sstevel@tonic-gate  * another state and do the work to continue this transition.
6067c478bd9Sstevel@tonic-gate  */
6077c478bd9Sstevel@tonic-gate void
6087c478bd9Sstevel@tonic-gate process_offline_inst(instance_t *inst)
6097c478bd9Sstevel@tonic-gate {
6107c478bd9Sstevel@tonic-gate 	debug_msg("Entering process_offline_inst");
6117c478bd9Sstevel@tonic-gate 
6127c478bd9Sstevel@tonic-gate 	if (inst->disable_req) {
6137c478bd9Sstevel@tonic-gate 		inst->disable_req = B_FALSE;
6147c478bd9Sstevel@tonic-gate 		(void) run_method(inst, IM_DISABLE, NULL);
6157c478bd9Sstevel@tonic-gate 	} else if (inst->maintenance_req) {
6167c478bd9Sstevel@tonic-gate 		inst->maintenance_req = B_FALSE;
6177c478bd9Sstevel@tonic-gate 		update_state(inst, IIS_MAINTENANCE, RERR_RESTART);
6187c478bd9Sstevel@tonic-gate 	/*
6197c478bd9Sstevel@tonic-gate 	 * If inetd is in the process of stopping, we don't want to enter
6207c478bd9Sstevel@tonic-gate 	 * any states but offline, disabled and maintenance.
6217c478bd9Sstevel@tonic-gate 	 */
6227c478bd9Sstevel@tonic-gate 	} else if (!inetd_stopping) {
6237c478bd9Sstevel@tonic-gate 		if (inst->conn_rate_exceeded) {
6247c478bd9Sstevel@tonic-gate 			basic_cfg_t *cfg = inst->config->basic;
6257c478bd9Sstevel@tonic-gate 
6267c478bd9Sstevel@tonic-gate 			inst->conn_rate_exceeded = B_FALSE;
6277c478bd9Sstevel@tonic-gate 			update_state(inst, IIS_OFFLINE_CONRATE, RERR_RESTART);
6287c478bd9Sstevel@tonic-gate 			/*
6297c478bd9Sstevel@tonic-gate 			 * Schedule a timer to bring the instance out of the
6307c478bd9Sstevel@tonic-gate 			 * connection rate offline state.
6317c478bd9Sstevel@tonic-gate 			 */
6327c478bd9Sstevel@tonic-gate 			inst->timer_id = iu_schedule_timer(timer_queue,
6337c478bd9Sstevel@tonic-gate 			    cfg->conn_rate_offline, conn_rate_online,
6347c478bd9Sstevel@tonic-gate 			    inst);
6357c478bd9Sstevel@tonic-gate 			if (inst->timer_id == -1) {
6367c478bd9Sstevel@tonic-gate 				error_msg(gettext("%s unable to set timer, "
6377c478bd9Sstevel@tonic-gate 				    "won't be brought on line after %d "
6387c478bd9Sstevel@tonic-gate 				    "seconds."), inst->fmri,
6397c478bd9Sstevel@tonic-gate 				    cfg->conn_rate_offline);
6407c478bd9Sstevel@tonic-gate 			}
6417c478bd9Sstevel@tonic-gate 
6427c478bd9Sstevel@tonic-gate 		} else if (copies_limit_exceeded(inst)) {
6437c478bd9Sstevel@tonic-gate 			update_state(inst, IIS_OFFLINE_COPIES, RERR_RESTART);
6447c478bd9Sstevel@tonic-gate 		}
6457c478bd9Sstevel@tonic-gate 	}
6467c478bd9Sstevel@tonic-gate }
6477c478bd9Sstevel@tonic-gate 
6487c478bd9Sstevel@tonic-gate /*
6497c478bd9Sstevel@tonic-gate  * Create a socket bound to the instance's configured address. If the
6507c478bd9Sstevel@tonic-gate  * bind fails, returns -1, else the fd of the bound socket.
6517c478bd9Sstevel@tonic-gate  */
6527c478bd9Sstevel@tonic-gate static int
6537c478bd9Sstevel@tonic-gate create_bound_socket(const char *fmri, socket_info_t *sock_info)
6547c478bd9Sstevel@tonic-gate {
6557c478bd9Sstevel@tonic-gate 	int		fd;
6567c478bd9Sstevel@tonic-gate 	int		on = 1;
6577c478bd9Sstevel@tonic-gate 	rpc_info_t	*rpc = sock_info->pr_info.ri;
6587c478bd9Sstevel@tonic-gate 	const char	*proto = sock_info->pr_info.proto;
6597c478bd9Sstevel@tonic-gate 
6607c478bd9Sstevel@tonic-gate 	debug_msg("Entering create_bound_socket");
6617c478bd9Sstevel@tonic-gate 
6627c478bd9Sstevel@tonic-gate 	fd = socket(sock_info->local_addr.ss_family, sock_info->type,
6637c478bd9Sstevel@tonic-gate 	    sock_info->protocol);
6647c478bd9Sstevel@tonic-gate 	if (fd < 0) {
6657c478bd9Sstevel@tonic-gate 		error_msg(gettext(
6667c478bd9Sstevel@tonic-gate 		    "Socket creation failure for instance %s, proto %s: %s"),
6677c478bd9Sstevel@tonic-gate 		    fmri, proto, strerror(errno));
6687c478bd9Sstevel@tonic-gate 		return (-1);
6697c478bd9Sstevel@tonic-gate 	}
6707c478bd9Sstevel@tonic-gate 
6717c478bd9Sstevel@tonic-gate 	if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) == -1) {
6727c478bd9Sstevel@tonic-gate 		error_msg(gettext("setsockopt SO_REUSEADDR failed for service "
6737c478bd9Sstevel@tonic-gate 		    "instance %s, proto %s: %s"), fmri, proto, strerror(errno));
6747c478bd9Sstevel@tonic-gate 		(void) close(fd);
6757c478bd9Sstevel@tonic-gate 		return (-1);
6767c478bd9Sstevel@tonic-gate 	}
6777c478bd9Sstevel@tonic-gate 	if (sock_info->pr_info.v6only) {
6787c478bd9Sstevel@tonic-gate 		/* restrict socket to IPv6 communications only */
6797c478bd9Sstevel@tonic-gate 		if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &on,
6807c478bd9Sstevel@tonic-gate 		    sizeof (on)) == -1) {
6817c478bd9Sstevel@tonic-gate 			error_msg(gettext("setsockopt IPV6_V6ONLY failed for "
6827c478bd9Sstevel@tonic-gate 			    "service instance %s, proto %s: %s"), fmri, proto,
6837c478bd9Sstevel@tonic-gate 			    strerror(errno));
6847c478bd9Sstevel@tonic-gate 			(void) close(fd);
6857c478bd9Sstevel@tonic-gate 			return (-1);
6867c478bd9Sstevel@tonic-gate 		}
6877c478bd9Sstevel@tonic-gate 	}
6887c478bd9Sstevel@tonic-gate 
6897c478bd9Sstevel@tonic-gate 	if (rpc != NULL)
6907c478bd9Sstevel@tonic-gate 		SS_SETPORT(sock_info->local_addr, 0);
6917c478bd9Sstevel@tonic-gate 
6927c478bd9Sstevel@tonic-gate 	if (bind(fd, (struct sockaddr *)&(sock_info->local_addr),
6937c478bd9Sstevel@tonic-gate 	    SS_ADDRLEN(sock_info->local_addr)) < 0) {
6947c478bd9Sstevel@tonic-gate 		error_msg(gettext(
6957c478bd9Sstevel@tonic-gate 		    "Failed to bind to the port of service instance %s, "
6967c478bd9Sstevel@tonic-gate 		    "proto %s: %s"), fmri, proto, strerror(errno));
6977c478bd9Sstevel@tonic-gate 		(void) close(fd);
6987c478bd9Sstevel@tonic-gate 		return (-1);
6997c478bd9Sstevel@tonic-gate 	}
7007c478bd9Sstevel@tonic-gate 
7017c478bd9Sstevel@tonic-gate 	/*
7027c478bd9Sstevel@tonic-gate 	 * Retrieve and store the address bound to for RPC services.
7037c478bd9Sstevel@tonic-gate 	 */
7047c478bd9Sstevel@tonic-gate 	if (rpc != NULL) {
7057c478bd9Sstevel@tonic-gate 		struct sockaddr_storage	ss;
7067c478bd9Sstevel@tonic-gate 		int			ss_size = sizeof (ss);
7077c478bd9Sstevel@tonic-gate 
7087c478bd9Sstevel@tonic-gate 		if (getsockname(fd, (struct sockaddr *)&ss, &ss_size) < 0) {
7097c478bd9Sstevel@tonic-gate 			error_msg(gettext("Failed getsockname for instance %s, "
7107c478bd9Sstevel@tonic-gate 			    "proto %s: %s"), fmri, proto, strerror(errno));
7117c478bd9Sstevel@tonic-gate 			(void) close(fd);
7127c478bd9Sstevel@tonic-gate 			return (-1);
7137c478bd9Sstevel@tonic-gate 		}
7147c478bd9Sstevel@tonic-gate 		(void) memcpy(rpc->netbuf.buf, &ss,
7157c478bd9Sstevel@tonic-gate 		    sizeof (struct sockaddr_storage));
7167c478bd9Sstevel@tonic-gate 		rpc->netbuf.len = SS_ADDRLEN(ss);
7177c478bd9Sstevel@tonic-gate 		rpc->netbuf.maxlen = SS_ADDRLEN(ss);
7187c478bd9Sstevel@tonic-gate 	}
7197c478bd9Sstevel@tonic-gate 
7207c478bd9Sstevel@tonic-gate 	if (sock_info->type == SOCK_STREAM)
7217c478bd9Sstevel@tonic-gate 		(void) listen(fd, CONNECTION_BACKLOG);
7227c478bd9Sstevel@tonic-gate 
7237c478bd9Sstevel@tonic-gate 	return (fd);
7247c478bd9Sstevel@tonic-gate }
7257c478bd9Sstevel@tonic-gate 
7267c478bd9Sstevel@tonic-gate /*
7277c478bd9Sstevel@tonic-gate  * Handler registered with the timer queue code to retry the creation
7287c478bd9Sstevel@tonic-gate  * of a bound fd.
7297c478bd9Sstevel@tonic-gate  */
7307c478bd9Sstevel@tonic-gate /* ARGSUSED */
7317c478bd9Sstevel@tonic-gate static void
7327c478bd9Sstevel@tonic-gate retry_bind(iu_tq_t *tq, void *arg)
7337c478bd9Sstevel@tonic-gate {
7347c478bd9Sstevel@tonic-gate 	instance_t *instance = arg;
7357c478bd9Sstevel@tonic-gate 
7367c478bd9Sstevel@tonic-gate 	debug_msg("Entering retry_bind, instance: %s", instance->fmri);
7377c478bd9Sstevel@tonic-gate 
7387c478bd9Sstevel@tonic-gate 	switch (instance->cur_istate) {
7397c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_BIND:
7407c478bd9Sstevel@tonic-gate 	case IIS_ONLINE:
7417c478bd9Sstevel@tonic-gate 	case IIS_DEGRADED:
7427c478bd9Sstevel@tonic-gate 	case IIS_IN_ONLINE_METHOD:
7437c478bd9Sstevel@tonic-gate 	case IIS_IN_REFRESH_METHOD:
7447c478bd9Sstevel@tonic-gate 		break;
7457c478bd9Sstevel@tonic-gate 	default:
7467c478bd9Sstevel@tonic-gate #ifndef NDEBUG
7477c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, "%s:%d: Unknown instance state %d.\n",
7487c478bd9Sstevel@tonic-gate 		    __FILE__, __LINE__, instance->cur_istate);
7497c478bd9Sstevel@tonic-gate #endif
7507c478bd9Sstevel@tonic-gate 		abort();
7517c478bd9Sstevel@tonic-gate 	}
7527c478bd9Sstevel@tonic-gate 
7537c478bd9Sstevel@tonic-gate 	instance->bind_timer_id = -1;
7547c478bd9Sstevel@tonic-gate 	create_bound_fds(instance);
7557c478bd9Sstevel@tonic-gate }
7567c478bd9Sstevel@tonic-gate 
7577c478bd9Sstevel@tonic-gate /*
7587c478bd9Sstevel@tonic-gate  * For each of the fds for the given instance that are bound, if 'listen' is
7597c478bd9Sstevel@tonic-gate  * set add them to the poll set, else remove them from it. If any additions
7607c478bd9Sstevel@tonic-gate  * fail, returns -1, else 0 on success.
7617c478bd9Sstevel@tonic-gate  */
7627c478bd9Sstevel@tonic-gate int
7637c478bd9Sstevel@tonic-gate poll_bound_fds(instance_t *instance, boolean_t listen)
7647c478bd9Sstevel@tonic-gate {
7657c478bd9Sstevel@tonic-gate 	basic_cfg_t	*cfg = instance->config->basic;
7667c478bd9Sstevel@tonic-gate 	proto_info_t	*pi;
7677c478bd9Sstevel@tonic-gate 	int		ret = 0;
7687c478bd9Sstevel@tonic-gate 
7697c478bd9Sstevel@tonic-gate 	debug_msg("Entering poll_bound_fds: instance: %s, on: %d",
7707c478bd9Sstevel@tonic-gate 	    instance->fmri, listen);
7717c478bd9Sstevel@tonic-gate 
7727c478bd9Sstevel@tonic-gate 	for (pi = uu_list_first(cfg->proto_list); pi != NULL;
7737c478bd9Sstevel@tonic-gate 	    pi = uu_list_next(cfg->proto_list, pi)) {
7747c478bd9Sstevel@tonic-gate 		if (pi->listen_fd != -1) {	/* fd bound */
7757c478bd9Sstevel@tonic-gate 			if (!listen) {
7767c478bd9Sstevel@tonic-gate 				clear_pollfd(pi->listen_fd);
7777c478bd9Sstevel@tonic-gate 			} else if (set_pollfd(pi->listen_fd, POLLIN) == -1) {
7787c478bd9Sstevel@tonic-gate 				ret = -1;
7797c478bd9Sstevel@tonic-gate 			}
7807c478bd9Sstevel@tonic-gate 		}
7817c478bd9Sstevel@tonic-gate 	}
7827c478bd9Sstevel@tonic-gate 
7837c478bd9Sstevel@tonic-gate 	return (ret);
7847c478bd9Sstevel@tonic-gate }
7857c478bd9Sstevel@tonic-gate 
7867c478bd9Sstevel@tonic-gate /*
7877c478bd9Sstevel@tonic-gate  * Handle the case were we either fail to create a bound fd or we fail
7887c478bd9Sstevel@tonic-gate  * to add a bound fd to the poll set for the given instance.
7897c478bd9Sstevel@tonic-gate  */
7907c478bd9Sstevel@tonic-gate static void
7917c478bd9Sstevel@tonic-gate handle_bind_failure(instance_t *instance)
7927c478bd9Sstevel@tonic-gate {
7937c478bd9Sstevel@tonic-gate 	basic_cfg_t *cfg = instance->config->basic;
7947c478bd9Sstevel@tonic-gate 
7957c478bd9Sstevel@tonic-gate 	debug_msg("Entering handle_bind_failure: instance: %s", instance);
7967c478bd9Sstevel@tonic-gate 
7977c478bd9Sstevel@tonic-gate 	/*
7987c478bd9Sstevel@tonic-gate 	 * We must be being called as a result of a failed poll_bound_fds()
7997c478bd9Sstevel@tonic-gate 	 * as a bind retry is already scheduled. Just return and let it do
8007c478bd9Sstevel@tonic-gate 	 * the work.
8017c478bd9Sstevel@tonic-gate 	 */
8027c478bd9Sstevel@tonic-gate 	if (instance->bind_timer_id != -1)
8037c478bd9Sstevel@tonic-gate 		return;
8047c478bd9Sstevel@tonic-gate 
8057c478bd9Sstevel@tonic-gate 	/*
8067c478bd9Sstevel@tonic-gate 	 * Check if the rebind retries limit is operative and if so,
8077c478bd9Sstevel@tonic-gate 	 * if it has been reached.
8087c478bd9Sstevel@tonic-gate 	 */
8097c478bd9Sstevel@tonic-gate 	if (((cfg->bind_fail_interval <= 0) ||		/* no retries */
8107c478bd9Sstevel@tonic-gate 	    ((cfg->bind_fail_max >= 0) &&		/* limit reached */
8117c478bd9Sstevel@tonic-gate 	    (++instance->bind_fail_count > cfg->bind_fail_max))) ||
8127c478bd9Sstevel@tonic-gate 	    ((instance->bind_timer_id = iu_schedule_timer(timer_queue,
8137c478bd9Sstevel@tonic-gate 	    cfg->bind_fail_interval, retry_bind, instance)) == -1)) {
8147c478bd9Sstevel@tonic-gate 		proto_info_t *pi;
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate 		instance->bind_fail_count = 0;
8177c478bd9Sstevel@tonic-gate 
8187c478bd9Sstevel@tonic-gate 		switch (instance->cur_istate) {
8197c478bd9Sstevel@tonic-gate 		case IIS_DEGRADED:
8207c478bd9Sstevel@tonic-gate 		case IIS_ONLINE:
8217c478bd9Sstevel@tonic-gate 			/* check if any of the fds are being poll'd upon */
8227c478bd9Sstevel@tonic-gate 			for (pi = uu_list_first(cfg->proto_list); pi != NULL;
8237c478bd9Sstevel@tonic-gate 			    pi = uu_list_next(cfg->proto_list, pi)) {
8247c478bd9Sstevel@tonic-gate 				if ((pi->listen_fd != -1) &&
8257c478bd9Sstevel@tonic-gate 				    (find_pollfd(pi->listen_fd) != NULL))
8267c478bd9Sstevel@tonic-gate 					break;
8277c478bd9Sstevel@tonic-gate 			}
8287c478bd9Sstevel@tonic-gate 			if (pi != NULL)	{	/* polling on > 0 fds */
8297c478bd9Sstevel@tonic-gate 				warn_msg(gettext("Failed to bind on "
8307c478bd9Sstevel@tonic-gate 				    "all protocols for instance %s, "
8317c478bd9Sstevel@tonic-gate 				    "transitioning to degraded"),
8327c478bd9Sstevel@tonic-gate 				    instance->fmri);
8337c478bd9Sstevel@tonic-gate 				update_state(instance, IIS_DEGRADED, RERR_NONE);
8347c478bd9Sstevel@tonic-gate 				instance->bind_retries_exceeded = B_TRUE;
8357c478bd9Sstevel@tonic-gate 				break;
8367c478bd9Sstevel@tonic-gate 			}
8377c478bd9Sstevel@tonic-gate 
8387c478bd9Sstevel@tonic-gate 			destroy_bound_fds(instance);
8397c478bd9Sstevel@tonic-gate 			/*
8407c478bd9Sstevel@tonic-gate 			 * In the case we failed the 'bind' because set_pollfd()
8417c478bd9Sstevel@tonic-gate 			 * failed on all bound fds, use the offline handling.
8427c478bd9Sstevel@tonic-gate 			 */
8437c478bd9Sstevel@tonic-gate 			/* FALLTHROUGH */
8447c478bd9Sstevel@tonic-gate 		case IIS_OFFLINE:
8457c478bd9Sstevel@tonic-gate 		case IIS_OFFLINE_BIND:
8467c478bd9Sstevel@tonic-gate 			error_msg(gettext("Too many bind failures for instance "
8477c478bd9Sstevel@tonic-gate 			"%s, transitioning to maintenance"), instance->fmri);
8487c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_MAINTENANCE,
8497c478bd9Sstevel@tonic-gate 			    RERR_FAULT);
8507c478bd9Sstevel@tonic-gate 			break;
8517c478bd9Sstevel@tonic-gate 		case IIS_IN_ONLINE_METHOD:
8527c478bd9Sstevel@tonic-gate 		case IIS_IN_REFRESH_METHOD:
8537c478bd9Sstevel@tonic-gate 			warn_msg(gettext("Failed to bind on all "
8547c478bd9Sstevel@tonic-gate 			    "protocols for instance %s, instance will go to "
8557c478bd9Sstevel@tonic-gate 			    "degraded"), instance->fmri);
8567c478bd9Sstevel@tonic-gate 			/*
8577c478bd9Sstevel@tonic-gate 			 * Set the retries exceeded flag so when the method
8587c478bd9Sstevel@tonic-gate 			 * completes the instance goes to the degraded state.
8597c478bd9Sstevel@tonic-gate 			 */
8607c478bd9Sstevel@tonic-gate 			instance->bind_retries_exceeded = B_TRUE;
8617c478bd9Sstevel@tonic-gate 			break;
8627c478bd9Sstevel@tonic-gate 		default:
8637c478bd9Sstevel@tonic-gate #ifndef NDEBUG
8647c478bd9Sstevel@tonic-gate 			(void) fprintf(stderr,
8657c478bd9Sstevel@tonic-gate 			    "%s:%d: Unknown instance state %d.\n",
8667c478bd9Sstevel@tonic-gate 			    __FILE__, __LINE__, instance->cur_istate);
8677c478bd9Sstevel@tonic-gate #endif
8687c478bd9Sstevel@tonic-gate 			abort();
8697c478bd9Sstevel@tonic-gate 		}
8707c478bd9Sstevel@tonic-gate 	} else if (instance->cur_istate == IIS_OFFLINE) {
8717c478bd9Sstevel@tonic-gate 		/*
8727c478bd9Sstevel@tonic-gate 		 * bind re-scheduled, so if we're offline reflect this in the
8737c478bd9Sstevel@tonic-gate 		 * state.
8747c478bd9Sstevel@tonic-gate 		 */
8757c478bd9Sstevel@tonic-gate 		update_state(instance, IIS_OFFLINE_BIND, RERR_NONE);
8767c478bd9Sstevel@tonic-gate 	}
8777c478bd9Sstevel@tonic-gate }
8787c478bd9Sstevel@tonic-gate 
879b823d4c7Sdstaff 
880b823d4c7Sdstaff /*
881513ad6b4Sdstaff  * Check if two transport protocols for RPC conflict.
882b823d4c7Sdstaff  */
883b823d4c7Sdstaff 
884b823d4c7Sdstaff boolean_t
885b823d4c7Sdstaff is_rpc_proto_conflict(const char *proto0, const char *proto1) {
886b823d4c7Sdstaff 	if (strcmp(proto0, "tcp") == 0) {
887b823d4c7Sdstaff 		if (strcmp(proto1, "tcp") == 0)
888b823d4c7Sdstaff 			return (B_TRUE);
889b823d4c7Sdstaff 		if (strcmp(proto1, "tcp6") == 0)
890b823d4c7Sdstaff 			return (B_TRUE);
891b823d4c7Sdstaff 		return (B_FALSE);
892b823d4c7Sdstaff 	}
893b823d4c7Sdstaff 
894b823d4c7Sdstaff 	if (strcmp(proto0, "tcp6") == 0) {
895b823d4c7Sdstaff 		if (strcmp(proto1, "tcp") == 0)
896b823d4c7Sdstaff 			return (B_TRUE);
897b823d4c7Sdstaff 		if (strcmp(proto1, "tcp6only") == 0)
898b823d4c7Sdstaff 			return (B_TRUE);
899b823d4c7Sdstaff 		if (strcmp(proto1, "tcp6") == 0)
900b823d4c7Sdstaff 			return (B_TRUE);
901b823d4c7Sdstaff 		return (B_FALSE);
902b823d4c7Sdstaff 	}
903b823d4c7Sdstaff 
904b823d4c7Sdstaff 	if (strcmp(proto0, "tcp6only") == 0) {
905b823d4c7Sdstaff 		if (strcmp(proto1, "tcp6only") == 0)
906b823d4c7Sdstaff 			return (B_TRUE);
907b823d4c7Sdstaff 		if (strcmp(proto1, "tcp6") == 0)
908b823d4c7Sdstaff 			return (B_TRUE);
909b823d4c7Sdstaff 		return (B_FALSE);
910b823d4c7Sdstaff 	}
911b823d4c7Sdstaff 
912b823d4c7Sdstaff 	if (strcmp(proto0, "udp") == 0) {
913b823d4c7Sdstaff 		if (strcmp(proto1, "udp") == 0)
914b823d4c7Sdstaff 			return (B_TRUE);
915b823d4c7Sdstaff 		if (strcmp(proto1, "udp6") == 0)
916b823d4c7Sdstaff 			return (B_TRUE);
917b823d4c7Sdstaff 		return (B_FALSE);
918b823d4c7Sdstaff 	}
919b823d4c7Sdstaff 
920b823d4c7Sdstaff 	if (strcmp(proto0, "udp6") == 0) {
921b823d4c7Sdstaff 
922b823d4c7Sdstaff 		if (strcmp(proto1, "udp") == 0)
923b823d4c7Sdstaff 			return (B_TRUE);
924b823d4c7Sdstaff 		if (strcmp(proto1, "udp6only") == 0)
925b823d4c7Sdstaff 			return (B_TRUE);
926b823d4c7Sdstaff 		if (strcmp(proto1, "udp6") == 0)
927b823d4c7Sdstaff 			return (B_TRUE);
928b823d4c7Sdstaff 		return (B_FALSE);
929b823d4c7Sdstaff 	}
930b823d4c7Sdstaff 
931b823d4c7Sdstaff 	if (strcmp(proto0, "udp6only") == 0) {
932b823d4c7Sdstaff 
933b823d4c7Sdstaff 		if (strcmp(proto1, "udp6only") == 0)
934b823d4c7Sdstaff 			return (B_TRUE);
935b823d4c7Sdstaff 		if (strcmp(proto1, "udp6") == 0)
936b823d4c7Sdstaff 			return (B_TRUE);
937b823d4c7Sdstaff 		return (0);
938b823d4c7Sdstaff 	}
939b823d4c7Sdstaff 
940b823d4c7Sdstaff 	/*
941b823d4c7Sdstaff 	 * If the protocol isn't TCP/IP or UDP/IP assume that it has its own
942b823d4c7Sdstaff 	 * port namepsace and that conflicts can be detected by literal string
943b823d4c7Sdstaff 	 * comparison.
944b823d4c7Sdstaff 	 */
945b823d4c7Sdstaff 
946b823d4c7Sdstaff 	if (strcmp(proto0, proto1))
947b823d4c7Sdstaff 		return (FALSE);
948b823d4c7Sdstaff 
949b823d4c7Sdstaff 	return (B_TRUE);
950b823d4c7Sdstaff }
951b823d4c7Sdstaff 
952b823d4c7Sdstaff 
953b823d4c7Sdstaff /*
954b823d4c7Sdstaff  * Check if inetd thinks this RPC program number is already registered.
955b823d4c7Sdstaff  *
956b823d4c7Sdstaff  * An RPC protocol conflict occurs if
957b823d4c7Sdstaff  * 	a) the program numbers are the same and,
958b823d4c7Sdstaff  * 	b) the version numbers overlap,
959b823d4c7Sdstaff  * 	c) the protocols (TCP vs UDP vs tic*) are the same.
960b823d4c7Sdstaff  */
961b823d4c7Sdstaff 
962b823d4c7Sdstaff boolean_t
963b823d4c7Sdstaff is_rpc_num_in_use(int rpc_n, char *proto, int lowver, int highver) {
964b823d4c7Sdstaff 	instance_t *i;
965b823d4c7Sdstaff 	basic_cfg_t *cfg;
966b823d4c7Sdstaff 	proto_info_t *pi;
967b823d4c7Sdstaff 
968b823d4c7Sdstaff 	for (i = uu_list_first(instance_list); i != NULL;
969b823d4c7Sdstaff 	    i = uu_list_next(instance_list, i)) {
970b823d4c7Sdstaff 
971b823d4c7Sdstaff 		if (i->cur_istate != IIS_ONLINE)
972b823d4c7Sdstaff 			continue;
973*7778f43aSdstaff 		cfg = i->config->basic;
974b823d4c7Sdstaff 
975b823d4c7Sdstaff 		for (pi = uu_list_first(cfg->proto_list); pi != NULL;
976b823d4c7Sdstaff 		    pi = uu_list_next(cfg->proto_list, pi)) {
977b823d4c7Sdstaff 
978b823d4c7Sdstaff 			if (pi->ri == NULL)
979b823d4c7Sdstaff 				continue;
980b823d4c7Sdstaff 			if (pi->ri->prognum != rpc_n)
981b823d4c7Sdstaff 				continue;
982513ad6b4Sdstaff 			if (!is_rpc_proto_conflict(pi->proto, proto))
983b823d4c7Sdstaff 				continue;
984b823d4c7Sdstaff 			if ((lowver < pi->ri->lowver &&
985b823d4c7Sdstaff 			    highver < pi->ri->lowver) ||
986b823d4c7Sdstaff 			    (lowver > pi->ri->highver &&
987b823d4c7Sdstaff 			    highver > pi->ri->highver))
988b823d4c7Sdstaff 				continue;
989b823d4c7Sdstaff 			return (B_TRUE);
990b823d4c7Sdstaff 		}
991b823d4c7Sdstaff 	}
992b823d4c7Sdstaff 	return (B_FALSE);
993b823d4c7Sdstaff }
994b823d4c7Sdstaff 
995b823d4c7Sdstaff 
9967c478bd9Sstevel@tonic-gate /*
9977c478bd9Sstevel@tonic-gate  * Independent of the transport, for each of the entries in the instance's
9987c478bd9Sstevel@tonic-gate  * proto list this function first attempts to create an associated network fd;
9997c478bd9Sstevel@tonic-gate  * for RPC services these are then bound to a kernel chosen port and the
10007c478bd9Sstevel@tonic-gate  * fd is registered with rpcbind; for non-RPC services the fds are bound
10017c478bd9Sstevel@tonic-gate  * to the port associated with the instance's service name. On any successful
10027c478bd9Sstevel@tonic-gate  * binds the instance is taken online. Failed binds are handled by
10037c478bd9Sstevel@tonic-gate  * handle_bind_failure().
10047c478bd9Sstevel@tonic-gate  */
10057c478bd9Sstevel@tonic-gate void
10067c478bd9Sstevel@tonic-gate create_bound_fds(instance_t *instance)
10077c478bd9Sstevel@tonic-gate {
10087c478bd9Sstevel@tonic-gate 	basic_cfg_t	*cfg = instance->config->basic;
10097c478bd9Sstevel@tonic-gate 	boolean_t	failure = B_FALSE;
10107c478bd9Sstevel@tonic-gate 	boolean_t	success = B_FALSE;
10117c478bd9Sstevel@tonic-gate 	proto_info_t	*pi;
10127c478bd9Sstevel@tonic-gate 
10137c478bd9Sstevel@tonic-gate 	debug_msg("Entering create_bound_fd: instance: %s", instance->fmri);
10147c478bd9Sstevel@tonic-gate 
10157c478bd9Sstevel@tonic-gate 	/*
10167c478bd9Sstevel@tonic-gate 	 * Loop through and try and bind any unbound protos.
10177c478bd9Sstevel@tonic-gate 	 */
10187c478bd9Sstevel@tonic-gate 	for (pi = uu_list_first(cfg->proto_list); pi != NULL;
10197c478bd9Sstevel@tonic-gate 	    pi = uu_list_next(cfg->proto_list, pi)) {
10207c478bd9Sstevel@tonic-gate 		if (pi->listen_fd != -1)
10217c478bd9Sstevel@tonic-gate 			continue;
10227c478bd9Sstevel@tonic-gate 		if (cfg->istlx) {
10237c478bd9Sstevel@tonic-gate 			pi->listen_fd = create_bound_endpoint(instance->fmri,
10247c478bd9Sstevel@tonic-gate 			    (tlx_info_t *)pi);
10257c478bd9Sstevel@tonic-gate 		} else {
10267c478bd9Sstevel@tonic-gate 			/*
10277c478bd9Sstevel@tonic-gate 			 * We cast pi to a void so we can then go on to cast
10287c478bd9Sstevel@tonic-gate 			 * it to a socket_info_t without lint complaining
10297c478bd9Sstevel@tonic-gate 			 * about alignment. This is done because the x86
10307c478bd9Sstevel@tonic-gate 			 * version of lint thinks a lint suppression directive
10317c478bd9Sstevel@tonic-gate 			 * is unnecessary and flags it as such, yet the sparc
10327c478bd9Sstevel@tonic-gate 			 * version complains if it's absent.
10337c478bd9Sstevel@tonic-gate 			 */
10347c478bd9Sstevel@tonic-gate 			void *p = pi;
10357c478bd9Sstevel@tonic-gate 			pi->listen_fd = create_bound_socket(instance->fmri,
10367c478bd9Sstevel@tonic-gate 			    (socket_info_t *)p);
10377c478bd9Sstevel@tonic-gate 		}
10387c478bd9Sstevel@tonic-gate 		if (pi->listen_fd == -1) {
10397c478bd9Sstevel@tonic-gate 			failure = B_TRUE;
10407c478bd9Sstevel@tonic-gate 			continue;
10417c478bd9Sstevel@tonic-gate 		}
10427c478bd9Sstevel@tonic-gate 
10437c478bd9Sstevel@tonic-gate 		if (pi->ri != NULL) {
1044b823d4c7Sdstaff 
1045b823d4c7Sdstaff 			/*
1046b823d4c7Sdstaff 			 * Don't register the same RPC program number twice.
1047b823d4c7Sdstaff 			 * Doing so silently discards the old service
1048b823d4c7Sdstaff 			 * without causing an error.
1049b823d4c7Sdstaff 			 */
1050b823d4c7Sdstaff 			if (is_rpc_num_in_use(pi->ri->prognum, pi->proto,
1051b823d4c7Sdstaff 				pi->ri->lowver, pi->ri->highver)) {
1052b823d4c7Sdstaff 				failure = B_TRUE;
1053b823d4c7Sdstaff 				close_net_fd(instance, pi->listen_fd);
1054b823d4c7Sdstaff 				pi->listen_fd = -1;
1055b823d4c7Sdstaff 				continue;
1056b823d4c7Sdstaff 			}
1057b823d4c7Sdstaff 
10587c478bd9Sstevel@tonic-gate 			unregister_rpc_service(instance->fmri, pi->ri);
10597c478bd9Sstevel@tonic-gate 			if (register_rpc_service(instance->fmri, pi->ri) ==
10607c478bd9Sstevel@tonic-gate 			    -1) {
10617c478bd9Sstevel@tonic-gate 				close_net_fd(instance, pi->listen_fd);
10627c478bd9Sstevel@tonic-gate 				pi->listen_fd = -1;
10637c478bd9Sstevel@tonic-gate 				failure = B_TRUE;
10647c478bd9Sstevel@tonic-gate 				continue;
10657c478bd9Sstevel@tonic-gate 			}
10667c478bd9Sstevel@tonic-gate 		}
10677c478bd9Sstevel@tonic-gate 
10687c478bd9Sstevel@tonic-gate 		success = B_TRUE;
10697c478bd9Sstevel@tonic-gate 	}
10707c478bd9Sstevel@tonic-gate 
10717c478bd9Sstevel@tonic-gate 	switch (instance->cur_istate) {
10727c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE:
10737c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_BIND:
10747c478bd9Sstevel@tonic-gate 		/*
10757c478bd9Sstevel@tonic-gate 		 * If we've managed to bind at least one proto lets run the
10767c478bd9Sstevel@tonic-gate 		 * online method, so we can start listening for it.
10777c478bd9Sstevel@tonic-gate 		 */
10787c478bd9Sstevel@tonic-gate 		if (success && run_method(instance, IM_ONLINE, NULL) == -1)
10797c478bd9Sstevel@tonic-gate 			return;	/* instance gone to maintenance */
10807c478bd9Sstevel@tonic-gate 		break;
10817c478bd9Sstevel@tonic-gate 	case IIS_ONLINE:
10827c478bd9Sstevel@tonic-gate 	case IIS_IN_REFRESH_METHOD:
10837c478bd9Sstevel@tonic-gate 		/*
10847c478bd9Sstevel@tonic-gate 		 * We're 'online', so start polling on any bound fds we're
10857c478bd9Sstevel@tonic-gate 		 * currently not.
10867c478bd9Sstevel@tonic-gate 		 */
10877c478bd9Sstevel@tonic-gate 		if (poll_bound_fds(instance, B_TRUE) != 0) {
10887c478bd9Sstevel@tonic-gate 			failure = B_TRUE;
10897c478bd9Sstevel@tonic-gate 		} else if (!failure) {
10907c478bd9Sstevel@tonic-gate 			/*
10917c478bd9Sstevel@tonic-gate 			 * We've successfully bound and poll'd upon all protos,
10927c478bd9Sstevel@tonic-gate 			 * so reset the failure count.
10937c478bd9Sstevel@tonic-gate 			 */
10947c478bd9Sstevel@tonic-gate 			instance->bind_fail_count = 0;
10957c478bd9Sstevel@tonic-gate 		}
10967c478bd9Sstevel@tonic-gate 		break;
10977c478bd9Sstevel@tonic-gate 	case IIS_IN_ONLINE_METHOD:
10987c478bd9Sstevel@tonic-gate 		/*
10997c478bd9Sstevel@tonic-gate 		 * Nothing to do here as the method completion code will start
11007c478bd9Sstevel@tonic-gate 		 * listening for any successfully bound fds.
11017c478bd9Sstevel@tonic-gate 		 */
11027c478bd9Sstevel@tonic-gate 		break;
11037c478bd9Sstevel@tonic-gate 	default:
11047c478bd9Sstevel@tonic-gate #ifndef NDEBUG
11057c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, "%s:%d: Unknown instance state %d.\n",
11067c478bd9Sstevel@tonic-gate 		    __FILE__, __LINE__, instance->cur_istate);
11077c478bd9Sstevel@tonic-gate #endif
11087c478bd9Sstevel@tonic-gate 		abort();
11097c478bd9Sstevel@tonic-gate 	}
11107c478bd9Sstevel@tonic-gate 
11117c478bd9Sstevel@tonic-gate 	if (failure)
11127c478bd9Sstevel@tonic-gate 		handle_bind_failure(instance);
11137c478bd9Sstevel@tonic-gate }
11147c478bd9Sstevel@tonic-gate 
11157c478bd9Sstevel@tonic-gate /*
11167c478bd9Sstevel@tonic-gate  * Counter to create_bound_fds(), for each of the bound network fds this
11177c478bd9Sstevel@tonic-gate  * function unregisters the instance from rpcbind if it's an RPC service,
11187c478bd9Sstevel@tonic-gate  * stops listening for new connections for it and then closes the listening fd.
11197c478bd9Sstevel@tonic-gate  */
11207c478bd9Sstevel@tonic-gate static void
11217c478bd9Sstevel@tonic-gate destroy_bound_fds(instance_t *instance)
11227c478bd9Sstevel@tonic-gate {
11237c478bd9Sstevel@tonic-gate 	basic_cfg_t	*cfg = instance->config->basic;
11247c478bd9Sstevel@tonic-gate 	proto_info_t	*pi;
11257c478bd9Sstevel@tonic-gate 
11267c478bd9Sstevel@tonic-gate 	debug_msg("Entering destroy_bound_fds: instance: %s", instance->fmri);
11277c478bd9Sstevel@tonic-gate 
11287c478bd9Sstevel@tonic-gate 	for (pi = uu_list_first(cfg->proto_list); pi != NULL;
11297c478bd9Sstevel@tonic-gate 	    pi = uu_list_next(cfg->proto_list, pi)) {
11307c478bd9Sstevel@tonic-gate 		if (pi->listen_fd != -1) {
11317c478bd9Sstevel@tonic-gate 			if (pi->ri != NULL)
11327c478bd9Sstevel@tonic-gate 				unregister_rpc_service(instance->fmri, pi->ri);
11337c478bd9Sstevel@tonic-gate 			clear_pollfd(pi->listen_fd);
11347c478bd9Sstevel@tonic-gate 			close_net_fd(instance, pi->listen_fd);
11357c478bd9Sstevel@tonic-gate 			pi->listen_fd = -1;
11367c478bd9Sstevel@tonic-gate 		}
11377c478bd9Sstevel@tonic-gate 	}
11387c478bd9Sstevel@tonic-gate 
11397c478bd9Sstevel@tonic-gate 	/* cancel any bind retries */
11407c478bd9Sstevel@tonic-gate 	if (instance->bind_timer_id != -1)
11417c478bd9Sstevel@tonic-gate 		cancel_bind_timer(instance);
11427c478bd9Sstevel@tonic-gate 
11437c478bd9Sstevel@tonic-gate 	instance->bind_retries_exceeded = B_FALSE;
11447c478bd9Sstevel@tonic-gate }
11457c478bd9Sstevel@tonic-gate 
11467c478bd9Sstevel@tonic-gate /*
11477c478bd9Sstevel@tonic-gate  * Perform %A address expansion and return a pointer to a static string
11487c478bd9Sstevel@tonic-gate  * array containing crafted arguments. This expansion is provided for
11497c478bd9Sstevel@tonic-gate  * compatibility with 4.2BSD daemons, and as such we've copied the logic of
11507c478bd9Sstevel@tonic-gate  * the legacy inetd to maintain this compatibility as much as possible. This
11517c478bd9Sstevel@tonic-gate  * logic is a bit scatty, but it dates back at least as far as SunOS 4.x.
11527c478bd9Sstevel@tonic-gate  */
11537c478bd9Sstevel@tonic-gate static char **
11547c478bd9Sstevel@tonic-gate expand_address(instance_t *inst, const proto_info_t *pi)
11557c478bd9Sstevel@tonic-gate {
11567c478bd9Sstevel@tonic-gate 	static char	addrbuf[sizeof ("ffffffff.65536")];
11577c478bd9Sstevel@tonic-gate 	static char	*ret[3];
11587c478bd9Sstevel@tonic-gate 	instance_cfg_t	*cfg = inst->config;
11597c478bd9Sstevel@tonic-gate 	/*
11607c478bd9Sstevel@tonic-gate 	 * We cast pi to a void so we can then go on to cast it to a
11617c478bd9Sstevel@tonic-gate 	 * socket_info_t without lint complaining about alignment. This
11627c478bd9Sstevel@tonic-gate 	 * is done because the x86 version of lint thinks a lint suppression
11637c478bd9Sstevel@tonic-gate 	 * directive is unnecessary and flags it as such, yet the sparc
11647c478bd9Sstevel@tonic-gate 	 * version complains if it's absent.
11657c478bd9Sstevel@tonic-gate 	 */
11667c478bd9Sstevel@tonic-gate 	const void	*p = pi;
11677c478bd9Sstevel@tonic-gate 
11687c478bd9Sstevel@tonic-gate 	debug_msg("Entering expand_address");
11697c478bd9Sstevel@tonic-gate 
11707c478bd9Sstevel@tonic-gate 	/* set ret[0] to the basename of exec path */
11717c478bd9Sstevel@tonic-gate 	if ((ret[0] = strrchr(cfg->methods[IM_START]->exec_path, '/'))
11727c478bd9Sstevel@tonic-gate 	    != NULL) {
11737c478bd9Sstevel@tonic-gate 		ret[0]++;
11747c478bd9Sstevel@tonic-gate 	} else {
11757c478bd9Sstevel@tonic-gate 		ret[0] = cfg->methods[IM_START]->exec_path;
11767c478bd9Sstevel@tonic-gate 	}
11777c478bd9Sstevel@tonic-gate 
11787c478bd9Sstevel@tonic-gate 	if (!cfg->basic->istlx &&
11797c478bd9Sstevel@tonic-gate 	    (((socket_info_t *)p)->type == SOCK_DGRAM)) {
11807c478bd9Sstevel@tonic-gate 		ret[1] = NULL;
11817c478bd9Sstevel@tonic-gate 	} else {
11827c478bd9Sstevel@tonic-gate 		addrbuf[0] = '\0';
11837c478bd9Sstevel@tonic-gate 		if (!cfg->basic->iswait &&
11847c478bd9Sstevel@tonic-gate 		    (inst->remote_addr.ss_family == AF_INET)) {
11857c478bd9Sstevel@tonic-gate 			struct sockaddr_in *sp;
11867c478bd9Sstevel@tonic-gate 
11877c478bd9Sstevel@tonic-gate 			sp = (struct sockaddr_in *)&(inst->remote_addr);
11887c478bd9Sstevel@tonic-gate 			(void) snprintf(addrbuf, sizeof (addrbuf), "%x.%hu",
11897c478bd9Sstevel@tonic-gate 			    ntohl(sp->sin_addr.s_addr), ntohs(sp->sin_port));
11907c478bd9Sstevel@tonic-gate 		}
11917c478bd9Sstevel@tonic-gate 		ret[1] = addrbuf;
11927c478bd9Sstevel@tonic-gate 		ret[2] = NULL;
11937c478bd9Sstevel@tonic-gate 	}
11947c478bd9Sstevel@tonic-gate 
11957c478bd9Sstevel@tonic-gate 	return (ret);
11967c478bd9Sstevel@tonic-gate }
11977c478bd9Sstevel@tonic-gate 
11987c478bd9Sstevel@tonic-gate /*
11997c478bd9Sstevel@tonic-gate  * Returns the state associated with the supplied method being run for an
12007c478bd9Sstevel@tonic-gate  * instance.
12017c478bd9Sstevel@tonic-gate  */
12027c478bd9Sstevel@tonic-gate static internal_inst_state_t
12037c478bd9Sstevel@tonic-gate get_method_state(instance_method_t method)
12047c478bd9Sstevel@tonic-gate {
12057c478bd9Sstevel@tonic-gate 	state_info_t *sip;
12067c478bd9Sstevel@tonic-gate 
12077c478bd9Sstevel@tonic-gate 	for (sip = states; sip->istate != IIS_NONE; sip++) {
12087c478bd9Sstevel@tonic-gate 		if (sip->method_running == method)
12097c478bd9Sstevel@tonic-gate 			break;
12107c478bd9Sstevel@tonic-gate 	}
12117c478bd9Sstevel@tonic-gate 	assert(sip->istate != IIS_NONE);
12127c478bd9Sstevel@tonic-gate 
12137c478bd9Sstevel@tonic-gate 	return (sip->istate);
12147c478bd9Sstevel@tonic-gate }
12157c478bd9Sstevel@tonic-gate 
12167c478bd9Sstevel@tonic-gate /*
12177c478bd9Sstevel@tonic-gate  * Store the method's PID and CID in the repository. If the store fails
12187c478bd9Sstevel@tonic-gate  * we ignore it and just drive on.
12197c478bd9Sstevel@tonic-gate  */
12207c478bd9Sstevel@tonic-gate static void
12217c478bd9Sstevel@tonic-gate add_method_ids(instance_t *ins, pid_t pid, ctid_t cid, instance_method_t mthd)
12227c478bd9Sstevel@tonic-gate {
12237c478bd9Sstevel@tonic-gate 	debug_msg("Entering add_method_ids");
12247c478bd9Sstevel@tonic-gate 
12257c478bd9Sstevel@tonic-gate 	if (cid != -1)
12267c478bd9Sstevel@tonic-gate 		(void) add_remove_contract(ins->fmri, B_TRUE, cid);
12277c478bd9Sstevel@tonic-gate 
12287c478bd9Sstevel@tonic-gate 	if (mthd == IM_START) {
12297c478bd9Sstevel@tonic-gate 		if (add_rep_val(ins->start_pids, (int64_t)pid) == 0) {
12307c478bd9Sstevel@tonic-gate 			(void) store_rep_vals(ins->start_pids, ins->fmri,
12317c478bd9Sstevel@tonic-gate 			    PR_NAME_START_PIDS);
12327c478bd9Sstevel@tonic-gate 		}
12337c478bd9Sstevel@tonic-gate 	} else {
12347c478bd9Sstevel@tonic-gate 		if (add_rep_val(ins->non_start_pid, (int64_t)pid) == 0) {
12357c478bd9Sstevel@tonic-gate 			(void) store_rep_vals(ins->non_start_pid, ins->fmri,
12367c478bd9Sstevel@tonic-gate 			    PR_NAME_NON_START_PID);
12377c478bd9Sstevel@tonic-gate 		}
12387c478bd9Sstevel@tonic-gate 	}
12397c478bd9Sstevel@tonic-gate }
12407c478bd9Sstevel@tonic-gate 
12417c478bd9Sstevel@tonic-gate /*
12427c478bd9Sstevel@tonic-gate  * Remove the method's PID and CID from the repository. If the removal
12437c478bd9Sstevel@tonic-gate  * fails we ignore it and drive on.
12447c478bd9Sstevel@tonic-gate  */
12457c478bd9Sstevel@tonic-gate void
12467c478bd9Sstevel@tonic-gate remove_method_ids(instance_t *inst, pid_t pid, ctid_t cid,
12477c478bd9Sstevel@tonic-gate     instance_method_t mthd)
12487c478bd9Sstevel@tonic-gate {
12497c478bd9Sstevel@tonic-gate 	debug_msg("Entering remove_method_ids");
12507c478bd9Sstevel@tonic-gate 
12517c478bd9Sstevel@tonic-gate 	if (cid != -1)
12527c478bd9Sstevel@tonic-gate 		(void) add_remove_contract(inst->fmri, B_FALSE, cid);
12537c478bd9Sstevel@tonic-gate 
12547c478bd9Sstevel@tonic-gate 	if (mthd == IM_START) {
12557c478bd9Sstevel@tonic-gate 		remove_rep_val(inst->start_pids, (int64_t)pid);
12567c478bd9Sstevel@tonic-gate 		(void) store_rep_vals(inst->start_pids, inst->fmri,
12577c478bd9Sstevel@tonic-gate 		    PR_NAME_START_PIDS);
12587c478bd9Sstevel@tonic-gate 	} else {
12597c478bd9Sstevel@tonic-gate 		remove_rep_val(inst->non_start_pid, (int64_t)pid);
12607c478bd9Sstevel@tonic-gate 		(void) store_rep_vals(inst->non_start_pid, inst->fmri,
12617c478bd9Sstevel@tonic-gate 		    PR_NAME_NON_START_PID);
12627c478bd9Sstevel@tonic-gate 	}
12637c478bd9Sstevel@tonic-gate }
12647c478bd9Sstevel@tonic-gate 
12657c478bd9Sstevel@tonic-gate static instance_t *
12667c478bd9Sstevel@tonic-gate create_instance(const char *fmri)
12677c478bd9Sstevel@tonic-gate {
12687c478bd9Sstevel@tonic-gate 	instance_t *ret;
12697c478bd9Sstevel@tonic-gate 
12707c478bd9Sstevel@tonic-gate 	debug_msg("Entering create_instance, instance: %s", fmri);
12717c478bd9Sstevel@tonic-gate 
12727c478bd9Sstevel@tonic-gate 	if (((ret = calloc(1, sizeof (instance_t))) == NULL) ||
12737c478bd9Sstevel@tonic-gate 	    ((ret->fmri = strdup(fmri)) == NULL))
12747c478bd9Sstevel@tonic-gate 		goto alloc_fail;
12757c478bd9Sstevel@tonic-gate 
12767c478bd9Sstevel@tonic-gate 	ret->conn_fd = -1;
12777c478bd9Sstevel@tonic-gate 
12787c478bd9Sstevel@tonic-gate 	ret->copies = 0;
12797c478bd9Sstevel@tonic-gate 
12807c478bd9Sstevel@tonic-gate 	ret->conn_rate_count = 0;
12817c478bd9Sstevel@tonic-gate 	ret->fail_rate_count = 0;
12827c478bd9Sstevel@tonic-gate 	ret->bind_fail_count = 0;
12837c478bd9Sstevel@tonic-gate 
12847c478bd9Sstevel@tonic-gate 	if (((ret->non_start_pid = create_rep_val_list()) == NULL) ||
12857c478bd9Sstevel@tonic-gate 	    ((ret->start_pids = create_rep_val_list()) == NULL))
12867c478bd9Sstevel@tonic-gate 		goto alloc_fail;
12877c478bd9Sstevel@tonic-gate 
12887c478bd9Sstevel@tonic-gate 	ret->cur_istate = IIS_NONE;
12897c478bd9Sstevel@tonic-gate 	ret->next_istate = IIS_NONE;
12907c478bd9Sstevel@tonic-gate 
12917c478bd9Sstevel@tonic-gate 	if (((ret->cur_istate_rep = create_rep_val_list()) == NULL) ||
12927c478bd9Sstevel@tonic-gate 	    ((ret->next_istate_rep = create_rep_val_list()) == NULL))
12937c478bd9Sstevel@tonic-gate 		goto alloc_fail;
12947c478bd9Sstevel@tonic-gate 
12957c478bd9Sstevel@tonic-gate 	ret->config = NULL;
12967c478bd9Sstevel@tonic-gate 	ret->new_config = NULL;
12977c478bd9Sstevel@tonic-gate 
12987c478bd9Sstevel@tonic-gate 	ret->timer_id = -1;
12997c478bd9Sstevel@tonic-gate 	ret->bind_timer_id = -1;
13007c478bd9Sstevel@tonic-gate 
13017c478bd9Sstevel@tonic-gate 	ret->disable_req = B_FALSE;
13027c478bd9Sstevel@tonic-gate 	ret->maintenance_req = B_FALSE;
13037c478bd9Sstevel@tonic-gate 	ret->conn_rate_exceeded = B_FALSE;
13047c478bd9Sstevel@tonic-gate 	ret->bind_retries_exceeded = B_FALSE;
13057c478bd9Sstevel@tonic-gate 
13067c478bd9Sstevel@tonic-gate 	ret->pending_rst_event = RESTARTER_EVENT_TYPE_INVALID;
13077c478bd9Sstevel@tonic-gate 
13087c478bd9Sstevel@tonic-gate 	return (ret);
13097c478bd9Sstevel@tonic-gate 
13107c478bd9Sstevel@tonic-gate alloc_fail:
13117c478bd9Sstevel@tonic-gate 	error_msg(strerror(errno));
13127c478bd9Sstevel@tonic-gate 	destroy_instance(ret);
13137c478bd9Sstevel@tonic-gate 	return (NULL);
13147c478bd9Sstevel@tonic-gate }
13157c478bd9Sstevel@tonic-gate 
13167c478bd9Sstevel@tonic-gate static void
13177c478bd9Sstevel@tonic-gate destroy_instance(instance_t *inst)
13187c478bd9Sstevel@tonic-gate {
13197c478bd9Sstevel@tonic-gate 	debug_msg("Entering destroy_instance");
13207c478bd9Sstevel@tonic-gate 
13217c478bd9Sstevel@tonic-gate 	if (inst == NULL)
13227c478bd9Sstevel@tonic-gate 		return;
13237c478bd9Sstevel@tonic-gate 
13247c478bd9Sstevel@tonic-gate 	destroy_instance_cfg(inst->config);
13257c478bd9Sstevel@tonic-gate 	destroy_instance_cfg(inst->new_config);
13267c478bd9Sstevel@tonic-gate 
13277c478bd9Sstevel@tonic-gate 	destroy_rep_val_list(inst->cur_istate_rep);
13287c478bd9Sstevel@tonic-gate 	destroy_rep_val_list(inst->next_istate_rep);
13297c478bd9Sstevel@tonic-gate 
13307c478bd9Sstevel@tonic-gate 	destroy_rep_val_list(inst->start_pids);
13317c478bd9Sstevel@tonic-gate 	destroy_rep_val_list(inst->non_start_pid);
13327c478bd9Sstevel@tonic-gate 
13337c478bd9Sstevel@tonic-gate 	free(inst->fmri);
13347c478bd9Sstevel@tonic-gate 
13357c478bd9Sstevel@tonic-gate 	free(inst);
13367c478bd9Sstevel@tonic-gate }
13377c478bd9Sstevel@tonic-gate 
13387c478bd9Sstevel@tonic-gate /*
13397c478bd9Sstevel@tonic-gate  * Retrieves the current and next states internal states. Returns 0 on success,
13407c478bd9Sstevel@tonic-gate  * else returns one of the following on error:
13417c478bd9Sstevel@tonic-gate  * SCF_ERROR_NO_MEMORY if memory allocation failed.
13427c478bd9Sstevel@tonic-gate  * SCF_ERROR_CONNECTION_BROKEN if the connection to the repository was broken.
13437c478bd9Sstevel@tonic-gate  * SCF_ERROR_TYPE_MISMATCH if the property was of an unexpected type.
13447c478bd9Sstevel@tonic-gate  * SCF_ERROR_NO_RESOURCES if the server doesn't have adequate resources.
13457c478bd9Sstevel@tonic-gate  * SCF_ERROR_NO_SERVER if the server isn't running.
13467c478bd9Sstevel@tonic-gate  */
13477c478bd9Sstevel@tonic-gate static scf_error_t
13487c478bd9Sstevel@tonic-gate retrieve_instance_state(instance_t *inst)
13497c478bd9Sstevel@tonic-gate {
13507c478bd9Sstevel@tonic-gate 	scf_error_t	ret;
13517c478bd9Sstevel@tonic-gate 
13527c478bd9Sstevel@tonic-gate 	debug_msg("Entering retrieve_instance_state: instance: %s",
13537c478bd9Sstevel@tonic-gate 	    inst->fmri);
13547c478bd9Sstevel@tonic-gate 
13557c478bd9Sstevel@tonic-gate 	/* retrieve internal states */
13567c478bd9Sstevel@tonic-gate 	if (((ret = retrieve_rep_vals(inst->cur_istate_rep, inst->fmri,
13577c478bd9Sstevel@tonic-gate 	    PR_NAME_CUR_INT_STATE)) != 0) ||
13587c478bd9Sstevel@tonic-gate 	    ((ret = retrieve_rep_vals(inst->next_istate_rep, inst->fmri,
13597c478bd9Sstevel@tonic-gate 	    PR_NAME_NEXT_INT_STATE)) != 0)) {
13607c478bd9Sstevel@tonic-gate 		if (ret != SCF_ERROR_NOT_FOUND) {
13617c478bd9Sstevel@tonic-gate 			error_msg(gettext(
13627c478bd9Sstevel@tonic-gate 			    "Failed to read state of instance %s: %s"),
13637c478bd9Sstevel@tonic-gate 			    inst->fmri, scf_strerror(scf_error()));
13647c478bd9Sstevel@tonic-gate 			return (ret);
13657c478bd9Sstevel@tonic-gate 		}
13667c478bd9Sstevel@tonic-gate 
13677c478bd9Sstevel@tonic-gate 		debug_msg("instance with no previous int state - "
13687c478bd9Sstevel@tonic-gate 		    "setting state to uninitialized");
13697c478bd9Sstevel@tonic-gate 
13707c478bd9Sstevel@tonic-gate 		if ((set_single_rep_val(inst->cur_istate_rep,
13717c478bd9Sstevel@tonic-gate 		    (int64_t)IIS_UNINITIALIZED) == -1) ||
13727c478bd9Sstevel@tonic-gate 		    (set_single_rep_val(inst->next_istate_rep,
13737c478bd9Sstevel@tonic-gate 		    (int64_t)IIS_NONE) == -1)) {
13747c478bd9Sstevel@tonic-gate 			return (SCF_ERROR_NO_MEMORY);
13757c478bd9Sstevel@tonic-gate 		}
13767c478bd9Sstevel@tonic-gate 	}
13777c478bd9Sstevel@tonic-gate 
13787c478bd9Sstevel@tonic-gate 	/* update convenience states */
13797c478bd9Sstevel@tonic-gate 	inst->cur_istate = get_single_rep_val(inst->cur_istate_rep);
13807c478bd9Sstevel@tonic-gate 	inst->next_istate = get_single_rep_val(inst->next_istate_rep);
13817c478bd9Sstevel@tonic-gate 	debug_msg("previous states: cur: %d, next: %d", inst->cur_istate,
13827c478bd9Sstevel@tonic-gate 	    inst->next_istate);
13837c478bd9Sstevel@tonic-gate 
13847c478bd9Sstevel@tonic-gate 	return (0);
13857c478bd9Sstevel@tonic-gate }
13867c478bd9Sstevel@tonic-gate 
13877c478bd9Sstevel@tonic-gate /*
13887c478bd9Sstevel@tonic-gate  * Retrieve stored process ids and register each of them so we process their
13897c478bd9Sstevel@tonic-gate  * termination.
13907c478bd9Sstevel@tonic-gate  */
13917c478bd9Sstevel@tonic-gate static int
13927c478bd9Sstevel@tonic-gate retrieve_method_pids(instance_t *inst)
13937c478bd9Sstevel@tonic-gate {
13947c478bd9Sstevel@tonic-gate 	rep_val_t	*rv;
13957c478bd9Sstevel@tonic-gate 
13967c478bd9Sstevel@tonic-gate 	debug_msg("Entering remove_method_pids");
13977c478bd9Sstevel@tonic-gate 
13987c478bd9Sstevel@tonic-gate 	switch (retrieve_rep_vals(inst->start_pids, inst->fmri,
13997c478bd9Sstevel@tonic-gate 	    PR_NAME_START_PIDS)) {
14007c478bd9Sstevel@tonic-gate 	case 0:
14017c478bd9Sstevel@tonic-gate 		break;
14027c478bd9Sstevel@tonic-gate 	case SCF_ERROR_NOT_FOUND:
14037c478bd9Sstevel@tonic-gate 		return (0);
14047c478bd9Sstevel@tonic-gate 	default:
14057c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to retrieve the start pids of "
14067c478bd9Sstevel@tonic-gate 		    "instance %s from repository: %s"), inst->fmri,
14077c478bd9Sstevel@tonic-gate 		    scf_strerror(scf_error()));
14087c478bd9Sstevel@tonic-gate 		return (-1);
14097c478bd9Sstevel@tonic-gate 	}
14107c478bd9Sstevel@tonic-gate 
14117c478bd9Sstevel@tonic-gate 	rv = uu_list_first(inst->start_pids);
14127c478bd9Sstevel@tonic-gate 	while (rv != NULL) {
14137c478bd9Sstevel@tonic-gate 		if (register_method(inst, (pid_t)rv->val, (ctid_t)-1,
14147c478bd9Sstevel@tonic-gate 		    IM_START) == 0) {
14157c478bd9Sstevel@tonic-gate 			inst->copies++;
14167c478bd9Sstevel@tonic-gate 			rv = uu_list_next(inst->start_pids, rv);
14177c478bd9Sstevel@tonic-gate 		} else if (errno == ENOENT) {
14187c478bd9Sstevel@tonic-gate 			pid_t pid = (pid_t)rv->val;
14197c478bd9Sstevel@tonic-gate 
14207c478bd9Sstevel@tonic-gate 			/*
14217c478bd9Sstevel@tonic-gate 			 * The process must have already terminated. Remove
14227c478bd9Sstevel@tonic-gate 			 * it from the list.
14237c478bd9Sstevel@tonic-gate 			 */
14247c478bd9Sstevel@tonic-gate 			rv = uu_list_next(inst->start_pids, rv);
14257c478bd9Sstevel@tonic-gate 			remove_rep_val(inst->start_pids, pid);
14267c478bd9Sstevel@tonic-gate 		} else {
14277c478bd9Sstevel@tonic-gate 			error_msg(gettext("Failed to listen for the completion "
14287c478bd9Sstevel@tonic-gate 			    "of %s method of instance %s"), START_METHOD_NAME,
14297c478bd9Sstevel@tonic-gate 			    inst->fmri);
14307c478bd9Sstevel@tonic-gate 			rv = uu_list_next(inst->start_pids, rv);
14317c478bd9Sstevel@tonic-gate 		}
14327c478bd9Sstevel@tonic-gate 	}
14337c478bd9Sstevel@tonic-gate 
14347c478bd9Sstevel@tonic-gate 	/* synch the repository pid list to remove any terminated pids */
14357c478bd9Sstevel@tonic-gate 	(void) store_rep_vals(inst->start_pids, inst->fmri, PR_NAME_START_PIDS);
14367c478bd9Sstevel@tonic-gate 
14377c478bd9Sstevel@tonic-gate 	return (0);
14387c478bd9Sstevel@tonic-gate }
14397c478bd9Sstevel@tonic-gate 
14407c478bd9Sstevel@tonic-gate /*
14417c478bd9Sstevel@tonic-gate  * Remove the passed instance from inetd control.
14427c478bd9Sstevel@tonic-gate  */
14437c478bd9Sstevel@tonic-gate static void
14447c478bd9Sstevel@tonic-gate remove_instance(instance_t *instance)
14457c478bd9Sstevel@tonic-gate {
14467c478bd9Sstevel@tonic-gate 	debug_msg("Entering remove_instance");
14477c478bd9Sstevel@tonic-gate 
14487c478bd9Sstevel@tonic-gate 	switch (instance->cur_istate) {
14497c478bd9Sstevel@tonic-gate 	case IIS_ONLINE:
14507c478bd9Sstevel@tonic-gate 	case IIS_DEGRADED:
14517c478bd9Sstevel@tonic-gate 		/* stop listening for network connections */
14527c478bd9Sstevel@tonic-gate 		destroy_bound_fds(instance);
14537c478bd9Sstevel@tonic-gate 		break;
14547c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_BIND:
14557c478bd9Sstevel@tonic-gate 		cancel_bind_timer(instance);
14567c478bd9Sstevel@tonic-gate 		break;
14577c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_CONRATE:
14587c478bd9Sstevel@tonic-gate 		cancel_inst_timer(instance);
14597c478bd9Sstevel@tonic-gate 		break;
14607c478bd9Sstevel@tonic-gate 	}
14617c478bd9Sstevel@tonic-gate 
14627c478bd9Sstevel@tonic-gate 	/* stop listening for terminated methods */
14637c478bd9Sstevel@tonic-gate 	unregister_instance_methods(instance);
14647c478bd9Sstevel@tonic-gate 
14657c478bd9Sstevel@tonic-gate 	uu_list_remove(instance_list, instance);
14667c478bd9Sstevel@tonic-gate 	destroy_instance(instance);
14677c478bd9Sstevel@tonic-gate }
14687c478bd9Sstevel@tonic-gate 
14697c478bd9Sstevel@tonic-gate /*
14707c478bd9Sstevel@tonic-gate  * Refresh the configuration of instance 'inst'. This method gets called as
14717c478bd9Sstevel@tonic-gate  * a result of a refresh event for the instance from the master restarter, so
14727c478bd9Sstevel@tonic-gate  * we can rely upon the instance's running snapshot having been updated from
14737c478bd9Sstevel@tonic-gate  * its configuration snapshot.
14747c478bd9Sstevel@tonic-gate  */
14757c478bd9Sstevel@tonic-gate void
14767c478bd9Sstevel@tonic-gate refresh_instance(instance_t *inst)
14777c478bd9Sstevel@tonic-gate {
14787c478bd9Sstevel@tonic-gate 	instance_cfg_t	*cfg;
14797c478bd9Sstevel@tonic-gate 
14807c478bd9Sstevel@tonic-gate 	debug_msg("Entering refresh_instance: inst: %s", inst->fmri);
14817c478bd9Sstevel@tonic-gate 
14827c478bd9Sstevel@tonic-gate 	switch (inst->cur_istate) {
14837c478bd9Sstevel@tonic-gate 	case IIS_MAINTENANCE:
14847c478bd9Sstevel@tonic-gate 	case IIS_DISABLED:
14857c478bd9Sstevel@tonic-gate 	case IIS_UNINITIALIZED:
14867c478bd9Sstevel@tonic-gate 		/*
14877c478bd9Sstevel@tonic-gate 		 * Ignore any possible changes, we'll re-read the configuration
14887c478bd9Sstevel@tonic-gate 		 * automatically when we exit these states.
14897c478bd9Sstevel@tonic-gate 		 */
14907c478bd9Sstevel@tonic-gate 		break;
14917c478bd9Sstevel@tonic-gate 
14927c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_COPIES:
14937c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_BIND:
14947c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE:
14957c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_CONRATE:
14967c478bd9Sstevel@tonic-gate 		destroy_instance_cfg(inst->config);
14977c478bd9Sstevel@tonic-gate 		if ((inst->config = read_instance_cfg(inst->fmri)) == NULL) {
14987c478bd9Sstevel@tonic-gate 			log_invalid_cfg(inst->fmri);
14997c478bd9Sstevel@tonic-gate 			if (inst->cur_istate == IIS_OFFLINE_BIND) {
15007c478bd9Sstevel@tonic-gate 				cancel_bind_timer(inst);
15017c478bd9Sstevel@tonic-gate 			} else if (inst->cur_istate == IIS_OFFLINE_CONRATE) {
15027c478bd9Sstevel@tonic-gate 				cancel_inst_timer(inst);
15037c478bd9Sstevel@tonic-gate 			}
15047c478bd9Sstevel@tonic-gate 			update_state(inst, IIS_MAINTENANCE, RERR_FAULT);
15057c478bd9Sstevel@tonic-gate 		} else {
15067c478bd9Sstevel@tonic-gate 			switch (inst->cur_istate) {
15077c478bd9Sstevel@tonic-gate 			case IIS_OFFLINE_BIND:
15087c478bd9Sstevel@tonic-gate 				if (copies_limit_exceeded(inst)) {
15097c478bd9Sstevel@tonic-gate 					/* Cancel scheduled bind retries. */
15107c478bd9Sstevel@tonic-gate 					cancel_bind_timer(inst);
15117c478bd9Sstevel@tonic-gate 
15127c478bd9Sstevel@tonic-gate 					/*
15137c478bd9Sstevel@tonic-gate 					 * Take the instance to the copies
15147c478bd9Sstevel@tonic-gate 					 * offline state, via the offline
15157c478bd9Sstevel@tonic-gate 					 * state.
15167c478bd9Sstevel@tonic-gate 					 */
15177c478bd9Sstevel@tonic-gate 					update_state(inst, IIS_OFFLINE,
15187c478bd9Sstevel@tonic-gate 					    RERR_RESTART);
15197c478bd9Sstevel@tonic-gate 					process_offline_inst(inst);
15207c478bd9Sstevel@tonic-gate 				}
15217c478bd9Sstevel@tonic-gate 				break;
15227c478bd9Sstevel@tonic-gate 
15237c478bd9Sstevel@tonic-gate 			case IIS_OFFLINE:
15247c478bd9Sstevel@tonic-gate 				process_offline_inst(inst);
15257c478bd9Sstevel@tonic-gate 				break;
15267c478bd9Sstevel@tonic-gate 
15277c478bd9Sstevel@tonic-gate 			case IIS_OFFLINE_CONRATE:
15287c478bd9Sstevel@tonic-gate 				/*
15297c478bd9Sstevel@tonic-gate 				 * Since we're already in a DOS state,
15307c478bd9Sstevel@tonic-gate 				 * don't bother evaluating the copies
15317c478bd9Sstevel@tonic-gate 				 * limit. This will be evaluated when
15327c478bd9Sstevel@tonic-gate 				 * we leave this state in
15337c478bd9Sstevel@tonic-gate 				 * process_offline_inst().
15347c478bd9Sstevel@tonic-gate 				 */
15357c478bd9Sstevel@tonic-gate 				break;
15367c478bd9Sstevel@tonic-gate 
15377c478bd9Sstevel@tonic-gate 			case IIS_OFFLINE_COPIES:
15387c478bd9Sstevel@tonic-gate 				/*
15397c478bd9Sstevel@tonic-gate 				 * Check if the copies limit has been increased
15407c478bd9Sstevel@tonic-gate 				 * above the current count.
15417c478bd9Sstevel@tonic-gate 				 */
15427c478bd9Sstevel@tonic-gate 				if (!copies_limit_exceeded(inst)) {
15437c478bd9Sstevel@tonic-gate 					update_state(inst, IIS_OFFLINE,
15447c478bd9Sstevel@tonic-gate 					    RERR_RESTART);
15457c478bd9Sstevel@tonic-gate 					process_offline_inst(inst);
15467c478bd9Sstevel@tonic-gate 				}
15477c478bd9Sstevel@tonic-gate 				break;
15487c478bd9Sstevel@tonic-gate 
15497c478bd9Sstevel@tonic-gate 			default:
15507c478bd9Sstevel@tonic-gate 				assert(0);
15517c478bd9Sstevel@tonic-gate 			}
15527c478bd9Sstevel@tonic-gate 		}
15537c478bd9Sstevel@tonic-gate 		break;
15547c478bd9Sstevel@tonic-gate 
15557c478bd9Sstevel@tonic-gate 	case IIS_DEGRADED:
15567c478bd9Sstevel@tonic-gate 	case IIS_ONLINE:
15577c478bd9Sstevel@tonic-gate 		if ((cfg = read_instance_cfg(inst->fmri)) != NULL) {
15587c478bd9Sstevel@tonic-gate 			instance_cfg_t *ocfg = inst->config;
15597c478bd9Sstevel@tonic-gate 
15607c478bd9Sstevel@tonic-gate 			/*
15617c478bd9Sstevel@tonic-gate 			 * Try to avoid the overhead of taking an instance
15627c478bd9Sstevel@tonic-gate 			 * offline and back on again. We do this by limiting
15637c478bd9Sstevel@tonic-gate 			 * this behavior to two eventualities:
15647c478bd9Sstevel@tonic-gate 			 * - there needs to be a re-bind to listen on behalf
15657c478bd9Sstevel@tonic-gate 			 *   of the instance with its new configuration. This
15667c478bd9Sstevel@tonic-gate 			 *   could be because for example its service has been
15677c478bd9Sstevel@tonic-gate 			 *   associated with a different port, or because the
15687c478bd9Sstevel@tonic-gate 			 *   v6only protocol option has been newly applied to
15697c478bd9Sstevel@tonic-gate 			 *   the instance.
15707c478bd9Sstevel@tonic-gate 			 * - one or both of the start or online methods of the
15717c478bd9Sstevel@tonic-gate 			 *   instance have changed in the new configuration.
15727c478bd9Sstevel@tonic-gate 			 *   Without taking the instance offline when the
15737c478bd9Sstevel@tonic-gate 			 *   start method changed the instance may be running
15747c478bd9Sstevel@tonic-gate 			 *   with unwanted parameters (or event an unwanted
15757c478bd9Sstevel@tonic-gate 			 *   binary); and without taking the instance offline
15767c478bd9Sstevel@tonic-gate 			 *   if its online method was to change, some part of
15777c478bd9Sstevel@tonic-gate 			 *   its running environment may have changed and would
15787c478bd9Sstevel@tonic-gate 			 *   not be picked up until the instance next goes
15797c478bd9Sstevel@tonic-gate 			 *   offline for another reason.
15807c478bd9Sstevel@tonic-gate 			 */
15817c478bd9Sstevel@tonic-gate 			if ((!bind_config_equal(ocfg->basic, cfg->basic)) ||
15827c478bd9Sstevel@tonic-gate 			    !method_info_equal(ocfg->methods[IM_ONLINE],
15837c478bd9Sstevel@tonic-gate 			    cfg->methods[IM_ONLINE]) ||
15847c478bd9Sstevel@tonic-gate 			    !method_info_equal(ocfg->methods[IM_START],
15857c478bd9Sstevel@tonic-gate 			    cfg->methods[IM_START])) {
15867c478bd9Sstevel@tonic-gate 				destroy_bound_fds(inst);
15877c478bd9Sstevel@tonic-gate 
15887c478bd9Sstevel@tonic-gate 				assert(inst->new_config == NULL);
15897c478bd9Sstevel@tonic-gate 				inst->new_config = cfg;
15907c478bd9Sstevel@tonic-gate 
15917c478bd9Sstevel@tonic-gate 				(void) run_method(inst, IM_OFFLINE, NULL);
15927c478bd9Sstevel@tonic-gate 			} else {	/* no bind config / method changes */
15937c478bd9Sstevel@tonic-gate 
15947c478bd9Sstevel@tonic-gate 				/*
15957c478bd9Sstevel@tonic-gate 				 * swap the proto list over from the old
15967c478bd9Sstevel@tonic-gate 				 * configuration to the new, so we retain
15977c478bd9Sstevel@tonic-gate 				 * our set of network fds.
15987c478bd9Sstevel@tonic-gate 				 */
15997c478bd9Sstevel@tonic-gate 				destroy_proto_list(cfg->basic);
16007c478bd9Sstevel@tonic-gate 				cfg->basic->proto_list =
16017c478bd9Sstevel@tonic-gate 				    ocfg->basic->proto_list;
16027c478bd9Sstevel@tonic-gate 				ocfg->basic->proto_list = NULL;
16037c478bd9Sstevel@tonic-gate 				destroy_instance_cfg(ocfg);
16047c478bd9Sstevel@tonic-gate 				inst->config = cfg;
16057c478bd9Sstevel@tonic-gate 
16067c478bd9Sstevel@tonic-gate 				/* re-evaluate copies limits based on new cfg */
16077c478bd9Sstevel@tonic-gate 				if (copies_limit_exceeded(inst)) {
16087c478bd9Sstevel@tonic-gate 					destroy_bound_fds(inst);
16097c478bd9Sstevel@tonic-gate 					(void) run_method(inst, IM_OFFLINE,
16107c478bd9Sstevel@tonic-gate 					    NULL);
16117c478bd9Sstevel@tonic-gate 				} else {
16127c478bd9Sstevel@tonic-gate 					/*
16137c478bd9Sstevel@tonic-gate 					 * Since the instance isn't being
16147c478bd9Sstevel@tonic-gate 					 * taken offline, where we assume it
16157c478bd9Sstevel@tonic-gate 					 * would pick-up any configuration
16167c478bd9Sstevel@tonic-gate 					 * changes automatically when it goes
16177c478bd9Sstevel@tonic-gate 					 * back online, run its refresh method
16187c478bd9Sstevel@tonic-gate 					 * to allow it to pick-up any changes
16197c478bd9Sstevel@tonic-gate 					 * whilst still online.
16207c478bd9Sstevel@tonic-gate 					 */
16217c478bd9Sstevel@tonic-gate 					(void) run_method(inst, IM_REFRESH,
16227c478bd9Sstevel@tonic-gate 					    NULL);
16237c478bd9Sstevel@tonic-gate 				}
16247c478bd9Sstevel@tonic-gate 			}
16257c478bd9Sstevel@tonic-gate 		} else {
16267c478bd9Sstevel@tonic-gate 			log_invalid_cfg(inst->fmri);
16277c478bd9Sstevel@tonic-gate 
16287c478bd9Sstevel@tonic-gate 			destroy_bound_fds(inst);
16297c478bd9Sstevel@tonic-gate 
16307c478bd9Sstevel@tonic-gate 			inst->maintenance_req = B_TRUE;
16317c478bd9Sstevel@tonic-gate 			(void) run_method(inst, IM_OFFLINE, NULL);
16327c478bd9Sstevel@tonic-gate 		}
16337c478bd9Sstevel@tonic-gate 		break;
16347c478bd9Sstevel@tonic-gate 
16357c478bd9Sstevel@tonic-gate 	default:
16367c478bd9Sstevel@tonic-gate 		debug_msg("Unhandled current state %d for instance in "
16377c478bd9Sstevel@tonic-gate 		    "refresh_instance", inst->cur_istate);
16387c478bd9Sstevel@tonic-gate 		assert(0);
16397c478bd9Sstevel@tonic-gate 	}
16407c478bd9Sstevel@tonic-gate }
16417c478bd9Sstevel@tonic-gate 
16427c478bd9Sstevel@tonic-gate /*
16437c478bd9Sstevel@tonic-gate  * Called by process_restarter_event() to handle a restarter event for an
16447c478bd9Sstevel@tonic-gate  * instance.
16457c478bd9Sstevel@tonic-gate  */
16467c478bd9Sstevel@tonic-gate static void
16477c478bd9Sstevel@tonic-gate handle_restarter_event(instance_t *instance, restarter_event_type_t event,
16487c478bd9Sstevel@tonic-gate     boolean_t send_ack)
16497c478bd9Sstevel@tonic-gate {
16507c478bd9Sstevel@tonic-gate 	debug_msg("Entering handle_restarter_event: inst: %s, event: %d, "
16517c478bd9Sstevel@tonic-gate 	    "curr state: %d", instance->fmri, event, instance->cur_istate);
16527c478bd9Sstevel@tonic-gate 
16537c478bd9Sstevel@tonic-gate 	switch (event) {
16547c478bd9Sstevel@tonic-gate 	case RESTARTER_EVENT_TYPE_ADMIN_REFRESH:
16557c478bd9Sstevel@tonic-gate 		refresh_instance(instance);
16567c478bd9Sstevel@tonic-gate 		goto done;
16577c478bd9Sstevel@tonic-gate 	case RESTARTER_EVENT_TYPE_REMOVE_INSTANCE:
16587c478bd9Sstevel@tonic-gate 		remove_instance(instance);
16597c478bd9Sstevel@tonic-gate 		goto done;
16607c478bd9Sstevel@tonic-gate 	case RESTARTER_EVENT_TYPE_STOP:
16617c478bd9Sstevel@tonic-gate 		switch (instance->cur_istate) {
16627c478bd9Sstevel@tonic-gate 		case IIS_OFFLINE_CONRATE:
16637c478bd9Sstevel@tonic-gate 		case IIS_OFFLINE_BIND:
16647c478bd9Sstevel@tonic-gate 		case IIS_OFFLINE_COPIES:
16657c478bd9Sstevel@tonic-gate 			/*
16667c478bd9Sstevel@tonic-gate 			 * inetd must be closing down as we wouldn't get this
16677c478bd9Sstevel@tonic-gate 			 * event in one of these states from the master
16687c478bd9Sstevel@tonic-gate 			 * restarter. Take the instance to the offline resting
16697c478bd9Sstevel@tonic-gate 			 * state.
16707c478bd9Sstevel@tonic-gate 			 */
16717c478bd9Sstevel@tonic-gate 			if (instance->cur_istate == IIS_OFFLINE_BIND) {
16727c478bd9Sstevel@tonic-gate 				cancel_bind_timer(instance);
16737c478bd9Sstevel@tonic-gate 			} else if (instance->cur_istate ==
16747c478bd9Sstevel@tonic-gate 			    IIS_OFFLINE_CONRATE) {
16757c478bd9Sstevel@tonic-gate 				cancel_inst_timer(instance);
16767c478bd9Sstevel@tonic-gate 			}
16777c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_OFFLINE, RERR_RESTART);
16787c478bd9Sstevel@tonic-gate 			goto done;
16797c478bd9Sstevel@tonic-gate 		}
16807c478bd9Sstevel@tonic-gate 		break;
16817c478bd9Sstevel@tonic-gate 	case RESTARTER_EVENT_TYPE_ADMIN_RESTART:
16827c478bd9Sstevel@tonic-gate 		/*
16837c478bd9Sstevel@tonic-gate 		 * We've got a restart event, so if the instance is online
16847c478bd9Sstevel@tonic-gate 		 * in any way initiate taking it offline, and rely upon
16857c478bd9Sstevel@tonic-gate 		 * our restarter to send us an online event to bring
16867c478bd9Sstevel@tonic-gate 		 * it back online.
16877c478bd9Sstevel@tonic-gate 		 */
16887c478bd9Sstevel@tonic-gate 		switch (instance->cur_istate) {
16897c478bd9Sstevel@tonic-gate 		case IIS_ONLINE:
16907c478bd9Sstevel@tonic-gate 		case IIS_DEGRADED:
16917c478bd9Sstevel@tonic-gate 			destroy_bound_fds(instance);
16927c478bd9Sstevel@tonic-gate 			(void) run_method(instance, IM_OFFLINE, NULL);
16937c478bd9Sstevel@tonic-gate 		}
16947c478bd9Sstevel@tonic-gate 		goto done;
16957c478bd9Sstevel@tonic-gate 	}
16967c478bd9Sstevel@tonic-gate 
16977c478bd9Sstevel@tonic-gate 	switch (instance->cur_istate) {
16987c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE:
16997c478bd9Sstevel@tonic-gate 		switch (event) {
17007c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_START:
17017c478bd9Sstevel@tonic-gate 			/*
17027c478bd9Sstevel@tonic-gate 			 * Dependencies are met, let's take the service online.
17037c478bd9Sstevel@tonic-gate 			 * Only try and bind for a wait type service if
17047c478bd9Sstevel@tonic-gate 			 * no process is running on its behalf. Otherwise, just
17057c478bd9Sstevel@tonic-gate 			 * mark the service online and binding will be attempted
17067c478bd9Sstevel@tonic-gate 			 * when the process exits.
17077c478bd9Sstevel@tonic-gate 			 */
17087c478bd9Sstevel@tonic-gate 			if (!(instance->config->basic->iswait &&
17097c478bd9Sstevel@tonic-gate 			    (uu_list_first(instance->start_pids) != NULL))) {
17107c478bd9Sstevel@tonic-gate 				create_bound_fds(instance);
17117c478bd9Sstevel@tonic-gate 			} else {
17127c478bd9Sstevel@tonic-gate 				update_state(instance, IIS_ONLINE, RERR_NONE);
17137c478bd9Sstevel@tonic-gate 			}
17147c478bd9Sstevel@tonic-gate 			break;
17157c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DISABLE:
17167c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_DISABLE:
17177c478bd9Sstevel@tonic-gate 			/*
17187c478bd9Sstevel@tonic-gate 			 * The instance should be disabled, so run the
17197c478bd9Sstevel@tonic-gate 			 * instance's disabled method that will do the work
17207c478bd9Sstevel@tonic-gate 			 * to take it there.
17217c478bd9Sstevel@tonic-gate 			 */
17227c478bd9Sstevel@tonic-gate 			(void) run_method(instance, IM_DISABLE, NULL);
17237c478bd9Sstevel@tonic-gate 			break;
17247c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON:
17257c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE:
17267c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY:
17277c478bd9Sstevel@tonic-gate 			/*
17287c478bd9Sstevel@tonic-gate 			 * The master restarter has requested the instance
17297c478bd9Sstevel@tonic-gate 			 * go to maintenance; since we're already offline
17307c478bd9Sstevel@tonic-gate 			 * just update the state to the maintenance state.
17317c478bd9Sstevel@tonic-gate 			 */
17327c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_MAINTENANCE, RERR_RESTART);
17337c478bd9Sstevel@tonic-gate 			break;
17347c478bd9Sstevel@tonic-gate 		}
17357c478bd9Sstevel@tonic-gate 		break;
17367c478bd9Sstevel@tonic-gate 
17377c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_BIND:
17387c478bd9Sstevel@tonic-gate 		switch (event) {
17397c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DISABLE:
17407c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_DISABLE:
17417c478bd9Sstevel@tonic-gate 			/*
17427c478bd9Sstevel@tonic-gate 			 * The instance should be disabled. Firstly, as for
17437c478bd9Sstevel@tonic-gate 			 * the above dependencies unmet comment, cancel
17447c478bd9Sstevel@tonic-gate 			 * the bind retry timer and update the state to
17457c478bd9Sstevel@tonic-gate 			 * offline. Then, run the disable method to do the
17467c478bd9Sstevel@tonic-gate 			 * work to take the instance from offline to
17477c478bd9Sstevel@tonic-gate 			 * disabled.
17487c478bd9Sstevel@tonic-gate 			 */
17497c478bd9Sstevel@tonic-gate 			cancel_bind_timer(instance);
17507c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_OFFLINE, RERR_RESTART);
17517c478bd9Sstevel@tonic-gate 			(void) run_method(instance, IM_DISABLE, NULL);
17527c478bd9Sstevel@tonic-gate 			break;
17537c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON:
17547c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE:
17557c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY:
17567c478bd9Sstevel@tonic-gate 			/*
17577c478bd9Sstevel@tonic-gate 			 * The master restarter has requested the instance
17587c478bd9Sstevel@tonic-gate 			 * be placed in the maintenance state. Cancel the
17597c478bd9Sstevel@tonic-gate 			 * outstanding retry timer, and since we're already
17607c478bd9Sstevel@tonic-gate 			 * offline, update the state to maintenance.
17617c478bd9Sstevel@tonic-gate 			 */
17627c478bd9Sstevel@tonic-gate 			cancel_bind_timer(instance);
17637c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_MAINTENANCE, RERR_RESTART);
17647c478bd9Sstevel@tonic-gate 			break;
17657c478bd9Sstevel@tonic-gate 		}
17667c478bd9Sstevel@tonic-gate 		break;
17677c478bd9Sstevel@tonic-gate 
17687c478bd9Sstevel@tonic-gate 	case IIS_DEGRADED:
17697c478bd9Sstevel@tonic-gate 	case IIS_ONLINE:
17707c478bd9Sstevel@tonic-gate 		switch (event) {
17717c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DISABLE:
17727c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_DISABLE:
17737c478bd9Sstevel@tonic-gate 			/*
17747c478bd9Sstevel@tonic-gate 			 * The instance needs to be disabled. Do the same work
17757c478bd9Sstevel@tonic-gate 			 * as for the dependencies unmet event below to
17767c478bd9Sstevel@tonic-gate 			 * take the instance offline.
17777c478bd9Sstevel@tonic-gate 			 */
17787c478bd9Sstevel@tonic-gate 			destroy_bound_fds(instance);
17797c478bd9Sstevel@tonic-gate 			/*
17807c478bd9Sstevel@tonic-gate 			 * Indicate that the offline method is being run
17817c478bd9Sstevel@tonic-gate 			 * as part of going to the disabled state, and to
17827c478bd9Sstevel@tonic-gate 			 * carry on this transition.
17837c478bd9Sstevel@tonic-gate 			 */
17847c478bd9Sstevel@tonic-gate 			instance->disable_req = B_TRUE;
17857c478bd9Sstevel@tonic-gate 			(void) run_method(instance, IM_OFFLINE, NULL);
17867c478bd9Sstevel@tonic-gate 			break;
17877c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON:
17887c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE:
17897c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY:
17907c478bd9Sstevel@tonic-gate 			/*
17917c478bd9Sstevel@tonic-gate 			 * The master restarter has requested the instance be
17927c478bd9Sstevel@tonic-gate 			 * placed in the maintenance state. This involves
17937c478bd9Sstevel@tonic-gate 			 * firstly taking the service offline, so do the
17947c478bd9Sstevel@tonic-gate 			 * same work as for the dependencies unmet event
17957c478bd9Sstevel@tonic-gate 			 * below. We set the maintenance_req flag to
17967c478bd9Sstevel@tonic-gate 			 * indicate that when we get to the offline state
17977c478bd9Sstevel@tonic-gate 			 * we should be placed directly into the maintenance
17987c478bd9Sstevel@tonic-gate 			 * state.
17997c478bd9Sstevel@tonic-gate 			 */
18007c478bd9Sstevel@tonic-gate 			instance->maintenance_req = B_TRUE;
18017c478bd9Sstevel@tonic-gate 			/* FALLTHROUGH */
18027c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_STOP:
18037c478bd9Sstevel@tonic-gate 			/*
18047c478bd9Sstevel@tonic-gate 			 * Dependencies have become unmet. Close and
18057c478bd9Sstevel@tonic-gate 			 * stop listening on the instance's network file
18067c478bd9Sstevel@tonic-gate 			 * descriptor, and run the offline method to do
18077c478bd9Sstevel@tonic-gate 			 * any work required to take us to the offline state.
18087c478bd9Sstevel@tonic-gate 			 */
18097c478bd9Sstevel@tonic-gate 			destroy_bound_fds(instance);
18107c478bd9Sstevel@tonic-gate 			(void) run_method(instance, IM_OFFLINE, NULL);
18117c478bd9Sstevel@tonic-gate 		}
18127c478bd9Sstevel@tonic-gate 		break;
18137c478bd9Sstevel@tonic-gate 
18147c478bd9Sstevel@tonic-gate 	case IIS_UNINITIALIZED:
18157c478bd9Sstevel@tonic-gate 		if (event == RESTARTER_EVENT_TYPE_DISABLE ||
18167c478bd9Sstevel@tonic-gate 		    event == RESTARTER_EVENT_TYPE_ADMIN_DISABLE) {
18177c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_DISABLED, RERR_NONE);
18187c478bd9Sstevel@tonic-gate 			break;
18197c478bd9Sstevel@tonic-gate 		} else if (event != RESTARTER_EVENT_TYPE_ENABLE) {
18207c478bd9Sstevel@tonic-gate 			/*
18217c478bd9Sstevel@tonic-gate 			 * Ignore other events until we know whether we're
18227c478bd9Sstevel@tonic-gate 			 * enabled or not.
18237c478bd9Sstevel@tonic-gate 			 */
18247c478bd9Sstevel@tonic-gate 			break;
18257c478bd9Sstevel@tonic-gate 		}
18267c478bd9Sstevel@tonic-gate 
18277c478bd9Sstevel@tonic-gate 		/*
18287c478bd9Sstevel@tonic-gate 		 * We've got an enabled event; make use of the handling in the
18297c478bd9Sstevel@tonic-gate 		 * disable case.
18307c478bd9Sstevel@tonic-gate 		 */
18317c478bd9Sstevel@tonic-gate 		/* FALLTHROUGH */
18327c478bd9Sstevel@tonic-gate 
18337c478bd9Sstevel@tonic-gate 	case IIS_DISABLED:
18347c478bd9Sstevel@tonic-gate 		switch (event) {
18357c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ENABLE:
18367c478bd9Sstevel@tonic-gate 			/*
18377c478bd9Sstevel@tonic-gate 			 * The instance needs enabling. Commence reading its
18387c478bd9Sstevel@tonic-gate 			 * configuration and if successful place the instance
18397c478bd9Sstevel@tonic-gate 			 * in the offline state and let process_offline_inst()
18407c478bd9Sstevel@tonic-gate 			 * take it from there.
18417c478bd9Sstevel@tonic-gate 			 */
18427c478bd9Sstevel@tonic-gate 			destroy_instance_cfg(instance->config);
18437c478bd9Sstevel@tonic-gate 			instance->config = read_instance_cfg(instance->fmri);
18447c478bd9Sstevel@tonic-gate 			if (instance->config != NULL) {
18457c478bd9Sstevel@tonic-gate 				update_state(instance, IIS_OFFLINE,
18467c478bd9Sstevel@tonic-gate 				    RERR_RESTART);
18477c478bd9Sstevel@tonic-gate 				process_offline_inst(instance);
18487c478bd9Sstevel@tonic-gate 			} else {
18497c478bd9Sstevel@tonic-gate 				log_invalid_cfg(instance->fmri);
18507c478bd9Sstevel@tonic-gate 				update_state(instance, IIS_MAINTENANCE,
18517c478bd9Sstevel@tonic-gate 				    RERR_RESTART);
18527c478bd9Sstevel@tonic-gate 			}
18537c478bd9Sstevel@tonic-gate 
18547c478bd9Sstevel@tonic-gate 			break;
18557c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON:
18567c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE:
18577c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY:
18587c478bd9Sstevel@tonic-gate 			/*
18597c478bd9Sstevel@tonic-gate 			 * The master restarter has requested the instance be
18607c478bd9Sstevel@tonic-gate 			 * placed in the maintenance state, so just update its
18617c478bd9Sstevel@tonic-gate 			 * state to maintenance.
18627c478bd9Sstevel@tonic-gate 			 */
18637c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_MAINTENANCE, RERR_RESTART);
18647c478bd9Sstevel@tonic-gate 			break;
18657c478bd9Sstevel@tonic-gate 		}
18667c478bd9Sstevel@tonic-gate 		break;
18677c478bd9Sstevel@tonic-gate 
18687c478bd9Sstevel@tonic-gate 	case IIS_MAINTENANCE:
18697c478bd9Sstevel@tonic-gate 		switch (event) {
18707c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_MAINT_OFF:
18717c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_DISABLE:
18727c478bd9Sstevel@tonic-gate 			/*
18737c478bd9Sstevel@tonic-gate 			 * The master restarter has requested that the instance
18747c478bd9Sstevel@tonic-gate 			 * be taken out of maintenance. Read its configuration,
18757c478bd9Sstevel@tonic-gate 			 * and if successful place the instance in the offline
18767c478bd9Sstevel@tonic-gate 			 * state and call process_offline_inst() to take it
18777c478bd9Sstevel@tonic-gate 			 * from there.
18787c478bd9Sstevel@tonic-gate 			 */
18797c478bd9Sstevel@tonic-gate 			destroy_instance_cfg(instance->config);
18807c478bd9Sstevel@tonic-gate 			instance->config = read_instance_cfg(instance->fmri);
18817c478bd9Sstevel@tonic-gate 			if (instance->config != NULL) {
18827c478bd9Sstevel@tonic-gate 				update_state(instance, IIS_OFFLINE,
18837c478bd9Sstevel@tonic-gate 				    RERR_RESTART);
18847c478bd9Sstevel@tonic-gate 				process_offline_inst(instance);
18857c478bd9Sstevel@tonic-gate 			} else {
18867c478bd9Sstevel@tonic-gate 				boolean_t enabled;
18877c478bd9Sstevel@tonic-gate 
18887c478bd9Sstevel@tonic-gate 				/*
18897c478bd9Sstevel@tonic-gate 				 * The configuration was invalid. If the
18907c478bd9Sstevel@tonic-gate 				 * service has disabled requested, let's
18917c478bd9Sstevel@tonic-gate 				 * just place the instance in disabled even
18927c478bd9Sstevel@tonic-gate 				 * though we haven't been able to run its
18937c478bd9Sstevel@tonic-gate 				 * disable method, as the slightly incorrect
18947c478bd9Sstevel@tonic-gate 				 * state is likely to be less of an issue to
18957c478bd9Sstevel@tonic-gate 				 * an administrator than refusing to move an
18967c478bd9Sstevel@tonic-gate 				 * instance to disabled. If disable isn't
18977c478bd9Sstevel@tonic-gate 				 * requested, re-mark the service's state
18987c478bd9Sstevel@tonic-gate 				 * as maintenance, so the administrator can
18997c478bd9Sstevel@tonic-gate 				 * see the request was processed.
19007c478bd9Sstevel@tonic-gate 				 */
19017c478bd9Sstevel@tonic-gate 				if ((read_enable_merged(instance->fmri,
19027c478bd9Sstevel@tonic-gate 				    &enabled) == 0) && !enabled) {
19037c478bd9Sstevel@tonic-gate 					update_state(instance, IIS_DISABLED,
19047c478bd9Sstevel@tonic-gate 					    RERR_RESTART);
19057c478bd9Sstevel@tonic-gate 				} else {
19067c478bd9Sstevel@tonic-gate 					log_invalid_cfg(instance->fmri);
19077c478bd9Sstevel@tonic-gate 					update_state(instance, IIS_MAINTENANCE,
19087c478bd9Sstevel@tonic-gate 					    RERR_FAULT);
19097c478bd9Sstevel@tonic-gate 				}
19107c478bd9Sstevel@tonic-gate 			}
19117c478bd9Sstevel@tonic-gate 			break;
19127c478bd9Sstevel@tonic-gate 		}
19137c478bd9Sstevel@tonic-gate 		break;
19147c478bd9Sstevel@tonic-gate 
19157c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_CONRATE:
19167c478bd9Sstevel@tonic-gate 		switch (event) {
19177c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DISABLE:
19187c478bd9Sstevel@tonic-gate 			/*
19197c478bd9Sstevel@tonic-gate 			 * The instance wants disabling. Take the instance
19207c478bd9Sstevel@tonic-gate 			 * offline as for the dependencies unmet event above,
19217c478bd9Sstevel@tonic-gate 			 * and then from there run the disable method to do
19227c478bd9Sstevel@tonic-gate 			 * the work to take the instance to the disabled state.
19237c478bd9Sstevel@tonic-gate 			 */
19247c478bd9Sstevel@tonic-gate 			cancel_inst_timer(instance);
19257c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_OFFLINE, RERR_RESTART);
19267c478bd9Sstevel@tonic-gate 			(void) run_method(instance, IM_DISABLE, NULL);
19277c478bd9Sstevel@tonic-gate 			break;
19287c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON:
19297c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE:
19307c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY:
19317c478bd9Sstevel@tonic-gate 			/*
19327c478bd9Sstevel@tonic-gate 			 * The master restarter has requested the instance
19337c478bd9Sstevel@tonic-gate 			 * be taken to maintenance. Cancel the timer setup
19347c478bd9Sstevel@tonic-gate 			 * when we entered this state, and go directly to
19357c478bd9Sstevel@tonic-gate 			 * maintenance.
19367c478bd9Sstevel@tonic-gate 			 */
19377c478bd9Sstevel@tonic-gate 			cancel_inst_timer(instance);
19387c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_MAINTENANCE, RERR_RESTART);
19397c478bd9Sstevel@tonic-gate 			break;
19407c478bd9Sstevel@tonic-gate 		}
19417c478bd9Sstevel@tonic-gate 		break;
19427c478bd9Sstevel@tonic-gate 
19437c478bd9Sstevel@tonic-gate 	case IIS_OFFLINE_COPIES:
19447c478bd9Sstevel@tonic-gate 		switch (event) {
19457c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DISABLE:
19467c478bd9Sstevel@tonic-gate 			/*
19477c478bd9Sstevel@tonic-gate 			 * The instance wants disabling. Update the state
19487c478bd9Sstevel@tonic-gate 			 * to offline, and run the disable method to do the
19497c478bd9Sstevel@tonic-gate 			 * work to take it to the disabled state.
19507c478bd9Sstevel@tonic-gate 			 */
19517c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_OFFLINE, RERR_RESTART);
19527c478bd9Sstevel@tonic-gate 			(void) run_method(instance, IM_DISABLE, NULL);
19537c478bd9Sstevel@tonic-gate 			break;
19547c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON:
19557c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE:
19567c478bd9Sstevel@tonic-gate 		case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY:
19577c478bd9Sstevel@tonic-gate 			/*
19587c478bd9Sstevel@tonic-gate 			 * The master restarter has requested the instance be
19597c478bd9Sstevel@tonic-gate 			 * placed in maintenance. Since it's already offline
19607c478bd9Sstevel@tonic-gate 			 * simply update the state.
19617c478bd9Sstevel@tonic-gate 			 */
19627c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_MAINTENANCE, RERR_RESTART);
19637c478bd9Sstevel@tonic-gate 			break;
19647c478bd9Sstevel@tonic-gate 		}
19657c478bd9Sstevel@tonic-gate 		break;
19667c478bd9Sstevel@tonic-gate 
19677c478bd9Sstevel@tonic-gate 	default:
19687c478bd9Sstevel@tonic-gate 		debug_msg("handle_restarter_event: instance in an "
19697c478bd9Sstevel@tonic-gate 		    "unexpected state");
19707c478bd9Sstevel@tonic-gate 		assert(0);
19717c478bd9Sstevel@tonic-gate 	}
19727c478bd9Sstevel@tonic-gate 
19737c478bd9Sstevel@tonic-gate done:
19747c478bd9Sstevel@tonic-gate 	if (send_ack)
19757c478bd9Sstevel@tonic-gate 		ack_restarter_event(B_TRUE);
19767c478bd9Sstevel@tonic-gate }
19777c478bd9Sstevel@tonic-gate 
19787c478bd9Sstevel@tonic-gate /*
19797c478bd9Sstevel@tonic-gate  * Tries to read and process an event from the event pipe. If there isn't one
19807c478bd9Sstevel@tonic-gate  * or an error occurred processing the event it returns -1. Else, if the event
19817c478bd9Sstevel@tonic-gate  * is for an instance we're not already managing we read its state, add it to
19827c478bd9Sstevel@tonic-gate  * our list to manage, and if appropriate read its configuration. Whether it's
19837c478bd9Sstevel@tonic-gate  * new to us or not, we then handle the specific event.
19847c478bd9Sstevel@tonic-gate  * Returns 0 if an event was read and processed successfully, else -1.
19857c478bd9Sstevel@tonic-gate  */
19867c478bd9Sstevel@tonic-gate static int
19877c478bd9Sstevel@tonic-gate process_restarter_event(void)
19887c478bd9Sstevel@tonic-gate {
19897c478bd9Sstevel@tonic-gate 	char			*fmri;
19907c478bd9Sstevel@tonic-gate 	size_t			fmri_size;
19917c478bd9Sstevel@tonic-gate 	restarter_event_type_t  event_type;
19927c478bd9Sstevel@tonic-gate 	instance_t		*instance;
19937c478bd9Sstevel@tonic-gate 	restarter_event_t	*event;
19947c478bd9Sstevel@tonic-gate 	ssize_t			sz;
19957c478bd9Sstevel@tonic-gate 
19967c478bd9Sstevel@tonic-gate 	debug_msg("Entering process_restarter_event");
19977c478bd9Sstevel@tonic-gate 
19987c478bd9Sstevel@tonic-gate 	/*
19997c478bd9Sstevel@tonic-gate 	 * Try to read an event pointer from the event pipe.
20007c478bd9Sstevel@tonic-gate 	 */
20017c478bd9Sstevel@tonic-gate 	errno = 0;
20027c478bd9Sstevel@tonic-gate 	switch (safe_read(rst_event_pipe[PE_CONSUMER], &event,
20037c478bd9Sstevel@tonic-gate 	    sizeof (event))) {
20047c478bd9Sstevel@tonic-gate 	case 0:
20057c478bd9Sstevel@tonic-gate 		break;
20067c478bd9Sstevel@tonic-gate 	case  1:
20077c478bd9Sstevel@tonic-gate 		if (errno == EAGAIN)	/* no event to read */
20087c478bd9Sstevel@tonic-gate 			return (-1);
20097c478bd9Sstevel@tonic-gate 
20107c478bd9Sstevel@tonic-gate 		/* other end of pipe closed */
20117c478bd9Sstevel@tonic-gate 
20127c478bd9Sstevel@tonic-gate 		/* FALLTHROUGH */
20137c478bd9Sstevel@tonic-gate 	default:			/* unexpected read error */
20147c478bd9Sstevel@tonic-gate 		/*
20157c478bd9Sstevel@tonic-gate 		 * There's something wrong with the event pipe. Let's
20167c478bd9Sstevel@tonic-gate 		 * shutdown and be restarted.
20177c478bd9Sstevel@tonic-gate 		 */
20187c478bd9Sstevel@tonic-gate 		inetd_stop();
20197c478bd9Sstevel@tonic-gate 		return (-1);
20207c478bd9Sstevel@tonic-gate 	}
20217c478bd9Sstevel@tonic-gate 
20227c478bd9Sstevel@tonic-gate 	/*
20237c478bd9Sstevel@tonic-gate 	 * Check if we're currently managing the instance which the event
20247c478bd9Sstevel@tonic-gate 	 * pertains to. If not, read its complete state and add it to our
20257c478bd9Sstevel@tonic-gate 	 * list to manage.
20267c478bd9Sstevel@tonic-gate 	 */
20277c478bd9Sstevel@tonic-gate 
20287c478bd9Sstevel@tonic-gate 	fmri_size = scf_limit(SCF_LIMIT_MAX_FMRI_LENGTH);
20297c478bd9Sstevel@tonic-gate 	if ((fmri = malloc(fmri_size)) == NULL) {
20307c478bd9Sstevel@tonic-gate 		error_msg(strerror(errno));
20317c478bd9Sstevel@tonic-gate 		goto fail;
20327c478bd9Sstevel@tonic-gate 	}
20337c478bd9Sstevel@tonic-gate 	sz = restarter_event_get_instance(event, fmri, fmri_size);
20347c478bd9Sstevel@tonic-gate 	if (sz >= fmri_size)
20357c478bd9Sstevel@tonic-gate 		assert(0);
20367c478bd9Sstevel@tonic-gate 
20377c478bd9Sstevel@tonic-gate 	for (instance = uu_list_first(instance_list); instance != NULL;
20387c478bd9Sstevel@tonic-gate 	    instance = uu_list_next(instance_list, instance)) {
20397c478bd9Sstevel@tonic-gate 		if (strcmp(instance->fmri, fmri) == 0)
20407c478bd9Sstevel@tonic-gate 			break;
20417c478bd9Sstevel@tonic-gate 	}
20427c478bd9Sstevel@tonic-gate 
20437c478bd9Sstevel@tonic-gate 	if (instance == NULL) {
20447c478bd9Sstevel@tonic-gate 		int err;
20457c478bd9Sstevel@tonic-gate 
20467c478bd9Sstevel@tonic-gate 		debug_msg("New instance to manage: %s", fmri);
20477c478bd9Sstevel@tonic-gate 
20487c478bd9Sstevel@tonic-gate 		if (((instance = create_instance(fmri)) == NULL) ||
20497c478bd9Sstevel@tonic-gate 		    (retrieve_instance_state(instance) != 0) ||
20507c478bd9Sstevel@tonic-gate 		    (retrieve_method_pids(instance) != 0)) {
20517c478bd9Sstevel@tonic-gate 			destroy_instance(instance);
20527c478bd9Sstevel@tonic-gate 			free(fmri);
20537c478bd9Sstevel@tonic-gate 			goto fail;
20547c478bd9Sstevel@tonic-gate 		}
20557c478bd9Sstevel@tonic-gate 
20567c478bd9Sstevel@tonic-gate 		if (((err = iterate_repository_contracts(instance->fmri, 0))
20577c478bd9Sstevel@tonic-gate 		    != 0) && (err != ENOENT)) {
20587c478bd9Sstevel@tonic-gate 			error_msg(gettext(
20597c478bd9Sstevel@tonic-gate 			    "Failed to adopt contracts of instance %s: %s"),
20607c478bd9Sstevel@tonic-gate 			    instance->fmri, strerror(err));
20617c478bd9Sstevel@tonic-gate 			destroy_instance(instance);
20627c478bd9Sstevel@tonic-gate 			free(fmri);
20637c478bd9Sstevel@tonic-gate 			goto fail;
20647c478bd9Sstevel@tonic-gate 		}
20657c478bd9Sstevel@tonic-gate 
20667c478bd9Sstevel@tonic-gate 		uu_list_node_init(instance, &instance->link, instance_pool);
20677c478bd9Sstevel@tonic-gate 		(void) uu_list_insert_after(instance_list, NULL, instance);
20687c478bd9Sstevel@tonic-gate 
20697c478bd9Sstevel@tonic-gate 		/*
20707c478bd9Sstevel@tonic-gate 		 * Only read configuration for instances that aren't in any of
20717c478bd9Sstevel@tonic-gate 		 * the disabled, maintenance or uninitialized states, since
20727c478bd9Sstevel@tonic-gate 		 * they'll read it on state exit.
20737c478bd9Sstevel@tonic-gate 		 */
20747c478bd9Sstevel@tonic-gate 		if ((instance->cur_istate != IIS_DISABLED) &&
20757c478bd9Sstevel@tonic-gate 		    (instance->cur_istate != IIS_MAINTENANCE) &&
20767c478bd9Sstevel@tonic-gate 		    (instance->cur_istate != IIS_UNINITIALIZED)) {
20777c478bd9Sstevel@tonic-gate 			instance->config = read_instance_cfg(instance->fmri);
20787c478bd9Sstevel@tonic-gate 			if (instance->config == NULL) {
20797c478bd9Sstevel@tonic-gate 				log_invalid_cfg(instance->fmri);
20807c478bd9Sstevel@tonic-gate 				update_state(instance, IIS_MAINTENANCE,
20817c478bd9Sstevel@tonic-gate 				    RERR_FAULT);
20827c478bd9Sstevel@tonic-gate 			}
20837c478bd9Sstevel@tonic-gate 		}
20847c478bd9Sstevel@tonic-gate 	}
20857c478bd9Sstevel@tonic-gate 
20867c478bd9Sstevel@tonic-gate 	free(fmri);
20877c478bd9Sstevel@tonic-gate 
20887c478bd9Sstevel@tonic-gate 	event_type = restarter_event_get_type(event);
20897c478bd9Sstevel@tonic-gate 	debug_msg("Event type: %d for instance: %s", event_type,
20907c478bd9Sstevel@tonic-gate 	    instance->fmri);
20917c478bd9Sstevel@tonic-gate 
20927c478bd9Sstevel@tonic-gate 	/*
20937c478bd9Sstevel@tonic-gate 	 * If the instance is currently running a method, don't process the
20947c478bd9Sstevel@tonic-gate 	 * event now, but attach it to the instance for processing when
20957c478bd9Sstevel@tonic-gate 	 * the instance finishes its transition.
20967c478bd9Sstevel@tonic-gate 	 */
20977c478bd9Sstevel@tonic-gate 	if (INST_IN_TRANSITION(instance)) {
20987c478bd9Sstevel@tonic-gate 		debug_msg("storing event %d for instance %s", event_type,
20997c478bd9Sstevel@tonic-gate 		    instance->fmri);
21007c478bd9Sstevel@tonic-gate 		instance->pending_rst_event = event_type;
21017c478bd9Sstevel@tonic-gate 	} else {
21027c478bd9Sstevel@tonic-gate 		handle_restarter_event(instance, event_type, B_TRUE);
21037c478bd9Sstevel@tonic-gate 	}
21047c478bd9Sstevel@tonic-gate 
21057c478bd9Sstevel@tonic-gate 	return (0);
21067c478bd9Sstevel@tonic-gate 
21077c478bd9Sstevel@tonic-gate fail:
21087c478bd9Sstevel@tonic-gate 	ack_restarter_event(B_FALSE);
21097c478bd9Sstevel@tonic-gate 	return (-1);
21107c478bd9Sstevel@tonic-gate }
21117c478bd9Sstevel@tonic-gate 
21127c478bd9Sstevel@tonic-gate /*
21137c478bd9Sstevel@tonic-gate  * Do the state machine processing associated with the termination of instance
21147c478bd9Sstevel@tonic-gate  * 'inst''s start method.
21157c478bd9Sstevel@tonic-gate  */
21167c478bd9Sstevel@tonic-gate void
21177c478bd9Sstevel@tonic-gate process_start_term(instance_t *inst)
21187c478bd9Sstevel@tonic-gate {
21197c478bd9Sstevel@tonic-gate 	basic_cfg_t	*cfg;
21207c478bd9Sstevel@tonic-gate 
21217c478bd9Sstevel@tonic-gate 	debug_msg("Entering process_start_term: inst: %s", inst->fmri);
21227c478bd9Sstevel@tonic-gate 
21237c478bd9Sstevel@tonic-gate 	inst->copies--;
21247c478bd9Sstevel@tonic-gate 
21257c478bd9Sstevel@tonic-gate 	if ((inst->cur_istate == IIS_MAINTENANCE) ||
21267c478bd9Sstevel@tonic-gate 	    (inst->cur_istate == IIS_DISABLED)) {
21277c478bd9Sstevel@tonic-gate 		/* do any further processing/checks when we exit these states */
21287c478bd9Sstevel@tonic-gate 		return;
21297c478bd9Sstevel@tonic-gate 	}
21307c478bd9Sstevel@tonic-gate 
21317c478bd9Sstevel@tonic-gate 	cfg = inst->config->basic;
21327c478bd9Sstevel@tonic-gate 
21337c478bd9Sstevel@tonic-gate 	if (cfg->iswait) {
21347c478bd9Sstevel@tonic-gate 		proto_info_t	*pi;
21357c478bd9Sstevel@tonic-gate 
21367c478bd9Sstevel@tonic-gate 		switch (inst->cur_istate) {
21377c478bd9Sstevel@tonic-gate 		case IIS_ONLINE:
21387c478bd9Sstevel@tonic-gate 		case IIS_DEGRADED:
21397c478bd9Sstevel@tonic-gate 		case IIS_IN_REFRESH_METHOD:
21407c478bd9Sstevel@tonic-gate 			/*
21417c478bd9Sstevel@tonic-gate 			 * A wait type service's start method has exited.
21427c478bd9Sstevel@tonic-gate 			 * Check if the method was fired off in this inetd's
21437c478bd9Sstevel@tonic-gate 			 * lifetime, or a previous one; if the former,
21447c478bd9Sstevel@tonic-gate 			 * re-commence listening on the service's behalf; if
21457c478bd9Sstevel@tonic-gate 			 * the latter, mark the service offline and let bind
21467c478bd9Sstevel@tonic-gate 			 * attempts commence.
21477c478bd9Sstevel@tonic-gate 			 */
21487c478bd9Sstevel@tonic-gate 			for (pi = uu_list_first(cfg->proto_list); pi != NULL;
21497c478bd9Sstevel@tonic-gate 			    pi = uu_list_next(cfg->proto_list, pi)) {
21507c478bd9Sstevel@tonic-gate 				/*
21517c478bd9Sstevel@tonic-gate 				 * If a bound fd exists, the method was fired
21527c478bd9Sstevel@tonic-gate 				 * off during this inetd's lifetime.
21537c478bd9Sstevel@tonic-gate 				 */
21547c478bd9Sstevel@tonic-gate 				if (pi->listen_fd != -1)
21557c478bd9Sstevel@tonic-gate 					break;
21567c478bd9Sstevel@tonic-gate 			}
21577c478bd9Sstevel@tonic-gate 			if (pi != NULL) {
21587c478bd9Sstevel@tonic-gate 				if (poll_bound_fds(inst, B_TRUE) != 0)
21597c478bd9Sstevel@tonic-gate 					handle_bind_failure(inst);
21607c478bd9Sstevel@tonic-gate 			} else {
21617c478bd9Sstevel@tonic-gate 				update_state(inst, IIS_OFFLINE, RERR_RESTART);
21627c478bd9Sstevel@tonic-gate 				create_bound_fds(inst);
21637c478bd9Sstevel@tonic-gate 			}
21647c478bd9Sstevel@tonic-gate 		}
21657c478bd9Sstevel@tonic-gate 	} else {
21667c478bd9Sstevel@tonic-gate 		/*
21677c478bd9Sstevel@tonic-gate 		 * Check if a nowait service should be brought back online
21687c478bd9Sstevel@tonic-gate 		 * after exceeding its copies limit.
21697c478bd9Sstevel@tonic-gate 		 */
21707c478bd9Sstevel@tonic-gate 		if ((inst->cur_istate == IIS_OFFLINE_COPIES) &&
21717c478bd9Sstevel@tonic-gate 		    !copies_limit_exceeded(inst)) {
21727c478bd9Sstevel@tonic-gate 			update_state(inst, IIS_OFFLINE, RERR_NONE);
21737c478bd9Sstevel@tonic-gate 			process_offline_inst(inst);
21747c478bd9Sstevel@tonic-gate 		}
21757c478bd9Sstevel@tonic-gate 	}
21767c478bd9Sstevel@tonic-gate }
21777c478bd9Sstevel@tonic-gate 
21787c478bd9Sstevel@tonic-gate /*
21797c478bd9Sstevel@tonic-gate  * If the instance has a pending event process it and initiate the
21807c478bd9Sstevel@tonic-gate  * acknowledgement.
21817c478bd9Sstevel@tonic-gate  */
21827c478bd9Sstevel@tonic-gate static void
21837c478bd9Sstevel@tonic-gate process_pending_rst_event(instance_t *inst)
21847c478bd9Sstevel@tonic-gate {
21857c478bd9Sstevel@tonic-gate 	if (inst->pending_rst_event != RESTARTER_EVENT_TYPE_INVALID) {
21867c478bd9Sstevel@tonic-gate 		restarter_event_type_t re;
21877c478bd9Sstevel@tonic-gate 
21887c478bd9Sstevel@tonic-gate 		debug_msg("Injecting pending event %d for instance %s",
21897c478bd9Sstevel@tonic-gate 		    inst->pending_rst_event, inst->fmri);
21907c478bd9Sstevel@tonic-gate 		re = inst->pending_rst_event;
21917c478bd9Sstevel@tonic-gate 		inst->pending_rst_event = RESTARTER_EVENT_TYPE_INVALID;
21927c478bd9Sstevel@tonic-gate 		handle_restarter_event(inst, re, B_TRUE);
21937c478bd9Sstevel@tonic-gate 	}
21947c478bd9Sstevel@tonic-gate }
21957c478bd9Sstevel@tonic-gate 
21967c478bd9Sstevel@tonic-gate /*
21977c478bd9Sstevel@tonic-gate  * Do the state machine processing associated with the termination
21987c478bd9Sstevel@tonic-gate  * of the specified instance's non-start method with the specified status.
21997c478bd9Sstevel@tonic-gate  * Once the processing of the termination is done, the function also picks up
22007c478bd9Sstevel@tonic-gate  * any processing that was blocked on the method running.
22017c478bd9Sstevel@tonic-gate  */
22027c478bd9Sstevel@tonic-gate void
22037c478bd9Sstevel@tonic-gate process_non_start_term(instance_t *inst, int status)
22047c478bd9Sstevel@tonic-gate {
22057c478bd9Sstevel@tonic-gate 	boolean_t ran_online_method = B_FALSE;
22067c478bd9Sstevel@tonic-gate 
22077c478bd9Sstevel@tonic-gate 	debug_msg("Entering process_non_start_term: inst: %s, method: %s",
22087c478bd9Sstevel@tonic-gate 	    inst->fmri, methods[states[inst->cur_istate].method_running].name);
22097c478bd9Sstevel@tonic-gate 
22107c478bd9Sstevel@tonic-gate 	if (status == IMRET_FAILURE) {
22117c478bd9Sstevel@tonic-gate 		error_msg(gettext("The %s method of instance %s failed, "
22127c478bd9Sstevel@tonic-gate 		    "transitioning to maintenance"),
22137c478bd9Sstevel@tonic-gate 		    methods[states[inst->cur_istate].method_running].name,
22147c478bd9Sstevel@tonic-gate 		    inst->fmri);
22157c478bd9Sstevel@tonic-gate 
22167c478bd9Sstevel@tonic-gate 		if ((inst->cur_istate == IIS_IN_ONLINE_METHOD) ||
22177c478bd9Sstevel@tonic-gate 		    (inst->cur_istate == IIS_IN_REFRESH_METHOD))
22187c478bd9Sstevel@tonic-gate 			destroy_bound_fds(inst);
22197c478bd9Sstevel@tonic-gate 
22207c478bd9Sstevel@tonic-gate 		update_state(inst, IIS_MAINTENANCE, RERR_FAULT);
22217c478bd9Sstevel@tonic-gate 
22227c478bd9Sstevel@tonic-gate 		inst->maintenance_req = B_FALSE;
22237c478bd9Sstevel@tonic-gate 		inst->conn_rate_exceeded = B_FALSE;
22247c478bd9Sstevel@tonic-gate 
22257c478bd9Sstevel@tonic-gate 		if (inst->new_config != NULL) {
22267c478bd9Sstevel@tonic-gate 			destroy_instance_cfg(inst->new_config);
22277c478bd9Sstevel@tonic-gate 			inst->new_config = NULL;
22287c478bd9Sstevel@tonic-gate 		}
22297c478bd9Sstevel@tonic-gate 
22307c478bd9Sstevel@tonic-gate 		if (!inetd_stopping)
22317c478bd9Sstevel@tonic-gate 			process_pending_rst_event(inst);
22327c478bd9Sstevel@tonic-gate 
22337c478bd9Sstevel@tonic-gate 		return;
22347c478bd9Sstevel@tonic-gate 	}
22357c478bd9Sstevel@tonic-gate 
22367c478bd9Sstevel@tonic-gate 	/* non-failure method return */
22377c478bd9Sstevel@tonic-gate 
22387c478bd9Sstevel@tonic-gate 	if (status != IMRET_SUCCESS) {
22397c478bd9Sstevel@tonic-gate 		/*
22407c478bd9Sstevel@tonic-gate 		 * An instance method never returned a supported return code.
22417c478bd9Sstevel@tonic-gate 		 * We'll assume this means the method succeeded for now whilst
22427c478bd9Sstevel@tonic-gate 		 * non-GL-cognizant methods are used - eg. pkill.
22437c478bd9Sstevel@tonic-gate 		 */
22447c478bd9Sstevel@tonic-gate 		debug_msg("The %s method of instance %s returned "
22457c478bd9Sstevel@tonic-gate 		    "non-compliant exit code: %d, assuming success",
22467c478bd9Sstevel@tonic-gate 		    methods[states[inst->cur_istate].method_running].name,
22477c478bd9Sstevel@tonic-gate 		    inst->fmri, status);
22487c478bd9Sstevel@tonic-gate 	}
22497c478bd9Sstevel@tonic-gate 
22507c478bd9Sstevel@tonic-gate 	/*
22517c478bd9Sstevel@tonic-gate 	 * Update the state from the in-transition state.
22527c478bd9Sstevel@tonic-gate 	 */
22537c478bd9Sstevel@tonic-gate 	switch (inst->cur_istate) {
22547c478bd9Sstevel@tonic-gate 	case IIS_IN_ONLINE_METHOD:
22557c478bd9Sstevel@tonic-gate 		ran_online_method = B_TRUE;
22567c478bd9Sstevel@tonic-gate 		/* FALLTHROUGH */
22577c478bd9Sstevel@tonic-gate 	case IIS_IN_REFRESH_METHOD:
22587c478bd9Sstevel@tonic-gate 		/*
22597c478bd9Sstevel@tonic-gate 		 * If we've exhausted the bind retries, flag that by setting
22607c478bd9Sstevel@tonic-gate 		 * the instance's state to degraded.
22617c478bd9Sstevel@tonic-gate 		 */
22627c478bd9Sstevel@tonic-gate 		if (inst->bind_retries_exceeded) {
22637c478bd9Sstevel@tonic-gate 			update_state(inst, IIS_DEGRADED, RERR_NONE);
22647c478bd9Sstevel@tonic-gate 			break;
22657c478bd9Sstevel@tonic-gate 		}
22667c478bd9Sstevel@tonic-gate 		/* FALLTHROUGH */
22677c478bd9Sstevel@tonic-gate 	default:
22687c478bd9Sstevel@tonic-gate 		update_state(inst,
22697c478bd9Sstevel@tonic-gate 		    methods[states[inst->cur_istate].method_running].dst_state,
22707c478bd9Sstevel@tonic-gate 		    RERR_NONE);
22717c478bd9Sstevel@tonic-gate 	}
22727c478bd9Sstevel@tonic-gate 
22737c478bd9Sstevel@tonic-gate 	if (inst->cur_istate == IIS_OFFLINE) {
22747c478bd9Sstevel@tonic-gate 		if (inst->new_config != NULL) {
22757c478bd9Sstevel@tonic-gate 			/*
22767c478bd9Sstevel@tonic-gate 			 * This instance was found during refresh to need
22777c478bd9Sstevel@tonic-gate 			 * taking offline because its newly read configuration
22787c478bd9Sstevel@tonic-gate 			 * was sufficiently different. Now we're offline,
22797c478bd9Sstevel@tonic-gate 			 * activate this new configuration.
22807c478bd9Sstevel@tonic-gate 			 */
22817c478bd9Sstevel@tonic-gate 			destroy_instance_cfg(inst->config);
22827c478bd9Sstevel@tonic-gate 			inst->config = inst->new_config;
22837c478bd9Sstevel@tonic-gate 			inst->new_config = NULL;
22847c478bd9Sstevel@tonic-gate 		}
22857c478bd9Sstevel@tonic-gate 
22867c478bd9Sstevel@tonic-gate 		/* continue/complete any transitions that are in progress */
22877c478bd9Sstevel@tonic-gate 		process_offline_inst(inst);
22887c478bd9Sstevel@tonic-gate 
22897c478bd9Sstevel@tonic-gate 	} else if (ran_online_method) {
22907c478bd9Sstevel@tonic-gate 		/*
22917c478bd9Sstevel@tonic-gate 		 * We've just successfully executed the online method. We have
22927c478bd9Sstevel@tonic-gate 		 * a set of bound network fds that were created before running
22937c478bd9Sstevel@tonic-gate 		 * this method, so now we're online start listening for
22947c478bd9Sstevel@tonic-gate 		 * connections on them.
22957c478bd9Sstevel@tonic-gate 		 */
22967c478bd9Sstevel@tonic-gate 		if (poll_bound_fds(inst, B_TRUE) != 0)
22977c478bd9Sstevel@tonic-gate 			handle_bind_failure(inst);
22987c478bd9Sstevel@tonic-gate 	}
22997c478bd9Sstevel@tonic-gate 
23007c478bd9Sstevel@tonic-gate 	/*
23017c478bd9Sstevel@tonic-gate 	 * If we're now out of transition (process_offline_inst() could have
23027c478bd9Sstevel@tonic-gate 	 * fired off another method), carry out any jobs that were blocked by
23037c478bd9Sstevel@tonic-gate 	 * us being in transition.
23047c478bd9Sstevel@tonic-gate 	 */
23057c478bd9Sstevel@tonic-gate 	if (!INST_IN_TRANSITION(inst)) {
23067c478bd9Sstevel@tonic-gate 		if (inetd_stopping) {
23077c478bd9Sstevel@tonic-gate 			if (!instance_stopped(inst)) {
23087c478bd9Sstevel@tonic-gate 				/*
23097c478bd9Sstevel@tonic-gate 				 * inetd is stopping, and this instance hasn't
23107c478bd9Sstevel@tonic-gate 				 * been stopped. Inject a stop event.
23117c478bd9Sstevel@tonic-gate 				 */
23127c478bd9Sstevel@tonic-gate 				handle_restarter_event(inst,
23137c478bd9Sstevel@tonic-gate 				    RESTARTER_EVENT_TYPE_STOP, B_FALSE);
23147c478bd9Sstevel@tonic-gate 			}
23157c478bd9Sstevel@tonic-gate 		} else {
23167c478bd9Sstevel@tonic-gate 			process_pending_rst_event(inst);
23177c478bd9Sstevel@tonic-gate 		}
23187c478bd9Sstevel@tonic-gate 	}
23197c478bd9Sstevel@tonic-gate }
23207c478bd9Sstevel@tonic-gate 
23217c478bd9Sstevel@tonic-gate /*
23227c478bd9Sstevel@tonic-gate  * Check if configuration file specified is readable. If not return B_FALSE,
23237c478bd9Sstevel@tonic-gate  * else return B_TRUE.
23247c478bd9Sstevel@tonic-gate  */
23257c478bd9Sstevel@tonic-gate static boolean_t
23267c478bd9Sstevel@tonic-gate can_read_file(const char *path)
23277c478bd9Sstevel@tonic-gate {
23287c478bd9Sstevel@tonic-gate 	int	ret;
23297c478bd9Sstevel@tonic-gate 	int	serrno;
23307c478bd9Sstevel@tonic-gate 
23317c478bd9Sstevel@tonic-gate 	debug_msg("Entering can_read_file");
23327c478bd9Sstevel@tonic-gate 	do {
23337c478bd9Sstevel@tonic-gate 		ret = access(path, R_OK);
23347c478bd9Sstevel@tonic-gate 	} while ((ret < 0) && (errno == EINTR));
23357c478bd9Sstevel@tonic-gate 	if (ret < 0) {
23367c478bd9Sstevel@tonic-gate 		if (errno != ENOENT) {
23377c478bd9Sstevel@tonic-gate 			serrno = errno;
23387c478bd9Sstevel@tonic-gate 			error_msg(gettext("Failed to access configuration "
23397c478bd9Sstevel@tonic-gate 			    "file %s for performing modification checks: %s"),
23407c478bd9Sstevel@tonic-gate 			    path, strerror(errno));
23417c478bd9Sstevel@tonic-gate 			errno = serrno;
23427c478bd9Sstevel@tonic-gate 		}
23437c478bd9Sstevel@tonic-gate 		return (B_FALSE);
23447c478bd9Sstevel@tonic-gate 	}
23457c478bd9Sstevel@tonic-gate 	return (B_TRUE);
23467c478bd9Sstevel@tonic-gate }
23477c478bd9Sstevel@tonic-gate 
23487c478bd9Sstevel@tonic-gate /*
23497c478bd9Sstevel@tonic-gate  * Check whether the configuration file has changed contents since inetd
23507c478bd9Sstevel@tonic-gate  * was last started/refreshed, and if so, log a message indicating that
23517c478bd9Sstevel@tonic-gate  * inetconv needs to be run.
23527c478bd9Sstevel@tonic-gate  */
23537c478bd9Sstevel@tonic-gate static void
23547c478bd9Sstevel@tonic-gate check_conf_file(void)
23557c478bd9Sstevel@tonic-gate {
23567c478bd9Sstevel@tonic-gate 	char		*new_hash;
23577c478bd9Sstevel@tonic-gate 	char		*old_hash = NULL;
23587c478bd9Sstevel@tonic-gate 	scf_error_t	ret;
23597c478bd9Sstevel@tonic-gate 	const char	*file;
23607c478bd9Sstevel@tonic-gate 
23617c478bd9Sstevel@tonic-gate 	debug_msg("Entering check_conf_file");
23627c478bd9Sstevel@tonic-gate 
23637c478bd9Sstevel@tonic-gate 	if (conf_file == NULL) {
23647c478bd9Sstevel@tonic-gate 		/*
23657c478bd9Sstevel@tonic-gate 		 * No explicit config file specified, so see if one of the
23667c478bd9Sstevel@tonic-gate 		 * default two are readable, checking the primary one first
23677c478bd9Sstevel@tonic-gate 		 * followed by the secondary.
23687c478bd9Sstevel@tonic-gate 		 */
23697c478bd9Sstevel@tonic-gate 		if (can_read_file(PRIMARY_DEFAULT_CONF_FILE)) {
23707c478bd9Sstevel@tonic-gate 			file = PRIMARY_DEFAULT_CONF_FILE;
23717c478bd9Sstevel@tonic-gate 		} else if ((errno == ENOENT) &&
23727c478bd9Sstevel@tonic-gate 		    can_read_file(SECONDARY_DEFAULT_CONF_FILE)) {
23737c478bd9Sstevel@tonic-gate 			file = SECONDARY_DEFAULT_CONF_FILE;
23747c478bd9Sstevel@tonic-gate 		} else {
23757c478bd9Sstevel@tonic-gate 			return;
23767c478bd9Sstevel@tonic-gate 		}
23777c478bd9Sstevel@tonic-gate 	} else {
23787c478bd9Sstevel@tonic-gate 		file = conf_file;
23797c478bd9Sstevel@tonic-gate 		if (!can_read_file(file))
23807c478bd9Sstevel@tonic-gate 			return;
23817c478bd9Sstevel@tonic-gate 	}
23827c478bd9Sstevel@tonic-gate 
23837c478bd9Sstevel@tonic-gate 	if (calculate_hash(file, &new_hash) == 0) {
23847c478bd9Sstevel@tonic-gate 		ret = retrieve_inetd_hash(&old_hash);
23857c478bd9Sstevel@tonic-gate 		if (((ret == SCF_ERROR_NONE) &&
23867c478bd9Sstevel@tonic-gate 		    (strcmp(old_hash, new_hash) != 0))) {
23877c478bd9Sstevel@tonic-gate 			/* modified config file */
23887c478bd9Sstevel@tonic-gate 			warn_msg(gettext(
23897c478bd9Sstevel@tonic-gate 			    "Configuration file %s has been modified since "
23907c478bd9Sstevel@tonic-gate 			    "inetconv was last run. \"inetconv -i %s\" must be "
23917c478bd9Sstevel@tonic-gate 			    "run to apply any changes to the SMF"), file, file);
23927c478bd9Sstevel@tonic-gate 		} else if ((ret != SCF_ERROR_NOT_FOUND) &&
23937c478bd9Sstevel@tonic-gate 		    (ret != SCF_ERROR_NONE)) {
23947c478bd9Sstevel@tonic-gate 			/* No message if hash not yet computed */
23957c478bd9Sstevel@tonic-gate 			error_msg(gettext("Failed to check whether "
23967c478bd9Sstevel@tonic-gate 			    "configuration file %s has been modified: %s"),
23977c478bd9Sstevel@tonic-gate 			    file, scf_strerror(ret));
23987c478bd9Sstevel@tonic-gate 		}
23997c478bd9Sstevel@tonic-gate 		free(old_hash);
24007c478bd9Sstevel@tonic-gate 		free(new_hash);
24017c478bd9Sstevel@tonic-gate 	} else {
24027c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to check whether configuration file "
24037c478bd9Sstevel@tonic-gate 		    "%s has been modified: %s"), file, strerror(errno));
24047c478bd9Sstevel@tonic-gate 	}
24057c478bd9Sstevel@tonic-gate }
24067c478bd9Sstevel@tonic-gate 
24077c478bd9Sstevel@tonic-gate /*
24087c478bd9Sstevel@tonic-gate  * Refresh all inetd's managed instances and check the configuration file
24097c478bd9Sstevel@tonic-gate  * for any updates since inetconv was last run, logging a message if there
24107c478bd9Sstevel@tonic-gate  * are. We call the SMF refresh function to refresh each instance so that
24117c478bd9Sstevel@tonic-gate  * the refresh request goes through the framework, and thus results in the
24127c478bd9Sstevel@tonic-gate  * running snapshot of each instance being updated from the configuration
24137c478bd9Sstevel@tonic-gate  * snapshot.
24147c478bd9Sstevel@tonic-gate  */
24157c478bd9Sstevel@tonic-gate static void
24167c478bd9Sstevel@tonic-gate inetd_refresh(void)
24177c478bd9Sstevel@tonic-gate {
24187c478bd9Sstevel@tonic-gate 	instance_t	*inst;
24197c478bd9Sstevel@tonic-gate 
24207c478bd9Sstevel@tonic-gate 	debug_msg("Entering inetd_refresh");
24217c478bd9Sstevel@tonic-gate 
24227c478bd9Sstevel@tonic-gate 	/* call libscf to send refresh requests for all managed instances */
24237c478bd9Sstevel@tonic-gate 	for (inst = uu_list_first(instance_list); inst != NULL;
24247c478bd9Sstevel@tonic-gate 	    inst = uu_list_next(instance_list, inst)) {
24257c478bd9Sstevel@tonic-gate 		if (smf_refresh_instance(inst->fmri) < 0) {
24267c478bd9Sstevel@tonic-gate 			error_msg(gettext("Failed to refresh instance %s: %s"),
24277c478bd9Sstevel@tonic-gate 			    inst->fmri, scf_strerror(scf_error()));
24287c478bd9Sstevel@tonic-gate 		}
24297c478bd9Sstevel@tonic-gate 	}
24307c478bd9Sstevel@tonic-gate 
24317c478bd9Sstevel@tonic-gate 	/*
24327c478bd9Sstevel@tonic-gate 	 * Log a message if the configuration file has changed since inetconv
24337c478bd9Sstevel@tonic-gate 	 * was last run.
24347c478bd9Sstevel@tonic-gate 	 */
24357c478bd9Sstevel@tonic-gate 	check_conf_file();
24367c478bd9Sstevel@tonic-gate }
24377c478bd9Sstevel@tonic-gate 
24387c478bd9Sstevel@tonic-gate /*
24397c478bd9Sstevel@tonic-gate  * Initiate inetd's shutdown.
24407c478bd9Sstevel@tonic-gate  */
24417c478bd9Sstevel@tonic-gate static void
24427c478bd9Sstevel@tonic-gate inetd_stop(void)
24437c478bd9Sstevel@tonic-gate {
24447c478bd9Sstevel@tonic-gate 	instance_t *inst;
24457c478bd9Sstevel@tonic-gate 
24467c478bd9Sstevel@tonic-gate 	debug_msg("Entering inetd_stop");
24477c478bd9Sstevel@tonic-gate 
24487c478bd9Sstevel@tonic-gate 	/* Block handling signals for stop and refresh */
24497c478bd9Sstevel@tonic-gate 	(void) sighold(SIGHUP);
24507c478bd9Sstevel@tonic-gate 	(void) sighold(SIGTERM);
24517c478bd9Sstevel@tonic-gate 
24527c478bd9Sstevel@tonic-gate 	/* Indicate inetd is coming down */
24537c478bd9Sstevel@tonic-gate 	inetd_stopping = B_TRUE;
24547c478bd9Sstevel@tonic-gate 
24557c478bd9Sstevel@tonic-gate 	/* Stop polling on restarter events. */
24567c478bd9Sstevel@tonic-gate 	clear_pollfd(rst_event_pipe[PE_CONSUMER]);
24577c478bd9Sstevel@tonic-gate 
24587c478bd9Sstevel@tonic-gate 	/* Stop polling for any more stop/refresh requests. */
24597c478bd9Sstevel@tonic-gate 	clear_pollfd(uds_fd);
24607c478bd9Sstevel@tonic-gate 
24617c478bd9Sstevel@tonic-gate 	/*
24627c478bd9Sstevel@tonic-gate 	 * Send a stop event to all currently unstopped instances that
24637c478bd9Sstevel@tonic-gate 	 * aren't in transition. For those that are in transition, the
24647c478bd9Sstevel@tonic-gate 	 * event will get sent when the transition completes.
24657c478bd9Sstevel@tonic-gate 	 */
24667c478bd9Sstevel@tonic-gate 	for (inst = uu_list_first(instance_list); inst != NULL;
24677c478bd9Sstevel@tonic-gate 	    inst = uu_list_next(instance_list, inst)) {
24687c478bd9Sstevel@tonic-gate 		if (!instance_stopped(inst) && !INST_IN_TRANSITION(inst))
24697c478bd9Sstevel@tonic-gate 			handle_restarter_event(inst,
24707c478bd9Sstevel@tonic-gate 			    RESTARTER_EVENT_TYPE_STOP, B_FALSE);
24717c478bd9Sstevel@tonic-gate 	}
24727c478bd9Sstevel@tonic-gate }
24737c478bd9Sstevel@tonic-gate 
24747c478bd9Sstevel@tonic-gate /*
24757c478bd9Sstevel@tonic-gate  * Sets up the intra-inetd-process Unix Domain Socket.
24767c478bd9Sstevel@tonic-gate  * Returns -1 on error, else 0.
24777c478bd9Sstevel@tonic-gate  */
24787c478bd9Sstevel@tonic-gate static int
24797c478bd9Sstevel@tonic-gate uds_init(void)
24807c478bd9Sstevel@tonic-gate {
24817c478bd9Sstevel@tonic-gate 	struct sockaddr_un addr;
24827c478bd9Sstevel@tonic-gate 
24837c478bd9Sstevel@tonic-gate 	debug_msg("Entering uds_init");
24847c478bd9Sstevel@tonic-gate 
24857c478bd9Sstevel@tonic-gate 	if ((uds_fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
24867c478bd9Sstevel@tonic-gate 		error_msg("socket: %s", strerror(errno));
24877c478bd9Sstevel@tonic-gate 		return (-1);
24887c478bd9Sstevel@tonic-gate 	}
24897c478bd9Sstevel@tonic-gate 
24907c478bd9Sstevel@tonic-gate 	disable_blocking(uds_fd);
24917c478bd9Sstevel@tonic-gate 
24927c478bd9Sstevel@tonic-gate 	(void) unlink(INETD_UDS_PATH);  /* clean-up any stale files */
24937c478bd9Sstevel@tonic-gate 
24947c478bd9Sstevel@tonic-gate 	(void) memset(&addr, 0, sizeof (addr));
24957c478bd9Sstevel@tonic-gate 	addr.sun_family = AF_UNIX;
24967c478bd9Sstevel@tonic-gate 	/* CONSTCOND */
24977c478bd9Sstevel@tonic-gate 	assert(sizeof (INETD_UDS_PATH) <= sizeof (addr.sun_path));
24987c478bd9Sstevel@tonic-gate 	(void) strlcpy(addr.sun_path, INETD_UDS_PATH, sizeof (addr.sun_path));
24997c478bd9Sstevel@tonic-gate 
25007c478bd9Sstevel@tonic-gate 	if (bind(uds_fd, (struct sockaddr *)(&addr), sizeof (addr)) < 0) {
25017c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to bind socket to %s: %s"),
25027c478bd9Sstevel@tonic-gate 		    INETD_UDS_PATH, strerror(errno));
25037c478bd9Sstevel@tonic-gate 		(void) close(uds_fd);
25047c478bd9Sstevel@tonic-gate 		return (-1);
25057c478bd9Sstevel@tonic-gate 	}
25067c478bd9Sstevel@tonic-gate 
25077c478bd9Sstevel@tonic-gate 	(void) listen(uds_fd, UDS_BACKLOG);
25087c478bd9Sstevel@tonic-gate 
25097c478bd9Sstevel@tonic-gate 	if ((set_pollfd(uds_fd, POLLIN)) == -1) {
25107c478bd9Sstevel@tonic-gate 		(void) close(uds_fd);
25117c478bd9Sstevel@tonic-gate 		(void) unlink(INETD_UDS_PATH);
25127c478bd9Sstevel@tonic-gate 		return (-1);
25137c478bd9Sstevel@tonic-gate 	}
25147c478bd9Sstevel@tonic-gate 
25157c478bd9Sstevel@tonic-gate 	return (0);
25167c478bd9Sstevel@tonic-gate }
25177c478bd9Sstevel@tonic-gate 
25187c478bd9Sstevel@tonic-gate static void
25197c478bd9Sstevel@tonic-gate uds_fini(void)
25207c478bd9Sstevel@tonic-gate {
25217c478bd9Sstevel@tonic-gate 	if (uds_fd != -1)
25227c478bd9Sstevel@tonic-gate 		(void) close(uds_fd);
25237c478bd9Sstevel@tonic-gate 	(void) unlink(INETD_UDS_PATH);
25247c478bd9Sstevel@tonic-gate }
25257c478bd9Sstevel@tonic-gate 
25267c478bd9Sstevel@tonic-gate /*
25277c478bd9Sstevel@tonic-gate  * Handle an incoming request on the Unix Domain Socket. Returns -1 if there
25287c478bd9Sstevel@tonic-gate  * was an error handling the event, else 0.
25297c478bd9Sstevel@tonic-gate  */
25307c478bd9Sstevel@tonic-gate static int
25317c478bd9Sstevel@tonic-gate process_uds_event(void)
25327c478bd9Sstevel@tonic-gate {
25337c478bd9Sstevel@tonic-gate 	uds_request_t		req;
25347c478bd9Sstevel@tonic-gate 	int			fd;
25357c478bd9Sstevel@tonic-gate 	struct sockaddr_un	addr;
25367c478bd9Sstevel@tonic-gate 	socklen_t		len = sizeof (addr);
25377c478bd9Sstevel@tonic-gate 	int			ret;
25387c478bd9Sstevel@tonic-gate 	uint_t			retries = 0;
25397c478bd9Sstevel@tonic-gate 
25407c478bd9Sstevel@tonic-gate 	debug_msg("Entering process_uds_event");
25417c478bd9Sstevel@tonic-gate 
25427c478bd9Sstevel@tonic-gate 	do {
25437c478bd9Sstevel@tonic-gate 		fd = accept(uds_fd, (struct sockaddr *)&addr, &len);
25447c478bd9Sstevel@tonic-gate 	} while ((fd < 0) && (errno == EINTR));
25457c478bd9Sstevel@tonic-gate 	if (fd < 0) {
25467c478bd9Sstevel@tonic-gate 		if (errno != EWOULDBLOCK)
25477c478bd9Sstevel@tonic-gate 			error_msg("accept failed: %s", strerror(errno));
25487c478bd9Sstevel@tonic-gate 		return (-1);
25497c478bd9Sstevel@tonic-gate 	}
25507c478bd9Sstevel@tonic-gate 
25517c478bd9Sstevel@tonic-gate 	for (retries = 0; retries < UDS_RECV_RETRIES; retries++) {
25527c478bd9Sstevel@tonic-gate 		if (((ret = safe_read(fd, &req, sizeof (req))) != 1) ||
25537c478bd9Sstevel@tonic-gate 		    (errno != EAGAIN))
25547c478bd9Sstevel@tonic-gate 			break;
25557c478bd9Sstevel@tonic-gate 
25567c478bd9Sstevel@tonic-gate 		(void) poll(NULL, 0, 100);	/* 100ms pause */
25577c478bd9Sstevel@tonic-gate 	}
25587c478bd9Sstevel@tonic-gate 
25597c478bd9Sstevel@tonic-gate 	if (ret != 0) {
25607c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed read: %s"), strerror(errno));
25617c478bd9Sstevel@tonic-gate 		(void) close(fd);
25627c478bd9Sstevel@tonic-gate 		return (-1);
25637c478bd9Sstevel@tonic-gate 	}
25647c478bd9Sstevel@tonic-gate 
25657c478bd9Sstevel@tonic-gate 	switch (req) {
25667c478bd9Sstevel@tonic-gate 	case UR_REFRESH_INETD:
25677c478bd9Sstevel@tonic-gate 		/* flag the request for event_loop() to process */
25687c478bd9Sstevel@tonic-gate 		refresh_inetd_requested = B_TRUE;
25697c478bd9Sstevel@tonic-gate 		(void) close(fd);
25707c478bd9Sstevel@tonic-gate 		break;
25717c478bd9Sstevel@tonic-gate 	case UR_STOP_INETD:
25727c478bd9Sstevel@tonic-gate 		inetd_stop();
25737c478bd9Sstevel@tonic-gate 		break;
25747c478bd9Sstevel@tonic-gate 	default:
25757c478bd9Sstevel@tonic-gate 		error_msg("unexpected UDS request");
25767c478bd9Sstevel@tonic-gate 		(void) close(fd);
25777c478bd9Sstevel@tonic-gate 		return (-1);
25787c478bd9Sstevel@tonic-gate 	}
25797c478bd9Sstevel@tonic-gate 
25807c478bd9Sstevel@tonic-gate 	return (0);
25817c478bd9Sstevel@tonic-gate }
25827c478bd9Sstevel@tonic-gate 
25837c478bd9Sstevel@tonic-gate /*
25847c478bd9Sstevel@tonic-gate  * Perform checks for common exec string errors. We limit the checks to
25857c478bd9Sstevel@tonic-gate  * whether the file exists, is a regular file, and has at least one execute
25867c478bd9Sstevel@tonic-gate  * bit set. We leave the core security checks to exec() so as not to duplicate
25877c478bd9Sstevel@tonic-gate  * and thus incur the associated drawbacks, but hope to catch the common
25887c478bd9Sstevel@tonic-gate  * errors here.
25897c478bd9Sstevel@tonic-gate  */
25907c478bd9Sstevel@tonic-gate static boolean_t
25917c478bd9Sstevel@tonic-gate passes_basic_exec_checks(const char *instance, const char *method,
25927c478bd9Sstevel@tonic-gate     const char *path)
25937c478bd9Sstevel@tonic-gate {
25947c478bd9Sstevel@tonic-gate 	struct stat	sbuf;
25957c478bd9Sstevel@tonic-gate 
25967c478bd9Sstevel@tonic-gate 	debug_msg("Entering passes_basic_exec_checks");
25977c478bd9Sstevel@tonic-gate 
25987c478bd9Sstevel@tonic-gate 	/* check the file exists */
25997c478bd9Sstevel@tonic-gate 	while (stat(path, &sbuf) == -1) {
26007c478bd9Sstevel@tonic-gate 		if (errno != EINTR) {
26017c478bd9Sstevel@tonic-gate 			error_msg(gettext(
26027c478bd9Sstevel@tonic-gate 			    "Can't stat the %s method of instance %s: %s"),
26037c478bd9Sstevel@tonic-gate 			    method, instance, strerror(errno));
26047c478bd9Sstevel@tonic-gate 			return (B_FALSE);
26057c478bd9Sstevel@tonic-gate 		}
26067c478bd9Sstevel@tonic-gate 	}
26077c478bd9Sstevel@tonic-gate 
26087c478bd9Sstevel@tonic-gate 	/*
26097c478bd9Sstevel@tonic-gate 	 * Check if the file is a regular file and has at least one execute
26107c478bd9Sstevel@tonic-gate 	 * bit set.
26117c478bd9Sstevel@tonic-gate 	 */
26127c478bd9Sstevel@tonic-gate 	if ((sbuf.st_mode & S_IFMT) != S_IFREG) {
26137c478bd9Sstevel@tonic-gate 		error_msg(gettext(
26147c478bd9Sstevel@tonic-gate 		    "The %s method of instance %s isn't a regular file"),
26157c478bd9Sstevel@tonic-gate 		    method, instance);
26167c478bd9Sstevel@tonic-gate 		return (B_FALSE);
26177c478bd9Sstevel@tonic-gate 	} else if ((sbuf.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0) {
26187c478bd9Sstevel@tonic-gate 		error_msg(gettext("The %s method instance %s doesn't have "
26197c478bd9Sstevel@tonic-gate 		    "any execute permissions set"), method, instance);
26207c478bd9Sstevel@tonic-gate 		return (B_FALSE);
26217c478bd9Sstevel@tonic-gate 	}
26227c478bd9Sstevel@tonic-gate 
26237c478bd9Sstevel@tonic-gate 	return (B_TRUE);
26247c478bd9Sstevel@tonic-gate }
26257c478bd9Sstevel@tonic-gate 
26267c478bd9Sstevel@tonic-gate static void
26277c478bd9Sstevel@tonic-gate exec_method(instance_t *instance, instance_method_t method, method_info_t *mi,
26287c478bd9Sstevel@tonic-gate     struct method_context *mthd_ctxt, const proto_info_t *pi)
26297c478bd9Sstevel@tonic-gate {
26307c478bd9Sstevel@tonic-gate 	char		**args;
26317c478bd9Sstevel@tonic-gate 	char 		**env;
26327c478bd9Sstevel@tonic-gate 	const char	*errf;
26337c478bd9Sstevel@tonic-gate 	int		serrno;
26347c478bd9Sstevel@tonic-gate 	basic_cfg_t	*cfg = instance->config->basic;
26357c478bd9Sstevel@tonic-gate 
26367c478bd9Sstevel@tonic-gate 	if (method == IM_START) {
26377c478bd9Sstevel@tonic-gate 		/*
26387c478bd9Sstevel@tonic-gate 		 * If wrappers checks fail, pretend the method was exec'd and
26397c478bd9Sstevel@tonic-gate 		 * failed.
26407c478bd9Sstevel@tonic-gate 		 */
26417c478bd9Sstevel@tonic-gate 		if (!tcp_wrappers_ok(instance))
26427c478bd9Sstevel@tonic-gate 			exit(IMRET_FAILURE);
26437c478bd9Sstevel@tonic-gate 	}
26447c478bd9Sstevel@tonic-gate 
26457c478bd9Sstevel@tonic-gate 	/*
26467c478bd9Sstevel@tonic-gate 	 * Revert the disposition of handled signals and ignored signals to
26477c478bd9Sstevel@tonic-gate 	 * their defaults, unblocking any blocked ones as a side effect.
26487c478bd9Sstevel@tonic-gate 	 */
26497c478bd9Sstevel@tonic-gate 	(void) sigset(SIGHUP, SIG_DFL);
26507c478bd9Sstevel@tonic-gate 	(void) sigset(SIGTERM, SIG_DFL);
26517c478bd9Sstevel@tonic-gate 	(void) sigset(SIGINT, SIG_DFL);
26527c478bd9Sstevel@tonic-gate 
26537c478bd9Sstevel@tonic-gate 	/*
26547c478bd9Sstevel@tonic-gate 	 * Setup exec arguments. Do this before the fd setup below, so our
26557c478bd9Sstevel@tonic-gate 	 * logging related file fd doesn't get taken over before we call
26567c478bd9Sstevel@tonic-gate 	 * expand_address().
26577c478bd9Sstevel@tonic-gate 	 */
26587c478bd9Sstevel@tonic-gate 	if ((method == IM_START) &&
26597c478bd9Sstevel@tonic-gate 	    (strcmp(mi->exec_args_we.we_wordv[0], "%A") == 0)) {
26607c478bd9Sstevel@tonic-gate 		args = expand_address(instance, pi);
26617c478bd9Sstevel@tonic-gate 	} else {
26627c478bd9Sstevel@tonic-gate 		args = mi->exec_args_we.we_wordv;
26637c478bd9Sstevel@tonic-gate 	}
26647c478bd9Sstevel@tonic-gate 
26657c478bd9Sstevel@tonic-gate 	/* Generate audit trail for start operations */
26667c478bd9Sstevel@tonic-gate 	if (method == IM_START) {
26677c478bd9Sstevel@tonic-gate 		adt_event_data_t *ae;
26687c478bd9Sstevel@tonic-gate 		struct sockaddr_storage ss;
26697c478bd9Sstevel@tonic-gate 		priv_set_t *privset;
26707c478bd9Sstevel@tonic-gate 		socklen_t sslen = sizeof (ss);
26717c478bd9Sstevel@tonic-gate 
26727c478bd9Sstevel@tonic-gate 		if ((ae = adt_alloc_event(audit_handle, ADT_inetd_connect))
26737c478bd9Sstevel@tonic-gate 		    == NULL) {
26747c478bd9Sstevel@tonic-gate 			error_msg(gettext("Unable to allocate audit event for "
26757c478bd9Sstevel@tonic-gate 			    "the %s method of instance %s"),
26767c478bd9Sstevel@tonic-gate 			    methods[method].name, instance->fmri);
26777c478bd9Sstevel@tonic-gate 			exit(IMRET_FAILURE);
26787c478bd9Sstevel@tonic-gate 		}
26797c478bd9Sstevel@tonic-gate 
26807c478bd9Sstevel@tonic-gate 		/*
26817c478bd9Sstevel@tonic-gate 		 * The inetd_connect audit record consists of:
26827c478bd9Sstevel@tonic-gate 		 *	Service name
26837c478bd9Sstevel@tonic-gate 		 *	Execution path
26847c478bd9Sstevel@tonic-gate 		 *	Remote address and port
26857c478bd9Sstevel@tonic-gate 		 *	Local port
26867c478bd9Sstevel@tonic-gate 		 *	Process privileges
26877c478bd9Sstevel@tonic-gate 		 */
26887c478bd9Sstevel@tonic-gate 		ae->adt_inetd_connect.service_name = cfg->svc_name;
26897c478bd9Sstevel@tonic-gate 		ae->adt_inetd_connect.cmd = mi->exec_path;
26907c478bd9Sstevel@tonic-gate 
26917c478bd9Sstevel@tonic-gate 		if (instance->remote_addr.ss_family == AF_INET) {
26927c478bd9Sstevel@tonic-gate 			struct in_addr *in = SS_SINADDR(instance->remote_addr);
26937c478bd9Sstevel@tonic-gate 			ae->adt_inetd_connect.ip_adr[0] = in->s_addr;
26947c478bd9Sstevel@tonic-gate 			ae->adt_inetd_connect.ip_type = ADT_IPv4;
26957c478bd9Sstevel@tonic-gate 		} else {
26967c478bd9Sstevel@tonic-gate 			uint32_t *addr6;
26977c478bd9Sstevel@tonic-gate 			int i;
26987c478bd9Sstevel@tonic-gate 
26997c478bd9Sstevel@tonic-gate 			ae->adt_inetd_connect.ip_type = ADT_IPv6;
27007c478bd9Sstevel@tonic-gate 			addr6 = (uint32_t *)SS_SINADDR(instance->remote_addr);
27017c478bd9Sstevel@tonic-gate 			for (i = 0; i < 4; ++i)
27027c478bd9Sstevel@tonic-gate 				ae->adt_inetd_connect.ip_adr[i] = addr6[i];
27037c478bd9Sstevel@tonic-gate 		}
27047c478bd9Sstevel@tonic-gate 
27057c478bd9Sstevel@tonic-gate 		ae->adt_inetd_connect.ip_remote_port =
27067c478bd9Sstevel@tonic-gate 		    ntohs(SS_PORT(instance->remote_addr));
27077c478bd9Sstevel@tonic-gate 
27087c478bd9Sstevel@tonic-gate 		if (getsockname(instance->conn_fd, (struct sockaddr *)&ss,
27097c478bd9Sstevel@tonic-gate 		    &sslen) == 0)
27107c478bd9Sstevel@tonic-gate 			ae->adt_inetd_connect.ip_local_port =
27117c478bd9Sstevel@tonic-gate 			    ntohs(SS_PORT(ss));
27127c478bd9Sstevel@tonic-gate 
27137c478bd9Sstevel@tonic-gate 		privset = mthd_ctxt->priv_set;
27147c478bd9Sstevel@tonic-gate 		if (privset == NULL) {
27157c478bd9Sstevel@tonic-gate 			privset = priv_allocset();
27167c478bd9Sstevel@tonic-gate 			if (privset != NULL &&
27177c478bd9Sstevel@tonic-gate 			    getppriv(PRIV_EFFECTIVE, privset) != 0) {
27187c478bd9Sstevel@tonic-gate 				priv_freeset(privset);
27197c478bd9Sstevel@tonic-gate 				privset = NULL;
27207c478bd9Sstevel@tonic-gate 			}
27217c478bd9Sstevel@tonic-gate 		}
27227c478bd9Sstevel@tonic-gate 
27237c478bd9Sstevel@tonic-gate 		ae->adt_inetd_connect.privileges = privset;
27247c478bd9Sstevel@tonic-gate 
27257c478bd9Sstevel@tonic-gate 		(void) adt_put_event(ae, ADT_SUCCESS, ADT_SUCCESS);
27267c478bd9Sstevel@tonic-gate 		adt_free_event(ae);
27277c478bd9Sstevel@tonic-gate 
27287c478bd9Sstevel@tonic-gate 		if (privset != NULL && mthd_ctxt->priv_set == NULL)
27297c478bd9Sstevel@tonic-gate 			priv_freeset(privset);
27307c478bd9Sstevel@tonic-gate 	}
27317c478bd9Sstevel@tonic-gate 
27327c478bd9Sstevel@tonic-gate 	/*
27337c478bd9Sstevel@tonic-gate 	 * Set method context before the fd setup below so we can output an
27347c478bd9Sstevel@tonic-gate 	 * error message if it fails.
27357c478bd9Sstevel@tonic-gate 	 */
27367c478bd9Sstevel@tonic-gate 	if ((errno = restarter_set_method_context(mthd_ctxt, &errf)) != 0) {
27377c478bd9Sstevel@tonic-gate 		const char *msg;
27387c478bd9Sstevel@tonic-gate 
27397c478bd9Sstevel@tonic-gate 		if (errno == -1) {
27407c478bd9Sstevel@tonic-gate 			if (strcmp(errf, "core_set_process_path") == 0) {
27417c478bd9Sstevel@tonic-gate 				msg = gettext("Failed to set the corefile path "
27427c478bd9Sstevel@tonic-gate 				    "for the %s method of instance %s");
27437c478bd9Sstevel@tonic-gate 			} else if (strcmp(errf, "setproject") == 0) {
27447c478bd9Sstevel@tonic-gate 				msg = gettext("Failed to assign a resource "
27457c478bd9Sstevel@tonic-gate 				    "control for the %s method of instance %s");
27467c478bd9Sstevel@tonic-gate 			} else if (strcmp(errf, "pool_set_binding") == 0) {
27477c478bd9Sstevel@tonic-gate 				msg = gettext("Failed to bind the %s method of "
27487c478bd9Sstevel@tonic-gate 				    "instance %s to a pool due to a system "
27497c478bd9Sstevel@tonic-gate 				    "error");
27507c478bd9Sstevel@tonic-gate 			} else {
27517c478bd9Sstevel@tonic-gate 				assert(0);
27527c478bd9Sstevel@tonic-gate 				abort();
27537c478bd9Sstevel@tonic-gate 			}
27547c478bd9Sstevel@tonic-gate 
27557c478bd9Sstevel@tonic-gate 			error_msg(msg, methods[method].name, instance->fmri);
27567c478bd9Sstevel@tonic-gate 
27577c478bd9Sstevel@tonic-gate 			exit(IMRET_FAILURE);
27587c478bd9Sstevel@tonic-gate 		}
27597c478bd9Sstevel@tonic-gate 
27607c478bd9Sstevel@tonic-gate 		if (errf != NULL && strcmp(errf, "pool_set_binding") == 0) {
27617c478bd9Sstevel@tonic-gate 			switch (errno) {
27627c478bd9Sstevel@tonic-gate 			case ENOENT:
27637c478bd9Sstevel@tonic-gate 				msg = gettext("Failed to find resource pool "
27647c478bd9Sstevel@tonic-gate 				    "for the %s method of instance %s");
27657c478bd9Sstevel@tonic-gate 				break;
27667c478bd9Sstevel@tonic-gate 
27677c478bd9Sstevel@tonic-gate 			case EBADF:
27687c478bd9Sstevel@tonic-gate 				msg = gettext("Failed to bind the %s method of "
27697c478bd9Sstevel@tonic-gate 				    "instance %s to a pool due to invalid "
27707c478bd9Sstevel@tonic-gate 				    "configuration");
27717c478bd9Sstevel@tonic-gate 				break;
27727c478bd9Sstevel@tonic-gate 
27737c478bd9Sstevel@tonic-gate 			default:
27747c478bd9Sstevel@tonic-gate 				assert(0);
27757c478bd9Sstevel@tonic-gate 				abort();
27767c478bd9Sstevel@tonic-gate 			}
27777c478bd9Sstevel@tonic-gate 
27787c478bd9Sstevel@tonic-gate 			exit(IMRET_FAILURE);
27797c478bd9Sstevel@tonic-gate 		}
27807c478bd9Sstevel@tonic-gate 
27817c478bd9Sstevel@tonic-gate 		if (errf != NULL) {
27827c478bd9Sstevel@tonic-gate 			error_msg(gettext("Failed to set credentials for the "
27837c478bd9Sstevel@tonic-gate 			    "%s method of instance %s (%s: %s)"),
27847c478bd9Sstevel@tonic-gate 			    methods[method].name, instance->fmri, errf,
27857c478bd9Sstevel@tonic-gate 			    strerror(errno));
27867c478bd9Sstevel@tonic-gate 			exit(IMRET_FAILURE);
27877c478bd9Sstevel@tonic-gate 		}
27887c478bd9Sstevel@tonic-gate 
27897c478bd9Sstevel@tonic-gate 		switch (errno) {
27907c478bd9Sstevel@tonic-gate 		case ENOMEM:
27917c478bd9Sstevel@tonic-gate 			msg = gettext("Failed to set credentials for the %s "
27927c478bd9Sstevel@tonic-gate 			    "method of instance %s (out of memory)");
27937c478bd9Sstevel@tonic-gate 			break;
27947c478bd9Sstevel@tonic-gate 
27957c478bd9Sstevel@tonic-gate 		case ENOENT:
27967c478bd9Sstevel@tonic-gate 			msg = gettext("Failed to set credentials for the %s "
27977c478bd9Sstevel@tonic-gate 			    "method of instance %s (no passwd or shadow "
27987c478bd9Sstevel@tonic-gate 			    "entry for user)");
27997c478bd9Sstevel@tonic-gate 			break;
28007c478bd9Sstevel@tonic-gate 
28017c478bd9Sstevel@tonic-gate 		default:
28027c478bd9Sstevel@tonic-gate 			assert(0);
28037c478bd9Sstevel@tonic-gate 			abort();
28047c478bd9Sstevel@tonic-gate 		}
28057c478bd9Sstevel@tonic-gate 
28067c478bd9Sstevel@tonic-gate 		error_msg(msg, methods[method].name, instance->fmri);
28077c478bd9Sstevel@tonic-gate 		exit(IMRET_FAILURE);
28087c478bd9Sstevel@tonic-gate 	}
28097c478bd9Sstevel@tonic-gate 
28107c478bd9Sstevel@tonic-gate 	/* let exec() free mthd_ctxt */
28117c478bd9Sstevel@tonic-gate 
28127c478bd9Sstevel@tonic-gate 	/* setup standard fds */
28137c478bd9Sstevel@tonic-gate 	if (method == IM_START) {
28147c478bd9Sstevel@tonic-gate 		(void) dup2(instance->conn_fd, STDIN_FILENO);
28157c478bd9Sstevel@tonic-gate 	} else {
28167c478bd9Sstevel@tonic-gate 		(void) close(STDIN_FILENO);
28177c478bd9Sstevel@tonic-gate 		(void) open("/dev/null", O_RDONLY);
28187c478bd9Sstevel@tonic-gate 	}
28197c478bd9Sstevel@tonic-gate 	(void) dup2(STDIN_FILENO, STDOUT_FILENO);
28207c478bd9Sstevel@tonic-gate 	(void) dup2(STDIN_FILENO, STDERR_FILENO);
28217c478bd9Sstevel@tonic-gate 
28227c478bd9Sstevel@tonic-gate 	closefrom(STDERR_FILENO + 1);
28237c478bd9Sstevel@tonic-gate 
28247c478bd9Sstevel@tonic-gate 	method_preexec();
28257c478bd9Sstevel@tonic-gate 
28267c478bd9Sstevel@tonic-gate 	env = set_smf_env(mthd_ctxt, instance, methods[method].name);
28277c478bd9Sstevel@tonic-gate 
28287c478bd9Sstevel@tonic-gate 	if (env != NULL) {
28297c478bd9Sstevel@tonic-gate 		do {
28307c478bd9Sstevel@tonic-gate 			(void) execve(mi->exec_path, args, env);
28317c478bd9Sstevel@tonic-gate 		} while (errno == EINTR);
28327c478bd9Sstevel@tonic-gate 	}
28337c478bd9Sstevel@tonic-gate 
28347c478bd9Sstevel@tonic-gate 	serrno = errno;
28357c478bd9Sstevel@tonic-gate 	/* start up logging again to report the error */
28367c478bd9Sstevel@tonic-gate 	msg_init();
28377c478bd9Sstevel@tonic-gate 	errno = serrno;
28387c478bd9Sstevel@tonic-gate 
28397c478bd9Sstevel@tonic-gate 	error_msg(
28407c478bd9Sstevel@tonic-gate 	    gettext("Failed to exec %s method of instance %s: %s"),
28417c478bd9Sstevel@tonic-gate 	    methods[method].name, instance->fmri, strerror(errno));
28427c478bd9Sstevel@tonic-gate 
28437c478bd9Sstevel@tonic-gate 	if ((method == IM_START) && (instance->config->basic->iswait)) {
28447c478bd9Sstevel@tonic-gate 		/*
28457c478bd9Sstevel@tonic-gate 		 * We couldn't exec the start method for a wait type service.
28467c478bd9Sstevel@tonic-gate 		 * Eat up data from the endpoint, so that hopefully the
28477c478bd9Sstevel@tonic-gate 		 * service's fd won't wake poll up on the next time round
28487c478bd9Sstevel@tonic-gate 		 * event_loop(). This behavior is carried over from the old
28497c478bd9Sstevel@tonic-gate 		 * inetd, and it seems somewhat arbitrary that it isn't
28507c478bd9Sstevel@tonic-gate 		 * also done in the case of fork failures; but I guess
28517c478bd9Sstevel@tonic-gate 		 * it assumes an exec failure is less likely to be the result
28527c478bd9Sstevel@tonic-gate 		 * of a resource shortage, and is thus not worth retrying.
28537c478bd9Sstevel@tonic-gate 		 */
28547c478bd9Sstevel@tonic-gate 		consume_wait_data(instance, 0);
28557c478bd9Sstevel@tonic-gate 	}
28567c478bd9Sstevel@tonic-gate 
28577c478bd9Sstevel@tonic-gate 	exit(IMRET_FAILURE);
28587c478bd9Sstevel@tonic-gate }
28597c478bd9Sstevel@tonic-gate 
28607c478bd9Sstevel@tonic-gate static restarter_error_t
28617c478bd9Sstevel@tonic-gate get_method_error_success(instance_method_t method)
28627c478bd9Sstevel@tonic-gate {
28637c478bd9Sstevel@tonic-gate 	switch (method) {
28647c478bd9Sstevel@tonic-gate 	case IM_OFFLINE:
28657c478bd9Sstevel@tonic-gate 		return (RERR_RESTART);
28667c478bd9Sstevel@tonic-gate 	case IM_ONLINE:
28677c478bd9Sstevel@tonic-gate 		return (RERR_RESTART);
28687c478bd9Sstevel@tonic-gate 	case IM_DISABLE:
28697c478bd9Sstevel@tonic-gate 		return (RERR_RESTART);
28707c478bd9Sstevel@tonic-gate 	case IM_REFRESH:
28717c478bd9Sstevel@tonic-gate 		return (RERR_REFRESH);
28727c478bd9Sstevel@tonic-gate 	case IM_START:
28737c478bd9Sstevel@tonic-gate 		return (RERR_RESTART);
28747c478bd9Sstevel@tonic-gate 	}
2875b823d4c7Sdstaff 	(void) fprintf(stderr, gettext("Internal fatal error in inetd.\n"));
2876b823d4c7Sdstaff 
2877b823d4c7Sdstaff 	abort();
28787c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
28797c478bd9Sstevel@tonic-gate }
28807c478bd9Sstevel@tonic-gate 
28817c478bd9Sstevel@tonic-gate /*
28827c478bd9Sstevel@tonic-gate  * Runs the specified method of the specified service instance.
28837c478bd9Sstevel@tonic-gate  * If the method was never specified, we handle it the same as if the
28847c478bd9Sstevel@tonic-gate  * method was called and returned success, carrying on any transition the
28857c478bd9Sstevel@tonic-gate  * instance may be in the midst of.
28867c478bd9Sstevel@tonic-gate  * If the method isn't executable in its specified profile or an error occurs
28877c478bd9Sstevel@tonic-gate  * forking a process to run the method in the function returns -1.
28887c478bd9Sstevel@tonic-gate  * If a method binary is successfully executed, the function switches the
28897c478bd9Sstevel@tonic-gate  * instance's cur state to the method's associated 'run' state and the next
28907c478bd9Sstevel@tonic-gate  * state to the methods associated next state.
28917c478bd9Sstevel@tonic-gate  * Returns -1 if there's an error before forking, else 0.
28927c478bd9Sstevel@tonic-gate  */
28937c478bd9Sstevel@tonic-gate int
28947c478bd9Sstevel@tonic-gate run_method(instance_t *instance, instance_method_t method,
28957c478bd9Sstevel@tonic-gate     const proto_info_t *start_info)
28967c478bd9Sstevel@tonic-gate {
28977c478bd9Sstevel@tonic-gate 	pid_t			child_pid;
28987c478bd9Sstevel@tonic-gate 	method_info_t		*mi;
28997c478bd9Sstevel@tonic-gate 	struct method_context	*mthd_ctxt = NULL;
29007c478bd9Sstevel@tonic-gate 	const char		*errstr;
29017c478bd9Sstevel@tonic-gate 	int			sig;
29027c478bd9Sstevel@tonic-gate 	int			ret;
29037c478bd9Sstevel@tonic-gate 	instance_cfg_t		*cfg = instance->config;
29047c478bd9Sstevel@tonic-gate 	ctid_t			cid;
29057c478bd9Sstevel@tonic-gate 	boolean_t		trans_failure = B_TRUE;
29067c478bd9Sstevel@tonic-gate 	int			serrno;
29077c478bd9Sstevel@tonic-gate 
29087c478bd9Sstevel@tonic-gate 	debug_msg("Entering run_method, instance: %s, method: %s",
29097c478bd9Sstevel@tonic-gate 	    instance->fmri, methods[method].name);
29107c478bd9Sstevel@tonic-gate 
29117c478bd9Sstevel@tonic-gate 	/*
29127c478bd9Sstevel@tonic-gate 	 * Don't bother updating the instance's state for the start method
29137c478bd9Sstevel@tonic-gate 	 * as there isn't a separate start method state.
29147c478bd9Sstevel@tonic-gate 	 */
29157c478bd9Sstevel@tonic-gate 	if (method != IM_START)
29167c478bd9Sstevel@tonic-gate 		update_instance_states(instance, get_method_state(method),
29177c478bd9Sstevel@tonic-gate 		    methods[method].dst_state,
29187c478bd9Sstevel@tonic-gate 		    get_method_error_success(method));
29197c478bd9Sstevel@tonic-gate 
29207c478bd9Sstevel@tonic-gate 	if ((mi = cfg->methods[method]) == NULL) {
29217c478bd9Sstevel@tonic-gate 		/*
29227c478bd9Sstevel@tonic-gate 		 * An unspecified method. Since the absence of this method
29237c478bd9Sstevel@tonic-gate 		 * must be valid (otherwise it would have been caught
29247c478bd9Sstevel@tonic-gate 		 * during configuration validation), simply pretend the method
29257c478bd9Sstevel@tonic-gate 		 * ran and returned success.
29267c478bd9Sstevel@tonic-gate 		 */
29277c478bd9Sstevel@tonic-gate 		process_non_start_term(instance, IMRET_SUCCESS);
29287c478bd9Sstevel@tonic-gate 		return (0);
29297c478bd9Sstevel@tonic-gate 	}
29307c478bd9Sstevel@tonic-gate 
29317c478bd9Sstevel@tonic-gate 	/* Handle special method tokens, not allowed on start */
29327c478bd9Sstevel@tonic-gate 	if (method != IM_START) {
29337c478bd9Sstevel@tonic-gate 		if (restarter_is_null_method(mi->exec_path)) {
29347c478bd9Sstevel@tonic-gate 			/* :true means nothing should be done */
29357c478bd9Sstevel@tonic-gate 			process_non_start_term(instance, IMRET_SUCCESS);
29367c478bd9Sstevel@tonic-gate 			return (0);
29377c478bd9Sstevel@tonic-gate 		}
29387c478bd9Sstevel@tonic-gate 
29397c478bd9Sstevel@tonic-gate 		if ((sig = restarter_is_kill_method(mi->exec_path)) >= 0) {
29407c478bd9Sstevel@tonic-gate 			/* Carry out contract assassination */
29417c478bd9Sstevel@tonic-gate 			ret = iterate_repository_contracts(instance->fmri, sig);
29427c478bd9Sstevel@tonic-gate 			/* ENOENT means we didn't find any contracts */
29437c478bd9Sstevel@tonic-gate 			if (ret != 0 && ret != ENOENT) {
29447c478bd9Sstevel@tonic-gate 				error_msg(gettext("Failed to send signal %d "
29457c478bd9Sstevel@tonic-gate 				    "to contracts of instance %s: %s"), sig,
29467c478bd9Sstevel@tonic-gate 				    instance->fmri, strerror(ret));
29477c478bd9Sstevel@tonic-gate 				goto prefork_failure;
29487c478bd9Sstevel@tonic-gate 			} else {
29497c478bd9Sstevel@tonic-gate 				process_non_start_term(instance, IMRET_SUCCESS);
29507c478bd9Sstevel@tonic-gate 				return (0);
29517c478bd9Sstevel@tonic-gate 			}
29527c478bd9Sstevel@tonic-gate 		}
29537c478bd9Sstevel@tonic-gate 
29547c478bd9Sstevel@tonic-gate 		if ((sig = restarter_is_kill_proc_method(mi->exec_path)) >= 0) {
29557c478bd9Sstevel@tonic-gate 			/* Carry out process assassination */
29567c478bd9Sstevel@tonic-gate 			rep_val_t	*rv;
29577c478bd9Sstevel@tonic-gate 
29587c478bd9Sstevel@tonic-gate 			ret = IMRET_SUCCESS;
29597c478bd9Sstevel@tonic-gate 			for (rv = uu_list_first(instance->start_pids);
29607c478bd9Sstevel@tonic-gate 			    rv != NULL;
29617c478bd9Sstevel@tonic-gate 			    rv = uu_list_next(instance->start_pids, rv)) {
29627c478bd9Sstevel@tonic-gate 				if ((kill((pid_t)rv->val, sig) != 0) &&
29637c478bd9Sstevel@tonic-gate 				    (errno != ESRCH)) {
29647c478bd9Sstevel@tonic-gate 					ret = IMRET_FAILURE;
29657c478bd9Sstevel@tonic-gate 					error_msg(gettext("Unable to signal "
29667c478bd9Sstevel@tonic-gate 					    "start process of instance %s: %s"),
29677c478bd9Sstevel@tonic-gate 					    instance->fmri, strerror(errno));
29687c478bd9Sstevel@tonic-gate 				}
29697c478bd9Sstevel@tonic-gate 			}
29707c478bd9Sstevel@tonic-gate 
29717c478bd9Sstevel@tonic-gate 			process_non_start_term(instance, ret);
29727c478bd9Sstevel@tonic-gate 			return (0);
29737c478bd9Sstevel@tonic-gate 		}
29747c478bd9Sstevel@tonic-gate 	}
29757c478bd9Sstevel@tonic-gate 
29767c478bd9Sstevel@tonic-gate 	/*
29777c478bd9Sstevel@tonic-gate 	 * Get the associated method context before the fork so we can
29787c478bd9Sstevel@tonic-gate 	 * modify the instances state if things go wrong.
29797c478bd9Sstevel@tonic-gate 	 */
29807c478bd9Sstevel@tonic-gate 	if ((mthd_ctxt = read_method_context(instance->fmri,
29817c478bd9Sstevel@tonic-gate 	    methods[method].name, mi->exec_path, &errstr)) == NULL) {
29827c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to retrieve method context for the "
29837c478bd9Sstevel@tonic-gate 		    "%s method of instance %s: %s"), methods[method].name,
29847c478bd9Sstevel@tonic-gate 		    instance->fmri, errstr);
29857c478bd9Sstevel@tonic-gate 		goto prefork_failure;
29867c478bd9Sstevel@tonic-gate 	}
29877c478bd9Sstevel@tonic-gate 
29887c478bd9Sstevel@tonic-gate 	/*
29897c478bd9Sstevel@tonic-gate 	 * Perform some basic checks before we fork to limit the possibility
29907c478bd9Sstevel@tonic-gate 	 * of exec failures, so we can modify the instance state if necessary.
29917c478bd9Sstevel@tonic-gate 	 */
29927c478bd9Sstevel@tonic-gate 	if (!passes_basic_exec_checks(instance->fmri, methods[method].name,
29937c478bd9Sstevel@tonic-gate 	    mi->exec_path)) {
29947c478bd9Sstevel@tonic-gate 		trans_failure = B_FALSE;
29957c478bd9Sstevel@tonic-gate 		goto prefork_failure;
29967c478bd9Sstevel@tonic-gate 	}
29977c478bd9Sstevel@tonic-gate 
29987c478bd9Sstevel@tonic-gate 	if (contract_prefork() == -1)
29997c478bd9Sstevel@tonic-gate 		goto prefork_failure;
30007c478bd9Sstevel@tonic-gate 	child_pid = fork();
30017c478bd9Sstevel@tonic-gate 	serrno = errno;
30027c478bd9Sstevel@tonic-gate 	contract_postfork();
30037c478bd9Sstevel@tonic-gate 
30047c478bd9Sstevel@tonic-gate 	switch (child_pid) {
30057c478bd9Sstevel@tonic-gate 	case -1:
30067c478bd9Sstevel@tonic-gate 		error_msg(gettext(
30077c478bd9Sstevel@tonic-gate 		    "Unable to fork %s method of instance %s: %s"),
30087c478bd9Sstevel@tonic-gate 		    methods[method].name, instance->fmri, strerror(serrno));
30097c478bd9Sstevel@tonic-gate 		if ((serrno != EAGAIN) && (serrno != ENOMEM))
30107c478bd9Sstevel@tonic-gate 			trans_failure = B_FALSE;
30117c478bd9Sstevel@tonic-gate 		goto prefork_failure;
30127c478bd9Sstevel@tonic-gate 	case 0:				/* child */
30137c478bd9Sstevel@tonic-gate 		exec_method(instance, method, mi, mthd_ctxt, start_info);
3014b823d4c7Sdstaff 		/* NOTREACHED */
30157c478bd9Sstevel@tonic-gate 	default:			/* parent */
30167c478bd9Sstevel@tonic-gate 		restarter_free_method_context(mthd_ctxt);
30177c478bd9Sstevel@tonic-gate 		mthd_ctxt = NULL;
30187c478bd9Sstevel@tonic-gate 
30197c478bd9Sstevel@tonic-gate 		if (get_latest_contract(&cid) < 0)
30207c478bd9Sstevel@tonic-gate 			cid = -1;
30217c478bd9Sstevel@tonic-gate 
30227c478bd9Sstevel@tonic-gate 		/*
30237c478bd9Sstevel@tonic-gate 		 * Register this method so its termination is noticed and
30247c478bd9Sstevel@tonic-gate 		 * the state transition this method participates in is
30257c478bd9Sstevel@tonic-gate 		 * continued.
30267c478bd9Sstevel@tonic-gate 		 */
30277c478bd9Sstevel@tonic-gate 		if (register_method(instance, child_pid, cid, method) != 0) {
30287c478bd9Sstevel@tonic-gate 			/*
30297c478bd9Sstevel@tonic-gate 			 * Since we will never find out about the termination
30307c478bd9Sstevel@tonic-gate 			 * of this method, if it's a non-start method treat
30317c478bd9Sstevel@tonic-gate 			 * is as a failure so we don't block restarter event
30327c478bd9Sstevel@tonic-gate 			 * processing on it whilst it languishes in a method
30337c478bd9Sstevel@tonic-gate 			 * running state.
30347c478bd9Sstevel@tonic-gate 			 */
30357c478bd9Sstevel@tonic-gate 			error_msg(gettext("Failed to monitor status of "
30367c478bd9Sstevel@tonic-gate 			    "%s method of instance %s"), methods[method].name,
30377c478bd9Sstevel@tonic-gate 			    instance->fmri);
30387c478bd9Sstevel@tonic-gate 			if (method != IM_START)
30397c478bd9Sstevel@tonic-gate 				process_non_start_term(instance, IMRET_FAILURE);
30407c478bd9Sstevel@tonic-gate 		}
30417c478bd9Sstevel@tonic-gate 
30427c478bd9Sstevel@tonic-gate 		add_method_ids(instance, child_pid, cid, method);
30437c478bd9Sstevel@tonic-gate 
30447c478bd9Sstevel@tonic-gate 		/* do tcp tracing for those nowait instances that request it */
30457c478bd9Sstevel@tonic-gate 		if ((method == IM_START) && cfg->basic->do_tcp_trace &&
30467c478bd9Sstevel@tonic-gate 		    !cfg->basic->iswait) {
30477c478bd9Sstevel@tonic-gate 			char buf[INET6_ADDRSTRLEN];
30487c478bd9Sstevel@tonic-gate 
30497c478bd9Sstevel@tonic-gate 			syslog(LOG_NOTICE, "%s[%d] from %s %d",
30507c478bd9Sstevel@tonic-gate 			    cfg->basic->svc_name, child_pid,
30517c478bd9Sstevel@tonic-gate 			    inet_ntop_native(instance->remote_addr.ss_family,
30527c478bd9Sstevel@tonic-gate 			    SS_SINADDR(instance->remote_addr), buf,
30537c478bd9Sstevel@tonic-gate 			    sizeof (buf)),
30547c478bd9Sstevel@tonic-gate 			    ntohs(SS_PORT(instance->remote_addr)));
30557c478bd9Sstevel@tonic-gate 		}
30567c478bd9Sstevel@tonic-gate 	}
30577c478bd9Sstevel@tonic-gate 
30587c478bd9Sstevel@tonic-gate 	return (0);
30597c478bd9Sstevel@tonic-gate 
30607c478bd9Sstevel@tonic-gate prefork_failure:
30617c478bd9Sstevel@tonic-gate 	if (mthd_ctxt != NULL) {
30627c478bd9Sstevel@tonic-gate 		restarter_free_method_context(mthd_ctxt);
30637c478bd9Sstevel@tonic-gate 		mthd_ctxt = NULL;
30647c478bd9Sstevel@tonic-gate 	}
30657c478bd9Sstevel@tonic-gate 
30667c478bd9Sstevel@tonic-gate 	if (method == IM_START) {
30677c478bd9Sstevel@tonic-gate 		/*
30687c478bd9Sstevel@tonic-gate 		 * Only place a start method in maintenance if we're sure
30697c478bd9Sstevel@tonic-gate 		 * that the failure was non-transient.
30707c478bd9Sstevel@tonic-gate 		 */
30717c478bd9Sstevel@tonic-gate 		if (!trans_failure) {
30727c478bd9Sstevel@tonic-gate 			destroy_bound_fds(instance);
30737c478bd9Sstevel@tonic-gate 			update_state(instance, IIS_MAINTENANCE, RERR_FAULT);
30747c478bd9Sstevel@tonic-gate 		}
30757c478bd9Sstevel@tonic-gate 	} else {
30767c478bd9Sstevel@tonic-gate 		/* treat the failure as if the method ran and failed */
30777c478bd9Sstevel@tonic-gate 		process_non_start_term(instance, IMRET_FAILURE);
30787c478bd9Sstevel@tonic-gate 	}
30797c478bd9Sstevel@tonic-gate 
30807c478bd9Sstevel@tonic-gate 	return (-1);
30817c478bd9Sstevel@tonic-gate }
30827c478bd9Sstevel@tonic-gate 
30837c478bd9Sstevel@tonic-gate static int
30847c478bd9Sstevel@tonic-gate accept_connection(instance_t *instance, proto_info_t *pi)
30857c478bd9Sstevel@tonic-gate {
30867c478bd9Sstevel@tonic-gate 	int		fd;
30877c478bd9Sstevel@tonic-gate 	socklen_t	size;
30887c478bd9Sstevel@tonic-gate 
30897c478bd9Sstevel@tonic-gate 	debug_msg("Entering accept_connection");
30907c478bd9Sstevel@tonic-gate 
30917c478bd9Sstevel@tonic-gate 	if (instance->config->basic->istlx) {
30927c478bd9Sstevel@tonic-gate 		fd = tlx_accept(instance->fmri, (tlx_info_t *)pi,
30937c478bd9Sstevel@tonic-gate 		    &(instance->remote_addr));
30947c478bd9Sstevel@tonic-gate 	} else {
30957c478bd9Sstevel@tonic-gate 		size = sizeof (instance->remote_addr);
30967c478bd9Sstevel@tonic-gate 		fd = accept(pi->listen_fd,
30977c478bd9Sstevel@tonic-gate 		    (struct sockaddr *)&(instance->remote_addr), &size);
30987c478bd9Sstevel@tonic-gate 		if (fd < 0)
30997c478bd9Sstevel@tonic-gate 			error_msg("accept: %s", strerror(errno));
31007c478bd9Sstevel@tonic-gate 	}
31017c478bd9Sstevel@tonic-gate 
31027c478bd9Sstevel@tonic-gate 	return (fd);
31037c478bd9Sstevel@tonic-gate }
31047c478bd9Sstevel@tonic-gate 
31057c478bd9Sstevel@tonic-gate /*
31067c478bd9Sstevel@tonic-gate  * Handle an incoming connection request for a nowait service.
31077c478bd9Sstevel@tonic-gate  * This involves accepting the incoming connection on a new fd. Connection
31087c478bd9Sstevel@tonic-gate  * rate checks are then performed, transitioning the service to the
31097c478bd9Sstevel@tonic-gate  * conrate offline state if these fail. Otherwise, the service's start method
31107c478bd9Sstevel@tonic-gate  * is run (performing TCP wrappers checks if applicable as we do), and on
31117c478bd9Sstevel@tonic-gate  * success concurrent copies checking is done, transitioning the service to the
31127c478bd9Sstevel@tonic-gate  * copies offline state if this fails.
31137c478bd9Sstevel@tonic-gate  */
31147c478bd9Sstevel@tonic-gate static void
31157c478bd9Sstevel@tonic-gate process_nowait_request(instance_t *instance, proto_info_t *pi)
31167c478bd9Sstevel@tonic-gate {
31177c478bd9Sstevel@tonic-gate 	basic_cfg_t		*cfg = instance->config->basic;
31187c478bd9Sstevel@tonic-gate 	int			ret;
31197c478bd9Sstevel@tonic-gate 	adt_event_data_t	*ae;
31207c478bd9Sstevel@tonic-gate 	char			buf[BUFSIZ];
31217c478bd9Sstevel@tonic-gate 
31227c478bd9Sstevel@tonic-gate 	debug_msg("Entering process_nowait_req");
31237c478bd9Sstevel@tonic-gate 
31247c478bd9Sstevel@tonic-gate 	/* accept nowait service connections on a new fd */
31257c478bd9Sstevel@tonic-gate 	if ((instance->conn_fd = accept_connection(instance, pi)) == -1) {
31267c478bd9Sstevel@tonic-gate 		/*
31277c478bd9Sstevel@tonic-gate 		 * Failed accept. Return and allow the event loop to initiate
31287c478bd9Sstevel@tonic-gate 		 * another attempt later if the request is still present.
31297c478bd9Sstevel@tonic-gate 		 */
31307c478bd9Sstevel@tonic-gate 		return;
31317c478bd9Sstevel@tonic-gate 	}
31327c478bd9Sstevel@tonic-gate 
31337c478bd9Sstevel@tonic-gate 	/*
31347c478bd9Sstevel@tonic-gate 	 * Limit connection rate of nowait services. If either conn_rate_max
31357c478bd9Sstevel@tonic-gate 	 * or conn_rate_offline are <= 0, no connection rate limit checking
31367c478bd9Sstevel@tonic-gate 	 * is done. If the configured rate is exceeded, the instance is taken
31377c478bd9Sstevel@tonic-gate 	 * to the connrate_offline state and a timer scheduled to try and
31387c478bd9Sstevel@tonic-gate 	 * bring the instance back online after the configured offline time.
31397c478bd9Sstevel@tonic-gate 	 */
31407c478bd9Sstevel@tonic-gate 	if ((cfg->conn_rate_max > 0) && (cfg->conn_rate_offline > 0)) {
31417c478bd9Sstevel@tonic-gate 		if (instance->conn_rate_count++ == 0) {
31427c478bd9Sstevel@tonic-gate 			instance->conn_rate_start = time(NULL);
31437c478bd9Sstevel@tonic-gate 		} else if (instance->conn_rate_count >
31447c478bd9Sstevel@tonic-gate 		    cfg->conn_rate_max) {
31457c478bd9Sstevel@tonic-gate 			time_t now = time(NULL);
31467c478bd9Sstevel@tonic-gate 
31477c478bd9Sstevel@tonic-gate 			if ((now - instance->conn_rate_start) > 1) {
31487c478bd9Sstevel@tonic-gate 				instance->conn_rate_start = now;
31497c478bd9Sstevel@tonic-gate 				instance->conn_rate_count = 1;
31507c478bd9Sstevel@tonic-gate 			} else {
31517c478bd9Sstevel@tonic-gate 				/* Generate audit record */
31527c478bd9Sstevel@tonic-gate 				if ((ae = adt_alloc_event(audit_handle,
31537c478bd9Sstevel@tonic-gate 				    ADT_inetd_ratelimit)) == NULL) {
31547c478bd9Sstevel@tonic-gate 					error_msg(gettext("Unable to allocate "
31557c478bd9Sstevel@tonic-gate 					    "rate limit audit event"));
31567c478bd9Sstevel@tonic-gate 				} else {
31577c478bd9Sstevel@tonic-gate 					adt_inetd_ratelimit_t *rl =
31587c478bd9Sstevel@tonic-gate 					    &ae->adt_inetd_ratelimit;
31597c478bd9Sstevel@tonic-gate 					/*
31607c478bd9Sstevel@tonic-gate 					 * The inetd_ratelimit audit
31617c478bd9Sstevel@tonic-gate 					 * record consists of:
31627c478bd9Sstevel@tonic-gate 					 * 	Service name
31637c478bd9Sstevel@tonic-gate 					 *	Connection rate limit
31647c478bd9Sstevel@tonic-gate 					 */
31657c478bd9Sstevel@tonic-gate 					rl->service_name = cfg->svc_name;
31667c478bd9Sstevel@tonic-gate 					(void) snprintf(buf, sizeof (buf),
31677c478bd9Sstevel@tonic-gate 					    "limit=%lld", cfg->conn_rate_max);
31687c478bd9Sstevel@tonic-gate 					rl->limit = buf;
31697c478bd9Sstevel@tonic-gate 					(void) adt_put_event(ae, ADT_SUCCESS,
31707c478bd9Sstevel@tonic-gate 					    ADT_SUCCESS);
31717c478bd9Sstevel@tonic-gate 					adt_free_event(ae);
31727c478bd9Sstevel@tonic-gate 				}
31737c478bd9Sstevel@tonic-gate 
31747c478bd9Sstevel@tonic-gate 				error_msg(gettext(
31757c478bd9Sstevel@tonic-gate 				    "Instance %s has exceeded its configured "
31767c478bd9Sstevel@tonic-gate 				    "connection rate, additional connections "
31777c478bd9Sstevel@tonic-gate 				    "will not be accepted for %d seconds"),
31787c478bd9Sstevel@tonic-gate 				    instance->fmri, cfg->conn_rate_offline);
31797c478bd9Sstevel@tonic-gate 
31807c478bd9Sstevel@tonic-gate 				close_net_fd(instance, instance->conn_fd);
31817c478bd9Sstevel@tonic-gate 				instance->conn_fd = -1;
31827c478bd9Sstevel@tonic-gate 
31837c478bd9Sstevel@tonic-gate 				destroy_bound_fds(instance);
31847c478bd9Sstevel@tonic-gate 
31857c478bd9Sstevel@tonic-gate 				instance->conn_rate_count = 0;
31867c478bd9Sstevel@tonic-gate 
31877c478bd9Sstevel@tonic-gate 				instance->conn_rate_exceeded = B_TRUE;
31887c478bd9Sstevel@tonic-gate 				(void) run_method(instance, IM_OFFLINE, NULL);
31897c478bd9Sstevel@tonic-gate 
31907c478bd9Sstevel@tonic-gate 				return;
31917c478bd9Sstevel@tonic-gate 			}
31927c478bd9Sstevel@tonic-gate 		}
31937c478bd9Sstevel@tonic-gate 	}
31947c478bd9Sstevel@tonic-gate 
31957c478bd9Sstevel@tonic-gate 	ret = run_method(instance, IM_START, pi);
31967c478bd9Sstevel@tonic-gate 
31977c478bd9Sstevel@tonic-gate 	close_net_fd(instance, instance->conn_fd);
31987c478bd9Sstevel@tonic-gate 	instance->conn_fd = -1;
31997c478bd9Sstevel@tonic-gate 
32007c478bd9Sstevel@tonic-gate 	if (ret == -1) /* the method wasn't forked  */
32017c478bd9Sstevel@tonic-gate 		return;
32027c478bd9Sstevel@tonic-gate 
32037c478bd9Sstevel@tonic-gate 	instance->copies++;
32047c478bd9Sstevel@tonic-gate 
32057c478bd9Sstevel@tonic-gate 	/*
32067c478bd9Sstevel@tonic-gate 	 * Limit concurrent connections of nowait services.
32077c478bd9Sstevel@tonic-gate 	 */
32087c478bd9Sstevel@tonic-gate 	if (copies_limit_exceeded(instance)) {
32097c478bd9Sstevel@tonic-gate 		/* Generate audit record */
32107c478bd9Sstevel@tonic-gate 		if ((ae = adt_alloc_event(audit_handle, ADT_inetd_copylimit))
32117c478bd9Sstevel@tonic-gate 		    == NULL) {
32127c478bd9Sstevel@tonic-gate 			error_msg(gettext("Unable to allocate copy limit "
32137c478bd9Sstevel@tonic-gate 			    "audit event"));
32147c478bd9Sstevel@tonic-gate 		} else {
32157c478bd9Sstevel@tonic-gate 			/*
32167c478bd9Sstevel@tonic-gate 			 * The inetd_copylimit audit record consists of:
32177c478bd9Sstevel@tonic-gate 			 *	Service name
32187c478bd9Sstevel@tonic-gate 			 * 	Copy limit
32197c478bd9Sstevel@tonic-gate 			 */
32207c478bd9Sstevel@tonic-gate 			ae->adt_inetd_copylimit.service_name = cfg->svc_name;
32217c478bd9Sstevel@tonic-gate 			(void) snprintf(buf, sizeof (buf), "limit=%lld",
32227c478bd9Sstevel@tonic-gate 			    cfg->max_copies);
32237c478bd9Sstevel@tonic-gate 			ae->adt_inetd_copylimit.limit = buf;
32247c478bd9Sstevel@tonic-gate 			(void) adt_put_event(ae, ADT_SUCCESS, ADT_SUCCESS);
32257c478bd9Sstevel@tonic-gate 			adt_free_event(ae);
32267c478bd9Sstevel@tonic-gate 		}
32277c478bd9Sstevel@tonic-gate 
32287c478bd9Sstevel@tonic-gate 		warn_msg(gettext("Instance %s has reached its maximum "
32297c478bd9Sstevel@tonic-gate 		    "configured copies, no new connections will be accepted"),
32307c478bd9Sstevel@tonic-gate 		    instance->fmri);
32317c478bd9Sstevel@tonic-gate 		destroy_bound_fds(instance);
32327c478bd9Sstevel@tonic-gate 		(void) run_method(instance, IM_OFFLINE, NULL);
32337c478bd9Sstevel@tonic-gate 	}
32347c478bd9Sstevel@tonic-gate }
32357c478bd9Sstevel@tonic-gate 
32367c478bd9Sstevel@tonic-gate /*
32377c478bd9Sstevel@tonic-gate  * Handle an incoming request for a wait type service.
32387c478bd9Sstevel@tonic-gate  * Failure rate checking is done first, taking the service to the maintenance
32397c478bd9Sstevel@tonic-gate  * state if the checks fail. Following this, the service's start method is run,
32407c478bd9Sstevel@tonic-gate  * and on success, we stop listening for new requests for this service.
32417c478bd9Sstevel@tonic-gate  */
32427c478bd9Sstevel@tonic-gate static void
32437c478bd9Sstevel@tonic-gate process_wait_request(instance_t *instance, const proto_info_t *pi)
32447c478bd9Sstevel@tonic-gate {
32457c478bd9Sstevel@tonic-gate 	basic_cfg_t		*cfg = instance->config->basic;
32467c478bd9Sstevel@tonic-gate 	int			ret;
32477c478bd9Sstevel@tonic-gate 	adt_event_data_t	*ae;
32487c478bd9Sstevel@tonic-gate 	char			buf[BUFSIZ];
32497c478bd9Sstevel@tonic-gate 
32507c478bd9Sstevel@tonic-gate 	debug_msg("Entering process_wait_request");
32517c478bd9Sstevel@tonic-gate 
32527c478bd9Sstevel@tonic-gate 	instance->conn_fd = pi->listen_fd;
32537c478bd9Sstevel@tonic-gate 
32547c478bd9Sstevel@tonic-gate 	/*
32557c478bd9Sstevel@tonic-gate 	 * Detect broken servers and transition them to maintenance. If a
32567c478bd9Sstevel@tonic-gate 	 * wait type service exits without accepting the connection or
32577c478bd9Sstevel@tonic-gate 	 * consuming (reading) the datagram, that service's descriptor will
32587c478bd9Sstevel@tonic-gate 	 * select readable again, and inetd will fork another instance of
32597c478bd9Sstevel@tonic-gate 	 * the server. If either wait_fail_cnt or wait_fail_interval are <= 0,
32607c478bd9Sstevel@tonic-gate 	 * no failure rate detection is done.
32617c478bd9Sstevel@tonic-gate 	 */
32627c478bd9Sstevel@tonic-gate 	if ((cfg->wait_fail_cnt > 0) && (cfg->wait_fail_interval > 0)) {
32637c478bd9Sstevel@tonic-gate 		if (instance->fail_rate_count++ == 0) {
32647c478bd9Sstevel@tonic-gate 			instance->fail_rate_start = time(NULL);
32657c478bd9Sstevel@tonic-gate 		} else if (instance->fail_rate_count > cfg->wait_fail_cnt) {
32667c478bd9Sstevel@tonic-gate 			time_t now = time(NULL);
32677c478bd9Sstevel@tonic-gate 
32687c478bd9Sstevel@tonic-gate 			if ((now - instance->fail_rate_start) >
32697c478bd9Sstevel@tonic-gate 			    cfg->wait_fail_interval) {
32707c478bd9Sstevel@tonic-gate 				instance->fail_rate_start = now;
32717c478bd9Sstevel@tonic-gate 				instance->fail_rate_count = 1;
32727c478bd9Sstevel@tonic-gate 			} else {
32737c478bd9Sstevel@tonic-gate 				/* Generate audit record */
32747c478bd9Sstevel@tonic-gate 				if ((ae = adt_alloc_event(audit_handle,
32757c478bd9Sstevel@tonic-gate 				    ADT_inetd_failrate)) == NULL) {
32767c478bd9Sstevel@tonic-gate 					error_msg(gettext("Unable to allocate "
32777c478bd9Sstevel@tonic-gate 					    "failure rate audit event"));
32787c478bd9Sstevel@tonic-gate 				} else {
32797c478bd9Sstevel@tonic-gate 					adt_inetd_failrate_t *fr =
32807c478bd9Sstevel@tonic-gate 					    &ae->adt_inetd_failrate;
32817c478bd9Sstevel@tonic-gate 					/*
32827c478bd9Sstevel@tonic-gate 					 * The inetd_failrate audit record
32837c478bd9Sstevel@tonic-gate 					 * consists of:
32847c478bd9Sstevel@tonic-gate 					 * 	Service name
32857c478bd9Sstevel@tonic-gate 					 * 	Failure rate
32867c478bd9Sstevel@tonic-gate 					 *	Interval
32877c478bd9Sstevel@tonic-gate 					 * Last two are expressed as k=v pairs
32887c478bd9Sstevel@tonic-gate 					 * in the values field.
32897c478bd9Sstevel@tonic-gate 					 */
32907c478bd9Sstevel@tonic-gate 					fr->service_name = cfg->svc_name;
32917c478bd9Sstevel@tonic-gate 					(void) snprintf(buf, sizeof (buf),
32927c478bd9Sstevel@tonic-gate 					    "limit=%lld,interval=%d",
32937c478bd9Sstevel@tonic-gate 					    cfg->wait_fail_cnt,
32947c478bd9Sstevel@tonic-gate 					    cfg->wait_fail_interval);
32957c478bd9Sstevel@tonic-gate 					fr->values = buf;
32967c478bd9Sstevel@tonic-gate 					(void) adt_put_event(ae, ADT_SUCCESS,
32977c478bd9Sstevel@tonic-gate 					    ADT_SUCCESS);
32987c478bd9Sstevel@tonic-gate 					adt_free_event(ae);
32997c478bd9Sstevel@tonic-gate 				}
33007c478bd9Sstevel@tonic-gate 
33017c478bd9Sstevel@tonic-gate 				error_msg(gettext(
33027c478bd9Sstevel@tonic-gate 				    "Instance %s has exceeded its configured "
33037c478bd9Sstevel@tonic-gate 				    "failure rate, transitioning to "
33047c478bd9Sstevel@tonic-gate 				    "maintenance"), instance->fmri);
33057c478bd9Sstevel@tonic-gate 				instance->fail_rate_count = 0;
33067c478bd9Sstevel@tonic-gate 
33077c478bd9Sstevel@tonic-gate 				destroy_bound_fds(instance);
33087c478bd9Sstevel@tonic-gate 
33097c478bd9Sstevel@tonic-gate 				instance->maintenance_req = B_TRUE;
33107c478bd9Sstevel@tonic-gate 				(void) run_method(instance, IM_OFFLINE, NULL);
33117c478bd9Sstevel@tonic-gate 				return;
33127c478bd9Sstevel@tonic-gate 			}
33137c478bd9Sstevel@tonic-gate 		}
33147c478bd9Sstevel@tonic-gate 	}
33157c478bd9Sstevel@tonic-gate 
33167c478bd9Sstevel@tonic-gate 	ret = run_method(instance, IM_START, pi);
33177c478bd9Sstevel@tonic-gate 
33187c478bd9Sstevel@tonic-gate 	instance->conn_fd = -1;
33197c478bd9Sstevel@tonic-gate 
33207c478bd9Sstevel@tonic-gate 	if (ret == 0) {
33217c478bd9Sstevel@tonic-gate 		/*
33227c478bd9Sstevel@tonic-gate 		 * Stop listening for connections now we've fired off the
33237c478bd9Sstevel@tonic-gate 		 * server for a wait type instance.
33247c478bd9Sstevel@tonic-gate 		 */
33257c478bd9Sstevel@tonic-gate 		(void) poll_bound_fds(instance, B_FALSE);
33267c478bd9Sstevel@tonic-gate 	}
33277c478bd9Sstevel@tonic-gate }
33287c478bd9Sstevel@tonic-gate 
33297c478bd9Sstevel@tonic-gate /*
33307c478bd9Sstevel@tonic-gate  * Process any networks requests for each proto for each instance.
33317c478bd9Sstevel@tonic-gate  */
33327c478bd9Sstevel@tonic-gate void
33337c478bd9Sstevel@tonic-gate process_network_events(void)
33347c478bd9Sstevel@tonic-gate {
33357c478bd9Sstevel@tonic-gate 	instance_t	*instance;
33367c478bd9Sstevel@tonic-gate 
33377c478bd9Sstevel@tonic-gate 	debug_msg("Entering process_network_events");
33387c478bd9Sstevel@tonic-gate 
33397c478bd9Sstevel@tonic-gate 	for (instance = uu_list_first(instance_list); instance != NULL;
33407c478bd9Sstevel@tonic-gate 	    instance = uu_list_next(instance_list, instance)) {
33417c478bd9Sstevel@tonic-gate 		basic_cfg_t	*cfg;
33427c478bd9Sstevel@tonic-gate 		proto_info_t	*pi;
33437c478bd9Sstevel@tonic-gate 
33447c478bd9Sstevel@tonic-gate 		/*
33457c478bd9Sstevel@tonic-gate 		 * Ignore instances in states that definitely don't have any
33467c478bd9Sstevel@tonic-gate 		 * listening fds.
33477c478bd9Sstevel@tonic-gate 		 */
33487c478bd9Sstevel@tonic-gate 		switch (instance->cur_istate) {
33497c478bd9Sstevel@tonic-gate 		case IIS_ONLINE:
33507c478bd9Sstevel@tonic-gate 		case IIS_DEGRADED:
33517c478bd9Sstevel@tonic-gate 		case IIS_IN_REFRESH_METHOD:
33527c478bd9Sstevel@tonic-gate 			break;
33537c478bd9Sstevel@tonic-gate 		default:
33547c478bd9Sstevel@tonic-gate 			continue;
33557c478bd9Sstevel@tonic-gate 		}
33567c478bd9Sstevel@tonic-gate 
33577c478bd9Sstevel@tonic-gate 		cfg = instance->config->basic;
33587c478bd9Sstevel@tonic-gate 
33597c478bd9Sstevel@tonic-gate 		for (pi = uu_list_first(cfg->proto_list); pi != NULL;
33607c478bd9Sstevel@tonic-gate 		    pi = uu_list_next(cfg->proto_list, pi)) {
33617c478bd9Sstevel@tonic-gate 			if ((pi->listen_fd != -1) &&
33627c478bd9Sstevel@tonic-gate 			    isset_pollfd(pi->listen_fd)) {
33637c478bd9Sstevel@tonic-gate 				if (cfg->iswait) {
33647c478bd9Sstevel@tonic-gate 					process_wait_request(instance, pi);
33657c478bd9Sstevel@tonic-gate 				} else {
33667c478bd9Sstevel@tonic-gate 					process_nowait_request(instance, pi);
33677c478bd9Sstevel@tonic-gate 				}
33687c478bd9Sstevel@tonic-gate 			}
33697c478bd9Sstevel@tonic-gate 		}
33707c478bd9Sstevel@tonic-gate 	}
33717c478bd9Sstevel@tonic-gate }
33727c478bd9Sstevel@tonic-gate 
33737c478bd9Sstevel@tonic-gate /* ARGSUSED0 */
33747c478bd9Sstevel@tonic-gate static void
33757c478bd9Sstevel@tonic-gate sigterm_handler(int sig)
33767c478bd9Sstevel@tonic-gate {
33777c478bd9Sstevel@tonic-gate 	debug_msg("Entering sigterm_handler");
33787c478bd9Sstevel@tonic-gate 
33797c478bd9Sstevel@tonic-gate 	got_sigterm = B_TRUE;
33807c478bd9Sstevel@tonic-gate }
33817c478bd9Sstevel@tonic-gate 
33827c478bd9Sstevel@tonic-gate /* ARGSUSED0 */
33837c478bd9Sstevel@tonic-gate static void
33847c478bd9Sstevel@tonic-gate sighup_handler(int sig)
33857c478bd9Sstevel@tonic-gate {
33867c478bd9Sstevel@tonic-gate 	debug_msg("Entering sighup_handler");
33877c478bd9Sstevel@tonic-gate 
33887c478bd9Sstevel@tonic-gate 	refresh_inetd_requested = B_TRUE;
33897c478bd9Sstevel@tonic-gate }
33907c478bd9Sstevel@tonic-gate 
33917c478bd9Sstevel@tonic-gate /*
33927c478bd9Sstevel@tonic-gate  * inetd's major work loop. This function sits in poll waiting for events
33937c478bd9Sstevel@tonic-gate  * to occur, processing them when they do. The possible events are
33947c478bd9Sstevel@tonic-gate  * master restarter requests, expired timer queue timers, stop/refresh signal
33957c478bd9Sstevel@tonic-gate  * requests, contract events indicating process termination, stop/refresh
33967c478bd9Sstevel@tonic-gate  * requests originating from one of the stop/refresh inetd processes and
33977c478bd9Sstevel@tonic-gate  * network events.
33987c478bd9Sstevel@tonic-gate  * The loop is exited when a stop request is received and processed, and
33997c478bd9Sstevel@tonic-gate  * all the instances have reached a suitable 'stopping' state.
34007c478bd9Sstevel@tonic-gate  */
34017c478bd9Sstevel@tonic-gate static void
34027c478bd9Sstevel@tonic-gate event_loop(void)
34037c478bd9Sstevel@tonic-gate {
34047c478bd9Sstevel@tonic-gate 	instance_t		*instance;
34057c478bd9Sstevel@tonic-gate 	int			timeout;
34067c478bd9Sstevel@tonic-gate 
34077c478bd9Sstevel@tonic-gate 	debug_msg("Entering event_loop");
34087c478bd9Sstevel@tonic-gate 
34097c478bd9Sstevel@tonic-gate 	for (;;) {
34107c478bd9Sstevel@tonic-gate 		int	pret = -1;
34117c478bd9Sstevel@tonic-gate 
34127c478bd9Sstevel@tonic-gate 		timeout = iu_earliest_timer(timer_queue);
34137c478bd9Sstevel@tonic-gate 
34147c478bd9Sstevel@tonic-gate 		debug_msg("Doing signal check/poll");
34157c478bd9Sstevel@tonic-gate 		if (!got_sigterm && !refresh_inetd_requested) {
34167c478bd9Sstevel@tonic-gate 			pret = poll(poll_fds, num_pollfds, timeout);
34177c478bd9Sstevel@tonic-gate 			if ((pret == -1) && (errno != EINTR)) {
34187c478bd9Sstevel@tonic-gate 				error_msg(gettext("poll failure: %s"),
34197c478bd9Sstevel@tonic-gate 				    strerror(errno));
34207c478bd9Sstevel@tonic-gate 				continue;
34217c478bd9Sstevel@tonic-gate 			}
34227c478bd9Sstevel@tonic-gate 			debug_msg("Exiting poll, returned: %d", pret);
34237c478bd9Sstevel@tonic-gate 		}
34247c478bd9Sstevel@tonic-gate 
34257c478bd9Sstevel@tonic-gate 		if (got_sigterm) {
34267c478bd9Sstevel@tonic-gate 			msg_fini();
34277c478bd9Sstevel@tonic-gate 			inetd_stop();
34287c478bd9Sstevel@tonic-gate 			got_sigterm = B_FALSE;
34297c478bd9Sstevel@tonic-gate 			goto check_if_stopped;
34307c478bd9Sstevel@tonic-gate 		}
34317c478bd9Sstevel@tonic-gate 
34327c478bd9Sstevel@tonic-gate 		/*
34337c478bd9Sstevel@tonic-gate 		 * Process any stop/refresh requests from the Unix Domain
34347c478bd9Sstevel@tonic-gate 		 * Socket.
34357c478bd9Sstevel@tonic-gate 		 */
34367c478bd9Sstevel@tonic-gate 		if ((pret != -1) && isset_pollfd(uds_fd)) {
34377c478bd9Sstevel@tonic-gate 			while (process_uds_event() == 0)
34387c478bd9Sstevel@tonic-gate 				;
34397c478bd9Sstevel@tonic-gate 		}
34407c478bd9Sstevel@tonic-gate 
34417c478bd9Sstevel@tonic-gate 		/*
34427c478bd9Sstevel@tonic-gate 		 * Process refresh request. We do this check after the UDS
34437c478bd9Sstevel@tonic-gate 		 * event check above, as it would be wasted processing if we
34447c478bd9Sstevel@tonic-gate 		 * started refreshing inetd based on a SIGHUP, and then were
34457c478bd9Sstevel@tonic-gate 		 * told to shut-down via a UDS event.
34467c478bd9Sstevel@tonic-gate 		 */
34477c478bd9Sstevel@tonic-gate 		if (refresh_inetd_requested) {
34487c478bd9Sstevel@tonic-gate 			refresh_inetd_requested = B_FALSE;
34497c478bd9Sstevel@tonic-gate 			if (!inetd_stopping)
34507c478bd9Sstevel@tonic-gate 				inetd_refresh();
34517c478bd9Sstevel@tonic-gate 		}
34527c478bd9Sstevel@tonic-gate 
34537c478bd9Sstevel@tonic-gate 		/*
34547c478bd9Sstevel@tonic-gate 		 * We were interrupted by a signal. Don't waste any more
34557c478bd9Sstevel@tonic-gate 		 * time processing a potentially inaccurate poll return.
34567c478bd9Sstevel@tonic-gate 		 */
34577c478bd9Sstevel@tonic-gate 		if (pret == -1)
34587c478bd9Sstevel@tonic-gate 			continue;
34597c478bd9Sstevel@tonic-gate 
34607c478bd9Sstevel@tonic-gate 		/*
34617c478bd9Sstevel@tonic-gate 		 * Process any instance restarter events.
34627c478bd9Sstevel@tonic-gate 		 */
34637c478bd9Sstevel@tonic-gate 		if (isset_pollfd(rst_event_pipe[PE_CONSUMER])) {
34647c478bd9Sstevel@tonic-gate 			while (process_restarter_event() == 0)
34657c478bd9Sstevel@tonic-gate 				;
34667c478bd9Sstevel@tonic-gate 		}
34677c478bd9Sstevel@tonic-gate 
34687c478bd9Sstevel@tonic-gate 		/*
34697c478bd9Sstevel@tonic-gate 		 * Process any expired timers (bind retry, con-rate offline,
34707c478bd9Sstevel@tonic-gate 		 * method timeouts).
34717c478bd9Sstevel@tonic-gate 		 */
34727c478bd9Sstevel@tonic-gate 		(void) iu_expire_timers(timer_queue);
34737c478bd9Sstevel@tonic-gate 
34747c478bd9Sstevel@tonic-gate 		process_terminated_methods();
34757c478bd9Sstevel@tonic-gate 
34767c478bd9Sstevel@tonic-gate 		/*
34777c478bd9Sstevel@tonic-gate 		 * If inetd is stopping, check whether all our managed
34787c478bd9Sstevel@tonic-gate 		 * instances have been stopped and we can return.
34797c478bd9Sstevel@tonic-gate 		 */
34807c478bd9Sstevel@tonic-gate 		if (inetd_stopping) {
34817c478bd9Sstevel@tonic-gate check_if_stopped:
34827c478bd9Sstevel@tonic-gate 			for (instance = uu_list_first(instance_list);
34837c478bd9Sstevel@tonic-gate 			    instance != NULL;
34847c478bd9Sstevel@tonic-gate 			    instance = uu_list_next(instance_list, instance)) {
34857c478bd9Sstevel@tonic-gate 				if (!instance_stopped(instance)) {
34867c478bd9Sstevel@tonic-gate 					debug_msg("%s not yet stopped",
34877c478bd9Sstevel@tonic-gate 					    instance->fmri);
34887c478bd9Sstevel@tonic-gate 					break;
34897c478bd9Sstevel@tonic-gate 				}
34907c478bd9Sstevel@tonic-gate 			}
34917c478bd9Sstevel@tonic-gate 			/* if all instances are stopped, return */
34927c478bd9Sstevel@tonic-gate 			if (instance == NULL)
34937c478bd9Sstevel@tonic-gate 				return;
34947c478bd9Sstevel@tonic-gate 		}
34957c478bd9Sstevel@tonic-gate 
34967c478bd9Sstevel@tonic-gate 		process_network_events();
34977c478bd9Sstevel@tonic-gate 	}
34987c478bd9Sstevel@tonic-gate }
34997c478bd9Sstevel@tonic-gate 
35007c478bd9Sstevel@tonic-gate static void
35017c478bd9Sstevel@tonic-gate fini(void)
35027c478bd9Sstevel@tonic-gate {
35037c478bd9Sstevel@tonic-gate 	debug_msg("Entering fini");
35047c478bd9Sstevel@tonic-gate 
35057c478bd9Sstevel@tonic-gate 	method_fini();
35067c478bd9Sstevel@tonic-gate 	uds_fini();
35077c478bd9Sstevel@tonic-gate 	if (timer_queue != NULL)
35087c478bd9Sstevel@tonic-gate 		iu_tq_destroy(timer_queue);
3509b823d4c7Sdstaff 
35107c478bd9Sstevel@tonic-gate 
35117c478bd9Sstevel@tonic-gate 	/*
3512b823d4c7Sdstaff 	 * We don't bother to undo the restarter interface at all.
3513b823d4c7Sdstaff 	 * Because of quirks in the interface, there is no way to
3514b823d4c7Sdstaff 	 * disconnect from the channel and cause any new events to be
3515b823d4c7Sdstaff 	 * queued.  However, any events which are received and not
3516b823d4c7Sdstaff 	 * acknowledged will be re-sent when inetd restarts as long as inetd
3517b823d4c7Sdstaff 	 * uses the same subscriber ID, which it does.
3518b823d4c7Sdstaff 	 *
3519b823d4c7Sdstaff 	 * By keeping the event pipe open but ignoring it, any events which
3520b823d4c7Sdstaff 	 * occur will cause restarter_event_proxy to hang without breaking
3521b823d4c7Sdstaff 	 * anything.
35227c478bd9Sstevel@tonic-gate 	 */
35237c478bd9Sstevel@tonic-gate 
35247c478bd9Sstevel@tonic-gate 	if (instance_list != NULL) {
35257c478bd9Sstevel@tonic-gate 		void		*cookie = NULL;
35267c478bd9Sstevel@tonic-gate 		instance_t	*inst;
35277c478bd9Sstevel@tonic-gate 
35287c478bd9Sstevel@tonic-gate 		while ((inst = uu_list_teardown(instance_list, &cookie)) !=
35297c478bd9Sstevel@tonic-gate 		    NULL)
35307c478bd9Sstevel@tonic-gate 			destroy_instance(inst);
35317c478bd9Sstevel@tonic-gate 		uu_list_destroy(instance_list);
35327c478bd9Sstevel@tonic-gate 	}
35337c478bd9Sstevel@tonic-gate 	if (instance_pool != NULL)
35347c478bd9Sstevel@tonic-gate 		uu_list_pool_destroy(instance_pool);
35357c478bd9Sstevel@tonic-gate 	tlx_fini();
35367c478bd9Sstevel@tonic-gate 	config_fini();
35377c478bd9Sstevel@tonic-gate 	repval_fini();
35387c478bd9Sstevel@tonic-gate 	poll_fini();
35397c478bd9Sstevel@tonic-gate 
35407c478bd9Sstevel@tonic-gate 	/* Close audit session */
35417c478bd9Sstevel@tonic-gate 	(void) adt_end_session(audit_handle);
35427c478bd9Sstevel@tonic-gate }
35437c478bd9Sstevel@tonic-gate 
35447c478bd9Sstevel@tonic-gate static int
35457c478bd9Sstevel@tonic-gate init(void)
35467c478bd9Sstevel@tonic-gate {
35477c478bd9Sstevel@tonic-gate 	int err;
35487c478bd9Sstevel@tonic-gate 
35497c478bd9Sstevel@tonic-gate 	debug_msg("Entering init");
35507c478bd9Sstevel@tonic-gate 
35517c478bd9Sstevel@tonic-gate 	if (repval_init() < 0)
35527c478bd9Sstevel@tonic-gate 		goto failed;
35537c478bd9Sstevel@tonic-gate 
35547c478bd9Sstevel@tonic-gate 	if (config_init() < 0)
35557c478bd9Sstevel@tonic-gate 		goto failed;
35567c478bd9Sstevel@tonic-gate 
35577c478bd9Sstevel@tonic-gate 	if (tlx_init() < 0)
35587c478bd9Sstevel@tonic-gate 		goto failed;
35597c478bd9Sstevel@tonic-gate 
35607c478bd9Sstevel@tonic-gate 	/* Setup instance list. */
35617c478bd9Sstevel@tonic-gate 	if ((instance_pool = uu_list_pool_create("instance_pool",
35627c478bd9Sstevel@tonic-gate 	    sizeof (instance_t), offsetof(instance_t, link), NULL,
35637c478bd9Sstevel@tonic-gate 	    UU_LIST_POOL_DEBUG)) == NULL) {
35647c478bd9Sstevel@tonic-gate 		error_msg("%s: %s",
35657c478bd9Sstevel@tonic-gate 		    gettext("Failed to create instance pool"),
35667c478bd9Sstevel@tonic-gate 		    uu_strerror(uu_error()));
35677c478bd9Sstevel@tonic-gate 		goto failed;
35687c478bd9Sstevel@tonic-gate 	}
35697c478bd9Sstevel@tonic-gate 	if ((instance_list = uu_list_create(instance_pool, NULL, 0)) == NULL) {
35707c478bd9Sstevel@tonic-gate 		error_msg("%s: %s",
35717c478bd9Sstevel@tonic-gate 		    gettext("Failed to create instance list"),
35727c478bd9Sstevel@tonic-gate 		    uu_strerror(uu_error()));
35737c478bd9Sstevel@tonic-gate 		goto failed;
35747c478bd9Sstevel@tonic-gate 	}
35757c478bd9Sstevel@tonic-gate 
35767c478bd9Sstevel@tonic-gate 	/*
35777c478bd9Sstevel@tonic-gate 	 * Create event pipe to communicate events with the main event
35787c478bd9Sstevel@tonic-gate 	 * loop and add it to the event loop's fdset.
35797c478bd9Sstevel@tonic-gate 	 */
35807c478bd9Sstevel@tonic-gate 	if (pipe(rst_event_pipe) < 0) {
35817c478bd9Sstevel@tonic-gate 		error_msg("pipe: %s", strerror(errno));
35827c478bd9Sstevel@tonic-gate 		goto failed;
35837c478bd9Sstevel@tonic-gate 	}
35847c478bd9Sstevel@tonic-gate 	/*
35857c478bd9Sstevel@tonic-gate 	 * We only leave the producer end to block on reads/writes as we
35867c478bd9Sstevel@tonic-gate 	 * can't afford to block in the main thread, yet need to in
35877c478bd9Sstevel@tonic-gate 	 * the restarter event thread, so it can sit and wait for an
35887c478bd9Sstevel@tonic-gate 	 * acknowledgement to be written to the pipe.
35897c478bd9Sstevel@tonic-gate 	 */
35907c478bd9Sstevel@tonic-gate 	disable_blocking(rst_event_pipe[PE_CONSUMER]);
35917c478bd9Sstevel@tonic-gate 	if ((set_pollfd(rst_event_pipe[PE_CONSUMER], POLLIN)) == -1)
35927c478bd9Sstevel@tonic-gate 		goto failed;
35937c478bd9Sstevel@tonic-gate 
35947c478bd9Sstevel@tonic-gate 	/*
35957c478bd9Sstevel@tonic-gate 	 * Register with master restarter for managed service events. This
35967c478bd9Sstevel@tonic-gate 	 * will fail, amongst other reasons, if inetd is already running.
35977c478bd9Sstevel@tonic-gate 	 */
35987c478bd9Sstevel@tonic-gate 	if ((err = restarter_bind_handle(RESTARTER_EVENT_VERSION,
35997c478bd9Sstevel@tonic-gate 	    INETD_INSTANCE_FMRI, restarter_event_proxy, 0,
36007c478bd9Sstevel@tonic-gate 	    &rst_event_handle)) != 0) {
36017c478bd9Sstevel@tonic-gate 		error_msg(gettext(
36027c478bd9Sstevel@tonic-gate 		    "Failed to register for restarter events: %s"),
36037c478bd9Sstevel@tonic-gate 		    strerror(err));
36047c478bd9Sstevel@tonic-gate 		goto failed;
36057c478bd9Sstevel@tonic-gate 	}
36067c478bd9Sstevel@tonic-gate 
36077c478bd9Sstevel@tonic-gate 	if (contract_init() < 0)
36087c478bd9Sstevel@tonic-gate 		goto failed;
36097c478bd9Sstevel@tonic-gate 
36107c478bd9Sstevel@tonic-gate 	if ((timer_queue = iu_tq_create()) == NULL) {
36117c478bd9Sstevel@tonic-gate 		error_msg(gettext("Failed to create timer queue."));
36127c478bd9Sstevel@tonic-gate 		goto failed;
36137c478bd9Sstevel@tonic-gate 	}
36147c478bd9Sstevel@tonic-gate 
36157c478bd9Sstevel@tonic-gate 	if (uds_init() < 0)
36167c478bd9Sstevel@tonic-gate 		goto failed;
36177c478bd9Sstevel@tonic-gate 
36187c478bd9Sstevel@tonic-gate 	if (method_init() < 0)
36197c478bd9Sstevel@tonic-gate 		goto failed;
36207c478bd9Sstevel@tonic-gate 
36217c478bd9Sstevel@tonic-gate 	/* Initialize auditing session */
36227c478bd9Sstevel@tonic-gate 	if (adt_start_session(&audit_handle, NULL, ADT_USE_PROC_DATA) != 0) {
36237c478bd9Sstevel@tonic-gate 		error_msg(gettext("Unable to start audit session"));
36247c478bd9Sstevel@tonic-gate 	}
36257c478bd9Sstevel@tonic-gate 
36267c478bd9Sstevel@tonic-gate 	/*
36277c478bd9Sstevel@tonic-gate 	 * Initialize signal dispositions/masks
36287c478bd9Sstevel@tonic-gate 	 */
36297c478bd9Sstevel@tonic-gate 	(void) sigset(SIGHUP, sighup_handler);
36307c478bd9Sstevel@tonic-gate 	(void) sigset(SIGTERM, sigterm_handler);
36317c478bd9Sstevel@tonic-gate 	(void) sigignore(SIGINT);
36327c478bd9Sstevel@tonic-gate 
36337c478bd9Sstevel@tonic-gate 	return (0);
36347c478bd9Sstevel@tonic-gate 
36357c478bd9Sstevel@tonic-gate failed:
36367c478bd9Sstevel@tonic-gate 	fini();
36377c478bd9Sstevel@tonic-gate 	return (-1);
36387c478bd9Sstevel@tonic-gate }
36397c478bd9Sstevel@tonic-gate 
36407c478bd9Sstevel@tonic-gate static int
36417c478bd9Sstevel@tonic-gate start_method(void)
36427c478bd9Sstevel@tonic-gate {
36437c478bd9Sstevel@tonic-gate 	int	i;
36447c478bd9Sstevel@tonic-gate 	int	pipe_fds[2];
36457c478bd9Sstevel@tonic-gate 	int	child;
36467c478bd9Sstevel@tonic-gate 
36477c478bd9Sstevel@tonic-gate 	debug_msg("ENTERING START_METHOD:");
36487c478bd9Sstevel@tonic-gate 
36497c478bd9Sstevel@tonic-gate 	/* Create pipe for child to notify parent of initialization success. */
36507c478bd9Sstevel@tonic-gate 	if (pipe(pipe_fds) < 0) {
36517c478bd9Sstevel@tonic-gate 		debug_msg("pipe: %s", strerror(errno));
36527c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_OTHER);
36537c478bd9Sstevel@tonic-gate 	}
36547c478bd9Sstevel@tonic-gate 
36557c478bd9Sstevel@tonic-gate 	if ((child = fork()) == -1) {
36567c478bd9Sstevel@tonic-gate 		debug_msg("fork: %s", strerror(errno));
36577c478bd9Sstevel@tonic-gate 		(void) close(pipe_fds[PE_CONSUMER]);
36587c478bd9Sstevel@tonic-gate 		(void) close(pipe_fds[PE_PRODUCER]);
36597c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_OTHER);
36607c478bd9Sstevel@tonic-gate 	} else if (child > 0) {			/* parent */
36617c478bd9Sstevel@tonic-gate 
36627c478bd9Sstevel@tonic-gate 		/* Wait on child to return success of initialization. */
36637c478bd9Sstevel@tonic-gate 		(void) close(pipe_fds[PE_PRODUCER]);
36647c478bd9Sstevel@tonic-gate 		if ((safe_read(pipe_fds[PE_CONSUMER], &i, sizeof (i)) != 0) ||
36657c478bd9Sstevel@tonic-gate 		    (i < 0)) {
36667c478bd9Sstevel@tonic-gate 			error_msg(gettext(
36677c478bd9Sstevel@tonic-gate 			    "Initialization failed, unable to start"));
36687c478bd9Sstevel@tonic-gate 			(void) close(pipe_fds[PE_CONSUMER]);
36697c478bd9Sstevel@tonic-gate 			/*
36707c478bd9Sstevel@tonic-gate 			 * Batch all initialization errors as 'other' errors,
36717c478bd9Sstevel@tonic-gate 			 * resulting in retries being attempted.
36727c478bd9Sstevel@tonic-gate 			 */
36737c478bd9Sstevel@tonic-gate 			return (SMF_EXIT_ERR_OTHER);
36747c478bd9Sstevel@tonic-gate 		} else {
36757c478bd9Sstevel@tonic-gate 			(void) close(pipe_fds[PE_CONSUMER]);
36767c478bd9Sstevel@tonic-gate 			return (SMF_EXIT_OK);
36777c478bd9Sstevel@tonic-gate 		}
36787c478bd9Sstevel@tonic-gate 	} else {				/* child */
36797c478bd9Sstevel@tonic-gate 		/*
36807c478bd9Sstevel@tonic-gate 		 * Perform initialization and return success code down
36817c478bd9Sstevel@tonic-gate 		 * the pipe.
36827c478bd9Sstevel@tonic-gate 		 */
36837c478bd9Sstevel@tonic-gate 		(void) close(pipe_fds[PE_CONSUMER]);
36847c478bd9Sstevel@tonic-gate 		i = init();
36857c478bd9Sstevel@tonic-gate 		if ((safe_write(pipe_fds[PE_PRODUCER], &i, sizeof (i)) < 0) ||
36867c478bd9Sstevel@tonic-gate 		    (i < 0)) {
36877c478bd9Sstevel@tonic-gate 			error_msg(gettext("pipe write failure: %s"),
36887c478bd9Sstevel@tonic-gate 			    strerror(errno));
36897c478bd9Sstevel@tonic-gate 			exit(1);
36907c478bd9Sstevel@tonic-gate 		}
36917c478bd9Sstevel@tonic-gate 		(void) close(pipe_fds[PE_PRODUCER]);
36927c478bd9Sstevel@tonic-gate 
36937c478bd9Sstevel@tonic-gate 		(void) setsid();
36947c478bd9Sstevel@tonic-gate 
36957c478bd9Sstevel@tonic-gate 		/*
36967c478bd9Sstevel@tonic-gate 		 * Log a message if the configuration file has changed since
36977c478bd9Sstevel@tonic-gate 		 * inetconv was last run.
36987c478bd9Sstevel@tonic-gate 		 */
36997c478bd9Sstevel@tonic-gate 		check_conf_file();
37007c478bd9Sstevel@tonic-gate 
37017c478bd9Sstevel@tonic-gate 		event_loop();
37027c478bd9Sstevel@tonic-gate 
37037c478bd9Sstevel@tonic-gate 		fini();
37047c478bd9Sstevel@tonic-gate 		debug_msg("inetd stopped");
37057c478bd9Sstevel@tonic-gate 		msg_fini();
37067c478bd9Sstevel@tonic-gate 		exit(0);
37077c478bd9Sstevel@tonic-gate 	}
37087c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
37097c478bd9Sstevel@tonic-gate }
37107c478bd9Sstevel@tonic-gate 
37117c478bd9Sstevel@tonic-gate /*
37127c478bd9Sstevel@tonic-gate  * When inetd is run from outside the SMF, this message is output to provide
37137c478bd9Sstevel@tonic-gate  * the person invoking inetd with further information that will help them
37147c478bd9Sstevel@tonic-gate  * understand how to start and stop inetd, and to achieve the other
37157c478bd9Sstevel@tonic-gate  * behaviors achievable with the legacy inetd command line interface, if
37167c478bd9Sstevel@tonic-gate  * it is possible.
37177c478bd9Sstevel@tonic-gate  */
37187c478bd9Sstevel@tonic-gate static void
37197c478bd9Sstevel@tonic-gate legacy_usage(void)
37207c478bd9Sstevel@tonic-gate {
37217c478bd9Sstevel@tonic-gate 	(void) fprintf(stderr,
37227c478bd9Sstevel@tonic-gate 	    "inetd is now an smf(5) managed service and can no longer be run "
37237c478bd9Sstevel@tonic-gate 	    "from the\n"
37247c478bd9Sstevel@tonic-gate 	    "command line. To enable or disable inetd refer to svcadm(1M) on\n"
37257c478bd9Sstevel@tonic-gate 	    "how to enable \"%s\", the inetd instance.\n"
37267c478bd9Sstevel@tonic-gate 	    "\n"
37277c478bd9Sstevel@tonic-gate 	    "The traditional inetd command line option mappings are:\n"
37287c478bd9Sstevel@tonic-gate 	    "\t-d : there is no supported debug output\n"
37297c478bd9Sstevel@tonic-gate 	    "\t-s : inetd is only runnable from within the SMF\n"
37307c478bd9Sstevel@tonic-gate 	    "\t-t : See inetadm(1M) on how to enable TCP tracing\n"
37317c478bd9Sstevel@tonic-gate 	    "\t-r : See inetadm(1M) on how to set a failure rate\n"
37327c478bd9Sstevel@tonic-gate 	    "\n"
37337c478bd9Sstevel@tonic-gate 	    "To specify an alternative configuration file see svccfg(1M)\n"
37347c478bd9Sstevel@tonic-gate 	    "for how to modify the \"%s/%s\" string type property of\n"
37357c478bd9Sstevel@tonic-gate 	    "the inetd instance, and modify it according to the syntax:\n"
37367c478bd9Sstevel@tonic-gate 	    "\"%s [alt_config_file] %%m\".\n"
37377c478bd9Sstevel@tonic-gate 	    "\n"
37387c478bd9Sstevel@tonic-gate 	    "For further information on inetd see inetd(1M).\n",
37397c478bd9Sstevel@tonic-gate 	    INETD_INSTANCE_FMRI, START_METHOD_ARG, SCF_PROPERTY_EXEC,
37407c478bd9Sstevel@tonic-gate 	    INETD_PATH);
37417c478bd9Sstevel@tonic-gate }
37427c478bd9Sstevel@tonic-gate 
37437c478bd9Sstevel@tonic-gate /*
37447c478bd9Sstevel@tonic-gate  * Usage message printed out for usage errors when running under the SMF.
37457c478bd9Sstevel@tonic-gate  */
37467c478bd9Sstevel@tonic-gate static void
37477c478bd9Sstevel@tonic-gate smf_usage(const char *arg0)
37487c478bd9Sstevel@tonic-gate {
37497c478bd9Sstevel@tonic-gate 	error_msg("Usage: %s [alt_conf_file] %s|%s|%s", arg0, START_METHOD_ARG,
37507c478bd9Sstevel@tonic-gate 	    STOP_METHOD_ARG, REFRESH_METHOD_ARG);
37517c478bd9Sstevel@tonic-gate }
37527c478bd9Sstevel@tonic-gate 
37537c478bd9Sstevel@tonic-gate /*
37547c478bd9Sstevel@tonic-gate  * Returns B_TRUE if we're being run from within the SMF, else B_FALSE.
37557c478bd9Sstevel@tonic-gate  */
37567c478bd9Sstevel@tonic-gate static boolean_t
37577c478bd9Sstevel@tonic-gate run_through_smf(void)
37587c478bd9Sstevel@tonic-gate {
37597c478bd9Sstevel@tonic-gate 	char *fmri;
37607c478bd9Sstevel@tonic-gate 
37617c478bd9Sstevel@tonic-gate 	/*
37627c478bd9Sstevel@tonic-gate 	 * check if the instance fmri environment variable has been set by
37637c478bd9Sstevel@tonic-gate 	 * our restarter.
37647c478bd9Sstevel@tonic-gate 	 */
37657c478bd9Sstevel@tonic-gate 	return (((fmri = getenv("SMF_FMRI")) != NULL) &&
37667c478bd9Sstevel@tonic-gate 	    (strcmp(fmri, INETD_INSTANCE_FMRI) == 0));
37677c478bd9Sstevel@tonic-gate }
37687c478bd9Sstevel@tonic-gate 
37697c478bd9Sstevel@tonic-gate int
37707c478bd9Sstevel@tonic-gate main(int argc, char *argv[])
37717c478bd9Sstevel@tonic-gate {
37727c478bd9Sstevel@tonic-gate 	char		*method;
37737c478bd9Sstevel@tonic-gate 	int		ret;
37747c478bd9Sstevel@tonic-gate 
37757c478bd9Sstevel@tonic-gate #if	!defined(TEXT_DOMAIN)
37767c478bd9Sstevel@tonic-gate #define	TEXT_DOMAIN "SYS_TEST"
37777c478bd9Sstevel@tonic-gate #endif
37787c478bd9Sstevel@tonic-gate 	(void) textdomain(TEXT_DOMAIN);
37797c478bd9Sstevel@tonic-gate 	(void) setlocale(LC_ALL, "");
37807c478bd9Sstevel@tonic-gate 
37817c478bd9Sstevel@tonic-gate 	if (!run_through_smf()) {
37827c478bd9Sstevel@tonic-gate 		legacy_usage();
37837c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_NOSMF);
37847c478bd9Sstevel@tonic-gate 	}
37857c478bd9Sstevel@tonic-gate 
37867c478bd9Sstevel@tonic-gate 	msg_init();	/* setup logging */
37877c478bd9Sstevel@tonic-gate 
37887c478bd9Sstevel@tonic-gate 	/* inetd invocation syntax is inetd [alt_conf_file] method_name */
37897c478bd9Sstevel@tonic-gate 
37907c478bd9Sstevel@tonic-gate 	switch (argc) {
37917c478bd9Sstevel@tonic-gate 	case 2:
37927c478bd9Sstevel@tonic-gate 		method = argv[1];
37937c478bd9Sstevel@tonic-gate 		break;
37947c478bd9Sstevel@tonic-gate 	case 3:
37957c478bd9Sstevel@tonic-gate 		conf_file = argv[1];
37967c478bd9Sstevel@tonic-gate 		method = argv[2];
37977c478bd9Sstevel@tonic-gate 		break;
37987c478bd9Sstevel@tonic-gate 	default:
37997c478bd9Sstevel@tonic-gate 		smf_usage(argv[0]);
38007c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_CONFIG);
38017c478bd9Sstevel@tonic-gate 
38027c478bd9Sstevel@tonic-gate 	}
38037c478bd9Sstevel@tonic-gate 
38047c478bd9Sstevel@tonic-gate 	if (strcmp(method, START_METHOD_ARG) == 0) {
38057c478bd9Sstevel@tonic-gate 		ret = start_method();
38067c478bd9Sstevel@tonic-gate 	} else if (strcmp(method, STOP_METHOD_ARG) == 0) {
38077c478bd9Sstevel@tonic-gate 		ret = stop_method();
38087c478bd9Sstevel@tonic-gate 	} else if (strcmp(method, REFRESH_METHOD_ARG) == 0) {
38097c478bd9Sstevel@tonic-gate 		ret = refresh_method();
38107c478bd9Sstevel@tonic-gate 	} else {
38117c478bd9Sstevel@tonic-gate 		smf_usage(argv[0]);
38127c478bd9Sstevel@tonic-gate 		return (SMF_EXIT_ERR_CONFIG);
38137c478bd9Sstevel@tonic-gate 	}
38147c478bd9Sstevel@tonic-gate 
38157c478bd9Sstevel@tonic-gate 	return (ret);
38167c478bd9Sstevel@tonic-gate }
3817