xref: /onnv-gate/usr/src/lib/librestart/common/librestart.c (revision 863:56b591ba4423)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
50Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
60Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
70Sstevel@tonic-gate  * with the License.
80Sstevel@tonic-gate  *
90Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
100Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
110Sstevel@tonic-gate  * See the License for the specific language governing permissions
120Sstevel@tonic-gate  * and limitations under the License.
130Sstevel@tonic-gate  *
140Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
150Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
160Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
170Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
180Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
190Sstevel@tonic-gate  *
200Sstevel@tonic-gate  * CDDL HEADER END
210Sstevel@tonic-gate  */
220Sstevel@tonic-gate /*
23759Sdstaff  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
280Sstevel@tonic-gate 
290Sstevel@tonic-gate #include <librestart.h>
300Sstevel@tonic-gate #include <librestart_priv.h>
310Sstevel@tonic-gate #include <libscf.h>
320Sstevel@tonic-gate #include <libscf_priv.h>
330Sstevel@tonic-gate 
340Sstevel@tonic-gate #include <assert.h>
350Sstevel@tonic-gate #include <ctype.h>
360Sstevel@tonic-gate #include <dlfcn.h>
370Sstevel@tonic-gate #include <errno.h>
380Sstevel@tonic-gate #include <exec_attr.h>
390Sstevel@tonic-gate #include <grp.h>
400Sstevel@tonic-gate #include <libsysevent.h>
410Sstevel@tonic-gate #include <libuutil.h>
420Sstevel@tonic-gate #include <limits.h>
430Sstevel@tonic-gate #include <link.h>
440Sstevel@tonic-gate #include <malloc.h>
450Sstevel@tonic-gate #include <pool.h>
460Sstevel@tonic-gate #include <priv.h>
470Sstevel@tonic-gate #include <project.h>
480Sstevel@tonic-gate #include <pthread.h>
490Sstevel@tonic-gate #include <pwd.h>
500Sstevel@tonic-gate #include <secdb.h>
510Sstevel@tonic-gate #include <signal.h>
520Sstevel@tonic-gate #include <stdlib.h>
530Sstevel@tonic-gate #include <string.h>
540Sstevel@tonic-gate #include <syslog.h>
550Sstevel@tonic-gate #include <sys/corectl.h>
560Sstevel@tonic-gate #include <sys/machelf.h>
570Sstevel@tonic-gate #include <sys/task.h>
580Sstevel@tonic-gate #include <sys/types.h>
590Sstevel@tonic-gate #include <time.h>
600Sstevel@tonic-gate #include <unistd.h>
610Sstevel@tonic-gate 
620Sstevel@tonic-gate #define	walkcontext	_walkcontext
630Sstevel@tonic-gate #include <ucontext.h>
640Sstevel@tonic-gate 
650Sstevel@tonic-gate #define	min(a, b)		((a) > (b) ? (b) : (a))
660Sstevel@tonic-gate 
670Sstevel@tonic-gate #define	MKW_TRUE	":true"
680Sstevel@tonic-gate #define	MKW_KILL	":kill"
690Sstevel@tonic-gate #define	MKW_KILL_PROC	":kill_process"
700Sstevel@tonic-gate 
710Sstevel@tonic-gate #define	ALLOCFAIL	((char *)"Allocation failure.")
720Sstevel@tonic-gate #define	RCBROKEN	((char *)"Repository connection broken.")
730Sstevel@tonic-gate 
740Sstevel@tonic-gate #define	MAX_COMMIT_RETRIES		20
750Sstevel@tonic-gate #define	MAX_COMMIT_RETRY_INT		(5 * 1000000)	/* 5 seconds */
760Sstevel@tonic-gate #define	INITIAL_COMMIT_RETRY_INT	(10000)		/* 1/100th second */
770Sstevel@tonic-gate 
780Sstevel@tonic-gate /*
790Sstevel@tonic-gate  * bad_fail() catches bugs in this and lower layers by reporting supposedly
800Sstevel@tonic-gate  * impossible function failures.  The NDEBUG case keeps the strings out of the
810Sstevel@tonic-gate  * library but still calls abort() so we can root-cause from the coredump.
820Sstevel@tonic-gate  */
830Sstevel@tonic-gate #ifndef NDEBUG
840Sstevel@tonic-gate #define	bad_fail(func, err)	{					\
850Sstevel@tonic-gate 	(void) fprintf(stderr,						\
860Sstevel@tonic-gate 	    "At %s:%d, %s() failed with unexpected error %d.  Aborting.\n", \
870Sstevel@tonic-gate 	    __FILE__, __LINE__, (func), (err));				\
880Sstevel@tonic-gate 	abort();							\
890Sstevel@tonic-gate }
900Sstevel@tonic-gate #else
910Sstevel@tonic-gate #define	bad_fail(func, err)	abort()
920Sstevel@tonic-gate #endif
930Sstevel@tonic-gate 
940Sstevel@tonic-gate struct restarter_event_handle {
950Sstevel@tonic-gate 	char				*reh_restarter_name;
960Sstevel@tonic-gate 	char				*reh_delegate_channel_name;
970Sstevel@tonic-gate 	evchan_t			*reh_delegate_channel;
980Sstevel@tonic-gate 	char				*reh_delegate_subscriber_id;
990Sstevel@tonic-gate 	char				*reh_master_channel_name;
1000Sstevel@tonic-gate 	evchan_t			*reh_master_channel;
1010Sstevel@tonic-gate 	char				*reh_master_subscriber_id;
1020Sstevel@tonic-gate 	int				(*reh_handler)(restarter_event_t *);
1030Sstevel@tonic-gate };
1040Sstevel@tonic-gate 
1050Sstevel@tonic-gate struct restarter_event {
1060Sstevel@tonic-gate 	sysevent_t			*re_sysevent;
1070Sstevel@tonic-gate 	restarter_event_type_t		re_type;
1080Sstevel@tonic-gate 	char				*re_instance_name;
1090Sstevel@tonic-gate 	restarter_event_handle_t	*re_event_handle;
1100Sstevel@tonic-gate 	restarter_instance_state_t	re_state;
1110Sstevel@tonic-gate 	restarter_instance_state_t	re_next_state;
1120Sstevel@tonic-gate };
1130Sstevel@tonic-gate 
1140Sstevel@tonic-gate static const char * const allocfail = "Allocation failure.\n";
1150Sstevel@tonic-gate static const char * const rcbroken = "Repository connection broken.\n";
1160Sstevel@tonic-gate 
1170Sstevel@tonic-gate static int method_context_safety = 0;	/* Can safely call pools/projects. */
1180Sstevel@tonic-gate 
1190Sstevel@tonic-gate int ndebug = 1;
1200Sstevel@tonic-gate 
1210Sstevel@tonic-gate static void
1220Sstevel@tonic-gate free_restarter_event_handle(struct restarter_event_handle *h)
1230Sstevel@tonic-gate {
1240Sstevel@tonic-gate 	if (h == NULL)
1250Sstevel@tonic-gate 		return;
1260Sstevel@tonic-gate 
1270Sstevel@tonic-gate 	/*
1280Sstevel@tonic-gate 	 * Just free the memory -- don't unbind the sysevent handle,
1290Sstevel@tonic-gate 	 * as otherwise events may be lost if this is just a restarter
1300Sstevel@tonic-gate 	 * restart.
1310Sstevel@tonic-gate 	 */
1320Sstevel@tonic-gate 
1330Sstevel@tonic-gate 	if (h->reh_restarter_name != NULL)
1340Sstevel@tonic-gate 		free(h->reh_restarter_name);
1350Sstevel@tonic-gate 	if (h->reh_delegate_channel_name != NULL)
1360Sstevel@tonic-gate 		free(h->reh_delegate_channel_name);
1370Sstevel@tonic-gate 	if (h->reh_delegate_subscriber_id != NULL)
1380Sstevel@tonic-gate 		free(h->reh_delegate_subscriber_id);
1390Sstevel@tonic-gate 	if (h->reh_master_channel_name != NULL)
1400Sstevel@tonic-gate 		free(h->reh_master_channel_name);
1410Sstevel@tonic-gate 	if (h->reh_master_subscriber_id != NULL)
1420Sstevel@tonic-gate 		free(h->reh_master_subscriber_id);
1430Sstevel@tonic-gate 
1440Sstevel@tonic-gate 	free(h);
1450Sstevel@tonic-gate }
1460Sstevel@tonic-gate 
1470Sstevel@tonic-gate static const char *
1480Sstevel@tonic-gate last_part(const char *fmri)
1490Sstevel@tonic-gate {
1500Sstevel@tonic-gate 	char *last_part;
1510Sstevel@tonic-gate 
1520Sstevel@tonic-gate 	last_part = strrchr(fmri, '/');
1530Sstevel@tonic-gate 	last_part++;
1540Sstevel@tonic-gate 	assert(last_part != NULL);
1550Sstevel@tonic-gate 
1560Sstevel@tonic-gate 	return (last_part);
1570Sstevel@tonic-gate }
1580Sstevel@tonic-gate 
1590Sstevel@tonic-gate char *
1600Sstevel@tonic-gate _restarter_get_channel_name(const char *fmri, int type)
1610Sstevel@tonic-gate {
1620Sstevel@tonic-gate 	const char *name;
1630Sstevel@tonic-gate 	char *chan_name = malloc(MAX_CHNAME_LEN);
1640Sstevel@tonic-gate 	char prefix_name[3];
1650Sstevel@tonic-gate 
1660Sstevel@tonic-gate 	if (chan_name == NULL)
1670Sstevel@tonic-gate 		return (NULL);
1680Sstevel@tonic-gate 
1690Sstevel@tonic-gate 	if (type == RESTARTER_CHANNEL_DELEGATE)
1700Sstevel@tonic-gate 		(void) strcpy(prefix_name, "d_");
1710Sstevel@tonic-gate 	else if (type == RESTARTER_CHANNEL_MASTER)
1720Sstevel@tonic-gate 		(void) strcpy(prefix_name, "m_");
1730Sstevel@tonic-gate 	else {
1740Sstevel@tonic-gate 		free(chan_name);
1750Sstevel@tonic-gate 		return (NULL);
1760Sstevel@tonic-gate 	}
1770Sstevel@tonic-gate 
1780Sstevel@tonic-gate 	name = last_part(fmri);
1790Sstevel@tonic-gate 
1800Sstevel@tonic-gate 	/*
1810Sstevel@tonic-gate 	 * Should check for [a-z],[A-Z],[0-9],.,_,-,:
1820Sstevel@tonic-gate 	 */
1830Sstevel@tonic-gate 
1840Sstevel@tonic-gate 	if (snprintf(chan_name, MAX_CHNAME_LEN, "com.sun:scf:%s%s",
1850Sstevel@tonic-gate 	    prefix_name, name) > MAX_CHNAME_LEN) {
1860Sstevel@tonic-gate 		free(chan_name);
1870Sstevel@tonic-gate 		return (NULL);
1880Sstevel@tonic-gate 	}
1890Sstevel@tonic-gate 
1900Sstevel@tonic-gate 	return (chan_name);
1910Sstevel@tonic-gate }
1920Sstevel@tonic-gate 
1930Sstevel@tonic-gate int
1940Sstevel@tonic-gate cb(sysevent_t *syse, void *cookie)
1950Sstevel@tonic-gate {
1960Sstevel@tonic-gate 	restarter_event_handle_t *h = (restarter_event_handle_t *)cookie;
1970Sstevel@tonic-gate 	restarter_event_t *e;
1980Sstevel@tonic-gate 	nvlist_t *attr_list = NULL;
1990Sstevel@tonic-gate 	int ret = 0;
2000Sstevel@tonic-gate 
2010Sstevel@tonic-gate 	e = uu_zalloc(sizeof (restarter_event_t));
2020Sstevel@tonic-gate 	if (e == NULL)
2030Sstevel@tonic-gate 		uu_die(allocfail);
2040Sstevel@tonic-gate 	e->re_event_handle = h;
2050Sstevel@tonic-gate 	e->re_sysevent = syse;
2060Sstevel@tonic-gate 
2070Sstevel@tonic-gate 	if (sysevent_get_attr_list(syse, &attr_list) != 0)
2080Sstevel@tonic-gate 		uu_die(allocfail);
2090Sstevel@tonic-gate 
2100Sstevel@tonic-gate 	if ((nvlist_lookup_uint32(attr_list, RESTARTER_NAME_TYPE,
2110Sstevel@tonic-gate 	    &(e->re_type)) != 0) ||
2120Sstevel@tonic-gate 	    (nvlist_lookup_string(attr_list,
2130Sstevel@tonic-gate 	    RESTARTER_NAME_INSTANCE, &(e->re_instance_name)) != 0)) {
2140Sstevel@tonic-gate 		uu_warn("%s: Can't decode nvlist for event %p\n",
2150Sstevel@tonic-gate 		    h->reh_restarter_name, (void *)syse);
2160Sstevel@tonic-gate 
2170Sstevel@tonic-gate 		ret = 0;
2180Sstevel@tonic-gate 	} else {
2190Sstevel@tonic-gate 		ret = h->reh_handler(e);
2200Sstevel@tonic-gate 	}
2210Sstevel@tonic-gate 
2220Sstevel@tonic-gate 	uu_free(e);
2230Sstevel@tonic-gate 	nvlist_free(attr_list);
2240Sstevel@tonic-gate 	return (ret);
2250Sstevel@tonic-gate }
2260Sstevel@tonic-gate 
2270Sstevel@tonic-gate /*
2280Sstevel@tonic-gate  * restarter_bind_handle(uint32_t, char *, int (*)(restarter_event_t *), int,
2290Sstevel@tonic-gate  *     restarter_event_handle_t **)
2300Sstevel@tonic-gate  *
2310Sstevel@tonic-gate  * Bind to a delegated restarter event channel.
2320Sstevel@tonic-gate  * Each delegated restarter gets its own channel for resource management.
2330Sstevel@tonic-gate  *
2340Sstevel@tonic-gate  * Returns 0 on success or
2350Sstevel@tonic-gate  *   ENOTSUP	version mismatch
2360Sstevel@tonic-gate  *   EINVAL	restarter_name or event_handle is NULL
2370Sstevel@tonic-gate  *   ENOMEM	out of memory, too many channels, or too many subscriptions
2380Sstevel@tonic-gate  *   EBUSY	sysevent_evc_bind() could not establish binding
2390Sstevel@tonic-gate  *   EFAULT	internal sysevent_evc_bind()/sysevent_evc_subscribe() error
2400Sstevel@tonic-gate  *   EMFILE	out of file descriptors
2410Sstevel@tonic-gate  *   EPERM	insufficient privilege for sysevent_evc_bind()
2420Sstevel@tonic-gate  *   EEXIST	already subscribed
2430Sstevel@tonic-gate  */
2440Sstevel@tonic-gate int
2450Sstevel@tonic-gate restarter_bind_handle(uint32_t version, const char *restarter_name,
2460Sstevel@tonic-gate     int (*event_handler)(restarter_event_t *), int flags,
2470Sstevel@tonic-gate     restarter_event_handle_t **rehp)
2480Sstevel@tonic-gate {
2490Sstevel@tonic-gate 	restarter_event_handle_t *h;
2500Sstevel@tonic-gate 	size_t sz;
2510Sstevel@tonic-gate 	int err;
2520Sstevel@tonic-gate 
2530Sstevel@tonic-gate 	if (version != RESTARTER_EVENT_VERSION)
2540Sstevel@tonic-gate 		return (ENOTSUP);
2550Sstevel@tonic-gate 
2560Sstevel@tonic-gate 	if (restarter_name == NULL || event_handler == NULL)
2570Sstevel@tonic-gate 		return (EINVAL);
2580Sstevel@tonic-gate 
2590Sstevel@tonic-gate 	if (flags & RESTARTER_FLAG_DEBUG)
2600Sstevel@tonic-gate 		ndebug++;
2610Sstevel@tonic-gate 
2620Sstevel@tonic-gate 	if ((h = uu_zalloc(sizeof (restarter_event_handle_t))) == NULL)
2630Sstevel@tonic-gate 		return (ENOMEM);
2640Sstevel@tonic-gate 
2650Sstevel@tonic-gate 	h->reh_delegate_subscriber_id = malloc(MAX_SUBID_LEN);
2660Sstevel@tonic-gate 	h->reh_master_subscriber_id = malloc(MAX_SUBID_LEN);
2670Sstevel@tonic-gate 	h->reh_restarter_name = strdup(restarter_name);
2680Sstevel@tonic-gate 	if (h->reh_delegate_subscriber_id == NULL ||
2690Sstevel@tonic-gate 	    h->reh_master_subscriber_id == NULL ||
2700Sstevel@tonic-gate 	    h->reh_restarter_name == NULL) {
2710Sstevel@tonic-gate 		free_restarter_event_handle(h);
2720Sstevel@tonic-gate 		return (ENOMEM);
2730Sstevel@tonic-gate 	}
2740Sstevel@tonic-gate 
2750Sstevel@tonic-gate 	sz = strlcpy(h->reh_delegate_subscriber_id, "del", MAX_SUBID_LEN);
2760Sstevel@tonic-gate 	assert(sz < MAX_SUBID_LEN);
2770Sstevel@tonic-gate 	sz = strlcpy(h->reh_master_subscriber_id, "master", MAX_SUBID_LEN);
2780Sstevel@tonic-gate 	assert(sz < MAX_SUBID_LEN);
2790Sstevel@tonic-gate 
2800Sstevel@tonic-gate 	h->reh_delegate_channel_name =
2810Sstevel@tonic-gate 	    _restarter_get_channel_name(restarter_name,
2820Sstevel@tonic-gate 	    RESTARTER_CHANNEL_DELEGATE);
2830Sstevel@tonic-gate 	h->reh_master_channel_name =
2840Sstevel@tonic-gate 	    _restarter_get_channel_name(restarter_name,
2850Sstevel@tonic-gate 	    RESTARTER_CHANNEL_MASTER);
2860Sstevel@tonic-gate 
2870Sstevel@tonic-gate 	if (h->reh_delegate_channel_name == NULL ||
2880Sstevel@tonic-gate 	    h->reh_master_channel_name == NULL) {
2890Sstevel@tonic-gate 		free_restarter_event_handle(h);
2900Sstevel@tonic-gate 		return (ENOMEM);
2910Sstevel@tonic-gate 	}
2920Sstevel@tonic-gate 
2930Sstevel@tonic-gate 	if (sysevent_evc_bind(h->reh_delegate_channel_name,
2940Sstevel@tonic-gate 	    &h->reh_delegate_channel, EVCH_CREAT|EVCH_HOLD_PEND) != 0) {
2950Sstevel@tonic-gate 		err = errno;
2960Sstevel@tonic-gate 		assert(err != EINVAL);
2970Sstevel@tonic-gate 		assert(err != ENOENT);
2980Sstevel@tonic-gate 		free_restarter_event_handle(h);
2990Sstevel@tonic-gate 		return (err);
3000Sstevel@tonic-gate 	}
3010Sstevel@tonic-gate 
3020Sstevel@tonic-gate 	if (sysevent_evc_bind(h->reh_master_channel_name,
3030Sstevel@tonic-gate 	    &h->reh_master_channel, EVCH_CREAT|EVCH_HOLD_PEND) != 0) {
3040Sstevel@tonic-gate 		err = errno;
3050Sstevel@tonic-gate 		assert(err != EINVAL);
3060Sstevel@tonic-gate 		assert(err != ENOENT);
3070Sstevel@tonic-gate 		free_restarter_event_handle(h);
3080Sstevel@tonic-gate 		return (err);
3090Sstevel@tonic-gate 	}
3100Sstevel@tonic-gate 
3110Sstevel@tonic-gate 	h->reh_handler = event_handler;
3120Sstevel@tonic-gate 
3130Sstevel@tonic-gate 	assert(strlen(restarter_name) <= MAX_CLASS_LEN - 1);
3140Sstevel@tonic-gate 	assert(strlen(h->reh_delegate_subscriber_id) <= MAX_SUBID_LEN - 1);
3150Sstevel@tonic-gate 	assert(strlen(h->reh_master_subscriber_id) <= MAX_SUBID_LEN - 1);
3160Sstevel@tonic-gate 
3170Sstevel@tonic-gate 	if (sysevent_evc_subscribe(h->reh_delegate_channel,
3180Sstevel@tonic-gate 	    h->reh_delegate_subscriber_id, EC_ALL, cb, h, EVCH_SUB_KEEP) != 0) {
3190Sstevel@tonic-gate 		err = errno;
3200Sstevel@tonic-gate 		assert(err != EINVAL);
3210Sstevel@tonic-gate 		free_restarter_event_handle(h);
3220Sstevel@tonic-gate 		return (err);
3230Sstevel@tonic-gate 	}
3240Sstevel@tonic-gate 
3250Sstevel@tonic-gate 	*rehp = h;
3260Sstevel@tonic-gate 	return (0);
3270Sstevel@tonic-gate }
3280Sstevel@tonic-gate 
3290Sstevel@tonic-gate restarter_event_handle_t *
3300Sstevel@tonic-gate restarter_event_get_handle(restarter_event_t *e)
3310Sstevel@tonic-gate {
3320Sstevel@tonic-gate 	assert(e != NULL && e->re_event_handle != NULL);
3330Sstevel@tonic-gate 	return (e->re_event_handle);
3340Sstevel@tonic-gate }
3350Sstevel@tonic-gate 
3360Sstevel@tonic-gate restarter_event_type_t
3370Sstevel@tonic-gate restarter_event_get_type(restarter_event_t *e)
3380Sstevel@tonic-gate {
3390Sstevel@tonic-gate 	assert(e != NULL);
3400Sstevel@tonic-gate 	return (e->re_type);
3410Sstevel@tonic-gate }
3420Sstevel@tonic-gate 
3430Sstevel@tonic-gate ssize_t
3440Sstevel@tonic-gate restarter_event_get_instance(restarter_event_t *e, char *inst, size_t sz)
3450Sstevel@tonic-gate {
3460Sstevel@tonic-gate 	assert(e != NULL && inst != NULL);
3470Sstevel@tonic-gate 	return ((ssize_t)strlcpy(inst, e->re_instance_name, sz));
3480Sstevel@tonic-gate }
3490Sstevel@tonic-gate 
3500Sstevel@tonic-gate int
3510Sstevel@tonic-gate restarter_event_get_current_states(restarter_event_t *e,
3520Sstevel@tonic-gate     restarter_instance_state_t *state, restarter_instance_state_t *next_state)
3530Sstevel@tonic-gate {
3540Sstevel@tonic-gate 	if (e == NULL)
3550Sstevel@tonic-gate 		return (-1);
3560Sstevel@tonic-gate 	*state = e->re_state;
3570Sstevel@tonic-gate 	*next_state = e->re_next_state;
3580Sstevel@tonic-gate 	return (0);
3590Sstevel@tonic-gate }
3600Sstevel@tonic-gate 
3610Sstevel@tonic-gate /*
3620Sstevel@tonic-gate  * Commit the state, next state, and auxiliary state into the repository.
3630Sstevel@tonic-gate  * Let the graph engine know about the state change and error.  On success,
3640Sstevel@tonic-gate  * return 0. On error, return
3650Sstevel@tonic-gate  *   EINVAL - aux has spaces
3660Sstevel@tonic-gate  *	    - inst is invalid or not an instance FMRI
3670Sstevel@tonic-gate  *   EPROTO - librestart compiled against different libscf
3680Sstevel@tonic-gate  *   ENOMEM - out of memory
3690Sstevel@tonic-gate  *	    - repository server out of resources
3700Sstevel@tonic-gate  *   ENOTACTIVE - repository server not running
3710Sstevel@tonic-gate  *   ECONNABORTED - repository connection established, but then broken
3720Sstevel@tonic-gate  *		  - unknown libscf error
3730Sstevel@tonic-gate  *   ENOENT - inst does not exist in the repository
3740Sstevel@tonic-gate  *   EPERM - insufficient permissions
3750Sstevel@tonic-gate  *   EACCESS - backend access denied
3760Sstevel@tonic-gate  *   EROFS - backend is readonly
3770Sstevel@tonic-gate  *   EFAULT - internal sysevent_evc_publish() error
3780Sstevel@tonic-gate  *   EBADF - h is invalid (sysevent_evc_publish() returned EINVAL)
3790Sstevel@tonic-gate  */
3800Sstevel@tonic-gate int
3810Sstevel@tonic-gate restarter_set_states(restarter_event_handle_t *h, const char *inst,
3820Sstevel@tonic-gate     restarter_instance_state_t cur_state,
3830Sstevel@tonic-gate     restarter_instance_state_t new_cur_state,
3840Sstevel@tonic-gate     restarter_instance_state_t next_state,
3850Sstevel@tonic-gate     restarter_instance_state_t new_next_state, restarter_error_t e,
3860Sstevel@tonic-gate     const char *aux)
3870Sstevel@tonic-gate {
3880Sstevel@tonic-gate 	nvlist_t *attr;
3890Sstevel@tonic-gate 	scf_handle_t *scf_h;
3900Sstevel@tonic-gate 	instance_data_t id;
3910Sstevel@tonic-gate 	useconds_t retry_int = INITIAL_COMMIT_RETRY_INT;
3920Sstevel@tonic-gate 	int retries;
3930Sstevel@tonic-gate 	int ret = 0;
3940Sstevel@tonic-gate 	char *p = (char *)aux;
3950Sstevel@tonic-gate 
3960Sstevel@tonic-gate 	assert(h->reh_master_channel != NULL);
3970Sstevel@tonic-gate 	assert(h->reh_master_channel_name != NULL);
3980Sstevel@tonic-gate 	assert(h->reh_master_subscriber_id != NULL);
3990Sstevel@tonic-gate 
4000Sstevel@tonic-gate 	/* Validate format of auxiliary state: no spaces allowed */
401*863Slianep 	if (p != NULL) {
402*863Slianep 		while (*p != '\0') {
403*863Slianep 			if (isspace(*p))
404*863Slianep 				return (EINVAL);
405*863Slianep 			p++;
406*863Slianep 		}
4070Sstevel@tonic-gate 	}
4080Sstevel@tonic-gate 
4090Sstevel@tonic-gate 	if ((scf_h = scf_handle_create(SCF_VERSION)) == NULL) {
4100Sstevel@tonic-gate 		switch (scf_error()) {
4110Sstevel@tonic-gate 		case SCF_ERROR_VERSION_MISMATCH:
4120Sstevel@tonic-gate 			return (EPROTO);
4130Sstevel@tonic-gate 
4140Sstevel@tonic-gate 		case SCF_ERROR_NO_MEMORY:
4150Sstevel@tonic-gate 			return (ENOMEM);
4160Sstevel@tonic-gate 
4170Sstevel@tonic-gate 		default:
4180Sstevel@tonic-gate 			bad_fail("scf_handle_create", scf_error());
4190Sstevel@tonic-gate 		}
4200Sstevel@tonic-gate 	}
4210Sstevel@tonic-gate 
4220Sstevel@tonic-gate 	if (scf_handle_bind(scf_h) == -1) {
4230Sstevel@tonic-gate 		scf_handle_destroy(scf_h);
4240Sstevel@tonic-gate 		switch (scf_error()) {
4250Sstevel@tonic-gate 		case SCF_ERROR_NO_SERVER:
4260Sstevel@tonic-gate 			return (ENOTACTIVE);
4270Sstevel@tonic-gate 
4280Sstevel@tonic-gate 		case SCF_ERROR_NO_RESOURCES:
4290Sstevel@tonic-gate 			return (ENOMEM);
4300Sstevel@tonic-gate 
4310Sstevel@tonic-gate 		case SCF_ERROR_INVALID_ARGUMENT:
4320Sstevel@tonic-gate 		case SCF_ERROR_IN_USE:
4330Sstevel@tonic-gate 		default:
4340Sstevel@tonic-gate 			bad_fail("scf_handle_bind", scf_error());
4350Sstevel@tonic-gate 		}
4360Sstevel@tonic-gate 	}
4370Sstevel@tonic-gate 
4380Sstevel@tonic-gate 	if (nvlist_alloc(&attr, NV_UNIQUE_NAME, 0) != 0 ||
4390Sstevel@tonic-gate 	    nvlist_add_int32(attr, RESTARTER_NAME_STATE, new_cur_state) != 0 ||
4400Sstevel@tonic-gate 	    nvlist_add_int32(attr, RESTARTER_NAME_NEXT_STATE, new_next_state)
4410Sstevel@tonic-gate 	    != 0 ||
4420Sstevel@tonic-gate 	    nvlist_add_int32(attr, RESTARTER_NAME_ERROR, e) != 0 ||
4430Sstevel@tonic-gate 	    nvlist_add_string(attr, RESTARTER_NAME_INSTANCE, inst) != 0) {
4440Sstevel@tonic-gate 		ret = ENOMEM;
4450Sstevel@tonic-gate 		goto errout;
4460Sstevel@tonic-gate 	}
4470Sstevel@tonic-gate 
4480Sstevel@tonic-gate 	id.i_fmri = inst;
4490Sstevel@tonic-gate 	id.i_state = cur_state;
4500Sstevel@tonic-gate 	id.i_next_state = next_state;
4510Sstevel@tonic-gate 
4520Sstevel@tonic-gate 	ret = _restarter_commit_states(scf_h, &id, new_cur_state,
4530Sstevel@tonic-gate 	    new_next_state, aux);
4540Sstevel@tonic-gate 	if (ret != 0)
4550Sstevel@tonic-gate 		goto errout;
4560Sstevel@tonic-gate 
4570Sstevel@tonic-gate 	for (retries = 0; retries < MAX_COMMIT_RETRIES; retries++) {
4580Sstevel@tonic-gate 		ret = sysevent_evc_publish(h->reh_master_channel, "master",
4590Sstevel@tonic-gate 		    "state_change", "com.sun", "librestart", attr,
4600Sstevel@tonic-gate 		    EVCH_NOSLEEP);
4610Sstevel@tonic-gate 		if (ret == 0)
4620Sstevel@tonic-gate 			break;
4630Sstevel@tonic-gate 
4640Sstevel@tonic-gate 		switch (ret) {
4650Sstevel@tonic-gate 		case EAGAIN:
4660Sstevel@tonic-gate 			/* Queue is full */
4670Sstevel@tonic-gate 			(void) usleep(retry_int);
4680Sstevel@tonic-gate 
4690Sstevel@tonic-gate 			retry_int = min(retry_int * 2, MAX_COMMIT_RETRY_INT);
4700Sstevel@tonic-gate 			break;
4710Sstevel@tonic-gate 
4720Sstevel@tonic-gate 		case EFAULT:
4730Sstevel@tonic-gate 		case ENOMEM:
4740Sstevel@tonic-gate 			goto errout;
4750Sstevel@tonic-gate 
4760Sstevel@tonic-gate 		case EINVAL:
4770Sstevel@tonic-gate 			ret = EBADF;
4780Sstevel@tonic-gate 			goto errout;
4790Sstevel@tonic-gate 
4800Sstevel@tonic-gate 		case EOVERFLOW:
4810Sstevel@tonic-gate 		default:
4820Sstevel@tonic-gate 			bad_fail("sysevent_evc_publish", ret);
4830Sstevel@tonic-gate 		}
4840Sstevel@tonic-gate 	}
4850Sstevel@tonic-gate 
4860Sstevel@tonic-gate errout:
4870Sstevel@tonic-gate 	nvlist_free(attr);
4880Sstevel@tonic-gate 	(void) scf_handle_unbind(scf_h);
4890Sstevel@tonic-gate 	scf_handle_destroy(scf_h);
4900Sstevel@tonic-gate 
4910Sstevel@tonic-gate 	return (ret);
4920Sstevel@tonic-gate }
4930Sstevel@tonic-gate 
4940Sstevel@tonic-gate restarter_instance_state_t
4950Sstevel@tonic-gate restarter_string_to_state(char *string)
4960Sstevel@tonic-gate {
4970Sstevel@tonic-gate 	assert(string != NULL);
4980Sstevel@tonic-gate 
4990Sstevel@tonic-gate 	if (strcmp(string, SCF_STATE_STRING_NONE) == 0)
5000Sstevel@tonic-gate 		return (RESTARTER_STATE_NONE);
5010Sstevel@tonic-gate 	else if (strcmp(string, SCF_STATE_STRING_UNINIT) == 0)
5020Sstevel@tonic-gate 		return (RESTARTER_STATE_UNINIT);
5030Sstevel@tonic-gate 	else if (strcmp(string, SCF_STATE_STRING_MAINT) == 0)
5040Sstevel@tonic-gate 		return (RESTARTER_STATE_MAINT);
5050Sstevel@tonic-gate 	else if (strcmp(string, SCF_STATE_STRING_OFFLINE) == 0)
5060Sstevel@tonic-gate 		return (RESTARTER_STATE_OFFLINE);
5070Sstevel@tonic-gate 	else if (strcmp(string, SCF_STATE_STRING_DISABLED) == 0)
5080Sstevel@tonic-gate 		return (RESTARTER_STATE_DISABLED);
5090Sstevel@tonic-gate 	else if (strcmp(string, SCF_STATE_STRING_ONLINE) == 0)
5100Sstevel@tonic-gate 		return (RESTARTER_STATE_ONLINE);
5110Sstevel@tonic-gate 	else if (strcmp(string, SCF_STATE_STRING_DEGRADED) == 0)
5120Sstevel@tonic-gate 		return (RESTARTER_STATE_DEGRADED);
5130Sstevel@tonic-gate 	else {
5140Sstevel@tonic-gate 		return (RESTARTER_STATE_NONE);
5150Sstevel@tonic-gate 	}
5160Sstevel@tonic-gate }
5170Sstevel@tonic-gate 
5180Sstevel@tonic-gate ssize_t
5190Sstevel@tonic-gate restarter_state_to_string(restarter_instance_state_t state, char *string,
5200Sstevel@tonic-gate     size_t len)
5210Sstevel@tonic-gate {
5220Sstevel@tonic-gate 	assert(string != NULL);
5230Sstevel@tonic-gate 
5240Sstevel@tonic-gate 	if (state == RESTARTER_STATE_NONE)
5250Sstevel@tonic-gate 		return ((ssize_t)strlcpy(string, SCF_STATE_STRING_NONE, len));
5260Sstevel@tonic-gate 	else if (state == RESTARTER_STATE_UNINIT)
5270Sstevel@tonic-gate 		return ((ssize_t)strlcpy(string, SCF_STATE_STRING_UNINIT, len));
5280Sstevel@tonic-gate 	else if (state == RESTARTER_STATE_MAINT)
5290Sstevel@tonic-gate 		return ((ssize_t)strlcpy(string, SCF_STATE_STRING_MAINT, len));
5300Sstevel@tonic-gate 	else if (state == RESTARTER_STATE_OFFLINE)
5310Sstevel@tonic-gate 		return ((ssize_t)strlcpy(string, SCF_STATE_STRING_OFFLINE,
5320Sstevel@tonic-gate 		    len));
5330Sstevel@tonic-gate 	else if (state == RESTARTER_STATE_DISABLED)
5340Sstevel@tonic-gate 		return ((ssize_t)strlcpy(string, SCF_STATE_STRING_DISABLED,
5350Sstevel@tonic-gate 		    len));
5360Sstevel@tonic-gate 	else if (state == RESTARTER_STATE_ONLINE)
5370Sstevel@tonic-gate 		return ((ssize_t)strlcpy(string, SCF_STATE_STRING_ONLINE, len));
5380Sstevel@tonic-gate 	else if (state == RESTARTER_STATE_DEGRADED)
5390Sstevel@tonic-gate 		return ((ssize_t)strlcpy(string, SCF_STATE_STRING_DEGRADED,
5400Sstevel@tonic-gate 		    len));
5410Sstevel@tonic-gate 	else
5420Sstevel@tonic-gate 		return ((ssize_t)strlcpy(string, "unknown", len));
5430Sstevel@tonic-gate }
5440Sstevel@tonic-gate 
5450Sstevel@tonic-gate /*
5460Sstevel@tonic-gate  * Sets pg to the name property group of s_inst.  If it doesn't exist, it is
5470Sstevel@tonic-gate  * added.
5480Sstevel@tonic-gate  *
5490Sstevel@tonic-gate  * Fails with
5500Sstevel@tonic-gate  *   ECONNABORTED - repository disconnection or unknown libscf error
5510Sstevel@tonic-gate  *   EBADF - inst is not set
5520Sstevel@tonic-gate  *   ECANCELED - inst is deleted
5530Sstevel@tonic-gate  *   EPERM - permission is denied
5540Sstevel@tonic-gate  *   EACCES - backend denied access
5550Sstevel@tonic-gate  *   EROFS - backend readonly
5560Sstevel@tonic-gate  */
5570Sstevel@tonic-gate static int
5580Sstevel@tonic-gate instance_get_or_add_pg(scf_instance_t *inst, const char *name,
5590Sstevel@tonic-gate     const char *type, uint32_t flags, scf_propertygroup_t *pg)
5600Sstevel@tonic-gate {
5610Sstevel@tonic-gate again:
5620Sstevel@tonic-gate 	if (scf_instance_get_pg(inst, name, pg) == 0)
5630Sstevel@tonic-gate 		return (0);
5640Sstevel@tonic-gate 
5650Sstevel@tonic-gate 	switch (scf_error()) {
5660Sstevel@tonic-gate 	case SCF_ERROR_CONNECTION_BROKEN:
5670Sstevel@tonic-gate 	default:
5680Sstevel@tonic-gate 		return (ECONNABORTED);
5690Sstevel@tonic-gate 
5700Sstevel@tonic-gate 	case SCF_ERROR_NOT_SET:
5710Sstevel@tonic-gate 		return (EBADF);
5720Sstevel@tonic-gate 
5730Sstevel@tonic-gate 	case SCF_ERROR_DELETED:
5740Sstevel@tonic-gate 		return (ECANCELED);
5750Sstevel@tonic-gate 
5760Sstevel@tonic-gate 	case SCF_ERROR_NOT_FOUND:
5770Sstevel@tonic-gate 		break;
5780Sstevel@tonic-gate 
5790Sstevel@tonic-gate 	case SCF_ERROR_HANDLE_MISMATCH:
5800Sstevel@tonic-gate 	case SCF_ERROR_INVALID_ARGUMENT:
5810Sstevel@tonic-gate 		bad_fail("scf_instance_get_pg", scf_error());
5820Sstevel@tonic-gate 	}
5830Sstevel@tonic-gate 
5840Sstevel@tonic-gate 	if (scf_instance_add_pg(inst, name, type, flags, pg) == 0)
5850Sstevel@tonic-gate 		return (0);
5860Sstevel@tonic-gate 
5870Sstevel@tonic-gate 	switch (scf_error()) {
5880Sstevel@tonic-gate 	case SCF_ERROR_CONNECTION_BROKEN:
5890Sstevel@tonic-gate 	default:
5900Sstevel@tonic-gate 		return (ECONNABORTED);
5910Sstevel@tonic-gate 
5920Sstevel@tonic-gate 	case SCF_ERROR_DELETED:
5930Sstevel@tonic-gate 		return (ECANCELED);
5940Sstevel@tonic-gate 
5950Sstevel@tonic-gate 	case SCF_ERROR_EXISTS:
5960Sstevel@tonic-gate 		goto again;
5970Sstevel@tonic-gate 
5980Sstevel@tonic-gate 	case SCF_ERROR_PERMISSION_DENIED:
5990Sstevel@tonic-gate 		return (EPERM);
6000Sstevel@tonic-gate 
6010Sstevel@tonic-gate 	case SCF_ERROR_BACKEND_ACCESS:
6020Sstevel@tonic-gate 		return (EACCES);
6030Sstevel@tonic-gate 
6040Sstevel@tonic-gate 	case SCF_ERROR_BACKEND_READONLY:
6050Sstevel@tonic-gate 		return (EROFS);
6060Sstevel@tonic-gate 
6070Sstevel@tonic-gate 	case SCF_ERROR_HANDLE_MISMATCH:
6080Sstevel@tonic-gate 	case SCF_ERROR_INVALID_ARGUMENT:
6090Sstevel@tonic-gate 	case SCF_ERROR_NOT_SET:			/* should be caught above */
6100Sstevel@tonic-gate 		bad_fail("scf_instance_add_pg", scf_error());
6110Sstevel@tonic-gate 	}
6120Sstevel@tonic-gate 
6130Sstevel@tonic-gate 	return (0);
6140Sstevel@tonic-gate }
6150Sstevel@tonic-gate 
6160Sstevel@tonic-gate /*
6170Sstevel@tonic-gate  * Fails with
6180Sstevel@tonic-gate  *   ECONNABORTED
6190Sstevel@tonic-gate  *   ECANCELED - pg was deleted
6200Sstevel@tonic-gate  */
6210Sstevel@tonic-gate static int
6220Sstevel@tonic-gate tx_set_value(scf_transaction_t *tx, scf_transaction_entry_t *ent,
6230Sstevel@tonic-gate     const char *pname, scf_type_t ty, scf_value_t *val)
6240Sstevel@tonic-gate {
6250Sstevel@tonic-gate 	int r;
6260Sstevel@tonic-gate 
6270Sstevel@tonic-gate 	for (;;) {
6280Sstevel@tonic-gate 		if (scf_transaction_property_change_type(tx, ent, pname,
6290Sstevel@tonic-gate 		    ty) == 0)
6300Sstevel@tonic-gate 			break;
6310Sstevel@tonic-gate 
6320Sstevel@tonic-gate 		switch (scf_error()) {
6330Sstevel@tonic-gate 		case SCF_ERROR_CONNECTION_BROKEN:
6340Sstevel@tonic-gate 		default:
6350Sstevel@tonic-gate 			return (ECONNABORTED);
6360Sstevel@tonic-gate 
6370Sstevel@tonic-gate 		case SCF_ERROR_DELETED:
6380Sstevel@tonic-gate 			return (ECANCELED);
6390Sstevel@tonic-gate 
6400Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
6410Sstevel@tonic-gate 			break;
6420Sstevel@tonic-gate 
6430Sstevel@tonic-gate 		case SCF_ERROR_HANDLE_MISMATCH:
6440Sstevel@tonic-gate 		case SCF_ERROR_INVALID_ARGUMENT:
6450Sstevel@tonic-gate 		case SCF_ERROR_IN_USE:
6460Sstevel@tonic-gate 		case SCF_ERROR_NOT_SET:
6470Sstevel@tonic-gate 			bad_fail("scf_transaction_property_change_type",
6480Sstevel@tonic-gate 			    scf_error());
6490Sstevel@tonic-gate 		}
6500Sstevel@tonic-gate 
6510Sstevel@tonic-gate 		if (scf_transaction_property_new(tx, ent, pname, ty) == 0)
6520Sstevel@tonic-gate 			break;
6530Sstevel@tonic-gate 
6540Sstevel@tonic-gate 		switch (scf_error()) {
6550Sstevel@tonic-gate 		case SCF_ERROR_CONNECTION_BROKEN:
6560Sstevel@tonic-gate 		default:
6570Sstevel@tonic-gate 			return (ECONNABORTED);
6580Sstevel@tonic-gate 
6590Sstevel@tonic-gate 		case SCF_ERROR_DELETED:
6600Sstevel@tonic-gate 			return (ECANCELED);
6610Sstevel@tonic-gate 
6620Sstevel@tonic-gate 		case SCF_ERROR_EXISTS:
6630Sstevel@tonic-gate 			break;
6640Sstevel@tonic-gate 
6650Sstevel@tonic-gate 		case SCF_ERROR_HANDLE_MISMATCH:
6660Sstevel@tonic-gate 		case SCF_ERROR_INVALID_ARGUMENT:
6670Sstevel@tonic-gate 		case SCF_ERROR_IN_USE:
6680Sstevel@tonic-gate 		case SCF_ERROR_NOT_SET:
6690Sstevel@tonic-gate 			bad_fail("scf_transaction_property_new", scf_error());
6700Sstevel@tonic-gate 		}
6710Sstevel@tonic-gate 	}
6720Sstevel@tonic-gate 
6730Sstevel@tonic-gate 	r = scf_entry_add_value(ent, val);
6740Sstevel@tonic-gate 	assert(r == 0);
6750Sstevel@tonic-gate 
6760Sstevel@tonic-gate 	return (0);
6770Sstevel@tonic-gate }
6780Sstevel@tonic-gate 
6790Sstevel@tonic-gate /*
6800Sstevel@tonic-gate  * Commit new_state, new_next_state, and aux to the repository for id.  If
6810Sstevel@tonic-gate  * successful, also set id's state and next-state as given, and return 0.
6820Sstevel@tonic-gate  * Fails with
6830Sstevel@tonic-gate  *   ENOMEM - out of memory
6840Sstevel@tonic-gate  *   ECONNABORTED - repository connection broken
6850Sstevel@tonic-gate  *		  - unknown libscf error
6860Sstevel@tonic-gate  *   EINVAL - id->i_fmri is invalid or not an instance FMRI
6870Sstevel@tonic-gate  *   ENOENT - id->i_fmri does not exist
6880Sstevel@tonic-gate  *   EPERM - insufficient permissions
6890Sstevel@tonic-gate  *   EACCES - backend access denied
6900Sstevel@tonic-gate  *   EROFS - backend is readonly
6910Sstevel@tonic-gate  */
6920Sstevel@tonic-gate int
6930Sstevel@tonic-gate _restarter_commit_states(scf_handle_t *h, instance_data_t *id,
6940Sstevel@tonic-gate     restarter_instance_state_t new_state,
6950Sstevel@tonic-gate     restarter_instance_state_t new_state_next, const char *aux)
6960Sstevel@tonic-gate {
6970Sstevel@tonic-gate 	char str_state[MAX_SCF_STATE_STRING_SZ];
6980Sstevel@tonic-gate 	char str_new_state[MAX_SCF_STATE_STRING_SZ];
6990Sstevel@tonic-gate 	char str_state_next[MAX_SCF_STATE_STRING_SZ];
7000Sstevel@tonic-gate 	char str_new_state_next[MAX_SCF_STATE_STRING_SZ];
7010Sstevel@tonic-gate 	int ret = 0, r;
7020Sstevel@tonic-gate 	struct timeval now;
7030Sstevel@tonic-gate 	ssize_t sz;
7040Sstevel@tonic-gate 	char *default_aux = "none";
7050Sstevel@tonic-gate 
7060Sstevel@tonic-gate 	scf_transaction_t *t = NULL;
7070Sstevel@tonic-gate 	scf_transaction_entry_t *t_state = NULL, *t_state_next = NULL;
7080Sstevel@tonic-gate 	scf_transaction_entry_t *t_stime = NULL, *t_aux = NULL;
7090Sstevel@tonic-gate 	scf_value_t *v_state = NULL, *v_state_next = NULL, *v_stime = NULL;
7100Sstevel@tonic-gate 	scf_value_t *v_aux = NULL;
7110Sstevel@tonic-gate 	scf_instance_t *s_inst = NULL;
7120Sstevel@tonic-gate 	scf_propertygroup_t *pg = NULL;
7130Sstevel@tonic-gate 
7140Sstevel@tonic-gate 	assert(new_state != RESTARTER_STATE_NONE);
7150Sstevel@tonic-gate 
7160Sstevel@tonic-gate 	/* If aux state is unset, set aux to a default string. */
7170Sstevel@tonic-gate 	if (aux == NULL)
7180Sstevel@tonic-gate 		aux = default_aux;
7190Sstevel@tonic-gate 
7200Sstevel@tonic-gate 	if ((s_inst = scf_instance_create(h)) == NULL ||
7210Sstevel@tonic-gate 	    (pg = scf_pg_create(h)) == NULL ||
7220Sstevel@tonic-gate 	    (t = scf_transaction_create(h)) == NULL ||
7230Sstevel@tonic-gate 	    (t_state = scf_entry_create(h)) == NULL ||
7240Sstevel@tonic-gate 	    (t_state_next = scf_entry_create(h)) == NULL ||
7250Sstevel@tonic-gate 	    (t_stime = scf_entry_create(h)) == NULL ||
7260Sstevel@tonic-gate 	    (t_aux = scf_entry_create(h)) == NULL ||
7270Sstevel@tonic-gate 	    (v_state = scf_value_create(h)) == NULL ||
7280Sstevel@tonic-gate 	    (v_state_next = scf_value_create(h)) == NULL ||
7290Sstevel@tonic-gate 	    (v_stime = scf_value_create(h)) == NULL ||
7300Sstevel@tonic-gate 	    (v_aux = scf_value_create(h)) == NULL) {
7310Sstevel@tonic-gate 		ret = ENOMEM;
7320Sstevel@tonic-gate 		goto out;
7330Sstevel@tonic-gate 	}
7340Sstevel@tonic-gate 
7350Sstevel@tonic-gate 	sz = restarter_state_to_string(new_state, str_new_state,
7360Sstevel@tonic-gate 	    sizeof (str_new_state));
7370Sstevel@tonic-gate 	assert(sz < sizeof (str_new_state));
7380Sstevel@tonic-gate 	sz = restarter_state_to_string(new_state_next, str_new_state_next,
7390Sstevel@tonic-gate 	    sizeof (str_new_state_next));
7400Sstevel@tonic-gate 	assert(sz < sizeof (str_new_state_next));
7410Sstevel@tonic-gate 	sz = restarter_state_to_string(id->i_state, str_state,
7420Sstevel@tonic-gate 	    sizeof (str_state));
7430Sstevel@tonic-gate 	assert(sz < sizeof (str_state));
7440Sstevel@tonic-gate 	sz = restarter_state_to_string(id->i_next_state, str_state_next,
7450Sstevel@tonic-gate 	    sizeof (str_state_next));
7460Sstevel@tonic-gate 	assert(sz < sizeof (str_state_next));
7470Sstevel@tonic-gate 
7480Sstevel@tonic-gate 	ret = gettimeofday(&now, NULL);
7490Sstevel@tonic-gate 	assert(ret != -1);
7500Sstevel@tonic-gate 
7510Sstevel@tonic-gate 	if (scf_handle_decode_fmri(h, id->i_fmri, NULL, NULL, s_inst,
7520Sstevel@tonic-gate 	    NULL, NULL, SCF_DECODE_FMRI_EXACT) == -1) {
7530Sstevel@tonic-gate 		switch (scf_error()) {
7540Sstevel@tonic-gate 		case SCF_ERROR_CONNECTION_BROKEN:
7550Sstevel@tonic-gate 		default:
7560Sstevel@tonic-gate 			ret = ECONNABORTED;
7570Sstevel@tonic-gate 			break;
7580Sstevel@tonic-gate 
7590Sstevel@tonic-gate 		case SCF_ERROR_INVALID_ARGUMENT:
7600Sstevel@tonic-gate 		case SCF_ERROR_CONSTRAINT_VIOLATED:
7610Sstevel@tonic-gate 			ret = EINVAL;
7620Sstevel@tonic-gate 			break;
7630Sstevel@tonic-gate 
7640Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
7650Sstevel@tonic-gate 			ret = ENOENT;
7660Sstevel@tonic-gate 			break;
7670Sstevel@tonic-gate 
7680Sstevel@tonic-gate 		case SCF_ERROR_HANDLE_MISMATCH:
7690Sstevel@tonic-gate 			bad_fail("scf_handle_decode_fmri", scf_error());
7700Sstevel@tonic-gate 		}
7710Sstevel@tonic-gate 		goto out;
7720Sstevel@tonic-gate 	}
7730Sstevel@tonic-gate 
7740Sstevel@tonic-gate 
7750Sstevel@tonic-gate 	if (scf_value_set_astring(v_state, str_new_state) != 0 ||
7760Sstevel@tonic-gate 	    scf_value_set_astring(v_state_next, str_new_state_next) != 0 ||
7770Sstevel@tonic-gate 	    scf_value_set_astring(v_aux, aux) != 0)
7780Sstevel@tonic-gate 		bad_fail("scf_value_set_astring", scf_error());
7790Sstevel@tonic-gate 
7800Sstevel@tonic-gate 	if (scf_value_set_time(v_stime, now.tv_sec, now.tv_usec * 1000) != 0)
7810Sstevel@tonic-gate 		bad_fail("scf_value_set_time", scf_error());
7820Sstevel@tonic-gate 
7830Sstevel@tonic-gate add_pg:
7840Sstevel@tonic-gate 	switch (r = instance_get_or_add_pg(s_inst, SCF_PG_RESTARTER,
7850Sstevel@tonic-gate 	    SCF_PG_RESTARTER_TYPE, SCF_PG_RESTARTER_FLAGS, pg)) {
7860Sstevel@tonic-gate 	case 0:
7870Sstevel@tonic-gate 		break;
7880Sstevel@tonic-gate 
7890Sstevel@tonic-gate 	case ECONNABORTED:
7900Sstevel@tonic-gate 	case EPERM:
7910Sstevel@tonic-gate 	case EACCES:
7920Sstevel@tonic-gate 	case EROFS:
7930Sstevel@tonic-gate 		ret = r;
7940Sstevel@tonic-gate 		goto out;
7950Sstevel@tonic-gate 
7960Sstevel@tonic-gate 	case ECANCELED:
7970Sstevel@tonic-gate 		ret = ENOENT;
7980Sstevel@tonic-gate 		goto out;
7990Sstevel@tonic-gate 
8000Sstevel@tonic-gate 	case EBADF:
8010Sstevel@tonic-gate 	default:
8020Sstevel@tonic-gate 		bad_fail("instance_get_or_add_pg", r);
8030Sstevel@tonic-gate 	}
8040Sstevel@tonic-gate 
8050Sstevel@tonic-gate 	for (;;) {
8060Sstevel@tonic-gate 		if (scf_transaction_start(t, pg) != 0) {
8070Sstevel@tonic-gate 			switch (scf_error()) {
8080Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
8090Sstevel@tonic-gate 			default:
8100Sstevel@tonic-gate 				ret = ECONNABORTED;
8110Sstevel@tonic-gate 				goto out;
8120Sstevel@tonic-gate 
8130Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
8140Sstevel@tonic-gate 				goto add_pg;
8150Sstevel@tonic-gate 
8160Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
8170Sstevel@tonic-gate 				ret = EPERM;
8180Sstevel@tonic-gate 				goto out;
8190Sstevel@tonic-gate 
8200Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_ACCESS:
8210Sstevel@tonic-gate 				ret = EACCES;
8220Sstevel@tonic-gate 				goto out;
8230Sstevel@tonic-gate 
8240Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
8250Sstevel@tonic-gate 				ret = EROFS;
8260Sstevel@tonic-gate 				goto out;
8270Sstevel@tonic-gate 
8280Sstevel@tonic-gate 			case SCF_ERROR_HANDLE_MISMATCH:
8290Sstevel@tonic-gate 			case SCF_ERROR_IN_USE:
8300Sstevel@tonic-gate 				bad_fail("scf_transaction_start", scf_error());
8310Sstevel@tonic-gate 			}
8320Sstevel@tonic-gate 		}
8330Sstevel@tonic-gate 
8340Sstevel@tonic-gate 		if ((r = tx_set_value(t, t_state, SCF_PROPERTY_STATE,
8350Sstevel@tonic-gate 		    SCF_TYPE_ASTRING, v_state)) != 0 ||
8360Sstevel@tonic-gate 		    (r = tx_set_value(t, t_state_next, SCF_PROPERTY_NEXT_STATE,
8370Sstevel@tonic-gate 		    SCF_TYPE_ASTRING, v_state_next)) != 0 ||
8380Sstevel@tonic-gate 		    (r = tx_set_value(t, t_aux, SCF_PROPERTY_AUX_STATE,
8390Sstevel@tonic-gate 		    SCF_TYPE_ASTRING, v_aux)) != 0 ||
8400Sstevel@tonic-gate 		    (r = tx_set_value(t, t_stime, SCF_PROPERTY_STATE_TIMESTAMP,
8410Sstevel@tonic-gate 		    SCF_TYPE_TIME, v_stime)) != 0) {
8420Sstevel@tonic-gate 			switch (r) {
8430Sstevel@tonic-gate 			case ECONNABORTED:
8440Sstevel@tonic-gate 				ret = ECONNABORTED;
8450Sstevel@tonic-gate 				goto out;
8460Sstevel@tonic-gate 
8470Sstevel@tonic-gate 			case ECANCELED:
8480Sstevel@tonic-gate 				scf_transaction_reset(t);
8490Sstevel@tonic-gate 				goto add_pg;
8500Sstevel@tonic-gate 
8510Sstevel@tonic-gate 			default:
8520Sstevel@tonic-gate 				bad_fail("tx_set_value", r);
8530Sstevel@tonic-gate 			}
8540Sstevel@tonic-gate 		}
8550Sstevel@tonic-gate 
8560Sstevel@tonic-gate 		ret = scf_transaction_commit(t);
8570Sstevel@tonic-gate 		if (ret == 1)
8580Sstevel@tonic-gate 			break;
8590Sstevel@tonic-gate 		if (ret == -1) {
8600Sstevel@tonic-gate 			switch (scf_error()) {
8610Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
8620Sstevel@tonic-gate 			default:
8630Sstevel@tonic-gate 				ret = ECONNABORTED;
8640Sstevel@tonic-gate 				goto out;
8650Sstevel@tonic-gate 
8660Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
8670Sstevel@tonic-gate 				ret = EPERM;
8680Sstevel@tonic-gate 				goto out;
8690Sstevel@tonic-gate 
8700Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_ACCESS:
8710Sstevel@tonic-gate 				ret = EACCES;
8720Sstevel@tonic-gate 				goto out;
8730Sstevel@tonic-gate 
8740Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
8750Sstevel@tonic-gate 				ret = EROFS;
8760Sstevel@tonic-gate 				goto out;
8770Sstevel@tonic-gate 
8780Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
8790Sstevel@tonic-gate 				bad_fail("scf_transaction_commit", scf_error());
8800Sstevel@tonic-gate 			}
8810Sstevel@tonic-gate 		}
8820Sstevel@tonic-gate 
8830Sstevel@tonic-gate 		scf_transaction_reset(t);
8840Sstevel@tonic-gate 		if (scf_pg_update(pg) == -1) {
8850Sstevel@tonic-gate 			switch (scf_error()) {
8860Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
8870Sstevel@tonic-gate 			default:
8880Sstevel@tonic-gate 				ret = ECONNABORTED;
8890Sstevel@tonic-gate 				goto out;
8900Sstevel@tonic-gate 
8910Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
8920Sstevel@tonic-gate 				goto add_pg;
8930Sstevel@tonic-gate 			}
8940Sstevel@tonic-gate 		}
8950Sstevel@tonic-gate 	}
8960Sstevel@tonic-gate 
8970Sstevel@tonic-gate 	id->i_state = new_state;
8980Sstevel@tonic-gate 	id->i_next_state = new_state_next;
8990Sstevel@tonic-gate 	ret = 0;
9000Sstevel@tonic-gate 
9010Sstevel@tonic-gate out:
9020Sstevel@tonic-gate 	scf_transaction_destroy(t);
9030Sstevel@tonic-gate 	scf_entry_destroy(t_state);
9040Sstevel@tonic-gate 	scf_entry_destroy(t_state_next);
9050Sstevel@tonic-gate 	scf_entry_destroy(t_stime);
9060Sstevel@tonic-gate 	scf_entry_destroy(t_aux);
9070Sstevel@tonic-gate 	scf_value_destroy(v_state);
9080Sstevel@tonic-gate 	scf_value_destroy(v_state_next);
9090Sstevel@tonic-gate 	scf_value_destroy(v_stime);
9100Sstevel@tonic-gate 	scf_value_destroy(v_aux);
9110Sstevel@tonic-gate 	scf_pg_destroy(pg);
9120Sstevel@tonic-gate 	scf_instance_destroy(s_inst);
9130Sstevel@tonic-gate 
9140Sstevel@tonic-gate 	return (ret);
9150Sstevel@tonic-gate }
9160Sstevel@tonic-gate 
9170Sstevel@tonic-gate /*
9180Sstevel@tonic-gate  * Fails with
9190Sstevel@tonic-gate  *   EINVAL - type is invalid
9200Sstevel@tonic-gate  *   ENOMEM
9210Sstevel@tonic-gate  *   ECONNABORTED - repository connection broken
9220Sstevel@tonic-gate  *   EBADF - s_inst is not set
9230Sstevel@tonic-gate  *   ECANCELED - s_inst is deleted
9240Sstevel@tonic-gate  *   EPERM - permission denied
9250Sstevel@tonic-gate  *   EACCES - backend access denied
9260Sstevel@tonic-gate  *   EROFS - backend readonly
9270Sstevel@tonic-gate  */
9280Sstevel@tonic-gate int
9290Sstevel@tonic-gate restarter_remove_contract(scf_instance_t *s_inst, ctid_t contract_id,
9300Sstevel@tonic-gate     restarter_contract_type_t type)
9310Sstevel@tonic-gate {
9320Sstevel@tonic-gate 	scf_handle_t *h;
9330Sstevel@tonic-gate 	scf_transaction_t *t = NULL;
9340Sstevel@tonic-gate 	scf_transaction_entry_t *t_cid = NULL;
9350Sstevel@tonic-gate 	scf_propertygroup_t *pg = NULL;
9360Sstevel@tonic-gate 	scf_property_t *prop = NULL;
9370Sstevel@tonic-gate 	scf_value_t *val;
9380Sstevel@tonic-gate 	scf_iter_t *iter = NULL;
9390Sstevel@tonic-gate 	const char *pname;
9400Sstevel@tonic-gate 	int ret = 0, primary;
9410Sstevel@tonic-gate 	uint64_t c;
9420Sstevel@tonic-gate 
9430Sstevel@tonic-gate 	switch (type) {
9440Sstevel@tonic-gate 	case RESTARTER_CONTRACT_PRIMARY:
9450Sstevel@tonic-gate 		primary = 1;
9460Sstevel@tonic-gate 		break;
9470Sstevel@tonic-gate 	case RESTARTER_CONTRACT_TRANSIENT:
9480Sstevel@tonic-gate 		primary = 0;
9490Sstevel@tonic-gate 		break;
9500Sstevel@tonic-gate 	default:
9510Sstevel@tonic-gate 		return (EINVAL);
9520Sstevel@tonic-gate 	}
9530Sstevel@tonic-gate 
9540Sstevel@tonic-gate 	h = scf_instance_handle(s_inst);
9550Sstevel@tonic-gate 
9560Sstevel@tonic-gate 	pg = scf_pg_create(h);
9570Sstevel@tonic-gate 	prop = scf_property_create(h);
9580Sstevel@tonic-gate 	iter = scf_iter_create(h);
9590Sstevel@tonic-gate 	t = scf_transaction_create(h);
9600Sstevel@tonic-gate 
9610Sstevel@tonic-gate 	if (pg == NULL || prop == NULL || iter == NULL || t == NULL) {
9620Sstevel@tonic-gate 		ret = ENOMEM;
9630Sstevel@tonic-gate 		goto remove_contract_cleanup;
9640Sstevel@tonic-gate 	}
9650Sstevel@tonic-gate 
9660Sstevel@tonic-gate add:
9670Sstevel@tonic-gate 	scf_transaction_destroy_children(t);
9680Sstevel@tonic-gate 	ret = instance_get_or_add_pg(s_inst, SCF_PG_RESTARTER,
9690Sstevel@tonic-gate 	    SCF_PG_RESTARTER_TYPE, SCF_PG_RESTARTER_FLAGS, pg);
9700Sstevel@tonic-gate 	if (ret != 0)
9710Sstevel@tonic-gate 		goto remove_contract_cleanup;
9720Sstevel@tonic-gate 
9730Sstevel@tonic-gate 	pname = primary? SCF_PROPERTY_CONTRACT :
9740Sstevel@tonic-gate 	    SCF_PROPERTY_TRANSIENT_CONTRACT;
9750Sstevel@tonic-gate 
9760Sstevel@tonic-gate 	for (;;) {
9770Sstevel@tonic-gate 		if (scf_transaction_start(t, pg) != 0) {
9780Sstevel@tonic-gate 			switch (scf_error()) {
9790Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
9800Sstevel@tonic-gate 			default:
9810Sstevel@tonic-gate 				ret = ECONNABORTED;
9820Sstevel@tonic-gate 				goto remove_contract_cleanup;
9830Sstevel@tonic-gate 
9840Sstevel@tonic-gate 			case SCF_ERROR_DELETED:
9850Sstevel@tonic-gate 				goto add;
9860Sstevel@tonic-gate 
9870Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
9880Sstevel@tonic-gate 				ret = EPERM;
9890Sstevel@tonic-gate 				goto remove_contract_cleanup;
9900Sstevel@tonic-gate 
9910Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_ACCESS:
9920Sstevel@tonic-gate 				ret = EACCES;
9930Sstevel@tonic-gate 				goto remove_contract_cleanup;
9940Sstevel@tonic-gate 
9950Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
9960Sstevel@tonic-gate 				ret = EROFS;
9970Sstevel@tonic-gate 				goto remove_contract_cleanup;
9980Sstevel@tonic-gate 
9990Sstevel@tonic-gate 			case SCF_ERROR_HANDLE_MISMATCH:
10000Sstevel@tonic-gate 			case SCF_ERROR_IN_USE:
10010Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
10020Sstevel@tonic-gate 				bad_fail("scf_transaction_start", scf_error());
10030Sstevel@tonic-gate 			}
10040Sstevel@tonic-gate 		}
10050Sstevel@tonic-gate 
10060Sstevel@tonic-gate 		t_cid = scf_entry_create(h);
10070Sstevel@tonic-gate 
10080Sstevel@tonic-gate 		if (scf_pg_get_property(pg, pname, prop) == 0) {
10090Sstevel@tonic-gate replace:
10100Sstevel@tonic-gate 			if (scf_transaction_property_change_type(t, t_cid,
10110Sstevel@tonic-gate 			    pname, SCF_TYPE_COUNT) != 0) {
10120Sstevel@tonic-gate 				switch (scf_error()) {
10130Sstevel@tonic-gate 				case SCF_ERROR_CONNECTION_BROKEN:
10140Sstevel@tonic-gate 				default:
10150Sstevel@tonic-gate 					ret = ECONNABORTED;
10160Sstevel@tonic-gate 					goto remove_contract_cleanup;
10170Sstevel@tonic-gate 
10180Sstevel@tonic-gate 				case SCF_ERROR_DELETED:
10190Sstevel@tonic-gate 					scf_entry_destroy(t_cid);
10200Sstevel@tonic-gate 					goto add;
10210Sstevel@tonic-gate 
10220Sstevel@tonic-gate 				case SCF_ERROR_NOT_FOUND:
10230Sstevel@tonic-gate 					goto new;
10240Sstevel@tonic-gate 
10250Sstevel@tonic-gate 				case SCF_ERROR_HANDLE_MISMATCH:
10260Sstevel@tonic-gate 				case SCF_ERROR_INVALID_ARGUMENT:
10270Sstevel@tonic-gate 				case SCF_ERROR_IN_USE:
10280Sstevel@tonic-gate 				case SCF_ERROR_NOT_SET:
10290Sstevel@tonic-gate 					bad_fail(
10300Sstevel@tonic-gate 					"scf_transaction_property_changetype",
10310Sstevel@tonic-gate 					    scf_error());
10320Sstevel@tonic-gate 				}
10330Sstevel@tonic-gate 			}
10340Sstevel@tonic-gate 
10350Sstevel@tonic-gate 			if (scf_property_is_type(prop, SCF_TYPE_COUNT) == 0) {
10360Sstevel@tonic-gate 				if (scf_iter_property_values(iter, prop) != 0) {
10370Sstevel@tonic-gate 					switch (scf_error()) {
10380Sstevel@tonic-gate 					case SCF_ERROR_CONNECTION_BROKEN:
10390Sstevel@tonic-gate 					default:
10400Sstevel@tonic-gate 						ret = ECONNABORTED;
10410Sstevel@tonic-gate 						goto remove_contract_cleanup;
10420Sstevel@tonic-gate 
10430Sstevel@tonic-gate 					case SCF_ERROR_NOT_SET:
10440Sstevel@tonic-gate 					case SCF_ERROR_HANDLE_MISMATCH:
10450Sstevel@tonic-gate 						bad_fail(
10460Sstevel@tonic-gate 						    "scf_iter_property_values",
10470Sstevel@tonic-gate 						    scf_error());
10480Sstevel@tonic-gate 					}
10490Sstevel@tonic-gate 				}
10500Sstevel@tonic-gate 
10510Sstevel@tonic-gate next_val:
10520Sstevel@tonic-gate 				val = scf_value_create(h);
10530Sstevel@tonic-gate 				if (val == NULL) {
10540Sstevel@tonic-gate 					assert(scf_error() ==
10550Sstevel@tonic-gate 					    SCF_ERROR_NO_MEMORY);
10560Sstevel@tonic-gate 					ret = ENOMEM;
10570Sstevel@tonic-gate 					goto remove_contract_cleanup;
10580Sstevel@tonic-gate 				}
10590Sstevel@tonic-gate 
10600Sstevel@tonic-gate 				ret = scf_iter_next_value(iter, val);
10610Sstevel@tonic-gate 				if (ret == -1) {
10620Sstevel@tonic-gate 					switch (scf_error()) {
10630Sstevel@tonic-gate 					case SCF_ERROR_CONNECTION_BROKEN:
10640Sstevel@tonic-gate 						ret = ECONNABORTED;
10650Sstevel@tonic-gate 						goto remove_contract_cleanup;
10660Sstevel@tonic-gate 
10670Sstevel@tonic-gate 					case SCF_ERROR_DELETED:
10680Sstevel@tonic-gate 						scf_value_destroy(val);
10690Sstevel@tonic-gate 						goto add;
10700Sstevel@tonic-gate 
10710Sstevel@tonic-gate 					case SCF_ERROR_HANDLE_MISMATCH:
10720Sstevel@tonic-gate 					case SCF_ERROR_INVALID_ARGUMENT:
10730Sstevel@tonic-gate 					default:
10740Sstevel@tonic-gate 						bad_fail("scf_iter_next_value",
10750Sstevel@tonic-gate 						    scf_error());
10760Sstevel@tonic-gate 					}
10770Sstevel@tonic-gate 				}
10780Sstevel@tonic-gate 
10790Sstevel@tonic-gate 				if (ret == 1) {
10800Sstevel@tonic-gate 					ret = scf_value_get_count(val, &c);
10810Sstevel@tonic-gate 					assert(ret == 0);
10820Sstevel@tonic-gate 
10830Sstevel@tonic-gate 					if (c != contract_id) {
10840Sstevel@tonic-gate 						ret = scf_entry_add_value(t_cid,
10850Sstevel@tonic-gate 						    val);
10860Sstevel@tonic-gate 						assert(ret == 0);
10870Sstevel@tonic-gate 					} else {
10880Sstevel@tonic-gate 						scf_value_destroy(val);
10890Sstevel@tonic-gate 					}
10900Sstevel@tonic-gate 
10910Sstevel@tonic-gate 					goto next_val;
10920Sstevel@tonic-gate 				}
10930Sstevel@tonic-gate 
10940Sstevel@tonic-gate 				scf_value_destroy(val);
10950Sstevel@tonic-gate 			} else {
10960Sstevel@tonic-gate 				switch (scf_error()) {
10970Sstevel@tonic-gate 				case SCF_ERROR_CONNECTION_BROKEN:
10980Sstevel@tonic-gate 				default:
10990Sstevel@tonic-gate 					ret = ECONNABORTED;
11000Sstevel@tonic-gate 					goto remove_contract_cleanup;
11010Sstevel@tonic-gate 
11020Sstevel@tonic-gate 				case SCF_ERROR_TYPE_MISMATCH:
11030Sstevel@tonic-gate 					break;
11040Sstevel@tonic-gate 
11050Sstevel@tonic-gate 				case SCF_ERROR_INVALID_ARGUMENT:
11060Sstevel@tonic-gate 				case SCF_ERROR_NOT_SET:
11070Sstevel@tonic-gate 					bad_fail("scf_property_is_type",
11080Sstevel@tonic-gate 					    scf_error());
11090Sstevel@tonic-gate 				}
11100Sstevel@tonic-gate 			}
11110Sstevel@tonic-gate 		} else {
11120Sstevel@tonic-gate 			switch (scf_error()) {
11130Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
11140Sstevel@tonic-gate 			default:
11150Sstevel@tonic-gate 				ret = ECONNABORTED;
11160Sstevel@tonic-gate 				goto remove_contract_cleanup;
11170Sstevel@tonic-gate 
11180Sstevel@tonic-gate 			case SCF_ERROR_DELETED:
11190Sstevel@tonic-gate 				scf_entry_destroy(t_cid);
11200Sstevel@tonic-gate 				goto add;
11210Sstevel@tonic-gate 
11220Sstevel@tonic-gate 			case SCF_ERROR_NOT_FOUND:
11230Sstevel@tonic-gate 				break;
11240Sstevel@tonic-gate 
11250Sstevel@tonic-gate 			case SCF_ERROR_HANDLE_MISMATCH:
11260Sstevel@tonic-gate 			case SCF_ERROR_INVALID_ARGUMENT:
11270Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
11280Sstevel@tonic-gate 				bad_fail("scf_pg_get_property", scf_error());
11290Sstevel@tonic-gate 			}
11300Sstevel@tonic-gate 
11310Sstevel@tonic-gate new:
11320Sstevel@tonic-gate 			if (scf_transaction_property_new(t, t_cid, pname,
11330Sstevel@tonic-gate 			    SCF_TYPE_COUNT) != 0) {
11340Sstevel@tonic-gate 				switch (scf_error()) {
11350Sstevel@tonic-gate 				case SCF_ERROR_CONNECTION_BROKEN:
11360Sstevel@tonic-gate 				default:
11370Sstevel@tonic-gate 					ret = ECONNABORTED;
11380Sstevel@tonic-gate 					goto remove_contract_cleanup;
11390Sstevel@tonic-gate 
11400Sstevel@tonic-gate 				case SCF_ERROR_DELETED:
11410Sstevel@tonic-gate 					scf_entry_destroy(t_cid);
11420Sstevel@tonic-gate 					goto add;
11430Sstevel@tonic-gate 
11440Sstevel@tonic-gate 				case SCF_ERROR_EXISTS:
11450Sstevel@tonic-gate 					goto replace;
11460Sstevel@tonic-gate 
11470Sstevel@tonic-gate 				case SCF_ERROR_HANDLE_MISMATCH:
11480Sstevel@tonic-gate 				case SCF_ERROR_INVALID_ARGUMENT:
11490Sstevel@tonic-gate 				case SCF_ERROR_NOT_SET:
11500Sstevel@tonic-gate 					bad_fail("scf_transaction_property_new",
11510Sstevel@tonic-gate 					    scf_error());
11520Sstevel@tonic-gate 				}
11530Sstevel@tonic-gate 			}
11540Sstevel@tonic-gate 		}
11550Sstevel@tonic-gate 
11560Sstevel@tonic-gate 		ret = scf_transaction_commit(t);
11570Sstevel@tonic-gate 		if (ret == -1) {
11580Sstevel@tonic-gate 			switch (scf_error()) {
11590Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
11600Sstevel@tonic-gate 			default:
11610Sstevel@tonic-gate 				ret = ECONNABORTED;
11620Sstevel@tonic-gate 				goto remove_contract_cleanup;
11630Sstevel@tonic-gate 
11640Sstevel@tonic-gate 			case SCF_ERROR_DELETED:
11650Sstevel@tonic-gate 				goto add;
11660Sstevel@tonic-gate 
11670Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
11680Sstevel@tonic-gate 				ret = EPERM;
11690Sstevel@tonic-gate 				goto remove_contract_cleanup;
11700Sstevel@tonic-gate 
11710Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_ACCESS:
11720Sstevel@tonic-gate 				ret = EACCES;
11730Sstevel@tonic-gate 				goto remove_contract_cleanup;
11740Sstevel@tonic-gate 
11750Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
11760Sstevel@tonic-gate 				ret = EROFS;
11770Sstevel@tonic-gate 				goto remove_contract_cleanup;
11780Sstevel@tonic-gate 
11790Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
11800Sstevel@tonic-gate 				bad_fail("scf_transaction_commit", scf_error());
11810Sstevel@tonic-gate 			}
11820Sstevel@tonic-gate 		}
11830Sstevel@tonic-gate 		if (ret == 1) {
11840Sstevel@tonic-gate 			ret = 0;
11850Sstevel@tonic-gate 			break;
11860Sstevel@tonic-gate 		}
11870Sstevel@tonic-gate 
11880Sstevel@tonic-gate 		scf_transaction_destroy_children(t);
11890Sstevel@tonic-gate 		if (scf_pg_update(pg) == -1) {
11900Sstevel@tonic-gate 			switch (scf_error()) {
11910Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
11920Sstevel@tonic-gate 			default:
11930Sstevel@tonic-gate 				ret = ECONNABORTED;
11940Sstevel@tonic-gate 				goto remove_contract_cleanup;
11950Sstevel@tonic-gate 
11960Sstevel@tonic-gate 			case SCF_ERROR_DELETED:
11970Sstevel@tonic-gate 				goto add;
11980Sstevel@tonic-gate 
11990Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
12000Sstevel@tonic-gate 				bad_fail("scf_pg_update", scf_error());
12010Sstevel@tonic-gate 			}
12020Sstevel@tonic-gate 		}
12030Sstevel@tonic-gate 	}
12040Sstevel@tonic-gate 
12050Sstevel@tonic-gate remove_contract_cleanup:
12060Sstevel@tonic-gate 	scf_transaction_destroy_children(t);
12070Sstevel@tonic-gate 	scf_transaction_destroy(t);
12080Sstevel@tonic-gate 	scf_iter_destroy(iter);
12090Sstevel@tonic-gate 	scf_property_destroy(prop);
12100Sstevel@tonic-gate 	scf_pg_destroy(pg);
12110Sstevel@tonic-gate 
12120Sstevel@tonic-gate 	return (ret);
12130Sstevel@tonic-gate }
12140Sstevel@tonic-gate 
12150Sstevel@tonic-gate /*
12160Sstevel@tonic-gate  * Fails with
12170Sstevel@tonic-gate  *   EINVAL - type is invalid
12180Sstevel@tonic-gate  *   ENOMEM
12190Sstevel@tonic-gate  *   ECONNABORTED - repository disconnection
12200Sstevel@tonic-gate  *   EBADF - s_inst is not set
12210Sstevel@tonic-gate  *   ECANCELED - s_inst is deleted
12220Sstevel@tonic-gate  *   EPERM
12230Sstevel@tonic-gate  *   EACCES
12240Sstevel@tonic-gate  *   EROFS
12250Sstevel@tonic-gate  */
12260Sstevel@tonic-gate int
12270Sstevel@tonic-gate restarter_store_contract(scf_instance_t *s_inst, ctid_t contract_id,
12280Sstevel@tonic-gate     restarter_contract_type_t type)
12290Sstevel@tonic-gate {
12300Sstevel@tonic-gate 	scf_handle_t *h;
12310Sstevel@tonic-gate 	scf_transaction_t *t = NULL;
12320Sstevel@tonic-gate 	scf_transaction_entry_t *t_cid = NULL;
12330Sstevel@tonic-gate 	scf_value_t *val;
12340Sstevel@tonic-gate 	scf_propertygroup_t *pg = NULL;
12350Sstevel@tonic-gate 	scf_property_t *prop = NULL;
12360Sstevel@tonic-gate 	scf_iter_t *iter = NULL;
12370Sstevel@tonic-gate 	const char *pname;
12380Sstevel@tonic-gate 	int ret = 0, primary;
12390Sstevel@tonic-gate 
12400Sstevel@tonic-gate 	if (type == RESTARTER_CONTRACT_PRIMARY)
12410Sstevel@tonic-gate 		primary = 1;
12420Sstevel@tonic-gate 	else if (type == RESTARTER_CONTRACT_TRANSIENT)
12430Sstevel@tonic-gate 		primary = 0;
12440Sstevel@tonic-gate 	else
12450Sstevel@tonic-gate 		return (EINVAL);
12460Sstevel@tonic-gate 
12470Sstevel@tonic-gate 	h = scf_instance_handle(s_inst);
12480Sstevel@tonic-gate 
12490Sstevel@tonic-gate 	pg = scf_pg_create(h);
12500Sstevel@tonic-gate 	prop = scf_property_create(h);
12510Sstevel@tonic-gate 	iter = scf_iter_create(h);
12520Sstevel@tonic-gate 	t = scf_transaction_create(h);
12530Sstevel@tonic-gate 
12540Sstevel@tonic-gate 	if (pg == NULL || prop == NULL || iter == NULL || t == NULL) {
12550Sstevel@tonic-gate 		ret = ENOMEM;
12560Sstevel@tonic-gate 		goto out;
12570Sstevel@tonic-gate 	}
12580Sstevel@tonic-gate 
12590Sstevel@tonic-gate add:
12600Sstevel@tonic-gate 	scf_transaction_destroy_children(t);
12610Sstevel@tonic-gate 	ret = instance_get_or_add_pg(s_inst, SCF_PG_RESTARTER,
12620Sstevel@tonic-gate 	    SCF_PG_RESTARTER_TYPE, SCF_PG_RESTARTER_FLAGS, pg);
12630Sstevel@tonic-gate 	if (ret != 0)
12640Sstevel@tonic-gate 		goto out;
12650Sstevel@tonic-gate 
12660Sstevel@tonic-gate 	pname = primary ? SCF_PROPERTY_CONTRACT :
12670Sstevel@tonic-gate 	    SCF_PROPERTY_TRANSIENT_CONTRACT;
12680Sstevel@tonic-gate 
12690Sstevel@tonic-gate 	for (;;) {
12700Sstevel@tonic-gate 		if (scf_transaction_start(t, pg) != 0) {
12710Sstevel@tonic-gate 			switch (scf_error()) {
12720Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
12730Sstevel@tonic-gate 			default:
12740Sstevel@tonic-gate 				ret = ECONNABORTED;
12750Sstevel@tonic-gate 				goto out;
12760Sstevel@tonic-gate 
12770Sstevel@tonic-gate 			case SCF_ERROR_DELETED:
12780Sstevel@tonic-gate 				goto add;
12790Sstevel@tonic-gate 
12800Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
12810Sstevel@tonic-gate 				ret = EPERM;
12820Sstevel@tonic-gate 				goto out;
12830Sstevel@tonic-gate 
12840Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_ACCESS:
12850Sstevel@tonic-gate 				ret = EACCES;
12860Sstevel@tonic-gate 				goto out;
12870Sstevel@tonic-gate 
12880Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
12890Sstevel@tonic-gate 				ret = EROFS;
12900Sstevel@tonic-gate 				goto out;
12910Sstevel@tonic-gate 
12920Sstevel@tonic-gate 			case SCF_ERROR_HANDLE_MISMATCH:
12930Sstevel@tonic-gate 			case SCF_ERROR_IN_USE:
12940Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
12950Sstevel@tonic-gate 				bad_fail("scf_transaction_start", scf_error());
12960Sstevel@tonic-gate 			}
12970Sstevel@tonic-gate 		}
12980Sstevel@tonic-gate 
12990Sstevel@tonic-gate 		t_cid = scf_entry_create(h);
13000Sstevel@tonic-gate 		if (t_cid == NULL) {
13010Sstevel@tonic-gate 			ret = ENOMEM;
13020Sstevel@tonic-gate 			goto out;
13030Sstevel@tonic-gate 		}
13040Sstevel@tonic-gate 
13050Sstevel@tonic-gate 		if (scf_pg_get_property(pg, pname, prop) == 0) {
13060Sstevel@tonic-gate replace:
13070Sstevel@tonic-gate 			if (scf_transaction_property_change_type(t, t_cid,
13080Sstevel@tonic-gate 			    pname, SCF_TYPE_COUNT) != 0) {
13090Sstevel@tonic-gate 				switch (scf_error()) {
13100Sstevel@tonic-gate 				case SCF_ERROR_CONNECTION_BROKEN:
13110Sstevel@tonic-gate 				default:
13120Sstevel@tonic-gate 					ret = ECONNABORTED;
13130Sstevel@tonic-gate 					goto out;
13140Sstevel@tonic-gate 
13150Sstevel@tonic-gate 				case SCF_ERROR_DELETED:
13160Sstevel@tonic-gate 					scf_entry_destroy(t_cid);
13170Sstevel@tonic-gate 					goto add;
13180Sstevel@tonic-gate 
13190Sstevel@tonic-gate 				case SCF_ERROR_NOT_FOUND:
13200Sstevel@tonic-gate 					goto new;
13210Sstevel@tonic-gate 
13220Sstevel@tonic-gate 				case SCF_ERROR_HANDLE_MISMATCH:
13230Sstevel@tonic-gate 				case SCF_ERROR_INVALID_ARGUMENT:
13240Sstevel@tonic-gate 				case SCF_ERROR_IN_USE:
13250Sstevel@tonic-gate 				case SCF_ERROR_NOT_SET:
13260Sstevel@tonic-gate 					bad_fail(
13270Sstevel@tonic-gate 					"scf_transaction_propert_change_type",
13280Sstevel@tonic-gate 					    scf_error());
13290Sstevel@tonic-gate 				}
13300Sstevel@tonic-gate 			}
13310Sstevel@tonic-gate 
13320Sstevel@tonic-gate 			if (scf_property_is_type(prop, SCF_TYPE_COUNT) == 0) {
13330Sstevel@tonic-gate 				if (scf_iter_property_values(iter, prop) != 0) {
13340Sstevel@tonic-gate 					switch (scf_error()) {
13350Sstevel@tonic-gate 					case SCF_ERROR_CONNECTION_BROKEN:
13360Sstevel@tonic-gate 					default:
13370Sstevel@tonic-gate 						ret = ECONNABORTED;
13380Sstevel@tonic-gate 						goto out;
13390Sstevel@tonic-gate 
13400Sstevel@tonic-gate 					case SCF_ERROR_NOT_SET:
13410Sstevel@tonic-gate 					case SCF_ERROR_HANDLE_MISMATCH:
13420Sstevel@tonic-gate 						bad_fail(
13430Sstevel@tonic-gate 						    "scf_iter_property_values",
13440Sstevel@tonic-gate 						    scf_error());
13450Sstevel@tonic-gate 					}
13460Sstevel@tonic-gate 				}
13470Sstevel@tonic-gate 
13480Sstevel@tonic-gate next_val:
13490Sstevel@tonic-gate 				val = scf_value_create(h);
13500Sstevel@tonic-gate 				if (val == NULL) {
13510Sstevel@tonic-gate 					assert(scf_error() ==
13520Sstevel@tonic-gate 					    SCF_ERROR_NO_MEMORY);
13530Sstevel@tonic-gate 					ret = ENOMEM;
13540Sstevel@tonic-gate 					goto out;
13550Sstevel@tonic-gate 				}
13560Sstevel@tonic-gate 
13570Sstevel@tonic-gate 				ret = scf_iter_next_value(iter, val);
13580Sstevel@tonic-gate 				if (ret == -1) {
13590Sstevel@tonic-gate 					switch (scf_error()) {
13600Sstevel@tonic-gate 					case SCF_ERROR_CONNECTION_BROKEN:
13610Sstevel@tonic-gate 					default:
13620Sstevel@tonic-gate 						ret = ECONNABORTED;
13630Sstevel@tonic-gate 						goto out;
13640Sstevel@tonic-gate 
13650Sstevel@tonic-gate 					case SCF_ERROR_DELETED:
13660Sstevel@tonic-gate 						scf_value_destroy(val);
13670Sstevel@tonic-gate 						goto add;
13680Sstevel@tonic-gate 
13690Sstevel@tonic-gate 					case SCF_ERROR_HANDLE_MISMATCH:
13700Sstevel@tonic-gate 					case SCF_ERROR_INVALID_ARGUMENT:
13710Sstevel@tonic-gate 						bad_fail(
13720Sstevel@tonic-gate 						    "scf_iter_next_value",
13730Sstevel@tonic-gate 						    scf_error());
13740Sstevel@tonic-gate 					}
13750Sstevel@tonic-gate 				}
13760Sstevel@tonic-gate 
13770Sstevel@tonic-gate 				if (ret == 1) {
13780Sstevel@tonic-gate 					ret = scf_entry_add_value(t_cid, val);
13790Sstevel@tonic-gate 					assert(ret == 0);
13800Sstevel@tonic-gate 
13810Sstevel@tonic-gate 					goto next_val;
13820Sstevel@tonic-gate 				}
13830Sstevel@tonic-gate 
13840Sstevel@tonic-gate 				scf_value_destroy(val);
13850Sstevel@tonic-gate 			} else {
13860Sstevel@tonic-gate 				switch (scf_error()) {
13870Sstevel@tonic-gate 				case SCF_ERROR_CONNECTION_BROKEN:
13880Sstevel@tonic-gate 				default:
13890Sstevel@tonic-gate 					ret = ECONNABORTED;
13900Sstevel@tonic-gate 					goto out;
13910Sstevel@tonic-gate 
13920Sstevel@tonic-gate 				case SCF_ERROR_TYPE_MISMATCH:
13930Sstevel@tonic-gate 					break;
13940Sstevel@tonic-gate 
13950Sstevel@tonic-gate 				case SCF_ERROR_INVALID_ARGUMENT:
13960Sstevel@tonic-gate 				case SCF_ERROR_NOT_SET:
13970Sstevel@tonic-gate 					bad_fail("scf_property_is_type",
13980Sstevel@tonic-gate 					    scf_error());
13990Sstevel@tonic-gate 				}
14000Sstevel@tonic-gate 			}
14010Sstevel@tonic-gate 		} else {
14020Sstevel@tonic-gate 			switch (scf_error()) {
14030Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
14040Sstevel@tonic-gate 			default:
14050Sstevel@tonic-gate 				ret = ECONNABORTED;
14060Sstevel@tonic-gate 				goto out;
14070Sstevel@tonic-gate 
14080Sstevel@tonic-gate 			case SCF_ERROR_DELETED:
14090Sstevel@tonic-gate 				scf_entry_destroy(t_cid);
14100Sstevel@tonic-gate 				goto add;
14110Sstevel@tonic-gate 
14120Sstevel@tonic-gate 			case SCF_ERROR_NOT_FOUND:
14130Sstevel@tonic-gate 				break;
14140Sstevel@tonic-gate 
14150Sstevel@tonic-gate 			case SCF_ERROR_HANDLE_MISMATCH:
14160Sstevel@tonic-gate 			case SCF_ERROR_INVALID_ARGUMENT:
14170Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
14180Sstevel@tonic-gate 				bad_fail("scf_pg_get_property", scf_error());
14190Sstevel@tonic-gate 			}
14200Sstevel@tonic-gate 
14210Sstevel@tonic-gate new:
14220Sstevel@tonic-gate 			if (scf_transaction_property_new(t, t_cid, pname,
14230Sstevel@tonic-gate 			    SCF_TYPE_COUNT) != 0) {
14240Sstevel@tonic-gate 				switch (scf_error()) {
14250Sstevel@tonic-gate 				case SCF_ERROR_CONNECTION_BROKEN:
14260Sstevel@tonic-gate 				default:
14270Sstevel@tonic-gate 					ret = ECONNABORTED;
14280Sstevel@tonic-gate 					goto out;
14290Sstevel@tonic-gate 
14300Sstevel@tonic-gate 				case SCF_ERROR_DELETED:
14310Sstevel@tonic-gate 					scf_entry_destroy(t_cid);
14320Sstevel@tonic-gate 					goto add;
14330Sstevel@tonic-gate 
14340Sstevel@tonic-gate 				case SCF_ERROR_EXISTS:
14350Sstevel@tonic-gate 					goto replace;
14360Sstevel@tonic-gate 
14370Sstevel@tonic-gate 				case SCF_ERROR_HANDLE_MISMATCH:
14380Sstevel@tonic-gate 				case SCF_ERROR_INVALID_ARGUMENT:
14390Sstevel@tonic-gate 				case SCF_ERROR_NOT_SET:
14400Sstevel@tonic-gate 					bad_fail("scf_transaction_property_new",
14410Sstevel@tonic-gate 					    scf_error());
14420Sstevel@tonic-gate 				}
14430Sstevel@tonic-gate 			}
14440Sstevel@tonic-gate 		}
14450Sstevel@tonic-gate 
14460Sstevel@tonic-gate 		val = scf_value_create(h);
14470Sstevel@tonic-gate 		if (val == NULL) {
14480Sstevel@tonic-gate 			assert(scf_error() == SCF_ERROR_NO_MEMORY);
14490Sstevel@tonic-gate 			ret = ENOMEM;
14500Sstevel@tonic-gate 			goto out;
14510Sstevel@tonic-gate 		}
14520Sstevel@tonic-gate 
14530Sstevel@tonic-gate 		scf_value_set_count(val, contract_id);
14540Sstevel@tonic-gate 		ret = scf_entry_add_value(t_cid, val);
14550Sstevel@tonic-gate 		assert(ret == 0);
14560Sstevel@tonic-gate 
14570Sstevel@tonic-gate 		ret = scf_transaction_commit(t);
14580Sstevel@tonic-gate 		if (ret == -1) {
14590Sstevel@tonic-gate 			switch (scf_error()) {
14600Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
14610Sstevel@tonic-gate 			default:
14620Sstevel@tonic-gate 				ret = ECONNABORTED;
14630Sstevel@tonic-gate 				goto out;
14640Sstevel@tonic-gate 
14650Sstevel@tonic-gate 			case SCF_ERROR_DELETED:
14660Sstevel@tonic-gate 				goto add;
14670Sstevel@tonic-gate 
14680Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
14690Sstevel@tonic-gate 				ret = EPERM;
14700Sstevel@tonic-gate 				goto out;
14710Sstevel@tonic-gate 
14720Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_ACCESS:
14730Sstevel@tonic-gate 				ret = EACCES;
14740Sstevel@tonic-gate 				goto out;
14750Sstevel@tonic-gate 
14760Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
14770Sstevel@tonic-gate 				ret = EROFS;
14780Sstevel@tonic-gate 				goto out;
14790Sstevel@tonic-gate 
14800Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
14810Sstevel@tonic-gate 				bad_fail("scf_transaction_commit", scf_error());
14820Sstevel@tonic-gate 			}
14830Sstevel@tonic-gate 		}
14840Sstevel@tonic-gate 		if (ret == 1) {
14850Sstevel@tonic-gate 			ret = 0;
14860Sstevel@tonic-gate 			break;
14870Sstevel@tonic-gate 		}
14880Sstevel@tonic-gate 
14890Sstevel@tonic-gate 		scf_transaction_destroy_children(t);
14900Sstevel@tonic-gate 		if (scf_pg_update(pg) == -1) {
14910Sstevel@tonic-gate 			switch (scf_error()) {
14920Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
14930Sstevel@tonic-gate 			default:
14940Sstevel@tonic-gate 				ret = ECONNABORTED;
14950Sstevel@tonic-gate 				goto out;
14960Sstevel@tonic-gate 
14970Sstevel@tonic-gate 			case SCF_ERROR_DELETED:
14980Sstevel@tonic-gate 				goto add;
14990Sstevel@tonic-gate 
15000Sstevel@tonic-gate 			case SCF_ERROR_NOT_SET:
15010Sstevel@tonic-gate 				bad_fail("scf_pg_update", scf_error());
15020Sstevel@tonic-gate 			}
15030Sstevel@tonic-gate 		}
15040Sstevel@tonic-gate 	}
15050Sstevel@tonic-gate 
15060Sstevel@tonic-gate out:
15070Sstevel@tonic-gate 	scf_transaction_destroy_children(t);
15080Sstevel@tonic-gate 	scf_transaction_destroy(t);
15090Sstevel@tonic-gate 	scf_iter_destroy(iter);
15100Sstevel@tonic-gate 	scf_property_destroy(prop);
15110Sstevel@tonic-gate 	scf_pg_destroy(pg);
15120Sstevel@tonic-gate 
15130Sstevel@tonic-gate 	return (ret);
15140Sstevel@tonic-gate }
15150Sstevel@tonic-gate 
15160Sstevel@tonic-gate int
15170Sstevel@tonic-gate restarter_rm_libs_loadable()
15180Sstevel@tonic-gate {
15190Sstevel@tonic-gate 	void *libhndl;
15200Sstevel@tonic-gate 
15210Sstevel@tonic-gate 	if (method_context_safety)
15220Sstevel@tonic-gate 		return (1);
15230Sstevel@tonic-gate 
15240Sstevel@tonic-gate 	if ((libhndl = dlopen("libpool.so", RTLD_LAZY | RTLD_LOCAL)) == NULL)
15250Sstevel@tonic-gate 		return (0);
15260Sstevel@tonic-gate 
15270Sstevel@tonic-gate 	(void) dlclose(libhndl);
15280Sstevel@tonic-gate 
15290Sstevel@tonic-gate 	if ((libhndl = dlopen("libproject.so", RTLD_LAZY | RTLD_LOCAL)) == NULL)
15300Sstevel@tonic-gate 		return (0);
15310Sstevel@tonic-gate 
15320Sstevel@tonic-gate 	(void) dlclose(libhndl);
15330Sstevel@tonic-gate 
15340Sstevel@tonic-gate 	method_context_safety = 1;
15350Sstevel@tonic-gate 
15360Sstevel@tonic-gate 	return (1);
15370Sstevel@tonic-gate }
15380Sstevel@tonic-gate 
15390Sstevel@tonic-gate 
15400Sstevel@tonic-gate static int
15410Sstevel@tonic-gate get_astring_val(scf_propertygroup_t *pg, const char *name, char *buf,
15420Sstevel@tonic-gate     size_t bufsz, scf_property_t *prop, scf_value_t *val)
15430Sstevel@tonic-gate {
15440Sstevel@tonic-gate 	ssize_t szret;
15450Sstevel@tonic-gate 
15460Sstevel@tonic-gate 	if (scf_pg_get_property(pg, name, prop) != SCF_SUCCESS) {
15470Sstevel@tonic-gate 		if (scf_error() == SCF_ERROR_CONNECTION_BROKEN)
15480Sstevel@tonic-gate 			uu_die(rcbroken);
15490Sstevel@tonic-gate 		return (-1);
15500Sstevel@tonic-gate 	}
15510Sstevel@tonic-gate 
15520Sstevel@tonic-gate 	if (scf_property_get_value(prop, val) != SCF_SUCCESS) {
15530Sstevel@tonic-gate 		if (scf_error() == SCF_ERROR_CONNECTION_BROKEN)
15540Sstevel@tonic-gate 			uu_die(rcbroken);
15550Sstevel@tonic-gate 		return (-1);
15560Sstevel@tonic-gate 	}
15570Sstevel@tonic-gate 
15580Sstevel@tonic-gate 	szret = scf_value_get_astring(val, buf, bufsz);
15590Sstevel@tonic-gate 
15600Sstevel@tonic-gate 	return (szret >= 0 ? 0 : -1);
15610Sstevel@tonic-gate }
15620Sstevel@tonic-gate 
15630Sstevel@tonic-gate /*
15640Sstevel@tonic-gate  * Try to load mcp->pwd, if it isn't already.
15650Sstevel@tonic-gate  * Fails with
15660Sstevel@tonic-gate  *   ENOMEM - malloc() failed
15670Sstevel@tonic-gate  *   ENOENT - no entry found
15680Sstevel@tonic-gate  *   EIO - I/O error
15690Sstevel@tonic-gate  *   EMFILE - process out of file descriptors
15700Sstevel@tonic-gate  *   ENFILE - system out of file handles
15710Sstevel@tonic-gate  */
15720Sstevel@tonic-gate static int
15730Sstevel@tonic-gate lookup_pwd(struct method_context *mcp)
15740Sstevel@tonic-gate {
15750Sstevel@tonic-gate 	struct passwd *pwdp;
15760Sstevel@tonic-gate 
15770Sstevel@tonic-gate 	if (mcp->pwbuf != NULL && mcp->pwd.pw_uid == mcp->uid)
15780Sstevel@tonic-gate 		return (0);
15790Sstevel@tonic-gate 
15800Sstevel@tonic-gate 	if (mcp->pwbuf == NULL) {
15810Sstevel@tonic-gate 		mcp->pwbufsz = sysconf(_SC_GETPW_R_SIZE_MAX);
15820Sstevel@tonic-gate 		assert(mcp->pwbufsz >= 0);
15830Sstevel@tonic-gate 		mcp->pwbuf = malloc(mcp->pwbufsz);
15840Sstevel@tonic-gate 		if (mcp->pwbuf == NULL)
15850Sstevel@tonic-gate 			return (ENOMEM);
15860Sstevel@tonic-gate 	}
15870Sstevel@tonic-gate 
15880Sstevel@tonic-gate 	do {
15890Sstevel@tonic-gate 		errno = 0;
15900Sstevel@tonic-gate 		pwdp = getpwuid_r(mcp->uid, &mcp->pwd, mcp->pwbuf,
15910Sstevel@tonic-gate 		    mcp->pwbufsz);
15920Sstevel@tonic-gate 	} while (pwdp == NULL && errno == EINTR);
15930Sstevel@tonic-gate 	if (pwdp != NULL)
15940Sstevel@tonic-gate 		return (0);
15950Sstevel@tonic-gate 
15960Sstevel@tonic-gate 	free(mcp->pwbuf);
15970Sstevel@tonic-gate 	mcp->pwbuf = NULL;
15980Sstevel@tonic-gate 
15990Sstevel@tonic-gate 	switch (errno) {
16000Sstevel@tonic-gate 	case 0:
16010Sstevel@tonic-gate 	default:
16020Sstevel@tonic-gate 		/*
16030Sstevel@tonic-gate 		 * Until bug 5065780 is fixed, getpwuid_r() can fail with
16040Sstevel@tonic-gate 		 * ENOENT, particularly on the miniroot.  Since the
16050Sstevel@tonic-gate 		 * documentation is inaccurate, we'll return ENOENT for unknown
16060Sstevel@tonic-gate 		 * errors.
16070Sstevel@tonic-gate 		 */
16080Sstevel@tonic-gate 		return (ENOENT);
16090Sstevel@tonic-gate 
16100Sstevel@tonic-gate 	case EIO:
16110Sstevel@tonic-gate 	case EMFILE:
16120Sstevel@tonic-gate 	case ENFILE:
16130Sstevel@tonic-gate 		return (errno);
16140Sstevel@tonic-gate 
16150Sstevel@tonic-gate 	case ERANGE:
16160Sstevel@tonic-gate 		bad_fail("getpwuid_r", errno);
16170Sstevel@tonic-gate 		/* NOTREACHED */
16180Sstevel@tonic-gate 	}
16190Sstevel@tonic-gate }
16200Sstevel@tonic-gate 
16210Sstevel@tonic-gate /*
16220Sstevel@tonic-gate  * Get the user id for str.  Returns 0 on success or
16230Sstevel@tonic-gate  *   ERANGE	the uid is too big
16240Sstevel@tonic-gate  *   EINVAL	the string starts with a digit, but is not a valid uid
16250Sstevel@tonic-gate  *   ENOMEM	out of memory
16260Sstevel@tonic-gate  *   ENOENT	no passwd entry for str
16270Sstevel@tonic-gate  *   EIO	an I/O error has occurred
16280Sstevel@tonic-gate  *   EMFILE/ENFILE  out of file descriptors
16290Sstevel@tonic-gate  */
16300Sstevel@tonic-gate int
16310Sstevel@tonic-gate get_uid(const char *str, struct method_context *ci, uid_t *uidp)
16320Sstevel@tonic-gate {
16330Sstevel@tonic-gate 	if (isdigit(str[0])) {
16340Sstevel@tonic-gate 		uid_t uid;
16350Sstevel@tonic-gate 		char *cp;
16360Sstevel@tonic-gate 
16370Sstevel@tonic-gate 		errno = 0;
16380Sstevel@tonic-gate 		uid = strtol(str, &cp, 10);
16390Sstevel@tonic-gate 
16400Sstevel@tonic-gate 		if (uid == 0 && errno != 0) {
16410Sstevel@tonic-gate 			assert(errno != EINVAL);
16420Sstevel@tonic-gate 			return (errno);
16430Sstevel@tonic-gate 		}
16440Sstevel@tonic-gate 
16450Sstevel@tonic-gate 		for (; *cp != '\0'; ++cp)
16460Sstevel@tonic-gate 			if (*cp != ' ' || *cp != '\t')
16470Sstevel@tonic-gate 				return (EINVAL);
16480Sstevel@tonic-gate 
16490Sstevel@tonic-gate 		if (uid > UID_MAX)
16500Sstevel@tonic-gate 			return (EINVAL);
16510Sstevel@tonic-gate 
16520Sstevel@tonic-gate 		*uidp = uid;
16530Sstevel@tonic-gate 		return (0);
16540Sstevel@tonic-gate 	} else {
16550Sstevel@tonic-gate 		struct passwd *pwdp;
16560Sstevel@tonic-gate 
16570Sstevel@tonic-gate 		if (ci->pwbuf == NULL) {
16580Sstevel@tonic-gate 			ci->pwbufsz = sysconf(_SC_GETPW_R_SIZE_MAX);
16590Sstevel@tonic-gate 			ci->pwbuf = malloc(ci->pwbufsz);
16600Sstevel@tonic-gate 			if (ci->pwbuf == NULL)
16610Sstevel@tonic-gate 				return (ENOMEM);
16620Sstevel@tonic-gate 		}
16630Sstevel@tonic-gate 
16640Sstevel@tonic-gate 		do {
16650Sstevel@tonic-gate 			errno = 0;
16660Sstevel@tonic-gate 			pwdp =
16670Sstevel@tonic-gate 			    getpwnam_r(str, &ci->pwd, ci->pwbuf, ci->pwbufsz);
16680Sstevel@tonic-gate 		} while (pwdp == NULL && errno == EINTR);
16690Sstevel@tonic-gate 
16700Sstevel@tonic-gate 		if (pwdp != NULL) {
16710Sstevel@tonic-gate 			*uidp = ci->pwd.pw_uid;
16720Sstevel@tonic-gate 			return (0);
16730Sstevel@tonic-gate 		} else {
16740Sstevel@tonic-gate 			free(ci->pwbuf);
16750Sstevel@tonic-gate 			ci->pwbuf = NULL;
16760Sstevel@tonic-gate 			switch (errno) {
16770Sstevel@tonic-gate 			case 0:
16780Sstevel@tonic-gate 				return (ENOENT);
16790Sstevel@tonic-gate 
16800Sstevel@tonic-gate 			case ENOENT:
16810Sstevel@tonic-gate 			case EIO:
16820Sstevel@tonic-gate 			case EMFILE:
16830Sstevel@tonic-gate 			case ENFILE:
16840Sstevel@tonic-gate 				return (errno);
16850Sstevel@tonic-gate 
16860Sstevel@tonic-gate 			case ERANGE:
16870Sstevel@tonic-gate 			default:
16880Sstevel@tonic-gate 				bad_fail("getpwnam_r", errno);
16890Sstevel@tonic-gate 				/* NOTREACHED */
16900Sstevel@tonic-gate 			}
16910Sstevel@tonic-gate 		}
16920Sstevel@tonic-gate 	}
16930Sstevel@tonic-gate }
16940Sstevel@tonic-gate 
16950Sstevel@tonic-gate gid_t
16960Sstevel@tonic-gate get_gid(const char *str)
16970Sstevel@tonic-gate {
16980Sstevel@tonic-gate 	if (isdigit(str[0])) {
16990Sstevel@tonic-gate 		gid_t gid;
17000Sstevel@tonic-gate 		char *cp;
17010Sstevel@tonic-gate 
17020Sstevel@tonic-gate 		errno = 0;
17030Sstevel@tonic-gate 		gid = strtol(str, &cp, 10);
17040Sstevel@tonic-gate 
17050Sstevel@tonic-gate 		if (gid == 0 && errno != 0)
17060Sstevel@tonic-gate 			return (-1);
17070Sstevel@tonic-gate 
17080Sstevel@tonic-gate 		for (; *cp != '\0'; ++cp)
17090Sstevel@tonic-gate 			if (*cp != ' ' || *cp != '\t')
17100Sstevel@tonic-gate 				return (-1);
17110Sstevel@tonic-gate 
17120Sstevel@tonic-gate 		return (gid);
17130Sstevel@tonic-gate 	} else {
17140Sstevel@tonic-gate 		struct group grp, *ret;
17150Sstevel@tonic-gate 		char *buffer;
17160Sstevel@tonic-gate 		size_t buflen;
17170Sstevel@tonic-gate 
17180Sstevel@tonic-gate 		buflen = sysconf(_SC_GETGR_R_SIZE_MAX);
17190Sstevel@tonic-gate 		buffer = malloc(buflen);
17200Sstevel@tonic-gate 		if (buffer == NULL)
17210Sstevel@tonic-gate 			uu_die(allocfail);
17220Sstevel@tonic-gate 
17230Sstevel@tonic-gate 		errno = 0;
17240Sstevel@tonic-gate 		ret = getgrnam_r(str, &grp, buffer, buflen);
17250Sstevel@tonic-gate 		free(buffer);
17260Sstevel@tonic-gate 
17270Sstevel@tonic-gate 		return (ret == NULL ? -1 : grp.gr_gid);
17280Sstevel@tonic-gate 	}
17290Sstevel@tonic-gate }
17300Sstevel@tonic-gate 
17310Sstevel@tonic-gate /*
17320Sstevel@tonic-gate  * Fails with
17330Sstevel@tonic-gate  *   ENOMEM - out of memory
17340Sstevel@tonic-gate  *   ENOENT - no passwd entry
17350Sstevel@tonic-gate  *	      no project entry
17360Sstevel@tonic-gate  *   EIO - an I/O error occurred
17370Sstevel@tonic-gate  *   EMFILE - the process is out of file descriptors
17380Sstevel@tonic-gate  *   ENFILE - the system is out of file handles
17390Sstevel@tonic-gate  *   ERANGE - the project id is out of range
17400Sstevel@tonic-gate  *   EINVAL - str is invalid
17410Sstevel@tonic-gate  *   E2BIG - the project entry was too big
17420Sstevel@tonic-gate  *   -1 - the name service switch is misconfigured
17430Sstevel@tonic-gate  */
17440Sstevel@tonic-gate int
17450Sstevel@tonic-gate get_projid(const char *str, struct method_context *cip)
17460Sstevel@tonic-gate {
17470Sstevel@tonic-gate 	int ret;
17480Sstevel@tonic-gate 	void *buf;
17490Sstevel@tonic-gate 	const size_t bufsz = PROJECT_BUFSZ;
17500Sstevel@tonic-gate 	struct project proj, *pp;
17510Sstevel@tonic-gate 
17520Sstevel@tonic-gate 	if (strcmp(str, ":default") == 0) {
17530Sstevel@tonic-gate 		if (cip->uid == 0) {
17540Sstevel@tonic-gate 			/* Don't change project for root services */
17550Sstevel@tonic-gate 			cip->project = NULL;
17560Sstevel@tonic-gate 			return (0);
17570Sstevel@tonic-gate 		}
17580Sstevel@tonic-gate 
17590Sstevel@tonic-gate 		switch (ret = lookup_pwd(cip)) {
17600Sstevel@tonic-gate 		case 0:
17610Sstevel@tonic-gate 			break;
17620Sstevel@tonic-gate 
17630Sstevel@tonic-gate 		case ENOMEM:
17640Sstevel@tonic-gate 		case ENOENT:
17650Sstevel@tonic-gate 		case EIO:
17660Sstevel@tonic-gate 		case EMFILE:
17670Sstevel@tonic-gate 		case ENFILE:
17680Sstevel@tonic-gate 			return (ret);
17690Sstevel@tonic-gate 
17700Sstevel@tonic-gate 		default:
17710Sstevel@tonic-gate 			bad_fail("lookup_pwd", ret);
17720Sstevel@tonic-gate 		}
17730Sstevel@tonic-gate 
17740Sstevel@tonic-gate 		buf = malloc(bufsz);
17750Sstevel@tonic-gate 		if (buf == NULL)
17760Sstevel@tonic-gate 			return (ENOMEM);
17770Sstevel@tonic-gate 
17780Sstevel@tonic-gate 		do {
17790Sstevel@tonic-gate 			errno = 0;
17800Sstevel@tonic-gate 			pp = getdefaultproj(cip->pwd.pw_name, &proj, buf,
17810Sstevel@tonic-gate 			    bufsz);
17820Sstevel@tonic-gate 		} while (pp == NULL && errno == EINTR);
17830Sstevel@tonic-gate 
17840Sstevel@tonic-gate 		/* to be continued ... */
17850Sstevel@tonic-gate 	} else {
17860Sstevel@tonic-gate 		projid_t projid;
17870Sstevel@tonic-gate 		char *cp;
17880Sstevel@tonic-gate 
17890Sstevel@tonic-gate 		if (!isdigit(str[0])) {
17900Sstevel@tonic-gate 			cip->project = strdup(str);
17910Sstevel@tonic-gate 			return (cip->project != NULL ? 0 : ENOMEM);
17920Sstevel@tonic-gate 		}
17930Sstevel@tonic-gate 
17940Sstevel@tonic-gate 		errno = 0;
17950Sstevel@tonic-gate 		projid = strtol(str, &cp, 10);
17960Sstevel@tonic-gate 
17970Sstevel@tonic-gate 		if (projid == 0 && errno != 0) {
17980Sstevel@tonic-gate 			assert(errno == ERANGE);
17990Sstevel@tonic-gate 			return (errno);
18000Sstevel@tonic-gate 		}
18010Sstevel@tonic-gate 
18020Sstevel@tonic-gate 		for (; *cp != '\0'; ++cp)
18030Sstevel@tonic-gate 			if (*cp != ' ' || *cp != '\t')
18040Sstevel@tonic-gate 				return (EINVAL);
18050Sstevel@tonic-gate 
18060Sstevel@tonic-gate 		if (projid > MAXPROJID)
18070Sstevel@tonic-gate 			return (ERANGE);
18080Sstevel@tonic-gate 
18090Sstevel@tonic-gate 		buf = malloc(bufsz);
18100Sstevel@tonic-gate 		if (buf == NULL)
18110Sstevel@tonic-gate 			return (ENOMEM);
18120Sstevel@tonic-gate 
18130Sstevel@tonic-gate 		do {
18140Sstevel@tonic-gate 			errno = 0;
18150Sstevel@tonic-gate 			pp = getprojbyid(projid, &proj, buf, bufsz);
18160Sstevel@tonic-gate 		} while (pp == NULL && errno == EINTR);
18170Sstevel@tonic-gate 	}
18180Sstevel@tonic-gate 
18190Sstevel@tonic-gate 	if (pp) {
18200Sstevel@tonic-gate 		cip->project = strdup(pp->pj_name);
18210Sstevel@tonic-gate 		free(buf);
18220Sstevel@tonic-gate 		return (cip->project != NULL ? 0 : ENOMEM);
18230Sstevel@tonic-gate 	}
18240Sstevel@tonic-gate 
18250Sstevel@tonic-gate 	free(buf);
18260Sstevel@tonic-gate 
18270Sstevel@tonic-gate 	switch (errno) {
18280Sstevel@tonic-gate 	case 0:
18290Sstevel@tonic-gate 		return (ENOENT);
18300Sstevel@tonic-gate 
18310Sstevel@tonic-gate 	case EIO:
18320Sstevel@tonic-gate 	case EMFILE:
18330Sstevel@tonic-gate 	case ENFILE:
18340Sstevel@tonic-gate 		return (errno);
18350Sstevel@tonic-gate 
18360Sstevel@tonic-gate 	case ERANGE:
18370Sstevel@tonic-gate 		return (E2BIG);
18380Sstevel@tonic-gate 
18390Sstevel@tonic-gate 	default:
18400Sstevel@tonic-gate 		return (-1);
18410Sstevel@tonic-gate 	}
18420Sstevel@tonic-gate }
18430Sstevel@tonic-gate 
18440Sstevel@tonic-gate /*
18450Sstevel@tonic-gate  * Parse the supp_groups property value and populate ci->groups.  Returns
18460Sstevel@tonic-gate  * EINVAL (get_gid() failed for one of the components), E2BIG (the property has
18470Sstevel@tonic-gate  * more than NGROUPS_MAX-1 groups), or 0 on success.
18480Sstevel@tonic-gate  */
18490Sstevel@tonic-gate int
18500Sstevel@tonic-gate get_groups(char *str, struct method_context *ci)
18510Sstevel@tonic-gate {
18520Sstevel@tonic-gate 	char *cp, *end, *next;
18530Sstevel@tonic-gate 	uint_t i;
18540Sstevel@tonic-gate 
18550Sstevel@tonic-gate 	const char * const whitespace = " \t";
18560Sstevel@tonic-gate 	const char * const illegal = ", \t";
18570Sstevel@tonic-gate 
18580Sstevel@tonic-gate 	if (str[0] == '\0') {
18590Sstevel@tonic-gate 		ci->ngroups = 0;
18600Sstevel@tonic-gate 		return (0);
18610Sstevel@tonic-gate 	}
18620Sstevel@tonic-gate 
18630Sstevel@tonic-gate 	for (cp = str, i = 0; *cp != '\0'; ) {
18640Sstevel@tonic-gate 		/* skip whitespace */
18650Sstevel@tonic-gate 		cp += strspn(cp, whitespace);
18660Sstevel@tonic-gate 
18670Sstevel@tonic-gate 		/* find the end */
18680Sstevel@tonic-gate 		end = cp + strcspn(cp, illegal);
18690Sstevel@tonic-gate 
18700Sstevel@tonic-gate 		/* skip whitespace after end */
18710Sstevel@tonic-gate 		next = end + strspn(end, whitespace);
18720Sstevel@tonic-gate 
18730Sstevel@tonic-gate 		/* if there's a comma, it separates the fields */
18740Sstevel@tonic-gate 		if (*next == ',')
18750Sstevel@tonic-gate 			++next;
18760Sstevel@tonic-gate 
18770Sstevel@tonic-gate 		*end = '\0';
18780Sstevel@tonic-gate 
18790Sstevel@tonic-gate 		if ((ci->groups[i] = get_gid(cp)) == -1) {
18800Sstevel@tonic-gate 			ci->ngroups = 0;
18810Sstevel@tonic-gate 			return (EINVAL);
18820Sstevel@tonic-gate 		}
18830Sstevel@tonic-gate 
18840Sstevel@tonic-gate 		++i;
18850Sstevel@tonic-gate 		if (i > NGROUPS_MAX - 1) {
18860Sstevel@tonic-gate 			ci->ngroups = 0;
18870Sstevel@tonic-gate 			return (E2BIG);
18880Sstevel@tonic-gate 		}
18890Sstevel@tonic-gate 
18900Sstevel@tonic-gate 		cp = next;
18910Sstevel@tonic-gate 	}
18920Sstevel@tonic-gate 
18930Sstevel@tonic-gate 	ci->ngroups = i;
18940Sstevel@tonic-gate 	return (0);
18950Sstevel@tonic-gate }
18960Sstevel@tonic-gate 
18970Sstevel@tonic-gate /*
18980Sstevel@tonic-gate  * Eventually, we will return a structured error in the case of
18990Sstevel@tonic-gate  * retryable or abortable failures such as memory allocation errors and
19000Sstevel@tonic-gate  * repository connection failures.  For now, these failures are just
19010Sstevel@tonic-gate  * encoded in the failure string.
19020Sstevel@tonic-gate  */
19030Sstevel@tonic-gate static const char *
19040Sstevel@tonic-gate get_profile(scf_propertygroup_t *pg, scf_property_t *prop, scf_value_t *val,
19050Sstevel@tonic-gate     const char *cmdline, struct method_context *ci)
19060Sstevel@tonic-gate {
19070Sstevel@tonic-gate 	char *buf = ci->vbuf;
19080Sstevel@tonic-gate 	ssize_t buf_sz = ci->vbuf_sz;
19090Sstevel@tonic-gate 	char cmd[PATH_MAX];
19100Sstevel@tonic-gate 	char *cp, *value;
19110Sstevel@tonic-gate 	const char *cmdp;
19120Sstevel@tonic-gate 	execattr_t *eap;
19130Sstevel@tonic-gate 	char *errstr = NULL;
19140Sstevel@tonic-gate 
19150Sstevel@tonic-gate 	if (get_astring_val(pg, SCF_PROPERTY_PROFILE, buf, buf_sz, prop, val) !=
19160Sstevel@tonic-gate 	    0)
19170Sstevel@tonic-gate 		return ("Could not get profile property.");
19180Sstevel@tonic-gate 
19190Sstevel@tonic-gate 	/* Extract the command from the command line. */
19200Sstevel@tonic-gate 	cp = strpbrk(cmdline, " \t");
19210Sstevel@tonic-gate 
19220Sstevel@tonic-gate 	if (cp == NULL) {
19230Sstevel@tonic-gate 		cmdp = cmdline;
19240Sstevel@tonic-gate 	} else {
19250Sstevel@tonic-gate 		(void) strncpy(cmd, cmdline, cp - cmdline);
19260Sstevel@tonic-gate 		cmd[cp - cmdline] = '\0';
19270Sstevel@tonic-gate 		cmdp = cmd;
19280Sstevel@tonic-gate 	}
19290Sstevel@tonic-gate 
19300Sstevel@tonic-gate 	/* Require that cmdp[0] == '/'? */
19310Sstevel@tonic-gate 
19320Sstevel@tonic-gate 	eap = getexecprof(buf, KV_COMMAND, cmdp, GET_ONE);
19330Sstevel@tonic-gate 	if (eap == NULL)
19340Sstevel@tonic-gate 		return ("Could not find profile.");
19350Sstevel@tonic-gate 
19360Sstevel@tonic-gate 	/* Based on pfexec.c */
19370Sstevel@tonic-gate 
19380Sstevel@tonic-gate 	/* Get the euid first so we don't override ci->pwd for the uid. */
19390Sstevel@tonic-gate 	if ((value = kva_match(eap->attr, EXECATTR_EUID_KW)) != NULL) {
19400Sstevel@tonic-gate 		if (get_uid(value, ci, &ci->euid) != 0) {
19410Sstevel@tonic-gate 			ci->euid = -1;
19420Sstevel@tonic-gate 			errstr = "Could not interpret profile euid.";
19430Sstevel@tonic-gate 			goto out;
19440Sstevel@tonic-gate 		}
19450Sstevel@tonic-gate 	}
19460Sstevel@tonic-gate 
19470Sstevel@tonic-gate 	if ((value = kva_match(eap->attr, EXECATTR_UID_KW)) != NULL) {
19480Sstevel@tonic-gate 		if (get_uid(value, ci, &ci->uid) != 0) {
19490Sstevel@tonic-gate 			ci->euid = ci->uid = -1;
19500Sstevel@tonic-gate 			errstr = "Could not interpret profile uid.";
19510Sstevel@tonic-gate 			goto out;
19520Sstevel@tonic-gate 		}
19530Sstevel@tonic-gate 		ci->euid = ci->uid;
19540Sstevel@tonic-gate 	}
19550Sstevel@tonic-gate 
19560Sstevel@tonic-gate 	if ((value = kva_match(eap->attr, EXECATTR_GID_KW)) != NULL) {
19570Sstevel@tonic-gate 		ci->egid = ci->gid = get_gid(value);
19580Sstevel@tonic-gate 		if (ci->gid == -1) {
19590Sstevel@tonic-gate 			errstr = "Could not interpret profile gid.";
19600Sstevel@tonic-gate 			goto out;
19610Sstevel@tonic-gate 		}
19620Sstevel@tonic-gate 	}
19630Sstevel@tonic-gate 
19640Sstevel@tonic-gate 	if ((value = kva_match(eap->attr, EXECATTR_EGID_KW)) != NULL) {
19650Sstevel@tonic-gate 		ci->egid = get_gid(value);
19660Sstevel@tonic-gate 		if (ci->egid == -1) {
19670Sstevel@tonic-gate 			errstr = "Could not interpret profile egid.";
19680Sstevel@tonic-gate 			goto out;
19690Sstevel@tonic-gate 		}
19700Sstevel@tonic-gate 	}
19710Sstevel@tonic-gate 
19720Sstevel@tonic-gate 	if ((value = kva_match(eap->attr, EXECATTR_LPRIV_KW)) != NULL) {
19730Sstevel@tonic-gate 		ci->lpriv_set = priv_str_to_set(value, ",", NULL);
19740Sstevel@tonic-gate 		if (ci->lpriv_set == NULL) {
19750Sstevel@tonic-gate 			if (errno != EINVAL)
19760Sstevel@tonic-gate 				errstr = ALLOCFAIL;
19770Sstevel@tonic-gate 			else
19780Sstevel@tonic-gate 				errstr = "Could not interpret profile "
19790Sstevel@tonic-gate 				    "limitprivs.";
19800Sstevel@tonic-gate 			goto out;
19810Sstevel@tonic-gate 		}
19820Sstevel@tonic-gate 	}
19830Sstevel@tonic-gate 
19840Sstevel@tonic-gate 	if ((value = kva_match(eap->attr, EXECATTR_IPRIV_KW)) != NULL) {
19850Sstevel@tonic-gate 		ci->priv_set = priv_str_to_set(value, ",", NULL);
19860Sstevel@tonic-gate 		if (ci->priv_set == NULL) {
19870Sstevel@tonic-gate 			if (errno != EINVAL)
19880Sstevel@tonic-gate 				errstr = ALLOCFAIL;
19890Sstevel@tonic-gate 			else
19900Sstevel@tonic-gate 				errstr = "Could not interpret profile privs.";
19910Sstevel@tonic-gate 			goto out;
19920Sstevel@tonic-gate 		}
19930Sstevel@tonic-gate 	}
19940Sstevel@tonic-gate 
19950Sstevel@tonic-gate out:
19960Sstevel@tonic-gate 	free_execattr(eap);
19970Sstevel@tonic-gate 
19980Sstevel@tonic-gate 	return (errstr);
19990Sstevel@tonic-gate }
20000Sstevel@tonic-gate 
20010Sstevel@tonic-gate /*
20020Sstevel@tonic-gate  * Eventually, we will return a structured error in the case of
20030Sstevel@tonic-gate  * retryable or abortable failures such as memory allocation errors and
20040Sstevel@tonic-gate  * repository connection failures.  For now, these failures are just
20050Sstevel@tonic-gate  * encoded in the failure string.
20060Sstevel@tonic-gate  */
20070Sstevel@tonic-gate static const char *
20080Sstevel@tonic-gate get_ids(scf_propertygroup_t *pg, scf_property_t *prop, scf_value_t *val,
20090Sstevel@tonic-gate     struct method_context *ci)
20100Sstevel@tonic-gate {
20110Sstevel@tonic-gate 	const char *errstr = NULL;
20120Sstevel@tonic-gate 	char *vbuf = ci->vbuf;
20130Sstevel@tonic-gate 	ssize_t vbuf_sz = ci->vbuf_sz;
20140Sstevel@tonic-gate 	int r;
20150Sstevel@tonic-gate 
20160Sstevel@tonic-gate 	if (get_astring_val(pg, SCF_PROPERTY_USER, vbuf, vbuf_sz, prop, val) !=
20170Sstevel@tonic-gate 	    0) {
20180Sstevel@tonic-gate 		errstr = "Could not get user property.";
20190Sstevel@tonic-gate 		goto out;
20200Sstevel@tonic-gate 	}
20210Sstevel@tonic-gate 
20220Sstevel@tonic-gate 	if (get_uid(vbuf, ci, &ci->uid) != 0) {
20230Sstevel@tonic-gate 		ci->uid = -1;
20240Sstevel@tonic-gate 		errstr = "Could not interpret user property.";
20250Sstevel@tonic-gate 		goto out;
20260Sstevel@tonic-gate 	}
20270Sstevel@tonic-gate 
20280Sstevel@tonic-gate 	if (get_astring_val(pg, SCF_PROPERTY_GROUP, vbuf, vbuf_sz, prop, val) !=
20290Sstevel@tonic-gate 	    0) {
20300Sstevel@tonic-gate 		errstr = "Could not get group property.";
20310Sstevel@tonic-gate 		goto out;
20320Sstevel@tonic-gate 	}
20330Sstevel@tonic-gate 
20340Sstevel@tonic-gate 	if (strcmp(vbuf, ":default") != 0) {
20350Sstevel@tonic-gate 		ci->gid = get_gid(vbuf);
20360Sstevel@tonic-gate 		if (ci->gid == -1) {
20370Sstevel@tonic-gate 			errstr = "Could not interpret group property.";
20380Sstevel@tonic-gate 			goto out;
20390Sstevel@tonic-gate 		}
20400Sstevel@tonic-gate 	} else {
20410Sstevel@tonic-gate 		switch (r = lookup_pwd(ci)) {
20420Sstevel@tonic-gate 		case 0:
20430Sstevel@tonic-gate 			ci->gid = ci->pwd.pw_gid;
20440Sstevel@tonic-gate 			break;
20450Sstevel@tonic-gate 
20460Sstevel@tonic-gate 		case ENOENT:
20470Sstevel@tonic-gate 			ci->gid = -1;
20480Sstevel@tonic-gate 			errstr = "No passwd entry.";
20490Sstevel@tonic-gate 			goto out;
20500Sstevel@tonic-gate 
20510Sstevel@tonic-gate 		case ENOMEM:
20520Sstevel@tonic-gate 			errstr = "Out of memory.";
20530Sstevel@tonic-gate 			goto out;
20540Sstevel@tonic-gate 
20550Sstevel@tonic-gate 		case EIO:
20560Sstevel@tonic-gate 		case EMFILE:
20570Sstevel@tonic-gate 		case ENFILE:
20580Sstevel@tonic-gate 			errstr = "getpwuid_r() failed.";
20590Sstevel@tonic-gate 			goto out;
20600Sstevel@tonic-gate 
20610Sstevel@tonic-gate 		default:
20620Sstevel@tonic-gate 			bad_fail("lookup_pwd", r);
20630Sstevel@tonic-gate 		}
20640Sstevel@tonic-gate 	}
20650Sstevel@tonic-gate 
20660Sstevel@tonic-gate 	if (get_astring_val(pg, SCF_PROPERTY_SUPP_GROUPS, vbuf, vbuf_sz, prop,
20670Sstevel@tonic-gate 	    val) != 0) {
20680Sstevel@tonic-gate 		errstr = "Could not get supplemental groups property.";
20690Sstevel@tonic-gate 		goto out;
20700Sstevel@tonic-gate 	}
20710Sstevel@tonic-gate 
20720Sstevel@tonic-gate 	if (strcmp(vbuf, ":default") != 0) {
20730Sstevel@tonic-gate 		switch (r = get_groups(vbuf, ci)) {
20740Sstevel@tonic-gate 		case 0:
20750Sstevel@tonic-gate 			break;
20760Sstevel@tonic-gate 
20770Sstevel@tonic-gate 		case EINVAL:
20780Sstevel@tonic-gate 			errstr =
20790Sstevel@tonic-gate 			    "Could not interpret supplemental groups property.";
20800Sstevel@tonic-gate 			goto out;
20810Sstevel@tonic-gate 
20820Sstevel@tonic-gate 		case E2BIG:
20830Sstevel@tonic-gate 			errstr = "Too many supplemental groups.";
20840Sstevel@tonic-gate 			goto out;
20850Sstevel@tonic-gate 
20860Sstevel@tonic-gate 		default:
20870Sstevel@tonic-gate 			bad_fail("get_groups", r);
20880Sstevel@tonic-gate 		}
20890Sstevel@tonic-gate 	} else {
20900Sstevel@tonic-gate 		ci->ngroups = -1;
20910Sstevel@tonic-gate 	}
20920Sstevel@tonic-gate 
20930Sstevel@tonic-gate 	if (get_astring_val(pg, SCF_PROPERTY_PRIVILEGES, vbuf, vbuf_sz, prop,
20940Sstevel@tonic-gate 	    val) != 0) {
20950Sstevel@tonic-gate 		errstr = "Could not get privileges property.";
20960Sstevel@tonic-gate 		goto out;
20970Sstevel@tonic-gate 	}
20980Sstevel@tonic-gate 
20990Sstevel@tonic-gate 	/*
21000Sstevel@tonic-gate 	 * For default privs, we need to keep priv_set == NULL, as
21010Sstevel@tonic-gate 	 * we use this test elsewhere.
21020Sstevel@tonic-gate 	 */
21030Sstevel@tonic-gate 	if (strcmp(vbuf, ":default") != 0) {
21040Sstevel@tonic-gate 		ci->priv_set = priv_str_to_set(vbuf, ",", NULL);
21050Sstevel@tonic-gate 		if (ci->priv_set == NULL) {
21060Sstevel@tonic-gate 			if (errno != EINVAL) {
21070Sstevel@tonic-gate 				errstr = ALLOCFAIL;
21080Sstevel@tonic-gate 			} else {
21090Sstevel@tonic-gate 				errstr = "Could not interpret privileges "
21100Sstevel@tonic-gate 				    "property.";
21110Sstevel@tonic-gate 			}
21120Sstevel@tonic-gate 			goto out;
21130Sstevel@tonic-gate 		}
21140Sstevel@tonic-gate 	}
21150Sstevel@tonic-gate 
21160Sstevel@tonic-gate 	if (get_astring_val(pg, SCF_PROPERTY_LIMIT_PRIVILEGES, vbuf, vbuf_sz,
21170Sstevel@tonic-gate 	    prop, val) != 0) {
21180Sstevel@tonic-gate 		errstr = "Could not get limit_privileges property.";
21190Sstevel@tonic-gate 		goto out;
21200Sstevel@tonic-gate 	}
21210Sstevel@tonic-gate 
21220Sstevel@tonic-gate 	if (strcmp(vbuf, ":default") == 0)
21230Sstevel@tonic-gate 		/*
21240Sstevel@tonic-gate 		 * L must default to all privileges so root NPA services see
21250Sstevel@tonic-gate 		 * iE = all.  "zone" is all privileges available in the current
21260Sstevel@tonic-gate 		 * zone, equivalent to "all" in the global zone.
21270Sstevel@tonic-gate 		 */
21280Sstevel@tonic-gate 		(void) strcpy(vbuf, "zone");
21290Sstevel@tonic-gate 
21300Sstevel@tonic-gate 	ci->lpriv_set = priv_str_to_set(vbuf, ",", NULL);
21310Sstevel@tonic-gate 	if (ci->lpriv_set == NULL) {
21320Sstevel@tonic-gate 		if (errno != EINVAL)
21330Sstevel@tonic-gate 			errstr = ALLOCFAIL;
21340Sstevel@tonic-gate 		else {
21350Sstevel@tonic-gate 			errstr = "Could not interpret limit_privileges "
21360Sstevel@tonic-gate 			    "property.";
21370Sstevel@tonic-gate 		}
21380Sstevel@tonic-gate 		goto out;
21390Sstevel@tonic-gate 	}
21400Sstevel@tonic-gate 
21410Sstevel@tonic-gate out:
21420Sstevel@tonic-gate 	return (errstr);
21430Sstevel@tonic-gate }
21440Sstevel@tonic-gate 
21450Sstevel@tonic-gate static int
21460Sstevel@tonic-gate get_environment(scf_handle_t *h, scf_propertygroup_t *pg,
21470Sstevel@tonic-gate     struct method_context *mcp, scf_property_t *prop, scf_value_t *val)
21480Sstevel@tonic-gate {
21490Sstevel@tonic-gate 	scf_iter_t *iter;
21500Sstevel@tonic-gate 	scf_type_t type;
21510Sstevel@tonic-gate 	size_t i = 0;
21520Sstevel@tonic-gate 	int ret;
21530Sstevel@tonic-gate 
21540Sstevel@tonic-gate 	if (scf_pg_get_property(pg, SCF_PROPERTY_ENVIRONMENT, prop) != 0) {
21550Sstevel@tonic-gate 		if (scf_error() == SCF_ERROR_NOT_FOUND)
21560Sstevel@tonic-gate 			return (ENOENT);
21570Sstevel@tonic-gate 		return (scf_error());
21580Sstevel@tonic-gate 	}
21590Sstevel@tonic-gate 	if (scf_property_type(prop, &type) != 0)
21600Sstevel@tonic-gate 		return (scf_error());
21610Sstevel@tonic-gate 	if (type != SCF_TYPE_ASTRING)
21620Sstevel@tonic-gate 		return (EINVAL);
21630Sstevel@tonic-gate 	if ((iter = scf_iter_create(h)) == NULL)
21640Sstevel@tonic-gate 		return (scf_error());
21650Sstevel@tonic-gate 
21660Sstevel@tonic-gate 	if (scf_iter_property_values(iter, prop) != 0) {
21670Sstevel@tonic-gate 		ret = scf_error();
21680Sstevel@tonic-gate 		scf_iter_destroy(iter);
21690Sstevel@tonic-gate 		return (ret);
21700Sstevel@tonic-gate 	}
21710Sstevel@tonic-gate 
21720Sstevel@tonic-gate 	mcp->env_sz = 10;
21730Sstevel@tonic-gate 
21740Sstevel@tonic-gate 	if ((mcp->env = uu_zalloc(sizeof (*mcp->env) * mcp->env_sz)) == NULL) {
21750Sstevel@tonic-gate 		ret = ENOMEM;
21760Sstevel@tonic-gate 		goto out;
21770Sstevel@tonic-gate 	}
21780Sstevel@tonic-gate 
21790Sstevel@tonic-gate 	while ((ret = scf_iter_next_value(iter, val)) == 1) {
21800Sstevel@tonic-gate 		ret = scf_value_get_as_string(val, mcp->vbuf, mcp->vbuf_sz);
21810Sstevel@tonic-gate 		if (ret == -1) {
21820Sstevel@tonic-gate 			ret = scf_error();
21830Sstevel@tonic-gate 			goto out;
21840Sstevel@tonic-gate 		}
21850Sstevel@tonic-gate 
21860Sstevel@tonic-gate 		if ((mcp->env[i] = strdup(mcp->vbuf)) == NULL) {
21870Sstevel@tonic-gate 			ret = ENOMEM;
21880Sstevel@tonic-gate 			goto out;
21890Sstevel@tonic-gate 		}
21900Sstevel@tonic-gate 
21910Sstevel@tonic-gate 		if (++i == mcp->env_sz) {
21920Sstevel@tonic-gate 			char **env;
21930Sstevel@tonic-gate 			mcp->env_sz *= 2;
21940Sstevel@tonic-gate 			env = uu_zalloc(sizeof (*mcp->env) * mcp->env_sz);
21950Sstevel@tonic-gate 			if (env == NULL) {
21960Sstevel@tonic-gate 				ret = ENOMEM;
21970Sstevel@tonic-gate 				goto out;
21980Sstevel@tonic-gate 			}
21990Sstevel@tonic-gate 			(void) memcpy(env, mcp->env,
22000Sstevel@tonic-gate 			    sizeof (*mcp->env) * (mcp->env_sz / 2));
22010Sstevel@tonic-gate 			free(mcp->env);
22020Sstevel@tonic-gate 			mcp->env = env;
22030Sstevel@tonic-gate 		}
22040Sstevel@tonic-gate 	}
22050Sstevel@tonic-gate 
22060Sstevel@tonic-gate 	if (ret == -1)
22070Sstevel@tonic-gate 		ret = scf_error();
22080Sstevel@tonic-gate 
22090Sstevel@tonic-gate out:
22100Sstevel@tonic-gate 	scf_iter_destroy(iter);
22110Sstevel@tonic-gate 	return (ret);
22120Sstevel@tonic-gate }
22130Sstevel@tonic-gate 
22140Sstevel@tonic-gate /*
22150Sstevel@tonic-gate  * Fetch method context information from the repository, allocate and fill
22160Sstevel@tonic-gate  * a method_context structure, return it in *mcpp, and return NULL.  On error,
22170Sstevel@tonic-gate  * return a human-readable string which indicates the error.
22180Sstevel@tonic-gate  *
22190Sstevel@tonic-gate  * Eventually, we will return a structured error in the case of
22200Sstevel@tonic-gate  * retryable or abortable failures such as memory allocation errors and
22210Sstevel@tonic-gate  * repository connection failures.  For now, these failures are just
22220Sstevel@tonic-gate  * encoded in the failure string.
22230Sstevel@tonic-gate  */
22240Sstevel@tonic-gate const char *
22250Sstevel@tonic-gate restarter_get_method_context(uint_t version, scf_instance_t *inst,
22260Sstevel@tonic-gate     scf_snapshot_t *snap, const char *mname, const char *cmdline,
22270Sstevel@tonic-gate     struct method_context **mcpp)
22280Sstevel@tonic-gate {
22290Sstevel@tonic-gate 	scf_handle_t *h;
22300Sstevel@tonic-gate 	scf_propertygroup_t *methpg = NULL;
22310Sstevel@tonic-gate 	scf_propertygroup_t *instpg = NULL;
22320Sstevel@tonic-gate 	scf_propertygroup_t *pg = NULL;
22330Sstevel@tonic-gate 	scf_property_t *prop = NULL;
22340Sstevel@tonic-gate 	scf_value_t *val = NULL;
22350Sstevel@tonic-gate 	scf_type_t ty;
22360Sstevel@tonic-gate 	uint8_t use_profile;
22370Sstevel@tonic-gate 	int ret;
22380Sstevel@tonic-gate 	const char *errstr = NULL;
22390Sstevel@tonic-gate 	struct method_context *cip;
22400Sstevel@tonic-gate 
22410Sstevel@tonic-gate 
22420Sstevel@tonic-gate 	if (version != RESTARTER_METHOD_CONTEXT_VERSION)
22430Sstevel@tonic-gate 		return ("Unknown method_context version.");
22440Sstevel@tonic-gate 
22450Sstevel@tonic-gate 	/* Get the handle before we allocate anything. */
22460Sstevel@tonic-gate 	h = scf_instance_handle(inst);
22470Sstevel@tonic-gate 	if (h == NULL)
22480Sstevel@tonic-gate 		return (scf_strerror(scf_error()));
22490Sstevel@tonic-gate 
22500Sstevel@tonic-gate 	cip = malloc(sizeof (*cip));
22510Sstevel@tonic-gate 	if (cip == NULL)
22520Sstevel@tonic-gate 		return (ALLOCFAIL);
22530Sstevel@tonic-gate 
22540Sstevel@tonic-gate 	(void) memset(cip, 0, sizeof (*cip));
22550Sstevel@tonic-gate 	cip->uid = -1;
22560Sstevel@tonic-gate 	cip->euid = -1;
22570Sstevel@tonic-gate 	cip->gid = -1;
22580Sstevel@tonic-gate 	cip->egid = -1;
22590Sstevel@tonic-gate 
22600Sstevel@tonic-gate 	cip->vbuf_sz = scf_limit(SCF_LIMIT_MAX_VALUE_LENGTH);
22610Sstevel@tonic-gate 	assert(cip->vbuf_sz >= 0);
22620Sstevel@tonic-gate 	cip->vbuf = malloc(cip->vbuf_sz);
22630Sstevel@tonic-gate 	if (cip->vbuf == NULL) {
22640Sstevel@tonic-gate 		free(cip);
22650Sstevel@tonic-gate 		return (ALLOCFAIL);
22660Sstevel@tonic-gate 	}
22670Sstevel@tonic-gate 
22680Sstevel@tonic-gate 	if ((instpg = scf_pg_create(h)) == NULL ||
22690Sstevel@tonic-gate 	    (methpg = scf_pg_create(h)) == NULL ||
22700Sstevel@tonic-gate 	    (prop = scf_property_create(h)) == NULL ||
22710Sstevel@tonic-gate 	    (val = scf_value_create(h)) == NULL) {
22720Sstevel@tonic-gate 		errstr = ALLOCFAIL;
22730Sstevel@tonic-gate 		goto out;
22740Sstevel@tonic-gate 	}
22750Sstevel@tonic-gate 
22760Sstevel@tonic-gate 	/*
22770Sstevel@tonic-gate 	 * The method environment, and the credentials/profile data,
22780Sstevel@tonic-gate 	 * may be found either in the pg for the method (methpg),
22790Sstevel@tonic-gate 	 * or in the instance/service SCF_PG_METHOD_CONTEXT pg (named
22800Sstevel@tonic-gate 	 * instpg below).
22810Sstevel@tonic-gate 	 */
22820Sstevel@tonic-gate 
22830Sstevel@tonic-gate 	if (scf_instance_get_pg_composed(inst, snap, mname, methpg) !=
22840Sstevel@tonic-gate 	    SCF_SUCCESS) {
22850Sstevel@tonic-gate 		errstr = scf_strerror(scf_error());
22860Sstevel@tonic-gate 		goto out;
22870Sstevel@tonic-gate 	}
22880Sstevel@tonic-gate 
22890Sstevel@tonic-gate 	if (scf_instance_get_pg_composed(inst, snap, SCF_PG_METHOD_CONTEXT,
22900Sstevel@tonic-gate 	    instpg) != SCF_SUCCESS) {
22910Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND) {
22920Sstevel@tonic-gate 			errstr = scf_strerror(scf_error());
22930Sstevel@tonic-gate 			goto out;
22940Sstevel@tonic-gate 		}
22950Sstevel@tonic-gate 		scf_pg_destroy(instpg);
22960Sstevel@tonic-gate 		instpg = NULL;
22970Sstevel@tonic-gate 	}
22980Sstevel@tonic-gate 
22990Sstevel@tonic-gate 	ret = get_environment(h, methpg, cip, prop, val);
23000Sstevel@tonic-gate 	if (ret == ENOENT && instpg != NULL) {
23010Sstevel@tonic-gate 		ret = get_environment(h, instpg, cip, prop, val);
23020Sstevel@tonic-gate 	}
23030Sstevel@tonic-gate 
23040Sstevel@tonic-gate 	switch (ret) {
23050Sstevel@tonic-gate 	case 0:
23060Sstevel@tonic-gate 	case ENOENT:
23070Sstevel@tonic-gate 		break;
23080Sstevel@tonic-gate 	case ENOMEM:
23090Sstevel@tonic-gate 		errstr = "Out of memory.";
23100Sstevel@tonic-gate 		goto out;
23110Sstevel@tonic-gate 	case EINVAL:
23120Sstevel@tonic-gate 		errstr = "Invalid method environment.";
23130Sstevel@tonic-gate 		goto out;
23140Sstevel@tonic-gate 	default:
23150Sstevel@tonic-gate 		errstr = scf_strerror(ret);
23160Sstevel@tonic-gate 		goto out;
23170Sstevel@tonic-gate 	}
23180Sstevel@tonic-gate 
23190Sstevel@tonic-gate 	pg = methpg;
23200Sstevel@tonic-gate 
23210Sstevel@tonic-gate 	ret = scf_pg_get_property(pg, SCF_PROPERTY_USE_PROFILE, prop);
23220Sstevel@tonic-gate 	if (ret && scf_error() == SCF_ERROR_NOT_FOUND && instpg != NULL) {
23230Sstevel@tonic-gate 		pg = instpg;
23240Sstevel@tonic-gate 		ret = scf_pg_get_property(pg, SCF_PROPERTY_USE_PROFILE, prop);
23250Sstevel@tonic-gate 	}
23260Sstevel@tonic-gate 
23270Sstevel@tonic-gate 	if (ret) {
23280Sstevel@tonic-gate 		switch (scf_error()) {
23290Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
23300Sstevel@tonic-gate 			/* No context: use defaults */
23310Sstevel@tonic-gate 			cip->uid = 0;
23320Sstevel@tonic-gate 			cip->gid = 0;
23330Sstevel@tonic-gate 			*mcpp = cip;
23340Sstevel@tonic-gate 			goto out;
23350Sstevel@tonic-gate 
23360Sstevel@tonic-gate 		case SCF_ERROR_CONNECTION_BROKEN:
23370Sstevel@tonic-gate 			errstr = RCBROKEN;
23380Sstevel@tonic-gate 			goto out;
23390Sstevel@tonic-gate 
23400Sstevel@tonic-gate 		case SCF_ERROR_DELETED:
23410Sstevel@tonic-gate 			errstr = "\"use_profile\" property deleted.";
23420Sstevel@tonic-gate 			goto out;
23430Sstevel@tonic-gate 
23440Sstevel@tonic-gate 		case SCF_ERROR_HANDLE_MISMATCH:
23450Sstevel@tonic-gate 		case SCF_ERROR_INVALID_ARGUMENT:
23460Sstevel@tonic-gate 		case SCF_ERROR_NOT_SET:
23470Sstevel@tonic-gate 		default:
23480Sstevel@tonic-gate 			bad_fail("scf_pg_get_property", scf_error());
23490Sstevel@tonic-gate 		}
23500Sstevel@tonic-gate 	}
23510Sstevel@tonic-gate 
23520Sstevel@tonic-gate 	if (scf_property_type(prop, &ty) != SCF_SUCCESS) {
23530Sstevel@tonic-gate 		switch (scf_error()) {
23540Sstevel@tonic-gate 		case SCF_ERROR_CONNECTION_BROKEN:
23550Sstevel@tonic-gate 			errstr = RCBROKEN;
23560Sstevel@tonic-gate 			break;
23570Sstevel@tonic-gate 
23580Sstevel@tonic-gate 		case SCF_ERROR_DELETED:
23590Sstevel@tonic-gate 			errstr = "\"use profile\" property deleted.";
23600Sstevel@tonic-gate 			break;
23610Sstevel@tonic-gate 
23620Sstevel@tonic-gate 		case SCF_ERROR_NOT_SET:
23630Sstevel@tonic-gate 		default:
23640Sstevel@tonic-gate 			bad_fail("scf_property_type", scf_error());
23650Sstevel@tonic-gate 		}
23660Sstevel@tonic-gate 
23670Sstevel@tonic-gate 		goto out;
23680Sstevel@tonic-gate 	}
23690Sstevel@tonic-gate 
23700Sstevel@tonic-gate 	if (ty != SCF_TYPE_BOOLEAN) {
23710Sstevel@tonic-gate 		errstr = "\"use profile\" property is not boolean.";
23720Sstevel@tonic-gate 		goto out;
23730Sstevel@tonic-gate 	}
23740Sstevel@tonic-gate 
23750Sstevel@tonic-gate 	if (scf_property_get_value(prop, val) != SCF_SUCCESS) {
23760Sstevel@tonic-gate 		switch (scf_error()) {
23770Sstevel@tonic-gate 		case SCF_ERROR_CONNECTION_BROKEN:
23780Sstevel@tonic-gate 			errstr = RCBROKEN;
23790Sstevel@tonic-gate 			break;
23800Sstevel@tonic-gate 
23810Sstevel@tonic-gate 		case SCF_ERROR_CONSTRAINT_VIOLATED:
23820Sstevel@tonic-gate 			errstr =
23830Sstevel@tonic-gate 			    "\"use profile\" property has multiple values.";
23840Sstevel@tonic-gate 			break;
23850Sstevel@tonic-gate 
23860Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
23870Sstevel@tonic-gate 			errstr = "\"use profile\" property has no values.";
23880Sstevel@tonic-gate 			break;
23890Sstevel@tonic-gate 
23900Sstevel@tonic-gate 		default:
23910Sstevel@tonic-gate 			bad_fail("scf_property_get_value", scf_error());
23920Sstevel@tonic-gate 		}
23930Sstevel@tonic-gate 
23940Sstevel@tonic-gate 		goto out;
23950Sstevel@tonic-gate 	}
23960Sstevel@tonic-gate 
23970Sstevel@tonic-gate 	ret = scf_value_get_boolean(val, &use_profile);
23980Sstevel@tonic-gate 	assert(ret == SCF_SUCCESS);
23990Sstevel@tonic-gate 
24000Sstevel@tonic-gate 	/* get ids & privileges */
24010Sstevel@tonic-gate 	if (use_profile)
24020Sstevel@tonic-gate 		errstr = get_profile(pg, prop, val, cmdline, cip);
24030Sstevel@tonic-gate 	else
24040Sstevel@tonic-gate 		errstr = get_ids(pg, prop, val, cip);
24050Sstevel@tonic-gate 	if (errstr != NULL)
24060Sstevel@tonic-gate 		goto out;
24070Sstevel@tonic-gate 
24080Sstevel@tonic-gate 	/* get working directory */
24090Sstevel@tonic-gate 	if (get_astring_val(pg, SCF_PROPERTY_WORKING_DIRECTORY, cip->vbuf,
24100Sstevel@tonic-gate 	    cip->vbuf_sz, prop, val) != 0) {
24110Sstevel@tonic-gate 		errstr = "Could not get value for working directory.";
24120Sstevel@tonic-gate 		goto out;
24130Sstevel@tonic-gate 	}
24140Sstevel@tonic-gate 
24150Sstevel@tonic-gate 	if (strcmp(cip->vbuf, ":default") == 0 ||
24160Sstevel@tonic-gate 	    strcmp(cip->vbuf, ":home") == 0) {
24170Sstevel@tonic-gate 		switch (ret = lookup_pwd(cip)) {
24180Sstevel@tonic-gate 		case 0:
24190Sstevel@tonic-gate 			break;
24200Sstevel@tonic-gate 
24210Sstevel@tonic-gate 		case ENOMEM:
24220Sstevel@tonic-gate 			errstr = "Out of memory.";
24230Sstevel@tonic-gate 			goto out;
24240Sstevel@tonic-gate 
24250Sstevel@tonic-gate 		case ENOENT:
24260Sstevel@tonic-gate 		case EIO:
24270Sstevel@tonic-gate 		case EMFILE:
24280Sstevel@tonic-gate 		case ENFILE:
24290Sstevel@tonic-gate 			errstr = "Could not get passwd entry.";
24300Sstevel@tonic-gate 			goto out;
24310Sstevel@tonic-gate 
24320Sstevel@tonic-gate 		default:
24330Sstevel@tonic-gate 			bad_fail("lookup_pwd", ret);
24340Sstevel@tonic-gate 		}
24350Sstevel@tonic-gate 
24360Sstevel@tonic-gate 		cip->working_dir = strdup(cip->pwd.pw_dir);
24370Sstevel@tonic-gate 		if (cip->working_dir == NULL) {
24380Sstevel@tonic-gate 			errstr = ALLOCFAIL;
24390Sstevel@tonic-gate 			goto out;
24400Sstevel@tonic-gate 		}
24410Sstevel@tonic-gate 	} else {
24420Sstevel@tonic-gate 		cip->working_dir = strdup(cip->vbuf);
24430Sstevel@tonic-gate 		if (cip->working_dir == NULL) {
24440Sstevel@tonic-gate 			errstr = ALLOCFAIL;
24450Sstevel@tonic-gate 			goto out;
24460Sstevel@tonic-gate 		}
24470Sstevel@tonic-gate 	}
24480Sstevel@tonic-gate 
24490Sstevel@tonic-gate 	/* get (optional) corefile pattern */
24500Sstevel@tonic-gate 	if (scf_pg_get_property(pg, SCF_PROPERTY_COREFILE_PATTERN, prop) ==
24510Sstevel@tonic-gate 	    SCF_SUCCESS) {
24520Sstevel@tonic-gate 		if (get_astring_val(pg, SCF_PROPERTY_COREFILE_PATTERN,
24530Sstevel@tonic-gate 		    cip->vbuf, cip->vbuf_sz, prop, val) != 0) {
24540Sstevel@tonic-gate 			errstr = "Could not get value for corefile pattern.";
24550Sstevel@tonic-gate 			goto out;
24560Sstevel@tonic-gate 		}
24570Sstevel@tonic-gate 
24580Sstevel@tonic-gate 		cip->corefile_pattern = strdup(cip->vbuf);
24590Sstevel@tonic-gate 		if (cip->corefile_pattern == NULL) {
24600Sstevel@tonic-gate 			errstr = ALLOCFAIL;
24610Sstevel@tonic-gate 			goto out;
24620Sstevel@tonic-gate 		}
24630Sstevel@tonic-gate 	} else {
24640Sstevel@tonic-gate 		switch (scf_error()) {
24650Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
24660Sstevel@tonic-gate 			/* okay if missing. */
24670Sstevel@tonic-gate 			break;
24680Sstevel@tonic-gate 
24690Sstevel@tonic-gate 		case SCF_ERROR_CONNECTION_BROKEN:
24700Sstevel@tonic-gate 			errstr = RCBROKEN;
24710Sstevel@tonic-gate 			goto out;
24720Sstevel@tonic-gate 
24730Sstevel@tonic-gate 		case SCF_ERROR_DELETED:
24740Sstevel@tonic-gate 			errstr = "\"corefile_pattern\" property deleted.";
24750Sstevel@tonic-gate 			goto out;
24760Sstevel@tonic-gate 
24770Sstevel@tonic-gate 		case SCF_ERROR_HANDLE_MISMATCH:
24780Sstevel@tonic-gate 		case SCF_ERROR_INVALID_ARGUMENT:
24790Sstevel@tonic-gate 		case SCF_ERROR_NOT_SET:
24800Sstevel@tonic-gate 		default:
24810Sstevel@tonic-gate 			bad_fail("scf_pg_get_property", scf_error());
24820Sstevel@tonic-gate 		}
24830Sstevel@tonic-gate 	}
24840Sstevel@tonic-gate 
24850Sstevel@tonic-gate 	if (restarter_rm_libs_loadable()) {
24860Sstevel@tonic-gate 		/* get project */
24870Sstevel@tonic-gate 		if (get_astring_val(pg, SCF_PROPERTY_PROJECT, cip->vbuf,
24880Sstevel@tonic-gate 		    cip->vbuf_sz, prop, val) != 0) {
24890Sstevel@tonic-gate 			errstr = "Could not get project.";
24900Sstevel@tonic-gate 			goto out;
24910Sstevel@tonic-gate 		}
24920Sstevel@tonic-gate 
24930Sstevel@tonic-gate 		switch (ret = get_projid(cip->vbuf, cip)) {
24940Sstevel@tonic-gate 		case 0:
24950Sstevel@tonic-gate 			break;
24960Sstevel@tonic-gate 
24970Sstevel@tonic-gate 		case ENOMEM:
24980Sstevel@tonic-gate 			errstr = "Out of memory.";
24990Sstevel@tonic-gate 			goto out;
25000Sstevel@tonic-gate 
25010Sstevel@tonic-gate 		case ENOENT:
25020Sstevel@tonic-gate 			errstr = "Missing passwd or project entry.";
25030Sstevel@tonic-gate 			goto out;
25040Sstevel@tonic-gate 
25050Sstevel@tonic-gate 		case EIO:
25060Sstevel@tonic-gate 			errstr = "I/O error.";
25070Sstevel@tonic-gate 			goto out;
25080Sstevel@tonic-gate 
25090Sstevel@tonic-gate 		case EMFILE:
25100Sstevel@tonic-gate 		case ENFILE:
25110Sstevel@tonic-gate 			errstr = "Out of file descriptors.";
25120Sstevel@tonic-gate 			goto out;
25130Sstevel@tonic-gate 
25140Sstevel@tonic-gate 		case -1:
25150Sstevel@tonic-gate 			errstr = "Name service switch is misconfigured.";
25160Sstevel@tonic-gate 			goto out;
25170Sstevel@tonic-gate 
25180Sstevel@tonic-gate 		case ERANGE:
25190Sstevel@tonic-gate 			errstr = "Project ID too big.";
25200Sstevel@tonic-gate 			goto out;
25210Sstevel@tonic-gate 
25220Sstevel@tonic-gate 		case EINVAL:
25230Sstevel@tonic-gate 			errstr = "Project ID is invalid.";
25240Sstevel@tonic-gate 			goto out;
25250Sstevel@tonic-gate 
25260Sstevel@tonic-gate 		case E2BIG:
25270Sstevel@tonic-gate 			errstr = "Project entry is too big.";
25280Sstevel@tonic-gate 			goto out;
25290Sstevel@tonic-gate 
25300Sstevel@tonic-gate 		default:
25310Sstevel@tonic-gate 			bad_fail("get_projid", ret);
25320Sstevel@tonic-gate 		}
25330Sstevel@tonic-gate 
25340Sstevel@tonic-gate 		/* get resource pool */
25350Sstevel@tonic-gate 		if (get_astring_val(pg, SCF_PROPERTY_RESOURCE_POOL, cip->vbuf,
25360Sstevel@tonic-gate 			cip->vbuf_sz, prop, val) != 0) {
25370Sstevel@tonic-gate 			errstr = "Could not get value of resource pool.";
25380Sstevel@tonic-gate 			goto out;
25390Sstevel@tonic-gate 		}
25400Sstevel@tonic-gate 
25410Sstevel@tonic-gate 		if (strcmp(cip->vbuf, ":default") != 0) {
25420Sstevel@tonic-gate 			cip->resource_pool = strdup(cip->vbuf);
25430Sstevel@tonic-gate 			if (cip->resource_pool == NULL) {
25440Sstevel@tonic-gate 				errstr = ALLOCFAIL;
25450Sstevel@tonic-gate 				goto out;
25460Sstevel@tonic-gate 			}
25470Sstevel@tonic-gate 		}
25480Sstevel@tonic-gate 	}
25490Sstevel@tonic-gate 
25500Sstevel@tonic-gate 	*mcpp = cip;
25510Sstevel@tonic-gate 
25520Sstevel@tonic-gate out:
25530Sstevel@tonic-gate 	(void) scf_value_destroy(val);
25540Sstevel@tonic-gate 	scf_property_destroy(prop);
25550Sstevel@tonic-gate 	scf_pg_destroy(instpg);
25560Sstevel@tonic-gate 	scf_pg_destroy(methpg);
25570Sstevel@tonic-gate 
25580Sstevel@tonic-gate 	if (cip->pwbuf != NULL)
25590Sstevel@tonic-gate 		free(cip->pwbuf);
25600Sstevel@tonic-gate 	free(cip->vbuf);
25610Sstevel@tonic-gate 
25620Sstevel@tonic-gate 	if (errstr != NULL)
25630Sstevel@tonic-gate 		restarter_free_method_context(cip);
25640Sstevel@tonic-gate 
25650Sstevel@tonic-gate 	return (errstr);
25660Sstevel@tonic-gate }
25670Sstevel@tonic-gate 
25680Sstevel@tonic-gate /*
25690Sstevel@tonic-gate  * Modify the current process per the given method_context.  On success, returns
25700Sstevel@tonic-gate  * 0.  Note that the environment is not modified by this function to include the
25710Sstevel@tonic-gate  * environment variables in cip->env.
25720Sstevel@tonic-gate  *
25730Sstevel@tonic-gate  * On failure, sets *fp to NULL or the name of the function which failed,
25740Sstevel@tonic-gate  * and returns one of the following error codes.  The words in parentheses are
25750Sstevel@tonic-gate  * the values to which *fp may be set for the error case.
25760Sstevel@tonic-gate  *   ENOMEM - malloc() failed
25770Sstevel@tonic-gate  *   EIO - an I/O error occurred (getpwuid_r, chdir)
25780Sstevel@tonic-gate  *   EMFILE - process is out of file descriptors (getpwuid_r)
25790Sstevel@tonic-gate  *   ENFILE - system is out of file handles (getpwuid_r)
25800Sstevel@tonic-gate  *   EINVAL - gid or egid is out of range (setregid)
25810Sstevel@tonic-gate  *	      ngroups is too big (setgroups)
25820Sstevel@tonic-gate  *	      project's project id is bad (setproject)
25830Sstevel@tonic-gate  *	      uid or euid is out of range (setreuid)
25840Sstevel@tonic-gate  *   EPERM - insufficient privilege (setregid, initgroups, setgroups, setppriv,
25850Sstevel@tonic-gate  *	         setproject, setreuid, settaskid)
25860Sstevel@tonic-gate  *   ENOENT - uid has a passwd entry but no shadow entry
25870Sstevel@tonic-gate  *	      working_dir does not exist (chdir)
25880Sstevel@tonic-gate  *	      uid has no passwd entry
25890Sstevel@tonic-gate  *	      the pool could not be found (pool_set_binding)
25900Sstevel@tonic-gate  *   EFAULT - lpriv_set or priv_set has a bad address (setppriv)
25910Sstevel@tonic-gate  *	      working_dir has a bad address (chdir)
25920Sstevel@tonic-gate  *   EACCES - could not access working_dir (chdir)
25930Sstevel@tonic-gate  *	      in a TASK_FINAL task (setproject, settaskid)
25940Sstevel@tonic-gate  *	      no resource pool accepting default binding exists (setproject)
25950Sstevel@tonic-gate  *   ELOOP - too many symbolic links in working_dir (chdir)
25960Sstevel@tonic-gate  *   ENAMETOOLONG - working_dir is too long (chdir)
25970Sstevel@tonic-gate  *   ENOLINK - working_dir is on an inaccessible remote machine (chdir)
25980Sstevel@tonic-gate  *   ENOTDIR - working_dir is not a directory (chdir)
25990Sstevel@tonic-gate  *   ESRCH - uid is not a user of project (setproject)
26000Sstevel@tonic-gate  *	     project is invalid (setproject)
26010Sstevel@tonic-gate  *	     the resource pool specified for project is unknown (setproject)
26020Sstevel@tonic-gate  *   EBADF - the configuration for the pool is invalid (pool_set_binding)
26030Sstevel@tonic-gate  *   -1 - core_set_process_path() failed (core_set_process_path)
26040Sstevel@tonic-gate  *	  a resource control assignment failed (setproject)
26050Sstevel@tonic-gate  *	  a system error occurred during pool_set_binding (pool_set_binding)
26060Sstevel@tonic-gate  */
26070Sstevel@tonic-gate int
26080Sstevel@tonic-gate restarter_set_method_context(struct method_context *cip, const char **fp)
26090Sstevel@tonic-gate {
26100Sstevel@tonic-gate 	pid_t mypid = -1;
26110Sstevel@tonic-gate 	int r, ret;
26120Sstevel@tonic-gate 
26130Sstevel@tonic-gate 	cip->pwbuf = NULL;
26140Sstevel@tonic-gate 	*fp = NULL;
26150Sstevel@tonic-gate 
26160Sstevel@tonic-gate 	if (cip->gid != -1) {
26170Sstevel@tonic-gate 		if (setregid(cip->gid,
26180Sstevel@tonic-gate 		    cip->egid != -1 ? cip->egid : cip->gid) != 0) {
26190Sstevel@tonic-gate 			*fp = "setregid";
26200Sstevel@tonic-gate 
26210Sstevel@tonic-gate 			ret = errno;
26220Sstevel@tonic-gate 			assert(ret == EINVAL || ret == EPERM);
26230Sstevel@tonic-gate 			goto out;
26240Sstevel@tonic-gate 		}
26250Sstevel@tonic-gate 	} else {
26260Sstevel@tonic-gate 		if (cip->pwbuf == NULL) {
26270Sstevel@tonic-gate 			switch (ret = lookup_pwd(cip)) {
26280Sstevel@tonic-gate 			case 0:
26290Sstevel@tonic-gate 				break;
26300Sstevel@tonic-gate 
26310Sstevel@tonic-gate 			case ENOMEM:
26320Sstevel@tonic-gate 			case ENOENT:
26330Sstevel@tonic-gate 				*fp = NULL;
26340Sstevel@tonic-gate 				goto out;
26350Sstevel@tonic-gate 
26360Sstevel@tonic-gate 			case EIO:
26370Sstevel@tonic-gate 			case EMFILE:
26380Sstevel@tonic-gate 			case ENFILE:
26390Sstevel@tonic-gate 				*fp = "getpwuid_r";
26400Sstevel@tonic-gate 				goto out;
26410Sstevel@tonic-gate 
26420Sstevel@tonic-gate 			default:
26430Sstevel@tonic-gate 				bad_fail("lookup_pwd", ret);
26440Sstevel@tonic-gate 			}
26450Sstevel@tonic-gate 		}
26460Sstevel@tonic-gate 
26470Sstevel@tonic-gate 		if (setregid(cip->pwd.pw_gid,
26480Sstevel@tonic-gate 		    cip->egid != -1 ? cip->egid : cip->pwd.pw_gid) != 0) {
26490Sstevel@tonic-gate 			*fp = "setregid";
26500Sstevel@tonic-gate 
26510Sstevel@tonic-gate 			ret = errno;
26520Sstevel@tonic-gate 			assert(ret == EINVAL || ret == EPERM);
26530Sstevel@tonic-gate 			goto out;
26540Sstevel@tonic-gate 		}
26550Sstevel@tonic-gate 	}
26560Sstevel@tonic-gate 
26570Sstevel@tonic-gate 	if (cip->ngroups == -1) {
26580Sstevel@tonic-gate 		if (cip->pwbuf == NULL) {
26590Sstevel@tonic-gate 			switch (ret = lookup_pwd(cip)) {
26600Sstevel@tonic-gate 			case 0:
26610Sstevel@tonic-gate 				break;
26620Sstevel@tonic-gate 
26630Sstevel@tonic-gate 			case ENOMEM:
26640Sstevel@tonic-gate 			case ENOENT:
26650Sstevel@tonic-gate 				*fp = NULL;
26660Sstevel@tonic-gate 				goto out;
26670Sstevel@tonic-gate 
26680Sstevel@tonic-gate 			case EIO:
26690Sstevel@tonic-gate 			case EMFILE:
26700Sstevel@tonic-gate 			case ENFILE:
26710Sstevel@tonic-gate 				*fp = "getpwuid_r";
26720Sstevel@tonic-gate 				goto out;
26730Sstevel@tonic-gate 
26740Sstevel@tonic-gate 			default:
26750Sstevel@tonic-gate 				bad_fail("lookup_pwd", ret);
26760Sstevel@tonic-gate 			}
26770Sstevel@tonic-gate 		}
26780Sstevel@tonic-gate 
26790Sstevel@tonic-gate 		/* Ok if cip->gid == -1 */
26800Sstevel@tonic-gate 		if (initgroups(cip->pwd.pw_name, cip->gid) != 0) {
26810Sstevel@tonic-gate 			*fp = "initgroups";
26820Sstevel@tonic-gate 			ret = errno;
26830Sstevel@tonic-gate 			assert(ret == EPERM);
26840Sstevel@tonic-gate 			goto out;
26850Sstevel@tonic-gate 		}
26860Sstevel@tonic-gate 	} else if (cip->ngroups > 0 &&
26870Sstevel@tonic-gate 	    setgroups(cip->ngroups, cip->groups) != 0) {
26880Sstevel@tonic-gate 		*fp = "setgroups";
26890Sstevel@tonic-gate 
26900Sstevel@tonic-gate 		ret = errno;
26910Sstevel@tonic-gate 		assert(ret == EINVAL || ret == EPERM);
26920Sstevel@tonic-gate 		goto out;
26930Sstevel@tonic-gate 	}
26940Sstevel@tonic-gate 
26950Sstevel@tonic-gate 	*fp = "setppriv";
26960Sstevel@tonic-gate 
26970Sstevel@tonic-gate 	if (cip->lpriv_set != NULL) {
26980Sstevel@tonic-gate 		if (setppriv(PRIV_SET, PRIV_LIMIT, cip->lpriv_set) != 0) {
26990Sstevel@tonic-gate 			ret = errno;
27000Sstevel@tonic-gate 			assert(ret == EFAULT || ret == EPERM);
27010Sstevel@tonic-gate 			goto out;
27020Sstevel@tonic-gate 		}
27030Sstevel@tonic-gate 	}
27040Sstevel@tonic-gate 	if (cip->priv_set != NULL) {
27050Sstevel@tonic-gate 		if (setppriv(PRIV_SET, PRIV_INHERITABLE, cip->priv_set) != 0) {
27060Sstevel@tonic-gate 			ret = errno;
27070Sstevel@tonic-gate 			assert(ret == EFAULT || ret == EPERM);
27080Sstevel@tonic-gate 			goto out;
27090Sstevel@tonic-gate 		}
27100Sstevel@tonic-gate 	}
27110Sstevel@tonic-gate 
27120Sstevel@tonic-gate 	if (cip->working_dir != NULL) {
27130Sstevel@tonic-gate 		do
27140Sstevel@tonic-gate 			r = chdir(cip->working_dir);
27150Sstevel@tonic-gate 		while (r != 0 && errno == EINTR);
27160Sstevel@tonic-gate 		if (r != 0) {
27170Sstevel@tonic-gate 			*fp = "chdir";
27180Sstevel@tonic-gate 			ret = errno;
27190Sstevel@tonic-gate 			goto out;
27200Sstevel@tonic-gate 		}
27210Sstevel@tonic-gate 	}
27220Sstevel@tonic-gate 
27230Sstevel@tonic-gate 	if (cip->corefile_pattern != NULL) {
27240Sstevel@tonic-gate 		mypid = getpid();
27250Sstevel@tonic-gate 
27260Sstevel@tonic-gate 		if (core_set_process_path(cip->corefile_pattern,
27270Sstevel@tonic-gate 		    strlen(cip->corefile_pattern) + 1, mypid) != 0) {
27280Sstevel@tonic-gate 			*fp = "core_set_process_path";
27290Sstevel@tonic-gate 			ret = -1;
27300Sstevel@tonic-gate 			goto out;
27310Sstevel@tonic-gate 		}
27320Sstevel@tonic-gate 	}
27330Sstevel@tonic-gate 
27340Sstevel@tonic-gate 	if (restarter_rm_libs_loadable()) {
27350Sstevel@tonic-gate 		if (cip->project == NULL) {
27360Sstevel@tonic-gate 			if (settaskid(getprojid(), TASK_NORMAL) == -1) {
27370Sstevel@tonic-gate 				switch (errno) {
27380Sstevel@tonic-gate 				case EACCES:
27390Sstevel@tonic-gate 				case EPERM:
27400Sstevel@tonic-gate 					*fp = "settaskid";
27410Sstevel@tonic-gate 					ret = errno;
27420Sstevel@tonic-gate 					goto out;
27430Sstevel@tonic-gate 
27440Sstevel@tonic-gate 				case EINVAL:
27450Sstevel@tonic-gate 				default:
27460Sstevel@tonic-gate 					bad_fail("settaskid", errno);
27470Sstevel@tonic-gate 				}
27480Sstevel@tonic-gate 			}
27490Sstevel@tonic-gate 		} else {
27500Sstevel@tonic-gate 			switch (ret = lookup_pwd(cip)) {
27510Sstevel@tonic-gate 			case 0:
27520Sstevel@tonic-gate 				break;
27530Sstevel@tonic-gate 
27540Sstevel@tonic-gate 			case ENOMEM:
27550Sstevel@tonic-gate 			case ENOENT:
27560Sstevel@tonic-gate 				*fp = NULL;
27570Sstevel@tonic-gate 				goto out;
27580Sstevel@tonic-gate 
27590Sstevel@tonic-gate 			case EIO:
27600Sstevel@tonic-gate 			case EMFILE:
27610Sstevel@tonic-gate 			case ENFILE:
27620Sstevel@tonic-gate 				*fp = "getpwuid_r";
27630Sstevel@tonic-gate 				goto out;
27640Sstevel@tonic-gate 
27650Sstevel@tonic-gate 			default:
27660Sstevel@tonic-gate 				bad_fail("lookup_pwd", ret);
27670Sstevel@tonic-gate 			}
27680Sstevel@tonic-gate 
27690Sstevel@tonic-gate 			*fp = "setproject";
27700Sstevel@tonic-gate 
27710Sstevel@tonic-gate 			switch (setproject(cip->project, cip->pwd.pw_name,
27720Sstevel@tonic-gate 			    TASK_NORMAL)) {
27730Sstevel@tonic-gate 			case 0:
27740Sstevel@tonic-gate 				break;
27750Sstevel@tonic-gate 
27760Sstevel@tonic-gate 			case SETPROJ_ERR_TASK:
27770Sstevel@tonic-gate 			case SETPROJ_ERR_POOL:
27780Sstevel@tonic-gate 				ret = errno;
27790Sstevel@tonic-gate 				goto out;
27800Sstevel@tonic-gate 
27810Sstevel@tonic-gate 			default:
27820Sstevel@tonic-gate 				ret = -1;
27830Sstevel@tonic-gate 				goto out;
27840Sstevel@tonic-gate 			}
27850Sstevel@tonic-gate 		}
27860Sstevel@tonic-gate 
27870Sstevel@tonic-gate 		if (cip->resource_pool != NULL) {
27880Sstevel@tonic-gate 			if (mypid == -1)
27890Sstevel@tonic-gate 				mypid = getpid();
27900Sstevel@tonic-gate 
27910Sstevel@tonic-gate 			*fp = "pool_set_binding";
27920Sstevel@tonic-gate 
27930Sstevel@tonic-gate 			if (pool_set_binding(cip->resource_pool, P_PID,
27940Sstevel@tonic-gate 			    mypid) != PO_SUCCESS) {
27950Sstevel@tonic-gate 				switch (pool_error()) {
27960Sstevel@tonic-gate 				case POE_BADPARAM:
27970Sstevel@tonic-gate 					ret = ENOENT;
27980Sstevel@tonic-gate 					break;
27990Sstevel@tonic-gate 
28000Sstevel@tonic-gate 				case POE_INVALID_CONF:
28010Sstevel@tonic-gate 					ret = EBADF;
28020Sstevel@tonic-gate 					break;
28030Sstevel@tonic-gate 
28040Sstevel@tonic-gate 				case POE_SYSTEM:
28050Sstevel@tonic-gate 					ret = -1;
28060Sstevel@tonic-gate 					break;
28070Sstevel@tonic-gate 
28080Sstevel@tonic-gate 				default:
28090Sstevel@tonic-gate 					bad_fail("pool_set_binding",
28100Sstevel@tonic-gate 					    pool_error());
28110Sstevel@tonic-gate 				}
28120Sstevel@tonic-gate 
28130Sstevel@tonic-gate 				goto out;
28140Sstevel@tonic-gate 			}
28150Sstevel@tonic-gate 		}
28160Sstevel@tonic-gate 	}
28170Sstevel@tonic-gate 
28180Sstevel@tonic-gate 	/*
28190Sstevel@tonic-gate 	 * The last thing we must do is assume our ID.
28200Sstevel@tonic-gate 	 * If the UID is 0, we want it to be privilege-aware,
28210Sstevel@tonic-gate 	 * otherwise the limit set gets used instead of E/P.
28220Sstevel@tonic-gate 	 * We can do this by setting P as well, which keeps
28230Sstevel@tonic-gate 	 * PA status (see priv_can_clear_PA()).
28240Sstevel@tonic-gate 	 */
28250Sstevel@tonic-gate 
28260Sstevel@tonic-gate 	*fp = "setreuid";
28270Sstevel@tonic-gate 	if (setreuid(cip->uid, cip->euid != -1 ? cip->euid : cip->uid) != 0) {
28280Sstevel@tonic-gate 		ret = errno;
28290Sstevel@tonic-gate 		assert(ret == EINVAL || ret == EPERM);
28300Sstevel@tonic-gate 		goto out;
28310Sstevel@tonic-gate 	}
28320Sstevel@tonic-gate 
28330Sstevel@tonic-gate 	*fp = "setppriv";
28340Sstevel@tonic-gate 	if (cip->priv_set != NULL) {
28350Sstevel@tonic-gate 		if (setppriv(PRIV_SET, PRIV_PERMITTED, cip->priv_set) != 0) {
28360Sstevel@tonic-gate 			ret = errno;
28370Sstevel@tonic-gate 			assert(ret == EFAULT || ret == EPERM);
28380Sstevel@tonic-gate 			goto out;
28390Sstevel@tonic-gate 		}
28400Sstevel@tonic-gate 	}
28410Sstevel@tonic-gate 
28420Sstevel@tonic-gate 	ret = 0;
28430Sstevel@tonic-gate out:
28440Sstevel@tonic-gate 	free(cip->pwbuf);
28450Sstevel@tonic-gate 	cip->pwbuf = NULL;
28460Sstevel@tonic-gate 	return (ret);
28470Sstevel@tonic-gate }
28480Sstevel@tonic-gate 
28490Sstevel@tonic-gate void
28500Sstevel@tonic-gate restarter_free_method_context(struct method_context *mcp)
28510Sstevel@tonic-gate {
28520Sstevel@tonic-gate 	size_t i;
28530Sstevel@tonic-gate 
28540Sstevel@tonic-gate 	if (mcp->lpriv_set != NULL)
28550Sstevel@tonic-gate 		priv_freeset(mcp->lpriv_set);
28560Sstevel@tonic-gate 	if (mcp->priv_set != NULL)
28570Sstevel@tonic-gate 		priv_freeset(mcp->priv_set);
28580Sstevel@tonic-gate 
28590Sstevel@tonic-gate 	if (mcp->env != NULL) {
28600Sstevel@tonic-gate 		for (i = 0; i < mcp->env_sz; i++)
28610Sstevel@tonic-gate 			free(mcp->env[i]);
28620Sstevel@tonic-gate 		free(mcp->env);
28630Sstevel@tonic-gate 	}
28640Sstevel@tonic-gate 
28650Sstevel@tonic-gate 	free(mcp->working_dir);
28660Sstevel@tonic-gate 	free(mcp->corefile_pattern);
28670Sstevel@tonic-gate 	free(mcp->project);
28680Sstevel@tonic-gate 	free(mcp->resource_pool);
28690Sstevel@tonic-gate 	free(mcp);
28700Sstevel@tonic-gate }
28710Sstevel@tonic-gate 
28720Sstevel@tonic-gate /*
28730Sstevel@tonic-gate  * Method keyword functions
28740Sstevel@tonic-gate  */
28750Sstevel@tonic-gate 
28760Sstevel@tonic-gate int
28770Sstevel@tonic-gate restarter_is_null_method(const char *meth)
28780Sstevel@tonic-gate {
28790Sstevel@tonic-gate 	return (strcmp(meth, MKW_TRUE) == 0);
28800Sstevel@tonic-gate }
28810Sstevel@tonic-gate 
28820Sstevel@tonic-gate static int
28830Sstevel@tonic-gate is_kill_method(const char *method, const char *kill_str,
28840Sstevel@tonic-gate     size_t kill_str_len)
28850Sstevel@tonic-gate {
28860Sstevel@tonic-gate 	const char *cp;
28870Sstevel@tonic-gate 	int sig;
28880Sstevel@tonic-gate 
28890Sstevel@tonic-gate 	if (strncmp(method, kill_str, kill_str_len) != 0 ||
28900Sstevel@tonic-gate 	    (method[kill_str_len] != '\0' &&
28910Sstevel@tonic-gate 	    !isspace(method[kill_str_len])))
28920Sstevel@tonic-gate 		return (-1);
28930Sstevel@tonic-gate 
28940Sstevel@tonic-gate 	cp = method + kill_str_len;
28950Sstevel@tonic-gate 	while (*cp != '\0' && isspace(*cp))
28960Sstevel@tonic-gate 		++cp;
28970Sstevel@tonic-gate 
28980Sstevel@tonic-gate 	if (*cp == '\0')
28990Sstevel@tonic-gate 		return (SIGTERM);
29000Sstevel@tonic-gate 
29010Sstevel@tonic-gate 	if (*cp != '-')
29020Sstevel@tonic-gate 		return (-1);
29030Sstevel@tonic-gate 
29040Sstevel@tonic-gate 	return (str2sig(cp + 1, &sig) == 0 ? sig : -1);
29050Sstevel@tonic-gate }
29060Sstevel@tonic-gate 
29070Sstevel@tonic-gate int
29080Sstevel@tonic-gate restarter_is_kill_proc_method(const char *method)
29090Sstevel@tonic-gate {
29100Sstevel@tonic-gate 	return (is_kill_method(method, MKW_KILL_PROC,
29110Sstevel@tonic-gate 	    sizeof (MKW_KILL_PROC) - 1));
29120Sstevel@tonic-gate }
29130Sstevel@tonic-gate 
29140Sstevel@tonic-gate int
29150Sstevel@tonic-gate restarter_is_kill_method(const char *method)
29160Sstevel@tonic-gate {
29170Sstevel@tonic-gate 	return (is_kill_method(method, MKW_KILL, sizeof (MKW_KILL) - 1));
29180Sstevel@tonic-gate }
29190Sstevel@tonic-gate 
29200Sstevel@tonic-gate /*
29210Sstevel@tonic-gate  * Stubs for now.
29220Sstevel@tonic-gate  */
29230Sstevel@tonic-gate 
29240Sstevel@tonic-gate /* ARGSUSED */
29250Sstevel@tonic-gate int
29260Sstevel@tonic-gate restarter_event_get_enabled(restarter_event_t *e)
29270Sstevel@tonic-gate {
29280Sstevel@tonic-gate 	return (-1);
29290Sstevel@tonic-gate }
29300Sstevel@tonic-gate 
29310Sstevel@tonic-gate /* ARGSUSED */
29320Sstevel@tonic-gate uint64_t
29330Sstevel@tonic-gate restarter_event_get_seq(restarter_event_t *e)
29340Sstevel@tonic-gate {
29350Sstevel@tonic-gate 	return (-1);
29360Sstevel@tonic-gate }
29370Sstevel@tonic-gate 
29380Sstevel@tonic-gate /* ARGSUSED */
29390Sstevel@tonic-gate void
29400Sstevel@tonic-gate restarter_event_get_time(restarter_event_t *e, hrtime_t *time)
29410Sstevel@tonic-gate {
29420Sstevel@tonic-gate }
2943