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 53ad28c1eSrm88369 * Common Development and Distribution License (the "License"). 63ad28c1eSrm88369 * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22*b8afd3a7SGary Mills * Copyright (c) 2011 Gary Mills 23*b8afd3a7SGary Mills * 24f6e214c7SGavin Maltby * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate /* 287c478bd9Sstevel@tonic-gate * NOTES: To be expanded. 297c478bd9Sstevel@tonic-gate * 307c478bd9Sstevel@tonic-gate * The SMF inetd. 317c478bd9Sstevel@tonic-gate * 327c478bd9Sstevel@tonic-gate * Below are some high level notes of the operation of the SMF inetd. The 337c478bd9Sstevel@tonic-gate * notes don't go into any real detail, and the viewer of this file is 347c478bd9Sstevel@tonic-gate * encouraged to look at the code and its associated comments to better 357c478bd9Sstevel@tonic-gate * understand inetd's operation. This saves the potential for the code 367c478bd9Sstevel@tonic-gate * and these notes diverging over time. 377c478bd9Sstevel@tonic-gate * 387c478bd9Sstevel@tonic-gate * Inetd's major work is done from the context of event_loop(). Within this 397c478bd9Sstevel@tonic-gate * loop, inetd polls for events arriving from a number of different file 407c478bd9Sstevel@tonic-gate * descriptors, representing the following event types, and initiates 417c478bd9Sstevel@tonic-gate * any necessary event processing: 427c478bd9Sstevel@tonic-gate * - incoming network connections/datagrams. 437c478bd9Sstevel@tonic-gate * - notification of terminated processes (discovered via contract events). 447c478bd9Sstevel@tonic-gate * - instance specific events originating from the SMF master restarter. 457c478bd9Sstevel@tonic-gate * - stop/refresh requests from the inetd method processes (coming in on a 467c478bd9Sstevel@tonic-gate * Unix Domain socket). 477c478bd9Sstevel@tonic-gate * There's also a timeout set for the poll, which is set to the nearest 487c478bd9Sstevel@tonic-gate * scheduled timer in a timer queue that inetd uses to perform delayed 497c478bd9Sstevel@tonic-gate * processing, such as bind retries. 507c478bd9Sstevel@tonic-gate * The SIGHUP and SIGINT signals can also interrupt the poll, and will 517c478bd9Sstevel@tonic-gate * result in inetd being refreshed or stopped respectively, as was the 527c478bd9Sstevel@tonic-gate * behavior with the old inetd. 537c478bd9Sstevel@tonic-gate * 547c478bd9Sstevel@tonic-gate * Inetd implements a state machine for each instance. The states within the 557c478bd9Sstevel@tonic-gate * machine are: offline, online, disabled, maintenance, uninitialized and 567c478bd9Sstevel@tonic-gate * specializations of the offline state for when an instance exceeds one of 577c478bd9Sstevel@tonic-gate * its DOS limits. The state of an instance can be changed as a 587c478bd9Sstevel@tonic-gate * result/side-effect of one of the above events occurring, or inetd being 597c478bd9Sstevel@tonic-gate * started up. The ongoing state of an instance is stored in the SMF 607c478bd9Sstevel@tonic-gate * repository, as required of SMF restarters. This enables an administrator 617c478bd9Sstevel@tonic-gate * to view the state of each instance, and, if inetd was to terminate 627c478bd9Sstevel@tonic-gate * unexpectedly, it could use the stored state to re-commence where it left off. 637c478bd9Sstevel@tonic-gate * 647c478bd9Sstevel@tonic-gate * Within the state machine a number of methods are run (if provided) as part 657c478bd9Sstevel@tonic-gate * of a state transition to aid/ effect a change in an instance's state. The 667c478bd9Sstevel@tonic-gate * supported methods are: offline, online, disable, refresh and start. The 677c478bd9Sstevel@tonic-gate * latter of these is the equivalent of the server program and its arguments 687c478bd9Sstevel@tonic-gate * in the old inetd. 697c478bd9Sstevel@tonic-gate * 707c478bd9Sstevel@tonic-gate * Events from the SMF master restarter come in on a number of threads 717c478bd9Sstevel@tonic-gate * created in the registration routine of librestart, the delegated restarter 727c478bd9Sstevel@tonic-gate * library. These threads call into the restart_event_proxy() function 737c478bd9Sstevel@tonic-gate * when an event arrives. To serialize the processing of instances, these events 747c478bd9Sstevel@tonic-gate * are then written down a pipe to the process's main thread, which listens 757c478bd9Sstevel@tonic-gate * for these events via a poll call, with the file descriptor of the other 767c478bd9Sstevel@tonic-gate * end of the pipe in its read set, and processes the event appropriately. 777c478bd9Sstevel@tonic-gate * When the event has been processed (which may be delayed if the instance 787c478bd9Sstevel@tonic-gate * for which the event is for is in the process of executing one of its methods 797c478bd9Sstevel@tonic-gate * as part of a state transition) it writes an acknowledgement back down the 807c478bd9Sstevel@tonic-gate * pipe the event was received on. The thread in restart_event_proxy() that 817c478bd9Sstevel@tonic-gate * wrote the event will read the acknowledgement it was blocked upon, and will 827c478bd9Sstevel@tonic-gate * then be able to return to its caller, thus implicitly acknowledging the 837c478bd9Sstevel@tonic-gate * event, and allowing another event to be written down the pipe for the main 847c478bd9Sstevel@tonic-gate * thread to process. 857c478bd9Sstevel@tonic-gate */ 867c478bd9Sstevel@tonic-gate 877c478bd9Sstevel@tonic-gate 887c478bd9Sstevel@tonic-gate #include <netdb.h> 897c478bd9Sstevel@tonic-gate #include <stdio.h> 90004388ebScasper #include <stdio_ext.h> 917c478bd9Sstevel@tonic-gate #include <stdlib.h> 927c478bd9Sstevel@tonic-gate #include <strings.h> 937c478bd9Sstevel@tonic-gate #include <unistd.h> 947c478bd9Sstevel@tonic-gate #include <assert.h> 957c478bd9Sstevel@tonic-gate #include <sys/types.h> 967c478bd9Sstevel@tonic-gate #include <sys/socket.h> 977c478bd9Sstevel@tonic-gate #include <netinet/in.h> 987c478bd9Sstevel@tonic-gate #include <fcntl.h> 997c478bd9Sstevel@tonic-gate #include <signal.h> 1007c478bd9Sstevel@tonic-gate #include <errno.h> 1017c478bd9Sstevel@tonic-gate #include <locale.h> 1027c478bd9Sstevel@tonic-gate #include <syslog.h> 1037c478bd9Sstevel@tonic-gate #include <libintl.h> 1047c478bd9Sstevel@tonic-gate #include <librestart.h> 1057c478bd9Sstevel@tonic-gate #include <pthread.h> 1067c478bd9Sstevel@tonic-gate #include <sys/stat.h> 1077c478bd9Sstevel@tonic-gate #include <time.h> 1087c478bd9Sstevel@tonic-gate #include <limits.h> 1097c478bd9Sstevel@tonic-gate #include <libgen.h> 1107c478bd9Sstevel@tonic-gate #include <tcpd.h> 1117c478bd9Sstevel@tonic-gate #include <libscf.h> 1127c478bd9Sstevel@tonic-gate #include <libuutil.h> 1137c478bd9Sstevel@tonic-gate #include <stddef.h> 1147c478bd9Sstevel@tonic-gate #include <bsm/adt_event.h> 1157cd7ea0bSrs200217 #include <ucred.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 233ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India /* Number of pending connections */ 234ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India static size_t tlx_pending_counter; 235ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India 2367c478bd9Sstevel@tonic-gate static void uds_fini(void); 2377c478bd9Sstevel@tonic-gate static int uds_init(void); 2387c478bd9Sstevel@tonic-gate static int run_method(instance_t *, instance_method_t, const proto_info_t *); 2397c478bd9Sstevel@tonic-gate static void create_bound_fds(instance_t *); 2407c478bd9Sstevel@tonic-gate static void destroy_bound_fds(instance_t *); 2417c478bd9Sstevel@tonic-gate static void destroy_instance(instance_t *); 2427c478bd9Sstevel@tonic-gate static void inetd_stop(void); 243b823d4c7Sdstaff static void 244b823d4c7Sdstaff exec_method(instance_t *instance, instance_method_t method, method_info_t *mi, 245b823d4c7Sdstaff struct method_context *mthd_ctxt, const proto_info_t *pi) __NORETURN; 2467c478bd9Sstevel@tonic-gate 2477c478bd9Sstevel@tonic-gate /* 2487c478bd9Sstevel@tonic-gate * The following two functions are callbacks that libumem uses to determine 2497c478bd9Sstevel@tonic-gate * inetd's desired debugging/logging levels. The interface they consume is 2507c478bd9Sstevel@tonic-gate * exported by FMA and is consolidation private. The comments in the two 2517c478bd9Sstevel@tonic-gate * functions give the environment variable that will effectively be set to 2527c478bd9Sstevel@tonic-gate * their returned value, and thus whose behavior for this value, described in 2537c478bd9Sstevel@tonic-gate * umem_debug(3MALLOC), will be followed. 2547c478bd9Sstevel@tonic-gate */ 2557c478bd9Sstevel@tonic-gate 2567c478bd9Sstevel@tonic-gate const char * 2577c478bd9Sstevel@tonic-gate _umem_debug_init(void) 2587c478bd9Sstevel@tonic-gate { 2597c478bd9Sstevel@tonic-gate return ("default,verbose"); /* UMEM_DEBUG setting */ 2607c478bd9Sstevel@tonic-gate } 2617c478bd9Sstevel@tonic-gate 2627c478bd9Sstevel@tonic-gate const char * 2637c478bd9Sstevel@tonic-gate _umem_logging_init(void) 2647c478bd9Sstevel@tonic-gate { 2657c478bd9Sstevel@tonic-gate return ("fail,contents"); /* UMEM_LOGGING setting */ 2667c478bd9Sstevel@tonic-gate } 2677c478bd9Sstevel@tonic-gate 2687c478bd9Sstevel@tonic-gate static void 2697c478bd9Sstevel@tonic-gate log_invalid_cfg(const char *fmri) 2707c478bd9Sstevel@tonic-gate { 2717c478bd9Sstevel@tonic-gate error_msg(gettext( 2727c478bd9Sstevel@tonic-gate "Invalid configuration for instance %s, placing in maintenance"), 2737c478bd9Sstevel@tonic-gate fmri); 2747c478bd9Sstevel@tonic-gate } 2757c478bd9Sstevel@tonic-gate 2767c478bd9Sstevel@tonic-gate /* 2777c478bd9Sstevel@tonic-gate * Returns B_TRUE if the instance is in a suitable state for inetd to stop. 2787c478bd9Sstevel@tonic-gate */ 2797c478bd9Sstevel@tonic-gate static boolean_t 2807c478bd9Sstevel@tonic-gate instance_stopped(const instance_t *inst) 2817c478bd9Sstevel@tonic-gate { 2827c478bd9Sstevel@tonic-gate return ((inst->cur_istate == IIS_OFFLINE) || 2837c478bd9Sstevel@tonic-gate (inst->cur_istate == IIS_MAINTENANCE) || 2847c478bd9Sstevel@tonic-gate (inst->cur_istate == IIS_DISABLED) || 2857c478bd9Sstevel@tonic-gate (inst->cur_istate == IIS_UNINITIALIZED)); 2867c478bd9Sstevel@tonic-gate } 2877c478bd9Sstevel@tonic-gate 2887c478bd9Sstevel@tonic-gate /* 289eb1a3463STruong Nguyen * Given the instance fmri, obtain the corresonding scf_instance. 290eb1a3463STruong Nguyen * Caller is responsible for freeing the returned scf_instance and 291eb1a3463STruong Nguyen * its scf_handle. 292eb1a3463STruong Nguyen */ 293eb1a3463STruong Nguyen static int 294eb1a3463STruong Nguyen fmri_to_instance(char *fmri, scf_instance_t **scf_instp) 295eb1a3463STruong Nguyen { 296eb1a3463STruong Nguyen int retries, ret = 1; 297eb1a3463STruong Nguyen scf_handle_t *h; 298eb1a3463STruong Nguyen scf_instance_t *scf_inst; 299eb1a3463STruong Nguyen 300eb1a3463STruong Nguyen if ((h = scf_handle_create(SCF_VERSION)) == NULL) { 301eb1a3463STruong Nguyen error_msg(gettext("Failed to get instance for %s"), fmri); 302eb1a3463STruong Nguyen return (1); 303eb1a3463STruong Nguyen } 304eb1a3463STruong Nguyen 305eb1a3463STruong Nguyen if ((scf_inst = scf_instance_create(h)) == NULL) 306eb1a3463STruong Nguyen goto out; 307eb1a3463STruong Nguyen 308eb1a3463STruong Nguyen for (retries = 0; retries <= REP_OP_RETRIES; retries++) { 309eb1a3463STruong Nguyen if (make_handle_bound(h) == -1) 310eb1a3463STruong Nguyen break; 311eb1a3463STruong Nguyen 312eb1a3463STruong Nguyen if (scf_handle_decode_fmri(h, fmri, NULL, NULL, scf_inst, 313eb1a3463STruong Nguyen NULL, NULL, SCF_DECODE_FMRI_EXACT) == 0) { 314eb1a3463STruong Nguyen ret = 0; 315eb1a3463STruong Nguyen *scf_instp = scf_inst; 316eb1a3463STruong Nguyen break; 317eb1a3463STruong Nguyen } 318eb1a3463STruong Nguyen 319eb1a3463STruong Nguyen if (scf_error() != SCF_ERROR_CONNECTION_BROKEN) 320eb1a3463STruong Nguyen break; 321eb1a3463STruong Nguyen } 322eb1a3463STruong Nguyen 323eb1a3463STruong Nguyen out: 324eb1a3463STruong Nguyen if (ret != 0) { 325eb1a3463STruong Nguyen error_msg(gettext("Failed to get instance for %s"), fmri); 326eb1a3463STruong Nguyen scf_instance_destroy(scf_inst); 327eb1a3463STruong Nguyen scf_handle_destroy(h); 328eb1a3463STruong Nguyen } 329eb1a3463STruong Nguyen 330eb1a3463STruong Nguyen return (ret); 331eb1a3463STruong Nguyen } 332eb1a3463STruong Nguyen 333eb1a3463STruong Nguyen /* 3347c478bd9Sstevel@tonic-gate * Updates the current and next repository states of instance 'inst'. If 3357c478bd9Sstevel@tonic-gate * any errors occur an error message is output. 3367c478bd9Sstevel@tonic-gate */ 3377c478bd9Sstevel@tonic-gate static void 3387c478bd9Sstevel@tonic-gate update_instance_states(instance_t *inst, internal_inst_state_t new_cur_state, 3397c478bd9Sstevel@tonic-gate internal_inst_state_t new_next_state, restarter_error_t err) 3407c478bd9Sstevel@tonic-gate { 3417c478bd9Sstevel@tonic-gate internal_inst_state_t old_cur = inst->cur_istate; 3427c478bd9Sstevel@tonic-gate internal_inst_state_t old_next = inst->next_istate; 343eb1a3463STruong Nguyen scf_instance_t *scf_inst = NULL; 3447c478bd9Sstevel@tonic-gate scf_error_t sret; 3457c478bd9Sstevel@tonic-gate int ret; 346f6e214c7SGavin Maltby restarter_str_t aux = restarter_str_none; 3477c478bd9Sstevel@tonic-gate 3487c478bd9Sstevel@tonic-gate /* update the repository/cached internal state */ 3497c478bd9Sstevel@tonic-gate inst->cur_istate = new_cur_state; 3507c478bd9Sstevel@tonic-gate inst->next_istate = new_next_state; 3517c478bd9Sstevel@tonic-gate (void) set_single_rep_val(inst->cur_istate_rep, 3527c478bd9Sstevel@tonic-gate (int64_t)new_cur_state); 3537c478bd9Sstevel@tonic-gate (void) set_single_rep_val(inst->next_istate_rep, 3547c478bd9Sstevel@tonic-gate (int64_t)new_next_state); 3557c478bd9Sstevel@tonic-gate 3567c478bd9Sstevel@tonic-gate if (((sret = store_rep_vals(inst->cur_istate_rep, inst->fmri, 3577c478bd9Sstevel@tonic-gate PR_NAME_CUR_INT_STATE)) != 0) || 3587c478bd9Sstevel@tonic-gate ((sret = store_rep_vals(inst->next_istate_rep, inst->fmri, 3597c478bd9Sstevel@tonic-gate PR_NAME_NEXT_INT_STATE)) != 0)) 3607c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to update state of instance %s in " 3617c478bd9Sstevel@tonic-gate "repository: %s"), inst->fmri, scf_strerror(sret)); 3627c478bd9Sstevel@tonic-gate 363eb1a3463STruong Nguyen if (fmri_to_instance(inst->fmri, &scf_inst) == 0) { 364eb1a3463STruong Nguyen /* 365eb1a3463STruong Nguyen * If transitioning to maintenance, check auxiliary_tty set 366eb1a3463STruong Nguyen * by svcadm and assign appropriate value to auxiliary_state. 367eb1a3463STruong Nguyen * If the maintenance event comes from a service request, 368eb1a3463STruong Nguyen * validate auxiliary_fmri and copy it to 369eb1a3463STruong Nguyen * restarter/auxiliary_fmri. 370eb1a3463STruong Nguyen */ 371eb1a3463STruong Nguyen if (new_cur_state == IIS_MAINTENANCE) { 372eb1a3463STruong Nguyen if (restarter_inst_ractions_from_tty(scf_inst) == 0) 373f6e214c7SGavin Maltby aux = restarter_str_service_request; 374eb1a3463STruong Nguyen else 375f6e214c7SGavin Maltby aux = restarter_str_administrative_request; 376eb1a3463STruong Nguyen } 377eb1a3463STruong Nguyen 378f6e214c7SGavin Maltby if (aux == restarter_str_service_request) { 379eb1a3463STruong Nguyen if (restarter_inst_validate_ractions_aux_fmri( 380eb1a3463STruong Nguyen scf_inst) == 0) { 381eb1a3463STruong Nguyen if (restarter_inst_set_aux_fmri(scf_inst)) 382eb1a3463STruong Nguyen error_msg(gettext("Could not set " 383eb1a3463STruong Nguyen "auxiliary_fmri property for %s"), 384eb1a3463STruong Nguyen inst->fmri); 385eb1a3463STruong Nguyen } else { 386eb1a3463STruong Nguyen if (restarter_inst_reset_aux_fmri(scf_inst)) 387eb1a3463STruong Nguyen error_msg(gettext("Could not reset " 388eb1a3463STruong Nguyen "auxiliary_fmri property for %s"), 389eb1a3463STruong Nguyen inst->fmri); 390eb1a3463STruong Nguyen } 391eb1a3463STruong Nguyen } 392eb1a3463STruong Nguyen scf_handle_destroy(scf_instance_handle(scf_inst)); 393eb1a3463STruong Nguyen scf_instance_destroy(scf_inst); 394eb1a3463STruong Nguyen } 395eb1a3463STruong Nguyen 3967c478bd9Sstevel@tonic-gate /* update the repository SMF state */ 3977c478bd9Sstevel@tonic-gate if ((ret = restarter_set_states(rst_event_handle, inst->fmri, 3987c478bd9Sstevel@tonic-gate states[old_cur].smf_state, states[new_cur_state].smf_state, 3997c478bd9Sstevel@tonic-gate states[old_next].smf_state, states[new_next_state].smf_state, 400eb1a3463STruong Nguyen err, aux)) != 0) 4017c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to update state of instance %s in " 4027c478bd9Sstevel@tonic-gate "repository: %s"), inst->fmri, strerror(ret)); 4037c478bd9Sstevel@tonic-gate } 4047c478bd9Sstevel@tonic-gate 4057c478bd9Sstevel@tonic-gate void 4067c478bd9Sstevel@tonic-gate update_state(instance_t *inst, internal_inst_state_t new_cur, 4077c478bd9Sstevel@tonic-gate restarter_error_t err) 4087c478bd9Sstevel@tonic-gate { 4097c478bd9Sstevel@tonic-gate update_instance_states(inst, new_cur, IIS_NONE, err); 4107c478bd9Sstevel@tonic-gate } 4117c478bd9Sstevel@tonic-gate 4127c478bd9Sstevel@tonic-gate /* 4137c478bd9Sstevel@tonic-gate * Sends a refresh event to the inetd start method process and returns 4147c478bd9Sstevel@tonic-gate * SMF_EXIT_OK if it managed to send it. If it fails to send the request for 4157c478bd9Sstevel@tonic-gate * some reason it returns SMF_EXIT_ERR_OTHER. 4167c478bd9Sstevel@tonic-gate */ 4177c478bd9Sstevel@tonic-gate static int 4187c478bd9Sstevel@tonic-gate refresh_method(void) 4197c478bd9Sstevel@tonic-gate { 4207c478bd9Sstevel@tonic-gate uds_request_t req = UR_REFRESH_INETD; 4217c478bd9Sstevel@tonic-gate int fd; 4227c478bd9Sstevel@tonic-gate 4237c478bd9Sstevel@tonic-gate if ((fd = connect_to_inetd()) < 0) { 4247c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to connect to inetd: %s"), 4257c478bd9Sstevel@tonic-gate strerror(errno)); 4267c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_OTHER); 4277c478bd9Sstevel@tonic-gate } 4287c478bd9Sstevel@tonic-gate 4297c478bd9Sstevel@tonic-gate /* write the request and return success */ 4307c478bd9Sstevel@tonic-gate if (safe_write(fd, &req, sizeof (req)) == -1) { 4317c478bd9Sstevel@tonic-gate error_msg( 4327c478bd9Sstevel@tonic-gate gettext("Failed to send refresh request to inetd: %s"), 4337c478bd9Sstevel@tonic-gate strerror(errno)); 4347c478bd9Sstevel@tonic-gate (void) close(fd); 4357c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_OTHER); 4367c478bd9Sstevel@tonic-gate } 4377c478bd9Sstevel@tonic-gate 4387c478bd9Sstevel@tonic-gate (void) close(fd); 4397c478bd9Sstevel@tonic-gate 4407c478bd9Sstevel@tonic-gate return (SMF_EXIT_OK); 4417c478bd9Sstevel@tonic-gate } 4427c478bd9Sstevel@tonic-gate 4437c478bd9Sstevel@tonic-gate /* 4447c478bd9Sstevel@tonic-gate * Sends a stop event to the inetd start method process and wait till it goes 4457c478bd9Sstevel@tonic-gate * away. If inetd is determined to have stopped SMF_EXIT_OK is returned, else 4467c478bd9Sstevel@tonic-gate * SMF_EXIT_ERR_OTHER is returned. 4477c478bd9Sstevel@tonic-gate */ 4487c478bd9Sstevel@tonic-gate static int 4497c478bd9Sstevel@tonic-gate stop_method(void) 4507c478bd9Sstevel@tonic-gate { 4517c478bd9Sstevel@tonic-gate uds_request_t req = UR_STOP_INETD; 4527c478bd9Sstevel@tonic-gate int fd; 4537c478bd9Sstevel@tonic-gate char c; 4547c478bd9Sstevel@tonic-gate ssize_t ret; 4557c478bd9Sstevel@tonic-gate 4567c478bd9Sstevel@tonic-gate if ((fd = connect_to_inetd()) == -1) { 4577c478bd9Sstevel@tonic-gate debug_msg(gettext("Failed to connect to inetd: %s"), 4587c478bd9Sstevel@tonic-gate strerror(errno)); 4597c478bd9Sstevel@tonic-gate /* 4607c478bd9Sstevel@tonic-gate * Assume connect_to_inetd() failed because inetd was already 4617c478bd9Sstevel@tonic-gate * stopped, and return success. 4627c478bd9Sstevel@tonic-gate */ 4637c478bd9Sstevel@tonic-gate return (SMF_EXIT_OK); 4647c478bd9Sstevel@tonic-gate } 4657c478bd9Sstevel@tonic-gate 4667c478bd9Sstevel@tonic-gate /* 4677c478bd9Sstevel@tonic-gate * This is safe to do since we're fired off in a separate process 4687c478bd9Sstevel@tonic-gate * than inetd and in the case we get wedged, the stop method timeout 4697c478bd9Sstevel@tonic-gate * will occur and we'd be killed by our restarter. 4707c478bd9Sstevel@tonic-gate */ 4717c478bd9Sstevel@tonic-gate enable_blocking(fd); 4727c478bd9Sstevel@tonic-gate 4737c478bd9Sstevel@tonic-gate /* write the stop request to inetd and wait till it goes away */ 4747c478bd9Sstevel@tonic-gate if (safe_write(fd, &req, sizeof (req)) != 0) { 4757c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to send stop request to inetd")); 4767c478bd9Sstevel@tonic-gate (void) close(fd); 4777c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_OTHER); 4787c478bd9Sstevel@tonic-gate } 4797c478bd9Sstevel@tonic-gate 4807c478bd9Sstevel@tonic-gate /* wait until remote end of socket is closed */ 4817c478bd9Sstevel@tonic-gate while (((ret = recv(fd, &c, sizeof (c), 0)) != 0) && (errno == EINTR)) 4827c478bd9Sstevel@tonic-gate ; 4837c478bd9Sstevel@tonic-gate 4847c478bd9Sstevel@tonic-gate (void) close(fd); 4857c478bd9Sstevel@tonic-gate 4867c478bd9Sstevel@tonic-gate if (ret != 0) { 4877c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to determine whether inetd stopped")); 4887c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_OTHER); 4897c478bd9Sstevel@tonic-gate } 4907c478bd9Sstevel@tonic-gate 4917c478bd9Sstevel@tonic-gate return (SMF_EXIT_OK); 4927c478bd9Sstevel@tonic-gate } 4937c478bd9Sstevel@tonic-gate 4947c478bd9Sstevel@tonic-gate 4957c478bd9Sstevel@tonic-gate /* 4967c478bd9Sstevel@tonic-gate * This function is called to handle restarter events coming in from the 4977c478bd9Sstevel@tonic-gate * master restarter. It is registered with the master restarter via 4987c478bd9Sstevel@tonic-gate * restarter_bind_handle() and simply passes a pointer to the event down 4997c478bd9Sstevel@tonic-gate * the event pipe, which will be discovered by the poll in the event loop 5007c478bd9Sstevel@tonic-gate * and processed there. It waits for an acknowledgement to be written back down 5017c478bd9Sstevel@tonic-gate * the pipe before returning. 5027c478bd9Sstevel@tonic-gate * Writing a pointer to the function's 'event' parameter down the pipe will 5037c478bd9Sstevel@tonic-gate * be safe, as the thread in restarter_event_proxy() doesn't return until 5047c478bd9Sstevel@tonic-gate * the main thread has finished its processing of the passed event, thus 5057c478bd9Sstevel@tonic-gate * the referenced event will remain around until the function returns. 5067c478bd9Sstevel@tonic-gate * To impose the limit of only one event being in the pipe and processed 5077c478bd9Sstevel@tonic-gate * at once, a lock is taken on entry to this function and returned on exit. 5087c478bd9Sstevel@tonic-gate * Always returns 0. 5097c478bd9Sstevel@tonic-gate */ 5107c478bd9Sstevel@tonic-gate static int 5117c478bd9Sstevel@tonic-gate restarter_event_proxy(restarter_event_t *event) 5127c478bd9Sstevel@tonic-gate { 5137c478bd9Sstevel@tonic-gate boolean_t processed; 5147c478bd9Sstevel@tonic-gate 5157c478bd9Sstevel@tonic-gate (void) pthread_mutex_lock(&rst_event_pipe_mtx); 5167c478bd9Sstevel@tonic-gate 5177c478bd9Sstevel@tonic-gate /* write the event to the main worker thread down the pipe */ 5187c478bd9Sstevel@tonic-gate if (safe_write(rst_event_pipe[PE_PRODUCER], &event, 5197c478bd9Sstevel@tonic-gate sizeof (event)) != 0) 5207c478bd9Sstevel@tonic-gate goto pipe_error; 5217c478bd9Sstevel@tonic-gate 5227c478bd9Sstevel@tonic-gate /* 5237c478bd9Sstevel@tonic-gate * Wait for an acknowledgement that the event has been processed from 5247c478bd9Sstevel@tonic-gate * the same pipe. In the case that inetd is stopping, any thread in 5257c478bd9Sstevel@tonic-gate * this function will simply block on this read until inetd eventually 5267c478bd9Sstevel@tonic-gate * exits. This will result in this function not returning success to 5277c478bd9Sstevel@tonic-gate * its caller, and the event that was being processed when the 5287c478bd9Sstevel@tonic-gate * function exited will be re-sent when inetd is next started. 5297c478bd9Sstevel@tonic-gate */ 5307c478bd9Sstevel@tonic-gate if (safe_read(rst_event_pipe[PE_PRODUCER], &processed, 5317c478bd9Sstevel@tonic-gate sizeof (processed)) != 0) 5327c478bd9Sstevel@tonic-gate goto pipe_error; 5337c478bd9Sstevel@tonic-gate 5347c478bd9Sstevel@tonic-gate (void) pthread_mutex_unlock(&rst_event_pipe_mtx); 5357c478bd9Sstevel@tonic-gate 5367c478bd9Sstevel@tonic-gate return (processed ? 0 : EAGAIN); 5377c478bd9Sstevel@tonic-gate 5387c478bd9Sstevel@tonic-gate pipe_error: 5397c478bd9Sstevel@tonic-gate /* 5407c478bd9Sstevel@tonic-gate * Something's seriously wrong with the event pipe. Notify the 5417c478bd9Sstevel@tonic-gate * worker thread by closing this end of the event pipe and pause till 5427c478bd9Sstevel@tonic-gate * inetd exits. 5437c478bd9Sstevel@tonic-gate */ 5447c478bd9Sstevel@tonic-gate error_msg(gettext("Can't process restarter events: %s"), 5457c478bd9Sstevel@tonic-gate strerror(errno)); 5467c478bd9Sstevel@tonic-gate (void) close(rst_event_pipe[PE_PRODUCER]); 5477c478bd9Sstevel@tonic-gate for (;;) 5487c478bd9Sstevel@tonic-gate (void) pause(); 5497c478bd9Sstevel@tonic-gate 5507c478bd9Sstevel@tonic-gate /* NOTREACHED */ 5517c478bd9Sstevel@tonic-gate } 5527c478bd9Sstevel@tonic-gate 5537c478bd9Sstevel@tonic-gate /* 5547c478bd9Sstevel@tonic-gate * Let restarter_event_proxy() know we're finished with the event it's blocked 5557c478bd9Sstevel@tonic-gate * upon. The 'processed' argument denotes whether we successfully processed the 5567c478bd9Sstevel@tonic-gate * event. 5577c478bd9Sstevel@tonic-gate */ 5587c478bd9Sstevel@tonic-gate static void 5597c478bd9Sstevel@tonic-gate ack_restarter_event(boolean_t processed) 5607c478bd9Sstevel@tonic-gate { 5617c478bd9Sstevel@tonic-gate /* 5627c478bd9Sstevel@tonic-gate * If safe_write returns -1 something's seriously wrong with the event 5637c478bd9Sstevel@tonic-gate * pipe, so start the shutdown proceedings. 5647c478bd9Sstevel@tonic-gate */ 5657c478bd9Sstevel@tonic-gate if (safe_write(rst_event_pipe[PE_CONSUMER], &processed, 5667c478bd9Sstevel@tonic-gate sizeof (processed)) == -1) 5677c478bd9Sstevel@tonic-gate inetd_stop(); 5687c478bd9Sstevel@tonic-gate } 5697c478bd9Sstevel@tonic-gate 5707c478bd9Sstevel@tonic-gate /* 5717c478bd9Sstevel@tonic-gate * Switch the syslog identification string to 'ident'. 5727c478bd9Sstevel@tonic-gate */ 5737c478bd9Sstevel@tonic-gate static void 5747c478bd9Sstevel@tonic-gate change_syslog_ident(const char *ident) 5757c478bd9Sstevel@tonic-gate { 5767c478bd9Sstevel@tonic-gate closelog(); 5777c478bd9Sstevel@tonic-gate openlog(ident, LOG_PID|LOG_CONS, LOG_DAEMON); 5787c478bd9Sstevel@tonic-gate } 5797c478bd9Sstevel@tonic-gate 5807c478bd9Sstevel@tonic-gate /* 5817c478bd9Sstevel@tonic-gate * Perform TCP wrappers checks on this instance. Due to the fact that the 5827c478bd9Sstevel@tonic-gate * current wrappers code used in Solaris is taken untouched from the open 5837c478bd9Sstevel@tonic-gate * source version, we're stuck with using the daemon name for the checks, as 5847c478bd9Sstevel@tonic-gate * opposed to making use of instance FMRIs. Sigh. 5857c478bd9Sstevel@tonic-gate * Returns B_TRUE if the check passed, else B_FALSE. 5867c478bd9Sstevel@tonic-gate */ 5877c478bd9Sstevel@tonic-gate static boolean_t 5887c478bd9Sstevel@tonic-gate tcp_wrappers_ok(instance_t *instance) 5897c478bd9Sstevel@tonic-gate { 5907c478bd9Sstevel@tonic-gate boolean_t rval = B_TRUE; 5917c478bd9Sstevel@tonic-gate char *daemon_name; 5927c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = instance->config->basic; 5937c478bd9Sstevel@tonic-gate struct request_info req; 5947c478bd9Sstevel@tonic-gate 5957c478bd9Sstevel@tonic-gate /* 5967c478bd9Sstevel@tonic-gate * Wrap the service using libwrap functions. The code below implements 5977c478bd9Sstevel@tonic-gate * the functionality of tcpd. This is done only for stream,nowait 5987c478bd9Sstevel@tonic-gate * services, following the convention of other vendors. udp/dgram and 5997c478bd9Sstevel@tonic-gate * stream/wait can NOT be wrapped with this libwrap, so be wary of 6007c478bd9Sstevel@tonic-gate * changing the test below. 6017c478bd9Sstevel@tonic-gate */ 6027c478bd9Sstevel@tonic-gate if (cfg->do_tcp_wrappers && !cfg->iswait && !cfg->istlx) { 6037c478bd9Sstevel@tonic-gate 6047c478bd9Sstevel@tonic-gate daemon_name = instance->config->methods[ 6057c478bd9Sstevel@tonic-gate IM_START]->exec_args_we.we_wordv[0]; 6067c478bd9Sstevel@tonic-gate if (*daemon_name == '/') 6077c478bd9Sstevel@tonic-gate daemon_name = strrchr(daemon_name, '/') + 1; 6087c478bd9Sstevel@tonic-gate 6097c478bd9Sstevel@tonic-gate /* 6107c478bd9Sstevel@tonic-gate * Change the syslog message identity to the name of the 6117c478bd9Sstevel@tonic-gate * daemon being wrapped, as opposed to "inetd". 6127c478bd9Sstevel@tonic-gate */ 6137c478bd9Sstevel@tonic-gate change_syslog_ident(daemon_name); 6147c478bd9Sstevel@tonic-gate 6157c478bd9Sstevel@tonic-gate (void) request_init(&req, RQ_DAEMON, daemon_name, RQ_FILE, 6167c478bd9Sstevel@tonic-gate instance->conn_fd, NULL); 6177c478bd9Sstevel@tonic-gate fromhost(&req); 6187c478bd9Sstevel@tonic-gate 6197c478bd9Sstevel@tonic-gate if (strcasecmp(eval_hostname(req.client), paranoid) == 0) { 6207c478bd9Sstevel@tonic-gate syslog(deny_severity, 6217c478bd9Sstevel@tonic-gate "refused connect from %s (name/address mismatch)", 6227c478bd9Sstevel@tonic-gate eval_client(&req)); 6237c478bd9Sstevel@tonic-gate if (req.sink != NULL) 6247c478bd9Sstevel@tonic-gate req.sink(instance->conn_fd); 6257c478bd9Sstevel@tonic-gate rval = B_FALSE; 6267c478bd9Sstevel@tonic-gate } else if (!hosts_access(&req)) { 6277c478bd9Sstevel@tonic-gate syslog(deny_severity, 6287c478bd9Sstevel@tonic-gate "refused connect from %s (access denied)", 6297c478bd9Sstevel@tonic-gate eval_client(&req)); 6307c478bd9Sstevel@tonic-gate if (req.sink != NULL) 6317c478bd9Sstevel@tonic-gate req.sink(instance->conn_fd); 6327c478bd9Sstevel@tonic-gate rval = B_FALSE; 6337c478bd9Sstevel@tonic-gate } else { 6347c478bd9Sstevel@tonic-gate syslog(allow_severity, "connect from %s", 6357c478bd9Sstevel@tonic-gate eval_client(&req)); 6367c478bd9Sstevel@tonic-gate } 6377c478bd9Sstevel@tonic-gate 6387c478bd9Sstevel@tonic-gate /* Revert syslog identity back to "inetd". */ 6397c478bd9Sstevel@tonic-gate change_syslog_ident(SYSLOG_IDENT); 6407c478bd9Sstevel@tonic-gate } 6417c478bd9Sstevel@tonic-gate return (rval); 6427c478bd9Sstevel@tonic-gate } 6437c478bd9Sstevel@tonic-gate 6447c478bd9Sstevel@tonic-gate /* 6457c478bd9Sstevel@tonic-gate * Handler registered with the timer queue code to remove an instance from 6467c478bd9Sstevel@tonic-gate * the connection rate offline state when it has been there for its allotted 6477c478bd9Sstevel@tonic-gate * time. 6487c478bd9Sstevel@tonic-gate */ 6497c478bd9Sstevel@tonic-gate /* ARGSUSED */ 6507c478bd9Sstevel@tonic-gate static void 6517c478bd9Sstevel@tonic-gate conn_rate_online(iu_tq_t *tq, void *arg) 6527c478bd9Sstevel@tonic-gate { 6537c478bd9Sstevel@tonic-gate instance_t *instance = arg; 6547c478bd9Sstevel@tonic-gate 6557c478bd9Sstevel@tonic-gate assert(instance->cur_istate == IIS_OFFLINE_CONRATE); 6567c478bd9Sstevel@tonic-gate instance->timer_id = -1; 6577c478bd9Sstevel@tonic-gate update_state(instance, IIS_OFFLINE, RERR_RESTART); 6587c478bd9Sstevel@tonic-gate process_offline_inst(instance); 6597c478bd9Sstevel@tonic-gate } 6607c478bd9Sstevel@tonic-gate 6617c478bd9Sstevel@tonic-gate /* 6627c478bd9Sstevel@tonic-gate * Check whether this instance in the offline state is in transition to 6637c478bd9Sstevel@tonic-gate * another state and do the work to continue this transition. 6647c478bd9Sstevel@tonic-gate */ 6657c478bd9Sstevel@tonic-gate void 6667c478bd9Sstevel@tonic-gate process_offline_inst(instance_t *inst) 6677c478bd9Sstevel@tonic-gate { 6687c478bd9Sstevel@tonic-gate if (inst->disable_req) { 6697c478bd9Sstevel@tonic-gate inst->disable_req = B_FALSE; 6707c478bd9Sstevel@tonic-gate (void) run_method(inst, IM_DISABLE, NULL); 6717c478bd9Sstevel@tonic-gate } else if (inst->maintenance_req) { 6727c478bd9Sstevel@tonic-gate inst->maintenance_req = B_FALSE; 6737c478bd9Sstevel@tonic-gate update_state(inst, IIS_MAINTENANCE, RERR_RESTART); 6747c478bd9Sstevel@tonic-gate /* 6757c478bd9Sstevel@tonic-gate * If inetd is in the process of stopping, we don't want to enter 6767c478bd9Sstevel@tonic-gate * any states but offline, disabled and maintenance. 6777c478bd9Sstevel@tonic-gate */ 6787c478bd9Sstevel@tonic-gate } else if (!inetd_stopping) { 6797c478bd9Sstevel@tonic-gate if (inst->conn_rate_exceeded) { 6807c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = inst->config->basic; 6817c478bd9Sstevel@tonic-gate 6827c478bd9Sstevel@tonic-gate inst->conn_rate_exceeded = B_FALSE; 6837c478bd9Sstevel@tonic-gate update_state(inst, IIS_OFFLINE_CONRATE, RERR_RESTART); 6847c478bd9Sstevel@tonic-gate /* 6857c478bd9Sstevel@tonic-gate * Schedule a timer to bring the instance out of the 6867c478bd9Sstevel@tonic-gate * connection rate offline state. 6877c478bd9Sstevel@tonic-gate */ 6887c478bd9Sstevel@tonic-gate inst->timer_id = iu_schedule_timer(timer_queue, 6897c478bd9Sstevel@tonic-gate cfg->conn_rate_offline, conn_rate_online, 6907c478bd9Sstevel@tonic-gate inst); 6917c478bd9Sstevel@tonic-gate if (inst->timer_id == -1) { 6927c478bd9Sstevel@tonic-gate error_msg(gettext("%s unable to set timer, " 6937c478bd9Sstevel@tonic-gate "won't be brought on line after %d " 6947c478bd9Sstevel@tonic-gate "seconds."), inst->fmri, 6957c478bd9Sstevel@tonic-gate cfg->conn_rate_offline); 6967c478bd9Sstevel@tonic-gate } 6977c478bd9Sstevel@tonic-gate 6987c478bd9Sstevel@tonic-gate } else if (copies_limit_exceeded(inst)) { 6997c478bd9Sstevel@tonic-gate update_state(inst, IIS_OFFLINE_COPIES, RERR_RESTART); 7007c478bd9Sstevel@tonic-gate } 7017c478bd9Sstevel@tonic-gate } 7027c478bd9Sstevel@tonic-gate } 7037c478bd9Sstevel@tonic-gate 7047c478bd9Sstevel@tonic-gate /* 7057c478bd9Sstevel@tonic-gate * Create a socket bound to the instance's configured address. If the 7067c478bd9Sstevel@tonic-gate * bind fails, returns -1, else the fd of the bound socket. 7077c478bd9Sstevel@tonic-gate */ 7087c478bd9Sstevel@tonic-gate static int 709fff9db26Svp157776 create_bound_socket(const instance_t *inst, socket_info_t *sock_info) 7107c478bd9Sstevel@tonic-gate { 7117c478bd9Sstevel@tonic-gate int fd; 7127c478bd9Sstevel@tonic-gate int on = 1; 713fff9db26Svp157776 const char *fmri = inst->fmri; 7147c478bd9Sstevel@tonic-gate rpc_info_t *rpc = sock_info->pr_info.ri; 7157c478bd9Sstevel@tonic-gate const char *proto = sock_info->pr_info.proto; 7167c478bd9Sstevel@tonic-gate 7177c478bd9Sstevel@tonic-gate fd = socket(sock_info->local_addr.ss_family, sock_info->type, 7187c478bd9Sstevel@tonic-gate sock_info->protocol); 7197c478bd9Sstevel@tonic-gate if (fd < 0) { 7207c478bd9Sstevel@tonic-gate error_msg(gettext( 7217c478bd9Sstevel@tonic-gate "Socket creation failure for instance %s, proto %s: %s"), 7227c478bd9Sstevel@tonic-gate fmri, proto, strerror(errno)); 7237c478bd9Sstevel@tonic-gate return (-1); 7247c478bd9Sstevel@tonic-gate } 7257c478bd9Sstevel@tonic-gate 7267c478bd9Sstevel@tonic-gate if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) == -1) { 7277c478bd9Sstevel@tonic-gate error_msg(gettext("setsockopt SO_REUSEADDR failed for service " 7287c478bd9Sstevel@tonic-gate "instance %s, proto %s: %s"), fmri, proto, strerror(errno)); 7297c478bd9Sstevel@tonic-gate (void) close(fd); 7307c478bd9Sstevel@tonic-gate return (-1); 7317c478bd9Sstevel@tonic-gate } 732e23de8e2SGary Mills if (inst->config->basic->do_tcp_keepalive && 733e23de8e2SGary Mills !inst->config->basic->iswait && !inst->config->basic->istlx) { 734e23de8e2SGary Mills /* set the keepalive option */ 735e23de8e2SGary Mills if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &on, 736e23de8e2SGary Mills sizeof (on)) == -1) { 737e23de8e2SGary Mills error_msg(gettext("setsockopt SO_KEEPALIVE failed for " 738e23de8e2SGary Mills "service instance %s, proto %s: %s"), fmri, 739e23de8e2SGary Mills proto, strerror(errno)); 740e23de8e2SGary Mills (void) close(fd); 741e23de8e2SGary Mills return (-1); 742e23de8e2SGary Mills } 743e23de8e2SGary Mills } 7447c478bd9Sstevel@tonic-gate if (sock_info->pr_info.v6only) { 7457c478bd9Sstevel@tonic-gate /* restrict socket to IPv6 communications only */ 7467c478bd9Sstevel@tonic-gate if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &on, 7477c478bd9Sstevel@tonic-gate sizeof (on)) == -1) { 7487c478bd9Sstevel@tonic-gate error_msg(gettext("setsockopt IPV6_V6ONLY failed for " 7497c478bd9Sstevel@tonic-gate "service instance %s, proto %s: %s"), fmri, proto, 7507c478bd9Sstevel@tonic-gate strerror(errno)); 7517c478bd9Sstevel@tonic-gate (void) close(fd); 7527c478bd9Sstevel@tonic-gate return (-1); 7537c478bd9Sstevel@tonic-gate } 7547c478bd9Sstevel@tonic-gate } 7557c478bd9Sstevel@tonic-gate 7567c478bd9Sstevel@tonic-gate if (rpc != NULL) 7577c478bd9Sstevel@tonic-gate SS_SETPORT(sock_info->local_addr, 0); 7587c478bd9Sstevel@tonic-gate 7597c478bd9Sstevel@tonic-gate if (bind(fd, (struct sockaddr *)&(sock_info->local_addr), 7607c478bd9Sstevel@tonic-gate SS_ADDRLEN(sock_info->local_addr)) < 0) { 7617c478bd9Sstevel@tonic-gate error_msg(gettext( 7627c478bd9Sstevel@tonic-gate "Failed to bind to the port of service instance %s, " 7637c478bd9Sstevel@tonic-gate "proto %s: %s"), fmri, proto, strerror(errno)); 7647c478bd9Sstevel@tonic-gate (void) close(fd); 7657c478bd9Sstevel@tonic-gate return (-1); 7667c478bd9Sstevel@tonic-gate } 7677c478bd9Sstevel@tonic-gate 7687c478bd9Sstevel@tonic-gate /* 7697c478bd9Sstevel@tonic-gate * Retrieve and store the address bound to for RPC services. 7707c478bd9Sstevel@tonic-gate */ 7717c478bd9Sstevel@tonic-gate if (rpc != NULL) { 7727c478bd9Sstevel@tonic-gate struct sockaddr_storage ss; 7737c478bd9Sstevel@tonic-gate int ss_size = sizeof (ss); 7747c478bd9Sstevel@tonic-gate 7757c478bd9Sstevel@tonic-gate if (getsockname(fd, (struct sockaddr *)&ss, &ss_size) < 0) { 7767c478bd9Sstevel@tonic-gate error_msg(gettext("Failed getsockname for instance %s, " 7777c478bd9Sstevel@tonic-gate "proto %s: %s"), fmri, proto, strerror(errno)); 7787c478bd9Sstevel@tonic-gate (void) close(fd); 7797c478bd9Sstevel@tonic-gate return (-1); 7807c478bd9Sstevel@tonic-gate } 7817c478bd9Sstevel@tonic-gate (void) memcpy(rpc->netbuf.buf, &ss, 7827c478bd9Sstevel@tonic-gate sizeof (struct sockaddr_storage)); 7837c478bd9Sstevel@tonic-gate rpc->netbuf.len = SS_ADDRLEN(ss); 7847c478bd9Sstevel@tonic-gate rpc->netbuf.maxlen = SS_ADDRLEN(ss); 7857c478bd9Sstevel@tonic-gate } 7867c478bd9Sstevel@tonic-gate 787fff9db26Svp157776 if (sock_info->type == SOCK_STREAM) { 788fff9db26Svp157776 int qlen = inst->config->basic->conn_backlog; 789fff9db26Svp157776 790fff9db26Svp157776 debug_msg("Listening for service %s with backlog queue" 791fff9db26Svp157776 " size %d", fmri, qlen); 792fff9db26Svp157776 (void) listen(fd, qlen); 793fff9db26Svp157776 } 7947c478bd9Sstevel@tonic-gate 7957c478bd9Sstevel@tonic-gate return (fd); 7967c478bd9Sstevel@tonic-gate } 7977c478bd9Sstevel@tonic-gate 7987c478bd9Sstevel@tonic-gate /* 7997c478bd9Sstevel@tonic-gate * Handler registered with the timer queue code to retry the creation 8007c478bd9Sstevel@tonic-gate * of a bound fd. 8017c478bd9Sstevel@tonic-gate */ 8027c478bd9Sstevel@tonic-gate /* ARGSUSED */ 8037c478bd9Sstevel@tonic-gate static void 8047c478bd9Sstevel@tonic-gate retry_bind(iu_tq_t *tq, void *arg) 8057c478bd9Sstevel@tonic-gate { 8067c478bd9Sstevel@tonic-gate instance_t *instance = arg; 8077c478bd9Sstevel@tonic-gate 8087c478bd9Sstevel@tonic-gate switch (instance->cur_istate) { 8097c478bd9Sstevel@tonic-gate case IIS_OFFLINE_BIND: 8107c478bd9Sstevel@tonic-gate case IIS_ONLINE: 8117c478bd9Sstevel@tonic-gate case IIS_DEGRADED: 8127c478bd9Sstevel@tonic-gate case IIS_IN_ONLINE_METHOD: 8137c478bd9Sstevel@tonic-gate case IIS_IN_REFRESH_METHOD: 8147c478bd9Sstevel@tonic-gate break; 8157c478bd9Sstevel@tonic-gate default: 8167c478bd9Sstevel@tonic-gate #ifndef NDEBUG 8177c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s:%d: Unknown instance state %d.\n", 8187c478bd9Sstevel@tonic-gate __FILE__, __LINE__, instance->cur_istate); 8197c478bd9Sstevel@tonic-gate #endif 8207c478bd9Sstevel@tonic-gate abort(); 8217c478bd9Sstevel@tonic-gate } 8227c478bd9Sstevel@tonic-gate 8237c478bd9Sstevel@tonic-gate instance->bind_timer_id = -1; 8247c478bd9Sstevel@tonic-gate create_bound_fds(instance); 8257c478bd9Sstevel@tonic-gate } 8267c478bd9Sstevel@tonic-gate 8277c478bd9Sstevel@tonic-gate /* 8287c478bd9Sstevel@tonic-gate * For each of the fds for the given instance that are bound, if 'listen' is 8295e2844d4SRenaud Manus * set add them to the poll set, else remove them from it. If proto_name is 8305e2844d4SRenaud Manus * not NULL then apply the change only to this specific protocol endpoint. 8315e2844d4SRenaud Manus * If any additions fail, returns -1, else 0 on success. 8327c478bd9Sstevel@tonic-gate */ 8337c478bd9Sstevel@tonic-gate int 8345e2844d4SRenaud Manus poll_bound_fds(instance_t *instance, boolean_t listen, char *proto_name) 8357c478bd9Sstevel@tonic-gate { 8367c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = instance->config->basic; 8377c478bd9Sstevel@tonic-gate proto_info_t *pi; 8387c478bd9Sstevel@tonic-gate int ret = 0; 8397c478bd9Sstevel@tonic-gate 8407c478bd9Sstevel@tonic-gate for (pi = uu_list_first(cfg->proto_list); pi != NULL; 8417c478bd9Sstevel@tonic-gate pi = uu_list_next(cfg->proto_list, pi)) { 8427c478bd9Sstevel@tonic-gate if (pi->listen_fd != -1) { /* fd bound */ 8435e2844d4SRenaud Manus if (proto_name == NULL || 8445e2844d4SRenaud Manus strcmp(pi->proto, proto_name) == 0) { 8455e2844d4SRenaud Manus if (listen == B_FALSE) { 8467c478bd9Sstevel@tonic-gate clear_pollfd(pi->listen_fd); 8475e2844d4SRenaud Manus } else if (set_pollfd(pi->listen_fd, 8485e2844d4SRenaud Manus POLLIN) == -1) { 8497c478bd9Sstevel@tonic-gate ret = -1; 8507c478bd9Sstevel@tonic-gate } 8517c478bd9Sstevel@tonic-gate } 8527c478bd9Sstevel@tonic-gate } 8535e2844d4SRenaud Manus } 8547c478bd9Sstevel@tonic-gate 8557c478bd9Sstevel@tonic-gate return (ret); 8567c478bd9Sstevel@tonic-gate } 8577c478bd9Sstevel@tonic-gate 8587c478bd9Sstevel@tonic-gate /* 8597c478bd9Sstevel@tonic-gate * Handle the case were we either fail to create a bound fd or we fail 8607c478bd9Sstevel@tonic-gate * to add a bound fd to the poll set for the given instance. 8617c478bd9Sstevel@tonic-gate */ 8627c478bd9Sstevel@tonic-gate static void 8637c478bd9Sstevel@tonic-gate handle_bind_failure(instance_t *instance) 8647c478bd9Sstevel@tonic-gate { 8657c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = instance->config->basic; 8667c478bd9Sstevel@tonic-gate 8677c478bd9Sstevel@tonic-gate /* 8687c478bd9Sstevel@tonic-gate * We must be being called as a result of a failed poll_bound_fds() 8697c478bd9Sstevel@tonic-gate * as a bind retry is already scheduled. Just return and let it do 8707c478bd9Sstevel@tonic-gate * the work. 8717c478bd9Sstevel@tonic-gate */ 8727c478bd9Sstevel@tonic-gate if (instance->bind_timer_id != -1) 8737c478bd9Sstevel@tonic-gate return; 8747c478bd9Sstevel@tonic-gate 8757c478bd9Sstevel@tonic-gate /* 8767c478bd9Sstevel@tonic-gate * Check if the rebind retries limit is operative and if so, 8777c478bd9Sstevel@tonic-gate * if it has been reached. 8787c478bd9Sstevel@tonic-gate */ 8797c478bd9Sstevel@tonic-gate if (((cfg->bind_fail_interval <= 0) || /* no retries */ 8807c478bd9Sstevel@tonic-gate ((cfg->bind_fail_max >= 0) && /* limit reached */ 8817c478bd9Sstevel@tonic-gate (++instance->bind_fail_count > cfg->bind_fail_max))) || 8827c478bd9Sstevel@tonic-gate ((instance->bind_timer_id = iu_schedule_timer(timer_queue, 8837c478bd9Sstevel@tonic-gate cfg->bind_fail_interval, retry_bind, instance)) == -1)) { 8847c478bd9Sstevel@tonic-gate proto_info_t *pi; 8857c478bd9Sstevel@tonic-gate 8867c478bd9Sstevel@tonic-gate instance->bind_fail_count = 0; 8877c478bd9Sstevel@tonic-gate 8887c478bd9Sstevel@tonic-gate switch (instance->cur_istate) { 8897c478bd9Sstevel@tonic-gate case IIS_DEGRADED: 8907c478bd9Sstevel@tonic-gate case IIS_ONLINE: 8917c478bd9Sstevel@tonic-gate /* check if any of the fds are being poll'd upon */ 8927c478bd9Sstevel@tonic-gate for (pi = uu_list_first(cfg->proto_list); pi != NULL; 8937c478bd9Sstevel@tonic-gate pi = uu_list_next(cfg->proto_list, pi)) { 8947c478bd9Sstevel@tonic-gate if ((pi->listen_fd != -1) && 8957c478bd9Sstevel@tonic-gate (find_pollfd(pi->listen_fd) != NULL)) 8967c478bd9Sstevel@tonic-gate break; 8977c478bd9Sstevel@tonic-gate } 8987c478bd9Sstevel@tonic-gate if (pi != NULL) { /* polling on > 0 fds */ 8997c478bd9Sstevel@tonic-gate warn_msg(gettext("Failed to bind on " 9007c478bd9Sstevel@tonic-gate "all protocols for instance %s, " 9017c478bd9Sstevel@tonic-gate "transitioning to degraded"), 9027c478bd9Sstevel@tonic-gate instance->fmri); 9037c478bd9Sstevel@tonic-gate update_state(instance, IIS_DEGRADED, RERR_NONE); 9047c478bd9Sstevel@tonic-gate instance->bind_retries_exceeded = B_TRUE; 9057c478bd9Sstevel@tonic-gate break; 9067c478bd9Sstevel@tonic-gate } 9077c478bd9Sstevel@tonic-gate 9087c478bd9Sstevel@tonic-gate destroy_bound_fds(instance); 9097c478bd9Sstevel@tonic-gate /* 9107c478bd9Sstevel@tonic-gate * In the case we failed the 'bind' because set_pollfd() 9117c478bd9Sstevel@tonic-gate * failed on all bound fds, use the offline handling. 9127c478bd9Sstevel@tonic-gate */ 9137c478bd9Sstevel@tonic-gate /* FALLTHROUGH */ 9147c478bd9Sstevel@tonic-gate case IIS_OFFLINE: 9157c478bd9Sstevel@tonic-gate case IIS_OFFLINE_BIND: 9167c478bd9Sstevel@tonic-gate error_msg(gettext("Too many bind failures for instance " 9177c478bd9Sstevel@tonic-gate "%s, transitioning to maintenance"), instance->fmri); 9187c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, 9197c478bd9Sstevel@tonic-gate RERR_FAULT); 9207c478bd9Sstevel@tonic-gate break; 9217c478bd9Sstevel@tonic-gate case IIS_IN_ONLINE_METHOD: 9227c478bd9Sstevel@tonic-gate case IIS_IN_REFRESH_METHOD: 9237c478bd9Sstevel@tonic-gate warn_msg(gettext("Failed to bind on all " 9247c478bd9Sstevel@tonic-gate "protocols for instance %s, instance will go to " 9257c478bd9Sstevel@tonic-gate "degraded"), instance->fmri); 9267c478bd9Sstevel@tonic-gate /* 9277c478bd9Sstevel@tonic-gate * Set the retries exceeded flag so when the method 9287c478bd9Sstevel@tonic-gate * completes the instance goes to the degraded state. 9297c478bd9Sstevel@tonic-gate */ 9307c478bd9Sstevel@tonic-gate instance->bind_retries_exceeded = B_TRUE; 9317c478bd9Sstevel@tonic-gate break; 9327c478bd9Sstevel@tonic-gate default: 9337c478bd9Sstevel@tonic-gate #ifndef NDEBUG 9347c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 9357c478bd9Sstevel@tonic-gate "%s:%d: Unknown instance state %d.\n", 9367c478bd9Sstevel@tonic-gate __FILE__, __LINE__, instance->cur_istate); 9377c478bd9Sstevel@tonic-gate #endif 9387c478bd9Sstevel@tonic-gate abort(); 9397c478bd9Sstevel@tonic-gate } 9407c478bd9Sstevel@tonic-gate } else if (instance->cur_istate == IIS_OFFLINE) { 9417c478bd9Sstevel@tonic-gate /* 9427c478bd9Sstevel@tonic-gate * bind re-scheduled, so if we're offline reflect this in the 9437c478bd9Sstevel@tonic-gate * state. 9447c478bd9Sstevel@tonic-gate */ 9457c478bd9Sstevel@tonic-gate update_state(instance, IIS_OFFLINE_BIND, RERR_NONE); 9467c478bd9Sstevel@tonic-gate } 9477c478bd9Sstevel@tonic-gate } 9487c478bd9Sstevel@tonic-gate 949b823d4c7Sdstaff 950b823d4c7Sdstaff /* 951b823d4c7Sdstaff * Check if two transport protocols for RPC conflict. 952b823d4c7Sdstaff */ 953b823d4c7Sdstaff 954b823d4c7Sdstaff boolean_t 955b823d4c7Sdstaff is_rpc_proto_conflict(const char *proto0, const char *proto1) { 956b823d4c7Sdstaff if (strcmp(proto0, "tcp") == 0) { 957b823d4c7Sdstaff if (strcmp(proto1, "tcp") == 0) 958b823d4c7Sdstaff return (B_TRUE); 959b823d4c7Sdstaff if (strcmp(proto1, "tcp6") == 0) 960b823d4c7Sdstaff return (B_TRUE); 961b823d4c7Sdstaff return (B_FALSE); 962b823d4c7Sdstaff } 963b823d4c7Sdstaff 964b823d4c7Sdstaff if (strcmp(proto0, "tcp6") == 0) { 965b823d4c7Sdstaff if (strcmp(proto1, "tcp") == 0) 966b823d4c7Sdstaff return (B_TRUE); 967b823d4c7Sdstaff if (strcmp(proto1, "tcp6only") == 0) 968b823d4c7Sdstaff return (B_TRUE); 969b823d4c7Sdstaff if (strcmp(proto1, "tcp6") == 0) 970b823d4c7Sdstaff return (B_TRUE); 971b823d4c7Sdstaff return (B_FALSE); 972b823d4c7Sdstaff } 973b823d4c7Sdstaff 974b823d4c7Sdstaff if (strcmp(proto0, "tcp6only") == 0) { 975b823d4c7Sdstaff if (strcmp(proto1, "tcp6only") == 0) 976b823d4c7Sdstaff return (B_TRUE); 977b823d4c7Sdstaff if (strcmp(proto1, "tcp6") == 0) 978b823d4c7Sdstaff return (B_TRUE); 979b823d4c7Sdstaff return (B_FALSE); 980b823d4c7Sdstaff } 981b823d4c7Sdstaff 982b823d4c7Sdstaff if (strcmp(proto0, "udp") == 0) { 983b823d4c7Sdstaff if (strcmp(proto1, "udp") == 0) 984b823d4c7Sdstaff return (B_TRUE); 985b823d4c7Sdstaff if (strcmp(proto1, "udp6") == 0) 986b823d4c7Sdstaff return (B_TRUE); 987b823d4c7Sdstaff return (B_FALSE); 988b823d4c7Sdstaff } 989b823d4c7Sdstaff 990b823d4c7Sdstaff if (strcmp(proto0, "udp6") == 0) { 991b823d4c7Sdstaff 992b823d4c7Sdstaff if (strcmp(proto1, "udp") == 0) 993b823d4c7Sdstaff return (B_TRUE); 994b823d4c7Sdstaff if (strcmp(proto1, "udp6only") == 0) 995b823d4c7Sdstaff return (B_TRUE); 996b823d4c7Sdstaff if (strcmp(proto1, "udp6") == 0) 997b823d4c7Sdstaff return (B_TRUE); 998b823d4c7Sdstaff return (B_FALSE); 999b823d4c7Sdstaff } 1000b823d4c7Sdstaff 1001b823d4c7Sdstaff if (strcmp(proto0, "udp6only") == 0) { 1002b823d4c7Sdstaff 1003b823d4c7Sdstaff if (strcmp(proto1, "udp6only") == 0) 1004b823d4c7Sdstaff return (B_TRUE); 1005b823d4c7Sdstaff if (strcmp(proto1, "udp6") == 0) 1006b823d4c7Sdstaff return (B_TRUE); 1007b823d4c7Sdstaff return (0); 1008b823d4c7Sdstaff } 1009b823d4c7Sdstaff 1010b823d4c7Sdstaff /* 1011b823d4c7Sdstaff * If the protocol isn't TCP/IP or UDP/IP assume that it has its own 1012b823d4c7Sdstaff * port namepsace and that conflicts can be detected by literal string 1013b823d4c7Sdstaff * comparison. 1014b823d4c7Sdstaff */ 1015b823d4c7Sdstaff 1016b823d4c7Sdstaff if (strcmp(proto0, proto1)) 1017b823d4c7Sdstaff return (FALSE); 1018b823d4c7Sdstaff 1019b823d4c7Sdstaff return (B_TRUE); 1020b823d4c7Sdstaff } 1021b823d4c7Sdstaff 1022b823d4c7Sdstaff 1023b823d4c7Sdstaff /* 1024b823d4c7Sdstaff * Check if inetd thinks this RPC program number is already registered. 1025b823d4c7Sdstaff * 1026b823d4c7Sdstaff * An RPC protocol conflict occurs if 1027b823d4c7Sdstaff * a) the program numbers are the same and, 1028b823d4c7Sdstaff * b) the version numbers overlap, 1029b823d4c7Sdstaff * c) the protocols (TCP vs UDP vs tic*) are the same. 1030b823d4c7Sdstaff */ 1031b823d4c7Sdstaff 1032b823d4c7Sdstaff boolean_t 1033b823d4c7Sdstaff is_rpc_num_in_use(int rpc_n, char *proto, int lowver, int highver) { 1034b823d4c7Sdstaff instance_t *i; 1035b823d4c7Sdstaff basic_cfg_t *cfg; 1036b823d4c7Sdstaff proto_info_t *pi; 1037b823d4c7Sdstaff 1038b823d4c7Sdstaff for (i = uu_list_first(instance_list); i != NULL; 1039b823d4c7Sdstaff i = uu_list_next(instance_list, i)) { 1040b823d4c7Sdstaff 1041b823d4c7Sdstaff if (i->cur_istate != IIS_ONLINE) 1042b823d4c7Sdstaff continue; 10437778f43aSdstaff cfg = i->config->basic; 1044b823d4c7Sdstaff 1045b823d4c7Sdstaff for (pi = uu_list_first(cfg->proto_list); pi != NULL; 1046b823d4c7Sdstaff pi = uu_list_next(cfg->proto_list, pi)) { 1047b823d4c7Sdstaff 1048b823d4c7Sdstaff if (pi->ri == NULL) 1049b823d4c7Sdstaff continue; 1050b823d4c7Sdstaff if (pi->ri->prognum != rpc_n) 1051b823d4c7Sdstaff continue; 1052b823d4c7Sdstaff if (!is_rpc_proto_conflict(pi->proto, proto)) 1053b823d4c7Sdstaff continue; 1054b823d4c7Sdstaff if ((lowver < pi->ri->lowver && 1055b823d4c7Sdstaff highver < pi->ri->lowver) || 1056b823d4c7Sdstaff (lowver > pi->ri->highver && 1057b823d4c7Sdstaff highver > pi->ri->highver)) 1058b823d4c7Sdstaff continue; 1059b823d4c7Sdstaff return (B_TRUE); 1060b823d4c7Sdstaff } 1061b823d4c7Sdstaff } 1062b823d4c7Sdstaff return (B_FALSE); 1063b823d4c7Sdstaff } 1064b823d4c7Sdstaff 1065b823d4c7Sdstaff 10667c478bd9Sstevel@tonic-gate /* 10677c478bd9Sstevel@tonic-gate * Independent of the transport, for each of the entries in the instance's 10687c478bd9Sstevel@tonic-gate * proto list this function first attempts to create an associated network fd; 10697c478bd9Sstevel@tonic-gate * for RPC services these are then bound to a kernel chosen port and the 10707c478bd9Sstevel@tonic-gate * fd is registered with rpcbind; for non-RPC services the fds are bound 10717c478bd9Sstevel@tonic-gate * to the port associated with the instance's service name. On any successful 10727c478bd9Sstevel@tonic-gate * binds the instance is taken online. Failed binds are handled by 10737c478bd9Sstevel@tonic-gate * handle_bind_failure(). 10747c478bd9Sstevel@tonic-gate */ 10757c478bd9Sstevel@tonic-gate void 10767c478bd9Sstevel@tonic-gate create_bound_fds(instance_t *instance) 10777c478bd9Sstevel@tonic-gate { 10787c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = instance->config->basic; 10797c478bd9Sstevel@tonic-gate boolean_t failure = B_FALSE; 10807c478bd9Sstevel@tonic-gate boolean_t success = B_FALSE; 10817c478bd9Sstevel@tonic-gate proto_info_t *pi; 10827c478bd9Sstevel@tonic-gate 10837c478bd9Sstevel@tonic-gate /* 10847c478bd9Sstevel@tonic-gate * Loop through and try and bind any unbound protos. 10857c478bd9Sstevel@tonic-gate */ 10867c478bd9Sstevel@tonic-gate for (pi = uu_list_first(cfg->proto_list); pi != NULL; 10877c478bd9Sstevel@tonic-gate pi = uu_list_next(cfg->proto_list, pi)) { 10887c478bd9Sstevel@tonic-gate if (pi->listen_fd != -1) 10897c478bd9Sstevel@tonic-gate continue; 10907c478bd9Sstevel@tonic-gate if (cfg->istlx) { 1091fff9db26Svp157776 pi->listen_fd = create_bound_endpoint(instance, 10927c478bd9Sstevel@tonic-gate (tlx_info_t *)pi); 10937c478bd9Sstevel@tonic-gate } else { 10947c478bd9Sstevel@tonic-gate /* 10957c478bd9Sstevel@tonic-gate * We cast pi to a void so we can then go on to cast 10967c478bd9Sstevel@tonic-gate * it to a socket_info_t without lint complaining 10977c478bd9Sstevel@tonic-gate * about alignment. This is done because the x86 10987c478bd9Sstevel@tonic-gate * version of lint thinks a lint suppression directive 10997c478bd9Sstevel@tonic-gate * is unnecessary and flags it as such, yet the sparc 11007c478bd9Sstevel@tonic-gate * version complains if it's absent. 11017c478bd9Sstevel@tonic-gate */ 11027c478bd9Sstevel@tonic-gate void *p = pi; 1103fff9db26Svp157776 pi->listen_fd = create_bound_socket(instance, 11047c478bd9Sstevel@tonic-gate (socket_info_t *)p); 11057c478bd9Sstevel@tonic-gate } 11067c478bd9Sstevel@tonic-gate if (pi->listen_fd == -1) { 11077c478bd9Sstevel@tonic-gate failure = B_TRUE; 11087c478bd9Sstevel@tonic-gate continue; 11097c478bd9Sstevel@tonic-gate } 11107c478bd9Sstevel@tonic-gate 11117c478bd9Sstevel@tonic-gate if (pi->ri != NULL) { 1112b823d4c7Sdstaff 1113b823d4c7Sdstaff /* 1114b823d4c7Sdstaff * Don't register the same RPC program number twice. 1115b823d4c7Sdstaff * Doing so silently discards the old service 1116b823d4c7Sdstaff * without causing an error. 1117b823d4c7Sdstaff */ 1118b823d4c7Sdstaff if (is_rpc_num_in_use(pi->ri->prognum, pi->proto, 1119b823d4c7Sdstaff pi->ri->lowver, pi->ri->highver)) { 1120b823d4c7Sdstaff failure = B_TRUE; 1121b823d4c7Sdstaff close_net_fd(instance, pi->listen_fd); 1122b823d4c7Sdstaff pi->listen_fd = -1; 1123b823d4c7Sdstaff continue; 1124b823d4c7Sdstaff } 1125b823d4c7Sdstaff 11267c478bd9Sstevel@tonic-gate unregister_rpc_service(instance->fmri, pi->ri); 11277c478bd9Sstevel@tonic-gate if (register_rpc_service(instance->fmri, pi->ri) == 11287c478bd9Sstevel@tonic-gate -1) { 11297c478bd9Sstevel@tonic-gate close_net_fd(instance, pi->listen_fd); 11307c478bd9Sstevel@tonic-gate pi->listen_fd = -1; 11317c478bd9Sstevel@tonic-gate failure = B_TRUE; 11327c478bd9Sstevel@tonic-gate continue; 11337c478bd9Sstevel@tonic-gate } 11347c478bd9Sstevel@tonic-gate } 11357c478bd9Sstevel@tonic-gate 11367c478bd9Sstevel@tonic-gate success = B_TRUE; 11377c478bd9Sstevel@tonic-gate } 11387c478bd9Sstevel@tonic-gate 11397c478bd9Sstevel@tonic-gate switch (instance->cur_istate) { 11407c478bd9Sstevel@tonic-gate case IIS_OFFLINE: 11417c478bd9Sstevel@tonic-gate case IIS_OFFLINE_BIND: 11427c478bd9Sstevel@tonic-gate /* 11437c478bd9Sstevel@tonic-gate * If we've managed to bind at least one proto lets run the 11447c478bd9Sstevel@tonic-gate * online method, so we can start listening for it. 11457c478bd9Sstevel@tonic-gate */ 11467c478bd9Sstevel@tonic-gate if (success && run_method(instance, IM_ONLINE, NULL) == -1) 11477c478bd9Sstevel@tonic-gate return; /* instance gone to maintenance */ 11487c478bd9Sstevel@tonic-gate break; 11497c478bd9Sstevel@tonic-gate case IIS_ONLINE: 11507c478bd9Sstevel@tonic-gate case IIS_IN_REFRESH_METHOD: 11517c478bd9Sstevel@tonic-gate /* 11527c478bd9Sstevel@tonic-gate * We're 'online', so start polling on any bound fds we're 11537c478bd9Sstevel@tonic-gate * currently not. 11547c478bd9Sstevel@tonic-gate */ 11555e2844d4SRenaud Manus if (poll_bound_fds(instance, B_TRUE, NULL) != 0) { 11567c478bd9Sstevel@tonic-gate failure = B_TRUE; 11577c478bd9Sstevel@tonic-gate } else if (!failure) { 11587c478bd9Sstevel@tonic-gate /* 11597c478bd9Sstevel@tonic-gate * We've successfully bound and poll'd upon all protos, 11607c478bd9Sstevel@tonic-gate * so reset the failure count. 11617c478bd9Sstevel@tonic-gate */ 11627c478bd9Sstevel@tonic-gate instance->bind_fail_count = 0; 11637c478bd9Sstevel@tonic-gate } 11647c478bd9Sstevel@tonic-gate break; 11657c478bd9Sstevel@tonic-gate case IIS_IN_ONLINE_METHOD: 11667c478bd9Sstevel@tonic-gate /* 11677c478bd9Sstevel@tonic-gate * Nothing to do here as the method completion code will start 11687c478bd9Sstevel@tonic-gate * listening for any successfully bound fds. 11697c478bd9Sstevel@tonic-gate */ 11707c478bd9Sstevel@tonic-gate break; 11717c478bd9Sstevel@tonic-gate default: 11727c478bd9Sstevel@tonic-gate #ifndef NDEBUG 11737c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s:%d: Unknown instance state %d.\n", 11747c478bd9Sstevel@tonic-gate __FILE__, __LINE__, instance->cur_istate); 11757c478bd9Sstevel@tonic-gate #endif 11767c478bd9Sstevel@tonic-gate abort(); 11777c478bd9Sstevel@tonic-gate } 11787c478bd9Sstevel@tonic-gate 11797c478bd9Sstevel@tonic-gate if (failure) 11807c478bd9Sstevel@tonic-gate handle_bind_failure(instance); 11817c478bd9Sstevel@tonic-gate } 11827c478bd9Sstevel@tonic-gate 11837c478bd9Sstevel@tonic-gate /* 11847c478bd9Sstevel@tonic-gate * Counter to create_bound_fds(), for each of the bound network fds this 11857c478bd9Sstevel@tonic-gate * function unregisters the instance from rpcbind if it's an RPC service, 11867c478bd9Sstevel@tonic-gate * stops listening for new connections for it and then closes the listening fd. 11877c478bd9Sstevel@tonic-gate */ 11887c478bd9Sstevel@tonic-gate static void 11897c478bd9Sstevel@tonic-gate destroy_bound_fds(instance_t *instance) 11907c478bd9Sstevel@tonic-gate { 11917c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = instance->config->basic; 11927c478bd9Sstevel@tonic-gate proto_info_t *pi; 11937c478bd9Sstevel@tonic-gate 11947c478bd9Sstevel@tonic-gate for (pi = uu_list_first(cfg->proto_list); pi != NULL; 11957c478bd9Sstevel@tonic-gate pi = uu_list_next(cfg->proto_list, pi)) { 11967c478bd9Sstevel@tonic-gate if (pi->listen_fd != -1) { 11977c478bd9Sstevel@tonic-gate if (pi->ri != NULL) 11987c478bd9Sstevel@tonic-gate unregister_rpc_service(instance->fmri, pi->ri); 11997c478bd9Sstevel@tonic-gate clear_pollfd(pi->listen_fd); 12007c478bd9Sstevel@tonic-gate close_net_fd(instance, pi->listen_fd); 12017c478bd9Sstevel@tonic-gate pi->listen_fd = -1; 12027c478bd9Sstevel@tonic-gate } 12037c478bd9Sstevel@tonic-gate } 12047c478bd9Sstevel@tonic-gate 12057c478bd9Sstevel@tonic-gate /* cancel any bind retries */ 12067c478bd9Sstevel@tonic-gate if (instance->bind_timer_id != -1) 12077c478bd9Sstevel@tonic-gate cancel_bind_timer(instance); 12087c478bd9Sstevel@tonic-gate 12097c478bd9Sstevel@tonic-gate instance->bind_retries_exceeded = B_FALSE; 12107c478bd9Sstevel@tonic-gate } 12117c478bd9Sstevel@tonic-gate 12127c478bd9Sstevel@tonic-gate /* 12137c478bd9Sstevel@tonic-gate * Perform %A address expansion and return a pointer to a static string 12147c478bd9Sstevel@tonic-gate * array containing crafted arguments. This expansion is provided for 12157c478bd9Sstevel@tonic-gate * compatibility with 4.2BSD daemons, and as such we've copied the logic of 12167c478bd9Sstevel@tonic-gate * the legacy inetd to maintain this compatibility as much as possible. This 12177c478bd9Sstevel@tonic-gate * logic is a bit scatty, but it dates back at least as far as SunOS 4.x. 12187c478bd9Sstevel@tonic-gate */ 12197c478bd9Sstevel@tonic-gate static char ** 12207c478bd9Sstevel@tonic-gate expand_address(instance_t *inst, const proto_info_t *pi) 12217c478bd9Sstevel@tonic-gate { 12227c478bd9Sstevel@tonic-gate static char addrbuf[sizeof ("ffffffff.65536")]; 12237c478bd9Sstevel@tonic-gate static char *ret[3]; 12247c478bd9Sstevel@tonic-gate instance_cfg_t *cfg = inst->config; 12257c478bd9Sstevel@tonic-gate /* 12267c478bd9Sstevel@tonic-gate * We cast pi to a void so we can then go on to cast it to a 12277c478bd9Sstevel@tonic-gate * socket_info_t without lint complaining about alignment. This 12287c478bd9Sstevel@tonic-gate * is done because the x86 version of lint thinks a lint suppression 12297c478bd9Sstevel@tonic-gate * directive is unnecessary and flags it as such, yet the sparc 12307c478bd9Sstevel@tonic-gate * version complains if it's absent. 12317c478bd9Sstevel@tonic-gate */ 12327c478bd9Sstevel@tonic-gate const void *p = pi; 12337c478bd9Sstevel@tonic-gate 12347c478bd9Sstevel@tonic-gate /* set ret[0] to the basename of exec path */ 12357c478bd9Sstevel@tonic-gate if ((ret[0] = strrchr(cfg->methods[IM_START]->exec_path, '/')) 12367c478bd9Sstevel@tonic-gate != NULL) { 12377c478bd9Sstevel@tonic-gate ret[0]++; 12387c478bd9Sstevel@tonic-gate } else { 12397c478bd9Sstevel@tonic-gate ret[0] = cfg->methods[IM_START]->exec_path; 12407c478bd9Sstevel@tonic-gate } 12417c478bd9Sstevel@tonic-gate 12427c478bd9Sstevel@tonic-gate if (!cfg->basic->istlx && 12437c478bd9Sstevel@tonic-gate (((socket_info_t *)p)->type == SOCK_DGRAM)) { 12447c478bd9Sstevel@tonic-gate ret[1] = NULL; 12457c478bd9Sstevel@tonic-gate } else { 12467c478bd9Sstevel@tonic-gate addrbuf[0] = '\0'; 12477c478bd9Sstevel@tonic-gate if (!cfg->basic->iswait && 12487c478bd9Sstevel@tonic-gate (inst->remote_addr.ss_family == AF_INET)) { 12497c478bd9Sstevel@tonic-gate struct sockaddr_in *sp; 12507c478bd9Sstevel@tonic-gate 12517c478bd9Sstevel@tonic-gate sp = (struct sockaddr_in *)&(inst->remote_addr); 12527c478bd9Sstevel@tonic-gate (void) snprintf(addrbuf, sizeof (addrbuf), "%x.%hu", 12537c478bd9Sstevel@tonic-gate ntohl(sp->sin_addr.s_addr), ntohs(sp->sin_port)); 12547c478bd9Sstevel@tonic-gate } 12557c478bd9Sstevel@tonic-gate ret[1] = addrbuf; 12567c478bd9Sstevel@tonic-gate ret[2] = NULL; 12577c478bd9Sstevel@tonic-gate } 12587c478bd9Sstevel@tonic-gate 12597c478bd9Sstevel@tonic-gate return (ret); 12607c478bd9Sstevel@tonic-gate } 12617c478bd9Sstevel@tonic-gate 12627c478bd9Sstevel@tonic-gate /* 12637c478bd9Sstevel@tonic-gate * Returns the state associated with the supplied method being run for an 12647c478bd9Sstevel@tonic-gate * instance. 12657c478bd9Sstevel@tonic-gate */ 12667c478bd9Sstevel@tonic-gate static internal_inst_state_t 12677c478bd9Sstevel@tonic-gate get_method_state(instance_method_t method) 12687c478bd9Sstevel@tonic-gate { 12697c478bd9Sstevel@tonic-gate state_info_t *sip; 12707c478bd9Sstevel@tonic-gate 12717c478bd9Sstevel@tonic-gate for (sip = states; sip->istate != IIS_NONE; sip++) { 12727c478bd9Sstevel@tonic-gate if (sip->method_running == method) 12737c478bd9Sstevel@tonic-gate break; 12747c478bd9Sstevel@tonic-gate } 12757c478bd9Sstevel@tonic-gate assert(sip->istate != IIS_NONE); 12767c478bd9Sstevel@tonic-gate 12777c478bd9Sstevel@tonic-gate return (sip->istate); 12787c478bd9Sstevel@tonic-gate } 12797c478bd9Sstevel@tonic-gate 12807c478bd9Sstevel@tonic-gate /* 12817c478bd9Sstevel@tonic-gate * Store the method's PID and CID in the repository. If the store fails 12827c478bd9Sstevel@tonic-gate * we ignore it and just drive on. 12837c478bd9Sstevel@tonic-gate */ 12847c478bd9Sstevel@tonic-gate static void 12857c478bd9Sstevel@tonic-gate add_method_ids(instance_t *ins, pid_t pid, ctid_t cid, instance_method_t mthd) 12867c478bd9Sstevel@tonic-gate { 12877c478bd9Sstevel@tonic-gate if (cid != -1) 128894501b61Sskamm (void) add_remove_contract(ins, B_TRUE, cid); 12897c478bd9Sstevel@tonic-gate 12907c478bd9Sstevel@tonic-gate if (mthd == IM_START) { 12917c478bd9Sstevel@tonic-gate if (add_rep_val(ins->start_pids, (int64_t)pid) == 0) { 12927c478bd9Sstevel@tonic-gate (void) store_rep_vals(ins->start_pids, ins->fmri, 12937c478bd9Sstevel@tonic-gate PR_NAME_START_PIDS); 12947c478bd9Sstevel@tonic-gate } 12957c478bd9Sstevel@tonic-gate } else { 12967c478bd9Sstevel@tonic-gate if (add_rep_val(ins->non_start_pid, (int64_t)pid) == 0) { 12977c478bd9Sstevel@tonic-gate (void) store_rep_vals(ins->non_start_pid, ins->fmri, 12987c478bd9Sstevel@tonic-gate PR_NAME_NON_START_PID); 12997c478bd9Sstevel@tonic-gate } 13007c478bd9Sstevel@tonic-gate } 13017c478bd9Sstevel@tonic-gate } 13027c478bd9Sstevel@tonic-gate 13037c478bd9Sstevel@tonic-gate /* 13047c478bd9Sstevel@tonic-gate * Remove the method's PID and CID from the repository. If the removal 13057c478bd9Sstevel@tonic-gate * fails we ignore it and drive on. 13067c478bd9Sstevel@tonic-gate */ 13077c478bd9Sstevel@tonic-gate void 13087c478bd9Sstevel@tonic-gate remove_method_ids(instance_t *inst, pid_t pid, ctid_t cid, 13097c478bd9Sstevel@tonic-gate instance_method_t mthd) 13107c478bd9Sstevel@tonic-gate { 13117c478bd9Sstevel@tonic-gate if (cid != -1) 131294501b61Sskamm (void) add_remove_contract(inst, B_FALSE, cid); 13137c478bd9Sstevel@tonic-gate 13147c478bd9Sstevel@tonic-gate if (mthd == IM_START) { 13157c478bd9Sstevel@tonic-gate remove_rep_val(inst->start_pids, (int64_t)pid); 13167c478bd9Sstevel@tonic-gate (void) store_rep_vals(inst->start_pids, inst->fmri, 13177c478bd9Sstevel@tonic-gate PR_NAME_START_PIDS); 13187c478bd9Sstevel@tonic-gate } else { 13197c478bd9Sstevel@tonic-gate remove_rep_val(inst->non_start_pid, (int64_t)pid); 13207c478bd9Sstevel@tonic-gate (void) store_rep_vals(inst->non_start_pid, inst->fmri, 13217c478bd9Sstevel@tonic-gate PR_NAME_NON_START_PID); 13227c478bd9Sstevel@tonic-gate } 13237c478bd9Sstevel@tonic-gate } 13247c478bd9Sstevel@tonic-gate 13257c478bd9Sstevel@tonic-gate static instance_t * 13267c478bd9Sstevel@tonic-gate create_instance(const char *fmri) 13277c478bd9Sstevel@tonic-gate { 13287c478bd9Sstevel@tonic-gate instance_t *ret; 13297c478bd9Sstevel@tonic-gate 13307c478bd9Sstevel@tonic-gate if (((ret = calloc(1, sizeof (instance_t))) == NULL) || 13317c478bd9Sstevel@tonic-gate ((ret->fmri = strdup(fmri)) == NULL)) 13327c478bd9Sstevel@tonic-gate goto alloc_fail; 13337c478bd9Sstevel@tonic-gate 13347c478bd9Sstevel@tonic-gate ret->conn_fd = -1; 13357c478bd9Sstevel@tonic-gate 13367c478bd9Sstevel@tonic-gate ret->copies = 0; 13377c478bd9Sstevel@tonic-gate 13387c478bd9Sstevel@tonic-gate ret->conn_rate_count = 0; 13397c478bd9Sstevel@tonic-gate ret->fail_rate_count = 0; 13407c478bd9Sstevel@tonic-gate ret->bind_fail_count = 0; 13417c478bd9Sstevel@tonic-gate 13427c478bd9Sstevel@tonic-gate if (((ret->non_start_pid = create_rep_val_list()) == NULL) || 134394501b61Sskamm ((ret->start_pids = create_rep_val_list()) == NULL) || 134494501b61Sskamm ((ret->start_ctids = create_rep_val_list()) == NULL)) 13457c478bd9Sstevel@tonic-gate goto alloc_fail; 13467c478bd9Sstevel@tonic-gate 13477c478bd9Sstevel@tonic-gate ret->cur_istate = IIS_NONE; 13487c478bd9Sstevel@tonic-gate ret->next_istate = IIS_NONE; 13497c478bd9Sstevel@tonic-gate 13507c478bd9Sstevel@tonic-gate if (((ret->cur_istate_rep = create_rep_val_list()) == NULL) || 13517c478bd9Sstevel@tonic-gate ((ret->next_istate_rep = create_rep_val_list()) == NULL)) 13527c478bd9Sstevel@tonic-gate goto alloc_fail; 13537c478bd9Sstevel@tonic-gate 13547c478bd9Sstevel@tonic-gate ret->config = NULL; 13557c478bd9Sstevel@tonic-gate ret->new_config = NULL; 13567c478bd9Sstevel@tonic-gate 13577c478bd9Sstevel@tonic-gate ret->timer_id = -1; 13587c478bd9Sstevel@tonic-gate ret->bind_timer_id = -1; 13597c478bd9Sstevel@tonic-gate 13607c478bd9Sstevel@tonic-gate ret->disable_req = B_FALSE; 13617c478bd9Sstevel@tonic-gate ret->maintenance_req = B_FALSE; 13627c478bd9Sstevel@tonic-gate ret->conn_rate_exceeded = B_FALSE; 13637c478bd9Sstevel@tonic-gate ret->bind_retries_exceeded = B_FALSE; 13647c478bd9Sstevel@tonic-gate 13657c478bd9Sstevel@tonic-gate ret->pending_rst_event = RESTARTER_EVENT_TYPE_INVALID; 13667c478bd9Sstevel@tonic-gate 13677c478bd9Sstevel@tonic-gate return (ret); 13687c478bd9Sstevel@tonic-gate 13697c478bd9Sstevel@tonic-gate alloc_fail: 13707c478bd9Sstevel@tonic-gate error_msg(strerror(errno)); 13717c478bd9Sstevel@tonic-gate destroy_instance(ret); 13727c478bd9Sstevel@tonic-gate return (NULL); 13737c478bd9Sstevel@tonic-gate } 13747c478bd9Sstevel@tonic-gate 13757c478bd9Sstevel@tonic-gate static void 13767c478bd9Sstevel@tonic-gate destroy_instance(instance_t *inst) 13777c478bd9Sstevel@tonic-gate { 13787c478bd9Sstevel@tonic-gate if (inst == NULL) 13797c478bd9Sstevel@tonic-gate return; 13807c478bd9Sstevel@tonic-gate 13817c478bd9Sstevel@tonic-gate destroy_instance_cfg(inst->config); 13827c478bd9Sstevel@tonic-gate destroy_instance_cfg(inst->new_config); 13837c478bd9Sstevel@tonic-gate 13847c478bd9Sstevel@tonic-gate destroy_rep_val_list(inst->cur_istate_rep); 13857c478bd9Sstevel@tonic-gate destroy_rep_val_list(inst->next_istate_rep); 13867c478bd9Sstevel@tonic-gate 13877c478bd9Sstevel@tonic-gate destroy_rep_val_list(inst->start_pids); 13887c478bd9Sstevel@tonic-gate destroy_rep_val_list(inst->non_start_pid); 138994501b61Sskamm destroy_rep_val_list(inst->start_ctids); 13907c478bd9Sstevel@tonic-gate 13917c478bd9Sstevel@tonic-gate free(inst->fmri); 13927c478bd9Sstevel@tonic-gate 13937c478bd9Sstevel@tonic-gate free(inst); 13947c478bd9Sstevel@tonic-gate } 13957c478bd9Sstevel@tonic-gate 13967c478bd9Sstevel@tonic-gate /* 13977c478bd9Sstevel@tonic-gate * Retrieves the current and next states internal states. Returns 0 on success, 13987c478bd9Sstevel@tonic-gate * else returns one of the following on error: 13997c478bd9Sstevel@tonic-gate * SCF_ERROR_NO_MEMORY if memory allocation failed. 14007c478bd9Sstevel@tonic-gate * SCF_ERROR_CONNECTION_BROKEN if the connection to the repository was broken. 14017c478bd9Sstevel@tonic-gate * SCF_ERROR_TYPE_MISMATCH if the property was of an unexpected type. 14027c478bd9Sstevel@tonic-gate * SCF_ERROR_NO_RESOURCES if the server doesn't have adequate resources. 14037c478bd9Sstevel@tonic-gate * SCF_ERROR_NO_SERVER if the server isn't running. 14047c478bd9Sstevel@tonic-gate */ 14057c478bd9Sstevel@tonic-gate static scf_error_t 14067c478bd9Sstevel@tonic-gate retrieve_instance_state(instance_t *inst) 14077c478bd9Sstevel@tonic-gate { 14087c478bd9Sstevel@tonic-gate scf_error_t ret; 14097c478bd9Sstevel@tonic-gate 14107c478bd9Sstevel@tonic-gate /* retrieve internal states */ 14117c478bd9Sstevel@tonic-gate if (((ret = retrieve_rep_vals(inst->cur_istate_rep, inst->fmri, 14127c478bd9Sstevel@tonic-gate PR_NAME_CUR_INT_STATE)) != 0) || 14137c478bd9Sstevel@tonic-gate ((ret = retrieve_rep_vals(inst->next_istate_rep, inst->fmri, 14147c478bd9Sstevel@tonic-gate PR_NAME_NEXT_INT_STATE)) != 0)) { 14157c478bd9Sstevel@tonic-gate if (ret != SCF_ERROR_NOT_FOUND) { 14167c478bd9Sstevel@tonic-gate error_msg(gettext( 14177c478bd9Sstevel@tonic-gate "Failed to read state of instance %s: %s"), 14187c478bd9Sstevel@tonic-gate inst->fmri, scf_strerror(scf_error())); 14197c478bd9Sstevel@tonic-gate return (ret); 14207c478bd9Sstevel@tonic-gate } 14217c478bd9Sstevel@tonic-gate 14227c478bd9Sstevel@tonic-gate debug_msg("instance with no previous int state - " 14237c478bd9Sstevel@tonic-gate "setting state to uninitialized"); 14247c478bd9Sstevel@tonic-gate 14257c478bd9Sstevel@tonic-gate if ((set_single_rep_val(inst->cur_istate_rep, 14267c478bd9Sstevel@tonic-gate (int64_t)IIS_UNINITIALIZED) == -1) || 14277c478bd9Sstevel@tonic-gate (set_single_rep_val(inst->next_istate_rep, 14287c478bd9Sstevel@tonic-gate (int64_t)IIS_NONE) == -1)) { 14297c478bd9Sstevel@tonic-gate return (SCF_ERROR_NO_MEMORY); 14307c478bd9Sstevel@tonic-gate } 14317c478bd9Sstevel@tonic-gate } 14327c478bd9Sstevel@tonic-gate 14337c478bd9Sstevel@tonic-gate /* update convenience states */ 14347c478bd9Sstevel@tonic-gate inst->cur_istate = get_single_rep_val(inst->cur_istate_rep); 14357c478bd9Sstevel@tonic-gate inst->next_istate = get_single_rep_val(inst->next_istate_rep); 14367c478bd9Sstevel@tonic-gate return (0); 14377c478bd9Sstevel@tonic-gate } 14387c478bd9Sstevel@tonic-gate 14397c478bd9Sstevel@tonic-gate /* 14407c478bd9Sstevel@tonic-gate * Retrieve stored process ids and register each of them so we process their 14417c478bd9Sstevel@tonic-gate * termination. 14427c478bd9Sstevel@tonic-gate */ 14437c478bd9Sstevel@tonic-gate static int 14447c478bd9Sstevel@tonic-gate retrieve_method_pids(instance_t *inst) 14457c478bd9Sstevel@tonic-gate { 14467c478bd9Sstevel@tonic-gate rep_val_t *rv; 14477c478bd9Sstevel@tonic-gate 14487c478bd9Sstevel@tonic-gate switch (retrieve_rep_vals(inst->start_pids, inst->fmri, 14497c478bd9Sstevel@tonic-gate PR_NAME_START_PIDS)) { 14507c478bd9Sstevel@tonic-gate case 0: 14517c478bd9Sstevel@tonic-gate break; 14527c478bd9Sstevel@tonic-gate case SCF_ERROR_NOT_FOUND: 14537c478bd9Sstevel@tonic-gate return (0); 14547c478bd9Sstevel@tonic-gate default: 14557c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to retrieve the start pids of " 14567c478bd9Sstevel@tonic-gate "instance %s from repository: %s"), inst->fmri, 14577c478bd9Sstevel@tonic-gate scf_strerror(scf_error())); 14587c478bd9Sstevel@tonic-gate return (-1); 14597c478bd9Sstevel@tonic-gate } 14607c478bd9Sstevel@tonic-gate 14617c478bd9Sstevel@tonic-gate rv = uu_list_first(inst->start_pids); 14627c478bd9Sstevel@tonic-gate while (rv != NULL) { 14637c478bd9Sstevel@tonic-gate if (register_method(inst, (pid_t)rv->val, (ctid_t)-1, 14645e2844d4SRenaud Manus IM_START, NULL) == 0) { 14657c478bd9Sstevel@tonic-gate inst->copies++; 14667c478bd9Sstevel@tonic-gate rv = uu_list_next(inst->start_pids, rv); 14677c478bd9Sstevel@tonic-gate } else if (errno == ENOENT) { 14687c478bd9Sstevel@tonic-gate pid_t pid = (pid_t)rv->val; 14697c478bd9Sstevel@tonic-gate 14707c478bd9Sstevel@tonic-gate /* 14717c478bd9Sstevel@tonic-gate * The process must have already terminated. Remove 14727c478bd9Sstevel@tonic-gate * it from the list. 14737c478bd9Sstevel@tonic-gate */ 14747c478bd9Sstevel@tonic-gate rv = uu_list_next(inst->start_pids, rv); 14757c478bd9Sstevel@tonic-gate remove_rep_val(inst->start_pids, pid); 14767c478bd9Sstevel@tonic-gate } else { 14777c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to listen for the completion " 14787c478bd9Sstevel@tonic-gate "of %s method of instance %s"), START_METHOD_NAME, 14797c478bd9Sstevel@tonic-gate inst->fmri); 14807c478bd9Sstevel@tonic-gate rv = uu_list_next(inst->start_pids, rv); 14817c478bd9Sstevel@tonic-gate } 14827c478bd9Sstevel@tonic-gate } 14837c478bd9Sstevel@tonic-gate 14847c478bd9Sstevel@tonic-gate /* synch the repository pid list to remove any terminated pids */ 14857c478bd9Sstevel@tonic-gate (void) store_rep_vals(inst->start_pids, inst->fmri, PR_NAME_START_PIDS); 14867c478bd9Sstevel@tonic-gate 14877c478bd9Sstevel@tonic-gate return (0); 14887c478bd9Sstevel@tonic-gate } 14897c478bd9Sstevel@tonic-gate 14907c478bd9Sstevel@tonic-gate /* 14917c478bd9Sstevel@tonic-gate * Remove the passed instance from inetd control. 14927c478bd9Sstevel@tonic-gate */ 14937c478bd9Sstevel@tonic-gate static void 14947c478bd9Sstevel@tonic-gate remove_instance(instance_t *instance) 14957c478bd9Sstevel@tonic-gate { 14967c478bd9Sstevel@tonic-gate switch (instance->cur_istate) { 14977c478bd9Sstevel@tonic-gate case IIS_ONLINE: 14987c478bd9Sstevel@tonic-gate case IIS_DEGRADED: 14997c478bd9Sstevel@tonic-gate /* stop listening for network connections */ 15007c478bd9Sstevel@tonic-gate destroy_bound_fds(instance); 15017c478bd9Sstevel@tonic-gate break; 15027c478bd9Sstevel@tonic-gate case IIS_OFFLINE_BIND: 15037c478bd9Sstevel@tonic-gate cancel_bind_timer(instance); 15047c478bd9Sstevel@tonic-gate break; 15057c478bd9Sstevel@tonic-gate case IIS_OFFLINE_CONRATE: 15067c478bd9Sstevel@tonic-gate cancel_inst_timer(instance); 15077c478bd9Sstevel@tonic-gate break; 15087c478bd9Sstevel@tonic-gate } 15097c478bd9Sstevel@tonic-gate 15107c478bd9Sstevel@tonic-gate /* stop listening for terminated methods */ 15117c478bd9Sstevel@tonic-gate unregister_instance_methods(instance); 15127c478bd9Sstevel@tonic-gate 15137c478bd9Sstevel@tonic-gate uu_list_remove(instance_list, instance); 15147c478bd9Sstevel@tonic-gate destroy_instance(instance); 15157c478bd9Sstevel@tonic-gate } 15167c478bd9Sstevel@tonic-gate 15177c478bd9Sstevel@tonic-gate /* 15187c478bd9Sstevel@tonic-gate * Refresh the configuration of instance 'inst'. This method gets called as 15197c478bd9Sstevel@tonic-gate * a result of a refresh event for the instance from the master restarter, so 15207c478bd9Sstevel@tonic-gate * we can rely upon the instance's running snapshot having been updated from 15217c478bd9Sstevel@tonic-gate * its configuration snapshot. 15227c478bd9Sstevel@tonic-gate */ 15237c478bd9Sstevel@tonic-gate void 15247c478bd9Sstevel@tonic-gate refresh_instance(instance_t *inst) 15257c478bd9Sstevel@tonic-gate { 15267c478bd9Sstevel@tonic-gate instance_cfg_t *cfg; 15277c478bd9Sstevel@tonic-gate 15287c478bd9Sstevel@tonic-gate switch (inst->cur_istate) { 15297c478bd9Sstevel@tonic-gate case IIS_MAINTENANCE: 15307c478bd9Sstevel@tonic-gate case IIS_DISABLED: 15317c478bd9Sstevel@tonic-gate case IIS_UNINITIALIZED: 15327c478bd9Sstevel@tonic-gate /* 15337c478bd9Sstevel@tonic-gate * Ignore any possible changes, we'll re-read the configuration 15347c478bd9Sstevel@tonic-gate * automatically when we exit these states. 15357c478bd9Sstevel@tonic-gate */ 15367c478bd9Sstevel@tonic-gate break; 15377c478bd9Sstevel@tonic-gate 15387c478bd9Sstevel@tonic-gate case IIS_OFFLINE_COPIES: 15397c478bd9Sstevel@tonic-gate case IIS_OFFLINE_BIND: 15407c478bd9Sstevel@tonic-gate case IIS_OFFLINE: 15417c478bd9Sstevel@tonic-gate case IIS_OFFLINE_CONRATE: 15427c478bd9Sstevel@tonic-gate destroy_instance_cfg(inst->config); 15437c478bd9Sstevel@tonic-gate if ((inst->config = read_instance_cfg(inst->fmri)) == NULL) { 15447c478bd9Sstevel@tonic-gate log_invalid_cfg(inst->fmri); 15457c478bd9Sstevel@tonic-gate if (inst->cur_istate == IIS_OFFLINE_BIND) { 15467c478bd9Sstevel@tonic-gate cancel_bind_timer(inst); 15477c478bd9Sstevel@tonic-gate } else if (inst->cur_istate == IIS_OFFLINE_CONRATE) { 15487c478bd9Sstevel@tonic-gate cancel_inst_timer(inst); 15497c478bd9Sstevel@tonic-gate } 15507c478bd9Sstevel@tonic-gate update_state(inst, IIS_MAINTENANCE, RERR_FAULT); 15517c478bd9Sstevel@tonic-gate } else { 15527c478bd9Sstevel@tonic-gate switch (inst->cur_istate) { 15537c478bd9Sstevel@tonic-gate case IIS_OFFLINE_BIND: 15547c478bd9Sstevel@tonic-gate if (copies_limit_exceeded(inst)) { 15557c478bd9Sstevel@tonic-gate /* Cancel scheduled bind retries. */ 15567c478bd9Sstevel@tonic-gate cancel_bind_timer(inst); 15577c478bd9Sstevel@tonic-gate 15587c478bd9Sstevel@tonic-gate /* 15597c478bd9Sstevel@tonic-gate * Take the instance to the copies 15607c478bd9Sstevel@tonic-gate * offline state, via the offline 15617c478bd9Sstevel@tonic-gate * state. 15627c478bd9Sstevel@tonic-gate */ 15637c478bd9Sstevel@tonic-gate update_state(inst, IIS_OFFLINE, 15647c478bd9Sstevel@tonic-gate RERR_RESTART); 15657c478bd9Sstevel@tonic-gate process_offline_inst(inst); 15667c478bd9Sstevel@tonic-gate } 15677c478bd9Sstevel@tonic-gate break; 15687c478bd9Sstevel@tonic-gate 15697c478bd9Sstevel@tonic-gate case IIS_OFFLINE: 15707c478bd9Sstevel@tonic-gate process_offline_inst(inst); 15717c478bd9Sstevel@tonic-gate break; 15727c478bd9Sstevel@tonic-gate 15737c478bd9Sstevel@tonic-gate case IIS_OFFLINE_CONRATE: 15747c478bd9Sstevel@tonic-gate /* 15757c478bd9Sstevel@tonic-gate * Since we're already in a DOS state, 15767c478bd9Sstevel@tonic-gate * don't bother evaluating the copies 15777c478bd9Sstevel@tonic-gate * limit. This will be evaluated when 15787c478bd9Sstevel@tonic-gate * we leave this state in 15797c478bd9Sstevel@tonic-gate * process_offline_inst(). 15807c478bd9Sstevel@tonic-gate */ 15817c478bd9Sstevel@tonic-gate break; 15827c478bd9Sstevel@tonic-gate 15837c478bd9Sstevel@tonic-gate case IIS_OFFLINE_COPIES: 15847c478bd9Sstevel@tonic-gate /* 15857c478bd9Sstevel@tonic-gate * Check if the copies limit has been increased 15867c478bd9Sstevel@tonic-gate * above the current count. 15877c478bd9Sstevel@tonic-gate */ 15887c478bd9Sstevel@tonic-gate if (!copies_limit_exceeded(inst)) { 15897c478bd9Sstevel@tonic-gate update_state(inst, IIS_OFFLINE, 15907c478bd9Sstevel@tonic-gate RERR_RESTART); 15917c478bd9Sstevel@tonic-gate process_offline_inst(inst); 15927c478bd9Sstevel@tonic-gate } 15937c478bd9Sstevel@tonic-gate break; 15947c478bd9Sstevel@tonic-gate 15957c478bd9Sstevel@tonic-gate default: 15967c478bd9Sstevel@tonic-gate assert(0); 15977c478bd9Sstevel@tonic-gate } 15987c478bd9Sstevel@tonic-gate } 15997c478bd9Sstevel@tonic-gate break; 16007c478bd9Sstevel@tonic-gate 16017c478bd9Sstevel@tonic-gate case IIS_DEGRADED: 16027c478bd9Sstevel@tonic-gate case IIS_ONLINE: 16037c478bd9Sstevel@tonic-gate if ((cfg = read_instance_cfg(inst->fmri)) != NULL) { 16047c478bd9Sstevel@tonic-gate instance_cfg_t *ocfg = inst->config; 16057c478bd9Sstevel@tonic-gate 16067c478bd9Sstevel@tonic-gate /* 16077c478bd9Sstevel@tonic-gate * Try to avoid the overhead of taking an instance 16087c478bd9Sstevel@tonic-gate * offline and back on again. We do this by limiting 16097c478bd9Sstevel@tonic-gate * this behavior to two eventualities: 16107c478bd9Sstevel@tonic-gate * - there needs to be a re-bind to listen on behalf 16117c478bd9Sstevel@tonic-gate * of the instance with its new configuration. This 16127c478bd9Sstevel@tonic-gate * could be because for example its service has been 16137c478bd9Sstevel@tonic-gate * associated with a different port, or because the 16147c478bd9Sstevel@tonic-gate * v6only protocol option has been newly applied to 16157c478bd9Sstevel@tonic-gate * the instance. 16167c478bd9Sstevel@tonic-gate * - one or both of the start or online methods of the 16177c478bd9Sstevel@tonic-gate * instance have changed in the new configuration. 16187c478bd9Sstevel@tonic-gate * Without taking the instance offline when the 16197c478bd9Sstevel@tonic-gate * start method changed the instance may be running 16207c478bd9Sstevel@tonic-gate * with unwanted parameters (or event an unwanted 16217c478bd9Sstevel@tonic-gate * binary); and without taking the instance offline 16227c478bd9Sstevel@tonic-gate * if its online method was to change, some part of 16237c478bd9Sstevel@tonic-gate * its running environment may have changed and would 16247c478bd9Sstevel@tonic-gate * not be picked up until the instance next goes 16257c478bd9Sstevel@tonic-gate * offline for another reason. 16267c478bd9Sstevel@tonic-gate */ 16277c478bd9Sstevel@tonic-gate if ((!bind_config_equal(ocfg->basic, cfg->basic)) || 16287c478bd9Sstevel@tonic-gate !method_info_equal(ocfg->methods[IM_ONLINE], 16297c478bd9Sstevel@tonic-gate cfg->methods[IM_ONLINE]) || 16307c478bd9Sstevel@tonic-gate !method_info_equal(ocfg->methods[IM_START], 16317c478bd9Sstevel@tonic-gate cfg->methods[IM_START])) { 16327c478bd9Sstevel@tonic-gate destroy_bound_fds(inst); 16337c478bd9Sstevel@tonic-gate 16347c478bd9Sstevel@tonic-gate assert(inst->new_config == NULL); 16357c478bd9Sstevel@tonic-gate inst->new_config = cfg; 16367c478bd9Sstevel@tonic-gate 16377c478bd9Sstevel@tonic-gate (void) run_method(inst, IM_OFFLINE, NULL); 16387c478bd9Sstevel@tonic-gate } else { /* no bind config / method changes */ 16397c478bd9Sstevel@tonic-gate 16407c478bd9Sstevel@tonic-gate /* 16417c478bd9Sstevel@tonic-gate * swap the proto list over from the old 16427c478bd9Sstevel@tonic-gate * configuration to the new, so we retain 16437c478bd9Sstevel@tonic-gate * our set of network fds. 16447c478bd9Sstevel@tonic-gate */ 16457c478bd9Sstevel@tonic-gate destroy_proto_list(cfg->basic); 16467c478bd9Sstevel@tonic-gate cfg->basic->proto_list = 16477c478bd9Sstevel@tonic-gate ocfg->basic->proto_list; 16487c478bd9Sstevel@tonic-gate ocfg->basic->proto_list = NULL; 16497c478bd9Sstevel@tonic-gate destroy_instance_cfg(ocfg); 16507c478bd9Sstevel@tonic-gate inst->config = cfg; 16517c478bd9Sstevel@tonic-gate 16527c478bd9Sstevel@tonic-gate /* re-evaluate copies limits based on new cfg */ 16537c478bd9Sstevel@tonic-gate if (copies_limit_exceeded(inst)) { 16547c478bd9Sstevel@tonic-gate destroy_bound_fds(inst); 16557c478bd9Sstevel@tonic-gate (void) run_method(inst, IM_OFFLINE, 16567c478bd9Sstevel@tonic-gate NULL); 16577c478bd9Sstevel@tonic-gate } else { 16587c478bd9Sstevel@tonic-gate /* 16597c478bd9Sstevel@tonic-gate * Since the instance isn't being 16607c478bd9Sstevel@tonic-gate * taken offline, where we assume it 16617c478bd9Sstevel@tonic-gate * would pick-up any configuration 16627c478bd9Sstevel@tonic-gate * changes automatically when it goes 16637c478bd9Sstevel@tonic-gate * back online, run its refresh method 16647c478bd9Sstevel@tonic-gate * to allow it to pick-up any changes 16657c478bd9Sstevel@tonic-gate * whilst still online. 16667c478bd9Sstevel@tonic-gate */ 16677c478bd9Sstevel@tonic-gate (void) run_method(inst, IM_REFRESH, 16687c478bd9Sstevel@tonic-gate NULL); 16697c478bd9Sstevel@tonic-gate } 16707c478bd9Sstevel@tonic-gate } 16717c478bd9Sstevel@tonic-gate } else { 16727c478bd9Sstevel@tonic-gate log_invalid_cfg(inst->fmri); 16737c478bd9Sstevel@tonic-gate 16747c478bd9Sstevel@tonic-gate destroy_bound_fds(inst); 16757c478bd9Sstevel@tonic-gate 16767c478bd9Sstevel@tonic-gate inst->maintenance_req = B_TRUE; 16777c478bd9Sstevel@tonic-gate (void) run_method(inst, IM_OFFLINE, NULL); 16787c478bd9Sstevel@tonic-gate } 16797c478bd9Sstevel@tonic-gate break; 16807c478bd9Sstevel@tonic-gate 16817c478bd9Sstevel@tonic-gate default: 16827c478bd9Sstevel@tonic-gate debug_msg("Unhandled current state %d for instance in " 16837c478bd9Sstevel@tonic-gate "refresh_instance", inst->cur_istate); 16847c478bd9Sstevel@tonic-gate assert(0); 16857c478bd9Sstevel@tonic-gate } 16867c478bd9Sstevel@tonic-gate } 16877c478bd9Sstevel@tonic-gate 16887c478bd9Sstevel@tonic-gate /* 16897c478bd9Sstevel@tonic-gate * Called by process_restarter_event() to handle a restarter event for an 16907c478bd9Sstevel@tonic-gate * instance. 16917c478bd9Sstevel@tonic-gate */ 16927c478bd9Sstevel@tonic-gate static void 16937c478bd9Sstevel@tonic-gate handle_restarter_event(instance_t *instance, restarter_event_type_t event, 16947c478bd9Sstevel@tonic-gate boolean_t send_ack) 16957c478bd9Sstevel@tonic-gate { 16967c478bd9Sstevel@tonic-gate switch (event) { 16978977779cSvp157776 case RESTARTER_EVENT_TYPE_ADD_INSTANCE: 16988977779cSvp157776 /* 16998977779cSvp157776 * When startd restarts, it sends _ADD_INSTANCE to delegated 17008977779cSvp157776 * restarters for all those services managed by them. We should 17018977779cSvp157776 * acknowledge this event, as startd's graph needs to be updated 17028977779cSvp157776 * about the current state of the service, when startd is 17038977779cSvp157776 * restarting. 17048977779cSvp157776 * update_state() is ok to be called here, as commands for 17058977779cSvp157776 * instances in transition are deferred by 17068977779cSvp157776 * process_restarter_event(). 17078977779cSvp157776 */ 17088977779cSvp157776 update_state(instance, instance->cur_istate, RERR_NONE); 17098977779cSvp157776 goto done; 17107c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_REFRESH: 17117c478bd9Sstevel@tonic-gate refresh_instance(instance); 17127c478bd9Sstevel@tonic-gate goto done; 17138977779cSvp157776 case RESTARTER_EVENT_TYPE_ADMIN_RESTART: 17148977779cSvp157776 /* 17158977779cSvp157776 * We've got a restart event, so if the instance is online 17168977779cSvp157776 * in any way initiate taking it offline, and rely upon 17178977779cSvp157776 * our restarter to send us an online event to bring 17188977779cSvp157776 * it back online. 17198977779cSvp157776 */ 17208977779cSvp157776 switch (instance->cur_istate) { 17218977779cSvp157776 case IIS_ONLINE: 17228977779cSvp157776 case IIS_DEGRADED: 17238977779cSvp157776 destroy_bound_fds(instance); 17248977779cSvp157776 (void) run_method(instance, IM_OFFLINE, NULL); 17258977779cSvp157776 } 17268977779cSvp157776 goto done; 17277c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_REMOVE_INSTANCE: 17287c478bd9Sstevel@tonic-gate remove_instance(instance); 17297c478bd9Sstevel@tonic-gate goto done; 173016ba0facSSean Wilcox case RESTARTER_EVENT_TYPE_STOP_RESET: 17317c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_STOP: 17327c478bd9Sstevel@tonic-gate switch (instance->cur_istate) { 17337c478bd9Sstevel@tonic-gate case IIS_OFFLINE_CONRATE: 17347c478bd9Sstevel@tonic-gate case IIS_OFFLINE_BIND: 17357c478bd9Sstevel@tonic-gate case IIS_OFFLINE_COPIES: 17367c478bd9Sstevel@tonic-gate /* 17377c478bd9Sstevel@tonic-gate * inetd must be closing down as we wouldn't get this 17387c478bd9Sstevel@tonic-gate * event in one of these states from the master 17397c478bd9Sstevel@tonic-gate * restarter. Take the instance to the offline resting 17407c478bd9Sstevel@tonic-gate * state. 17417c478bd9Sstevel@tonic-gate */ 17427c478bd9Sstevel@tonic-gate if (instance->cur_istate == IIS_OFFLINE_BIND) { 17437c478bd9Sstevel@tonic-gate cancel_bind_timer(instance); 17447c478bd9Sstevel@tonic-gate } else if (instance->cur_istate == 17457c478bd9Sstevel@tonic-gate IIS_OFFLINE_CONRATE) { 17467c478bd9Sstevel@tonic-gate cancel_inst_timer(instance); 17477c478bd9Sstevel@tonic-gate } 17487c478bd9Sstevel@tonic-gate update_state(instance, IIS_OFFLINE, RERR_RESTART); 17497c478bd9Sstevel@tonic-gate goto done; 17507c478bd9Sstevel@tonic-gate } 17517c478bd9Sstevel@tonic-gate break; 17527c478bd9Sstevel@tonic-gate } 17537c478bd9Sstevel@tonic-gate 17547c478bd9Sstevel@tonic-gate switch (instance->cur_istate) { 17557c478bd9Sstevel@tonic-gate case IIS_OFFLINE: 17567c478bd9Sstevel@tonic-gate switch (event) { 17577c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_START: 17587c478bd9Sstevel@tonic-gate /* 17597c478bd9Sstevel@tonic-gate * Dependencies are met, let's take the service online. 17607c478bd9Sstevel@tonic-gate * Only try and bind for a wait type service if 17617c478bd9Sstevel@tonic-gate * no process is running on its behalf. Otherwise, just 17627c478bd9Sstevel@tonic-gate * mark the service online and binding will be attempted 17637c478bd9Sstevel@tonic-gate * when the process exits. 17647c478bd9Sstevel@tonic-gate */ 17657c478bd9Sstevel@tonic-gate if (!(instance->config->basic->iswait && 17667c478bd9Sstevel@tonic-gate (uu_list_first(instance->start_pids) != NULL))) { 17677c478bd9Sstevel@tonic-gate create_bound_fds(instance); 17687c478bd9Sstevel@tonic-gate } else { 17697c478bd9Sstevel@tonic-gate update_state(instance, IIS_ONLINE, RERR_NONE); 17707c478bd9Sstevel@tonic-gate } 17717c478bd9Sstevel@tonic-gate break; 17727c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DISABLE: 17737c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_DISABLE: 17747c478bd9Sstevel@tonic-gate /* 17757c478bd9Sstevel@tonic-gate * The instance should be disabled, so run the 17767c478bd9Sstevel@tonic-gate * instance's disabled method that will do the work 17777c478bd9Sstevel@tonic-gate * to take it there. 17787c478bd9Sstevel@tonic-gate */ 17797c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_DISABLE, NULL); 17807c478bd9Sstevel@tonic-gate break; 17817c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON: 17827c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE: 17837c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY: 17847c478bd9Sstevel@tonic-gate /* 17857c478bd9Sstevel@tonic-gate * The master restarter has requested the instance 17867c478bd9Sstevel@tonic-gate * go to maintenance; since we're already offline 17877c478bd9Sstevel@tonic-gate * just update the state to the maintenance state. 17887c478bd9Sstevel@tonic-gate */ 17897c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, RERR_RESTART); 17907c478bd9Sstevel@tonic-gate break; 17917c478bd9Sstevel@tonic-gate } 17927c478bd9Sstevel@tonic-gate break; 17937c478bd9Sstevel@tonic-gate 17947c478bd9Sstevel@tonic-gate case IIS_OFFLINE_BIND: 17957c478bd9Sstevel@tonic-gate switch (event) { 17967c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DISABLE: 17977c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_DISABLE: 17987c478bd9Sstevel@tonic-gate /* 17997c478bd9Sstevel@tonic-gate * The instance should be disabled. Firstly, as for 18007c478bd9Sstevel@tonic-gate * the above dependencies unmet comment, cancel 18017c478bd9Sstevel@tonic-gate * the bind retry timer and update the state to 18027c478bd9Sstevel@tonic-gate * offline. Then, run the disable method to do the 18037c478bd9Sstevel@tonic-gate * work to take the instance from offline to 18047c478bd9Sstevel@tonic-gate * disabled. 18057c478bd9Sstevel@tonic-gate */ 18067c478bd9Sstevel@tonic-gate cancel_bind_timer(instance); 18077c478bd9Sstevel@tonic-gate update_state(instance, IIS_OFFLINE, RERR_RESTART); 18087c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_DISABLE, NULL); 18097c478bd9Sstevel@tonic-gate break; 18107c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON: 18117c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE: 18127c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY: 18137c478bd9Sstevel@tonic-gate /* 18147c478bd9Sstevel@tonic-gate * The master restarter has requested the instance 18157c478bd9Sstevel@tonic-gate * be placed in the maintenance state. Cancel the 18167c478bd9Sstevel@tonic-gate * outstanding retry timer, and since we're already 18177c478bd9Sstevel@tonic-gate * offline, update the state to maintenance. 18187c478bd9Sstevel@tonic-gate */ 18197c478bd9Sstevel@tonic-gate cancel_bind_timer(instance); 18207c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, RERR_RESTART); 18217c478bd9Sstevel@tonic-gate break; 18227c478bd9Sstevel@tonic-gate } 18237c478bd9Sstevel@tonic-gate break; 18247c478bd9Sstevel@tonic-gate 18257c478bd9Sstevel@tonic-gate case IIS_DEGRADED: 18267c478bd9Sstevel@tonic-gate case IIS_ONLINE: 18277c478bd9Sstevel@tonic-gate switch (event) { 18287c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DISABLE: 18297c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_DISABLE: 18307c478bd9Sstevel@tonic-gate /* 18317c478bd9Sstevel@tonic-gate * The instance needs to be disabled. Do the same work 18327c478bd9Sstevel@tonic-gate * as for the dependencies unmet event below to 18337c478bd9Sstevel@tonic-gate * take the instance offline. 18347c478bd9Sstevel@tonic-gate */ 18357c478bd9Sstevel@tonic-gate destroy_bound_fds(instance); 18367c478bd9Sstevel@tonic-gate /* 18377c478bd9Sstevel@tonic-gate * Indicate that the offline method is being run 18387c478bd9Sstevel@tonic-gate * as part of going to the disabled state, and to 18397c478bd9Sstevel@tonic-gate * carry on this transition. 18407c478bd9Sstevel@tonic-gate */ 18417c478bd9Sstevel@tonic-gate instance->disable_req = B_TRUE; 18427c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_OFFLINE, NULL); 18437c478bd9Sstevel@tonic-gate break; 18447c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON: 18457c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE: 18467c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY: 18477c478bd9Sstevel@tonic-gate /* 18487c478bd9Sstevel@tonic-gate * The master restarter has requested the instance be 18497c478bd9Sstevel@tonic-gate * placed in the maintenance state. This involves 18507c478bd9Sstevel@tonic-gate * firstly taking the service offline, so do the 18517c478bd9Sstevel@tonic-gate * same work as for the dependencies unmet event 18527c478bd9Sstevel@tonic-gate * below. We set the maintenance_req flag to 18537c478bd9Sstevel@tonic-gate * indicate that when we get to the offline state 18547c478bd9Sstevel@tonic-gate * we should be placed directly into the maintenance 18557c478bd9Sstevel@tonic-gate * state. 18567c478bd9Sstevel@tonic-gate */ 18577c478bd9Sstevel@tonic-gate instance->maintenance_req = B_TRUE; 18587c478bd9Sstevel@tonic-gate /* FALLTHROUGH */ 1859c238c833SSean Wilcox case RESTARTER_EVENT_TYPE_STOP_RESET: 18607c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_STOP: 18617c478bd9Sstevel@tonic-gate /* 18627c478bd9Sstevel@tonic-gate * Dependencies have become unmet. Close and 18637c478bd9Sstevel@tonic-gate * stop listening on the instance's network file 18647c478bd9Sstevel@tonic-gate * descriptor, and run the offline method to do 18657c478bd9Sstevel@tonic-gate * any work required to take us to the offline state. 18667c478bd9Sstevel@tonic-gate */ 18677c478bd9Sstevel@tonic-gate destroy_bound_fds(instance); 18687c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_OFFLINE, NULL); 18697c478bd9Sstevel@tonic-gate } 18707c478bd9Sstevel@tonic-gate break; 18717c478bd9Sstevel@tonic-gate 18727c478bd9Sstevel@tonic-gate case IIS_UNINITIALIZED: 18737c478bd9Sstevel@tonic-gate if (event == RESTARTER_EVENT_TYPE_DISABLE || 18747c478bd9Sstevel@tonic-gate event == RESTARTER_EVENT_TYPE_ADMIN_DISABLE) { 18757c478bd9Sstevel@tonic-gate update_state(instance, IIS_DISABLED, RERR_NONE); 18767c478bd9Sstevel@tonic-gate break; 18777c478bd9Sstevel@tonic-gate } else if (event != RESTARTER_EVENT_TYPE_ENABLE) { 18787c478bd9Sstevel@tonic-gate /* 18797c478bd9Sstevel@tonic-gate * Ignore other events until we know whether we're 18807c478bd9Sstevel@tonic-gate * enabled or not. 18817c478bd9Sstevel@tonic-gate */ 18827c478bd9Sstevel@tonic-gate break; 18837c478bd9Sstevel@tonic-gate } 18847c478bd9Sstevel@tonic-gate 18857c478bd9Sstevel@tonic-gate /* 18867c478bd9Sstevel@tonic-gate * We've got an enabled event; make use of the handling in the 18877c478bd9Sstevel@tonic-gate * disable case. 18887c478bd9Sstevel@tonic-gate */ 18897c478bd9Sstevel@tonic-gate /* FALLTHROUGH */ 18907c478bd9Sstevel@tonic-gate 18917c478bd9Sstevel@tonic-gate case IIS_DISABLED: 18927c478bd9Sstevel@tonic-gate switch (event) { 18937c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ENABLE: 18947c478bd9Sstevel@tonic-gate /* 18957c478bd9Sstevel@tonic-gate * The instance needs enabling. Commence reading its 18967c478bd9Sstevel@tonic-gate * configuration and if successful place the instance 18977c478bd9Sstevel@tonic-gate * in the offline state and let process_offline_inst() 18987c478bd9Sstevel@tonic-gate * take it from there. 18997c478bd9Sstevel@tonic-gate */ 19007c478bd9Sstevel@tonic-gate destroy_instance_cfg(instance->config); 19017c478bd9Sstevel@tonic-gate instance->config = read_instance_cfg(instance->fmri); 19027c478bd9Sstevel@tonic-gate if (instance->config != NULL) { 19037c478bd9Sstevel@tonic-gate update_state(instance, IIS_OFFLINE, 19047c478bd9Sstevel@tonic-gate RERR_RESTART); 19057c478bd9Sstevel@tonic-gate process_offline_inst(instance); 19067c478bd9Sstevel@tonic-gate } else { 19077c478bd9Sstevel@tonic-gate log_invalid_cfg(instance->fmri); 19087c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, 19097c478bd9Sstevel@tonic-gate RERR_RESTART); 19107c478bd9Sstevel@tonic-gate } 19117c478bd9Sstevel@tonic-gate 19127c478bd9Sstevel@tonic-gate break; 19137c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON: 19147c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE: 19157c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY: 19167c478bd9Sstevel@tonic-gate /* 19177c478bd9Sstevel@tonic-gate * The master restarter has requested the instance be 19187c478bd9Sstevel@tonic-gate * placed in the maintenance state, so just update its 19197c478bd9Sstevel@tonic-gate * state to maintenance. 19207c478bd9Sstevel@tonic-gate */ 19217c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, RERR_RESTART); 19227c478bd9Sstevel@tonic-gate break; 19237c478bd9Sstevel@tonic-gate } 19247c478bd9Sstevel@tonic-gate break; 19257c478bd9Sstevel@tonic-gate 19267c478bd9Sstevel@tonic-gate case IIS_MAINTENANCE: 19277c478bd9Sstevel@tonic-gate switch (event) { 19287c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_MAINT_OFF: 19297c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_DISABLE: 19307c478bd9Sstevel@tonic-gate /* 19317c478bd9Sstevel@tonic-gate * The master restarter has requested that the instance 19327c478bd9Sstevel@tonic-gate * be taken out of maintenance. Read its configuration, 19337c478bd9Sstevel@tonic-gate * and if successful place the instance in the offline 19347c478bd9Sstevel@tonic-gate * state and call process_offline_inst() to take it 19357c478bd9Sstevel@tonic-gate * from there. 19367c478bd9Sstevel@tonic-gate */ 19377c478bd9Sstevel@tonic-gate destroy_instance_cfg(instance->config); 19387c478bd9Sstevel@tonic-gate instance->config = read_instance_cfg(instance->fmri); 19397c478bd9Sstevel@tonic-gate if (instance->config != NULL) { 19407c478bd9Sstevel@tonic-gate update_state(instance, IIS_OFFLINE, 19417c478bd9Sstevel@tonic-gate RERR_RESTART); 19427c478bd9Sstevel@tonic-gate process_offline_inst(instance); 19437c478bd9Sstevel@tonic-gate } else { 19447c478bd9Sstevel@tonic-gate boolean_t enabled; 19457c478bd9Sstevel@tonic-gate 19467c478bd9Sstevel@tonic-gate /* 19477c478bd9Sstevel@tonic-gate * The configuration was invalid. If the 19487c478bd9Sstevel@tonic-gate * service has disabled requested, let's 19497c478bd9Sstevel@tonic-gate * just place the instance in disabled even 19507c478bd9Sstevel@tonic-gate * though we haven't been able to run its 19517c478bd9Sstevel@tonic-gate * disable method, as the slightly incorrect 19527c478bd9Sstevel@tonic-gate * state is likely to be less of an issue to 19537c478bd9Sstevel@tonic-gate * an administrator than refusing to move an 19547c478bd9Sstevel@tonic-gate * instance to disabled. If disable isn't 19557c478bd9Sstevel@tonic-gate * requested, re-mark the service's state 19567c478bd9Sstevel@tonic-gate * as maintenance, so the administrator can 19577c478bd9Sstevel@tonic-gate * see the request was processed. 19587c478bd9Sstevel@tonic-gate */ 19597c478bd9Sstevel@tonic-gate if ((read_enable_merged(instance->fmri, 19607c478bd9Sstevel@tonic-gate &enabled) == 0) && !enabled) { 19617c478bd9Sstevel@tonic-gate update_state(instance, IIS_DISABLED, 19627c478bd9Sstevel@tonic-gate RERR_RESTART); 19637c478bd9Sstevel@tonic-gate } else { 19647c478bd9Sstevel@tonic-gate log_invalid_cfg(instance->fmri); 19657c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, 19667c478bd9Sstevel@tonic-gate RERR_FAULT); 19677c478bd9Sstevel@tonic-gate } 19687c478bd9Sstevel@tonic-gate } 19697c478bd9Sstevel@tonic-gate break; 19707c478bd9Sstevel@tonic-gate } 19717c478bd9Sstevel@tonic-gate break; 19727c478bd9Sstevel@tonic-gate 19737c478bd9Sstevel@tonic-gate case IIS_OFFLINE_CONRATE: 19747c478bd9Sstevel@tonic-gate switch (event) { 19757c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DISABLE: 19767c478bd9Sstevel@tonic-gate /* 19777c478bd9Sstevel@tonic-gate * The instance wants disabling. Take the instance 19787c478bd9Sstevel@tonic-gate * offline as for the dependencies unmet event above, 19797c478bd9Sstevel@tonic-gate * and then from there run the disable method to do 19807c478bd9Sstevel@tonic-gate * the work to take the instance to the disabled state. 19817c478bd9Sstevel@tonic-gate */ 19827c478bd9Sstevel@tonic-gate cancel_inst_timer(instance); 19837c478bd9Sstevel@tonic-gate update_state(instance, IIS_OFFLINE, RERR_RESTART); 19847c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_DISABLE, NULL); 19857c478bd9Sstevel@tonic-gate break; 19867c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON: 19877c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE: 19887c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY: 19897c478bd9Sstevel@tonic-gate /* 19907c478bd9Sstevel@tonic-gate * The master restarter has requested the instance 19917c478bd9Sstevel@tonic-gate * be taken to maintenance. Cancel the timer setup 19927c478bd9Sstevel@tonic-gate * when we entered this state, and go directly to 19937c478bd9Sstevel@tonic-gate * maintenance. 19947c478bd9Sstevel@tonic-gate */ 19957c478bd9Sstevel@tonic-gate cancel_inst_timer(instance); 19967c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, RERR_RESTART); 19977c478bd9Sstevel@tonic-gate break; 19987c478bd9Sstevel@tonic-gate } 19997c478bd9Sstevel@tonic-gate break; 20007c478bd9Sstevel@tonic-gate 20017c478bd9Sstevel@tonic-gate case IIS_OFFLINE_COPIES: 20027c478bd9Sstevel@tonic-gate switch (event) { 20037c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DISABLE: 20047c478bd9Sstevel@tonic-gate /* 20057c478bd9Sstevel@tonic-gate * The instance wants disabling. Update the state 20067c478bd9Sstevel@tonic-gate * to offline, and run the disable method to do the 20077c478bd9Sstevel@tonic-gate * work to take it to the disabled state. 20087c478bd9Sstevel@tonic-gate */ 20097c478bd9Sstevel@tonic-gate update_state(instance, IIS_OFFLINE, RERR_RESTART); 20107c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_DISABLE, NULL); 20117c478bd9Sstevel@tonic-gate break; 20127c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_ADMIN_MAINT_ON: 20137c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_DEPENDENCY_CYCLE: 20147c478bd9Sstevel@tonic-gate case RESTARTER_EVENT_TYPE_INVALID_DEPENDENCY: 20157c478bd9Sstevel@tonic-gate /* 20167c478bd9Sstevel@tonic-gate * The master restarter has requested the instance be 20177c478bd9Sstevel@tonic-gate * placed in maintenance. Since it's already offline 20187c478bd9Sstevel@tonic-gate * simply update the state. 20197c478bd9Sstevel@tonic-gate */ 20207c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, RERR_RESTART); 20217c478bd9Sstevel@tonic-gate break; 20227c478bd9Sstevel@tonic-gate } 20237c478bd9Sstevel@tonic-gate break; 20247c478bd9Sstevel@tonic-gate 20257c478bd9Sstevel@tonic-gate default: 20267c478bd9Sstevel@tonic-gate debug_msg("handle_restarter_event: instance in an " 20277c478bd9Sstevel@tonic-gate "unexpected state"); 20287c478bd9Sstevel@tonic-gate assert(0); 20297c478bd9Sstevel@tonic-gate } 20307c478bd9Sstevel@tonic-gate 20317c478bd9Sstevel@tonic-gate done: 20327c478bd9Sstevel@tonic-gate if (send_ack) 20337c478bd9Sstevel@tonic-gate ack_restarter_event(B_TRUE); 20347c478bd9Sstevel@tonic-gate } 20357c478bd9Sstevel@tonic-gate 20367c478bd9Sstevel@tonic-gate /* 20377c478bd9Sstevel@tonic-gate * Tries to read and process an event from the event pipe. If there isn't one 20387c478bd9Sstevel@tonic-gate * or an error occurred processing the event it returns -1. Else, if the event 20397c478bd9Sstevel@tonic-gate * is for an instance we're not already managing we read its state, add it to 20407c478bd9Sstevel@tonic-gate * our list to manage, and if appropriate read its configuration. Whether it's 20417c478bd9Sstevel@tonic-gate * new to us or not, we then handle the specific event. 20427c478bd9Sstevel@tonic-gate * Returns 0 if an event was read and processed successfully, else -1. 20437c478bd9Sstevel@tonic-gate */ 20447c478bd9Sstevel@tonic-gate static int 20457c478bd9Sstevel@tonic-gate process_restarter_event(void) 20467c478bd9Sstevel@tonic-gate { 20477c478bd9Sstevel@tonic-gate char *fmri; 20487c478bd9Sstevel@tonic-gate size_t fmri_size; 20497c478bd9Sstevel@tonic-gate restarter_event_type_t event_type; 20507c478bd9Sstevel@tonic-gate instance_t *instance; 20517c478bd9Sstevel@tonic-gate restarter_event_t *event; 20527c478bd9Sstevel@tonic-gate ssize_t sz; 20537c478bd9Sstevel@tonic-gate 20547c478bd9Sstevel@tonic-gate /* 20557c478bd9Sstevel@tonic-gate * Try to read an event pointer from the event pipe. 20567c478bd9Sstevel@tonic-gate */ 20577c478bd9Sstevel@tonic-gate errno = 0; 20587c478bd9Sstevel@tonic-gate switch (safe_read(rst_event_pipe[PE_CONSUMER], &event, 20597c478bd9Sstevel@tonic-gate sizeof (event))) { 20607c478bd9Sstevel@tonic-gate case 0: 20617c478bd9Sstevel@tonic-gate break; 20627c478bd9Sstevel@tonic-gate case 1: 20637c478bd9Sstevel@tonic-gate if (errno == EAGAIN) /* no event to read */ 20647c478bd9Sstevel@tonic-gate return (-1); 20657c478bd9Sstevel@tonic-gate 20667c478bd9Sstevel@tonic-gate /* other end of pipe closed */ 20677c478bd9Sstevel@tonic-gate 20687c478bd9Sstevel@tonic-gate /* FALLTHROUGH */ 20697c478bd9Sstevel@tonic-gate default: /* unexpected read error */ 20707c478bd9Sstevel@tonic-gate /* 20717c478bd9Sstevel@tonic-gate * There's something wrong with the event pipe. Let's 20727c478bd9Sstevel@tonic-gate * shutdown and be restarted. 20737c478bd9Sstevel@tonic-gate */ 20747c478bd9Sstevel@tonic-gate inetd_stop(); 20757c478bd9Sstevel@tonic-gate return (-1); 20767c478bd9Sstevel@tonic-gate } 20777c478bd9Sstevel@tonic-gate 20787c478bd9Sstevel@tonic-gate /* 20797c478bd9Sstevel@tonic-gate * Check if we're currently managing the instance which the event 20807c478bd9Sstevel@tonic-gate * pertains to. If not, read its complete state and add it to our 20817c478bd9Sstevel@tonic-gate * list to manage. 20827c478bd9Sstevel@tonic-gate */ 20837c478bd9Sstevel@tonic-gate 20847c478bd9Sstevel@tonic-gate fmri_size = scf_limit(SCF_LIMIT_MAX_FMRI_LENGTH); 20857c478bd9Sstevel@tonic-gate if ((fmri = malloc(fmri_size)) == NULL) { 20867c478bd9Sstevel@tonic-gate error_msg(strerror(errno)); 20877c478bd9Sstevel@tonic-gate goto fail; 20887c478bd9Sstevel@tonic-gate } 20897c478bd9Sstevel@tonic-gate sz = restarter_event_get_instance(event, fmri, fmri_size); 20907c478bd9Sstevel@tonic-gate if (sz >= fmri_size) 20917c478bd9Sstevel@tonic-gate assert(0); 20927c478bd9Sstevel@tonic-gate 20937c478bd9Sstevel@tonic-gate for (instance = uu_list_first(instance_list); instance != NULL; 20947c478bd9Sstevel@tonic-gate instance = uu_list_next(instance_list, instance)) { 20957c478bd9Sstevel@tonic-gate if (strcmp(instance->fmri, fmri) == 0) 20967c478bd9Sstevel@tonic-gate break; 20977c478bd9Sstevel@tonic-gate } 20987c478bd9Sstevel@tonic-gate 20997c478bd9Sstevel@tonic-gate if (instance == NULL) { 21007c478bd9Sstevel@tonic-gate int err; 21017c478bd9Sstevel@tonic-gate 21027c478bd9Sstevel@tonic-gate debug_msg("New instance to manage: %s", fmri); 21037c478bd9Sstevel@tonic-gate 21047c478bd9Sstevel@tonic-gate if (((instance = create_instance(fmri)) == NULL) || 21057c478bd9Sstevel@tonic-gate (retrieve_instance_state(instance) != 0) || 21067c478bd9Sstevel@tonic-gate (retrieve_method_pids(instance) != 0)) { 21077c478bd9Sstevel@tonic-gate destroy_instance(instance); 21087c478bd9Sstevel@tonic-gate free(fmri); 21097c478bd9Sstevel@tonic-gate goto fail; 21107c478bd9Sstevel@tonic-gate } 21117c478bd9Sstevel@tonic-gate 211294501b61Sskamm if (((err = iterate_repository_contracts(instance, 0)) 21137c478bd9Sstevel@tonic-gate != 0) && (err != ENOENT)) { 21147c478bd9Sstevel@tonic-gate error_msg(gettext( 21157c478bd9Sstevel@tonic-gate "Failed to adopt contracts of instance %s: %s"), 21167c478bd9Sstevel@tonic-gate instance->fmri, strerror(err)); 21177c478bd9Sstevel@tonic-gate destroy_instance(instance); 21187c478bd9Sstevel@tonic-gate free(fmri); 21197c478bd9Sstevel@tonic-gate goto fail; 21207c478bd9Sstevel@tonic-gate } 21217c478bd9Sstevel@tonic-gate 21227c478bd9Sstevel@tonic-gate uu_list_node_init(instance, &instance->link, instance_pool); 21237c478bd9Sstevel@tonic-gate (void) uu_list_insert_after(instance_list, NULL, instance); 21247c478bd9Sstevel@tonic-gate 21257c478bd9Sstevel@tonic-gate /* 21267c478bd9Sstevel@tonic-gate * Only read configuration for instances that aren't in any of 21277c478bd9Sstevel@tonic-gate * the disabled, maintenance or uninitialized states, since 21287c478bd9Sstevel@tonic-gate * they'll read it on state exit. 21297c478bd9Sstevel@tonic-gate */ 21307c478bd9Sstevel@tonic-gate if ((instance->cur_istate != IIS_DISABLED) && 21317c478bd9Sstevel@tonic-gate (instance->cur_istate != IIS_MAINTENANCE) && 21327c478bd9Sstevel@tonic-gate (instance->cur_istate != IIS_UNINITIALIZED)) { 21337c478bd9Sstevel@tonic-gate instance->config = read_instance_cfg(instance->fmri); 21347c478bd9Sstevel@tonic-gate if (instance->config == NULL) { 21357c478bd9Sstevel@tonic-gate log_invalid_cfg(instance->fmri); 21367c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, 21377c478bd9Sstevel@tonic-gate RERR_FAULT); 21387c478bd9Sstevel@tonic-gate } 21397c478bd9Sstevel@tonic-gate } 21407c478bd9Sstevel@tonic-gate } 21417c478bd9Sstevel@tonic-gate 21427c478bd9Sstevel@tonic-gate free(fmri); 21437c478bd9Sstevel@tonic-gate 21447c478bd9Sstevel@tonic-gate event_type = restarter_event_get_type(event); 21457c478bd9Sstevel@tonic-gate debug_msg("Event type: %d for instance: %s", event_type, 21467c478bd9Sstevel@tonic-gate instance->fmri); 21477c478bd9Sstevel@tonic-gate 21487c478bd9Sstevel@tonic-gate /* 21497c478bd9Sstevel@tonic-gate * If the instance is currently running a method, don't process the 21507c478bd9Sstevel@tonic-gate * event now, but attach it to the instance for processing when 21517c478bd9Sstevel@tonic-gate * the instance finishes its transition. 21527c478bd9Sstevel@tonic-gate */ 21537c478bd9Sstevel@tonic-gate if (INST_IN_TRANSITION(instance)) { 21547c478bd9Sstevel@tonic-gate debug_msg("storing event %d for instance %s", event_type, 21557c478bd9Sstevel@tonic-gate instance->fmri); 21567c478bd9Sstevel@tonic-gate instance->pending_rst_event = event_type; 21577c478bd9Sstevel@tonic-gate } else { 21587c478bd9Sstevel@tonic-gate handle_restarter_event(instance, event_type, B_TRUE); 21597c478bd9Sstevel@tonic-gate } 21607c478bd9Sstevel@tonic-gate 21617c478bd9Sstevel@tonic-gate return (0); 21627c478bd9Sstevel@tonic-gate 21637c478bd9Sstevel@tonic-gate fail: 21647c478bd9Sstevel@tonic-gate ack_restarter_event(B_FALSE); 21657c478bd9Sstevel@tonic-gate return (-1); 21667c478bd9Sstevel@tonic-gate } 21677c478bd9Sstevel@tonic-gate 21687c478bd9Sstevel@tonic-gate /* 21697c478bd9Sstevel@tonic-gate * Do the state machine processing associated with the termination of instance 21705e2844d4SRenaud Manus * 'inst''s start method for the 'proto_name' protocol if this parameter is not 21715e2844d4SRenaud Manus * NULL. 21727c478bd9Sstevel@tonic-gate */ 21737c478bd9Sstevel@tonic-gate void 21745e2844d4SRenaud Manus process_start_term(instance_t *inst, char *proto_name) 21757c478bd9Sstevel@tonic-gate { 21767c478bd9Sstevel@tonic-gate basic_cfg_t *cfg; 21777c478bd9Sstevel@tonic-gate 21787c478bd9Sstevel@tonic-gate inst->copies--; 21797c478bd9Sstevel@tonic-gate 21807c478bd9Sstevel@tonic-gate if ((inst->cur_istate == IIS_MAINTENANCE) || 21817c478bd9Sstevel@tonic-gate (inst->cur_istate == IIS_DISABLED)) { 21827c478bd9Sstevel@tonic-gate /* do any further processing/checks when we exit these states */ 21837c478bd9Sstevel@tonic-gate return; 21847c478bd9Sstevel@tonic-gate } 21857c478bd9Sstevel@tonic-gate 21867c478bd9Sstevel@tonic-gate cfg = inst->config->basic; 21877c478bd9Sstevel@tonic-gate 21887c478bd9Sstevel@tonic-gate if (cfg->iswait) { 21897c478bd9Sstevel@tonic-gate proto_info_t *pi; 21905e2844d4SRenaud Manus boolean_t listen; 21917c478bd9Sstevel@tonic-gate 21927c478bd9Sstevel@tonic-gate switch (inst->cur_istate) { 21937c478bd9Sstevel@tonic-gate case IIS_ONLINE: 21947c478bd9Sstevel@tonic-gate case IIS_DEGRADED: 21957c478bd9Sstevel@tonic-gate case IIS_IN_REFRESH_METHOD: 21967c478bd9Sstevel@tonic-gate /* 21977c478bd9Sstevel@tonic-gate * A wait type service's start method has exited. 21987c478bd9Sstevel@tonic-gate * Check if the method was fired off in this inetd's 21997c478bd9Sstevel@tonic-gate * lifetime, or a previous one; if the former, 22007c478bd9Sstevel@tonic-gate * re-commence listening on the service's behalf; if 22017c478bd9Sstevel@tonic-gate * the latter, mark the service offline and let bind 22027c478bd9Sstevel@tonic-gate * attempts commence. 22037c478bd9Sstevel@tonic-gate */ 22045e2844d4SRenaud Manus listen = B_FALSE; 22057c478bd9Sstevel@tonic-gate for (pi = uu_list_first(cfg->proto_list); pi != NULL; 22067c478bd9Sstevel@tonic-gate pi = uu_list_next(cfg->proto_list, pi)) { 22077c478bd9Sstevel@tonic-gate /* 22087c478bd9Sstevel@tonic-gate * If a bound fd exists, the method was fired 22097c478bd9Sstevel@tonic-gate * off during this inetd's lifetime. 22107c478bd9Sstevel@tonic-gate */ 22115e2844d4SRenaud Manus if (pi->listen_fd != -1) { 22125e2844d4SRenaud Manus listen = B_TRUE; 22135e2844d4SRenaud Manus if (proto_name == NULL || 22145e2844d4SRenaud Manus strcmp(pi->proto, proto_name) == 0) 22157c478bd9Sstevel@tonic-gate break; 22167c478bd9Sstevel@tonic-gate } 22175e2844d4SRenaud Manus } 22187c478bd9Sstevel@tonic-gate if (pi != NULL) { 22195e2844d4SRenaud Manus if (poll_bound_fds(inst, B_TRUE, proto_name) != 22205e2844d4SRenaud Manus 0) 22217c478bd9Sstevel@tonic-gate handle_bind_failure(inst); 22225e2844d4SRenaud Manus } else if (listen == B_FALSE) { 22237c478bd9Sstevel@tonic-gate update_state(inst, IIS_OFFLINE, RERR_RESTART); 22247c478bd9Sstevel@tonic-gate create_bound_fds(inst); 22257c478bd9Sstevel@tonic-gate } 22267c478bd9Sstevel@tonic-gate } 22277c478bd9Sstevel@tonic-gate } else { 22287c478bd9Sstevel@tonic-gate /* 22297c478bd9Sstevel@tonic-gate * Check if a nowait service should be brought back online 22307c478bd9Sstevel@tonic-gate * after exceeding its copies limit. 22317c478bd9Sstevel@tonic-gate */ 22327c478bd9Sstevel@tonic-gate if ((inst->cur_istate == IIS_OFFLINE_COPIES) && 22337c478bd9Sstevel@tonic-gate !copies_limit_exceeded(inst)) { 22347c478bd9Sstevel@tonic-gate update_state(inst, IIS_OFFLINE, RERR_NONE); 22357c478bd9Sstevel@tonic-gate process_offline_inst(inst); 22367c478bd9Sstevel@tonic-gate } 22377c478bd9Sstevel@tonic-gate } 22387c478bd9Sstevel@tonic-gate } 22397c478bd9Sstevel@tonic-gate 22407c478bd9Sstevel@tonic-gate /* 22417c478bd9Sstevel@tonic-gate * If the instance has a pending event process it and initiate the 22427c478bd9Sstevel@tonic-gate * acknowledgement. 22437c478bd9Sstevel@tonic-gate */ 22447c478bd9Sstevel@tonic-gate static void 22457c478bd9Sstevel@tonic-gate process_pending_rst_event(instance_t *inst) 22467c478bd9Sstevel@tonic-gate { 22477c478bd9Sstevel@tonic-gate if (inst->pending_rst_event != RESTARTER_EVENT_TYPE_INVALID) { 22487c478bd9Sstevel@tonic-gate restarter_event_type_t re; 22497c478bd9Sstevel@tonic-gate 22507c478bd9Sstevel@tonic-gate debug_msg("Injecting pending event %d for instance %s", 22517c478bd9Sstevel@tonic-gate inst->pending_rst_event, inst->fmri); 22527c478bd9Sstevel@tonic-gate re = inst->pending_rst_event; 22537c478bd9Sstevel@tonic-gate inst->pending_rst_event = RESTARTER_EVENT_TYPE_INVALID; 22547c478bd9Sstevel@tonic-gate handle_restarter_event(inst, re, B_TRUE); 22557c478bd9Sstevel@tonic-gate } 22567c478bd9Sstevel@tonic-gate } 22577c478bd9Sstevel@tonic-gate 22587c478bd9Sstevel@tonic-gate /* 22597c478bd9Sstevel@tonic-gate * Do the state machine processing associated with the termination 22607c478bd9Sstevel@tonic-gate * of the specified instance's non-start method with the specified status. 22617c478bd9Sstevel@tonic-gate * Once the processing of the termination is done, the function also picks up 22627c478bd9Sstevel@tonic-gate * any processing that was blocked on the method running. 22637c478bd9Sstevel@tonic-gate */ 22647c478bd9Sstevel@tonic-gate void 22657c478bd9Sstevel@tonic-gate process_non_start_term(instance_t *inst, int status) 22667c478bd9Sstevel@tonic-gate { 22677c478bd9Sstevel@tonic-gate boolean_t ran_online_method = B_FALSE; 22687c478bd9Sstevel@tonic-gate 22697c478bd9Sstevel@tonic-gate if (status == IMRET_FAILURE) { 22707c478bd9Sstevel@tonic-gate error_msg(gettext("The %s method of instance %s failed, " 22717c478bd9Sstevel@tonic-gate "transitioning to maintenance"), 22727c478bd9Sstevel@tonic-gate methods[states[inst->cur_istate].method_running].name, 22737c478bd9Sstevel@tonic-gate inst->fmri); 22747c478bd9Sstevel@tonic-gate 22757c478bd9Sstevel@tonic-gate if ((inst->cur_istate == IIS_IN_ONLINE_METHOD) || 22767c478bd9Sstevel@tonic-gate (inst->cur_istate == IIS_IN_REFRESH_METHOD)) 22777c478bd9Sstevel@tonic-gate destroy_bound_fds(inst); 22787c478bd9Sstevel@tonic-gate 22797c478bd9Sstevel@tonic-gate update_state(inst, IIS_MAINTENANCE, RERR_FAULT); 22807c478bd9Sstevel@tonic-gate 22817c478bd9Sstevel@tonic-gate inst->maintenance_req = B_FALSE; 22827c478bd9Sstevel@tonic-gate inst->conn_rate_exceeded = B_FALSE; 22837c478bd9Sstevel@tonic-gate 22847c478bd9Sstevel@tonic-gate if (inst->new_config != NULL) { 22857c478bd9Sstevel@tonic-gate destroy_instance_cfg(inst->new_config); 22867c478bd9Sstevel@tonic-gate inst->new_config = NULL; 22877c478bd9Sstevel@tonic-gate } 22887c478bd9Sstevel@tonic-gate 22897c478bd9Sstevel@tonic-gate if (!inetd_stopping) 22907c478bd9Sstevel@tonic-gate process_pending_rst_event(inst); 22917c478bd9Sstevel@tonic-gate 22927c478bd9Sstevel@tonic-gate return; 22937c478bd9Sstevel@tonic-gate } 22947c478bd9Sstevel@tonic-gate 22957c478bd9Sstevel@tonic-gate /* non-failure method return */ 22967c478bd9Sstevel@tonic-gate 22977c478bd9Sstevel@tonic-gate if (status != IMRET_SUCCESS) { 22987c478bd9Sstevel@tonic-gate /* 22997c478bd9Sstevel@tonic-gate * An instance method never returned a supported return code. 23007c478bd9Sstevel@tonic-gate * We'll assume this means the method succeeded for now whilst 23017c478bd9Sstevel@tonic-gate * non-GL-cognizant methods are used - eg. pkill. 23027c478bd9Sstevel@tonic-gate */ 23037c478bd9Sstevel@tonic-gate debug_msg("The %s method of instance %s returned " 23047c478bd9Sstevel@tonic-gate "non-compliant exit code: %d, assuming success", 23057c478bd9Sstevel@tonic-gate methods[states[inst->cur_istate].method_running].name, 23067c478bd9Sstevel@tonic-gate inst->fmri, status); 23077c478bd9Sstevel@tonic-gate } 23087c478bd9Sstevel@tonic-gate 23097c478bd9Sstevel@tonic-gate /* 23107c478bd9Sstevel@tonic-gate * Update the state from the in-transition state. 23117c478bd9Sstevel@tonic-gate */ 23127c478bd9Sstevel@tonic-gate switch (inst->cur_istate) { 23137c478bd9Sstevel@tonic-gate case IIS_IN_ONLINE_METHOD: 23147c478bd9Sstevel@tonic-gate ran_online_method = B_TRUE; 23157c478bd9Sstevel@tonic-gate /* FALLTHROUGH */ 23167c478bd9Sstevel@tonic-gate case IIS_IN_REFRESH_METHOD: 23177c478bd9Sstevel@tonic-gate /* 23187c478bd9Sstevel@tonic-gate * If we've exhausted the bind retries, flag that by setting 23197c478bd9Sstevel@tonic-gate * the instance's state to degraded. 23207c478bd9Sstevel@tonic-gate */ 23217c478bd9Sstevel@tonic-gate if (inst->bind_retries_exceeded) { 23227c478bd9Sstevel@tonic-gate update_state(inst, IIS_DEGRADED, RERR_NONE); 23237c478bd9Sstevel@tonic-gate break; 23247c478bd9Sstevel@tonic-gate } 23257c478bd9Sstevel@tonic-gate /* FALLTHROUGH */ 23267c478bd9Sstevel@tonic-gate default: 23277c478bd9Sstevel@tonic-gate update_state(inst, 23287c478bd9Sstevel@tonic-gate methods[states[inst->cur_istate].method_running].dst_state, 23297c478bd9Sstevel@tonic-gate RERR_NONE); 23307c478bd9Sstevel@tonic-gate } 23317c478bd9Sstevel@tonic-gate 23327c478bd9Sstevel@tonic-gate if (inst->cur_istate == IIS_OFFLINE) { 23337c478bd9Sstevel@tonic-gate if (inst->new_config != NULL) { 23347c478bd9Sstevel@tonic-gate /* 23357c478bd9Sstevel@tonic-gate * This instance was found during refresh to need 23367c478bd9Sstevel@tonic-gate * taking offline because its newly read configuration 23377c478bd9Sstevel@tonic-gate * was sufficiently different. Now we're offline, 23387c478bd9Sstevel@tonic-gate * activate this new configuration. 23397c478bd9Sstevel@tonic-gate */ 23407c478bd9Sstevel@tonic-gate destroy_instance_cfg(inst->config); 23417c478bd9Sstevel@tonic-gate inst->config = inst->new_config; 23427c478bd9Sstevel@tonic-gate inst->new_config = NULL; 23437c478bd9Sstevel@tonic-gate } 23447c478bd9Sstevel@tonic-gate 23457c478bd9Sstevel@tonic-gate /* continue/complete any transitions that are in progress */ 23467c478bd9Sstevel@tonic-gate process_offline_inst(inst); 23477c478bd9Sstevel@tonic-gate 23487c478bd9Sstevel@tonic-gate } else if (ran_online_method) { 23497c478bd9Sstevel@tonic-gate /* 23507c478bd9Sstevel@tonic-gate * We've just successfully executed the online method. We have 23517c478bd9Sstevel@tonic-gate * a set of bound network fds that were created before running 23527c478bd9Sstevel@tonic-gate * this method, so now we're online start listening for 23537c478bd9Sstevel@tonic-gate * connections on them. 23547c478bd9Sstevel@tonic-gate */ 23555e2844d4SRenaud Manus if (poll_bound_fds(inst, B_TRUE, NULL) != 0) 23567c478bd9Sstevel@tonic-gate handle_bind_failure(inst); 23577c478bd9Sstevel@tonic-gate } 23587c478bd9Sstevel@tonic-gate 23597c478bd9Sstevel@tonic-gate /* 23607c478bd9Sstevel@tonic-gate * If we're now out of transition (process_offline_inst() could have 23617c478bd9Sstevel@tonic-gate * fired off another method), carry out any jobs that were blocked by 23627c478bd9Sstevel@tonic-gate * us being in transition. 23637c478bd9Sstevel@tonic-gate */ 23647c478bd9Sstevel@tonic-gate if (!INST_IN_TRANSITION(inst)) { 23657c478bd9Sstevel@tonic-gate if (inetd_stopping) { 23667c478bd9Sstevel@tonic-gate if (!instance_stopped(inst)) { 23677c478bd9Sstevel@tonic-gate /* 23687c478bd9Sstevel@tonic-gate * inetd is stopping, and this instance hasn't 23697c478bd9Sstevel@tonic-gate * been stopped. Inject a stop event. 23707c478bd9Sstevel@tonic-gate */ 23717c478bd9Sstevel@tonic-gate handle_restarter_event(inst, 23727c478bd9Sstevel@tonic-gate RESTARTER_EVENT_TYPE_STOP, B_FALSE); 23737c478bd9Sstevel@tonic-gate } 23747c478bd9Sstevel@tonic-gate } else { 23757c478bd9Sstevel@tonic-gate process_pending_rst_event(inst); 23767c478bd9Sstevel@tonic-gate } 23777c478bd9Sstevel@tonic-gate } 23787c478bd9Sstevel@tonic-gate } 23797c478bd9Sstevel@tonic-gate 23807c478bd9Sstevel@tonic-gate /* 23817c478bd9Sstevel@tonic-gate * Check if configuration file specified is readable. If not return B_FALSE, 23827c478bd9Sstevel@tonic-gate * else return B_TRUE. 23837c478bd9Sstevel@tonic-gate */ 23847c478bd9Sstevel@tonic-gate static boolean_t 23857c478bd9Sstevel@tonic-gate can_read_file(const char *path) 23867c478bd9Sstevel@tonic-gate { 23877c478bd9Sstevel@tonic-gate int ret; 23887c478bd9Sstevel@tonic-gate int serrno; 23897c478bd9Sstevel@tonic-gate 23907c478bd9Sstevel@tonic-gate do { 23917c478bd9Sstevel@tonic-gate ret = access(path, R_OK); 23927c478bd9Sstevel@tonic-gate } while ((ret < 0) && (errno == EINTR)); 23937c478bd9Sstevel@tonic-gate if (ret < 0) { 23947c478bd9Sstevel@tonic-gate if (errno != ENOENT) { 23957c478bd9Sstevel@tonic-gate serrno = errno; 23967c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to access configuration " 23977c478bd9Sstevel@tonic-gate "file %s for performing modification checks: %s"), 23987c478bd9Sstevel@tonic-gate path, strerror(errno)); 23997c478bd9Sstevel@tonic-gate errno = serrno; 24007c478bd9Sstevel@tonic-gate } 24017c478bd9Sstevel@tonic-gate return (B_FALSE); 24027c478bd9Sstevel@tonic-gate } 24037c478bd9Sstevel@tonic-gate return (B_TRUE); 24047c478bd9Sstevel@tonic-gate } 24057c478bd9Sstevel@tonic-gate 24067c478bd9Sstevel@tonic-gate /* 24077c478bd9Sstevel@tonic-gate * Check whether the configuration file has changed contents since inetd 24087c478bd9Sstevel@tonic-gate * was last started/refreshed, and if so, log a message indicating that 24097c478bd9Sstevel@tonic-gate * inetconv needs to be run. 24107c478bd9Sstevel@tonic-gate */ 24117c478bd9Sstevel@tonic-gate static void 24127c478bd9Sstevel@tonic-gate check_conf_file(void) 24137c478bd9Sstevel@tonic-gate { 24147c478bd9Sstevel@tonic-gate char *new_hash; 24157c478bd9Sstevel@tonic-gate char *old_hash = NULL; 24167c478bd9Sstevel@tonic-gate scf_error_t ret; 24177c478bd9Sstevel@tonic-gate const char *file; 24187c478bd9Sstevel@tonic-gate 24197c478bd9Sstevel@tonic-gate if (conf_file == NULL) { 24207c478bd9Sstevel@tonic-gate /* 24217c478bd9Sstevel@tonic-gate * No explicit config file specified, so see if one of the 24227c478bd9Sstevel@tonic-gate * default two are readable, checking the primary one first 24237c478bd9Sstevel@tonic-gate * followed by the secondary. 24247c478bd9Sstevel@tonic-gate */ 24257c478bd9Sstevel@tonic-gate if (can_read_file(PRIMARY_DEFAULT_CONF_FILE)) { 24267c478bd9Sstevel@tonic-gate file = PRIMARY_DEFAULT_CONF_FILE; 24277c478bd9Sstevel@tonic-gate } else if ((errno == ENOENT) && 24287c478bd9Sstevel@tonic-gate can_read_file(SECONDARY_DEFAULT_CONF_FILE)) { 24297c478bd9Sstevel@tonic-gate file = SECONDARY_DEFAULT_CONF_FILE; 24307c478bd9Sstevel@tonic-gate } else { 24317c478bd9Sstevel@tonic-gate return; 24327c478bd9Sstevel@tonic-gate } 24337c478bd9Sstevel@tonic-gate } else { 24347c478bd9Sstevel@tonic-gate file = conf_file; 24357c478bd9Sstevel@tonic-gate if (!can_read_file(file)) 24367c478bd9Sstevel@tonic-gate return; 24377c478bd9Sstevel@tonic-gate } 24387c478bd9Sstevel@tonic-gate 24397c478bd9Sstevel@tonic-gate if (calculate_hash(file, &new_hash) == 0) { 24407c478bd9Sstevel@tonic-gate ret = retrieve_inetd_hash(&old_hash); 24417c478bd9Sstevel@tonic-gate if (((ret == SCF_ERROR_NONE) && 24427c478bd9Sstevel@tonic-gate (strcmp(old_hash, new_hash) != 0))) { 24437c478bd9Sstevel@tonic-gate /* modified config file */ 24447c478bd9Sstevel@tonic-gate warn_msg(gettext( 24457c478bd9Sstevel@tonic-gate "Configuration file %s has been modified since " 24467c478bd9Sstevel@tonic-gate "inetconv was last run. \"inetconv -i %s\" must be " 24477c478bd9Sstevel@tonic-gate "run to apply any changes to the SMF"), file, file); 24487c478bd9Sstevel@tonic-gate } else if ((ret != SCF_ERROR_NOT_FOUND) && 24497c478bd9Sstevel@tonic-gate (ret != SCF_ERROR_NONE)) { 24507c478bd9Sstevel@tonic-gate /* No message if hash not yet computed */ 24517c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to check whether " 24527c478bd9Sstevel@tonic-gate "configuration file %s has been modified: %s"), 24537c478bd9Sstevel@tonic-gate file, scf_strerror(ret)); 24547c478bd9Sstevel@tonic-gate } 24557c478bd9Sstevel@tonic-gate free(old_hash); 24567c478bd9Sstevel@tonic-gate free(new_hash); 24577c478bd9Sstevel@tonic-gate } else { 24587c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to check whether configuration file " 24597c478bd9Sstevel@tonic-gate "%s has been modified: %s"), file, strerror(errno)); 24607c478bd9Sstevel@tonic-gate } 24617c478bd9Sstevel@tonic-gate } 24627c478bd9Sstevel@tonic-gate 24637c478bd9Sstevel@tonic-gate /* 24647c478bd9Sstevel@tonic-gate * Refresh all inetd's managed instances and check the configuration file 24657c478bd9Sstevel@tonic-gate * for any updates since inetconv was last run, logging a message if there 24667c478bd9Sstevel@tonic-gate * are. We call the SMF refresh function to refresh each instance so that 24677c478bd9Sstevel@tonic-gate * the refresh request goes through the framework, and thus results in the 24687c478bd9Sstevel@tonic-gate * running snapshot of each instance being updated from the configuration 24697c478bd9Sstevel@tonic-gate * snapshot. 24707c478bd9Sstevel@tonic-gate */ 24717c478bd9Sstevel@tonic-gate static void 24727c478bd9Sstevel@tonic-gate inetd_refresh(void) 24737c478bd9Sstevel@tonic-gate { 24747c478bd9Sstevel@tonic-gate instance_t *inst; 24757c478bd9Sstevel@tonic-gate 2476eed64e98Sgm209912 refresh_debug_flag(); 24777c478bd9Sstevel@tonic-gate 24787c478bd9Sstevel@tonic-gate /* call libscf to send refresh requests for all managed instances */ 24797c478bd9Sstevel@tonic-gate for (inst = uu_list_first(instance_list); inst != NULL; 24807c478bd9Sstevel@tonic-gate inst = uu_list_next(instance_list, inst)) { 24817c478bd9Sstevel@tonic-gate if (smf_refresh_instance(inst->fmri) < 0) { 24827c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to refresh instance %s: %s"), 24837c478bd9Sstevel@tonic-gate inst->fmri, scf_strerror(scf_error())); 24847c478bd9Sstevel@tonic-gate } 24857c478bd9Sstevel@tonic-gate } 24867c478bd9Sstevel@tonic-gate 24877c478bd9Sstevel@tonic-gate /* 24887c478bd9Sstevel@tonic-gate * Log a message if the configuration file has changed since inetconv 24897c478bd9Sstevel@tonic-gate * was last run. 24907c478bd9Sstevel@tonic-gate */ 24917c478bd9Sstevel@tonic-gate check_conf_file(); 24927c478bd9Sstevel@tonic-gate } 24937c478bd9Sstevel@tonic-gate 24947c478bd9Sstevel@tonic-gate /* 24957c478bd9Sstevel@tonic-gate * Initiate inetd's shutdown. 24967c478bd9Sstevel@tonic-gate */ 24977c478bd9Sstevel@tonic-gate static void 24987c478bd9Sstevel@tonic-gate inetd_stop(void) 24997c478bd9Sstevel@tonic-gate { 25007c478bd9Sstevel@tonic-gate instance_t *inst; 25017c478bd9Sstevel@tonic-gate 25027c478bd9Sstevel@tonic-gate /* Block handling signals for stop and refresh */ 25037c478bd9Sstevel@tonic-gate (void) sighold(SIGHUP); 25047c478bd9Sstevel@tonic-gate (void) sighold(SIGTERM); 25057c478bd9Sstevel@tonic-gate 25067c478bd9Sstevel@tonic-gate /* Indicate inetd is coming down */ 25077c478bd9Sstevel@tonic-gate inetd_stopping = B_TRUE; 25087c478bd9Sstevel@tonic-gate 25097c478bd9Sstevel@tonic-gate /* Stop polling on restarter events. */ 25107c478bd9Sstevel@tonic-gate clear_pollfd(rst_event_pipe[PE_CONSUMER]); 25117c478bd9Sstevel@tonic-gate 25127c478bd9Sstevel@tonic-gate /* Stop polling for any more stop/refresh requests. */ 25137c478bd9Sstevel@tonic-gate clear_pollfd(uds_fd); 25147c478bd9Sstevel@tonic-gate 25157c478bd9Sstevel@tonic-gate /* 25167c478bd9Sstevel@tonic-gate * Send a stop event to all currently unstopped instances that 25177c478bd9Sstevel@tonic-gate * aren't in transition. For those that are in transition, the 25187c478bd9Sstevel@tonic-gate * event will get sent when the transition completes. 25197c478bd9Sstevel@tonic-gate */ 25207c478bd9Sstevel@tonic-gate for (inst = uu_list_first(instance_list); inst != NULL; 25217c478bd9Sstevel@tonic-gate inst = uu_list_next(instance_list, inst)) { 25227c478bd9Sstevel@tonic-gate if (!instance_stopped(inst) && !INST_IN_TRANSITION(inst)) 25237c478bd9Sstevel@tonic-gate handle_restarter_event(inst, 25247c478bd9Sstevel@tonic-gate RESTARTER_EVENT_TYPE_STOP, B_FALSE); 25257c478bd9Sstevel@tonic-gate } 25267c478bd9Sstevel@tonic-gate } 25277c478bd9Sstevel@tonic-gate 25287c478bd9Sstevel@tonic-gate /* 25297c478bd9Sstevel@tonic-gate * Sets up the intra-inetd-process Unix Domain Socket. 25307c478bd9Sstevel@tonic-gate * Returns -1 on error, else 0. 25317c478bd9Sstevel@tonic-gate */ 25327c478bd9Sstevel@tonic-gate static int 25337c478bd9Sstevel@tonic-gate uds_init(void) 25347c478bd9Sstevel@tonic-gate { 25357c478bd9Sstevel@tonic-gate struct sockaddr_un addr; 25367c478bd9Sstevel@tonic-gate 25377c478bd9Sstevel@tonic-gate if ((uds_fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) { 25387c478bd9Sstevel@tonic-gate error_msg("socket: %s", strerror(errno)); 25397c478bd9Sstevel@tonic-gate return (-1); 25407c478bd9Sstevel@tonic-gate } 25417c478bd9Sstevel@tonic-gate 25427c478bd9Sstevel@tonic-gate disable_blocking(uds_fd); 25437c478bd9Sstevel@tonic-gate 25447c478bd9Sstevel@tonic-gate (void) unlink(INETD_UDS_PATH); /* clean-up any stale files */ 25457c478bd9Sstevel@tonic-gate 25467c478bd9Sstevel@tonic-gate (void) memset(&addr, 0, sizeof (addr)); 25477c478bd9Sstevel@tonic-gate addr.sun_family = AF_UNIX; 25487c478bd9Sstevel@tonic-gate /* CONSTCOND */ 25497c478bd9Sstevel@tonic-gate assert(sizeof (INETD_UDS_PATH) <= sizeof (addr.sun_path)); 25507c478bd9Sstevel@tonic-gate (void) strlcpy(addr.sun_path, INETD_UDS_PATH, sizeof (addr.sun_path)); 25517c478bd9Sstevel@tonic-gate 25527c478bd9Sstevel@tonic-gate if (bind(uds_fd, (struct sockaddr *)(&addr), sizeof (addr)) < 0) { 25537c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to bind socket to %s: %s"), 25547c478bd9Sstevel@tonic-gate INETD_UDS_PATH, strerror(errno)); 25557c478bd9Sstevel@tonic-gate (void) close(uds_fd); 25567c478bd9Sstevel@tonic-gate return (-1); 25577c478bd9Sstevel@tonic-gate } 25587c478bd9Sstevel@tonic-gate 25597c478bd9Sstevel@tonic-gate (void) listen(uds_fd, UDS_BACKLOG); 25607c478bd9Sstevel@tonic-gate 25617c478bd9Sstevel@tonic-gate if ((set_pollfd(uds_fd, POLLIN)) == -1) { 25627c478bd9Sstevel@tonic-gate (void) close(uds_fd); 25637c478bd9Sstevel@tonic-gate (void) unlink(INETD_UDS_PATH); 25647c478bd9Sstevel@tonic-gate return (-1); 25657c478bd9Sstevel@tonic-gate } 25667c478bd9Sstevel@tonic-gate 25677c478bd9Sstevel@tonic-gate return (0); 25687c478bd9Sstevel@tonic-gate } 25697c478bd9Sstevel@tonic-gate 25707c478bd9Sstevel@tonic-gate static void 25717c478bd9Sstevel@tonic-gate uds_fini(void) 25727c478bd9Sstevel@tonic-gate { 25737c478bd9Sstevel@tonic-gate if (uds_fd != -1) 25747c478bd9Sstevel@tonic-gate (void) close(uds_fd); 25757c478bd9Sstevel@tonic-gate (void) unlink(INETD_UDS_PATH); 25767c478bd9Sstevel@tonic-gate } 25777c478bd9Sstevel@tonic-gate 25787c478bd9Sstevel@tonic-gate /* 25797c478bd9Sstevel@tonic-gate * Handle an incoming request on the Unix Domain Socket. Returns -1 if there 25807c478bd9Sstevel@tonic-gate * was an error handling the event, else 0. 25817c478bd9Sstevel@tonic-gate */ 25827c478bd9Sstevel@tonic-gate static int 25837c478bd9Sstevel@tonic-gate process_uds_event(void) 25847c478bd9Sstevel@tonic-gate { 25857c478bd9Sstevel@tonic-gate uds_request_t req; 25867c478bd9Sstevel@tonic-gate int fd; 25877c478bd9Sstevel@tonic-gate struct sockaddr_un addr; 25887c478bd9Sstevel@tonic-gate socklen_t len = sizeof (addr); 25897c478bd9Sstevel@tonic-gate int ret; 25907c478bd9Sstevel@tonic-gate uint_t retries = 0; 25917cd7ea0bSrs200217 ucred_t *ucred = NULL; 25927cd7ea0bSrs200217 uid_t euid; 25937c478bd9Sstevel@tonic-gate 25947c478bd9Sstevel@tonic-gate do { 25957c478bd9Sstevel@tonic-gate fd = accept(uds_fd, (struct sockaddr *)&addr, &len); 25967c478bd9Sstevel@tonic-gate } while ((fd < 0) && (errno == EINTR)); 25977c478bd9Sstevel@tonic-gate if (fd < 0) { 25987c478bd9Sstevel@tonic-gate if (errno != EWOULDBLOCK) 25997c478bd9Sstevel@tonic-gate error_msg("accept failed: %s", strerror(errno)); 26007c478bd9Sstevel@tonic-gate return (-1); 26017c478bd9Sstevel@tonic-gate } 26027c478bd9Sstevel@tonic-gate 26037cd7ea0bSrs200217 if (getpeerucred(fd, &ucred) == -1) { 26047cd7ea0bSrs200217 error_msg("getpeerucred failed: %s", strerror(errno)); 26057cd7ea0bSrs200217 (void) close(fd); 26067cd7ea0bSrs200217 return (-1); 26077cd7ea0bSrs200217 } 26087cd7ea0bSrs200217 26097cd7ea0bSrs200217 /* Check peer credentials before acting on the request */ 26107cd7ea0bSrs200217 euid = ucred_geteuid(ucred); 26117cd7ea0bSrs200217 ucred_free(ucred); 26127cd7ea0bSrs200217 if (euid != 0 && getuid() != euid) { 26137cd7ea0bSrs200217 debug_msg("peer euid %u != uid %u", 26147cd7ea0bSrs200217 (uint_t)euid, (uint_t)getuid()); 26157cd7ea0bSrs200217 (void) close(fd); 26167cd7ea0bSrs200217 return (-1); 26177cd7ea0bSrs200217 } 26187cd7ea0bSrs200217 26197c478bd9Sstevel@tonic-gate for (retries = 0; retries < UDS_RECV_RETRIES; retries++) { 26207c478bd9Sstevel@tonic-gate if (((ret = safe_read(fd, &req, sizeof (req))) != 1) || 26217c478bd9Sstevel@tonic-gate (errno != EAGAIN)) 26227c478bd9Sstevel@tonic-gate break; 26237c478bd9Sstevel@tonic-gate 26247c478bd9Sstevel@tonic-gate (void) poll(NULL, 0, 100); /* 100ms pause */ 26257c478bd9Sstevel@tonic-gate } 26267c478bd9Sstevel@tonic-gate 26277c478bd9Sstevel@tonic-gate if (ret != 0) { 26287c478bd9Sstevel@tonic-gate error_msg(gettext("Failed read: %s"), strerror(errno)); 26297c478bd9Sstevel@tonic-gate (void) close(fd); 26307c478bd9Sstevel@tonic-gate return (-1); 26317c478bd9Sstevel@tonic-gate } 26327c478bd9Sstevel@tonic-gate 26337c478bd9Sstevel@tonic-gate switch (req) { 26347c478bd9Sstevel@tonic-gate case UR_REFRESH_INETD: 26357c478bd9Sstevel@tonic-gate /* flag the request for event_loop() to process */ 26367c478bd9Sstevel@tonic-gate refresh_inetd_requested = B_TRUE; 26377c478bd9Sstevel@tonic-gate (void) close(fd); 26387c478bd9Sstevel@tonic-gate break; 26397c478bd9Sstevel@tonic-gate case UR_STOP_INETD: 26407c478bd9Sstevel@tonic-gate inetd_stop(); 26417c478bd9Sstevel@tonic-gate break; 26427c478bd9Sstevel@tonic-gate default: 26437c478bd9Sstevel@tonic-gate error_msg("unexpected UDS request"); 26447c478bd9Sstevel@tonic-gate (void) close(fd); 26457c478bd9Sstevel@tonic-gate return (-1); 26467c478bd9Sstevel@tonic-gate } 26477c478bd9Sstevel@tonic-gate 26487c478bd9Sstevel@tonic-gate return (0); 26497c478bd9Sstevel@tonic-gate } 26507c478bd9Sstevel@tonic-gate 26517c478bd9Sstevel@tonic-gate /* 26527c478bd9Sstevel@tonic-gate * Perform checks for common exec string errors. We limit the checks to 26537c478bd9Sstevel@tonic-gate * whether the file exists, is a regular file, and has at least one execute 26547c478bd9Sstevel@tonic-gate * bit set. We leave the core security checks to exec() so as not to duplicate 26557c478bd9Sstevel@tonic-gate * and thus incur the associated drawbacks, but hope to catch the common 26567c478bd9Sstevel@tonic-gate * errors here. 26577c478bd9Sstevel@tonic-gate */ 26587c478bd9Sstevel@tonic-gate static boolean_t 26597c478bd9Sstevel@tonic-gate passes_basic_exec_checks(const char *instance, const char *method, 26607c478bd9Sstevel@tonic-gate const char *path) 26617c478bd9Sstevel@tonic-gate { 26627c478bd9Sstevel@tonic-gate struct stat sbuf; 26637c478bd9Sstevel@tonic-gate 26647c478bd9Sstevel@tonic-gate /* check the file exists */ 26657c478bd9Sstevel@tonic-gate while (stat(path, &sbuf) == -1) { 26667c478bd9Sstevel@tonic-gate if (errno != EINTR) { 26677c478bd9Sstevel@tonic-gate error_msg(gettext( 26687c478bd9Sstevel@tonic-gate "Can't stat the %s method of instance %s: %s"), 26697c478bd9Sstevel@tonic-gate method, instance, strerror(errno)); 26707c478bd9Sstevel@tonic-gate return (B_FALSE); 26717c478bd9Sstevel@tonic-gate } 26727c478bd9Sstevel@tonic-gate } 26737c478bd9Sstevel@tonic-gate 26747c478bd9Sstevel@tonic-gate /* 26757c478bd9Sstevel@tonic-gate * Check if the file is a regular file and has at least one execute 26767c478bd9Sstevel@tonic-gate * bit set. 26777c478bd9Sstevel@tonic-gate */ 26787c478bd9Sstevel@tonic-gate if ((sbuf.st_mode & S_IFMT) != S_IFREG) { 26797c478bd9Sstevel@tonic-gate error_msg(gettext( 26807c478bd9Sstevel@tonic-gate "The %s method of instance %s isn't a regular file"), 26817c478bd9Sstevel@tonic-gate method, instance); 26827c478bd9Sstevel@tonic-gate return (B_FALSE); 26837c478bd9Sstevel@tonic-gate } else if ((sbuf.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0) { 26847c478bd9Sstevel@tonic-gate error_msg(gettext("The %s method instance %s doesn't have " 26857c478bd9Sstevel@tonic-gate "any execute permissions set"), method, instance); 26867c478bd9Sstevel@tonic-gate return (B_FALSE); 26877c478bd9Sstevel@tonic-gate } 26887c478bd9Sstevel@tonic-gate 26897c478bd9Sstevel@tonic-gate return (B_TRUE); 26907c478bd9Sstevel@tonic-gate } 26917c478bd9Sstevel@tonic-gate 26927c478bd9Sstevel@tonic-gate static void 26937c478bd9Sstevel@tonic-gate exec_method(instance_t *instance, instance_method_t method, method_info_t *mi, 26947c478bd9Sstevel@tonic-gate struct method_context *mthd_ctxt, const proto_info_t *pi) 26957c478bd9Sstevel@tonic-gate { 26967c478bd9Sstevel@tonic-gate char **args; 26977c478bd9Sstevel@tonic-gate char **env; 26987c478bd9Sstevel@tonic-gate const char *errf; 26997c478bd9Sstevel@tonic-gate int serrno; 2700*b8afd3a7SGary Mills sigset_t mtset; 27017c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = instance->config->basic; 27027c478bd9Sstevel@tonic-gate 27037c478bd9Sstevel@tonic-gate if (method == IM_START) { 27047c478bd9Sstevel@tonic-gate /* 27057c478bd9Sstevel@tonic-gate * If wrappers checks fail, pretend the method was exec'd and 27067c478bd9Sstevel@tonic-gate * failed. 27077c478bd9Sstevel@tonic-gate */ 27087c478bd9Sstevel@tonic-gate if (!tcp_wrappers_ok(instance)) 27097c478bd9Sstevel@tonic-gate exit(IMRET_FAILURE); 27107c478bd9Sstevel@tonic-gate } 27117c478bd9Sstevel@tonic-gate 27127c478bd9Sstevel@tonic-gate /* 27137c478bd9Sstevel@tonic-gate * Revert the disposition of handled signals and ignored signals to 27147c478bd9Sstevel@tonic-gate * their defaults, unblocking any blocked ones as a side effect. 27157c478bd9Sstevel@tonic-gate */ 27167c478bd9Sstevel@tonic-gate (void) sigset(SIGHUP, SIG_DFL); 27177c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, SIG_DFL); 27187c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, SIG_DFL); 27197c478bd9Sstevel@tonic-gate 27207c478bd9Sstevel@tonic-gate /* 2721*b8afd3a7SGary Mills * Ensure that other signals are unblocked 2722*b8afd3a7SGary Mills */ 2723*b8afd3a7SGary Mills (void) sigemptyset(&mtset); 2724*b8afd3a7SGary Mills (void) sigprocmask(SIG_SETMASK, &mtset, (sigset_t *)NULL); 2725*b8afd3a7SGary Mills 2726*b8afd3a7SGary Mills /* 27277c478bd9Sstevel@tonic-gate * Setup exec arguments. Do this before the fd setup below, so our 27287c478bd9Sstevel@tonic-gate * logging related file fd doesn't get taken over before we call 27297c478bd9Sstevel@tonic-gate * expand_address(). 27307c478bd9Sstevel@tonic-gate */ 27317c478bd9Sstevel@tonic-gate if ((method == IM_START) && 27327c478bd9Sstevel@tonic-gate (strcmp(mi->exec_args_we.we_wordv[0], "%A") == 0)) { 27337c478bd9Sstevel@tonic-gate args = expand_address(instance, pi); 27347c478bd9Sstevel@tonic-gate } else { 27357c478bd9Sstevel@tonic-gate args = mi->exec_args_we.we_wordv; 27367c478bd9Sstevel@tonic-gate } 27377c478bd9Sstevel@tonic-gate 27387c478bd9Sstevel@tonic-gate /* Generate audit trail for start operations */ 27397c478bd9Sstevel@tonic-gate if (method == IM_START) { 27407c478bd9Sstevel@tonic-gate adt_event_data_t *ae; 27417c478bd9Sstevel@tonic-gate struct sockaddr_storage ss; 27427c478bd9Sstevel@tonic-gate priv_set_t *privset; 27437c478bd9Sstevel@tonic-gate socklen_t sslen = sizeof (ss); 27447c478bd9Sstevel@tonic-gate 27457c478bd9Sstevel@tonic-gate if ((ae = adt_alloc_event(audit_handle, ADT_inetd_connect)) 27467c478bd9Sstevel@tonic-gate == NULL) { 27477c478bd9Sstevel@tonic-gate error_msg(gettext("Unable to allocate audit event for " 27487c478bd9Sstevel@tonic-gate "the %s method of instance %s"), 27497c478bd9Sstevel@tonic-gate methods[method].name, instance->fmri); 27507c478bd9Sstevel@tonic-gate exit(IMRET_FAILURE); 27517c478bd9Sstevel@tonic-gate } 27527c478bd9Sstevel@tonic-gate 27537c478bd9Sstevel@tonic-gate /* 27547c478bd9Sstevel@tonic-gate * The inetd_connect audit record consists of: 27557c478bd9Sstevel@tonic-gate * Service name 27567c478bd9Sstevel@tonic-gate * Execution path 27577c478bd9Sstevel@tonic-gate * Remote address and port 27587c478bd9Sstevel@tonic-gate * Local port 27597c478bd9Sstevel@tonic-gate * Process privileges 27607c478bd9Sstevel@tonic-gate */ 27617c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.service_name = cfg->svc_name; 27627c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.cmd = mi->exec_path; 27637c478bd9Sstevel@tonic-gate 27647c478bd9Sstevel@tonic-gate if (instance->remote_addr.ss_family == AF_INET) { 27657c478bd9Sstevel@tonic-gate struct in_addr *in = SS_SINADDR(instance->remote_addr); 27667c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.ip_adr[0] = in->s_addr; 27677c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.ip_type = ADT_IPv4; 27687c478bd9Sstevel@tonic-gate } else { 27697c478bd9Sstevel@tonic-gate uint32_t *addr6; 27707c478bd9Sstevel@tonic-gate int i; 27717c478bd9Sstevel@tonic-gate 27727c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.ip_type = ADT_IPv6; 27737c478bd9Sstevel@tonic-gate addr6 = (uint32_t *)SS_SINADDR(instance->remote_addr); 27747c478bd9Sstevel@tonic-gate for (i = 0; i < 4; ++i) 27757c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.ip_adr[i] = addr6[i]; 27767c478bd9Sstevel@tonic-gate } 27777c478bd9Sstevel@tonic-gate 27787c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.ip_remote_port = 27797c478bd9Sstevel@tonic-gate ntohs(SS_PORT(instance->remote_addr)); 27807c478bd9Sstevel@tonic-gate 27817c478bd9Sstevel@tonic-gate if (getsockname(instance->conn_fd, (struct sockaddr *)&ss, 27827c478bd9Sstevel@tonic-gate &sslen) == 0) 27837c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.ip_local_port = 27847c478bd9Sstevel@tonic-gate ntohs(SS_PORT(ss)); 27857c478bd9Sstevel@tonic-gate 27867c478bd9Sstevel@tonic-gate privset = mthd_ctxt->priv_set; 27877c478bd9Sstevel@tonic-gate if (privset == NULL) { 27887c478bd9Sstevel@tonic-gate privset = priv_allocset(); 27897c478bd9Sstevel@tonic-gate if (privset != NULL && 27907c478bd9Sstevel@tonic-gate getppriv(PRIV_EFFECTIVE, privset) != 0) { 27917c478bd9Sstevel@tonic-gate priv_freeset(privset); 27927c478bd9Sstevel@tonic-gate privset = NULL; 27937c478bd9Sstevel@tonic-gate } 27947c478bd9Sstevel@tonic-gate } 27957c478bd9Sstevel@tonic-gate 27967c478bd9Sstevel@tonic-gate ae->adt_inetd_connect.privileges = privset; 27977c478bd9Sstevel@tonic-gate 27987c478bd9Sstevel@tonic-gate (void) adt_put_event(ae, ADT_SUCCESS, ADT_SUCCESS); 27997c478bd9Sstevel@tonic-gate adt_free_event(ae); 28007c478bd9Sstevel@tonic-gate 28017c478bd9Sstevel@tonic-gate if (privset != NULL && mthd_ctxt->priv_set == NULL) 28027c478bd9Sstevel@tonic-gate priv_freeset(privset); 28037c478bd9Sstevel@tonic-gate } 28047c478bd9Sstevel@tonic-gate 28057c478bd9Sstevel@tonic-gate /* 28067c478bd9Sstevel@tonic-gate * Set method context before the fd setup below so we can output an 28077c478bd9Sstevel@tonic-gate * error message if it fails. 28087c478bd9Sstevel@tonic-gate */ 28097c478bd9Sstevel@tonic-gate if ((errno = restarter_set_method_context(mthd_ctxt, &errf)) != 0) { 28107c478bd9Sstevel@tonic-gate const char *msg; 28117c478bd9Sstevel@tonic-gate 28127c478bd9Sstevel@tonic-gate if (errno == -1) { 28137c478bd9Sstevel@tonic-gate if (strcmp(errf, "core_set_process_path") == 0) { 28147c478bd9Sstevel@tonic-gate msg = gettext("Failed to set the corefile path " 28157c478bd9Sstevel@tonic-gate "for the %s method of instance %s"); 28167c478bd9Sstevel@tonic-gate } else if (strcmp(errf, "setproject") == 0) { 28177c478bd9Sstevel@tonic-gate msg = gettext("Failed to assign a resource " 28187c478bd9Sstevel@tonic-gate "control for the %s method of instance %s"); 28197c478bd9Sstevel@tonic-gate } else if (strcmp(errf, "pool_set_binding") == 0) { 28207c478bd9Sstevel@tonic-gate msg = gettext("Failed to bind the %s method of " 28217c478bd9Sstevel@tonic-gate "instance %s to a pool due to a system " 28227c478bd9Sstevel@tonic-gate "error"); 28237c478bd9Sstevel@tonic-gate } else { 28247c478bd9Sstevel@tonic-gate assert(0); 28257c478bd9Sstevel@tonic-gate abort(); 28267c478bd9Sstevel@tonic-gate } 28277c478bd9Sstevel@tonic-gate 28287c478bd9Sstevel@tonic-gate error_msg(msg, methods[method].name, instance->fmri); 28297c478bd9Sstevel@tonic-gate 28307c478bd9Sstevel@tonic-gate exit(IMRET_FAILURE); 28317c478bd9Sstevel@tonic-gate } 28327c478bd9Sstevel@tonic-gate 28337c478bd9Sstevel@tonic-gate if (errf != NULL && strcmp(errf, "pool_set_binding") == 0) { 28347c478bd9Sstevel@tonic-gate switch (errno) { 28357c478bd9Sstevel@tonic-gate case ENOENT: 28367c478bd9Sstevel@tonic-gate msg = gettext("Failed to find resource pool " 28377c478bd9Sstevel@tonic-gate "for the %s method of instance %s"); 28387c478bd9Sstevel@tonic-gate break; 28397c478bd9Sstevel@tonic-gate 28407c478bd9Sstevel@tonic-gate case EBADF: 28417c478bd9Sstevel@tonic-gate msg = gettext("Failed to bind the %s method of " 28427c478bd9Sstevel@tonic-gate "instance %s to a pool due to invalid " 28437c478bd9Sstevel@tonic-gate "configuration"); 28447c478bd9Sstevel@tonic-gate break; 28457c478bd9Sstevel@tonic-gate 28463ad28c1eSrm88369 case EINVAL: 28473ad28c1eSrm88369 msg = gettext("Failed to bind the %s method of " 28483ad28c1eSrm88369 "instance %s to a pool due to invalid " 28493ad28c1eSrm88369 "pool name"); 28503ad28c1eSrm88369 break; 28513ad28c1eSrm88369 28527c478bd9Sstevel@tonic-gate default: 28537c478bd9Sstevel@tonic-gate assert(0); 28547c478bd9Sstevel@tonic-gate abort(); 28557c478bd9Sstevel@tonic-gate } 28567c478bd9Sstevel@tonic-gate 28577c478bd9Sstevel@tonic-gate exit(IMRET_FAILURE); 28587c478bd9Sstevel@tonic-gate } 28597c478bd9Sstevel@tonic-gate 28607c478bd9Sstevel@tonic-gate if (errf != NULL) { 28617c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to set credentials for the " 28627c478bd9Sstevel@tonic-gate "%s method of instance %s (%s: %s)"), 28637c478bd9Sstevel@tonic-gate methods[method].name, instance->fmri, errf, 28647c478bd9Sstevel@tonic-gate strerror(errno)); 28657c478bd9Sstevel@tonic-gate exit(IMRET_FAILURE); 28667c478bd9Sstevel@tonic-gate } 28677c478bd9Sstevel@tonic-gate 28687c478bd9Sstevel@tonic-gate switch (errno) { 28697c478bd9Sstevel@tonic-gate case ENOMEM: 28707c478bd9Sstevel@tonic-gate msg = gettext("Failed to set credentials for the %s " 28717c478bd9Sstevel@tonic-gate "method of instance %s (out of memory)"); 28727c478bd9Sstevel@tonic-gate break; 28737c478bd9Sstevel@tonic-gate 28747c478bd9Sstevel@tonic-gate case ENOENT: 28757c478bd9Sstevel@tonic-gate msg = gettext("Failed to set credentials for the %s " 28767c478bd9Sstevel@tonic-gate "method of instance %s (no passwd or shadow " 28777c478bd9Sstevel@tonic-gate "entry for user)"); 28787c478bd9Sstevel@tonic-gate break; 28797c478bd9Sstevel@tonic-gate 28807c478bd9Sstevel@tonic-gate default: 28817c478bd9Sstevel@tonic-gate assert(0); 28827c478bd9Sstevel@tonic-gate abort(); 28837c478bd9Sstevel@tonic-gate } 28847c478bd9Sstevel@tonic-gate 28857c478bd9Sstevel@tonic-gate error_msg(msg, methods[method].name, instance->fmri); 28867c478bd9Sstevel@tonic-gate exit(IMRET_FAILURE); 28877c478bd9Sstevel@tonic-gate } 28887c478bd9Sstevel@tonic-gate 28897c478bd9Sstevel@tonic-gate /* let exec() free mthd_ctxt */ 28907c478bd9Sstevel@tonic-gate 28917c478bd9Sstevel@tonic-gate /* setup standard fds */ 28927c478bd9Sstevel@tonic-gate if (method == IM_START) { 28937c478bd9Sstevel@tonic-gate (void) dup2(instance->conn_fd, STDIN_FILENO); 28947c478bd9Sstevel@tonic-gate } else { 28957c478bd9Sstevel@tonic-gate (void) close(STDIN_FILENO); 28967c478bd9Sstevel@tonic-gate (void) open("/dev/null", O_RDONLY); 28977c478bd9Sstevel@tonic-gate } 28987c478bd9Sstevel@tonic-gate (void) dup2(STDIN_FILENO, STDOUT_FILENO); 28997c478bd9Sstevel@tonic-gate (void) dup2(STDIN_FILENO, STDERR_FILENO); 29007c478bd9Sstevel@tonic-gate 29017c478bd9Sstevel@tonic-gate closefrom(STDERR_FILENO + 1); 29027c478bd9Sstevel@tonic-gate 29037c478bd9Sstevel@tonic-gate method_preexec(); 29047c478bd9Sstevel@tonic-gate 29057c478bd9Sstevel@tonic-gate env = set_smf_env(mthd_ctxt, instance, methods[method].name); 29067c478bd9Sstevel@tonic-gate 29077c478bd9Sstevel@tonic-gate if (env != NULL) { 29087c478bd9Sstevel@tonic-gate do { 29097c478bd9Sstevel@tonic-gate (void) execve(mi->exec_path, args, env); 29107c478bd9Sstevel@tonic-gate } while (errno == EINTR); 29117c478bd9Sstevel@tonic-gate } 29127c478bd9Sstevel@tonic-gate 29137c478bd9Sstevel@tonic-gate serrno = errno; 29147c478bd9Sstevel@tonic-gate /* start up logging again to report the error */ 29157c478bd9Sstevel@tonic-gate msg_init(); 29167c478bd9Sstevel@tonic-gate errno = serrno; 29177c478bd9Sstevel@tonic-gate 29187c478bd9Sstevel@tonic-gate error_msg( 29197c478bd9Sstevel@tonic-gate gettext("Failed to exec %s method of instance %s: %s"), 29207c478bd9Sstevel@tonic-gate methods[method].name, instance->fmri, strerror(errno)); 29217c478bd9Sstevel@tonic-gate 29227c478bd9Sstevel@tonic-gate if ((method == IM_START) && (instance->config->basic->iswait)) { 29237c478bd9Sstevel@tonic-gate /* 29247c478bd9Sstevel@tonic-gate * We couldn't exec the start method for a wait type service. 29257c478bd9Sstevel@tonic-gate * Eat up data from the endpoint, so that hopefully the 29267c478bd9Sstevel@tonic-gate * service's fd won't wake poll up on the next time round 29277c478bd9Sstevel@tonic-gate * event_loop(). This behavior is carried over from the old 29287c478bd9Sstevel@tonic-gate * inetd, and it seems somewhat arbitrary that it isn't 29297c478bd9Sstevel@tonic-gate * also done in the case of fork failures; but I guess 29307c478bd9Sstevel@tonic-gate * it assumes an exec failure is less likely to be the result 29317c478bd9Sstevel@tonic-gate * of a resource shortage, and is thus not worth retrying. 29327c478bd9Sstevel@tonic-gate */ 29337c478bd9Sstevel@tonic-gate consume_wait_data(instance, 0); 29347c478bd9Sstevel@tonic-gate } 29357c478bd9Sstevel@tonic-gate 29367c478bd9Sstevel@tonic-gate exit(IMRET_FAILURE); 29377c478bd9Sstevel@tonic-gate } 29387c478bd9Sstevel@tonic-gate 29397c478bd9Sstevel@tonic-gate static restarter_error_t 29407c478bd9Sstevel@tonic-gate get_method_error_success(instance_method_t method) 29417c478bd9Sstevel@tonic-gate { 29427c478bd9Sstevel@tonic-gate switch (method) { 29437c478bd9Sstevel@tonic-gate case IM_OFFLINE: 29447c478bd9Sstevel@tonic-gate return (RERR_RESTART); 29457c478bd9Sstevel@tonic-gate case IM_ONLINE: 29467c478bd9Sstevel@tonic-gate return (RERR_RESTART); 29477c478bd9Sstevel@tonic-gate case IM_DISABLE: 29487c478bd9Sstevel@tonic-gate return (RERR_RESTART); 29497c478bd9Sstevel@tonic-gate case IM_REFRESH: 29507c478bd9Sstevel@tonic-gate return (RERR_REFRESH); 29517c478bd9Sstevel@tonic-gate case IM_START: 29527c478bd9Sstevel@tonic-gate return (RERR_RESTART); 29537c478bd9Sstevel@tonic-gate } 2954b823d4c7Sdstaff (void) fprintf(stderr, gettext("Internal fatal error in inetd.\n")); 2955b823d4c7Sdstaff 2956b823d4c7Sdstaff abort(); 29577c478bd9Sstevel@tonic-gate /* NOTREACHED */ 29587c478bd9Sstevel@tonic-gate } 29597c478bd9Sstevel@tonic-gate 2960324baee5Sstevep static int 2961324baee5Sstevep smf_kill_process(instance_t *instance, int sig) 2962324baee5Sstevep { 2963324baee5Sstevep rep_val_t *rv; 2964324baee5Sstevep int ret = IMRET_SUCCESS; 2965324baee5Sstevep 2966324baee5Sstevep /* Carry out process assassination */ 2967324baee5Sstevep for (rv = uu_list_first(instance->start_pids); 2968324baee5Sstevep rv != NULL; 2969324baee5Sstevep rv = uu_list_next(instance->start_pids, rv)) { 2970324baee5Sstevep if ((kill((pid_t)rv->val, sig) != 0) && 2971324baee5Sstevep (errno != ESRCH)) { 2972324baee5Sstevep ret = IMRET_FAILURE; 2973324baee5Sstevep error_msg(gettext("Unable to kill " 2974324baee5Sstevep "start process (%ld) of instance %s: %s"), 2975324baee5Sstevep rv->val, instance->fmri, strerror(errno)); 2976324baee5Sstevep } 2977324baee5Sstevep } 2978324baee5Sstevep return (ret); 2979324baee5Sstevep } 2980324baee5Sstevep 29817c478bd9Sstevel@tonic-gate /* 29827c478bd9Sstevel@tonic-gate * Runs the specified method of the specified service instance. 29837c478bd9Sstevel@tonic-gate * If the method was never specified, we handle it the same as if the 29847c478bd9Sstevel@tonic-gate * method was called and returned success, carrying on any transition the 29857c478bd9Sstevel@tonic-gate * instance may be in the midst of. 29867c478bd9Sstevel@tonic-gate * If the method isn't executable in its specified profile or an error occurs 29877c478bd9Sstevel@tonic-gate * forking a process to run the method in the function returns -1. 29887c478bd9Sstevel@tonic-gate * If a method binary is successfully executed, the function switches the 29897c478bd9Sstevel@tonic-gate * instance's cur state to the method's associated 'run' state and the next 29907c478bd9Sstevel@tonic-gate * state to the methods associated next state. 29917c478bd9Sstevel@tonic-gate * Returns -1 if there's an error before forking, else 0. 29927c478bd9Sstevel@tonic-gate */ 29937c478bd9Sstevel@tonic-gate int 29947c478bd9Sstevel@tonic-gate run_method(instance_t *instance, instance_method_t method, 29957c478bd9Sstevel@tonic-gate const proto_info_t *start_info) 29967c478bd9Sstevel@tonic-gate { 29977c478bd9Sstevel@tonic-gate pid_t child_pid; 29987c478bd9Sstevel@tonic-gate method_info_t *mi; 29997c478bd9Sstevel@tonic-gate struct method_context *mthd_ctxt = NULL; 3000324baee5Sstevep int sig = 0; 30017c478bd9Sstevel@tonic-gate int ret; 30027c478bd9Sstevel@tonic-gate instance_cfg_t *cfg = instance->config; 30037c478bd9Sstevel@tonic-gate ctid_t cid; 30047c478bd9Sstevel@tonic-gate boolean_t trans_failure = B_TRUE; 30057c478bd9Sstevel@tonic-gate int serrno; 30067c478bd9Sstevel@tonic-gate 30077c478bd9Sstevel@tonic-gate /* 30087c478bd9Sstevel@tonic-gate * Don't bother updating the instance's state for the start method 30097c478bd9Sstevel@tonic-gate * as there isn't a separate start method state. 30107c478bd9Sstevel@tonic-gate */ 30117c478bd9Sstevel@tonic-gate if (method != IM_START) 30127c478bd9Sstevel@tonic-gate update_instance_states(instance, get_method_state(method), 30137c478bd9Sstevel@tonic-gate methods[method].dst_state, 30147c478bd9Sstevel@tonic-gate get_method_error_success(method)); 30157c478bd9Sstevel@tonic-gate 30167c478bd9Sstevel@tonic-gate if ((mi = cfg->methods[method]) == NULL) { 30177c478bd9Sstevel@tonic-gate /* 3018324baee5Sstevep * If the absent method is IM_OFFLINE, default action needs 3019324baee5Sstevep * to be taken to avoid lingering processes which can prevent 3020324baee5Sstevep * the upcoming rebinding from happening. 30217c478bd9Sstevel@tonic-gate */ 3022324baee5Sstevep if ((method == IM_OFFLINE) && instance->config->basic->iswait) { 3023324baee5Sstevep warn_msg(gettext("inetd_offline method for instance %s " 3024324baee5Sstevep "is unspecified. Taking default action: kill."), 3025324baee5Sstevep instance->fmri); 3026324baee5Sstevep (void) str2sig("TERM", &sig); 3027324baee5Sstevep ret = smf_kill_process(instance, sig); 3028324baee5Sstevep process_non_start_term(instance, ret); 3029324baee5Sstevep return (0); 3030324baee5Sstevep } else { 30317c478bd9Sstevel@tonic-gate process_non_start_term(instance, IMRET_SUCCESS); 30327c478bd9Sstevel@tonic-gate return (0); 30337c478bd9Sstevel@tonic-gate } 3034324baee5Sstevep } 30357c478bd9Sstevel@tonic-gate 30367c478bd9Sstevel@tonic-gate /* Handle special method tokens, not allowed on start */ 30377c478bd9Sstevel@tonic-gate if (method != IM_START) { 30387c478bd9Sstevel@tonic-gate if (restarter_is_null_method(mi->exec_path)) { 30397c478bd9Sstevel@tonic-gate /* :true means nothing should be done */ 30407c478bd9Sstevel@tonic-gate process_non_start_term(instance, IMRET_SUCCESS); 30417c478bd9Sstevel@tonic-gate return (0); 30427c478bd9Sstevel@tonic-gate } 30437c478bd9Sstevel@tonic-gate 30447c478bd9Sstevel@tonic-gate if ((sig = restarter_is_kill_method(mi->exec_path)) >= 0) { 30457c478bd9Sstevel@tonic-gate /* Carry out contract assassination */ 304694501b61Sskamm ret = iterate_repository_contracts(instance, sig); 30477c478bd9Sstevel@tonic-gate /* ENOENT means we didn't find any contracts */ 30487c478bd9Sstevel@tonic-gate if (ret != 0 && ret != ENOENT) { 30497c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to send signal %d " 30507c478bd9Sstevel@tonic-gate "to contracts of instance %s: %s"), sig, 30517c478bd9Sstevel@tonic-gate instance->fmri, strerror(ret)); 30527c478bd9Sstevel@tonic-gate goto prefork_failure; 30537c478bd9Sstevel@tonic-gate } else { 30547c478bd9Sstevel@tonic-gate process_non_start_term(instance, IMRET_SUCCESS); 30557c478bd9Sstevel@tonic-gate return (0); 30567c478bd9Sstevel@tonic-gate } 30577c478bd9Sstevel@tonic-gate } 30587c478bd9Sstevel@tonic-gate 30597c478bd9Sstevel@tonic-gate if ((sig = restarter_is_kill_proc_method(mi->exec_path)) >= 0) { 3060324baee5Sstevep ret = smf_kill_process(instance, sig); 30617c478bd9Sstevel@tonic-gate process_non_start_term(instance, ret); 30627c478bd9Sstevel@tonic-gate return (0); 30637c478bd9Sstevel@tonic-gate } 30647c478bd9Sstevel@tonic-gate } 30657c478bd9Sstevel@tonic-gate 30667c478bd9Sstevel@tonic-gate /* 30677c478bd9Sstevel@tonic-gate * Get the associated method context before the fork so we can 30687c478bd9Sstevel@tonic-gate * modify the instances state if things go wrong. 30697c478bd9Sstevel@tonic-gate */ 30707c478bd9Sstevel@tonic-gate if ((mthd_ctxt = read_method_context(instance->fmri, 3071870ad75aSSean Wilcox methods[method].name, mi->exec_path)) == NULL) 30727c478bd9Sstevel@tonic-gate goto prefork_failure; 30737c478bd9Sstevel@tonic-gate 30747c478bd9Sstevel@tonic-gate /* 30757c478bd9Sstevel@tonic-gate * Perform some basic checks before we fork to limit the possibility 30767c478bd9Sstevel@tonic-gate * of exec failures, so we can modify the instance state if necessary. 30777c478bd9Sstevel@tonic-gate */ 30787c478bd9Sstevel@tonic-gate if (!passes_basic_exec_checks(instance->fmri, methods[method].name, 30797c478bd9Sstevel@tonic-gate mi->exec_path)) { 30807c478bd9Sstevel@tonic-gate trans_failure = B_FALSE; 30817c478bd9Sstevel@tonic-gate goto prefork_failure; 30827c478bd9Sstevel@tonic-gate } 30837c478bd9Sstevel@tonic-gate 30847b209c2cSacruz if (contract_prefork(instance->fmri, method) == -1) 30857c478bd9Sstevel@tonic-gate goto prefork_failure; 30867c478bd9Sstevel@tonic-gate child_pid = fork(); 30877c478bd9Sstevel@tonic-gate serrno = errno; 30887c478bd9Sstevel@tonic-gate contract_postfork(); 30897c478bd9Sstevel@tonic-gate 30907c478bd9Sstevel@tonic-gate switch (child_pid) { 30917c478bd9Sstevel@tonic-gate case -1: 30927c478bd9Sstevel@tonic-gate error_msg(gettext( 30937c478bd9Sstevel@tonic-gate "Unable to fork %s method of instance %s: %s"), 30947c478bd9Sstevel@tonic-gate methods[method].name, instance->fmri, strerror(serrno)); 30957c478bd9Sstevel@tonic-gate if ((serrno != EAGAIN) && (serrno != ENOMEM)) 30967c478bd9Sstevel@tonic-gate trans_failure = B_FALSE; 30977c478bd9Sstevel@tonic-gate goto prefork_failure; 30987c478bd9Sstevel@tonic-gate case 0: /* child */ 30997c478bd9Sstevel@tonic-gate exec_method(instance, method, mi, mthd_ctxt, start_info); 3100b823d4c7Sdstaff /* NOTREACHED */ 31017c478bd9Sstevel@tonic-gate default: /* parent */ 31027c478bd9Sstevel@tonic-gate restarter_free_method_context(mthd_ctxt); 31037c478bd9Sstevel@tonic-gate mthd_ctxt = NULL; 31047c478bd9Sstevel@tonic-gate 31057c478bd9Sstevel@tonic-gate if (get_latest_contract(&cid) < 0) 31067c478bd9Sstevel@tonic-gate cid = -1; 31077c478bd9Sstevel@tonic-gate 31087c478bd9Sstevel@tonic-gate /* 31097c478bd9Sstevel@tonic-gate * Register this method so its termination is noticed and 31107c478bd9Sstevel@tonic-gate * the state transition this method participates in is 31117c478bd9Sstevel@tonic-gate * continued. 31127c478bd9Sstevel@tonic-gate */ 31135e2844d4SRenaud Manus if (register_method(instance, child_pid, cid, method, 31145e2844d4SRenaud Manus start_info->proto) != 0) { 31157c478bd9Sstevel@tonic-gate /* 31167c478bd9Sstevel@tonic-gate * Since we will never find out about the termination 31177c478bd9Sstevel@tonic-gate * of this method, if it's a non-start method treat 31187c478bd9Sstevel@tonic-gate * is as a failure so we don't block restarter event 31197c478bd9Sstevel@tonic-gate * processing on it whilst it languishes in a method 31207c478bd9Sstevel@tonic-gate * running state. 31217c478bd9Sstevel@tonic-gate */ 31227c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to monitor status of " 31237c478bd9Sstevel@tonic-gate "%s method of instance %s"), methods[method].name, 31247c478bd9Sstevel@tonic-gate instance->fmri); 31257c478bd9Sstevel@tonic-gate if (method != IM_START) 31267c478bd9Sstevel@tonic-gate process_non_start_term(instance, IMRET_FAILURE); 31277c478bd9Sstevel@tonic-gate } 31287c478bd9Sstevel@tonic-gate 31297c478bd9Sstevel@tonic-gate add_method_ids(instance, child_pid, cid, method); 31307c478bd9Sstevel@tonic-gate 31317c478bd9Sstevel@tonic-gate /* do tcp tracing for those nowait instances that request it */ 31327c478bd9Sstevel@tonic-gate if ((method == IM_START) && cfg->basic->do_tcp_trace && 31337c478bd9Sstevel@tonic-gate !cfg->basic->iswait) { 31347c478bd9Sstevel@tonic-gate char buf[INET6_ADDRSTRLEN]; 31357c478bd9Sstevel@tonic-gate 31367c478bd9Sstevel@tonic-gate syslog(LOG_NOTICE, "%s[%d] from %s %d", 31377c478bd9Sstevel@tonic-gate cfg->basic->svc_name, child_pid, 31387c478bd9Sstevel@tonic-gate inet_ntop_native(instance->remote_addr.ss_family, 31397c478bd9Sstevel@tonic-gate SS_SINADDR(instance->remote_addr), buf, 31407c478bd9Sstevel@tonic-gate sizeof (buf)), 31417c478bd9Sstevel@tonic-gate ntohs(SS_PORT(instance->remote_addr))); 31427c478bd9Sstevel@tonic-gate } 31437c478bd9Sstevel@tonic-gate } 31447c478bd9Sstevel@tonic-gate 31457c478bd9Sstevel@tonic-gate return (0); 31467c478bd9Sstevel@tonic-gate 31477c478bd9Sstevel@tonic-gate prefork_failure: 31487c478bd9Sstevel@tonic-gate if (mthd_ctxt != NULL) { 31497c478bd9Sstevel@tonic-gate restarter_free_method_context(mthd_ctxt); 31507c478bd9Sstevel@tonic-gate mthd_ctxt = NULL; 31517c478bd9Sstevel@tonic-gate } 31527c478bd9Sstevel@tonic-gate 31537c478bd9Sstevel@tonic-gate if (method == IM_START) { 31547c478bd9Sstevel@tonic-gate /* 31557c478bd9Sstevel@tonic-gate * Only place a start method in maintenance if we're sure 31567c478bd9Sstevel@tonic-gate * that the failure was non-transient. 31577c478bd9Sstevel@tonic-gate */ 31587c478bd9Sstevel@tonic-gate if (!trans_failure) { 31597c478bd9Sstevel@tonic-gate destroy_bound_fds(instance); 31607c478bd9Sstevel@tonic-gate update_state(instance, IIS_MAINTENANCE, RERR_FAULT); 31617c478bd9Sstevel@tonic-gate } 31627c478bd9Sstevel@tonic-gate } else { 31637c478bd9Sstevel@tonic-gate /* treat the failure as if the method ran and failed */ 31647c478bd9Sstevel@tonic-gate process_non_start_term(instance, IMRET_FAILURE); 31657c478bd9Sstevel@tonic-gate } 31667c478bd9Sstevel@tonic-gate 31677c478bd9Sstevel@tonic-gate return (-1); 31687c478bd9Sstevel@tonic-gate } 31697c478bd9Sstevel@tonic-gate 31707c478bd9Sstevel@tonic-gate static int 3171ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India pending_connections(instance_t *instance, proto_info_t *pi) 3172ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India { 3173ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India if (instance->config->basic->istlx) { 3174ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India tlx_info_t *tl = (tlx_info_t *)pi; 3175ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India 3176ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India return (uu_list_numnodes(tl->conn_ind_queue) != 0); 3177ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India } else { 3178ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India return (0); 3179ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India } 3180ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India } 3181ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India 3182ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India static int 31837c478bd9Sstevel@tonic-gate accept_connection(instance_t *instance, proto_info_t *pi) 31847c478bd9Sstevel@tonic-gate { 31857c478bd9Sstevel@tonic-gate int fd; 31867c478bd9Sstevel@tonic-gate socklen_t size; 31877c478bd9Sstevel@tonic-gate 31887c478bd9Sstevel@tonic-gate if (instance->config->basic->istlx) { 3189ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India tlx_info_t *tl = (tlx_info_t *)pi; 3190ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India tlx_pending_counter = \ 3191ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India tlx_pending_counter - uu_list_numnodes(tl->conn_ind_queue); 3192ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India 31937c478bd9Sstevel@tonic-gate fd = tlx_accept(instance->fmri, (tlx_info_t *)pi, 31947c478bd9Sstevel@tonic-gate &(instance->remote_addr)); 3195ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India 3196ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India tlx_pending_counter = \ 3197ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India tlx_pending_counter + uu_list_numnodes(tl->conn_ind_queue); 31987c478bd9Sstevel@tonic-gate } else { 31997c478bd9Sstevel@tonic-gate size = sizeof (instance->remote_addr); 32007c478bd9Sstevel@tonic-gate fd = accept(pi->listen_fd, 32017c478bd9Sstevel@tonic-gate (struct sockaddr *)&(instance->remote_addr), &size); 32027c478bd9Sstevel@tonic-gate if (fd < 0) 32037c478bd9Sstevel@tonic-gate error_msg("accept: %s", strerror(errno)); 32047c478bd9Sstevel@tonic-gate } 32057c478bd9Sstevel@tonic-gate 32067c478bd9Sstevel@tonic-gate return (fd); 32077c478bd9Sstevel@tonic-gate } 32087c478bd9Sstevel@tonic-gate 32097c478bd9Sstevel@tonic-gate /* 32107c478bd9Sstevel@tonic-gate * Handle an incoming connection request for a nowait service. 32117c478bd9Sstevel@tonic-gate * This involves accepting the incoming connection on a new fd. Connection 32127c478bd9Sstevel@tonic-gate * rate checks are then performed, transitioning the service to the 32137c478bd9Sstevel@tonic-gate * conrate offline state if these fail. Otherwise, the service's start method 32147c478bd9Sstevel@tonic-gate * is run (performing TCP wrappers checks if applicable as we do), and on 32157c478bd9Sstevel@tonic-gate * success concurrent copies checking is done, transitioning the service to the 32167c478bd9Sstevel@tonic-gate * copies offline state if this fails. 32177c478bd9Sstevel@tonic-gate */ 32187c478bd9Sstevel@tonic-gate static void 32197c478bd9Sstevel@tonic-gate process_nowait_request(instance_t *instance, proto_info_t *pi) 32207c478bd9Sstevel@tonic-gate { 32217c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = instance->config->basic; 32227c478bd9Sstevel@tonic-gate int ret; 32237c478bd9Sstevel@tonic-gate adt_event_data_t *ae; 32247c478bd9Sstevel@tonic-gate char buf[BUFSIZ]; 32257c478bd9Sstevel@tonic-gate 32267c478bd9Sstevel@tonic-gate /* accept nowait service connections on a new fd */ 32277c478bd9Sstevel@tonic-gate if ((instance->conn_fd = accept_connection(instance, pi)) == -1) { 32287c478bd9Sstevel@tonic-gate /* 32297c478bd9Sstevel@tonic-gate * Failed accept. Return and allow the event loop to initiate 32307c478bd9Sstevel@tonic-gate * another attempt later if the request is still present. 32317c478bd9Sstevel@tonic-gate */ 32327c478bd9Sstevel@tonic-gate return; 32337c478bd9Sstevel@tonic-gate } 32347c478bd9Sstevel@tonic-gate 32357c478bd9Sstevel@tonic-gate /* 32367c478bd9Sstevel@tonic-gate * Limit connection rate of nowait services. If either conn_rate_max 32377c478bd9Sstevel@tonic-gate * or conn_rate_offline are <= 0, no connection rate limit checking 32387c478bd9Sstevel@tonic-gate * is done. If the configured rate is exceeded, the instance is taken 32397c478bd9Sstevel@tonic-gate * to the connrate_offline state and a timer scheduled to try and 32407c478bd9Sstevel@tonic-gate * bring the instance back online after the configured offline time. 32417c478bd9Sstevel@tonic-gate */ 32427c478bd9Sstevel@tonic-gate if ((cfg->conn_rate_max > 0) && (cfg->conn_rate_offline > 0)) { 32437c478bd9Sstevel@tonic-gate if (instance->conn_rate_count++ == 0) { 32447c478bd9Sstevel@tonic-gate instance->conn_rate_start = time(NULL); 32457c478bd9Sstevel@tonic-gate } else if (instance->conn_rate_count > 32467c478bd9Sstevel@tonic-gate cfg->conn_rate_max) { 32477c478bd9Sstevel@tonic-gate time_t now = time(NULL); 32487c478bd9Sstevel@tonic-gate 32497c478bd9Sstevel@tonic-gate if ((now - instance->conn_rate_start) > 1) { 32507c478bd9Sstevel@tonic-gate instance->conn_rate_start = now; 32517c478bd9Sstevel@tonic-gate instance->conn_rate_count = 1; 32527c478bd9Sstevel@tonic-gate } else { 32537c478bd9Sstevel@tonic-gate /* Generate audit record */ 32547c478bd9Sstevel@tonic-gate if ((ae = adt_alloc_event(audit_handle, 32557c478bd9Sstevel@tonic-gate ADT_inetd_ratelimit)) == NULL) { 32567c478bd9Sstevel@tonic-gate error_msg(gettext("Unable to allocate " 32577c478bd9Sstevel@tonic-gate "rate limit audit event")); 32587c478bd9Sstevel@tonic-gate } else { 32597c478bd9Sstevel@tonic-gate adt_inetd_ratelimit_t *rl = 32607c478bd9Sstevel@tonic-gate &ae->adt_inetd_ratelimit; 32617c478bd9Sstevel@tonic-gate /* 32627c478bd9Sstevel@tonic-gate * The inetd_ratelimit audit 32637c478bd9Sstevel@tonic-gate * record consists of: 32647c478bd9Sstevel@tonic-gate * Service name 32657c478bd9Sstevel@tonic-gate * Connection rate limit 32667c478bd9Sstevel@tonic-gate */ 32677c478bd9Sstevel@tonic-gate rl->service_name = cfg->svc_name; 32687c478bd9Sstevel@tonic-gate (void) snprintf(buf, sizeof (buf), 32697c478bd9Sstevel@tonic-gate "limit=%lld", cfg->conn_rate_max); 32707c478bd9Sstevel@tonic-gate rl->limit = buf; 32717c478bd9Sstevel@tonic-gate (void) adt_put_event(ae, ADT_SUCCESS, 32727c478bd9Sstevel@tonic-gate ADT_SUCCESS); 32737c478bd9Sstevel@tonic-gate adt_free_event(ae); 32747c478bd9Sstevel@tonic-gate } 32757c478bd9Sstevel@tonic-gate 32767c478bd9Sstevel@tonic-gate error_msg(gettext( 32777c478bd9Sstevel@tonic-gate "Instance %s has exceeded its configured " 32787c478bd9Sstevel@tonic-gate "connection rate, additional connections " 32797c478bd9Sstevel@tonic-gate "will not be accepted for %d seconds"), 32807c478bd9Sstevel@tonic-gate instance->fmri, cfg->conn_rate_offline); 32817c478bd9Sstevel@tonic-gate 32827c478bd9Sstevel@tonic-gate close_net_fd(instance, instance->conn_fd); 32837c478bd9Sstevel@tonic-gate instance->conn_fd = -1; 32847c478bd9Sstevel@tonic-gate 32857c478bd9Sstevel@tonic-gate destroy_bound_fds(instance); 32867c478bd9Sstevel@tonic-gate 32877c478bd9Sstevel@tonic-gate instance->conn_rate_count = 0; 32887c478bd9Sstevel@tonic-gate 32897c478bd9Sstevel@tonic-gate instance->conn_rate_exceeded = B_TRUE; 32907c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_OFFLINE, NULL); 32917c478bd9Sstevel@tonic-gate 32927c478bd9Sstevel@tonic-gate return; 32937c478bd9Sstevel@tonic-gate } 32947c478bd9Sstevel@tonic-gate } 32957c478bd9Sstevel@tonic-gate } 32967c478bd9Sstevel@tonic-gate 32977c478bd9Sstevel@tonic-gate ret = run_method(instance, IM_START, pi); 32987c478bd9Sstevel@tonic-gate 32997c478bd9Sstevel@tonic-gate close_net_fd(instance, instance->conn_fd); 33007c478bd9Sstevel@tonic-gate instance->conn_fd = -1; 33017c478bd9Sstevel@tonic-gate 33027c478bd9Sstevel@tonic-gate if (ret == -1) /* the method wasn't forked */ 33037c478bd9Sstevel@tonic-gate return; 33047c478bd9Sstevel@tonic-gate 33057c478bd9Sstevel@tonic-gate instance->copies++; 33067c478bd9Sstevel@tonic-gate 33077c478bd9Sstevel@tonic-gate /* 33087c478bd9Sstevel@tonic-gate * Limit concurrent connections of nowait services. 33097c478bd9Sstevel@tonic-gate */ 33107c478bd9Sstevel@tonic-gate if (copies_limit_exceeded(instance)) { 33117c478bd9Sstevel@tonic-gate /* Generate audit record */ 33127c478bd9Sstevel@tonic-gate if ((ae = adt_alloc_event(audit_handle, ADT_inetd_copylimit)) 33137c478bd9Sstevel@tonic-gate == NULL) { 33147c478bd9Sstevel@tonic-gate error_msg(gettext("Unable to allocate copy limit " 33157c478bd9Sstevel@tonic-gate "audit event")); 33167c478bd9Sstevel@tonic-gate } else { 33177c478bd9Sstevel@tonic-gate /* 33187c478bd9Sstevel@tonic-gate * The inetd_copylimit audit record consists of: 33197c478bd9Sstevel@tonic-gate * Service name 33207c478bd9Sstevel@tonic-gate * Copy limit 33217c478bd9Sstevel@tonic-gate */ 33227c478bd9Sstevel@tonic-gate ae->adt_inetd_copylimit.service_name = cfg->svc_name; 33237c478bd9Sstevel@tonic-gate (void) snprintf(buf, sizeof (buf), "limit=%lld", 33247c478bd9Sstevel@tonic-gate cfg->max_copies); 33257c478bd9Sstevel@tonic-gate ae->adt_inetd_copylimit.limit = buf; 33267c478bd9Sstevel@tonic-gate (void) adt_put_event(ae, ADT_SUCCESS, ADT_SUCCESS); 33277c478bd9Sstevel@tonic-gate adt_free_event(ae); 33287c478bd9Sstevel@tonic-gate } 33297c478bd9Sstevel@tonic-gate 33307c478bd9Sstevel@tonic-gate warn_msg(gettext("Instance %s has reached its maximum " 33317c478bd9Sstevel@tonic-gate "configured copies, no new connections will be accepted"), 33327c478bd9Sstevel@tonic-gate instance->fmri); 33337c478bd9Sstevel@tonic-gate destroy_bound_fds(instance); 33347c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_OFFLINE, NULL); 33357c478bd9Sstevel@tonic-gate } 33367c478bd9Sstevel@tonic-gate } 33377c478bd9Sstevel@tonic-gate 33387c478bd9Sstevel@tonic-gate /* 33397c478bd9Sstevel@tonic-gate * Handle an incoming request for a wait type service. 33407c478bd9Sstevel@tonic-gate * Failure rate checking is done first, taking the service to the maintenance 33417c478bd9Sstevel@tonic-gate * state if the checks fail. Following this, the service's start method is run, 33427c478bd9Sstevel@tonic-gate * and on success, we stop listening for new requests for this service. 33437c478bd9Sstevel@tonic-gate */ 33447c478bd9Sstevel@tonic-gate static void 33457c478bd9Sstevel@tonic-gate process_wait_request(instance_t *instance, const proto_info_t *pi) 33467c478bd9Sstevel@tonic-gate { 33477c478bd9Sstevel@tonic-gate basic_cfg_t *cfg = instance->config->basic; 33487c478bd9Sstevel@tonic-gate int ret; 33497c478bd9Sstevel@tonic-gate adt_event_data_t *ae; 33507c478bd9Sstevel@tonic-gate char buf[BUFSIZ]; 33517c478bd9Sstevel@tonic-gate 33527c478bd9Sstevel@tonic-gate instance->conn_fd = pi->listen_fd; 33537c478bd9Sstevel@tonic-gate 33547c478bd9Sstevel@tonic-gate /* 33557c478bd9Sstevel@tonic-gate * Detect broken servers and transition them to maintenance. If a 33567c478bd9Sstevel@tonic-gate * wait type service exits without accepting the connection or 33577c478bd9Sstevel@tonic-gate * consuming (reading) the datagram, that service's descriptor will 33587c478bd9Sstevel@tonic-gate * select readable again, and inetd will fork another instance of 33597c478bd9Sstevel@tonic-gate * the server. If either wait_fail_cnt or wait_fail_interval are <= 0, 33607c478bd9Sstevel@tonic-gate * no failure rate detection is done. 33617c478bd9Sstevel@tonic-gate */ 33627c478bd9Sstevel@tonic-gate if ((cfg->wait_fail_cnt > 0) && (cfg->wait_fail_interval > 0)) { 33637c478bd9Sstevel@tonic-gate if (instance->fail_rate_count++ == 0) { 33647c478bd9Sstevel@tonic-gate instance->fail_rate_start = time(NULL); 33657c478bd9Sstevel@tonic-gate } else if (instance->fail_rate_count > cfg->wait_fail_cnt) { 33667c478bd9Sstevel@tonic-gate time_t now = time(NULL); 33677c478bd9Sstevel@tonic-gate 33687c478bd9Sstevel@tonic-gate if ((now - instance->fail_rate_start) > 33697c478bd9Sstevel@tonic-gate cfg->wait_fail_interval) { 33707c478bd9Sstevel@tonic-gate instance->fail_rate_start = now; 33717c478bd9Sstevel@tonic-gate instance->fail_rate_count = 1; 33727c478bd9Sstevel@tonic-gate } else { 33737c478bd9Sstevel@tonic-gate /* Generate audit record */ 33747c478bd9Sstevel@tonic-gate if ((ae = adt_alloc_event(audit_handle, 33757c478bd9Sstevel@tonic-gate ADT_inetd_failrate)) == NULL) { 33767c478bd9Sstevel@tonic-gate error_msg(gettext("Unable to allocate " 33777c478bd9Sstevel@tonic-gate "failure rate audit event")); 33787c478bd9Sstevel@tonic-gate } else { 33797c478bd9Sstevel@tonic-gate adt_inetd_failrate_t *fr = 33807c478bd9Sstevel@tonic-gate &ae->adt_inetd_failrate; 33817c478bd9Sstevel@tonic-gate /* 33827c478bd9Sstevel@tonic-gate * The inetd_failrate audit record 33837c478bd9Sstevel@tonic-gate * consists of: 33847c478bd9Sstevel@tonic-gate * Service name 33857c478bd9Sstevel@tonic-gate * Failure rate 33867c478bd9Sstevel@tonic-gate * Interval 33877c478bd9Sstevel@tonic-gate * Last two are expressed as k=v pairs 33887c478bd9Sstevel@tonic-gate * in the values field. 33897c478bd9Sstevel@tonic-gate */ 33907c478bd9Sstevel@tonic-gate fr->service_name = cfg->svc_name; 33917c478bd9Sstevel@tonic-gate (void) snprintf(buf, sizeof (buf), 33927c478bd9Sstevel@tonic-gate "limit=%lld,interval=%d", 33937c478bd9Sstevel@tonic-gate cfg->wait_fail_cnt, 33947c478bd9Sstevel@tonic-gate cfg->wait_fail_interval); 33957c478bd9Sstevel@tonic-gate fr->values = buf; 33967c478bd9Sstevel@tonic-gate (void) adt_put_event(ae, ADT_SUCCESS, 33977c478bd9Sstevel@tonic-gate ADT_SUCCESS); 33987c478bd9Sstevel@tonic-gate adt_free_event(ae); 33997c478bd9Sstevel@tonic-gate } 34007c478bd9Sstevel@tonic-gate 34017c478bd9Sstevel@tonic-gate error_msg(gettext( 34027c478bd9Sstevel@tonic-gate "Instance %s has exceeded its configured " 34037c478bd9Sstevel@tonic-gate "failure rate, transitioning to " 34047c478bd9Sstevel@tonic-gate "maintenance"), instance->fmri); 34057c478bd9Sstevel@tonic-gate instance->fail_rate_count = 0; 34067c478bd9Sstevel@tonic-gate 34077c478bd9Sstevel@tonic-gate destroy_bound_fds(instance); 34087c478bd9Sstevel@tonic-gate 34097c478bd9Sstevel@tonic-gate instance->maintenance_req = B_TRUE; 34107c478bd9Sstevel@tonic-gate (void) run_method(instance, IM_OFFLINE, NULL); 34117c478bd9Sstevel@tonic-gate return; 34127c478bd9Sstevel@tonic-gate } 34137c478bd9Sstevel@tonic-gate } 34147c478bd9Sstevel@tonic-gate } 34157c478bd9Sstevel@tonic-gate 34167c478bd9Sstevel@tonic-gate ret = run_method(instance, IM_START, pi); 34177c478bd9Sstevel@tonic-gate 34187c478bd9Sstevel@tonic-gate instance->conn_fd = -1; 34197c478bd9Sstevel@tonic-gate 34207c478bd9Sstevel@tonic-gate if (ret == 0) { 34217c478bd9Sstevel@tonic-gate /* 34227c478bd9Sstevel@tonic-gate * Stop listening for connections now we've fired off the 34237c478bd9Sstevel@tonic-gate * server for a wait type instance. 34247c478bd9Sstevel@tonic-gate */ 34255e2844d4SRenaud Manus (void) poll_bound_fds(instance, B_FALSE, pi->proto); 34267c478bd9Sstevel@tonic-gate } 34277c478bd9Sstevel@tonic-gate } 34287c478bd9Sstevel@tonic-gate 34297c478bd9Sstevel@tonic-gate /* 34307c478bd9Sstevel@tonic-gate * Process any networks requests for each proto for each instance. 34317c478bd9Sstevel@tonic-gate */ 34327c478bd9Sstevel@tonic-gate void 34337c478bd9Sstevel@tonic-gate process_network_events(void) 34347c478bd9Sstevel@tonic-gate { 34357c478bd9Sstevel@tonic-gate instance_t *instance; 34367c478bd9Sstevel@tonic-gate 34377c478bd9Sstevel@tonic-gate for (instance = uu_list_first(instance_list); instance != NULL; 34387c478bd9Sstevel@tonic-gate instance = uu_list_next(instance_list, instance)) { 34397c478bd9Sstevel@tonic-gate basic_cfg_t *cfg; 34407c478bd9Sstevel@tonic-gate proto_info_t *pi; 34417c478bd9Sstevel@tonic-gate 34427c478bd9Sstevel@tonic-gate /* 34437c478bd9Sstevel@tonic-gate * Ignore instances in states that definitely don't have any 34447c478bd9Sstevel@tonic-gate * listening fds. 34457c478bd9Sstevel@tonic-gate */ 34467c478bd9Sstevel@tonic-gate switch (instance->cur_istate) { 34477c478bd9Sstevel@tonic-gate case IIS_ONLINE: 34487c478bd9Sstevel@tonic-gate case IIS_DEGRADED: 34497c478bd9Sstevel@tonic-gate case IIS_IN_REFRESH_METHOD: 34507c478bd9Sstevel@tonic-gate break; 34517c478bd9Sstevel@tonic-gate default: 34527c478bd9Sstevel@tonic-gate continue; 34537c478bd9Sstevel@tonic-gate } 34547c478bd9Sstevel@tonic-gate 34557c478bd9Sstevel@tonic-gate cfg = instance->config->basic; 34567c478bd9Sstevel@tonic-gate 34577c478bd9Sstevel@tonic-gate for (pi = uu_list_first(cfg->proto_list); pi != NULL; 34587c478bd9Sstevel@tonic-gate pi = uu_list_next(cfg->proto_list, pi)) { 3459ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India if (((pi->listen_fd != -1) && 3460ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India isset_pollfd(pi->listen_fd)) || 3461ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India pending_connections(instance, pi)) { 34627c478bd9Sstevel@tonic-gate if (cfg->iswait) { 34637c478bd9Sstevel@tonic-gate process_wait_request(instance, pi); 34647c478bd9Sstevel@tonic-gate } else { 34657c478bd9Sstevel@tonic-gate process_nowait_request(instance, pi); 34667c478bd9Sstevel@tonic-gate } 34677c478bd9Sstevel@tonic-gate } 34687c478bd9Sstevel@tonic-gate } 34697c478bd9Sstevel@tonic-gate } 34707c478bd9Sstevel@tonic-gate } 34717c478bd9Sstevel@tonic-gate 34727c478bd9Sstevel@tonic-gate /* ARGSUSED0 */ 34737c478bd9Sstevel@tonic-gate static void 34747c478bd9Sstevel@tonic-gate sigterm_handler(int sig) 34757c478bd9Sstevel@tonic-gate { 34767c478bd9Sstevel@tonic-gate got_sigterm = B_TRUE; 34777c478bd9Sstevel@tonic-gate } 34787c478bd9Sstevel@tonic-gate 34797c478bd9Sstevel@tonic-gate /* ARGSUSED0 */ 34807c478bd9Sstevel@tonic-gate static void 34817c478bd9Sstevel@tonic-gate sighup_handler(int sig) 34827c478bd9Sstevel@tonic-gate { 34837c478bd9Sstevel@tonic-gate refresh_inetd_requested = B_TRUE; 34847c478bd9Sstevel@tonic-gate } 34857c478bd9Sstevel@tonic-gate 34867c478bd9Sstevel@tonic-gate /* 34877c478bd9Sstevel@tonic-gate * inetd's major work loop. This function sits in poll waiting for events 34887c478bd9Sstevel@tonic-gate * to occur, processing them when they do. The possible events are 34897c478bd9Sstevel@tonic-gate * master restarter requests, expired timer queue timers, stop/refresh signal 34907c478bd9Sstevel@tonic-gate * requests, contract events indicating process termination, stop/refresh 34917c478bd9Sstevel@tonic-gate * requests originating from one of the stop/refresh inetd processes and 34927c478bd9Sstevel@tonic-gate * network events. 34937c478bd9Sstevel@tonic-gate * The loop is exited when a stop request is received and processed, and 34947c478bd9Sstevel@tonic-gate * all the instances have reached a suitable 'stopping' state. 34957c478bd9Sstevel@tonic-gate */ 34967c478bd9Sstevel@tonic-gate static void 34977c478bd9Sstevel@tonic-gate event_loop(void) 34987c478bd9Sstevel@tonic-gate { 34997c478bd9Sstevel@tonic-gate instance_t *instance; 35007c478bd9Sstevel@tonic-gate int timeout; 35017c478bd9Sstevel@tonic-gate 35027c478bd9Sstevel@tonic-gate for (;;) { 35037c478bd9Sstevel@tonic-gate int pret = -1; 35047c478bd9Sstevel@tonic-gate 3505ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India if (tlx_pending_counter != 0) 3506ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India timeout = 0; 3507ca35ed50SYateesh Kumar Vusirika - Sun Microsystems - Bangalore India else 35087c478bd9Sstevel@tonic-gate timeout = iu_earliest_timer(timer_queue); 35097c478bd9Sstevel@tonic-gate 35107c478bd9Sstevel@tonic-gate if (!got_sigterm && !refresh_inetd_requested) { 35117c478bd9Sstevel@tonic-gate pret = poll(poll_fds, num_pollfds, timeout); 35127c478bd9Sstevel@tonic-gate if ((pret == -1) && (errno != EINTR)) { 35137c478bd9Sstevel@tonic-gate error_msg(gettext("poll failure: %s"), 35147c478bd9Sstevel@tonic-gate strerror(errno)); 35157c478bd9Sstevel@tonic-gate continue; 35167c478bd9Sstevel@tonic-gate } 35177c478bd9Sstevel@tonic-gate } 35187c478bd9Sstevel@tonic-gate 35197c478bd9Sstevel@tonic-gate if (got_sigterm) { 35207c478bd9Sstevel@tonic-gate msg_fini(); 35217c478bd9Sstevel@tonic-gate inetd_stop(); 35227c478bd9Sstevel@tonic-gate got_sigterm = B_FALSE; 35237c478bd9Sstevel@tonic-gate goto check_if_stopped; 35247c478bd9Sstevel@tonic-gate } 35257c478bd9Sstevel@tonic-gate 35267c478bd9Sstevel@tonic-gate /* 35277c478bd9Sstevel@tonic-gate * Process any stop/refresh requests from the Unix Domain 35287c478bd9Sstevel@tonic-gate * Socket. 35297c478bd9Sstevel@tonic-gate */ 35307c478bd9Sstevel@tonic-gate if ((pret != -1) && isset_pollfd(uds_fd)) { 35317c478bd9Sstevel@tonic-gate while (process_uds_event() == 0) 35327c478bd9Sstevel@tonic-gate ; 35337c478bd9Sstevel@tonic-gate } 35347c478bd9Sstevel@tonic-gate 35357c478bd9Sstevel@tonic-gate /* 35367c478bd9Sstevel@tonic-gate * Process refresh request. We do this check after the UDS 35377c478bd9Sstevel@tonic-gate * event check above, as it would be wasted processing if we 35387c478bd9Sstevel@tonic-gate * started refreshing inetd based on a SIGHUP, and then were 35397c478bd9Sstevel@tonic-gate * told to shut-down via a UDS event. 35407c478bd9Sstevel@tonic-gate */ 35417c478bd9Sstevel@tonic-gate if (refresh_inetd_requested) { 35427c478bd9Sstevel@tonic-gate refresh_inetd_requested = B_FALSE; 35437c478bd9Sstevel@tonic-gate if (!inetd_stopping) 35447c478bd9Sstevel@tonic-gate inetd_refresh(); 35457c478bd9Sstevel@tonic-gate } 35467c478bd9Sstevel@tonic-gate 35477c478bd9Sstevel@tonic-gate /* 35487c478bd9Sstevel@tonic-gate * We were interrupted by a signal. Don't waste any more 35497c478bd9Sstevel@tonic-gate * time processing a potentially inaccurate poll return. 35507c478bd9Sstevel@tonic-gate */ 35517c478bd9Sstevel@tonic-gate if (pret == -1) 35527c478bd9Sstevel@tonic-gate continue; 35537c478bd9Sstevel@tonic-gate 35547c478bd9Sstevel@tonic-gate /* 35557c478bd9Sstevel@tonic-gate * Process any instance restarter events. 35567c478bd9Sstevel@tonic-gate */ 35577c478bd9Sstevel@tonic-gate if (isset_pollfd(rst_event_pipe[PE_CONSUMER])) { 35587c478bd9Sstevel@tonic-gate while (process_restarter_event() == 0) 35597c478bd9Sstevel@tonic-gate ; 35607c478bd9Sstevel@tonic-gate } 35617c478bd9Sstevel@tonic-gate 35627c478bd9Sstevel@tonic-gate /* 35637c478bd9Sstevel@tonic-gate * Process any expired timers (bind retry, con-rate offline, 35647c478bd9Sstevel@tonic-gate * method timeouts). 35657c478bd9Sstevel@tonic-gate */ 35667c478bd9Sstevel@tonic-gate (void) iu_expire_timers(timer_queue); 35677c478bd9Sstevel@tonic-gate 35687c478bd9Sstevel@tonic-gate process_terminated_methods(); 35697c478bd9Sstevel@tonic-gate 35707c478bd9Sstevel@tonic-gate /* 35717c478bd9Sstevel@tonic-gate * If inetd is stopping, check whether all our managed 35727c478bd9Sstevel@tonic-gate * instances have been stopped and we can return. 35737c478bd9Sstevel@tonic-gate */ 35747c478bd9Sstevel@tonic-gate if (inetd_stopping) { 35757c478bd9Sstevel@tonic-gate check_if_stopped: 35767c478bd9Sstevel@tonic-gate for (instance = uu_list_first(instance_list); 35777c478bd9Sstevel@tonic-gate instance != NULL; 35787c478bd9Sstevel@tonic-gate instance = uu_list_next(instance_list, instance)) { 35797c478bd9Sstevel@tonic-gate if (!instance_stopped(instance)) { 35807c478bd9Sstevel@tonic-gate debug_msg("%s not yet stopped", 35817c478bd9Sstevel@tonic-gate instance->fmri); 35827c478bd9Sstevel@tonic-gate break; 35837c478bd9Sstevel@tonic-gate } 35847c478bd9Sstevel@tonic-gate } 35857c478bd9Sstevel@tonic-gate /* if all instances are stopped, return */ 35867c478bd9Sstevel@tonic-gate if (instance == NULL) 35877c478bd9Sstevel@tonic-gate return; 35887c478bd9Sstevel@tonic-gate } 35897c478bd9Sstevel@tonic-gate 35907c478bd9Sstevel@tonic-gate process_network_events(); 35917c478bd9Sstevel@tonic-gate } 35927c478bd9Sstevel@tonic-gate } 35937c478bd9Sstevel@tonic-gate 35947c478bd9Sstevel@tonic-gate static void 35957c478bd9Sstevel@tonic-gate fini(void) 35967c478bd9Sstevel@tonic-gate { 35977c478bd9Sstevel@tonic-gate method_fini(); 35987c478bd9Sstevel@tonic-gate uds_fini(); 35997c478bd9Sstevel@tonic-gate if (timer_queue != NULL) 36007c478bd9Sstevel@tonic-gate iu_tq_destroy(timer_queue); 3601b823d4c7Sdstaff 36027c478bd9Sstevel@tonic-gate 36037c478bd9Sstevel@tonic-gate /* 3604b823d4c7Sdstaff * We don't bother to undo the restarter interface at all. 3605b823d4c7Sdstaff * Because of quirks in the interface, there is no way to 3606b823d4c7Sdstaff * disconnect from the channel and cause any new events to be 3607b823d4c7Sdstaff * queued. However, any events which are received and not 3608b823d4c7Sdstaff * acknowledged will be re-sent when inetd restarts as long as inetd 3609b823d4c7Sdstaff * uses the same subscriber ID, which it does. 3610b823d4c7Sdstaff * 3611b823d4c7Sdstaff * By keeping the event pipe open but ignoring it, any events which 3612b823d4c7Sdstaff * occur will cause restarter_event_proxy to hang without breaking 3613b823d4c7Sdstaff * anything. 36147c478bd9Sstevel@tonic-gate */ 36157c478bd9Sstevel@tonic-gate 36167c478bd9Sstevel@tonic-gate if (instance_list != NULL) { 36177c478bd9Sstevel@tonic-gate void *cookie = NULL; 36187c478bd9Sstevel@tonic-gate instance_t *inst; 36197c478bd9Sstevel@tonic-gate 36207c478bd9Sstevel@tonic-gate while ((inst = uu_list_teardown(instance_list, &cookie)) != 36217c478bd9Sstevel@tonic-gate NULL) 36227c478bd9Sstevel@tonic-gate destroy_instance(inst); 36237c478bd9Sstevel@tonic-gate uu_list_destroy(instance_list); 36247c478bd9Sstevel@tonic-gate } 36257c478bd9Sstevel@tonic-gate if (instance_pool != NULL) 36267c478bd9Sstevel@tonic-gate uu_list_pool_destroy(instance_pool); 36277c478bd9Sstevel@tonic-gate tlx_fini(); 36287c478bd9Sstevel@tonic-gate config_fini(); 36297c478bd9Sstevel@tonic-gate repval_fini(); 36307c478bd9Sstevel@tonic-gate poll_fini(); 36317c478bd9Sstevel@tonic-gate 36327c478bd9Sstevel@tonic-gate /* Close audit session */ 36337c478bd9Sstevel@tonic-gate (void) adt_end_session(audit_handle); 36347c478bd9Sstevel@tonic-gate } 36357c478bd9Sstevel@tonic-gate 36367c478bd9Sstevel@tonic-gate static int 36377c478bd9Sstevel@tonic-gate init(void) 36387c478bd9Sstevel@tonic-gate { 36397c478bd9Sstevel@tonic-gate int err; 36407c478bd9Sstevel@tonic-gate 36417c478bd9Sstevel@tonic-gate if (repval_init() < 0) 36427c478bd9Sstevel@tonic-gate goto failed; 36437c478bd9Sstevel@tonic-gate 36447c478bd9Sstevel@tonic-gate if (config_init() < 0) 36457c478bd9Sstevel@tonic-gate goto failed; 36467c478bd9Sstevel@tonic-gate 3647eed64e98Sgm209912 refresh_debug_flag(); 3648eed64e98Sgm209912 36497c478bd9Sstevel@tonic-gate if (tlx_init() < 0) 36507c478bd9Sstevel@tonic-gate goto failed; 36517c478bd9Sstevel@tonic-gate 36527c478bd9Sstevel@tonic-gate /* Setup instance list. */ 36537c478bd9Sstevel@tonic-gate if ((instance_pool = uu_list_pool_create("instance_pool", 36547c478bd9Sstevel@tonic-gate sizeof (instance_t), offsetof(instance_t, link), NULL, 36557c478bd9Sstevel@tonic-gate UU_LIST_POOL_DEBUG)) == NULL) { 36567c478bd9Sstevel@tonic-gate error_msg("%s: %s", 36577c478bd9Sstevel@tonic-gate gettext("Failed to create instance pool"), 36587c478bd9Sstevel@tonic-gate uu_strerror(uu_error())); 36597c478bd9Sstevel@tonic-gate goto failed; 36607c478bd9Sstevel@tonic-gate } 36617c478bd9Sstevel@tonic-gate if ((instance_list = uu_list_create(instance_pool, NULL, 0)) == NULL) { 36627c478bd9Sstevel@tonic-gate error_msg("%s: %s", 36637c478bd9Sstevel@tonic-gate gettext("Failed to create instance list"), 36647c478bd9Sstevel@tonic-gate uu_strerror(uu_error())); 36657c478bd9Sstevel@tonic-gate goto failed; 36667c478bd9Sstevel@tonic-gate } 36677c478bd9Sstevel@tonic-gate 36687c478bd9Sstevel@tonic-gate /* 36697c478bd9Sstevel@tonic-gate * Create event pipe to communicate events with the main event 36707c478bd9Sstevel@tonic-gate * loop and add it to the event loop's fdset. 36717c478bd9Sstevel@tonic-gate */ 36727c478bd9Sstevel@tonic-gate if (pipe(rst_event_pipe) < 0) { 36737c478bd9Sstevel@tonic-gate error_msg("pipe: %s", strerror(errno)); 36747c478bd9Sstevel@tonic-gate goto failed; 36757c478bd9Sstevel@tonic-gate } 36767c478bd9Sstevel@tonic-gate /* 36777c478bd9Sstevel@tonic-gate * We only leave the producer end to block on reads/writes as we 36787c478bd9Sstevel@tonic-gate * can't afford to block in the main thread, yet need to in 36797c478bd9Sstevel@tonic-gate * the restarter event thread, so it can sit and wait for an 36807c478bd9Sstevel@tonic-gate * acknowledgement to be written to the pipe. 36817c478bd9Sstevel@tonic-gate */ 36827c478bd9Sstevel@tonic-gate disable_blocking(rst_event_pipe[PE_CONSUMER]); 36837c478bd9Sstevel@tonic-gate if ((set_pollfd(rst_event_pipe[PE_CONSUMER], POLLIN)) == -1) 36847c478bd9Sstevel@tonic-gate goto failed; 36857c478bd9Sstevel@tonic-gate 36867c478bd9Sstevel@tonic-gate /* 36877c478bd9Sstevel@tonic-gate * Register with master restarter for managed service events. This 36887c478bd9Sstevel@tonic-gate * will fail, amongst other reasons, if inetd is already running. 36897c478bd9Sstevel@tonic-gate */ 36907c478bd9Sstevel@tonic-gate if ((err = restarter_bind_handle(RESTARTER_EVENT_VERSION, 36917c478bd9Sstevel@tonic-gate INETD_INSTANCE_FMRI, restarter_event_proxy, 0, 36927c478bd9Sstevel@tonic-gate &rst_event_handle)) != 0) { 36937c478bd9Sstevel@tonic-gate error_msg(gettext( 36947c478bd9Sstevel@tonic-gate "Failed to register for restarter events: %s"), 36957c478bd9Sstevel@tonic-gate strerror(err)); 36967c478bd9Sstevel@tonic-gate goto failed; 36977c478bd9Sstevel@tonic-gate } 36987c478bd9Sstevel@tonic-gate 36997c478bd9Sstevel@tonic-gate if (contract_init() < 0) 37007c478bd9Sstevel@tonic-gate goto failed; 37017c478bd9Sstevel@tonic-gate 37027c478bd9Sstevel@tonic-gate if ((timer_queue = iu_tq_create()) == NULL) { 37037c478bd9Sstevel@tonic-gate error_msg(gettext("Failed to create timer queue.")); 37047c478bd9Sstevel@tonic-gate goto failed; 37057c478bd9Sstevel@tonic-gate } 37067c478bd9Sstevel@tonic-gate 37077c478bd9Sstevel@tonic-gate if (uds_init() < 0) 37087c478bd9Sstevel@tonic-gate goto failed; 37097c478bd9Sstevel@tonic-gate 37107c478bd9Sstevel@tonic-gate if (method_init() < 0) 37117c478bd9Sstevel@tonic-gate goto failed; 37127c478bd9Sstevel@tonic-gate 37137c478bd9Sstevel@tonic-gate /* Initialize auditing session */ 37147c478bd9Sstevel@tonic-gate if (adt_start_session(&audit_handle, NULL, ADT_USE_PROC_DATA) != 0) { 37157c478bd9Sstevel@tonic-gate error_msg(gettext("Unable to start audit session")); 37167c478bd9Sstevel@tonic-gate } 37177c478bd9Sstevel@tonic-gate 37187c478bd9Sstevel@tonic-gate /* 37197c478bd9Sstevel@tonic-gate * Initialize signal dispositions/masks 37207c478bd9Sstevel@tonic-gate */ 37217c478bd9Sstevel@tonic-gate (void) sigset(SIGHUP, sighup_handler); 37227c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, sigterm_handler); 37237c478bd9Sstevel@tonic-gate (void) sigignore(SIGINT); 37247c478bd9Sstevel@tonic-gate 37257c478bd9Sstevel@tonic-gate return (0); 37267c478bd9Sstevel@tonic-gate 37277c478bd9Sstevel@tonic-gate failed: 37287c478bd9Sstevel@tonic-gate fini(); 37297c478bd9Sstevel@tonic-gate return (-1); 37307c478bd9Sstevel@tonic-gate } 37317c478bd9Sstevel@tonic-gate 37327c478bd9Sstevel@tonic-gate static int 37337c478bd9Sstevel@tonic-gate start_method(void) 37347c478bd9Sstevel@tonic-gate { 37357c478bd9Sstevel@tonic-gate int i; 37367c478bd9Sstevel@tonic-gate int pipe_fds[2]; 37377c478bd9Sstevel@tonic-gate int child; 37387c478bd9Sstevel@tonic-gate 37397c478bd9Sstevel@tonic-gate /* Create pipe for child to notify parent of initialization success. */ 37407c478bd9Sstevel@tonic-gate if (pipe(pipe_fds) < 0) { 3741eed64e98Sgm209912 error_msg("pipe: %s", strerror(errno)); 37427c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_OTHER); 37437c478bd9Sstevel@tonic-gate } 37447c478bd9Sstevel@tonic-gate 37457c478bd9Sstevel@tonic-gate if ((child = fork()) == -1) { 3746eed64e98Sgm209912 error_msg("fork: %s", strerror(errno)); 37477c478bd9Sstevel@tonic-gate (void) close(pipe_fds[PE_CONSUMER]); 37487c478bd9Sstevel@tonic-gate (void) close(pipe_fds[PE_PRODUCER]); 37497c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_OTHER); 37507c478bd9Sstevel@tonic-gate } else if (child > 0) { /* parent */ 37517c478bd9Sstevel@tonic-gate 37527c478bd9Sstevel@tonic-gate /* Wait on child to return success of initialization. */ 37537c478bd9Sstevel@tonic-gate (void) close(pipe_fds[PE_PRODUCER]); 37547c478bd9Sstevel@tonic-gate if ((safe_read(pipe_fds[PE_CONSUMER], &i, sizeof (i)) != 0) || 37557c478bd9Sstevel@tonic-gate (i < 0)) { 37567c478bd9Sstevel@tonic-gate error_msg(gettext( 37577c478bd9Sstevel@tonic-gate "Initialization failed, unable to start")); 37587c478bd9Sstevel@tonic-gate (void) close(pipe_fds[PE_CONSUMER]); 37597c478bd9Sstevel@tonic-gate /* 37607c478bd9Sstevel@tonic-gate * Batch all initialization errors as 'other' errors, 37617c478bd9Sstevel@tonic-gate * resulting in retries being attempted. 37627c478bd9Sstevel@tonic-gate */ 37637c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_OTHER); 37647c478bd9Sstevel@tonic-gate } else { 37657c478bd9Sstevel@tonic-gate (void) close(pipe_fds[PE_CONSUMER]); 37667c478bd9Sstevel@tonic-gate return (SMF_EXIT_OK); 37677c478bd9Sstevel@tonic-gate } 37687c478bd9Sstevel@tonic-gate } else { /* child */ 37697c478bd9Sstevel@tonic-gate /* 37707c478bd9Sstevel@tonic-gate * Perform initialization and return success code down 37717c478bd9Sstevel@tonic-gate * the pipe. 37727c478bd9Sstevel@tonic-gate */ 37737c478bd9Sstevel@tonic-gate (void) close(pipe_fds[PE_CONSUMER]); 37747c478bd9Sstevel@tonic-gate i = init(); 37757c478bd9Sstevel@tonic-gate if ((safe_write(pipe_fds[PE_PRODUCER], &i, sizeof (i)) < 0) || 37767c478bd9Sstevel@tonic-gate (i < 0)) { 37777c478bd9Sstevel@tonic-gate error_msg(gettext("pipe write failure: %s"), 37787c478bd9Sstevel@tonic-gate strerror(errno)); 37797c478bd9Sstevel@tonic-gate exit(1); 37807c478bd9Sstevel@tonic-gate } 37817c478bd9Sstevel@tonic-gate (void) close(pipe_fds[PE_PRODUCER]); 37827c478bd9Sstevel@tonic-gate 37837c478bd9Sstevel@tonic-gate (void) setsid(); 37847c478bd9Sstevel@tonic-gate 37857c478bd9Sstevel@tonic-gate /* 37867c478bd9Sstevel@tonic-gate * Log a message if the configuration file has changed since 37877c478bd9Sstevel@tonic-gate * inetconv was last run. 37887c478bd9Sstevel@tonic-gate */ 37897c478bd9Sstevel@tonic-gate check_conf_file(); 37907c478bd9Sstevel@tonic-gate 37917c478bd9Sstevel@tonic-gate event_loop(); 37927c478bd9Sstevel@tonic-gate 37937c478bd9Sstevel@tonic-gate fini(); 37947c478bd9Sstevel@tonic-gate debug_msg("inetd stopped"); 37957c478bd9Sstevel@tonic-gate msg_fini(); 37967c478bd9Sstevel@tonic-gate exit(0); 37977c478bd9Sstevel@tonic-gate } 37987c478bd9Sstevel@tonic-gate /* NOTREACHED */ 37997c478bd9Sstevel@tonic-gate } 38007c478bd9Sstevel@tonic-gate 38017c478bd9Sstevel@tonic-gate /* 38027c478bd9Sstevel@tonic-gate * When inetd is run from outside the SMF, this message is output to provide 38037c478bd9Sstevel@tonic-gate * the person invoking inetd with further information that will help them 38047c478bd9Sstevel@tonic-gate * understand how to start and stop inetd, and to achieve the other 38057c478bd9Sstevel@tonic-gate * behaviors achievable with the legacy inetd command line interface, if 38067c478bd9Sstevel@tonic-gate * it is possible. 38077c478bd9Sstevel@tonic-gate */ 38087c478bd9Sstevel@tonic-gate static void 38097c478bd9Sstevel@tonic-gate legacy_usage(void) 38107c478bd9Sstevel@tonic-gate { 38117c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 38127c478bd9Sstevel@tonic-gate "inetd is now an smf(5) managed service and can no longer be run " 38137c478bd9Sstevel@tonic-gate "from the\n" 38147c478bd9Sstevel@tonic-gate "command line. To enable or disable inetd refer to svcadm(1M) on\n" 38157c478bd9Sstevel@tonic-gate "how to enable \"%s\", the inetd instance.\n" 38167c478bd9Sstevel@tonic-gate "\n" 38177c478bd9Sstevel@tonic-gate "The traditional inetd command line option mappings are:\n" 38187c478bd9Sstevel@tonic-gate "\t-d : there is no supported debug output\n" 38197c478bd9Sstevel@tonic-gate "\t-s : inetd is only runnable from within the SMF\n" 38207c478bd9Sstevel@tonic-gate "\t-t : See inetadm(1M) on how to enable TCP tracing\n" 38217c478bd9Sstevel@tonic-gate "\t-r : See inetadm(1M) on how to set a failure rate\n" 38227c478bd9Sstevel@tonic-gate "\n" 38237c478bd9Sstevel@tonic-gate "To specify an alternative configuration file see svccfg(1M)\n" 38247c478bd9Sstevel@tonic-gate "for how to modify the \"%s/%s\" string type property of\n" 38257c478bd9Sstevel@tonic-gate "the inetd instance, and modify it according to the syntax:\n" 38267c478bd9Sstevel@tonic-gate "\"%s [alt_config_file] %%m\".\n" 38277c478bd9Sstevel@tonic-gate "\n" 38287c478bd9Sstevel@tonic-gate "For further information on inetd see inetd(1M).\n", 38297c478bd9Sstevel@tonic-gate INETD_INSTANCE_FMRI, START_METHOD_ARG, SCF_PROPERTY_EXEC, 38307c478bd9Sstevel@tonic-gate INETD_PATH); 38317c478bd9Sstevel@tonic-gate } 38327c478bd9Sstevel@tonic-gate 38337c478bd9Sstevel@tonic-gate /* 38347c478bd9Sstevel@tonic-gate * Usage message printed out for usage errors when running under the SMF. 38357c478bd9Sstevel@tonic-gate */ 38367c478bd9Sstevel@tonic-gate static void 38377c478bd9Sstevel@tonic-gate smf_usage(const char *arg0) 38387c478bd9Sstevel@tonic-gate { 38397c478bd9Sstevel@tonic-gate error_msg("Usage: %s [alt_conf_file] %s|%s|%s", arg0, START_METHOD_ARG, 38407c478bd9Sstevel@tonic-gate STOP_METHOD_ARG, REFRESH_METHOD_ARG); 38417c478bd9Sstevel@tonic-gate } 38427c478bd9Sstevel@tonic-gate 38437c478bd9Sstevel@tonic-gate /* 38447c478bd9Sstevel@tonic-gate * Returns B_TRUE if we're being run from within the SMF, else B_FALSE. 38457c478bd9Sstevel@tonic-gate */ 38467c478bd9Sstevel@tonic-gate static boolean_t 38477c478bd9Sstevel@tonic-gate run_through_smf(void) 38487c478bd9Sstevel@tonic-gate { 38497c478bd9Sstevel@tonic-gate char *fmri; 38507c478bd9Sstevel@tonic-gate 38517c478bd9Sstevel@tonic-gate /* 38527c478bd9Sstevel@tonic-gate * check if the instance fmri environment variable has been set by 38537c478bd9Sstevel@tonic-gate * our restarter. 38547c478bd9Sstevel@tonic-gate */ 38557c478bd9Sstevel@tonic-gate return (((fmri = getenv("SMF_FMRI")) != NULL) && 38567c478bd9Sstevel@tonic-gate (strcmp(fmri, INETD_INSTANCE_FMRI) == 0)); 38577c478bd9Sstevel@tonic-gate } 38587c478bd9Sstevel@tonic-gate 38597c478bd9Sstevel@tonic-gate int 38607c478bd9Sstevel@tonic-gate main(int argc, char *argv[]) 38617c478bd9Sstevel@tonic-gate { 38627c478bd9Sstevel@tonic-gate char *method; 38637c478bd9Sstevel@tonic-gate int ret; 38647c478bd9Sstevel@tonic-gate 38657c478bd9Sstevel@tonic-gate #if !defined(TEXT_DOMAIN) 38667c478bd9Sstevel@tonic-gate #define TEXT_DOMAIN "SYS_TEST" 38677c478bd9Sstevel@tonic-gate #endif 38687c478bd9Sstevel@tonic-gate (void) textdomain(TEXT_DOMAIN); 38697c478bd9Sstevel@tonic-gate (void) setlocale(LC_ALL, ""); 38707c478bd9Sstevel@tonic-gate 38717c478bd9Sstevel@tonic-gate if (!run_through_smf()) { 38727c478bd9Sstevel@tonic-gate legacy_usage(); 38737c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_NOSMF); 38747c478bd9Sstevel@tonic-gate } 38757c478bd9Sstevel@tonic-gate 38767c478bd9Sstevel@tonic-gate msg_init(); /* setup logging */ 38777c478bd9Sstevel@tonic-gate 3878004388ebScasper (void) enable_extended_FILE_stdio(-1, -1); 3879004388ebScasper 38807c478bd9Sstevel@tonic-gate /* inetd invocation syntax is inetd [alt_conf_file] method_name */ 38817c478bd9Sstevel@tonic-gate 38827c478bd9Sstevel@tonic-gate switch (argc) { 38837c478bd9Sstevel@tonic-gate case 2: 38847c478bd9Sstevel@tonic-gate method = argv[1]; 38857c478bd9Sstevel@tonic-gate break; 38867c478bd9Sstevel@tonic-gate case 3: 38877c478bd9Sstevel@tonic-gate conf_file = argv[1]; 38887c478bd9Sstevel@tonic-gate method = argv[2]; 38897c478bd9Sstevel@tonic-gate break; 38907c478bd9Sstevel@tonic-gate default: 38917c478bd9Sstevel@tonic-gate smf_usage(argv[0]); 38927c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_CONFIG); 38937c478bd9Sstevel@tonic-gate 38947c478bd9Sstevel@tonic-gate } 38957c478bd9Sstevel@tonic-gate 38967c478bd9Sstevel@tonic-gate if (strcmp(method, START_METHOD_ARG) == 0) { 38977c478bd9Sstevel@tonic-gate ret = start_method(); 38987c478bd9Sstevel@tonic-gate } else if (strcmp(method, STOP_METHOD_ARG) == 0) { 38997c478bd9Sstevel@tonic-gate ret = stop_method(); 39007c478bd9Sstevel@tonic-gate } else if (strcmp(method, REFRESH_METHOD_ARG) == 0) { 39017c478bd9Sstevel@tonic-gate ret = refresh_method(); 39027c478bd9Sstevel@tonic-gate } else { 39037c478bd9Sstevel@tonic-gate smf_usage(argv[0]); 39047c478bd9Sstevel@tonic-gate return (SMF_EXIT_ERR_CONFIG); 39057c478bd9Sstevel@tonic-gate } 39067c478bd9Sstevel@tonic-gate 39077c478bd9Sstevel@tonic-gate return (ret); 39087c478bd9Sstevel@tonic-gate } 3909