17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 57c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 67c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 77c478bd9Sstevel@tonic-gate * with the License. 87c478bd9Sstevel@tonic-gate * 97c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 107c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 117c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 127c478bd9Sstevel@tonic-gate * and limitations under the License. 137c478bd9Sstevel@tonic-gate * 147c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 157c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 167c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 177c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 187c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 197c478bd9Sstevel@tonic-gate * 207c478bd9Sstevel@tonic-gate * CDDL HEADER END 217c478bd9Sstevel@tonic-gate */ 227e362f58Scomay 237c478bd9Sstevel@tonic-gate /* 247c478bd9Sstevel@tonic-gate * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 257c478bd9Sstevel@tonic-gate * Use is subject to license terms. 267c478bd9Sstevel@tonic-gate */ 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate /* 317c478bd9Sstevel@tonic-gate * zoneadm is a command interpreter for zone administration. It is all in 327c478bd9Sstevel@tonic-gate * C (i.e., no lex/yacc), and all the argument passing is argc/argv based. 337c478bd9Sstevel@tonic-gate * main() calls parse_and_run() which calls cmd_match(), then invokes the 347c478bd9Sstevel@tonic-gate * appropriate command's handler function. The rest of the program is the 357c478bd9Sstevel@tonic-gate * handler functions and their helper functions. 367c478bd9Sstevel@tonic-gate * 377c478bd9Sstevel@tonic-gate * Some of the helper functions are used largely to simplify I18N: reducing 387c478bd9Sstevel@tonic-gate * the need for translation notes. This is particularly true of many of 397c478bd9Sstevel@tonic-gate * the zerror() calls: doing e.g. zerror(gettext("%s failed"), "foo") rather 407c478bd9Sstevel@tonic-gate * than zerror(gettext("foo failed")) with a translation note indicating 417c478bd9Sstevel@tonic-gate * that "foo" need not be translated. 427c478bd9Sstevel@tonic-gate */ 437c478bd9Sstevel@tonic-gate 447c478bd9Sstevel@tonic-gate #include <stdio.h> 457c478bd9Sstevel@tonic-gate #include <errno.h> 467c478bd9Sstevel@tonic-gate #include <unistd.h> 477c478bd9Sstevel@tonic-gate #include <signal.h> 487c478bd9Sstevel@tonic-gate #include <stdarg.h> 497c478bd9Sstevel@tonic-gate #include <ctype.h> 507c478bd9Sstevel@tonic-gate #include <stdlib.h> 517c478bd9Sstevel@tonic-gate #include <string.h> 527c478bd9Sstevel@tonic-gate #include <wait.h> 537c478bd9Sstevel@tonic-gate #include <zone.h> 547c478bd9Sstevel@tonic-gate #include <priv.h> 557c478bd9Sstevel@tonic-gate #include <locale.h> 567c478bd9Sstevel@tonic-gate #include <libintl.h> 577c478bd9Sstevel@tonic-gate #include <libzonecfg.h> 587c478bd9Sstevel@tonic-gate #include <bsm/adt.h> 597c478bd9Sstevel@tonic-gate #include <sys/utsname.h> 607c478bd9Sstevel@tonic-gate #include <sys/param.h> 617c478bd9Sstevel@tonic-gate #include <sys/types.h> 627c478bd9Sstevel@tonic-gate #include <sys/stat.h> 637c478bd9Sstevel@tonic-gate #include <sys/statvfs.h> 647c478bd9Sstevel@tonic-gate #include <assert.h> 657c478bd9Sstevel@tonic-gate #include <sys/sockio.h> 667c478bd9Sstevel@tonic-gate #include <sys/mntent.h> 677c478bd9Sstevel@tonic-gate #include <limits.h> 687c478bd9Sstevel@tonic-gate 697c478bd9Sstevel@tonic-gate #include <fcntl.h> 707c478bd9Sstevel@tonic-gate #include <door.h> 717c478bd9Sstevel@tonic-gate #include <macros.h> 727c478bd9Sstevel@tonic-gate #include <libgen.h> 737c478bd9Sstevel@tonic-gate 747c478bd9Sstevel@tonic-gate #include <pool.h> 757c478bd9Sstevel@tonic-gate #include <sys/pool.h> 767c478bd9Sstevel@tonic-gate 777c478bd9Sstevel@tonic-gate #define MAXARGS 8 787c478bd9Sstevel@tonic-gate 797c478bd9Sstevel@tonic-gate /* Reflects kernel zone entries */ 807c478bd9Sstevel@tonic-gate typedef struct zone_entry { 817c478bd9Sstevel@tonic-gate zoneid_t zid; 827c478bd9Sstevel@tonic-gate char zname[ZONENAME_MAX]; 837c478bd9Sstevel@tonic-gate char *zstate_str; 847c478bd9Sstevel@tonic-gate zone_state_t zstate_num; 857c478bd9Sstevel@tonic-gate char zroot[MAXPATHLEN]; 867c478bd9Sstevel@tonic-gate } zone_entry_t; 877c478bd9Sstevel@tonic-gate 887c478bd9Sstevel@tonic-gate static zone_entry_t *zents; 897c478bd9Sstevel@tonic-gate static size_t nzents; 907c478bd9Sstevel@tonic-gate 917c478bd9Sstevel@tonic-gate #if !defined(TEXT_DOMAIN) /* should be defined by cc -D */ 927c478bd9Sstevel@tonic-gate #define TEXT_DOMAIN "SYS_TEST" /* Use this only if it wasn't */ 937c478bd9Sstevel@tonic-gate #endif 947c478bd9Sstevel@tonic-gate 957c478bd9Sstevel@tonic-gate #define Z_ERR 1 967c478bd9Sstevel@tonic-gate #define Z_USAGE 2 977c478bd9Sstevel@tonic-gate 987c478bd9Sstevel@tonic-gate /* 0755 is the default directory mode. */ 997c478bd9Sstevel@tonic-gate #define DEFAULT_DIR_MODE \ 1007c478bd9Sstevel@tonic-gate (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) 1017c478bd9Sstevel@tonic-gate 1027c478bd9Sstevel@tonic-gate #define CMD_HELP 0 1037c478bd9Sstevel@tonic-gate #define CMD_BOOT 1 1047c478bd9Sstevel@tonic-gate #define CMD_HALT 2 1057c478bd9Sstevel@tonic-gate #define CMD_READY 3 1067c478bd9Sstevel@tonic-gate #define CMD_REBOOT 4 1077c478bd9Sstevel@tonic-gate #define CMD_LIST 5 1087c478bd9Sstevel@tonic-gate #define CMD_VERIFY 6 1097c478bd9Sstevel@tonic-gate #define CMD_INSTALL 7 1107c478bd9Sstevel@tonic-gate #define CMD_UNINSTALL 8 111*108322fbScarlsonj #define CMD_MOUNT 9 112*108322fbScarlsonj #define CMD_UNMOUNT 10 1137c478bd9Sstevel@tonic-gate 1147c478bd9Sstevel@tonic-gate #define CMD_MIN CMD_HELP 115*108322fbScarlsonj #define CMD_MAX CMD_UNMOUNT 1167c478bd9Sstevel@tonic-gate 1177c478bd9Sstevel@tonic-gate struct cmd { 1187c478bd9Sstevel@tonic-gate uint_t cmd_num; /* command number */ 1197c478bd9Sstevel@tonic-gate char *cmd_name; /* command name */ 1207c478bd9Sstevel@tonic-gate char *short_usage; /* short form help */ 1217c478bd9Sstevel@tonic-gate int (*handler)(int argc, char *argv[]); /* function to call */ 1227c478bd9Sstevel@tonic-gate 1237c478bd9Sstevel@tonic-gate }; 1247c478bd9Sstevel@tonic-gate 1257c478bd9Sstevel@tonic-gate #define SHELP_HELP "help" 1267c478bd9Sstevel@tonic-gate #define SHELP_BOOT "boot [-s]" 1277c478bd9Sstevel@tonic-gate #define SHELP_HALT "halt" 1287c478bd9Sstevel@tonic-gate #define SHELP_READY "ready" 1297c478bd9Sstevel@tonic-gate #define SHELP_REBOOT "reboot" 1307c478bd9Sstevel@tonic-gate #define SHELP_LIST "list [-cipv]" 1317c478bd9Sstevel@tonic-gate #define SHELP_VERIFY "verify" 1327c478bd9Sstevel@tonic-gate #define SHELP_INSTALL "install" 1337c478bd9Sstevel@tonic-gate #define SHELP_UNINSTALL "uninstall [-F]" 1347c478bd9Sstevel@tonic-gate 1357c478bd9Sstevel@tonic-gate static int help_func(int argc, char *argv[]); 1367c478bd9Sstevel@tonic-gate static int ready_func(int argc, char *argv[]); 1377c478bd9Sstevel@tonic-gate static int boot_func(int argc, char *argv[]); 1387c478bd9Sstevel@tonic-gate static int halt_func(int argc, char *argv[]); 1397c478bd9Sstevel@tonic-gate static int reboot_func(int argc, char *argv[]); 1407c478bd9Sstevel@tonic-gate static int list_func(int argc, char *argv[]); 1417c478bd9Sstevel@tonic-gate static int verify_func(int argc, char *argv[]); 1427c478bd9Sstevel@tonic-gate static int install_func(int argc, char *argv[]); 1437c478bd9Sstevel@tonic-gate static int uninstall_func(int argc, char *argv[]); 144*108322fbScarlsonj static int mount_func(int argc, char *argv[]); 145*108322fbScarlsonj static int unmount_func(int argc, char *argv[]); 1467c478bd9Sstevel@tonic-gate static int sanity_check(char *zone, int cmd_num, boolean_t running, 1477c478bd9Sstevel@tonic-gate boolean_t unsafe_when_running); 1487c478bd9Sstevel@tonic-gate static int cmd_match(char *cmd); 1497c478bd9Sstevel@tonic-gate static int verify_details(int); 1507c478bd9Sstevel@tonic-gate 1517c478bd9Sstevel@tonic-gate static struct cmd cmdtab[] = { 1527c478bd9Sstevel@tonic-gate { CMD_HELP, "help", SHELP_HELP, help_func }, 1537c478bd9Sstevel@tonic-gate { CMD_BOOT, "boot", SHELP_BOOT, boot_func }, 1547c478bd9Sstevel@tonic-gate { CMD_HALT, "halt", SHELP_HALT, halt_func }, 1557c478bd9Sstevel@tonic-gate { CMD_READY, "ready", SHELP_READY, ready_func }, 1567c478bd9Sstevel@tonic-gate { CMD_REBOOT, "reboot", SHELP_REBOOT, reboot_func }, 1577c478bd9Sstevel@tonic-gate { CMD_LIST, "list", SHELP_LIST, list_func }, 1587c478bd9Sstevel@tonic-gate { CMD_VERIFY, "verify", SHELP_VERIFY, verify_func }, 1597c478bd9Sstevel@tonic-gate { CMD_INSTALL, "install", SHELP_INSTALL, install_func }, 1607c478bd9Sstevel@tonic-gate { CMD_UNINSTALL, "uninstall", SHELP_UNINSTALL, 161*108322fbScarlsonj uninstall_func }, 162*108322fbScarlsonj /* Private commands for admin/install */ 163*108322fbScarlsonj { CMD_MOUNT, "mount", NULL, mount_func }, 164*108322fbScarlsonj { CMD_UNMOUNT, "unmount", NULL, unmount_func } 1657c478bd9Sstevel@tonic-gate }; 1667c478bd9Sstevel@tonic-gate 1677c478bd9Sstevel@tonic-gate /* global variables */ 1687c478bd9Sstevel@tonic-gate 1697c478bd9Sstevel@tonic-gate /* set early in main(), never modified thereafter, used all over the place */ 1707c478bd9Sstevel@tonic-gate static char *execname; 1717c478bd9Sstevel@tonic-gate static char *target_zone; 1727c478bd9Sstevel@tonic-gate static char *locale; 1737c478bd9Sstevel@tonic-gate 1747c478bd9Sstevel@tonic-gate /* used in do_subproc() and signal handler */ 1757c478bd9Sstevel@tonic-gate static volatile boolean_t child_killed; 1767c478bd9Sstevel@tonic-gate 1777c478bd9Sstevel@tonic-gate static char * 1787c478bd9Sstevel@tonic-gate cmd_to_str(int cmd_num) 1797c478bd9Sstevel@tonic-gate { 1807c478bd9Sstevel@tonic-gate assert(cmd_num >= CMD_MIN && cmd_num <= CMD_MAX); 1817c478bd9Sstevel@tonic-gate return (cmdtab[cmd_num].cmd_name); 1827c478bd9Sstevel@tonic-gate } 1837c478bd9Sstevel@tonic-gate 1847c478bd9Sstevel@tonic-gate /* This is a separate function because of gettext() wrapping. */ 1857c478bd9Sstevel@tonic-gate static char * 1867c478bd9Sstevel@tonic-gate long_help(int cmd_num) 1877c478bd9Sstevel@tonic-gate { 1887e362f58Scomay assert(cmd_num >= CMD_MIN && cmd_num <= CMD_MAX); 1897c478bd9Sstevel@tonic-gate switch (cmd_num) { 1907c478bd9Sstevel@tonic-gate case CMD_HELP: 1917c478bd9Sstevel@tonic-gate return (gettext("Print usage message.")); 1927c478bd9Sstevel@tonic-gate case CMD_BOOT: 1937c478bd9Sstevel@tonic-gate return (gettext("Activates (boots) specified zone. " 1947c478bd9Sstevel@tonic-gate "The -s flag can be used\n\tto boot the zone in " 1957c478bd9Sstevel@tonic-gate "the single-user state.")); 1967c478bd9Sstevel@tonic-gate case CMD_HALT: 1977c478bd9Sstevel@tonic-gate return (gettext("Halts specified zone, bypassing " 1987c478bd9Sstevel@tonic-gate "shutdown scripts and removing runtime\n\t" 1997c478bd9Sstevel@tonic-gate "resources of the zone.")); 2007c478bd9Sstevel@tonic-gate case CMD_READY: 2017c478bd9Sstevel@tonic-gate return (gettext("Prepares a zone for running " 2027c478bd9Sstevel@tonic-gate "applications but does not start any user\n\t" 2037c478bd9Sstevel@tonic-gate "processes in the zone.")); 2047c478bd9Sstevel@tonic-gate case CMD_REBOOT: 2057c478bd9Sstevel@tonic-gate return (gettext("Restarts the zone (equivalent to a " 2067c478bd9Sstevel@tonic-gate "halt / boot sequence).\n\tFails if the zone is " 2077c478bd9Sstevel@tonic-gate "not active.")); 2087c478bd9Sstevel@tonic-gate case CMD_LIST: 2097c478bd9Sstevel@tonic-gate return (gettext("Lists the current zones, or a " 2107c478bd9Sstevel@tonic-gate "specific zone if indicated. By default,\n\tall " 2117c478bd9Sstevel@tonic-gate "running zones are listed, though this can be " 2127c478bd9Sstevel@tonic-gate "expanded to all\n\tinstalled zones with the -i " 2137c478bd9Sstevel@tonic-gate "option or all configured zones with the\n\t-c " 2147c478bd9Sstevel@tonic-gate "option. When used with the general -z <zone> " 2157c478bd9Sstevel@tonic-gate "option, lists only the\n\tspecified zone, but " 2167c478bd9Sstevel@tonic-gate "lists it regardless of its state, and the -i " 2177c478bd9Sstevel@tonic-gate "and -c\n\toptions are disallowed. The -v option " 2187c478bd9Sstevel@tonic-gate "can be used to display verbose\n\tinformation: " 2197c478bd9Sstevel@tonic-gate "zone name, id, current state, root directory and " 2207c478bd9Sstevel@tonic-gate "options.\n\tThe -p option can be used to request " 2217c478bd9Sstevel@tonic-gate "machine-parsable output. The -v\n\tand -p " 2227c478bd9Sstevel@tonic-gate "options are mutually exclusive. If neither -v " 2237c478bd9Sstevel@tonic-gate "nor -p is used,\n\tjust the zone name is " 2247c478bd9Sstevel@tonic-gate "listed.")); 2257c478bd9Sstevel@tonic-gate case CMD_VERIFY: 2267c478bd9Sstevel@tonic-gate return (gettext("Check to make sure the configuration " 2277c478bd9Sstevel@tonic-gate "can safely be instantiated\n\ton the machine: " 2287c478bd9Sstevel@tonic-gate "physical network interfaces exist, etc.")); 2297c478bd9Sstevel@tonic-gate case CMD_INSTALL: 2307c478bd9Sstevel@tonic-gate return (gettext("Install the configuration on to the " 2317c478bd9Sstevel@tonic-gate "system.")); 2327c478bd9Sstevel@tonic-gate case CMD_UNINSTALL: 2337c478bd9Sstevel@tonic-gate return (gettext("Uninstall the configuration from the " 2347c478bd9Sstevel@tonic-gate "system. The -F flag can be used\n\tto force the " 2357c478bd9Sstevel@tonic-gate "action.")); 236*108322fbScarlsonj default: 237*108322fbScarlsonj return (""); 2387c478bd9Sstevel@tonic-gate } 2397c478bd9Sstevel@tonic-gate /* NOTREACHED */ 2407e362f58Scomay return (NULL); 2417c478bd9Sstevel@tonic-gate } 2427c478bd9Sstevel@tonic-gate 2437c478bd9Sstevel@tonic-gate /* 2447c478bd9Sstevel@tonic-gate * Called with explicit B_TRUE when help is explicitly requested, B_FALSE for 2457c478bd9Sstevel@tonic-gate * unexpected errors. 2467c478bd9Sstevel@tonic-gate */ 2477c478bd9Sstevel@tonic-gate 2487c478bd9Sstevel@tonic-gate static int 2497c478bd9Sstevel@tonic-gate usage(boolean_t explicit) 2507c478bd9Sstevel@tonic-gate { 2517c478bd9Sstevel@tonic-gate int i; 2527c478bd9Sstevel@tonic-gate FILE *fd = explicit ? stdout : stderr; 2537c478bd9Sstevel@tonic-gate 2547c478bd9Sstevel@tonic-gate (void) fprintf(fd, "%s:\t%s help\n", gettext("usage"), execname); 2557c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\t%s [-z <zone>] list\n", execname); 2567c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\t%s -z <zone> <%s>\n", execname, 2577c478bd9Sstevel@tonic-gate gettext("subcommand")); 2587c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\n%s:\n\n", gettext("Subcommands")); 2597c478bd9Sstevel@tonic-gate for (i = CMD_MIN; i <= CMD_MAX; i++) { 260*108322fbScarlsonj if (cmdtab[i].short_usage == NULL) 261*108322fbScarlsonj continue; 2627c478bd9Sstevel@tonic-gate (void) fprintf(fd, "%s\n", cmdtab[i].short_usage); 2637c478bd9Sstevel@tonic-gate if (explicit) 2647c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\t%s\n\n", long_help(i)); 2657c478bd9Sstevel@tonic-gate } 2667c478bd9Sstevel@tonic-gate if (!explicit) 2677c478bd9Sstevel@tonic-gate (void) fputs("\n", fd); 2687c478bd9Sstevel@tonic-gate return (Z_USAGE); 2697c478bd9Sstevel@tonic-gate } 2707c478bd9Sstevel@tonic-gate 2717c478bd9Sstevel@tonic-gate static void 2727c478bd9Sstevel@tonic-gate sub_usage(char *short_usage, int cmd_num) 2737c478bd9Sstevel@tonic-gate { 2747c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s:\t%s\n", gettext("usage"), short_usage); 2757c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "\t%s\n", long_help(cmd_num)); 2767c478bd9Sstevel@tonic-gate } 2777c478bd9Sstevel@tonic-gate 2787c478bd9Sstevel@tonic-gate /* 2797c478bd9Sstevel@tonic-gate * zperror() is like perror(3c) except that this also prints the executable 2807c478bd9Sstevel@tonic-gate * name at the start of the message, and takes a boolean indicating whether 2817c478bd9Sstevel@tonic-gate * to call libc'c strerror() or that from libzonecfg. 2827c478bd9Sstevel@tonic-gate */ 2837c478bd9Sstevel@tonic-gate 2847c478bd9Sstevel@tonic-gate static void 2857c478bd9Sstevel@tonic-gate zperror(const char *str, boolean_t zonecfg_error) 2867c478bd9Sstevel@tonic-gate { 2877c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: %s\n", execname, str, 2887c478bd9Sstevel@tonic-gate zonecfg_error ? zonecfg_strerror(errno) : strerror(errno)); 2897c478bd9Sstevel@tonic-gate } 2907c478bd9Sstevel@tonic-gate 2917c478bd9Sstevel@tonic-gate /* 2927c478bd9Sstevel@tonic-gate * zperror2() is very similar to zperror() above, except it also prints a 2937c478bd9Sstevel@tonic-gate * supplied zone name after the executable. 2947c478bd9Sstevel@tonic-gate * 2957c478bd9Sstevel@tonic-gate * All current consumers of this function want libzonecfg's strerror() rather 2967c478bd9Sstevel@tonic-gate * than libc's; if this ever changes, this function can be made more generic 2977c478bd9Sstevel@tonic-gate * like zperror() above. 2987c478bd9Sstevel@tonic-gate */ 2997c478bd9Sstevel@tonic-gate 3007c478bd9Sstevel@tonic-gate static void 3017c478bd9Sstevel@tonic-gate zperror2(const char *zone, const char *str) 3027c478bd9Sstevel@tonic-gate { 3037c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: %s: %s\n", execname, zone, str, 3047c478bd9Sstevel@tonic-gate zonecfg_strerror(errno)); 3057c478bd9Sstevel@tonic-gate } 3067c478bd9Sstevel@tonic-gate 3077c478bd9Sstevel@tonic-gate /* PRINTFLIKE1 */ 3087c478bd9Sstevel@tonic-gate static void 3097c478bd9Sstevel@tonic-gate zerror(const char *fmt, ...) 3107c478bd9Sstevel@tonic-gate { 3117c478bd9Sstevel@tonic-gate va_list alist; 3127c478bd9Sstevel@tonic-gate 3137c478bd9Sstevel@tonic-gate va_start(alist, fmt); 3147c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: ", execname); 3157c478bd9Sstevel@tonic-gate if (target_zone != NULL) 3167c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "zone '%s': ", target_zone); 3177c478bd9Sstevel@tonic-gate (void) vfprintf(stderr, fmt, alist); 3187c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "\n"); 3197c478bd9Sstevel@tonic-gate va_end(alist); 3207c478bd9Sstevel@tonic-gate } 3217c478bd9Sstevel@tonic-gate 3227c478bd9Sstevel@tonic-gate static void * 3237c478bd9Sstevel@tonic-gate safe_calloc(size_t nelem, size_t elsize) 3247c478bd9Sstevel@tonic-gate { 3257c478bd9Sstevel@tonic-gate void *r = calloc(nelem, elsize); 3267c478bd9Sstevel@tonic-gate 3277c478bd9Sstevel@tonic-gate if (r == NULL) { 3287c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), 3297c478bd9Sstevel@tonic-gate (ulong_t)nelem * elsize, strerror(errno)); 3307c478bd9Sstevel@tonic-gate exit(Z_ERR); 3317c478bd9Sstevel@tonic-gate } 3327c478bd9Sstevel@tonic-gate return (r); 3337c478bd9Sstevel@tonic-gate } 3347c478bd9Sstevel@tonic-gate 3357c478bd9Sstevel@tonic-gate static void 3367c478bd9Sstevel@tonic-gate zone_print(zone_entry_t *zent, boolean_t verbose, boolean_t parsable) 3377c478bd9Sstevel@tonic-gate { 3387c478bd9Sstevel@tonic-gate static boolean_t firsttime = B_TRUE; 3397c478bd9Sstevel@tonic-gate 3407c478bd9Sstevel@tonic-gate assert(!(verbose && parsable)); 3417c478bd9Sstevel@tonic-gate if (firsttime && verbose) { 3427c478bd9Sstevel@tonic-gate firsttime = B_FALSE; 3437c478bd9Sstevel@tonic-gate (void) printf("%*s %-16s %-14s %-30s\n", ZONEID_WIDTH, "ID", 3447c478bd9Sstevel@tonic-gate "NAME", "STATUS", "PATH"); 3457c478bd9Sstevel@tonic-gate } 3467c478bd9Sstevel@tonic-gate if (!verbose) { 3477c478bd9Sstevel@tonic-gate if (!parsable) { 3487c478bd9Sstevel@tonic-gate (void) printf("%s\n", zent->zname); 3497c478bd9Sstevel@tonic-gate return; 3507c478bd9Sstevel@tonic-gate } 3517c478bd9Sstevel@tonic-gate if (zent->zid == ZONE_ID_UNDEFINED) 3527c478bd9Sstevel@tonic-gate (void) printf("-"); 3537c478bd9Sstevel@tonic-gate else 3547c478bd9Sstevel@tonic-gate (void) printf("%lu", zent->zid); 3557c478bd9Sstevel@tonic-gate (void) printf(":%s:%s:%s\n", zent->zname, zent->zstate_str, 3567c478bd9Sstevel@tonic-gate zent->zroot); 3577c478bd9Sstevel@tonic-gate return; 3587c478bd9Sstevel@tonic-gate } 3597c478bd9Sstevel@tonic-gate if (zent->zstate_str != NULL) { 3607c478bd9Sstevel@tonic-gate if (zent->zid == ZONE_ID_UNDEFINED) 3617c478bd9Sstevel@tonic-gate (void) printf("%*s", ZONEID_WIDTH, "-"); 3627c478bd9Sstevel@tonic-gate else 3637c478bd9Sstevel@tonic-gate (void) printf("%*lu", ZONEID_WIDTH, zent->zid); 3647c478bd9Sstevel@tonic-gate (void) printf(" %-16s %-14s %-30s\n", zent->zname, 3657c478bd9Sstevel@tonic-gate zent->zstate_str, zent->zroot); 3667c478bd9Sstevel@tonic-gate } 3677c478bd9Sstevel@tonic-gate } 3687c478bd9Sstevel@tonic-gate 3697c478bd9Sstevel@tonic-gate static int 370*108322fbScarlsonj lookup_zone_info(const char *zone_name, zoneid_t zid, zone_entry_t *zent) 3717c478bd9Sstevel@tonic-gate { 3727c478bd9Sstevel@tonic-gate char root[MAXPATHLEN]; 3737c478bd9Sstevel@tonic-gate int err; 3747c478bd9Sstevel@tonic-gate 3757c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zname, zone_name, sizeof (zent->zname)); 3767c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zroot, "???", sizeof (zent->zroot)); 3777c478bd9Sstevel@tonic-gate zent->zstate_str = "???"; 3787c478bd9Sstevel@tonic-gate 379*108322fbScarlsonj zent->zid = zid; 3807c478bd9Sstevel@tonic-gate 3817c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(zent->zname, root, sizeof (root))) != 3827c478bd9Sstevel@tonic-gate Z_OK) { 3837c478bd9Sstevel@tonic-gate errno = err; 3847c478bd9Sstevel@tonic-gate zperror2(zent->zname, gettext("could not get zone path")); 3857c478bd9Sstevel@tonic-gate return (Z_ERR); 3867c478bd9Sstevel@tonic-gate } 3877c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zroot, root, sizeof (zent->zroot)); 3887c478bd9Sstevel@tonic-gate 3897c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zent->zname, &zent->zstate_num)) != Z_OK) { 3907c478bd9Sstevel@tonic-gate errno = err; 3917c478bd9Sstevel@tonic-gate zperror2(zent->zname, gettext("could not get state")); 3927c478bd9Sstevel@tonic-gate return (Z_ERR); 3937c478bd9Sstevel@tonic-gate } 3947c478bd9Sstevel@tonic-gate zent->zstate_str = zone_state_str(zent->zstate_num); 3957c478bd9Sstevel@tonic-gate 3967c478bd9Sstevel@tonic-gate return (Z_OK); 3977c478bd9Sstevel@tonic-gate } 3987c478bd9Sstevel@tonic-gate 3997c478bd9Sstevel@tonic-gate /* 4007c478bd9Sstevel@tonic-gate * fetch_zents() calls zone_list(2) to find out how many zones are running 4017c478bd9Sstevel@tonic-gate * (which is stored in the global nzents), then calls zone_list(2) again 4027c478bd9Sstevel@tonic-gate * to fetch the list of running zones (stored in the global zents). This 4037c478bd9Sstevel@tonic-gate * function may be called multiple times, so if zents is already set, we 4047c478bd9Sstevel@tonic-gate * return immediately to save work. 4057c478bd9Sstevel@tonic-gate */ 4067c478bd9Sstevel@tonic-gate 4077c478bd9Sstevel@tonic-gate static int 408*108322fbScarlsonj fetch_zents(void) 4097c478bd9Sstevel@tonic-gate { 4107c478bd9Sstevel@tonic-gate zoneid_t *zids = NULL; 4117c478bd9Sstevel@tonic-gate uint_t nzents_saved; 412*108322fbScarlsonj int i, retv; 413*108322fbScarlsonj FILE *fp; 414*108322fbScarlsonj boolean_t inaltroot; 415*108322fbScarlsonj zone_entry_t *zentp; 4167c478bd9Sstevel@tonic-gate 4177c478bd9Sstevel@tonic-gate if (nzents > 0) 4187c478bd9Sstevel@tonic-gate return (Z_OK); 4197c478bd9Sstevel@tonic-gate 4207c478bd9Sstevel@tonic-gate if (zone_list(NULL, &nzents) != 0) { 4217c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zoneid list"), B_FALSE); 4227c478bd9Sstevel@tonic-gate return (Z_ERR); 4237c478bd9Sstevel@tonic-gate } 4247c478bd9Sstevel@tonic-gate 4257c478bd9Sstevel@tonic-gate again: 4267c478bd9Sstevel@tonic-gate if (nzents == 0) 4277c478bd9Sstevel@tonic-gate return (Z_OK); 4287c478bd9Sstevel@tonic-gate 4297c478bd9Sstevel@tonic-gate zids = safe_calloc(nzents, sizeof (zoneid_t)); 4307c478bd9Sstevel@tonic-gate nzents_saved = nzents; 4317c478bd9Sstevel@tonic-gate 4327c478bd9Sstevel@tonic-gate if (zone_list(zids, &nzents) != 0) { 4337c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zone list"), B_FALSE); 4347c478bd9Sstevel@tonic-gate free(zids); 4357c478bd9Sstevel@tonic-gate return (Z_ERR); 4367c478bd9Sstevel@tonic-gate } 4377c478bd9Sstevel@tonic-gate if (nzents != nzents_saved) { 4387c478bd9Sstevel@tonic-gate /* list changed, try again */ 4397c478bd9Sstevel@tonic-gate free(zids); 4407c478bd9Sstevel@tonic-gate goto again; 4417c478bd9Sstevel@tonic-gate } 4427c478bd9Sstevel@tonic-gate 4437c478bd9Sstevel@tonic-gate zents = safe_calloc(nzents, sizeof (zone_entry_t)); 4447c478bd9Sstevel@tonic-gate 445*108322fbScarlsonj inaltroot = zonecfg_in_alt_root(); 446*108322fbScarlsonj if (inaltroot) 447*108322fbScarlsonj fp = zonecfg_open_scratch("", B_FALSE); 448*108322fbScarlsonj else 449*108322fbScarlsonj fp = NULL; 450*108322fbScarlsonj zentp = zents; 451*108322fbScarlsonj retv = Z_OK; 4527c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 4537c478bd9Sstevel@tonic-gate char name[ZONENAME_MAX]; 454*108322fbScarlsonj char altname[ZONENAME_MAX]; 4557c478bd9Sstevel@tonic-gate 456*108322fbScarlsonj if (getzonenamebyid(zids[i], name, sizeof (name)) < 0) { 4577c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zone name"), B_FALSE); 458*108322fbScarlsonj retv = Z_ERR; 459*108322fbScarlsonj continue; 4607c478bd9Sstevel@tonic-gate } 461*108322fbScarlsonj if (zonecfg_is_scratch(name)) { 462*108322fbScarlsonj /* Ignore scratch zones by default */ 463*108322fbScarlsonj if (!inaltroot) 464*108322fbScarlsonj continue; 465*108322fbScarlsonj if (fp == NULL || 466*108322fbScarlsonj zonecfg_reverse_scratch(fp, name, altname, 467*108322fbScarlsonj sizeof (altname), NULL, 0) == -1) { 468*108322fbScarlsonj zerror(gettext("cannot resolve scratch " 469*108322fbScarlsonj "zone %s"), name); 470*108322fbScarlsonj retv = Z_ERR; 471*108322fbScarlsonj continue; 472*108322fbScarlsonj } 473*108322fbScarlsonj (void) strcpy(name, altname); 474*108322fbScarlsonj } else { 475*108322fbScarlsonj /* Ignore non-scratch when in an alternate root */ 476*108322fbScarlsonj if (inaltroot && strcmp(name, GLOBAL_ZONENAME) != 0) 477*108322fbScarlsonj continue; 478*108322fbScarlsonj } 479*108322fbScarlsonj if (lookup_zone_info(name, zids[i], zentp) != Z_OK) { 480*108322fbScarlsonj zerror(gettext("failed to get zone data")); 481*108322fbScarlsonj retv = Z_ERR; 482*108322fbScarlsonj continue; 483*108322fbScarlsonj } 484*108322fbScarlsonj zentp++; 485*108322fbScarlsonj } 486*108322fbScarlsonj nzents = zentp - zents; 487*108322fbScarlsonj if (fp != NULL) 488*108322fbScarlsonj zonecfg_close_scratch(fp); 4897c478bd9Sstevel@tonic-gate 4907c478bd9Sstevel@tonic-gate free(zids); 491*108322fbScarlsonj return (retv); 4927c478bd9Sstevel@tonic-gate } 4937c478bd9Sstevel@tonic-gate 494*108322fbScarlsonj static int 4957c478bd9Sstevel@tonic-gate zone_print_list(zone_state_t min_state, boolean_t verbose, boolean_t parsable) 4967c478bd9Sstevel@tonic-gate { 4977c478bd9Sstevel@tonic-gate int i; 4987c478bd9Sstevel@tonic-gate zone_entry_t zent; 4997c478bd9Sstevel@tonic-gate FILE *cookie; 5007c478bd9Sstevel@tonic-gate char *name; 5017c478bd9Sstevel@tonic-gate 5027c478bd9Sstevel@tonic-gate /* 5037c478bd9Sstevel@tonic-gate * First get the list of running zones from the kernel and print them. 5047c478bd9Sstevel@tonic-gate * If that is all we need, then return. 5057c478bd9Sstevel@tonic-gate */ 506*108322fbScarlsonj if ((i = fetch_zents()) != Z_OK) { 5077c478bd9Sstevel@tonic-gate /* 5087c478bd9Sstevel@tonic-gate * No need for error messages; fetch_zents() has already taken 5097c478bd9Sstevel@tonic-gate * care of this. 5107c478bd9Sstevel@tonic-gate */ 511*108322fbScarlsonj return (i); 5127c478bd9Sstevel@tonic-gate } 513*108322fbScarlsonj for (i = 0; i < nzents; i++) 5147c478bd9Sstevel@tonic-gate zone_print(&zents[i], verbose, parsable); 5157c478bd9Sstevel@tonic-gate if (min_state >= ZONE_STATE_RUNNING) 516*108322fbScarlsonj return (Z_OK); 5177c478bd9Sstevel@tonic-gate /* 5187c478bd9Sstevel@tonic-gate * Next, get the full list of zones from the configuration, skipping 5197c478bd9Sstevel@tonic-gate * any we have already printed. 5207c478bd9Sstevel@tonic-gate */ 5217c478bd9Sstevel@tonic-gate cookie = setzoneent(); 5227c478bd9Sstevel@tonic-gate while ((name = getzoneent(cookie)) != NULL) { 5237c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 5247c478bd9Sstevel@tonic-gate if (strcmp(zents[i].zname, name) == 0) 5257c478bd9Sstevel@tonic-gate break; 5267c478bd9Sstevel@tonic-gate } 5277c478bd9Sstevel@tonic-gate if (i < nzents) { 5287c478bd9Sstevel@tonic-gate free(name); 5297c478bd9Sstevel@tonic-gate continue; 5307c478bd9Sstevel@tonic-gate } 531*108322fbScarlsonj if (lookup_zone_info(name, ZONE_ID_UNDEFINED, &zent) != Z_OK) { 5327c478bd9Sstevel@tonic-gate free(name); 5337c478bd9Sstevel@tonic-gate continue; 5347c478bd9Sstevel@tonic-gate } 5357c478bd9Sstevel@tonic-gate free(name); 5367c478bd9Sstevel@tonic-gate if (zent.zstate_num >= min_state) 5377c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 5387c478bd9Sstevel@tonic-gate } 5397c478bd9Sstevel@tonic-gate endzoneent(cookie); 540*108322fbScarlsonj return (Z_OK); 5417c478bd9Sstevel@tonic-gate } 5427c478bd9Sstevel@tonic-gate 5437c478bd9Sstevel@tonic-gate static zone_entry_t * 5447c478bd9Sstevel@tonic-gate lookup_running_zone(char *str) 5457c478bd9Sstevel@tonic-gate { 5467c478bd9Sstevel@tonic-gate zoneid_t zoneid; 5477c478bd9Sstevel@tonic-gate char *cp; 5487c478bd9Sstevel@tonic-gate int i; 5497c478bd9Sstevel@tonic-gate 5507c478bd9Sstevel@tonic-gate if (fetch_zents() != Z_OK) 5517c478bd9Sstevel@tonic-gate return (NULL); 5527c478bd9Sstevel@tonic-gate 5537c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 5547c478bd9Sstevel@tonic-gate if (strcmp(str, zents[i].zname) == 0) 5557c478bd9Sstevel@tonic-gate return (&zents[i]); 5567c478bd9Sstevel@tonic-gate } 5577c478bd9Sstevel@tonic-gate errno = 0; 5587c478bd9Sstevel@tonic-gate zoneid = strtol(str, &cp, 0); 5597c478bd9Sstevel@tonic-gate if (zoneid < MIN_ZONEID || zoneid > MAX_ZONEID || 5607c478bd9Sstevel@tonic-gate errno != 0 || *cp != '\0') 5617c478bd9Sstevel@tonic-gate return (NULL); 5627c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 5637c478bd9Sstevel@tonic-gate if (zoneid == zents[i].zid) 5647c478bd9Sstevel@tonic-gate return (&zents[i]); 5657c478bd9Sstevel@tonic-gate } 5667c478bd9Sstevel@tonic-gate return (NULL); 5677c478bd9Sstevel@tonic-gate } 5687c478bd9Sstevel@tonic-gate 5697c478bd9Sstevel@tonic-gate /* 5707c478bd9Sstevel@tonic-gate * Check a bit in a mode_t: if on is B_TRUE, that bit should be on; if 5717c478bd9Sstevel@tonic-gate * B_FALSE, it should be off. Return B_TRUE if the mode is bad (incorrect). 5727c478bd9Sstevel@tonic-gate */ 5737c478bd9Sstevel@tonic-gate static boolean_t 5747c478bd9Sstevel@tonic-gate bad_mode_bit(mode_t mode, mode_t bit, boolean_t on, char *file) 5757c478bd9Sstevel@tonic-gate { 5767c478bd9Sstevel@tonic-gate char *str; 5777c478bd9Sstevel@tonic-gate 5787c478bd9Sstevel@tonic-gate assert(bit == S_IRUSR || bit == S_IWUSR || bit == S_IXUSR || 5797c478bd9Sstevel@tonic-gate bit == S_IRGRP || bit == S_IWGRP || bit == S_IXGRP || 5807c478bd9Sstevel@tonic-gate bit == S_IROTH || bit == S_IWOTH || bit == S_IXOTH); 5817c478bd9Sstevel@tonic-gate /* 5827c478bd9Sstevel@tonic-gate * TRANSLATION_NOTE 5837c478bd9Sstevel@tonic-gate * The strings below will be used as part of a larger message, 5847c478bd9Sstevel@tonic-gate * either: 5857c478bd9Sstevel@tonic-gate * (file name) must be (owner|group|world) (read|writ|execut)able 5867c478bd9Sstevel@tonic-gate * or 5877c478bd9Sstevel@tonic-gate * (file name) must not be (owner|group|world) (read|writ|execut)able 5887c478bd9Sstevel@tonic-gate */ 5897c478bd9Sstevel@tonic-gate switch (bit) { 5907c478bd9Sstevel@tonic-gate case S_IRUSR: 5917c478bd9Sstevel@tonic-gate str = gettext("owner readable"); 5927c478bd9Sstevel@tonic-gate break; 5937c478bd9Sstevel@tonic-gate case S_IWUSR: 5947c478bd9Sstevel@tonic-gate str = gettext("owner writable"); 5957c478bd9Sstevel@tonic-gate break; 5967c478bd9Sstevel@tonic-gate case S_IXUSR: 5977c478bd9Sstevel@tonic-gate str = gettext("owner executable"); 5987c478bd9Sstevel@tonic-gate break; 5997c478bd9Sstevel@tonic-gate case S_IRGRP: 6007c478bd9Sstevel@tonic-gate str = gettext("group readable"); 6017c478bd9Sstevel@tonic-gate break; 6027c478bd9Sstevel@tonic-gate case S_IWGRP: 6037c478bd9Sstevel@tonic-gate str = gettext("group writable"); 6047c478bd9Sstevel@tonic-gate break; 6057c478bd9Sstevel@tonic-gate case S_IXGRP: 6067c478bd9Sstevel@tonic-gate str = gettext("group executable"); 6077c478bd9Sstevel@tonic-gate break; 6087c478bd9Sstevel@tonic-gate case S_IROTH: 6097c478bd9Sstevel@tonic-gate str = gettext("world readable"); 6107c478bd9Sstevel@tonic-gate break; 6117c478bd9Sstevel@tonic-gate case S_IWOTH: 6127c478bd9Sstevel@tonic-gate str = gettext("world writable"); 6137c478bd9Sstevel@tonic-gate break; 6147c478bd9Sstevel@tonic-gate case S_IXOTH: 6157c478bd9Sstevel@tonic-gate str = gettext("world executable"); 6167c478bd9Sstevel@tonic-gate break; 6177c478bd9Sstevel@tonic-gate } 6187c478bd9Sstevel@tonic-gate if ((mode & bit) == (on ? 0 : bit)) { 6197c478bd9Sstevel@tonic-gate /* 6207c478bd9Sstevel@tonic-gate * TRANSLATION_NOTE 6217c478bd9Sstevel@tonic-gate * The first parameter below is a file name; the second 6227c478bd9Sstevel@tonic-gate * is one of the "(owner|group|world) (read|writ|execut)able" 6237c478bd9Sstevel@tonic-gate * strings from above. 6247c478bd9Sstevel@tonic-gate */ 6257c478bd9Sstevel@tonic-gate /* 6267c478bd9Sstevel@tonic-gate * The code below could be simplified but not in a way 6277c478bd9Sstevel@tonic-gate * that would easily translate to non-English locales. 6287c478bd9Sstevel@tonic-gate */ 6297c478bd9Sstevel@tonic-gate if (on) { 6307c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s must be %s.\n"), 6317c478bd9Sstevel@tonic-gate file, str); 6327c478bd9Sstevel@tonic-gate } else { 6337c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s must not be %s.\n"), 6347c478bd9Sstevel@tonic-gate file, str); 6357c478bd9Sstevel@tonic-gate } 6367c478bd9Sstevel@tonic-gate return (B_TRUE); 6377c478bd9Sstevel@tonic-gate } 6387c478bd9Sstevel@tonic-gate return (B_FALSE); 6397c478bd9Sstevel@tonic-gate } 6407c478bd9Sstevel@tonic-gate 6417c478bd9Sstevel@tonic-gate /* 6427c478bd9Sstevel@tonic-gate * We want to make sure that no zone has its zone path as a child node 6437c478bd9Sstevel@tonic-gate * (in the directory sense) of any other. We do that by comparing this 6447c478bd9Sstevel@tonic-gate * zone's path to the path of all other (non-global) zones. The comparison 6457c478bd9Sstevel@tonic-gate * in each case is simple: add '/' to the end of the path, then do a 6467c478bd9Sstevel@tonic-gate * strncmp() of the two paths, using the length of the shorter one. 6477c478bd9Sstevel@tonic-gate */ 6487c478bd9Sstevel@tonic-gate 6497c478bd9Sstevel@tonic-gate static int 6507c478bd9Sstevel@tonic-gate crosscheck_zonepaths(char *path) 6517c478bd9Sstevel@tonic-gate { 6527c478bd9Sstevel@tonic-gate char rpath[MAXPATHLEN]; /* resolved path */ 6537c478bd9Sstevel@tonic-gate char path_copy[MAXPATHLEN]; /* copy of original path */ 6547c478bd9Sstevel@tonic-gate char rpath_copy[MAXPATHLEN]; /* copy of original rpath */ 6557c478bd9Sstevel@tonic-gate struct zoneent *ze; 6567c478bd9Sstevel@tonic-gate int res, err; 6577c478bd9Sstevel@tonic-gate FILE *cookie; 6587c478bd9Sstevel@tonic-gate 6597c478bd9Sstevel@tonic-gate cookie = setzoneent(); 6607c478bd9Sstevel@tonic-gate while ((ze = getzoneent_private(cookie)) != NULL) { 6617c478bd9Sstevel@tonic-gate /* Skip zones which are not installed. */ 6627c478bd9Sstevel@tonic-gate if (ze->zone_state < ZONE_STATE_INSTALLED) { 6637c478bd9Sstevel@tonic-gate free(ze); 6647c478bd9Sstevel@tonic-gate continue; 6657c478bd9Sstevel@tonic-gate } 6667c478bd9Sstevel@tonic-gate /* Skip the global zone and the current target zone. */ 6677c478bd9Sstevel@tonic-gate if (strcmp(ze->zone_name, GLOBAL_ZONENAME) == 0 || 6687c478bd9Sstevel@tonic-gate strcmp(ze->zone_name, target_zone) == 0) { 6697c478bd9Sstevel@tonic-gate free(ze); 6707c478bd9Sstevel@tonic-gate continue; 6717c478bd9Sstevel@tonic-gate } 6727c478bd9Sstevel@tonic-gate if (strlen(ze->zone_path) == 0) { 6737c478bd9Sstevel@tonic-gate /* old index file without path, fall back */ 6747c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(ze->zone_name, 6757c478bd9Sstevel@tonic-gate ze->zone_path, sizeof (ze->zone_path))) != Z_OK) { 6767c478bd9Sstevel@tonic-gate errno = err; 6777c478bd9Sstevel@tonic-gate zperror2(ze->zone_name, 6787c478bd9Sstevel@tonic-gate gettext("could not get zone path")); 6797c478bd9Sstevel@tonic-gate free(ze); 6807c478bd9Sstevel@tonic-gate continue; 6817c478bd9Sstevel@tonic-gate } 6827c478bd9Sstevel@tonic-gate } 683*108322fbScarlsonj (void) snprintf(path_copy, sizeof (path_copy), "%s%s", 684*108322fbScarlsonj zonecfg_get_root(), ze->zone_path); 685*108322fbScarlsonj res = resolvepath(path_copy, rpath, sizeof (rpath)); 6867c478bd9Sstevel@tonic-gate if (res == -1) { 6877c478bd9Sstevel@tonic-gate if (errno != ENOENT) { 688*108322fbScarlsonj zperror(path_copy, B_FALSE); 6897c478bd9Sstevel@tonic-gate free(ze); 6907c478bd9Sstevel@tonic-gate return (Z_ERR); 6917c478bd9Sstevel@tonic-gate } 6927c478bd9Sstevel@tonic-gate (void) printf(gettext("WARNING: zone %s is installed, " 6937c478bd9Sstevel@tonic-gate "but its %s %s does not exist.\n"), ze->zone_name, 694*108322fbScarlsonj "zonepath", path_copy); 6957c478bd9Sstevel@tonic-gate free(ze); 6967c478bd9Sstevel@tonic-gate continue; 6977c478bd9Sstevel@tonic-gate } 6987c478bd9Sstevel@tonic-gate rpath[res] = '\0'; 6997c478bd9Sstevel@tonic-gate (void) snprintf(path_copy, sizeof (path_copy), "%s/", path); 7007c478bd9Sstevel@tonic-gate (void) snprintf(rpath_copy, sizeof (rpath_copy), "%s/", rpath); 7017c478bd9Sstevel@tonic-gate if (strncmp(path_copy, rpath_copy, 7027c478bd9Sstevel@tonic-gate min(strlen(path_copy), strlen(rpath_copy))) == 0) { 7037c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s zonepath (%s) and " 7047c478bd9Sstevel@tonic-gate "%s zonepath (%s) overlap.\n"), 7057c478bd9Sstevel@tonic-gate target_zone, path, ze->zone_name, rpath); 7067c478bd9Sstevel@tonic-gate free(ze); 7077c478bd9Sstevel@tonic-gate return (Z_ERR); 7087c478bd9Sstevel@tonic-gate } 7097c478bd9Sstevel@tonic-gate free(ze); 7107c478bd9Sstevel@tonic-gate } 7117c478bd9Sstevel@tonic-gate endzoneent(cookie); 7127c478bd9Sstevel@tonic-gate return (Z_OK); 7137c478bd9Sstevel@tonic-gate } 7147c478bd9Sstevel@tonic-gate 7157c478bd9Sstevel@tonic-gate static int 7167c478bd9Sstevel@tonic-gate validate_zonepath(char *path, int cmd_num) 7177c478bd9Sstevel@tonic-gate { 7187c478bd9Sstevel@tonic-gate int res; /* result of last library/system call */ 7197c478bd9Sstevel@tonic-gate boolean_t err = B_FALSE; /* have we run into an error? */ 7207c478bd9Sstevel@tonic-gate struct stat stbuf; 7217c478bd9Sstevel@tonic-gate struct statvfs vfsbuf; 7227c478bd9Sstevel@tonic-gate char rpath[MAXPATHLEN]; /* resolved path */ 7237c478bd9Sstevel@tonic-gate char ppath[MAXPATHLEN]; /* parent path */ 7247c478bd9Sstevel@tonic-gate char rppath[MAXPATHLEN]; /* resolved parent path */ 7257c478bd9Sstevel@tonic-gate char rootpath[MAXPATHLEN]; /* root path */ 7267c478bd9Sstevel@tonic-gate zone_state_t state; 7277c478bd9Sstevel@tonic-gate 7287c478bd9Sstevel@tonic-gate if (path[0] != '/') { 7297c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 7307c478bd9Sstevel@tonic-gate gettext("%s is not an absolute path.\n"), path); 7317c478bd9Sstevel@tonic-gate return (Z_ERR); 7327c478bd9Sstevel@tonic-gate } 7337c478bd9Sstevel@tonic-gate if ((res = resolvepath(path, rpath, sizeof (rpath))) == -1) { 7347c478bd9Sstevel@tonic-gate if ((errno != ENOENT) || 7357c478bd9Sstevel@tonic-gate (cmd_num != CMD_VERIFY && cmd_num != CMD_INSTALL)) { 7367c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 7377c478bd9Sstevel@tonic-gate return (Z_ERR); 7387c478bd9Sstevel@tonic-gate } 7397c478bd9Sstevel@tonic-gate if (cmd_num == CMD_VERIFY) { 7407c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("WARNING: %s does not " 7417c478bd9Sstevel@tonic-gate "exist, so it cannot be verified.\nWhen 'zoneadm " 7427c478bd9Sstevel@tonic-gate "%s' is run, '%s' will try to create\n%s, and '%s' " 7437c478bd9Sstevel@tonic-gate "will be tried again,\nbut the '%s' may fail if:\n" 7447c478bd9Sstevel@tonic-gate "the parent directory of %s is group- or other-" 7457c478bd9Sstevel@tonic-gate "writable\nor\n%s overlaps with any other " 7467c478bd9Sstevel@tonic-gate "installed zones.\n"), path, 7477c478bd9Sstevel@tonic-gate cmd_to_str(CMD_INSTALL), cmd_to_str(CMD_INSTALL), 7487c478bd9Sstevel@tonic-gate path, cmd_to_str(CMD_VERIFY), 7497c478bd9Sstevel@tonic-gate cmd_to_str(CMD_VERIFY), path, path); 7507c478bd9Sstevel@tonic-gate return (Z_OK); 7517c478bd9Sstevel@tonic-gate } 7527c478bd9Sstevel@tonic-gate /* 7537c478bd9Sstevel@tonic-gate * The zonepath is supposed to be mode 700 but its 7547c478bd9Sstevel@tonic-gate * parent(s) 755. So use 755 on the mkdirp() then 7557c478bd9Sstevel@tonic-gate * chmod() the zonepath itself to 700. 7567c478bd9Sstevel@tonic-gate */ 7577c478bd9Sstevel@tonic-gate if (mkdirp(path, DEFAULT_DIR_MODE) < 0) { 7587c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 7597c478bd9Sstevel@tonic-gate return (Z_ERR); 7607c478bd9Sstevel@tonic-gate } 7617c478bd9Sstevel@tonic-gate /* 7627c478bd9Sstevel@tonic-gate * If the chmod() fails, report the error, but might 7637c478bd9Sstevel@tonic-gate * as well continue the verify procedure. 7647c478bd9Sstevel@tonic-gate */ 7657c478bd9Sstevel@tonic-gate if (chmod(path, S_IRWXU) != 0) 7667c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 7677c478bd9Sstevel@tonic-gate /* 7687c478bd9Sstevel@tonic-gate * Since the mkdir() succeeded, we should not have to 7697c478bd9Sstevel@tonic-gate * worry about a subsequent ENOENT, thus this should 7707c478bd9Sstevel@tonic-gate * only recurse once. 7717c478bd9Sstevel@tonic-gate */ 7727c478bd9Sstevel@tonic-gate return (validate_zonepath(path, CMD_INSTALL)); 7737c478bd9Sstevel@tonic-gate } 7747c478bd9Sstevel@tonic-gate rpath[res] = '\0'; 7757c478bd9Sstevel@tonic-gate if (strcmp(path, rpath) != 0) { 7767c478bd9Sstevel@tonic-gate errno = Z_RESOLVED_PATH; 7777c478bd9Sstevel@tonic-gate zperror(path, B_TRUE); 7787c478bd9Sstevel@tonic-gate return (Z_ERR); 7797c478bd9Sstevel@tonic-gate } 7807c478bd9Sstevel@tonic-gate if ((res = stat(rpath, &stbuf)) != 0) { 7817c478bd9Sstevel@tonic-gate zperror(rpath, B_FALSE); 7827c478bd9Sstevel@tonic-gate return (Z_ERR); 7837c478bd9Sstevel@tonic-gate } 7847c478bd9Sstevel@tonic-gate if (!S_ISDIR(stbuf.st_mode)) { 7857c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not a directory.\n"), 7867c478bd9Sstevel@tonic-gate rpath); 7877c478bd9Sstevel@tonic-gate return (Z_ERR); 7887c478bd9Sstevel@tonic-gate } 7897c478bd9Sstevel@tonic-gate if ((strcmp(stbuf.st_fstype, MNTTYPE_TMPFS) == 0) || 7907c478bd9Sstevel@tonic-gate (strcmp(stbuf.st_fstype, MNTTYPE_XMEMFS) == 0)) { 7917c478bd9Sstevel@tonic-gate (void) printf(gettext("WARNING: %s is on a temporary " 7927c478bd9Sstevel@tonic-gate "file-system.\n"), rpath); 7937c478bd9Sstevel@tonic-gate } 7947c478bd9Sstevel@tonic-gate if (crosscheck_zonepaths(rpath) != Z_OK) 7957c478bd9Sstevel@tonic-gate return (Z_ERR); 7967c478bd9Sstevel@tonic-gate /* 7977c478bd9Sstevel@tonic-gate * Try to collect and report as many minor errors as possible 7987c478bd9Sstevel@tonic-gate * before returning, so the user can learn everything that needs 7997c478bd9Sstevel@tonic-gate * to be fixed up front. 8007c478bd9Sstevel@tonic-gate */ 8017c478bd9Sstevel@tonic-gate if (stbuf.st_uid != 0) { 8027c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not owned by root.\n"), 8037c478bd9Sstevel@tonic-gate rpath); 8047c478bd9Sstevel@tonic-gate err = B_TRUE; 8057c478bd9Sstevel@tonic-gate } 8067c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRUSR, B_TRUE, rpath); 8077c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWUSR, B_TRUE, rpath); 8087c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXUSR, B_TRUE, rpath); 8097c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRGRP, B_FALSE, rpath); 8107c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWGRP, B_FALSE, rpath); 8117c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXGRP, B_FALSE, rpath); 8127c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IROTH, B_FALSE, rpath); 8137c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWOTH, B_FALSE, rpath); 8147c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXOTH, B_FALSE, rpath); 8157c478bd9Sstevel@tonic-gate 8167c478bd9Sstevel@tonic-gate (void) snprintf(ppath, sizeof (ppath), "%s/..", path); 8177c478bd9Sstevel@tonic-gate if ((res = resolvepath(ppath, rppath, sizeof (rppath))) == -1) { 8187c478bd9Sstevel@tonic-gate zperror(ppath, B_FALSE); 8197c478bd9Sstevel@tonic-gate return (Z_ERR); 8207c478bd9Sstevel@tonic-gate } 8217c478bd9Sstevel@tonic-gate rppath[res] = '\0'; 8227c478bd9Sstevel@tonic-gate if ((res = stat(rppath, &stbuf)) != 0) { 8237c478bd9Sstevel@tonic-gate zperror(rppath, B_FALSE); 8247c478bd9Sstevel@tonic-gate return (Z_ERR); 8257c478bd9Sstevel@tonic-gate } 8267c478bd9Sstevel@tonic-gate /* theoretically impossible */ 8277c478bd9Sstevel@tonic-gate if (!S_ISDIR(stbuf.st_mode)) { 8287c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not a directory.\n"), 8297c478bd9Sstevel@tonic-gate rppath); 8307c478bd9Sstevel@tonic-gate return (Z_ERR); 8317c478bd9Sstevel@tonic-gate } 8327c478bd9Sstevel@tonic-gate if (stbuf.st_uid != 0) { 8337c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not owned by root.\n"), 8347c478bd9Sstevel@tonic-gate rppath); 8357c478bd9Sstevel@tonic-gate err = B_TRUE; 8367c478bd9Sstevel@tonic-gate } 8377c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRUSR, B_TRUE, rppath); 8387c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWUSR, B_TRUE, rppath); 8397c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXUSR, B_TRUE, rppath); 8407c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWGRP, B_FALSE, rppath); 8417c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWOTH, B_FALSE, rppath); 8427c478bd9Sstevel@tonic-gate if (strcmp(rpath, rppath) == 0) { 8437c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is its own parent.\n"), 8447c478bd9Sstevel@tonic-gate rppath); 8457c478bd9Sstevel@tonic-gate err = B_TRUE; 8467c478bd9Sstevel@tonic-gate } 8477c478bd9Sstevel@tonic-gate 8487c478bd9Sstevel@tonic-gate if (statvfs(rpath, &vfsbuf) != 0) { 8497c478bd9Sstevel@tonic-gate zperror(rpath, B_FALSE); 8507c478bd9Sstevel@tonic-gate return (Z_ERR); 8517c478bd9Sstevel@tonic-gate } 8527c478bd9Sstevel@tonic-gate if (strncmp(vfsbuf.f_basetype, "nfs", 3) == 0) { 8537c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("Zonepath %s is over NFS, " 8547c478bd9Sstevel@tonic-gate "which is not currently supported.\n"), rpath); 8557c478bd9Sstevel@tonic-gate return (Z_ERR); 8567c478bd9Sstevel@tonic-gate } 8577c478bd9Sstevel@tonic-gate 8587c478bd9Sstevel@tonic-gate if ((res = zone_get_state(target_zone, &state)) != Z_OK) { 8597c478bd9Sstevel@tonic-gate errno = res; 8607c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get state")); 8617c478bd9Sstevel@tonic-gate return (Z_ERR); 8627c478bd9Sstevel@tonic-gate } 8637c478bd9Sstevel@tonic-gate /* 8647c478bd9Sstevel@tonic-gate * The existence of the root path is only bad in the configured state, 8657c478bd9Sstevel@tonic-gate * as it is *supposed* to be there at the installed and later states. 8667c478bd9Sstevel@tonic-gate * State/command mismatches are caught earlier in verify_details(). 8677c478bd9Sstevel@tonic-gate */ 8687c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_CONFIGURED) { 8697c478bd9Sstevel@tonic-gate if (snprintf(rootpath, sizeof (rootpath), "%s/root", rpath) >= 8707c478bd9Sstevel@tonic-gate sizeof (rootpath)) { 8717c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 8727c478bd9Sstevel@tonic-gate gettext("Zonepath %s is too long.\n"), rpath); 8737c478bd9Sstevel@tonic-gate return (Z_ERR); 8747c478bd9Sstevel@tonic-gate } 8757c478bd9Sstevel@tonic-gate if ((res = stat(rootpath, &stbuf)) == 0) { 8767c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("Rootpath %s exists; " 8777c478bd9Sstevel@tonic-gate "remove or move aside prior to %s.\n"), rootpath, 8787c478bd9Sstevel@tonic-gate cmd_to_str(CMD_INSTALL)); 8797c478bd9Sstevel@tonic-gate return (Z_ERR); 8807c478bd9Sstevel@tonic-gate } 8817c478bd9Sstevel@tonic-gate } 8827c478bd9Sstevel@tonic-gate 8837c478bd9Sstevel@tonic-gate return (err ? Z_ERR : Z_OK); 8847c478bd9Sstevel@tonic-gate } 8857c478bd9Sstevel@tonic-gate 8867c478bd9Sstevel@tonic-gate static void 8877c478bd9Sstevel@tonic-gate release_lock_file(int lockfd) 8887c478bd9Sstevel@tonic-gate { 8897c478bd9Sstevel@tonic-gate (void) close(lockfd); 8907c478bd9Sstevel@tonic-gate } 8917c478bd9Sstevel@tonic-gate 8927c478bd9Sstevel@tonic-gate static int 8937c478bd9Sstevel@tonic-gate grab_lock_file(const char *zone_name, int *lockfd) 8947c478bd9Sstevel@tonic-gate { 8957c478bd9Sstevel@tonic-gate char pathbuf[PATH_MAX]; 8967c478bd9Sstevel@tonic-gate struct flock flock; 8977c478bd9Sstevel@tonic-gate 898*108322fbScarlsonj if (snprintf(pathbuf, sizeof (pathbuf), "%s%s", zonecfg_get_root(), 899*108322fbScarlsonj ZONES_TMPDIR) >= sizeof (pathbuf)) { 900*108322fbScarlsonj zerror(gettext("alternate root path is too long")); 901*108322fbScarlsonj return (Z_ERR); 902*108322fbScarlsonj } 903*108322fbScarlsonj if (mkdir(pathbuf, S_IRWXU) < 0 && errno != EEXIST) { 904*108322fbScarlsonj zerror(gettext("could not mkdir %s: %s"), pathbuf, 9057c478bd9Sstevel@tonic-gate strerror(errno)); 9067c478bd9Sstevel@tonic-gate return (Z_ERR); 9077c478bd9Sstevel@tonic-gate } 908*108322fbScarlsonj (void) chmod(pathbuf, S_IRWXU); 9097c478bd9Sstevel@tonic-gate 9107c478bd9Sstevel@tonic-gate /* 9117c478bd9Sstevel@tonic-gate * One of these lock files is created for each zone (when needed). 9127c478bd9Sstevel@tonic-gate * The lock files are not cleaned up (except on system reboot), 9137c478bd9Sstevel@tonic-gate * but since there is only one per zone, there is no resource 9147c478bd9Sstevel@tonic-gate * starvation issue. 9157c478bd9Sstevel@tonic-gate */ 916*108322fbScarlsonj if (snprintf(pathbuf, sizeof (pathbuf), "%s%s/%s.zoneadm.lock", 917*108322fbScarlsonj zonecfg_get_root(), ZONES_TMPDIR, zone_name) >= sizeof (pathbuf)) { 918*108322fbScarlsonj zerror(gettext("alternate root path is too long")); 919*108322fbScarlsonj return (Z_ERR); 920*108322fbScarlsonj } 9217c478bd9Sstevel@tonic-gate if ((*lockfd = open(pathbuf, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR)) < 0) { 9227c478bd9Sstevel@tonic-gate zerror(gettext("could not open %s: %s"), pathbuf, 9237c478bd9Sstevel@tonic-gate strerror(errno)); 9247c478bd9Sstevel@tonic-gate return (Z_ERR); 9257c478bd9Sstevel@tonic-gate } 9267c478bd9Sstevel@tonic-gate /* 9277c478bd9Sstevel@tonic-gate * Lock the file to synchronize with other zoneadmds 9287c478bd9Sstevel@tonic-gate */ 9297c478bd9Sstevel@tonic-gate flock.l_type = F_WRLCK; 9307c478bd9Sstevel@tonic-gate flock.l_whence = SEEK_SET; 9317c478bd9Sstevel@tonic-gate flock.l_start = (off_t)0; 9327c478bd9Sstevel@tonic-gate flock.l_len = (off_t)0; 9337c478bd9Sstevel@tonic-gate if (fcntl(*lockfd, F_SETLKW, &flock) < 0) { 9347c478bd9Sstevel@tonic-gate zerror(gettext("unable to lock %s: %s"), pathbuf, 9357c478bd9Sstevel@tonic-gate strerror(errno)); 9367c478bd9Sstevel@tonic-gate release_lock_file(*lockfd); 9377c478bd9Sstevel@tonic-gate return (Z_ERR); 9387c478bd9Sstevel@tonic-gate } 9397c478bd9Sstevel@tonic-gate return (Z_OK); 9407c478bd9Sstevel@tonic-gate } 9417c478bd9Sstevel@tonic-gate 942*108322fbScarlsonj static boolean_t 9437c478bd9Sstevel@tonic-gate get_doorname(const char *zone_name, char *buffer) 9447c478bd9Sstevel@tonic-gate { 945*108322fbScarlsonj return (snprintf(buffer, PATH_MAX, "%s" ZONE_DOOR_PATH, 946*108322fbScarlsonj zonecfg_get_root(), zone_name) < PATH_MAX); 9477c478bd9Sstevel@tonic-gate } 9487c478bd9Sstevel@tonic-gate 9497c478bd9Sstevel@tonic-gate /* 9507c478bd9Sstevel@tonic-gate * system daemons are not audited. For the global zone, this occurs 9517c478bd9Sstevel@tonic-gate * "naturally" since init is started with the default audit 9527c478bd9Sstevel@tonic-gate * characteristics. Since zoneadmd is a system daemon and it starts 9537c478bd9Sstevel@tonic-gate * init for a zone, it is necessary to clear out the audit 9547c478bd9Sstevel@tonic-gate * characteristics inherited from whomever started zoneadmd. This is 9557c478bd9Sstevel@tonic-gate * indicated by the audit id, which is set from the ruid parameter of 9567c478bd9Sstevel@tonic-gate * adt_set_user(), below. 9577c478bd9Sstevel@tonic-gate */ 9587c478bd9Sstevel@tonic-gate 9597c478bd9Sstevel@tonic-gate static void 9607c478bd9Sstevel@tonic-gate prepare_audit_context() 9617c478bd9Sstevel@tonic-gate { 9627c478bd9Sstevel@tonic-gate adt_session_data_t *ah; 9637c478bd9Sstevel@tonic-gate char *failure = gettext("audit failure: %s"); 9647c478bd9Sstevel@tonic-gate 9657c478bd9Sstevel@tonic-gate if (adt_start_session(&ah, NULL, 0)) { 9667c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 9677c478bd9Sstevel@tonic-gate return; 9687c478bd9Sstevel@tonic-gate } 9697c478bd9Sstevel@tonic-gate if (adt_set_user(ah, ADT_NO_AUDIT, ADT_NO_AUDIT, 9707c478bd9Sstevel@tonic-gate ADT_NO_AUDIT, ADT_NO_AUDIT, NULL, ADT_NEW)) { 9717c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 9727c478bd9Sstevel@tonic-gate (void) adt_end_session(ah); 9737c478bd9Sstevel@tonic-gate return; 9747c478bd9Sstevel@tonic-gate } 9757c478bd9Sstevel@tonic-gate if (adt_set_proc(ah)) 9767c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 9777c478bd9Sstevel@tonic-gate 9787c478bd9Sstevel@tonic-gate (void) adt_end_session(ah); 9797c478bd9Sstevel@tonic-gate } 9807c478bd9Sstevel@tonic-gate 9817c478bd9Sstevel@tonic-gate static int 9827c478bd9Sstevel@tonic-gate start_zoneadmd(const char *zone_name) 9837c478bd9Sstevel@tonic-gate { 9847c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 9857c478bd9Sstevel@tonic-gate pid_t child_pid; 9867c478bd9Sstevel@tonic-gate int error = Z_ERR; 9877c478bd9Sstevel@tonic-gate int doorfd, lockfd; 9887c478bd9Sstevel@tonic-gate struct door_info info; 9897c478bd9Sstevel@tonic-gate 990*108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) 991*108322fbScarlsonj return (Z_ERR); 9927c478bd9Sstevel@tonic-gate 9937c478bd9Sstevel@tonic-gate if (grab_lock_file(zone_name, &lockfd) != Z_OK) 9947c478bd9Sstevel@tonic-gate return (Z_ERR); 9957c478bd9Sstevel@tonic-gate 9967c478bd9Sstevel@tonic-gate /* 9977c478bd9Sstevel@tonic-gate * Now that we have the lock, re-confirm that the daemon is 9987c478bd9Sstevel@tonic-gate * *not* up and working fine. If it is still down, we have a green 9997c478bd9Sstevel@tonic-gate * light to start it. 10007c478bd9Sstevel@tonic-gate */ 10017c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 10027c478bd9Sstevel@tonic-gate if (errno != ENOENT) { 10037c478bd9Sstevel@tonic-gate zperror(doorpath, B_FALSE); 10047c478bd9Sstevel@tonic-gate goto out; 10057c478bd9Sstevel@tonic-gate } 10067c478bd9Sstevel@tonic-gate } else { 10077c478bd9Sstevel@tonic-gate if (door_info(doorfd, &info) == 0 && 10087c478bd9Sstevel@tonic-gate ((info.di_attributes & DOOR_REVOKED) == 0)) { 10097c478bd9Sstevel@tonic-gate error = Z_OK; 10107c478bd9Sstevel@tonic-gate (void) close(doorfd); 10117c478bd9Sstevel@tonic-gate goto out; 10127c478bd9Sstevel@tonic-gate } 10137c478bd9Sstevel@tonic-gate (void) close(doorfd); 10147c478bd9Sstevel@tonic-gate } 10157c478bd9Sstevel@tonic-gate 10167c478bd9Sstevel@tonic-gate if ((child_pid = fork()) == -1) { 10177c478bd9Sstevel@tonic-gate zperror(gettext("could not fork"), B_FALSE); 10187c478bd9Sstevel@tonic-gate goto out; 10197c478bd9Sstevel@tonic-gate } else if (child_pid == 0) { 1020*108322fbScarlsonj const char *argv[6], **ap; 10217c478bd9Sstevel@tonic-gate 1022*108322fbScarlsonj /* child process */ 10237c478bd9Sstevel@tonic-gate prepare_audit_context(); 10247c478bd9Sstevel@tonic-gate 1025*108322fbScarlsonj ap = argv; 1026*108322fbScarlsonj *ap++ = "zoneadmd"; 1027*108322fbScarlsonj *ap++ = "-z"; 1028*108322fbScarlsonj *ap++ = zone_name; 1029*108322fbScarlsonj if (zonecfg_in_alt_root()) { 1030*108322fbScarlsonj *ap++ = "-R"; 1031*108322fbScarlsonj *ap++ = zonecfg_get_root(); 1032*108322fbScarlsonj } 1033*108322fbScarlsonj *ap = NULL; 1034*108322fbScarlsonj 1035*108322fbScarlsonj (void) execv("/usr/lib/zones/zoneadmd", (char * const *)argv); 10367c478bd9Sstevel@tonic-gate zperror(gettext("could not exec zoneadmd"), B_FALSE); 10377c478bd9Sstevel@tonic-gate _exit(Z_ERR); 10387c478bd9Sstevel@tonic-gate } else { 10397c478bd9Sstevel@tonic-gate /* parent process */ 10407c478bd9Sstevel@tonic-gate pid_t retval; 10417c478bd9Sstevel@tonic-gate int pstatus = 0; 10427c478bd9Sstevel@tonic-gate 10437c478bd9Sstevel@tonic-gate do { 10447c478bd9Sstevel@tonic-gate retval = waitpid(child_pid, &pstatus, 0); 10457c478bd9Sstevel@tonic-gate } while (retval != child_pid); 10467c478bd9Sstevel@tonic-gate if (WIFSIGNALED(pstatus) || (WIFEXITED(pstatus) && 10477c478bd9Sstevel@tonic-gate WEXITSTATUS(pstatus) != 0)) { 10487c478bd9Sstevel@tonic-gate zerror(gettext("could not start %s"), "zoneadmd"); 10497c478bd9Sstevel@tonic-gate goto out; 10507c478bd9Sstevel@tonic-gate } 10517c478bd9Sstevel@tonic-gate } 10527c478bd9Sstevel@tonic-gate error = Z_OK; 10537c478bd9Sstevel@tonic-gate out: 10547c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 10557c478bd9Sstevel@tonic-gate return (error); 10567c478bd9Sstevel@tonic-gate } 10577c478bd9Sstevel@tonic-gate 10587c478bd9Sstevel@tonic-gate static int 10597c478bd9Sstevel@tonic-gate ping_zoneadmd(const char *zone_name) 10607c478bd9Sstevel@tonic-gate { 10617c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 10627c478bd9Sstevel@tonic-gate int doorfd; 10637c478bd9Sstevel@tonic-gate struct door_info info; 10647c478bd9Sstevel@tonic-gate 1065*108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) 1066*108322fbScarlsonj return (Z_ERR); 10677c478bd9Sstevel@tonic-gate 10687c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 10697c478bd9Sstevel@tonic-gate return (Z_ERR); 10707c478bd9Sstevel@tonic-gate } 10717c478bd9Sstevel@tonic-gate if (door_info(doorfd, &info) == 0 && 10727c478bd9Sstevel@tonic-gate ((info.di_attributes & DOOR_REVOKED) == 0)) { 10737c478bd9Sstevel@tonic-gate (void) close(doorfd); 10747c478bd9Sstevel@tonic-gate return (Z_OK); 10757c478bd9Sstevel@tonic-gate } 10767c478bd9Sstevel@tonic-gate (void) close(doorfd); 10777c478bd9Sstevel@tonic-gate return (Z_ERR); 10787c478bd9Sstevel@tonic-gate } 10797c478bd9Sstevel@tonic-gate 10807c478bd9Sstevel@tonic-gate static int 10817c478bd9Sstevel@tonic-gate call_zoneadmd(const char *zone_name, zone_cmd_arg_t *arg) 10827c478bd9Sstevel@tonic-gate { 10837c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 10847c478bd9Sstevel@tonic-gate int doorfd, result; 10857c478bd9Sstevel@tonic-gate door_arg_t darg; 10867c478bd9Sstevel@tonic-gate 10877c478bd9Sstevel@tonic-gate zoneid_t zoneid; 10887c478bd9Sstevel@tonic-gate uint64_t uniqid = 0; 10897c478bd9Sstevel@tonic-gate 10907c478bd9Sstevel@tonic-gate zone_cmd_rval_t *rvalp; 10917c478bd9Sstevel@tonic-gate size_t rlen; 10927c478bd9Sstevel@tonic-gate char *cp, *errbuf; 10937c478bd9Sstevel@tonic-gate 10947c478bd9Sstevel@tonic-gate rlen = getpagesize(); 10957c478bd9Sstevel@tonic-gate if ((rvalp = malloc(rlen)) == NULL) { 10967c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), rlen, 10977c478bd9Sstevel@tonic-gate strerror(errno)); 10987c478bd9Sstevel@tonic-gate return (-1); 10997c478bd9Sstevel@tonic-gate } 11007c478bd9Sstevel@tonic-gate 11017c478bd9Sstevel@tonic-gate if ((zoneid = getzoneidbyname(zone_name)) != ZONE_ID_UNDEFINED) { 11027c478bd9Sstevel@tonic-gate (void) zone_getattr(zoneid, ZONE_ATTR_UNIQID, &uniqid, 11037c478bd9Sstevel@tonic-gate sizeof (uniqid)); 11047c478bd9Sstevel@tonic-gate } 11057c478bd9Sstevel@tonic-gate arg->uniqid = uniqid; 11067c478bd9Sstevel@tonic-gate (void) strlcpy(arg->locale, locale, sizeof (arg->locale)); 1107*108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) { 1108*108322fbScarlsonj zerror(gettext("alternate root path is too long")); 1109*108322fbScarlsonj free(rvalp); 1110*108322fbScarlsonj return (-1); 1111*108322fbScarlsonj } 11127c478bd9Sstevel@tonic-gate 11137c478bd9Sstevel@tonic-gate /* 11147c478bd9Sstevel@tonic-gate * Loop trying to start zoneadmd; if something goes seriously 11157c478bd9Sstevel@tonic-gate * wrong we break out and fail. 11167c478bd9Sstevel@tonic-gate */ 11177c478bd9Sstevel@tonic-gate for (;;) { 11187c478bd9Sstevel@tonic-gate if (start_zoneadmd(zone_name) != Z_OK) 11197c478bd9Sstevel@tonic-gate break; 11207c478bd9Sstevel@tonic-gate 11217c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 11227c478bd9Sstevel@tonic-gate zperror(gettext("failed to open zone door"), B_FALSE); 11237c478bd9Sstevel@tonic-gate break; 11247c478bd9Sstevel@tonic-gate } 11257c478bd9Sstevel@tonic-gate 11267c478bd9Sstevel@tonic-gate darg.data_ptr = (char *)arg; 11277c478bd9Sstevel@tonic-gate darg.data_size = sizeof (*arg); 11287c478bd9Sstevel@tonic-gate darg.desc_ptr = NULL; 11297c478bd9Sstevel@tonic-gate darg.desc_num = 0; 11307c478bd9Sstevel@tonic-gate darg.rbuf = (char *)rvalp; 11317c478bd9Sstevel@tonic-gate darg.rsize = rlen; 11327c478bd9Sstevel@tonic-gate if (door_call(doorfd, &darg) != 0) { 11337c478bd9Sstevel@tonic-gate (void) close(doorfd); 11347c478bd9Sstevel@tonic-gate /* 11357c478bd9Sstevel@tonic-gate * We'll get EBADF if the door has been revoked. 11367c478bd9Sstevel@tonic-gate */ 11377c478bd9Sstevel@tonic-gate if (errno != EBADF) { 11387c478bd9Sstevel@tonic-gate zperror(gettext("door_call failed"), B_FALSE); 11397c478bd9Sstevel@tonic-gate break; 11407c478bd9Sstevel@tonic-gate } 11417c478bd9Sstevel@tonic-gate continue; /* take another lap */ 11427c478bd9Sstevel@tonic-gate } 11437c478bd9Sstevel@tonic-gate (void) close(doorfd); 11447c478bd9Sstevel@tonic-gate 11457c478bd9Sstevel@tonic-gate if (darg.data_size == 0) { 11467c478bd9Sstevel@tonic-gate /* Door server is going away; kick it again. */ 11477c478bd9Sstevel@tonic-gate continue; 11487c478bd9Sstevel@tonic-gate } 11497c478bd9Sstevel@tonic-gate 11507c478bd9Sstevel@tonic-gate errbuf = rvalp->errbuf; 11517c478bd9Sstevel@tonic-gate while (*errbuf != '\0') { 11527c478bd9Sstevel@tonic-gate /* 11537c478bd9Sstevel@tonic-gate * Remove any newlines since zerror() 11547c478bd9Sstevel@tonic-gate * will append one automatically. 11557c478bd9Sstevel@tonic-gate */ 11567c478bd9Sstevel@tonic-gate cp = strchr(errbuf, '\n'); 11577c478bd9Sstevel@tonic-gate if (cp != NULL) 11587c478bd9Sstevel@tonic-gate *cp = '\0'; 11597c478bd9Sstevel@tonic-gate zerror("%s", errbuf); 11607c478bd9Sstevel@tonic-gate if (cp == NULL) 11617c478bd9Sstevel@tonic-gate break; 11627c478bd9Sstevel@tonic-gate errbuf = cp + 1; 11637c478bd9Sstevel@tonic-gate } 11647c478bd9Sstevel@tonic-gate result = rvalp->rval == 0 ? 0 : -1; 11657c478bd9Sstevel@tonic-gate free(rvalp); 11667c478bd9Sstevel@tonic-gate return (result); 11677c478bd9Sstevel@tonic-gate } 11687c478bd9Sstevel@tonic-gate 11697c478bd9Sstevel@tonic-gate free(rvalp); 11707c478bd9Sstevel@tonic-gate return (-1); 11717c478bd9Sstevel@tonic-gate } 11727c478bd9Sstevel@tonic-gate 11737c478bd9Sstevel@tonic-gate static int 11747c478bd9Sstevel@tonic-gate ready_func(int argc, char *argv[]) 11757c478bd9Sstevel@tonic-gate { 11767c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 11777c478bd9Sstevel@tonic-gate int arg; 11787c478bd9Sstevel@tonic-gate 1179*108322fbScarlsonj if (zonecfg_in_alt_root()) { 1180*108322fbScarlsonj zerror(gettext("cannot ready zone in alternate root")); 1181*108322fbScarlsonj return (Z_ERR); 1182*108322fbScarlsonj } 1183*108322fbScarlsonj 11847c478bd9Sstevel@tonic-gate optind = 0; 11857c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 11867c478bd9Sstevel@tonic-gate switch (arg) { 11877c478bd9Sstevel@tonic-gate case '?': 11887c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 11897c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 11907c478bd9Sstevel@tonic-gate default: 11917c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 11927c478bd9Sstevel@tonic-gate return (Z_USAGE); 11937c478bd9Sstevel@tonic-gate } 11947c478bd9Sstevel@tonic-gate } 11957c478bd9Sstevel@tonic-gate if (argc > optind) { 11967c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 11977c478bd9Sstevel@tonic-gate return (Z_USAGE); 11987c478bd9Sstevel@tonic-gate } 11997c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_READY, B_FALSE, B_FALSE) != Z_OK) 12007c478bd9Sstevel@tonic-gate return (Z_ERR); 12017c478bd9Sstevel@tonic-gate if (verify_details(CMD_READY) != Z_OK) 12027c478bd9Sstevel@tonic-gate return (Z_ERR); 12037c478bd9Sstevel@tonic-gate 12047c478bd9Sstevel@tonic-gate zarg.cmd = Z_READY; 12057c478bd9Sstevel@tonic-gate if (call_zoneadmd(target_zone, &zarg) != 0) { 12067c478bd9Sstevel@tonic-gate zerror(gettext("call to %s failed"), "zoneadmd"); 12077c478bd9Sstevel@tonic-gate return (Z_ERR); 12087c478bd9Sstevel@tonic-gate } 12097c478bd9Sstevel@tonic-gate return (Z_OK); 12107c478bd9Sstevel@tonic-gate } 12117c478bd9Sstevel@tonic-gate 12127c478bd9Sstevel@tonic-gate static int 12137c478bd9Sstevel@tonic-gate boot_func(int argc, char *argv[]) 12147c478bd9Sstevel@tonic-gate { 12157c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 12167c478bd9Sstevel@tonic-gate int arg; 12177c478bd9Sstevel@tonic-gate 1218*108322fbScarlsonj if (zonecfg_in_alt_root()) { 1219*108322fbScarlsonj zerror(gettext("cannot boot zone in alternate root")); 1220*108322fbScarlsonj return (Z_ERR); 1221*108322fbScarlsonj } 1222*108322fbScarlsonj 12237c478bd9Sstevel@tonic-gate zarg.bootbuf[0] = '\0'; 12247c478bd9Sstevel@tonic-gate 12257c478bd9Sstevel@tonic-gate /* 12267c478bd9Sstevel@tonic-gate * At the current time, the only supported subargument to the 12277c478bd9Sstevel@tonic-gate * "boot" subcommand is "-s" which specifies a single-user boot. 12287c478bd9Sstevel@tonic-gate * In the future, other boot arguments should be supported 12297c478bd9Sstevel@tonic-gate * including "-m" for specifying alternate smf(5) milestones. 12307c478bd9Sstevel@tonic-gate */ 12317c478bd9Sstevel@tonic-gate optind = 0; 12327c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?s")) != EOF) { 12337c478bd9Sstevel@tonic-gate switch (arg) { 12347c478bd9Sstevel@tonic-gate case '?': 12357c478bd9Sstevel@tonic-gate sub_usage(SHELP_BOOT, CMD_BOOT); 12367c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 12377c478bd9Sstevel@tonic-gate case 's': 12387c478bd9Sstevel@tonic-gate (void) strlcpy(zarg.bootbuf, "-s", 12397c478bd9Sstevel@tonic-gate sizeof (zarg.bootbuf)); 12407c478bd9Sstevel@tonic-gate break; 12417c478bd9Sstevel@tonic-gate default: 12427c478bd9Sstevel@tonic-gate sub_usage(SHELP_BOOT, CMD_BOOT); 12437c478bd9Sstevel@tonic-gate return (Z_USAGE); 12447c478bd9Sstevel@tonic-gate } 12457c478bd9Sstevel@tonic-gate } 12467c478bd9Sstevel@tonic-gate if (argc > optind) { 12477c478bd9Sstevel@tonic-gate sub_usage(SHELP_BOOT, CMD_BOOT); 12487c478bd9Sstevel@tonic-gate return (Z_USAGE); 12497c478bd9Sstevel@tonic-gate } 12507c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_BOOT, B_FALSE, B_FALSE) != Z_OK) 12517c478bd9Sstevel@tonic-gate return (Z_ERR); 12527c478bd9Sstevel@tonic-gate if (verify_details(CMD_BOOT) != Z_OK) 12537c478bd9Sstevel@tonic-gate return (Z_ERR); 12547c478bd9Sstevel@tonic-gate zarg.cmd = Z_BOOT; 12557c478bd9Sstevel@tonic-gate if (call_zoneadmd(target_zone, &zarg) != 0) { 12567c478bd9Sstevel@tonic-gate zerror(gettext("call to %s failed"), "zoneadmd"); 12577c478bd9Sstevel@tonic-gate return (Z_ERR); 12587c478bd9Sstevel@tonic-gate } 12597c478bd9Sstevel@tonic-gate return (Z_OK); 12607c478bd9Sstevel@tonic-gate } 12617c478bd9Sstevel@tonic-gate 12627c478bd9Sstevel@tonic-gate static void 12637c478bd9Sstevel@tonic-gate fake_up_local_zone(zoneid_t zid, zone_entry_t *zeptr) 12647c478bd9Sstevel@tonic-gate { 12657c478bd9Sstevel@tonic-gate ssize_t result; 12667c478bd9Sstevel@tonic-gate 12677c478bd9Sstevel@tonic-gate zeptr->zid = zid; 12687c478bd9Sstevel@tonic-gate /* 12697c478bd9Sstevel@tonic-gate * Since we're looking up our own (non-global) zone name, 12707c478bd9Sstevel@tonic-gate * we can be assured that it will succeed. 12717c478bd9Sstevel@tonic-gate */ 12727c478bd9Sstevel@tonic-gate result = getzonenamebyid(zid, zeptr->zname, sizeof (zeptr->zname)); 12737c478bd9Sstevel@tonic-gate assert(result >= 0); 12747c478bd9Sstevel@tonic-gate (void) strlcpy(zeptr->zroot, "/", sizeof (zeptr->zroot)); 12757c478bd9Sstevel@tonic-gate zeptr->zstate_str = "running"; 12767c478bd9Sstevel@tonic-gate } 12777c478bd9Sstevel@tonic-gate 12787c478bd9Sstevel@tonic-gate static int 12797c478bd9Sstevel@tonic-gate list_func(int argc, char *argv[]) 12807c478bd9Sstevel@tonic-gate { 12817c478bd9Sstevel@tonic-gate zone_entry_t *zentp, zent; 1282*108322fbScarlsonj int arg, retv; 12837c478bd9Sstevel@tonic-gate boolean_t output = B_FALSE, verbose = B_FALSE, parsable = B_FALSE; 12847c478bd9Sstevel@tonic-gate zone_state_t min_state = ZONE_STATE_RUNNING; 12857c478bd9Sstevel@tonic-gate zoneid_t zone_id = getzoneid(); 12867c478bd9Sstevel@tonic-gate 12877c478bd9Sstevel@tonic-gate if (target_zone == NULL) { 12887c478bd9Sstevel@tonic-gate /* all zones: default view to running but allow override */ 12897c478bd9Sstevel@tonic-gate optind = 0; 12907c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?cipv")) != EOF) { 12917c478bd9Sstevel@tonic-gate switch (arg) { 12927c478bd9Sstevel@tonic-gate case '?': 12937c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 12947c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 12957c478bd9Sstevel@tonic-gate case 'c': 12967c478bd9Sstevel@tonic-gate min_state = ZONE_STATE_CONFIGURED; 12977c478bd9Sstevel@tonic-gate break; 12987c478bd9Sstevel@tonic-gate case 'i': 12997c478bd9Sstevel@tonic-gate min_state = ZONE_STATE_INSTALLED; 13007c478bd9Sstevel@tonic-gate break; 13017c478bd9Sstevel@tonic-gate case 'p': 13027c478bd9Sstevel@tonic-gate parsable = B_TRUE; 13037c478bd9Sstevel@tonic-gate break; 13047c478bd9Sstevel@tonic-gate case 'v': 13057c478bd9Sstevel@tonic-gate verbose = B_TRUE; 13067c478bd9Sstevel@tonic-gate break; 13077c478bd9Sstevel@tonic-gate default: 13087c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 13097c478bd9Sstevel@tonic-gate return (Z_USAGE); 13107c478bd9Sstevel@tonic-gate } 13117c478bd9Sstevel@tonic-gate } 13127c478bd9Sstevel@tonic-gate if (parsable && verbose) { 13137c478bd9Sstevel@tonic-gate zerror(gettext("%s -p and -v are mutually exclusive."), 13147c478bd9Sstevel@tonic-gate cmd_to_str(CMD_LIST)); 13157c478bd9Sstevel@tonic-gate return (Z_ERR); 13167c478bd9Sstevel@tonic-gate } 13177c478bd9Sstevel@tonic-gate if (zone_id == GLOBAL_ZONEID) { 1318*108322fbScarlsonj retv = zone_print_list(min_state, verbose, parsable); 13197c478bd9Sstevel@tonic-gate } else { 1320*108322fbScarlsonj retv = Z_OK; 13217c478bd9Sstevel@tonic-gate fake_up_local_zone(zone_id, &zent); 13227c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 13237c478bd9Sstevel@tonic-gate } 1324*108322fbScarlsonj return (retv); 13257c478bd9Sstevel@tonic-gate } 13267c478bd9Sstevel@tonic-gate 13277c478bd9Sstevel@tonic-gate /* 13287c478bd9Sstevel@tonic-gate * Specific target zone: disallow -i/-c suboptions. 13297c478bd9Sstevel@tonic-gate */ 13307c478bd9Sstevel@tonic-gate optind = 0; 13317c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?pv")) != EOF) { 13327c478bd9Sstevel@tonic-gate switch (arg) { 13337c478bd9Sstevel@tonic-gate case '?': 13347c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 13357c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 13367c478bd9Sstevel@tonic-gate case 'p': 13377c478bd9Sstevel@tonic-gate parsable = B_TRUE; 13387c478bd9Sstevel@tonic-gate break; 13397c478bd9Sstevel@tonic-gate case 'v': 13407c478bd9Sstevel@tonic-gate verbose = B_TRUE; 13417c478bd9Sstevel@tonic-gate break; 13427c478bd9Sstevel@tonic-gate default: 13437c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 13447c478bd9Sstevel@tonic-gate return (Z_USAGE); 13457c478bd9Sstevel@tonic-gate } 13467c478bd9Sstevel@tonic-gate } 13477c478bd9Sstevel@tonic-gate if (parsable && verbose) { 13487c478bd9Sstevel@tonic-gate zerror(gettext("%s -p and -v are mutually exclusive."), 13497c478bd9Sstevel@tonic-gate cmd_to_str(CMD_LIST)); 13507c478bd9Sstevel@tonic-gate return (Z_ERR); 13517c478bd9Sstevel@tonic-gate } 13527c478bd9Sstevel@tonic-gate if (argc > optind) { 13537c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 13547c478bd9Sstevel@tonic-gate return (Z_USAGE); 13557c478bd9Sstevel@tonic-gate } 13567c478bd9Sstevel@tonic-gate if (zone_id != GLOBAL_ZONEID) { 13577c478bd9Sstevel@tonic-gate fake_up_local_zone(zone_id, &zent); 13587c478bd9Sstevel@tonic-gate /* 13597c478bd9Sstevel@tonic-gate * main() will issue a Z_NO_ZONE error if it cannot get an 13607c478bd9Sstevel@tonic-gate * id for target_zone, which in a non-global zone should 13617c478bd9Sstevel@tonic-gate * happen for any zone name except `zonename`. Thus we 13627c478bd9Sstevel@tonic-gate * assert() that here but don't otherwise check. 13637c478bd9Sstevel@tonic-gate */ 13647c478bd9Sstevel@tonic-gate assert(strcmp(zent.zname, target_zone) == 0); 13657c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 13667c478bd9Sstevel@tonic-gate output = B_TRUE; 13677c478bd9Sstevel@tonic-gate } else if ((zentp = lookup_running_zone(target_zone)) != NULL) { 13687c478bd9Sstevel@tonic-gate zone_print(zentp, verbose, parsable); 13697c478bd9Sstevel@tonic-gate output = B_TRUE; 1370*108322fbScarlsonj } else if (lookup_zone_info(target_zone, ZONE_ID_UNDEFINED, 1371*108322fbScarlsonj &zent) == Z_OK) { 13727c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 13737c478bd9Sstevel@tonic-gate output = B_TRUE; 13747c478bd9Sstevel@tonic-gate } 13757c478bd9Sstevel@tonic-gate return (output ? Z_OK : Z_ERR); 13767c478bd9Sstevel@tonic-gate } 13777c478bd9Sstevel@tonic-gate 13787c478bd9Sstevel@tonic-gate static void 13797c478bd9Sstevel@tonic-gate sigterm(int sig) 13807c478bd9Sstevel@tonic-gate { 13817c478bd9Sstevel@tonic-gate /* 13827c478bd9Sstevel@tonic-gate * Ignore SIG{INT,TERM}, so we don't end up in an infinite loop, 13837c478bd9Sstevel@tonic-gate * then propagate the signal to our process group. 13847c478bd9Sstevel@tonic-gate */ 13857c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, SIG_IGN); 13867c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, SIG_IGN); 13877c478bd9Sstevel@tonic-gate (void) kill(0, sig); 13887c478bd9Sstevel@tonic-gate child_killed = B_TRUE; 13897c478bd9Sstevel@tonic-gate } 13907c478bd9Sstevel@tonic-gate 13917c478bd9Sstevel@tonic-gate static int 13927c478bd9Sstevel@tonic-gate do_subproc(char *cmdbuf) 13937c478bd9Sstevel@tonic-gate { 13947c478bd9Sstevel@tonic-gate char inbuf[1024]; /* arbitrary large amount */ 13957c478bd9Sstevel@tonic-gate FILE *file; 13967c478bd9Sstevel@tonic-gate 13977c478bd9Sstevel@tonic-gate child_killed = B_FALSE; 13987c478bd9Sstevel@tonic-gate /* 13997c478bd9Sstevel@tonic-gate * We use popen(3c) to launch child processes for [un]install; 14007c478bd9Sstevel@tonic-gate * this library call does not return a PID, so we have to kill 14017c478bd9Sstevel@tonic-gate * the whole process group. To avoid killing our parent, we 14027c478bd9Sstevel@tonic-gate * become a process group leader here. But doing so can wreak 14037c478bd9Sstevel@tonic-gate * havoc with reading from stdin when launched by a non-job-control 14047c478bd9Sstevel@tonic-gate * shell, so we close stdin and reopen it as /dev/null first. 14057c478bd9Sstevel@tonic-gate */ 14067c478bd9Sstevel@tonic-gate (void) close(STDIN_FILENO); 14077c478bd9Sstevel@tonic-gate (void) open("/dev/null", O_RDONLY); 14087c478bd9Sstevel@tonic-gate (void) setpgid(0, 0); 14097c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, sigterm); 14107c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, sigterm); 14117c478bd9Sstevel@tonic-gate file = popen(cmdbuf, "r"); 14127c478bd9Sstevel@tonic-gate for (;;) { 14137c478bd9Sstevel@tonic-gate if (child_killed || fgets(inbuf, sizeof (inbuf), file) == NULL) 14147c478bd9Sstevel@tonic-gate break; 14157c478bd9Sstevel@tonic-gate (void) fputs(inbuf, stdout); 14167c478bd9Sstevel@tonic-gate } 14177c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, SIG_DFL); 14187c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, SIG_DFL); 14197c478bd9Sstevel@tonic-gate return (pclose(file)); 14207c478bd9Sstevel@tonic-gate } 14217c478bd9Sstevel@tonic-gate 14227c478bd9Sstevel@tonic-gate static int 14237c478bd9Sstevel@tonic-gate subproc_status(const char *cmd, int status) 14247c478bd9Sstevel@tonic-gate { 14257c478bd9Sstevel@tonic-gate if (WIFEXITED(status)) { 14267c478bd9Sstevel@tonic-gate int exit_code = WEXITSTATUS(status); 14277c478bd9Sstevel@tonic-gate 14287c478bd9Sstevel@tonic-gate if (exit_code == 0) 14297c478bd9Sstevel@tonic-gate return (Z_OK); 14307c478bd9Sstevel@tonic-gate zerror(gettext("'%s' failed with exit code %d."), cmd, 14317c478bd9Sstevel@tonic-gate exit_code); 14327c478bd9Sstevel@tonic-gate } else if (WIFSIGNALED(status)) { 14337c478bd9Sstevel@tonic-gate int signal = WTERMSIG(status); 14347c478bd9Sstevel@tonic-gate char sigstr[SIG2STR_MAX]; 14357c478bd9Sstevel@tonic-gate 14367c478bd9Sstevel@tonic-gate if (sig2str(signal, sigstr) == 0) { 14377c478bd9Sstevel@tonic-gate zerror(gettext("'%s' terminated by signal SIG%s."), cmd, 14387c478bd9Sstevel@tonic-gate sigstr); 14397c478bd9Sstevel@tonic-gate } else { 14407c478bd9Sstevel@tonic-gate zerror(gettext("'%s' terminated by an unknown signal."), 14417c478bd9Sstevel@tonic-gate cmd); 14427c478bd9Sstevel@tonic-gate } 14437c478bd9Sstevel@tonic-gate } else { 14447c478bd9Sstevel@tonic-gate zerror(gettext("'%s' failed for unknown reasons."), cmd); 14457c478bd9Sstevel@tonic-gate } 14467c478bd9Sstevel@tonic-gate return (Z_ERR); 14477c478bd9Sstevel@tonic-gate } 14487c478bd9Sstevel@tonic-gate 14497c478bd9Sstevel@tonic-gate /* 14507c478bd9Sstevel@tonic-gate * Various sanity checks; make sure: 14517c478bd9Sstevel@tonic-gate * 1. We're in the global zone. 14527c478bd9Sstevel@tonic-gate * 2. The calling user has sufficient privilege. 14537c478bd9Sstevel@tonic-gate * 3. The target zone is neither the global zone nor anything starting with 14547c478bd9Sstevel@tonic-gate * "SUNW". 14557c478bd9Sstevel@tonic-gate * 4a. If we're looking for a 'not running' (i.e., configured or installed) 14567c478bd9Sstevel@tonic-gate * zone, the name service knows about it. 14577c478bd9Sstevel@tonic-gate * 4b. For some operations which expect a zone not to be running, that it is 14587c478bd9Sstevel@tonic-gate * not already running (or ready). 14597c478bd9Sstevel@tonic-gate */ 14607c478bd9Sstevel@tonic-gate static int 14617c478bd9Sstevel@tonic-gate sanity_check(char *zone, int cmd_num, boolean_t running, 14627c478bd9Sstevel@tonic-gate boolean_t unsafe_when_running) 14637c478bd9Sstevel@tonic-gate { 14647c478bd9Sstevel@tonic-gate zone_entry_t *zent; 14657c478bd9Sstevel@tonic-gate priv_set_t *privset; 14667c478bd9Sstevel@tonic-gate zone_state_t state; 1467*108322fbScarlsonj char kernzone[ZONENAME_MAX]; 1468*108322fbScarlsonj FILE *fp; 14697c478bd9Sstevel@tonic-gate 14707c478bd9Sstevel@tonic-gate if (getzoneid() != GLOBAL_ZONEID) { 14717c478bd9Sstevel@tonic-gate zerror(gettext("must be in the global zone to %s a zone."), 14727c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 14737c478bd9Sstevel@tonic-gate return (Z_ERR); 14747c478bd9Sstevel@tonic-gate } 14757c478bd9Sstevel@tonic-gate 14767c478bd9Sstevel@tonic-gate if ((privset = priv_allocset()) == NULL) { 14777c478bd9Sstevel@tonic-gate zerror(gettext("%s failed"), "priv_allocset"); 14787c478bd9Sstevel@tonic-gate return (Z_ERR); 14797c478bd9Sstevel@tonic-gate } 14807c478bd9Sstevel@tonic-gate 14817c478bd9Sstevel@tonic-gate if (getppriv(PRIV_EFFECTIVE, privset) != 0) { 14827c478bd9Sstevel@tonic-gate zerror(gettext("%s failed"), "getppriv"); 14837c478bd9Sstevel@tonic-gate priv_freeset(privset); 14847c478bd9Sstevel@tonic-gate return (Z_ERR); 14857c478bd9Sstevel@tonic-gate } 14867c478bd9Sstevel@tonic-gate 14877c478bd9Sstevel@tonic-gate if (priv_isfullset(privset) == B_FALSE) { 14887c478bd9Sstevel@tonic-gate zerror(gettext("only a privileged user may %s a zone."), 14897c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 14907c478bd9Sstevel@tonic-gate priv_freeset(privset); 14917c478bd9Sstevel@tonic-gate return (Z_ERR); 14927c478bd9Sstevel@tonic-gate } 14937c478bd9Sstevel@tonic-gate priv_freeset(privset); 14947c478bd9Sstevel@tonic-gate 14957c478bd9Sstevel@tonic-gate if (zone == NULL) { 14967c478bd9Sstevel@tonic-gate zerror(gettext("no zone specified")); 14977c478bd9Sstevel@tonic-gate return (Z_ERR); 14987c478bd9Sstevel@tonic-gate } 14997c478bd9Sstevel@tonic-gate 15007c478bd9Sstevel@tonic-gate if (strcmp(zone, GLOBAL_ZONENAME) == 0) { 15017c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for the global zone."), 15027c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 15037c478bd9Sstevel@tonic-gate return (Z_ERR); 15047c478bd9Sstevel@tonic-gate } 15057c478bd9Sstevel@tonic-gate 15067c478bd9Sstevel@tonic-gate if (strncmp(zone, "SUNW", 4) == 0) { 15077c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for zones starting " 15087c478bd9Sstevel@tonic-gate "with SUNW."), cmd_to_str(cmd_num)); 15097c478bd9Sstevel@tonic-gate return (Z_ERR); 15107c478bd9Sstevel@tonic-gate } 15117c478bd9Sstevel@tonic-gate 1512*108322fbScarlsonj if (!zonecfg_in_alt_root()) { 1513*108322fbScarlsonj zent = lookup_running_zone(zone); 1514*108322fbScarlsonj } else if ((fp = zonecfg_open_scratch("", B_FALSE)) == NULL) { 1515*108322fbScarlsonj zent = NULL; 1516*108322fbScarlsonj } else { 1517*108322fbScarlsonj if (zonecfg_find_scratch(fp, zone, zonecfg_get_root(), 1518*108322fbScarlsonj kernzone, sizeof (kernzone)) == 0) 1519*108322fbScarlsonj zent = lookup_running_zone(kernzone); 1520*108322fbScarlsonj else 1521*108322fbScarlsonj zent = NULL; 1522*108322fbScarlsonj zonecfg_close_scratch(fp); 1523*108322fbScarlsonj } 1524*108322fbScarlsonj 15257c478bd9Sstevel@tonic-gate /* 15267c478bd9Sstevel@tonic-gate * Look up from the kernel for 'running' zones. 15277c478bd9Sstevel@tonic-gate */ 15287c478bd9Sstevel@tonic-gate if (running) { 15297c478bd9Sstevel@tonic-gate if (zent == NULL) { 15307c478bd9Sstevel@tonic-gate zerror(gettext("not running")); 15317c478bd9Sstevel@tonic-gate return (Z_ERR); 15327c478bd9Sstevel@tonic-gate } 15337c478bd9Sstevel@tonic-gate } else { 15347c478bd9Sstevel@tonic-gate int err; 15357c478bd9Sstevel@tonic-gate 15367c478bd9Sstevel@tonic-gate if (unsafe_when_running && zent != NULL) { 15377c478bd9Sstevel@tonic-gate /* check whether the zone is ready or running */ 15387c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zent->zname, 15397c478bd9Sstevel@tonic-gate &zent->zstate_num)) != Z_OK) { 15407c478bd9Sstevel@tonic-gate errno = err; 15417c478bd9Sstevel@tonic-gate zperror2(zent->zname, 15427c478bd9Sstevel@tonic-gate gettext("could not get state")); 15437c478bd9Sstevel@tonic-gate /* can't tell, so hedge */ 15447c478bd9Sstevel@tonic-gate zent->zstate_str = "ready/running"; 15457c478bd9Sstevel@tonic-gate } else { 15467c478bd9Sstevel@tonic-gate zent->zstate_str = 15477c478bd9Sstevel@tonic-gate zone_state_str(zent->zstate_num); 15487c478bd9Sstevel@tonic-gate } 15497c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for %s zones."), 15507c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num), zent->zstate_str); 15517c478bd9Sstevel@tonic-gate return (Z_ERR); 15527c478bd9Sstevel@tonic-gate } 15537c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zone, &state)) != Z_OK) { 15547c478bd9Sstevel@tonic-gate errno = err; 15557c478bd9Sstevel@tonic-gate zperror2(zone, gettext("could not get state")); 15567c478bd9Sstevel@tonic-gate return (Z_ERR); 15577c478bd9Sstevel@tonic-gate } 15587c478bd9Sstevel@tonic-gate switch (cmd_num) { 15597c478bd9Sstevel@tonic-gate case CMD_UNINSTALL: 15607c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_CONFIGURED) { 15617c478bd9Sstevel@tonic-gate zerror(gettext("is already in state '%s'."), 15627c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_CONFIGURED)); 15637c478bd9Sstevel@tonic-gate return (Z_ERR); 15647c478bd9Sstevel@tonic-gate } 15657c478bd9Sstevel@tonic-gate break; 15667c478bd9Sstevel@tonic-gate case CMD_INSTALL: 15677c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_INSTALLED) { 15687c478bd9Sstevel@tonic-gate zerror(gettext("is already %s."), 15697c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INSTALLED)); 15707c478bd9Sstevel@tonic-gate return (Z_ERR); 15717c478bd9Sstevel@tonic-gate } else if (state == ZONE_STATE_INCOMPLETE) { 15727c478bd9Sstevel@tonic-gate zerror(gettext("zone is %s; %s required."), 15737c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INCOMPLETE), 15747c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 15757c478bd9Sstevel@tonic-gate return (Z_ERR); 15767c478bd9Sstevel@tonic-gate } 15777c478bd9Sstevel@tonic-gate break; 15787c478bd9Sstevel@tonic-gate case CMD_READY: 15797c478bd9Sstevel@tonic-gate case CMD_BOOT: 1580*108322fbScarlsonj case CMD_MOUNT: 15817c478bd9Sstevel@tonic-gate if (state < ZONE_STATE_INSTALLED) { 15827c478bd9Sstevel@tonic-gate zerror(gettext("must be %s before %s."), 15837c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INSTALLED), 15847c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 15857c478bd9Sstevel@tonic-gate return (Z_ERR); 15867c478bd9Sstevel@tonic-gate } 15877c478bd9Sstevel@tonic-gate break; 15887c478bd9Sstevel@tonic-gate case CMD_VERIFY: 15897c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_INCOMPLETE) { 15907c478bd9Sstevel@tonic-gate zerror(gettext("zone is %s; %s required."), 15917c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INCOMPLETE), 15927c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 15937c478bd9Sstevel@tonic-gate return (Z_ERR); 15947c478bd9Sstevel@tonic-gate } 15957c478bd9Sstevel@tonic-gate break; 1596*108322fbScarlsonj case CMD_UNMOUNT: 1597*108322fbScarlsonj if (state != ZONE_STATE_MOUNTED) { 1598*108322fbScarlsonj zerror(gettext("must be %s before %s."), 1599*108322fbScarlsonj zone_state_str(ZONE_STATE_MOUNTED), 1600*108322fbScarlsonj cmd_to_str(cmd_num)); 1601*108322fbScarlsonj return (Z_ERR); 1602*108322fbScarlsonj } 1603*108322fbScarlsonj break; 16047c478bd9Sstevel@tonic-gate } 16057c478bd9Sstevel@tonic-gate } 16067c478bd9Sstevel@tonic-gate return (Z_OK); 16077c478bd9Sstevel@tonic-gate } 16087c478bd9Sstevel@tonic-gate 16097c478bd9Sstevel@tonic-gate static int 16107c478bd9Sstevel@tonic-gate halt_func(int argc, char *argv[]) 16117c478bd9Sstevel@tonic-gate { 16127c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 16137c478bd9Sstevel@tonic-gate int arg; 16147c478bd9Sstevel@tonic-gate 1615*108322fbScarlsonj if (zonecfg_in_alt_root()) { 1616*108322fbScarlsonj zerror(gettext("cannot halt zone in alternate root")); 1617*108322fbScarlsonj return (Z_ERR); 1618*108322fbScarlsonj } 1619*108322fbScarlsonj 16207c478bd9Sstevel@tonic-gate optind = 0; 16217c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 16227c478bd9Sstevel@tonic-gate switch (arg) { 16237c478bd9Sstevel@tonic-gate case '?': 16247c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 16257c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 16267c478bd9Sstevel@tonic-gate default: 16277c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 16287c478bd9Sstevel@tonic-gate return (Z_USAGE); 16297c478bd9Sstevel@tonic-gate } 16307c478bd9Sstevel@tonic-gate } 16317c478bd9Sstevel@tonic-gate if (argc > optind) { 16327c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 16337c478bd9Sstevel@tonic-gate return (Z_USAGE); 16347c478bd9Sstevel@tonic-gate } 16357c478bd9Sstevel@tonic-gate /* 16367c478bd9Sstevel@tonic-gate * zoneadmd should be the one to decide whether or not to proceed, 16377c478bd9Sstevel@tonic-gate * so even though it seems that the fourth parameter below should 16387c478bd9Sstevel@tonic-gate * perhaps be B_TRUE, it really shouldn't be. 16397c478bd9Sstevel@tonic-gate */ 16407c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_HALT, B_FALSE, B_FALSE) != Z_OK) 16417c478bd9Sstevel@tonic-gate return (Z_ERR); 16427c478bd9Sstevel@tonic-gate 16437c478bd9Sstevel@tonic-gate zarg.cmd = Z_HALT; 16447c478bd9Sstevel@tonic-gate return ((call_zoneadmd(target_zone, &zarg) == 0) ? Z_OK : Z_ERR); 16457c478bd9Sstevel@tonic-gate } 16467c478bd9Sstevel@tonic-gate 16477c478bd9Sstevel@tonic-gate static int 16487c478bd9Sstevel@tonic-gate reboot_func(int argc, char *argv[]) 16497c478bd9Sstevel@tonic-gate { 16507c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 16517c478bd9Sstevel@tonic-gate int arg; 16527c478bd9Sstevel@tonic-gate 1653*108322fbScarlsonj if (zonecfg_in_alt_root()) { 1654*108322fbScarlsonj zerror(gettext("cannot reboot zone in alternate root")); 1655*108322fbScarlsonj return (Z_ERR); 1656*108322fbScarlsonj } 1657*108322fbScarlsonj 16587c478bd9Sstevel@tonic-gate optind = 0; 16597c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 16607c478bd9Sstevel@tonic-gate switch (arg) { 16617c478bd9Sstevel@tonic-gate case '?': 16627c478bd9Sstevel@tonic-gate sub_usage(SHELP_REBOOT, CMD_REBOOT); 16637c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 16647c478bd9Sstevel@tonic-gate default: 16657c478bd9Sstevel@tonic-gate sub_usage(SHELP_REBOOT, CMD_REBOOT); 16667c478bd9Sstevel@tonic-gate return (Z_USAGE); 16677c478bd9Sstevel@tonic-gate } 16687c478bd9Sstevel@tonic-gate } 16697c478bd9Sstevel@tonic-gate if (argc > 0) { 16707c478bd9Sstevel@tonic-gate sub_usage(SHELP_REBOOT, CMD_REBOOT); 16717c478bd9Sstevel@tonic-gate return (Z_USAGE); 16727c478bd9Sstevel@tonic-gate } 16737c478bd9Sstevel@tonic-gate /* 16747c478bd9Sstevel@tonic-gate * zoneadmd should be the one to decide whether or not to proceed, 16757c478bd9Sstevel@tonic-gate * so even though it seems that the fourth parameter below should 16767c478bd9Sstevel@tonic-gate * perhaps be B_TRUE, it really shouldn't be. 16777c478bd9Sstevel@tonic-gate */ 16787c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_REBOOT, B_TRUE, B_FALSE) != Z_OK) 16797c478bd9Sstevel@tonic-gate return (Z_ERR); 16807c478bd9Sstevel@tonic-gate 16817c478bd9Sstevel@tonic-gate zarg.cmd = Z_REBOOT; 16827c478bd9Sstevel@tonic-gate return ((call_zoneadmd(target_zone, &zarg) == 0) ? Z_OK : Z_ERR); 16837c478bd9Sstevel@tonic-gate } 16847c478bd9Sstevel@tonic-gate 16857c478bd9Sstevel@tonic-gate static int 16867c478bd9Sstevel@tonic-gate verify_rctls(zone_dochandle_t handle) 16877c478bd9Sstevel@tonic-gate { 16887c478bd9Sstevel@tonic-gate struct zone_rctltab rctltab; 16897c478bd9Sstevel@tonic-gate size_t rbs = rctlblk_size(); 16907c478bd9Sstevel@tonic-gate rctlblk_t *rctlblk; 16917c478bd9Sstevel@tonic-gate int error = Z_INVAL; 16927c478bd9Sstevel@tonic-gate 16937c478bd9Sstevel@tonic-gate if ((rctlblk = malloc(rbs)) == NULL) { 16947c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), rbs, 16957c478bd9Sstevel@tonic-gate strerror(errno)); 16967c478bd9Sstevel@tonic-gate return (Z_NOMEM); 16977c478bd9Sstevel@tonic-gate } 16987c478bd9Sstevel@tonic-gate 16997c478bd9Sstevel@tonic-gate if (zonecfg_setrctlent(handle) != Z_OK) { 17007c478bd9Sstevel@tonic-gate zerror(gettext("zonecfg_setrctlent failed")); 17017c478bd9Sstevel@tonic-gate free(rctlblk); 17027c478bd9Sstevel@tonic-gate return (error); 17037c478bd9Sstevel@tonic-gate } 17047c478bd9Sstevel@tonic-gate 17057c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 17067c478bd9Sstevel@tonic-gate while (zonecfg_getrctlent(handle, &rctltab) == Z_OK) { 17077c478bd9Sstevel@tonic-gate struct zone_rctlvaltab *rctlval; 17087c478bd9Sstevel@tonic-gate const char *name = rctltab.zone_rctl_name; 17097c478bd9Sstevel@tonic-gate 17107c478bd9Sstevel@tonic-gate if (!zonecfg_is_rctl(name)) { 17117c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: Ignoring unrecognized rctl " 17127c478bd9Sstevel@tonic-gate "'%s'."), name); 17137c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 17147c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 17157c478bd9Sstevel@tonic-gate continue; 17167c478bd9Sstevel@tonic-gate } 17177c478bd9Sstevel@tonic-gate 17187c478bd9Sstevel@tonic-gate for (rctlval = rctltab.zone_rctl_valptr; rctlval != NULL; 17197c478bd9Sstevel@tonic-gate rctlval = rctlval->zone_rctlval_next) { 17207c478bd9Sstevel@tonic-gate if (zonecfg_construct_rctlblk(rctlval, rctlblk) 17217c478bd9Sstevel@tonic-gate != Z_OK) { 17227c478bd9Sstevel@tonic-gate zerror(gettext("invalid rctl value: " 17237c478bd9Sstevel@tonic-gate "(priv=%s,limit=%s,action%s)"), 17247c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_priv, 17257c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_limit, 17267c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_action); 17277c478bd9Sstevel@tonic-gate goto out; 17287c478bd9Sstevel@tonic-gate } 17297c478bd9Sstevel@tonic-gate if (!zonecfg_valid_rctl(name, rctlblk)) { 17307c478bd9Sstevel@tonic-gate zerror(gettext("(priv=%s,limit=%s,action=%s) " 17317c478bd9Sstevel@tonic-gate "is not a valid value for rctl '%s'"), 17327c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_priv, 17337c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_limit, 17347c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_action, 17357c478bd9Sstevel@tonic-gate name); 17367c478bd9Sstevel@tonic-gate goto out; 17377c478bd9Sstevel@tonic-gate } 17387c478bd9Sstevel@tonic-gate } 17397c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 17407c478bd9Sstevel@tonic-gate } 17417c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 17427c478bd9Sstevel@tonic-gate error = Z_OK; 17437c478bd9Sstevel@tonic-gate out: 17447c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 17457c478bd9Sstevel@tonic-gate (void) zonecfg_endrctlent(handle); 17467c478bd9Sstevel@tonic-gate free(rctlblk); 17477c478bd9Sstevel@tonic-gate return (error); 17487c478bd9Sstevel@tonic-gate } 17497c478bd9Sstevel@tonic-gate 17507c478bd9Sstevel@tonic-gate static int 17517c478bd9Sstevel@tonic-gate verify_pool(zone_dochandle_t handle) 17527c478bd9Sstevel@tonic-gate { 17537c478bd9Sstevel@tonic-gate char poolname[MAXPATHLEN]; 17547c478bd9Sstevel@tonic-gate pool_conf_t *poolconf; 17557c478bd9Sstevel@tonic-gate pool_t *pool; 17567c478bd9Sstevel@tonic-gate int status; 17577c478bd9Sstevel@tonic-gate int error; 17587c478bd9Sstevel@tonic-gate 17597c478bd9Sstevel@tonic-gate /* 17607c478bd9Sstevel@tonic-gate * This ends up being very similar to the check done in zoneadmd. 17617c478bd9Sstevel@tonic-gate */ 17627c478bd9Sstevel@tonic-gate error = zonecfg_get_pool(handle, poolname, sizeof (poolname)); 17637c478bd9Sstevel@tonic-gate if (error == Z_NO_ENTRY || (error == Z_OK && strlen(poolname) == 0)) { 17647c478bd9Sstevel@tonic-gate /* 17657c478bd9Sstevel@tonic-gate * No pool specified. 17667c478bd9Sstevel@tonic-gate */ 17677c478bd9Sstevel@tonic-gate return (0); 17687c478bd9Sstevel@tonic-gate } 17697c478bd9Sstevel@tonic-gate if (error != Z_OK) { 17707c478bd9Sstevel@tonic-gate zperror(gettext("Unable to retrieve pool name from " 17717c478bd9Sstevel@tonic-gate "configuration"), B_TRUE); 17727c478bd9Sstevel@tonic-gate return (error); 17737c478bd9Sstevel@tonic-gate } 17747c478bd9Sstevel@tonic-gate /* 17757c478bd9Sstevel@tonic-gate * Don't do anything if pools aren't enabled. 17767c478bd9Sstevel@tonic-gate */ 17777c478bd9Sstevel@tonic-gate if (pool_get_status(&status) != PO_SUCCESS || status != POOL_ENABLED) { 17787c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pools facility not active; " 17797c478bd9Sstevel@tonic-gate "zone will not be bound to pool '%s'."), poolname); 17807c478bd9Sstevel@tonic-gate return (Z_OK); 17817c478bd9Sstevel@tonic-gate } 17827c478bd9Sstevel@tonic-gate /* 17837c478bd9Sstevel@tonic-gate * Try to provide a sane error message if the requested pool doesn't 17847c478bd9Sstevel@tonic-gate * exist. It isn't clear that pools-related failures should 17857c478bd9Sstevel@tonic-gate * necessarily translate to a failure to verify the zone configuration, 17867c478bd9Sstevel@tonic-gate * hence they are not considered errors. 17877c478bd9Sstevel@tonic-gate */ 17887c478bd9Sstevel@tonic-gate if ((poolconf = pool_conf_alloc()) == NULL) { 17897c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool_conf_alloc failed; " 17907c478bd9Sstevel@tonic-gate "using default pool")); 17917c478bd9Sstevel@tonic-gate return (Z_OK); 17927c478bd9Sstevel@tonic-gate } 17937c478bd9Sstevel@tonic-gate if (pool_conf_open(poolconf, pool_dynamic_location(), PO_RDONLY) != 17947c478bd9Sstevel@tonic-gate PO_SUCCESS) { 17957c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool_conf_open failed; " 17967c478bd9Sstevel@tonic-gate "using default pool")); 17977c478bd9Sstevel@tonic-gate pool_conf_free(poolconf); 17987c478bd9Sstevel@tonic-gate return (Z_OK); 17997c478bd9Sstevel@tonic-gate } 18007c478bd9Sstevel@tonic-gate pool = pool_get_pool(poolconf, poolname); 18017c478bd9Sstevel@tonic-gate (void) pool_conf_close(poolconf); 18027c478bd9Sstevel@tonic-gate pool_conf_free(poolconf); 18037c478bd9Sstevel@tonic-gate if (pool == NULL) { 18047c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool '%s' not found. " 18057c478bd9Sstevel@tonic-gate "using default pool"), poolname); 18067c478bd9Sstevel@tonic-gate } 18077c478bd9Sstevel@tonic-gate 18087c478bd9Sstevel@tonic-gate return (Z_OK); 18097c478bd9Sstevel@tonic-gate } 18107c478bd9Sstevel@tonic-gate 18117c478bd9Sstevel@tonic-gate static int 18127c478bd9Sstevel@tonic-gate verify_filesystems(zone_dochandle_t handle) 18137c478bd9Sstevel@tonic-gate { 18147c478bd9Sstevel@tonic-gate int return_code = Z_OK; 18157c478bd9Sstevel@tonic-gate struct zone_fstab fstab; 18167c478bd9Sstevel@tonic-gate char cmdbuf[MAXPATHLEN]; 18177c478bd9Sstevel@tonic-gate struct stat st; 18187c478bd9Sstevel@tonic-gate 18197c478bd9Sstevel@tonic-gate /* 18207c478bd9Sstevel@tonic-gate * No need to verify inherit-pkg-dir fs types, as their type is 18217c478bd9Sstevel@tonic-gate * implicitly lofs, which is known. Therefore, the types are only 18227c478bd9Sstevel@tonic-gate * verified for regular filesystems below. 18237c478bd9Sstevel@tonic-gate * 18247c478bd9Sstevel@tonic-gate * Since the actual mount point is not known until the dependent mounts 18257c478bd9Sstevel@tonic-gate * are performed, we don't attempt any path validation here: that will 18267c478bd9Sstevel@tonic-gate * happen later when zoneadmd actually does the mounts. 18277c478bd9Sstevel@tonic-gate */ 18287c478bd9Sstevel@tonic-gate if (zonecfg_setfsent(handle) != Z_OK) { 18297c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify file-systems: " 18307c478bd9Sstevel@tonic-gate "unable to enumerate mounts\n")); 18317c478bd9Sstevel@tonic-gate return (Z_ERR); 18327c478bd9Sstevel@tonic-gate } 18337c478bd9Sstevel@tonic-gate while (zonecfg_getfsent(handle, &fstab) == Z_OK) { 18347c478bd9Sstevel@tonic-gate if (!zonecfg_valid_fs_type(fstab.zone_fs_type)) { 18357c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18367c478bd9Sstevel@tonic-gate "type %s is not allowed.\n"), fstab.zone_fs_dir, 18377c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 18387c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18397c478bd9Sstevel@tonic-gate goto next_fs; 18407c478bd9Sstevel@tonic-gate } 18417c478bd9Sstevel@tonic-gate /* 18427c478bd9Sstevel@tonic-gate * Verify /usr/lib/fs/<fstype>/mount exists. 18437c478bd9Sstevel@tonic-gate */ 18447c478bd9Sstevel@tonic-gate if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/mount", 18457c478bd9Sstevel@tonic-gate fstab.zone_fs_type) > sizeof (cmdbuf)) { 18467c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18477c478bd9Sstevel@tonic-gate "type %s is too long.\n"), fstab.zone_fs_dir, 18487c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 18497c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18507c478bd9Sstevel@tonic-gate goto next_fs; 18517c478bd9Sstevel@tonic-gate } 18527c478bd9Sstevel@tonic-gate if (stat(cmdbuf, &st) != 0) { 18537c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18547c478bd9Sstevel@tonic-gate "can't access %s: %s\n"), fstab.zone_fs_dir, 18557c478bd9Sstevel@tonic-gate cmdbuf, strerror(errno)); 18567c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18577c478bd9Sstevel@tonic-gate goto next_fs; 18587c478bd9Sstevel@tonic-gate } 18597c478bd9Sstevel@tonic-gate if (!S_ISREG(st.st_mode)) { 18607c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18617c478bd9Sstevel@tonic-gate "%s is not a regular file\n"), fstab.zone_fs_dir, 18627c478bd9Sstevel@tonic-gate cmdbuf); 18637c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18647c478bd9Sstevel@tonic-gate goto next_fs; 18657c478bd9Sstevel@tonic-gate } 18667c478bd9Sstevel@tonic-gate /* 18677c478bd9Sstevel@tonic-gate * Verify /usr/lib/fs/<fstype>/fsck exists iff zone_fs_raw is 18687c478bd9Sstevel@tonic-gate * set. 18697c478bd9Sstevel@tonic-gate */ 18707c478bd9Sstevel@tonic-gate if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/fsck", 18717c478bd9Sstevel@tonic-gate fstab.zone_fs_type) > sizeof (cmdbuf)) { 18727c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18737c478bd9Sstevel@tonic-gate "type %s is too long.\n"), fstab.zone_fs_dir, 18747c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 18757c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18767c478bd9Sstevel@tonic-gate goto next_fs; 18777c478bd9Sstevel@tonic-gate } 18787c478bd9Sstevel@tonic-gate if (fstab.zone_fs_raw[0] == '\0' && stat(cmdbuf, &st) == 0) { 18797c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18807c478bd9Sstevel@tonic-gate "must specify 'raw' device for %s file-systems\n"), 18817c478bd9Sstevel@tonic-gate fstab.zone_fs_dir, fstab.zone_fs_type); 18827c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18837c478bd9Sstevel@tonic-gate goto next_fs; 18847c478bd9Sstevel@tonic-gate } 18857c478bd9Sstevel@tonic-gate if (fstab.zone_fs_raw[0] != '\0' && 18867c478bd9Sstevel@tonic-gate (stat(cmdbuf, &st) != 0 || !S_ISREG(st.st_mode))) { 18877c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18887c478bd9Sstevel@tonic-gate "'raw' device specified but " 18897c478bd9Sstevel@tonic-gate "no fsck executable exists for %s\n"), 18907c478bd9Sstevel@tonic-gate fstab.zone_fs_dir, fstab.zone_fs_type); 18917c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18927c478bd9Sstevel@tonic-gate goto next_fs; 18937c478bd9Sstevel@tonic-gate } 18947c478bd9Sstevel@tonic-gate next_fs: 18957c478bd9Sstevel@tonic-gate zonecfg_free_fs_option_list(fstab.zone_fs_options); 18967c478bd9Sstevel@tonic-gate } 18977c478bd9Sstevel@tonic-gate (void) zonecfg_endfsent(handle); 18987c478bd9Sstevel@tonic-gate 18997c478bd9Sstevel@tonic-gate return (return_code); 19007c478bd9Sstevel@tonic-gate } 19017c478bd9Sstevel@tonic-gate 19027c478bd9Sstevel@tonic-gate static int 19037c478bd9Sstevel@tonic-gate verify_details(int cmd_num) 19047c478bd9Sstevel@tonic-gate { 19057c478bd9Sstevel@tonic-gate zone_dochandle_t handle; 19067c478bd9Sstevel@tonic-gate struct zone_nwiftab nwiftab; 19077c478bd9Sstevel@tonic-gate char zonepath[MAXPATHLEN], checkpath[MAXPATHLEN]; 19087c478bd9Sstevel@tonic-gate int return_code = Z_OK; 19097c478bd9Sstevel@tonic-gate int err; 1910*108322fbScarlsonj boolean_t in_alt_root; 19117c478bd9Sstevel@tonic-gate 19127c478bd9Sstevel@tonic-gate if ((handle = zonecfg_init_handle()) == NULL) { 19137c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 19147c478bd9Sstevel@tonic-gate return (Z_ERR); 19157c478bd9Sstevel@tonic-gate } 19167c478bd9Sstevel@tonic-gate if ((err = zonecfg_get_handle(target_zone, handle)) != Z_OK) { 19177c478bd9Sstevel@tonic-gate errno = err; 19187c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 19197c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 19207c478bd9Sstevel@tonic-gate return (Z_ERR); 19217c478bd9Sstevel@tonic-gate } 19227c478bd9Sstevel@tonic-gate if ((err = zonecfg_get_zonepath(handle, zonepath, sizeof (zonepath))) != 19237c478bd9Sstevel@tonic-gate Z_OK) { 19247c478bd9Sstevel@tonic-gate errno = err; 19257c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 19267c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 19277c478bd9Sstevel@tonic-gate return (Z_ERR); 19287c478bd9Sstevel@tonic-gate } 19297c478bd9Sstevel@tonic-gate /* 19307c478bd9Sstevel@tonic-gate * zonecfg_get_zonepath() gets its data from the XML repository. 19317c478bd9Sstevel@tonic-gate * Verify this against the index file, which is checked first by 19327c478bd9Sstevel@tonic-gate * zone_get_zonepath(). If they don't match, bail out. 19337c478bd9Sstevel@tonic-gate */ 19347c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(target_zone, checkpath, 19357c478bd9Sstevel@tonic-gate sizeof (checkpath))) != Z_OK) { 19367c478bd9Sstevel@tonic-gate errno = err; 19377c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get zone path")); 19387c478bd9Sstevel@tonic-gate return (Z_ERR); 19397c478bd9Sstevel@tonic-gate } 19407c478bd9Sstevel@tonic-gate if (strcmp(zonepath, checkpath) != 0) { 19417c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("The XML repository has " 19427c478bd9Sstevel@tonic-gate "zonepath '%s',\nbut the index file has zonepath '%s'.\n" 19437c478bd9Sstevel@tonic-gate "These must match, so fix the incorrect entry.\n"), 19447c478bd9Sstevel@tonic-gate zonepath, checkpath); 19457c478bd9Sstevel@tonic-gate return (Z_ERR); 19467c478bd9Sstevel@tonic-gate } 19477c478bd9Sstevel@tonic-gate if (validate_zonepath(zonepath, cmd_num) != Z_OK) { 19487c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("could not verify zonepath %s " 19497c478bd9Sstevel@tonic-gate "because of the above errors.\n"), zonepath); 19507c478bd9Sstevel@tonic-gate return_code = Z_ERR; 19517c478bd9Sstevel@tonic-gate } 19527c478bd9Sstevel@tonic-gate 1953*108322fbScarlsonj in_alt_root = zonecfg_in_alt_root(); 1954*108322fbScarlsonj if (in_alt_root) 1955*108322fbScarlsonj goto no_net; 1956*108322fbScarlsonj 19577c478bd9Sstevel@tonic-gate if ((err = zonecfg_setnwifent(handle)) != Z_OK) { 19587c478bd9Sstevel@tonic-gate errno = err; 19597c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 19607c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 19617c478bd9Sstevel@tonic-gate return (Z_ERR); 19627c478bd9Sstevel@tonic-gate } 19637c478bd9Sstevel@tonic-gate while (zonecfg_getnwifent(handle, &nwiftab) == Z_OK) { 19647c478bd9Sstevel@tonic-gate struct lifreq lifr; 19657c478bd9Sstevel@tonic-gate sa_family_t af; 19667c478bd9Sstevel@tonic-gate int so, res; 19677c478bd9Sstevel@tonic-gate 19687c478bd9Sstevel@tonic-gate /* skip any loopback interfaces */ 19697c478bd9Sstevel@tonic-gate if (strcmp(nwiftab.zone_nwif_physical, "lo0") == 0) 19707c478bd9Sstevel@tonic-gate continue; 19717c478bd9Sstevel@tonic-gate if ((res = zonecfg_valid_net_address(nwiftab.zone_nwif_address, 19727c478bd9Sstevel@tonic-gate &lifr)) != Z_OK) { 19737c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("could not verify %s " 19747c478bd9Sstevel@tonic-gate "%s=%s %s=%s: %s\n"), "net", "address", 19757c478bd9Sstevel@tonic-gate nwiftab.zone_nwif_address, "physical", 19767c478bd9Sstevel@tonic-gate nwiftab.zone_nwif_physical, zonecfg_strerror(res)); 19777c478bd9Sstevel@tonic-gate return_code = Z_ERR; 19787c478bd9Sstevel@tonic-gate continue; 19797c478bd9Sstevel@tonic-gate } 19807c478bd9Sstevel@tonic-gate af = lifr.lifr_addr.ss_family; 19817c478bd9Sstevel@tonic-gate (void) memset(&lifr, 0, sizeof (lifr)); 19827c478bd9Sstevel@tonic-gate (void) strlcpy(lifr.lifr_name, nwiftab.zone_nwif_physical, 19837c478bd9Sstevel@tonic-gate sizeof (lifr.lifr_name)); 19847c478bd9Sstevel@tonic-gate lifr.lifr_addr.ss_family = af; 19857c478bd9Sstevel@tonic-gate if ((so = socket(af, SOCK_DGRAM, 0)) < 0) { 19867c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("could not verify %s " 19877c478bd9Sstevel@tonic-gate "%s=%s %s=%s: could not get socket: %s\n"), "net", 19887c478bd9Sstevel@tonic-gate "address", nwiftab.zone_nwif_address, "physical", 19897c478bd9Sstevel@tonic-gate nwiftab.zone_nwif_physical, strerror(errno)); 19907c478bd9Sstevel@tonic-gate return_code = Z_ERR; 19917c478bd9Sstevel@tonic-gate continue; 19927c478bd9Sstevel@tonic-gate } 19937c478bd9Sstevel@tonic-gate if (ioctl(so, SIOCGLIFFLAGS, (caddr_t)&lifr) < 0) { 19947c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 19957c478bd9Sstevel@tonic-gate gettext("could not verify %s %s=%s %s=%s: %s\n"), 19967c478bd9Sstevel@tonic-gate "net", "address", nwiftab.zone_nwif_address, 19977c478bd9Sstevel@tonic-gate "physical", nwiftab.zone_nwif_physical, 19987c478bd9Sstevel@tonic-gate strerror(errno)); 19997c478bd9Sstevel@tonic-gate return_code = Z_ERR; 20007c478bd9Sstevel@tonic-gate } 20017c478bd9Sstevel@tonic-gate (void) close(so); 20027c478bd9Sstevel@tonic-gate } 20037c478bd9Sstevel@tonic-gate (void) zonecfg_endnwifent(handle); 2004*108322fbScarlsonj no_net: 20057c478bd9Sstevel@tonic-gate 20067c478bd9Sstevel@tonic-gate if (verify_filesystems(handle) != Z_OK) 20077c478bd9Sstevel@tonic-gate return_code = Z_ERR; 2008*108322fbScarlsonj if (!in_alt_root && verify_rctls(handle) != Z_OK) 20097c478bd9Sstevel@tonic-gate return_code = Z_ERR; 2010*108322fbScarlsonj if (!in_alt_root && verify_pool(handle) != Z_OK) 20117c478bd9Sstevel@tonic-gate return_code = Z_ERR; 20127c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 20137c478bd9Sstevel@tonic-gate if (return_code == Z_ERR) 20147c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 20157c478bd9Sstevel@tonic-gate gettext("%s: zone %s failed to verify\n"), 20167c478bd9Sstevel@tonic-gate execname, target_zone); 20177c478bd9Sstevel@tonic-gate return (return_code); 20187c478bd9Sstevel@tonic-gate } 20197c478bd9Sstevel@tonic-gate 20207c478bd9Sstevel@tonic-gate static int 20217c478bd9Sstevel@tonic-gate verify_func(int argc, char *argv[]) 20227c478bd9Sstevel@tonic-gate { 20237c478bd9Sstevel@tonic-gate int arg; 20247c478bd9Sstevel@tonic-gate 20257c478bd9Sstevel@tonic-gate optind = 0; 20267c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 20277c478bd9Sstevel@tonic-gate switch (arg) { 20287c478bd9Sstevel@tonic-gate case '?': 20297c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 20307c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 20317c478bd9Sstevel@tonic-gate default: 20327c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 20337c478bd9Sstevel@tonic-gate return (Z_USAGE); 20347c478bd9Sstevel@tonic-gate } 20357c478bd9Sstevel@tonic-gate } 20367c478bd9Sstevel@tonic-gate if (argc > optind) { 20377c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 20387c478bd9Sstevel@tonic-gate return (Z_USAGE); 20397c478bd9Sstevel@tonic-gate } 20407c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_VERIFY, B_FALSE, B_FALSE) != Z_OK) 20417c478bd9Sstevel@tonic-gate return (Z_ERR); 20427c478bd9Sstevel@tonic-gate return (verify_details(CMD_VERIFY)); 20437c478bd9Sstevel@tonic-gate } 20447c478bd9Sstevel@tonic-gate 20457c478bd9Sstevel@tonic-gate #define LUCREATEZONE "/usr/lib/lu/lucreatezone" 20467c478bd9Sstevel@tonic-gate 20477c478bd9Sstevel@tonic-gate static int 20487c478bd9Sstevel@tonic-gate install_func(int argc, char *argv[]) 20497c478bd9Sstevel@tonic-gate { 20507c478bd9Sstevel@tonic-gate /* 9: "exec " and " -z " */ 20517c478bd9Sstevel@tonic-gate char cmdbuf[sizeof (LUCREATEZONE) + ZONENAME_MAX + 9]; 20527c478bd9Sstevel@tonic-gate int lockfd; 20537c478bd9Sstevel@tonic-gate int err, arg; 20547c478bd9Sstevel@tonic-gate char zonepath[MAXPATHLEN]; 20557c478bd9Sstevel@tonic-gate int status; 20567c478bd9Sstevel@tonic-gate 2057*108322fbScarlsonj if (zonecfg_in_alt_root()) { 2058*108322fbScarlsonj zerror(gettext("cannot install zone in alternate root")); 2059*108322fbScarlsonj return (Z_ERR); 2060*108322fbScarlsonj } 2061*108322fbScarlsonj 20627c478bd9Sstevel@tonic-gate optind = 0; 20637c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 20647c478bd9Sstevel@tonic-gate switch (arg) { 20657c478bd9Sstevel@tonic-gate case '?': 20667c478bd9Sstevel@tonic-gate sub_usage(SHELP_INSTALL, CMD_INSTALL); 20677c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 20687c478bd9Sstevel@tonic-gate default: 20697c478bd9Sstevel@tonic-gate sub_usage(SHELP_INSTALL, CMD_INSTALL); 20707c478bd9Sstevel@tonic-gate return (Z_USAGE); 20717c478bd9Sstevel@tonic-gate } 20727c478bd9Sstevel@tonic-gate } 20737c478bd9Sstevel@tonic-gate if (argc > optind) { 20747c478bd9Sstevel@tonic-gate sub_usage(SHELP_INSTALL, CMD_INSTALL); 20757c478bd9Sstevel@tonic-gate return (Z_USAGE); 20767c478bd9Sstevel@tonic-gate } 20777c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_INSTALL, B_FALSE, B_TRUE) != Z_OK) 20787c478bd9Sstevel@tonic-gate return (Z_ERR); 20797c478bd9Sstevel@tonic-gate if (verify_details(CMD_INSTALL) != Z_OK) 20807c478bd9Sstevel@tonic-gate return (Z_ERR); 20817c478bd9Sstevel@tonic-gate 20827c478bd9Sstevel@tonic-gate if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 20837c478bd9Sstevel@tonic-gate zerror(gettext("another %s may have an operation in progress."), 20847c478bd9Sstevel@tonic-gate "zoneadmd"); 20857c478bd9Sstevel@tonic-gate return (Z_ERR); 20867c478bd9Sstevel@tonic-gate } 20877c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_INCOMPLETE); 20887c478bd9Sstevel@tonic-gate if (err != Z_OK) { 20897c478bd9Sstevel@tonic-gate errno = err; 20907c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 20917c478bd9Sstevel@tonic-gate goto done; 20927c478bd9Sstevel@tonic-gate } 20937c478bd9Sstevel@tonic-gate 20947c478bd9Sstevel@tonic-gate /* 20957c478bd9Sstevel@tonic-gate * According to the Application Packaging Developer's Guide, a 20967c478bd9Sstevel@tonic-gate * "checkinstall" script when included in a package is executed as 20977c478bd9Sstevel@tonic-gate * the user "install", if such a user exists, or by the user 20987c478bd9Sstevel@tonic-gate * "nobody". In order to support this dubious behavior, the path 20997c478bd9Sstevel@tonic-gate * to the zone being constructed is opened up during the life of 21007c478bd9Sstevel@tonic-gate * the command laying down the zone's root file system. Once this 21017c478bd9Sstevel@tonic-gate * has completed, regardless of whether it was successful, the 21027c478bd9Sstevel@tonic-gate * path to the zone is again restricted. 21037c478bd9Sstevel@tonic-gate */ 21047c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(target_zone, zonepath, 21057c478bd9Sstevel@tonic-gate sizeof (zonepath))) != Z_OK) { 21067c478bd9Sstevel@tonic-gate errno = err; 21077c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get zone path")); 21087c478bd9Sstevel@tonic-gate goto done; 21097c478bd9Sstevel@tonic-gate } 21107c478bd9Sstevel@tonic-gate if (chmod(zonepath, DEFAULT_DIR_MODE) != 0) { 21117c478bd9Sstevel@tonic-gate zperror(zonepath, B_FALSE); 21127c478bd9Sstevel@tonic-gate err = Z_ERR; 21137c478bd9Sstevel@tonic-gate goto done; 21147c478bd9Sstevel@tonic-gate } 21157c478bd9Sstevel@tonic-gate 21167c478bd9Sstevel@tonic-gate /* 21177c478bd9Sstevel@tonic-gate * "exec" the command so that the returned status is that of 21187c478bd9Sstevel@tonic-gate * LUCREATEZONE and not the shell. 21197c478bd9Sstevel@tonic-gate */ 21207c478bd9Sstevel@tonic-gate (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " LUCREATEZONE " -z %s", 21217c478bd9Sstevel@tonic-gate target_zone); 21227c478bd9Sstevel@tonic-gate status = do_subproc(cmdbuf); 21237c478bd9Sstevel@tonic-gate if (chmod(zonepath, S_IRWXU) != 0) { 21247c478bd9Sstevel@tonic-gate zperror(zonepath, B_FALSE); 21257c478bd9Sstevel@tonic-gate err = Z_ERR; 21267c478bd9Sstevel@tonic-gate goto done; 21277c478bd9Sstevel@tonic-gate } 21287c478bd9Sstevel@tonic-gate if ((err = subproc_status(LUCREATEZONE, status)) != Z_OK) 21297c478bd9Sstevel@tonic-gate goto done; 21307c478bd9Sstevel@tonic-gate 21317c478bd9Sstevel@tonic-gate if ((err = zone_set_state(target_zone, ZONE_STATE_INSTALLED)) != Z_OK) { 21327c478bd9Sstevel@tonic-gate errno = err; 21337c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 21347c478bd9Sstevel@tonic-gate goto done; 21357c478bd9Sstevel@tonic-gate } 21367c478bd9Sstevel@tonic-gate 21377c478bd9Sstevel@tonic-gate done: 21387c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 21397c478bd9Sstevel@tonic-gate return ((err == Z_OK) ? Z_OK : Z_ERR); 21407c478bd9Sstevel@tonic-gate } 21417c478bd9Sstevel@tonic-gate 21427c478bd9Sstevel@tonic-gate /* 21437c478bd9Sstevel@tonic-gate * On input, TRUE => yes, FALSE => no. 21447c478bd9Sstevel@tonic-gate * On return, TRUE => 1, FALSE => 0, could not ask => -1. 21457c478bd9Sstevel@tonic-gate */ 21467c478bd9Sstevel@tonic-gate 21477c478bd9Sstevel@tonic-gate static int 21487c478bd9Sstevel@tonic-gate ask_yesno(boolean_t default_answer, const char *question) 21497c478bd9Sstevel@tonic-gate { 21507c478bd9Sstevel@tonic-gate char line[64]; /* should be large enough to answer yes or no */ 21517c478bd9Sstevel@tonic-gate 21527c478bd9Sstevel@tonic-gate if (!isatty(STDIN_FILENO)) 21537c478bd9Sstevel@tonic-gate return (-1); 21547c478bd9Sstevel@tonic-gate for (;;) { 21557c478bd9Sstevel@tonic-gate (void) printf("%s (%s)? ", question, 21567c478bd9Sstevel@tonic-gate default_answer ? "[y]/n" : "y/[n]"); 21577c478bd9Sstevel@tonic-gate if (fgets(line, sizeof (line), stdin) == NULL || 21587c478bd9Sstevel@tonic-gate line[0] == '\n') 21597c478bd9Sstevel@tonic-gate return (default_answer ? 1 : 0); 21607c478bd9Sstevel@tonic-gate if (tolower(line[0]) == 'y') 21617c478bd9Sstevel@tonic-gate return (1); 21627c478bd9Sstevel@tonic-gate if (tolower(line[0]) == 'n') 21637c478bd9Sstevel@tonic-gate return (0); 21647c478bd9Sstevel@tonic-gate } 21657c478bd9Sstevel@tonic-gate } 21667c478bd9Sstevel@tonic-gate 21677c478bd9Sstevel@tonic-gate #define RMCOMMAND "/usr/bin/rm -rf" 21687c478bd9Sstevel@tonic-gate 21697c478bd9Sstevel@tonic-gate /* ARGSUSED */ 21707c478bd9Sstevel@tonic-gate int 21717c478bd9Sstevel@tonic-gate zfm_print(const char *p, void *r) { 21727c478bd9Sstevel@tonic-gate zerror(" %s\n", p); 21737c478bd9Sstevel@tonic-gate return (0); 21747c478bd9Sstevel@tonic-gate } 21757c478bd9Sstevel@tonic-gate 21767c478bd9Sstevel@tonic-gate static int 21777c478bd9Sstevel@tonic-gate uninstall_func(int argc, char *argv[]) 21787c478bd9Sstevel@tonic-gate { 21797c478bd9Sstevel@tonic-gate /* 6: "exec " and " " */ 21807c478bd9Sstevel@tonic-gate char cmdbuf[sizeof (RMCOMMAND) + MAXPATHLEN + 6]; 21817c478bd9Sstevel@tonic-gate char line[ZONENAME_MAX + 128]; /* Enough for "Are you sure ..." */ 21827c478bd9Sstevel@tonic-gate char rootpath[MAXPATHLEN], devpath[MAXPATHLEN]; 21837c478bd9Sstevel@tonic-gate boolean_t force = B_FALSE; 21847c478bd9Sstevel@tonic-gate int lockfd, answer; 21857c478bd9Sstevel@tonic-gate int err, arg; 21867c478bd9Sstevel@tonic-gate int status; 21877c478bd9Sstevel@tonic-gate 2188*108322fbScarlsonj if (zonecfg_in_alt_root()) { 2189*108322fbScarlsonj zerror(gettext("cannot uninstall zone in alternate root")); 2190*108322fbScarlsonj return (Z_ERR); 2191*108322fbScarlsonj } 2192*108322fbScarlsonj 21937c478bd9Sstevel@tonic-gate optind = 0; 21947c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?F")) != EOF) { 21957c478bd9Sstevel@tonic-gate switch (arg) { 21967c478bd9Sstevel@tonic-gate case '?': 21977c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 21987c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 21997c478bd9Sstevel@tonic-gate case 'F': 22007c478bd9Sstevel@tonic-gate force = B_TRUE; 22017c478bd9Sstevel@tonic-gate break; 22027c478bd9Sstevel@tonic-gate default: 22037c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 22047c478bd9Sstevel@tonic-gate return (Z_USAGE); 22057c478bd9Sstevel@tonic-gate } 22067c478bd9Sstevel@tonic-gate } 22077c478bd9Sstevel@tonic-gate if (argc > optind) { 22087c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 22097c478bd9Sstevel@tonic-gate return (Z_USAGE); 22107c478bd9Sstevel@tonic-gate } 22117c478bd9Sstevel@tonic-gate 22127c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_UNINSTALL, B_FALSE, B_TRUE) != Z_OK) 22137c478bd9Sstevel@tonic-gate return (Z_ERR); 22147c478bd9Sstevel@tonic-gate 22157c478bd9Sstevel@tonic-gate if (!force) { 22167c478bd9Sstevel@tonic-gate (void) snprintf(line, sizeof (line), 22177c478bd9Sstevel@tonic-gate gettext("Are you sure you want to %s zone %s"), 22187c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL), target_zone); 22197c478bd9Sstevel@tonic-gate if ((answer = ask_yesno(B_FALSE, line)) == 0) { 22207c478bd9Sstevel@tonic-gate return (Z_OK); 22217c478bd9Sstevel@tonic-gate } else if (answer == -1) { 22227c478bd9Sstevel@tonic-gate zerror(gettext("Input not from terminal and -F " 22237c478bd9Sstevel@tonic-gate "not specified: %s not done."), 22247c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 22257c478bd9Sstevel@tonic-gate return (Z_ERR); 22267c478bd9Sstevel@tonic-gate } 22277c478bd9Sstevel@tonic-gate } 22287c478bd9Sstevel@tonic-gate 22297c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(target_zone, devpath, 22307c478bd9Sstevel@tonic-gate sizeof (devpath))) != Z_OK) { 22317c478bd9Sstevel@tonic-gate errno = err; 22327c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get zone path")); 22337c478bd9Sstevel@tonic-gate return (Z_ERR); 22347c478bd9Sstevel@tonic-gate } 22357c478bd9Sstevel@tonic-gate (void) strlcat(devpath, "/dev", sizeof (devpath)); 22367c478bd9Sstevel@tonic-gate if ((err = zone_get_rootpath(target_zone, rootpath, 22377c478bd9Sstevel@tonic-gate sizeof (rootpath))) != Z_OK) { 22387c478bd9Sstevel@tonic-gate errno = err; 22397c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get root path")); 22407c478bd9Sstevel@tonic-gate return (Z_ERR); 22417c478bd9Sstevel@tonic-gate } 22427c478bd9Sstevel@tonic-gate 22437c478bd9Sstevel@tonic-gate /* 22447c478bd9Sstevel@tonic-gate * If there seems to be a zoneadmd running for this zone, call it 22457c478bd9Sstevel@tonic-gate * to tell it that an uninstall is happening; if all goes well it 22467c478bd9Sstevel@tonic-gate * will then shut itself down. 22477c478bd9Sstevel@tonic-gate */ 22487c478bd9Sstevel@tonic-gate if (ping_zoneadmd(target_zone) == Z_OK) { 22497c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 22507c478bd9Sstevel@tonic-gate zarg.cmd = Z_NOTE_UNINSTALLING; 22517c478bd9Sstevel@tonic-gate /* we don't care too much if this fails... just plow on */ 22527c478bd9Sstevel@tonic-gate (void) call_zoneadmd(target_zone, &zarg); 22537c478bd9Sstevel@tonic-gate } 22547c478bd9Sstevel@tonic-gate 22557c478bd9Sstevel@tonic-gate if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 22567c478bd9Sstevel@tonic-gate zerror(gettext("another %s may have an operation in progress."), 22577c478bd9Sstevel@tonic-gate "zoneadmd"); 22587c478bd9Sstevel@tonic-gate return (Z_ERR); 22597c478bd9Sstevel@tonic-gate } 22607c478bd9Sstevel@tonic-gate 22617c478bd9Sstevel@tonic-gate /* Don't uninstall the zone if anything is mounted there */ 22627c478bd9Sstevel@tonic-gate err = zonecfg_find_mounts(rootpath, NULL, NULL); 22637c478bd9Sstevel@tonic-gate if (err) { 22647c478bd9Sstevel@tonic-gate zerror(gettext("These file-systems are mounted on " 22657c478bd9Sstevel@tonic-gate "subdirectories of %s.\n"), rootpath); 22667c478bd9Sstevel@tonic-gate (void) zonecfg_find_mounts(rootpath, zfm_print, NULL); 22677c478bd9Sstevel@tonic-gate return (Z_ERR); 22687c478bd9Sstevel@tonic-gate } 22697c478bd9Sstevel@tonic-gate 22707c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_INCOMPLETE); 22717c478bd9Sstevel@tonic-gate if (err != Z_OK) { 22727c478bd9Sstevel@tonic-gate errno = err; 22737c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 22747c478bd9Sstevel@tonic-gate goto bad; 22757c478bd9Sstevel@tonic-gate } 22767c478bd9Sstevel@tonic-gate 22777c478bd9Sstevel@tonic-gate /* 22787c478bd9Sstevel@tonic-gate * "exec" the command so that the returned status is that of 22797c478bd9Sstevel@tonic-gate * RMCOMMAND and not the shell. 22807c478bd9Sstevel@tonic-gate */ 22817c478bd9Sstevel@tonic-gate (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " RMCOMMAND " %s", 22827c478bd9Sstevel@tonic-gate devpath); 22837c478bd9Sstevel@tonic-gate status = do_subproc(cmdbuf); 22847c478bd9Sstevel@tonic-gate if ((err = subproc_status(RMCOMMAND, status)) != Z_OK) 22857c478bd9Sstevel@tonic-gate goto bad; 22867c478bd9Sstevel@tonic-gate (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " RMCOMMAND " %s", 22877c478bd9Sstevel@tonic-gate rootpath); 22887c478bd9Sstevel@tonic-gate status = do_subproc(cmdbuf); 22897c478bd9Sstevel@tonic-gate if ((err = subproc_status(RMCOMMAND, status)) != Z_OK) 22907c478bd9Sstevel@tonic-gate goto bad; 22917c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_CONFIGURED); 22927c478bd9Sstevel@tonic-gate if (err != Z_OK) { 22937c478bd9Sstevel@tonic-gate errno = err; 22947c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not reset state")); 22957c478bd9Sstevel@tonic-gate } 22967c478bd9Sstevel@tonic-gate bad: 22977c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 22987c478bd9Sstevel@tonic-gate return (err); 22997c478bd9Sstevel@tonic-gate } 23007c478bd9Sstevel@tonic-gate 2301*108322fbScarlsonj /* ARGSUSED */ 2302*108322fbScarlsonj static int 2303*108322fbScarlsonj mount_func(int argc, char *argv[]) 2304*108322fbScarlsonj { 2305*108322fbScarlsonj zone_cmd_arg_t zarg; 2306*108322fbScarlsonj 2307*108322fbScarlsonj if (argc > 0) 2308*108322fbScarlsonj return (Z_USAGE); 2309*108322fbScarlsonj if (sanity_check(target_zone, CMD_MOUNT, B_FALSE, B_FALSE) != Z_OK) 2310*108322fbScarlsonj return (Z_ERR); 2311*108322fbScarlsonj if (verify_details(CMD_MOUNT) != Z_OK) 2312*108322fbScarlsonj return (Z_ERR); 2313*108322fbScarlsonj 2314*108322fbScarlsonj zarg.cmd = Z_MOUNT; 2315*108322fbScarlsonj if (call_zoneadmd(target_zone, &zarg) != 0) { 2316*108322fbScarlsonj zerror(gettext("call to %s failed"), "zoneadmd"); 2317*108322fbScarlsonj return (Z_ERR); 2318*108322fbScarlsonj } 2319*108322fbScarlsonj return (Z_OK); 2320*108322fbScarlsonj } 2321*108322fbScarlsonj 2322*108322fbScarlsonj /* ARGSUSED */ 2323*108322fbScarlsonj static int 2324*108322fbScarlsonj unmount_func(int argc, char *argv[]) 2325*108322fbScarlsonj { 2326*108322fbScarlsonj zone_cmd_arg_t zarg; 2327*108322fbScarlsonj 2328*108322fbScarlsonj if (argc > 0) 2329*108322fbScarlsonj return (Z_USAGE); 2330*108322fbScarlsonj if (sanity_check(target_zone, CMD_UNMOUNT, B_FALSE, B_FALSE) != Z_OK) 2331*108322fbScarlsonj return (Z_ERR); 2332*108322fbScarlsonj 2333*108322fbScarlsonj zarg.cmd = Z_UNMOUNT; 2334*108322fbScarlsonj if (call_zoneadmd(target_zone, &zarg) != 0) { 2335*108322fbScarlsonj zerror(gettext("call to %s failed"), "zoneadmd"); 2336*108322fbScarlsonj return (Z_ERR); 2337*108322fbScarlsonj } 2338*108322fbScarlsonj return (Z_OK); 2339*108322fbScarlsonj } 2340*108322fbScarlsonj 23417c478bd9Sstevel@tonic-gate static int 23427c478bd9Sstevel@tonic-gate help_func(int argc, char *argv[]) 23437c478bd9Sstevel@tonic-gate { 23447c478bd9Sstevel@tonic-gate int arg, cmd_num; 23457c478bd9Sstevel@tonic-gate 23467c478bd9Sstevel@tonic-gate if (argc == 0) { 23477c478bd9Sstevel@tonic-gate (void) usage(B_TRUE); 23487c478bd9Sstevel@tonic-gate return (Z_OK); 23497c478bd9Sstevel@tonic-gate } 23507c478bd9Sstevel@tonic-gate optind = 0; 23517c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 23527c478bd9Sstevel@tonic-gate switch (arg) { 23537c478bd9Sstevel@tonic-gate case '?': 23547c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 23557c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 23567c478bd9Sstevel@tonic-gate default: 23577c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 23587c478bd9Sstevel@tonic-gate return (Z_USAGE); 23597c478bd9Sstevel@tonic-gate } 23607c478bd9Sstevel@tonic-gate } 23617c478bd9Sstevel@tonic-gate while (optind < argc) { 23627c478bd9Sstevel@tonic-gate if ((cmd_num = cmd_match(argv[optind])) < 0) { 23637c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 23647c478bd9Sstevel@tonic-gate return (Z_USAGE); 23657c478bd9Sstevel@tonic-gate } 23667c478bd9Sstevel@tonic-gate sub_usage(cmdtab[cmd_num].short_usage, cmd_num); 23677c478bd9Sstevel@tonic-gate optind++; 23687c478bd9Sstevel@tonic-gate } 23697c478bd9Sstevel@tonic-gate return (Z_OK); 23707c478bd9Sstevel@tonic-gate } 23717c478bd9Sstevel@tonic-gate 23727c478bd9Sstevel@tonic-gate /* 23737c478bd9Sstevel@tonic-gate * Returns: CMD_MIN thru CMD_MAX on success, -1 on error 23747c478bd9Sstevel@tonic-gate */ 23757c478bd9Sstevel@tonic-gate 23767c478bd9Sstevel@tonic-gate static int 23777c478bd9Sstevel@tonic-gate cmd_match(char *cmd) 23787c478bd9Sstevel@tonic-gate { 23797c478bd9Sstevel@tonic-gate int i; 23807c478bd9Sstevel@tonic-gate 23817c478bd9Sstevel@tonic-gate for (i = CMD_MIN; i <= CMD_MAX; i++) { 23827c478bd9Sstevel@tonic-gate /* return only if there is an exact match */ 23837c478bd9Sstevel@tonic-gate if (strcmp(cmd, cmdtab[i].cmd_name) == 0) 23847c478bd9Sstevel@tonic-gate return (cmdtab[i].cmd_num); 23857c478bd9Sstevel@tonic-gate } 23867c478bd9Sstevel@tonic-gate return (-1); 23877c478bd9Sstevel@tonic-gate } 23887c478bd9Sstevel@tonic-gate 23897c478bd9Sstevel@tonic-gate static int 23907c478bd9Sstevel@tonic-gate parse_and_run(int argc, char *argv[]) 23917c478bd9Sstevel@tonic-gate { 23927c478bd9Sstevel@tonic-gate int i = cmd_match(argv[0]); 23937c478bd9Sstevel@tonic-gate 23947c478bd9Sstevel@tonic-gate if (i < 0) 23957c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 23967c478bd9Sstevel@tonic-gate return (cmdtab[i].handler(argc - 1, &(argv[1]))); 23977c478bd9Sstevel@tonic-gate } 23987c478bd9Sstevel@tonic-gate 23997c478bd9Sstevel@tonic-gate static char * 24007c478bd9Sstevel@tonic-gate get_execbasename(char *execfullname) 24017c478bd9Sstevel@tonic-gate { 24027c478bd9Sstevel@tonic-gate char *last_slash, *execbasename; 24037c478bd9Sstevel@tonic-gate 24047c478bd9Sstevel@tonic-gate /* guard against '/' at end of command invocation */ 24057c478bd9Sstevel@tonic-gate for (;;) { 24067c478bd9Sstevel@tonic-gate last_slash = strrchr(execfullname, '/'); 24077c478bd9Sstevel@tonic-gate if (last_slash == NULL) { 24087c478bd9Sstevel@tonic-gate execbasename = execfullname; 24097c478bd9Sstevel@tonic-gate break; 24107c478bd9Sstevel@tonic-gate } else { 24117c478bd9Sstevel@tonic-gate execbasename = last_slash + 1; 24127c478bd9Sstevel@tonic-gate if (*execbasename == '\0') { 24137c478bd9Sstevel@tonic-gate *last_slash = '\0'; 24147c478bd9Sstevel@tonic-gate continue; 24157c478bd9Sstevel@tonic-gate } 24167c478bd9Sstevel@tonic-gate break; 24177c478bd9Sstevel@tonic-gate } 24187c478bd9Sstevel@tonic-gate } 24197c478bd9Sstevel@tonic-gate return (execbasename); 24207c478bd9Sstevel@tonic-gate } 24217c478bd9Sstevel@tonic-gate 24227c478bd9Sstevel@tonic-gate int 24237c478bd9Sstevel@tonic-gate main(int argc, char **argv) 24247c478bd9Sstevel@tonic-gate { 24257c478bd9Sstevel@tonic-gate int arg; 24267c478bd9Sstevel@tonic-gate zoneid_t zid; 2427*108322fbScarlsonj struct stat st; 24287c478bd9Sstevel@tonic-gate 24297c478bd9Sstevel@tonic-gate if ((locale = setlocale(LC_ALL, "")) == NULL) 24307c478bd9Sstevel@tonic-gate locale = "C"; 24317c478bd9Sstevel@tonic-gate (void) textdomain(TEXT_DOMAIN); 24327c478bd9Sstevel@tonic-gate setbuf(stdout, NULL); 24337c478bd9Sstevel@tonic-gate (void) sigset(SIGHUP, SIG_IGN); 24347c478bd9Sstevel@tonic-gate execname = get_execbasename(argv[0]); 24357c478bd9Sstevel@tonic-gate target_zone = NULL; 24367c478bd9Sstevel@tonic-gate if (chdir("/") != 0) { 24377c478bd9Sstevel@tonic-gate zerror(gettext("could not change directory to /.")); 24387c478bd9Sstevel@tonic-gate exit(Z_ERR); 24397c478bd9Sstevel@tonic-gate } 24407c478bd9Sstevel@tonic-gate 2441*108322fbScarlsonj while ((arg = getopt(argc, argv, "?z:R:")) != EOF) { 24427c478bd9Sstevel@tonic-gate switch (arg) { 24437c478bd9Sstevel@tonic-gate case '?': 24447c478bd9Sstevel@tonic-gate return (usage(B_TRUE)); 24457c478bd9Sstevel@tonic-gate case 'z': 24467c478bd9Sstevel@tonic-gate target_zone = optarg; 24477c478bd9Sstevel@tonic-gate break; 2448*108322fbScarlsonj case 'R': /* private option for admin/install use */ 2449*108322fbScarlsonj if (*optarg != '/') { 2450*108322fbScarlsonj zerror(gettext("root path must be absolute.")); 2451*108322fbScarlsonj exit(Z_ERR); 2452*108322fbScarlsonj } 2453*108322fbScarlsonj if (stat(optarg, &st) == -1 || !S_ISDIR(st.st_mode)) { 2454*108322fbScarlsonj zerror( 2455*108322fbScarlsonj gettext("root path must be a directory.")); 2456*108322fbScarlsonj exit(Z_ERR); 2457*108322fbScarlsonj } 2458*108322fbScarlsonj zonecfg_set_root(optarg); 2459*108322fbScarlsonj break; 24607c478bd9Sstevel@tonic-gate default: 24617c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 24627c478bd9Sstevel@tonic-gate } 24637c478bd9Sstevel@tonic-gate } 24647c478bd9Sstevel@tonic-gate 24657c478bd9Sstevel@tonic-gate if (optind >= argc) 24667c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 24677c478bd9Sstevel@tonic-gate if (target_zone != NULL && zone_get_id(target_zone, &zid) != 0) { 24687c478bd9Sstevel@tonic-gate errno = Z_NO_ZONE; 24697c478bd9Sstevel@tonic-gate zperror(target_zone, B_TRUE); 24707c478bd9Sstevel@tonic-gate exit(Z_ERR); 24717c478bd9Sstevel@tonic-gate } 24727c478bd9Sstevel@tonic-gate return (parse_and_run(argc - optind, &argv[optind])); 24737c478bd9Sstevel@tonic-gate } 2474