xref: /illumos-gate/usr/src/cmd/svc/svcs/svcs.c (revision d5c6878f09d369f50900b01afe3c7a03d2398679)
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
594501b61Sskamm  * Common Development and Distribution License (the "License").
694501b61Sskamm  * 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
203eae19d9Swesolows  */
213eae19d9Swesolows 
223eae19d9Swesolows /*
23f6e214c7SGavin Maltby  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
24048b0279SBryan Cantrill  * Copyright (c) 2011, Joyent, Inc. All rights reserved.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate /*
287c478bd9Sstevel@tonic-gate  * svcs - display attributes of service instances
297c478bd9Sstevel@tonic-gate  *
307c478bd9Sstevel@tonic-gate  * We have two output formats and six instance selection mechanisms.  The
317c478bd9Sstevel@tonic-gate  * primary output format is a line of attributes (selected by -o), possibly
327c478bd9Sstevel@tonic-gate  * followed by process description lines (if -p is specified), for each
337c478bd9Sstevel@tonic-gate  * instance selected.  The columns available to display are described by the
347c478bd9Sstevel@tonic-gate  * struct column columns array.  The columns to actually display are kept in
357c478bd9Sstevel@tonic-gate  * the opt_columns array as indicies into the columns array.  The selection
367c478bd9Sstevel@tonic-gate  * mechanisms available for this format are service FMRIs (selects all child
377c478bd9Sstevel@tonic-gate  * instances), instance FMRIs, instance FMRI glob patterns, instances with
387c478bd9Sstevel@tonic-gate  * a certain restarter (-R), dependencies of instances (-d), and dependents of
397c478bd9Sstevel@tonic-gate  * instances (-D).  Since the lines must be sorted (per -sS), we'll just stick
407c478bd9Sstevel@tonic-gate  * each into a data structure and print them in order when we're done.  To
417c478bd9Sstevel@tonic-gate  * avoid listing the same instance twice (when -d and -D aren't given), we'll
427c478bd9Sstevel@tonic-gate  * use a hash table of FMRIs to record that we've listed (added to the tree)
437c478bd9Sstevel@tonic-gate  * an instance.
447c478bd9Sstevel@tonic-gate  *
457c478bd9Sstevel@tonic-gate  * The secondary output format (-l "long") is a paragraph of text for the
467c478bd9Sstevel@tonic-gate  * services or instances selected.  Not needing to be sorted, it's implemented
477c478bd9Sstevel@tonic-gate  * by just calling print_detailed() for each FMRI given.
487c478bd9Sstevel@tonic-gate  */
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate #include "svcs.h"
51f6e214c7SGavin Maltby #include "notify_params.h"
527c478bd9Sstevel@tonic-gate 
537c478bd9Sstevel@tonic-gate /* Get the byteorder macros to ease sorting. */
547c478bd9Sstevel@tonic-gate #include <sys/types.h>
557c478bd9Sstevel@tonic-gate #include <netinet/in.h>
567c478bd9Sstevel@tonic-gate #include <inttypes.h>
577c478bd9Sstevel@tonic-gate 
587c478bd9Sstevel@tonic-gate #include <sys/contract.h>
597c478bd9Sstevel@tonic-gate #include <sys/ctfs.h>
607c478bd9Sstevel@tonic-gate #include <sys/stat.h>
617c478bd9Sstevel@tonic-gate 
627c478bd9Sstevel@tonic-gate #include <assert.h>
637c478bd9Sstevel@tonic-gate #include <errno.h>
647c478bd9Sstevel@tonic-gate #include <fcntl.h>
657c478bd9Sstevel@tonic-gate #include <fnmatch.h>
667c478bd9Sstevel@tonic-gate #include <libcontract.h>
677c478bd9Sstevel@tonic-gate #include <libcontract_priv.h>
687c478bd9Sstevel@tonic-gate #include <libintl.h>
697c478bd9Sstevel@tonic-gate #include <libscf.h>
707c478bd9Sstevel@tonic-gate #include <libscf_priv.h>
717c478bd9Sstevel@tonic-gate #include <libuutil.h>
72f6e214c7SGavin Maltby #include <libnvpair.h>
737c478bd9Sstevel@tonic-gate #include <locale.h>
747c478bd9Sstevel@tonic-gate #include <procfs.h>
757c478bd9Sstevel@tonic-gate #include <stdarg.h>
767c478bd9Sstevel@tonic-gate #include <stdio.h>
777c478bd9Sstevel@tonic-gate #include <stdlib.h>
787c478bd9Sstevel@tonic-gate #include <strings.h>
797c478bd9Sstevel@tonic-gate #include <time.h>
80048b0279SBryan Cantrill #include <libzonecfg.h>
81048b0279SBryan Cantrill #include <zone.h>
827c478bd9Sstevel@tonic-gate 
837c478bd9Sstevel@tonic-gate #ifndef TEXT_DOMAIN
847c478bd9Sstevel@tonic-gate #define	TEXT_DOMAIN	"SUNW_OST_OSCMD"
857c478bd9Sstevel@tonic-gate #endif /* TEXT_DOMAIN */
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate #define	LEGACY_UNKNOWN	"unknown"
887c478bd9Sstevel@tonic-gate 
897c478bd9Sstevel@tonic-gate /* Flags for pg_get_single_val() */
907c478bd9Sstevel@tonic-gate #define	EMPTY_OK	0x01
917c478bd9Sstevel@tonic-gate #define	MULTI_OK	0x02
927c478bd9Sstevel@tonic-gate 
937c478bd9Sstevel@tonic-gate 
947c478bd9Sstevel@tonic-gate /*
957c478bd9Sstevel@tonic-gate  * An AVL-storable node for output lines and the keys to sort them by.
967c478bd9Sstevel@tonic-gate  */
977c478bd9Sstevel@tonic-gate struct avl_string {
987c478bd9Sstevel@tonic-gate 	uu_avl_node_t	node;
997c478bd9Sstevel@tonic-gate 	char		*key;
1007c478bd9Sstevel@tonic-gate 	char		*str;
1017c478bd9Sstevel@tonic-gate };
1027c478bd9Sstevel@tonic-gate 
1037c478bd9Sstevel@tonic-gate /*
1047c478bd9Sstevel@tonic-gate  * For lists of parsed restarter FMRIs.
1057c478bd9Sstevel@tonic-gate  */
1067c478bd9Sstevel@tonic-gate struct pfmri_list {
1077c478bd9Sstevel@tonic-gate 	const char		*scope;
1087c478bd9Sstevel@tonic-gate 	const char		*service;
1097c478bd9Sstevel@tonic-gate 	const char		*instance;
1107c478bd9Sstevel@tonic-gate 	struct pfmri_list	*next;
1117c478bd9Sstevel@tonic-gate };
1127c478bd9Sstevel@tonic-gate 
1137c478bd9Sstevel@tonic-gate 
1147c478bd9Sstevel@tonic-gate /*
1157c478bd9Sstevel@tonic-gate  * Globals
1167c478bd9Sstevel@tonic-gate  */
1177c478bd9Sstevel@tonic-gate scf_handle_t *h;
1187c478bd9Sstevel@tonic-gate static scf_propertygroup_t *g_pg;
1197c478bd9Sstevel@tonic-gate static scf_property_t *g_prop;
1207c478bd9Sstevel@tonic-gate static scf_value_t *g_val;
1217c478bd9Sstevel@tonic-gate 
1227c478bd9Sstevel@tonic-gate static size_t line_sz;			/* Bytes in the header line. */
1237c478bd9Sstevel@tonic-gate static size_t sortkey_sz;		/* Bytes in sort keys. */
1247c478bd9Sstevel@tonic-gate static uu_avl_pool_t *lines_pool;
1257c478bd9Sstevel@tonic-gate static uu_avl_t *lines;			/* Output lines. */
1267c478bd9Sstevel@tonic-gate int exit_status;
1277c478bd9Sstevel@tonic-gate ssize_t max_scf_name_length;
1287c478bd9Sstevel@tonic-gate ssize_t max_scf_value_length;
1297c478bd9Sstevel@tonic-gate ssize_t max_scf_fmri_length;
1301f6eb021SLiane Praza static ssize_t max_scf_type_length;
1317c478bd9Sstevel@tonic-gate static time_t now;
1327c478bd9Sstevel@tonic-gate static struct pfmri_list *restarters = NULL;
1337c478bd9Sstevel@tonic-gate static int first_paragraph = 1;		/* For -l mode. */
1347c478bd9Sstevel@tonic-gate static char *common_name_buf;		/* Sized for maximal length value. */
1357c478bd9Sstevel@tonic-gate char *locale;				/* Current locale. */
136048b0279SBryan Cantrill char *g_zonename;			/* zone being operated upon */
1377c478bd9Sstevel@tonic-gate 
13894501b61Sskamm /*
13994501b61Sskamm  * Pathname storage for path generated from the fmri.
14094501b61Sskamm  * Used for reading the ctid and (start) pid files for an inetd service.
14194501b61Sskamm  */
14294501b61Sskamm static char genfmri_filename[MAXPATHLEN] = "";
14394501b61Sskamm 
1447c478bd9Sstevel@tonic-gate /* Options */
1457c478bd9Sstevel@tonic-gate static int *opt_columns = NULL;		/* Indices into columns to display. */
1467c478bd9Sstevel@tonic-gate static int opt_cnum = 0;
1477c478bd9Sstevel@tonic-gate static int opt_processes = 0;		/* Print processes? */
1487c478bd9Sstevel@tonic-gate static int *opt_sort = NULL;		/* Indices into columns to sort. */
1497c478bd9Sstevel@tonic-gate static int opt_snum = 0;
1507c478bd9Sstevel@tonic-gate static int opt_nstate_shown = 0;	/* Will nstate be shown? */
1517c478bd9Sstevel@tonic-gate static int opt_verbose = 0;
152048b0279SBryan Cantrill static char *opt_zone;			/* zone selected, if any */
1537c478bd9Sstevel@tonic-gate 
1547c478bd9Sstevel@tonic-gate /* Minimize string constants. */
1557c478bd9Sstevel@tonic-gate static const char * const scf_property_state = SCF_PROPERTY_STATE;
1567c478bd9Sstevel@tonic-gate static const char * const scf_property_next_state = SCF_PROPERTY_NEXT_STATE;
1577c478bd9Sstevel@tonic-gate static const char * const scf_property_contract = SCF_PROPERTY_CONTRACT;
1587c478bd9Sstevel@tonic-gate 
1597c478bd9Sstevel@tonic-gate 
1607c478bd9Sstevel@tonic-gate /*
1617c478bd9Sstevel@tonic-gate  * Utility functions
1627c478bd9Sstevel@tonic-gate  */
1637c478bd9Sstevel@tonic-gate 
1647c478bd9Sstevel@tonic-gate /*
1657c478bd9Sstevel@tonic-gate  * For unexpected libscf errors.  The ending newline is necessary to keep
1667c478bd9Sstevel@tonic-gate  * uu_die() from appending the errno error.
1677c478bd9Sstevel@tonic-gate  */
1687c478bd9Sstevel@tonic-gate #ifndef NDEBUG
1697c478bd9Sstevel@tonic-gate void
1707c478bd9Sstevel@tonic-gate do_scfdie(const char *file, int line)
1717c478bd9Sstevel@tonic-gate {
1727c478bd9Sstevel@tonic-gate 	uu_die(gettext("%s:%d: Unexpected libscf error: %s.  Exiting.\n"),
1737c478bd9Sstevel@tonic-gate 	    file, line, scf_strerror(scf_error()));
1747c478bd9Sstevel@tonic-gate }
1757c478bd9Sstevel@tonic-gate #else
1767c478bd9Sstevel@tonic-gate void
1777c478bd9Sstevel@tonic-gate scfdie(void)
1787c478bd9Sstevel@tonic-gate {
1797c478bd9Sstevel@tonic-gate 	uu_die(gettext("Unexpected libscf error: %s.  Exiting.\n"),
1807c478bd9Sstevel@tonic-gate 	    scf_strerror(scf_error()));
1817c478bd9Sstevel@tonic-gate }
1827c478bd9Sstevel@tonic-gate #endif
1837c478bd9Sstevel@tonic-gate 
1847c478bd9Sstevel@tonic-gate void *
1857c478bd9Sstevel@tonic-gate safe_malloc(size_t sz)
1867c478bd9Sstevel@tonic-gate {
1877c478bd9Sstevel@tonic-gate 	void *ptr;
1887c478bd9Sstevel@tonic-gate 
1897c478bd9Sstevel@tonic-gate 	ptr = malloc(sz);
1907c478bd9Sstevel@tonic-gate 	if (ptr == NULL)
1917c478bd9Sstevel@tonic-gate 		uu_die(gettext("Out of memory"));
1927c478bd9Sstevel@tonic-gate 
1937c478bd9Sstevel@tonic-gate 	return (ptr);
1947c478bd9Sstevel@tonic-gate }
1957c478bd9Sstevel@tonic-gate 
1967c478bd9Sstevel@tonic-gate char *
1977c478bd9Sstevel@tonic-gate safe_strdup(const char *str)
1987c478bd9Sstevel@tonic-gate {
1997c478bd9Sstevel@tonic-gate 	char *cp;
2007c478bd9Sstevel@tonic-gate 
2017c478bd9Sstevel@tonic-gate 	cp = strdup(str);
2027c478bd9Sstevel@tonic-gate 	if (cp == NULL)
2037c478bd9Sstevel@tonic-gate 		uu_die(gettext("Out of memory.\n"));
2047c478bd9Sstevel@tonic-gate 
2057c478bd9Sstevel@tonic-gate 	return (cp);
2067c478bd9Sstevel@tonic-gate }
2077c478bd9Sstevel@tonic-gate 
2087c478bd9Sstevel@tonic-gate /*
2097c478bd9Sstevel@tonic-gate  * FMRI hashtable.  For uniquifing listings.
2107c478bd9Sstevel@tonic-gate  */
2117c478bd9Sstevel@tonic-gate 
2127c478bd9Sstevel@tonic-gate struct ht_elem {
2137c478bd9Sstevel@tonic-gate 	const char	*fmri;
2147c478bd9Sstevel@tonic-gate 	struct ht_elem	*next;
2157c478bd9Sstevel@tonic-gate };
2167c478bd9Sstevel@tonic-gate 
217048b0279SBryan Cantrill static struct ht_elem	**ht_buckets = NULL;
218048b0279SBryan Cantrill static uint_t		ht_buckets_num = 0;
2197c478bd9Sstevel@tonic-gate static uint_t		ht_num;
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate static void
222048b0279SBryan Cantrill ht_free(void)
223048b0279SBryan Cantrill {
224048b0279SBryan Cantrill 	struct ht_elem *elem, *next;
225048b0279SBryan Cantrill 	int i;
226048b0279SBryan Cantrill 
227048b0279SBryan Cantrill 	for (i = 0; i < ht_buckets_num; i++) {
228048b0279SBryan Cantrill 		for (elem = ht_buckets[i]; elem != NULL; elem = next) {
229048b0279SBryan Cantrill 			next = elem->next;
230048b0279SBryan Cantrill 			free((char *)elem->fmri);
231048b0279SBryan Cantrill 			free(elem);
232048b0279SBryan Cantrill 		}
233048b0279SBryan Cantrill 	}
234048b0279SBryan Cantrill 
235048b0279SBryan Cantrill 	free(ht_buckets);
236048b0279SBryan Cantrill 	ht_buckets_num = 0;
237048b0279SBryan Cantrill 	ht_buckets = NULL;
238048b0279SBryan Cantrill }
239048b0279SBryan Cantrill 
240048b0279SBryan Cantrill static void
241048b0279SBryan Cantrill ht_init(void)
2427c478bd9Sstevel@tonic-gate {
243048b0279SBryan Cantrill 	assert(ht_buckets == NULL);
244048b0279SBryan Cantrill 
2457c478bd9Sstevel@tonic-gate 	ht_buckets_num = 8;
2467c478bd9Sstevel@tonic-gate 	ht_buckets = safe_malloc(sizeof (*ht_buckets) * ht_buckets_num);
2477c478bd9Sstevel@tonic-gate 	bzero(ht_buckets, sizeof (*ht_buckets) * ht_buckets_num);
2487c478bd9Sstevel@tonic-gate 	ht_num = 0;
2497c478bd9Sstevel@tonic-gate }
2507c478bd9Sstevel@tonic-gate 
2517c478bd9Sstevel@tonic-gate static uint_t
2527c478bd9Sstevel@tonic-gate ht_hash_fmri(const char *fmri)
2537c478bd9Sstevel@tonic-gate {
2547c478bd9Sstevel@tonic-gate 	uint_t h = 0, g;
2557c478bd9Sstevel@tonic-gate 	const char *p, *k;
2567c478bd9Sstevel@tonic-gate 
2577c478bd9Sstevel@tonic-gate 	/* All FMRIs begin with svc:/, so skip that part. */
2587c478bd9Sstevel@tonic-gate 	assert(strncmp(fmri, "svc:/", sizeof ("svc:/") - 1) == 0);
2597c478bd9Sstevel@tonic-gate 	k = fmri + sizeof ("svc:/") - 1;
2607c478bd9Sstevel@tonic-gate 
2617c478bd9Sstevel@tonic-gate 	/*
2627c478bd9Sstevel@tonic-gate 	 * Generic hash function from uts/common/os/modhash.c.
2637c478bd9Sstevel@tonic-gate 	 */
2647c478bd9Sstevel@tonic-gate 	for (p = k; *p != '\0'; ++p) {
2657c478bd9Sstevel@tonic-gate 		h = (h << 4) + *p;
2667c478bd9Sstevel@tonic-gate 		if ((g = (h & 0xf0000000)) != 0) {
2677c478bd9Sstevel@tonic-gate 			h ^= (g >> 24);
2687c478bd9Sstevel@tonic-gate 			h ^= g;
2697c478bd9Sstevel@tonic-gate 		}
2707c478bd9Sstevel@tonic-gate 	}
2717c478bd9Sstevel@tonic-gate 
2727c478bd9Sstevel@tonic-gate 	return (h);
2737c478bd9Sstevel@tonic-gate }
2747c478bd9Sstevel@tonic-gate 
2757c478bd9Sstevel@tonic-gate static void
2767c478bd9Sstevel@tonic-gate ht_grow()
2777c478bd9Sstevel@tonic-gate {
2787c478bd9Sstevel@tonic-gate 	uint_t new_ht_buckets_num;
2797c478bd9Sstevel@tonic-gate 	struct ht_elem **new_ht_buckets;
2807c478bd9Sstevel@tonic-gate 	int i;
2817c478bd9Sstevel@tonic-gate 
2827c478bd9Sstevel@tonic-gate 	new_ht_buckets_num = ht_buckets_num * 2;
2837c478bd9Sstevel@tonic-gate 	assert(new_ht_buckets_num > ht_buckets_num);
2847c478bd9Sstevel@tonic-gate 	new_ht_buckets =
2857c478bd9Sstevel@tonic-gate 	    safe_malloc(sizeof (*new_ht_buckets) * new_ht_buckets_num);
2867c478bd9Sstevel@tonic-gate 	bzero(new_ht_buckets, sizeof (*new_ht_buckets) * new_ht_buckets_num);
2877c478bd9Sstevel@tonic-gate 
2887c478bd9Sstevel@tonic-gate 	for (i = 0; i < ht_buckets_num; ++i) {
2897c478bd9Sstevel@tonic-gate 		struct ht_elem *elem, *next;
2907c478bd9Sstevel@tonic-gate 
2917c478bd9Sstevel@tonic-gate 		for (elem = ht_buckets[i]; elem != NULL; elem = next) {
2927c478bd9Sstevel@tonic-gate 			uint_t h;
2937c478bd9Sstevel@tonic-gate 
2947c478bd9Sstevel@tonic-gate 			next = elem->next;
2957c478bd9Sstevel@tonic-gate 
2967c478bd9Sstevel@tonic-gate 			h = ht_hash_fmri(elem->fmri);
2977c478bd9Sstevel@tonic-gate 
2987c478bd9Sstevel@tonic-gate 			elem->next =
2997c478bd9Sstevel@tonic-gate 			    new_ht_buckets[h & (new_ht_buckets_num - 1)];
3007c478bd9Sstevel@tonic-gate 			new_ht_buckets[h & (new_ht_buckets_num - 1)] = elem;
3017c478bd9Sstevel@tonic-gate 		}
3027c478bd9Sstevel@tonic-gate 	}
3037c478bd9Sstevel@tonic-gate 
3047c478bd9Sstevel@tonic-gate 	free(ht_buckets);
3057c478bd9Sstevel@tonic-gate 
3067c478bd9Sstevel@tonic-gate 	ht_buckets = new_ht_buckets;
3077c478bd9Sstevel@tonic-gate 	ht_buckets_num = new_ht_buckets_num;
3087c478bd9Sstevel@tonic-gate }
3097c478bd9Sstevel@tonic-gate 
3107c478bd9Sstevel@tonic-gate /*
3117c478bd9Sstevel@tonic-gate  * Add an FMRI to the hash table.  Returns 1 if it was already there,
3127c478bd9Sstevel@tonic-gate  * 0 otherwise.
3137c478bd9Sstevel@tonic-gate  */
3147c478bd9Sstevel@tonic-gate static int
3157c478bd9Sstevel@tonic-gate ht_add(const char *fmri)
3167c478bd9Sstevel@tonic-gate {
3177c478bd9Sstevel@tonic-gate 	uint_t h;
3187c478bd9Sstevel@tonic-gate 	struct ht_elem *elem;
3197c478bd9Sstevel@tonic-gate 
3207c478bd9Sstevel@tonic-gate 	h = ht_hash_fmri(fmri);
3217c478bd9Sstevel@tonic-gate 
3227c478bd9Sstevel@tonic-gate 	elem = ht_buckets[h & (ht_buckets_num - 1)];
3237c478bd9Sstevel@tonic-gate 
3247c478bd9Sstevel@tonic-gate 	for (; elem != NULL; elem = elem->next) {
3257c478bd9Sstevel@tonic-gate 		if (strcmp(elem->fmri, fmri) == 0)
3267c478bd9Sstevel@tonic-gate 			return (1);
3277c478bd9Sstevel@tonic-gate 	}
3287c478bd9Sstevel@tonic-gate 
3297c478bd9Sstevel@tonic-gate 	/* Grow when average chain length is over 3. */
3307c478bd9Sstevel@tonic-gate 	if (ht_num > 3 * ht_buckets_num)
3317c478bd9Sstevel@tonic-gate 		ht_grow();
3327c478bd9Sstevel@tonic-gate 
3337c478bd9Sstevel@tonic-gate 	++ht_num;
3347c478bd9Sstevel@tonic-gate 
3357c478bd9Sstevel@tonic-gate 	elem = safe_malloc(sizeof (*elem));
3367c478bd9Sstevel@tonic-gate 	elem->fmri = strdup(fmri);
3377c478bd9Sstevel@tonic-gate 	elem->next = ht_buckets[h & (ht_buckets_num - 1)];
3387c478bd9Sstevel@tonic-gate 	ht_buckets[h & (ht_buckets_num - 1)] = elem;
3397c478bd9Sstevel@tonic-gate 
3407c478bd9Sstevel@tonic-gate 	return (0);
3417c478bd9Sstevel@tonic-gate }
3427c478bd9Sstevel@tonic-gate 
3437c478bd9Sstevel@tonic-gate 
3447c478bd9Sstevel@tonic-gate 
3457c478bd9Sstevel@tonic-gate /*
3467c478bd9Sstevel@tonic-gate  * Convenience libscf wrapper functions.
3477c478bd9Sstevel@tonic-gate  */
3487c478bd9Sstevel@tonic-gate 
3497c478bd9Sstevel@tonic-gate /*
3507c478bd9Sstevel@tonic-gate  * Get the single value of the named property in the given property group,
3517c478bd9Sstevel@tonic-gate  * which must have type ty, and put it in *vp.  If ty is SCF_TYPE_ASTRING, vp
3527c478bd9Sstevel@tonic-gate  * is taken to be a char **, and sz is the size of the buffer.  sz is unused
3537c478bd9Sstevel@tonic-gate  * otherwise.  Return 0 on success, -1 if the property doesn't exist, has the
3547c478bd9Sstevel@tonic-gate  * wrong type, or doesn't have a single value.  If flags has EMPTY_OK, don't
3557c478bd9Sstevel@tonic-gate  * complain if the property has no values (but return nonzero).  If flags has
3567c478bd9Sstevel@tonic-gate  * MULTI_OK and the property has multiple values, succeed with E2BIG.
3577c478bd9Sstevel@tonic-gate  */
3587c478bd9Sstevel@tonic-gate int
3597c478bd9Sstevel@tonic-gate pg_get_single_val(scf_propertygroup_t *pg, const char *propname, scf_type_t ty,
3607c478bd9Sstevel@tonic-gate     void *vp, size_t sz, uint_t flags)
3617c478bd9Sstevel@tonic-gate {
362048b0279SBryan Cantrill 	char *buf, root[MAXPATHLEN];
3637c478bd9Sstevel@tonic-gate 	size_t buf_sz;
3647c478bd9Sstevel@tonic-gate 	int ret = -1, r;
3657c478bd9Sstevel@tonic-gate 	boolean_t multi = B_FALSE;
3667c478bd9Sstevel@tonic-gate 
3677c478bd9Sstevel@tonic-gate 	assert((flags & ~(EMPTY_OK | MULTI_OK)) == 0);
3687c478bd9Sstevel@tonic-gate 
3697c478bd9Sstevel@tonic-gate 	if (scf_pg_get_property(pg, propname, g_prop) == -1) {
3707c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
3717c478bd9Sstevel@tonic-gate 			scfdie();
3727c478bd9Sstevel@tonic-gate 
3737c478bd9Sstevel@tonic-gate 		goto out;
3747c478bd9Sstevel@tonic-gate 	}
3757c478bd9Sstevel@tonic-gate 
3767c478bd9Sstevel@tonic-gate 	if (scf_property_is_type(g_prop, ty) != SCF_SUCCESS) {
3777c478bd9Sstevel@tonic-gate 		if (scf_error() == SCF_ERROR_TYPE_MISMATCH)
3787c478bd9Sstevel@tonic-gate 			goto misconfigured;
3797c478bd9Sstevel@tonic-gate 		scfdie();
3807c478bd9Sstevel@tonic-gate 	}
3817c478bd9Sstevel@tonic-gate 
3827c478bd9Sstevel@tonic-gate 	if (scf_property_get_value(g_prop, g_val) != SCF_SUCCESS) {
3837c478bd9Sstevel@tonic-gate 		switch (scf_error()) {
3847c478bd9Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
3857c478bd9Sstevel@tonic-gate 			if (flags & EMPTY_OK)
3867c478bd9Sstevel@tonic-gate 				goto out;
3877c478bd9Sstevel@tonic-gate 			goto misconfigured;
3887c478bd9Sstevel@tonic-gate 
3897c478bd9Sstevel@tonic-gate 		case SCF_ERROR_CONSTRAINT_VIOLATED:
3907c478bd9Sstevel@tonic-gate 			if (flags & MULTI_OK) {
3917c478bd9Sstevel@tonic-gate 				multi = B_TRUE;
3927c478bd9Sstevel@tonic-gate 				break;
3937c478bd9Sstevel@tonic-gate 			}
3947c478bd9Sstevel@tonic-gate 			goto misconfigured;
3957c478bd9Sstevel@tonic-gate 
3963eae19d9Swesolows 		case SCF_ERROR_PERMISSION_DENIED:
3977c478bd9Sstevel@tonic-gate 		default:
3987c478bd9Sstevel@tonic-gate 			scfdie();
3997c478bd9Sstevel@tonic-gate 		}
4007c478bd9Sstevel@tonic-gate 	}
4017c478bd9Sstevel@tonic-gate 
4027c478bd9Sstevel@tonic-gate 	switch (ty) {
4037c478bd9Sstevel@tonic-gate 	case SCF_TYPE_ASTRING:
4047c478bd9Sstevel@tonic-gate 		r = scf_value_get_astring(g_val, vp, sz) > 0 ? SCF_SUCCESS : -1;
4057c478bd9Sstevel@tonic-gate 		break;
4067c478bd9Sstevel@tonic-gate 
4077c478bd9Sstevel@tonic-gate 	case SCF_TYPE_BOOLEAN:
4087c478bd9Sstevel@tonic-gate 		r = scf_value_get_boolean(g_val, (uint8_t *)vp);
4097c478bd9Sstevel@tonic-gate 		break;
4107c478bd9Sstevel@tonic-gate 
4117c478bd9Sstevel@tonic-gate 	case SCF_TYPE_COUNT:
4127c478bd9Sstevel@tonic-gate 		r = scf_value_get_count(g_val, (uint64_t *)vp);
4137c478bd9Sstevel@tonic-gate 		break;
4147c478bd9Sstevel@tonic-gate 
4157c478bd9Sstevel@tonic-gate 	case SCF_TYPE_INTEGER:
4167c478bd9Sstevel@tonic-gate 		r = scf_value_get_integer(g_val, (int64_t *)vp);
4177c478bd9Sstevel@tonic-gate 		break;
4187c478bd9Sstevel@tonic-gate 
4197c478bd9Sstevel@tonic-gate 	case SCF_TYPE_TIME: {
4207c478bd9Sstevel@tonic-gate 		int64_t sec;
4217c478bd9Sstevel@tonic-gate 		int32_t ns;
4227c478bd9Sstevel@tonic-gate 		r = scf_value_get_time(g_val, &sec, &ns);
4237c478bd9Sstevel@tonic-gate 		((struct timeval *)vp)->tv_sec = sec;
4247c478bd9Sstevel@tonic-gate 		((struct timeval *)vp)->tv_usec = ns / 1000;
4257c478bd9Sstevel@tonic-gate 		break;
4267c478bd9Sstevel@tonic-gate 	}
4277c478bd9Sstevel@tonic-gate 
4287c478bd9Sstevel@tonic-gate 	case SCF_TYPE_USTRING:
4297c478bd9Sstevel@tonic-gate 		r = scf_value_get_ustring(g_val, vp, sz) > 0 ? SCF_SUCCESS : -1;
4307c478bd9Sstevel@tonic-gate 		break;
4317c478bd9Sstevel@tonic-gate 
4327c478bd9Sstevel@tonic-gate 	default:
4337c478bd9Sstevel@tonic-gate #ifndef NDEBUG
4347c478bd9Sstevel@tonic-gate 		uu_warn("%s:%d: Unknown type %d.\n", __FILE__, __LINE__, ty);
4357c478bd9Sstevel@tonic-gate #endif
4367c478bd9Sstevel@tonic-gate 		abort();
4377c478bd9Sstevel@tonic-gate 	}
4387c478bd9Sstevel@tonic-gate 	if (r != SCF_SUCCESS)
4397c478bd9Sstevel@tonic-gate 		scfdie();
4407c478bd9Sstevel@tonic-gate 
4417c478bd9Sstevel@tonic-gate 	ret = multi ? E2BIG : 0;
4427c478bd9Sstevel@tonic-gate 	goto out;
4437c478bd9Sstevel@tonic-gate 
4447c478bd9Sstevel@tonic-gate misconfigured:
4457c478bd9Sstevel@tonic-gate 	buf_sz = max_scf_fmri_length + 1;
4467c478bd9Sstevel@tonic-gate 	buf = safe_malloc(buf_sz);
4477c478bd9Sstevel@tonic-gate 	if (scf_property_to_fmri(g_prop, buf, buf_sz) == -1)
4487c478bd9Sstevel@tonic-gate 		scfdie();
4497c478bd9Sstevel@tonic-gate 
4507c478bd9Sstevel@tonic-gate 	uu_warn(gettext("Property \"%s\" is misconfigured.\n"), buf);
4517c478bd9Sstevel@tonic-gate 
4527c478bd9Sstevel@tonic-gate 	free(buf);
4537c478bd9Sstevel@tonic-gate 
4547c478bd9Sstevel@tonic-gate out:
455048b0279SBryan Cantrill 	if (ret != 0 || g_zonename == NULL ||
456048b0279SBryan Cantrill 	    (strcmp(propname, SCF_PROPERTY_LOGFILE) != 0 &&
457048b0279SBryan Cantrill 	    strcmp(propname, SCF_PROPERTY_ALT_LOGFILE) != 0))
458048b0279SBryan Cantrill 		return (ret);
459048b0279SBryan Cantrill 
460048b0279SBryan Cantrill 	/*
461048b0279SBryan Cantrill 	 * If we're here, we have a log file and we have specified a zone.
462048b0279SBryan Cantrill 	 * As a convenience, we're going to prepend the zone path to the
463048b0279SBryan Cantrill 	 * name of the log file.
464048b0279SBryan Cantrill 	 */
465048b0279SBryan Cantrill 	root[0] = '\0';
466048b0279SBryan Cantrill 	(void) zone_get_rootpath(g_zonename, root, sizeof (root));
467048b0279SBryan Cantrill 	(void) strlcat(root, vp, sizeof (root));
468048b0279SBryan Cantrill 	(void) snprintf(vp, sz, "%s", root);
469048b0279SBryan Cantrill 
4707c478bd9Sstevel@tonic-gate 	return (ret);
4717c478bd9Sstevel@tonic-gate }
4727c478bd9Sstevel@tonic-gate 
4737c478bd9Sstevel@tonic-gate static scf_snapshot_t *
4747c478bd9Sstevel@tonic-gate get_running_snapshot(scf_instance_t *inst)
4757c478bd9Sstevel@tonic-gate {
4767c478bd9Sstevel@tonic-gate 	scf_snapshot_t *snap;
4777c478bd9Sstevel@tonic-gate 
4787c478bd9Sstevel@tonic-gate 	snap = scf_snapshot_create(h);
4797c478bd9Sstevel@tonic-gate 	if (snap == NULL)
4807c478bd9Sstevel@tonic-gate 		scfdie();
4817c478bd9Sstevel@tonic-gate 
4827c478bd9Sstevel@tonic-gate 	if (scf_instance_get_snapshot(inst, "running", snap) == 0)
4837c478bd9Sstevel@tonic-gate 		return (snap);
4847c478bd9Sstevel@tonic-gate 
4857c478bd9Sstevel@tonic-gate 	if (scf_error() != SCF_ERROR_NOT_FOUND)
4867c478bd9Sstevel@tonic-gate 		scfdie();
4877c478bd9Sstevel@tonic-gate 
4887c478bd9Sstevel@tonic-gate 	scf_snapshot_destroy(snap);
4897c478bd9Sstevel@tonic-gate 	return (NULL);
4907c478bd9Sstevel@tonic-gate }
4917c478bd9Sstevel@tonic-gate 
4927c478bd9Sstevel@tonic-gate /*
4937c478bd9Sstevel@tonic-gate  * As pg_get_single_val(), except look the property group up in an
4947c478bd9Sstevel@tonic-gate  * instance.  If "use_running" is set, and the running snapshot exists,
4957c478bd9Sstevel@tonic-gate  * do a composed lookup there.  Otherwise, do an (optionally composed)
4967c478bd9Sstevel@tonic-gate  * lookup on the current values.  Note that lookups using snapshots are
4977c478bd9Sstevel@tonic-gate  * always composed.
4987c478bd9Sstevel@tonic-gate  */
4997c478bd9Sstevel@tonic-gate int
5007c478bd9Sstevel@tonic-gate inst_get_single_val(scf_instance_t *inst, const char *pgname,
5017c478bd9Sstevel@tonic-gate     const char *propname, scf_type_t ty, void *vp, size_t sz, uint_t flags,
5027c478bd9Sstevel@tonic-gate     int use_running, int composed)
5037c478bd9Sstevel@tonic-gate {
5047c478bd9Sstevel@tonic-gate 	scf_snapshot_t *snap = NULL;
5057c478bd9Sstevel@tonic-gate 	int r;
5067c478bd9Sstevel@tonic-gate 
5077c478bd9Sstevel@tonic-gate 	if (use_running)
5087c478bd9Sstevel@tonic-gate 		snap = get_running_snapshot(inst);
5097c478bd9Sstevel@tonic-gate 	if (composed || use_running)
5107c478bd9Sstevel@tonic-gate 		r = scf_instance_get_pg_composed(inst, snap, pgname, g_pg);
5117c478bd9Sstevel@tonic-gate 	else
5127c478bd9Sstevel@tonic-gate 		r = scf_instance_get_pg(inst, pgname, g_pg);
5137c478bd9Sstevel@tonic-gate 	if (snap)
5147c478bd9Sstevel@tonic-gate 		scf_snapshot_destroy(snap);
5157c478bd9Sstevel@tonic-gate 	if (r == -1)
5167c478bd9Sstevel@tonic-gate 		return (-1);
5177c478bd9Sstevel@tonic-gate 
5187c478bd9Sstevel@tonic-gate 	r = pg_get_single_val(g_pg, propname, ty, vp, sz, flags);
5197c478bd9Sstevel@tonic-gate 
5207c478bd9Sstevel@tonic-gate 	return (r);
5217c478bd9Sstevel@tonic-gate }
5227c478bd9Sstevel@tonic-gate 
5237c478bd9Sstevel@tonic-gate static int
5247c478bd9Sstevel@tonic-gate instance_enabled(scf_instance_t *inst, boolean_t temp)
5257c478bd9Sstevel@tonic-gate {
5267c478bd9Sstevel@tonic-gate 	uint8_t b;
5277c478bd9Sstevel@tonic-gate 
5287c478bd9Sstevel@tonic-gate 	if (inst_get_single_val(inst,
5297c478bd9Sstevel@tonic-gate 	    temp ? SCF_PG_GENERAL_OVR : SCF_PG_GENERAL, SCF_PROPERTY_ENABLED,
5307c478bd9Sstevel@tonic-gate 	    SCF_TYPE_BOOLEAN, &b, 0, 0, 0, 0) != 0)
5317c478bd9Sstevel@tonic-gate 		return (-1);
5327c478bd9Sstevel@tonic-gate 
5337c478bd9Sstevel@tonic-gate 	return (b ? 1 : 0);
5347c478bd9Sstevel@tonic-gate }
5357c478bd9Sstevel@tonic-gate 
5367c478bd9Sstevel@tonic-gate /*
5377c478bd9Sstevel@tonic-gate  * Get a string property from the restarter property group of the given
5387c478bd9Sstevel@tonic-gate  * instance.  Return an empty string on normal problems.
5397c478bd9Sstevel@tonic-gate  */
5407c478bd9Sstevel@tonic-gate static void
5417c478bd9Sstevel@tonic-gate get_restarter_string_prop(scf_instance_t *inst, const char *pname,
5427c478bd9Sstevel@tonic-gate     char *buf, size_t buf_sz)
5437c478bd9Sstevel@tonic-gate {
5447c478bd9Sstevel@tonic-gate 	if (inst_get_single_val(inst, SCF_PG_RESTARTER, pname,
5457c478bd9Sstevel@tonic-gate 	    SCF_TYPE_ASTRING, buf, buf_sz, 0, 0, 1) != 0)
5467c478bd9Sstevel@tonic-gate 		*buf = '\0';
5477c478bd9Sstevel@tonic-gate }
5487c478bd9Sstevel@tonic-gate 
5497c478bd9Sstevel@tonic-gate static int
5507c478bd9Sstevel@tonic-gate get_restarter_time_prop(scf_instance_t *inst, const char *pname,
5517c478bd9Sstevel@tonic-gate     struct timeval *tvp, int ok_if_empty)
5527c478bd9Sstevel@tonic-gate {
5537c478bd9Sstevel@tonic-gate 	int r;
5547c478bd9Sstevel@tonic-gate 
5557c478bd9Sstevel@tonic-gate 	r = inst_get_single_val(inst, SCF_PG_RESTARTER, pname, SCF_TYPE_TIME,
5567c478bd9Sstevel@tonic-gate 	    tvp, NULL, ok_if_empty ? EMPTY_OK : 0, 0, 1);
5577c478bd9Sstevel@tonic-gate 
5587c478bd9Sstevel@tonic-gate 	return (r == 0 ? 0 : -1);
5597c478bd9Sstevel@tonic-gate }
5607c478bd9Sstevel@tonic-gate 
5617c478bd9Sstevel@tonic-gate static int
5627c478bd9Sstevel@tonic-gate get_restarter_count_prop(scf_instance_t *inst, const char *pname, uint64_t *cp,
5637c478bd9Sstevel@tonic-gate     uint_t flags)
5647c478bd9Sstevel@tonic-gate {
5657c478bd9Sstevel@tonic-gate 	return (inst_get_single_val(inst, SCF_PG_RESTARTER, pname,
5667c478bd9Sstevel@tonic-gate 	    SCF_TYPE_COUNT, cp, 0, flags, 0, 1));
5677c478bd9Sstevel@tonic-gate }
5687c478bd9Sstevel@tonic-gate 
5697c478bd9Sstevel@tonic-gate 
5707c478bd9Sstevel@tonic-gate /*
5717c478bd9Sstevel@tonic-gate  * Generic functions
5727c478bd9Sstevel@tonic-gate  */
5737c478bd9Sstevel@tonic-gate 
57494501b61Sskamm /*
57594501b61Sskamm  * Return an array of pids associated with the given contract id.
57694501b61Sskamm  * Returned pids are added to the end of the pidsp array.
57794501b61Sskamm  */
57894501b61Sskamm static void
57994501b61Sskamm ctid_to_pids(uint64_t c, pid_t **pidsp, uint_t *np)
58094501b61Sskamm {
58194501b61Sskamm 	ct_stathdl_t ctst;
58294501b61Sskamm 	uint_t m;
58394501b61Sskamm 	int fd;
58494501b61Sskamm 	int r, err;
58594501b61Sskamm 	pid_t *pids;
58694501b61Sskamm 
58794501b61Sskamm 	fd = contract_open(c, NULL, "status", O_RDONLY);
58894501b61Sskamm 	if (fd < 0)
58994501b61Sskamm 		return;
59094501b61Sskamm 
59194501b61Sskamm 	err = ct_status_read(fd, CTD_ALL, &ctst);
59294501b61Sskamm 	if (err != 0) {
59394501b61Sskamm 		uu_warn(gettext("Could not read status of contract "
59494501b61Sskamm 		    "%ld: %s.\n"), c, strerror(err));
59594501b61Sskamm 		(void) close(fd);
59694501b61Sskamm 		return;
59794501b61Sskamm 	}
59894501b61Sskamm 
59994501b61Sskamm 	(void) close(fd);
60094501b61Sskamm 
60194501b61Sskamm 	r = ct_pr_status_get_members(ctst, &pids, &m);
60294501b61Sskamm 	assert(r == 0);
60394501b61Sskamm 
60494501b61Sskamm 	if (m == 0) {
60594501b61Sskamm 		ct_status_free(ctst);
60694501b61Sskamm 		return;
60794501b61Sskamm 	}
60894501b61Sskamm 
60994501b61Sskamm 	*pidsp = realloc(*pidsp, (*np + m) * sizeof (*pidsp));
61094501b61Sskamm 	if (*pidsp == NULL)
61194501b61Sskamm 		uu_die(gettext("Out of memory"));
61294501b61Sskamm 
61394501b61Sskamm 	bcopy(pids, *pidsp + *np, m * sizeof (*pids));
61494501b61Sskamm 	*np += m;
61594501b61Sskamm 
61694501b61Sskamm 	ct_status_free(ctst);
61794501b61Sskamm }
61894501b61Sskamm 
6197c478bd9Sstevel@tonic-gate static int
6207c478bd9Sstevel@tonic-gate propvals_to_pids(scf_propertygroup_t *pg, const char *pname, pid_t **pidsp,
6217c478bd9Sstevel@tonic-gate     uint_t *np, scf_property_t *prop, scf_value_t *val, scf_iter_t *iter)
6227c478bd9Sstevel@tonic-gate {
6237c478bd9Sstevel@tonic-gate 	scf_type_t ty;
6247c478bd9Sstevel@tonic-gate 	uint64_t c;
62594501b61Sskamm 	int r;
6267c478bd9Sstevel@tonic-gate 
6277c478bd9Sstevel@tonic-gate 	if (scf_pg_get_property(pg, pname, prop) != 0) {
6287c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
6297c478bd9Sstevel@tonic-gate 			scfdie();
6307c478bd9Sstevel@tonic-gate 
6317c478bd9Sstevel@tonic-gate 		return (ENOENT);
6327c478bd9Sstevel@tonic-gate 	}
6337c478bd9Sstevel@tonic-gate 
6347c478bd9Sstevel@tonic-gate 	if (scf_property_type(prop, &ty) != 0)
6357c478bd9Sstevel@tonic-gate 		scfdie();
6367c478bd9Sstevel@tonic-gate 
6377c478bd9Sstevel@tonic-gate 	if (ty != SCF_TYPE_COUNT)
6387c478bd9Sstevel@tonic-gate 		return (EINVAL);
6397c478bd9Sstevel@tonic-gate 
6407c478bd9Sstevel@tonic-gate 	if (scf_iter_property_values(iter, prop) != 0)
6417c478bd9Sstevel@tonic-gate 		scfdie();
6427c478bd9Sstevel@tonic-gate 
6437c478bd9Sstevel@tonic-gate 	for (;;) {
6447c478bd9Sstevel@tonic-gate 		r = scf_iter_next_value(iter, val);
6457c478bd9Sstevel@tonic-gate 		if (r == -1)
6467c478bd9Sstevel@tonic-gate 			scfdie();
6477c478bd9Sstevel@tonic-gate 		if (r == 0)
6487c478bd9Sstevel@tonic-gate 			break;
6497c478bd9Sstevel@tonic-gate 
6507c478bd9Sstevel@tonic-gate 		if (scf_value_get_count(val, &c) != 0)
6517c478bd9Sstevel@tonic-gate 			scfdie();
6527c478bd9Sstevel@tonic-gate 
65394501b61Sskamm 		ctid_to_pids(c, pidsp, np);
65494501b61Sskamm 	}
6557c478bd9Sstevel@tonic-gate 
65694501b61Sskamm 	return (0);
65794501b61Sskamm }
6587c478bd9Sstevel@tonic-gate 
65994501b61Sskamm /*
66094501b61Sskamm  * Check if instance has general/restarter property that matches
66194501b61Sskamm  * given string.  Restarter string must be in canonified form.
66294501b61Sskamm  * Returns 0 for success; -1 otherwise.
66394501b61Sskamm  */
66494501b61Sskamm static int
66594501b61Sskamm check_for_restarter(scf_instance_t *inst, const char *restarter)
66694501b61Sskamm {
66794501b61Sskamm 	char	*fmri_buf;
66894501b61Sskamm 	char	*fmri_buf_canonified = NULL;
66994501b61Sskamm 	int	ret = -1;
6707c478bd9Sstevel@tonic-gate 
67194501b61Sskamm 	if (inst == NULL)
67294501b61Sskamm 		return (-1);
6737c478bd9Sstevel@tonic-gate 
67494501b61Sskamm 	/* Get restarter */
67594501b61Sskamm 	fmri_buf = safe_malloc(max_scf_fmri_length + 1);
67694501b61Sskamm 	if (inst_get_single_val(inst, SCF_PG_GENERAL,
67794501b61Sskamm 	    SCF_PROPERTY_RESTARTER, SCF_TYPE_ASTRING, fmri_buf,
67894501b61Sskamm 	    max_scf_fmri_length + 1, 0, 0, 1) != 0)
67994501b61Sskamm 		goto out;
68094501b61Sskamm 
68194501b61Sskamm 	fmri_buf_canonified = safe_malloc(max_scf_fmri_length + 1);
68294501b61Sskamm 	if (scf_canonify_fmri(fmri_buf, fmri_buf_canonified,
68394501b61Sskamm 	    (max_scf_fmri_length + 1)) < 0)
68494501b61Sskamm 		goto out;
68594501b61Sskamm 
68694501b61Sskamm 	if (strcmp(fmri_buf, restarter) == 0)
68794501b61Sskamm 		ret = 0;
68894501b61Sskamm 
68994501b61Sskamm out:
69094501b61Sskamm 	free(fmri_buf);
69194501b61Sskamm 	if (fmri_buf_canonified)
69294501b61Sskamm 		free(fmri_buf_canonified);
69394501b61Sskamm 	return (ret);
69494501b61Sskamm }
69594501b61Sskamm 
69694501b61Sskamm /*
69794501b61Sskamm  * Common code that is used by ctids_by_restarter and pids_by_restarter.
69894501b61Sskamm  * Checks for a common restarter and if one is available, it generates
69994501b61Sskamm  * the appropriate filename using wip->fmri and stores that in the
70094501b61Sskamm  * global genfmri_filename.
70194501b61Sskamm  *
70294501b61Sskamm  * Restarters currently supported are: svc:/network/inetd:default
70394501b61Sskamm  * If a restarter specific action is available, then restarter_spec
70494501b61Sskamm  * is set to 1.  If a restarter specific action is not available, then
70594501b61Sskamm  * restarter_spec is set to 0 and a -1 is returned.
70694501b61Sskamm  *
70794501b61Sskamm  * Returns:
70894501b61Sskamm  * 0 if success: restarter specific action found and filename generated
70994501b61Sskamm  * -1 if restarter specific action not found,
71094501b61Sskamm  *    if restarter specific action found but an error was encountered
71194501b61Sskamm  *    during the generation of the wip->fmri based filename
71294501b61Sskamm  */
71394501b61Sskamm static int
71494501b61Sskamm common_by_restarter(scf_instance_t *inst, const char *fmri,
71594501b61Sskamm     int *restarter_specp)
71694501b61Sskamm {
71794501b61Sskamm 	int		ret = -1;
71894501b61Sskamm 	int		r;
71994501b61Sskamm 
72094501b61Sskamm 	/* Check for inetd specific restarter */
72194501b61Sskamm 	if (check_for_restarter(inst, "svc:/network/inetd:default") != 0) {
72294501b61Sskamm 		*restarter_specp = 0;
72394501b61Sskamm 		return (ret);
72494501b61Sskamm 	}
72594501b61Sskamm 
72694501b61Sskamm 	*restarter_specp = 1;
72794501b61Sskamm 
72894501b61Sskamm 	/* Get the ctid filename associated with this instance */
72994501b61Sskamm 	r = gen_filenms_from_fmri(fmri, "ctid", genfmri_filename, NULL);
73094501b61Sskamm 
73194501b61Sskamm 	switch (r) {
73294501b61Sskamm 	case 0:
73394501b61Sskamm 		break;
73494501b61Sskamm 
73594501b61Sskamm 	case -1:
73694501b61Sskamm 		/*
73794501b61Sskamm 		 * Unable to get filename from fmri.  Print warning
73894501b61Sskamm 		 * and return failure with no ctids.
73994501b61Sskamm 		 */
74094501b61Sskamm 		uu_warn(gettext("Unable to read contract ids for %s -- "
74194501b61Sskamm 		    "FMRI is too long\n"), fmri);
74294501b61Sskamm 		return (ret);
74394501b61Sskamm 
74494501b61Sskamm 	case -2:
74594501b61Sskamm 		/*
74694501b61Sskamm 		 * The directory didn't exist, so no contracts.
74794501b61Sskamm 		 * Return failure with no ctids.
74894501b61Sskamm 		 */
74994501b61Sskamm 		return (ret);
75094501b61Sskamm 
75194501b61Sskamm 	default:
75294501b61Sskamm 		uu_warn(gettext("%s:%d: gen_filenms_from_fmri() failed with "
75394501b61Sskamm 		    "unknown error %d\n"), __FILE__, __LINE__, r);
75494501b61Sskamm 		abort();
75594501b61Sskamm 	}
75694501b61Sskamm 
75794501b61Sskamm 	return (0);
75894501b61Sskamm 
75994501b61Sskamm }
76094501b61Sskamm 
76194501b61Sskamm /*
76294501b61Sskamm  * Get or print a contract id using a restarter specific action.
76394501b61Sskamm  *
76494501b61Sskamm  * If the print_flag is not set, this routine gets the single contract
76594501b61Sskamm  * id associated with this instance.
76694501b61Sskamm  * If the print flag is set, then print each contract id found.
76794501b61Sskamm  *
76894501b61Sskamm  * Returns:
76994501b61Sskamm  * 0 if success: restarter specific action found and used with no error
77094501b61Sskamm  * -1 if restarter specific action not found
77194501b61Sskamm  * -1 if restarter specific action found, but there was a failure
77294501b61Sskamm  * -1 if print flag is not set and no contract id is found or multiple
77394501b61Sskamm  *    contract ids were found
77494501b61Sskamm  * E2BIG if print flag is not set, MULTI_OK bit in flag is set and multiple
77594501b61Sskamm  *    contract ids were found
77694501b61Sskamm  */
77794501b61Sskamm static int
77894501b61Sskamm ctids_by_restarter(scf_walkinfo_t *wip, uint64_t *cp, int print_flag,
77994501b61Sskamm     uint_t flags, int *restarter_specp, void (*callback_header)(),
78094501b61Sskamm     void (*callback_ctid)(uint64_t))
78194501b61Sskamm {
78294501b61Sskamm 	FILE		*fp;
78394501b61Sskamm 	int		ret = -1;
78494501b61Sskamm 	int		fscanf_ret;
78594501b61Sskamm 	uint64_t	cp2;
78694501b61Sskamm 	int		rest_ret;
78794501b61Sskamm 
78894501b61Sskamm 	/* Check if callbacks are needed and were passed in */
78994501b61Sskamm 	if (print_flag) {
79094501b61Sskamm 		if ((callback_header == NULL) || (callback_ctid == NULL))
79194501b61Sskamm 			return (ret);
79294501b61Sskamm 	}
79394501b61Sskamm 
79494501b61Sskamm 	/* Check for restarter specific action and generation of filename */
79594501b61Sskamm 	rest_ret = common_by_restarter(wip->inst, wip->fmri, restarter_specp);
79694501b61Sskamm 	if (rest_ret != 0)
79794501b61Sskamm 		return (rest_ret);
79894501b61Sskamm 
79994501b61Sskamm 	/*
80094501b61Sskamm 	 * If fopen fails, then ctid file hasn't been created yet.
80194501b61Sskamm 	 * If print_flag is set, this is ok; otherwise fail.
80294501b61Sskamm 	 */
80394501b61Sskamm 	if ((fp = fopen(genfmri_filename, "r")) == NULL) {
80494501b61Sskamm 		if (print_flag)
80594501b61Sskamm 			return (0);
80694501b61Sskamm 		goto out;
80794501b61Sskamm 	}
80894501b61Sskamm 
80994501b61Sskamm 	if (print_flag) {
81094501b61Sskamm 		/*
81194501b61Sskamm 		 * Print all contract ids that are found.
81294501b61Sskamm 		 * First callback to print ctid header.
81394501b61Sskamm 		 */
81494501b61Sskamm 		callback_header();
81594501b61Sskamm 
81694501b61Sskamm 		/* fscanf may not set errno, so be sure to clear it first */
81794501b61Sskamm 		errno = 0;
81894501b61Sskamm 		while ((fscanf_ret = fscanf(fp, "%llu", cp)) == 1) {
81994501b61Sskamm 			/* Callback to print contract id */
82094501b61Sskamm 			callback_ctid(*cp);
82194501b61Sskamm 			errno = 0;
82294501b61Sskamm 		}
82394501b61Sskamm 		/* EOF is not a failure when no errno. */
82494501b61Sskamm 		if ((fscanf_ret != EOF) || (errno != 0)) {
82594501b61Sskamm 			uu_die(gettext("Unable to read ctid file for %s"),
82694501b61Sskamm 			    wip->fmri);
82794501b61Sskamm 		}
82894501b61Sskamm 		(void) putchar('\n');
82994501b61Sskamm 		ret = 0;
83094501b61Sskamm 	} else {
83194501b61Sskamm 		/* Must find 1 ctid or fail */
83294501b61Sskamm 		if (fscanf(fp, "%llu", cp) == 1) {
83394501b61Sskamm 			/* If 2nd ctid found - fail */
83494501b61Sskamm 			if (fscanf(fp, "%llu", &cp2) == 1) {
83594501b61Sskamm 				if (flags & MULTI_OK)
83694501b61Sskamm 					ret = E2BIG;
83794501b61Sskamm 			} else {
83894501b61Sskamm 				/* Success - found only 1 ctid */
83994501b61Sskamm 				ret = 0;
84094501b61Sskamm 			}
8417c478bd9Sstevel@tonic-gate 		}
84294501b61Sskamm 	}
84394501b61Sskamm 	(void) fclose(fp);
8447c478bd9Sstevel@tonic-gate 
84594501b61Sskamm out:
84694501b61Sskamm 	return (ret);
84794501b61Sskamm }
84894501b61Sskamm 
84994501b61Sskamm /*
85094501b61Sskamm  * Get the process ids associated with an instance using a restarter
85194501b61Sskamm  * specific action.
85294501b61Sskamm  *
85394501b61Sskamm  * Returns:
85494501b61Sskamm  *	0 if success: restarter specific action found and used with no error
85594501b61Sskamm  *	-1 restarter specific action not found or if failure
85694501b61Sskamm  */
85794501b61Sskamm static int
85894501b61Sskamm pids_by_restarter(scf_instance_t *inst, const char *fmri,
85994501b61Sskamm     pid_t **pids, uint_t *np, int *restarter_specp)
86094501b61Sskamm {
86194501b61Sskamm 	uint64_t	c;
86294501b61Sskamm 	FILE		*fp;
86394501b61Sskamm 	int		fscanf_ret;
86494501b61Sskamm 	int		rest_ret;
8657c478bd9Sstevel@tonic-gate 
86694501b61Sskamm 	/* Check for restarter specific action and generation of filename */
86794501b61Sskamm 	rest_ret = common_by_restarter(inst, fmri, restarter_specp);
86894501b61Sskamm 	if (rest_ret != 0)
86994501b61Sskamm 		return (rest_ret);
8707c478bd9Sstevel@tonic-gate 
87194501b61Sskamm 	/*
87294501b61Sskamm 	 * If fopen fails with ENOENT then the ctid file hasn't been
87394501b61Sskamm 	 * created yet so return success.
87494501b61Sskamm 	 * For all other errors - fail with uu_die.
87594501b61Sskamm 	 */
87694501b61Sskamm 	if ((fp = fopen(genfmri_filename, "r")) == NULL) {
87794501b61Sskamm 		if (errno == ENOENT)
87894501b61Sskamm 			return (0);
87994501b61Sskamm 		uu_die(gettext("Unable to open ctid file for %s"), fmri);
88094501b61Sskamm 	}
88194501b61Sskamm 
88294501b61Sskamm 	/* fscanf may not set errno, so be sure to clear it first */
88394501b61Sskamm 	errno = 0;
88494501b61Sskamm 	while ((fscanf_ret = fscanf(fp, "%llu", &c)) == 1) {
88594501b61Sskamm 		if (c == 0) {
88694501b61Sskamm 			(void) fclose(fp);
88794501b61Sskamm 			uu_die(gettext("ctid file for %s has corrupt data"),
88894501b61Sskamm 			    fmri);
88994501b61Sskamm 		}
89094501b61Sskamm 		ctid_to_pids(c, pids, np);
89194501b61Sskamm 		errno = 0;
89294501b61Sskamm 	}
89394501b61Sskamm 	/* EOF is not a failure when no errno. */
89494501b61Sskamm 	if ((fscanf_ret != EOF) || (errno != 0)) {
89594501b61Sskamm 		uu_die(gettext("Unable to read ctid file for %s"), fmri);
8967c478bd9Sstevel@tonic-gate 	}
8977c478bd9Sstevel@tonic-gate 
89894501b61Sskamm 	(void) fclose(fp);
8997c478bd9Sstevel@tonic-gate 	return (0);
9007c478bd9Sstevel@tonic-gate }
9017c478bd9Sstevel@tonic-gate 
9027c478bd9Sstevel@tonic-gate static int
90394501b61Sskamm instance_processes(scf_instance_t *inst, const char *fmri,
90494501b61Sskamm     pid_t **pids, uint_t *np)
9057c478bd9Sstevel@tonic-gate {
9067c478bd9Sstevel@tonic-gate 	scf_iter_t *iter;
9077c478bd9Sstevel@tonic-gate 	int ret;
90894501b61Sskamm 	int restarter_spec;
90994501b61Sskamm 
91094501b61Sskamm 	/* Use the restarter specific get pids routine, if available. */
91194501b61Sskamm 	ret = pids_by_restarter(inst, fmri, pids, np, &restarter_spec);
91294501b61Sskamm 	if (restarter_spec == 1)
91394501b61Sskamm 		return (ret);
9147c478bd9Sstevel@tonic-gate 
9157c478bd9Sstevel@tonic-gate 	if ((iter = scf_iter_create(h)) == NULL)
9167c478bd9Sstevel@tonic-gate 		scfdie();
9177c478bd9Sstevel@tonic-gate 
9187c478bd9Sstevel@tonic-gate 	if (scf_instance_get_pg(inst, SCF_PG_RESTARTER, g_pg) == 0) {
9197c478bd9Sstevel@tonic-gate 		*pids = NULL;
9207c478bd9Sstevel@tonic-gate 		*np = 0;
9217c478bd9Sstevel@tonic-gate 
9227c478bd9Sstevel@tonic-gate 		(void) propvals_to_pids(g_pg, scf_property_contract, pids, np,
9237c478bd9Sstevel@tonic-gate 		    g_prop, g_val, iter);
9247c478bd9Sstevel@tonic-gate 
9257c478bd9Sstevel@tonic-gate 		(void) propvals_to_pids(g_pg, SCF_PROPERTY_TRANSIENT_CONTRACT,
9267c478bd9Sstevel@tonic-gate 		    pids, np, g_prop, g_val, iter);
9277c478bd9Sstevel@tonic-gate 
9287c478bd9Sstevel@tonic-gate 		ret = 0;
9297c478bd9Sstevel@tonic-gate 	} else {
9307c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
9317c478bd9Sstevel@tonic-gate 			scfdie();
9327c478bd9Sstevel@tonic-gate 
9337c478bd9Sstevel@tonic-gate 		ret = -1;
9347c478bd9Sstevel@tonic-gate 	}
9357c478bd9Sstevel@tonic-gate 
9367c478bd9Sstevel@tonic-gate 	scf_iter_destroy(iter);
9377c478bd9Sstevel@tonic-gate 
9387c478bd9Sstevel@tonic-gate 	return (ret);
9397c478bd9Sstevel@tonic-gate }
9407c478bd9Sstevel@tonic-gate 
9417c478bd9Sstevel@tonic-gate static int
9427c478bd9Sstevel@tonic-gate get_psinfo(pid_t pid, psinfo_t *psip)
9437c478bd9Sstevel@tonic-gate {
9447c478bd9Sstevel@tonic-gate 	char path[100];
9457c478bd9Sstevel@tonic-gate 	int fd;
9467c478bd9Sstevel@tonic-gate 
9477c478bd9Sstevel@tonic-gate 	(void) snprintf(path, sizeof (path), "/proc/%lu/psinfo", pid);
9487c478bd9Sstevel@tonic-gate 
9497c478bd9Sstevel@tonic-gate 	fd = open64(path, O_RDONLY);
9507c478bd9Sstevel@tonic-gate 	if (fd < 0)
9517c478bd9Sstevel@tonic-gate 		return (-1);
9527c478bd9Sstevel@tonic-gate 
9537c478bd9Sstevel@tonic-gate 	if (read(fd, psip, sizeof (*psip)) < 0)
9547c478bd9Sstevel@tonic-gate 		uu_die(gettext("Could not read info for process %lu"), pid);
9557c478bd9Sstevel@tonic-gate 
9567c478bd9Sstevel@tonic-gate 	(void) close(fd);
9577c478bd9Sstevel@tonic-gate 
9587c478bd9Sstevel@tonic-gate 	return (0);
9597c478bd9Sstevel@tonic-gate }
9607c478bd9Sstevel@tonic-gate 
9617c478bd9Sstevel@tonic-gate 
9627c478bd9Sstevel@tonic-gate 
9637c478bd9Sstevel@tonic-gate /*
9647c478bd9Sstevel@tonic-gate  * Column sprint and sortkey functions
9657c478bd9Sstevel@tonic-gate  */
9667c478bd9Sstevel@tonic-gate 
9677c478bd9Sstevel@tonic-gate struct column {
9687c478bd9Sstevel@tonic-gate 	const char *name;
9697c478bd9Sstevel@tonic-gate 	int width;
9707c478bd9Sstevel@tonic-gate 
9717c478bd9Sstevel@tonic-gate 	/*
9727c478bd9Sstevel@tonic-gate 	 * This function should write the value for the column into buf, and
9737c478bd9Sstevel@tonic-gate 	 * grow or allocate buf accordingly.  It should always write at least
9747c478bd9Sstevel@tonic-gate 	 * width bytes, blanking unused bytes with spaces.  If the field is
9757c478bd9Sstevel@tonic-gate 	 * greater than the column width we allow it to overlap other columns.
9767c478bd9Sstevel@tonic-gate 	 * In particular, it shouldn't write any null bytes.  (Though an extra
9777c478bd9Sstevel@tonic-gate 	 * null byte past the end is currently tolerated.)  If the property
9787c478bd9Sstevel@tonic-gate 	 * group is non-NULL, then we are dealing with a legacy service.
9797c478bd9Sstevel@tonic-gate 	 */
9807c478bd9Sstevel@tonic-gate 	void (*sprint)(char **, scf_walkinfo_t *);
9817c478bd9Sstevel@tonic-gate 
9827c478bd9Sstevel@tonic-gate 	int sortkey_width;
9837c478bd9Sstevel@tonic-gate 
9847c478bd9Sstevel@tonic-gate 	/*
9857c478bd9Sstevel@tonic-gate 	 * This function should write sortkey_width bytes into buf which will
9867c478bd9Sstevel@tonic-gate 	 * cause memcmp() to sort it properly.  (Unlike sprint() above,
9877c478bd9Sstevel@tonic-gate 	 * however, an extra null byte may overrun the buffer.)  The second
9887c478bd9Sstevel@tonic-gate 	 * argument controls whether the results are sorted in forward or
9897c478bd9Sstevel@tonic-gate 	 * reverse order.
9907c478bd9Sstevel@tonic-gate 	 */
9917c478bd9Sstevel@tonic-gate 	void (*get_sortkey)(char *, int, scf_walkinfo_t *);
9927c478bd9Sstevel@tonic-gate };
9937c478bd9Sstevel@tonic-gate 
9947c478bd9Sstevel@tonic-gate static void
9957c478bd9Sstevel@tonic-gate reverse_bytes(char *buf, size_t len)
9967c478bd9Sstevel@tonic-gate {
9977c478bd9Sstevel@tonic-gate 	int i;
9987c478bd9Sstevel@tonic-gate 
9997c478bd9Sstevel@tonic-gate 	for (i = 0; i < len; ++i)
10007c478bd9Sstevel@tonic-gate 		buf[i] = ~buf[i];
10017c478bd9Sstevel@tonic-gate }
10027c478bd9Sstevel@tonic-gate 
10037c478bd9Sstevel@tonic-gate /* CTID */
10047c478bd9Sstevel@tonic-gate #define	CTID_COLUMN_WIDTH		6
10057c478bd9Sstevel@tonic-gate 
10067c478bd9Sstevel@tonic-gate static void
10077c478bd9Sstevel@tonic-gate sprint_ctid(char **buf, scf_walkinfo_t *wip)
10087c478bd9Sstevel@tonic-gate {
10097c478bd9Sstevel@tonic-gate 	int r;
10107c478bd9Sstevel@tonic-gate 	uint64_t c;
10117c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + CTID_COLUMN_WIDTH + 2;
10127c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
101394501b61Sskamm 	int restarter_spec;
10147c478bd9Sstevel@tonic-gate 
101594501b61Sskamm 	/*
101694501b61Sskamm 	 * Use the restarter specific get pids routine, if available.
101794501b61Sskamm 	 * Only check for non-legacy services (wip->pg == 0).
101894501b61Sskamm 	 */
101994501b61Sskamm 	if (wip->pg != NULL) {
10207c478bd9Sstevel@tonic-gate 		r = pg_get_single_val(wip->pg, scf_property_contract,
10217c478bd9Sstevel@tonic-gate 		    SCF_TYPE_COUNT, &c, 0, EMPTY_OK | MULTI_OK);
102294501b61Sskamm 	} else {
102394501b61Sskamm 		r = ctids_by_restarter(wip, &c, 0, MULTI_OK, &restarter_spec,
102494501b61Sskamm 		    NULL, NULL);
102594501b61Sskamm 		if (restarter_spec == 0) {
102694501b61Sskamm 			/* No restarter specific routine */
102794501b61Sskamm 			r = get_restarter_count_prop(wip->inst,
102894501b61Sskamm 			    scf_property_contract, &c, EMPTY_OK | MULTI_OK);
102994501b61Sskamm 		}
103094501b61Sskamm 	}
10317c478bd9Sstevel@tonic-gate 
10327c478bd9Sstevel@tonic-gate 	if (r == 0)
10337c478bd9Sstevel@tonic-gate 		(void) snprintf(newbuf, newsize, "%s%*lu ",
10347c478bd9Sstevel@tonic-gate 		    *buf ? *buf : "", CTID_COLUMN_WIDTH, (ctid_t)c);
10357c478bd9Sstevel@tonic-gate 	else if (r == E2BIG)
10367c478bd9Sstevel@tonic-gate 		(void) snprintf(newbuf, newsize, "%s%*lu* ",
10377c478bd9Sstevel@tonic-gate 		    *buf ? *buf : "", CTID_COLUMN_WIDTH - 1, (ctid_t)c);
10387c478bd9Sstevel@tonic-gate 	else
10397c478bd9Sstevel@tonic-gate 		(void) snprintf(newbuf, newsize, "%s%*s ",
10407c478bd9Sstevel@tonic-gate 		    *buf ? *buf : "", CTID_COLUMN_WIDTH, "-");
10417c478bd9Sstevel@tonic-gate 	if (*buf)
10427c478bd9Sstevel@tonic-gate 		free(*buf);
10437c478bd9Sstevel@tonic-gate 	*buf = newbuf;
10447c478bd9Sstevel@tonic-gate }
10457c478bd9Sstevel@tonic-gate 
10467c478bd9Sstevel@tonic-gate #define	CTID_SORTKEY_WIDTH		(sizeof (uint64_t))
10477c478bd9Sstevel@tonic-gate 
10487c478bd9Sstevel@tonic-gate static void
10497c478bd9Sstevel@tonic-gate sortkey_ctid(char *buf, int reverse, scf_walkinfo_t *wip)
10507c478bd9Sstevel@tonic-gate {
10517c478bd9Sstevel@tonic-gate 	int r;
10527c478bd9Sstevel@tonic-gate 	uint64_t c;
105394501b61Sskamm 	int restarter_spec;
10547c478bd9Sstevel@tonic-gate 
105594501b61Sskamm 	/*
105694501b61Sskamm 	 * Use the restarter specific get pids routine, if available.
105794501b61Sskamm 	 * Only check for non-legacy services (wip->pg == 0).
105894501b61Sskamm 	 */
105994501b61Sskamm 	if (wip->pg != NULL) {
10607c478bd9Sstevel@tonic-gate 		r = pg_get_single_val(wip->pg, scf_property_contract,
10617c478bd9Sstevel@tonic-gate 		    SCF_TYPE_COUNT, &c, 0, EMPTY_OK);
106294501b61Sskamm 	} else {
106394501b61Sskamm 		r = ctids_by_restarter(wip, &c, 0, MULTI_OK, &restarter_spec,
106494501b61Sskamm 		    NULL, NULL);
106594501b61Sskamm 		if (restarter_spec == 0) {
106694501b61Sskamm 			/* No restarter specific routine */
106794501b61Sskamm 			r = get_restarter_count_prop(wip->inst,
106894501b61Sskamm 			    scf_property_contract, &c, EMPTY_OK);
106994501b61Sskamm 		}
107094501b61Sskamm 	}
10717c478bd9Sstevel@tonic-gate 
10727c478bd9Sstevel@tonic-gate 	if (r == 0) {
10737c478bd9Sstevel@tonic-gate 		/*
10747c478bd9Sstevel@tonic-gate 		 * Use the id itself, but it must be big-endian for this to
10757c478bd9Sstevel@tonic-gate 		 * work.
10767c478bd9Sstevel@tonic-gate 		 */
10777c478bd9Sstevel@tonic-gate 		c = BE_64(c);
10787c478bd9Sstevel@tonic-gate 
10797c478bd9Sstevel@tonic-gate 		bcopy(&c, buf, CTID_SORTKEY_WIDTH);
10807c478bd9Sstevel@tonic-gate 	} else {
10817c478bd9Sstevel@tonic-gate 		bzero(buf, CTID_SORTKEY_WIDTH);
10827c478bd9Sstevel@tonic-gate 	}
10837c478bd9Sstevel@tonic-gate 
10847c478bd9Sstevel@tonic-gate 	if (reverse)
10857c478bd9Sstevel@tonic-gate 		reverse_bytes(buf, CTID_SORTKEY_WIDTH);
10867c478bd9Sstevel@tonic-gate }
10877c478bd9Sstevel@tonic-gate 
10887c478bd9Sstevel@tonic-gate /* DESC */
10897c478bd9Sstevel@tonic-gate #define	DESC_COLUMN_WIDTH	100
10907c478bd9Sstevel@tonic-gate 
10917c478bd9Sstevel@tonic-gate static void
10927c478bd9Sstevel@tonic-gate sprint_desc(char **buf, scf_walkinfo_t *wip)
10937c478bd9Sstevel@tonic-gate {
10947c478bd9Sstevel@tonic-gate 	char *x;
10957c478bd9Sstevel@tonic-gate 	size_t newsize;
10967c478bd9Sstevel@tonic-gate 	char *newbuf;
10977c478bd9Sstevel@tonic-gate 
10987c478bd9Sstevel@tonic-gate 	if (common_name_buf == NULL)
10997c478bd9Sstevel@tonic-gate 		common_name_buf = safe_malloc(max_scf_value_length + 1);
11007c478bd9Sstevel@tonic-gate 
11017c478bd9Sstevel@tonic-gate 	bzero(common_name_buf, max_scf_value_length + 1);
11027c478bd9Sstevel@tonic-gate 
11037c478bd9Sstevel@tonic-gate 	if (wip->pg != NULL) {
11047c478bd9Sstevel@tonic-gate 		common_name_buf[0] = '-';
11057c478bd9Sstevel@tonic-gate 	} else if (inst_get_single_val(wip->inst, SCF_PG_TM_COMMON_NAME, locale,
11067c478bd9Sstevel@tonic-gate 	    SCF_TYPE_USTRING, common_name_buf, max_scf_value_length, 0,
11077c478bd9Sstevel@tonic-gate 	    1, 1) == -1 &&
11087c478bd9Sstevel@tonic-gate 	    inst_get_single_val(wip->inst, SCF_PG_TM_COMMON_NAME, "C",
11097c478bd9Sstevel@tonic-gate 	    SCF_TYPE_USTRING, common_name_buf, max_scf_value_length, 0,
11107c478bd9Sstevel@tonic-gate 	    1, 1) == -1) {
11117c478bd9Sstevel@tonic-gate 		common_name_buf[0] = '-';
11127c478bd9Sstevel@tonic-gate 	}
11137c478bd9Sstevel@tonic-gate 
11147c478bd9Sstevel@tonic-gate 	/*
11157c478bd9Sstevel@tonic-gate 	 * Collapse multi-line tm_common_name values into a single line.
11167c478bd9Sstevel@tonic-gate 	 */
11177c478bd9Sstevel@tonic-gate 	for (x = common_name_buf; *x != '\0'; x++)
11187c478bd9Sstevel@tonic-gate 		if (*x == '\n')
11197c478bd9Sstevel@tonic-gate 			*x = ' ';
11207c478bd9Sstevel@tonic-gate 
11217c478bd9Sstevel@tonic-gate 	if (strlen(common_name_buf) > DESC_COLUMN_WIDTH)
11227c478bd9Sstevel@tonic-gate 		newsize = (*buf ? strlen(*buf) : 0) +
11237c478bd9Sstevel@tonic-gate 		    strlen(common_name_buf) + 1;
11247c478bd9Sstevel@tonic-gate 	else
11257c478bd9Sstevel@tonic-gate 		newsize = (*buf ? strlen(*buf) : 0) + DESC_COLUMN_WIDTH + 1;
11267c478bd9Sstevel@tonic-gate 	newbuf = safe_malloc(newsize);
11277c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
11283eae19d9Swesolows 	    DESC_COLUMN_WIDTH, common_name_buf);
11297c478bd9Sstevel@tonic-gate 	if (*buf)
11307c478bd9Sstevel@tonic-gate 		free(*buf);
11317c478bd9Sstevel@tonic-gate 	*buf = newbuf;
11327c478bd9Sstevel@tonic-gate }
11337c478bd9Sstevel@tonic-gate 
11347c478bd9Sstevel@tonic-gate /* ARGSUSED */
11357c478bd9Sstevel@tonic-gate static void
11367c478bd9Sstevel@tonic-gate sortkey_desc(char *buf, int reverse, scf_walkinfo_t *wip)
11377c478bd9Sstevel@tonic-gate {
11387c478bd9Sstevel@tonic-gate 	bzero(buf, DESC_COLUMN_WIDTH);
11397c478bd9Sstevel@tonic-gate }
11407c478bd9Sstevel@tonic-gate 
11417c478bd9Sstevel@tonic-gate /* State columns (STATE, NSTATE, S, N, SN, STA, NSTA) */
11427c478bd9Sstevel@tonic-gate 
11437c478bd9Sstevel@tonic-gate static char
11447c478bd9Sstevel@tonic-gate state_to_char(const char *state)
11457c478bd9Sstevel@tonic-gate {
11467c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_UNINIT) == 0)
11477c478bd9Sstevel@tonic-gate 		return ('u');
11487c478bd9Sstevel@tonic-gate 
11497c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_OFFLINE) == 0)
11507c478bd9Sstevel@tonic-gate 		return ('0');
11517c478bd9Sstevel@tonic-gate 
11527c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_ONLINE) == 0)
11537c478bd9Sstevel@tonic-gate 		return ('1');
11547c478bd9Sstevel@tonic-gate 
11557c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_MAINT) == 0)
11567c478bd9Sstevel@tonic-gate 		return ('m');
11577c478bd9Sstevel@tonic-gate 
11587c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_DISABLED) == 0)
11597c478bd9Sstevel@tonic-gate 		return ('d');
11607c478bd9Sstevel@tonic-gate 
11617c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_DEGRADED) == 0)
11627c478bd9Sstevel@tonic-gate 		return ('D');
11637c478bd9Sstevel@tonic-gate 
11647c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_LEGACY) == 0)
11657c478bd9Sstevel@tonic-gate 		return ('L');
11667c478bd9Sstevel@tonic-gate 
11677c478bd9Sstevel@tonic-gate 	return ('?');
11687c478bd9Sstevel@tonic-gate }
11697c478bd9Sstevel@tonic-gate 
11707c478bd9Sstevel@tonic-gate /* Return true if inst is transitioning. */
11717c478bd9Sstevel@tonic-gate static int
11727c478bd9Sstevel@tonic-gate transitioning(scf_instance_t *inst)
11737c478bd9Sstevel@tonic-gate {
11747c478bd9Sstevel@tonic-gate 	char nstate_name[MAX_SCF_STATE_STRING_SZ];
11757c478bd9Sstevel@tonic-gate 
11767c478bd9Sstevel@tonic-gate 	get_restarter_string_prop(inst, scf_property_next_state, nstate_name,
11777c478bd9Sstevel@tonic-gate 	    sizeof (nstate_name));
11787c478bd9Sstevel@tonic-gate 
11797c478bd9Sstevel@tonic-gate 	return (state_to_char(nstate_name) != '?');
11807c478bd9Sstevel@tonic-gate }
11817c478bd9Sstevel@tonic-gate 
11827c478bd9Sstevel@tonic-gate /* ARGSUSED */
11837c478bd9Sstevel@tonic-gate static void
11847c478bd9Sstevel@tonic-gate sortkey_states(const char *pname, char *buf, int reverse, scf_walkinfo_t *wip)
11857c478bd9Sstevel@tonic-gate {
11867c478bd9Sstevel@tonic-gate 	char state_name[MAX_SCF_STATE_STRING_SZ];
11877c478bd9Sstevel@tonic-gate 
11887c478bd9Sstevel@tonic-gate 	/*
11897c478bd9Sstevel@tonic-gate 	 * Lower numbers are printed first, so these are arranged from least
11907c478bd9Sstevel@tonic-gate 	 * interesting ("legacy run") to most interesting (unknown).
11917c478bd9Sstevel@tonic-gate 	 */
11927c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
11937c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, pname, state_name,
11947c478bd9Sstevel@tonic-gate 		    sizeof (state_name));
11957c478bd9Sstevel@tonic-gate 
11967c478bd9Sstevel@tonic-gate 		if (strcmp(state_name, SCF_STATE_STRING_ONLINE) == 0)
11977c478bd9Sstevel@tonic-gate 			*buf = 2;
11987c478bd9Sstevel@tonic-gate 		else if (strcmp(state_name, SCF_STATE_STRING_DEGRADED) == 0)
11997c478bd9Sstevel@tonic-gate 			*buf = 3;
12007c478bd9Sstevel@tonic-gate 		else if (strcmp(state_name, SCF_STATE_STRING_OFFLINE) == 0)
12017c478bd9Sstevel@tonic-gate 			*buf = 4;
12027c478bd9Sstevel@tonic-gate 		else if (strcmp(state_name, SCF_STATE_STRING_MAINT) == 0)
12037c478bd9Sstevel@tonic-gate 			*buf = 5;
12047c478bd9Sstevel@tonic-gate 		else if (strcmp(state_name, SCF_STATE_STRING_DISABLED) == 0)
12057c478bd9Sstevel@tonic-gate 			*buf = 1;
12067c478bd9Sstevel@tonic-gate 		else if (strcmp(state_name, SCF_STATE_STRING_UNINIT) == 0)
12077c478bd9Sstevel@tonic-gate 			*buf = 6;
12087c478bd9Sstevel@tonic-gate 		else
12097c478bd9Sstevel@tonic-gate 			*buf = 7;
12107c478bd9Sstevel@tonic-gate 	} else
12117c478bd9Sstevel@tonic-gate 		*buf = 0;
12127c478bd9Sstevel@tonic-gate 
12137c478bd9Sstevel@tonic-gate 	if (reverse)
12147c478bd9Sstevel@tonic-gate 		*buf = 255 - *buf;
12157c478bd9Sstevel@tonic-gate }
12167c478bd9Sstevel@tonic-gate 
12177c478bd9Sstevel@tonic-gate static void
12187c478bd9Sstevel@tonic-gate sprint_state(char **buf, scf_walkinfo_t *wip)
12197c478bd9Sstevel@tonic-gate {
12207c478bd9Sstevel@tonic-gate 	char state_name[MAX_SCF_STATE_STRING_SZ + 1];
12217c478bd9Sstevel@tonic-gate 	size_t newsize;
12227c478bd9Sstevel@tonic-gate 	char *newbuf;
12237c478bd9Sstevel@tonic-gate 
12247c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
12257c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, scf_property_state,
12267c478bd9Sstevel@tonic-gate 		    state_name, sizeof (state_name));
12277c478bd9Sstevel@tonic-gate 
12287c478bd9Sstevel@tonic-gate 		/* Don't print blank fields, to ease parsing. */
12297c478bd9Sstevel@tonic-gate 		if (state_name[0] == '\0') {
12307c478bd9Sstevel@tonic-gate 			state_name[0] = '-';
12317c478bd9Sstevel@tonic-gate 			state_name[1] = '\0';
12327c478bd9Sstevel@tonic-gate 		}
12337c478bd9Sstevel@tonic-gate 
12347c478bd9Sstevel@tonic-gate 		if (!opt_nstate_shown && transitioning(wip->inst)) {
12357c478bd9Sstevel@tonic-gate 			/* Append an asterisk if nstate is valid. */
12367c478bd9Sstevel@tonic-gate 			(void) strcat(state_name, "*");
12377c478bd9Sstevel@tonic-gate 		}
12387c478bd9Sstevel@tonic-gate 	} else
12397c478bd9Sstevel@tonic-gate 		(void) strcpy(state_name, SCF_STATE_STRING_LEGACY);
12407c478bd9Sstevel@tonic-gate 
12417c478bd9Sstevel@tonic-gate 	newsize = (*buf ? strlen(*buf) : 0) + MAX_SCF_STATE_STRING_SZ + 2;
12427c478bd9Sstevel@tonic-gate 	newbuf = safe_malloc(newsize);
12437c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
12447c478bd9Sstevel@tonic-gate 	    MAX_SCF_STATE_STRING_SZ + 1, state_name);
12457c478bd9Sstevel@tonic-gate 
12467c478bd9Sstevel@tonic-gate 	if (*buf)
12477c478bd9Sstevel@tonic-gate 		free(*buf);
12487c478bd9Sstevel@tonic-gate 	*buf = newbuf;
12497c478bd9Sstevel@tonic-gate }
12507c478bd9Sstevel@tonic-gate 
12517c478bd9Sstevel@tonic-gate static void
12527c478bd9Sstevel@tonic-gate sortkey_state(char *buf, int reverse, scf_walkinfo_t *wip)
12537c478bd9Sstevel@tonic-gate {
12547c478bd9Sstevel@tonic-gate 	sortkey_states(scf_property_state, buf, reverse, wip);
12557c478bd9Sstevel@tonic-gate }
12567c478bd9Sstevel@tonic-gate 
12577c478bd9Sstevel@tonic-gate static void
12587c478bd9Sstevel@tonic-gate sprint_nstate(char **buf, scf_walkinfo_t *wip)
12597c478bd9Sstevel@tonic-gate {
12607c478bd9Sstevel@tonic-gate 	char next_state_name[MAX_SCF_STATE_STRING_SZ];
12617c478bd9Sstevel@tonic-gate 	boolean_t blank = 0;
12627c478bd9Sstevel@tonic-gate 	size_t newsize;
12637c478bd9Sstevel@tonic-gate 	char *newbuf;
12647c478bd9Sstevel@tonic-gate 
12657c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
12667c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, scf_property_next_state,
12677c478bd9Sstevel@tonic-gate 		    next_state_name, sizeof (next_state_name));
12687c478bd9Sstevel@tonic-gate 
12697c478bd9Sstevel@tonic-gate 		/* Don't print blank fields, to ease parsing. */
12707c478bd9Sstevel@tonic-gate 		if (next_state_name[0] == '\0' ||
12717c478bd9Sstevel@tonic-gate 		    strcmp(next_state_name, SCF_STATE_STRING_NONE) == 0)
12727c478bd9Sstevel@tonic-gate 			blank = 1;
12737c478bd9Sstevel@tonic-gate 	} else
12747c478bd9Sstevel@tonic-gate 		blank = 1;
12757c478bd9Sstevel@tonic-gate 
12767c478bd9Sstevel@tonic-gate 	if (blank) {
12777c478bd9Sstevel@tonic-gate 		next_state_name[0] = '-';
12787c478bd9Sstevel@tonic-gate 		next_state_name[1] = '\0';
12797c478bd9Sstevel@tonic-gate 	}
12807c478bd9Sstevel@tonic-gate 
12817c478bd9Sstevel@tonic-gate 	newsize = (*buf ? strlen(*buf) : 0) + MAX_SCF_STATE_STRING_SZ + 1;
12827c478bd9Sstevel@tonic-gate 	newbuf = safe_malloc(newsize);
12837c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
12847c478bd9Sstevel@tonic-gate 	    MAX_SCF_STATE_STRING_SZ - 1, next_state_name);
12857c478bd9Sstevel@tonic-gate 	if (*buf)
12867c478bd9Sstevel@tonic-gate 		free(*buf);
12877c478bd9Sstevel@tonic-gate 	*buf = newbuf;
12887c478bd9Sstevel@tonic-gate }
12897c478bd9Sstevel@tonic-gate 
12907c478bd9Sstevel@tonic-gate static void
12917c478bd9Sstevel@tonic-gate sortkey_nstate(char *buf, int reverse, scf_walkinfo_t *wip)
12927c478bd9Sstevel@tonic-gate {
12937c478bd9Sstevel@tonic-gate 	sortkey_states(scf_property_next_state, buf, reverse, wip);
12947c478bd9Sstevel@tonic-gate }
12957c478bd9Sstevel@tonic-gate 
12967c478bd9Sstevel@tonic-gate static void
12977c478bd9Sstevel@tonic-gate sprint_s(char **buf, scf_walkinfo_t *wip)
12987c478bd9Sstevel@tonic-gate {
12997c478bd9Sstevel@tonic-gate 	char tmp[3];
13007c478bd9Sstevel@tonic-gate 	char state_name[MAX_SCF_STATE_STRING_SZ];
13017c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + 4;
13027c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
13037c478bd9Sstevel@tonic-gate 
13047c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
13057c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, scf_property_state,
13067c478bd9Sstevel@tonic-gate 		    state_name, sizeof (state_name));
13077c478bd9Sstevel@tonic-gate 		tmp[0] = state_to_char(state_name);
13087c478bd9Sstevel@tonic-gate 
13097c478bd9Sstevel@tonic-gate 		if (!opt_nstate_shown && transitioning(wip->inst))
13107c478bd9Sstevel@tonic-gate 			tmp[1] = '*';
13117c478bd9Sstevel@tonic-gate 		else
13127c478bd9Sstevel@tonic-gate 			tmp[1] = ' ';
13137c478bd9Sstevel@tonic-gate 	} else {
13147c478bd9Sstevel@tonic-gate 		tmp[0] = 'L';
13157c478bd9Sstevel@tonic-gate 		tmp[1] = ' ';
13167c478bd9Sstevel@tonic-gate 	}
13177c478bd9Sstevel@tonic-gate 	tmp[2] = ' ';
13187c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s", *buf ? *buf : "",
13197c478bd9Sstevel@tonic-gate 	    3, tmp);
13207c478bd9Sstevel@tonic-gate 	if (*buf)
13217c478bd9Sstevel@tonic-gate 		free(*buf);
13227c478bd9Sstevel@tonic-gate 	*buf = newbuf;
13237c478bd9Sstevel@tonic-gate }
13247c478bd9Sstevel@tonic-gate 
13257c478bd9Sstevel@tonic-gate static void
13267c478bd9Sstevel@tonic-gate sprint_n(char **buf, scf_walkinfo_t *wip)
13277c478bd9Sstevel@tonic-gate {
13287c478bd9Sstevel@tonic-gate 	char tmp[2];
13297c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + 3;
13307c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
13317c478bd9Sstevel@tonic-gate 	char nstate_name[MAX_SCF_STATE_STRING_SZ];
13327c478bd9Sstevel@tonic-gate 
13337c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
13347c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, scf_property_next_state,
13357c478bd9Sstevel@tonic-gate 		    nstate_name, sizeof (nstate_name));
13367c478bd9Sstevel@tonic-gate 
13377c478bd9Sstevel@tonic-gate 		if (strcmp(nstate_name, SCF_STATE_STRING_NONE) == 0)
13387c478bd9Sstevel@tonic-gate 			tmp[0] = '-';
13397c478bd9Sstevel@tonic-gate 		else
13407c478bd9Sstevel@tonic-gate 			tmp[0] = state_to_char(nstate_name);
13417c478bd9Sstevel@tonic-gate 	} else
13427c478bd9Sstevel@tonic-gate 		tmp[0] = '-';
13437c478bd9Sstevel@tonic-gate 
13447c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
13457c478bd9Sstevel@tonic-gate 	    2, tmp);
13467c478bd9Sstevel@tonic-gate 	if (*buf)
13477c478bd9Sstevel@tonic-gate 		free(*buf);
13487c478bd9Sstevel@tonic-gate 	*buf = newbuf;
13497c478bd9Sstevel@tonic-gate }
13507c478bd9Sstevel@tonic-gate 
13517c478bd9Sstevel@tonic-gate static void
13527c478bd9Sstevel@tonic-gate sprint_sn(char **buf, scf_walkinfo_t *wip)
13537c478bd9Sstevel@tonic-gate {
13547c478bd9Sstevel@tonic-gate 	char tmp[3];
13557c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + 4;
13567c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
13577c478bd9Sstevel@tonic-gate 	char nstate_name[MAX_SCF_STATE_STRING_SZ];
13587c478bd9Sstevel@tonic-gate 	char state_name[MAX_SCF_STATE_STRING_SZ];
13597c478bd9Sstevel@tonic-gate 
13607c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
13617c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, scf_property_state,
13627c478bd9Sstevel@tonic-gate 		    state_name, sizeof (state_name));
13637c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, scf_property_next_state,
13647c478bd9Sstevel@tonic-gate 		    nstate_name, sizeof (nstate_name));
13657c478bd9Sstevel@tonic-gate 		tmp[0] = state_to_char(state_name);
13667c478bd9Sstevel@tonic-gate 
13677c478bd9Sstevel@tonic-gate 		if (strcmp(nstate_name, SCF_STATE_STRING_NONE) == 0)
13687c478bd9Sstevel@tonic-gate 			tmp[1] = '-';
13697c478bd9Sstevel@tonic-gate 		else
13707c478bd9Sstevel@tonic-gate 			tmp[1] = state_to_char(nstate_name);
13717c478bd9Sstevel@tonic-gate 	} else {
13727c478bd9Sstevel@tonic-gate 		tmp[0] = 'L';
13737c478bd9Sstevel@tonic-gate 		tmp[1] = '-';
13747c478bd9Sstevel@tonic-gate 	}
13757c478bd9Sstevel@tonic-gate 
13767c478bd9Sstevel@tonic-gate 	tmp[2] = ' ';
13777c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
13787c478bd9Sstevel@tonic-gate 	    3, tmp);
13797c478bd9Sstevel@tonic-gate 	if (*buf)
13807c478bd9Sstevel@tonic-gate 		free(*buf);
13817c478bd9Sstevel@tonic-gate 	*buf = newbuf;
13827c478bd9Sstevel@tonic-gate }
13837c478bd9Sstevel@tonic-gate 
13847c478bd9Sstevel@tonic-gate /* ARGSUSED */
13857c478bd9Sstevel@tonic-gate static void
13867c478bd9Sstevel@tonic-gate sortkey_sn(char *buf, int reverse, scf_walkinfo_t *wip)
13877c478bd9Sstevel@tonic-gate {
13887c478bd9Sstevel@tonic-gate 	sortkey_state(buf, reverse, wip);
13897c478bd9Sstevel@tonic-gate 	sortkey_nstate(buf + 1, reverse, wip);
13907c478bd9Sstevel@tonic-gate }
13917c478bd9Sstevel@tonic-gate 
13927c478bd9Sstevel@tonic-gate static const char *
13937c478bd9Sstevel@tonic-gate state_abbrev(const char *state)
13947c478bd9Sstevel@tonic-gate {
13957c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_UNINIT) == 0)
13967c478bd9Sstevel@tonic-gate 		return ("UN");
13977c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_OFFLINE) == 0)
13987c478bd9Sstevel@tonic-gate 		return ("OFF");
13997c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_ONLINE) == 0)
14007c478bd9Sstevel@tonic-gate 		return ("ON");
14017c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_MAINT) == 0)
14027c478bd9Sstevel@tonic-gate 		return ("MNT");
14037c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_DISABLED) == 0)
14047c478bd9Sstevel@tonic-gate 		return ("DIS");
14057c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_DEGRADED) == 0)
14067c478bd9Sstevel@tonic-gate 		return ("DGD");
14077c478bd9Sstevel@tonic-gate 	if (strcmp(state, SCF_STATE_STRING_LEGACY) == 0)
14087c478bd9Sstevel@tonic-gate 		return ("LRC");
14097c478bd9Sstevel@tonic-gate 
14107c478bd9Sstevel@tonic-gate 	return ("?");
14117c478bd9Sstevel@tonic-gate }
14127c478bd9Sstevel@tonic-gate 
14137c478bd9Sstevel@tonic-gate static void
14147c478bd9Sstevel@tonic-gate sprint_sta(char **buf, scf_walkinfo_t *wip)
14157c478bd9Sstevel@tonic-gate {
14167c478bd9Sstevel@tonic-gate 	char state_name[MAX_SCF_STATE_STRING_SZ];
14177c478bd9Sstevel@tonic-gate 	char sta[5];
14187c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + 6;
14197c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
14207c478bd9Sstevel@tonic-gate 
14217c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL)
14227c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, scf_property_state,
14237c478bd9Sstevel@tonic-gate 		    state_name, sizeof (state_name));
14247c478bd9Sstevel@tonic-gate 	else
14257c478bd9Sstevel@tonic-gate 		(void) strcpy(state_name, SCF_STATE_STRING_LEGACY);
14267c478bd9Sstevel@tonic-gate 
14277c478bd9Sstevel@tonic-gate 	(void) strcpy(sta, state_abbrev(state_name));
14287c478bd9Sstevel@tonic-gate 
14297c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL && !opt_nstate_shown && transitioning(wip->inst))
14307c478bd9Sstevel@tonic-gate 		(void) strcat(sta, "*");
14317c478bd9Sstevel@tonic-gate 
14327c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-4s ", *buf ? *buf : "", sta);
14337c478bd9Sstevel@tonic-gate 	if (*buf)
14347c478bd9Sstevel@tonic-gate 		free(*buf);
14357c478bd9Sstevel@tonic-gate 	*buf = newbuf;
14367c478bd9Sstevel@tonic-gate }
14377c478bd9Sstevel@tonic-gate 
14387c478bd9Sstevel@tonic-gate static void
14397c478bd9Sstevel@tonic-gate sprint_nsta(char **buf, scf_walkinfo_t *wip)
14407c478bd9Sstevel@tonic-gate {
14417c478bd9Sstevel@tonic-gate 	char state_name[MAX_SCF_STATE_STRING_SZ];
14427c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + 6;
14437c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
14447c478bd9Sstevel@tonic-gate 
14457c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL)
14467c478bd9Sstevel@tonic-gate 		get_restarter_string_prop(wip->inst, scf_property_next_state,
14477c478bd9Sstevel@tonic-gate 		    state_name, sizeof (state_name));
14487c478bd9Sstevel@tonic-gate 	else
14497c478bd9Sstevel@tonic-gate 		(void) strcpy(state_name, SCF_STATE_STRING_NONE);
14507c478bd9Sstevel@tonic-gate 
14517c478bd9Sstevel@tonic-gate 	if (strcmp(state_name, SCF_STATE_STRING_NONE) == 0)
14527c478bd9Sstevel@tonic-gate 		(void) snprintf(newbuf, newsize, "%s%-4s ", *buf ? *buf : "",
14537c478bd9Sstevel@tonic-gate 		    "-");
14547c478bd9Sstevel@tonic-gate 	else
14557c478bd9Sstevel@tonic-gate 		(void) snprintf(newbuf, newsize, "%s%-4s ", *buf ? *buf : "",
14567c478bd9Sstevel@tonic-gate 		    state_abbrev(state_name));
14577c478bd9Sstevel@tonic-gate 	if (*buf)
14587c478bd9Sstevel@tonic-gate 		free(*buf);
14597c478bd9Sstevel@tonic-gate 	*buf = newbuf;
14607c478bd9Sstevel@tonic-gate }
14617c478bd9Sstevel@tonic-gate 
14627c478bd9Sstevel@tonic-gate /* FMRI */
14637c478bd9Sstevel@tonic-gate #define	FMRI_COLUMN_WIDTH	50
14647c478bd9Sstevel@tonic-gate static void
14657c478bd9Sstevel@tonic-gate sprint_fmri(char **buf, scf_walkinfo_t *wip)
14667c478bd9Sstevel@tonic-gate {
14677c478bd9Sstevel@tonic-gate 	char *fmri_buf = safe_malloc(max_scf_fmri_length + 1);
14687c478bd9Sstevel@tonic-gate 	size_t newsize;
14697c478bd9Sstevel@tonic-gate 	char *newbuf;
14707c478bd9Sstevel@tonic-gate 
14717c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
14727c478bd9Sstevel@tonic-gate 		if (scf_instance_to_fmri(wip->inst, fmri_buf,
14737c478bd9Sstevel@tonic-gate 		    max_scf_fmri_length + 1) == -1)
14747c478bd9Sstevel@tonic-gate 			scfdie();
14757c478bd9Sstevel@tonic-gate 	} else {
14767b209c2cSacruz 		(void) strcpy(fmri_buf, SCF_FMRI_LEGACY_PREFIX);
14777c478bd9Sstevel@tonic-gate 		if (pg_get_single_val(wip->pg, SCF_LEGACY_PROPERTY_NAME,
14787b209c2cSacruz 		    SCF_TYPE_ASTRING, fmri_buf +
14797b209c2cSacruz 		    sizeof (SCF_FMRI_LEGACY_PREFIX) - 1,
14807b209c2cSacruz 		    max_scf_fmri_length + 1 -
14817b209c2cSacruz 		    (sizeof (SCF_FMRI_LEGACY_PREFIX) - 1), 0) != 0)
14827c478bd9Sstevel@tonic-gate 			(void) strcat(fmri_buf, LEGACY_UNKNOWN);
14837c478bd9Sstevel@tonic-gate 	}
14847c478bd9Sstevel@tonic-gate 
14857c478bd9Sstevel@tonic-gate 	if (strlen(fmri_buf) > FMRI_COLUMN_WIDTH)
14867c478bd9Sstevel@tonic-gate 		newsize = (*buf ? strlen(*buf) : 0) + strlen(fmri_buf) + 2;
14877c478bd9Sstevel@tonic-gate 	else
14887c478bd9Sstevel@tonic-gate 		newsize = (*buf ? strlen(*buf) : 0) + FMRI_COLUMN_WIDTH + 2;
14897c478bd9Sstevel@tonic-gate 	newbuf = safe_malloc(newsize);
14907c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
14917c478bd9Sstevel@tonic-gate 	    FMRI_COLUMN_WIDTH, fmri_buf);
14927c478bd9Sstevel@tonic-gate 	free(fmri_buf);
14937c478bd9Sstevel@tonic-gate 	if (*buf)
14947c478bd9Sstevel@tonic-gate 		free(*buf);
14957c478bd9Sstevel@tonic-gate 	*buf = newbuf;
14967c478bd9Sstevel@tonic-gate }
14977c478bd9Sstevel@tonic-gate 
14987c478bd9Sstevel@tonic-gate static void
14997c478bd9Sstevel@tonic-gate sortkey_fmri(char *buf, int reverse, scf_walkinfo_t *wip)
15007c478bd9Sstevel@tonic-gate {
15017c478bd9Sstevel@tonic-gate 	char *tmp = NULL;
15027c478bd9Sstevel@tonic-gate 
15037c478bd9Sstevel@tonic-gate 	sprint_fmri(&tmp, wip);
15047c478bd9Sstevel@tonic-gate 	bcopy(tmp, buf, FMRI_COLUMN_WIDTH);
15057c478bd9Sstevel@tonic-gate 	free(tmp);
15067c478bd9Sstevel@tonic-gate 	if (reverse)
15077c478bd9Sstevel@tonic-gate 		reverse_bytes(buf, FMRI_COLUMN_WIDTH);
15087c478bd9Sstevel@tonic-gate }
15097c478bd9Sstevel@tonic-gate 
15107c478bd9Sstevel@tonic-gate /* Component columns */
15117c478bd9Sstevel@tonic-gate #define	COMPONENT_COLUMN_WIDTH	20
15127c478bd9Sstevel@tonic-gate static void
15137c478bd9Sstevel@tonic-gate sprint_scope(char **buf, scf_walkinfo_t *wip)
15147c478bd9Sstevel@tonic-gate {
15157c478bd9Sstevel@tonic-gate 	char *scope_buf = safe_malloc(max_scf_name_length + 1);
15167c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + COMPONENT_COLUMN_WIDTH + 2;
15177c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
15187c478bd9Sstevel@tonic-gate 
15197c478bd9Sstevel@tonic-gate 	assert(wip->scope != NULL);
15207c478bd9Sstevel@tonic-gate 
15217c478bd9Sstevel@tonic-gate 	if (scf_scope_get_name(wip->scope, scope_buf, max_scf_name_length) < 0)
15227c478bd9Sstevel@tonic-gate 		scfdie();
15237c478bd9Sstevel@tonic-gate 
15247c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
15257c478bd9Sstevel@tonic-gate 	    COMPONENT_COLUMN_WIDTH, scope_buf);
15267c478bd9Sstevel@tonic-gate 	if (*buf)
15277c478bd9Sstevel@tonic-gate 		free(*buf);
15287c478bd9Sstevel@tonic-gate 	*buf = newbuf;
15297c478bd9Sstevel@tonic-gate 	free(scope_buf);
15307c478bd9Sstevel@tonic-gate }
15317c478bd9Sstevel@tonic-gate 
15327c478bd9Sstevel@tonic-gate static void
15337c478bd9Sstevel@tonic-gate sortkey_scope(char *buf, int reverse, scf_walkinfo_t *wip)
15347c478bd9Sstevel@tonic-gate {
15357c478bd9Sstevel@tonic-gate 	char *tmp = NULL;
15367c478bd9Sstevel@tonic-gate 
15377c478bd9Sstevel@tonic-gate 	sprint_scope(&tmp, wip);
15387c478bd9Sstevel@tonic-gate 	bcopy(tmp, buf, COMPONENT_COLUMN_WIDTH);
15397c478bd9Sstevel@tonic-gate 	free(tmp);
15407c478bd9Sstevel@tonic-gate 	if (reverse)
15417c478bd9Sstevel@tonic-gate 		reverse_bytes(buf, COMPONENT_COLUMN_WIDTH);
15427c478bd9Sstevel@tonic-gate }
15437c478bd9Sstevel@tonic-gate 
15447c478bd9Sstevel@tonic-gate static void
15457c478bd9Sstevel@tonic-gate sprint_service(char **buf, scf_walkinfo_t *wip)
15467c478bd9Sstevel@tonic-gate {
15477c478bd9Sstevel@tonic-gate 	char *svc_buf = safe_malloc(max_scf_name_length + 1);
15487c478bd9Sstevel@tonic-gate 	char *newbuf;
15497c478bd9Sstevel@tonic-gate 	size_t newsize;
15507c478bd9Sstevel@tonic-gate 
15517c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
15527c478bd9Sstevel@tonic-gate 		if (scf_service_get_name(wip->svc, svc_buf,
15537c478bd9Sstevel@tonic-gate 		    max_scf_name_length + 1) < 0)
15547c478bd9Sstevel@tonic-gate 			scfdie();
15557c478bd9Sstevel@tonic-gate 	} else {
15567c478bd9Sstevel@tonic-gate 		if (pg_get_single_val(wip->pg, "name", SCF_TYPE_ASTRING,
15577c478bd9Sstevel@tonic-gate 		    svc_buf, max_scf_name_length + 1, EMPTY_OK) != 0)
15587c478bd9Sstevel@tonic-gate 			(void) strcpy(svc_buf, LEGACY_UNKNOWN);
15597c478bd9Sstevel@tonic-gate 	}
15607c478bd9Sstevel@tonic-gate 
15617c478bd9Sstevel@tonic-gate 
15627c478bd9Sstevel@tonic-gate 	if (strlen(svc_buf) > COMPONENT_COLUMN_WIDTH)
15637c478bd9Sstevel@tonic-gate 		newsize = (*buf ? strlen(*buf) : 0) + strlen(svc_buf) + 2;
15647c478bd9Sstevel@tonic-gate 	else
15657c478bd9Sstevel@tonic-gate 		newsize = (*buf ? strlen(*buf) : 0) +
15667c478bd9Sstevel@tonic-gate 		    COMPONENT_COLUMN_WIDTH + 2;
15677c478bd9Sstevel@tonic-gate 	newbuf = safe_malloc(newsize);
15687c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
15697c478bd9Sstevel@tonic-gate 	    COMPONENT_COLUMN_WIDTH, svc_buf);
15707c478bd9Sstevel@tonic-gate 	free(svc_buf);
15717c478bd9Sstevel@tonic-gate 	if (*buf)
15727c478bd9Sstevel@tonic-gate 		free(*buf);
15737c478bd9Sstevel@tonic-gate 	*buf = newbuf;
15747c478bd9Sstevel@tonic-gate }
15757c478bd9Sstevel@tonic-gate 
15767c478bd9Sstevel@tonic-gate static void
15777c478bd9Sstevel@tonic-gate sortkey_service(char *buf, int reverse, scf_walkinfo_t *wip)
15787c478bd9Sstevel@tonic-gate {
15797c478bd9Sstevel@tonic-gate 	char *tmp = NULL;
15807c478bd9Sstevel@tonic-gate 
15817c478bd9Sstevel@tonic-gate 	sprint_service(&tmp, wip);
15827c478bd9Sstevel@tonic-gate 	bcopy(tmp, buf, COMPONENT_COLUMN_WIDTH);
15837c478bd9Sstevel@tonic-gate 	free(tmp);
15847c478bd9Sstevel@tonic-gate 	if (reverse)
15857c478bd9Sstevel@tonic-gate 		reverse_bytes(buf, COMPONENT_COLUMN_WIDTH);
15867c478bd9Sstevel@tonic-gate }
15877c478bd9Sstevel@tonic-gate 
15887c478bd9Sstevel@tonic-gate /* INST */
15897c478bd9Sstevel@tonic-gate static void
15907c478bd9Sstevel@tonic-gate sprint_instance(char **buf, scf_walkinfo_t *wip)
15917c478bd9Sstevel@tonic-gate {
15927c478bd9Sstevel@tonic-gate 	char *tmp = safe_malloc(max_scf_name_length + 1);
15937c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + COMPONENT_COLUMN_WIDTH + 2;
15947c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
15957c478bd9Sstevel@tonic-gate 
15967c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
15977c478bd9Sstevel@tonic-gate 		if (scf_instance_get_name(wip->inst, tmp,
15987c478bd9Sstevel@tonic-gate 		    max_scf_name_length + 1) < 0)
15997c478bd9Sstevel@tonic-gate 			scfdie();
16007c478bd9Sstevel@tonic-gate 	} else {
16017c478bd9Sstevel@tonic-gate 		tmp[0] = '-';
16027c478bd9Sstevel@tonic-gate 		tmp[1] = '\0';
16037c478bd9Sstevel@tonic-gate 	}
16047c478bd9Sstevel@tonic-gate 
16057c478bd9Sstevel@tonic-gate 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
16067c478bd9Sstevel@tonic-gate 	    COMPONENT_COLUMN_WIDTH, tmp);
16077c478bd9Sstevel@tonic-gate 	if (*buf)
16087c478bd9Sstevel@tonic-gate 		free(*buf);
16097c478bd9Sstevel@tonic-gate 	*buf = newbuf;
16107c478bd9Sstevel@tonic-gate 	free(tmp);
16117c478bd9Sstevel@tonic-gate }
16127c478bd9Sstevel@tonic-gate 
16137c478bd9Sstevel@tonic-gate static void
16147c478bd9Sstevel@tonic-gate sortkey_instance(char *buf, int reverse, scf_walkinfo_t *wip)
16157c478bd9Sstevel@tonic-gate {
16167c478bd9Sstevel@tonic-gate 	char *tmp = NULL;
16177c478bd9Sstevel@tonic-gate 
16187c478bd9Sstevel@tonic-gate 	sprint_instance(&tmp, wip);
16197c478bd9Sstevel@tonic-gate 	bcopy(tmp, buf, COMPONENT_COLUMN_WIDTH);
16207c478bd9Sstevel@tonic-gate 	free(tmp);
16217c478bd9Sstevel@tonic-gate 	if (reverse)
16227c478bd9Sstevel@tonic-gate 		reverse_bytes(buf, COMPONENT_COLUMN_WIDTH);
16237c478bd9Sstevel@tonic-gate }
16247c478bd9Sstevel@tonic-gate 
16257c478bd9Sstevel@tonic-gate /* STIME */
16267c478bd9Sstevel@tonic-gate #define	STIME_COLUMN_WIDTH		8
16277c478bd9Sstevel@tonic-gate #define	FORMAT_TIME			"%k:%M:%S"
16287c478bd9Sstevel@tonic-gate #define	FORMAT_DATE			"%b_%d  "
16297c478bd9Sstevel@tonic-gate #define	FORMAT_YEAR			"%Y    "
16307c478bd9Sstevel@tonic-gate 
163161402014Slianep /*
163261402014Slianep  * sprint_stime() will allocate a new buffer and snprintf the services's
163361402014Slianep  * state timestamp.  If the timestamp is unavailable for some reason
163461402014Slianep  * a '-' is given instead.
163561402014Slianep  */
16367c478bd9Sstevel@tonic-gate static void
16377c478bd9Sstevel@tonic-gate sprint_stime(char **buf, scf_walkinfo_t *wip)
16387c478bd9Sstevel@tonic-gate {
16397c478bd9Sstevel@tonic-gate 	int r;
16407c478bd9Sstevel@tonic-gate 	struct timeval tv;
16417c478bd9Sstevel@tonic-gate 	time_t then;
16427c478bd9Sstevel@tonic-gate 	struct tm *tm;
16437c478bd9Sstevel@tonic-gate 	char st_buf[STIME_COLUMN_WIDTH + 1];
16447c478bd9Sstevel@tonic-gate 	size_t newsize = (*buf ? strlen(*buf) : 0) + STIME_COLUMN_WIDTH + 2;
16457c478bd9Sstevel@tonic-gate 	char *newbuf = safe_malloc(newsize);
16467c478bd9Sstevel@tonic-gate 
16477c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL) {
16487c478bd9Sstevel@tonic-gate 		r = get_restarter_time_prop(wip->inst,
16497c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_STATE_TIMESTAMP, &tv, 0);
16507c478bd9Sstevel@tonic-gate 	} else {
16517c478bd9Sstevel@tonic-gate 		r = pg_get_single_val(wip->pg, SCF_PROPERTY_STATE_TIMESTAMP,
16527c478bd9Sstevel@tonic-gate 		    SCF_TYPE_TIME, &tv, NULL, 0);
16537c478bd9Sstevel@tonic-gate 	}
16547c478bd9Sstevel@tonic-gate 
16557c478bd9Sstevel@tonic-gate 	if (r != 0) {
165661402014Slianep 		/*
165761402014Slianep 		 * There's something amiss with our service
165861402014Slianep 		 * so we'll print a '-' for STIME.
165961402014Slianep 		 */
16607c478bd9Sstevel@tonic-gate 		(void) snprintf(newbuf, newsize, "%s%-*s", *buf ? *buf : "",
166161402014Slianep 		    STIME_COLUMN_WIDTH + 1, "-");
166261402014Slianep 	} else {
166361402014Slianep 		/* tv should be valid so we'll format it */
166461402014Slianep 		then = (time_t)tv.tv_sec;
16657c478bd9Sstevel@tonic-gate 
166661402014Slianep 		tm = localtime(&then);
166761402014Slianep 		/*
166861402014Slianep 		 * Print time if started within the past 24 hours, print date
166961402014Slianep 		 * if within the past 12 months or, finally, print year if
167061402014Slianep 		 * started greater than 12 months ago.
167161402014Slianep 		 */
167261402014Slianep 		if (now - then < 24 * 60 * 60) {
167361402014Slianep 			(void) strftime(st_buf, sizeof (st_buf),
167461402014Slianep 			    gettext(FORMAT_TIME), tm);
167561402014Slianep 		} else if (now - then < 12 * 30 * 24 * 60 * 60) {
167661402014Slianep 			(void) strftime(st_buf, sizeof (st_buf),
167761402014Slianep 			    gettext(FORMAT_DATE), tm);
167861402014Slianep 		} else {
167961402014Slianep 			(void) strftime(st_buf, sizeof (st_buf),
168061402014Slianep 			    gettext(FORMAT_YEAR), tm);
168161402014Slianep 		}
168261402014Slianep 		(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
168361402014Slianep 		    STIME_COLUMN_WIDTH + 1, st_buf);
168461402014Slianep 	}
16857c478bd9Sstevel@tonic-gate 	if (*buf)
16867c478bd9Sstevel@tonic-gate 		free(*buf);
16877c478bd9Sstevel@tonic-gate 	*buf = newbuf;
16887c478bd9Sstevel@tonic-gate }
16897c478bd9Sstevel@tonic-gate 
16907c478bd9Sstevel@tonic-gate #define	STIME_SORTKEY_WIDTH		(sizeof (uint64_t) + sizeof (uint32_t))
16917c478bd9Sstevel@tonic-gate 
16927c478bd9Sstevel@tonic-gate /* ARGSUSED */
16937c478bd9Sstevel@tonic-gate static void
16947c478bd9Sstevel@tonic-gate sortkey_stime(char *buf, int reverse, scf_walkinfo_t *wip)
16957c478bd9Sstevel@tonic-gate {
16967c478bd9Sstevel@tonic-gate 	struct timeval tv;
16977c478bd9Sstevel@tonic-gate 	int r;
16987c478bd9Sstevel@tonic-gate 
16997c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL)
17007c478bd9Sstevel@tonic-gate 		r = get_restarter_time_prop(wip->inst,
17017c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_STATE_TIMESTAMP, &tv, 0);
17027c478bd9Sstevel@tonic-gate 	else
17037c478bd9Sstevel@tonic-gate 		r = pg_get_single_val(wip->pg, SCF_PROPERTY_STATE_TIMESTAMP,
17047c478bd9Sstevel@tonic-gate 		    SCF_TYPE_TIME, &tv, NULL, 0);
17057c478bd9Sstevel@tonic-gate 
17067c478bd9Sstevel@tonic-gate 	if (r == 0) {
17077c478bd9Sstevel@tonic-gate 		int64_t sec;
17087c478bd9Sstevel@tonic-gate 		int32_t us;
17097c478bd9Sstevel@tonic-gate 
17107c478bd9Sstevel@tonic-gate 		/* Stick it straight into the buffer. */
17117c478bd9Sstevel@tonic-gate 		sec = tv.tv_sec;
17127c478bd9Sstevel@tonic-gate 		us = tv.tv_usec;
17137c478bd9Sstevel@tonic-gate 
17147c478bd9Sstevel@tonic-gate 		sec = BE_64(sec);
17157c478bd9Sstevel@tonic-gate 		us = BE_32(us);
17167c478bd9Sstevel@tonic-gate 		bcopy(&sec, buf, sizeof (sec));
17177c478bd9Sstevel@tonic-gate 		bcopy(&us, buf + sizeof (sec), sizeof (us));
17187c478bd9Sstevel@tonic-gate 	} else {
17197c478bd9Sstevel@tonic-gate 		bzero(buf, STIME_SORTKEY_WIDTH);
17207c478bd9Sstevel@tonic-gate 	}
17217c478bd9Sstevel@tonic-gate 
17227c478bd9Sstevel@tonic-gate 	if (reverse)
17237c478bd9Sstevel@tonic-gate 		reverse_bytes(buf, STIME_SORTKEY_WIDTH);
17247c478bd9Sstevel@tonic-gate }
17257c478bd9Sstevel@tonic-gate 
1726048b0279SBryan Cantrill /* ZONE */
1727048b0279SBryan Cantrill #define	ZONE_COLUMN_WIDTH	16
1728048b0279SBryan Cantrill /*ARGSUSED*/
1729048b0279SBryan Cantrill static void
1730048b0279SBryan Cantrill sprint_zone(char **buf, scf_walkinfo_t *wip)
1731048b0279SBryan Cantrill {
1732048b0279SBryan Cantrill 	size_t newsize;
1733048b0279SBryan Cantrill 	char *newbuf, *zonename = g_zonename, b[ZONENAME_MAX];
1734048b0279SBryan Cantrill 
1735048b0279SBryan Cantrill 	if (zonename == NULL) {
1736048b0279SBryan Cantrill 		zoneid_t zoneid = getzoneid();
1737048b0279SBryan Cantrill 
1738048b0279SBryan Cantrill 		if (getzonenamebyid(zoneid, b, sizeof (b)) < 0)
1739048b0279SBryan Cantrill 			uu_die(gettext("could not determine zone name"));
1740048b0279SBryan Cantrill 
1741048b0279SBryan Cantrill 		zonename = b;
1742048b0279SBryan Cantrill 	}
1743048b0279SBryan Cantrill 
1744048b0279SBryan Cantrill 	if (strlen(zonename) > ZONE_COLUMN_WIDTH)
1745048b0279SBryan Cantrill 		newsize = (*buf ? strlen(*buf) : 0) + strlen(zonename) + 2;
1746048b0279SBryan Cantrill 	else
1747048b0279SBryan Cantrill 		newsize = (*buf ? strlen(*buf) : 0) + ZONE_COLUMN_WIDTH + 2;
1748048b0279SBryan Cantrill 
1749048b0279SBryan Cantrill 	newbuf = safe_malloc(newsize);
1750048b0279SBryan Cantrill 	(void) snprintf(newbuf, newsize, "%s%-*s ", *buf ? *buf : "",
1751048b0279SBryan Cantrill 	    ZONE_COLUMN_WIDTH, zonename);
1752048b0279SBryan Cantrill 
1753048b0279SBryan Cantrill 	if (*buf)
1754048b0279SBryan Cantrill 		free(*buf);
1755048b0279SBryan Cantrill 	*buf = newbuf;
1756048b0279SBryan Cantrill }
1757048b0279SBryan Cantrill 
1758048b0279SBryan Cantrill static void
1759048b0279SBryan Cantrill sortkey_zone(char *buf, int reverse, scf_walkinfo_t *wip)
1760048b0279SBryan Cantrill {
1761048b0279SBryan Cantrill 	char *tmp = NULL;
1762048b0279SBryan Cantrill 
1763048b0279SBryan Cantrill 	sprint_zone(&tmp, wip);
1764048b0279SBryan Cantrill 	bcopy(tmp, buf, ZONE_COLUMN_WIDTH);
1765048b0279SBryan Cantrill 	free(tmp);
1766048b0279SBryan Cantrill 	if (reverse)
1767048b0279SBryan Cantrill 		reverse_bytes(buf, ZONE_COLUMN_WIDTH);
1768048b0279SBryan Cantrill }
17697c478bd9Sstevel@tonic-gate 
17707c478bd9Sstevel@tonic-gate /*
17717c478bd9Sstevel@tonic-gate  * Information about columns which can be displayed.  If you add something,
17727c478bd9Sstevel@tonic-gate  * check MAX_COLUMN_NAME_LENGTH_STR & update description_of_column() below.
17737c478bd9Sstevel@tonic-gate  */
17747c478bd9Sstevel@tonic-gate static const struct column columns[] = {
17757c478bd9Sstevel@tonic-gate 	{ "CTID", CTID_COLUMN_WIDTH, sprint_ctid,
17767c478bd9Sstevel@tonic-gate 		CTID_SORTKEY_WIDTH, sortkey_ctid },
17777c478bd9Sstevel@tonic-gate 	{ "DESC", DESC_COLUMN_WIDTH, sprint_desc,
17787c478bd9Sstevel@tonic-gate 		DESC_COLUMN_WIDTH, sortkey_desc },
17797c478bd9Sstevel@tonic-gate 	{ "FMRI", FMRI_COLUMN_WIDTH, sprint_fmri,
17807c478bd9Sstevel@tonic-gate 		FMRI_COLUMN_WIDTH, sortkey_fmri },
17817c478bd9Sstevel@tonic-gate 	{ "INST", COMPONENT_COLUMN_WIDTH, sprint_instance,
17827c478bd9Sstevel@tonic-gate 		COMPONENT_COLUMN_WIDTH, sortkey_instance },
17837c478bd9Sstevel@tonic-gate 	{ "N", 1,  sprint_n, 1, sortkey_nstate },
17847c478bd9Sstevel@tonic-gate 	{ "NSTA", 4, sprint_nsta, 1, sortkey_nstate },
17857c478bd9Sstevel@tonic-gate 	{ "NSTATE", MAX_SCF_STATE_STRING_SZ - 1, sprint_nstate,
17867c478bd9Sstevel@tonic-gate 		1, sortkey_nstate },
17877c478bd9Sstevel@tonic-gate 	{ "S", 2, sprint_s, 1, sortkey_state },
17887c478bd9Sstevel@tonic-gate 	{ "SCOPE", COMPONENT_COLUMN_WIDTH, sprint_scope,
17897c478bd9Sstevel@tonic-gate 		COMPONENT_COLUMN_WIDTH, sortkey_scope },
17907c478bd9Sstevel@tonic-gate 	{ "SN", 2, sprint_sn, 2, sortkey_sn },
17917c478bd9Sstevel@tonic-gate 	{ "SVC", COMPONENT_COLUMN_WIDTH, sprint_service,
17927c478bd9Sstevel@tonic-gate 		COMPONENT_COLUMN_WIDTH, sortkey_service },
17937c478bd9Sstevel@tonic-gate 	{ "STA", 4, sprint_sta, 1, sortkey_state },
17947c478bd9Sstevel@tonic-gate 	{ "STATE", MAX_SCF_STATE_STRING_SZ - 1 + 1, sprint_state,
17957c478bd9Sstevel@tonic-gate 		1, sortkey_state },
17967c478bd9Sstevel@tonic-gate 	{ "STIME", STIME_COLUMN_WIDTH, sprint_stime,
17977c478bd9Sstevel@tonic-gate 		STIME_SORTKEY_WIDTH, sortkey_stime },
1798048b0279SBryan Cantrill 	{ "ZONE", ZONE_COLUMN_WIDTH, sprint_zone,
1799048b0279SBryan Cantrill 		ZONE_COLUMN_WIDTH, sortkey_zone },
18007c478bd9Sstevel@tonic-gate };
18017c478bd9Sstevel@tonic-gate 
18027c478bd9Sstevel@tonic-gate #define	MAX_COLUMN_NAME_LENGTH_STR	"6"
18037c478bd9Sstevel@tonic-gate 
18047c478bd9Sstevel@tonic-gate static const int ncolumns = sizeof (columns) / sizeof (columns[0]);
18057c478bd9Sstevel@tonic-gate 
18067c478bd9Sstevel@tonic-gate /*
18077c478bd9Sstevel@tonic-gate  * Necessary thanks to gettext() & xgettext.
18087c478bd9Sstevel@tonic-gate  */
18097c478bd9Sstevel@tonic-gate static const char *
18107c478bd9Sstevel@tonic-gate description_of_column(int c)
18117c478bd9Sstevel@tonic-gate {
18127c478bd9Sstevel@tonic-gate 	const char *s = NULL;
18137c478bd9Sstevel@tonic-gate 
18147c478bd9Sstevel@tonic-gate 	switch (c) {
18157c478bd9Sstevel@tonic-gate 	case 0:
18167c478bd9Sstevel@tonic-gate 		s = gettext("contract ID for service (see contract(4))");
18177c478bd9Sstevel@tonic-gate 		break;
18187c478bd9Sstevel@tonic-gate 	case 1:
18197c478bd9Sstevel@tonic-gate 		s = gettext("human-readable description of the service");
18207c478bd9Sstevel@tonic-gate 		break;
18217c478bd9Sstevel@tonic-gate 	case 2:
18227c478bd9Sstevel@tonic-gate 		s = gettext("Fault Managed Resource Identifier for service");
18237c478bd9Sstevel@tonic-gate 		break;
18247c478bd9Sstevel@tonic-gate 	case 3:
18257c478bd9Sstevel@tonic-gate 		s = gettext("portion of the FMRI indicating service instance");
18267c478bd9Sstevel@tonic-gate 		break;
18277c478bd9Sstevel@tonic-gate 	case 4:
18287c478bd9Sstevel@tonic-gate 		s = gettext("abbreviation for next state (if in transition)");
18297c478bd9Sstevel@tonic-gate 		break;
18307c478bd9Sstevel@tonic-gate 	case 5:
18317c478bd9Sstevel@tonic-gate 		s = gettext("abbreviation for next state (if in transition)");
18327c478bd9Sstevel@tonic-gate 		break;
18337c478bd9Sstevel@tonic-gate 	case 6:
18347c478bd9Sstevel@tonic-gate 		s = gettext("name for next state (if in transition)");
18357c478bd9Sstevel@tonic-gate 		break;
18367c478bd9Sstevel@tonic-gate 	case 7:
18377c478bd9Sstevel@tonic-gate 		s = gettext("abbreviation for current state");
18387c478bd9Sstevel@tonic-gate 		break;
18397c478bd9Sstevel@tonic-gate 	case 8:
18407c478bd9Sstevel@tonic-gate 		s = gettext("name for scope associated with service");
18417c478bd9Sstevel@tonic-gate 		break;
18427c478bd9Sstevel@tonic-gate 	case 9:
18437c478bd9Sstevel@tonic-gate 		s = gettext("abbreviation for current state and next state");
18447c478bd9Sstevel@tonic-gate 		break;
18457c478bd9Sstevel@tonic-gate 	case 10:
18467c478bd9Sstevel@tonic-gate 		s = gettext("portion of the FMRI representing service name");
18477c478bd9Sstevel@tonic-gate 		break;
18487c478bd9Sstevel@tonic-gate 	case 11:
18497c478bd9Sstevel@tonic-gate 		s = gettext("abbreviation for current state");
18507c478bd9Sstevel@tonic-gate 		break;
18517c478bd9Sstevel@tonic-gate 	case 12:
18527c478bd9Sstevel@tonic-gate 		s = gettext("name for current state");
18537c478bd9Sstevel@tonic-gate 		break;
18547c478bd9Sstevel@tonic-gate 	case 13:
18557c478bd9Sstevel@tonic-gate 		s = gettext("time of last state change");
18567c478bd9Sstevel@tonic-gate 		break;
1857048b0279SBryan Cantrill 	case 14:
1858048b0279SBryan Cantrill 		s = gettext("name of zone");
1859048b0279SBryan Cantrill 		break;
18607c478bd9Sstevel@tonic-gate 	}
18617c478bd9Sstevel@tonic-gate 
18627c478bd9Sstevel@tonic-gate 	assert(s != NULL);
18637c478bd9Sstevel@tonic-gate 	return (s);
18647c478bd9Sstevel@tonic-gate }
18657c478bd9Sstevel@tonic-gate 
18667c478bd9Sstevel@tonic-gate 
18677c478bd9Sstevel@tonic-gate static void
18687c478bd9Sstevel@tonic-gate print_usage(const char *progname, FILE *f, boolean_t do_exit)
18697c478bd9Sstevel@tonic-gate {
18707c478bd9Sstevel@tonic-gate 	(void) fprintf(f, gettext(
18717c478bd9Sstevel@tonic-gate 	    "Usage: %1$s [-aHpv] [-o col[,col ... ]] [-R restarter] "
1872048b0279SBryan Cantrill 	    "[-sS col] [-Z | -z zone ]\n            [<service> ...]\n"
18737c478bd9Sstevel@tonic-gate 	    "       %1$s -d | -D [-Hpv] [-o col[,col ... ]] [-sS col] "
1874048b0279SBryan Cantrill 	    "[-Z | -z zone ]\n            [<service> ...]\n"
1875*d5c6878fSBryan Cantrill 	    "       %1$s [-l | -L] [-Z | -z zone] <service> ...\n"
1876048b0279SBryan Cantrill 	    "       %1$s -x [-v] [-Z | -z zone] [<service> ...]\n"
18777c478bd9Sstevel@tonic-gate 	    "       %1$s -?\n"), progname);
18787c478bd9Sstevel@tonic-gate 
18797c478bd9Sstevel@tonic-gate 	if (do_exit)
18807c478bd9Sstevel@tonic-gate 		exit(UU_EXIT_USAGE);
18817c478bd9Sstevel@tonic-gate }
18827c478bd9Sstevel@tonic-gate 
18837c478bd9Sstevel@tonic-gate #define	argserr(progname)	print_usage(progname, stderr, B_TRUE)
18847c478bd9Sstevel@tonic-gate 
18857c478bd9Sstevel@tonic-gate static void
18867c478bd9Sstevel@tonic-gate print_help(const char *progname)
18877c478bd9Sstevel@tonic-gate {
18887c478bd9Sstevel@tonic-gate 	int i;
18897c478bd9Sstevel@tonic-gate 
18907c478bd9Sstevel@tonic-gate 	print_usage(progname, stdout, B_FALSE);
18917c478bd9Sstevel@tonic-gate 
18927c478bd9Sstevel@tonic-gate 	(void) printf(gettext("\n"
18937c478bd9Sstevel@tonic-gate 	"\t-a  list all service instances rather than "
18947c478bd9Sstevel@tonic-gate 	"only those that are enabled\n"
18957c478bd9Sstevel@tonic-gate 	"\t-d  list dependencies of the specified service(s)\n"
18967c478bd9Sstevel@tonic-gate 	"\t-D  list dependents of the specified service(s)\n"
18977c478bd9Sstevel@tonic-gate 	"\t-H  omit header line from output\n"
18987c478bd9Sstevel@tonic-gate 	"\t-l  list detailed information about the specified service(s)\n"
1899*d5c6878fSBryan Cantrill 	"\t-L  list the log file associated with the specified service(s)\n"
19007c478bd9Sstevel@tonic-gate 	"\t-o  list only the specified columns in the output\n"
19017c478bd9Sstevel@tonic-gate 	"\t-p  list process IDs and names associated with each service\n"
19027c478bd9Sstevel@tonic-gate 	"\t-R  list only those services with the specified restarter\n"
19037c478bd9Sstevel@tonic-gate 	"\t-s  sort output in ascending order by the specified column(s)\n"
19047c478bd9Sstevel@tonic-gate 	"\t-S  sort output in descending order by the specified column(s)\n"
19057c478bd9Sstevel@tonic-gate 	"\t-v  list verbose information appropriate to the type of output\n"
19067c478bd9Sstevel@tonic-gate 	"\t-x  explain the status of services that might require maintenance,\n"
19077c478bd9Sstevel@tonic-gate 	"\t    or explain the status of the specified service(s)\n"
1908048b0279SBryan Cantrill 	"\t-z  from global zone, show services in a specified zone\n"
1909048b0279SBryan Cantrill 	"\t-Z  from global zone, show services in all zones\n"
19107c478bd9Sstevel@tonic-gate 	"\n\t"
19117c478bd9Sstevel@tonic-gate 	"Services can be specified using an FMRI, abbreviation, or fnmatch(5)\n"
19127c478bd9Sstevel@tonic-gate 	"\tpattern, as shown in these examples for svc:/network/smtp:sendmail\n"
19137c478bd9Sstevel@tonic-gate 	"\n"
19147c478bd9Sstevel@tonic-gate 	"\t%1$s [opts] svc:/network/smtp:sendmail\n"
19157c478bd9Sstevel@tonic-gate 	"\t%1$s [opts] network/smtp:sendmail\n"
19167c478bd9Sstevel@tonic-gate 	"\t%1$s [opts] network/*mail\n"
19177c478bd9Sstevel@tonic-gate 	"\t%1$s [opts] network/smtp\n"
19187c478bd9Sstevel@tonic-gate 	"\t%1$s [opts] smtp:sendmail\n"
19197c478bd9Sstevel@tonic-gate 	"\t%1$s [opts] smtp\n"
19207c478bd9Sstevel@tonic-gate 	"\t%1$s [opts] sendmail\n"
19217c478bd9Sstevel@tonic-gate 	"\n\t"
19227c478bd9Sstevel@tonic-gate 	"Columns for output or sorting can be specified using these names:\n"
19237c478bd9Sstevel@tonic-gate 	"\n"), progname);
19247c478bd9Sstevel@tonic-gate 
19257c478bd9Sstevel@tonic-gate 	for (i = 0; i < ncolumns; i++) {
19267c478bd9Sstevel@tonic-gate 		(void) printf("\t%-" MAX_COLUMN_NAME_LENGTH_STR "s  %s\n",
19277c478bd9Sstevel@tonic-gate 		    columns[i].name, description_of_column(i));
19287c478bd9Sstevel@tonic-gate 	}
19297c478bd9Sstevel@tonic-gate }
19307c478bd9Sstevel@tonic-gate 
19317c478bd9Sstevel@tonic-gate 
19327c478bd9Sstevel@tonic-gate /*
19337c478bd9Sstevel@tonic-gate  * A getsubopt()-like function which returns an index into the columns table.
19347c478bd9Sstevel@tonic-gate  * On success, *optionp is set to point to the next sub-option, or the
19357c478bd9Sstevel@tonic-gate  * terminating null if there are none.
19367c478bd9Sstevel@tonic-gate  */
19377c478bd9Sstevel@tonic-gate static int
19387c478bd9Sstevel@tonic-gate getcolumnopt(char **optionp)
19397c478bd9Sstevel@tonic-gate {
19407c478bd9Sstevel@tonic-gate 	char *str = *optionp, *cp;
19417c478bd9Sstevel@tonic-gate 	int i;
19427c478bd9Sstevel@tonic-gate 
19437c478bd9Sstevel@tonic-gate 	assert(optionp != NULL);
19447c478bd9Sstevel@tonic-gate 	assert(*optionp != NULL);
19457c478bd9Sstevel@tonic-gate 
19467c478bd9Sstevel@tonic-gate 	cp = strchr(*optionp, ',');
19477c478bd9Sstevel@tonic-gate 	if (cp != NULL)
19487c478bd9Sstevel@tonic-gate 		*cp = '\0';
19497c478bd9Sstevel@tonic-gate 
19507c478bd9Sstevel@tonic-gate 	for (i = 0; i < ncolumns; ++i) {
19517c478bd9Sstevel@tonic-gate 		if (strcasecmp(str, columns[i].name) == 0) {
19527c478bd9Sstevel@tonic-gate 			if (cp != NULL)
19537c478bd9Sstevel@tonic-gate 				*optionp = cp + 1;
19547c478bd9Sstevel@tonic-gate 			else
19557c478bd9Sstevel@tonic-gate 				*optionp = strchr(*optionp, '\0');
19567c478bd9Sstevel@tonic-gate 
19577c478bd9Sstevel@tonic-gate 			return (i);
19587c478bd9Sstevel@tonic-gate 		}
19597c478bd9Sstevel@tonic-gate 	}
19607c478bd9Sstevel@tonic-gate 
19617c478bd9Sstevel@tonic-gate 	return (-1);
19627c478bd9Sstevel@tonic-gate }
19637c478bd9Sstevel@tonic-gate 
19647c478bd9Sstevel@tonic-gate static void
19657c478bd9Sstevel@tonic-gate print_header()
19667c478bd9Sstevel@tonic-gate {
19677c478bd9Sstevel@tonic-gate 	int i;
19687c478bd9Sstevel@tonic-gate 	char *line_buf, *cp;
19697c478bd9Sstevel@tonic-gate 
19707c478bd9Sstevel@tonic-gate 	line_buf = safe_malloc(line_sz);
19717c478bd9Sstevel@tonic-gate 	cp = line_buf;
19727c478bd9Sstevel@tonic-gate 	for (i = 0; i < opt_cnum; ++i) {
19737c478bd9Sstevel@tonic-gate 		const struct column * const colp = &columns[opt_columns[i]];
19747c478bd9Sstevel@tonic-gate 
19757c478bd9Sstevel@tonic-gate 		(void) snprintf(cp, colp->width + 1, "%-*s", colp->width,
19767c478bd9Sstevel@tonic-gate 		    colp->name);
19777c478bd9Sstevel@tonic-gate 		cp += colp->width;
19787c478bd9Sstevel@tonic-gate 		*cp++ = ' ';
19797c478bd9Sstevel@tonic-gate 	}
19807c478bd9Sstevel@tonic-gate 
19817c478bd9Sstevel@tonic-gate 	/* Trim the trailing whitespace */
19827c478bd9Sstevel@tonic-gate 	--cp;
19837c478bd9Sstevel@tonic-gate 	while (*cp == ' ')
19847c478bd9Sstevel@tonic-gate 		--cp;
19857c478bd9Sstevel@tonic-gate 	*(cp+1) = '\0';
19867c478bd9Sstevel@tonic-gate 	(void) puts(line_buf);
19877c478bd9Sstevel@tonic-gate 
19887c478bd9Sstevel@tonic-gate 	free(line_buf);
19897c478bd9Sstevel@tonic-gate }
19907c478bd9Sstevel@tonic-gate 
19917c478bd9Sstevel@tonic-gate 
19927c478bd9Sstevel@tonic-gate 
19937c478bd9Sstevel@tonic-gate /*
19947c478bd9Sstevel@tonic-gate  * Long listing (-l) functions.
19957c478bd9Sstevel@tonic-gate  */
19967c478bd9Sstevel@tonic-gate 
19977c478bd9Sstevel@tonic-gate static int
19987c478bd9Sstevel@tonic-gate pidcmp(const void *l, const void *r)
19997c478bd9Sstevel@tonic-gate {
20007c478bd9Sstevel@tonic-gate 	pid_t lp = *(pid_t *)l, rp = *(pid_t *)r;
20017c478bd9Sstevel@tonic-gate 
20027c478bd9Sstevel@tonic-gate 	if (lp < rp)
20037c478bd9Sstevel@tonic-gate 		return (-1);
20047c478bd9Sstevel@tonic-gate 	if (lp > rp)
20057c478bd9Sstevel@tonic-gate 		return (1);
20067c478bd9Sstevel@tonic-gate 	return (0);
20077c478bd9Sstevel@tonic-gate }
20087c478bd9Sstevel@tonic-gate 
20097c478bd9Sstevel@tonic-gate /*
20107c478bd9Sstevel@tonic-gate  * This is the strlen() of the longest label ("description"), plus intercolumn
20117c478bd9Sstevel@tonic-gate  * space.
20127c478bd9Sstevel@tonic-gate  */
20137c478bd9Sstevel@tonic-gate #define	DETAILED_WIDTH	(11 + 2)
20147c478bd9Sstevel@tonic-gate 
201594501b61Sskamm /*
201694501b61Sskamm  * Callback routine to print header for contract id.
201794501b61Sskamm  * Called by ctids_by_restarter and print_detailed.
201894501b61Sskamm  */
201994501b61Sskamm static void
202094501b61Sskamm print_ctid_header()
202194501b61Sskamm {
202294501b61Sskamm 	(void) printf("%-*s", DETAILED_WIDTH, "contract_id");
202394501b61Sskamm }
202494501b61Sskamm 
202594501b61Sskamm /*
202694501b61Sskamm  * Callback routine to print a contract id.
202794501b61Sskamm  * Called by ctids_by_restarter and print_detailed.
202894501b61Sskamm  */
202994501b61Sskamm static void
203094501b61Sskamm print_ctid_detailed(uint64_t c)
203194501b61Sskamm {
203294501b61Sskamm 	(void) printf("%lu ", (ctid_t)c);
203394501b61Sskamm }
203494501b61Sskamm 
20357c478bd9Sstevel@tonic-gate static void
203694501b61Sskamm detailed_list_processes(scf_walkinfo_t *wip)
20377c478bd9Sstevel@tonic-gate {
20387c478bd9Sstevel@tonic-gate 	uint64_t c;
20397c478bd9Sstevel@tonic-gate 	pid_t *pids;
20407c478bd9Sstevel@tonic-gate 	uint_t i, n;
20417c478bd9Sstevel@tonic-gate 	psinfo_t psi;
20427c478bd9Sstevel@tonic-gate 
204394501b61Sskamm 	if (get_restarter_count_prop(wip->inst, scf_property_contract, &c,
20447c478bd9Sstevel@tonic-gate 	    EMPTY_OK) != 0)
20457c478bd9Sstevel@tonic-gate 		return;
20467c478bd9Sstevel@tonic-gate 
204794501b61Sskamm 	if (instance_processes(wip->inst, wip->fmri, &pids, &n) != 0)
20487c478bd9Sstevel@tonic-gate 		return;
20497c478bd9Sstevel@tonic-gate 
20507c478bd9Sstevel@tonic-gate 	qsort(pids, n, sizeof (*pids), pidcmp);
20517c478bd9Sstevel@tonic-gate 
20527c478bd9Sstevel@tonic-gate 	for (i = 0; i < n; ++i) {
20537c478bd9Sstevel@tonic-gate 		(void) printf("%-*s%lu", DETAILED_WIDTH, gettext("process"),
20547c478bd9Sstevel@tonic-gate 		    pids[i]);
20557c478bd9Sstevel@tonic-gate 
20567c478bd9Sstevel@tonic-gate 		if (get_psinfo(pids[i], &psi) == 0)
20577c478bd9Sstevel@tonic-gate 			(void) printf(" %.*s", PRARGSZ, psi.pr_psargs);
20587c478bd9Sstevel@tonic-gate 
20597c478bd9Sstevel@tonic-gate 		(void) putchar('\n');
20607c478bd9Sstevel@tonic-gate 	}
20617c478bd9Sstevel@tonic-gate 
20627c478bd9Sstevel@tonic-gate 	free(pids);
20637c478bd9Sstevel@tonic-gate }
20647c478bd9Sstevel@tonic-gate 
20657c478bd9Sstevel@tonic-gate /*
20667c478bd9Sstevel@tonic-gate  * Determines the state of a dependency.  If the FMRI specifies a file, then we
20677c478bd9Sstevel@tonic-gate  * fake up a state based on whether we can access the file.
20687c478bd9Sstevel@tonic-gate  */
20697c478bd9Sstevel@tonic-gate static void
20707c478bd9Sstevel@tonic-gate get_fmri_state(char *fmri, char *state, size_t state_sz)
20717c478bd9Sstevel@tonic-gate {
20727c478bd9Sstevel@tonic-gate 	char *lfmri;
20737c478bd9Sstevel@tonic-gate 	const char *svc_name, *inst_name, *pg_name, *path;
20747c478bd9Sstevel@tonic-gate 	scf_service_t *svc;
20757c478bd9Sstevel@tonic-gate 	scf_instance_t *inst;
20767c478bd9Sstevel@tonic-gate 	scf_iter_t *iter;
20777c478bd9Sstevel@tonic-gate 
20787c478bd9Sstevel@tonic-gate 	lfmri = safe_strdup(fmri);
20797c478bd9Sstevel@tonic-gate 
20807c478bd9Sstevel@tonic-gate 	/*
20817c478bd9Sstevel@tonic-gate 	 * Check for file:// dependencies
20827c478bd9Sstevel@tonic-gate 	 */
20837c478bd9Sstevel@tonic-gate 	if (scf_parse_file_fmri(lfmri, NULL, &path) == SCF_SUCCESS) {
20847c478bd9Sstevel@tonic-gate 		struct stat64 statbuf;
20857c478bd9Sstevel@tonic-gate 		const char *msg;
20867c478bd9Sstevel@tonic-gate 
20877c478bd9Sstevel@tonic-gate 		if (stat64(path, &statbuf) == 0)
20887c478bd9Sstevel@tonic-gate 			msg = "online";
20897c478bd9Sstevel@tonic-gate 		else if (errno == ENOENT)
20907c478bd9Sstevel@tonic-gate 			msg = "absent";
20917c478bd9Sstevel@tonic-gate 		else
20927c478bd9Sstevel@tonic-gate 			msg = "unknown";
20937c478bd9Sstevel@tonic-gate 
20947c478bd9Sstevel@tonic-gate 		(void) strlcpy(state, msg, state_sz);
20957c478bd9Sstevel@tonic-gate 		return;
20967c478bd9Sstevel@tonic-gate 	}
20977c478bd9Sstevel@tonic-gate 
20987c478bd9Sstevel@tonic-gate 	/*
20997c478bd9Sstevel@tonic-gate 	 * scf_parse_file_fmri() may have overwritten part of the string, so
21007c478bd9Sstevel@tonic-gate 	 * copy it back.
21017c478bd9Sstevel@tonic-gate 	 */
21027c478bd9Sstevel@tonic-gate 	(void) strcpy(lfmri, fmri);
21037c478bd9Sstevel@tonic-gate 
21047c478bd9Sstevel@tonic-gate 	if (scf_parse_svc_fmri(lfmri, NULL, &svc_name, &inst_name,
21057c478bd9Sstevel@tonic-gate 	    &pg_name, NULL) != SCF_SUCCESS) {
21067c478bd9Sstevel@tonic-gate 		free(lfmri);
21077c478bd9Sstevel@tonic-gate 		(void) strlcpy(state, "invalid", state_sz);
21087c478bd9Sstevel@tonic-gate 		return;
21097c478bd9Sstevel@tonic-gate 	}
21107c478bd9Sstevel@tonic-gate 
21117c478bd9Sstevel@tonic-gate 	free(lfmri);
21127c478bd9Sstevel@tonic-gate 
21137c478bd9Sstevel@tonic-gate 	if (svc_name == NULL || pg_name != NULL) {
21147c478bd9Sstevel@tonic-gate 		(void) strlcpy(state, "invalid", state_sz);
21157c478bd9Sstevel@tonic-gate 		return;
21167c478bd9Sstevel@tonic-gate 	}
21177c478bd9Sstevel@tonic-gate 
21187c478bd9Sstevel@tonic-gate 	if (inst_name != NULL) {
21197c478bd9Sstevel@tonic-gate 		/* instance: get state */
21207c478bd9Sstevel@tonic-gate 		inst = scf_instance_create(h);
21217c478bd9Sstevel@tonic-gate 		if (inst == NULL)
21227c478bd9Sstevel@tonic-gate 			scfdie();
21237c478bd9Sstevel@tonic-gate 
21247c478bd9Sstevel@tonic-gate 		if (scf_handle_decode_fmri(h, fmri, NULL, NULL, inst, NULL,
21257c478bd9Sstevel@tonic-gate 		    NULL, SCF_DECODE_FMRI_EXACT) == SCF_SUCCESS)
21267c478bd9Sstevel@tonic-gate 			get_restarter_string_prop(inst, scf_property_state,
21277c478bd9Sstevel@tonic-gate 			    state, state_sz);
21287c478bd9Sstevel@tonic-gate 		else {
21297c478bd9Sstevel@tonic-gate 			switch (scf_error()) {
21307c478bd9Sstevel@tonic-gate 			case SCF_ERROR_INVALID_ARGUMENT:
21317c478bd9Sstevel@tonic-gate 				(void) strlcpy(state, "invalid", state_sz);
21327c478bd9Sstevel@tonic-gate 				break;
21337c478bd9Sstevel@tonic-gate 			case SCF_ERROR_NOT_FOUND:
21347c478bd9Sstevel@tonic-gate 				(void) strlcpy(state, "absent", state_sz);
21357c478bd9Sstevel@tonic-gate 				break;
21367c478bd9Sstevel@tonic-gate 
21377c478bd9Sstevel@tonic-gate 			default:
21387c478bd9Sstevel@tonic-gate 				scfdie();
21397c478bd9Sstevel@tonic-gate 			}
21407c478bd9Sstevel@tonic-gate 		}
21417c478bd9Sstevel@tonic-gate 
21427c478bd9Sstevel@tonic-gate 		scf_instance_destroy(inst);
21437c478bd9Sstevel@tonic-gate 		return;
21447c478bd9Sstevel@tonic-gate 	}
21457c478bd9Sstevel@tonic-gate 
21467c478bd9Sstevel@tonic-gate 	/*
21477c478bd9Sstevel@tonic-gate 	 * service: If only one instance, use that state.  Otherwise, say
21487c478bd9Sstevel@tonic-gate 	 * "multiple".
21497c478bd9Sstevel@tonic-gate 	 */
21507c478bd9Sstevel@tonic-gate 	if ((svc = scf_service_create(h)) == NULL ||
21517c478bd9Sstevel@tonic-gate 	    (inst = scf_instance_create(h)) == NULL ||
21527c478bd9Sstevel@tonic-gate 	    (iter = scf_iter_create(h)) == NULL)
21537c478bd9Sstevel@tonic-gate 		scfdie();
21547c478bd9Sstevel@tonic-gate 
21557c478bd9Sstevel@tonic-gate 	if (scf_handle_decode_fmri(h, fmri, NULL, svc, NULL, NULL, NULL,
21567c478bd9Sstevel@tonic-gate 	    SCF_DECODE_FMRI_EXACT) != SCF_SUCCESS) {
21577c478bd9Sstevel@tonic-gate 		switch (scf_error()) {
21587c478bd9Sstevel@tonic-gate 		case SCF_ERROR_INVALID_ARGUMENT:
21597c478bd9Sstevel@tonic-gate 			(void) strlcpy(state, "invalid", state_sz);
21607c478bd9Sstevel@tonic-gate 			goto out;
21617c478bd9Sstevel@tonic-gate 		case SCF_ERROR_NOT_FOUND:
21627c478bd9Sstevel@tonic-gate 			(void) strlcpy(state, "absent", state_sz);
21637c478bd9Sstevel@tonic-gate 			goto out;
21647c478bd9Sstevel@tonic-gate 
21657c478bd9Sstevel@tonic-gate 		default:
21667c478bd9Sstevel@tonic-gate 			scfdie();
21677c478bd9Sstevel@tonic-gate 		}
21687c478bd9Sstevel@tonic-gate 	}
21697c478bd9Sstevel@tonic-gate 
21707c478bd9Sstevel@tonic-gate 	if (scf_iter_service_instances(iter, svc) != SCF_SUCCESS)
21717c478bd9Sstevel@tonic-gate 		scfdie();
21727c478bd9Sstevel@tonic-gate 
21737c478bd9Sstevel@tonic-gate 	switch (scf_iter_next_instance(iter, inst)) {
21747c478bd9Sstevel@tonic-gate 	case 0:
21757c478bd9Sstevel@tonic-gate 		(void) strlcpy(state, "absent", state_sz);
21767c478bd9Sstevel@tonic-gate 		goto out;
21777c478bd9Sstevel@tonic-gate 
21787c478bd9Sstevel@tonic-gate 	case 1:
21797c478bd9Sstevel@tonic-gate 		break;
21807c478bd9Sstevel@tonic-gate 
21817c478bd9Sstevel@tonic-gate 	default:
21827c478bd9Sstevel@tonic-gate 		scfdie();
21837c478bd9Sstevel@tonic-gate 	}
21847c478bd9Sstevel@tonic-gate 
21857c478bd9Sstevel@tonic-gate 	/* Get the state in case this is the only instance. */
21867c478bd9Sstevel@tonic-gate 	get_restarter_string_prop(inst, scf_property_state, state, state_sz);
21877c478bd9Sstevel@tonic-gate 
21887c478bd9Sstevel@tonic-gate 	switch (scf_iter_next_instance(iter, inst)) {
21897c478bd9Sstevel@tonic-gate 	case 0:
21907c478bd9Sstevel@tonic-gate 		break;
21917c478bd9Sstevel@tonic-gate 
21927c478bd9Sstevel@tonic-gate 	case 1:
21937c478bd9Sstevel@tonic-gate 		/* Nope, multiple instances. */
21947c478bd9Sstevel@tonic-gate 		(void) strlcpy(state, "multiple", state_sz);
21957c478bd9Sstevel@tonic-gate 		goto out;
21967c478bd9Sstevel@tonic-gate 
21977c478bd9Sstevel@tonic-gate 	default:
21987c478bd9Sstevel@tonic-gate 		scfdie();
21997c478bd9Sstevel@tonic-gate 	}
22007c478bd9Sstevel@tonic-gate 
22017c478bd9Sstevel@tonic-gate out:
22027c478bd9Sstevel@tonic-gate 	scf_iter_destroy(iter);
22037c478bd9Sstevel@tonic-gate 	scf_instance_destroy(inst);
22047c478bd9Sstevel@tonic-gate 	scf_service_destroy(svc);
22057c478bd9Sstevel@tonic-gate }
22067c478bd9Sstevel@tonic-gate 
22071f6eb021SLiane Praza static void
22081f6eb021SLiane Praza print_application_properties(scf_walkinfo_t *wip, scf_snapshot_t *snap)
22091f6eb021SLiane Praza {
22101f6eb021SLiane Praza 	scf_iter_t *pg_iter, *prop_iter, *val_iter;
22111f6eb021SLiane Praza 	scf_propertygroup_t *pg;
22121f6eb021SLiane Praza 	scf_property_t *prop;
22131f6eb021SLiane Praza 	scf_value_t *val;
22141f6eb021SLiane Praza 	scf_pg_tmpl_t *pt;
22151f6eb021SLiane Praza 	scf_prop_tmpl_t *prt;
22161f6eb021SLiane Praza 	char *pg_name_buf = safe_malloc(max_scf_name_length + 1);
22171f6eb021SLiane Praza 	char *prop_name_buf = safe_malloc(max_scf_name_length + 1);
22181f6eb021SLiane Praza 	char *snap_name = safe_malloc(max_scf_name_length + 1);
22191f6eb021SLiane Praza 	char *val_buf = safe_malloc(max_scf_value_length + 1);
22201f6eb021SLiane Praza 	char *desc, *cp;
22211f6eb021SLiane Praza 	scf_type_t type;
22221f6eb021SLiane Praza 	int i, j, k;
22231f6eb021SLiane Praza 	uint8_t vis;
22241f6eb021SLiane Praza 
22251f6eb021SLiane Praza 	if ((pg_iter = scf_iter_create(h)) == NULL ||
22261f6eb021SLiane Praza 	    (prop_iter = scf_iter_create(h)) == NULL ||
22271f6eb021SLiane Praza 	    (val_iter = scf_iter_create(h)) == NULL ||
22281f6eb021SLiane Praza 	    (val = scf_value_create(h)) == NULL ||
22291f6eb021SLiane Praza 	    (prop = scf_property_create(h)) == NULL ||
22301f6eb021SLiane Praza 	    (pt = scf_tmpl_pg_create(h)) == NULL ||
22311f6eb021SLiane Praza 	    (prt = scf_tmpl_prop_create(h)) == NULL ||
22321f6eb021SLiane Praza 	    (pg = scf_pg_create(h)) == NULL)
22331f6eb021SLiane Praza 		scfdie();
22341f6eb021SLiane Praza 
22351f6eb021SLiane Praza 	if (scf_iter_instance_pgs_typed_composed(pg_iter, wip->inst, snap,
22361f6eb021SLiane Praza 	    SCF_PG_APP_DEFAULT) == -1)
22371f6eb021SLiane Praza 		scfdie();
22381f6eb021SLiane Praza 
22391f6eb021SLiane Praza 	/*
22401f6eb021SLiane Praza 	 * Format for output:
22411f6eb021SLiane Praza 	 *	pg (pgtype)
22421f6eb021SLiane Praza 	 *	 description
22431f6eb021SLiane Praza 	 *	pg/prop (proptype) = <value> <value>
22441f6eb021SLiane Praza 	 *	 description
22451f6eb021SLiane Praza 	 */
22461f6eb021SLiane Praza 	while ((i = scf_iter_next_pg(pg_iter, pg)) == 1) {
22471f6eb021SLiane Praza 		int tmpl = 0;
22481f6eb021SLiane Praza 
22491f6eb021SLiane Praza 		if (scf_pg_get_name(pg, pg_name_buf, max_scf_name_length) < 0)
22501f6eb021SLiane Praza 			scfdie();
22511f6eb021SLiane Praza 		if (scf_snapshot_get_name(snap, snap_name,
22521f6eb021SLiane Praza 		    max_scf_name_length) < 0)
22531f6eb021SLiane Praza 			scfdie();
22541f6eb021SLiane Praza 
22551f6eb021SLiane Praza 		if (scf_tmpl_get_by_pg_name(wip->fmri, snap_name, pg_name_buf,
22561f6eb021SLiane Praza 		    SCF_PG_APP_DEFAULT, pt, 0) == 0)
22571f6eb021SLiane Praza 			tmpl = 1;
22581f6eb021SLiane Praza 		else
22591f6eb021SLiane Praza 			tmpl = 0;
22601f6eb021SLiane Praza 
22611f6eb021SLiane Praza 		(void) printf("%s (%s)\n", pg_name_buf, SCF_PG_APP_DEFAULT);
22621f6eb021SLiane Praza 
22631f6eb021SLiane Praza 		if (tmpl == 1 && scf_tmpl_pg_description(pt, NULL, &desc) > 0) {
22641f6eb021SLiane Praza 			(void) printf("  %s\n", desc);
22651f6eb021SLiane Praza 			free(desc);
22661f6eb021SLiane Praza 		}
22671f6eb021SLiane Praza 
22681f6eb021SLiane Praza 		if (scf_iter_pg_properties(prop_iter, pg) == -1)
22691f6eb021SLiane Praza 			scfdie();
22701f6eb021SLiane Praza 		while ((j = scf_iter_next_property(prop_iter, prop)) == 1) {
22711f6eb021SLiane Praza 			if (scf_property_get_name(prop, prop_name_buf,
22721f6eb021SLiane Praza 			    max_scf_name_length) < 0)
22731f6eb021SLiane Praza 				scfdie();
22741f6eb021SLiane Praza 			if (scf_property_type(prop, &type) == -1)
22751f6eb021SLiane Praza 				scfdie();
22761f6eb021SLiane Praza 
22771f6eb021SLiane Praza 			if ((tmpl == 1) &&
22781f6eb021SLiane Praza 			    (scf_tmpl_get_by_prop(pt, prop_name_buf, prt,
22791f6eb021SLiane Praza 			    0) != 0))
22801f6eb021SLiane Praza 				tmpl = 0;
22811f6eb021SLiane Praza 
22821f6eb021SLiane Praza 			if (tmpl == 1 &&
22831f6eb021SLiane Praza 			    scf_tmpl_prop_visibility(prt, &vis) != -1 &&
22841f6eb021SLiane Praza 			    vis == SCF_TMPL_VISIBILITY_HIDDEN)
22851f6eb021SLiane Praza 				continue;
22861f6eb021SLiane Praza 
22871f6eb021SLiane Praza 			(void) printf("%s/%s (%s) = ", pg_name_buf,
22881f6eb021SLiane Praza 			    prop_name_buf, scf_type_to_string(type));
22891f6eb021SLiane Praza 
22901f6eb021SLiane Praza 			if (scf_iter_property_values(val_iter, prop) == -1)
22911f6eb021SLiane Praza 				scfdie();
22921f6eb021SLiane Praza 
22931f6eb021SLiane Praza 			while ((k = scf_iter_next_value(val_iter, val)) == 1) {
22941f6eb021SLiane Praza 				if (scf_value_get_as_string(val, val_buf,
22951f6eb021SLiane Praza 				    max_scf_value_length + 1) < 0)
22961f6eb021SLiane Praza 					scfdie();
22971f6eb021SLiane Praza 				if (strpbrk(val_buf, " \t\n\"()") != NULL) {
22981f6eb021SLiane Praza 					(void) printf("\"");
22991f6eb021SLiane Praza 					for (cp = val_buf; *cp != '\0'; ++cp) {
23001f6eb021SLiane Praza 						if (*cp == '"' || *cp == '\\')
23011f6eb021SLiane Praza 							(void) putc('\\',
23021f6eb021SLiane Praza 							    stdout);
23031f6eb021SLiane Praza 
23041f6eb021SLiane Praza 						(void) putc(*cp, stdout);
23051f6eb021SLiane Praza 					}
23061f6eb021SLiane Praza 					(void) printf("\"");
23071f6eb021SLiane Praza 				} else {
23081f6eb021SLiane Praza 					(void) printf("%s ", val_buf);
23091f6eb021SLiane Praza 				}
23101f6eb021SLiane Praza 			}
23111f6eb021SLiane Praza 
23121f6eb021SLiane Praza 			(void) printf("\n");
23131f6eb021SLiane Praza 
23141f6eb021SLiane Praza 			if (k == -1)
23151f6eb021SLiane Praza 				scfdie();
23161f6eb021SLiane Praza 
23171f6eb021SLiane Praza 			if (tmpl == 1 && scf_tmpl_prop_description(prt, NULL,
23181f6eb021SLiane Praza 			    &desc) > 0) {
23191f6eb021SLiane Praza 				(void) printf("  %s\n", desc);
23201f6eb021SLiane Praza 				free(desc);
23211f6eb021SLiane Praza 			}
23221f6eb021SLiane Praza 		}
23231f6eb021SLiane Praza 		if (j == -1)
23241f6eb021SLiane Praza 			scfdie();
23251f6eb021SLiane Praza 	}
23261f6eb021SLiane Praza 	if (i == -1)
23271f6eb021SLiane Praza 		scfdie();
23281f6eb021SLiane Praza 
23291f6eb021SLiane Praza 
23301f6eb021SLiane Praza 	scf_iter_destroy(pg_iter);
23311f6eb021SLiane Praza 	scf_iter_destroy(prop_iter);
23321f6eb021SLiane Praza 	scf_iter_destroy(val_iter);
23331f6eb021SLiane Praza 	scf_value_destroy(val);
23341f6eb021SLiane Praza 	scf_property_destroy(prop);
23351f6eb021SLiane Praza 	scf_tmpl_pg_destroy(pt);
23361f6eb021SLiane Praza 	scf_tmpl_prop_destroy(prt);
23371f6eb021SLiane Praza 	scf_pg_destroy(pg);
23381f6eb021SLiane Praza 	free(pg_name_buf);
23391f6eb021SLiane Praza 	free(prop_name_buf);
23401f6eb021SLiane Praza 	free(snap_name);
23411f6eb021SLiane Praza 	free(val_buf);
23421f6eb021SLiane Praza }
23431f6eb021SLiane Praza 
23447c478bd9Sstevel@tonic-gate static void
23457c478bd9Sstevel@tonic-gate print_detailed_dependency(scf_propertygroup_t *pg)
23467c478bd9Sstevel@tonic-gate {
23477c478bd9Sstevel@tonic-gate 	scf_property_t *eprop;
23487c478bd9Sstevel@tonic-gate 	scf_iter_t *iter;
23497c478bd9Sstevel@tonic-gate 	scf_type_t ty;
23507c478bd9Sstevel@tonic-gate 	char *val_buf;
23517c478bd9Sstevel@tonic-gate 	int i;
23527c478bd9Sstevel@tonic-gate 
23537c478bd9Sstevel@tonic-gate 	if ((eprop = scf_property_create(h)) == NULL ||
23547c478bd9Sstevel@tonic-gate 	    (iter = scf_iter_create(h)) == NULL)
23557c478bd9Sstevel@tonic-gate 		scfdie();
23567c478bd9Sstevel@tonic-gate 
23577c478bd9Sstevel@tonic-gate 	val_buf = safe_malloc(max_scf_value_length + 1);
23587c478bd9Sstevel@tonic-gate 
23597c478bd9Sstevel@tonic-gate 	if (scf_pg_get_property(pg, SCF_PROPERTY_ENTITIES, eprop) !=
23607c478bd9Sstevel@tonic-gate 	    SCF_SUCCESS ||
23617c478bd9Sstevel@tonic-gate 	    scf_property_type(eprop, &ty) != SCF_SUCCESS ||
23627c478bd9Sstevel@tonic-gate 	    ty != SCF_TYPE_FMRI)
23637c478bd9Sstevel@tonic-gate 		return;
23647c478bd9Sstevel@tonic-gate 
23657c478bd9Sstevel@tonic-gate 	(void) printf("%-*s", DETAILED_WIDTH, gettext("dependency"));
23667c478bd9Sstevel@tonic-gate 
23677c478bd9Sstevel@tonic-gate 	/* Print the grouping */
23687c478bd9Sstevel@tonic-gate 	if (pg_get_single_val(pg, SCF_PROPERTY_GROUPING, SCF_TYPE_ASTRING,
23697c478bd9Sstevel@tonic-gate 	    val_buf, max_scf_value_length + 1, 0) == 0)
23707c478bd9Sstevel@tonic-gate 		(void) fputs(val_buf, stdout);
23717c478bd9Sstevel@tonic-gate 	else
23727c478bd9Sstevel@tonic-gate 		(void) putchar('?');
23737c478bd9Sstevel@tonic-gate 
23747c478bd9Sstevel@tonic-gate 	(void) putchar('/');
23757c478bd9Sstevel@tonic-gate 
23767c478bd9Sstevel@tonic-gate 	if (pg_get_single_val(pg, SCF_PROPERTY_RESTART_ON, SCF_TYPE_ASTRING,
23777c478bd9Sstevel@tonic-gate 	    val_buf, max_scf_value_length + 1, 0) == 0)
23787c478bd9Sstevel@tonic-gate 		(void) fputs(val_buf, stdout);
23797c478bd9Sstevel@tonic-gate 	else
23807c478bd9Sstevel@tonic-gate 		(void) putchar('?');
23817c478bd9Sstevel@tonic-gate 
23827c478bd9Sstevel@tonic-gate 	/* Print the dependency entities. */
23837c478bd9Sstevel@tonic-gate 	if (scf_iter_property_values(iter, eprop) == -1)
23847c478bd9Sstevel@tonic-gate 		scfdie();
23857c478bd9Sstevel@tonic-gate 
23867c478bd9Sstevel@tonic-gate 	while ((i = scf_iter_next_value(iter, g_val)) == 1) {
23877c478bd9Sstevel@tonic-gate 		char state[MAX_SCF_STATE_STRING_SZ];
23887c478bd9Sstevel@tonic-gate 
23897c478bd9Sstevel@tonic-gate 		if (scf_value_get_astring(g_val, val_buf,
23907c478bd9Sstevel@tonic-gate 		    max_scf_value_length + 1) < 0)
23917c478bd9Sstevel@tonic-gate 			scfdie();
23927c478bd9Sstevel@tonic-gate 
23937c478bd9Sstevel@tonic-gate 		(void) putchar(' ');
23947c478bd9Sstevel@tonic-gate 		(void) fputs(val_buf, stdout);
23957c478bd9Sstevel@tonic-gate 
23967c478bd9Sstevel@tonic-gate 		/* Print the state. */
23977c478bd9Sstevel@tonic-gate 		state[0] = '-';
23987c478bd9Sstevel@tonic-gate 		state[1] = '\0';
23997c478bd9Sstevel@tonic-gate 
24007c478bd9Sstevel@tonic-gate 		get_fmri_state(val_buf, state, sizeof (state));
24017c478bd9Sstevel@tonic-gate 
24027c478bd9Sstevel@tonic-gate 		(void) printf(" (%s)", state);
24037c478bd9Sstevel@tonic-gate 	}
24047c478bd9Sstevel@tonic-gate 	if (i == -1)
24057c478bd9Sstevel@tonic-gate 		scfdie();
24067c478bd9Sstevel@tonic-gate 
24077c478bd9Sstevel@tonic-gate 	(void) putchar('\n');
24087c478bd9Sstevel@tonic-gate 
24097c478bd9Sstevel@tonic-gate 	free(val_buf);
24107c478bd9Sstevel@tonic-gate 	scf_iter_destroy(iter);
24117c478bd9Sstevel@tonic-gate 	scf_property_destroy(eprop);
24127c478bd9Sstevel@tonic-gate }
24137c478bd9Sstevel@tonic-gate 
24147c478bd9Sstevel@tonic-gate /* ARGSUSED */
24157c478bd9Sstevel@tonic-gate static int
24167c478bd9Sstevel@tonic-gate print_detailed(void *unused, scf_walkinfo_t *wip)
24177c478bd9Sstevel@tonic-gate {
24187c478bd9Sstevel@tonic-gate 	scf_snapshot_t *snap;
24197c478bd9Sstevel@tonic-gate 	scf_propertygroup_t *rpg;
24207c478bd9Sstevel@tonic-gate 	scf_iter_t *pg_iter;
24217c478bd9Sstevel@tonic-gate 
24227c478bd9Sstevel@tonic-gate 	char *buf;
24237c478bd9Sstevel@tonic-gate 	char *timebuf;
24247c478bd9Sstevel@tonic-gate 	size_t tbsz;
24257c478bd9Sstevel@tonic-gate 	int ret;
24267c478bd9Sstevel@tonic-gate 	uint64_t c;
24277c478bd9Sstevel@tonic-gate 	int temp, perm;
24287c478bd9Sstevel@tonic-gate 	struct timeval tv;
24297c478bd9Sstevel@tonic-gate 	time_t stime;
24307c478bd9Sstevel@tonic-gate 	struct tm *tmp;
243194501b61Sskamm 	int restarter_spec;
243294501b61Sskamm 	int restarter_ret;
24337c478bd9Sstevel@tonic-gate 
24347c478bd9Sstevel@tonic-gate 	const char * const fmt = "%-*s%s\n";
24357c478bd9Sstevel@tonic-gate 
24367c478bd9Sstevel@tonic-gate 	assert(wip->pg == NULL);
24377c478bd9Sstevel@tonic-gate 
24387c478bd9Sstevel@tonic-gate 	rpg = scf_pg_create(h);
24397c478bd9Sstevel@tonic-gate 	if (rpg == NULL)
24407c478bd9Sstevel@tonic-gate 		scfdie();
24417c478bd9Sstevel@tonic-gate 
24427c478bd9Sstevel@tonic-gate 	if (first_paragraph)
24437c478bd9Sstevel@tonic-gate 		first_paragraph = 0;
24447c478bd9Sstevel@tonic-gate 	else
24457c478bd9Sstevel@tonic-gate 		(void) putchar('\n');
24467c478bd9Sstevel@tonic-gate 
24477c478bd9Sstevel@tonic-gate 	buf = safe_malloc(max_scf_fmri_length + 1);
24487c478bd9Sstevel@tonic-gate 
24497c478bd9Sstevel@tonic-gate 	if (scf_instance_to_fmri(wip->inst, buf, max_scf_fmri_length + 1) != -1)
24507c478bd9Sstevel@tonic-gate 		(void) printf(fmt, DETAILED_WIDTH, "fmri", buf);
24517c478bd9Sstevel@tonic-gate 
24527c478bd9Sstevel@tonic-gate 	if (common_name_buf == NULL)
24537c478bd9Sstevel@tonic-gate 		common_name_buf = safe_malloc(max_scf_value_length + 1);
24547c478bd9Sstevel@tonic-gate 
24557c478bd9Sstevel@tonic-gate 	if (inst_get_single_val(wip->inst, SCF_PG_TM_COMMON_NAME, locale,
24567c478bd9Sstevel@tonic-gate 	    SCF_TYPE_USTRING, common_name_buf, max_scf_value_length, 0, 1, 1)
24577c478bd9Sstevel@tonic-gate 	    == 0)
24587c478bd9Sstevel@tonic-gate 		(void) printf(fmt, DETAILED_WIDTH, gettext("name"),
24597c478bd9Sstevel@tonic-gate 		    common_name_buf);
24607c478bd9Sstevel@tonic-gate 	else if (inst_get_single_val(wip->inst, SCF_PG_TM_COMMON_NAME, "C",
24617c478bd9Sstevel@tonic-gate 	    SCF_TYPE_USTRING, common_name_buf, max_scf_value_length, 0, 1, 1)
24627c478bd9Sstevel@tonic-gate 	    == 0)
24637c478bd9Sstevel@tonic-gate 		(void) printf(fmt, DETAILED_WIDTH, gettext("name"),
24647c478bd9Sstevel@tonic-gate 		    common_name_buf);
24657c478bd9Sstevel@tonic-gate 
2466048b0279SBryan Cantrill 	if (g_zonename != NULL)
2467048b0279SBryan Cantrill 		(void) printf(fmt, DETAILED_WIDTH, gettext("zone"), g_zonename);
2468048b0279SBryan Cantrill 
24697c478bd9Sstevel@tonic-gate 	/*
24707c478bd9Sstevel@tonic-gate 	 * Synthesize an 'enabled' property that hides the enabled_ovr
24717c478bd9Sstevel@tonic-gate 	 * implementation from the user.  If the service has been temporarily
24727c478bd9Sstevel@tonic-gate 	 * set to a state other than its permanent value, alert the user with
24737c478bd9Sstevel@tonic-gate 	 * a '(temporary)' message.
24747c478bd9Sstevel@tonic-gate 	 */
24757c478bd9Sstevel@tonic-gate 	perm = instance_enabled(wip->inst, B_FALSE);
24767c478bd9Sstevel@tonic-gate 	temp = instance_enabled(wip->inst, B_TRUE);
24777c478bd9Sstevel@tonic-gate 	if (temp != -1) {
24787c478bd9Sstevel@tonic-gate 		if (temp != perm)
24797c478bd9Sstevel@tonic-gate 			(void) printf(gettext("%-*s%s (temporary)\n"),
24807c478bd9Sstevel@tonic-gate 			    DETAILED_WIDTH, gettext("enabled"),
24817c478bd9Sstevel@tonic-gate 			    temp ? gettext("true") : gettext("false"));
24827c478bd9Sstevel@tonic-gate 		else
24837c478bd9Sstevel@tonic-gate 			(void) printf(fmt, DETAILED_WIDTH,
24847c478bd9Sstevel@tonic-gate 			    gettext("enabled"), temp ? gettext("true") :
24857c478bd9Sstevel@tonic-gate 			    gettext("false"));
24867c478bd9Sstevel@tonic-gate 	} else if (perm != -1) {
24877c478bd9Sstevel@tonic-gate 		(void) printf(fmt, DETAILED_WIDTH, gettext("enabled"),
24887c478bd9Sstevel@tonic-gate 		    perm ? gettext("true") : gettext("false"));
24897c478bd9Sstevel@tonic-gate 	}
24907c478bd9Sstevel@tonic-gate 
24917c478bd9Sstevel@tonic-gate 	/*
24927c478bd9Sstevel@tonic-gate 	 * Property values may be longer than max_scf_fmri_length, but these
24937c478bd9Sstevel@tonic-gate 	 * shouldn't be, so we'll just reuse buf.  The user can use svcprop if
24947c478bd9Sstevel@tonic-gate 	 * he suspects something fishy.
24957c478bd9Sstevel@tonic-gate 	 */
24967c478bd9Sstevel@tonic-gate 	if (scf_instance_get_pg(wip->inst, SCF_PG_RESTARTER, rpg) != 0) {
24977c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
24987c478bd9Sstevel@tonic-gate 			scfdie();
24997c478bd9Sstevel@tonic-gate 
25007c478bd9Sstevel@tonic-gate 		scf_pg_destroy(rpg);
25017c478bd9Sstevel@tonic-gate 		rpg = NULL;
25027c478bd9Sstevel@tonic-gate 	}
25037c478bd9Sstevel@tonic-gate 
25047c478bd9Sstevel@tonic-gate 	if (rpg) {
25057c478bd9Sstevel@tonic-gate 		if (pg_get_single_val(rpg, scf_property_state, SCF_TYPE_ASTRING,
25067c478bd9Sstevel@tonic-gate 		    buf, max_scf_fmri_length + 1, 0) == 0)
25077c478bd9Sstevel@tonic-gate 			(void) printf(fmt, DETAILED_WIDTH, gettext("state"),
25087c478bd9Sstevel@tonic-gate 			    buf);
25097c478bd9Sstevel@tonic-gate 
25107c478bd9Sstevel@tonic-gate 		if (pg_get_single_val(rpg, scf_property_next_state,
25117c478bd9Sstevel@tonic-gate 		    SCF_TYPE_ASTRING, buf, max_scf_fmri_length + 1, 0) == 0)
25127c478bd9Sstevel@tonic-gate 			(void) printf(fmt, DETAILED_WIDTH,
25137c478bd9Sstevel@tonic-gate 			    gettext("next_state"), buf);
25147c478bd9Sstevel@tonic-gate 
25157c478bd9Sstevel@tonic-gate 		if (pg_get_single_val(rpg, SCF_PROPERTY_STATE_TIMESTAMP,
25167c478bd9Sstevel@tonic-gate 		    SCF_TYPE_TIME, &tv, NULL, 0) == 0) {
25177c478bd9Sstevel@tonic-gate 			stime = tv.tv_sec;
25187c478bd9Sstevel@tonic-gate 			tmp = localtime(&stime);
25197c478bd9Sstevel@tonic-gate 			for (tbsz = 50; ; tbsz *= 2) {
25207c478bd9Sstevel@tonic-gate 				timebuf = safe_malloc(tbsz);
25217c478bd9Sstevel@tonic-gate 				if (strftime(timebuf, tbsz, NULL, tmp) != 0)
25227c478bd9Sstevel@tonic-gate 					break;
25237c478bd9Sstevel@tonic-gate 				free(timebuf);
25247c478bd9Sstevel@tonic-gate 			}
25257c478bd9Sstevel@tonic-gate 			(void) printf(fmt, DETAILED_WIDTH,
25267c478bd9Sstevel@tonic-gate 			    gettext("state_time"),
25277c478bd9Sstevel@tonic-gate 			    timebuf);
25287c478bd9Sstevel@tonic-gate 			free(timebuf);
25297c478bd9Sstevel@tonic-gate 		}
25307c478bd9Sstevel@tonic-gate 
2531b7185059Srm 		if (pg_get_single_val(rpg, SCF_PROPERTY_ALT_LOGFILE,
2532b7185059Srm 		    SCF_TYPE_ASTRING, buf, max_scf_fmri_length + 1, 0) == 0)
2533b7185059Srm 			(void) printf(fmt, DETAILED_WIDTH,
2534b7185059Srm 			    gettext("alt_logfile"), buf);
25357c478bd9Sstevel@tonic-gate 
2536b7185059Srm 		if (pg_get_single_val(rpg, SCF_PROPERTY_LOGFILE,
2537b7185059Srm 		    SCF_TYPE_ASTRING, buf, max_scf_fmri_length + 1, 0) == 0)
2538b7185059Srm 			(void) printf(fmt, DETAILED_WIDTH, gettext("logfile"),
2539b7185059Srm 			    buf);
2540b7185059Srm 	}
25417c478bd9Sstevel@tonic-gate 
25427c478bd9Sstevel@tonic-gate 	if (inst_get_single_val(wip->inst, SCF_PG_GENERAL,
25437c478bd9Sstevel@tonic-gate 	    SCF_PROPERTY_RESTARTER, SCF_TYPE_ASTRING, buf,
25447c478bd9Sstevel@tonic-gate 	    max_scf_fmri_length + 1, 0, 0, 1) == 0)
25457c478bd9Sstevel@tonic-gate 		(void) printf(fmt, DETAILED_WIDTH, gettext("restarter"), buf);
25467c478bd9Sstevel@tonic-gate 	else
25477c478bd9Sstevel@tonic-gate 		(void) printf(fmt, DETAILED_WIDTH, gettext("restarter"),
25487c478bd9Sstevel@tonic-gate 		    SCF_SERVICE_STARTD);
25497c478bd9Sstevel@tonic-gate 
25507c478bd9Sstevel@tonic-gate 	free(buf);
25517c478bd9Sstevel@tonic-gate 
255294501b61Sskamm 	/*
255394501b61Sskamm 	 * Use the restarter specific routine to print the ctids, if available.
255494501b61Sskamm 	 * If restarter specific action is available and it fails, then die.
255594501b61Sskamm 	 */
255694501b61Sskamm 	restarter_ret = ctids_by_restarter(wip, &c, 1, 0,
255794501b61Sskamm 	    &restarter_spec, print_ctid_header, print_ctid_detailed);
255894501b61Sskamm 	if (restarter_spec == 1) {
255994501b61Sskamm 		if (restarter_ret != 0)
256094501b61Sskamm 			uu_die(gettext("Unable to get restarter for %s"),
256194501b61Sskamm 			    wip->fmri);
256294501b61Sskamm 		goto restarter_common;
256394501b61Sskamm 	}
256494501b61Sskamm 
25657c478bd9Sstevel@tonic-gate 	if (rpg) {
25667c478bd9Sstevel@tonic-gate 		scf_iter_t *iter;
25677c478bd9Sstevel@tonic-gate 
25687c478bd9Sstevel@tonic-gate 		if ((iter = scf_iter_create(h)) == NULL)
25697c478bd9Sstevel@tonic-gate 			scfdie();
25707c478bd9Sstevel@tonic-gate 
25717c478bd9Sstevel@tonic-gate 		if (scf_pg_get_property(rpg, scf_property_contract, g_prop) ==
25727c478bd9Sstevel@tonic-gate 		    0) {
25737c478bd9Sstevel@tonic-gate 			if (scf_property_is_type(g_prop, SCF_TYPE_COUNT) == 0) {
257494501b61Sskamm 
257594501b61Sskamm 				/* Callback to print ctid header */
257694501b61Sskamm 				print_ctid_header();
25777c478bd9Sstevel@tonic-gate 
25787c478bd9Sstevel@tonic-gate 				if (scf_iter_property_values(iter, g_prop) != 0)
25797c478bd9Sstevel@tonic-gate 					scfdie();
25807c478bd9Sstevel@tonic-gate 
25817c478bd9Sstevel@tonic-gate 				for (;;) {
25827c478bd9Sstevel@tonic-gate 					ret = scf_iter_next_value(iter, g_val);
25837c478bd9Sstevel@tonic-gate 					if (ret == -1)
25847c478bd9Sstevel@tonic-gate 						scfdie();
25857c478bd9Sstevel@tonic-gate 					if (ret == 0)
25867c478bd9Sstevel@tonic-gate 						break;
25877c478bd9Sstevel@tonic-gate 
25887c478bd9Sstevel@tonic-gate 					if (scf_value_get_count(g_val, &c) != 0)
25897c478bd9Sstevel@tonic-gate 						scfdie();
259094501b61Sskamm 
259194501b61Sskamm 					/* Callback to print contract id. */
259294501b61Sskamm 					print_ctid_detailed(c);
25937c478bd9Sstevel@tonic-gate 				}
25947c478bd9Sstevel@tonic-gate 
25957c478bd9Sstevel@tonic-gate 				(void) putchar('\n');
25967c478bd9Sstevel@tonic-gate 			} else {
25977c478bd9Sstevel@tonic-gate 				if (scf_error() != SCF_ERROR_TYPE_MISMATCH)
25987c478bd9Sstevel@tonic-gate 					scfdie();
25997c478bd9Sstevel@tonic-gate 			}
26007c478bd9Sstevel@tonic-gate 		} else {
26017c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_NOT_FOUND)
26027c478bd9Sstevel@tonic-gate 				scfdie();
26037c478bd9Sstevel@tonic-gate 		}
26047c478bd9Sstevel@tonic-gate 
26057c478bd9Sstevel@tonic-gate 		scf_iter_destroy(iter);
26067c478bd9Sstevel@tonic-gate 	} else {
26077c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
26087c478bd9Sstevel@tonic-gate 			scfdie();
26097c478bd9Sstevel@tonic-gate 	}
26107c478bd9Sstevel@tonic-gate 
261194501b61Sskamm restarter_common:
26127c478bd9Sstevel@tonic-gate 	scf_pg_destroy(rpg);
26137c478bd9Sstevel@tonic-gate 
26147c478bd9Sstevel@tonic-gate 	/* Dependencies. */
26157c478bd9Sstevel@tonic-gate 	if ((pg_iter = scf_iter_create(h)) == NULL)
26167c478bd9Sstevel@tonic-gate 		scfdie();
26177c478bd9Sstevel@tonic-gate 
26187c478bd9Sstevel@tonic-gate 	snap = get_running_snapshot(wip->inst);
26197c478bd9Sstevel@tonic-gate 
26207c478bd9Sstevel@tonic-gate 	if (scf_iter_instance_pgs_typed_composed(pg_iter, wip->inst, snap,
26217c478bd9Sstevel@tonic-gate 	    SCF_GROUP_DEPENDENCY) != SCF_SUCCESS)
26227c478bd9Sstevel@tonic-gate 		scfdie();
26237c478bd9Sstevel@tonic-gate 
26247c478bd9Sstevel@tonic-gate 	while ((ret = scf_iter_next_pg(pg_iter, g_pg)) == 1)
26257c478bd9Sstevel@tonic-gate 		print_detailed_dependency(g_pg);
26267c478bd9Sstevel@tonic-gate 	if (ret == -1)
26277c478bd9Sstevel@tonic-gate 		scfdie();
26287c478bd9Sstevel@tonic-gate 
26297c478bd9Sstevel@tonic-gate 	scf_iter_destroy(pg_iter);
26307c478bd9Sstevel@tonic-gate 
26317c478bd9Sstevel@tonic-gate 	if (opt_processes)
263294501b61Sskamm 		detailed_list_processes(wip);
26337c478bd9Sstevel@tonic-gate 
26341f6eb021SLiane Praza 	/* "application" type property groups */
26351f6eb021SLiane Praza 	if (opt_verbose == 1)
26361f6eb021SLiane Praza 		print_application_properties(wip, snap);
26371f6eb021SLiane Praza 
26381f6eb021SLiane Praza 	scf_snapshot_destroy(snap);
26391f6eb021SLiane Praza 
26407c478bd9Sstevel@tonic-gate 	return (0);
26417c478bd9Sstevel@tonic-gate }
26427c478bd9Sstevel@tonic-gate 
2643*d5c6878fSBryan Cantrill /* ARGSUSED */
2644*d5c6878fSBryan Cantrill static int
2645*d5c6878fSBryan Cantrill print_log(void *unused, scf_walkinfo_t *wip)
2646*d5c6878fSBryan Cantrill {
2647*d5c6878fSBryan Cantrill 	scf_propertygroup_t *rpg;
2648*d5c6878fSBryan Cantrill 	char buf[MAXPATHLEN];
2649*d5c6878fSBryan Cantrill 
2650*d5c6878fSBryan Cantrill 	if ((rpg = scf_pg_create(h)) == NULL)
2651*d5c6878fSBryan Cantrill 		scfdie();
2652*d5c6878fSBryan Cantrill 
2653*d5c6878fSBryan Cantrill 	if (scf_instance_get_pg(wip->inst, SCF_PG_RESTARTER, rpg) != 0) {
2654*d5c6878fSBryan Cantrill 		if (scf_error() != SCF_ERROR_NOT_FOUND)
2655*d5c6878fSBryan Cantrill 			scfdie();
2656*d5c6878fSBryan Cantrill 
2657*d5c6878fSBryan Cantrill 		goto out;
2658*d5c6878fSBryan Cantrill 	}
2659*d5c6878fSBryan Cantrill 
2660*d5c6878fSBryan Cantrill 	if (pg_get_single_val(rpg, SCF_PROPERTY_LOGFILE,
2661*d5c6878fSBryan Cantrill 	    SCF_TYPE_ASTRING, buf, sizeof (buf), 0) == 0) {
2662*d5c6878fSBryan Cantrill 		(void) printf("%s\n", buf);
2663*d5c6878fSBryan Cantrill 	}
2664*d5c6878fSBryan Cantrill 
2665*d5c6878fSBryan Cantrill out:
2666*d5c6878fSBryan Cantrill 	scf_pg_destroy(rpg);
2667*d5c6878fSBryan Cantrill 
2668*d5c6878fSBryan Cantrill 	return (0);
2669*d5c6878fSBryan Cantrill }
2670*d5c6878fSBryan Cantrill 
2671f6e214c7SGavin Maltby int
2672f6e214c7SGavin Maltby qsort_str_compare(const void *p1, const void *p2)
2673f6e214c7SGavin Maltby {
2674f6e214c7SGavin Maltby 	return (strcmp((const char *)p1, (const char *)p2));
2675f6e214c7SGavin Maltby }
2676f6e214c7SGavin Maltby 
2677f6e214c7SGavin Maltby /*
2678f6e214c7SGavin Maltby  * get_notify_param_classes()
2679f6e214c7SGavin Maltby  * return the fma classes that don't have a tag in fma_tags[], otherwise NULL
2680f6e214c7SGavin Maltby  */
2681f6e214c7SGavin Maltby static char **
2682f6e214c7SGavin Maltby get_notify_param_classes()
2683f6e214c7SGavin Maltby {
2684f6e214c7SGavin Maltby 	scf_handle_t		*h = _scf_handle_create_and_bind(SCF_VERSION);
2685f6e214c7SGavin Maltby 	scf_instance_t		*inst = scf_instance_create(h);
2686f6e214c7SGavin Maltby 	scf_snapshot_t		*snap = scf_snapshot_create(h);
2687f6e214c7SGavin Maltby 	scf_snaplevel_t		*slvl = scf_snaplevel_create(h);
2688f6e214c7SGavin Maltby 	scf_propertygroup_t	*pg = scf_pg_create(h);
2689f6e214c7SGavin Maltby 	scf_iter_t		*iter = scf_iter_create(h);
2690f6e214c7SGavin Maltby 	int size = 4;
2691f6e214c7SGavin Maltby 	int n = 0;
2692f6e214c7SGavin Maltby 	size_t sz = scf_limit(SCF_LIMIT_MAX_NAME_LENGTH) + 1;
2693f6e214c7SGavin Maltby 	int err;
2694f6e214c7SGavin Maltby 	char *pgname = safe_malloc(sz);
2695f6e214c7SGavin Maltby 	char **buf = safe_malloc(size * sizeof (char *));
2696f6e214c7SGavin Maltby 
2697f6e214c7SGavin Maltby 	if (h == NULL || inst == NULL || snap == NULL || slvl == NULL ||
2698f6e214c7SGavin Maltby 	    pg == NULL || iter == NULL) {
2699f6e214c7SGavin Maltby 		uu_die(gettext("Failed object creation: %s\n"),
2700f6e214c7SGavin Maltby 		    scf_strerror(scf_error()));
2701f6e214c7SGavin Maltby 	}
2702f6e214c7SGavin Maltby 
2703f6e214c7SGavin Maltby 	if (scf_handle_decode_fmri(h, SCF_NOTIFY_PARAMS_INST, NULL, NULL, inst,
2704f6e214c7SGavin Maltby 	    NULL, NULL, SCF_DECODE_FMRI_EXACT) != 0)
2705f6e214c7SGavin Maltby 		uu_die(gettext("Failed to decode %s: %s\n"),
2706f6e214c7SGavin Maltby 		    SCF_NOTIFY_PARAMS_INST, scf_strerror(scf_error()));
2707f6e214c7SGavin Maltby 
2708f6e214c7SGavin Maltby 	if (scf_instance_get_snapshot(inst, "running", snap) != 0)
2709f6e214c7SGavin Maltby 		uu_die(gettext("Failed to get snapshot: %s\n"),
2710f6e214c7SGavin Maltby 		    scf_strerror(scf_error()));
2711f6e214c7SGavin Maltby 
2712f6e214c7SGavin Maltby 	if (scf_snapshot_get_base_snaplevel(snap, slvl) != 0)
2713f6e214c7SGavin Maltby 		uu_die(gettext("Failed to get base snaplevel: %s\n"),
2714f6e214c7SGavin Maltby 		    scf_strerror(scf_error()));
2715f6e214c7SGavin Maltby 
2716f6e214c7SGavin Maltby 	if (scf_iter_snaplevel_pgs_typed(iter, slvl,
2717f6e214c7SGavin Maltby 	    SCF_NOTIFY_PARAMS_PG_TYPE) != 0)
2718f6e214c7SGavin Maltby 		uu_die(gettext("Failed to get iterator: %s\n"),
2719f6e214c7SGavin Maltby 		    scf_strerror(scf_error()));
2720f6e214c7SGavin Maltby 
2721f6e214c7SGavin Maltby 	while ((err = scf_iter_next_pg(iter, pg)) == 1) {
2722f6e214c7SGavin Maltby 		char *c;
2723f6e214c7SGavin Maltby 
2724f6e214c7SGavin Maltby 		if (scf_pg_get_name(pg, pgname, sz) == -1)
2725f6e214c7SGavin Maltby 			uu_die(gettext("Failed to get pg name: %s\n"),
2726f6e214c7SGavin Maltby 			    scf_strerror(scf_error()));
2727f6e214c7SGavin Maltby 		if ((c = strrchr(pgname, ',')) != NULL)
2728f6e214c7SGavin Maltby 			*c = '\0';
2729f6e214c7SGavin Maltby 		if (has_fma_tag(pgname))
2730f6e214c7SGavin Maltby 			continue;
2731f6e214c7SGavin Maltby 		if (!is_fma_token(pgname))
2732f6e214c7SGavin Maltby 			/*
2733f6e214c7SGavin Maltby 			 * We don't emmit a warning here so that we don't
2734f6e214c7SGavin Maltby 			 * pollute the output
2735f6e214c7SGavin Maltby 			 */
2736f6e214c7SGavin Maltby 			continue;
2737f6e214c7SGavin Maltby 
2738f6e214c7SGavin Maltby 		if (n + 1 >= size) {
2739f6e214c7SGavin Maltby 			size *= 2;
2740f6e214c7SGavin Maltby 			buf = realloc(buf, size * sizeof (char *));
2741f6e214c7SGavin Maltby 			if (buf == NULL)
2742f6e214c7SGavin Maltby 				uu_die(gettext("Out of memory.\n"));
2743f6e214c7SGavin Maltby 		}
2744f6e214c7SGavin Maltby 		buf[n] = safe_strdup(pgname);
2745f6e214c7SGavin Maltby 		++n;
2746f6e214c7SGavin Maltby 	}
2747f6e214c7SGavin Maltby 	/*
2748f6e214c7SGavin Maltby 	 * NULL terminate buf
2749f6e214c7SGavin Maltby 	 */
2750f6e214c7SGavin Maltby 	buf[n] = NULL;
2751f6e214c7SGavin Maltby 	if (err == -1)
2752f6e214c7SGavin Maltby 		uu_die(gettext("Failed to iterate pgs: %s\n"),
2753f6e214c7SGavin Maltby 		    scf_strerror(scf_error()));
2754f6e214c7SGavin Maltby 
2755f6e214c7SGavin Maltby 	/* sort the classes */
2756f6e214c7SGavin Maltby 	qsort((void *)buf, n, sizeof (char *), qsort_str_compare);
2757f6e214c7SGavin Maltby 
2758f6e214c7SGavin Maltby 	free(pgname);
2759f6e214c7SGavin Maltby 	scf_iter_destroy(iter);
2760f6e214c7SGavin Maltby 	scf_pg_destroy(pg);
2761f6e214c7SGavin Maltby 	scf_snaplevel_destroy(slvl);
2762f6e214c7SGavin Maltby 	scf_snapshot_destroy(snap);
2763f6e214c7SGavin Maltby 	scf_instance_destroy(inst);
2764f6e214c7SGavin Maltby 	scf_handle_destroy(h);
2765f6e214c7SGavin Maltby 
2766f6e214c7SGavin Maltby 	return (buf);
2767f6e214c7SGavin Maltby }
2768f6e214c7SGavin Maltby 
2769f6e214c7SGavin Maltby /*
2770f6e214c7SGavin Maltby  * get_fma_notify_params()
2771f6e214c7SGavin Maltby  * populates an nvlist_t with notifycation parameters for a given FMA class
2772f6e214c7SGavin Maltby  * returns 0 if the nvlist is populated, 1 otherwise;
2773f6e214c7SGavin Maltby  */
2774f6e214c7SGavin Maltby int
2775f6e214c7SGavin Maltby get_fma_notify_params(nvlist_t *nvl, const char *class)
2776f6e214c7SGavin Maltby {
2777f6e214c7SGavin Maltby 	if (_scf_get_fma_notify_params(class, nvl, 0) != 0) {
2778f6e214c7SGavin Maltby 		/*
2779f6e214c7SGavin Maltby 		 * if the preferences have just been deleted
2780f6e214c7SGavin Maltby 		 * or does not exist, just skip.
2781f6e214c7SGavin Maltby 		 */
2782f6e214c7SGavin Maltby 		if (scf_error() != SCF_ERROR_NOT_FOUND &&
2783f6e214c7SGavin Maltby 		    scf_error() != SCF_ERROR_DELETED)
2784f6e214c7SGavin Maltby 			uu_warn(gettext(
2785f6e214c7SGavin Maltby 			    "Failed get_fma_notify_params %s\n"),
2786f6e214c7SGavin Maltby 			    scf_strerror(scf_error()));
2787f6e214c7SGavin Maltby 
2788f6e214c7SGavin Maltby 		return (1);
2789f6e214c7SGavin Maltby 	}
2790f6e214c7SGavin Maltby 
2791f6e214c7SGavin Maltby 	return (0);
2792f6e214c7SGavin Maltby }
2793f6e214c7SGavin Maltby 
2794f6e214c7SGavin Maltby /*
2795f6e214c7SGavin Maltby  * print_notify_fma()
2796f6e214c7SGavin Maltby  * outputs the notification paramets of FMA events.
2797f6e214c7SGavin Maltby  * It first outputs classes in fma_tags[], then outputs the other classes
2798f6e214c7SGavin Maltby  * sorted alphabetically
2799f6e214c7SGavin Maltby  */
2800f6e214c7SGavin Maltby static void
2801f6e214c7SGavin Maltby print_notify_fma(void)
2802f6e214c7SGavin Maltby {
2803f6e214c7SGavin Maltby 	nvlist_t *nvl;
2804f6e214c7SGavin Maltby 	char **tmp = NULL;
2805f6e214c7SGavin Maltby 	char **classes, *p;
2806f6e214c7SGavin Maltby 	const char *class;
2807f6e214c7SGavin Maltby 	uint32_t i;
2808f6e214c7SGavin Maltby 
2809f6e214c7SGavin Maltby 	if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0)
2810f6e214c7SGavin Maltby 		uu_die(gettext("Out of memory.\n"));
2811f6e214c7SGavin Maltby 
2812f6e214c7SGavin Maltby 	for (i = 0; (class = get_fma_class(i)) != NULL; ++i) {
2813f6e214c7SGavin Maltby 		if (get_fma_notify_params(nvl, class) == 0)
2814f6e214c7SGavin Maltby 			listnotify_print(nvl, get_fma_tag(i));
2815f6e214c7SGavin Maltby 	}
2816f6e214c7SGavin Maltby 
2817f6e214c7SGavin Maltby 	if ((classes = get_notify_param_classes()) == NULL)
2818f6e214c7SGavin Maltby 		goto cleanup;
2819f6e214c7SGavin Maltby 
2820f6e214c7SGavin Maltby 	tmp = classes;
2821f6e214c7SGavin Maltby 	for (p = *tmp; p; ++tmp, p = *tmp) {
2822f6e214c7SGavin Maltby 		if (get_fma_notify_params(nvl, p) == 0)
2823f6e214c7SGavin Maltby 			listnotify_print(nvl, re_tag(p));
2824f6e214c7SGavin Maltby 
2825f6e214c7SGavin Maltby 		free(p);
2826f6e214c7SGavin Maltby 	}
2827f6e214c7SGavin Maltby 
2828f6e214c7SGavin Maltby 	free(classes);
2829f6e214c7SGavin Maltby 
2830f6e214c7SGavin Maltby cleanup:
2831f6e214c7SGavin Maltby 	nvlist_free(nvl);
2832f6e214c7SGavin Maltby }
2833f6e214c7SGavin Maltby 
2834f6e214c7SGavin Maltby /*
2835f6e214c7SGavin Maltby  * print_notify_fmri()
2836f6e214c7SGavin Maltby  * prints notifycation parameters for an SMF instance.
2837f6e214c7SGavin Maltby  */
2838f6e214c7SGavin Maltby static void
2839f6e214c7SGavin Maltby print_notify_fmri(const char *fmri)
2840f6e214c7SGavin Maltby {
2841f6e214c7SGavin Maltby 	nvlist_t *nvl;
2842f6e214c7SGavin Maltby 
2843f6e214c7SGavin Maltby 	if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0)
2844f6e214c7SGavin Maltby 		uu_die(gettext("Out of memory.\n"));
2845f6e214c7SGavin Maltby 
2846f6e214c7SGavin Maltby 	if (_scf_get_svc_notify_params(fmri, nvl, SCF_TRANSITION_ALL, 0, 0) !=
2847f6e214c7SGavin Maltby 	    SCF_SUCCESS) {
2848f6e214c7SGavin Maltby 		if (scf_error() != SCF_ERROR_NOT_FOUND &&
2849f6e214c7SGavin Maltby 		    scf_error() != SCF_ERROR_DELETED)
2850f6e214c7SGavin Maltby 			uu_warn(gettext(
2851f6e214c7SGavin Maltby 			    "Failed _scf_get_svc_notify_params: %s\n"),
2852f6e214c7SGavin Maltby 			    scf_strerror(scf_error()));
2853f6e214c7SGavin Maltby 	} else {
2854f6e214c7SGavin Maltby 		if (strcmp(SCF_INSTANCE_GLOBAL, fmri) == 0)
2855f6e214c7SGavin Maltby 			safe_printf(
2856f6e214c7SGavin Maltby 			    gettext("System wide notification parameters:\n"));
2857f6e214c7SGavin Maltby 		safe_printf("%s:\n", fmri);
2858f6e214c7SGavin Maltby 		listnotify_print(nvl, NULL);
2859f6e214c7SGavin Maltby 	}
2860f6e214c7SGavin Maltby 	nvlist_free(nvl);
2861f6e214c7SGavin Maltby }
2862f6e214c7SGavin Maltby 
2863f6e214c7SGavin Maltby /*
2864f6e214c7SGavin Maltby  * print_notify_special()
2865f6e214c7SGavin Maltby  * prints notification parameters for FMA events and system wide SMF state
2866f6e214c7SGavin Maltby  * transitions parameters
2867f6e214c7SGavin Maltby  */
2868f6e214c7SGavin Maltby static void
2869f6e214c7SGavin Maltby print_notify_special()
2870f6e214c7SGavin Maltby {
2871f6e214c7SGavin Maltby 	safe_printf("Notification parameters for FMA Events\n");
2872f6e214c7SGavin Maltby 	print_notify_fma();
2873f6e214c7SGavin Maltby 	print_notify_fmri(SCF_INSTANCE_GLOBAL);
2874f6e214c7SGavin Maltby }
2875f6e214c7SGavin Maltby 
2876f6e214c7SGavin Maltby /*
2877f6e214c7SGavin Maltby  * print_notify()
2878f6e214c7SGavin Maltby  * callback function to print notification parameters for SMF state transition
2879f6e214c7SGavin Maltby  * instances. It skips global and notify-params instances as they should be
2880f6e214c7SGavin Maltby  * printed by print_notify_special()
2881f6e214c7SGavin Maltby  */
2882f6e214c7SGavin Maltby /* ARGSUSED */
2883f6e214c7SGavin Maltby static int
2884f6e214c7SGavin Maltby print_notify(void *unused, scf_walkinfo_t *wip)
2885f6e214c7SGavin Maltby {
2886f6e214c7SGavin Maltby 	if (strcmp(SCF_INSTANCE_GLOBAL, wip->fmri) == 0 ||
2887f6e214c7SGavin Maltby 	    strcmp(SCF_NOTIFY_PARAMS_INST, wip->fmri) == 0)
2888f6e214c7SGavin Maltby 		return (0);
2889f6e214c7SGavin Maltby 
2890f6e214c7SGavin Maltby 	print_notify_fmri(wip->fmri);
2891f6e214c7SGavin Maltby 
2892f6e214c7SGavin Maltby 	return (0);
2893f6e214c7SGavin Maltby }
2894f6e214c7SGavin Maltby 
28957c478bd9Sstevel@tonic-gate /*
28967c478bd9Sstevel@tonic-gate  * Append a one-lined description of each process in inst's contract(s) and
28977c478bd9Sstevel@tonic-gate  * return the augmented string.
28987c478bd9Sstevel@tonic-gate  */
28997c478bd9Sstevel@tonic-gate static char *
290094501b61Sskamm add_processes(scf_walkinfo_t *wip, char *line, scf_propertygroup_t *lpg)
29017c478bd9Sstevel@tonic-gate {
29027c478bd9Sstevel@tonic-gate 	pid_t *pids = NULL;
29037c478bd9Sstevel@tonic-gate 	uint_t i, n = 0;
29047c478bd9Sstevel@tonic-gate 
29057c478bd9Sstevel@tonic-gate 	if (lpg == NULL) {
290694501b61Sskamm 		if (instance_processes(wip->inst, wip->fmri, &pids, &n) != 0)
29077c478bd9Sstevel@tonic-gate 			return (line);
29087c478bd9Sstevel@tonic-gate 	} else {
290994501b61Sskamm 		/* Legacy services */
29107c478bd9Sstevel@tonic-gate 		scf_iter_t *iter;
29117c478bd9Sstevel@tonic-gate 
29127c478bd9Sstevel@tonic-gate 		if ((iter = scf_iter_create(h)) == NULL)
29137c478bd9Sstevel@tonic-gate 			scfdie();
29147c478bd9Sstevel@tonic-gate 
29157c478bd9Sstevel@tonic-gate 		(void) propvals_to_pids(lpg, scf_property_contract, &pids, &n,
29167c478bd9Sstevel@tonic-gate 		    g_prop, g_val, iter);
29177c478bd9Sstevel@tonic-gate 
29187c478bd9Sstevel@tonic-gate 		scf_iter_destroy(iter);
29197c478bd9Sstevel@tonic-gate 	}
29207c478bd9Sstevel@tonic-gate 
29217c478bd9Sstevel@tonic-gate 	if (n == 0)
29227c478bd9Sstevel@tonic-gate 		return (line);
29237c478bd9Sstevel@tonic-gate 
29247c478bd9Sstevel@tonic-gate 	qsort(pids, n, sizeof (*pids), pidcmp);
29257c478bd9Sstevel@tonic-gate 
29267c478bd9Sstevel@tonic-gate 	for (i = 0; i < n; ++i) {
29277c478bd9Sstevel@tonic-gate 		char *cp, stime[9];
29287c478bd9Sstevel@tonic-gate 		psinfo_t psi;
29297c478bd9Sstevel@tonic-gate 		struct tm *tm;
29307c478bd9Sstevel@tonic-gate 		int len = 1 + 15 + 8 + 3 + 6 + 1 + PRFNSZ;
29317c478bd9Sstevel@tonic-gate 
29327c478bd9Sstevel@tonic-gate 		if (get_psinfo(pids[i], &psi) != 0)
29337c478bd9Sstevel@tonic-gate 			continue;
29347c478bd9Sstevel@tonic-gate 
29357c478bd9Sstevel@tonic-gate 		line = realloc(line, strlen(line) + len);
29367c478bd9Sstevel@tonic-gate 		if (line == NULL)
29377c478bd9Sstevel@tonic-gate 			uu_die(gettext("Out of memory.\n"));
29387c478bd9Sstevel@tonic-gate 
29397c478bd9Sstevel@tonic-gate 		cp = strchr(line, '\0');
29407c478bd9Sstevel@tonic-gate 
29417c478bd9Sstevel@tonic-gate 		tm = localtime(&psi.pr_start.tv_sec);
29427c478bd9Sstevel@tonic-gate 
29437c478bd9Sstevel@tonic-gate 		/*
29447c478bd9Sstevel@tonic-gate 		 * Print time if started within the past 24 hours, print date
29457c478bd9Sstevel@tonic-gate 		 * if within the past 12 months, print year if started greater
29467c478bd9Sstevel@tonic-gate 		 * than 12 months ago.
29477c478bd9Sstevel@tonic-gate 		 */
29487c478bd9Sstevel@tonic-gate 		if (now - psi.pr_start.tv_sec < 24 * 60 * 60)
29493eae19d9Swesolows 			(void) strftime(stime, sizeof (stime),
29503eae19d9Swesolows 			    gettext(FORMAT_TIME), tm);
29517c478bd9Sstevel@tonic-gate 		else if (now - psi.pr_start.tv_sec < 12 * 30 * 24 * 60 * 60)
29523eae19d9Swesolows 			(void) strftime(stime, sizeof (stime),
29533eae19d9Swesolows 			    gettext(FORMAT_DATE), tm);
29547c478bd9Sstevel@tonic-gate 		else
29553eae19d9Swesolows 			(void) strftime(stime, sizeof (stime),
29563eae19d9Swesolows 			    gettext(FORMAT_YEAR), tm);
29577c478bd9Sstevel@tonic-gate 
29587c478bd9Sstevel@tonic-gate 		(void) snprintf(cp, len, "\n               %-8s   %6ld %.*s",
29597c478bd9Sstevel@tonic-gate 		    stime, pids[i], PRFNSZ, psi.pr_fname);
29607c478bd9Sstevel@tonic-gate 	}
29617c478bd9Sstevel@tonic-gate 
29627c478bd9Sstevel@tonic-gate 	free(pids);
29637c478bd9Sstevel@tonic-gate 
29647c478bd9Sstevel@tonic-gate 	return (line);
29657c478bd9Sstevel@tonic-gate }
29667c478bd9Sstevel@tonic-gate 
29677c478bd9Sstevel@tonic-gate /*ARGSUSED*/
29687c478bd9Sstevel@tonic-gate static int
29697c478bd9Sstevel@tonic-gate list_instance(void *unused, scf_walkinfo_t *wip)
29707c478bd9Sstevel@tonic-gate {
29717c478bd9Sstevel@tonic-gate 	struct avl_string *lp;
29727c478bd9Sstevel@tonic-gate 	char *cp;
29737c478bd9Sstevel@tonic-gate 	int i;
29747c478bd9Sstevel@tonic-gate 	uu_avl_index_t idx;
29757c478bd9Sstevel@tonic-gate 
29767c478bd9Sstevel@tonic-gate 	/*
29777c478bd9Sstevel@tonic-gate 	 * If the user has specified a restarter, check for a match first
29787c478bd9Sstevel@tonic-gate 	 */
29797c478bd9Sstevel@tonic-gate 	if (restarters != NULL) {
29807c478bd9Sstevel@tonic-gate 		struct pfmri_list *rest;
29817c478bd9Sstevel@tonic-gate 		int match;
29827c478bd9Sstevel@tonic-gate 		char *restarter_fmri;
29837c478bd9Sstevel@tonic-gate 		const char *scope_name, *svc_name, *inst_name, *pg_name;
29847c478bd9Sstevel@tonic-gate 
29857c478bd9Sstevel@tonic-gate 		/* legacy services don't have restarters */
29867c478bd9Sstevel@tonic-gate 		if (wip->pg != NULL)
29877c478bd9Sstevel@tonic-gate 			return (0);
29887c478bd9Sstevel@tonic-gate 
29897c478bd9Sstevel@tonic-gate 		restarter_fmri = safe_malloc(max_scf_fmri_length + 1);
29907c478bd9Sstevel@tonic-gate 
29917c478bd9Sstevel@tonic-gate 		if (inst_get_single_val(wip->inst, SCF_PG_GENERAL,
29927c478bd9Sstevel@tonic-gate 		    SCF_PROPERTY_RESTARTER, SCF_TYPE_ASTRING, restarter_fmri,
29937c478bd9Sstevel@tonic-gate 		    max_scf_fmri_length + 1, 0, 0, 1) != 0)
29947c478bd9Sstevel@tonic-gate 			(void) strcpy(restarter_fmri, SCF_SERVICE_STARTD);
29957c478bd9Sstevel@tonic-gate 
29967c478bd9Sstevel@tonic-gate 		if (scf_parse_svc_fmri(restarter_fmri, &scope_name, &svc_name,
29977c478bd9Sstevel@tonic-gate 		    &inst_name, &pg_name, NULL) != SCF_SUCCESS) {
29987c478bd9Sstevel@tonic-gate 			free(restarter_fmri);
29997c478bd9Sstevel@tonic-gate 			return (0);
30007c478bd9Sstevel@tonic-gate 		}
30017c478bd9Sstevel@tonic-gate 
30027c478bd9Sstevel@tonic-gate 		match = 0;
30037c478bd9Sstevel@tonic-gate 		for (rest = restarters; rest != NULL; rest = rest->next) {
30047c478bd9Sstevel@tonic-gate 			if (strcmp(rest->scope, scope_name) == 0 &&
30057c478bd9Sstevel@tonic-gate 			    strcmp(rest->service, svc_name) == 0 &&
30067c478bd9Sstevel@tonic-gate 			    strcmp(rest->instance, inst_name) == 0)
30077c478bd9Sstevel@tonic-gate 				match = 1;
30087c478bd9Sstevel@tonic-gate 		}
30097c478bd9Sstevel@tonic-gate 
30107c478bd9Sstevel@tonic-gate 		free(restarter_fmri);
30117c478bd9Sstevel@tonic-gate 
30127c478bd9Sstevel@tonic-gate 		if (!match)
30137c478bd9Sstevel@tonic-gate 			return (0);
30147c478bd9Sstevel@tonic-gate 	}
30157c478bd9Sstevel@tonic-gate 
30167c478bd9Sstevel@tonic-gate 	if (wip->pg == NULL && ht_buckets != NULL && ht_add(wip->fmri)) {
30177c478bd9Sstevel@tonic-gate 		/* It was already there. */
30187c478bd9Sstevel@tonic-gate 		return (0);
30197c478bd9Sstevel@tonic-gate 	}
30207c478bd9Sstevel@tonic-gate 
30217c478bd9Sstevel@tonic-gate 	lp = safe_malloc(sizeof (*lp));
30227c478bd9Sstevel@tonic-gate 
30237c478bd9Sstevel@tonic-gate 	lp->str = NULL;
30247c478bd9Sstevel@tonic-gate 	for (i = 0; i < opt_cnum; ++i) {
30257c478bd9Sstevel@tonic-gate 		columns[opt_columns[i]].sprint(&lp->str, wip);
30267c478bd9Sstevel@tonic-gate 	}
30277c478bd9Sstevel@tonic-gate 	cp = lp->str + strlen(lp->str);
30287c478bd9Sstevel@tonic-gate 	cp--;
30297c478bd9Sstevel@tonic-gate 	while (*cp == ' ')
30307c478bd9Sstevel@tonic-gate 		cp--;
30317c478bd9Sstevel@tonic-gate 	*(cp+1) = '\0';
30327c478bd9Sstevel@tonic-gate 
30337c478bd9Sstevel@tonic-gate 	/* If we're supposed to list the processes, too, do that now. */
30347c478bd9Sstevel@tonic-gate 	if (opt_processes)
303594501b61Sskamm 		lp->str = add_processes(wip, lp->str, wip->pg);
30367c478bd9Sstevel@tonic-gate 
30377c478bd9Sstevel@tonic-gate 	/* Create the sort key. */
30387c478bd9Sstevel@tonic-gate 	cp = lp->key = safe_malloc(sortkey_sz);
30397c478bd9Sstevel@tonic-gate 	for (i = 0; i < opt_snum; ++i) {
30407c478bd9Sstevel@tonic-gate 		int j = opt_sort[i] & 0xff;
30417c478bd9Sstevel@tonic-gate 
30427c478bd9Sstevel@tonic-gate 		assert(columns[j].get_sortkey != NULL);
30437c478bd9Sstevel@tonic-gate 		columns[j].get_sortkey(cp, opt_sort[i] & ~0xff, wip);
30447c478bd9Sstevel@tonic-gate 		cp += columns[j].sortkey_width;
30457c478bd9Sstevel@tonic-gate 	}
30467c478bd9Sstevel@tonic-gate 
30477c478bd9Sstevel@tonic-gate 	/* Insert into AVL tree. */
30487c478bd9Sstevel@tonic-gate 	uu_avl_node_init(lp, &lp->node, lines_pool);
30497c478bd9Sstevel@tonic-gate 	(void) uu_avl_find(lines, lp, NULL, &idx);
30507c478bd9Sstevel@tonic-gate 	uu_avl_insert(lines, lp, idx);
30517c478bd9Sstevel@tonic-gate 
30527c478bd9Sstevel@tonic-gate 	return (0);
30537c478bd9Sstevel@tonic-gate }
30547c478bd9Sstevel@tonic-gate 
30557c478bd9Sstevel@tonic-gate static int
30567c478bd9Sstevel@tonic-gate list_if_enabled(void *unused, scf_walkinfo_t *wip)
30577c478bd9Sstevel@tonic-gate {
30587c478bd9Sstevel@tonic-gate 	if (wip->pg != NULL ||
30597c478bd9Sstevel@tonic-gate 	    instance_enabled(wip->inst, B_FALSE) == 1 ||
30607c478bd9Sstevel@tonic-gate 	    instance_enabled(wip->inst, B_TRUE) == 1)
30617c478bd9Sstevel@tonic-gate 		return (list_instance(unused, wip));
30627c478bd9Sstevel@tonic-gate 
30637c478bd9Sstevel@tonic-gate 	return (0);
30647c478bd9Sstevel@tonic-gate }
30657c478bd9Sstevel@tonic-gate 
30667c478bd9Sstevel@tonic-gate /*
30677c478bd9Sstevel@tonic-gate  * Service FMRI selection: Lookup and call list_instance() for the instances.
30687c478bd9Sstevel@tonic-gate  * Instance FMRI selection: Lookup and call list_instance().
30697c478bd9Sstevel@tonic-gate  *
30707c478bd9Sstevel@tonic-gate  * Note: This is shoehorned into a walk_dependencies() callback prototype so
30717c478bd9Sstevel@tonic-gate  * it can be used in list_dependencies.
30727c478bd9Sstevel@tonic-gate  */
30737c478bd9Sstevel@tonic-gate static int
30747c478bd9Sstevel@tonic-gate list_svc_or_inst_fmri(void *complain, scf_walkinfo_t *wip)
30757c478bd9Sstevel@tonic-gate {
30767c478bd9Sstevel@tonic-gate 	char *fmri;
30777c478bd9Sstevel@tonic-gate 	const char *svc_name, *inst_name, *pg_name, *save;
30787c478bd9Sstevel@tonic-gate 	scf_iter_t *iter;
30797c478bd9Sstevel@tonic-gate 	int ret;
30807c478bd9Sstevel@tonic-gate 
30817c478bd9Sstevel@tonic-gate 	fmri = safe_strdup(wip->fmri);
30827c478bd9Sstevel@tonic-gate 
30837c478bd9Sstevel@tonic-gate 	if (scf_parse_svc_fmri(fmri, NULL, &svc_name, &inst_name, &pg_name,
30847c478bd9Sstevel@tonic-gate 	    NULL) != SCF_SUCCESS) {
30857c478bd9Sstevel@tonic-gate 		if (complain)
30867c478bd9Sstevel@tonic-gate 			uu_warn(gettext("FMRI \"%s\" is invalid.\n"),
30877c478bd9Sstevel@tonic-gate 			    wip->fmri);
30887c478bd9Sstevel@tonic-gate 		exit_status = UU_EXIT_FATAL;
30897c478bd9Sstevel@tonic-gate 		free(fmri);
30907c478bd9Sstevel@tonic-gate 		return (0);
30917c478bd9Sstevel@tonic-gate 	}
30927c478bd9Sstevel@tonic-gate 
30937c478bd9Sstevel@tonic-gate 	/*
30947c478bd9Sstevel@tonic-gate 	 * Yes, this invalidates *_name, but we only care whether they're NULL
30957c478bd9Sstevel@tonic-gate 	 * or not.
30967c478bd9Sstevel@tonic-gate 	 */
30977c478bd9Sstevel@tonic-gate 	free(fmri);
30987c478bd9Sstevel@tonic-gate 
30997c478bd9Sstevel@tonic-gate 	if (svc_name == NULL || pg_name != NULL) {
31007c478bd9Sstevel@tonic-gate 		if (complain)
31017c478bd9Sstevel@tonic-gate 			uu_warn(gettext("FMRI \"%s\" does not designate a "
31027c478bd9Sstevel@tonic-gate 			    "service or instance.\n"), wip->fmri);
31037c478bd9Sstevel@tonic-gate 		return (0);
31047c478bd9Sstevel@tonic-gate 	}
31057c478bd9Sstevel@tonic-gate 
31067c478bd9Sstevel@tonic-gate 	if (inst_name != NULL) {
31077c478bd9Sstevel@tonic-gate 		/* instance */
31087c478bd9Sstevel@tonic-gate 		if (scf_handle_decode_fmri(h, wip->fmri, wip->scope, wip->svc,
31097c478bd9Sstevel@tonic-gate 		    wip->inst, NULL, NULL, 0) != SCF_SUCCESS) {
31107c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_NOT_FOUND)
31117c478bd9Sstevel@tonic-gate 				scfdie();
31127c478bd9Sstevel@tonic-gate 
31137c478bd9Sstevel@tonic-gate 			if (complain)
31147c478bd9Sstevel@tonic-gate 				uu_warn(gettext(
31157c478bd9Sstevel@tonic-gate 				    "Instance \"%s\" does not exist.\n"),
31167c478bd9Sstevel@tonic-gate 				    wip->fmri);
31177c478bd9Sstevel@tonic-gate 			return (0);
31187c478bd9Sstevel@tonic-gate 		}
31197c478bd9Sstevel@tonic-gate 
31207c478bd9Sstevel@tonic-gate 		return (list_instance(NULL, wip));
31217c478bd9Sstevel@tonic-gate 	}
31227c478bd9Sstevel@tonic-gate 
31237c478bd9Sstevel@tonic-gate 	/* service: Walk the instances. */
31247c478bd9Sstevel@tonic-gate 	if (scf_handle_decode_fmri(h, wip->fmri, wip->scope, wip->svc, NULL,
31257c478bd9Sstevel@tonic-gate 	    NULL, NULL, 0) != SCF_SUCCESS) {
31267c478bd9Sstevel@tonic-gate 		if (scf_error() != SCF_ERROR_NOT_FOUND)
31277c478bd9Sstevel@tonic-gate 			scfdie();
31287c478bd9Sstevel@tonic-gate 
31297c478bd9Sstevel@tonic-gate 		if (complain)
31307c478bd9Sstevel@tonic-gate 			uu_warn(gettext("Service \"%s\" does not exist.\n"),
31317c478bd9Sstevel@tonic-gate 			    wip->fmri);
31327c478bd9Sstevel@tonic-gate 
31337c478bd9Sstevel@tonic-gate 		exit_status = UU_EXIT_FATAL;
31347c478bd9Sstevel@tonic-gate 
31357c478bd9Sstevel@tonic-gate 		return (0);
31367c478bd9Sstevel@tonic-gate 	}
31377c478bd9Sstevel@tonic-gate 
31387c478bd9Sstevel@tonic-gate 	iter = scf_iter_create(h);
31397c478bd9Sstevel@tonic-gate 	if (iter == NULL)
31407c478bd9Sstevel@tonic-gate 		scfdie();
31417c478bd9Sstevel@tonic-gate 
31427c478bd9Sstevel@tonic-gate 	if (scf_iter_service_instances(iter, wip->svc) != SCF_SUCCESS)
31437c478bd9Sstevel@tonic-gate 		scfdie();
31447c478bd9Sstevel@tonic-gate 
31457c478bd9Sstevel@tonic-gate 	if ((fmri = malloc(max_scf_fmri_length + 1)) == NULL) {
31467c478bd9Sstevel@tonic-gate 		scf_iter_destroy(iter);
31477c478bd9Sstevel@tonic-gate 		exit_status = UU_EXIT_FATAL;
31487c478bd9Sstevel@tonic-gate 		return (0);
31497c478bd9Sstevel@tonic-gate 	}
31507c478bd9Sstevel@tonic-gate 
31517c478bd9Sstevel@tonic-gate 	save = wip->fmri;
31527c478bd9Sstevel@tonic-gate 	wip->fmri = fmri;
31537c478bd9Sstevel@tonic-gate 	while ((ret = scf_iter_next_instance(iter, wip->inst)) == 1) {
31547c478bd9Sstevel@tonic-gate 		if (scf_instance_to_fmri(wip->inst, fmri,
31557c478bd9Sstevel@tonic-gate 		    max_scf_fmri_length + 1) <= 0)
31567c478bd9Sstevel@tonic-gate 			scfdie();
31577c478bd9Sstevel@tonic-gate 		(void) list_instance(NULL, wip);
31587c478bd9Sstevel@tonic-gate 	}
31597c478bd9Sstevel@tonic-gate 	free(fmri);
31607c478bd9Sstevel@tonic-gate 	wip->fmri = save;
31617c478bd9Sstevel@tonic-gate 	if (ret == -1)
31627c478bd9Sstevel@tonic-gate 		scfdie();
31637c478bd9Sstevel@tonic-gate 
31647c478bd9Sstevel@tonic-gate 	exit_status = UU_EXIT_OK;
31657c478bd9Sstevel@tonic-gate 
31667c478bd9Sstevel@tonic-gate 	scf_iter_destroy(iter);
31677c478bd9Sstevel@tonic-gate 
31687c478bd9Sstevel@tonic-gate 	return (0);
31697c478bd9Sstevel@tonic-gate }
31707c478bd9Sstevel@tonic-gate 
31717c478bd9Sstevel@tonic-gate /*
31727c478bd9Sstevel@tonic-gate  * Dependency selection: Straightforward since each instance lists the
31737c478bd9Sstevel@tonic-gate  * services it depends on.
31747c478bd9Sstevel@tonic-gate  */
31757c478bd9Sstevel@tonic-gate 
31767c478bd9Sstevel@tonic-gate static void
31777c478bd9Sstevel@tonic-gate walk_dependencies(scf_walkinfo_t *wip, scf_walk_callback callback, void *data)
31787c478bd9Sstevel@tonic-gate {
31797c478bd9Sstevel@tonic-gate 	scf_snapshot_t *snap;
31807c478bd9Sstevel@tonic-gate 	scf_iter_t *iter, *viter;
31817c478bd9Sstevel@tonic-gate 	int ret, vret;
31827c478bd9Sstevel@tonic-gate 	char *dep;
31837c478bd9Sstevel@tonic-gate 
31847c478bd9Sstevel@tonic-gate 	assert(wip->inst != NULL);
31857c478bd9Sstevel@tonic-gate 
31867c478bd9Sstevel@tonic-gate 	if ((iter = scf_iter_create(h)) == NULL ||
31877c478bd9Sstevel@tonic-gate 	    (viter = scf_iter_create(h)) == NULL)
31887c478bd9Sstevel@tonic-gate 		scfdie();
31897c478bd9Sstevel@tonic-gate 
31907c478bd9Sstevel@tonic-gate 	snap = get_running_snapshot(wip->inst);
31917c478bd9Sstevel@tonic-gate 
31927c478bd9Sstevel@tonic-gate 	if (scf_iter_instance_pgs_typed_composed(iter, wip->inst, snap,
31937c478bd9Sstevel@tonic-gate 	    SCF_GROUP_DEPENDENCY) != SCF_SUCCESS)
31947c478bd9Sstevel@tonic-gate 		scfdie();
31957c478bd9Sstevel@tonic-gate 
31967c478bd9Sstevel@tonic-gate 	dep = safe_malloc(max_scf_value_length + 1);
31977c478bd9Sstevel@tonic-gate 
31987c478bd9Sstevel@tonic-gate 	while ((ret = scf_iter_next_pg(iter, g_pg)) == 1) {
31997c478bd9Sstevel@tonic-gate 		scf_type_t ty;
32007c478bd9Sstevel@tonic-gate 
32017c478bd9Sstevel@tonic-gate 		/* Ignore exclude_any dependencies. */
32027c478bd9Sstevel@tonic-gate 		if (scf_pg_get_property(g_pg, SCF_PROPERTY_GROUPING, g_prop) !=
32037c478bd9Sstevel@tonic-gate 		    SCF_SUCCESS) {
32047c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_NOT_FOUND)
32057c478bd9Sstevel@tonic-gate 				scfdie();
32067c478bd9Sstevel@tonic-gate 
32077c478bd9Sstevel@tonic-gate 			continue;
32087c478bd9Sstevel@tonic-gate 		}
32097c478bd9Sstevel@tonic-gate 
32107c478bd9Sstevel@tonic-gate 		if (scf_property_type(g_prop, &ty) != SCF_SUCCESS)
32117c478bd9Sstevel@tonic-gate 			scfdie();
32127c478bd9Sstevel@tonic-gate 
32137c478bd9Sstevel@tonic-gate 		if (ty != SCF_TYPE_ASTRING)
32147c478bd9Sstevel@tonic-gate 			continue;
32157c478bd9Sstevel@tonic-gate 
32167c478bd9Sstevel@tonic-gate 		if (scf_property_get_value(g_prop, g_val) != SCF_SUCCESS) {
32177c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_CONSTRAINT_VIOLATED)
32187c478bd9Sstevel@tonic-gate 				scfdie();
32197c478bd9Sstevel@tonic-gate 
32207c478bd9Sstevel@tonic-gate 			continue;
32217c478bd9Sstevel@tonic-gate 		}
32227c478bd9Sstevel@tonic-gate 
32237c478bd9Sstevel@tonic-gate 		if (scf_value_get_astring(g_val, dep,
32247c478bd9Sstevel@tonic-gate 		    max_scf_value_length + 1) < 0)
32257c478bd9Sstevel@tonic-gate 			scfdie();
32267c478bd9Sstevel@tonic-gate 
32277c478bd9Sstevel@tonic-gate 		if (strcmp(dep, SCF_DEP_EXCLUDE_ALL) == 0)
32287c478bd9Sstevel@tonic-gate 			continue;
32297c478bd9Sstevel@tonic-gate 
32307c478bd9Sstevel@tonic-gate 		if (scf_pg_get_property(g_pg, SCF_PROPERTY_ENTITIES, g_prop) !=
32317c478bd9Sstevel@tonic-gate 		    SCF_SUCCESS) {
32327c478bd9Sstevel@tonic-gate 			if (scf_error() != SCF_ERROR_NOT_FOUND)
32337c478bd9Sstevel@tonic-gate 				scfdie();
32347c478bd9Sstevel@tonic-gate 
32357c478bd9Sstevel@tonic-gate 			continue;
32367c478bd9Sstevel@tonic-gate 		}
32377c478bd9Sstevel@tonic-gate 
32387c478bd9Sstevel@tonic-gate 		if (scf_iter_property_values(viter, g_prop) != SCF_SUCCESS)
32397c478bd9Sstevel@tonic-gate 			scfdie();
32407c478bd9Sstevel@tonic-gate 
32417c478bd9Sstevel@tonic-gate 		while ((vret = scf_iter_next_value(viter, g_val)) == 1) {
32427c478bd9Sstevel@tonic-gate 			if (scf_value_get_astring(g_val, dep,
32437c478bd9Sstevel@tonic-gate 			    max_scf_value_length + 1) < 0)
32447c478bd9Sstevel@tonic-gate 				scfdie();
32457c478bd9Sstevel@tonic-gate 
32467c478bd9Sstevel@tonic-gate 			wip->fmri = dep;
32477c478bd9Sstevel@tonic-gate 			if (callback(data, wip) != 0)
32487c478bd9Sstevel@tonic-gate 				goto out;
32497c478bd9Sstevel@tonic-gate 		}
32507c478bd9Sstevel@tonic-gate 		if (vret == -1)
32517c478bd9Sstevel@tonic-gate 			scfdie();
32527c478bd9Sstevel@tonic-gate 	}
32537c478bd9Sstevel@tonic-gate 	if (ret == -1)
32547c478bd9Sstevel@tonic-gate 		scfdie();
32557c478bd9Sstevel@tonic-gate 
32567c478bd9Sstevel@tonic-gate out:
32577c478bd9Sstevel@tonic-gate 	scf_iter_destroy(viter);
32587c478bd9Sstevel@tonic-gate 	scf_iter_destroy(iter);
32597c478bd9Sstevel@tonic-gate 	scf_snapshot_destroy(snap);
32607c478bd9Sstevel@tonic-gate }
32617c478bd9Sstevel@tonic-gate 
32627c478bd9Sstevel@tonic-gate static int
32637c478bd9Sstevel@tonic-gate list_dependencies(void *data, scf_walkinfo_t *wip)
32647c478bd9Sstevel@tonic-gate {
32657c478bd9Sstevel@tonic-gate 	walk_dependencies(wip, list_svc_or_inst_fmri, data);
32667c478bd9Sstevel@tonic-gate 	return (0);
32677c478bd9Sstevel@tonic-gate }
32687c478bd9Sstevel@tonic-gate 
32697c478bd9Sstevel@tonic-gate 
32707c478bd9Sstevel@tonic-gate /*
32717c478bd9Sstevel@tonic-gate  * Dependent selection: The "providing" service's or instance's FMRI is parsed
32727c478bd9Sstevel@tonic-gate  * into the provider_* variables, the instances are walked, and any instance
32737c478bd9Sstevel@tonic-gate  * which lists an FMRI which parses to these components is selected.  This is
32747c478bd9Sstevel@tonic-gate  * inefficient in the face of multiple operands, but that should be uncommon.
32757c478bd9Sstevel@tonic-gate  */
32767c478bd9Sstevel@tonic-gate 
32777c478bd9Sstevel@tonic-gate static char *provider_scope;
32787c478bd9Sstevel@tonic-gate static char *provider_svc;
32797c478bd9Sstevel@tonic-gate static char *provider_inst;	/* NULL for services */
32807c478bd9Sstevel@tonic-gate 
32817c478bd9Sstevel@tonic-gate /*ARGSUSED*/
32827c478bd9Sstevel@tonic-gate static int
32837c478bd9Sstevel@tonic-gate check_against_provider(void *arg, scf_walkinfo_t *wip)
32847c478bd9Sstevel@tonic-gate {
32857c478bd9Sstevel@tonic-gate 	char *cfmri;
32867c478bd9Sstevel@tonic-gate 	const char *scope_name, *svc_name, *inst_name, *pg_name;
32877c478bd9Sstevel@tonic-gate 	int *matchp = arg;
32887c478bd9Sstevel@tonic-gate 
32897c478bd9Sstevel@tonic-gate 	cfmri = safe_strdup(wip->fmri);
32907c478bd9Sstevel@tonic-gate 
32917c478bd9Sstevel@tonic-gate 	if (scf_parse_svc_fmri(cfmri, &scope_name, &svc_name, &inst_name,
32927c478bd9Sstevel@tonic-gate 	    &pg_name, NULL) != SCF_SUCCESS) {
32937c478bd9Sstevel@tonic-gate 		free(cfmri);
32947c478bd9Sstevel@tonic-gate 		return (0);
32957c478bd9Sstevel@tonic-gate 	}
32967c478bd9Sstevel@tonic-gate 
32977c478bd9Sstevel@tonic-gate 	if (svc_name == NULL || pg_name != NULL) {
32987c478bd9Sstevel@tonic-gate 		free(cfmri);
32997c478bd9Sstevel@tonic-gate 		return (0);
33007c478bd9Sstevel@tonic-gate 	}
33017c478bd9Sstevel@tonic-gate 
33027c478bd9Sstevel@tonic-gate 	/*
33037c478bd9Sstevel@tonic-gate 	 * If the user has specified an instance, then also match dependencies
33047c478bd9Sstevel@tonic-gate 	 * on the service itself.
33057c478bd9Sstevel@tonic-gate 	 */
33067c478bd9Sstevel@tonic-gate 	*matchp = (strcmp(provider_scope, scope_name) == 0 &&
33077c478bd9Sstevel@tonic-gate 	    strcmp(provider_svc, svc_name) == 0 &&
33087c478bd9Sstevel@tonic-gate 	    (provider_inst == NULL ? (inst_name == NULL) :
33097c478bd9Sstevel@tonic-gate 	    (inst_name == NULL || strcmp(provider_inst, inst_name) == 0)));
33107c478bd9Sstevel@tonic-gate 
33117c478bd9Sstevel@tonic-gate 	free(cfmri);
33127c478bd9Sstevel@tonic-gate 
33137c478bd9Sstevel@tonic-gate 	/* Stop on matches. */
33147c478bd9Sstevel@tonic-gate 	return (*matchp);
33157c478bd9Sstevel@tonic-gate }
33167c478bd9Sstevel@tonic-gate 
33177c478bd9Sstevel@tonic-gate static int
33187c478bd9Sstevel@tonic-gate list_if_dependent(void *unused, scf_walkinfo_t *wip)
33197c478bd9Sstevel@tonic-gate {
33207c478bd9Sstevel@tonic-gate 	/* Only proceed if this instance depends on provider_*. */
33217c478bd9Sstevel@tonic-gate 	int match = 0;
33227c478bd9Sstevel@tonic-gate 
33237c478bd9Sstevel@tonic-gate 	(void) walk_dependencies(wip, check_against_provider, &match);
33247c478bd9Sstevel@tonic-gate 
33257c478bd9Sstevel@tonic-gate 	if (match)
33267c478bd9Sstevel@tonic-gate 		return (list_instance(unused, wip));
33277c478bd9Sstevel@tonic-gate 
33287c478bd9Sstevel@tonic-gate 	return (0);
33297c478bd9Sstevel@tonic-gate }
33307c478bd9Sstevel@tonic-gate 
33317c478bd9Sstevel@tonic-gate /*ARGSUSED*/
33327c478bd9Sstevel@tonic-gate static int
33337c478bd9Sstevel@tonic-gate list_dependents(void *unused, scf_walkinfo_t *wip)
33347c478bd9Sstevel@tonic-gate {
33357c478bd9Sstevel@tonic-gate 	char *save;
33367c478bd9Sstevel@tonic-gate 	int ret;
33377c478bd9Sstevel@tonic-gate 
33387c478bd9Sstevel@tonic-gate 	if (scf_scope_get_name(wip->scope, provider_scope,
33397c478bd9Sstevel@tonic-gate 	    max_scf_fmri_length) <= 0 ||
33407c478bd9Sstevel@tonic-gate 	    scf_service_get_name(wip->svc, provider_svc,
33417c478bd9Sstevel@tonic-gate 	    max_scf_fmri_length) <= 0)
33427c478bd9Sstevel@tonic-gate 		scfdie();
33437c478bd9Sstevel@tonic-gate 
33447c478bd9Sstevel@tonic-gate 	save = provider_inst;
33457c478bd9Sstevel@tonic-gate 	if (wip->inst == NULL)
33467c478bd9Sstevel@tonic-gate 		provider_inst = NULL;
33477c478bd9Sstevel@tonic-gate 	else if (scf_instance_get_name(wip->inst, provider_inst,
33487c478bd9Sstevel@tonic-gate 	    max_scf_fmri_length) <= 0)
33497c478bd9Sstevel@tonic-gate 		scfdie();
33507c478bd9Sstevel@tonic-gate 
33517c478bd9Sstevel@tonic-gate 	ret = scf_walk_fmri(h, 0, NULL, 0, list_if_dependent, NULL, NULL,
33527c478bd9Sstevel@tonic-gate 	    uu_warn);
33537c478bd9Sstevel@tonic-gate 
33547c478bd9Sstevel@tonic-gate 	provider_inst = save;
33557c478bd9Sstevel@tonic-gate 
33567c478bd9Sstevel@tonic-gate 	return (ret);
33577c478bd9Sstevel@tonic-gate }
33587c478bd9Sstevel@tonic-gate 
33597c478bd9Sstevel@tonic-gate /*
33607c478bd9Sstevel@tonic-gate  * main() & helpers
33617c478bd9Sstevel@tonic-gate  */
33627c478bd9Sstevel@tonic-gate 
33637c478bd9Sstevel@tonic-gate static void
33647c478bd9Sstevel@tonic-gate add_sort_column(const char *col, int reverse)
33657c478bd9Sstevel@tonic-gate {
33667c478bd9Sstevel@tonic-gate 	int i;
33677c478bd9Sstevel@tonic-gate 
33687c478bd9Sstevel@tonic-gate 	++opt_snum;
33697c478bd9Sstevel@tonic-gate 
33707c478bd9Sstevel@tonic-gate 	opt_sort = realloc(opt_sort, opt_snum * sizeof (*opt_sort));
33717c478bd9Sstevel@tonic-gate 	if (opt_sort == NULL)
33727c478bd9Sstevel@tonic-gate 		uu_die(gettext("Too many sort criteria: out of memory.\n"));
33737c478bd9Sstevel@tonic-gate 
33747c478bd9Sstevel@tonic-gate 	for (i = 0; i < ncolumns; ++i) {
33757c478bd9Sstevel@tonic-gate 		if (strcasecmp(col, columns[i].name) == 0)
33767c478bd9Sstevel@tonic-gate 			break;
33777c478bd9Sstevel@tonic-gate 	}
33787c478bd9Sstevel@tonic-gate 
33797c478bd9Sstevel@tonic-gate 	if (i < ncolumns)
33807c478bd9Sstevel@tonic-gate 		opt_sort[opt_snum - 1] = (reverse ? i | 0x100 : i);
33817c478bd9Sstevel@tonic-gate 	else
33827c478bd9Sstevel@tonic-gate 		uu_die(gettext("Unrecognized sort column \"%s\".\n"), col);
33837c478bd9Sstevel@tonic-gate 
33847c478bd9Sstevel@tonic-gate 	sortkey_sz += columns[i].sortkey_width;
33857c478bd9Sstevel@tonic-gate }
33867c478bd9Sstevel@tonic-gate 
33877c478bd9Sstevel@tonic-gate static void
33887c478bd9Sstevel@tonic-gate add_restarter(const char *fmri)
33897c478bd9Sstevel@tonic-gate {
33907c478bd9Sstevel@tonic-gate 	char *cfmri;
33917c478bd9Sstevel@tonic-gate 	const char *pg_name;
33927c478bd9Sstevel@tonic-gate 	struct pfmri_list *rest;
33937c478bd9Sstevel@tonic-gate 
33947c478bd9Sstevel@tonic-gate 	cfmri = safe_strdup(fmri);
33957c478bd9Sstevel@tonic-gate 	rest = safe_malloc(sizeof (*rest));
33967c478bd9Sstevel@tonic-gate 
33977c478bd9Sstevel@tonic-gate 	if (scf_parse_svc_fmri(cfmri, &rest->scope, &rest->service,
33987c478bd9Sstevel@tonic-gate 	    &rest->instance, &pg_name, NULL) != SCF_SUCCESS)
33997c478bd9Sstevel@tonic-gate 		uu_die(gettext("Restarter FMRI \"%s\" is invalid.\n"), fmri);
34007c478bd9Sstevel@tonic-gate 
34017c478bd9Sstevel@tonic-gate 	if (rest->instance == NULL || pg_name != NULL)
34027c478bd9Sstevel@tonic-gate 		uu_die(gettext("Restarter FMRI \"%s\" does not designate an "
34037c478bd9Sstevel@tonic-gate 		    "instance.\n"), fmri);
34047c478bd9Sstevel@tonic-gate 
34057c478bd9Sstevel@tonic-gate 	rest->next = restarters;
34067c478bd9Sstevel@tonic-gate 	restarters = rest;
34077c478bd9Sstevel@tonic-gate 	return;
34087c478bd9Sstevel@tonic-gate 
34097c478bd9Sstevel@tonic-gate err:
34107c478bd9Sstevel@tonic-gate 	free(cfmri);
34117c478bd9Sstevel@tonic-gate 	free(rest);
34127c478bd9Sstevel@tonic-gate }
34137c478bd9Sstevel@tonic-gate 
34147c478bd9Sstevel@tonic-gate /* ARGSUSED */
34157c478bd9Sstevel@tonic-gate static int
34167c478bd9Sstevel@tonic-gate line_cmp(const void *l_arg, const void *r_arg, void *private)
34177c478bd9Sstevel@tonic-gate {
34187c478bd9Sstevel@tonic-gate 	const struct avl_string *l = l_arg;
34197c478bd9Sstevel@tonic-gate 	const struct avl_string *r = r_arg;
34207c478bd9Sstevel@tonic-gate 
34217c478bd9Sstevel@tonic-gate 	return (memcmp(l->key, r->key, sortkey_sz));
34227c478bd9Sstevel@tonic-gate }
34237c478bd9Sstevel@tonic-gate 
34247c478bd9Sstevel@tonic-gate /* ARGSUSED */
34257c478bd9Sstevel@tonic-gate static int
34267c478bd9Sstevel@tonic-gate print_line(void *e, void *private)
34277c478bd9Sstevel@tonic-gate {
34287c478bd9Sstevel@tonic-gate 	struct avl_string *lp = e;
34297c478bd9Sstevel@tonic-gate 
34307c478bd9Sstevel@tonic-gate 	(void) puts(lp->str);
34317c478bd9Sstevel@tonic-gate 
34327c478bd9Sstevel@tonic-gate 	return (UU_WALK_NEXT);
34337c478bd9Sstevel@tonic-gate }
34347c478bd9Sstevel@tonic-gate 
3435048b0279SBryan Cantrill /* ARGSUSED */
3436048b0279SBryan Cantrill static void
3437048b0279SBryan Cantrill errignore(const char *str, ...)
3438048b0279SBryan Cantrill {}
3439048b0279SBryan Cantrill 
34407c478bd9Sstevel@tonic-gate int
34417c478bd9Sstevel@tonic-gate main(int argc, char **argv)
34427c478bd9Sstevel@tonic-gate {
34437c478bd9Sstevel@tonic-gate 	char opt, opt_mode;
34447c478bd9Sstevel@tonic-gate 	int i, n;
34457c478bd9Sstevel@tonic-gate 	char *columns_str = NULL;
34467c478bd9Sstevel@tonic-gate 	char *cp;
34477c478bd9Sstevel@tonic-gate 	const char *progname;
3448048b0279SBryan Cantrill 	int err, missing = 1, ignored, *errarg;
3449048b0279SBryan Cantrill 	uint_t nzents = 0, zent = 0;
3450048b0279SBryan Cantrill 	zoneid_t *zids = NULL;
3451048b0279SBryan Cantrill 	char zonename[ZONENAME_MAX];
3452048b0279SBryan Cantrill 	void (*errfunc)(const char *, ...);
34537c478bd9Sstevel@tonic-gate 
34547c478bd9Sstevel@tonic-gate 	int show_all = 0;
34557c478bd9Sstevel@tonic-gate 	int show_header = 1;
3456048b0279SBryan Cantrill 	int show_zones = 0;
34577c478bd9Sstevel@tonic-gate 
3458*d5c6878fSBryan Cantrill 	const char * const options = "aHpvno:R:s:S:dDlL?xZz:";
34597c478bd9Sstevel@tonic-gate 
34607c478bd9Sstevel@tonic-gate 	(void) setlocale(LC_ALL, "");
34617c478bd9Sstevel@tonic-gate 
3462dc86508eSVineeth Pillai 	locale = setlocale(LC_MESSAGES, NULL);
34637c478bd9Sstevel@tonic-gate 	if (locale) {
34647c478bd9Sstevel@tonic-gate 		locale = safe_strdup(locale);
34651f6eb021SLiane Praza 		_scf_sanitize_locale(locale);
34667c478bd9Sstevel@tonic-gate 	}
34677c478bd9Sstevel@tonic-gate 
34687c478bd9Sstevel@tonic-gate 	(void) textdomain(TEXT_DOMAIN);
34697c478bd9Sstevel@tonic-gate 	progname = uu_setpname(argv[0]);
34707c478bd9Sstevel@tonic-gate 
34717c478bd9Sstevel@tonic-gate 	exit_status = UU_EXIT_OK;
34727c478bd9Sstevel@tonic-gate 
34737c478bd9Sstevel@tonic-gate 	max_scf_name_length = scf_limit(SCF_LIMIT_MAX_NAME_LENGTH);
34747c478bd9Sstevel@tonic-gate 	max_scf_value_length = scf_limit(SCF_LIMIT_MAX_VALUE_LENGTH);
34757c478bd9Sstevel@tonic-gate 	max_scf_fmri_length = scf_limit(SCF_LIMIT_MAX_FMRI_LENGTH);
34761f6eb021SLiane Praza 	max_scf_type_length = scf_limit(SCF_LIMIT_MAX_PG_TYPE_LENGTH);
34777c478bd9Sstevel@tonic-gate 
34787c478bd9Sstevel@tonic-gate 	if (max_scf_name_length == -1 || max_scf_value_length == -1 ||
34791f6eb021SLiane Praza 	    max_scf_fmri_length == -1 || max_scf_type_length == -1)
34807c478bd9Sstevel@tonic-gate 		scfdie();
34817c478bd9Sstevel@tonic-gate 
34827c478bd9Sstevel@tonic-gate 	now = time(NULL);
34837c478bd9Sstevel@tonic-gate 	assert(now != -1);
34847c478bd9Sstevel@tonic-gate 
34857c478bd9Sstevel@tonic-gate 	/*
34867c478bd9Sstevel@tonic-gate 	 * opt_mode is the mode of operation.  0 for plain, 'd' for
34877c478bd9Sstevel@tonic-gate 	 * dependencies, 'D' for dependents, and 'l' for detailed (long).  We
34887c478bd9Sstevel@tonic-gate 	 * need to know now so we know which options are valid.
34897c478bd9Sstevel@tonic-gate 	 */
34907c478bd9Sstevel@tonic-gate 	opt_mode = 0;
34917c478bd9Sstevel@tonic-gate 	while ((opt = getopt(argc, argv, options)) != -1) {
34927c478bd9Sstevel@tonic-gate 		switch (opt) {
34937c478bd9Sstevel@tonic-gate 		case '?':
34947c478bd9Sstevel@tonic-gate 			if (optopt == '?') {
34957c478bd9Sstevel@tonic-gate 				print_help(progname);
34967c478bd9Sstevel@tonic-gate 				return (UU_EXIT_OK);
34977c478bd9Sstevel@tonic-gate 			} else {
34987c478bd9Sstevel@tonic-gate 				argserr(progname);
34997c478bd9Sstevel@tonic-gate 				/* NOTREACHED */
35007c478bd9Sstevel@tonic-gate 			}
35017c478bd9Sstevel@tonic-gate 
35027c478bd9Sstevel@tonic-gate 		case 'd':
35037c478bd9Sstevel@tonic-gate 		case 'D':
35047c478bd9Sstevel@tonic-gate 		case 'l':
3505*d5c6878fSBryan Cantrill 		case 'L':
35067c478bd9Sstevel@tonic-gate 			if (opt_mode != 0)
35077c478bd9Sstevel@tonic-gate 				argserr(progname);
35087c478bd9Sstevel@tonic-gate 
35097c478bd9Sstevel@tonic-gate 			opt_mode = opt;
35107c478bd9Sstevel@tonic-gate 			break;
35117c478bd9Sstevel@tonic-gate 
3512f6e214c7SGavin Maltby 		case 'n':
3513f6e214c7SGavin Maltby 			if (opt_mode != 0)
3514f6e214c7SGavin Maltby 				argserr(progname);
3515f6e214c7SGavin Maltby 
3516f6e214c7SGavin Maltby 			opt_mode = opt;
3517f6e214c7SGavin Maltby 			break;
3518f6e214c7SGavin Maltby 
35197c478bd9Sstevel@tonic-gate 		case 'x':
35207c478bd9Sstevel@tonic-gate 			if (opt_mode != 0)
35217c478bd9Sstevel@tonic-gate 				argserr(progname);
35227c478bd9Sstevel@tonic-gate 
35237c478bd9Sstevel@tonic-gate 			opt_mode = opt;
35247c478bd9Sstevel@tonic-gate 			break;
35257c478bd9Sstevel@tonic-gate 
35267c478bd9Sstevel@tonic-gate 		default:
35277c478bd9Sstevel@tonic-gate 			break;
35287c478bd9Sstevel@tonic-gate 		}
35297c478bd9Sstevel@tonic-gate 	}
35307c478bd9Sstevel@tonic-gate 
35317c478bd9Sstevel@tonic-gate 	sortkey_sz = 0;
35327c478bd9Sstevel@tonic-gate 
35337c478bd9Sstevel@tonic-gate 	optind = 1;	/* Reset getopt() */
35347c478bd9Sstevel@tonic-gate 	while ((opt = getopt(argc, argv, options)) != -1) {
35357c478bd9Sstevel@tonic-gate 		switch (opt) {
35367c478bd9Sstevel@tonic-gate 		case 'a':
35377c478bd9Sstevel@tonic-gate 			if (opt_mode != 0)
35387c478bd9Sstevel@tonic-gate 				argserr(progname);
35397c478bd9Sstevel@tonic-gate 			show_all = 1;
35407c478bd9Sstevel@tonic-gate 			break;
35417c478bd9Sstevel@tonic-gate 
35427c478bd9Sstevel@tonic-gate 		case 'H':
35437c478bd9Sstevel@tonic-gate 			if (opt_mode == 'l' || opt_mode == 'x')
35447c478bd9Sstevel@tonic-gate 				argserr(progname);
35457c478bd9Sstevel@tonic-gate 			show_header = 0;
35467c478bd9Sstevel@tonic-gate 			break;
35477c478bd9Sstevel@tonic-gate 
35487c478bd9Sstevel@tonic-gate 		case 'p':
35497c478bd9Sstevel@tonic-gate 			if (opt_mode == 'x')
35507c478bd9Sstevel@tonic-gate 				argserr(progname);
35517c478bd9Sstevel@tonic-gate 			opt_processes = 1;
35527c478bd9Sstevel@tonic-gate 			break;
35537c478bd9Sstevel@tonic-gate 
35547c478bd9Sstevel@tonic-gate 		case 'v':
35557c478bd9Sstevel@tonic-gate 			opt_verbose = 1;
35567c478bd9Sstevel@tonic-gate 			break;
35577c478bd9Sstevel@tonic-gate 
35587c478bd9Sstevel@tonic-gate 		case 'o':
35597c478bd9Sstevel@tonic-gate 			if (opt_mode == 'l' || opt_mode == 'x')
35607c478bd9Sstevel@tonic-gate 				argserr(progname);
35617c478bd9Sstevel@tonic-gate 			columns_str = optarg;
35627c478bd9Sstevel@tonic-gate 			break;
35637c478bd9Sstevel@tonic-gate 
35647c478bd9Sstevel@tonic-gate 		case 'R':
35657c478bd9Sstevel@tonic-gate 			if (opt_mode != 0 || opt_mode == 'x')
35667c478bd9Sstevel@tonic-gate 				argserr(progname);
35677c478bd9Sstevel@tonic-gate 
35687c478bd9Sstevel@tonic-gate 			add_restarter(optarg);
35697c478bd9Sstevel@tonic-gate 			break;
35707c478bd9Sstevel@tonic-gate 
35717c478bd9Sstevel@tonic-gate 		case 's':
35727c478bd9Sstevel@tonic-gate 		case 'S':
35737c478bd9Sstevel@tonic-gate 			if (opt_mode != 0)
35747c478bd9Sstevel@tonic-gate 				argserr(progname);
35757c478bd9Sstevel@tonic-gate 
35767c478bd9Sstevel@tonic-gate 			add_sort_column(optarg, optopt == 'S');
35777c478bd9Sstevel@tonic-gate 			break;
35787c478bd9Sstevel@tonic-gate 
35797c478bd9Sstevel@tonic-gate 		case 'd':
35807c478bd9Sstevel@tonic-gate 		case 'D':
35817c478bd9Sstevel@tonic-gate 		case 'l':
3582*d5c6878fSBryan Cantrill 		case 'L':
3583f6e214c7SGavin Maltby 		case 'n':
35847c478bd9Sstevel@tonic-gate 		case 'x':
35857c478bd9Sstevel@tonic-gate 			assert(opt_mode == optopt);
35867c478bd9Sstevel@tonic-gate 			break;
35877c478bd9Sstevel@tonic-gate 
3588048b0279SBryan Cantrill 		case 'z':
3589048b0279SBryan Cantrill 			if (getzoneid() != GLOBAL_ZONEID)
3590048b0279SBryan Cantrill 				uu_die(gettext("svcs -z may only be used from "
3591048b0279SBryan Cantrill 				    "the global zone\n"));
3592048b0279SBryan Cantrill 			if (show_zones)
3593048b0279SBryan Cantrill 				argserr(progname);
3594048b0279SBryan Cantrill 
3595048b0279SBryan Cantrill 			opt_zone = optarg;
3596048b0279SBryan Cantrill 			break;
3597048b0279SBryan Cantrill 
3598048b0279SBryan Cantrill 		case 'Z':
3599048b0279SBryan Cantrill 			if (getzoneid() != GLOBAL_ZONEID)
3600048b0279SBryan Cantrill 				uu_die(gettext("svcs -Z may only be used from "
3601048b0279SBryan Cantrill 				    "the global zone\n"));
3602048b0279SBryan Cantrill 			if (opt_zone != NULL)
3603048b0279SBryan Cantrill 				argserr(progname);
3604048b0279SBryan Cantrill 
3605048b0279SBryan Cantrill 			show_zones = 1;
3606048b0279SBryan Cantrill 			break;
3607048b0279SBryan Cantrill 
36087c478bd9Sstevel@tonic-gate 		case '?':
36097c478bd9Sstevel@tonic-gate 			argserr(progname);
36107c478bd9Sstevel@tonic-gate 			/* NOTREACHED */
36117c478bd9Sstevel@tonic-gate 
36127c478bd9Sstevel@tonic-gate 		default:
36137c478bd9Sstevel@tonic-gate 			assert(0);
36147c478bd9Sstevel@tonic-gate 			abort();
36157c478bd9Sstevel@tonic-gate 		}
36167c478bd9Sstevel@tonic-gate 	}
36177c478bd9Sstevel@tonic-gate 
36187c478bd9Sstevel@tonic-gate 	/*
36197c478bd9Sstevel@tonic-gate 	 * -a is only meaningful when given no arguments
36207c478bd9Sstevel@tonic-gate 	 */
36217c478bd9Sstevel@tonic-gate 	if (show_all && optind != argc)
36227c478bd9Sstevel@tonic-gate 		uu_warn(gettext("-a ignored when used with arguments.\n"));
36237c478bd9Sstevel@tonic-gate 
3624048b0279SBryan Cantrill 	while (show_zones) {
3625048b0279SBryan Cantrill 		uint_t found;
3626048b0279SBryan Cantrill 
3627048b0279SBryan Cantrill 		if (zone_list(NULL, &nzents) != 0)
3628048b0279SBryan Cantrill 			uu_die(gettext("could not get number of zones"));
3629048b0279SBryan Cantrill 
3630048b0279SBryan Cantrill 		if ((zids = malloc(nzents * sizeof (zoneid_t))) == NULL) {
3631048b0279SBryan Cantrill 			uu_die(gettext("could not allocate array for "
3632048b0279SBryan Cantrill 			    "%d zone IDs"), nzents);
3633048b0279SBryan Cantrill 		}
3634048b0279SBryan Cantrill 
3635048b0279SBryan Cantrill 		found = nzents;
3636048b0279SBryan Cantrill 
3637048b0279SBryan Cantrill 		if (zone_list(zids, &found) != 0)
3638048b0279SBryan Cantrill 			uu_die(gettext("could not get zone list"));
3639048b0279SBryan Cantrill 
3640048b0279SBryan Cantrill 		/*
3641048b0279SBryan Cantrill 		 * If the number of zones has not changed between our calls to
3642048b0279SBryan Cantrill 		 * zone_list(), we're done -- otherwise, we must free our array
3643048b0279SBryan Cantrill 		 * of zone IDs and take another lap.
3644048b0279SBryan Cantrill 		 */
3645048b0279SBryan Cantrill 		if (found == nzents)
3646048b0279SBryan Cantrill 			break;
3647048b0279SBryan Cantrill 
3648048b0279SBryan Cantrill 		free(zids);
3649048b0279SBryan Cantrill 	}
3650048b0279SBryan Cantrill 
3651048b0279SBryan Cantrill 	argc -= optind;
3652048b0279SBryan Cantrill 	argv += optind;
3653048b0279SBryan Cantrill 
3654048b0279SBryan Cantrill again:
36557c478bd9Sstevel@tonic-gate 	h = scf_handle_create(SCF_VERSION);
36567c478bd9Sstevel@tonic-gate 	if (h == NULL)
36577c478bd9Sstevel@tonic-gate 		scfdie();
36587c478bd9Sstevel@tonic-gate 
3659048b0279SBryan Cantrill 	if (opt_zone != NULL || zids != NULL) {
3660048b0279SBryan Cantrill 		scf_value_t *zone;
3661048b0279SBryan Cantrill 
3662048b0279SBryan Cantrill 		assert(opt_zone == NULL || zids == NULL);
3663048b0279SBryan Cantrill 
3664048b0279SBryan Cantrill 		if (opt_zone == NULL) {
3665048b0279SBryan Cantrill 			if (getzonenamebyid(zids[zent++],
3666048b0279SBryan Cantrill 			    zonename, sizeof (zonename)) < 0) {
3667048b0279SBryan Cantrill 				uu_warn(gettext("could not get name for "
3668048b0279SBryan Cantrill 				    "zone %d; ignoring"), zids[zent - 1]);
3669048b0279SBryan Cantrill 				goto nextzone;
3670048b0279SBryan Cantrill 			}
3671048b0279SBryan Cantrill 
3672048b0279SBryan Cantrill 			g_zonename = zonename;
3673048b0279SBryan Cantrill 		} else {
3674048b0279SBryan Cantrill 			g_zonename = opt_zone;
3675048b0279SBryan Cantrill 		}
3676048b0279SBryan Cantrill 
3677048b0279SBryan Cantrill 		if ((zone = scf_value_create(h)) == NULL)
3678048b0279SBryan Cantrill 			scfdie();
3679048b0279SBryan Cantrill 
3680048b0279SBryan Cantrill 		if (scf_value_set_astring(zone, g_zonename) != SCF_SUCCESS)
3681048b0279SBryan Cantrill 			scfdie();
3682048b0279SBryan Cantrill 
3683048b0279SBryan Cantrill 		if (scf_handle_decorate(h, "zone", zone) != SCF_SUCCESS)
3684048b0279SBryan Cantrill 			uu_die(gettext("invalid zone '%s'\n"), g_zonename);
3685048b0279SBryan Cantrill 
3686048b0279SBryan Cantrill 		scf_value_destroy(zone);
3687048b0279SBryan Cantrill 	}
3688048b0279SBryan Cantrill 
3689048b0279SBryan Cantrill 	if (scf_handle_bind(h) == -1) {
3690048b0279SBryan Cantrill 		if (g_zonename != NULL) {
3691048b0279SBryan Cantrill 			uu_warn(gettext("Could not bind to repository "
3692048b0279SBryan Cantrill 			    "server for zone %s: %s\n"), g_zonename,
3693048b0279SBryan Cantrill 			    scf_strerror(scf_error()));
3694048b0279SBryan Cantrill 
3695048b0279SBryan Cantrill 			if (!show_zones)
3696048b0279SBryan Cantrill 				return (UU_EXIT_FATAL);
3697048b0279SBryan Cantrill 
3698048b0279SBryan Cantrill 			goto nextzone;
3699048b0279SBryan Cantrill 		}
3700048b0279SBryan Cantrill 
37017c478bd9Sstevel@tonic-gate 		uu_die(gettext("Could not bind to repository server: %s.  "
37027c478bd9Sstevel@tonic-gate 		    "Exiting.\n"), scf_strerror(scf_error()));
3703048b0279SBryan Cantrill 	}
37047c478bd9Sstevel@tonic-gate 
37057c478bd9Sstevel@tonic-gate 	if ((g_pg = scf_pg_create(h)) == NULL ||
37067c478bd9Sstevel@tonic-gate 	    (g_prop = scf_property_create(h)) == NULL ||
37077c478bd9Sstevel@tonic-gate 	    (g_val = scf_value_create(h)) == NULL)
37087c478bd9Sstevel@tonic-gate 		scfdie();
37097c478bd9Sstevel@tonic-gate 
3710048b0279SBryan Cantrill 	if (show_zones) {
3711048b0279SBryan Cantrill 		/*
3712048b0279SBryan Cantrill 		 * It's hard to avoid editorializing here, but suffice it to
3713048b0279SBryan Cantrill 		 * say that scf_walk_fmri() takes an error handler, the
3714048b0279SBryan Cantrill 		 * interface to which has been regrettably misdesigned:  the
3715048b0279SBryan Cantrill 		 * handler itself takes exclusively a string -- even though
3716048b0279SBryan Cantrill 		 * scf_walk_fmri() has detailed, programmatic knowledge
3717048b0279SBryan Cantrill 		 * of the error condition at the time it calls its errfunc.
3718048b0279SBryan Cantrill 		 * That is, only the error message and not the error semantics
3719048b0279SBryan Cantrill 		 * are given to the handler.  This is poor interface at best,
3720048b0279SBryan Cantrill 		 * but it is particularly problematic when we are talking to
3721048b0279SBryan Cantrill 		 * multiple repository servers (as when we are iterating over
3722048b0279SBryan Cantrill 		 * all zones) as we do not want to treat failure to find a
3723048b0279SBryan Cantrill 		 * match in one zone as overall failure.  Ideally, we would
3724048b0279SBryan Cantrill 		 * simply ignore SCF_MSG_PATTERN_NOINSTANCE and correctly
3725048b0279SBryan Cantrill 		 * process the others, but alas, no such interface exists --
3726048b0279SBryan Cantrill 		 * and we must settle for instead ignoring all errfunc-called
3727048b0279SBryan Cantrill 		 * errors in the case that we are iterating over all zones...
3728048b0279SBryan Cantrill 		 */
3729048b0279SBryan Cantrill 		errfunc = errignore;
3730048b0279SBryan Cantrill 		errarg = missing ? &missing : &ignored;
3731048b0279SBryan Cantrill 		missing = 0;
3732048b0279SBryan Cantrill 	} else {
3733048b0279SBryan Cantrill 		errfunc = uu_warn;
3734048b0279SBryan Cantrill 		errarg = &exit_status;
3735048b0279SBryan Cantrill 	}
37367c478bd9Sstevel@tonic-gate 
37377c478bd9Sstevel@tonic-gate 	/*
37387c478bd9Sstevel@tonic-gate 	 * If we're in long mode, take care of it now before we deal with the
37397c478bd9Sstevel@tonic-gate 	 * sorting and the columns, since we won't use them anyway.
37407c478bd9Sstevel@tonic-gate 	 */
37417c478bd9Sstevel@tonic-gate 	if (opt_mode == 'l') {
37427c478bd9Sstevel@tonic-gate 		if (argc == 0)
37437c478bd9Sstevel@tonic-gate 			argserr(progname);
37447c478bd9Sstevel@tonic-gate 
37457c478bd9Sstevel@tonic-gate 		if ((err = scf_walk_fmri(h, argc, argv, SCF_WALK_MULTIPLE,
3746048b0279SBryan Cantrill 		    print_detailed, NULL, errarg, errfunc)) != 0) {
37477c478bd9Sstevel@tonic-gate 			uu_warn(gettext("failed to iterate over "
37487c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
37497c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
37507c478bd9Sstevel@tonic-gate 		}
37517c478bd9Sstevel@tonic-gate 
3752048b0279SBryan Cantrill 		goto nextzone;
37537c478bd9Sstevel@tonic-gate 	}
37547c478bd9Sstevel@tonic-gate 
3755*d5c6878fSBryan Cantrill 	if (opt_mode == 'L') {
3756*d5c6878fSBryan Cantrill 		if ((err = scf_walk_fmri(h, argc, argv, SCF_WALK_MULTIPLE,
3757*d5c6878fSBryan Cantrill 		    print_log, NULL, &exit_status, uu_warn)) != 0) {
3758*d5c6878fSBryan Cantrill 			uu_warn(gettext("failed to iterate over "
3759*d5c6878fSBryan Cantrill 			    "instances: %s\n"), scf_strerror(err));
3760*d5c6878fSBryan Cantrill 			exit_status = UU_EXIT_FATAL;
3761*d5c6878fSBryan Cantrill 		}
3762*d5c6878fSBryan Cantrill 
3763*d5c6878fSBryan Cantrill 		goto nextzone;
3764*d5c6878fSBryan Cantrill 	}
3765*d5c6878fSBryan Cantrill 
3766f6e214c7SGavin Maltby 	if (opt_mode == 'n') {
3767f6e214c7SGavin Maltby 		print_notify_special();
3768f6e214c7SGavin Maltby 		if ((err = scf_walk_fmri(h, argc, argv, SCF_WALK_MULTIPLE,
3769048b0279SBryan Cantrill 		    print_notify, NULL, errarg, errfunc)) != 0) {
3770f6e214c7SGavin Maltby 			uu_warn(gettext("failed to iterate over "
3771f6e214c7SGavin Maltby 			    "instances: %s\n"), scf_strerror(err));
3772f6e214c7SGavin Maltby 			exit_status = UU_EXIT_FATAL;
3773f6e214c7SGavin Maltby 		}
3774f6e214c7SGavin Maltby 
3775048b0279SBryan Cantrill 		goto nextzone;
3776f6e214c7SGavin Maltby 	}
3777f6e214c7SGavin Maltby 
37787c478bd9Sstevel@tonic-gate 	if (opt_mode == 'x') {
37797c478bd9Sstevel@tonic-gate 		explain(opt_verbose, argc, argv);
3780048b0279SBryan Cantrill 		goto nextzone;
37817c478bd9Sstevel@tonic-gate 	}
37827c478bd9Sstevel@tonic-gate 
3783048b0279SBryan Cantrill 	if (columns_str == NULL) {
3784048b0279SBryan Cantrill 		if (opt_snum == 0) {
3785048b0279SBryan Cantrill 			if (show_zones)
3786048b0279SBryan Cantrill 				add_sort_column("zone", 0);
3787048b0279SBryan Cantrill 
3788048b0279SBryan Cantrill 			/* Default sort. */
3789048b0279SBryan Cantrill 			add_sort_column("state", 0);
3790048b0279SBryan Cantrill 			add_sort_column("stime", 0);
3791048b0279SBryan Cantrill 			add_sort_column("fmri", 0);
3792048b0279SBryan Cantrill 		}
37937c478bd9Sstevel@tonic-gate 
3794048b0279SBryan Cantrill 		if (!opt_verbose) {
3795048b0279SBryan Cantrill 			columns_str = safe_strdup(show_zones ?
3796048b0279SBryan Cantrill 			    "zone,state,stime,fmri" : "state,stime,fmri");
3797048b0279SBryan Cantrill 		} else {
3798048b0279SBryan Cantrill 			columns_str = safe_strdup(show_zones ?
3799048b0279SBryan Cantrill 			    "zone,state,nstate,stime,ctid,fmri" :
3800048b0279SBryan Cantrill 			    "state,nstate,stime,ctid,fmri");
3801048b0279SBryan Cantrill 		}
38027c478bd9Sstevel@tonic-gate 	}
38037c478bd9Sstevel@tonic-gate 
3804048b0279SBryan Cantrill 	if (opt_columns == NULL) {
3805048b0279SBryan Cantrill 		/* Decode columns_str into opt_columns. */
3806048b0279SBryan Cantrill 		line_sz = 0;
38077c478bd9Sstevel@tonic-gate 
3808048b0279SBryan Cantrill 		opt_cnum = 1;
3809048b0279SBryan Cantrill 		for (cp = columns_str; *cp != '\0'; ++cp)
3810048b0279SBryan Cantrill 			if (*cp == ',')
3811048b0279SBryan Cantrill 				++opt_cnum;
38127c478bd9Sstevel@tonic-gate 
3813048b0279SBryan Cantrill 		opt_columns = malloc(opt_cnum * sizeof (*opt_columns));
3814048b0279SBryan Cantrill 		if (opt_columns == NULL)
3815048b0279SBryan Cantrill 			uu_die(gettext("Too many columns.\n"));
38167c478bd9Sstevel@tonic-gate 
3817048b0279SBryan Cantrill 		for (n = 0; *columns_str != '\0'; ++n) {
3818048b0279SBryan Cantrill 			i = getcolumnopt(&columns_str);
3819048b0279SBryan Cantrill 			if (i == -1)
3820048b0279SBryan Cantrill 				uu_die(gettext("Unknown column \"%s\".\n"),
3821048b0279SBryan Cantrill 				    columns_str);
38227c478bd9Sstevel@tonic-gate 
3823048b0279SBryan Cantrill 			if (strcmp(columns[i].name, "N") == 0 ||
3824048b0279SBryan Cantrill 			    strcmp(columns[i].name, "SN") == 0 ||
3825048b0279SBryan Cantrill 			    strcmp(columns[i].name, "NSTA") == 0 ||
3826048b0279SBryan Cantrill 			    strcmp(columns[i].name, "NSTATE") == 0)
3827048b0279SBryan Cantrill 				opt_nstate_shown = 1;
38287c478bd9Sstevel@tonic-gate 
3829048b0279SBryan Cantrill 			opt_columns[n] = i;
3830048b0279SBryan Cantrill 			line_sz += columns[i].width + 1;
3831048b0279SBryan Cantrill 		}
38327c478bd9Sstevel@tonic-gate 
3833048b0279SBryan Cantrill 		if ((lines_pool = uu_avl_pool_create("lines_pool",
3834048b0279SBryan Cantrill 		    sizeof (struct avl_string), offsetof(struct avl_string,
3835048b0279SBryan Cantrill 		    node), line_cmp, UU_AVL_DEBUG)) == NULL ||
3836048b0279SBryan Cantrill 		    (lines = uu_avl_create(lines_pool, NULL, 0)) == NULL)
3837048b0279SBryan Cantrill 			uu_die(gettext("Unexpected libuutil error: %s\n"),
3838048b0279SBryan Cantrill 			    uu_strerror(uu_error()));
38397c478bd9Sstevel@tonic-gate 	}
38407c478bd9Sstevel@tonic-gate 
38417c478bd9Sstevel@tonic-gate 	switch (opt_mode) {
38427c478bd9Sstevel@tonic-gate 	case 0:
3843048b0279SBryan Cantrill 		/*
3844048b0279SBryan Cantrill 		 * If we already have a hash table (e.g., because we are
3845048b0279SBryan Cantrill 		 * processing multiple zones), destroy it before creating
3846048b0279SBryan Cantrill 		 * a new one.
3847048b0279SBryan Cantrill 		 */
3848048b0279SBryan Cantrill 		if (ht_buckets != NULL)
3849048b0279SBryan Cantrill 			ht_free();
3850048b0279SBryan Cantrill 
38517c478bd9Sstevel@tonic-gate 		ht_init();
38527c478bd9Sstevel@tonic-gate 
38537c478bd9Sstevel@tonic-gate 		/* Always show all FMRIs when given arguments or restarters */
38547c478bd9Sstevel@tonic-gate 		if (argc != 0 || restarters != NULL)
38557c478bd9Sstevel@tonic-gate 			show_all =  1;
38567c478bd9Sstevel@tonic-gate 
38577c478bd9Sstevel@tonic-gate 		if ((err = scf_walk_fmri(h, argc, argv,
38587c478bd9Sstevel@tonic-gate 		    SCF_WALK_MULTIPLE | SCF_WALK_LEGACY,
38597c478bd9Sstevel@tonic-gate 		    show_all ? list_instance : list_if_enabled, NULL,
3860048b0279SBryan Cantrill 		    errarg, errfunc)) != 0) {
38617c478bd9Sstevel@tonic-gate 			uu_warn(gettext("failed to iterate over "
38627c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
38637c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
38647c478bd9Sstevel@tonic-gate 		}
38657c478bd9Sstevel@tonic-gate 		break;
38667c478bd9Sstevel@tonic-gate 
38677c478bd9Sstevel@tonic-gate 	case 'd':
38687c478bd9Sstevel@tonic-gate 		if (argc == 0)
38697c478bd9Sstevel@tonic-gate 			argserr(progname);
38707c478bd9Sstevel@tonic-gate 
38717c478bd9Sstevel@tonic-gate 		if ((err = scf_walk_fmri(h, argc, argv,
38727c478bd9Sstevel@tonic-gate 		    SCF_WALK_MULTIPLE, list_dependencies, NULL,
3873048b0279SBryan Cantrill 		    errarg, errfunc)) != 0) {
38747c478bd9Sstevel@tonic-gate 			uu_warn(gettext("failed to iterate over "
38757c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
38767c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
38777c478bd9Sstevel@tonic-gate 		}
38787c478bd9Sstevel@tonic-gate 		break;
38797c478bd9Sstevel@tonic-gate 
38807c478bd9Sstevel@tonic-gate 	case 'D':
38817c478bd9Sstevel@tonic-gate 		if (argc == 0)
38827c478bd9Sstevel@tonic-gate 			argserr(progname);
38837c478bd9Sstevel@tonic-gate 
38847c478bd9Sstevel@tonic-gate 		provider_scope = safe_malloc(max_scf_fmri_length);
38857c478bd9Sstevel@tonic-gate 		provider_svc = safe_malloc(max_scf_fmri_length);
38867c478bd9Sstevel@tonic-gate 		provider_inst = safe_malloc(max_scf_fmri_length);
38877c478bd9Sstevel@tonic-gate 
38887c478bd9Sstevel@tonic-gate 		if ((err = scf_walk_fmri(h, argc, argv,
38897c478bd9Sstevel@tonic-gate 		    SCF_WALK_MULTIPLE | SCF_WALK_SERVICE,
38907c478bd9Sstevel@tonic-gate 		    list_dependents, NULL, &exit_status, uu_warn)) != 0) {
38917c478bd9Sstevel@tonic-gate 			uu_warn(gettext("failed to iterate over "
38927c478bd9Sstevel@tonic-gate 			    "instances: %s\n"), scf_strerror(err));
38937c478bd9Sstevel@tonic-gate 			exit_status = UU_EXIT_FATAL;
38947c478bd9Sstevel@tonic-gate 		}
38957c478bd9Sstevel@tonic-gate 
38967c478bd9Sstevel@tonic-gate 		free(provider_scope);
38977c478bd9Sstevel@tonic-gate 		free(provider_svc);
38987c478bd9Sstevel@tonic-gate 		free(provider_inst);
38997c478bd9Sstevel@tonic-gate 		break;
39007c478bd9Sstevel@tonic-gate 
3901f6e214c7SGavin Maltby 	case 'n':
3902f6e214c7SGavin Maltby 		break;
3903f6e214c7SGavin Maltby 
39047c478bd9Sstevel@tonic-gate 	default:
39057c478bd9Sstevel@tonic-gate 		assert(0);
39067c478bd9Sstevel@tonic-gate 		abort();
39077c478bd9Sstevel@tonic-gate 	}
39087c478bd9Sstevel@tonic-gate 
3909048b0279SBryan Cantrill nextzone:
3910048b0279SBryan Cantrill 	if (show_zones && zent < nzents && exit_status == 0) {
3911048b0279SBryan Cantrill 		scf_handle_destroy(h);
3912048b0279SBryan Cantrill 		goto again;
3913048b0279SBryan Cantrill 	}
3914048b0279SBryan Cantrill 
3915048b0279SBryan Cantrill 	if (show_zones && exit_status == 0)
3916048b0279SBryan Cantrill 		exit_status = missing;
3917048b0279SBryan Cantrill 
3918048b0279SBryan Cantrill 	if (opt_columns == NULL)
3919048b0279SBryan Cantrill 		return (exit_status);
3920048b0279SBryan Cantrill 
39217c478bd9Sstevel@tonic-gate 	if (show_header)
39227c478bd9Sstevel@tonic-gate 		print_header();
39237c478bd9Sstevel@tonic-gate 
39247c478bd9Sstevel@tonic-gate 	(void) uu_avl_walk(lines, print_line, NULL, 0);
39257c478bd9Sstevel@tonic-gate 
39267c478bd9Sstevel@tonic-gate 	return (exit_status);
39277c478bd9Sstevel@tonic-gate }
3928