xref: /titanic_54/usr/src/cmd/svc/svcadm/svcadm.c (revision 702a871ab9051e1bba904410d3f0f3ad4c858dcb)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57646ae23Slianep  * Common Development and Distribution License (the "License").
67646ae23Slianep  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22eb1a3463STruong Nguyen  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate /*
276c7c876cSJerry Jelinek  * Copyright 2013, Joyent, Inc. All rights reserved.
28647f8444SBryan Cantrill  */
29647f8444SBryan Cantrill 
30647f8444SBryan Cantrill /*
317c478bd9Sstevel@tonic-gate  * svcadm - request adminstrative actions for service instances
327c478bd9Sstevel@tonic-gate  */
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #include <locale.h>
357c478bd9Sstevel@tonic-gate #include <libintl.h>
367c478bd9Sstevel@tonic-gate #include <libscf.h>
377c478bd9Sstevel@tonic-gate #include <libscf_priv.h>
38eb1a3463STruong Nguyen #include <libcontract.h>
39eb1a3463STruong Nguyen #include <libcontract_priv.h>
40eb1a3463STruong Nguyen #include <sys/contract/process.h>
417c478bd9Sstevel@tonic-gate #include <libuutil.h>
427c478bd9Sstevel@tonic-gate #include <stddef.h>
437c478bd9Sstevel@tonic-gate #include <stdio.h>
447c478bd9Sstevel@tonic-gate #include <stdlib.h>
457c478bd9Sstevel@tonic-gate #include <string.h>
467c478bd9Sstevel@tonic-gate #include <unistd.h>
47eb1a3463STruong Nguyen #include <fcntl.h>
48eb1a3463STruong Nguyen #include <procfs.h>
497c478bd9Sstevel@tonic-gate #include <assert.h>
507c478bd9Sstevel@tonic-gate #include <errno.h>
51647f8444SBryan Cantrill #include <zone.h>
527c478bd9Sstevel@tonic-gate 
537c478bd9Sstevel@tonic-gate #ifndef TEXT_DOMAIN
547c478bd9Sstevel@tonic-gate #define	TEXT_DOMAIN	"SUNW_OST_OSCMD"
557c478bd9Sstevel@tonic-gate #endif /* TEXT_DOMAIN */
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate /* Must be a power of two */
587c478bd9Sstevel@tonic-gate #define	HT_BUCKETS	64
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate /*
617c478bd9Sstevel@tonic-gate  * Exit codes for enable and disable -s.
627c478bd9Sstevel@tonic-gate  */
637c478bd9Sstevel@tonic-gate #define	EXIT_SVC_FAILURE	3
647c478bd9Sstevel@tonic-gate #define	EXIT_DEP_FAILURE	4
657c478bd9Sstevel@tonic-gate 
666c7c876cSJerry Jelinek #define	WALK_FLAGS	(SCF_WALK_UNIPARTIAL | SCF_WALK_MULTIPLE)
676c7c876cSJerry Jelinek 
687c478bd9Sstevel@tonic-gate /*
697c478bd9Sstevel@tonic-gate  * How long we will wait (in seconds) for a service to change state
707c478bd9Sstevel@tonic-gate  * before re-checking its dependencies.
717c478bd9Sstevel@tonic-gate  */
727c478bd9Sstevel@tonic-gate #define	WAIT_INTERVAL		3
737c478bd9Sstevel@tonic-gate 
747c478bd9Sstevel@tonic-gate #ifndef NDEBUG
757c478bd9Sstevel@tonic-gate #define	bad_error(func, err)	{					\
76*702a871aSJerry Jelinek 	pr_warn("%s:%d: %s() failed with unexpected error %d.\n",	\
777c478bd9Sstevel@tonic-gate 	    __FILE__, __LINE__, (func), (err));				\
787c478bd9Sstevel@tonic-gate 	abort();							\
797c478bd9Sstevel@tonic-gate }
807c478bd9Sstevel@tonic-gate #else
817c478bd9Sstevel@tonic-gate #define	bad_error(func, err)	abort()
827c478bd9Sstevel@tonic-gate #endif
837c478bd9Sstevel@tonic-gate 
847c478bd9Sstevel@tonic-gate 
857c478bd9Sstevel@tonic-gate struct ht_elt {
867c478bd9Sstevel@tonic-gate 	struct ht_elt	*next;
877c478bd9Sstevel@tonic-gate 	boolean_t	active;
887c478bd9Sstevel@tonic-gate 	char		str[1];
897c478bd9Sstevel@tonic-gate };
907c478bd9Sstevel@tonic-gate 
917c478bd9Sstevel@tonic-gate 
927c478bd9Sstevel@tonic-gate scf_handle_t *h;
937c478bd9Sstevel@tonic-gate ssize_t max_scf_fmri_sz;
947c478bd9Sstevel@tonic-gate static const char *emsg_permission_denied;
957c478bd9Sstevel@tonic-gate static const char *emsg_nomem;
967c478bd9Sstevel@tonic-gate static const char *emsg_create_pg_perm_denied;
977c478bd9Sstevel@tonic-gate static const char *emsg_pg_perm_denied;
987c478bd9Sstevel@tonic-gate static const char *emsg_prop_perm_denied;
997c478bd9Sstevel@tonic-gate static const char *emsg_no_service;
1007c478bd9Sstevel@tonic-gate 
1017c478bd9Sstevel@tonic-gate static int exit_status = 0;
1027c478bd9Sstevel@tonic-gate static int verbose = 0;
1037c478bd9Sstevel@tonic-gate static char *scratch_fmri;
104*702a871aSJerry Jelinek static char *g_zonename = NULL;
1057c478bd9Sstevel@tonic-gate 
1067c478bd9Sstevel@tonic-gate static struct ht_elt **visited;
1077c478bd9Sstevel@tonic-gate 
1080b5c9250Shg115875 void do_scfdie(int lineno) __NORETURN;
1090b5c9250Shg115875 static void usage_milestone(void) __NORETURN;
110eb1a3463STruong Nguyen static void set_astring_prop(const char *, const char *, const char *,
111eb1a3463STruong Nguyen     uint32_t, const char *, const char *);
112*702a871aSJerry Jelinek static void pr_warn(const char *format, ...);
1130b5c9250Shg115875 
1147c478bd9Sstevel@tonic-gate /*
1157c478bd9Sstevel@tonic-gate  * Visitors from synch.c, needed for enable -s and disable -s.
1167c478bd9Sstevel@tonic-gate  */
1177c478bd9Sstevel@tonic-gate extern int is_enabled(scf_instance_t *);
1187c478bd9Sstevel@tonic-gate extern int has_potential(scf_instance_t *, int);
1197c478bd9Sstevel@tonic-gate 
1207c478bd9Sstevel@tonic-gate void
1217c478bd9Sstevel@tonic-gate do_scfdie(int lineno)
1227c478bd9Sstevel@tonic-gate {
1237c478bd9Sstevel@tonic-gate 	scf_error_t err;
1247c478bd9Sstevel@tonic-gate 
1257c478bd9Sstevel@tonic-gate 	switch (err = scf_error()) {
1267c478bd9Sstevel@tonic-gate 	case SCF_ERROR_CONNECTION_BROKEN:
1277c478bd9Sstevel@tonic-gate 		uu_die(gettext("Connection to repository server broken.  "
1287c478bd9Sstevel@tonic-gate 		    "Exiting.\n"));
1297c478bd9Sstevel@tonic-gate 		/* NOTREACHED */
1307c478bd9Sstevel@tonic-gate 
1317c478bd9Sstevel@tonic-gate 	case SCF_ERROR_BACKEND_READONLY:
1327c478bd9Sstevel@tonic-gate 		uu_die(gettext("Repository is read-only.  Exiting.\n"));
1337c478bd9Sstevel@tonic-gate 		/* NOTREACHED */
1347c478bd9Sstevel@tonic-gate 
1357c478bd9Sstevel@tonic-gate 	default:
1367c478bd9Sstevel@tonic-gate #ifdef NDEBUG
1377c478bd9Sstevel@tonic-gate 		uu_die(gettext("Unexpected libscf error: %s.  Exiting.\n"),
1387c478bd9Sstevel@tonic-gate 		    scf_strerror(err));
1397c478bd9Sstevel@tonic-gate #else
1407c478bd9Sstevel@tonic-gate 		uu_die("Unexpected libscf error on line %d: %s.\n", lineno,
1417c478bd9Sstevel@tonic-gate 		    scf_strerror(err));
1427c478bd9Sstevel@tonic-gate #endif
1437c478bd9Sstevel@tonic-gate 	}
1447c478bd9Sstevel@tonic-gate }
1457c478bd9Sstevel@tonic-gate 
1467c478bd9Sstevel@tonic-gate #define	scfdie()	do_scfdie(__LINE__)
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate static void
1497c478bd9Sstevel@tonic-gate usage()
1507c478bd9Sstevel@tonic-gate {
1517c478bd9Sstevel@tonic-gate 	(void) fprintf(stderr, gettext(
152*702a871aSJerry Jelinek 	"Usage: %1$s [-v] [-Z | -z zone] [cmd [args ... ]]\n\n"
1537c478bd9Sstevel@tonic-gate 	"\t%1$s enable [-rst] <service> ...\t- enable and online service(s)\n"
1547c478bd9Sstevel@tonic-gate 	"\t%1$s disable [-st] <service> ...\t- disable and offline service(s)\n"
1557c478bd9Sstevel@tonic-gate 	"\t%1$s restart <service> ...\t\t- restart specified service(s)\n"
1567c478bd9Sstevel@tonic-gate 	"\t%1$s refresh <service> ...\t\t- re-read service configuration\n"
1577c478bd9Sstevel@tonic-gate 	"\t%1$s mark [-It] <state> <service> ...\t- set maintenance state\n"
1587c478bd9Sstevel@tonic-gate 	"\t%1$s clear <service> ...\t\t- clear maintenance state\n"
1597c478bd9Sstevel@tonic-gate 	"\t%1$s milestone [-d] <milestone>\t- advance to a service milestone\n"
1607c478bd9Sstevel@tonic-gate 	"\n\t"
1617c478bd9Sstevel@tonic-gate 	"Services can be specified using an FMRI, abbreviation, or fnmatch(5)\n"
1627c478bd9Sstevel@tonic-gate 	"\tpattern, as shown in these examples for svc:/network/smtp:sendmail\n"
1637c478bd9Sstevel@tonic-gate 	"\n"
1647c478bd9Sstevel@tonic-gate 	"\t%1$s <cmd> svc:/network/smtp:sendmail\n"
1657c478bd9Sstevel@tonic-gate 	"\t%1$s <cmd> network/smtp:sendmail\n"
1667c478bd9Sstevel@tonic-gate 	"\t%1$s <cmd> network/*mail\n"
1677c478bd9Sstevel@tonic-gate 	"\t%1$s <cmd> network/smtp\n"
1687c478bd9Sstevel@tonic-gate 	"\t%1$s <cmd> smtp:sendmail\n"
1697c478bd9Sstevel@tonic-gate 	"\t%1$s <cmd> smtp\n"
1707c478bd9Sstevel@tonic-gate 	"\t%1$s <cmd> sendmail\n"), uu_getpname());
1717c478bd9Sstevel@tonic-gate 
1727c478bd9Sstevel@tonic-gate 	exit(UU_EXIT_USAGE);
1737c478bd9Sstevel@tonic-gate }
1747c478bd9Sstevel@tonic-gate 
1757c478bd9Sstevel@tonic-gate 
1767c478bd9Sstevel@tonic-gate /*
1777c478bd9Sstevel@tonic-gate  * FMRI hash table for recursive enable.
1787c478bd9Sstevel@tonic-gate  */
1797c478bd9Sstevel@tonic-gate 
1807c478bd9Sstevel@tonic-gate static uint32_t
1817c478bd9Sstevel@tonic-gate hash_fmri(const char *str)
1827c478bd9Sstevel@tonic-gate {
1837c478bd9Sstevel@tonic-gate 	uint32_t h = 0, g;
1847c478bd9Sstevel@tonic-gate 	const char *p;
1857c478bd9Sstevel@tonic-gate 
1867c478bd9Sstevel@tonic-gate 	/* Generic hash function from uts/common/os/modhash.c . */
1877c478bd9Sstevel@tonic-gate 	for (p = str; *p != '\0'; ++p) {
1887c478bd9Sstevel@tonic-gate 		h = (h << 4) + *p;
1897c478bd9Sstevel@tonic-gate 		if ((g = (h & 0xf0000000)) != 0) {
1907c478bd9Sstevel@tonic-gate 			h ^= (g >> 24);
1917c478bd9Sstevel@tonic-gate 			h ^= g;
1927c478bd9Sstevel@tonic-gate 		}
1937c478bd9Sstevel@tonic-gate 	}
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate 	return (h);
1967c478bd9Sstevel@tonic-gate }
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate /*
1997c478bd9Sstevel@tonic-gate  * Return 1 if str has been visited, 0 if it has not, and -1 if memory could not
2007c478bd9Sstevel@tonic-gate  * be allocated.
2017c478bd9Sstevel@tonic-gate  */
2027c478bd9Sstevel@tonic-gate static int
2037c478bd9Sstevel@tonic-gate visited_find_or_add(const char *str, struct ht_elt **hep)
2047c478bd9Sstevel@tonic-gate {
2057c478bd9Sstevel@tonic-gate 	uint32_t h;
2067c478bd9Sstevel@tonic-gate 	uint_t i;
2077c478bd9Sstevel@tonic-gate 	struct ht_elt *he;
2087c478bd9Sstevel@tonic-gate 
2097c478bd9Sstevel@tonic-gate 	h = hash_fmri(str);
2107c478bd9Sstevel@tonic-gate 	i = h & (HT_BUCKETS - 1);
2117c478bd9Sstevel@tonic-gate 
2127c478bd9Sstevel@tonic-gate 	for (he = visited[i]; he != NULL; he = he->next) {
2137c478bd9Sstevel@tonic-gate 		if (strcmp(he->str, str) == 0) {
2147c478bd9Sstevel@tonic-gate 			if (hep)
2157c478bd9Sstevel@tonic-gate 				*hep = he;
2167c478bd9Sstevel@tonic-gate 			return (1);
2177c478bd9Sstevel@tonic-gate 		}
2187c478bd9Sstevel@tonic-gate 	}
2197c478bd9Sstevel@tonic-gate 
2207c478bd9Sstevel@tonic-gate 	he = malloc(offsetof(struct ht_elt, str) + strlen(str) + 1);
2217c478bd9Sstevel@tonic-gate 	if (he == NULL)
2227c478bd9Sstevel@tonic-gate 		return (-1);
2237c478bd9Sstevel@tonic-gate 
2247c478bd9Sstevel@tonic-gate 	(void) strcpy(he->str, str);
2257c478bd9Sstevel@tonic-gate 
2267c478bd9Sstevel@tonic-gate 	he->next = visited[i];
2277c478bd9Sstevel@tonic-gate 	visited[i] = he;
2287c478bd9Sstevel@tonic-gate 
2297c478bd9Sstevel@tonic-gate 	if (hep)
2307c478bd9Sstevel@tonic-gate 		*hep = he;
2317c478bd9Sstevel@tonic-gate 	return (0);
2327c478bd9Sstevel@tonic-gate }
2337c478bd9Sstevel@tonic-gate 
2347c478bd9Sstevel@tonic-gate 
2357c478bd9Sstevel@tonic-gate /*
2367c478bd9Sstevel@tonic-gate  * Returns 0, ECANCELED if pg is deleted, ENOENT if propname doesn't exist,
2377c478bd9Sstevel@tonic-gate  * EINVAL if the property is not of boolean type or has no values, and E2BIG
2387c478bd9Sstevel@tonic-gate  * if it has more than one value.  *bp is set if 0 or E2BIG is returned.
2397c478bd9Sstevel@tonic-gate  */
2407c478bd9Sstevel@tonic-gate int
2417c478bd9Sstevel@tonic-gate get_bool_prop(scf_propertygroup_t *pg, const char *propname, uint8_t *bp)
2427c478bd9Sstevel@tonic-gate {
2437c478bd9Sstevel@tonic-gate 	scf_property_t *prop;
2447c478bd9Sstevel@tonic-gate 	scf_value_t *val;
2457c478bd9Sstevel@tonic-gate 	int ret;
2467c478bd9Sstevel@tonic-gate 
2477c478bd9Sstevel@tonic-gate 	if ((prop = scf_property_create(h)) == NULL ||
2487c478bd9Sstevel@tonic-gate 	    (val = scf_value_create(h)) == NULL)
2497c478bd9Sstevel@tonic-gate 		scfdie();
2507c478bd9Sstevel@tonic-gate 
2517c478bd9Sstevel@tonic-gate 	if (scf_pg_get_property(pg, propname, prop) != 0) {
2527c478bd9Sstevel@tonic-gate 		switch (scf_error()) {
2537c478bd9Sstevel@tonic-gate 		case SCF_ERROR_DELETED:
2547c478bd9Sstevel@tonic-gate 			ret = ECANCELED;
2557c478bd9Sstevel@tonic-gate 			goto out;
2567c478bd9Sstevel@tonic-gate 
2577c478bd9Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
2587c478bd9Sstevel@tonic-gate 			ret = ENOENT;
2597c478bd9Sstevel@tonic-gate 			goto out;
2607c478bd9Sstevel@tonic-gate 
2617c478bd9Sstevel@tonic-gate 		case SCF_ERROR_NOT_SET:
2627c478bd9Sstevel@tonic-gate 			assert(0);
2637c478bd9Sstevel@tonic-gate 			abort();
2647c478bd9Sstevel@tonic-gate 			/* NOTREACHED */
2657c478bd9Sstevel@tonic-gate 
2667c478bd9Sstevel@tonic-gate 		default:
2677c478bd9Sstevel@tonic-gate 			scfdie();
2687c478bd9Sstevel@tonic-gate 		}
2697c478bd9Sstevel@tonic-gate 	}
2707c478bd9Sstevel@tonic-gate 
2717c478bd9Sstevel@tonic-gate 	if (scf_property_get_value(prop, val) == 0) {
2727c478bd9Sstevel@tonic-gate 		ret = 0;
2737c478bd9Sstevel@tonic-gate 	} else {
2747c478bd9Sstevel@tonic-gate 		switch (scf_error()) {
2757c478bd9Sstevel@tonic-gate 		case SCF_ERROR_DELETED:
2767c478bd9Sstevel@tonic-gate 			ret = ENOENT;
2777c478bd9Sstevel@tonic-gate 			goto out;
2787c478bd9Sstevel@tonic-gate 
2797c478bd9Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
2807c478bd9Sstevel@tonic-gate 			ret = EINVAL;
2817c478bd9Sstevel@tonic-gate 			goto out;
2827c478bd9Sstevel@tonic-gate 
2837c478bd9Sstevel@tonic-gate 		case SCF_ERROR_CONSTRAINT_VIOLATED:
2847c478bd9Sstevel@tonic-gate 			ret = E2BIG;
2857c478bd9Sstevel@tonic-gate 			break;
2867c478bd9Sstevel@tonic-gate 
2877c478bd9Sstevel@tonic-gate 		case SCF_ERROR_NOT_SET:
2887c478bd9Sstevel@tonic-gate 			assert(0);
2897c478bd9Sstevel@tonic-gate 			abort();
2907c478bd9Sstevel@tonic-gate 			/* NOTREACHED */
2917c478bd9Sstevel@tonic-gate 
2927c478bd9Sstevel@tonic-gate 		default:
2937c478bd9Sstevel@tonic-gate 			scfdie();
2947c478bd9Sstevel@tonic-gate 		}
2957c478bd9Sstevel@tonic-gate 	}
2967c478bd9Sstevel@tonic-gate 
2977c478bd9Sstevel@tonic-gate 	if (scf_value_get_boolean(val, bp) != 0) {
2987c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_TYPE_MISMATCH)
2997c478bd9Sstevel@tonic-gate 			scfdie();
3007c478bd9Sstevel@tonic-gate 
3017c478bd9Sstevel@tonic-gate 		ret = EINVAL;
3027c478bd9Sstevel@tonic-gate 		goto out;
3037c478bd9Sstevel@tonic-gate 	}
3047c478bd9Sstevel@tonic-gate 
3057c478bd9Sstevel@tonic-gate out:
3067c478bd9Sstevel@tonic-gate 	scf_value_destroy(val);
3077c478bd9Sstevel@tonic-gate 	scf_property_destroy(prop);
3087c478bd9Sstevel@tonic-gate 	return (ret);
3097c478bd9Sstevel@tonic-gate }
3107c478bd9Sstevel@tonic-gate 
3117c478bd9Sstevel@tonic-gate /*
3127c478bd9Sstevel@tonic-gate  * Returns 0, EPERM, or EROFS.
3137c478bd9Sstevel@tonic-gate  */
3147c478bd9Sstevel@tonic-gate static int
3157c478bd9Sstevel@tonic-gate set_bool_prop(scf_propertygroup_t *pg, const char *propname, boolean_t b)
3167c478bd9Sstevel@tonic-gate {
3177c478bd9Sstevel@tonic-gate 	scf_value_t *v;
3187c478bd9Sstevel@tonic-gate 	scf_transaction_t *tx;
3197c478bd9Sstevel@tonic-gate 	scf_transaction_entry_t *ent;
3207c478bd9Sstevel@tonic-gate 	int ret = 0, r;
3217c478bd9Sstevel@tonic-gate 
3227c478bd9Sstevel@tonic-gate 	if ((tx = scf_transaction_create(h)) == NULL ||
3237c478bd9Sstevel@tonic-gate 	    (ent = scf_entry_create(h)) == NULL ||
3247c478bd9Sstevel@tonic-gate 	    (v = scf_value_create(h)) == NULL)
3257c478bd9Sstevel@tonic-gate 		scfdie();
3267c478bd9Sstevel@tonic-gate 
3277c478bd9Sstevel@tonic-gate 	scf_value_set_boolean(v, b);
3287c478bd9Sstevel@tonic-gate 
3297c478bd9Sstevel@tonic-gate 	for (;;) {
3307c478bd9Sstevel@tonic-gate 		if (scf_transaction_start(tx, pg) == -1) {
3317c478bd9Sstevel@tonic-gate 			switch (scf_error()) {
3327c478bd9Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
3337c478bd9Sstevel@tonic-gate 				ret = EPERM;
3347c478bd9Sstevel@tonic-gate 				goto out;
3357c478bd9Sstevel@tonic-gate 
3367c478bd9Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
3377c478bd9Sstevel@tonic-gate 				ret = EROFS;
3387c478bd9Sstevel@tonic-gate 				goto out;
3397c478bd9Sstevel@tonic-gate 
3407c478bd9Sstevel@tonic-gate 			default:
3417c478bd9Sstevel@tonic-gate 				scfdie();
3427c478bd9Sstevel@tonic-gate 			}
3437c478bd9Sstevel@tonic-gate 		}
3447c478bd9Sstevel@tonic-gate 
3457c478bd9Sstevel@tonic-gate 		if (scf_transaction_property_change_type(tx, ent, propname,
3467c478bd9Sstevel@tonic-gate 		    SCF_TYPE_BOOLEAN) != 0) {
3477c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_NOT_FOUND)
3487c478bd9Sstevel@tonic-gate 				scfdie();
3497c478bd9Sstevel@tonic-gate 
3507c478bd9Sstevel@tonic-gate 			if (scf_transaction_property_new(tx, ent, propname,
3517c478bd9Sstevel@tonic-gate 			    SCF_TYPE_BOOLEAN) != 0)
3527c478bd9Sstevel@tonic-gate 				scfdie();
3537c478bd9Sstevel@tonic-gate 		}
3547c478bd9Sstevel@tonic-gate 
3557c478bd9Sstevel@tonic-gate 		r = scf_entry_add_value(ent, v);
3567c478bd9Sstevel@tonic-gate 		assert(r == 0);
3577c478bd9Sstevel@tonic-gate 
3587c478bd9Sstevel@tonic-gate 		r = scf_transaction_commit(tx);
3597c478bd9Sstevel@tonic-gate 		if (r == 1)
3607c478bd9Sstevel@tonic-gate 			break;
3617c478bd9Sstevel@tonic-gate 
3627c478bd9Sstevel@tonic-gate 		scf_transaction_reset(tx);
3637c478bd9Sstevel@tonic-gate 
3647c478bd9Sstevel@tonic-gate 		if (r != 0) {
3657c478bd9Sstevel@tonic-gate 			switch (scf_error()) {
3667c478bd9Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
3677c478bd9Sstevel@tonic-gate 				ret = EPERM;
3687c478bd9Sstevel@tonic-gate 				goto out;
3697c478bd9Sstevel@tonic-gate 
3707c478bd9Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
3717c478bd9Sstevel@tonic-gate 				ret = EROFS;
3727c478bd9Sstevel@tonic-gate 				goto out;
3737c478bd9Sstevel@tonic-gate 
3747c478bd9Sstevel@tonic-gate 			default:
3757c478bd9Sstevel@tonic-gate 				scfdie();
3767c478bd9Sstevel@tonic-gate 			}
3777c478bd9Sstevel@tonic-gate 		}
3787c478bd9Sstevel@tonic-gate 
3797c478bd9Sstevel@tonic-gate 		if (scf_pg_update(pg) == -1)
3807c478bd9Sstevel@tonic-gate 			scfdie();
3817c478bd9Sstevel@tonic-gate 	}
3827c478bd9Sstevel@tonic-gate 
3837c478bd9Sstevel@tonic-gate out:
3847c478bd9Sstevel@tonic-gate 	scf_transaction_destroy(tx);
3857c478bd9Sstevel@tonic-gate 	scf_entry_destroy(ent);
3867c478bd9Sstevel@tonic-gate 	scf_value_destroy(v);
3877c478bd9Sstevel@tonic-gate 	return (ret);
3887c478bd9Sstevel@tonic-gate }
3897c478bd9Sstevel@tonic-gate 
3907c478bd9Sstevel@tonic-gate /*
3917c478bd9Sstevel@tonic-gate  * Gets the single astring value of the propname property of pg.  prop & v are
3927c478bd9Sstevel@tonic-gate  * scratch space.  Returns the length of the string on success or
3937c478bd9Sstevel@tonic-gate  *   -ENOENT - pg has no property named propname
3947c478bd9Sstevel@tonic-gate  *   -E2BIG - property has no values or multiple values
3957c478bd9Sstevel@tonic-gate  *   -EINVAL - property type is not compatible with astring
3967c478bd9Sstevel@tonic-gate  */
3977c478bd9Sstevel@tonic-gate ssize_t
3987c478bd9Sstevel@tonic-gate get_astring_prop(const scf_propertygroup_t *pg, const char *propname,
3997c478bd9Sstevel@tonic-gate     scf_property_t *prop, scf_value_t *v, char *buf, size_t bufsz)
4007c478bd9Sstevel@tonic-gate {
4017c478bd9Sstevel@tonic-gate 	ssize_t sz;
4027c478bd9Sstevel@tonic-gate 
4037c478bd9Sstevel@tonic-gate 	if (scf_pg_get_property(pg, propname, prop) != 0) {
4047c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
4057c478bd9Sstevel@tonic-gate 			scfdie();
4067c478bd9Sstevel@tonic-gate 
4077c478bd9Sstevel@tonic-gate 		return (-ENOENT);
4087c478bd9Sstevel@tonic-gate 	}
4097c478bd9Sstevel@tonic-gate 
4107c478bd9Sstevel@tonic-gate 	if (scf_property_get_value(prop, v) != 0) {
4117c478bd9Sstevel@tonic-gate 		switch (scf_error()) {
4127c478bd9Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
4137c478bd9Sstevel@tonic-gate 		case SCF_ERROR_CONSTRAINT_VIOLATED:
4147c478bd9Sstevel@tonic-gate 			return (-E2BIG);
4157c478bd9Sstevel@tonic-gate 
4167c478bd9Sstevel@tonic-gate 		default:
4177c478bd9Sstevel@tonic-gate 			scfdie();
4187c478bd9Sstevel@tonic-gate 		}
4197c478bd9Sstevel@tonic-gate 	}
4207c478bd9Sstevel@tonic-gate 
4217c478bd9Sstevel@tonic-gate 	sz = scf_value_get_astring(v, buf, bufsz);
4227c478bd9Sstevel@tonic-gate 	if (sz < 0) {
4237c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_TYPE_MISMATCH)
4247c478bd9Sstevel@tonic-gate 			scfdie();
4257c478bd9Sstevel@tonic-gate 
4267c478bd9Sstevel@tonic-gate 		return (-EINVAL);
4277c478bd9Sstevel@tonic-gate 	}
4287c478bd9Sstevel@tonic-gate 
4297c478bd9Sstevel@tonic-gate 	return (sz);
4307c478bd9Sstevel@tonic-gate }
4317c478bd9Sstevel@tonic-gate 
4327c478bd9Sstevel@tonic-gate /*
4337c478bd9Sstevel@tonic-gate  * Returns 0 or EPERM.
4347c478bd9Sstevel@tonic-gate  */
4357c478bd9Sstevel@tonic-gate static int
436eb1a3463STruong Nguyen pg_get_or_add(const scf_instance_t *inst, const char *pgname,
437eb1a3463STruong Nguyen     const char *pgtype, uint32_t pgflags, scf_propertygroup_t *pg)
4387c478bd9Sstevel@tonic-gate {
4397c478bd9Sstevel@tonic-gate again:
4407c478bd9Sstevel@tonic-gate 	if (scf_instance_get_pg(inst, pgname, pg) == 0)
4417c478bd9Sstevel@tonic-gate 		return (0);
4427c478bd9Sstevel@tonic-gate 
4437c478bd9Sstevel@tonic-gate 	if (scf_error() != SCF_ERROR_NOT_FOUND)
4447c478bd9Sstevel@tonic-gate 		scfdie();
4457c478bd9Sstevel@tonic-gate 
4467c478bd9Sstevel@tonic-gate 	if (scf_instance_add_pg(inst, pgname, pgtype, pgflags, pg) == 0)
4477c478bd9Sstevel@tonic-gate 		return (0);
4487c478bd9Sstevel@tonic-gate 
4497c478bd9Sstevel@tonic-gate 	switch (scf_error()) {
4507c478bd9Sstevel@tonic-gate 	case SCF_ERROR_EXISTS:
4517c478bd9Sstevel@tonic-gate 		goto again;
4527c478bd9Sstevel@tonic-gate 
4537c478bd9Sstevel@tonic-gate 	case SCF_ERROR_PERMISSION_DENIED:
4547c478bd9Sstevel@tonic-gate 		return (EPERM);
4557c478bd9Sstevel@tonic-gate 
4567c478bd9Sstevel@tonic-gate 	default:
4577c478bd9Sstevel@tonic-gate 		scfdie();
4587c478bd9Sstevel@tonic-gate 		/* NOTREACHED */
4597c478bd9Sstevel@tonic-gate 	}
4607c478bd9Sstevel@tonic-gate }
4617c478bd9Sstevel@tonic-gate 
462eb1a3463STruong Nguyen static int
463eb1a3463STruong Nguyen my_ct_name(char *out, size_t len)
464eb1a3463STruong Nguyen {
465eb1a3463STruong Nguyen 	ct_stathdl_t st;
466eb1a3463STruong Nguyen 	char *ct_fmri;
467eb1a3463STruong Nguyen 	ctid_t ct;
468eb1a3463STruong Nguyen 	int fd, errno, ret;
469eb1a3463STruong Nguyen 
470eb1a3463STruong Nguyen 	if ((ct = getctid()) == -1)
471eb1a3463STruong Nguyen 		uu_die(gettext("Could not get contract id for process"));
472eb1a3463STruong Nguyen 
473eb1a3463STruong Nguyen 	fd = contract_open(ct, "process", "status", O_RDONLY);
474eb1a3463STruong Nguyen 
475eb1a3463STruong Nguyen 	if ((errno = ct_status_read(fd, CTD_ALL, &st)) != 0)
476eb1a3463STruong Nguyen 		uu_warn(gettext("Could not read status of contract "
477eb1a3463STruong Nguyen 		    "%ld: %s.\n"), ct, strerror(errno));
478eb1a3463STruong Nguyen 
479eb1a3463STruong Nguyen 	if ((errno = ct_pr_status_get_svc_fmri(st, &ct_fmri)) != 0)
480eb1a3463STruong Nguyen 		uu_warn(gettext("Could not get svc_fmri for contract "
481eb1a3463STruong Nguyen 		    "%ld: %s.\n"), ct, strerror(errno));
482eb1a3463STruong Nguyen 
483eb1a3463STruong Nguyen 	ret = strlcpy(out, ct_fmri, len);
484eb1a3463STruong Nguyen 
485eb1a3463STruong Nguyen 	ct_status_free(st);
486eb1a3463STruong Nguyen 	(void) close(fd);
487eb1a3463STruong Nguyen 
488eb1a3463STruong Nguyen 	return (ret);
489eb1a3463STruong Nguyen }
490eb1a3463STruong Nguyen 
491eb1a3463STruong Nguyen /*
492eb1a3463STruong Nguyen  * Set auxiliary_tty and auxiliary_fmri properties in restarter_actions pg to
493eb1a3463STruong Nguyen  * communicate whether the action is requested from a tty and the fmri of the
494eb1a3463STruong Nguyen  * responsible process.
495e8f5b3f5STruong Nguyen  *
496e8f5b3f5STruong Nguyen  * Returns 0, EPERM, or EROFS
497eb1a3463STruong Nguyen  */
498eb1a3463STruong Nguyen static int
499eb1a3463STruong Nguyen restarter_setup(const char *fmri, const scf_instance_t *inst)
500eb1a3463STruong Nguyen {
501eb1a3463STruong Nguyen 	boolean_t b = B_FALSE;
502eb1a3463STruong Nguyen 	scf_propertygroup_t *pg = NULL;
503e8f5b3f5STruong Nguyen 	int ret = 0;
504eb1a3463STruong Nguyen 
505eb1a3463STruong Nguyen 	if ((pg = scf_pg_create(h)) == NULL)
506eb1a3463STruong Nguyen 		scfdie();
507eb1a3463STruong Nguyen 
508eb1a3463STruong Nguyen 	if (pg_get_or_add(inst, SCF_PG_RESTARTER_ACTIONS,
509eb1a3463STruong Nguyen 	    SCF_PG_RESTARTER_ACTIONS_TYPE, SCF_PG_RESTARTER_ACTIONS_FLAGS,
510e8f5b3f5STruong Nguyen 	    pg) == EPERM) {
511e8f5b3f5STruong Nguyen 		if (!verbose)
512e8f5b3f5STruong Nguyen 			uu_warn(emsg_permission_denied, fmri);
513e8f5b3f5STruong Nguyen 		else
514e8f5b3f5STruong Nguyen 			uu_warn(emsg_create_pg_perm_denied, fmri,
515e8f5b3f5STruong Nguyen 			    SCF_PG_RESTARTER_ACTIONS);
516e8f5b3f5STruong Nguyen 
517e8f5b3f5STruong Nguyen 		ret = EPERM;
518e8f5b3f5STruong Nguyen 		goto out;
519e8f5b3f5STruong Nguyen 	}
520eb1a3463STruong Nguyen 
521eb1a3463STruong Nguyen 	/* Set auxiliary_tty property */
522eb1a3463STruong Nguyen 	if (isatty(STDIN_FILENO))
523eb1a3463STruong Nguyen 		b = B_TRUE;
524eb1a3463STruong Nguyen 
525eb1a3463STruong Nguyen 	/* Create and set state to disabled */
526eb1a3463STruong Nguyen 	switch (set_bool_prop(pg, SCF_PROPERTY_AUX_TTY, b) != 0) {
527eb1a3463STruong Nguyen 	case 0:
528eb1a3463STruong Nguyen 		break;
529eb1a3463STruong Nguyen 
530eb1a3463STruong Nguyen 	case EPERM:
531e8f5b3f5STruong Nguyen 		if (!verbose)
532e8f5b3f5STruong Nguyen 			uu_warn(emsg_permission_denied, fmri);
533e8f5b3f5STruong Nguyen 		else
534e8f5b3f5STruong Nguyen 			uu_warn(emsg_prop_perm_denied, fmri,
535e8f5b3f5STruong Nguyen 			    SCF_PG_RESTARTER_ACTIONS, SCF_PROPERTY_AUX_TTY);
536e8f5b3f5STruong Nguyen 
537e8f5b3f5STruong Nguyen 		ret = EPERM;
538e8f5b3f5STruong Nguyen 		goto out;
539e8f5b3f5STruong Nguyen 		/* NOTREACHED */
540eb1a3463STruong Nguyen 
541eb1a3463STruong Nguyen 	case EROFS:
542e8f5b3f5STruong Nguyen 		/* Shouldn't happen, but it can. */
543e8f5b3f5STruong Nguyen 		if (!verbose)
544e8f5b3f5STruong Nguyen 			uu_warn(gettext("%s: Repository read-only.\n"), fmri);
545e8f5b3f5STruong Nguyen 		else
546eb1a3463STruong Nguyen 			uu_warn(gettext("%s: Could not set %s/%s "
547eb1a3463STruong Nguyen 			    "(repository read-only).\n"), fmri,
548eb1a3463STruong Nguyen 			    SCF_PG_RESTARTER_ACTIONS, SCF_PROPERTY_AUX_TTY);
549e8f5b3f5STruong Nguyen 
550e8f5b3f5STruong Nguyen 		ret = EROFS;
551e8f5b3f5STruong Nguyen 		goto out;
552e8f5b3f5STruong Nguyen 		/* NOTREACHED */
553eb1a3463STruong Nguyen 
554eb1a3463STruong Nguyen 	default:
555eb1a3463STruong Nguyen 		scfdie();
556eb1a3463STruong Nguyen 	}
557eb1a3463STruong Nguyen 
558eb1a3463STruong Nguyen 	if (my_ct_name(scratch_fmri, max_scf_fmri_sz) > 0) {
559eb1a3463STruong Nguyen 		set_astring_prop(fmri, SCF_PG_RESTARTER_ACTIONS,
560eb1a3463STruong Nguyen 		    SCF_PG_RESTARTER_ACTIONS_TYPE,
561eb1a3463STruong Nguyen 		    SCF_PG_RESTARTER_ACTIONS_FLAGS,
562eb1a3463STruong Nguyen 		    SCF_PROPERTY_AUX_FMRI, scratch_fmri);
563eb1a3463STruong Nguyen 	} else {
564eb1a3463STruong Nguyen 		uu_warn(gettext("%s: Could not set %s/%s: "
565eb1a3463STruong Nguyen 		    "my_ct_name failed.\n"), fmri,
566eb1a3463STruong Nguyen 		    SCF_PG_RESTARTER_ACTIONS, SCF_PROPERTY_AUX_FMRI);
567eb1a3463STruong Nguyen 	}
568eb1a3463STruong Nguyen 
569e8f5b3f5STruong Nguyen out:
570eb1a3463STruong Nguyen 	scf_pg_destroy(pg);
571e8f5b3f5STruong Nguyen 	return (ret);
572eb1a3463STruong Nguyen }
573eb1a3463STruong Nguyen 
5747c478bd9Sstevel@tonic-gate /*
5757c478bd9Sstevel@tonic-gate  * Enable or disable inst, per enable.  If temp is true, set
5767c478bd9Sstevel@tonic-gate  * general_ovr/enabled.  Otherwise set general/enabled and delete
5777c478bd9Sstevel@tonic-gate  * general_ovr/enabled if it exists (order is important here: we don't want the
5787c478bd9Sstevel@tonic-gate  * enabled status to glitch).
5797c478bd9Sstevel@tonic-gate  */
5807c478bd9Sstevel@tonic-gate static void
5817c478bd9Sstevel@tonic-gate set_inst_enabled(const char *fmri, scf_instance_t *inst, boolean_t temp,
5827c478bd9Sstevel@tonic-gate     boolean_t enable)
5837c478bd9Sstevel@tonic-gate {
5847c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *pg;
5857c478bd9Sstevel@tonic-gate 	uint8_t b;
5867c478bd9Sstevel@tonic-gate 	const char *pgname = NULL;	/* For emsg_pg_perm_denied */
5877c478bd9Sstevel@tonic-gate 	int r;
5887c478bd9Sstevel@tonic-gate 
5897c478bd9Sstevel@tonic-gate 	pg = scf_pg_create(h);
5907c478bd9Sstevel@tonic-gate 	if (pg == NULL)
5917c478bd9Sstevel@tonic-gate 		scfdie();
5927c478bd9Sstevel@tonic-gate 
593eb1a3463STruong Nguyen 	if (restarter_setup(fmri, inst))
594e8f5b3f5STruong Nguyen 		goto out;
595eb1a3463STruong Nguyen 
596fee38f6fStn143363 	/*
597fee38f6fStn143363 	 * An instance's configuration is incomplete if general/enabled
598fee38f6fStn143363 	 * doesn't exist. Create both the property group and property
599fee38f6fStn143363 	 * here if they don't exist.
600fee38f6fStn143363 	 */
601fee38f6fStn143363 	pgname = SCF_PG_GENERAL;
602fee38f6fStn143363 	if (pg_get_or_add(inst, pgname, SCF_PG_GENERAL_TYPE,
603fee38f6fStn143363 	    SCF_PG_GENERAL_FLAGS, pg) != 0)
604fee38f6fStn143363 		goto eperm;
605fee38f6fStn143363 
606fee38f6fStn143363 	if (get_bool_prop(pg, SCF_PROPERTY_ENABLED, &b) != 0) {
607fee38f6fStn143363 		/* Create and set state to disabled */
608fee38f6fStn143363 		switch (set_bool_prop(pg, SCF_PROPERTY_ENABLED, B_FALSE) != 0) {
609fee38f6fStn143363 		case 0:
610fee38f6fStn143363 			break;
611fee38f6fStn143363 
612fee38f6fStn143363 		case EPERM:
613fee38f6fStn143363 			goto eperm;
614fee38f6fStn143363 
615fee38f6fStn143363 		case EROFS:
616fee38f6fStn143363 			/* Shouldn't happen, but it can. */
617fee38f6fStn143363 			if (!verbose)
618fee38f6fStn143363 				uu_warn(gettext("%s: Repository read-only.\n"),
619fee38f6fStn143363 				    fmri);
620fee38f6fStn143363 			else
621fee38f6fStn143363 				uu_warn(gettext("%s: Could not set %s/%s "
622fee38f6fStn143363 				    "(repository read-only).\n"), fmri,
623fee38f6fStn143363 				    SCF_PG_GENERAL, SCF_PROPERTY_ENABLED);
624fee38f6fStn143363 			goto out;
625fee38f6fStn143363 
626fee38f6fStn143363 		default:
627fee38f6fStn143363 			assert(0);
628fee38f6fStn143363 			abort();
629fee38f6fStn143363 		}
630fee38f6fStn143363 	}
631fee38f6fStn143363 
6327c478bd9Sstevel@tonic-gate 	if (temp) {
6337c478bd9Sstevel@tonic-gate 		/* Set general_ovr/enabled */
6347c478bd9Sstevel@tonic-gate 		pgname = SCF_PG_GENERAL_OVR;
6357c478bd9Sstevel@tonic-gate 		if (pg_get_or_add(inst, pgname, SCF_PG_GENERAL_OVR_TYPE,
6367c478bd9Sstevel@tonic-gate 		    SCF_PG_GENERAL_OVR_FLAGS, pg) != 0)
6377c478bd9Sstevel@tonic-gate 			goto eperm;
6387c478bd9Sstevel@tonic-gate 
6397c478bd9Sstevel@tonic-gate 		switch (set_bool_prop(pg, SCF_PROPERTY_ENABLED, enable) != 0) {
6407c478bd9Sstevel@tonic-gate 		case 0:
6417c478bd9Sstevel@tonic-gate 			break;
6427c478bd9Sstevel@tonic-gate 
6437c478bd9Sstevel@tonic-gate 		case EPERM:
6447c478bd9Sstevel@tonic-gate 			goto eperm;
6457c478bd9Sstevel@tonic-gate 
6467c478bd9Sstevel@tonic-gate 		case EROFS:
6477c478bd9Sstevel@tonic-gate 			/* Shouldn't happen, but it can. */
6487c478bd9Sstevel@tonic-gate 			if (!verbose)
6497c478bd9Sstevel@tonic-gate 				uu_warn(gettext("%s: Repository read-only.\n"),
6507c478bd9Sstevel@tonic-gate 				    fmri);
6517c478bd9Sstevel@tonic-gate 			else
6527c478bd9Sstevel@tonic-gate 				uu_warn(gettext("%s: Could not set %s/%s "
6537c478bd9Sstevel@tonic-gate 				    "(repository read-only).\n"), fmri,
6547c478bd9Sstevel@tonic-gate 				    SCF_PG_GENERAL_OVR, SCF_PROPERTY_ENABLED);
6557c478bd9Sstevel@tonic-gate 			goto out;
6567c478bd9Sstevel@tonic-gate 
6577c478bd9Sstevel@tonic-gate 		default:
6587c478bd9Sstevel@tonic-gate 			assert(0);
6597c478bd9Sstevel@tonic-gate 			abort();
6607c478bd9Sstevel@tonic-gate 		}
6617c478bd9Sstevel@tonic-gate 
6627c478bd9Sstevel@tonic-gate 		if (verbose)
6637c478bd9Sstevel@tonic-gate 			(void) printf(enable ?
6647c478bd9Sstevel@tonic-gate 			    gettext("%s temporarily enabled.\n") :
6657c478bd9Sstevel@tonic-gate 			    gettext("%s temporarily disabled.\n"), fmri);
6667c478bd9Sstevel@tonic-gate 	} else {
6677c478bd9Sstevel@tonic-gate again:
668fee38f6fStn143363 		/*
669fee38f6fStn143363 		 * Both pg and property should exist since we created
670fee38f6fStn143363 		 * them earlier. However, there's still a chance that
671fee38f6fStn143363 		 * someone may have deleted the property out from under
672fee38f6fStn143363 		 * us.
673fee38f6fStn143363 		 */
6747c478bd9Sstevel@tonic-gate 		if (pg_get_or_add(inst, pgname, SCF_PG_GENERAL_TYPE,
6757c478bd9Sstevel@tonic-gate 		    SCF_PG_GENERAL_FLAGS, pg) != 0)
6767c478bd9Sstevel@tonic-gate 			goto eperm;
6777c478bd9Sstevel@tonic-gate 
6787c478bd9Sstevel@tonic-gate 		switch (set_bool_prop(pg, SCF_PROPERTY_ENABLED, enable)) {
6797c478bd9Sstevel@tonic-gate 		case 0:
6807c478bd9Sstevel@tonic-gate 			break;
6817c478bd9Sstevel@tonic-gate 
6827c478bd9Sstevel@tonic-gate 		case EPERM:
6837c478bd9Sstevel@tonic-gate 			goto eperm;
6847c478bd9Sstevel@tonic-gate 
6857c478bd9Sstevel@tonic-gate 		case EROFS:
6867c478bd9Sstevel@tonic-gate 			/*
6877c478bd9Sstevel@tonic-gate 			 * If general/enabled is already set the way we want,
6887c478bd9Sstevel@tonic-gate 			 * proceed.
6897c478bd9Sstevel@tonic-gate 			 */
6907c478bd9Sstevel@tonic-gate 			switch (get_bool_prop(pg, SCF_PROPERTY_ENABLED, &b)) {
6917c478bd9Sstevel@tonic-gate 			case 0:
6927c478bd9Sstevel@tonic-gate 				if ((b != 0) == (enable != B_FALSE))
6937c478bd9Sstevel@tonic-gate 					break;
6947c478bd9Sstevel@tonic-gate 				/* FALLTHROUGH */
6957c478bd9Sstevel@tonic-gate 
6967c478bd9Sstevel@tonic-gate 			case ENOENT:
6977c478bd9Sstevel@tonic-gate 			case EINVAL:
6987c478bd9Sstevel@tonic-gate 			case E2BIG:
6997c478bd9Sstevel@tonic-gate 				if (!verbose)
7007c478bd9Sstevel@tonic-gate 					uu_warn(gettext("%s: Repository "
7017c478bd9Sstevel@tonic-gate 					    "read-only.\n"), fmri);
7027c478bd9Sstevel@tonic-gate 				else
7037c478bd9Sstevel@tonic-gate 					uu_warn(gettext("%s: Could not set "
7047c478bd9Sstevel@tonic-gate 					    "%s/%s (repository read-only).\n"),
7057c478bd9Sstevel@tonic-gate 					    fmri, SCF_PG_GENERAL,
7067c478bd9Sstevel@tonic-gate 					    SCF_PROPERTY_ENABLED);
7077c478bd9Sstevel@tonic-gate 				goto out;
7087c478bd9Sstevel@tonic-gate 
7097c478bd9Sstevel@tonic-gate 			case ECANCELED:
7107c478bd9Sstevel@tonic-gate 				goto again;
7117c478bd9Sstevel@tonic-gate 
7127c478bd9Sstevel@tonic-gate 			default:
7137c478bd9Sstevel@tonic-gate 				assert(0);
7147c478bd9Sstevel@tonic-gate 				abort();
7157c478bd9Sstevel@tonic-gate 			}
7167c478bd9Sstevel@tonic-gate 			break;
7177c478bd9Sstevel@tonic-gate 
7187c478bd9Sstevel@tonic-gate 		default:
7197c478bd9Sstevel@tonic-gate 			assert(0);
7207c478bd9Sstevel@tonic-gate 			abort();
7217c478bd9Sstevel@tonic-gate 		}
7227c478bd9Sstevel@tonic-gate 
7237c478bd9Sstevel@tonic-gate 		pgname = SCF_PG_GENERAL_OVR;
724eb1a3463STruong Nguyen 		r = scf_instance_delete_prop(inst, pgname,
725eb1a3463STruong Nguyen 		    SCF_PROPERTY_ENABLED);
7267c478bd9Sstevel@tonic-gate 		switch (r) {
7277c478bd9Sstevel@tonic-gate 		case 0:
7287c478bd9Sstevel@tonic-gate 			break;
7297c478bd9Sstevel@tonic-gate 
7307c478bd9Sstevel@tonic-gate 		case ECANCELED:
7317c478bd9Sstevel@tonic-gate 			uu_warn(emsg_no_service, fmri);
7327c478bd9Sstevel@tonic-gate 			goto out;
7337c478bd9Sstevel@tonic-gate 
7347c478bd9Sstevel@tonic-gate 		case EPERM:
7357c478bd9Sstevel@tonic-gate 			goto eperm;
7367c478bd9Sstevel@tonic-gate 
7377c478bd9Sstevel@tonic-gate 		case EACCES:
7387c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Could not delete %s/%s "
7397c478bd9Sstevel@tonic-gate 			    "property of %s: backend access denied.\n"),
7407c478bd9Sstevel@tonic-gate 			    pgname, SCF_PROPERTY_ENABLED, fmri);
7417c478bd9Sstevel@tonic-gate 			goto out;
7427c478bd9Sstevel@tonic-gate 
7437c478bd9Sstevel@tonic-gate 		case EROFS:
7447c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Could not delete %s/%s "
7457c478bd9Sstevel@tonic-gate 			    "property of %s: backend is read-only.\n"),
7467c478bd9Sstevel@tonic-gate 			    pgname, SCF_PROPERTY_ENABLED, fmri);
7477c478bd9Sstevel@tonic-gate 			goto out;
7487c478bd9Sstevel@tonic-gate 
7497c478bd9Sstevel@tonic-gate 		default:
750eb1a3463STruong Nguyen 			bad_error("scf_instance_delete_prop", r);
7517c478bd9Sstevel@tonic-gate 		}
7527c478bd9Sstevel@tonic-gate 
7537c478bd9Sstevel@tonic-gate 		if (verbose)
7547c478bd9Sstevel@tonic-gate 			(void) printf(enable ?  gettext("%s enabled.\n") :
7557c478bd9Sstevel@tonic-gate 			    gettext("%s disabled.\n"), fmri);
7567c478bd9Sstevel@tonic-gate 	}
7577c478bd9Sstevel@tonic-gate 
7587c478bd9Sstevel@tonic-gate 	scf_pg_destroy(pg);
7597c478bd9Sstevel@tonic-gate 	return;
7607c478bd9Sstevel@tonic-gate 
7617c478bd9Sstevel@tonic-gate eperm:
7627c478bd9Sstevel@tonic-gate 	assert(pgname != NULL);
7637c478bd9Sstevel@tonic-gate 	if (!verbose)
7647c478bd9Sstevel@tonic-gate 		uu_warn(emsg_permission_denied, fmri);
7657c478bd9Sstevel@tonic-gate 	else
7667c478bd9Sstevel@tonic-gate 		uu_warn(emsg_pg_perm_denied, fmri, pgname);
7677c478bd9Sstevel@tonic-gate 
7687c478bd9Sstevel@tonic-gate out:
7697c478bd9Sstevel@tonic-gate 	scf_pg_destroy(pg);
7707c478bd9Sstevel@tonic-gate 	exit_status = 1;
7717c478bd9Sstevel@tonic-gate }
7727c478bd9Sstevel@tonic-gate 
7737c478bd9Sstevel@tonic-gate /*
7747c478bd9Sstevel@tonic-gate  * Set inst to the instance which corresponds to fmri.  If fmri identifies
7757c478bd9Sstevel@tonic-gate  * a service with a single instance, get that instance.
7767c478bd9Sstevel@tonic-gate  *
7777c478bd9Sstevel@tonic-gate  * Fails with
7787c478bd9Sstevel@tonic-gate  *   ENOTSUP - fmri has an unsupported scheme
7797c478bd9Sstevel@tonic-gate  *   EINVAL - fmri is invalid
7807c478bd9Sstevel@tonic-gate  *   ENOTDIR - fmri does not identify a service or instance
7817c478bd9Sstevel@tonic-gate  *   ENOENT - could not locate instance
7827c478bd9Sstevel@tonic-gate  *   E2BIG - fmri is a service with multiple instances (warning not printed)
7837c478bd9Sstevel@tonic-gate  */
7847c478bd9Sstevel@tonic-gate static int
7857c478bd9Sstevel@tonic-gate get_inst_mult(const char *fmri, scf_instance_t *inst)
7867c478bd9Sstevel@tonic-gate {
7877c478bd9Sstevel@tonic-gate 	char *cfmri;
7887c478bd9Sstevel@tonic-gate 	const char *svc_name, *inst_name, *pg_name;
7897c478bd9Sstevel@tonic-gate 	scf_service_t *svc;
7907c478bd9Sstevel@tonic-gate 	scf_instance_t *inst2;
7917c478bd9Sstevel@tonic-gate 	scf_iter_t *iter;
7927c478bd9Sstevel@tonic-gate 	int ret;
7937c478bd9Sstevel@tonic-gate 
7947c478bd9Sstevel@tonic-gate 	if (strncmp(fmri, "lrc:", sizeof ("lrc:") - 1) == 0) {
7957c478bd9Sstevel@tonic-gate 		uu_warn(gettext("FMRI \"%s\" is a legacy service.\n"), fmri);
7967c478bd9Sstevel@tonic-gate 		exit_status = 1;
7977c478bd9Sstevel@tonic-gate 		return (ENOTSUP);
7987c478bd9Sstevel@tonic-gate 	}
7997c478bd9Sstevel@tonic-gate 
8007c478bd9Sstevel@tonic-gate 	cfmri = strdup(fmri);
8017c478bd9Sstevel@tonic-gate 	if (cfmri == NULL)
8027c478bd9Sstevel@tonic-gate 		uu_die(emsg_nomem);
8037c478bd9Sstevel@tonic-gate 
8047c478bd9Sstevel@tonic-gate 	if (scf_parse_svc_fmri(cfmri, NULL, &svc_name, &inst_name, &pg_name,
8057c478bd9Sstevel@tonic-gate 	    NULL) != SCF_SUCCESS) {
8067c478bd9Sstevel@tonic-gate 		free(cfmri);
8077c478bd9Sstevel@tonic-gate 		uu_warn(gettext("FMRI \"%s\" is invalid.\n"), fmri);
8087c478bd9Sstevel@tonic-gate 		exit_status = 1;
8097c478bd9Sstevel@tonic-gate 		return (EINVAL);
8107c478bd9Sstevel@tonic-gate 	}
8117c478bd9Sstevel@tonic-gate 
8127c478bd9Sstevel@tonic-gate 	free(cfmri);
8137c478bd9Sstevel@tonic-gate 
8147c478bd9Sstevel@tonic-gate 	if (svc_name == NULL || pg_name != NULL) {
8157c478bd9Sstevel@tonic-gate 		uu_warn(gettext(
8167c478bd9Sstevel@tonic-gate 		    "FMRI \"%s\" does not designate a service or instance.\n"),
8177c478bd9Sstevel@tonic-gate 		    fmri);
8187c478bd9Sstevel@tonic-gate 		exit_status = 1;
8197c478bd9Sstevel@tonic-gate 		return (ENOTDIR);
8207c478bd9Sstevel@tonic-gate 	}
8217c478bd9Sstevel@tonic-gate 
8227c478bd9Sstevel@tonic-gate 	if (inst_name != NULL) {
8237c478bd9Sstevel@tonic-gate 		if (scf_handle_decode_fmri(h, fmri, NULL, NULL, inst, NULL,
8247c478bd9Sstevel@tonic-gate 		    NULL, SCF_DECODE_FMRI_EXACT) == 0)
8257c478bd9Sstevel@tonic-gate 			return (0);
8267c478bd9Sstevel@tonic-gate 
8277c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
8287c478bd9Sstevel@tonic-gate 			scfdie();
8297c478bd9Sstevel@tonic-gate 
8307c478bd9Sstevel@tonic-gate 		uu_warn(gettext("No such instance \"%s\".\n"), fmri);
8317c478bd9Sstevel@tonic-gate 		exit_status = 1;
8327c478bd9Sstevel@tonic-gate 
8337c478bd9Sstevel@tonic-gate 		return (ENOENT);
8347c478bd9Sstevel@tonic-gate 	}
8357c478bd9Sstevel@tonic-gate 
8367c478bd9Sstevel@tonic-gate 	if ((svc = scf_service_create(h)) == NULL ||
8377c478bd9Sstevel@tonic-gate 	    (inst2 = scf_instance_create(h)) == NULL ||
8387c478bd9Sstevel@tonic-gate 	    (iter = scf_iter_create(h)) == NULL)
8397c478bd9Sstevel@tonic-gate 		scfdie();
8407c478bd9Sstevel@tonic-gate 
8417c478bd9Sstevel@tonic-gate 	if (scf_handle_decode_fmri(h, fmri, NULL, svc, NULL, NULL, NULL,
8427c478bd9Sstevel@tonic-gate 	    SCF_DECODE_FMRI_EXACT) != SCF_SUCCESS) {
8437c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
8447c478bd9Sstevel@tonic-gate 			scfdie();
8457c478bd9Sstevel@tonic-gate 
8467c478bd9Sstevel@tonic-gate 		uu_warn(emsg_no_service, fmri);
8477c478bd9Sstevel@tonic-gate 		exit_status = 1;
8487c478bd9Sstevel@tonic-gate 
8497c478bd9Sstevel@tonic-gate 		ret = ENOENT;
8507c478bd9Sstevel@tonic-gate 		goto out;
8517c478bd9Sstevel@tonic-gate 	}
8527c478bd9Sstevel@tonic-gate 
8537c478bd9Sstevel@tonic-gate 	/* If the service has only one child, use it. */
8547c478bd9Sstevel@tonic-gate 	if (scf_iter_service_instances(iter, svc) != SCF_SUCCESS)
8557c478bd9Sstevel@tonic-gate 		scfdie();
8567c478bd9Sstevel@tonic-gate 
8577c478bd9Sstevel@tonic-gate 	ret = scf_iter_next_instance(iter, inst);
8587c478bd9Sstevel@tonic-gate 	if (ret < 0)
8597c478bd9Sstevel@tonic-gate 		scfdie();
8607c478bd9Sstevel@tonic-gate 	if (ret != 1) {
8617c478bd9Sstevel@tonic-gate 		uu_warn(gettext("Service \"%s\" has no instances.\n"),
8627c478bd9Sstevel@tonic-gate 		    fmri);
8637c478bd9Sstevel@tonic-gate 		exit_status = 1;
8647c478bd9Sstevel@tonic-gate 		ret = ENOENT;
8657c478bd9Sstevel@tonic-gate 		goto out;
8667c478bd9Sstevel@tonic-gate 	}
8677c478bd9Sstevel@tonic-gate 
8687c478bd9Sstevel@tonic-gate 	ret = scf_iter_next_instance(iter, inst2);
8697c478bd9Sstevel@tonic-gate 	if (ret < 0)
8707c478bd9Sstevel@tonic-gate 		scfdie();
8717c478bd9Sstevel@tonic-gate 
8727c478bd9Sstevel@tonic-gate 	if (ret != 0) {
8737c478bd9Sstevel@tonic-gate 		ret = E2BIG;
8747c478bd9Sstevel@tonic-gate 		goto out;
8757c478bd9Sstevel@tonic-gate 	}
8767c478bd9Sstevel@tonic-gate 
8777c478bd9Sstevel@tonic-gate 	ret = 0;
8787c478bd9Sstevel@tonic-gate 
8797c478bd9Sstevel@tonic-gate out:
8807c478bd9Sstevel@tonic-gate 	scf_iter_destroy(iter);
8817c478bd9Sstevel@tonic-gate 	scf_instance_destroy(inst2);
8827c478bd9Sstevel@tonic-gate 	scf_service_destroy(svc);
8837c478bd9Sstevel@tonic-gate 	return (ret);
8847c478bd9Sstevel@tonic-gate }
8857c478bd9Sstevel@tonic-gate 
8867c478bd9Sstevel@tonic-gate /*
8877c478bd9Sstevel@tonic-gate  * Same as get_inst_mult(), but on E2BIG prints a warning and returns ENOENT.
8887c478bd9Sstevel@tonic-gate  */
8897c478bd9Sstevel@tonic-gate static int
8907c478bd9Sstevel@tonic-gate get_inst(const char *fmri, scf_instance_t *inst)
8917c478bd9Sstevel@tonic-gate {
8927c478bd9Sstevel@tonic-gate 	int r;
8937c478bd9Sstevel@tonic-gate 
8947c478bd9Sstevel@tonic-gate 	r = get_inst_mult(fmri, inst);
8957c478bd9Sstevel@tonic-gate 	if (r != E2BIG)
8967c478bd9Sstevel@tonic-gate 		return (r);
8977c478bd9Sstevel@tonic-gate 
8987c478bd9Sstevel@tonic-gate 	uu_warn(gettext("operation on service %s is ambiguous; "
8997c478bd9Sstevel@tonic-gate 	    "instance specification needed.\n"), fmri);
9007c478bd9Sstevel@tonic-gate 	return (ENOENT);
9017c478bd9Sstevel@tonic-gate }
9027c478bd9Sstevel@tonic-gate 
9037c478bd9Sstevel@tonic-gate static char *
9047c478bd9Sstevel@tonic-gate inst_get_fmri(const scf_instance_t *inst)
9057c478bd9Sstevel@tonic-gate {
9067c478bd9Sstevel@tonic-gate 	ssize_t sz;
9077c478bd9Sstevel@tonic-gate 
9087c478bd9Sstevel@tonic-gate 	sz = scf_instance_to_fmri(inst, scratch_fmri, max_scf_fmri_sz);
9097c478bd9Sstevel@tonic-gate 	if (sz < 0)
9107c478bd9Sstevel@tonic-gate 		scfdie();
9117c478bd9Sstevel@tonic-gate 	if (sz >= max_scf_fmri_sz)
9127c478bd9Sstevel@tonic-gate 		uu_die(gettext("scf_instance_to_fmri() returned unexpectedly "
9137c478bd9Sstevel@tonic-gate 		    "long value.\n"));
9147c478bd9Sstevel@tonic-gate 
9157c478bd9Sstevel@tonic-gate 	return (scratch_fmri);
9167c478bd9Sstevel@tonic-gate }
9177c478bd9Sstevel@tonic-gate 
9187c478bd9Sstevel@tonic-gate static ssize_t
9197c478bd9Sstevel@tonic-gate dep_get_astring(const char *fmri, const char *pgname,
9207c478bd9Sstevel@tonic-gate     const scf_propertygroup_t *pg, const char *propname, scf_property_t *prop,
9217c478bd9Sstevel@tonic-gate     scf_value_t *v, char *buf, size_t bufsz)
9227c478bd9Sstevel@tonic-gate {
9237c478bd9Sstevel@tonic-gate 	ssize_t sz;
9247c478bd9Sstevel@tonic-gate 
9257c478bd9Sstevel@tonic-gate 	sz = get_astring_prop(pg, propname, prop, v, buf, bufsz);
9267c478bd9Sstevel@tonic-gate 	if (sz >= 0)
9277c478bd9Sstevel@tonic-gate 		return (sz);
9287c478bd9Sstevel@tonic-gate 
9297c478bd9Sstevel@tonic-gate 	switch (-sz) {
9307c478bd9Sstevel@tonic-gate 	case ENOENT:
9317c478bd9Sstevel@tonic-gate 		uu_warn(gettext("\"%s\" is misconfigured (\"%s\" dependency "
9327c478bd9Sstevel@tonic-gate 		    "lacks \"%s\" property.)\n"), fmri, pgname, propname);
9337c478bd9Sstevel@tonic-gate 		return (-1);
9347c478bd9Sstevel@tonic-gate 
9357c478bd9Sstevel@tonic-gate 	case E2BIG:
9367c478bd9Sstevel@tonic-gate 		uu_warn(gettext("\"%s\" is misconfigured (\"%s/%s\" property "
9377c478bd9Sstevel@tonic-gate 		    "is not single-valued.)\n"), fmri, pgname, propname);
9387c478bd9Sstevel@tonic-gate 		return (-1);
9397c478bd9Sstevel@tonic-gate 
9407c478bd9Sstevel@tonic-gate 	case EINVAL:
9417c478bd9Sstevel@tonic-gate 		uu_warn(gettext("\"%s\" is misconfigured (\"%s/%s\" property "
9427c478bd9Sstevel@tonic-gate 		    "is not of astring type.)\n"), fmri, pgname, propname);
9437c478bd9Sstevel@tonic-gate 		return (-1);
9447c478bd9Sstevel@tonic-gate 
9457c478bd9Sstevel@tonic-gate 	default:
9467c478bd9Sstevel@tonic-gate 		assert(0);
9477c478bd9Sstevel@tonic-gate 		abort();
9487c478bd9Sstevel@tonic-gate 		/* NOTREACHED */
9497c478bd9Sstevel@tonic-gate 	}
9507c478bd9Sstevel@tonic-gate }
9517c478bd9Sstevel@tonic-gate 
9527c478bd9Sstevel@tonic-gate static boolean_t
9537c478bd9Sstevel@tonic-gate multiple_instances(scf_iter_t *iter, scf_value_t *v, char *buf)
9547c478bd9Sstevel@tonic-gate {
9557c478bd9Sstevel@tonic-gate 	int count = 0, r;
9567c478bd9Sstevel@tonic-gate 	boolean_t ret;
9577c478bd9Sstevel@tonic-gate 	scf_instance_t *inst;
9587c478bd9Sstevel@tonic-gate 
9597c478bd9Sstevel@tonic-gate 	inst = scf_instance_create(h);
9607c478bd9Sstevel@tonic-gate 	if (inst == NULL)
9617c478bd9Sstevel@tonic-gate 		scfdie();
9627c478bd9Sstevel@tonic-gate 
9637c478bd9Sstevel@tonic-gate 	for (;;) {
9647c478bd9Sstevel@tonic-gate 		r = scf_iter_next_value(iter, v);
9657c478bd9Sstevel@tonic-gate 		if (r == 0) {
9667c478bd9Sstevel@tonic-gate 			ret = B_FALSE;
9677c478bd9Sstevel@tonic-gate 			goto out;
9687c478bd9Sstevel@tonic-gate 		}
9697c478bd9Sstevel@tonic-gate 		if (r != 1)
9707c478bd9Sstevel@tonic-gate 			scfdie();
9717c478bd9Sstevel@tonic-gate 
9727c478bd9Sstevel@tonic-gate 		if (scf_value_get_astring(v, buf, max_scf_fmri_sz) < 0)
9737c478bd9Sstevel@tonic-gate 			scfdie();
9747c478bd9Sstevel@tonic-gate 
9757c478bd9Sstevel@tonic-gate 		switch (get_inst_mult(buf, inst)) {
9767c478bd9Sstevel@tonic-gate 		case 0:
9777c478bd9Sstevel@tonic-gate 			++count;
9787c478bd9Sstevel@tonic-gate 			if (count > 1) {
9797c478bd9Sstevel@tonic-gate 				ret = B_TRUE;
9807c478bd9Sstevel@tonic-gate 				goto out;
9817c478bd9Sstevel@tonic-gate 			}
9827c478bd9Sstevel@tonic-gate 			break;
9837c478bd9Sstevel@tonic-gate 
9847c478bd9Sstevel@tonic-gate 		case ENOTSUP:
9857c478bd9Sstevel@tonic-gate 		case EINVAL:
9867c478bd9Sstevel@tonic-gate 		case ENOTDIR:
9877c478bd9Sstevel@tonic-gate 		case ENOENT:
9887c478bd9Sstevel@tonic-gate 			continue;
9897c478bd9Sstevel@tonic-gate 
9907c478bd9Sstevel@tonic-gate 		case E2BIG:
9917c478bd9Sstevel@tonic-gate 			ret = B_TRUE;
9927c478bd9Sstevel@tonic-gate 			goto out;
9937c478bd9Sstevel@tonic-gate 
9947c478bd9Sstevel@tonic-gate 		default:
9957c478bd9Sstevel@tonic-gate 			assert(0);
9967c478bd9Sstevel@tonic-gate 			abort();
9977c478bd9Sstevel@tonic-gate 		}
9987c478bd9Sstevel@tonic-gate 	}
9997c478bd9Sstevel@tonic-gate 
10007c478bd9Sstevel@tonic-gate out:
10017c478bd9Sstevel@tonic-gate 	scf_instance_destroy(inst);
10027c478bd9Sstevel@tonic-gate 	return (ret);
10037c478bd9Sstevel@tonic-gate }
10047c478bd9Sstevel@tonic-gate 
10057c478bd9Sstevel@tonic-gate /*
10067c478bd9Sstevel@tonic-gate  * Enable the service or instance identified by fmri and its dependencies,
10077c478bd9Sstevel@tonic-gate  * recursively.  Specifically, call get_inst(fmri), enable the result, and
10087c478bd9Sstevel@tonic-gate  * recurse on its restarter and the dependencies.  To avoid duplication of
10097c478bd9Sstevel@tonic-gate  * effort or looping around a dependency cycle, each FMRI is entered into the
10107c478bd9Sstevel@tonic-gate  * "visited" hash table.  While recursing, the hash table entry is marked
10117c478bd9Sstevel@tonic-gate  * "active", so that if we come upon it again, we know we've hit a cycle.
10127c478bd9Sstevel@tonic-gate  * exclude_all and optional_all dependencies are ignored.  require_any
10137c478bd9Sstevel@tonic-gate  * dependencies are followed only if they comprise a single service; otherwise
10147c478bd9Sstevel@tonic-gate  * the user is warned.
10157c478bd9Sstevel@tonic-gate  *
10167c478bd9Sstevel@tonic-gate  * fmri must point to a writable max_scf_fmri_sz buffer.  Returns EINVAL if fmri
10177c478bd9Sstevel@tonic-gate  * is invalid, E2BIG if fmri identifies a service with multiple instances, ELOOP
10187c478bd9Sstevel@tonic-gate  * on cycle detection, or 0 on success.
10197c478bd9Sstevel@tonic-gate  */
10207c478bd9Sstevel@tonic-gate static int
10217c478bd9Sstevel@tonic-gate enable_fmri_rec(char *fmri, boolean_t temp)
10227c478bd9Sstevel@tonic-gate {
10237c478bd9Sstevel@tonic-gate 	scf_instance_t *inst;
10247c478bd9Sstevel@tonic-gate 	scf_snapshot_t *snap;
10257c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *pg;
10267c478bd9Sstevel@tonic-gate 	scf_property_t *prop;
10277c478bd9Sstevel@tonic-gate 	scf_value_t *v;
10287c478bd9Sstevel@tonic-gate 	scf_iter_t *pg_iter, *val_iter;
10297c478bd9Sstevel@tonic-gate 	scf_type_t ty;
10307c478bd9Sstevel@tonic-gate 	char *buf, *pgname;
10317c478bd9Sstevel@tonic-gate 	ssize_t name_sz, len, sz;
10327c478bd9Sstevel@tonic-gate 	int ret;
10337c478bd9Sstevel@tonic-gate 	struct ht_elt *he;
10347c478bd9Sstevel@tonic-gate 
10357c478bd9Sstevel@tonic-gate 	len = scf_canonify_fmri(fmri, fmri, max_scf_fmri_sz);
10367c478bd9Sstevel@tonic-gate 	if (len < 0) {
10377c478bd9Sstevel@tonic-gate 		assert(scf_error() == SCF_ERROR_INVALID_ARGUMENT);
10387c478bd9Sstevel@tonic-gate 		return (EINVAL);
10397c478bd9Sstevel@tonic-gate 	}
10407c478bd9Sstevel@tonic-gate 	assert(len < max_scf_fmri_sz);
10417c478bd9Sstevel@tonic-gate 
10427c478bd9Sstevel@tonic-gate 	switch (visited_find_or_add(fmri, &he)) {
10437c478bd9Sstevel@tonic-gate 	case 0:
10447c478bd9Sstevel@tonic-gate 		he->active = B_TRUE;
10457c478bd9Sstevel@tonic-gate 		break;
10467c478bd9Sstevel@tonic-gate 
10477c478bd9Sstevel@tonic-gate 	case 1:
10487c478bd9Sstevel@tonic-gate 		return (he->active ? ELOOP : 0);
10497c478bd9Sstevel@tonic-gate 
10507c478bd9Sstevel@tonic-gate 	case -1:
10517c478bd9Sstevel@tonic-gate 		uu_die(emsg_nomem);
10527c478bd9Sstevel@tonic-gate 
10537c478bd9Sstevel@tonic-gate 	default:
10547c478bd9Sstevel@tonic-gate 		assert(0);
10557c478bd9Sstevel@tonic-gate 		abort();
10567c478bd9Sstevel@tonic-gate 	}
10577c478bd9Sstevel@tonic-gate 
10587c478bd9Sstevel@tonic-gate 	inst = scf_instance_create(h);
10597c478bd9Sstevel@tonic-gate 	if (inst == NULL)
10607c478bd9Sstevel@tonic-gate 		scfdie();
10617c478bd9Sstevel@tonic-gate 
10627c478bd9Sstevel@tonic-gate 	switch (get_inst_mult(fmri, inst)) {
10637c478bd9Sstevel@tonic-gate 	case 0:
10647c478bd9Sstevel@tonic-gate 		break;
10657c478bd9Sstevel@tonic-gate 
10667c478bd9Sstevel@tonic-gate 	case E2BIG:
10677c478bd9Sstevel@tonic-gate 		he->active = B_FALSE;
10687c478bd9Sstevel@tonic-gate 		return (E2BIG);
10697c478bd9Sstevel@tonic-gate 
10707c478bd9Sstevel@tonic-gate 	default:
10717c478bd9Sstevel@tonic-gate 		he->active = B_FALSE;
10727c478bd9Sstevel@tonic-gate 		return (0);
10737c478bd9Sstevel@tonic-gate 	}
10747c478bd9Sstevel@tonic-gate 
10757c478bd9Sstevel@tonic-gate 	set_inst_enabled(fmri, inst, temp, B_TRUE);
10767c478bd9Sstevel@tonic-gate 
10777c478bd9Sstevel@tonic-gate 	if ((snap = scf_snapshot_create(h)) == NULL ||
10787c478bd9Sstevel@tonic-gate 	    (pg = scf_pg_create(h)) == NULL ||
10797c478bd9Sstevel@tonic-gate 	    (prop = scf_property_create(h)) == NULL ||
10807c478bd9Sstevel@tonic-gate 	    (v = scf_value_create(h)) == NULL ||
10817c478bd9Sstevel@tonic-gate 	    (pg_iter = scf_iter_create(h)) == NULL ||
10827c478bd9Sstevel@tonic-gate 	    (val_iter = scf_iter_create(h)) == NULL)
10837c478bd9Sstevel@tonic-gate 		scfdie();
10847c478bd9Sstevel@tonic-gate 
10857c478bd9Sstevel@tonic-gate 	buf = malloc(max_scf_fmri_sz);
10867c478bd9Sstevel@tonic-gate 	if (buf == NULL)
10877c478bd9Sstevel@tonic-gate 		uu_die(emsg_nomem);
10887c478bd9Sstevel@tonic-gate 
10897c478bd9Sstevel@tonic-gate 	name_sz = scf_limit(SCF_LIMIT_MAX_NAME_LENGTH);
10907c478bd9Sstevel@tonic-gate 	if (name_sz < 0)
10917c478bd9Sstevel@tonic-gate 		scfdie();
10927c478bd9Sstevel@tonic-gate 	++name_sz;
10937c478bd9Sstevel@tonic-gate 	pgname = malloc(name_sz);
10947c478bd9Sstevel@tonic-gate 	if (pgname == NULL)
10957c478bd9Sstevel@tonic-gate 		uu_die(emsg_nomem);
10967c478bd9Sstevel@tonic-gate 
10977c478bd9Sstevel@tonic-gate 	if (scf_instance_get_snapshot(inst, "running", snap) != 0) {
10987c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
10997c478bd9Sstevel@tonic-gate 			scfdie();
11007c478bd9Sstevel@tonic-gate 
11017c478bd9Sstevel@tonic-gate 		scf_snapshot_destroy(snap);
11027c478bd9Sstevel@tonic-gate 		snap = NULL;
11037c478bd9Sstevel@tonic-gate 	}
11047c478bd9Sstevel@tonic-gate 
11057c478bd9Sstevel@tonic-gate 	/* Enable restarter */
11067c478bd9Sstevel@tonic-gate 	if (scf_instance_get_pg_composed(inst, snap, SCF_PG_GENERAL, pg) != 0) {
11077c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
11087c478bd9Sstevel@tonic-gate 			scfdie();
11097c478bd9Sstevel@tonic-gate 
11107c478bd9Sstevel@tonic-gate 		uu_warn(gettext("\"%s\" is misconfigured (lacks \"%s\" "
11117c478bd9Sstevel@tonic-gate 		    "property group).\n"), fmri, SCF_PG_GENERAL);
11127c478bd9Sstevel@tonic-gate 		ret = 0;
11137c478bd9Sstevel@tonic-gate 		goto out;
11147c478bd9Sstevel@tonic-gate 	}
11157c478bd9Sstevel@tonic-gate 
11167c478bd9Sstevel@tonic-gate 	sz = get_astring_prop(pg, SCF_PROPERTY_RESTARTER, prop, v, buf,
11177c478bd9Sstevel@tonic-gate 	    max_scf_fmri_sz);
11187c478bd9Sstevel@tonic-gate 	if (sz > max_scf_fmri_sz) {
11197c478bd9Sstevel@tonic-gate 		uu_warn(gettext("\"%s\" is misconfigured (the value of "
11207c478bd9Sstevel@tonic-gate 		    "\"%s/%s\" is too long).\n"), fmri, SCF_PG_GENERAL,
11217c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_RESTARTER);
11227c478bd9Sstevel@tonic-gate 		ret = 0;
11237c478bd9Sstevel@tonic-gate 		goto out;
11247c478bd9Sstevel@tonic-gate 	} else if (sz >= 0) {
11257c478bd9Sstevel@tonic-gate 		switch (enable_fmri_rec(buf, temp)) {
11267c478bd9Sstevel@tonic-gate 		case 0:
11277c478bd9Sstevel@tonic-gate 			break;
11287c478bd9Sstevel@tonic-gate 
11297c478bd9Sstevel@tonic-gate 		case EINVAL:
11307c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Restarter FMRI for \"%s\" is "
11317c478bd9Sstevel@tonic-gate 			    "invalid.\n"), fmri);
11327c478bd9Sstevel@tonic-gate 			break;
11337c478bd9Sstevel@tonic-gate 
11347c478bd9Sstevel@tonic-gate 		case E2BIG:
11357c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Restarter FMRI for \"%s\" identifies "
11367c478bd9Sstevel@tonic-gate 			    "a service with multiple instances.\n"), fmri);
11377c478bd9Sstevel@tonic-gate 			break;
11387c478bd9Sstevel@tonic-gate 
11397c478bd9Sstevel@tonic-gate 		case ELOOP:
11407c478bd9Sstevel@tonic-gate 			ret = ELOOP;
11417c478bd9Sstevel@tonic-gate 			goto out;
11427c478bd9Sstevel@tonic-gate 
11437c478bd9Sstevel@tonic-gate 		default:
11447c478bd9Sstevel@tonic-gate 			assert(0);
11457c478bd9Sstevel@tonic-gate 			abort();
11467c478bd9Sstevel@tonic-gate 		}
11477c478bd9Sstevel@tonic-gate 	} else if (sz < 0) {
11487c478bd9Sstevel@tonic-gate 		switch (-sz) {
11497c478bd9Sstevel@tonic-gate 		case ENOENT:
11507c478bd9Sstevel@tonic-gate 			break;
11517c478bd9Sstevel@tonic-gate 
11527c478bd9Sstevel@tonic-gate 		case E2BIG:
11537c478bd9Sstevel@tonic-gate 			uu_warn(gettext("\"%s\" is misconfigured (\"%s/%s\" "
11547c478bd9Sstevel@tonic-gate 			    "property is not single-valued).\n"), fmri,
11557c478bd9Sstevel@tonic-gate 			    SCF_PG_GENERAL, SCF_PROPERTY_RESTARTER);
11567c478bd9Sstevel@tonic-gate 			ret = 0;
11577c478bd9Sstevel@tonic-gate 			goto out;
11587c478bd9Sstevel@tonic-gate 
11597c478bd9Sstevel@tonic-gate 		case EINVAL:
11607c478bd9Sstevel@tonic-gate 			uu_warn(gettext("\"%s\" is misconfigured (\"%s/%s\" "
11617c478bd9Sstevel@tonic-gate 			    "property is not of astring type).\n"), fmri,
11627c478bd9Sstevel@tonic-gate 			    SCF_PG_GENERAL, SCF_PROPERTY_RESTARTER);
11637c478bd9Sstevel@tonic-gate 			ret = 0;
11647c478bd9Sstevel@tonic-gate 			goto out;
11657c478bd9Sstevel@tonic-gate 
11667c478bd9Sstevel@tonic-gate 		default:
11677c478bd9Sstevel@tonic-gate 			assert(0);
11687c478bd9Sstevel@tonic-gate 			abort();
11697c478bd9Sstevel@tonic-gate 		}
11707c478bd9Sstevel@tonic-gate 	}
11717c478bd9Sstevel@tonic-gate 
11727c478bd9Sstevel@tonic-gate 	if (scf_iter_instance_pgs_typed_composed(pg_iter, inst, snap,
11737c478bd9Sstevel@tonic-gate 	    SCF_GROUP_DEPENDENCY) == -1)
11747c478bd9Sstevel@tonic-gate 		scfdie();
11757c478bd9Sstevel@tonic-gate 
11767c478bd9Sstevel@tonic-gate 	while (scf_iter_next_pg(pg_iter, pg) > 0) {
11777c478bd9Sstevel@tonic-gate 		len = scf_pg_get_name(pg, pgname, name_sz);
11787c478bd9Sstevel@tonic-gate 		if (len < 0)
11797c478bd9Sstevel@tonic-gate 			scfdie();
11807c478bd9Sstevel@tonic-gate 		assert(len < name_sz);
11817c478bd9Sstevel@tonic-gate 
11827c478bd9Sstevel@tonic-gate 		if (dep_get_astring(fmri, pgname, pg, SCF_PROPERTY_TYPE, prop,
11837c478bd9Sstevel@tonic-gate 		    v, buf, max_scf_fmri_sz) < 0)
11847c478bd9Sstevel@tonic-gate 			continue;
11857c478bd9Sstevel@tonic-gate 
11867c478bd9Sstevel@tonic-gate 		if (strcmp(buf, "service") != 0)
11877c478bd9Sstevel@tonic-gate 			continue;
11887c478bd9Sstevel@tonic-gate 
11897c478bd9Sstevel@tonic-gate 		if (dep_get_astring(fmri, pgname, pg, SCF_PROPERTY_GROUPING,
11907c478bd9Sstevel@tonic-gate 		    prop, v, buf, max_scf_fmri_sz) < 0)
11917c478bd9Sstevel@tonic-gate 			continue;
11927c478bd9Sstevel@tonic-gate 
11937c478bd9Sstevel@tonic-gate 		if (strcmp(buf, SCF_DEP_EXCLUDE_ALL) == 0 ||
11947c478bd9Sstevel@tonic-gate 		    strcmp(buf, SCF_DEP_OPTIONAL_ALL) == 0)
11957c478bd9Sstevel@tonic-gate 			continue;
11967c478bd9Sstevel@tonic-gate 
11977c478bd9Sstevel@tonic-gate 		if (strcmp(buf, SCF_DEP_REQUIRE_ALL) != 0 &&
11987c478bd9Sstevel@tonic-gate 		    strcmp(buf, SCF_DEP_REQUIRE_ANY) != 0) {
11997c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Dependency \"%s\" of \"%s\" has "
12007c478bd9Sstevel@tonic-gate 			    "unknown type \"%s\".\n"), pgname, fmri, buf);
12017c478bd9Sstevel@tonic-gate 			continue;
12027c478bd9Sstevel@tonic-gate 		}
12037c478bd9Sstevel@tonic-gate 
12047c478bd9Sstevel@tonic-gate 		if (scf_pg_get_property(pg, SCF_PROPERTY_ENTITIES, prop) ==
12057c478bd9Sstevel@tonic-gate 		    -1) {
12067c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_NOT_FOUND)
12077c478bd9Sstevel@tonic-gate 				scfdie();
12087c478bd9Sstevel@tonic-gate 
12097c478bd9Sstevel@tonic-gate 			uu_warn(gettext("\"%s\" is misconfigured (\"%s\" "
12107c478bd9Sstevel@tonic-gate 			    "dependency lacks \"%s\" property.)\n"), fmri,
12117c478bd9Sstevel@tonic-gate 			    pgname, SCF_PROPERTY_ENTITIES);
12127c478bd9Sstevel@tonic-gate 			continue;
12137c478bd9Sstevel@tonic-gate 		}
12147c478bd9Sstevel@tonic-gate 
12157c478bd9Sstevel@tonic-gate 		if (scf_property_type(prop, &ty) != SCF_SUCCESS)
12167c478bd9Sstevel@tonic-gate 			scfdie();
12177c478bd9Sstevel@tonic-gate 
12187c478bd9Sstevel@tonic-gate 		if (ty != SCF_TYPE_FMRI) {
12197c478bd9Sstevel@tonic-gate 			uu_warn(gettext("\"%s\" is misconfigured (property "
12207c478bd9Sstevel@tonic-gate 			    "\"%s/%s\" is not of fmri type).\n"), fmri, pgname,
12217c478bd9Sstevel@tonic-gate 			    SCF_PROPERTY_ENTITIES);
12227c478bd9Sstevel@tonic-gate 			continue;
12237c478bd9Sstevel@tonic-gate 		}
12247c478bd9Sstevel@tonic-gate 
12257c478bd9Sstevel@tonic-gate 		if (scf_iter_property_values(val_iter, prop) == -1)
12267c478bd9Sstevel@tonic-gate 			scfdie();
12277c478bd9Sstevel@tonic-gate 
12287c478bd9Sstevel@tonic-gate 		if (strcmp(buf, SCF_DEP_REQUIRE_ANY) == 0) {
12297c478bd9Sstevel@tonic-gate 			if (multiple_instances(val_iter, v, buf)) {
12307c478bd9Sstevel@tonic-gate 				(void) printf(gettext("%s requires one of:\n"),
12317c478bd9Sstevel@tonic-gate 				    fmri);
12327c478bd9Sstevel@tonic-gate 
12337c478bd9Sstevel@tonic-gate 				if (scf_iter_property_values(val_iter, prop) !=
12347c478bd9Sstevel@tonic-gate 				    0)
12357c478bd9Sstevel@tonic-gate 					scfdie();
12367c478bd9Sstevel@tonic-gate 
12377c478bd9Sstevel@tonic-gate 				for (;;) {
12387c478bd9Sstevel@tonic-gate 					int r;
12397c478bd9Sstevel@tonic-gate 
12407c478bd9Sstevel@tonic-gate 					r = scf_iter_next_value(val_iter, v);
12417c478bd9Sstevel@tonic-gate 					if (r == 0)
12427c478bd9Sstevel@tonic-gate 						break;
12437c478bd9Sstevel@tonic-gate 					if (r != 1)
12447c478bd9Sstevel@tonic-gate 						scfdie();
12457c478bd9Sstevel@tonic-gate 
12467c478bd9Sstevel@tonic-gate 					if (scf_value_get_astring(v, buf,
12477c478bd9Sstevel@tonic-gate 					    max_scf_fmri_sz) < 0)
12487c478bd9Sstevel@tonic-gate 						scfdie();
12497c478bd9Sstevel@tonic-gate 
12507c478bd9Sstevel@tonic-gate 					(void) fputs("  ", stdout);
12517c478bd9Sstevel@tonic-gate 					(void) puts(buf);
12527c478bd9Sstevel@tonic-gate 				}
12537c478bd9Sstevel@tonic-gate 
12547c478bd9Sstevel@tonic-gate 				continue;
12557c478bd9Sstevel@tonic-gate 			}
12567c478bd9Sstevel@tonic-gate 
12577c478bd9Sstevel@tonic-gate 			/*
12587c478bd9Sstevel@tonic-gate 			 * Since there's only one instance, we can enable it.
12597c478bd9Sstevel@tonic-gate 			 * Reset val_iter and continue.
12607c478bd9Sstevel@tonic-gate 			 */
12617c478bd9Sstevel@tonic-gate 			if (scf_iter_property_values(val_iter, prop) != 0)
12627c478bd9Sstevel@tonic-gate 				scfdie();
12637c478bd9Sstevel@tonic-gate 		}
12647c478bd9Sstevel@tonic-gate 
12657c478bd9Sstevel@tonic-gate 		for (;;) {
12667c478bd9Sstevel@tonic-gate 			ret = scf_iter_next_value(val_iter, v);
12677c478bd9Sstevel@tonic-gate 			if (ret == 0)
12687c478bd9Sstevel@tonic-gate 				break;
12697c478bd9Sstevel@tonic-gate 			if (ret != 1)
12707c478bd9Sstevel@tonic-gate 				scfdie();
12717c478bd9Sstevel@tonic-gate 
12727c478bd9Sstevel@tonic-gate 			if (scf_value_get_astring(v, buf, max_scf_fmri_sz) ==
12737c478bd9Sstevel@tonic-gate 			    -1)
12747c478bd9Sstevel@tonic-gate 				scfdie();
12757c478bd9Sstevel@tonic-gate 
12767c478bd9Sstevel@tonic-gate 			switch (enable_fmri_rec(buf, temp)) {
12777c478bd9Sstevel@tonic-gate 			case 0:
12787c478bd9Sstevel@tonic-gate 				break;
12797c478bd9Sstevel@tonic-gate 
12807c478bd9Sstevel@tonic-gate 			case EINVAL:
12817c478bd9Sstevel@tonic-gate 				uu_warn(gettext("\"%s\" dependency of \"%s\" "
12827c478bd9Sstevel@tonic-gate 				    "has invalid FMRI \"%s\".\n"), pgname,
12837c478bd9Sstevel@tonic-gate 				    fmri, buf);
12847c478bd9Sstevel@tonic-gate 				break;
12857c478bd9Sstevel@tonic-gate 
12867c478bd9Sstevel@tonic-gate 			case E2BIG:
12877c478bd9Sstevel@tonic-gate 				uu_warn(gettext("%s depends on %s, which has "
12887c478bd9Sstevel@tonic-gate 				    "multiple instances.\n"), fmri, buf);
12897c478bd9Sstevel@tonic-gate 				break;
12907c478bd9Sstevel@tonic-gate 
12917c478bd9Sstevel@tonic-gate 			case ELOOP:
12927c478bd9Sstevel@tonic-gate 				ret = ELOOP;
12937c478bd9Sstevel@tonic-gate 				goto out;
12947c478bd9Sstevel@tonic-gate 
12957c478bd9Sstevel@tonic-gate 			default:
12967c478bd9Sstevel@tonic-gate 				assert(0);
12977c478bd9Sstevel@tonic-gate 				abort();
12987c478bd9Sstevel@tonic-gate 			}
12997c478bd9Sstevel@tonic-gate 		}
13007c478bd9Sstevel@tonic-gate 	}
13017c478bd9Sstevel@tonic-gate 
13027c478bd9Sstevel@tonic-gate 	ret = 0;
13037c478bd9Sstevel@tonic-gate 
13047c478bd9Sstevel@tonic-gate out:
13057c478bd9Sstevel@tonic-gate 	he->active = B_FALSE;
13067c478bd9Sstevel@tonic-gate 
13077c478bd9Sstevel@tonic-gate 	free(buf);
13087c478bd9Sstevel@tonic-gate 	free(pgname);
13097c478bd9Sstevel@tonic-gate 
13107c478bd9Sstevel@tonic-gate 	(void) scf_value_destroy(v);
13117c478bd9Sstevel@tonic-gate 	scf_property_destroy(prop);
13127c478bd9Sstevel@tonic-gate 	scf_pg_destroy(pg);
13137c478bd9Sstevel@tonic-gate 	scf_snapshot_destroy(snap);
13147c478bd9Sstevel@tonic-gate 	scf_iter_destroy(pg_iter);
13157c478bd9Sstevel@tonic-gate 	scf_iter_destroy(val_iter);
13167c478bd9Sstevel@tonic-gate 
13177c478bd9Sstevel@tonic-gate 	return (ret);
13187c478bd9Sstevel@tonic-gate }
13197c478bd9Sstevel@tonic-gate 
13207c478bd9Sstevel@tonic-gate /*
13217c478bd9Sstevel@tonic-gate  * fmri here is only used for verbose messages.
13227c478bd9Sstevel@tonic-gate  */
13237c478bd9Sstevel@tonic-gate static void
13247c478bd9Sstevel@tonic-gate set_inst_action(const char *fmri, const scf_instance_t *inst,
13257c478bd9Sstevel@tonic-gate     const char *action)
13267c478bd9Sstevel@tonic-gate {
13277c478bd9Sstevel@tonic-gate 	scf_transaction_t *tx;
13287c478bd9Sstevel@tonic-gate 	scf_transaction_entry_t *ent;
13297c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *pg;
13307c478bd9Sstevel@tonic-gate 	scf_property_t *prop;
13317c478bd9Sstevel@tonic-gate 	scf_value_t *v;
13327c478bd9Sstevel@tonic-gate 	int ret;
13337c478bd9Sstevel@tonic-gate 	int64_t t;
13347c478bd9Sstevel@tonic-gate 	hrtime_t timestamp;
13357c478bd9Sstevel@tonic-gate 
13367c478bd9Sstevel@tonic-gate 	const char * const scf_pg_restarter_actions = SCF_PG_RESTARTER_ACTIONS;
13377c478bd9Sstevel@tonic-gate 
13387c478bd9Sstevel@tonic-gate 	if ((pg = scf_pg_create(h)) == NULL ||
13397c478bd9Sstevel@tonic-gate 	    (prop = scf_property_create(h)) == NULL ||
13407c478bd9Sstevel@tonic-gate 	    (v = scf_value_create(h)) == NULL ||
13417c478bd9Sstevel@tonic-gate 	    (tx = scf_transaction_create(h)) == NULL ||
13427c478bd9Sstevel@tonic-gate 	    (ent = scf_entry_create(h)) == NULL)
13437c478bd9Sstevel@tonic-gate 		scfdie();
13447c478bd9Sstevel@tonic-gate 
1345a97d4a16SDave Eddy 	if (restarter_setup(fmri, inst)) {
1346a97d4a16SDave Eddy 		exit_status = 1;
1347e8f5b3f5STruong Nguyen 		goto out;
1348a97d4a16SDave Eddy 	}
1349eb1a3463STruong Nguyen 
13507c478bd9Sstevel@tonic-gate 	if (scf_instance_get_pg(inst, scf_pg_restarter_actions, pg) == -1) {
13517c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
13527c478bd9Sstevel@tonic-gate 			scfdie();
13537c478bd9Sstevel@tonic-gate 
13547c478bd9Sstevel@tonic-gate 		/* Try creating the restarter_actions property group. */
13557c478bd9Sstevel@tonic-gate 		if (scf_instance_add_pg(inst, scf_pg_restarter_actions,
13567c478bd9Sstevel@tonic-gate 		    SCF_PG_RESTARTER_ACTIONS_TYPE,
13577c478bd9Sstevel@tonic-gate 		    SCF_PG_RESTARTER_ACTIONS_FLAGS, pg) == -1) {
13587c478bd9Sstevel@tonic-gate 			switch (scf_error()) {
13597c478bd9Sstevel@tonic-gate 			case SCF_ERROR_EXISTS:
13607c478bd9Sstevel@tonic-gate 				/* Someone must have added it. */
13617c478bd9Sstevel@tonic-gate 				break;
13627c478bd9Sstevel@tonic-gate 
13637c478bd9Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
13647c478bd9Sstevel@tonic-gate 				if (!verbose)
13657c478bd9Sstevel@tonic-gate 					uu_warn(emsg_permission_denied, fmri);
13667c478bd9Sstevel@tonic-gate 				else
13677c478bd9Sstevel@tonic-gate 					uu_warn(emsg_create_pg_perm_denied,
13687c478bd9Sstevel@tonic-gate 					    fmri, scf_pg_restarter_actions);
13697c478bd9Sstevel@tonic-gate 				goto out;
13707c478bd9Sstevel@tonic-gate 
13717c478bd9Sstevel@tonic-gate 			default:
13727c478bd9Sstevel@tonic-gate 				scfdie();
13737c478bd9Sstevel@tonic-gate 			}
13747c478bd9Sstevel@tonic-gate 		}
13757c478bd9Sstevel@tonic-gate 	}
13767c478bd9Sstevel@tonic-gate 
13777c478bd9Sstevel@tonic-gate 	/*
13787c478bd9Sstevel@tonic-gate 	 * If we lose the transaction race and need to retry, there are 2
13797c478bd9Sstevel@tonic-gate 	 * potential other winners:
13807c478bd9Sstevel@tonic-gate 	 *	- another process setting actions
13817c478bd9Sstevel@tonic-gate 	 *	- the restarter marking the action complete
13827c478bd9Sstevel@tonic-gate 	 * Therefore, re-read the property every time through the loop before
13837c478bd9Sstevel@tonic-gate 	 * making any decisions based on their values.
13847c478bd9Sstevel@tonic-gate 	 */
13857c478bd9Sstevel@tonic-gate 	do {
13867c478bd9Sstevel@tonic-gate 		timestamp = gethrtime();
13877c478bd9Sstevel@tonic-gate 
13887c478bd9Sstevel@tonic-gate 		if (scf_transaction_start(tx, pg) == -1) {
13897c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_PERMISSION_DENIED)
13907c478bd9Sstevel@tonic-gate 				scfdie();
13917c478bd9Sstevel@tonic-gate 
13927c478bd9Sstevel@tonic-gate 			if (!verbose)
13937c478bd9Sstevel@tonic-gate 				uu_warn(emsg_permission_denied, fmri);
13947c478bd9Sstevel@tonic-gate 			else
13957c478bd9Sstevel@tonic-gate 				uu_warn(emsg_pg_perm_denied, fmri,
13967c478bd9Sstevel@tonic-gate 				    scf_pg_restarter_actions);
13977c478bd9Sstevel@tonic-gate 			goto out;
13987c478bd9Sstevel@tonic-gate 		}
13997c478bd9Sstevel@tonic-gate 
14007c478bd9Sstevel@tonic-gate 		if (scf_pg_get_property(pg, action, prop) == -1) {
14017c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_NOT_FOUND)
14027c478bd9Sstevel@tonic-gate 				scfdie();
14037c478bd9Sstevel@tonic-gate 			if (scf_transaction_property_new(tx, ent,
14047c478bd9Sstevel@tonic-gate 			    action, SCF_TYPE_INTEGER) == -1)
14057c478bd9Sstevel@tonic-gate 				scfdie();
14067c478bd9Sstevel@tonic-gate 			goto action_set;
14077c478bd9Sstevel@tonic-gate 		} else {
14087c478bd9Sstevel@tonic-gate 			if (scf_transaction_property_change_type(tx, ent,
14097c478bd9Sstevel@tonic-gate 			    action, SCF_TYPE_INTEGER) == -1)
14107c478bd9Sstevel@tonic-gate 				scfdie();
14117c478bd9Sstevel@tonic-gate 		}
14127c478bd9Sstevel@tonic-gate 
14137c478bd9Sstevel@tonic-gate 		if (scf_property_get_value(prop, v) == -1) {
14147c478bd9Sstevel@tonic-gate 			switch (scf_error()) {
14157c478bd9Sstevel@tonic-gate 			case SCF_ERROR_CONSTRAINT_VIOLATED:
14167c478bd9Sstevel@tonic-gate 			case SCF_ERROR_NOT_FOUND:
14177c478bd9Sstevel@tonic-gate 				/* Misconfigured, so set anyway. */
14187c478bd9Sstevel@tonic-gate 				goto action_set;
14197c478bd9Sstevel@tonic-gate 
14207c478bd9Sstevel@tonic-gate 			default:
14217c478bd9Sstevel@tonic-gate 				scfdie();
14227c478bd9Sstevel@tonic-gate 			}
14237c478bd9Sstevel@tonic-gate 		} else {
14247c478bd9Sstevel@tonic-gate 			if (scf_value_get_integer(v, &t) == -1) {
14257c478bd9Sstevel@tonic-gate 				assert(scf_error() == SCF_ERROR_TYPE_MISMATCH);
14267c478bd9Sstevel@tonic-gate 				goto action_set;
14277c478bd9Sstevel@tonic-gate 			}
14287c478bd9Sstevel@tonic-gate 			if (t > timestamp)
14297c478bd9Sstevel@tonic-gate 				break;
14307c478bd9Sstevel@tonic-gate 		}
14317c478bd9Sstevel@tonic-gate 
14327c478bd9Sstevel@tonic-gate action_set:
14337c478bd9Sstevel@tonic-gate 		scf_value_set_integer(v, timestamp);
14347c478bd9Sstevel@tonic-gate 		if (scf_entry_add_value(ent, v) == -1)
14357c478bd9Sstevel@tonic-gate 			scfdie();
14367c478bd9Sstevel@tonic-gate 
14377c478bd9Sstevel@tonic-gate 		ret = scf_transaction_commit(tx);
14387c478bd9Sstevel@tonic-gate 		if (ret == -1) {
14397c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_PERMISSION_DENIED)
14407c478bd9Sstevel@tonic-gate 				scfdie();
14417c478bd9Sstevel@tonic-gate 
14427c478bd9Sstevel@tonic-gate 			if (!verbose)
14437c478bd9Sstevel@tonic-gate 				uu_warn(emsg_permission_denied, fmri);
14447c478bd9Sstevel@tonic-gate 			else
14457c478bd9Sstevel@tonic-gate 				uu_warn(emsg_prop_perm_denied, fmri,
14467c478bd9Sstevel@tonic-gate 				    scf_pg_restarter_actions, action);
14477c478bd9Sstevel@tonic-gate 			scf_transaction_reset(tx);
14487c478bd9Sstevel@tonic-gate 			goto out;
14497c478bd9Sstevel@tonic-gate 		}
14507c478bd9Sstevel@tonic-gate 
14517c478bd9Sstevel@tonic-gate 		scf_transaction_reset(tx);
14527c478bd9Sstevel@tonic-gate 
14537c478bd9Sstevel@tonic-gate 		if (ret == 0) {
14547c478bd9Sstevel@tonic-gate 			if (scf_pg_update(pg) == -1)
14557c478bd9Sstevel@tonic-gate 				scfdie();
14567c478bd9Sstevel@tonic-gate 		}
14577c478bd9Sstevel@tonic-gate 	} while (ret == 0);
14587c478bd9Sstevel@tonic-gate 
14597c478bd9Sstevel@tonic-gate 	if (verbose)
14607c478bd9Sstevel@tonic-gate 		(void) printf(gettext("Action %s set for %s.\n"), action, fmri);
14617c478bd9Sstevel@tonic-gate 
14627c478bd9Sstevel@tonic-gate out:
14637c478bd9Sstevel@tonic-gate 	scf_value_destroy(v);
14647c478bd9Sstevel@tonic-gate 	scf_entry_destroy(ent);
14657c478bd9Sstevel@tonic-gate 	scf_transaction_destroy(tx);
14667c478bd9Sstevel@tonic-gate 	scf_property_destroy(prop);
14677c478bd9Sstevel@tonic-gate 	scf_pg_destroy(pg);
14687c478bd9Sstevel@tonic-gate }
14697c478bd9Sstevel@tonic-gate 
14707c478bd9Sstevel@tonic-gate /*
14717c478bd9Sstevel@tonic-gate  * Get the state of inst.  state should point to a buffer of
14727c478bd9Sstevel@tonic-gate  * MAX_SCF_STATE_STRING_SZ bytes.  Returns 0 on success or -1 if
14737c478bd9Sstevel@tonic-gate  *   no restarter property group
14747c478bd9Sstevel@tonic-gate  *   no state property
14757c478bd9Sstevel@tonic-gate  *   state property is misconfigured (wrong type, not single-valued)
14767c478bd9Sstevel@tonic-gate  *   state value is too long
14777c478bd9Sstevel@tonic-gate  * In these cases, fmri is used to print a warning.
14787c478bd9Sstevel@tonic-gate  *
14797c478bd9Sstevel@tonic-gate  * If pgp is non-NULL, a successful call to inst_get_state will store
14807c478bd9Sstevel@tonic-gate  * the SCF_PG_RESTARTER property group in *pgp, and the caller will be
14817c478bd9Sstevel@tonic-gate  * responsible for calling scf_pg_destroy on the property group.
14827c478bd9Sstevel@tonic-gate  */
14837c478bd9Sstevel@tonic-gate int
14847c478bd9Sstevel@tonic-gate inst_get_state(scf_instance_t *inst, char *state, const char *fmri,
14857c478bd9Sstevel@tonic-gate     scf_propertygroup_t **pgp)
14867c478bd9Sstevel@tonic-gate {
14877c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *pg;
14887c478bd9Sstevel@tonic-gate 	scf_property_t *prop;
14897c478bd9Sstevel@tonic-gate 	scf_value_t *val;
14907c478bd9Sstevel@tonic-gate 	int ret = -1;
14917c478bd9Sstevel@tonic-gate 	ssize_t szret;
14927c478bd9Sstevel@tonic-gate 
14937c478bd9Sstevel@tonic-gate 	if ((pg = scf_pg_create(h)) == NULL ||
14947c478bd9Sstevel@tonic-gate 	    (prop = scf_property_create(h)) == NULL ||
14957c478bd9Sstevel@tonic-gate 	    (val = scf_value_create(h)) == NULL)
14967c478bd9Sstevel@tonic-gate 		scfdie();
14977c478bd9Sstevel@tonic-gate 
14987c478bd9Sstevel@tonic-gate 	if (scf_instance_get_pg(inst, SCF_PG_RESTARTER, pg) != SCF_SUCCESS) {
14997c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
15007c478bd9Sstevel@tonic-gate 			scfdie();
15017c478bd9Sstevel@tonic-gate 
15027c478bd9Sstevel@tonic-gate 		uu_warn(gettext("%s is misconfigured (lacks \"%s\" property "
15037c478bd9Sstevel@tonic-gate 		    "group).\n"), fmri ? fmri : inst_get_fmri(inst),
15047c478bd9Sstevel@tonic-gate 		    SCF_PG_RESTARTER);
15057c478bd9Sstevel@tonic-gate 		goto out;
15067c478bd9Sstevel@tonic-gate 	}
15077c478bd9Sstevel@tonic-gate 
15087c478bd9Sstevel@tonic-gate 	szret = get_astring_prop(pg, SCF_PROPERTY_STATE, prop, val, state,
15097c478bd9Sstevel@tonic-gate 	    MAX_SCF_STATE_STRING_SZ);
15107c478bd9Sstevel@tonic-gate 	if (szret < 0) {
15117c478bd9Sstevel@tonic-gate 		switch (-szret) {
15127c478bd9Sstevel@tonic-gate 		case ENOENT:
15137c478bd9Sstevel@tonic-gate 			uu_warn(gettext("%s is misconfigured (\"%s\" property "
15147c478bd9Sstevel@tonic-gate 			    "group lacks \"%s\" property).\n"),
15157c478bd9Sstevel@tonic-gate 			    fmri ? fmri : inst_get_fmri(inst), SCF_PG_RESTARTER,
15167c478bd9Sstevel@tonic-gate 			    SCF_PROPERTY_STATE);
15177c478bd9Sstevel@tonic-gate 			goto out;
15187c478bd9Sstevel@tonic-gate 
15197c478bd9Sstevel@tonic-gate 		case E2BIG:
15207c478bd9Sstevel@tonic-gate 			uu_warn(gettext("%s is misconfigured (\"%s/%s\" "
15217c478bd9Sstevel@tonic-gate 			    "property is not single-valued).\n"),
15227c478bd9Sstevel@tonic-gate 			    fmri ? fmri : inst_get_fmri(inst), SCF_PG_RESTARTER,
15237c478bd9Sstevel@tonic-gate 			    SCF_PROPERTY_STATE);
15247c478bd9Sstevel@tonic-gate 			goto out;
15257c478bd9Sstevel@tonic-gate 
15267c478bd9Sstevel@tonic-gate 		case EINVAL:
15277c478bd9Sstevel@tonic-gate 			uu_warn(gettext("%s is misconfigured (\"%s/%s\" "
15287c478bd9Sstevel@tonic-gate 			    "property is not of type astring).\n"),
15297c478bd9Sstevel@tonic-gate 			    fmri ? fmri : inst_get_fmri(inst), SCF_PG_RESTARTER,
15307c478bd9Sstevel@tonic-gate 			    SCF_PROPERTY_STATE);
15317c478bd9Sstevel@tonic-gate 			goto out;
15327c478bd9Sstevel@tonic-gate 
15337c478bd9Sstevel@tonic-gate 		default:
15347c478bd9Sstevel@tonic-gate 			assert(0);
15357c478bd9Sstevel@tonic-gate 			abort();
15367c478bd9Sstevel@tonic-gate 		}
15377c478bd9Sstevel@tonic-gate 	}
15387c478bd9Sstevel@tonic-gate 	if (szret >= MAX_SCF_STATE_STRING_SZ) {
15397c478bd9Sstevel@tonic-gate 		uu_warn(gettext("%s is misconfigured (\"%s/%s\" property value "
15407c478bd9Sstevel@tonic-gate 		    "is too long).\n"), fmri ? fmri : inst_get_fmri(inst),
15417c478bd9Sstevel@tonic-gate 		    SCF_PG_RESTARTER, SCF_PROPERTY_STATE);
15427c478bd9Sstevel@tonic-gate 		goto out;
15437c478bd9Sstevel@tonic-gate 	}
15447c478bd9Sstevel@tonic-gate 
15457c478bd9Sstevel@tonic-gate 	ret = 0;
15467c478bd9Sstevel@tonic-gate 	if (pgp)
15477c478bd9Sstevel@tonic-gate 		*pgp = pg;
15487c478bd9Sstevel@tonic-gate 
15497c478bd9Sstevel@tonic-gate out:
15507c478bd9Sstevel@tonic-gate 	(void) scf_value_destroy(val);
15517c478bd9Sstevel@tonic-gate 	scf_property_destroy(prop);
15527c478bd9Sstevel@tonic-gate 	if (ret || pgp == NULL)
15537c478bd9Sstevel@tonic-gate 		scf_pg_destroy(pg);
15547c478bd9Sstevel@tonic-gate 	return (ret);
15557c478bd9Sstevel@tonic-gate }
15567c478bd9Sstevel@tonic-gate 
15577c478bd9Sstevel@tonic-gate static void
15587c478bd9Sstevel@tonic-gate set_astring_prop(const char *fmri, const char *pgname, const char *pgtype,
15597c478bd9Sstevel@tonic-gate     uint32_t pgflags, const char *propname, const char *str)
15607c478bd9Sstevel@tonic-gate {
15617c478bd9Sstevel@tonic-gate 	scf_instance_t *inst;
15627c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *pg;
15637c478bd9Sstevel@tonic-gate 	scf_property_t *prop;
15647c478bd9Sstevel@tonic-gate 	scf_value_t *val;
15657c478bd9Sstevel@tonic-gate 	scf_transaction_t *tx;
15667c478bd9Sstevel@tonic-gate 	scf_transaction_entry_t *txent;
15677c478bd9Sstevel@tonic-gate 	int ret;
15687c478bd9Sstevel@tonic-gate 
15697c478bd9Sstevel@tonic-gate 	inst = scf_instance_create(h);
15707c478bd9Sstevel@tonic-gate 	if (inst == NULL)
15717c478bd9Sstevel@tonic-gate 		scfdie();
15727c478bd9Sstevel@tonic-gate 
15737c478bd9Sstevel@tonic-gate 	if (get_inst(fmri, inst) != 0)
15747c478bd9Sstevel@tonic-gate 		return;
15757c478bd9Sstevel@tonic-gate 
15767c478bd9Sstevel@tonic-gate 	if ((pg = scf_pg_create(h)) == NULL ||
15777c478bd9Sstevel@tonic-gate 	    (prop = scf_property_create(h)) == NULL ||
15787c478bd9Sstevel@tonic-gate 	    (val = scf_value_create(h)) == NULL ||
15797c478bd9Sstevel@tonic-gate 	    (tx = scf_transaction_create(h)) == NULL ||
15807c478bd9Sstevel@tonic-gate 	    (txent = scf_entry_create(h)) == NULL)
15817c478bd9Sstevel@tonic-gate 		scfdie();
15827c478bd9Sstevel@tonic-gate 
15837c478bd9Sstevel@tonic-gate 	if (scf_instance_get_pg(inst, pgname, pg) != SCF_SUCCESS) {
15847c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
15857c478bd9Sstevel@tonic-gate 			scfdie();
15867c478bd9Sstevel@tonic-gate 
15877c478bd9Sstevel@tonic-gate 		if (scf_instance_add_pg(inst, pgname, pgtype, pgflags, pg) !=
15887c478bd9Sstevel@tonic-gate 		    SCF_SUCCESS) {
15897c478bd9Sstevel@tonic-gate 			switch (scf_error()) {
15907c478bd9Sstevel@tonic-gate 			case SCF_ERROR_EXISTS:
15917c478bd9Sstevel@tonic-gate 				if (scf_instance_get_pg(inst, pgname, pg) !=
15927c478bd9Sstevel@tonic-gate 				    SCF_SUCCESS) {
15937c478bd9Sstevel@tonic-gate 					if (scf_error() != SCF_ERROR_NOT_FOUND)
15947c478bd9Sstevel@tonic-gate 						scfdie();
15957c478bd9Sstevel@tonic-gate 
15967c478bd9Sstevel@tonic-gate 					uu_warn(gettext("Repository write "
15977c478bd9Sstevel@tonic-gate 					    "contention.\n"));
15987c478bd9Sstevel@tonic-gate 					goto out;
15997c478bd9Sstevel@tonic-gate 				}
16007c478bd9Sstevel@tonic-gate 				break;
16017c478bd9Sstevel@tonic-gate 
16027c478bd9Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
16037c478bd9Sstevel@tonic-gate 				if (!verbose)
16047c478bd9Sstevel@tonic-gate 					uu_warn(emsg_permission_denied, fmri);
16057c478bd9Sstevel@tonic-gate 				else
16067c478bd9Sstevel@tonic-gate 					uu_warn(emsg_create_pg_perm_denied,
16077c478bd9Sstevel@tonic-gate 					    fmri, pgname);
16087c478bd9Sstevel@tonic-gate 				goto out;
16097c478bd9Sstevel@tonic-gate 
16107c478bd9Sstevel@tonic-gate 			default:
16117c478bd9Sstevel@tonic-gate 				scfdie();
16127c478bd9Sstevel@tonic-gate 			}
16137c478bd9Sstevel@tonic-gate 		}
16147c478bd9Sstevel@tonic-gate 	}
16157c478bd9Sstevel@tonic-gate 
16167c478bd9Sstevel@tonic-gate 	do {
16177c478bd9Sstevel@tonic-gate 		if (scf_transaction_start(tx, pg) != SCF_SUCCESS) {
16187c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_PERMISSION_DENIED)
16197c478bd9Sstevel@tonic-gate 				scfdie();
16207c478bd9Sstevel@tonic-gate 
16217c478bd9Sstevel@tonic-gate 			if (!verbose)
16227c478bd9Sstevel@tonic-gate 				uu_warn(emsg_permission_denied, fmri);
16237c478bd9Sstevel@tonic-gate 			else
16247c478bd9Sstevel@tonic-gate 				uu_warn(emsg_pg_perm_denied, fmri, pgname);
16257c478bd9Sstevel@tonic-gate 			goto out;
16267c478bd9Sstevel@tonic-gate 		}
16277c478bd9Sstevel@tonic-gate 
16287c478bd9Sstevel@tonic-gate 		if (scf_transaction_property_change_type(tx, txent, propname,
16297c478bd9Sstevel@tonic-gate 		    SCF_TYPE_ASTRING) != 0) {
16307c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_NOT_FOUND)
16317c478bd9Sstevel@tonic-gate 				scfdie();
16327c478bd9Sstevel@tonic-gate 
16337c478bd9Sstevel@tonic-gate 			if (scf_transaction_property_new(tx, txent, propname,
16347c478bd9Sstevel@tonic-gate 			    SCF_TYPE_ASTRING) != 0)
16357c478bd9Sstevel@tonic-gate 				scfdie();
16367c478bd9Sstevel@tonic-gate 		}
16377c478bd9Sstevel@tonic-gate 
16387c478bd9Sstevel@tonic-gate 		if (scf_value_set_astring(val, str) != SCF_SUCCESS)
16397c478bd9Sstevel@tonic-gate 			scfdie();
16407c478bd9Sstevel@tonic-gate 
16417c478bd9Sstevel@tonic-gate 		if (scf_entry_add_value(txent, val) != SCF_SUCCESS)
16427c478bd9Sstevel@tonic-gate 			scfdie();
16437c478bd9Sstevel@tonic-gate 
16447c478bd9Sstevel@tonic-gate 		ret = scf_transaction_commit(tx);
16457c478bd9Sstevel@tonic-gate 		if (ret == -1) {
16467c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_PERMISSION_DENIED)
16477c478bd9Sstevel@tonic-gate 				scfdie();
16487c478bd9Sstevel@tonic-gate 
16497c478bd9Sstevel@tonic-gate 			if (!verbose)
16507c478bd9Sstevel@tonic-gate 				uu_warn(emsg_permission_denied, fmri);
16517c478bd9Sstevel@tonic-gate 			else
16527c478bd9Sstevel@tonic-gate 				uu_warn(emsg_prop_perm_denied, fmri, pgname,
16537c478bd9Sstevel@tonic-gate 				    propname);
16547c478bd9Sstevel@tonic-gate 			goto out;
16557c478bd9Sstevel@tonic-gate 		}
16567c478bd9Sstevel@tonic-gate 
16577c478bd9Sstevel@tonic-gate 		if (ret == 0) {
16587c478bd9Sstevel@tonic-gate 			scf_transaction_reset(tx);
16597c478bd9Sstevel@tonic-gate 
1660bc9767f9Stn143363 			if (scf_pg_update(pg) == -1)
16617c478bd9Sstevel@tonic-gate 				scfdie();
16627c478bd9Sstevel@tonic-gate 		}
16637c478bd9Sstevel@tonic-gate 	} while (ret == 0);
16647c478bd9Sstevel@tonic-gate 
16657c478bd9Sstevel@tonic-gate out:
16667c478bd9Sstevel@tonic-gate 	scf_transaction_destroy(tx);
16677c478bd9Sstevel@tonic-gate 	scf_entry_destroy(txent);
16687c478bd9Sstevel@tonic-gate 	scf_value_destroy(val);
16697c478bd9Sstevel@tonic-gate 	scf_property_destroy(prop);
16707c478bd9Sstevel@tonic-gate 	scf_pg_destroy(pg);
16717c478bd9Sstevel@tonic-gate 	scf_instance_destroy(inst);
16727c478bd9Sstevel@tonic-gate }
16737c478bd9Sstevel@tonic-gate 
16747c478bd9Sstevel@tonic-gate 
16757c478bd9Sstevel@tonic-gate /*
16767c478bd9Sstevel@tonic-gate  * Flags to control enable and disable actions.
16777c478bd9Sstevel@tonic-gate  */
16787c478bd9Sstevel@tonic-gate #define	SET_ENABLED	0x1
16797c478bd9Sstevel@tonic-gate #define	SET_TEMPORARY	0x2
16807c478bd9Sstevel@tonic-gate #define	SET_RECURSIVE	0x4
16817c478bd9Sstevel@tonic-gate 
16827c478bd9Sstevel@tonic-gate static int
16837c478bd9Sstevel@tonic-gate set_fmri_enabled(void *data, scf_walkinfo_t *wip)
16847c478bd9Sstevel@tonic-gate {
16857c478bd9Sstevel@tonic-gate 	int flags = (int)data;
16867c478bd9Sstevel@tonic-gate 
16877c478bd9Sstevel@tonic-gate 	assert(wip->inst != NULL);
16887c478bd9Sstevel@tonic-gate 	assert(wip->pg == NULL);
16897c478bd9Sstevel@tonic-gate 
16907c478bd9Sstevel@tonic-gate 	if (flags & SET_RECURSIVE) {
16917c478bd9Sstevel@tonic-gate 		char *fmri_buf = malloc(max_scf_fmri_sz);
16927c478bd9Sstevel@tonic-gate 		if (fmri_buf == NULL)
16937c478bd9Sstevel@tonic-gate 			uu_die(emsg_nomem);
16947c478bd9Sstevel@tonic-gate 
16957c478bd9Sstevel@tonic-gate 		visited = calloc(HT_BUCKETS, sizeof (*visited));
16967c478bd9Sstevel@tonic-gate 		if (visited == NULL)
16977c478bd9Sstevel@tonic-gate 			uu_die(emsg_nomem);
16987c478bd9Sstevel@tonic-gate 
16997c478bd9Sstevel@tonic-gate 		/* scf_walk_fmri() guarantees that fmri isn't too long */
17007c478bd9Sstevel@tonic-gate 		assert(strlen(wip->fmri) <= max_scf_fmri_sz);
17017c478bd9Sstevel@tonic-gate 		(void) strlcpy(fmri_buf, wip->fmri, max_scf_fmri_sz);
17027c478bd9Sstevel@tonic-gate 
17037c478bd9Sstevel@tonic-gate 		switch (enable_fmri_rec(fmri_buf, (flags & SET_TEMPORARY))) {
17047c478bd9Sstevel@tonic-gate 		case E2BIG:
17057c478bd9Sstevel@tonic-gate 			uu_warn(gettext("operation on service %s is ambiguous; "
17067c478bd9Sstevel@tonic-gate 			    "instance specification needed.\n"), fmri_buf);
17077c478bd9Sstevel@tonic-gate 			break;
17087c478bd9Sstevel@tonic-gate 
17097c478bd9Sstevel@tonic-gate 		case ELOOP:
17107c478bd9Sstevel@tonic-gate 			uu_warn(gettext("%s: Dependency cycle detected.\n"),
17117c478bd9Sstevel@tonic-gate 			    fmri_buf);
17127c478bd9Sstevel@tonic-gate 		}
17137c478bd9Sstevel@tonic-gate 
17147c478bd9Sstevel@tonic-gate 		free(visited);
17157c478bd9Sstevel@tonic-gate 		free(fmri_buf);
17167c478bd9Sstevel@tonic-gate 
17177c478bd9Sstevel@tonic-gate 	} else {
17187c478bd9Sstevel@tonic-gate 		set_inst_enabled(wip->fmri, wip->inst,
17197c478bd9Sstevel@tonic-gate 		    (flags & SET_TEMPORARY) != 0, (flags & SET_ENABLED) != 0);
17207c478bd9Sstevel@tonic-gate 	}
17217c478bd9Sstevel@tonic-gate 
17227c478bd9Sstevel@tonic-gate 	return (0);
17237c478bd9Sstevel@tonic-gate }
17247c478bd9Sstevel@tonic-gate 
17257c478bd9Sstevel@tonic-gate /* ARGSUSED */
17267c478bd9Sstevel@tonic-gate static int
17277c478bd9Sstevel@tonic-gate wait_fmri_enabled(void *data, scf_walkinfo_t *wip)
17287c478bd9Sstevel@tonic-gate {
17297c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *pg = NULL;
17307c478bd9Sstevel@tonic-gate 	char state[MAX_SCF_STATE_STRING_SZ];
17317c478bd9Sstevel@tonic-gate 
17327c478bd9Sstevel@tonic-gate 	assert(wip->inst != NULL);
17337c478bd9Sstevel@tonic-gate 	assert(wip->pg == NULL);
17347c478bd9Sstevel@tonic-gate 
17357c478bd9Sstevel@tonic-gate 	do {
17367c478bd9Sstevel@tonic-gate 		if (pg)
17377c478bd9Sstevel@tonic-gate 			scf_pg_destroy(pg);
17387c478bd9Sstevel@tonic-gate 		if (inst_get_state(wip->inst, state, wip->fmri, &pg) != 0) {
17397c478bd9Sstevel@tonic-gate 			exit_status = EXIT_SVC_FAILURE;
17407c478bd9Sstevel@tonic-gate 			return (0);
17417c478bd9Sstevel@tonic-gate 		}
17427c478bd9Sstevel@tonic-gate 
17437c478bd9Sstevel@tonic-gate 		if (strcmp(state, SCF_STATE_STRING_ONLINE) == 0 ||
17447c478bd9Sstevel@tonic-gate 		    strcmp(state, SCF_STATE_STRING_DEGRADED) == 0) {
17457c478bd9Sstevel@tonic-gate 			/*
17467c478bd9Sstevel@tonic-gate 			 * We're done.
17477c478bd9Sstevel@tonic-gate 			 */
17487c478bd9Sstevel@tonic-gate 			goto out;
17497c478bd9Sstevel@tonic-gate 		}
17507c478bd9Sstevel@tonic-gate 
17517c478bd9Sstevel@tonic-gate 		if (strcmp(state, SCF_STATE_STRING_MAINT) == 0) {
17527c478bd9Sstevel@tonic-gate 			/*
17537c478bd9Sstevel@tonic-gate 			 * The service is ill.
17547c478bd9Sstevel@tonic-gate 			 */
17557c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Instance \"%s\" is in maintenance"
17567c478bd9Sstevel@tonic-gate 			    " state.\n"), wip->fmri);
17577c478bd9Sstevel@tonic-gate 			exit_status = EXIT_SVC_FAILURE;
17587c478bd9Sstevel@tonic-gate 			goto out;
17597c478bd9Sstevel@tonic-gate 		}
17607c478bd9Sstevel@tonic-gate 
17617c478bd9Sstevel@tonic-gate 		if (!is_enabled(wip->inst)) {
17627c478bd9Sstevel@tonic-gate 			/*
17637c478bd9Sstevel@tonic-gate 			 * Someone stepped in and disabled the service.
17647c478bd9Sstevel@tonic-gate 			 */
17657c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Instance \"%s\" has been disabled"
17667c478bd9Sstevel@tonic-gate 			    " by another entity.\n"), wip->fmri);
17677c478bd9Sstevel@tonic-gate 			exit_status = EXIT_SVC_FAILURE;
17687c478bd9Sstevel@tonic-gate 			goto out;
17697c478bd9Sstevel@tonic-gate 		}
17707c478bd9Sstevel@tonic-gate 
17717c478bd9Sstevel@tonic-gate 		if (!has_potential(wip->inst, B_FALSE)) {
17727c478bd9Sstevel@tonic-gate 			/*
17737c478bd9Sstevel@tonic-gate 			 * Our dependencies aren't met.  We'll never
17747c478bd9Sstevel@tonic-gate 			 * amount to anything.
17757c478bd9Sstevel@tonic-gate 			 */
17767c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Instance \"%s\" has unsatisfied"
17777c478bd9Sstevel@tonic-gate 			    " dependencies.\n"), wip->fmri);
17787c478bd9Sstevel@tonic-gate 			/*
17797c478bd9Sstevel@tonic-gate 			 * EXIT_SVC_FAILURE takes precedence over
17807c478bd9Sstevel@tonic-gate 			 * EXIT_DEP_FAILURE
17817c478bd9Sstevel@tonic-gate 			 */
17827c478bd9Sstevel@tonic-gate 			if (exit_status == 0)
17837c478bd9Sstevel@tonic-gate 				exit_status = EXIT_DEP_FAILURE;
17847c478bd9Sstevel@tonic-gate 			goto out;
17857c478bd9Sstevel@tonic-gate 		}
17867c478bd9Sstevel@tonic-gate 	} while (_scf_pg_wait(pg, WAIT_INTERVAL) >= 0);
17877c478bd9Sstevel@tonic-gate 	scfdie();
17887c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
17897c478bd9Sstevel@tonic-gate 
17907c478bd9Sstevel@tonic-gate out:
17917c478bd9Sstevel@tonic-gate 	scf_pg_destroy(pg);
17927c478bd9Sstevel@tonic-gate 	return (0);
17937c478bd9Sstevel@tonic-gate }
17947c478bd9Sstevel@tonic-gate 
17957c478bd9Sstevel@tonic-gate /* ARGSUSED */
17967c478bd9Sstevel@tonic-gate static int
17977c478bd9Sstevel@tonic-gate wait_fmri_disabled(void *data, scf_walkinfo_t *wip)
17987c478bd9Sstevel@tonic-gate {
17997c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *pg = NULL;
18007c478bd9Sstevel@tonic-gate 	char state[MAX_SCF_STATE_STRING_SZ];
18017c478bd9Sstevel@tonic-gate 
18027c478bd9Sstevel@tonic-gate 	assert(wip->inst != NULL);
18037c478bd9Sstevel@tonic-gate 	assert(wip->pg == NULL);
18047c478bd9Sstevel@tonic-gate 
18057c478bd9Sstevel@tonic-gate 	do {
18067c478bd9Sstevel@tonic-gate 		if (pg)
18077c478bd9Sstevel@tonic-gate 			scf_pg_destroy(pg);
18087c478bd9Sstevel@tonic-gate 		if (inst_get_state(wip->inst, state, wip->fmri, &pg) != 0) {
18097c478bd9Sstevel@tonic-gate 			exit_status = EXIT_SVC_FAILURE;
18107c478bd9Sstevel@tonic-gate 			return (0);
18117c478bd9Sstevel@tonic-gate 		}
18127c478bd9Sstevel@tonic-gate 
18137c478bd9Sstevel@tonic-gate 		if (strcmp(state, SCF_STATE_STRING_DISABLED) == 0) {
18147c478bd9Sstevel@tonic-gate 			/*
18157c478bd9Sstevel@tonic-gate 			 * We're done.
18167c478bd9Sstevel@tonic-gate 			 */
18177c478bd9Sstevel@tonic-gate 			goto out;
18187c478bd9Sstevel@tonic-gate 		}
18197c478bd9Sstevel@tonic-gate 
18207c478bd9Sstevel@tonic-gate 		if (is_enabled(wip->inst)) {
18217c478bd9Sstevel@tonic-gate 			/*
18227c478bd9Sstevel@tonic-gate 			 * Someone stepped in and enabled the service.
18237c478bd9Sstevel@tonic-gate 			 */
18247c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Instance \"%s\" has been enabled"
18257c478bd9Sstevel@tonic-gate 			    " by another entity.\n"), wip->fmri);
18267c478bd9Sstevel@tonic-gate 			exit_status = EXIT_SVC_FAILURE;
18277c478bd9Sstevel@tonic-gate 			goto out;
18287c478bd9Sstevel@tonic-gate 		}
18297c478bd9Sstevel@tonic-gate 
18307c478bd9Sstevel@tonic-gate 		if (!has_potential(wip->inst, B_TRUE)) {
18317c478bd9Sstevel@tonic-gate 			/*
18327c478bd9Sstevel@tonic-gate 			 * Our restarter is hopeless.
18337c478bd9Sstevel@tonic-gate 			 */
18347c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Restarter for instance \"%s\" is"
18357c478bd9Sstevel@tonic-gate 			    " unavailable.\n"), wip->fmri);
18367c478bd9Sstevel@tonic-gate 			/*
18377c478bd9Sstevel@tonic-gate 			 * EXIT_SVC_FAILURE takes precedence over
18387c478bd9Sstevel@tonic-gate 			 * EXIT_DEP_FAILURE
18397c478bd9Sstevel@tonic-gate 			 */
18407c478bd9Sstevel@tonic-gate 			if (exit_status == 0)
18417c478bd9Sstevel@tonic-gate 				exit_status = EXIT_DEP_FAILURE;
18427c478bd9Sstevel@tonic-gate 			goto out;
18437c478bd9Sstevel@tonic-gate 		}
18447c478bd9Sstevel@tonic-gate 
18457c478bd9Sstevel@tonic-gate 	} while (_scf_pg_wait(pg, WAIT_INTERVAL) >= 0);
18467c478bd9Sstevel@tonic-gate 	scfdie();
18477c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
18487c478bd9Sstevel@tonic-gate 
18497c478bd9Sstevel@tonic-gate out:
18507c478bd9Sstevel@tonic-gate 	scf_pg_destroy(pg);
18517c478bd9Sstevel@tonic-gate 	return (0);
18527c478bd9Sstevel@tonic-gate }
18537c478bd9Sstevel@tonic-gate 
18547c478bd9Sstevel@tonic-gate /* ARGSUSED */
18557c478bd9Sstevel@tonic-gate static int
18567c478bd9Sstevel@tonic-gate clear_instance(void *data, scf_walkinfo_t *wip)
18577c478bd9Sstevel@tonic-gate {
18587c478bd9Sstevel@tonic-gate 	char state[MAX_SCF_STATE_STRING_SZ];
18597c478bd9Sstevel@tonic-gate 
18607c478bd9Sstevel@tonic-gate 	assert(wip->inst != NULL);
18617c478bd9Sstevel@tonic-gate 	assert(wip->pg == NULL);
18627c478bd9Sstevel@tonic-gate 
18637c478bd9Sstevel@tonic-gate 	if (inst_get_state(wip->inst, state, wip->fmri, NULL) != 0)
18647c478bd9Sstevel@tonic-gate 		return (0);
18657c478bd9Sstevel@tonic-gate 
18667c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_MAINT) == 0) {
18677c478bd9Sstevel@tonic-gate 		set_inst_action(wip->fmri, wip->inst, SCF_PROPERTY_MAINT_OFF);
18687c478bd9Sstevel@tonic-gate 	} else if (strcmp(state, SCF_STATE_STRING_DEGRADED) ==
18697c478bd9Sstevel@tonic-gate 	    0) {
18707c478bd9Sstevel@tonic-gate 		set_inst_action(wip->fmri, wip->inst, SCF_PROPERTY_RESTORE);
18717c478bd9Sstevel@tonic-gate 	} else {
18727c478bd9Sstevel@tonic-gate 		uu_warn(gettext("Instance \"%s\" is not in a "
18737c478bd9Sstevel@tonic-gate 		    "maintenance or degraded state.\n"), wip->fmri);
18747c478bd9Sstevel@tonic-gate 
18757c478bd9Sstevel@tonic-gate 		exit_status = 1;
18767c478bd9Sstevel@tonic-gate 	}
18777c478bd9Sstevel@tonic-gate 
18787c478bd9Sstevel@tonic-gate 	return (0);
18797c478bd9Sstevel@tonic-gate }
18807c478bd9Sstevel@tonic-gate 
18817c478bd9Sstevel@tonic-gate static int
18827c478bd9Sstevel@tonic-gate set_fmri_action(void *action, scf_walkinfo_t *wip)
18837c478bd9Sstevel@tonic-gate {
18847c478bd9Sstevel@tonic-gate 	assert(wip->inst != NULL && wip->pg == NULL);
18857c478bd9Sstevel@tonic-gate 
18867c478bd9Sstevel@tonic-gate 	set_inst_action(wip->fmri, wip->inst, action);
18877c478bd9Sstevel@tonic-gate 
18887c478bd9Sstevel@tonic-gate 	return (0);
18897c478bd9Sstevel@tonic-gate }
18907c478bd9Sstevel@tonic-gate 
18917c478bd9Sstevel@tonic-gate /*
18927c478bd9Sstevel@tonic-gate  * Flags to control 'mark' action.
18937c478bd9Sstevel@tonic-gate  */
18947c478bd9Sstevel@tonic-gate #define	MARK_IMMEDIATE	0x1
18957c478bd9Sstevel@tonic-gate #define	MARK_TEMPORARY	0x2
18967c478bd9Sstevel@tonic-gate 
18977c478bd9Sstevel@tonic-gate static int
18987c478bd9Sstevel@tonic-gate force_degraded(void *data, scf_walkinfo_t *wip)
18997c478bd9Sstevel@tonic-gate {
19007c478bd9Sstevel@tonic-gate 	int flags = (int)data;
19017c478bd9Sstevel@tonic-gate 	char state[MAX_SCF_STATE_STRING_SZ];
19027c478bd9Sstevel@tonic-gate 
19037c478bd9Sstevel@tonic-gate 	if (inst_get_state(wip->inst, state, wip->fmri, NULL) != 0) {
19047c478bd9Sstevel@tonic-gate 		exit_status = 1;
19057c478bd9Sstevel@tonic-gate 		return (0);
19067c478bd9Sstevel@tonic-gate 	}
19077c478bd9Sstevel@tonic-gate 
19087c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_ONLINE) != 0) {
19097c478bd9Sstevel@tonic-gate 		uu_warn(gettext("Instance \"%s\" is not online.\n"), wip->fmri);
19107c478bd9Sstevel@tonic-gate 		exit_status = 1;
19117c478bd9Sstevel@tonic-gate 		return (0);
19127c478bd9Sstevel@tonic-gate 	}
19137c478bd9Sstevel@tonic-gate 
19147c478bd9Sstevel@tonic-gate 	set_inst_action(wip->fmri, wip->inst, (flags & MARK_IMMEDIATE) ?
19157c478bd9Sstevel@tonic-gate 	    SCF_PROPERTY_DEGRADE_IMMEDIATE : SCF_PROPERTY_DEGRADED);
19167c478bd9Sstevel@tonic-gate 
19177c478bd9Sstevel@tonic-gate 	return (0);
19187c478bd9Sstevel@tonic-gate }
19197c478bd9Sstevel@tonic-gate 
19207c478bd9Sstevel@tonic-gate static int
19217c478bd9Sstevel@tonic-gate force_maintenance(void *data, scf_walkinfo_t *wip)
19227c478bd9Sstevel@tonic-gate {
19237c478bd9Sstevel@tonic-gate 	int flags = (int)data;
19247c478bd9Sstevel@tonic-gate 	const char *prop;
19257c478bd9Sstevel@tonic-gate 
19267c478bd9Sstevel@tonic-gate 	if (flags & MARK_IMMEDIATE) {
19277c478bd9Sstevel@tonic-gate 		prop = (flags & MARK_TEMPORARY) ?
19287c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_MAINT_ON_IMMTEMP :
19297c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_MAINT_ON_IMMEDIATE;
19307c478bd9Sstevel@tonic-gate 	} else {
19317c478bd9Sstevel@tonic-gate 		prop = (flags & MARK_TEMPORARY) ?
19327c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_MAINT_ON_TEMPORARY :
19337c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_MAINT_ON;
19347c478bd9Sstevel@tonic-gate 	}
19357c478bd9Sstevel@tonic-gate 
19367c478bd9Sstevel@tonic-gate 	set_inst_action(wip->fmri, wip->inst, prop);
19377c478bd9Sstevel@tonic-gate 
19387c478bd9Sstevel@tonic-gate 	return (0);
19397c478bd9Sstevel@tonic-gate }
19407c478bd9Sstevel@tonic-gate 
19417c478bd9Sstevel@tonic-gate static void
19427c478bd9Sstevel@tonic-gate set_milestone(const char *fmri, boolean_t temporary)
19437c478bd9Sstevel@tonic-gate {
19447c478bd9Sstevel@tonic-gate 	scf_instance_t *inst;
19457c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *pg;
19467c478bd9Sstevel@tonic-gate 	int r;
19477c478bd9Sstevel@tonic-gate 
19487c478bd9Sstevel@tonic-gate 	if (temporary) {
19497c478bd9Sstevel@tonic-gate 		set_astring_prop(SCF_SERVICE_STARTD, SCF_PG_OPTIONS_OVR,
19507c478bd9Sstevel@tonic-gate 		    SCF_PG_OPTIONS_OVR_TYPE, SCF_PG_OPTIONS_OVR_FLAGS,
19517c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_MILESTONE, fmri);
19527c478bd9Sstevel@tonic-gate 		return;
19537c478bd9Sstevel@tonic-gate 	}
19547c478bd9Sstevel@tonic-gate 
19557c478bd9Sstevel@tonic-gate 	if ((inst = scf_instance_create(h)) == NULL ||
19567c478bd9Sstevel@tonic-gate 	    (pg = scf_pg_create(h)) == NULL)
19577c478bd9Sstevel@tonic-gate 		scfdie();
19587c478bd9Sstevel@tonic-gate 
19597c478bd9Sstevel@tonic-gate 	if (get_inst(SCF_SERVICE_STARTD, inst) != 0) {
19607c478bd9Sstevel@tonic-gate 		scf_instance_destroy(inst);
19617c478bd9Sstevel@tonic-gate 		return;
19627c478bd9Sstevel@tonic-gate 	}
19637c478bd9Sstevel@tonic-gate 
19647c478bd9Sstevel@tonic-gate 	/*
19657c478bd9Sstevel@tonic-gate 	 * Set the persistent milestone before deleting the override so we don't
19667c478bd9Sstevel@tonic-gate 	 * glitch.
19677c478bd9Sstevel@tonic-gate 	 */
19687c478bd9Sstevel@tonic-gate 	set_astring_prop(SCF_SERVICE_STARTD, SCF_PG_OPTIONS,
19697c478bd9Sstevel@tonic-gate 	    SCF_PG_OPTIONS_TYPE, SCF_PG_OPTIONS_FLAGS, SCF_PROPERTY_MILESTONE,
19707c478bd9Sstevel@tonic-gate 	    fmri);
19717c478bd9Sstevel@tonic-gate 
1972eb1a3463STruong Nguyen 	r = scf_instance_delete_prop(inst, SCF_PG_OPTIONS_OVR,
1973eb1a3463STruong Nguyen 	    SCF_PROPERTY_MILESTONE);
19747c478bd9Sstevel@tonic-gate 	switch (r) {
19757c478bd9Sstevel@tonic-gate 	case 0:
19767c478bd9Sstevel@tonic-gate 		break;
19777c478bd9Sstevel@tonic-gate 
19787c478bd9Sstevel@tonic-gate 	case ECANCELED:
19797c478bd9Sstevel@tonic-gate 		uu_warn(emsg_no_service, fmri);
19807c478bd9Sstevel@tonic-gate 		exit_status = 1;
19817c478bd9Sstevel@tonic-gate 		goto out;
19827c478bd9Sstevel@tonic-gate 
19837c478bd9Sstevel@tonic-gate 	case EPERM:
19847c478bd9Sstevel@tonic-gate 		uu_warn(gettext("Could not delete %s/%s property of "
19857c478bd9Sstevel@tonic-gate 		    "%s: permission denied.\n"), SCF_PG_OPTIONS_OVR,
19867c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_MILESTONE, SCF_SERVICE_STARTD);
19877c478bd9Sstevel@tonic-gate 		exit_status = 1;
19887c478bd9Sstevel@tonic-gate 		goto out;
19897c478bd9Sstevel@tonic-gate 
19907c478bd9Sstevel@tonic-gate 	case EACCES:
19917c478bd9Sstevel@tonic-gate 		uu_warn(gettext("Could not delete %s/%s property of "
19927c478bd9Sstevel@tonic-gate 		    "%s: access denied.\n"), SCF_PG_OPTIONS_OVR,
19937c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_MILESTONE, SCF_SERVICE_STARTD);
19947c478bd9Sstevel@tonic-gate 		exit_status = 1;
19957c478bd9Sstevel@tonic-gate 		goto out;
19967c478bd9Sstevel@tonic-gate 
19977c478bd9Sstevel@tonic-gate 	case EROFS:
19987c478bd9Sstevel@tonic-gate 		uu_warn(gettext("Could not delete %s/%s property of "
19997c478bd9Sstevel@tonic-gate 		    "%s: backend read-only.\n"), SCF_PG_OPTIONS_OVR,
20007c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_MILESTONE, SCF_SERVICE_STARTD);
20017c478bd9Sstevel@tonic-gate 		exit_status = 1;
20027c478bd9Sstevel@tonic-gate 		goto out;
20037c478bd9Sstevel@tonic-gate 
20047c478bd9Sstevel@tonic-gate 	default:
2005eb1a3463STruong Nguyen 		bad_error("scf_instance_delete_prop", r);
20067c478bd9Sstevel@tonic-gate 	}
20077c478bd9Sstevel@tonic-gate 
20087c478bd9Sstevel@tonic-gate out:
20097c478bd9Sstevel@tonic-gate 	scf_pg_destroy(pg);
20107c478bd9Sstevel@tonic-gate 	scf_instance_destroy(inst);
20117c478bd9Sstevel@tonic-gate }
20127c478bd9Sstevel@tonic-gate 
20137c478bd9Sstevel@tonic-gate static char const *milestones[] = {
20147c478bd9Sstevel@tonic-gate 	SCF_MILESTONE_SINGLE_USER,
20157c478bd9Sstevel@tonic-gate 	SCF_MILESTONE_MULTI_USER,
20167c478bd9Sstevel@tonic-gate 	SCF_MILESTONE_MULTI_USER_SERVER,
20177c478bd9Sstevel@tonic-gate 	NULL
20187c478bd9Sstevel@tonic-gate };
20197c478bd9Sstevel@tonic-gate 
20207c478bd9Sstevel@tonic-gate static void
20210b5c9250Shg115875 usage_milestone(void)
20227c478bd9Sstevel@tonic-gate {
20237c478bd9Sstevel@tonic-gate 	const char **ms;
20247c478bd9Sstevel@tonic-gate 
20257c478bd9Sstevel@tonic-gate 	(void) fprintf(stderr, gettext(
20267c478bd9Sstevel@tonic-gate 	"Usage: svcadm milestone [-d] <milestone>\n\n"
20277c478bd9Sstevel@tonic-gate 	"\t-d\tmake the specified milestone the default for system boot\n\n"
20287c478bd9Sstevel@tonic-gate 	"\tMilestones can be specified using an FMRI or abbreviation.\n"
20297c478bd9Sstevel@tonic-gate 	"\tThe major milestones are as follows:\n\n"
20307c478bd9Sstevel@tonic-gate 	"\tall\n"
20317c478bd9Sstevel@tonic-gate 	"\tnone\n"));
20327c478bd9Sstevel@tonic-gate 
20337c478bd9Sstevel@tonic-gate 	for (ms = milestones; *ms != NULL; ms++)
20347c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, "\t%s\n", *ms);
20357c478bd9Sstevel@tonic-gate 
20367c478bd9Sstevel@tonic-gate 	exit(UU_EXIT_USAGE);
20377c478bd9Sstevel@tonic-gate }
20387c478bd9Sstevel@tonic-gate 
20397c478bd9Sstevel@tonic-gate static const char *
20407c478bd9Sstevel@tonic-gate validate_milestone(const char *milestone)
20417c478bd9Sstevel@tonic-gate {
20427c478bd9Sstevel@tonic-gate 	const char **ms;
20437c478bd9Sstevel@tonic-gate 	const char *tmp;
20447c478bd9Sstevel@tonic-gate 	size_t len;
20457c478bd9Sstevel@tonic-gate 
20467c478bd9Sstevel@tonic-gate 	if (strcmp(milestone, "all") == 0)
20477c478bd9Sstevel@tonic-gate 		return (milestone);
20487c478bd9Sstevel@tonic-gate 
20497c478bd9Sstevel@tonic-gate 	if (strcmp(milestone, "none") == 0)
20507c478bd9Sstevel@tonic-gate 		return (milestone);
20517c478bd9Sstevel@tonic-gate 
20527c478bd9Sstevel@tonic-gate 	/*
20537c478bd9Sstevel@tonic-gate 	 * Determine if this is a full or partial milestone
20547c478bd9Sstevel@tonic-gate 	 */
20557c478bd9Sstevel@tonic-gate 	for (ms = milestones; *ms != NULL; ms++) {
20567c478bd9Sstevel@tonic-gate 		if ((tmp = strstr(*ms, milestone)) != NULL) {
20577c478bd9Sstevel@tonic-gate 			len = strlen(milestone);
20587c478bd9Sstevel@tonic-gate 
20597c478bd9Sstevel@tonic-gate 			/*
20607c478bd9Sstevel@tonic-gate 			 * The beginning of the string must align with the start
20617c478bd9Sstevel@tonic-gate 			 * of a milestone fmri, or on the boundary between
20627c478bd9Sstevel@tonic-gate 			 * elements.  The end of the string must align with the
20637c478bd9Sstevel@tonic-gate 			 * end of the milestone, or at the instance boundary.
20647c478bd9Sstevel@tonic-gate 			 */
20657c478bd9Sstevel@tonic-gate 			if ((tmp == *ms || tmp[-1] == '/') &&
20667c478bd9Sstevel@tonic-gate 			    (tmp[len] == '\0' || tmp[len] == ':'))
20677c478bd9Sstevel@tonic-gate 				return (*ms);
20687c478bd9Sstevel@tonic-gate 		}
20697c478bd9Sstevel@tonic-gate 	}
20707c478bd9Sstevel@tonic-gate 
20717c478bd9Sstevel@tonic-gate 	(void) fprintf(stderr,
20727c478bd9Sstevel@tonic-gate 	    gettext("\"%s\" is not a valid major milestone.\n"), milestone);
20737c478bd9Sstevel@tonic-gate 
20747c478bd9Sstevel@tonic-gate 	usage_milestone();
20757c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
20767c478bd9Sstevel@tonic-gate }
20777c478bd9Sstevel@tonic-gate 
2078*702a871aSJerry Jelinek /*PRINTFLIKE1*/
2079*702a871aSJerry Jelinek static void
2080*702a871aSJerry Jelinek pr_warn(const char *format, ...)
2081*702a871aSJerry Jelinek {
2082*702a871aSJerry Jelinek 	const char *pname = uu_getpname();
2083*702a871aSJerry Jelinek 	va_list alist;
2084*702a871aSJerry Jelinek 
2085*702a871aSJerry Jelinek 	va_start(alist, format);
2086*702a871aSJerry Jelinek 
2087*702a871aSJerry Jelinek 	if (pname != NULL)
2088*702a871aSJerry Jelinek 		(void) fprintf(stderr, "%s", pname);
2089*702a871aSJerry Jelinek 
2090*702a871aSJerry Jelinek 	if (g_zonename != NULL)
2091*702a871aSJerry Jelinek 		(void) fprintf(stderr, " (%s)", g_zonename);
2092*702a871aSJerry Jelinek 
2093*702a871aSJerry Jelinek 	(void) fprintf(stderr, ": ");
2094*702a871aSJerry Jelinek 
2095*702a871aSJerry Jelinek 	(void) vfprintf(stderr, format, alist);
2096*702a871aSJerry Jelinek 
2097*702a871aSJerry Jelinek 	if (strrchr(format, '\n') == NULL)
2098*702a871aSJerry Jelinek 		(void) fprintf(stderr, ": %s\n", strerror(errno));
2099*702a871aSJerry Jelinek 
2100*702a871aSJerry Jelinek 	va_end(alist);
2101*702a871aSJerry Jelinek }
2102*702a871aSJerry Jelinek 
21037c478bd9Sstevel@tonic-gate /*ARGSUSED*/
21047c478bd9Sstevel@tonic-gate static void
21057c478bd9Sstevel@tonic-gate quiet(const char *fmt, ...)
21067c478bd9Sstevel@tonic-gate {
21077c478bd9Sstevel@tonic-gate 	/* Do nothing */
21087c478bd9Sstevel@tonic-gate }
21097c478bd9Sstevel@tonic-gate 
21107c478bd9Sstevel@tonic-gate int
21117c478bd9Sstevel@tonic-gate main(int argc, char *argv[])
21127c478bd9Sstevel@tonic-gate {
21137c478bd9Sstevel@tonic-gate 	int o;
21147c478bd9Sstevel@tonic-gate 	int err;
2115c0889d7aSstevep 	int sw_back;
2116*702a871aSJerry Jelinek 	boolean_t do_zones = B_FALSE;
2117*702a871aSJerry Jelinek 	boolean_t do_a_zone = B_FALSE;
2118*702a871aSJerry Jelinek 	char zonename[ZONENAME_MAX];
2119*702a871aSJerry Jelinek 	uint_t nzents = 0, zent = 0;
2120*702a871aSJerry Jelinek 	zoneid_t *zids = NULL;
2121*702a871aSJerry Jelinek 	int orig_optind, orig_argc;
2122*702a871aSJerry Jelinek 	char **orig_argv;
21237c478bd9Sstevel@tonic-gate 
21247c478bd9Sstevel@tonic-gate 	(void) setlocale(LC_ALL, "");
21257c478bd9Sstevel@tonic-gate 	(void) textdomain(TEXT_DOMAIN);
21267c478bd9Sstevel@tonic-gate 
21277c478bd9Sstevel@tonic-gate 	(void) uu_setpname(argv[0]);
21287c478bd9Sstevel@tonic-gate 
21297c478bd9Sstevel@tonic-gate 	if (argc < 2)
21307c478bd9Sstevel@tonic-gate 		usage();
21317c478bd9Sstevel@tonic-gate 
21327c478bd9Sstevel@tonic-gate 	max_scf_fmri_sz = scf_limit(SCF_LIMIT_MAX_FMRI_LENGTH);
21337c478bd9Sstevel@tonic-gate 	if (max_scf_fmri_sz < 0)
21347c478bd9Sstevel@tonic-gate 		scfdie();
21357c478bd9Sstevel@tonic-gate 	++max_scf_fmri_sz;
21367c478bd9Sstevel@tonic-gate 
21377c478bd9Sstevel@tonic-gate 	scratch_fmri = malloc(max_scf_fmri_sz);
21387c478bd9Sstevel@tonic-gate 	if (scratch_fmri == NULL)
21397c478bd9Sstevel@tonic-gate 		uu_die(emsg_nomem);
21407c478bd9Sstevel@tonic-gate 
2141*702a871aSJerry Jelinek 	while ((o = getopt(argc, argv, "vZz:")) != -1) {
2142647f8444SBryan Cantrill 		switch (o) {
2143647f8444SBryan Cantrill 		case 'v':
21447c478bd9Sstevel@tonic-gate 			verbose = 1;
2145647f8444SBryan Cantrill 			break;
2146647f8444SBryan Cantrill 
2147*702a871aSJerry Jelinek 		case 'z':
2148647f8444SBryan Cantrill 			if (getzoneid() != GLOBAL_ZONEID)
2149647f8444SBryan Cantrill 				uu_die(gettext("svcadm -z may only be used "
2150647f8444SBryan Cantrill 				    "from the global zone\n"));
2151*702a871aSJerry Jelinek 			if (do_zones)
2152*702a871aSJerry Jelinek 				usage();
2153647f8444SBryan Cantrill 
2154*702a871aSJerry Jelinek 			(void) strlcpy(zonename, optarg, sizeof (zonename));
2155*702a871aSJerry Jelinek 			do_a_zone = B_TRUE;
2156647f8444SBryan Cantrill 			break;
2157*702a871aSJerry Jelinek 
2158*702a871aSJerry Jelinek 		case 'Z':
2159*702a871aSJerry Jelinek 			if (getzoneid() != GLOBAL_ZONEID)
2160*702a871aSJerry Jelinek 				uu_die(gettext("svcadm -Z may only be used "
2161*702a871aSJerry Jelinek 				    "from the global zone\n"));
2162*702a871aSJerry Jelinek 			if (do_a_zone)
2163*702a871aSJerry Jelinek 				usage();
2164*702a871aSJerry Jelinek 
2165*702a871aSJerry Jelinek 			do_zones = B_TRUE;
2166*702a871aSJerry Jelinek 			break;
2167647f8444SBryan Cantrill 
2168647f8444SBryan Cantrill 		default:
21697c478bd9Sstevel@tonic-gate 			usage();
21707c478bd9Sstevel@tonic-gate 		}
2171647f8444SBryan Cantrill 	}
2172647f8444SBryan Cantrill 
2173*702a871aSJerry Jelinek 	while (do_zones) {
2174*702a871aSJerry Jelinek 		uint_t found;
21757c478bd9Sstevel@tonic-gate 
2176*702a871aSJerry Jelinek 		if (zone_list(NULL, &nzents) != 0)
2177*702a871aSJerry Jelinek 			uu_die(gettext("could not get number of zones"));
2178*702a871aSJerry Jelinek 
2179*702a871aSJerry Jelinek 		if ((zids = malloc(nzents * sizeof (zoneid_t))) == NULL) {
2180*702a871aSJerry Jelinek 			uu_die(gettext("could not allocate array for "
2181*702a871aSJerry Jelinek 			    "%d zone IDs"), nzents);
2182*702a871aSJerry Jelinek 		}
2183*702a871aSJerry Jelinek 
2184*702a871aSJerry Jelinek 		found = nzents;
2185*702a871aSJerry Jelinek 
2186*702a871aSJerry Jelinek 		if (zone_list(zids, &found) != 0)
2187*702a871aSJerry Jelinek 			uu_die(gettext("could not get zone list"));
2188*702a871aSJerry Jelinek 
2189*702a871aSJerry Jelinek 		/*
2190*702a871aSJerry Jelinek 		 * If the number of zones has not changed between our calls to
2191*702a871aSJerry Jelinek 		 * zone_list(), we're done -- otherwise, we must free our array
2192*702a871aSJerry Jelinek 		 * of zone IDs and take another lap.
2193*702a871aSJerry Jelinek 		 */
2194*702a871aSJerry Jelinek 		if (found == nzents)
2195*702a871aSJerry Jelinek 			break;
2196*702a871aSJerry Jelinek 
2197*702a871aSJerry Jelinek 		free(zids);
2198*702a871aSJerry Jelinek 	}
21997c478bd9Sstevel@tonic-gate 
22007c478bd9Sstevel@tonic-gate 	emsg_permission_denied = gettext("%s: Permission denied.\n");
22017c478bd9Sstevel@tonic-gate 	emsg_nomem = gettext("Out of memory.\n");
22027c478bd9Sstevel@tonic-gate 	emsg_create_pg_perm_denied = gettext("%s: Couldn't create \"%s\" "
22037c478bd9Sstevel@tonic-gate 	    "property group (permission denied).\n");
22047c478bd9Sstevel@tonic-gate 	emsg_pg_perm_denied = gettext("%s: Couldn't modify \"%s\" property "
22057c478bd9Sstevel@tonic-gate 	    "group (permission denied).\n");
22067c478bd9Sstevel@tonic-gate 	emsg_prop_perm_denied = gettext("%s: Couldn't modify \"%s/%s\" "
22077c478bd9Sstevel@tonic-gate 	    "property (permission denied).\n");
22087c478bd9Sstevel@tonic-gate 	emsg_no_service = gettext("No such service \"%s\".\n");
22097c478bd9Sstevel@tonic-gate 
2210*702a871aSJerry Jelinek 	orig_optind = optind;
2211*702a871aSJerry Jelinek 	orig_argc = argc;
2212*702a871aSJerry Jelinek 	orig_argv = argv;
2213*702a871aSJerry Jelinek 
2214*702a871aSJerry Jelinek again:
2215*702a871aSJerry Jelinek 	h = scf_handle_create(SCF_VERSION);
2216*702a871aSJerry Jelinek 	if (h == NULL)
2217*702a871aSJerry Jelinek 		scfdie();
2218*702a871aSJerry Jelinek 
2219*702a871aSJerry Jelinek 	if (do_zones) {
2220*702a871aSJerry Jelinek 		zone_status_t status;
2221*702a871aSJerry Jelinek 
2222*702a871aSJerry Jelinek 		if (zone_getattr(zids[zent], ZONE_ATTR_STATUS, &status,
2223*702a871aSJerry Jelinek 		    sizeof (status)) < 0 || status != ZONE_IS_RUNNING) {
2224*702a871aSJerry Jelinek 			/*
2225*702a871aSJerry Jelinek 			 * If this zone is not running or we cannot
2226*702a871aSJerry Jelinek 			 * get its status, we do not want to attempt
2227*702a871aSJerry Jelinek 			 * to bind an SCF handle to it, lest we
2228*702a871aSJerry Jelinek 			 * accidentally interfere with a zone that
2229*702a871aSJerry Jelinek 			 * is not yet running by looking up a door
2230*702a871aSJerry Jelinek 			 * to its svc.configd (which could potentially
2231*702a871aSJerry Jelinek 			 * block a mount with an EBUSY).
2232*702a871aSJerry Jelinek 			 */
2233*702a871aSJerry Jelinek 			zent++;
2234*702a871aSJerry Jelinek 			goto nextzone;
2235*702a871aSJerry Jelinek 		}
2236*702a871aSJerry Jelinek 
2237*702a871aSJerry Jelinek 		if (getzonenamebyid(zids[zent++], zonename,
2238*702a871aSJerry Jelinek 		    sizeof (zonename)) < 0) {
2239*702a871aSJerry Jelinek 			uu_warn(gettext("could not get name for "
2240*702a871aSJerry Jelinek 			    "zone %d; ignoring"), zids[zent - 1]);
2241*702a871aSJerry Jelinek 			goto nextzone;
2242*702a871aSJerry Jelinek 		}
2243*702a871aSJerry Jelinek 
2244*702a871aSJerry Jelinek 		g_zonename = zonename;
2245*702a871aSJerry Jelinek 	}
2246*702a871aSJerry Jelinek 
2247*702a871aSJerry Jelinek 	if (do_a_zone || do_zones) {
2248*702a871aSJerry Jelinek 		scf_value_t *zone;
2249*702a871aSJerry Jelinek 
2250*702a871aSJerry Jelinek 		if ((zone = scf_value_create(h)) == NULL)
2251*702a871aSJerry Jelinek 			scfdie();
2252*702a871aSJerry Jelinek 
2253*702a871aSJerry Jelinek 		if (scf_value_set_astring(zone, zonename) != SCF_SUCCESS)
2254*702a871aSJerry Jelinek 			scfdie();
2255*702a871aSJerry Jelinek 
2256*702a871aSJerry Jelinek 		if (scf_handle_decorate(h, "zone", zone) != SCF_SUCCESS) {
2257*702a871aSJerry Jelinek 			if (do_a_zone) {
2258*702a871aSJerry Jelinek 				uu_die(gettext("invalid zone '%s'\n"), optarg);
2259*702a871aSJerry Jelinek 			} else {
2260*702a871aSJerry Jelinek 				scf_value_destroy(zone);
2261*702a871aSJerry Jelinek 				goto nextzone;
2262*702a871aSJerry Jelinek 			}
2263*702a871aSJerry Jelinek 		}
2264*702a871aSJerry Jelinek 
2265*702a871aSJerry Jelinek 		scf_value_destroy(zone);
2266*702a871aSJerry Jelinek 	}
2267*702a871aSJerry Jelinek 
2268*702a871aSJerry Jelinek 	if (scf_handle_bind(h) == -1) {
2269*702a871aSJerry Jelinek 		if (do_zones)
2270*702a871aSJerry Jelinek 			goto nextzone;
2271*702a871aSJerry Jelinek 
2272*702a871aSJerry Jelinek 		uu_die(gettext("Couldn't bind to configuration repository: "
2273*702a871aSJerry Jelinek 		    "%s.\n"), scf_strerror(scf_error()));
2274*702a871aSJerry Jelinek 	}
2275*702a871aSJerry Jelinek 
2276*702a871aSJerry Jelinek 	optind = orig_optind;
2277*702a871aSJerry Jelinek 	argc = orig_argc;
2278*702a871aSJerry Jelinek 	argv = orig_argv;
2279*702a871aSJerry Jelinek 
2280*702a871aSJerry Jelinek 	if (optind >= argc)
2281*702a871aSJerry Jelinek 		usage();
2282*702a871aSJerry Jelinek 
22837c478bd9Sstevel@tonic-gate 	if (strcmp(argv[optind], "enable") == 0) {
22847c478bd9Sstevel@tonic-gate 		int flags = SET_ENABLED;
22857c478bd9Sstevel@tonic-gate 		int wait = 0;
22867c478bd9Sstevel@tonic-gate 		int error = 0;
22877c478bd9Sstevel@tonic-gate 
22887c478bd9Sstevel@tonic-gate 		++optind;
22897c478bd9Sstevel@tonic-gate 
22907c478bd9Sstevel@tonic-gate 		while ((o = getopt(argc, argv, "rst")) != -1) {
22917c478bd9Sstevel@tonic-gate 			if (o == 'r')
22927c478bd9Sstevel@tonic-gate 				flags |= SET_RECURSIVE;
22937c478bd9Sstevel@tonic-gate 			else if (o == 't')
22947c478bd9Sstevel@tonic-gate 				flags |= SET_TEMPORARY;
22957c478bd9Sstevel@tonic-gate 			else if (o == 's')
22967c478bd9Sstevel@tonic-gate 				wait = 1;
22977c478bd9Sstevel@tonic-gate 			else if (o == '?')
22987c478bd9Sstevel@tonic-gate 				usage();
22997c478bd9Sstevel@tonic-gate 			else {
23007c478bd9Sstevel@tonic-gate 				assert(0);
23017c478bd9Sstevel@tonic-gate 				abort();
23027c478bd9Sstevel@tonic-gate 			}
23037c478bd9Sstevel@tonic-gate 		}
23047c478bd9Sstevel@tonic-gate 		argc -= optind;
23057c478bd9Sstevel@tonic-gate 		argv += optind;
23067c478bd9Sstevel@tonic-gate 
23077c478bd9Sstevel@tonic-gate 		if (argc <= 0)
23087c478bd9Sstevel@tonic-gate 			usage();
23097c478bd9Sstevel@tonic-gate 
23107c478bd9Sstevel@tonic-gate 		/*
23117c478bd9Sstevel@tonic-gate 		 * We want to continue with -s processing if we had
23127c478bd9Sstevel@tonic-gate 		 * invalid options, but not if an enable failed.  We
23137c478bd9Sstevel@tonic-gate 		 * squelch output the second time we walk fmris; we saw
23147c478bd9Sstevel@tonic-gate 		 * the errors the first time.
23157c478bd9Sstevel@tonic-gate 		 */
23166c7c876cSJerry Jelinek 		if ((err = scf_walk_fmri(h, argc, argv, WALK_FLAGS,
2317*702a871aSJerry Jelinek 		    set_fmri_enabled, (void *)flags, &error, pr_warn)) != 0) {
23187c478bd9Sstevel@tonic-gate 
2319*702a871aSJerry Jelinek 			pr_warn(gettext("failed to iterate over "
23207c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
23217c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
23227c478bd9Sstevel@tonic-gate 
23237c478bd9Sstevel@tonic-gate 		} else if (wait && exit_status == 0 &&
23246c7c876cSJerry Jelinek 		    (err = scf_walk_fmri(h, argc, argv, WALK_FLAGS,
23256c7c876cSJerry Jelinek 		    wait_fmri_enabled, (void *)flags, &error, quiet)) != 0) {
23267c478bd9Sstevel@tonic-gate 
2327*702a871aSJerry Jelinek 			pr_warn(gettext("failed to iterate over "
23287c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
23297c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
23307c478bd9Sstevel@tonic-gate 		}
23317c478bd9Sstevel@tonic-gate 
23327c478bd9Sstevel@tonic-gate 		if (error > 0)
23337c478bd9Sstevel@tonic-gate 			exit_status = error;
23347c478bd9Sstevel@tonic-gate 
23357c478bd9Sstevel@tonic-gate 	} else if (strcmp(argv[optind], "disable") == 0) {
23367c478bd9Sstevel@tonic-gate 		int flags = 0;
23377c478bd9Sstevel@tonic-gate 		int wait = 0;
23387c478bd9Sstevel@tonic-gate 		int error = 0;
23397c478bd9Sstevel@tonic-gate 
23407c478bd9Sstevel@tonic-gate 		++optind;
23417c478bd9Sstevel@tonic-gate 
23427c478bd9Sstevel@tonic-gate 		while ((o = getopt(argc, argv, "st")) != -1) {
23437c478bd9Sstevel@tonic-gate 			if (o == 't')
23447c478bd9Sstevel@tonic-gate 				flags |= SET_TEMPORARY;
23457c478bd9Sstevel@tonic-gate 			else if (o == 's')
23467c478bd9Sstevel@tonic-gate 				wait = 1;
23477c478bd9Sstevel@tonic-gate 			else if (o == '?')
23487c478bd9Sstevel@tonic-gate 				usage();
23497c478bd9Sstevel@tonic-gate 			else {
23507c478bd9Sstevel@tonic-gate 				assert(0);
23517c478bd9Sstevel@tonic-gate 				abort();
23527c478bd9Sstevel@tonic-gate 			}
23537c478bd9Sstevel@tonic-gate 		}
23547c478bd9Sstevel@tonic-gate 		argc -= optind;
23557c478bd9Sstevel@tonic-gate 		argv += optind;
23567c478bd9Sstevel@tonic-gate 
23577c478bd9Sstevel@tonic-gate 		if (argc <= 0)
23587c478bd9Sstevel@tonic-gate 			usage();
23597c478bd9Sstevel@tonic-gate 
23607c478bd9Sstevel@tonic-gate 		/*
23617c478bd9Sstevel@tonic-gate 		 * We want to continue with -s processing if we had
23627c478bd9Sstevel@tonic-gate 		 * invalid options, but not if a disable failed.  We
23637c478bd9Sstevel@tonic-gate 		 * squelch output the second time we walk fmris; we saw
23647c478bd9Sstevel@tonic-gate 		 * the errors the first time.
23657c478bd9Sstevel@tonic-gate 		 */
23666c7c876cSJerry Jelinek 		if ((err = scf_walk_fmri(h, argc, argv, WALK_FLAGS,
23676c7c876cSJerry Jelinek 		    set_fmri_enabled, (void *)flags, &exit_status,
2368*702a871aSJerry Jelinek 		    pr_warn)) != 0) {
23697c478bd9Sstevel@tonic-gate 
2370*702a871aSJerry Jelinek 			pr_warn(gettext("failed to iterate over "
23717c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
23727c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
23737c478bd9Sstevel@tonic-gate 
23747c478bd9Sstevel@tonic-gate 		} else if (wait && exit_status == 0 &&
23756c7c876cSJerry Jelinek 		    (err = scf_walk_fmri(h, argc, argv, WALK_FLAGS,
23766c7c876cSJerry Jelinek 		    wait_fmri_disabled, (void *)flags, &error, quiet)) != 0) {
23777c478bd9Sstevel@tonic-gate 
2378*702a871aSJerry Jelinek 			pr_warn(gettext("failed to iterate over "
23797c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
23807c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
23817c478bd9Sstevel@tonic-gate 		}
23827c478bd9Sstevel@tonic-gate 
23837c478bd9Sstevel@tonic-gate 		if (error > 0)
23847c478bd9Sstevel@tonic-gate 			exit_status = error;
23857c478bd9Sstevel@tonic-gate 
23867c478bd9Sstevel@tonic-gate 	} else if (strcmp(argv[optind], "restart") == 0) {
23877c478bd9Sstevel@tonic-gate 		++optind;
23887c478bd9Sstevel@tonic-gate 
23897c478bd9Sstevel@tonic-gate 		if (optind >= argc)
23907c478bd9Sstevel@tonic-gate 			usage();
23917c478bd9Sstevel@tonic-gate 
23926c7c876cSJerry Jelinek 		if ((err = scf_walk_fmri(h, argc - optind, argv + optind,
23936c7c876cSJerry Jelinek 		    WALK_FLAGS, set_fmri_action,
23946c7c876cSJerry Jelinek 		    (void *)SCF_PROPERTY_RESTART, &exit_status,
2395*702a871aSJerry Jelinek 		    pr_warn)) != 0) {
2396*702a871aSJerry Jelinek 			pr_warn(gettext("failed to iterate over "
23977c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
23987c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
23997c478bd9Sstevel@tonic-gate 		}
24007c478bd9Sstevel@tonic-gate 
24017c478bd9Sstevel@tonic-gate 	} else if (strcmp(argv[optind], "refresh") == 0) {
24027c478bd9Sstevel@tonic-gate 		++optind;
24037c478bd9Sstevel@tonic-gate 
24047c478bd9Sstevel@tonic-gate 		if (optind >= argc)
24057c478bd9Sstevel@tonic-gate 			usage();
24067c478bd9Sstevel@tonic-gate 
24076c7c876cSJerry Jelinek 		if ((err = scf_walk_fmri(h, argc - optind, argv + optind,
24086c7c876cSJerry Jelinek 		    WALK_FLAGS, set_fmri_action,
24096c7c876cSJerry Jelinek 		    (void *)SCF_PROPERTY_REFRESH, &exit_status,
2410*702a871aSJerry Jelinek 		    pr_warn)) != 0) {
2411*702a871aSJerry Jelinek 			pr_warn(gettext("failed to iterate over "
24127c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(scf_error()));
24137c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
24147c478bd9Sstevel@tonic-gate 		}
24157c478bd9Sstevel@tonic-gate 
24167c478bd9Sstevel@tonic-gate 	} else if (strcmp(argv[optind], "mark") == 0) {
24177c478bd9Sstevel@tonic-gate 		int flags = 0;
24187c478bd9Sstevel@tonic-gate 		scf_walk_callback callback;
24197c478bd9Sstevel@tonic-gate 
24207c478bd9Sstevel@tonic-gate 		++optind;
24217c478bd9Sstevel@tonic-gate 
24227c478bd9Sstevel@tonic-gate 		while ((o = getopt(argc, argv, "It")) != -1) {
24237c478bd9Sstevel@tonic-gate 			if (o == 'I')
24247c478bd9Sstevel@tonic-gate 				flags |= MARK_IMMEDIATE;
24257c478bd9Sstevel@tonic-gate 			else if (o == 't')
24267c478bd9Sstevel@tonic-gate 				flags |= MARK_TEMPORARY;
24277c478bd9Sstevel@tonic-gate 			else if (o == '?')
24287c478bd9Sstevel@tonic-gate 				usage();
24297c478bd9Sstevel@tonic-gate 			else {
24307c478bd9Sstevel@tonic-gate 				assert(0);
24317c478bd9Sstevel@tonic-gate 				abort();
24327c478bd9Sstevel@tonic-gate 			}
24337c478bd9Sstevel@tonic-gate 		}
24347c478bd9Sstevel@tonic-gate 
24357c478bd9Sstevel@tonic-gate 		if (argc - optind < 2)
24367c478bd9Sstevel@tonic-gate 			usage();
24377c478bd9Sstevel@tonic-gate 
24387c478bd9Sstevel@tonic-gate 		if (strcmp(argv[optind], "degraded") == 0) {
24397c478bd9Sstevel@tonic-gate 			if (flags & MARK_TEMPORARY)
24407c478bd9Sstevel@tonic-gate 				uu_xdie(UU_EXIT_USAGE, gettext("-t may not be "
24417c478bd9Sstevel@tonic-gate 				    "used with degraded.\n"));
24427c478bd9Sstevel@tonic-gate 			callback = force_degraded;
24437c478bd9Sstevel@tonic-gate 
24447c478bd9Sstevel@tonic-gate 		} else if (strcmp(argv[optind], "maintenance") == 0) {
24457c478bd9Sstevel@tonic-gate 			callback = force_maintenance;
24467c478bd9Sstevel@tonic-gate 		} else {
24477c478bd9Sstevel@tonic-gate 			usage();
24487c478bd9Sstevel@tonic-gate 		}
24497c478bd9Sstevel@tonic-gate 
24507c478bd9Sstevel@tonic-gate 		if ((err = scf_walk_fmri(h, argc - optind - 1,
24516c7c876cSJerry Jelinek 		    argv + optind + 1, WALK_FLAGS, callback, NULL,
2452*702a871aSJerry Jelinek 		    &exit_status, pr_warn)) != 0) {
2453*702a871aSJerry Jelinek 			pr_warn(gettext("failed to iterate over "
24547c478bd9Sstevel@tonic-gate 			    "instances: %s\n"),
24557c478bd9Sstevel@tonic-gate 			    scf_strerror(err));
24567c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
24577c478bd9Sstevel@tonic-gate 		}
24587c478bd9Sstevel@tonic-gate 
24597c478bd9Sstevel@tonic-gate 	} else if (strcmp(argv[optind], "clear") == 0) {
24607c478bd9Sstevel@tonic-gate 		++optind;
24617c478bd9Sstevel@tonic-gate 
24627c478bd9Sstevel@tonic-gate 		if (optind >= argc)
24637c478bd9Sstevel@tonic-gate 			usage();
24647c478bd9Sstevel@tonic-gate 
24656c7c876cSJerry Jelinek 		if ((err = scf_walk_fmri(h, argc - optind, argv + optind,
24666c7c876cSJerry Jelinek 		    WALK_FLAGS, clear_instance, NULL, &exit_status,
2467*702a871aSJerry Jelinek 		    pr_warn)) != 0) {
2468*702a871aSJerry Jelinek 			pr_warn(gettext("failed to iterate over "
24697c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
24707c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
24717c478bd9Sstevel@tonic-gate 		}
24727c478bd9Sstevel@tonic-gate 
24737c478bd9Sstevel@tonic-gate 	} else if (strcmp(argv[optind], "milestone") == 0) {
24747c478bd9Sstevel@tonic-gate 		boolean_t temporary = B_TRUE;
24757c478bd9Sstevel@tonic-gate 		const char *milestone;
24767c478bd9Sstevel@tonic-gate 
24777c478bd9Sstevel@tonic-gate 		++optind;
24787c478bd9Sstevel@tonic-gate 
24797c478bd9Sstevel@tonic-gate 		while ((o = getopt(argc, argv, "d")) != -1) {
24807c478bd9Sstevel@tonic-gate 			if (o == 'd')
24817c478bd9Sstevel@tonic-gate 				temporary = B_FALSE;
24827c478bd9Sstevel@tonic-gate 			else if (o == '?')
24837c478bd9Sstevel@tonic-gate 				usage_milestone();
24847c478bd9Sstevel@tonic-gate 			else {
24857c478bd9Sstevel@tonic-gate 				assert(0);
24867c478bd9Sstevel@tonic-gate 				abort();
24877c478bd9Sstevel@tonic-gate 			}
24887c478bd9Sstevel@tonic-gate 		}
24897c478bd9Sstevel@tonic-gate 
24907c478bd9Sstevel@tonic-gate 		if (optind >= argc)
24917c478bd9Sstevel@tonic-gate 			usage_milestone();
24927c478bd9Sstevel@tonic-gate 
24937c478bd9Sstevel@tonic-gate 		milestone = validate_milestone(argv[optind]);
24947c478bd9Sstevel@tonic-gate 
24957c478bd9Sstevel@tonic-gate 		set_milestone(milestone, temporary);
24967c478bd9Sstevel@tonic-gate 	} else if (strcmp(argv[optind], "_smf_backup") == 0) {
24977c478bd9Sstevel@tonic-gate 		const char *reason = NULL;
24987c478bd9Sstevel@tonic-gate 
24997c478bd9Sstevel@tonic-gate 		++optind;
25007c478bd9Sstevel@tonic-gate 
25017c478bd9Sstevel@tonic-gate 		if (optind != argc - 1)
25027c478bd9Sstevel@tonic-gate 			usage();
25037c478bd9Sstevel@tonic-gate 
25047c478bd9Sstevel@tonic-gate 		if ((err = _scf_request_backup(h, argv[optind])) !=
25057c478bd9Sstevel@tonic-gate 		    SCF_SUCCESS) {
25067c478bd9Sstevel@tonic-gate 			switch (scf_error()) {
25077c478bd9Sstevel@tonic-gate 			case SCF_ERROR_NOT_BOUND:
25087c478bd9Sstevel@tonic-gate 			case SCF_ERROR_CONNECTION_BROKEN:
25097c478bd9Sstevel@tonic-gate 			case SCF_ERROR_BACKEND_READONLY:
25107c478bd9Sstevel@tonic-gate 				scfdie();
25117c478bd9Sstevel@tonic-gate 				break;
25127c478bd9Sstevel@tonic-gate 
25137c478bd9Sstevel@tonic-gate 			case SCF_ERROR_PERMISSION_DENIED:
25147c478bd9Sstevel@tonic-gate 			case SCF_ERROR_INVALID_ARGUMENT:
25157c478bd9Sstevel@tonic-gate 				reason = scf_strerror(scf_error());
25167c478bd9Sstevel@tonic-gate 				break;
25177c478bd9Sstevel@tonic-gate 
25187c478bd9Sstevel@tonic-gate 			case SCF_ERROR_INTERNAL:
25197c478bd9Sstevel@tonic-gate 				reason =
25207c478bd9Sstevel@tonic-gate 				    "unknown error (see console for details)";
25217c478bd9Sstevel@tonic-gate 				break;
25227c478bd9Sstevel@tonic-gate 			}
2523c0889d7aSstevep 
2524*702a871aSJerry Jelinek 			pr_warn("failed to backup repository: %s\n", reason);
25257c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
25267c478bd9Sstevel@tonic-gate 		}
2527c0889d7aSstevep 	} else if (strcmp(argv[optind], "_smf_repository_switch") == 0) {
2528c0889d7aSstevep 		const char *reason = NULL;
2529c0889d7aSstevep 
2530c0889d7aSstevep 		++optind;
2531c0889d7aSstevep 
2532c0889d7aSstevep 		/*
2533c0889d7aSstevep 		 * Check argument and setup scf_switch structure
2534c0889d7aSstevep 		 */
2535c0889d7aSstevep 		if (optind != argc - 1)
2536c0889d7aSstevep 			exit(1);
2537c0889d7aSstevep 
2538c0889d7aSstevep 		if (strcmp(argv[optind], "fast") == 0) {
2539c0889d7aSstevep 			sw_back = 0;
2540c0889d7aSstevep 		} else if (strcmp(argv[optind], "perm") == 0) {
2541c0889d7aSstevep 			sw_back = 1;
2542c0889d7aSstevep 		} else {
2543c0889d7aSstevep 			exit(UU_EXIT_USAGE);
2544c0889d7aSstevep 		}
2545c0889d7aSstevep 
2546c0889d7aSstevep 		/*
2547c0889d7aSstevep 		 * Call into switch primitive
2548c0889d7aSstevep 		 */
2549c0889d7aSstevep 		if ((err = _scf_repository_switch(h, sw_back)) !=
2550c0889d7aSstevep 		    SCF_SUCCESS) {
2551c0889d7aSstevep 			/*
2552c0889d7aSstevep 			 * Retrieve per thread SCF error code
2553c0889d7aSstevep 			 */
2554c0889d7aSstevep 			switch (scf_error()) {
2555c0889d7aSstevep 			case SCF_ERROR_NOT_BOUND:
2556c0889d7aSstevep 				abort();
2557c0889d7aSstevep 				/* NOTREACHED */
2558c0889d7aSstevep 
2559c0889d7aSstevep 			case SCF_ERROR_CONNECTION_BROKEN:
2560c0889d7aSstevep 			case SCF_ERROR_BACKEND_READONLY:
2561c0889d7aSstevep 				scfdie();
2562c0889d7aSstevep 				/* NOTREACHED */
2563c0889d7aSstevep 
2564c0889d7aSstevep 			case SCF_ERROR_PERMISSION_DENIED:
2565c0889d7aSstevep 			case SCF_ERROR_INVALID_ARGUMENT:
2566c0889d7aSstevep 				reason = scf_strerror(scf_error());
2567c0889d7aSstevep 				break;
2568c0889d7aSstevep 
2569c0889d7aSstevep 			case SCF_ERROR_INTERNAL:
2570c0889d7aSstevep 				reason = "File operation error: (see console)";
2571c0889d7aSstevep 				break;
2572c0889d7aSstevep 
2573c0889d7aSstevep 			default:
2574c0889d7aSstevep 				abort();
2575c0889d7aSstevep 				/* NOTREACHED */
2576c0889d7aSstevep 			}
2577c0889d7aSstevep 
2578*702a871aSJerry Jelinek 			pr_warn("failed to switch repository: %s\n", reason);
2579c0889d7aSstevep 			exit_status = UU_EXIT_FATAL;
2580c0889d7aSstevep 		}
25817c478bd9Sstevel@tonic-gate 	} else {
25827c478bd9Sstevel@tonic-gate 		usage();
25837c478bd9Sstevel@tonic-gate 	}
25847c478bd9Sstevel@tonic-gate 
25857c478bd9Sstevel@tonic-gate 	if (scf_handle_unbind(h) == -1)
25867c478bd9Sstevel@tonic-gate 		scfdie();
2587*702a871aSJerry Jelinek nextzone:
25887c478bd9Sstevel@tonic-gate 	scf_handle_destroy(h);
2589*702a871aSJerry Jelinek 	if (do_zones && zent < nzents)
2590*702a871aSJerry Jelinek 		goto again;
25917c478bd9Sstevel@tonic-gate 
25927c478bd9Sstevel@tonic-gate 	return (exit_status);
25937c478bd9Sstevel@tonic-gate }
2594